coff.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:12k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* This file is derived from the GAS 2.1.4 assembler control file.
  2.    The GAS product is under the GNU General Public License, version 2 or later.
  3.    As such, this file is also under that license.
  4.    If the file format changes in the COFF object, this file should be
  5.    subsequently updated to reflect the changes.
  6.    The actual loader module only uses a few of these structures. The full
  7.    set is documented here because I received the full set. If you wish
  8.    more information about COFF, then O'Reilly has a very excellent book.
  9. */
  10. #define  E_SYMNMLEN  8   /* Number of characters in a symbol name         */
  11. #define  E_FILNMLEN 14   /* Number of characters in a file name           */
  12. #define  E_DIMNUM    4   /* Number of array dimensions in auxiliary entry */
  13. /*
  14.  * These defines are byte order independent. There is no alignment of fields
  15.  * permitted in the structures. Therefore they are declared as characters
  16.  * and the values loaded from the character positions. It also makes it
  17.  * nice to have it "endian" independent.
  18.  */
  19.  
  20. /* Load a short int from the following tables with little-endian formats */
  21. #define COFF_SHORT_L(ps) ((short)(((unsigned short)((unsigned char)ps[1])<<8)|
  22.   ((unsigned short)((unsigned char)ps[0]))))
  23. /* Load a long int from the following tables with little-endian formats */
  24. #define COFF_LONG_L(ps) (((long)(((unsigned long)((unsigned char)ps[3])<<24) |
  25.  ((unsigned long)((unsigned char)ps[2])<<16) |
  26.  ((unsigned long)((unsigned char)ps[1])<<8)  |
  27.  ((unsigned long)((unsigned char)ps[0])))))
  28.  
  29. /* Load a short int from the following tables with big-endian formats */
  30. #define COFF_SHORT_H(ps) ((short)(((unsigned short)((unsigned char)ps[0])<<8)|
  31.   ((unsigned short)((unsigned char)ps[1]))))
  32. /* Load a long int from the following tables with big-endian formats */
  33. #define COFF_LONG_H(ps) (((long)(((unsigned long)((unsigned char)ps[0])<<24) |
  34.  ((unsigned long)((unsigned char)ps[1])<<16) |
  35.  ((unsigned long)((unsigned char)ps[2])<<8)  |
  36.  ((unsigned long)((unsigned char)ps[3])))))
  37. /* These may be overridden later by brain dead implementations which generate
  38.    a big-endian header with little-endian data. In that case, generate a
  39.    replacement macro which tests a flag and uses either of the two above
  40.    as appropriate. */
  41. #define COFF_LONG(v)   COFF_LONG_L(v)
  42. #define COFF_SHORT(v)  COFF_SHORT_L(v)
  43. /*** coff information for Intel 386/486.  */
  44. /********************** FILE HEADER **********************/
  45. struct COFF_filehdr {
  46. char f_magic[2]; /* magic number */
  47. char f_nscns[2]; /* number of sections */
  48. char f_timdat[4]; /* time & date stamp */
  49. char f_symptr[4]; /* file pointer to symtab */
  50. char f_nsyms[4]; /* number of symtab entries */
  51. char f_opthdr[2]; /* sizeof(optional hdr) */
  52. char f_flags[2]; /* flags */
  53. };
  54. /*
  55.  *   Bits for f_flags:
  56.  *
  57.  * F_RELFLG relocation info stripped from file
  58.  * F_EXEC file is executable  (i.e. no unresolved external
  59.  * references)
  60.  * F_LNNO line numbers stripped from file
  61.  * F_LSYMS local symbols stripped from file
  62.  * F_MINMAL this is a minimal object file (".m") output of fextract
  63.  * F_UPDATE this is a fully bound update file, output of ogen
  64.  * F_SWABD this file has had its bytes swabbed (in names)
  65.  * F_AR16WR this file has the byte ordering of an AR16WR
  66.  * (e.g. 11/70) machine
  67.  * F_AR32WR this file has the byte ordering of an AR32WR machine
  68.  * (e.g. vax and iNTEL 386)
  69.  * F_AR32W this file has the byte ordering of an AR32W machine
  70.  * (e.g. 3b,maxi)
  71.  * F_PATCH file contains "patch" list in optional header
  72.  * F_NODF (minimal file only) no decision functions for
  73.  * replaced functions
  74.  */
  75. #define  COFF_F_RELFLG 0000001
  76. #define  COFF_F_EXEC 0000002
  77. #define  COFF_F_LNNO 0000004
  78. #define  COFF_F_LSYMS 0000010
  79. #define  COFF_F_MINMAL 0000020
  80. #define  COFF_F_UPDATE 0000040
  81. #define  COFF_F_SWABD 0000100
  82. #define  COFF_F_AR16WR 0000200
  83. #define  COFF_F_AR32WR 0000400
  84. #define  COFF_F_AR32W 0001000
  85. #define  COFF_F_PATCH 0002000
  86. #define  COFF_F_NODF 0002000
  87. #define COFF_I386MAGIC         0x14c   /* Linux's system    */
  88. #if 0   /* Perhaps, someday, these formats may be used.      */
  89. #define COFF_I386PTXMAGIC 0x154
  90. #define COFF_I386AIXMAGIC 0x175   /* IBM's AIX system  */
  91. #define COFF_I386BADMAG(x) ((COFF_SHORT((x).f_magic) != COFF_I386MAGIC) 
  92.   && COFF_SHORT((x).f_magic) != COFF_I386PTXMAGIC 
  93.   && COFF_SHORT((x).f_magic) != COFF_I386AIXMAGIC)
  94. #else
  95. #define COFF_I386BADMAG(x) (COFF_SHORT((x).f_magic) != COFF_I386MAGIC)
  96. #endif
  97. #define COFF_FILHDR struct COFF_filehdr
  98. #define COFF_FILHSZ sizeof(COFF_FILHDR)
  99. /********************** AOUT "OPTIONAL HEADER" **********************/
  100. /* Linux COFF must have this "optional" header. Standard COFF has no entry
  101.    location for the "entry" point. They normally would start with the first
  102.    location of the .text section. This is not a good idea for linux. So,
  103.    the use of this "optional" header is not optional. It is required.
  104.    Do not be tempted to assume that the size of the optional header is
  105.    a constant and simply index the next byte by the size of this structure.
  106.    Use the 'f_opthdr' field in the main coff header for the size of the
  107.    structure actually written to the file!!
  108. */
  109. typedef struct 
  110. {
  111.   char  magic[2]; /* type of file  */
  112.   char vstamp[2]; /* version stamp  */
  113.   char tsize[4]; /* text size in bytes, padded to FW bdry */
  114.   char dsize[4]; /* initialized   data "   "  */
  115.   char bsize[4]; /* uninitialized data "   "  */
  116.   char entry[4]; /* entry pt.  */
  117.   char  text_start[4]; /* base of text used for this file       */
  118.   char  data_start[4]; /* base of data used for this file       */
  119. }
  120. COFF_AOUTHDR;
  121. #define COFF_AOUTSZ (sizeof(COFF_AOUTHDR))
  122. #define COFF_STMAGIC 0401
  123. #define COFF_OMAGIC     0404
  124. #define COFF_JMAGIC     0407    /* dirty text and data image, can't share  */
  125. #define COFF_DMAGIC     0410    /* dirty text segment, data aligned        */
  126. #define COFF_ZMAGIC     0413    /* The proper magic number for executables  */
  127. #define COFF_SHMAGIC 0443 /* shared library header                   */
  128. /********************** SECTION HEADER **********************/
  129. struct COFF_scnhdr {
  130.   char s_name[8]; /* section name     */
  131.   char s_paddr[4]; /* physical address, aliased s_nlib */
  132.   char s_vaddr[4]; /* virtual address     */
  133.   char s_size[4]; /* section size     */
  134.   char s_scnptr[4]; /* file ptr to raw data for section */
  135.   char s_relptr[4]; /* file ptr to relocation     */
  136.   char s_lnnoptr[4]; /* file ptr to line numbers     */
  137.   char s_nreloc[2]; /* number of relocation entries     */
  138.   char s_nlnno[2]; /* number of line number entries    */
  139.   char s_flags[4]; /* flags     */
  140. };
  141. #define COFF_SCNHDR struct COFF_scnhdr
  142. #define COFF_SCNHSZ sizeof(COFF_SCNHDR)
  143. /*
  144.  * names of "special" sections
  145.  */
  146. #define COFF_TEXT ".text"
  147. #define COFF_DATA ".data"
  148. #define COFF_BSS ".bss"
  149. #define COFF_COMMENT    ".comment"
  150. #define COFF_LIB        ".lib"
  151. #define COFF_SECT_TEXT  0      /* Section for instruction code             */
  152. #define COFF_SECT_DATA  1      /* Section for initialized globals          */
  153. #define COFF_SECT_BSS   2      /* Section for un-initialized globals       */
  154. #define COFF_SECT_REQD  3      /* Minimum number of sections for good file */
  155. #define COFF_STYP_REG     0x00 /* regular segment                          */
  156. #define COFF_STYP_DSECT   0x01 /* dummy segment                            */
  157. #define COFF_STYP_NOLOAD  0x02 /* no-load segment                          */
  158. #define COFF_STYP_GROUP   0x04 /* group segment                            */
  159. #define COFF_STYP_PAD     0x08 /* .pad segment                             */
  160. #define COFF_STYP_COPY    0x10 /* copy section                             */
  161. #define COFF_STYP_TEXT    0x20 /* .text segment                            */
  162. #define COFF_STYP_DATA    0x40 /* .data segment                            */
  163. #define COFF_STYP_BSS     0x80 /* .bss segment                             */
  164. #define COFF_STYP_INFO   0x200 /* .comment section                         */
  165. #define COFF_STYP_OVER   0x400 /* overlay section                          */
  166. #define COFF_STYP_LIB    0x800 /* library section                          */
  167. /*
  168.  * Shared libraries have the following section header in the data field for
  169.  * each library.
  170.  */
  171. struct COFF_slib {
  172.   char sl_entsz[4]; /* Size of this entry               */
  173.   char sl_pathndx[4]; /* size of the header field         */
  174. };
  175. #define COFF_SLIBHD struct COFF_slib
  176. #define COFF_SLIBSZ sizeof(COFF_SLIBHD)
  177. /********************** LINE NUMBERS **********************/
  178. /* 1 line number entry for every "breakpointable" source line in a section.
  179.  * Line numbers are grouped on a per function basis; first entry in a function
  180.  * grouping will have l_lnno = 0 and in place of physical address will be the
  181.  * symbol table index of the function name.
  182.  */
  183. struct COFF_lineno {
  184.   union {
  185.     char l_symndx[4]; /* function name symbol index, iff l_lnno == 0*/
  186.     char l_paddr[4]; /* (physical) address of line number */
  187.   } l_addr;
  188.   char l_lnno[2]; /* line number */
  189. };
  190. #define COFF_LINENO struct COFF_lineno
  191. #define COFF_LINESZ 6
  192. /********************** SYMBOLS **********************/
  193. #define COFF_E_SYMNMLEN  8 /* # characters in a short symbol name */
  194. #define COFF_E_FILNMLEN 14 /* # characters in a file name */
  195. #define COFF_E_DIMNUM  4 /* # array dimensions in auxiliary entry */
  196. /*
  197.  *  All symbols and sections have the following definition
  198.  */
  199. struct COFF_syment 
  200. {
  201.   union {
  202.     char e_name[E_SYMNMLEN];    /* Symbol name (first 8 characters) */
  203.     struct {
  204.       char e_zeroes[4];         /* Leading zeros */
  205.       char e_offset[4];         /* Offset if this is a header section */
  206.     } e;
  207.   } e;
  208.   char e_value[4];              /* Value (address) of the segment */
  209.   char e_scnum[2];              /* Section number */
  210.   char e_type[2];               /* Type of section */
  211.   char e_sclass[1];             /* Loader class */
  212.   char e_numaux[1];             /* Number of auxiliary entries which follow */
  213. };
  214. #define COFF_N_BTMASK (0xf)   /* Mask for important class bits */
  215. #define COFF_N_TMASK (0x30)  /* Mask for important type bits  */
  216. #define COFF_N_BTSHFT (4)     /* # bits to shift class field   */
  217. #define COFF_N_TSHIFT (2)     /* # bits to shift type field    */
  218. /*
  219.  *  Auxiliary entries because the main table is too limiting.
  220.  */
  221.   
  222. union COFF_auxent {
  223. /*
  224.  *  Debugger information
  225.  */
  226.   struct {
  227.     char x_tagndx[4];         /* str, un, or enum tag indx */
  228.     union {
  229.       struct {
  230. char  x_lnno[2];        /* declaration line number */
  231. char  x_size[2];        /* str/union/array size */
  232.       } x_lnsz;
  233.       char x_fsize[4];         /* size of function */
  234.     } x_misc;
  235.     union {
  236.       struct {         /* if ISFCN, tag, or .bb */
  237. char x_lnnoptr[4]; /* ptr to fcn line # */
  238. char x_endndx[4]; /* entry ndx past block end */
  239.       } x_fcn;
  240.       struct {         /* if ISARY, up to 4 dimen. */
  241. char x_dimen[E_DIMNUM][2];
  242.       } x_ary;
  243.     } x_fcnary;
  244.     char x_tvndx[2]; /* tv index */
  245.   } x_sym;
  246. /*
  247.  *   Source file names (debugger information)
  248.  */
  249.   union {
  250.     char x_fname[E_FILNMLEN];
  251.     struct {
  252.       char x_zeroes[4];
  253.       char x_offset[4];
  254.     } x_n;
  255.   } x_file;
  256. /*
  257.  *   Section information
  258.  */
  259.   struct {
  260.     char x_scnlen[4]; /* section length */
  261.     char x_nreloc[2]; /* # relocation entries */
  262.     char x_nlinno[2]; /* # line numbers */
  263.   } x_scn;
  264. /*
  265.  *   Transfer vector (branch table)
  266.  */
  267.   
  268.   struct {
  269.     char x_tvfill[4]; /* tv fill value */
  270.     char x_tvlen[2]; /* length of .tv */
  271.     char x_tvran[2][2]; /* tv range */
  272.   } x_tv; /* info about .tv section (in auxent of symbol .tv)) */
  273. };
  274. #define COFF_SYMENT struct COFF_syment
  275. #define COFF_SYMESZ 18
  276. #define COFF_AUXENT union COFF_auxent
  277. #define COFF_AUXESZ 18
  278. #define COFF_ETEXT "etext"
  279. /********************** RELOCATION DIRECTIVES **********************/
  280. struct COFF_reloc {
  281.   char r_vaddr[4];        /* Virtual address of item    */
  282.   char r_symndx[4];       /* Symbol index in the symtab */
  283.   char r_type[2];         /* Relocation type            */
  284. };
  285. #define COFF_RELOC struct COFF_reloc
  286. #define COFF_RELSZ 10
  287. #define COFF_DEF_DATA_SECTION_ALIGNMENT  4
  288. #define COFF_DEF_BSS_SECTION_ALIGNMENT   4
  289. #define COFF_DEF_TEXT_SECTION_ALIGNMENT  4
  290. /* For new sections we haven't heard of before */
  291. #define COFF_DEF_SECTION_ALIGNMENT       4