magic.man 25 KB

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