⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cook.c

📁 linux下基于c++的处理器仿真平台。具有处理器流水线
💻 C
字号:
/*cook.c - read and translate ELF files.Copyright (C) 1995 - 2002 Michael Riepe <michael@stud.uni-hannover.de>This library is free software; you can redistribute it and/ormodify it under the terms of the GNU Library General PublicLicense as published by the Free Software Foundation; eitherversion 2 of the License, or (at your option) any later version.This library is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNULibrary General Public License for more details.You should have received a copy of the GNU Library General PublicLicense along with this library; if not, write to the Free SoftwareFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.*/#include <private.h>#ifndef lintstatic const char rcsid[] = "@(#) $Id: cook.c,v 1.21 2003/01/02 16:40:22 michael Exp $";#endif /* lint */const Elf_Scn _elf_scn_init = INIT_SCN;const Scn_Data _elf_data_init = INIT_DATA;Elf_Type_elf_scn_type(unsigned t) {    switch (t) {	case SHT_DYNAMIC:       return ELF_T_DYN;	case SHT_DYNSYM:        return ELF_T_SYM;	case SHT_HASH:          return ELF_T_WORD;	case SHT_REL:           return ELF_T_REL;	case SHT_RELA:          return ELF_T_RELA;	case SHT_SYMTAB:        return ELF_T_SYM;	case SHT_SYMTAB_SHNDX:	return ELF_T_WORD;	/* XXX: really? */#if __LIBELF_SYMBOL_VERSIONS#if __LIBELF_SUN_SYMBOL_VERSIONS	case SHT_SUNW_verdef:   return ELF_T_VDEF;	case SHT_SUNW_verneed:  return ELF_T_VNEED;	case SHT_SUNW_versym:   return ELF_T_HALF;#else /* __LIBELF_SUN_SYMBOL_VERSIONS */	case SHT_GNU_verdef:    return ELF_T_VDEF;	case SHT_GNU_verneed:   return ELF_T_VNEED;	case SHT_GNU_versym:    return ELF_T_HALF;#endif /* __LIBELF_SUN_SYMBOL_VERSIONS */#endif /* __LIBELF_SYMBOL_VERSIONS */    }    return ELF_T_BYTE;}/* * Check for overflow on 32-bit systems */#define overflow(a,b,t)	(sizeof(a) < sizeof(t) && (t)(a) != (b))#define truncerr(t) ((t)==ELF_T_EHDR?ERROR_TRUNC_EHDR:	\		    ((t)==ELF_T_PHDR?ERROR_TRUNC_PHDR:	\		    ERROR_INTERNAL))#define memerr(t)   ((t)==ELF_T_EHDR?ERROR_MEM_EHDR:	\		    ((t)==ELF_T_PHDR?ERROR_MEM_PHDR:	\		    ERROR_INTERNAL))Elf_Data*_elf_xlatetom(const Elf *elf, Elf_Data *dst, const Elf_Data *src) {    if (elf->e_class == ELFCLASS32) {	return elf32_xlatetom(dst, src, elf->e_encoding);    }#if __LIBELF64    else if (elf->e_class == ELFCLASS64) {	return elf64_xlatetom(dst, src, elf->e_encoding);    }#endif /* __LIBELF64 */    seterr(ERROR_UNIMPLEMENTED);    return NULL;}static char*_elf_item(Elf *elf, Elf_Type type, size_t n, size_t off, int *flag) {    Elf_Data src, dst;    *flag = 0;    elf_assert(n);    elf_assert(valid_type(type));    if (off < 0 || off > elf->e_size) {	seterr(ERROR_OUTSIDE);	return NULL;    }    src.d_type = type;    src.d_version = elf->e_version;    src.d_size = n * _fsize(elf->e_class, src.d_version, type);    elf_assert(src.d_size);    if ((elf->e_size - off) < src.d_size) {	seterr(truncerr(type));	return NULL;    }    dst.d_version = _elf_version;    dst.d_size = n * _msize(elf->e_class, dst.d_version, type);    elf_assert(dst.d_size);    elf_assert(elf->e_data);    if (elf->e_rawdata != elf->e_data && dst.d_size <= src.d_size) {	dst.d_buf = elf->e_data + off;    }    else if (!(dst.d_buf = malloc(dst.d_size))) {	seterr(memerr(type));	return NULL;    }    else {	*flag = 1;    }    if (elf->e_rawdata) {	src.d_buf = elf->e_rawdata + off;    }    else {	src.d_buf = elf->e_data + off;    }    if (_elf_xlatetom(elf, &dst, &src)) {	if (!*flag) {	    elf->e_cooked = 1;	}	return (char*)dst.d_buf;    }    if (*flag) {	free(dst.d_buf);	*flag = 0;    }    return NULL;}#undef truncerr#undef memerrstatic int_elf_cook_file(Elf *elf) {    size_t num, off, align_addr;    int flag;    elf->e_ehdr = _elf_item(elf, ELF_T_EHDR, 1, 0, &flag);    if (!elf->e_ehdr) {	return 0;    }    if (flag) {	elf->e_free_ehdr = 1;    }    align_addr = _fsize(elf->e_class, elf->e_version, ELF_T_ADDR);    elf_assert(align_addr);    if (elf->e_class == ELFCLASS32) {	num = ((Elf32_Ehdr*)elf->e_ehdr)->e_phnum;	off = ((Elf32_Ehdr*)elf->e_ehdr)->e_phoff;    }#if __LIBELF64    else if (elf->e_class == ELFCLASS64) {	num = ((Elf64_Ehdr*)elf->e_ehdr)->e_phnum;	off = ((Elf64_Ehdr*)elf->e_ehdr)->e_phoff;	/*	 * Check for overflow on 32-bit systems	 */	if (overflow(off, ((Elf64_Ehdr*)elf->e_ehdr)->e_phoff, Elf64_Off)) {	    seterr(ERROR_OUTSIDE);	    return 0;	}    }#endif /* __LIBELF64 */    else {	seterr(ERROR_UNIMPLEMENTED);	return 0;    }    if (num && off) {	if (off % align_addr) {	    seterr(ERROR_ALIGN_PHDR);	    return 0;	}	elf->e_phdr = _elf_item(elf, ELF_T_PHDR, num, off, &flag);	if (!elf->e_phdr) {	    return 0;	}	if (flag) {	    elf->e_free_phdr = 1;	}	elf->e_phnum = num;    }    if (elf->e_class == ELFCLASS32) {	num = ((Elf32_Ehdr*)elf->e_ehdr)->e_shnum;	off = ((Elf32_Ehdr*)elf->e_ehdr)->e_shoff;    }#if __LIBELF64    else if (elf->e_class == ELFCLASS64) {	num = ((Elf64_Ehdr*)elf->e_ehdr)->e_shnum;	off = ((Elf64_Ehdr*)elf->e_ehdr)->e_shoff;	/*	 * Check for overflow on 32-bit systems	 */	if (overflow(off, ((Elf64_Ehdr*)elf->e_ehdr)->e_shoff, Elf64_Off)) {	    seterr(ERROR_OUTSIDE);	    return 0;	}    }#endif /* __LIBELF64 */    /* we already had this    else {	seterr(ERROR_UNIMPLEMENTED);	return 0;    }    */    if (off) {	struct tmp {	    Elf_Scn	scn;	    Scn_Data	data;	} *head;	Elf_Data src, dst;	Elf_Scn *scn;	Scn_Data *sd;	unsigned i;	if (off % align_addr) {	    seterr(ERROR_ALIGN_SHDR);	    return 0;	}	if (off < 0 || off > elf->e_size) {	    seterr(ERROR_OUTSIDE);	    return 0;	}	src.d_type = ELF_T_SHDR;	src.d_version = elf->e_version;	src.d_size = _fsize(elf->e_class, src.d_version, ELF_T_SHDR);	elf_assert(src.d_size);	dst.d_version = EV_CURRENT;	if (num == 0) {	    union {		Elf32_Shdr sh32;		Elf64_Shdr sh64;	    } u;	    /*	     * Overflow in ehdr->e_shnum.	     * Get real value from first SHDR.	     */	    if (elf->e_size - off < src.d_size) {		seterr(ERROR_TRUNC_SHDR);		return 0;	    }	    if (elf->e_rawdata) {		src.d_buf = elf->e_rawdata + off;	    }	    else {		src.d_buf = elf->e_data + off;	    }	    dst.d_buf = &u;	    dst.d_size = sizeof(u);	    if (!(_elf_xlatetom(elf, &dst, &src))) {		return 0;	    }	    elf_assert(dst.d_size == _msize(elf->e_class, EV_CURRENT, ELF_T_SHDR));	    elf_assert(dst.d_type == ELF_T_SHDR);	    if (elf->e_class == ELFCLASS32) {		num = u.sh32.sh_size;	    }#if __LIBELF64	    else if (elf->e_class == ELFCLASS64) {		num = u.sh64.sh_size;		/*		 * Check for overflow on 32-bit systems		 */		if (overflow(num, u.sh64.sh_size, Elf64_Xword)) {		    seterr(ERROR_OUTSIDE);		    return 0;		}	    }#endif /* __LIBELF64 */	    if (num < SHN_LORESERVE) {		/* XXX: shall we tolerate this? */		seterr(ERROR_EHDR_SHNUM);		return 0;	    }	}	if ((elf->e_size - off) / src.d_size < num) {	    seterr(ERROR_TRUNC_SHDR);	    return 0;	}	if (!(head = (struct tmp*)malloc(num * sizeof(struct tmp)))) {	    seterr(ERROR_MEM_SCN);	    return 0;	}	for (scn = NULL, i = num; i-- > 0; ) {	    head[i].scn = _elf_scn_init;	    head[i].data = _elf_data_init;	    head[i].scn.s_link = scn;	    if (!scn) {		elf->e_scn_n = &head[i].scn;	    }	    scn = &head[i].scn;	    sd = &head[i].data;	    if (elf->e_rawdata) {		src.d_buf = elf->e_rawdata + off + i * src.d_size;	    }	    else {		src.d_buf = elf->e_data + off + i * src.d_size;	    }	    dst.d_buf = &scn->s_uhdr;	    dst.d_size = sizeof(scn->s_uhdr);	    if (!(_elf_xlatetom(elf, &dst, &src))) {		elf->e_scn_n = NULL;		free(head);		return 0;	    }	    elf_assert(dst.d_size == _msize(elf->e_class, EV_CURRENT, ELF_T_SHDR));	    elf_assert(dst.d_type == ELF_T_SHDR);	    scn->s_elf = elf;	    scn->s_index = i;	    scn->s_data_1 = sd;	    scn->s_data_n = sd;	    sd->sd_scn = scn;	    if (elf->e_class == ELFCLASS32) {		Elf32_Shdr *shdr = &scn->s_shdr32;		scn->s_type = shdr->sh_type;		scn->s_size = shdr->sh_size;		scn->s_offset = shdr->sh_offset;		sd->sd_data.d_align = shdr->sh_addralign;		sd->sd_data.d_type = _elf_scn_type(scn->s_type);	    }#if __LIBELF64	    else if (elf->e_class == ELFCLASS64) {		Elf64_Shdr *shdr = &scn->s_shdr64;		scn->s_type = shdr->sh_type;		scn->s_size = shdr->sh_size;		scn->s_offset = shdr->sh_offset;		sd->sd_data.d_align = shdr->sh_addralign;		/*		 * Check for overflow on 32-bit systems		 */		if (overflow(scn->s_size, shdr->sh_size, Elf64_Xword)		 || overflow(scn->s_offset, shdr->sh_offset, Elf64_Off)		 || overflow(sd->sd_data.d_align, shdr->sh_addralign, Elf64_Xword)) {		    seterr(ERROR_OUTSIDE);		    return 0;		}		sd->sd_data.d_type = _elf_scn_type(scn->s_type);		/*		 * QUIRKS MODE:		 *		 * Some 64-bit architectures use 64-bit entries in the		 * .hash section. This violates the ELF standard, and		 * should be fixed. It's mostly harmless as long as the		 * binary and the machine running your program have the		 * same byte order, but you're in trouble if they don't,		 * and if the entry size is wrong.		 *		 * As a workaround, I let libelf guess the right size		 * for the binary. This relies pretty much on the fact		 * that the binary provides correct data in the section		 * headers. If it doesn't, it's probably broken anyway.		 * Therefore, libelf uses a standard conforming value		 * when it's not absolutely sure.		 */		if (scn->s_type == SHT_HASH) {		    int override = 0;		    /*		     * sh_entsize must reflect the entry size		     */		    if (shdr->sh_entsize == ELF64_FSZ_ADDR) {			override++;		    }		    /*		     * sh_size must be a multiple of sh_entsize		     */		    if (shdr->sh_size % ELF64_FSZ_ADDR == 0) {			override++;		    }		    /*		     * There must be room for at least 2 entries		     */		    if (shdr->sh_size >= 2 * ELF64_FSZ_ADDR) {			override++;		    }		    /*		     * sh_addralign must be correctly set		     */		    if (shdr->sh_addralign == ELF64_FSZ_ADDR) {			override++;		    }		    /*		     * The section must be properly aligned		     */		    if (shdr->sh_offset % ELF64_FSZ_ADDR == 0) {			override++;		    }		    /* XXX: also look at the data? */		    /*		     * Make a conservative decision...		     */		    if (override >= 5) {			sd->sd_data.d_type = ELF_T_ADDR;		    }		}		/*		 * END QUIRKS MODE.		 */	    }#endif /* __LIBELF64 */	    /* we already had this	    else {		seterr(ERROR_UNIMPLEMENTED);		return 0;	    }	    */	    sd->sd_data.d_size = scn->s_size;	    sd->sd_data.d_version = _elf_version;	}	elf_assert(scn == &head[0].scn);	elf->e_scn_1 = &head[0].scn;	head[0].scn.s_freeme = 1;    }    return 1;}int_elf_cook(Elf *elf) {    elf_assert(_elf_scn_init.s_magic == SCN_MAGIC);    elf_assert(_elf_data_init.sd_magic == DATA_MAGIC);    elf_assert(elf);    elf_assert(elf->e_magic == ELF_MAGIC);    elf_assert(elf->e_kind == ELF_K_ELF);    elf_assert(!elf->e_ehdr);    if (!valid_version(elf->e_version)) {	seterr(ERROR_UNKNOWN_VERSION);    }    else if (!valid_encoding(elf->e_encoding)) {	seterr(ERROR_UNKNOWN_ENCODING);    }    else if (valid_class(elf->e_class)) {	return _elf_cook_file(elf);    }    else {	seterr(ERROR_UNKNOWN_CLASS);    }    return 0;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -