]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - contrib/file/src/funcs.c
MFC r298192: MFV r298178:
[FreeBSD/stable/10.git] / contrib / file / src / funcs.c
1 /*
2  * Copyright (c) Christos Zoulas 2003.
3  * All Rights Reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
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.
14  *
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
25  * SUCH DAMAGE.
26  */
27 #include "file.h"
28
29 #ifndef lint
30 FILE_RCSID("@(#)$File: funcs.c,v 1.89 2016/03/21 15:56:53 christos Exp $")
31 #endif  /* lint */
32
33 #include "magic.h"
34 #include <assert.h>
35 #include <stdarg.h>
36 #include <stdlib.h>
37 #include <string.h>
38 #include <ctype.h>
39 #if defined(HAVE_WCHAR_H)
40 #include <wchar.h>
41 #endif
42 #if defined(HAVE_WCTYPE_H)
43 #include <wctype.h>
44 #endif
45 #if defined(HAVE_LIMITS_H)
46 #include <limits.h>
47 #endif
48
49 #ifndef SIZE_MAX
50 #define SIZE_MAX        ((size_t)~0)
51 #endif
52
53 /*
54  * Like printf, only we append to a buffer.
55  */
56 protected int
57 file_vprintf(struct magic_set *ms, const char *fmt, va_list ap)
58 {
59         int len;
60         char *buf, *newstr;
61
62         if (ms->event_flags & EVENT_HAD_ERR)
63                 return 0;
64         len = vasprintf(&buf, fmt, ap);
65         if (len < 0)
66                 goto out;
67
68         if (ms->o.buf != NULL) {
69                 len = asprintf(&newstr, "%s%s", ms->o.buf, buf);
70                 free(buf);
71                 if (len < 0)
72                         goto out;
73                 free(ms->o.buf);
74                 buf = newstr;
75         }
76         ms->o.buf = buf;
77         return 0;
78 out:
79         file_error(ms, errno, "vasprintf failed");
80         return -1;
81 }
82
83 protected int
84 file_printf(struct magic_set *ms, const char *fmt, ...)
85 {
86         int rv;
87         va_list ap;
88
89         va_start(ap, fmt);
90         rv = file_vprintf(ms, fmt, ap);
91         va_end(ap);
92         return rv;
93 }
94
95 /*
96  * error - print best error message possible
97  */
98 /*VARARGS*/
99 __attribute__((__format__(__printf__, 3, 0)))
100 private void
101 file_error_core(struct magic_set *ms, int error, const char *f, va_list va,
102     size_t lineno)
103 {
104         /* Only the first error is ok */
105         if (ms->event_flags & EVENT_HAD_ERR)
106                 return;
107         if (lineno != 0) {
108                 free(ms->o.buf);
109                 ms->o.buf = NULL;
110                 file_printf(ms, "line %" SIZE_T_FORMAT "u:", lineno);
111         }
112         if (ms->o.buf && *ms->o.buf)
113                 file_printf(ms, " ");
114         file_vprintf(ms, f, va);
115         if (error > 0)
116                 file_printf(ms, " (%s)", strerror(error));
117         ms->event_flags |= EVENT_HAD_ERR;
118         ms->error = error;
119 }
120
121 /*VARARGS*/
122 protected void
123 file_error(struct magic_set *ms, int error, const char *f, ...)
124 {
125         va_list va;
126         va_start(va, f);
127         file_error_core(ms, error, f, va, 0);
128         va_end(va);
129 }
130
131 /*
132  * Print an error with magic line number.
133  */
134 /*VARARGS*/
135 protected void
136 file_magerror(struct magic_set *ms, const char *f, ...)
137 {
138         va_list va;
139         va_start(va, f);
140         file_error_core(ms, 0, f, va, ms->line);
141         va_end(va);
142 }
143
144 protected void
145 file_oomem(struct magic_set *ms, size_t len)
146 {
147         file_error(ms, errno, "cannot allocate %" SIZE_T_FORMAT "u bytes",
148             len);
149 }
150
151 protected void
152 file_badseek(struct magic_set *ms)
153 {
154         file_error(ms, errno, "error seeking");
155 }
156
157 protected void
158 file_badread(struct magic_set *ms)
159 {
160         file_error(ms, errno, "error reading");
161 }
162
163 #ifndef COMPILE_ONLY
164
165 static int
166 checkdone(struct magic_set *ms, int *rv)
167 {
168         if ((ms->flags & MAGIC_CONTINUE) == 0)
169                 return 1;
170         if (file_printf(ms, "\n- ") == -1)
171                 *rv = -1;
172         return 0;
173 }
174
175 /*ARGSUSED*/
176 protected int
177 file_buffer(struct magic_set *ms, int fd, const char *inname __attribute__ ((__unused__)),
178     const void *buf, size_t nb)
179 {
180         int m = 0, rv = 0, looks_text = 0;
181         const unsigned char *ubuf = CAST(const unsigned char *, buf);
182         unichar *u8buf = NULL;
183         size_t ulen;
184         const char *code = NULL;
185         const char *code_mime = "binary";
186         const char *type = "application/octet-stream";
187         const char *def = "data";
188         const char *ftype = NULL;
189
190         if (nb == 0) {
191                 def = "empty";
192                 type = "application/x-empty";
193                 goto simple;
194         } else if (nb == 1) {
195                 def = "very short file (no magic)";
196                 goto simple;
197         }
198
199         if ((ms->flags & MAGIC_NO_CHECK_ENCODING) == 0) {
200                 looks_text = file_encoding(ms, ubuf, nb, &u8buf, &ulen,
201                     &code, &code_mime, &ftype);
202         }
203
204 #ifdef __EMX__
205         if ((ms->flags & MAGIC_NO_CHECK_APPTYPE) == 0 && inname) {
206                 m = file_os2_apptype(ms, inname, buf, nb);
207                 if ((ms->flags & MAGIC_DEBUG) != 0)
208                         (void)fprintf(stderr, "[try os2_apptype %d]\n", m);
209                 switch (m) {
210                 case -1:
211                         return -1;
212                 case 0:
213                         break;
214                 default:
215                         return 1;
216                 }
217         }
218 #endif
219 #if HAVE_FORK
220         /* try compression stuff */
221         if ((ms->flags & MAGIC_NO_CHECK_COMPRESS) == 0) {
222                 m = file_zmagic(ms, fd, inname, ubuf, nb);
223                 if ((ms->flags & MAGIC_DEBUG) != 0)
224                         (void)fprintf(stderr, "[try zmagic %d]\n", m);
225                 if (m) {
226                         goto done_encoding;
227                 }
228         }
229 #endif
230         /* Check if we have a tar file */
231         if ((ms->flags & MAGIC_NO_CHECK_TAR) == 0) {
232                 m = file_is_tar(ms, ubuf, nb);
233                 if ((ms->flags & MAGIC_DEBUG) != 0)
234                         (void)fprintf(stderr, "[try tar %d]\n", m);
235                 if (m) {
236                         if (checkdone(ms, &rv))
237                                 goto done;
238                 }
239         }
240
241         /* Check if we have a CDF file */
242         if ((ms->flags & MAGIC_NO_CHECK_CDF) == 0) {
243                 m = file_trycdf(ms, fd, ubuf, nb);
244                 if ((ms->flags & MAGIC_DEBUG) != 0)
245                         (void)fprintf(stderr, "[try cdf %d]\n", m);
246                 if (m) {
247                         if (checkdone(ms, &rv))
248                                 goto done;
249                 }
250         }
251
252         /* try soft magic tests */
253         if ((ms->flags & MAGIC_NO_CHECK_SOFT) == 0)
254                 m = file_softmagic(ms, ubuf, nb, NULL, NULL, BINTEST,
255                     looks_text);
256                 if ((ms->flags & MAGIC_DEBUG) != 0)
257                         (void)fprintf(stderr, "[try softmagic %d]\n", m);
258                 if (m) {
259 #ifdef BUILTIN_ELF
260                         if ((ms->flags & MAGIC_NO_CHECK_ELF) == 0 && m == 1 &&
261                             nb > 5 && fd != -1) {
262                                 /*
263                                  * We matched something in the file, so this
264                                  * *might* be an ELF file, and the file is at
265                                  * least 5 bytes long, so if it's an ELF file
266                                  * it has at least one byte past the ELF magic
267                                  * number - try extracting information from the
268                                  * ELF headers that cannot easily * be
269                                  * extracted with rules in the magic file.
270                                  */
271                                 m = file_tryelf(ms, fd, ubuf, nb);
272                                 if ((ms->flags & MAGIC_DEBUG) != 0)
273                                         (void)fprintf(stderr, "[try elf %d]\n",
274                                             m);
275                         }
276 #endif
277                         if (checkdone(ms, &rv))
278                                 goto done;
279                 }
280
281         /* try text properties */
282         if ((ms->flags & MAGIC_NO_CHECK_TEXT) == 0) {
283
284                 m = file_ascmagic(ms, ubuf, nb, looks_text);
285                 if ((ms->flags & MAGIC_DEBUG) != 0)
286                         (void)fprintf(stderr, "[try ascmagic %d]\n", m);
287                 if (m) {
288                         if (checkdone(ms, &rv))
289                                 goto done;
290                 }
291         }
292
293 simple:
294         /* give up */
295         m = 1;
296         if (ms->flags & MAGIC_MIME) {
297                 if ((ms->flags & MAGIC_MIME_TYPE) &&
298                     file_printf(ms, "%s", type) == -1)
299                         rv = -1;
300         } else if (ms->flags & MAGIC_APPLE) {
301                 if (file_printf(ms, "UNKNUNKN") == -1)
302                         rv = -1;
303         } else if (ms->flags & MAGIC_EXTENSION) {
304                 if (file_printf(ms, "???") == -1)
305                         rv = -1;
306         } else {
307                 if (file_printf(ms, "%s", def) == -1)
308                         rv = -1;
309         }
310  done:
311         if ((ms->flags & MAGIC_MIME_ENCODING) != 0) {
312                 if (ms->flags & MAGIC_MIME_TYPE)
313                         if (file_printf(ms, "; charset=") == -1)
314                                 rv = -1;
315                 if (file_printf(ms, "%s", code_mime) == -1)
316                         rv = -1;
317         }
318 #if HAVE_FORK
319  done_encoding:
320 #endif
321         free(u8buf);
322         if (rv)
323                 return rv;
324
325         return m;
326 }
327 #endif
328
329 protected int
330 file_reset(struct magic_set *ms)
331 {
332         if (ms->mlist[0] == NULL) {
333                 file_error(ms, 0, "no magic files loaded");
334                 return -1;
335         }
336         if (ms->o.buf) {
337                 free(ms->o.buf);
338                 ms->o.buf = NULL;
339         }
340         if (ms->o.pbuf) {
341                 free(ms->o.pbuf);
342                 ms->o.pbuf = NULL;
343         }
344         ms->event_flags &= ~EVENT_HAD_ERR;
345         ms->error = -1;
346         return 0;
347 }
348
349 #define OCTALIFY(n, o)  \
350         /*LINTED*/ \
351         (void)(*(n)++ = '\\', \
352         *(n)++ = (((uint32_t)*(o) >> 6) & 3) + '0', \
353         *(n)++ = (((uint32_t)*(o) >> 3) & 7) + '0', \
354         *(n)++ = (((uint32_t)*(o) >> 0) & 7) + '0', \
355         (o)++)
356
357 protected const char *
358 file_getbuffer(struct magic_set *ms)
359 {
360         char *pbuf, *op, *np;
361         size_t psize, len;
362
363         if (ms->event_flags & EVENT_HAD_ERR)
364                 return NULL;
365
366         if (ms->flags & MAGIC_RAW)
367                 return ms->o.buf;
368
369         if (ms->o.buf == NULL)
370                 return NULL;
371
372         /* * 4 is for octal representation, + 1 is for NUL */
373         len = strlen(ms->o.buf);
374         if (len > (SIZE_MAX - 1) / 4) {
375                 file_oomem(ms, len);
376                 return NULL;
377         }
378         psize = len * 4 + 1;
379         if ((pbuf = CAST(char *, realloc(ms->o.pbuf, psize))) == NULL) {
380                 file_oomem(ms, psize);
381                 return NULL;
382         }
383         ms->o.pbuf = pbuf;
384
385 #if defined(HAVE_WCHAR_H) && defined(HAVE_MBRTOWC) && defined(HAVE_WCWIDTH)
386         {
387                 mbstate_t state;
388                 wchar_t nextchar;
389                 int mb_conv = 1;
390                 size_t bytesconsumed;
391                 char *eop;
392                 (void)memset(&state, 0, sizeof(mbstate_t));
393
394                 np = ms->o.pbuf;
395                 op = ms->o.buf;
396                 eop = op + len;
397
398                 while (op < eop) {
399                         bytesconsumed = mbrtowc(&nextchar, op,
400                             (size_t)(eop - op), &state);
401                         if (bytesconsumed == (size_t)(-1) ||
402                             bytesconsumed == (size_t)(-2)) {
403                                 mb_conv = 0;
404                                 break;
405                         }
406
407                         if (iswprint(nextchar)) {
408                                 (void)memcpy(np, op, bytesconsumed);
409                                 op += bytesconsumed;
410                                 np += bytesconsumed;
411                         } else {
412                                 while (bytesconsumed-- > 0)
413                                         OCTALIFY(np, op);
414                         }
415                 }
416                 *np = '\0';
417
418                 /* Parsing succeeded as a multi-byte sequence */
419                 if (mb_conv != 0)
420                         return ms->o.pbuf;
421         }
422 #endif
423
424         for (np = ms->o.pbuf, op = ms->o.buf; *op;) {
425                 if (isprint((unsigned char)*op)) {
426                         *np++ = *op++;
427                 } else {
428                         OCTALIFY(np, op);
429                 }
430         }
431         *np = '\0';
432         return ms->o.pbuf;
433 }
434
435 protected int
436 file_check_mem(struct magic_set *ms, unsigned int level)
437 {
438         size_t len;
439
440         if (level >= ms->c.len) {
441                 len = (ms->c.len = 20 + level) * sizeof(*ms->c.li);
442                 ms->c.li = CAST(struct level_info *, (ms->c.li == NULL) ?
443                     malloc(len) :
444                     realloc(ms->c.li, len));
445                 if (ms->c.li == NULL) {
446                         file_oomem(ms, len);
447                         return -1;
448                 }
449         }
450         ms->c.li[level].got_match = 0;
451 #ifdef ENABLE_CONDITIONALS
452         ms->c.li[level].last_match = 0;
453         ms->c.li[level].last_cond = COND_NONE;
454 #endif /* ENABLE_CONDITIONALS */
455         return 0;
456 }
457
458 protected size_t
459 file_printedlen(const struct magic_set *ms)
460 {
461         return ms->o.buf == NULL ? 0 : strlen(ms->o.buf);
462 }
463
464 protected int
465 file_replace(struct magic_set *ms, const char *pat, const char *rep)
466 {
467         file_regex_t rx;
468         int rc, rv = -1;
469
470         rc = file_regcomp(&rx, pat, REG_EXTENDED);
471         if (rc) {
472                 file_regerror(&rx, rc, ms);
473         } else {
474                 regmatch_t rm;
475                 int nm = 0;
476                 while (file_regexec(&rx, ms->o.buf, 1, &rm, 0) == 0) {
477                         ms->o.buf[rm.rm_so] = '\0';
478                         if (file_printf(ms, "%s%s", rep,
479                             rm.rm_eo != 0 ? ms->o.buf + rm.rm_eo : "") == -1)
480                                 goto out;
481                         nm++;
482                 }
483                 rv = nm;
484         }
485 out:
486         file_regfree(&rx);
487         return rv;
488 }
489
490 protected int
491 file_regcomp(file_regex_t *rx, const char *pat, int flags)
492 {
493 #ifdef USE_C_LOCALE
494         rx->c_lc_ctype = newlocale(LC_CTYPE_MASK, "C", 0);
495         assert(rx->c_lc_ctype != NULL);
496         rx->old_lc_ctype = uselocale(rx->c_lc_ctype);
497         assert(rx->old_lc_ctype != NULL);
498 #else
499         rx->old_lc_ctype = setlocale(LC_CTYPE, "C");
500 #endif
501         rx->pat = pat;
502
503         return rx->rc = regcomp(&rx->rx, pat, flags);
504 }
505
506 protected int
507 file_regexec(file_regex_t *rx, const char *str, size_t nmatch,
508     regmatch_t* pmatch, int eflags)
509 {
510         assert(rx->rc == 0);
511         return regexec(&rx->rx, str, nmatch, pmatch, eflags);
512 }
513
514 protected void
515 file_regfree(file_regex_t *rx)
516 {
517         if (rx->rc == 0)
518                 regfree(&rx->rx);
519 #ifdef USE_C_LOCALE
520         (void)uselocale(rx->old_lc_ctype);
521         freelocale(rx->c_lc_ctype);
522 #else
523         (void)setlocale(LC_CTYPE, rx->old_lc_ctype);
524 #endif
525 }
526
527 protected void
528 file_regerror(file_regex_t *rx, int rc, struct magic_set *ms)
529 {
530         char errmsg[512];
531
532         (void)regerror(rc, &rx->rx, errmsg, sizeof(errmsg));
533         file_magerror(ms, "regex error %d for `%s', (%s)", rc, rx->pat,
534             errmsg);
535 }
536
537 protected file_pushbuf_t *
538 file_push_buffer(struct magic_set *ms)
539 {
540         file_pushbuf_t *pb;
541
542         if (ms->event_flags & EVENT_HAD_ERR)
543                 return NULL;
544
545         if ((pb = (CAST(file_pushbuf_t *, malloc(sizeof(*pb))))) == NULL)
546                 return NULL;
547
548         pb->buf = ms->o.buf;
549         pb->offset = ms->offset;
550
551         ms->o.buf = NULL;
552         ms->offset = 0;
553
554         return pb;
555 }
556
557 protected char *
558 file_pop_buffer(struct magic_set *ms, file_pushbuf_t *pb)
559 {
560         char *rbuf;
561
562         if (ms->event_flags & EVENT_HAD_ERR) {
563                 free(pb->buf);
564                 free(pb);
565                 return NULL;
566         }
567
568         rbuf = ms->o.buf;
569
570         ms->o.buf = pb->buf;
571         ms->offset = pb->offset;
572
573         free(pb);
574         return rbuf;
575 }
576
577 /*
578  * convert string to ascii printable format.
579  */
580 protected char *
581 file_printable(char *buf, size_t bufsiz, const char *str)
582 {
583         char *ptr, *eptr;
584         const unsigned char *s = (const unsigned char *)str;
585
586         for (ptr = buf, eptr = ptr + bufsiz - 1; ptr < eptr && *s; s++) {
587                 if (isprint(*s)) {
588                         *ptr++ = *s;
589                         continue;
590                 }
591                 if (ptr >= eptr - 3)
592                         break;
593                 *ptr++ = '\\';
594                 *ptr++ = ((CAST(unsigned int, *s) >> 6) & 7) + '0';
595                 *ptr++ = ((CAST(unsigned int, *s) >> 3) & 7) + '0';
596                 *ptr++ = ((CAST(unsigned int, *s) >> 0) & 7) + '0';
597         }
598         *ptr = '\0';
599         return buf;
600 }