]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/file/doc/file.man
MFV r302218: file 5.28.
[FreeBSD/FreeBSD.git] / contrib / file / doc / file.man
1 .\" $File: file.man,v 1.121 2016/06/07 22:09:20 rrt Exp $
2 .Dd March 13, 2016
3 .Dt FILE __CSECTION__
4 .Os
5 .Sh NAME
6 .Nm file
7 .Nd determine file type
8 .Sh SYNOPSIS
9 .Nm
10 .Bk -words
11 .Op Fl bcEhiklLNnprsvzZ0
12 .Op Fl Fl apple
13 .Op Fl Fl extension
14 .Op Fl Fl mime-encoding
15 .Op Fl Fl mime-type
16 .Op Fl e Ar testname
17 .Op Fl F Ar separator
18 .Op Fl f Ar namefile
19 .Op Fl m Ar magicfiles
20 .Op Fl P Ar name=value
21 .Ar
22 .Ek
23 .Nm
24 .Fl C
25 .Op Fl m Ar magicfiles
26 .Nm
27 .Op Fl Fl help
28 .Sh DESCRIPTION
29 This manual page documents version __VERSION__ of the
30 .Nm
31 command.
32 .Pp
33 .Nm
34 tests each argument in an attempt to classify it.
35 There are three sets of tests, performed in this order:
36 filesystem tests, magic tests, and language tests.
37 The
38 .Em first
39 test that succeeds causes the file type to be printed.
40 .Pp
41 The type printed will usually contain one of the words
42 .Em text
43 (the file contains only
44 printing characters and a few common control
45 characters and is probably safe to read on an
46 .Dv ASCII
47 terminal),
48 .Em executable
49 (the file contains the result of compiling a program
50 in a form understandable to some
51 .Tn UNIX
52 kernel or another),
53 or
54 .Em data
55 meaning anything else (data is usually
56 .Dq binary
57 or non-printable).
58 Exceptions are well-known file formats (core files, tar archives)
59 that are known to contain binary data.
60 When modifying magic files or the program itself, make sure to
61 .Em "preserve these keywords" .
62 Users depend on knowing that all the readable files in a directory
63 have the word
64 .Dq text
65 printed.
66 Don't do as Berkeley did and change
67 .Dq shell commands text
68 to
69 .Dq shell script .
70 .Pp
71 The filesystem tests are based on examining the return from a
72 .Xr stat 2
73 system call.
74 The program checks to see if the file is empty,
75 or if it's some sort of special file.
76 Any known file types appropriate to the system you are running on
77 (sockets, symbolic links, or named pipes (FIFOs) on those systems that
78 implement them)
79 are intuited if they are defined in the system header file
80 .In sys/stat.h .
81 .Pp
82 The magic tests are used to check for files with data in
83 particular fixed formats.
84 The canonical example of this is a binary executable (compiled program)
85 .Dv a.out
86 file, whose format is defined in
87 .In elf.h ,
88 .In a.out.h
89 and possibly
90 .In exec.h
91 in the standard include directory.
92 These files have a
93 .Dq "magic number"
94 stored in a particular place
95 near the beginning of the file that tells the
96 .Tn UNIX
97 operating system
98 that the file is a binary executable, and which of several types thereof.
99 The concept of a
100 .Dq "magic"
101 has been applied by extension to data files.
102 Any file with some invariant identifier at a small fixed
103 offset into the file can usually be described in this way.
104 The information identifying these files is read from the compiled
105 magic file
106 .Pa __MAGIC__.mgc ,
107 or the files in the directory
108 .Pa __MAGIC__
109 if the compiled file does not exist.
110 In addition, if
111 .Pa $HOME/.magic.mgc
112 or
113 .Pa $HOME/.magic
114 exists, it will be used in preference to the system magic files.
115 .Pp
116 If a file does not match any of the entries in the magic file,
117 it is examined to see if it seems to be a text file.
118 ASCII, ISO-8859-x, non-ISO 8-bit extended-ASCII character sets
119 (such as those used on Macintosh and IBM PC systems),
120 UTF-8-encoded Unicode, UTF-16-encoded Unicode, and EBCDIC
121 character sets can be distinguished by the different
122 ranges and sequences of bytes that constitute printable text
123 in each set.
124 If a file passes any of these tests, its character set is reported.
125 ASCII, ISO-8859-x, UTF-8, and extended-ASCII files are identified
126 as
127 .Dq text
128 because they will be mostly readable on nearly any terminal;
129 UTF-16 and EBCDIC are only
130 .Dq character data
131 because, while
132 they contain text, it is text that will require translation
133 before it can be read.
134 In addition,
135 .Nm
136 will attempt to determine other characteristics of text-type files.
137 If the lines of a file are terminated by CR, CRLF, or NEL, instead
138 of the Unix-standard LF, this will be reported.
139 Files that contain embedded escape sequences or overstriking
140 will also be identified.
141 .Pp
142 Once
143 .Nm
144 has determined the character set used in a text-type file,
145 it will
146 attempt to determine in what language the file is written.
147 The language tests look for particular strings (cf.
148 .In names.h )
149 that can appear anywhere in the first few blocks of a file.
150 For example, the keyword
151 .Em .br
152 indicates that the file is most likely a
153 .Xr troff 1
154 input file, just as the keyword
155 .Em struct
156 indicates a C program.
157 These tests are less reliable than the previous
158 two groups, so they are performed last.
159 The language test routines also test for some miscellany
160 (such as
161 .Xr tar 1
162 archives).
163 .Pp
164 Any file that cannot be identified as having been written
165 in any of the character sets listed above is simply said to be
166 .Dq data .
167 .Sh OPTIONS
168 .Bl -tag -width indent
169 .It Fl Fl apple
170 Causes the file command to output the file type and creator code as
171 used by older MacOS versions. The code consists of eight letters,
172 the first describing the file type, the latter the creator.
173 .It Fl b , Fl Fl brief
174 Do not prepend filenames to output lines (brief mode).
175 .It Fl C , Fl Fl compile
176 Write a
177 .Pa magic.mgc
178 output file that contains a pre-parsed version of the magic file or directory.
179 .It Fl c , Fl Fl checking-printout
180 Cause a checking printout of the parsed form of the magic file.
181 This is usually used in conjunction with the
182 .Fl m
183 flag to debug a new magic file before installing it.
184 .It Fl E
185 On filesystem errors (file not found etc), instead of handling the error
186 as regular output as POSIX mandates and keep going, issue an error message
187 and exit.
188 .It Fl e , Fl Fl exclude Ar testname
189 Exclude the test named in
190 .Ar testname
191 from the list of tests made to determine the file type.
192 Valid test names are:
193 .Bl -tag -width compress
194 .It apptype
195 .Dv EMX
196 application type (only on EMX).
197 .It ascii
198 Various types of text files (this test will try to guess the text
199 encoding, irrespective of the setting of the
200 .Sq encoding
201 option).
202 .It encoding
203 Different text encodings for soft magic tests.
204 .It tokens
205 Ignored for backwards compatibility.
206 .It cdf
207 Prints details of Compound Document Files.
208 .It compress
209 Checks for, and looks inside, compressed files.
210 .It elf
211 Prints ELF file details.
212 .It soft
213 Consults magic files.
214 .It tar
215 Examines tar files.
216 .It text
217 A synonym for
218 .Sq ascii .
219 .El
220 .It Fl Fl extension 
221 Print a slash-separated list of valid extensions for the file type found.
222 .It Fl F , Fl Fl separator Ar separator
223 Use the specified string as the separator between the filename and the
224 file result returned.
225 Defaults to
226 .Sq \&: .
227 .It Fl f , Fl Fl files-from Ar namefile
228 Read the names of the files to be examined from
229 .Ar namefile
230 (one per line)
231 before the argument list.
232 Either
233 .Ar namefile
234 or at least one filename argument must be present;
235 to test the standard input, use
236 .Sq -
237 as a filename argument.
238 Please note that 
239 .Ar namefile 
240 is unwrapped and the enclosed filenames are processed when this option is
241 encountered and before any further options processing is done.
242 This allows one to process multiple lists of files with different command line
243 arguments on the same
244 .Nm
245 invocation.
246 Thus if you want to set the delimiter, you need to do it before you specify
247 the list of files, like:
248 .Dq Fl F Ar @ Fl f Ar namefile ,
249 instead of:
250 .Dq Fl f Ar namefile Fl F Ar @ .
251 .It Fl h , Fl Fl no-dereference
252 option causes symlinks not to be followed
253 (on systems that support symbolic links).
254 This is the default if the environment variable
255 .Dv POSIXLY_CORRECT
256 is not defined.
257 .It Fl i , Fl Fl mime
258 Causes the file command to output mime type strings rather than the more
259 traditional human readable ones.
260 Thus it may say
261 .Sq text/plain; charset=us-ascii
262 rather than
263 .Dq ASCII text .
264 .It Fl Fl mime-type , Fl Fl mime-encoding
265 Like
266 .Fl i ,
267 but print only the specified element(s).
268 .It Fl k , Fl Fl keep-going
269 Don't stop at the first match, keep going.
270 Subsequent matches will be
271 have the string
272 .Sq "\[rs]012\- "
273 prepended.
274 (If you want a newline, see the
275 .Fl r
276 option.)
277 The magic pattern with the highest strength (see the
278 .Fl l
279 option) comes first.
280 .It Fl l , Fl Fl list
281 Shows a list of patterns and their strength sorted descending by
282 .Xr magic 4
283 strength
284 which is used for the matching (see also the
285 .Fl k
286 option).
287 .It Fl L , Fl Fl dereference
288 option causes symlinks to be followed, as the like-named option in
289 .Xr ls 1
290 (on systems that support symbolic links).
291 This is the default if the environment variable
292 .Ev POSIXLY_CORRECT
293 is defined.
294 .It Fl m , Fl Fl magic-file Ar magicfiles
295 Specify an alternate list of files and directories containing magic.
296 This can be a single item, or a colon-separated list.
297 If a compiled magic file is found alongside a file or directory,
298 it will be used instead.
299 .It Fl N , Fl Fl no-pad
300 Don't pad filenames so that they align in the output.
301 .It Fl n , Fl Fl no-buffer
302 Force stdout to be flushed after checking each file.
303 This is only useful if checking a list of files.
304 It is intended to be used by programs that want filetype output from a pipe.
305 .It Fl p , Fl Fl preserve-date
306 On systems that support
307 .Xr utime 3
308 or
309 .Xr utimes 2 ,
310 attempt to preserve the access time of files analyzed, to pretend that
311 .Nm
312 never read them.
313 .It Fl P , Fl Fl parameter Ar name=value
314 Set various parameter limits.
315 .Bl -column "elf_phnum" "Default" "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX" -offset indent
316 .It Sy "Name" Ta Sy "Default" Ta Sy "Explanation"
317 .It Li indir Ta 15 Ta recursion limit for indirect magic
318 .It Li name Ta 30 Ta use count limit for name/use magic
319 .It Li elf_notes Ta 256 Ta max ELF notes processed
320 .It Li elf_phnum Ta 128 Ta max ELF program sections processed
321 .It Li elf_shnum Ta 32768 Ta max ELF sections processed
322 .It Li regex Ta 8192 Ta length limit for regex searches
323 .It Li bytes Ta 1048576 Ta max number of bytes to read from file
324 .El
325 .It Fl r , Fl Fl raw
326 Don't translate unprintable characters to \eooo.
327 Normally
328 .Nm
329 translates unprintable characters to their octal representation.
330 .It Fl s , Fl Fl special-files
331 Normally,
332 .Nm
333 only attempts to read and determine the type of argument files which
334 .Xr stat 2
335 reports are ordinary files.
336 This prevents problems, because reading special files may have peculiar
337 consequences.
338 Specifying the
339 .Fl s
340 option causes
341 .Nm
342 to also read argument files which are block or character special files.
343 This is useful for determining the filesystem types of the data in raw
344 disk partitions, which are block special files.
345 This option also causes
346 .Nm
347 to disregard the file size as reported by
348 .Xr stat 2
349 since on some systems it reports a zero size for raw disk partitions.
350 .It Fl v , Fl Fl version
351 Print the version of the program and exit.
352 .It Fl z , Fl Fl uncompress
353 Try to look inside compressed files.
354 .It Fl Z , Fl Fl uncompress-noreport
355 Try to look inside compressed files, but report information about the contents
356 only not the compression.
357 .It Fl 0 , Fl Fl print0
358 Output a null character
359 .Sq \e0
360 after the end of the filename.
361 Nice to
362 .Xr cut 1
363 the output.
364 This does not affect the separator, which is still printed.
365 .Pp
366 If this option is repeated more than once, then 
367 .Nm
368 prints just the filename followed by a NUL followed by the description
369 (or ERROR: text) followed by a second NUL for each entry.
370 .It Fl -help
371 Print a help message and exit.
372 .El
373 .Sh FILES
374 .Bl -tag -width __MAGIC__.mgc -compact
375 .It Pa __MAGIC__.mgc
376 Default compiled list of magic.
377 .It Pa __MAGIC__
378 Directory containing default magic files.
379 .El
380 .Sh ENVIRONMENT
381 The environment variable
382 .Ev MAGIC
383 can be used to set the default magic file name.
384 If that variable is set, then
385 .Nm
386 will not attempt to open
387 .Pa $HOME/.magic .
388 .Nm
389 adds
390 .Dq Pa .mgc
391 to the value of this variable as appropriate.
392 However,
393 .Pa file
394 has to exist in order for
395 .Pa file.mime
396 to be considered.
397 The environment variable
398 .Ev POSIXLY_CORRECT
399 controls (on systems that support symbolic links), whether
400 .Nm
401 will attempt to follow symlinks or not.
402 If set, then
403 .Nm
404 follows symlink, otherwise it does not.
405 This is also controlled by the
406 .Fl L
407 and
408 .Fl h
409 options.
410 .Sh SEE ALSO
411 .Xr magic __FSECTION__ ,
412 .Xr hexdump 1 ,
413 .Xr od 1 ,
414 .Xr strings 1 ,
415 .Xr fstyp 8
416 .Sh STANDARDS CONFORMANCE
417 This program is believed to exceed the System V Interface Definition
418 of FILE(CMD), as near as one can determine from the vague language
419 contained therein.
420 Its behavior is mostly compatible with the System V program of the same name.
421 This version knows more magic, however, so it will produce
422 different (albeit more accurate) output in many cases.
423 .\" URL: http://www.opengroup.org/onlinepubs/009695399/utilities/file.html
424 .Pp
425 The one significant difference
426 between this version and System V
427 is that this version treats any white space
428 as a delimiter, so that spaces in pattern strings must be escaped.
429 For example,
430 .Bd -literal -offset indent
431 \*[Gt]10        string  language impress\       (imPRESS data)
432 .Ed
433 .Pp
434 in an existing magic file would have to be changed to
435 .Bd -literal -offset indent
436 \*[Gt]10        string  language\e impress      (imPRESS data)
437 .Ed
438 .Pp
439 In addition, in this version, if a pattern string contains a backslash,
440 it must be escaped.
441 For example
442 .Bd -literal -offset indent
443 0       string          \ebegindata     Andrew Toolkit document
444 .Ed
445 .Pp
446 in an existing magic file would have to be changed to
447 .Bd -literal -offset indent
448 0       string          \e\ebegindata   Andrew Toolkit document
449 .Ed
450 .Pp
451 SunOS releases 3.2 and later from Sun Microsystems include a
452 .Nm
453 command derived from the System V one, but with some extensions.
454 This version differs from Sun's only in minor ways.
455 It includes the extension of the
456 .Sq \*[Am]
457 operator, used as,
458 for example,
459 .Bd -literal -offset indent
460 \*[Gt]16        long\*[Am]0x7fffffff    \*[Gt]0         not stripped
461 .Ed
462 .Sh MAGIC DIRECTORY
463 The magic file entries have been collected from various sources,
464 mainly USENET, and contributed by various authors.
465 Christos Zoulas (address below) will collect additional
466 or corrected magic file entries.
467 A consolidation of magic file entries
468 will be distributed periodically.
469 .Pp
470 The order of entries in the magic file is significant.
471 Depending on what system you are using, the order that
472 they are put together may be incorrect.
473 If your old
474 .Nm
475 command uses a magic file,
476 keep the old magic file around for comparison purposes
477 (rename it to
478 .Pa __MAGIC__.orig ) .
479 .Sh EXAMPLES
480 .Bd -literal -offset indent
481 $ file file.c file /dev/{wd0a,hda}
482 file.c:   C program text
483 file:     ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV),
484           dynamically linked (uses shared libs), stripped
485 /dev/wd0a: block special (0/0)
486 /dev/hda: block special (3/0)
487
488 $ file -s /dev/wd0{b,d}
489 /dev/wd0b: data
490 /dev/wd0d: x86 boot sector
491
492 $ file -s /dev/hda{,1,2,3,4,5,6,7,8,9,10}
493 /dev/hda:   x86 boot sector
494 /dev/hda1:  Linux/i386 ext2 filesystem
495 /dev/hda2:  x86 boot sector
496 /dev/hda3:  x86 boot sector, extended partition table
497 /dev/hda4:  Linux/i386 ext2 filesystem
498 /dev/hda5:  Linux/i386 swap file
499 /dev/hda6:  Linux/i386 swap file
500 /dev/hda7:  Linux/i386 swap file
501 /dev/hda8:  Linux/i386 swap file
502 /dev/hda9:  empty
503 /dev/hda10: empty
504
505 $ file -i file.c file /dev/{wd0a,hda}
506 file.c:      text/x-c
507 file:        application/x-executable
508 /dev/hda:    application/x-not-regular-file
509 /dev/wd0a:   application/x-not-regular-file
510
511 .Ed
512 .Sh HISTORY
513 There has been a
514 .Nm
515 command in every
516 .Dv UNIX since at least Research Version 4
517 (man page dated November, 1973).
518 The System V version introduced one significant major change:
519 the external list of magic types.
520 This slowed the program down slightly but made it a lot more flexible.
521 .Pp
522 This program, based on the System V version,
523 was written by Ian Darwin
524 .Aq ian@darwinsys.com
525 without looking at anybody else's source code.
526 .Pp
527 John Gilmore revised the code extensively, making it better than
528 the first version.
529 Geoff Collyer found several inadequacies
530 and provided some magic file entries.
531 Contributions by the
532 .Sq \*[Am]
533 operator by Rob McMahon, 
534 .Aq cudcv@warwick.ac.uk ,
535 1989.
536 .Pp
537 Guy Harris, 
538 .Aq guy@netapp.com ,
539 made many changes from 1993 to the present.
540 1989.
541 .Pp
542 Primary development and maintenance from 1990 to the present by
543 Christos Zoulas
544 .Aq christos@astron.com .
545 .Pp
546 Altered by Chris Lowth
547 .Aq chris@lowth.com ,
548 2000: handle the
549 .Fl i
550 option to output mime type strings, using an alternative
551 magic file and internal logic.
552 .Pp
553 Altered by Eric Fischer
554 .Aq enf@pobox.com ,
555 July, 2000,
556 to identify character codes and attempt to identify the languages
557 of non-ASCII files.
558 .Pp
559 Altered by Reuben Thomas
560 .Aq rrt@sc3d.org ,
561 2007-2011, to improve MIME support, merge MIME and non-MIME magic,
562 support directories as well as files of magic, apply many bug fixes,
563 update and fix a lot of magic, improve the build system, improve the
564 documentation, and rewrite the Python bindings in pure Python.
565 .Pp
566 The list of contributors to the
567 .Sq magic
568 directory (magic files)
569 is too long to include here.
570 You know who you are; thank you.
571 Many contributors are listed in the source files.
572 .Sh LEGAL NOTICE
573 Copyright (c) Ian F. Darwin, Toronto, Canada, 1986-1999.
574 Covered by the standard Berkeley Software Distribution copyright; see the file
575 COPYING in the source distribution.
576 .Pp
577 The files
578 .Pa tar.h
579 and
580 .Pa is_tar.c
581 were written by John Gilmore from his public-domain
582 .Xr tar 1
583 program, and are not covered by the above license.
584 .Sh RETURN CODE
585 .Nm
586 returns 0 on success, and non-zero on error.
587 .Sh BUGS
588 .Pp
589 Please report bugs and send patches to the bug tracker at
590 .Pa http://bugs.gw.com/
591 or the mailing list at
592 .Aq file@mx.gw.com
593 (visit
594 .Pa http://mx.gw.com/mailman/listinfo/file
595 first to subscribe).
596 .Sh TODO
597 .Pp
598 Fix output so that tests for MIME and APPLE flags are not needed all
599 over the place, and actual output is only done in one place.
600 This needs a design.
601 Suggestion: push possible outputs on to a list, then pick the
602 last-pushed (most specific, one hopes) value at the end, or
603 use a default if the list is empty.
604 This should not slow down evaluation.
605 .Pp
606 The handling of
607 .Dv MAGIC_CONTINUE
608 and printing \e012- between entries is clumsy and complicated; refactor
609 and centralize.
610 .Pp
611 Some of the encoding logic is hard-coded in encoding.c and can be moved
612 to the magic files if we had a !:charset annotation
613 .Pp
614 Continue to squash all magic bugs.
615 See Debian BTS for a good source.
616 .Pp
617 Store arbitrarily long strings, for example for %s patterns, so that
618 they can be printed out.
619 Fixes Debian bug #271672.
620 This can be done by allocating strings in a string pool, storing the
621 string pool at the end of the magic file and converting all the string
622 pointers to relative offsets from the string pool.
623 .Pp
624 Add syntax for relative offsets after current level (Debian bug #466037).
625 .Pp
626 Make file -ki work, i.e. give multiple MIME types.
627 .Pp
628 Add a zip library so we can peek inside Office2007 documents to
629 print more details about their contents.
630 .Pp
631 Add an option to print URLs for the sources of the file descriptions.
632 .Pp
633 Combine script searches and add a way to map executable names to MIME
634 types (e.g. have a magic value for !:mime which causes the resulting
635 string to be looked up in a table).
636 This would avoid adding the same magic repeatedly for each new
637 hash-bang interpreter.
638 .Pp
639 When a file descriptor is available, we can skip and adjust the buffer
640 instead of the hacky buffer management we do now.
641 .Pp
642 Fix
643 .Dq name
644 and
645 .Dq use
646 to check for consistency at compile time (duplicate 
647 .Dq name ,
648 .Dq use
649 pointing to undefined
650 .Dq name
651 ).
652 Make 
653 .Dq name
654 /
655 .Dq use 
656 more efficient by keeping a sorted list of names.
657 Special-case ^ to flip endianness in the parser so that it does not
658 have to be escaped, and document it.
659 .Pp
660 If the offsets specified internally in the file exceed the buffer size
661 (
662 .Dv HOWMANY
663 variable in file.h), then we don't seek to that offset, but we give up.
664 It would be better if buffer managements was done when the file descriptor
665 is available so move around the file.
666 One must be careful though because this has performance (and thus security
667 considerations).
668 .Sh AVAILABILITY
669 You can obtain the original author's latest version by anonymous FTP
670 on
671 .Pa ftp.astron.com
672 in the directory
673 .Pa /pub/file/file-X.YZ.tar.gz .