coff 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. #------------------------------------------------------------------------------
  2. # $File: coff,v 1.15 2024/11/10 18:54:33 christos Exp $
  3. # coff: file(1) magic for Common Object Files not specific to known cpu types or manufactures
  4. #
  5. # COFF
  6. #
  7. # by Joerg Jenderek at Oct 2015, Feb 2021, Mar 2024
  8. # https://en.wikipedia.org/wiki/COFF
  9. # https://de.wikipedia.org/wiki/Common_Object_File_Format
  10. # http://www.delorie.com/djgpp/doc/coff/filhdr.html
  11. # https://learn.microsoft.com/en-us/windows/win32/debug/pe-format#coff-file-header-object-and-image
  12. # https://formats.kaitai.io/uefi_te/index.html
  13. # Display COFF processor type, including MS COFF and PE/COFF
  14. 0 name display-coff-processor
  15. # PE/COFF, DJGPP, i386 COFF executable, MS Windows COFF Intel i386 object file (./intel)
  16. >0 uleshort 0x014c Intel i386
  17. >0 uleshort 0x014d Intel i860
  18. >0 uleshort 0x0160 MIPS R3000 (big-endian)
  19. >0 uleshort 0x0162 MIPS R3000
  20. >0 uleshort 0x0166 MIPS R4000
  21. >0 uleshort 0x0168 MIPS R10000
  22. >0 uleshort 0x0169 MIPS WCE v2
  23. >0 uleshort 0x0184 Alpha 32-bit
  24. >0 uleshort 0x01a2 Hitachi SH3
  25. >0 uleshort 0x01a3 Hitachi SH3 DSP
  26. >0 uleshort 0x01a4 Hitachi SH4E
  27. >0 uleshort 0x01a6 Hitachi SH4
  28. >0 uleshort 0x01a8 Hitachi SH5
  29. >0 uleshort 0x01c0 ARMv4
  30. >0 uleshort 0x01c2 ARMv4T
  31. >0 uleshort 0x01c4 ARMv7
  32. >0 uleshort 0x01d3 Matsushita AM33
  33. # executable (RISC System/6000 V3.1) or obj module (./ibm6000 v 1.15), not PE/COFF
  34. >0 uleshort 0x01df RISC System/6000
  35. >0 uleshort 0x01f0 PowerPC 32-bit (little-endian)
  36. >0 uleshort 0x01f1 PowerPC 32-bit with FPU (little-endian)
  37. >0 uleshort 0x01f2 PowerPC 64-bit (big-endian)
  38. >0 uleshort 0x0200 Intel Itanium
  39. >0 uleshort 0x0266 MIPS16
  40. >0 uleshort 0x0268 Motorola 68000
  41. >0 uleshort 0x0284 Alpha 64-bit
  42. >0 uleshort 0x0290 PA-RISC
  43. >0 uleshort 0x0366 MIPS with FPU
  44. >0 uleshort 0x0466 MIPS16 with FPU
  45. # Hitachi SH big-endian COFF (./hitachi-sh), not PE/COFF
  46. >0 uleshort 0x0500 Hitachi SH (big-endian)
  47. >0 uleshort 0x0520 Tricore
  48. # Hitachi SH little-endian COFF (./hitachi-sh), not PE/COFF
  49. >0 uleshort 0x0550 Hitachi SH (little-endian)
  50. >0 uleshort 0x0601 PowerPC 32-bit (big-endian)
  51. # Windows CE 3.0 Common Executable Format, created by linkcef.exe with /MACHINE:CEF flag
  52. # https://web.archive.org/web/20000819035046/http://microsoft.com/windows/embedded/ce/downloads/cef.asp
  53. # https://web.archive.org/web/20000914080342/http://microsoft.com/windows/embedded/ce/developer/applications/appdevelopment/cef2.asp
  54. # https://web.archive.org/web/20021022055906/http://msdn.microsoft.com/library/en-us/dnce30/html/cef2.asp
  55. >0 uleshort 0x0cef Common Executable Format
  56. >0 uleshort 0x0ebc EFI byte code
  57. >0 uleshort 0x3a64 ARM64 (i386 ABI)
  58. >0 uleshort 0x5032 RISC-V 32-bit
  59. >0 uleshort 0x5064 RISC-V 64-bit
  60. >0 uleshort 0x5128 RISC-V 128-bit
  61. >0 uleshort 0x6232 LoongArch 32-bit
  62. >0 uleshort 0x6264 LoongArch 64-bit
  63. >0 uleshort 0x8664 x86-64
  64. >0 uleshort 0x9041 Mitsubishi M32R
  65. >0 uleshort 0xa641 ARM64 (x86-64 ABI)
  66. >0 uleshort 0xa64e ARM64 (classic + x86-64 ABI)
  67. # PE/COFF ARM64 classic ABI, ARM COFF (./arm)
  68. >0 uleshort 0xaa64 ARM64
  69. >0 uleshort 0xace1 OMNI VM (omniprox.dll)
  70. # Processor type CEE can be only in object files (created by older ilasm.exe with /OBJECT flag), not in PE executables
  71. >0 uleshort 0xc0ee COM+ Execution Engine
  72. >0 default x Unknown processor
  73. >>0 uleshort x 0x%04x
  74. # display name+variables+flags of Common Object Files Format (32bit)
  75. # Maybe used also in adi,att3b,clipper,hitachi-sh,hp,ibm6000,intel,
  76. # mips,motorola,msdos,osf1,sharc,varied.out,vax
  77. 0 name display-coff
  78. # test for unused flag bits (0x8000,x0080) in f_flags
  79. # flag bits (0x0800,0x0400,0x0200) now seems to be used in RISC System/6000 V3.1
  80. >18 uleshort&0x8080 0
  81. # skip DOCTOR.DAILY READER.NDA REDBOX.ROOT by looking for positive number of sections
  82. >>2 uleshort >0
  83. # skip ega80woa.fnt svgafix.fnt HP3FNTS1.DAT HP3FNTS2.DAT INTRO.ACT LEARN.PIF by looking for low number of sections
  84. >>>2 uleshort <4207
  85. # f_magic - magic number
  86. >>>>0 use display-coff-processor
  87. >>>>0 uleshort x COFF
  88. # F_EXEC flag bit
  89. >>>>18 leshort ^0x0002 object file
  90. !:mime application/x-coff
  91. !:ext o/obj/lib
  92. # no cof sample found
  93. #!:ext cof/o/obj/lib
  94. >>>>18 leshort &0x0002 executable
  95. #!:mime application/x-coffexec
  96. !:mime application/x-coff-executable
  97. # typically no file name suffix for executables
  98. !:ext /
  99. # F_RELFLG flag bit,static object
  100. >>>>18 leshort &0x0001 \b, no relocation info
  101. # F_LNNO flag bit
  102. >>>>18 leshort &0x0004 \b, no line number info
  103. # F_LSYMS flag bit
  104. >>>>18 leshort &0x0008 \b, stripped
  105. >>>>18 leshort ^0x0008 \b, not stripped
  106. # flags in other COFF versions
  107. #0x0010 F_FDPR_PROF
  108. #0x0020 F_FDPR_OPTI
  109. #0x0040 F_DSA
  110. # F_AR32WR flag bit
  111. #>>>>18 leshort &0x0100 \b, 32 bit little endian
  112. #0x1000 F_DYNLOAD
  113. #0x2000 F_SHROBJ
  114. #0x4000 F_LOADONLY
  115. # f_nscns - number of sections like: 1 2 3 4 5 7 8 9 11 12 15 16 19 20 21 22 26 30 36 40 42 56 80 89 96 124
  116. >>>>2 uleshort <2 \b, %u section
  117. >>>>2 uleshort >1 \b, %u sections
  118. # f_symptr - symbol table pointer, only for not stripped
  119. # like: 0 0x7c 0xf4 0x104 0x182 0x1c2 0x1c6 0x468 0x948 0x416e 0x149a6 0x1c9d8 0x23a68 0x35120 0x7afa0
  120. >>>>8 ulelong >0 \b, symbol offset=%#x
  121. # f_nsyms - number of symbols, only for not stripped
  122. # like: 0 2 7 9 10 11 20 35 41 63 71 80 105 146 153 158 170 208 294 572 831 1546
  123. >>>>12 ulelong >0 \b, %d symbols
  124. # f_opthdr - optional header size. An object file should have a value of 0
  125. # like: 72 (IBM\HH\HYPERHLP)
  126. >>>>16 uleshort >0 \b, optional header size %u
  127. # f_timdat - file time & date stamp
  128. >>>>4 ledate >0 \b, created %s
  129. # at offset 20 can be optional header, extra bytes FILHSZ-20 because
  130. # do not rely on sizeof(FILHDR) to give the correct size for header.
  131. # or first section header
  132. # additional variables for other COFF files
  133. >>>>16 uleshort =0
  134. # most section names start with point character except samples created by "exotic" compilers
  135. # first section name s_name[8] like: .text .data .debug$S .drectve .testseg .rsrc .rsrc$01 .pad
  136. >>>>>(16.s+20) string x \b, 1st section name "%.8s"
  137. # physical address s_paddr like: 0
  138. #>>>>>(16.s+28) lelong !0 \b, s_paddr %#8.8x
  139. # virtual address s_vaddr like: 0
  140. #>>>>>(16.s+32) lelong !0 \b, s_vaddr %#8.8x
  141. # section size s_size
  142. #>>>>>(16.s+36) lelong x \b, s_size %#8.8x
  143. # file ptr to raw data for section s_scnpt
  144. #>>>>>(16.s+40) lelong x \b, s_scnpt %#8.8x
  145. # file ptr to relocation s_relptr like: 0
  146. #>>>>>(16.s+44) lelong !0 \b, s_relptr %#8.8x
  147. # file ptr to gp histogram s_lnnoptr like: 0
  148. #>>>>>(16.s+48) lelong !0 \b, s_lnnoptr %#8.8x
  149. # number of relocation entries s_nreloc like: 0 1 2 5 6 8 19h 26h 27h 38h 50h 5Fh 89h Dh 1Ch 69h A9h 1DCh 651h
  150. #>>>>>(16.s+52) uleshort x \b, s_nreloc %#4.4x
  151. # number of gp histogram entries s_nlnno like: 0
  152. #>>>>>(16.s+54) uleshort !0 \b, s_nlnno %#4.4x
  153. # flags s_flags
  154. #>>>>>(16.s+56) lelong x \b, s_flags %#8.8x
  155. # second section name s_name[8] like: .bss .data .debug$S .rsrc$01
  156. >>>>2 uleshort >1
  157. >>>>>(16.s+60) string x \b, 2nd section name "%.8s"
  158. # >20 beshort 0407 (impure)
  159. # >20 beshort 0410 (pure)
  160. # >20 beshort 0413 (demand paged)
  161. # >20 beshort 0421 (standalone)
  162. # >22 leshort >0 - version %d
  163. # >168 string .lowmem Apple toolbox
  164. # PowerPC COFF object file or executable
  165. 0 leshort 0x01f0
  166. >16 leshort 0
  167. >>0 use display-coff
  168. # can be created by: LINK.EXE /MACHINE:powerpc /ROM
  169. >16 leshort !0
  170. >>18 leshort &0x0002
  171. >>>20 leshort 0x010b
  172. >>>>0 use display-coff
  173. 0 leshort 0x01f1
  174. >16 leshort 0
  175. >>0 use display-coff
  176. 0 leshort 0x01f2
  177. >16 leshort 0
  178. >>0 use display-coff
  179. 0 leshort 0x0601
  180. >16 leshort 0
  181. >>0 use display-coff
  182. # can be created by: LINK.EXE /MACHINE:MPPC /ROM
  183. >16 leshort !0
  184. >>18 leshort &0x0002
  185. >>>20 leshort 0x010b
  186. >>>>0 use display-coff
  187. 0 name display-subsystem
  188. >0 ubyte 0 unknown
  189. >0 ubyte 1 native
  190. >0 ubyte 2 windows_gui
  191. >0 ubyte 3 windows_cui
  192. >0 ubyte 7 posix_cui
  193. >0 ubyte 9 windows_ce_gui
  194. >0 ubyte 10 efi_application
  195. >0 ubyte 11 efi_boot_service_driver
  196. >0 ubyte 12 efi_runtime_driver
  197. >0 ubyte 13 efi_rom
  198. >0 ubyte 14 xbox
  199. >0 ubyte 16 windows_boot-application
  200. >0 default x Unknown subsystem
  201. >>0 ubyte x %#x
  202. # https://formats.kaitai.io/uefi_te/index.html
  203. 0 string VZ TE (Terse Executable) file
  204. >2 use display-coff-processor
  205. >4 byte x \b, sections %d
  206. >5 use display-subsystem
  207. >6 uleshort x \b, stripped-size %u
  208. >8 ulelong x \b, entry %#x
  209. >12 ulelong x \b, base_of_code %#x
  210. >16 ulequad x \b, image_base %#llx