1.\" $File: magic.man,v 1.99 2021/05/09 22:37:23 christos Exp $ 2.Dd May 9, 2021 3.Dt MAGIC __FSECTION__ 4.Os 5.\" install as magic.4 on USG, magic.5 on V7, Berkeley and Linux systems. 6.Sh NAME 7.Nm magic 8.Nd file command's magic pattern file 9.Sh DESCRIPTION 10This manual page documents the format of magic files as 11used by the 12.Xr file __CSECTION__ 13command, version __VERSION__. 14The 15.Xr file __CSECTION__ 16command identifies the type of a file using, 17among other tests, 18a test for whether the file contains certain 19.Dq "magic patterns" . 20The database of these 21.Dq "magic patterns" 22is usually located in a binary file in 23.Pa __MAGIC__.mgc 24or a directory of source text magic pattern fragment files in 25.Pa __MAGIC__ . 26The database specifies what patterns are to be tested for, what message or 27MIME type to print if a particular pattern is found, 28and additional information to extract from the file. 29.Pp 30The format of the source fragment files that are used to build this database 31is as follows: 32Each line of a fragment file specifies a test to be performed. 33A test compares the data starting at a particular offset 34in the file with a byte value, a string or a numeric value. 35If the test succeeds, a message is printed. 36The line consists of the following fields: 37.Bl -tag -width ".Dv message" 38.It Dv offset 39A number specifying the offset (in bytes) into the file of the data 40which is to be tested. 41This offset can be a negative number if it is: 42.Bl -bullet -compact 43.It 44The first direct offset of the magic entry (at continuation level 0), 45in which case it is interpreted an offset from end end of the file 46going backwards. 47This works only when a file descriptor to the file is available and it 48is a regular file. 49.It 50A continuation offset relative to the end of the last up-level field 51.Dv ( \*[Am] ) . 52.El 53.It Dv type 54The type of the data to be tested. 55The possible values are: 56.Bl -tag -width ".Dv lestring16" 57.It Dv byte 58A one-byte value. 59.It Dv short 60A two-byte value in this machine's native byte order. 61.It Dv long 62A four-byte value in this machine's native byte order. 63.It Dv quad 64An eight-byte value in this machine's native byte order. 65.It Dv float 66A 32-bit single precision IEEE floating point number in this machine's native byte order. 67.It Dv double 68A 64-bit double precision IEEE floating point number in this machine's native byte order. 69.It Dv string 70A string of bytes. 71The string type specification can be optionally followed 72by /[WwcCtbTf]*. 73The 74.Dq W 75flag compacts whitespace in the target, which must 76contain at least one whitespace character. 77If the magic has 78.Dv n 79consecutive blanks, the target needs at least 80.Dv n 81consecutive blanks to match. 82The 83.Dq w 84flag treats every blank in the magic as an optional blank. 85The 86.Dq f 87flags requires that the matched string is a full word, not a partial word match. 88The 89.Dq c 90flag specifies case insensitive matching: lower case 91characters in the magic match both lower and upper case characters in the 92target, whereas upper case characters in the magic only match upper case 93characters in the target. 94The 95.Dq C 96flag specifies case insensitive matching: upper case 97characters in the magic match both lower and upper case characters in the 98target, whereas lower case characters in the magic only match upper case 99characters in the target. 100To do a complete case insensitive match, specify both 101.Dq c 102and 103.Dq C . 104The 105.Dq t 106flag forces the test to be done for text files, while the 107.Dq b 108flag forces the test to be done for binary files. 109The 110.Dq T 111flag causes the string to be trimmed, i.e. leading and trailing whitespace 112is deleted before the string is printed. 113.It Dv pstring 114A Pascal-style string where the first byte/short/int is interpreted as the 115unsigned length. 116The length defaults to byte and can be specified as a modifier. 117The following modifiers are supported: 118.Bl -tag -compact -width B 119.It B 120A byte length (default). 121.It H 122A 2 byte big endian length. 123.It h 124A 2 byte little endian length. 125.It L 126A 4 byte big endian length. 127.It l 128A 4 byte little endian length. 129.It J 130The length includes itself in its count. 131.El 132The string is not NUL terminated. 133.Dq J 134is used rather than the more 135valuable 136.Dq I 137because this type of length is a feature of the JPEG 138format. 139.It Dv date 140A four-byte value interpreted as a UNIX date. 141.It Dv qdate 142An eight-byte value interpreted as a UNIX date. 143.It Dv ldate 144A four-byte value interpreted as a UNIX-style date, but interpreted as 145local time rather than UTC. 146.It Dv qldate 147An eight-byte value interpreted as a UNIX-style date, but interpreted as 148local time rather than UTC. 149.It Dv qwdate 150An eight-byte value interpreted as a Windows-style date. 151.It Dv beid3 152A 32-bit ID3 length in big-endian byte order. 153.It Dv beshort 154A two-byte value in big-endian byte order. 155.It Dv belong 156A four-byte value in big-endian byte order. 157.It Dv bequad 158An eight-byte value in big-endian byte order. 159.It Dv befloat 160A 32-bit single precision IEEE floating point number in big-endian byte order. 161.It Dv bedouble 162A 64-bit double precision IEEE floating point number in big-endian byte order. 163.It Dv bedate 164A four-byte value in big-endian byte order, 165interpreted as a Unix date. 166.It Dv beqdate 167An eight-byte value in big-endian byte order, 168interpreted as a Unix date. 169.It Dv beldate 170A four-byte value in big-endian byte order, 171interpreted as a UNIX-style date, but interpreted as local time rather 172than UTC. 173.It Dv beqldate 174An eight-byte value in big-endian byte order, 175interpreted as a UNIX-style date, but interpreted as local time rather 176than UTC. 177.It Dv beqwdate 178An eight-byte value in big-endian byte order, 179interpreted as a Windows-style date. 180.It Dv bestring16 181A two-byte unicode (UCS16) string in big-endian byte order. 182.It Dv leid3 183A 32-bit ID3 length in little-endian byte order. 184.It Dv leshort 185A two-byte value in little-endian byte order. 186.It Dv lelong 187A four-byte value in little-endian byte order. 188.It Dv lequad 189An eight-byte value in little-endian byte order. 190.It Dv lefloat 191A 32-bit single precision IEEE floating point number in little-endian byte order. 192.It Dv ledouble 193A 64-bit double precision IEEE floating point number in little-endian byte order. 194.It Dv ledate 195A four-byte value in little-endian byte order, 196interpreted as a UNIX date. 197.It Dv leqdate 198An eight-byte value in little-endian byte order, 199interpreted as a UNIX date. 200.It Dv leldate 201A four-byte value in little-endian byte order, 202interpreted as a UNIX-style date, but interpreted as local time rather 203than UTC. 204.It Dv leqldate 205An eight-byte value in little-endian byte order, 206interpreted as a UNIX-style date, but interpreted as local time rather 207than UTC. 208.It Dv leqwdate 209An eight-byte value in little-endian byte order, 210interpreted as a Windows-style date. 211.It Dv lestring16 212A two-byte unicode (UCS16) string in little-endian byte order. 213.It Dv melong 214A four-byte value in middle-endian (PDP-11) byte order. 215.It Dv medate 216A four-byte value in middle-endian (PDP-11) byte order, 217interpreted as a UNIX date. 218.It Dv meldate 219A four-byte value in middle-endian (PDP-11) byte order, 220interpreted as a UNIX-style date, but interpreted as local time rather 221than UTC. 222.It Dv indirect 223Starting at the given offset, consult the magic database again. 224The offset of the 225.Dv indirect 226magic is by default absolute in the file, but one can specify 227.Dv /r 228to indicate that the offset is relative from the beginning of the entry. 229.It Dv name 230Define a 231.Dq named 232magic instance that can be called from another 233.Dv use 234magic entry, like a subroutine call. 235Named instance direct magic offsets are relative to the offset of the 236previous matched entry, but indirect offsets are relative to the beginning 237of the file as usual. 238Named magic entries always match. 239.It Dv use 240Recursively call the named magic starting from the current offset. 241If the name of the referenced begins with a 242.Dv ^ 243then the endianness of the magic is switched; if the magic mentioned 244.Dv leshort 245for example, 246it is treated as 247.Dv beshort 248and vice versa. 249This is useful to avoid duplicating the rules for different endianness. 250.It Dv regex 251A regular expression match in extended POSIX regular expression syntax 252(like egrep). 253Regular expressions can take exponential time to process, and their 254performance is hard to predict, so their use is discouraged. 255When used in production environments, their performance 256should be carefully checked. 257The size of the string to search should also be limited by specifying 258.Dv /<length> , 259to avoid performance issues scanning long files. 260The type specification can also be optionally followed by 261.Dv /[c][s][l] . 262The 263.Dq c 264flag makes the match case insensitive, while the 265.Dq s 266flag update the offset to the start offset of the match, rather than the end. 267The 268.Dq l 269modifier, changes the limit of length to mean number of lines instead of a 270byte count. 271Lines are delimited by the platforms native line delimiter. 272When a line count is specified, an implicit byte count also computed assuming 273each line is 80 characters long. 274If neither a byte or line count is specified, the search is limited automatically 275to 8KiB. 276.Dv ^ 277and 278.Dv $ 279match the beginning and end of individual lines, respectively, 280not beginning and end of file. 281.It Dv search 282A literal string search starting at the given offset. 283The same modifier flags can be used as for string patterns. 284The search expression must contain the range in the form 285.Dv /number, 286that is the number of positions at which the match will be 287attempted, starting from the start offset. 288This is suitable for 289searching larger binary expressions with variable offsets, using 290.Dv \e 291escapes for special characters. 292The order of modifier and number is not relevant. 293.It Dv default 294This is intended to be used with the test 295.Em x 296(which is always true) and it has no type. 297It matches when no other test at that continuation level has matched before. 298Clearing that matched tests for a continuation level, can be done using the 299.Dv clear 300test. 301.It Dv clear 302This test is always true and clears the match flag for that continuation level. 303It is intended to be used with the 304.Dv default 305test. 306.It Dv der 307Parse the file as a DER Certificate file. 308The test field is used as a der type that needs to be matched. 309The DER types are: 310.Dv eoc , 311.Dv bool , 312.Dv int , 313.Dv bit_str , 314.Dv octet_str , 315.Dv null , 316.Dv obj_id , 317.Dv obj_desc , 318.Dv ext , 319.Dv real , 320.Dv enum , 321.Dv embed , 322.Dv utf8_str , 323.Dv rel_oid , 324.Dv time , 325.Dv res2 , 326.Dv seq , 327.Dv set , 328.Dv num_str , 329.Dv prt_str , 330.Dv t61_str , 331.Dv vid_str , 332.Dv ia5_str , 333.Dv utc_time , 334.Dv gen_time , 335.Dv gr_str , 336.Dv vis_str , 337.Dv gen_str , 338.Dv univ_str , 339.Dv char_str , 340.Dv bmp_str , 341.Dv date , 342.Dv tod , 343.Dv datetime , 344.Dv duration , 345.Dv oid-iri , 346.Dv rel-oid-iri . 347These types can be followed by an optional numeric size, which indicates 348the field width in bytes. 349.It Dv guid 350A Globally Unique Identifier, parsed and printed as 351XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX. 352It's format is a string. 353.It Dv offset 354This is a quad value indicating the current offset of the file. 355It can be used to determine the size of the file or the magic buffer. 356For example the magic entries: 357.Bd -literal -offset indent 358-0 offset x this file is %lld bytes 359-0 offset <=100 must be more than 100 \e 360 bytes and is only %lld 361.Ed 362.El 363.Pp 364For compatibility with the Single 365.Ux 366Standard, the type specifiers 367.Dv dC 368and 369.Dv d1 370are equivalent to 371.Dv byte , 372the type specifiers 373.Dv uC 374and 375.Dv u1 376are equivalent to 377.Dv ubyte , 378the type specifiers 379.Dv dS 380and 381.Dv d2 382are equivalent to 383.Dv short , 384the type specifiers 385.Dv uS 386and 387.Dv u2 388are equivalent to 389.Dv ushort , 390the type specifiers 391.Dv dI , 392.Dv dL , 393and 394.Dv d4 395are equivalent to 396.Dv long , 397the type specifiers 398.Dv uI , 399.Dv uL , 400and 401.Dv u4 402are equivalent to 403.Dv ulong , 404the type specifier 405.Dv d8 406is equivalent to 407.Dv quad , 408the type specifier 409.Dv u8 410is equivalent to 411.Dv uquad , 412and the type specifier 413.Dv s 414is equivalent to 415.Dv string . 416In addition, the type specifier 417.Dv dQ 418is equivalent to 419.Dv quad 420and the type specifier 421.Dv uQ 422is equivalent to 423.Dv uquad . 424.Pp 425Each top-level magic pattern (see below for an explanation of levels) 426is classified as text or binary according to the types used. 427Types 428.Dq regex 429and 430.Dq search 431are classified as text tests, unless non-printable characters are used 432in the pattern. 433All other tests are classified as binary. 434A top-level 435pattern is considered to be a test text when all its patterns are text 436patterns; otherwise, it is considered to be a binary pattern. 437When 438matching a file, binary patterns are tried first; if no match is 439found, and the file looks like text, then its encoding is determined 440and the text patterns are tried. 441.Pp 442The numeric types may optionally be followed by 443.Dv \*[Am] 444and a numeric value, 445to specify that the value is to be AND'ed with the 446numeric value before any comparisons are done. 447Prepending a 448.Dv u 449to the type indicates that ordered comparisons should be unsigned. 450.It Dv test 451The value to be compared with the value from the file. 452If the type is 453numeric, this value 454is specified in C form; if it is a string, it is specified as a C string 455with the usual escapes permitted (e.g. \en for new-line). 456.Pp 457Numeric values 458may be preceded by a character indicating the operation to be performed. 459It may be 460.Dv = , 461to specify that the value from the file must equal the specified value, 462.Dv \*[Lt] , 463to specify that the value from the file must be less than the specified 464value, 465.Dv \*[Gt] , 466to specify that the value from the file must be greater than the specified 467value, 468.Dv \*[Am] , 469to specify that the value from the file must have set all of the bits 470that are set in the specified value, 471.Dv ^ , 472to specify that the value from the file must have clear any of the bits 473that are set in the specified value, or 474.Dv ~ , 475the value specified after is negated before tested. 476.Dv x , 477to specify that any value will match. 478If the character is omitted, it is assumed to be 479.Dv = . 480Operators 481.Dv \*[Am] , 482.Dv ^ , 483and 484.Dv ~ 485don't work with floats and doubles. 486The operator 487.Dv !\& 488specifies that the line matches if the test does 489.Em not 490succeed. 491.Pp 492Numeric values are specified in C form; e.g. 493.Dv 13 494is decimal, 495.Dv 013 496is octal, and 497.Dv 0x13 498is hexadecimal. 499.Pp 500Numeric operations are not performed on date types, instead the numeric 501value is interpreted as an offset. 502.Pp 503For string values, the string from the 504file must match the specified string. 505The operators 506.Dv = , 507.Dv \*[Lt] 508and 509.Dv \*[Gt] 510(but not 511.Dv \*[Am] ) 512can be applied to strings. 513The length used for matching is that of the string argument 514in the magic file. 515This means that a line can match any non-empty string (usually used to 516then print the string), with 517.Em \*[Gt]\e0 518(because all non-empty strings are greater than the empty string). 519.Pp 520Dates are treated as numerical values in the respective internal 521representation. 522.Pp 523The special test 524.Em x 525always evaluates to true. 526.It Dv message 527The message to be printed if the comparison succeeds. 528If the string contains a 529.Xr printf 3 530format specification, the value from the file (with any specified masking 531performed) is printed using the message as the format string. 532If the string begins with 533.Dq \eb , 534the message printed is the remainder of the string with no whitespace 535added before it: multiple matches are normally separated by a single 536space. 537.El 538.Pp 539An APPLE 4+4 character APPLE creator and type can be specified as: 540.Bd -literal -offset indent 541!:apple CREATYPE 542.Ed 543.Pp 544A MIME type is given on a separate line, which must be the next 545non-blank or comment line after the magic line that identifies the 546file type, and has the following format: 547.Bd -literal -offset indent 548!:mime MIMETYPE 549.Ed 550.Pp 551i.e. the literal string 552.Dq !:mime 553followed by the MIME type. 554.Pp 555An optional strength can be supplied on a separate line which refers to 556the current magic description using the following format: 557.Bd -literal -offset indent 558!:strength OP VALUE 559.Ed 560.Pp 561The operand 562.Dv OP 563can be: 564.Dv + , 565.Dv - , 566.Dv * , 567or 568.Dv / 569and 570.Dv VALUE 571is a constant between 0 and 255. 572This constant is applied using the specified operand 573to the currently computed default magic strength. 574.Pp 575Some file formats contain additional information which is to be printed 576along with the file type or need additional tests to determine the true 577file type. 578These additional tests are introduced by one or more 579.Em \*[Gt] 580characters preceding the offset. 581The number of 582.Em \*[Gt] 583on the line indicates the level of the test; a line with no 584.Em \*[Gt] 585at the beginning is considered to be at level 0. 586Tests are arranged in a tree-like hierarchy: 587if the test on a line at level 588.Em n 589succeeds, all following tests at level 590.Em n+1 591are performed, and the messages printed if the tests succeed, until a line 592with level 593.Em n 594(or less) appears. 595For more complex files, one can use empty messages to get just the 596"if/then" effect, in the following way: 597.Bd -literal -offset indent 5980 string MZ 599\*[Gt]0x18 leshort \*[Lt]0x40 MS-DOS executable 600\*[Gt]0x18 leshort \*[Gt]0x3f extended PC executable (e.g., MS Windows) 601.Ed 602.Pp 603Offsets do not need to be constant, but can also be read from the file 604being examined. 605If the first character following the last 606.Em \*[Gt] 607is a 608.Em \&( 609then the string after the parenthesis is interpreted as an indirect offset. 610That means that the number after the parenthesis is used as an offset in 611the file. 612The value at that offset is read, and is used again as an offset 613in the file. 614Indirect offsets are of the form: 615.Em (( x [[.,][bBcCeEfFgGhHiIlmsSqQ]][+\-][ y ]) . 616The value of 617.Em x 618is used as an offset in the file. 619A byte, id3 length, short or long is read at that offset depending on the 620.Em [bBcCeEfFgGhHiIlmsSqQ] 621type specifier. 622The value is treated as signed if 623.Dq , 624is specified or unsigned if 625.Dq . 626is specified. 627The capitalized types interpret the number as a big endian 628value, whereas the small letter versions interpret the number as a little 629endian value; 630the 631.Em m 632type interprets the number as a middle endian (PDP-11) value. 633To that number the value of 634.Em y 635is added and the result is used as an offset in the file. 636The default type if one is not specified is long. 637The following types are recognized: 638.Bl -column -offset indent "Type" "Half/Short" "Little" "Size" 639.It Sy Type Sy Mnemonic Sy Endian Sy Size 640.It bcBc Byte/Char N/A 1 641.It efg Double Little 8 642.It EFG Double Big 8 643.It hs Half/Short Little 2 644.It HS Half/Short Big 2 645.It i ID3 Little 4 646.It I ID3 Big 4 647.It m Middle Middle 4 648.It q Quad Little 8 649.It Q Quad Big 8 650.El 651.Pp 652That way variable length structures can be examined: 653.Bd -literal -offset indent 654# MS Windows executables are also valid MS-DOS executables 6550 string MZ 656\*[Gt]0x18 leshort \*[Lt]0x40 MZ executable (MS-DOS) 657# skip the whole block below if it is not an extended executable 658\*[Gt]0x18 leshort \*[Gt]0x3f 659\*[Gt]\*[Gt](0x3c.l) string PE\e0\e0 PE executable (MS-Windows) 660\*[Gt]\*[Gt](0x3c.l) string LX\e0\e0 LX executable (OS/2) 661.Ed 662.Pp 663This strategy of examining has a drawback: you must make sure that you 664eventually print something, or users may get empty output (such as when 665there is neither PE\e0\e0 nor LE\e0\e0 in the above example). 666.Pp 667If this indirect offset cannot be used directly, simple calculations are 668possible: appending 669.Em [+-*/%\*[Am]|^]number 670inside parentheses allows one to modify 671the value read from the file before it is used as an offset: 672.Bd -literal -offset indent 673# MS Windows executables are also valid MS-DOS executables 6740 string MZ 675# sometimes, the value at 0x18 is less that 0x40 but there's still an 676# extended executable, simply appended to the file 677\*[Gt]0x18 leshort \*[Lt]0x40 678\*[Gt]\*[Gt](4.s*512) leshort 0x014c COFF executable (MS-DOS, DJGPP) 679\*[Gt]\*[Gt](4.s*512) leshort !0x014c MZ executable (MS-DOS) 680.Ed 681.Pp 682Sometimes you do not know the exact offset as this depends on the length or 683position (when indirection was used before) of preceding fields. 684You can specify an offset relative to the end of the last up-level 685field using 686.Sq \*[Am] 687as a prefix to the offset: 688.Bd -literal -offset indent 6890 string MZ 690\*[Gt]0x18 leshort \*[Gt]0x3f 691\*[Gt]\*[Gt](0x3c.l) string PE\e0\e0 PE executable (MS-Windows) 692# immediately following the PE signature is the CPU type 693\*[Gt]\*[Gt]\*[Gt]\*[Am]0 leshort 0x14c for Intel 80386 694\*[Gt]\*[Gt]\*[Gt]\*[Am]0 leshort 0x184 for DEC Alpha 695.Ed 696.Pp 697Indirect and relative offsets can be combined: 698.Bd -literal -offset indent 6990 string MZ 700\*[Gt]0x18 leshort \*[Lt]0x40 701\*[Gt]\*[Gt](4.s*512) leshort !0x014c MZ executable (MS-DOS) 702# if it's not COFF, go back 512 bytes and add the offset taken 703# from byte 2/3, which is yet another way of finding the start 704# of the extended executable 705\*[Gt]\*[Gt]\*[Gt]\*[Am](2.s-514) string LE LE executable (MS Windows VxD driver) 706.Ed 707.Pp 708Or the other way around: 709.Bd -literal -offset indent 7100 string MZ 711\*[Gt]0x18 leshort \*[Gt]0x3f 712\*[Gt]\*[Gt](0x3c.l) string LE\e0\e0 LE executable (MS-Windows) 713# at offset 0x80 (-4, since relative offsets start at the end 714# of the up-level match) inside the LE header, we find the absolute 715# offset to the code area, where we look for a specific signature 716\*[Gt]\*[Gt]\*[Gt](\*[Am]0x7c.l+0x26) string UPX \eb, UPX compressed 717.Ed 718.Pp 719Or even both! 720.Bd -literal -offset indent 7210 string MZ 722\*[Gt]0x18 leshort \*[Gt]0x3f 723\*[Gt]\*[Gt](0x3c.l) string LE\e0\e0 LE executable (MS-Windows) 724# at offset 0x58 inside the LE header, we find the relative offset 725# to a data area where we look for a specific signature 726\*[Gt]\*[Gt]\*[Gt]\*[Am](\*[Am]0x54.l-3) string UNACE \eb, ACE self-extracting archive 727.Ed 728.Pp 729If you have to deal with offset/length pairs in your file, even the 730second value in a parenthesized expression can be taken from the file itself, 731using another set of parentheses. 732Note that this additional indirect offset is always relative to the 733start of the main indirect offset. 734.Bd -literal -offset indent 7350 string MZ 736\*[Gt]0x18 leshort \*[Gt]0x3f 737\*[Gt]\*[Gt](0x3c.l) string PE\e0\e0 PE executable (MS-Windows) 738# search for the PE section called ".idata"... 739\*[Gt]\*[Gt]\*[Gt]\*[Am]0xf4 search/0x140 .idata 740# ...and go to the end of it, calculated from start+length; 741# these are located 14 and 10 bytes after the section name 742\*[Gt]\*[Gt]\*[Gt]\*[Gt](\*[Am]0xe.l+(-4)) string PK\e3\e4 \eb, ZIP self-extracting archive 743.Ed 744.Pp 745If you have a list of known values at a particular continuation level, 746and you want to provide a switch-like default case: 747.Bd -literal -offset indent 748# clear that continuation level match 749\*[Gt]18 clear 750\*[Gt]18 lelong 1 one 751\*[Gt]18 lelong 2 two 752\*[Gt]18 default x 753# print default match 754\*[Gt]\*[Gt]18 lelong x unmatched 0x%x 755.Ed 756.Sh SEE ALSO 757.Xr file __CSECTION__ 758\- the command that reads this file. 759.Sh BUGS 760The formats 761.Dv long , 762.Dv belong , 763.Dv lelong , 764.Dv melong , 765.Dv short , 766.Dv beshort , 767and 768.Dv leshort 769do not depend on the length of the C data types 770.Dv short 771and 772.Dv long 773on the platform, even though the Single 774.Ux 775Specification implies that they do. However, as OS X Mountain Lion has 776passed the Single 777.Ux 778Specification validation suite, and supplies a version of 779.Xr file __CSECTION__ 780in which they do not depend on the sizes of the C data types and that is 781built for a 64-bit environment in which 782.Dv long 783is 8 bytes rather than 4 bytes, presumably the validation suite does not 784test whether, for example 785.Dv long 786refers to an item with the same size as the C data type 787.Dv long . 788There should probably be 789.Dv type 790names 791.Dv int8 , 792.Dv uint8 , 793.Dv int16 , 794.Dv uint16 , 795.Dv int32 , 796.Dv uint32 , 797.Dv int64 , 798and 799.Dv uint64 , 800and specified-byte-order variants of them, 801to make it clearer that those types have specified widths. 802.\" 803.\" From: guy@sun.uucp (Guy Harris) 804.\" Newsgroups: net.bugs.usg 805.\" Subject: /etc/magic's format isn't well documented 806.\" Message-ID: <2752@sun.uucp> 807.\" Date: 3 Sep 85 08:19:07 GMT 808.\" Organization: Sun Microsystems, Inc. 809.\" Lines: 136 810.\" 811.\" Here's a manual page for the format accepted by the "file" made by adding 812.\" the changes I posted to the S5R2 version. 813.\" 814.\" Modified for Ian Darwin's version of the file command. 815