1298178Sdelphij
2298178Sdelphij#------------------------------------------------------------------------------
3298178Sdelphij# $File: coff,v 1.1 2015/09/30 20:32:35 christos Exp $
4298178Sdelphij# coff: file(1) magic for Common Object Files not specific to known cpu types or manufactures
5298178Sdelphij#
6298178Sdelphij# COFF
7298178Sdelphij#
8298178Sdelphij# by Joerg Jenderek at Oct 2015
9298178Sdelphij# https://en.wikipedia.org/wiki/COFF
10298178Sdelphij# https://de.wikipedia.org/wiki/Common_Object_File_Format
11298178Sdelphij# http://www.delorie.com/djgpp/doc/coff/filhdr.html
12298178Sdelphij
13298178Sdelphij# display name+variables+flags of Common Object Files Format (32bit)
14298178Sdelphij# Maybe used also in adi,att3b,clipper,hitachi-sh,hp,ibm6000,intel,
15298178Sdelphij# mips,motorola,msdos,osf1,sharc,varied.out,vax
16298178Sdelphij0	name				display-coff
17298178Sdelphij# test for unused flag bits (0x8000,0x0800,0x0400,0x0200,x0080) in f_flags
18298178Sdelphij>18	uleshort&0x8E80	0		
19298178Sdelphij>>0	clear		x
20298178Sdelphij# f_magic - magic number
21298178Sdelphij# DJGPP, 80386 COFF executable, MS Windows COFF Intel 80386 object file (./intel)
22298178Sdelphij>>0	uleshort	0x014C		Intel 80386
23298178Sdelphij# Hitachi SH big-endian COFF (./hitachi-sh)
24298178Sdelphij>>0	uleshort	0x0500		Hitachi SH big-endian
25298178Sdelphij# Hitachi SH little-endian COFF (./hitachi-sh)
26298178Sdelphij>>0	uleshort	0x0550		Hitachi SH little-endian
27298178Sdelphij# executable (RISC System/6000 V3.1) or obj module (./ibm6000)
28298178Sdelphij#>>0	uleshort	0x01DF		
29298178Sdelphij# TODO for other COFFs
30298178Sdelphij#>>0	uleshort	0xABCD		COFF_TEMPLATE
31298178Sdelphij>>0	default		x
32298178Sdelphij>>>0	uleshort	x		type 0x%04x
33298178Sdelphij>>0	uleshort	x		COFF
34298178Sdelphij# F_EXEC flag bit
35298178Sdelphij>>18	leshort		^0x0002		object file
36298178Sdelphij#!:mime	application/x-coff
37298178Sdelphij#!:ext cof/o/obj/lib
38298178Sdelphij>>18	leshort		&0x0002		executable
39298178Sdelphij#!:mime	application/x-coffexec
40298178Sdelphij# F_RELFLG flag bit,static object
41298178Sdelphij>>18	leshort		&0x0001		\b, no relocation info
42298178Sdelphij# F_LNNO flag bit
43298178Sdelphij>>18	leshort		&0x0004		\b, no line number info
44298178Sdelphij# F_LSYMS flag bit
45298178Sdelphij>>18	leshort		&0x0008		\b, stripped
46298178Sdelphij>>18	leshort		^0x0008		\b, not stripped
47298178Sdelphij# flags in other COFF versions
48298178Sdelphij#0x0010    F_FDPR_PROF 
49298178Sdelphij#0x0020    F_FDPR_OPTI
50298178Sdelphij#0x0040    F_DSA
51298178Sdelphij# F_AR32WR flag bit
52298178Sdelphij#>>>18	leshort		&0x0100		\b, 32 bit little endian
53298178Sdelphij#0x1000    F_DYNLOAD 
54298178Sdelphij#0x2000    F_SHROBJ
55298178Sdelphij#0x4000    F_LOADONLY
56298178Sdelphij# f_nscns - number of sections
57298178Sdelphij>>2	uleshort	<2		\b, %d section
58298178Sdelphij>>2	uleshort	>1		\b, %d sections
59298178Sdelphij# f_timdat - file time & date stamp only for little endian
60298178Sdelphij#>>4	date		x		\b, %s
61298178Sdelphij# f_symptr - symbol table pointer, only for not stripped
62298178Sdelphij>>8	ulelong		>0		\b, symbol offset=0x%x
63298178Sdelphij# f_nsyms - number of symbols, only for not stripped
64298178Sdelphij>>12	ulelong		>0		\b, %d symbols
65298178Sdelphij# f_opthdr - optional header size 
66298178Sdelphij>>16	uleshort	>0		\b, optional header size %d
67298178Sdelphij# at offset 20 can be optional header, extra bytes FILHSZ-20 because
68298178Sdelphij# do not rely on sizeof(FILHDR) to give the correct size for header.
69298178Sdelphij# or first section header
70298178Sdelphij# additional variables for other COFF files
71298178Sdelphij# >20	beshort		0407		(impure)
72298178Sdelphij# >20	beshort		0410		(pure)
73298178Sdelphij# >20	beshort		0413		(demand paged)
74298178Sdelphij# >20	beshort		0421		(standalone)
75298178Sdelphij# >22	leshort		>0		- version %d
76298178Sdelphij# >168	string		.lowmem		Apple toolbox
77298178Sdelphij
78