2 * Copyright (c) Christos Zoulas 2003.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice immediately at the beginning of the file, without modification,
10 * this list of conditions, and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
19 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 FILE_RCSID("@(#)$File: magic.c,v 1.91 2014/12/16 23:18:40 christos Exp $")
48 #include <limits.h> /* for PIPE_BUF */
51 #if defined(HAVE_UTIMES)
52 # include <sys/time.h>
53 #elif defined(HAVE_UTIME)
54 # if defined(HAVE_SYS_UTIME_H)
55 # include <sys/utime.h>
56 # elif defined(HAVE_UTIME_H)
62 #include <unistd.h> /* for read() */
66 /* Get the PIPE_BUF from pathconf */
68 #define PIPE_BUF pathconf(".", _PC_PIPE_BUF)
74 private void close_and_restore(const struct magic_set
*, const char *, int,
76 private int unreadable_info(struct magic_set
*, mode_t
, const char *);
77 private const char* get_default_magic(void);
79 private const char *file_or_fd(struct magic_set
*, const char *, int);
83 #define STDIN_FILENO 0
87 get_default_magic(void)
89 static const char hmagic
[] = "/.magic/magic.mgc";
90 static char *default_magic
;
91 char *home
, *hmagicpath
;
100 if ((home
= getenv("HOME")) == NULL
)
103 if (asprintf(&hmagicpath
, "%s/.magic.mgc", home
) < 0)
105 if (stat(hmagicpath
, &st
) == -1) {
107 if (asprintf(&hmagicpath
, "%s/.magic", home
) < 0)
109 if (stat(hmagicpath
, &st
) == -1)
111 if (S_ISDIR(st
.st_mode
)) {
113 if (asprintf(&hmagicpath
, "%s/%s", home
, hmagic
) < 0)
115 if (access(hmagicpath
, R_OK
) == -1)
120 if (asprintf(&default_magic
, "%s:%s", hmagicpath
, MAGIC
) < 0)
123 return default_magic
;
125 default_magic
= NULL
;
130 char *tmppath
= NULL
;
134 #define APPENDPATH() \
136 if (tmppath && access(tmppath, R_OK) != -1) { \
137 if (hmagicpath == NULL) \
138 hmagicpath = tmppath; \
140 if (asprintf(&hmagicp, "%s%c%s", hmagicpath, \
141 PATHSEP, tmppath) >= 0) { \
143 hmagicpath = hmagicp; \
149 } while (/*CONSTCOND*/0)
153 default_magic
= NULL
;
156 /* First, try to get user-specific magic file */
157 if ((home
= getenv("LOCALAPPDATA")) == NULL
) {
158 if ((home
= getenv("USERPROFILE")) != NULL
)
159 if (asprintf(&tmppath
,
160 "%s/Local Settings/Application Data%s", home
,
164 if (asprintf(&tmppath
, "%s%s", home
, hmagic
) < 0)
170 /* Second, try to get a magic file from Common Files */
171 if ((home
= getenv("COMMONPROGRAMFILES")) != NULL
) {
172 if (asprintf(&tmppath
, "%s%s", home
, hmagic
) >= 0)
176 /* Third, try to get magic file relative to dll location */
177 dllpath
= malloc(sizeof(*dllpath
) * (MAX_PATH
+ 1));
178 dllpath
[MAX_PATH
] = 0; /* just in case long path gets truncated and not null terminated */
179 if (GetModuleFileNameA(NULL
, dllpath
, MAX_PATH
)){
180 PathRemoveFileSpecA(dllpath
);
181 if (strlen(dllpath
) > 3 &&
182 stricmp(&dllpath
[strlen(dllpath
) - 3], "bin") == 0) {
183 if (asprintf(&tmppath
,
184 "%s/../share/misc/magic.mgc", dllpath
) >= 0)
187 if (asprintf(&tmppath
,
188 "%s/share/misc/magic.mgc", dllpath
) >= 0)
190 else if (asprintf(&tmppath
,
191 "%s/magic.mgc", dllpath
) >= 0)
196 /* Don't put MAGIC constant - it likely points to a file within MSys
198 default_magic
= hmagicpath
;
199 return default_magic
;
204 magic_getpath(const char *magicfile
, int action
)
206 if (magicfile
!= NULL
)
209 magicfile
= getenv("MAGIC");
210 if (magicfile
!= NULL
)
213 return action
== FILE_LOAD
? get_default_magic() : MAGIC
;
216 public struct magic_set
*
217 magic_open(int flags
)
219 return file_ms_alloc(flags
);
223 unreadable_info(struct magic_set
*ms
, mode_t md
, const char *file
)
226 /* We cannot open it, but we were able to stat it. */
227 if (access(file
, W_OK
) == 0)
228 if (file_printf(ms
, "writable, ") == -1)
230 if (access(file
, X_OK
) == 0)
231 if (file_printf(ms
, "executable, ") == -1)
235 if (file_printf(ms
, "regular file, ") == -1)
237 if (file_printf(ms
, "no read permission") == -1)
243 magic_close(struct magic_set
*ms
)
254 magic_load(struct magic_set
*ms
, const char *magicfile
)
258 return file_apprentice(ms
, magicfile
, FILE_LOAD
);
263 * Install a set of compiled magic buffers.
266 magic_load_buffers(struct magic_set
*ms
, void **bufs
, size_t *sizes
,
271 return buffer_apprentice(ms
, (struct magic
**)bufs
, sizes
, nbufs
);
276 magic_compile(struct magic_set
*ms
, const char *magicfile
)
280 return file_apprentice(ms
, magicfile
, FILE_COMPILE
);
284 magic_check(struct magic_set
*ms
, const char *magicfile
)
288 return file_apprentice(ms
, magicfile
, FILE_CHECK
);
292 magic_list(struct magic_set
*ms
, const char *magicfile
)
296 return file_apprentice(ms
, magicfile
, FILE_LIST
);
300 close_and_restore(const struct magic_set
*ms
, const char *name
, int fd
,
301 const struct stat
*sb
)
303 if (fd
== STDIN_FILENO
|| name
== NULL
)
307 if ((ms
->flags
& MAGIC_PRESERVE_ATIME
) != 0) {
309 * Try to restore access, modification times if read it.
310 * This is really *bad* because it will modify the status
311 * time of the file... And of course this will affect
315 struct timeval utsbuf
[2];
316 (void)memset(utsbuf
, 0, sizeof(utsbuf
));
317 utsbuf
[0].tv_sec
= sb
->st_atime
;
318 utsbuf
[1].tv_sec
= sb
->st_mtime
;
320 (void) utimes(name
, utsbuf
); /* don't care if loses */
321 #elif defined(HAVE_UTIME_H) || defined(HAVE_SYS_UTIME_H)
322 struct utimbuf utbuf
;
324 (void)memset(&utbuf
, 0, sizeof(utbuf
));
325 utbuf
.actime
= sb
->st_atime
;
326 utbuf
.modtime
= sb
->st_mtime
;
327 (void) utime(name
, &utbuf
); /* don't care if loses */
335 * find type of descriptor
338 magic_descriptor(struct magic_set
*ms
, int fd
)
342 return file_or_fd(ms
, NULL
, fd
);
346 * find type of named file
349 magic_file(struct magic_set
*ms
, const char *inname
)
353 return file_or_fd(ms
, inname
, STDIN_FILENO
);
357 file_or_fd(struct magic_set
*ms
, const char *inname
, int fd
)
362 ssize_t nbytes
= 0; /* number of bytes read from a datafile */
364 off_t pos
= (off_t
)-1;
366 if (file_reset(ms
) == -1)
370 * one extra for terminating '\0', and
371 * some overlapping space for matches near EOF
373 #define SLOP (1 + sizeof(union VALUETYPE))
374 if ((buf
= CAST(unsigned char *, malloc(HOWMANY
+ SLOP
))) == NULL
)
377 switch (file_fsmagic(ms
, inname
, &sb
)) {
380 case 0: /* nothing found */
382 default: /* matched it and printed type */
388 /* Place stdin in binary mode, so EOF (Ctrl+Z) doesn't stop early. */
389 if (fd
== STDIN_FILENO
)
390 _setmode(STDIN_FILENO
, O_BINARY
);
393 if (inname
== NULL
) {
394 if (fstat(fd
, &sb
) == 0 && S_ISFIFO(sb
.st_mode
))
397 pos
= lseek(fd
, (off_t
)0, SEEK_CUR
);
399 int flags
= O_RDONLY
|O_BINARY
;
400 int okstat
= stat(inname
, &sb
) == 0;
402 if (okstat
&& S_ISFIFO(sb
.st_mode
)) {
410 if ((fd
= open(inname
, flags
)) < 0) {
413 * Can't stat, can't open. It may have been opened in
414 * fsmagic, so if the user doesn't have read permission,
415 * allow it to say so; otherwise an error was probably
416 * displayed in fsmagic.
418 if (!okstat
&& errno
== EACCES
) {
419 sb
.st_mode
= S_IFBLK
;
424 unreadable_info(ms
, sb
.st_mode
, inname
) == -1)
430 if ((flags
= fcntl(fd
, F_GETFL
)) != -1) {
431 flags
&= ~O_NONBLOCK
;
432 (void)fcntl(fd
, F_SETFL
, flags
);
438 * try looking at the first HOWMANY bytes
443 while ((r
= sread(fd
, (void *)&buf
[nbytes
],
444 (size_t)(HOWMANY
- nbytes
), 1)) > 0) {
446 if (r
< PIPE_BUF
) break;
450 /* We can not read it, but we were able to stat it. */
451 if (unreadable_info(ms
, sb
.st_mode
, inname
) == -1)
458 /* Windows refuses to read from a big console buffer. */
460 #if defined(WIN32) && HOWMANY > 8 * 1024
461 _isatty(fd
) ? 8 * 1024 :
464 if ((nbytes
= read(fd
, (char *)buf
, howmany
)) == -1) {
465 if (inname
== NULL
&& fd
!= STDIN_FILENO
)
466 file_error(ms
, errno
, "cannot read fd %d", fd
);
468 file_error(ms
, errno
, "cannot read `%s'",
469 inname
== NULL
? "/dev/stdin" : inname
);
474 (void)memset(buf
+ nbytes
, 0, SLOP
); /* NUL terminate */
475 if (file_buffer(ms
, fd
, inname
, buf
, (size_t)nbytes
) == -1)
480 if (pos
!= (off_t
)-1)
481 (void)lseek(fd
, pos
, SEEK_SET
);
482 close_and_restore(ms
, inname
, fd
, &sb
);
484 return rv
== 0 ? file_getbuffer(ms
) : NULL
;
489 magic_buffer(struct magic_set
*ms
, const void *buf
, size_t nb
)
493 if (file_reset(ms
) == -1)
496 * The main work is done here!
497 * We have the file name and/or the data buffer to be identified.
499 if (file_buffer(ms
, -1, NULL
, buf
, nb
) == -1) {
502 return file_getbuffer(ms
);
507 magic_error(struct magic_set
*ms
)
510 return "Magic database is not open";
511 return (ms
->event_flags
& EVENT_HAD_ERR
) ? ms
->o
.buf
: NULL
;
515 magic_errno(struct magic_set
*ms
)
519 return (ms
->event_flags
& EVENT_HAD_ERR
) ? ms
->error
: 0;
523 magic_setflags(struct magic_set
*ms
, int flags
)
527 #if !defined(HAVE_UTIME) && !defined(HAVE_UTIMES)
528 if (flags
& MAGIC_PRESERVE_ATIME
)
538 return MAGIC_VERSION
;
542 magic_setparam(struct magic_set
*ms
, int param
, const void *val
)
545 case MAGIC_PARAM_INDIR_MAX
:
546 ms
->indir_max
= *(const size_t *)val
;
548 case MAGIC_PARAM_NAME_MAX
:
549 ms
->name_max
= *(const size_t *)val
;
551 case MAGIC_PARAM_ELF_PHNUM_MAX
:
552 ms
->elf_phnum_max
= *(const size_t *)val
;
554 case MAGIC_PARAM_ELF_SHNUM_MAX
:
555 ms
->elf_shnum_max
= *(const size_t *)val
;
557 case MAGIC_PARAM_ELF_NOTES_MAX
:
558 ms
->elf_notes_max
= *(const size_t *)val
;
567 magic_getparam(struct magic_set
*ms
, int param
, void *val
)
570 case MAGIC_PARAM_INDIR_MAX
:
571 *(size_t *)val
= ms
->indir_max
;
573 case MAGIC_PARAM_NAME_MAX
:
574 *(size_t *)val
= ms
->name_max
;
576 case MAGIC_PARAM_ELF_PHNUM_MAX
:
577 *(size_t *)val
= ms
->elf_phnum_max
;
579 case MAGIC_PARAM_ELF_SHNUM_MAX
:
580 *(size_t *)val
= ms
->elf_shnum_max
;
582 case MAGIC_PARAM_ELF_NOTES_MAX
:
583 *(size_t *)val
= ms
->elf_notes_max
;