Upload Tizen:Base source
[external/file.git] / README
1 ** README for file(1) Command **
2 @(#) $File: README,v 1.42 2009/02/14 15:16:24 christos Exp $
3
4 E-mail: christos@astron.com
5 Mailing List: file@mx.gw.com
6
7 Phone: Do not even think of telephoning me about this program. Send cash first!
8
9 This is Release 5.x of Ian Darwin's (copyright but distributable)
10 file(1) command. This version is the standard "file" command for Linux,
11 *BSD, and other systems. (See "patchlevel.h" for the exact release number).
12
13 The major changes for 5.x are CDF file parsing, indirect magic, and
14 overhaul in mime and ascii encoding handling.
15
16 The major feature of 4.x is the refactoring of the code into a library,
17 and the re-write of the file command in terms of that library. The library
18 itself, libmagic can be used by 3rd party programs that wish to identify
19 file types without having to fork() and exec() file. The prime contributor
20 for 4.0 was M\xe5ns Rullg\xe5rd.
21
22 UNIX is a trademark of UNIX System Laboratories.
23
24 The prime contributor to Release 3.8 was Guy Harris, who put in megachanges
25 including byte-order independence.
26
27 The prime contributor to Release 3.0 was Christos Zoulas, who put
28 in hundreds of lines of source code changes, including his own
29 ANSIfication of the code (I liked my own ANSIfication better, but
30 his (__P()) is the "Berkeley standard" way of doing it, and I wanted UCB
31 to include the code...), his HP-like "indirection" (a feature of
32 the HP file command, I think), and his mods that finally got the
33 uncompress (-z) mode finished and working.
34
35 This release has compiled in numerous environments; see PORTING
36 for a list and problems.
37
38 This fine freeware file(1) follows the USG (System V) model of the file
39 command, rather than the Research (V7) version or the V7-derived 4.[23]
40 Berkeley one. That is, the file /etc/magic contains much of the ritual
41 information that is the source of this program's power. My version
42 knows a little more magic (including tar archives) than System V; the
43 /etc/magic parsing seems to be compatible with the (poorly documented)
44 System V /etc/magic format (with one exception; see the man page).
45
46 In addition, the /etc/magic file is built from a subdirectory
47 for easier(?) maintenance.  I will act as a clearinghouse for
48 magic numbers assigned to all sorts of data files that
49 are in reasonable circulation. Send your magic numbers,
50 in magic(5) format please, to the maintainer, Christos Zoulas.
51
52 COPYING - read this first.
53 README - read this second (you are currently reading this file).
54 INSTALL - read on how to install
55
56 src/apprentice.c - parses /etc/magic to learn magic
57 src/apptype.c - used for OS/2 specific application type magic
58 src/asprintf.c - replacement for OS's that don't have it.
59 src/ascmagic.c - third & last set of tests, based on hardwired assumptions.
60 src/cdf.c - parser for Microsoft Compound Document Files
61 src/cdf_time.c - time converter for CDF.
62 src/compress.c - handles decompressing files to look inside.
63 src/encoding.c - handles unicode encodings
64 src/file.c - the main program
65 src/file.h - header file
66 src/fsmagic.c - first set of tests the program runs, based on filesystem info
67 src/funcs.c - utilility functions
68 src/getopt_long.c - used for OS/2 specific application type magic
69 src/is_tar.c, tar.h - knows about tarchives (courtesy John Gilmore).
70 src/names.h - header file for ascmagic.c
71 src/magic.c - the libmagic api
72 src/print.c - print results, errors, warnings.
73 src/readcdf.c - CDF wrapper.
74 src/readelf.[ch] - Stand-alone elf parsing code.
75 src/softmagic.c - 2nd set of tests, based on /etc/magic
76 src/strlcat.c - used for OS/2 specific application type magic
77 src/strlcpy.c - used for OS/2 specific application type magic
78 src/vasprintf.c - used for OS/2 specific application type magic
79 doc/file.1 - man page for the command
80 doc/magic.4 - man page for the magic file, courtesy Guy Harris.
81         Install as magic.4 on USG and magic.5 on V7 or Berkeley; cf Makefile.
82 Magdir - directory of /etc/magic pieces
83
84 ------------------------------------------------------------------------------
85
86 If you submit a new magic entry please make sure you read the following
87 guidelines:
88
89 - Initial match is preferably at least 32 bits long, and is a _unique_ match
90 - If this is not feasible, use additional check
91 - Match of <= 16 bits are not accepted
92 - Delay printing string as much as possible, don't print output too early
93 - Avoid printf arbitrary byte as string, which can be a source of
94   crash and buffer overflow
95
96 - Provide complete information with entry:
97   * One line short summary
98   * Optional long description
99   * File extension, if applicable
100   * Full name and contact method (for discussion when entry has problem)
101   * Further reference, such as documentation of format
102
103 ------------------------------------------------------------------------------
104
105 You can download the latest version of file from:
106
107         ftp://ftp.astron.com/pub/file/
108
109 If your gzip sometimes fails to decompress things complaining about a short
110 file, apply this patch [which is going to be in the next version of gzip]:
111 *** -   Tue Oct 29 02:06:35 1996
112 --- util.c      Sun Jul 21 21:51:38 1996
113 *** 106,111 ****
114 --- 108,114 ----
115   
116       if (insize == 0) {
117         if (eof_ok) return EOF;
118 +       flush_window();
119         read_error();
120       }
121       bytes_in += (ulg)insize;
122
123 Parts of this software were developed at SoftQuad Inc., developers
124 of SGML/HTML/XML publishing software, in Toronto, Canada.
125 SoftQuad was swallowed up by Corel in 2002
126 and does not exist any longer.
127
128 From: Kees Zeelenberg
129
130 An MS-Windows (Win32) port of File-4.17 is available from
131 http://gnuwin32.sourceforge.net/
132
133 File is an implementation of the Unix File(1) command.
134 It knows the 'magic number' of several thousands of file types.