1 .\" $File: libmagic.man,v 1.34 2014/12/16 23:18:40 christos Exp $
3 .\" Copyright (c) Christos Zoulas 2003.
4 .\" All Rights Reserved.
6 .\" Redistribution and use in source and binary forms, with or without
7 .\" modification, are permitted provided that the following conditions
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.
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
36 .Nm magic_descriptor ,
43 .Nm magic_load_buffers ,
47 .Nd Magic number recognition library
53 .Fn magic_open "int flags"
55 .Fn magic_close "magic_t cookie"
57 .Fn magic_error "magic_t cookie"
59 .Fn magic_errno "magic_t cookie"
61 .Fn magic_descriptor "magic_t cookie" "int fd"
63 .Fn magic_file "magic_t cookie" "const char *filename"
65 .Fn magic_buffer "magic_t cookie" "const void *buffer" "size_t length"
67 .Fn magic_setflags "magic_t cookie" "int flags"
69 .Fn magic_check "magic_t cookie" "const char *filename"
71 .Fn magic_compile "magic_t cookie" "const char *filename"
73 .Fn magic_list "magic_t cookie" "const char *filename"
75 .Fn magic_load "magic_t cookie" "const char *filename"
77 .Fn magic_load_buffers "magic_t cookie" "void **buffers" "size_t *sizes" "size_t nbuffers"
79 .Fn magic_getparam "magic_t cookie" "int param" "void *value"
81 .Fn magic_setparam "magic_t cookie" "int param" "const void *value"
83 .Fn magic_version "void"
86 operate on the magic database file
89 .Xr magic __FSECTION__ .
93 creates a magic cookie pointer and returns it.
96 if there was an error allocating the magic cookie.
99 argument specifies how the other magic functions should behave:
100 .Bl -tag -width MAGIC_COMPRESS
104 Print debugging messages to stderr.
106 If the file queried is a symlink, follow it.
107 .It Dv MAGIC_COMPRESS
108 If the file is compressed, unpack it and look at the contents.
110 If the file is a block or character special device, then open the device
111 and try to look in its contents.
112 .It Dv MAGIC_MIME_TYPE
113 Return a MIME type string, instead of a textual description.
114 .It Dv MAGIC_MIME_ENCODING
115 Return a MIME encoding, instead of a textual description.
117 A shorthand for MAGIC_MIME_TYPE | MAGIC_MIME_ENCODING.
118 .It Dv MAGIC_CONTINUE
119 Return all matches, not just the first.
121 Check the magic database for consistency and print warnings to stderr.
122 .It Dv MAGIC_PRESERVE_ATIME
123 On systems that support
127 attempt to preserve the access time of files analysed.
129 Don't translate unprintable characters to a \eooo octal representation.
131 Treat operating system errors while trying to open files and follow symlinks
132 as real errors, instead of printing them in the magic buffer.
134 Return the Apple creator and type.
135 .It Dv MAGIC_NO_CHECK_APPTYPE
138 application type (only on EMX).
139 .It Dv MAGIC_NO_CHECK_CDF
140 Don't get extra information on MS Composite Document Files.
141 .It Dv MAGIC_NO_CHECK_COMPRESS
142 Don't look inside compressed files.
143 .It Dv MAGIC_NO_CHECK_ELF
144 Don't print ELF details.
145 .It Dv MAGIC_NO_CHECK_ENCODING
146 Don't check text encodings.
147 .It Dv MAGIC_NO_CHECK_SOFT
148 Don't consult magic files.
149 .It Dv MAGIC_NO_CHECK_TAR
150 Don't examine tar files.
151 .It Dv MAGIC_NO_CHECK_TEXT
152 Don't check for various types of text files.
153 .It Dv MAGIC_NO_CHECK_TOKENS
154 Don't look for known tokens inside ascii files.
160 .Xr magic __FSECTION__
161 database and deallocates any resources used.
165 function returns a textual explanation of the last error, or
167 if there was no error.
171 function returns the last operating system error number
173 that was encountered by a system call.
177 function returns a textual description of the contents of the
181 if an error occurred.
190 function returns a textual description of the contents of the
194 if an error occurred.
198 function returns a textual description of the contents of the
209 Note that using both MIME flags together can also
210 return extra information on the charset.
214 function can be used to check the validity of entries in the colon
215 separated database files passed in as
219 for the default database.
220 It returns 0 on success and \-1 on failure.
224 function can be used to compile the the colon
225 separated list of database files passed in as
229 for the default database.
230 It returns 0 on success and \-1 on failure.
231 The compiled files created are named from the
233 of each file argument with
239 function dumps all magic entries in a human readable format,
240 dumping first the entries that are matched against binary files and then the
241 ones that match text files.
242 It takes and optional
244 argument which is a colon separated list of database files, or
246 for the default database.
250 function must be used to load the the colon
251 separated list of database files passed in as
255 for the default database file before any magic queries can performed.
257 The default database file is named by the MAGIC environment variable.
258 If that variable is not set, the default database file name is __MAGIC__.
262 to the database filename as appropriate.
265 .Fn magic_load_buffers
266 function takes an array of size
270 with a respective size for each in the array of
272 loaded with the contents of the magic databases from the filesystem.
273 This function can be used in environment where the magic library does
274 not have direct access to the filesystem, but can access the magic
275 database via shared memory or other IPC means.
281 allow getting and setting various limits related to the the magic
283 .Bl -column "MAGIC_PARAM_ELF_PHNUM_MAX" "size_t" "Default" -offset indent
284 .It Sy "Parameter" Ta Sy "Type" Ta Sy "Default"
285 .It Li MAGIC_PARAM_INDIR_MAX Ta size_t Ta 15
286 .It Li MAGIC_PARAM_NAME_MAX Ta size_t Ta 30
287 .It Li MAGIC_PARAM_ELF_NOTES_MAX Ta size_t Ta 256
288 .It Li MAGIC_PARAM_ELF_PHNUM_MAX Ta size_t Ta 128
289 .It Li MAGIC_PARAM_ELF_SHNUM_MAX Ta size_t Ta 32768
293 .Dv MAGIC_PARAM_INDIR_RECURSION
294 parameter controls how many levels of recursion will be followed for
295 indirect magic entries.
298 .Dv MAGIC_PARAM_NAME_RECURSION
299 parameter controls how many levels of recursion will be followed for
303 .Dv MAGIC_PARAM_NAME_MAX
304 parameter controls the maximum number of calls for name/use.
307 .Dv MAGIC_PARAM_NOTES_MAX
308 parameter controls how many ELF notes will be processed.
311 .Dv MAGIC_PARAM_PHNUM_MAX
312 parameter controls how many ELF program sections will be processed.
315 .Dv MAGIC_PARAM_SHNUM_MAX
316 parameter controls how many ELF sections will be processed.
320 command returns the version number of this library which is compiled into
321 the shared library using the constant
325 This can be used by client programs to verify that the version they compile
326 against is the same as the version that they run against.
330 returns a magic cookie on success and
332 on failure setting errno to an appropriate value.
335 if an unsupported value for flags was given.
342 functions return 0 on success and \-1 on failure.
348 functions return a string on success and
353 function returns a textual description of the errors of the above
356 if there was no error.
359 always returns the version number of the library.
362 returns \-1 on systems that don't support
367 .Dv MAGIC_PRESERVE_ATIME
370 .Bl -tag -width __MAGIC__.mgc -compact
372 The non-compiled default magic database.
374 The compiled default magic database.
377 .Xr file __CSECTION__ ,
378 .Xr magic __FSECTION__
380 .An M\(oans Rullg\(oard
381 Initial libmagic implementation, and configuration.
383 API cleanup, error code and allocation handling.