Import file-5.05.
[dragonfly.git] / contrib / file / doc / libmagic.man
1 .\" $File: libmagic.man,v 1.23 2011/01/14 21:59:17 rrt Exp $
2 .\"
3 .\" Copyright (c) Christos Zoulas 2003.
4 .\" All Rights Reserved.
5 .\"
6 .\" Redistribution and use in source and binary forms, with or without
7 .\" modification, are permitted provided that the following conditions
8 .\" are met:
9 .\" 1. Redistributions of source code must retain the above copyright
10 .\"    notice immediately at the beginning of the file, without modification,
11 .\"    this list of conditions, and the following disclaimer.
12 .\" 2. Redistributions in binary form must reproduce the above copyright
13 .\"    notice, this list of conditions and the following disclaimer in the
14 .\"    documentation and/or other materials provided with the distribution.
15 .\"
16 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
20 .\" ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 .\" SUCH DAMAGE.
27 .\"
28 .Dd January 14, 2011
29 .Dt LIBMAGIC 3
30 .Os
31 .Sh NAME
32 .Nm magic_open ,
33 .Nm magic_close ,
34 .Nm magic_error ,
35 .Nm magic_descriptor ,
36 .Nm magic_buffer ,
37 .Nm magic_setflags ,
38 .Nm magic_check ,
39 .Nm magic_compile ,
40 .Nm magic_load
41 .Nd Magic number recognition library.
42 .Sh LIBRARY
43 .Lb libmagic
44 .Sh SYNOPSIS
45 .In magic.h
46 .Ft magic_t
47 .Fn magic_open "int flags"
48 .Ft void
49 .Fn magic_close "magic_t cookie"
50 .Ft const char *
51 .Fn magic_error "magic_t cookie"
52 .Ft int
53 .Fn magic_errno "magic_t cookie"
54 .Ft const char *
55 .Fn magic_descriptor "magic_t cookie, "int fd"
56 .Ft const char *
57 .Fn magic_file "magic_t cookie, const char *filename"
58 .Ft const char *
59 .Fn magic_buffer "magic_t cookie, const void *buffer, size_t length"
60 .Ft int
61 .Fn magic_setflags "magic_t cookie, int flags"
62 .Ft int
63 .Fn magic_check "magic_t cookie, const char *filename"
64 .Ft int
65 .Fn magic_compile "magic_t cookie, const char *filename"
66 .Ft int
67 .Fn magic_load "magic_t cookie, const char *filename"
68 .Sh DESCRIPTION
69 These functions
70 operate on the magic database file
71 which is described
72 in
73 .Xr magic __FSECTION__ .
74 .Pp
75 The function
76 .Fn magic_open
77 creates a magic cookie pointer and returns it. It returns NULL if
78 there was an error allocating the magic cookie. The
79 .Ar flags
80 argument specifies how the other magic functions should behave:
81 .Bl -tag -width MAGIC_COMPRESS
82 .It Dv MAGIC_NONE
83 No special handling.
84 .It Dv MAGIC_DEBUG
85 Print debugging messages to stderr.
86 .It Dv MAGIC_SYMLINK
87 If the file queried is a symlink, follow it.
88 .It Dv MAGIC_COMPRESS
89 If the file is compressed, unpack it and look at the contents.
90 .It Dv MAGIC_DEVICES
91 If the file is a block or character special device, then open the device
92 and try to look in its contents.
93 .It Dv MAGIC_MIME_TYPE
94 Return a MIME type string, instead of a textual description.
95 .It Dv MAGIC_MIME_ENCODING
96 Return a MIME encoding, instead of a textual description.
97 .It Dv MAGIC_MIME
98 A shorthand for MAGIC_MIME_TYPE | MAGIC_MIME_ENCODING.
99 .It Dv MAGIC_CONTINUE
100 Return all matches, not just the first.
101 .It Dv MAGIC_CHECK
102 Check the magic database for consistency and print warnings to stderr.
103 .It Dv MAGIC_PRESERVE_ATIME
104 On systems that support
105 .Xr utime 2
106 or
107 .Xr utimes 2 ,
108 attempt to preserve the access time of files analysed.
109 .It Dv MAGIC_RAW
110 Don't translate unprintable characters to a \eooo octal representation.
111 .It Dv MAGIC_ERROR
112 Treat operating system errors while trying to open files and follow symlinks
113 as real errors, instead of printing them in the magic buffer.
114 .It Dv MAGIC_APPLE
115 Return the Apple creator and type.
116 .It Dv MAGIC_NO_CHECK_APPTYPE
117 Don't check for
118 .Dv EMX
119 application type (only on EMX).
120 .It Dv MAGIC_NO_CHECK_CDF
121 Don't get extra information on MS Composite Document Files.
122 .It Dv MAGIC_NO_CHECK_COMPRESS
123 Don't look inside compressed files.
124 .It Dv MAGIC_NO_CHECK_ELF
125 Don't print ELF details.
126 .It Dv NO_CHECK_ENCODING
127 Don't check text encodings.
128 .It Dv MAGIC_NO_CHECK_SOFT
129 Don't consult magic files.
130 .It Dv MAGIC_NO_CHECK_TAR
131 Don't examine tar files.
132 .It Dv MAGIC_NO_CHECK_TEXT
133 Don't check for various types of text files.
134 .It Dv MAGIC_NO_CHECK_TOKENS
135 Don't look for known tokens inside ascii files.
136 .El
137 .Pp
138 The
139 .Fn magic_close
140 function closes the
141 .Xr magic __FSECTION__
142 database and deallocates any resources used.
143 .Pp
144 The
145 .Fn magic_error
146 function returns a textual explanation of the last error, or NULL if there was
147 no error.
148 .Pp
149 The
150 .Fn magic_errno
151 function returns the last operating system error number
152 .Pq Xr errno 2
153 that was encountered by a system call.
154 .Pp
155 The
156 .Fn magic_file
157 function returns a textual description of the contents of the
158 .Ar filename
159 argument, or NULL if an error occurred.
160 If the
161 .Ar filename
162 is NULL, then stdin is used.
163 .Pp
164 The
165 .Fn magic_descriptor
166 function returns a textual description of the contents of the
167 .Ar fd
168 argument, or NULL if an error occurred.
169 .Pp
170 The
171 .Fn magic_buffer
172 function returns a textual description of the contents of the
173 .Ar buffer
174 argument with
175 .Ar length
176 bytes size.
177 .Pp
178 The
179 .Fn magic_setflags
180 function sets the
181 .Ar flags
182 described above. Note that using both MIME flags together can also
183 return extra information on the charset.
184 .Pp
185 The
186 .Fn magic_check
187 function can be used to check the validity of entries in the colon
188 separated database files passed in as
189 .Ar filename ,
190 or NULL for the default database. It returns 0 on success and -1 on
191 failure.
192 .Pp
193 The
194 .Fn magic_compile
195 function can be used to compile the the colon
196 separated list of database files passed in as
197 .Ar filename ,
198 or NULL for the default database. It returns 0 on success and -1 on
199 failure. The compiled files created are named from the
200 .Xr basename 1
201 of each file argument with
202 .Dq .mgc
203 appended to it.
204 .Pp
205 The
206 .Fn magic_load
207 function must be used to load the the colon
208 separated list of database files passed in as
209 .Ar filename ,
210 or NULL for the default database file
211 before any magic queries can performed.
212 .Pp
213 The default database file is named by the MAGIC environment variable.  If
214 that variable is not set, the default database file name is __MAGIC__.
215 .Fn magic_load
216 adds
217 .Dq .mgc
218 to the database filename as appropriate.
219 .Sh RETURN VALUES
220 The function
221 .Fn magic_open
222 returns a magic cookie on success and NULL on failure setting errno to
223 an appropriate value. It will set errno to EINVAL if an unsupported
224 value for flags was given.
225 The
226 .Fn magic_load ,
227 .Fn magic_compile ,
228 and
229 .Fn magic_check
230 functions return 0 on success and -1 on failure.
231 The
232 .Fn magic_file ,
233 and
234 .Fn magic_buffer
235 functions return a string on success and NULL on failure. The
236 .Fn magic_error
237 function returns a textual description of the errors of the above
238 functions, or NULL if there was no error.
239 Finally,
240 .Fn magic_setflags
241 returns -1 on systems that don't support
242 .Xr utime 2 ,
243 or
244 .Xr utimes 2
245 when
246 .Dv MAGIC_PRESERVE_ATIME
247 is set.
248 .Sh FILES
249 .Bl -tag -width __MAGIC__.mgc -compact
250 .It Pa __MAGIC__
251 The non-compiled default magic database.
252 .It Pa __MAGIC__.mgc
253 The compiled default magic database.
254 .El
255 .Sh SEE ALSO
256 .Xr file __CSECTION__ ,
257 .Xr magic __FSECTION__
258 .Sh AUTHORS
259 Måns Rullgård Initial libmagic implementation,
260 and configuration.
261 .br
262 Christos Zoulas API cleanup, error code and allocation handling.