1.\" $File: magic.man,v 1.100 2022/09/10 13:19:26 christos Exp $ 2.Dd September 10, 2022 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.It Dv octal 363A string representing an octal number. 364.El 365.El 366.Pp 367For compatibility with the Single 368.Ux 369Standard, the type specifiers 370.Dv dC 371and 372.Dv d1 373are equivalent to 374.Dv byte , 375the type specifiers 376.Dv uC 377and 378.Dv u1 379are equivalent to 380.Dv ubyte , 381the type specifiers 382.Dv dS 383and 384.Dv d2 385are equivalent to 386.Dv short , 387the type specifiers 388.Dv uS 389and 390.Dv u2 391are equivalent to 392.Dv ushort , 393the type specifiers 394.Dv dI , 395.Dv dL , 396and 397.Dv d4 398are equivalent to 399.Dv long , 400the type specifiers 401.Dv uI , 402.Dv uL , 403and 404.Dv u4 405are equivalent to 406.Dv ulong , 407the type specifier 408.Dv d8 409is equivalent to 410.Dv quad , 411the type specifier 412.Dv u8 413is equivalent to 414.Dv uquad , 415and the type specifier 416.Dv s 417is equivalent to 418.Dv string . 419In addition, the type specifier 420.Dv dQ 421is equivalent to 422.Dv quad 423and the type specifier 424.Dv uQ 425is equivalent to 426.Dv uquad . 427.Pp 428Each top-level magic pattern (see below for an explanation of levels) 429is classified as text or binary according to the types used. 430Types 431.Dq regex 432and 433.Dq search 434are classified as text tests, unless non-printable characters are used 435in the pattern. 436All other tests are classified as binary. 437A top-level 438pattern is considered to be a test text when all its patterns are text 439patterns; otherwise, it is considered to be a binary pattern. 440When 441matching a file, binary patterns are tried first; if no match is 442found, and the file looks like text, then its encoding is determined 443and the text patterns are tried. 444.Pp 445The numeric types may optionally be followed by 446.Dv \*[Am] 447and a numeric value, 448to specify that the value is to be AND'ed with the 449numeric value before any comparisons are done. 450Prepending a 451.Dv u 452to the type indicates that ordered comparisons should be unsigned. 453.It Dv test 454The value to be compared with the value from the file. 455If the type is 456numeric, this value 457is specified in C form; if it is a string, it is specified as a C string 458with the usual escapes permitted (e.g. \en for new-line). 459.Pp 460Numeric values 461may be preceded by a character indicating the operation to be performed. 462It may be 463.Dv = , 464to specify that the value from the file must equal the specified value, 465.Dv \*[Lt] , 466to specify that the value from the file must be less than the specified 467value, 468.Dv \*[Gt] , 469to specify that the value from the file must be greater than the specified 470value, 471.Dv \*[Am] , 472to specify that the value from the file must have set all of the bits 473that are set in the specified value, 474.Dv ^ , 475to specify that the value from the file must have clear any of the bits 476that are set in the specified value, or 477.Dv ~ , 478the value specified after is negated before tested. 479.Dv x , 480to specify that any value will match. 481If the character is omitted, it is assumed to be 482.Dv = . 483Operators 484.Dv \*[Am] , 485.Dv ^ , 486and 487.Dv ~ 488don't work with floats and doubles. 489The operator 490.Dv !\& 491specifies that the line matches if the test does 492.Em not 493succeed. 494.Pp 495Numeric values are specified in C form; e.g. 496.Dv 13 497is decimal, 498.Dv 013 499is octal, and 500.Dv 0x13 501is hexadecimal. 502.Pp 503Numeric operations are not performed on date types, instead the numeric 504value is interpreted as an offset. 505.Pp 506For string values, the string from the 507file must match the specified string. 508The operators 509.Dv = , 510.Dv \*[Lt] 511and 512.Dv \*[Gt] 513(but not 514.Dv \*[Am] ) 515can be applied to strings. 516The length used for matching is that of the string argument 517in the magic file. 518This means that a line can match any non-empty string (usually used to 519then print the string), with 520.Em \*[Gt]\e0 521(because all non-empty strings are greater than the empty string). 522.Pp 523Dates are treated as numerical values in the respective internal 524representation. 525.Pp 526The special test 527.Em x 528always evaluates to true. 529.It Dv message 530The message to be printed if the comparison succeeds. 531If the string contains a 532.Xr printf 3 533format specification, the value from the file (with any specified masking 534performed) is printed using the message as the format string. 535If the string begins with 536.Dq \eb , 537the message printed is the remainder of the string with no whitespace 538added before it: multiple matches are normally separated by a single 539space. 540.El 541.Pp 542An APPLE 4+4 character APPLE creator and type can be specified as: 543.Bd -literal -offset indent 544!:apple CREATYPE 545.Ed 546.Pp 547A MIME type is given on a separate line, which must be the next 548non-blank or comment line after the magic line that identifies the 549file type, and has the following format: 550.Bd -literal -offset indent 551!:mime MIMETYPE 552.Ed 553.Pp 554i.e. the literal string 555.Dq !:mime 556followed by the MIME type. 557.Pp 558An optional strength can be supplied on a separate line which refers to 559the current magic description using the following format: 560.Bd -literal -offset indent 561!:strength OP VALUE 562.Ed 563.Pp 564The operand 565.Dv OP 566can be: 567.Dv + , 568.Dv - , 569.Dv * , 570or 571.Dv / 572and 573.Dv VALUE 574is a constant between 0 and 255. 575This constant is applied using the specified operand 576to the currently computed default magic strength. 577.Pp 578Some file formats contain additional information which is to be printed 579along with the file type or need additional tests to determine the true 580file type. 581These additional tests are introduced by one or more 582.Em \*[Gt] 583characters preceding the offset. 584The number of 585.Em \*[Gt] 586on the line indicates the level of the test; a line with no 587.Em \*[Gt] 588at the beginning is considered to be at level 0. 589Tests are arranged in a tree-like hierarchy: 590if the test on a line at level 591.Em n 592succeeds, all following tests at level 593.Em n+1 594are performed, and the messages printed if the tests succeed, until a line 595with level 596.Em n 597(or less) appears. 598For more complex files, one can use empty messages to get just the 599"if/then" effect, in the following way: 600.Bd -literal -offset indent 6010 string MZ 602\*[Gt]0x18 leshort \*[Lt]0x40 MS-DOS executable 603\*[Gt]0x18 leshort \*[Gt]0x3f extended PC executable (e.g., MS Windows) 604.Ed 605.Pp 606Offsets do not need to be constant, but can also be read from the file 607being examined. 608If the first character following the last 609.Em \*[Gt] 610is a 611.Em \&( 612then the string after the parenthesis is interpreted as an indirect offset. 613That means that the number after the parenthesis is used as an offset in 614the file. 615The value at that offset is read, and is used again as an offset 616in the file. 617Indirect offsets are of the form: 618.Em (( x [[.,][bBcCeEfFgGhHiIlmsSqQ]][+\-][ y ]) . 619The value of 620.Em x 621is used as an offset in the file. 622A byte, id3 length, short or long is read at that offset depending on the 623.Em [bBcCeEfFgGhHiIlmsSqQ] 624type specifier. 625The value is treated as signed if 626.Dq , 627is specified or unsigned if 628.Dq . 629is specified. 630The capitalized types interpret the number as a big endian 631value, whereas the small letter versions interpret the number as a little 632endian value; 633the 634.Em m 635type interprets the number as a middle endian (PDP-11) value. 636To that number the value of 637.Em y 638is added and the result is used as an offset in the file. 639The default type if one is not specified is long. 640The following types are recognized: 641.Bl -column -offset indent "Type" "Half/Short" "Little" "Size" 642.It Sy Type Sy Mnemonic Sy Endian Sy Size 643.It bcBc Byte/Char N/A 1 644.It efg Double Little 8 645.It EFG Double Big 8 646.It hs Half/Short Little 2 647.It HS Half/Short Big 2 648.It i ID3 Little 4 649.It I ID3 Big 4 650.It m Middle Middle 4 651.It o Octal Textual Variable 652.It q Quad Little 8 653.It Q Quad Big 8 654.El 655.Pp 656That way variable length structures can be examined: 657.Bd -literal -offset indent 658# MS Windows executables are also valid MS-DOS executables 6590 string MZ 660\*[Gt]0x18 leshort \*[Lt]0x40 MZ executable (MS-DOS) 661# skip the whole block below if it is not an extended executable 662\*[Gt]0x18 leshort \*[Gt]0x3f 663\*[Gt]\*[Gt](0x3c.l) string PE\e0\e0 PE executable (MS-Windows) 664\*[Gt]\*[Gt](0x3c.l) string LX\e0\e0 LX executable (OS/2) 665.Ed 666.Pp 667This strategy of examining has a drawback: you must make sure that you 668eventually print something, or users may get empty output (such as when 669there is neither PE\e0\e0 nor LE\e0\e0 in the above example). 670.Pp 671If this indirect offset cannot be used directly, simple calculations are 672possible: appending 673.Em [+-*/%\*[Am]|^]number 674inside parentheses allows one to modify 675the value read from the file before it is used as an offset: 676.Bd -literal -offset indent 677# MS Windows executables are also valid MS-DOS executables 6780 string MZ 679# sometimes, the value at 0x18 is less that 0x40 but there's still an 680# extended executable, simply appended to the file 681\*[Gt]0x18 leshort \*[Lt]0x40 682\*[Gt]\*[Gt](4.s*512) leshort 0x014c COFF executable (MS-DOS, DJGPP) 683\*[Gt]\*[Gt](4.s*512) leshort !0x014c MZ executable (MS-DOS) 684.Ed 685.Pp 686Sometimes you do not know the exact offset as this depends on the length or 687position (when indirection was used before) of preceding fields. 688You can specify an offset relative to the end of the last up-level 689field using 690.Sq \*[Am] 691as a prefix to the offset: 692.Bd -literal -offset indent 6930 string MZ 694\*[Gt]0x18 leshort \*[Gt]0x3f 695\*[Gt]\*[Gt](0x3c.l) string PE\e0\e0 PE executable (MS-Windows) 696# immediately following the PE signature is the CPU type 697\*[Gt]\*[Gt]\*[Gt]\*[Am]0 leshort 0x14c for Intel 80386 698\*[Gt]\*[Gt]\*[Gt]\*[Am]0 leshort 0x184 for DEC Alpha 699.Ed 700.Pp 701Indirect and relative offsets can be combined: 702.Bd -literal -offset indent 7030 string MZ 704\*[Gt]0x18 leshort \*[Lt]0x40 705\*[Gt]\*[Gt](4.s*512) leshort !0x014c MZ executable (MS-DOS) 706# if it's not COFF, go back 512 bytes and add the offset taken 707# from byte 2/3, which is yet another way of finding the start 708# of the extended executable 709\*[Gt]\*[Gt]\*[Gt]\*[Am](2.s-514) string LE LE executable (MS Windows VxD driver) 710.Ed 711.Pp 712Or the other way around: 713.Bd -literal -offset indent 7140 string MZ 715\*[Gt]0x18 leshort \*[Gt]0x3f 716\*[Gt]\*[Gt](0x3c.l) string LE\e0\e0 LE executable (MS-Windows) 717# at offset 0x80 (-4, since relative offsets start at the end 718# of the up-level match) inside the LE header, we find the absolute 719# offset to the code area, where we look for a specific signature 720\*[Gt]\*[Gt]\*[Gt](\*[Am]0x7c.l+0x26) string UPX \eb, UPX compressed 721.Ed 722.Pp 723Or even both! 724.Bd -literal -offset indent 7250 string MZ 726\*[Gt]0x18 leshort \*[Gt]0x3f 727\*[Gt]\*[Gt](0x3c.l) string LE\e0\e0 LE executable (MS-Windows) 728# at offset 0x58 inside the LE header, we find the relative offset 729# to a data area where we look for a specific signature 730\*[Gt]\*[Gt]\*[Gt]\*[Am](\*[Am]0x54.l-3) string UNACE \eb, ACE self-extracting archive 731.Ed 732.Pp 733If you have to deal with offset/length pairs in your file, even the 734second value in a parenthesized expression can be taken from the file itself, 735using another set of parentheses. 736Note that this additional indirect offset is always relative to the 737start of the main indirect offset. 738.Bd -literal -offset indent 7390 string MZ 740\*[Gt]0x18 leshort \*[Gt]0x3f 741\*[Gt]\*[Gt](0x3c.l) string PE\e0\e0 PE executable (MS-Windows) 742# search for the PE section called ".idata"... 743\*[Gt]\*[Gt]\*[Gt]\*[Am]0xf4 search/0x140 .idata 744# ...and go to the end of it, calculated from start+length; 745# these are located 14 and 10 bytes after the section name 746\*[Gt]\*[Gt]\*[Gt]\*[Gt](\*[Am]0xe.l+(-4)) string PK\e3\e4 \eb, ZIP self-extracting archive 747.Ed 748.Pp 749If you have a list of known values at a particular continuation level, 750and you want to provide a switch-like default case: 751.Bd -literal -offset indent 752# clear that continuation level match 753\*[Gt]18 clear 754\*[Gt]18 lelong 1 one 755\*[Gt]18 lelong 2 two 756\*[Gt]18 default x 757# print default match 758\*[Gt]\*[Gt]18 lelong x unmatched 0x%x 759.Ed 760.Sh SEE ALSO 761.Xr file __CSECTION__ 762\- the command that reads this file. 763.Sh BUGS 764The formats 765.Dv long , 766.Dv belong , 767.Dv lelong , 768.Dv melong , 769.Dv short , 770.Dv beshort , 771and 772.Dv leshort 773do not depend on the length of the C data types 774.Dv short 775and 776.Dv long 777on the platform, even though the Single 778.Ux 779Specification implies that they do. However, as OS X Mountain Lion has 780passed the Single 781.Ux 782Specification validation suite, and supplies a version of 783.Xr file __CSECTION__ 784in which they do not depend on the sizes of the C data types and that is 785built for a 64-bit environment in which 786.Dv long 787is 8 bytes rather than 4 bytes, presumably the validation suite does not 788test whether, for example 789.Dv long 790refers to an item with the same size as the C data type 791.Dv long . 792There should probably be 793.Dv type 794names 795.Dv int8 , 796.Dv uint8 , 797.Dv int16 , 798.Dv uint16 , 799.Dv int32 , 800.Dv uint32 , 801.Dv int64 , 802and 803.Dv uint64 , 804and specified-byte-order variants of them, 805to make it clearer that those types have specified widths. 806.\" 807.\" From: guy@sun.uucp (Guy Harris) 808.\" Newsgroups: net.bugs.usg 809.\" Subject: /etc/magic's format isn't well documented 810.\" Message-ID: <2752@sun.uucp> 811.\" Date: 3 Sep 85 08:19:07 GMT 812.\" Organization: Sun Microsystems, Inc. 813.\" Lines: 136 814.\" 815.\" Here's a manual page for the format accepted by the "file" made by adding 816.\" the changes I posted to the S5R2 version. 817.\" 818.\" Modified for Ian Darwin's version of the file command. 819