1 /* $NetBSD: magic.c,v 1.1.1.1 2009/05/08 16:35:05 christos Exp $ */
4 * Copyright (c) Christos Zoulas 2003.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice immediately at the beginning of the file, without modification,
12 * this list of conditions, and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
21 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 FILE_RCSID("@(#)$File: magic.c,v 1.62 2009/03/20 21:25:41 christos Exp $")
36 __RCSID("$NetBSD: magic.c,v 1.1.1.1 2009/05/08 16:35:05 christos Exp $");
49 #include <limits.h> /* for PIPE_BUF */
52 #if defined(HAVE_UTIMES)
53 # include <sys/time.h>
54 #elif defined(HAVE_UTIME)
55 # if defined(HAVE_SYS_UTIME_H)
56 # include <sys/utime.h>
57 # elif defined(HAVE_UTIME_H)
63 #include <unistd.h> /* for read() */
66 #include <netinet/in.h> /* for byte swapping */
68 #include "patchlevel.h"
71 /* Get the PIPE_BUF from pathconf */
73 #define PIPE_BUF pathconf(".", _PC_PIPE_BUF)
79 private void free_mlist(struct mlist
*);
80 private void close_and_restore(const struct magic_set
*, const char *, int,
82 private int unreadable_info(struct magic_set
*, mode_t
, const char *);
84 private const char *file_or_fd(struct magic_set
*, const char *, int);
88 #define STDIN_FILENO 0
91 public struct magic_set
*
97 if ((ms
= CAST(struct magic_set
*, calloc((size_t)1,
98 sizeof(struct magic_set
)))) == NULL
)
101 if (magic_setflags(ms
, flags
) == -1) {
106 ms
->o
.buf
= ms
->o
.pbuf
= NULL
;
107 len
= (ms
->c
.len
= 10) * sizeof(*ms
->c
.li
);
109 if ((ms
->c
.li
= CAST(struct level_info
*, malloc(len
))) == NULL
)
115 ms
->file
= "unknown";
124 free_mlist(struct mlist
*mlist
)
131 for (ml
= mlist
->next
; ml
!= mlist
;) {
132 struct mlist
*next
= ml
->next
;
133 struct magic
*mg
= ml
->magic
;
134 file_delmagic(mg
, ml
->mapped
, ml
->nmagic
);
142 unreadable_info(struct magic_set
*ms
, mode_t md
, const char *file
)
144 /* We cannot open it, but we were able to stat it. */
145 if (access(file
, W_OK
) == 0)
146 if (file_printf(ms
, "writable, ") == -1)
148 if (access(file
, X_OK
) == 0)
149 if (file_printf(ms
, "executable, ") == -1)
152 if (file_printf(ms
, "regular file, ") == -1)
154 if (file_printf(ms
, "no read permission") == -1)
160 magic_close(struct magic_set
*ms
)
162 free_mlist(ms
->mlist
);
173 magic_load(struct magic_set
*ms
, const char *magicfile
)
175 struct mlist
*ml
= file_apprentice(ms
, magicfile
, FILE_LOAD
);
177 free_mlist(ms
->mlist
);
185 magic_compile(struct magic_set
*ms
, const char *magicfile
)
187 struct mlist
*ml
= file_apprentice(ms
, magicfile
, FILE_COMPILE
);
193 magic_check(struct magic_set
*ms
, const char *magicfile
)
195 struct mlist
*ml
= file_apprentice(ms
, magicfile
, FILE_CHECK
);
201 close_and_restore(const struct magic_set
*ms
, const char *name
, int fd
,
202 const struct stat
*sb
)
204 if (fd
== STDIN_FILENO
)
208 if ((ms
->flags
& MAGIC_PRESERVE_ATIME
) != 0) {
210 * Try to restore access, modification times if read it.
211 * This is really *bad* because it will modify the status
212 * time of the file... And of course this will affect
216 struct timeval utsbuf
[2];
217 (void)memset(utsbuf
, 0, sizeof(utsbuf
));
218 utsbuf
[0].tv_sec
= sb
->st_atime
;
219 utsbuf
[1].tv_sec
= sb
->st_mtime
;
221 (void) utimes(name
, utsbuf
); /* don't care if loses */
222 #elif defined(HAVE_UTIME_H) || defined(HAVE_SYS_UTIME_H)
223 struct utimbuf utbuf
;
225 (void)memset(&utbuf
, 0, sizeof(utbuf
));
226 utbuf
.actime
= sb
->st_atime
;
227 utbuf
.modtime
= sb
->st_mtime
;
228 (void) utime(name
, &utbuf
); /* don't care if loses */
236 * find type of descriptor
239 magic_descriptor(struct magic_set
*ms
, int fd
)
241 return file_or_fd(ms
, NULL
, fd
);
245 * find type of named file
248 magic_file(struct magic_set
*ms
, const char *inname
)
250 return file_or_fd(ms
, inname
, STDIN_FILENO
);
254 file_or_fd(struct magic_set
*ms
, const char *inname
, int fd
)
259 ssize_t nbytes
= 0; /* number of bytes read from a datafile */
263 * one extra for terminating '\0', and
264 * some overlapping space for matches near EOF
266 #define SLOP (1 + sizeof(union VALUETYPE))
267 if ((buf
= CAST(unsigned char *, malloc(HOWMANY
+ SLOP
))) == NULL
)
270 if (file_reset(ms
) == -1)
273 switch (file_fsmagic(ms
, inname
, &sb
)) {
276 case 0: /* nothing found */
278 default: /* matched it and printed type */
283 if (inname
== NULL
) {
284 if (fstat(fd
, &sb
) == 0 && S_ISFIFO(sb
.st_mode
))
287 int flags
= O_RDONLY
|O_BINARY
;
289 if (stat(inname
, &sb
) == 0 && S_ISFIFO(sb
.st_mode
)) {
295 if ((fd
= open(inname
, flags
)) < 0) {
296 if (unreadable_info(ms
, sb
.st_mode
, inname
) == -1)
302 if ((flags
= fcntl(fd
, F_GETFL
)) != -1) {
303 flags
&= ~O_NONBLOCK
;
304 (void)fcntl(fd
, F_SETFL
, flags
);
310 * try looking at the first HOWMANY bytes
315 while ((r
= sread(fd
, (void *)&buf
[nbytes
],
316 (size_t)(HOWMANY
- nbytes
), 1)) > 0) {
318 if (r
< PIPE_BUF
) break;
322 /* We can not read it, but we were able to stat it. */
323 if (unreadable_info(ms
, sb
.st_mode
, inname
) == -1)
330 if ((nbytes
= read(fd
, (char *)buf
, HOWMANY
)) == -1) {
331 file_error(ms
, errno
, "cannot read `%s'", inname
);
336 (void)memset(buf
+ nbytes
, 0, SLOP
); /* NUL terminate */
337 if (file_buffer(ms
, fd
, inname
, buf
, (size_t)nbytes
) == -1)
342 close_and_restore(ms
, inname
, fd
, &sb
);
343 return rv
== 0 ? file_getbuffer(ms
) : NULL
;
348 magic_buffer(struct magic_set
*ms
, const void *buf
, size_t nb
)
350 if (file_reset(ms
) == -1)
353 * The main work is done here!
354 * We have the file name and/or the data buffer to be identified.
356 if (file_buffer(ms
, -1, NULL
, buf
, nb
) == -1) {
359 return file_getbuffer(ms
);
364 magic_error(struct magic_set
*ms
)
366 return (ms
->event_flags
& EVENT_HAD_ERR
) ? ms
->o
.buf
: NULL
;
370 magic_errno(struct magic_set
*ms
)
372 return (ms
->event_flags
& EVENT_HAD_ERR
) ? ms
->error
: 0;
376 magic_setflags(struct magic_set
*ms
, int flags
)
378 #if !defined(HAVE_UTIME) && !defined(HAVE_UTIMES)
379 if (flags
& MAGIC_PRESERVE_ATIME
)