2012-04-22 19:38:14 +08:00
|
|
|
diff -u libmagic.orig/apprentice.c libmagic/apprentice.c
|
2014-02-19 18:20:24 +08:00
|
|
|
--- libmagic.orig/apprentice.c Tue Nov 19 22:01:12 2013
|
|
|
|
+++ libmagic/apprentice.c Wed Feb 19 10:56:29 2014
|
2010-02-01 06:54:00 +08:00
|
|
|
@@ -29,6 +29,8 @@
|
|
|
|
* apprentice - make one pass through /etc/magic, learning its secrets.
|
|
|
|
*/
|
|
|
|
|
|
|
|
+#include "php.h"
|
|
|
|
+
|
|
|
|
#include "file.h"
|
|
|
|
|
|
|
|
#ifndef lint
|
2013-04-08 04:15:56 +08:00
|
|
|
@@ -36,18 +38,30 @@
|
2012-03-27 19:34:46 +08:00
|
|
|
#endif /* lint */
|
|
|
|
|
2010-02-01 06:54:00 +08:00
|
|
|
#include "magic.h"
|
2012-03-27 19:34:46 +08:00
|
|
|
+#include "patchlevel.h"
|
2010-02-01 06:54:00 +08:00
|
|
|
#include <stdlib.h>
|
|
|
|
-#ifdef HAVE_UNISTD_H
|
|
|
|
+
|
2011-10-19 23:08:50 +08:00
|
|
|
+#if defined(__hpux) && !defined(HAVE_STRTOULL)
|
|
|
|
+#if SIZEOF_LONG == 8
|
|
|
|
+# define strtoull strtoul
|
|
|
|
+#else
|
|
|
|
+# define strtoull __strtoull
|
|
|
|
+#endif
|
|
|
|
+#endif
|
|
|
|
+
|
2010-02-01 06:54:00 +08:00
|
|
|
+#ifdef PHP_WIN32
|
|
|
|
+#include "win32/unistd.h"
|
|
|
|
+#if _MSC_VER <= 1300
|
|
|
|
+# include "win32/php_strtoi64.h"
|
2008-07-25 16:18:35 +08:00
|
|
|
+#endif
|
2010-02-01 06:54:00 +08:00
|
|
|
+#define strtoull _strtoui64
|
|
|
|
+#else
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
|
|
|
#include <string.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
-#ifdef QUICK
|
|
|
|
-#include <sys/mman.h>
|
|
|
|
-#endif
|
2012-10-16 17:03:32 +08:00
|
|
|
-#include <dirent.h>
|
2010-02-01 06:54:00 +08:00
|
|
|
|
|
|
|
#define EATAB {while (isascii((unsigned char) *l) && \
|
|
|
|
isspace((unsigned char) *l)) ++l;}
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -148,38 +162,7 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
{ NULL, 0, NULL }
|
|
|
|
};
|
|
|
|
|
|
|
|
-#ifdef COMPILE_ONLY
|
|
|
|
-
|
|
|
|
-int main(int, char *[]);
|
|
|
|
-
|
|
|
|
-int
|
|
|
|
-main(int argc, char *argv[])
|
|
|
|
-{
|
|
|
|
- int ret;
|
|
|
|
- struct magic_set *ms;
|
|
|
|
- char *progname;
|
|
|
|
-
|
|
|
|
- if ((progname = strrchr(argv[0], '/')) != NULL)
|
|
|
|
- progname++;
|
|
|
|
- else
|
|
|
|
- progname = argv[0];
|
|
|
|
-
|
|
|
|
- if (argc != 2) {
|
|
|
|
- (void)fprintf(stderr, "Usage: %s file\n", progname);
|
|
|
|
- return 1;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- if ((ms = magic_open(MAGIC_CHECK)) == NULL) {
|
|
|
|
- (void)fprintf(stderr, "%s: %s\n", progname, strerror(errno));
|
|
|
|
- return 1;
|
|
|
|
- }
|
|
|
|
- ret = magic_compile(ms, argv[1]) == -1 ? 1 : 0;
|
|
|
|
- if (ret == 1)
|
|
|
|
- (void)fprintf(stderr, "%s: %s\n", progname, magic_error(ms));
|
|
|
|
- magic_close(ms);
|
|
|
|
- return ret;
|
|
|
|
-}
|
|
|
|
-#endif /* COMPILE_ONLY */
|
|
|
|
+#include "../data_file.c"
|
|
|
|
|
2013-04-08 04:15:56 +08:00
|
|
|
struct type_tbl_s {
|
2008-07-25 16:18:35 +08:00
|
|
|
const char name[16];
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -261,6 +244,10 @@
|
2013-04-08 04:15:56 +08:00
|
|
|
# undef XX
|
2010-02-01 06:54:00 +08:00
|
|
|
# undef XX_NULL
|
|
|
|
|
|
|
|
+#ifndef S_ISDIR
|
|
|
|
+#define S_ISDIR(mode) ((mode) & _S_IFDIR)
|
|
|
|
+#endif
|
|
|
|
+
|
|
|
|
private int
|
2013-04-08 04:15:56 +08:00
|
|
|
get_type(const struct type_tbl_s *tbl, const char *l, const char **t)
|
2010-02-01 06:54:00 +08:00
|
|
|
{
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -384,7 +371,7 @@
|
2013-04-08 04:15:56 +08:00
|
|
|
{
|
|
|
|
struct mlist *ml;
|
|
|
|
|
|
|
|
- if ((ml = CAST(struct mlist *, malloc(sizeof(*ml)))) == NULL)
|
|
|
|
+ if ((ml = CAST(struct mlist *, emalloc(sizeof(*ml)))) == NULL)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
ml->map = idx == 0 ? map : NULL;
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -422,12 +409,13 @@
|
2013-04-08 04:15:56 +08:00
|
|
|
return apprentice_compile(ms, map, fn);
|
2010-02-01 06:54:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
-#ifndef COMPILE_ONLY
|
2013-04-08 04:15:56 +08:00
|
|
|
map = apprentice_map(ms, fn);
|
|
|
|
if (map == NULL) {
|
2010-02-01 06:54:00 +08:00
|
|
|
- if (ms->flags & MAGIC_CHECK)
|
|
|
|
- file_magwarn(ms, "using regular magic file `%s'", fn);
|
2013-04-08 04:15:56 +08:00
|
|
|
- map = apprentice_load(ms, fn, action);
|
2010-02-01 06:54:00 +08:00
|
|
|
+ if (fn) {
|
|
|
|
+ if (ms->flags & MAGIC_CHECK)
|
|
|
|
+ file_magwarn(ms, "using regular magic file `%s'", fn);
|
2013-04-08 04:15:56 +08:00
|
|
|
+ map = apprentice_load(ms, fn, action);
|
2010-02-01 06:54:00 +08:00
|
|
|
+ }
|
2013-04-08 04:15:56 +08:00
|
|
|
if (map == NULL)
|
2010-02-01 06:54:00 +08:00
|
|
|
return -1;
|
|
|
|
}
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -450,7 +438,6 @@
|
2012-03-27 19:34:46 +08:00
|
|
|
}
|
|
|
|
|
2010-02-01 06:54:00 +08:00
|
|
|
return 0;
|
|
|
|
-#endif /* COMPILE_ONLY */
|
|
|
|
}
|
|
|
|
|
|
|
|
protected void
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -461,10 +448,16 @@
|
2008-07-25 16:18:35 +08:00
|
|
|
return;
|
2013-04-08 04:15:56 +08:00
|
|
|
for (i = 0; i < MAGIC_SETS; i++)
|
|
|
|
mlist_free(ms->mlist[i]);
|
|
|
|
- free(ms->o.pbuf);
|
|
|
|
- free(ms->o.buf);
|
|
|
|
- free(ms->c.li);
|
|
|
|
- free(ms);
|
|
|
|
+ if (ms->o.pbuf) {
|
|
|
|
+ efree(ms->o.pbuf);
|
|
|
|
+ }
|
|
|
|
+ if (ms->o.buf) {
|
|
|
|
+ efree(ms->o.buf);
|
|
|
|
+ }
|
|
|
|
+ if (ms->c.li) {
|
|
|
|
+ efree(ms->c.li);
|
|
|
|
+ }
|
|
|
|
+ efree(ms);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected struct magic_set *
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -473,7 +466,7 @@
|
2013-04-08 04:15:56 +08:00
|
|
|
struct magic_set *ms;
|
|
|
|
size_t i, len;
|
|
|
|
|
|
|
|
- if ((ms = CAST(struct magic_set *, calloc((size_t)1,
|
|
|
|
+ if ((ms = CAST(struct magic_set *, ecalloc((size_t)1,
|
|
|
|
sizeof(struct magic_set)))) == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -485,7 +478,7 @@
|
2013-04-08 04:15:56 +08:00
|
|
|
ms->o.buf = ms->o.pbuf = NULL;
|
|
|
|
len = (ms->c.len = 10) * sizeof(*ms->c.li);
|
|
|
|
|
|
|
|
- if ((ms->c.li = CAST(struct level_info *, malloc(len))) == NULL)
|
|
|
|
+ if ((ms->c.li = CAST(struct level_info *, emalloc(len))) == NULL)
|
|
|
|
goto free;
|
|
|
|
|
|
|
|
ms->event_flags = 0;
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -496,7 +489,7 @@
|
2013-04-08 04:15:56 +08:00
|
|
|
ms->line = 0;
|
|
|
|
return ms;
|
|
|
|
free:
|
|
|
|
- free(ms);
|
|
|
|
+ efree(ms);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -505,22 +498,24 @@
|
2013-04-08 04:15:56 +08:00
|
|
|
{
|
|
|
|
if (map == NULL)
|
|
|
|
return;
|
|
|
|
- if (map->p == NULL)
|
|
|
|
- return;
|
2010-02-01 06:54:00 +08:00
|
|
|
-#ifdef QUICK
|
2013-04-08 04:15:56 +08:00
|
|
|
- if (map->len)
|
|
|
|
- (void)munmap(map->p, map->len);
|
|
|
|
- else
|
2010-02-01 06:54:00 +08:00
|
|
|
-#endif
|
2013-04-08 04:15:56 +08:00
|
|
|
- free(map->p);
|
|
|
|
- free(map);
|
2013-04-08 22:23:43 +08:00
|
|
|
+ if (map->p != php_magic_database) {
|
|
|
|
+ int j;
|
|
|
|
+ for (j = 0; j < MAGIC_SETS; j++) {
|
|
|
|
+ if (map->magic[j])
|
|
|
|
+ efree(map->magic[j]);
|
|
|
|
+ }
|
|
|
|
+ if (map->p != NULL) {
|
|
|
|
+ efree(map->p);
|
|
|
|
+ }
|
2013-04-08 04:15:56 +08:00
|
|
|
+ }
|
|
|
|
+ efree(map);
|
|
|
|
}
|
|
|
|
|
|
|
|
private struct mlist *
|
|
|
|
mlist_alloc(void)
|
|
|
|
{
|
|
|
|
struct mlist *mlist;
|
|
|
|
- if ((mlist = CAST(struct mlist *, calloc(1, sizeof(*mlist)))) == NULL) {
|
|
|
|
+ if ((mlist = CAST(struct mlist *, ecalloc(1, sizeof(*mlist)))) == NULL) {
|
|
|
|
return NULL;
|
2010-02-01 06:54:00 +08:00
|
|
|
}
|
2013-04-08 04:15:56 +08:00
|
|
|
mlist->next = mlist->prev = mlist;
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -539,10 +534,10 @@
|
2013-04-08 04:15:56 +08:00
|
|
|
struct mlist *next = ml->next;
|
|
|
|
if (ml->map)
|
|
|
|
apprentice_unmap(ml->map);
|
|
|
|
- free(ml);
|
|
|
|
+ efree(ml);
|
|
|
|
ml = next;
|
|
|
|
}
|
|
|
|
- free(ml);
|
|
|
|
+ efree(ml);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* const char *fn: list of magic files and directories */
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -555,12 +550,28 @@
|
|
|
|
|
|
|
|
file_reset(ms);
|
|
|
|
|
2012-03-27 19:34:46 +08:00
|
|
|
+/* XXX disabling default magic loading so the compiled in data is used */
|
|
|
|
+#if 0
|
|
|
|
if ((fn = magic_getpath(fn, action)) == NULL)
|
2013-04-08 04:15:56 +08:00
|
|
|
return -1;
|
2012-03-27 19:34:46 +08:00
|
|
|
+#endif
|
|
|
|
|
|
|
|
init_file_tables();
|
|
|
|
|
2010-02-01 06:54:00 +08:00
|
|
|
- if ((mfn = strdup(fn)) == NULL) {
|
2012-03-27 19:34:46 +08:00
|
|
|
+ if (fn == NULL)
|
|
|
|
+ fn = getenv("MAGIC");
|
2008-07-25 16:18:35 +08:00
|
|
|
+ if (fn == NULL) {
|
2013-04-08 04:15:56 +08:00
|
|
|
+ for (i = 0; i < MAGIC_SETS; i++) {
|
|
|
|
+ mlist_free(ms->mlist[i]);
|
|
|
|
+ if ((ms->mlist[i] = mlist_alloc()) == NULL) {
|
|
|
|
+ file_oomem(ms, sizeof(*ms->mlist[i]));
|
|
|
|
+ return -1;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ return apprentice_1(ms, fn, action);
|
|
|
|
+ }
|
2010-02-01 06:54:00 +08:00
|
|
|
+
|
2013-04-08 04:15:56 +08:00
|
|
|
+ if ((mfn = estrdup(fn)) == NULL) {
|
|
|
|
file_oomem(ms, strlen(fn));
|
|
|
|
return -1;
|
2010-02-01 06:54:00 +08:00
|
|
|
}
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -575,7 +586,7 @@
|
2013-04-08 04:15:56 +08:00
|
|
|
mlist_free(ms->mlist[i]);
|
|
|
|
while (i != 0);
|
|
|
|
}
|
|
|
|
- free(mfn);
|
|
|
|
+ efree(mfn);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -592,7 +603,7 @@
|
2013-04-08 04:15:56 +08:00
|
|
|
fn = p;
|
2010-02-01 06:54:00 +08:00
|
|
|
}
|
2013-04-08 04:15:56 +08:00
|
|
|
|
2010-02-01 06:54:00 +08:00
|
|
|
- free(mfn);
|
|
|
|
+ efree(mfn);
|
|
|
|
|
2013-04-08 04:15:56 +08:00
|
|
|
if (errs == -1) {
|
|
|
|
for (i = 0; i < MAGIC_SETS; i++) {
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -918,7 +929,7 @@
|
2013-04-08 04:15:56 +08:00
|
|
|
|
2014-02-19 18:20:24 +08:00
|
|
|
mset[i].max += ALLOC_INCR;
|
2013-04-08 04:15:56 +08:00
|
|
|
if ((mp = CAST(struct magic_entry *,
|
2014-02-19 18:20:24 +08:00
|
|
|
- realloc(mset[i].me, sizeof(*mp) * mset[i].max))) ==
|
|
|
|
+ erealloc(mset[i].me, sizeof(*mp) * mset[i].max))) ==
|
2013-04-08 04:15:56 +08:00
|
|
|
NULL) {
|
2014-02-19 18:20:24 +08:00
|
|
|
file_oomem(ms, sizeof(*mp) * mset[i].max);
|
2013-04-08 04:15:56 +08:00
|
|
|
return -1;
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -939,13 +950,20 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
load_1(struct magic_set *ms, int action, const char *fn, int *errs,
|
2014-02-19 18:20:24 +08:00
|
|
|
struct magic_entry_set *mset)
|
2010-02-01 06:54:00 +08:00
|
|
|
{
|
2012-03-27 19:34:46 +08:00
|
|
|
- size_t lineno = 0, llen = 0;
|
2010-02-01 06:54:00 +08:00
|
|
|
+ char buffer[BUFSIZ + 1];
|
2012-03-27 19:34:46 +08:00
|
|
|
char *line = NULL;
|
|
|
|
- ssize_t len;
|
|
|
|
+ size_t len;
|
|
|
|
+ size_t lineno = 0;
|
2013-04-08 04:15:56 +08:00
|
|
|
struct magic_entry me;
|
2012-07-15 18:25:58 +08:00
|
|
|
|
|
|
|
- FILE *f = fopen(ms->file = fn, "r");
|
|
|
|
- if (f == NULL) {
|
2013-04-08 04:15:56 +08:00
|
|
|
+ php_stream *stream;
|
|
|
|
+
|
|
|
|
+ TSRMLS_FETCH();
|
|
|
|
+
|
|
|
|
+ ms->file = fn;
|
2010-02-01 06:54:00 +08:00
|
|
|
+ stream = php_stream_open_wrapper((char *)fn, "rb", REPORT_ERRORS, NULL);
|
2012-07-15 18:25:58 +08:00
|
|
|
+
|
2010-02-01 06:54:00 +08:00
|
|
|
+ if (stream == NULL) {
|
|
|
|
if (errno != ENOENT)
|
|
|
|
file_error(ms, errno, "cannot read magic file `%s'",
|
|
|
|
fn);
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -955,8 +973,7 @@
|
2012-03-27 19:34:46 +08:00
|
|
|
|
2013-04-08 04:15:56 +08:00
|
|
|
memset(&me, 0, sizeof(me));
|
|
|
|
/* read and parse this file */
|
2012-03-27 19:34:46 +08:00
|
|
|
- for (ms->line = 1; (len = getline(&line, &llen, f)) != -1;
|
|
|
|
- ms->line++) {
|
|
|
|
+ for (ms->line = 1; (line = php_stream_get_line(stream, buffer , BUFSIZ, &len)) != NULL; ms->line++) {
|
|
|
|
if (len == 0) /* null line, garbage, etc */
|
|
|
|
continue;
|
|
|
|
if (line[len - 1] == '\n') {
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -1014,8 +1031,7 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
}
|
2013-04-08 04:15:56 +08:00
|
|
|
if (me.mp)
|
2014-02-19 18:20:24 +08:00
|
|
|
(void)addentry(ms, &me, mset);
|
2012-03-27 19:34:46 +08:00
|
|
|
- free(line);
|
|
|
|
- (void)fclose(f);
|
|
|
|
+ php_stream_close(stream);
|
2010-02-01 06:54:00 +08:00
|
|
|
}
|
|
|
|
|
2012-03-27 19:34:46 +08:00
|
|
|
/*
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -1094,7 +1110,7 @@
|
2013-04-08 04:15:56 +08:00
|
|
|
mentrycount += me[i].cont_count;
|
|
|
|
|
|
|
|
slen = sizeof(**ma) * mentrycount;
|
|
|
|
- if ((*ma = CAST(struct magic *, malloc(slen))) == NULL) {
|
|
|
|
+ if ((*ma = CAST(struct magic *, emalloc(slen))) == NULL) {
|
|
|
|
file_oomem(ms, slen);
|
|
|
|
return -1;
|
|
|
|
}
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -1116,8 +1132,8 @@
|
2013-04-08 04:15:56 +08:00
|
|
|
if (me == NULL)
|
|
|
|
return;
|
|
|
|
for (i = 0; i < nme; i++)
|
|
|
|
- free(me[i].mp);
|
|
|
|
- free(me);
|
|
|
|
+ efree(me[i].mp);
|
|
|
|
+ efree(me);
|
|
|
|
}
|
|
|
|
|
|
|
|
private struct magic_map *
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -1126,18 +1142,20 @@
|
|
|
|
int errs = 0;
|
2013-04-08 04:15:56 +08:00
|
|
|
uint32_t i, j;
|
2013-04-27 20:09:29 +08:00
|
|
|
size_t files = 0, maxfiles = 0;
|
|
|
|
- char **filearr = NULL, *mfn;
|
|
|
|
+ char **filearr = NULL;
|
2010-02-01 06:54:00 +08:00
|
|
|
struct stat st;
|
2013-04-08 04:15:56 +08:00
|
|
|
struct magic_map *map;
|
2014-02-19 18:20:24 +08:00
|
|
|
struct magic_entry_set mset[MAGIC_SETS];
|
2012-10-16 17:03:32 +08:00
|
|
|
- DIR *dir;
|
|
|
|
- struct dirent *d;
|
|
|
|
+ php_stream *dir;
|
|
|
|
+ php_stream_dirent d;
|
2014-02-19 18:20:24 +08:00
|
|
|
+
|
2012-10-16 17:03:32 +08:00
|
|
|
+ TSRMLS_FETCH();
|
2010-02-01 06:54:00 +08:00
|
|
|
|
2014-02-19 18:20:24 +08:00
|
|
|
memset(mset, 0, sizeof(mset));
|
2010-02-01 06:54:00 +08:00
|
|
|
ms->flags |= MAGIC_CHECK; /* Enable checks for parsed files */
|
|
|
|
|
2014-02-19 18:20:24 +08:00
|
|
|
|
|
|
|
- if ((map = CAST(struct magic_map *, calloc(1, sizeof(*map)))) == NULL)
|
|
|
|
+ if ((map = CAST(struct magic_map *, ecalloc(1, sizeof(*map)))) == NULL)
|
|
|
|
{
|
2013-04-08 04:15:56 +08:00
|
|
|
file_oomem(ms, sizeof(*map));
|
|
|
|
return NULL;
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -1148,22 +1166,26 @@
|
2012-03-27 19:34:46 +08:00
|
|
|
(void)fprintf(stderr, "%s\n", usg_hdr);
|
|
|
|
|
2010-02-01 06:54:00 +08:00
|
|
|
/* load directory or file */
|
|
|
|
- if (stat(fn, &st) == 0 && S_ISDIR(st.st_mode)) {
|
2012-10-16 17:03:32 +08:00
|
|
|
- dir = opendir(fn);
|
2013-04-08 22:23:43 +08:00
|
|
|
+ /* FIXME: Read file names and sort them to prevent
|
|
|
|
+ non-determinism. See Debian bug #488562. */
|
2010-02-01 06:54:00 +08:00
|
|
|
+ if (php_sys_stat(fn, &st) == 0 && S_ISDIR(st.st_mode)) {
|
2012-10-16 17:03:32 +08:00
|
|
|
+ int mflen;
|
|
|
|
+ char mfn[MAXPATHLEN];
|
|
|
|
+
|
2013-04-27 20:09:29 +08:00
|
|
|
+ dir = php_stream_opendir((char *)fn, REPORT_ERRORS, NULL);
|
2012-03-27 19:34:46 +08:00
|
|
|
if (!dir) {
|
|
|
|
errs++;
|
|
|
|
goto out;
|
|
|
|
}
|
2012-10-16 17:03:32 +08:00
|
|
|
- while ((d = readdir(dir)) != NULL) {
|
2012-03-27 19:34:46 +08:00
|
|
|
- if (asprintf(&mfn, "%s/%s", fn, d->d_name) < 0) {
|
2012-10-16 17:03:32 +08:00
|
|
|
+ while (php_stream_readdir(dir, &d)) {
|
|
|
|
+ if ((mflen = snprintf(mfn, sizeof(mfn), "%s/%s", fn, d.d_name)) < 0) {
|
2012-03-27 19:34:46 +08:00
|
|
|
file_oomem(ms,
|
2012-10-16 17:03:32 +08:00
|
|
|
- strlen(fn) + strlen(d->d_name) + 2);
|
|
|
|
+ strlen(fn) + strlen(d.d_name) + 2);
|
2012-03-27 19:34:46 +08:00
|
|
|
errs++;
|
2012-10-16 17:03:32 +08:00
|
|
|
- closedir(dir);
|
|
|
|
+ php_stream_closedir(dir);
|
2012-03-27 19:34:46 +08:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
if (stat(mfn, &st) == -1 || !S_ISREG(st.st_mode)) {
|
|
|
|
- free(mfn);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (files >= maxfiles) {
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -1171,23 +1193,23 @@
|
2013-04-08 04:15:56 +08:00
|
|
|
maxfiles = (maxfiles + 1) * 2;
|
|
|
|
mlen = maxfiles * sizeof(*filearr);
|
2012-03-27 19:34:46 +08:00
|
|
|
if ((filearr = CAST(char **,
|
2013-04-08 04:15:56 +08:00
|
|
|
- realloc(filearr, mlen))) == NULL) {
|
|
|
|
+ erealloc(filearr, mlen))) == NULL) {
|
2012-03-27 19:34:46 +08:00
|
|
|
file_oomem(ms, mlen);
|
|
|
|
- free(mfn);
|
2012-10-16 17:03:32 +08:00
|
|
|
- closedir(dir);
|
2014-02-19 18:20:24 +08:00
|
|
|
+ efree(mfn);
|
2012-10-16 17:03:32 +08:00
|
|
|
+ php_stream_closedir(dir);
|
2012-03-27 19:34:46 +08:00
|
|
|
errs++;
|
|
|
|
goto out;
|
2012-07-15 18:25:58 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
- filearr[files++] = mfn;
|
2012-09-11 11:43:47 +08:00
|
|
|
+ filearr[files++] = estrndup(mfn, (mflen > sizeof(mfn) - 1)? sizeof(mfn) - 1: mflen);
|
2012-07-15 18:25:58 +08:00
|
|
|
}
|
2012-10-16 17:03:32 +08:00
|
|
|
- closedir(dir);
|
|
|
|
+ php_stream_closedir(dir);
|
2012-07-15 18:25:58 +08:00
|
|
|
qsort(filearr, files, sizeof(*filearr), cmpstrp);
|
|
|
|
for (i = 0; i < files; i++) {
|
2014-02-19 18:20:24 +08:00
|
|
|
load_1(ms, action, filearr[i], &errs, mset);
|
2012-07-15 18:25:58 +08:00
|
|
|
- free(filearr[i]);
|
|
|
|
+ efree(filearr[i]);
|
|
|
|
}
|
2013-04-08 04:15:56 +08:00
|
|
|
- free(filearr);
|
|
|
|
+ efree(filearr);
|
2012-07-15 18:25:58 +08:00
|
|
|
} else
|
2014-02-19 18:20:24 +08:00
|
|
|
load_1(ms, action, fn, &errs, mset);
|
2013-04-08 04:15:56 +08:00
|
|
|
if (errs)
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -1226,9 +1248,9 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
if (errs) {
|
2013-04-08 04:15:56 +08:00
|
|
|
for (j = 0; j < MAGIC_SETS; j++) {
|
|
|
|
if (map->magic[j])
|
|
|
|
- free(map->magic[j]);
|
|
|
|
+ efree(map->magic[j]);
|
2012-07-15 18:25:58 +08:00
|
|
|
}
|
2013-04-08 04:15:56 +08:00
|
|
|
- free(map);
|
|
|
|
+ efree(map);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return map;
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -1516,7 +1538,7 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
if (me->cont_count == me->max_count) {
|
|
|
|
struct magic *nm;
|
|
|
|
size_t cnt = me->max_count + ALLOC_CHUNK;
|
|
|
|
- if ((nm = CAST(struct magic *, realloc(me->mp,
|
2013-04-08 04:15:56 +08:00
|
|
|
+ if ((nm = CAST(struct magic *, erealloc(me->mp,
|
|
|
|
sizeof(*nm) * cnt))) == NULL) {
|
|
|
|
file_oomem(ms, sizeof(*nm) * cnt);
|
|
|
|
return -1;
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -1531,7 +1553,7 @@
|
2013-04-08 04:15:56 +08:00
|
|
|
static const size_t len = sizeof(*m) * ALLOC_CHUNK;
|
|
|
|
if (me->mp != NULL)
|
|
|
|
return 1;
|
|
|
|
- if ((m = CAST(struct magic *, malloc(len))) == NULL) {
|
|
|
|
+ if ((m = CAST(struct magic *, emalloc(len))) == NULL) {
|
|
|
|
file_oomem(ms, len);
|
|
|
|
return -1;
|
2010-02-01 06:54:00 +08:00
|
|
|
}
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -1704,7 +1726,7 @@
|
2013-04-08 04:15:56 +08:00
|
|
|
m->type = get_standard_integer_type(l, &l);
|
|
|
|
else if (*l == 's' && !isalpha((unsigned char)l[1])) {
|
|
|
|
m->type = FILE_STRING;
|
|
|
|
- ++l;
|
|
|
|
+ ++l;
|
|
|
|
}
|
2010-02-01 06:54:00 +08:00
|
|
|
}
|
2013-04-08 04:15:56 +08:00
|
|
|
}
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -1717,6 +1739,10 @@
|
2012-07-15 18:25:58 +08:00
|
|
|
if (m->type == FILE_INVALID) {
|
|
|
|
if (ms->flags & MAGIC_CHECK)
|
|
|
|
file_magwarn(ms, "type `%s' invalid", l);
|
2014-02-19 18:20:24 +08:00
|
|
|
+ /*if (me->mp) {
|
2012-07-15 18:25:58 +08:00
|
|
|
+ efree(me->mp);
|
|
|
|
+ me->mp = NULL;
|
2014-02-19 18:20:24 +08:00
|
|
|
+ }*/
|
2012-07-15 18:25:58 +08:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -1725,7 +1751,7 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
|
|
|
|
m->mask_op = 0;
|
|
|
|
if (*l == '~') {
|
|
|
|
- if (!IS_STRING(m->type))
|
|
|
|
+ if (!IS_LIBMAGIC_STRING(m->type))
|
|
|
|
m->mask_op |= FILE_OPINVERSE;
|
|
|
|
else if (ms->flags & MAGIC_CHECK)
|
|
|
|
file_magwarn(ms, "'~' invalid for string types");
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -1734,7 +1760,7 @@
|
2012-03-27 19:34:46 +08:00
|
|
|
m->str_range = 0;
|
|
|
|
m->str_flags = m->type == FILE_PSTRING ? PSTRING_1_LE : 0;
|
2010-02-01 06:54:00 +08:00
|
|
|
if ((op = get_op(*l)) != -1) {
|
|
|
|
- if (!IS_STRING(m->type)) {
|
|
|
|
+ if (!IS_LIBMAGIC_STRING(m->type)) {
|
|
|
|
uint64_t val;
|
|
|
|
++l;
|
|
|
|
m->mask_op |= op;
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -1925,11 +1951,6 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
if (check_format(ms, m) == -1)
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
-#ifndef COMPILE_ONLY
|
|
|
|
- if (action == FILE_CHECK) {
|
|
|
|
- file_mdump(m);
|
|
|
|
- }
|
|
|
|
-#endif
|
|
|
|
m->mimetype[0] = '\0'; /* initialise MIME type to none */
|
2013-04-08 04:15:56 +08:00
|
|
|
return 0;
|
|
|
|
}
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -2575,59 +2596,76 @@
|
2013-04-08 04:15:56 +08:00
|
|
|
private struct magic_map *
|
|
|
|
apprentice_map(struct magic_set *ms, const char *fn)
|
2010-02-01 06:54:00 +08:00
|
|
|
{
|
|
|
|
- int fd;
|
|
|
|
- struct stat st;
|
|
|
|
uint32_t *ptr;
|
2013-04-08 04:15:56 +08:00
|
|
|
uint32_t version, entries, nentries;
|
2008-07-25 16:18:35 +08:00
|
|
|
int needsbyteswap;
|
|
|
|
char *dbname = NULL;
|
2013-04-08 04:15:56 +08:00
|
|
|
struct magic_map *map;
|
|
|
|
size_t i;
|
2010-02-01 06:54:00 +08:00
|
|
|
+ php_stream *stream = NULL;
|
|
|
|
+ php_stream_statbuf st;
|
|
|
|
+
|
2014-02-19 18:20:24 +08:00
|
|
|
+
|
|
|
|
+ TSRMLS_FETCH();
|
2013-04-08 04:15:56 +08:00
|
|
|
|
|
|
|
- fd = -1;
|
|
|
|
- if ((map = CAST(struct magic_map *, calloc(1, sizeof(*map)))) == NULL) {
|
|
|
|
+ if ((map = CAST(struct magic_map *, ecalloc(1, sizeof(*map)))) == NULL) {
|
|
|
|
file_oomem(ms, sizeof(*map));
|
|
|
|
+ efree(map);
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
2008-07-25 16:18:35 +08:00
|
|
|
+ if (fn == NULL) {
|
2013-04-08 04:15:56 +08:00
|
|
|
+ map->p = (void *)&php_magic_database;
|
2008-07-25 16:18:35 +08:00
|
|
|
+ goto internal_loaded;
|
|
|
|
+ }
|
2012-10-16 17:03:32 +08:00
|
|
|
+
|
|
|
|
+#ifdef PHP_WIN32
|
|
|
|
+ /* Don't bother on windows with php_stream_open_wrapper,
|
|
|
|
+ return to give apprentice_load() a chance. */
|
2013-04-27 20:09:29 +08:00
|
|
|
+ if (php_stream_stat_path_ex((char *)fn, 0, &st, NULL) == SUCCESS) {
|
2012-10-16 17:03:32 +08:00
|
|
|
+ if (st.sb.st_mode & S_IFDIR) {
|
2013-04-08 04:15:56 +08:00
|
|
|
+ goto error;
|
2012-10-16 17:03:32 +08:00
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+#endif
|
2013-04-08 04:15:56 +08:00
|
|
|
+
|
2010-02-01 06:54:00 +08:00
|
|
|
dbname = mkdbname(ms, fn, 0);
|
2008-07-25 16:18:35 +08:00
|
|
|
if (dbname == NULL)
|
2013-04-08 04:15:56 +08:00
|
|
|
goto error;
|
2010-02-01 06:54:00 +08:00
|
|
|
|
|
|
|
- if ((fd = open(dbname, O_RDONLY|O_BINARY)) == -1)
|
|
|
|
+ stream = php_stream_open_wrapper((char *)fn, "rb", REPORT_ERRORS, NULL);
|
|
|
|
+
|
|
|
|
+ if (!stream) {
|
2013-04-08 04:15:56 +08:00
|
|
|
goto error;
|
2010-02-01 06:54:00 +08:00
|
|
|
+ }
|
|
|
|
|
|
|
|
- if (fstat(fd, &st) == -1) {
|
|
|
|
+ if (php_stream_stat(stream, &st) < 0) {
|
|
|
|
file_error(ms, errno, "cannot stat `%s'", dbname);
|
2013-04-08 04:15:56 +08:00
|
|
|
goto error;
|
2010-02-01 06:54:00 +08:00
|
|
|
}
|
|
|
|
- if (st.st_size < 8) {
|
|
|
|
+
|
|
|
|
+ if (st.sb.st_size < 8) {
|
|
|
|
file_error(ms, 0, "file `%s' is too small", dbname);
|
2013-04-08 04:15:56 +08:00
|
|
|
goto error;
|
2008-07-25 16:18:35 +08:00
|
|
|
}
|
2010-02-01 06:54:00 +08:00
|
|
|
|
2013-04-08 04:15:56 +08:00
|
|
|
- map->len = (size_t)st.st_size;
|
2010-02-01 06:54:00 +08:00
|
|
|
-#ifdef QUICK
|
2013-04-08 04:15:56 +08:00
|
|
|
- if ((map->p = mmap(0, (size_t)st.st_size, PROT_READ|PROT_WRITE,
|
2010-02-01 06:54:00 +08:00
|
|
|
- MAP_PRIVATE|MAP_FILE, fd, (off_t)0)) == MAP_FAILED) {
|
|
|
|
- file_error(ms, errno, "cannot map `%s'", dbname);
|
2013-04-08 04:15:56 +08:00
|
|
|
- goto error;
|
2010-02-01 06:54:00 +08:00
|
|
|
- }
|
|
|
|
-#else
|
2013-04-08 04:15:56 +08:00
|
|
|
- if ((map->p = CAST(void *, malloc(map->len))) == NULL) {
|
|
|
|
+ map->len = (size_t)st.sb.st_size;
|
|
|
|
+ if ((map->p = CAST(void *, emalloc(map->len))) == NULL) {
|
|
|
|
file_oomem(ms, map->len);
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
- if (read(fd, map->p, map->len) != (ssize_t)map->len) {
|
|
|
|
+ if (php_stream_read(stream, map->p, (size_t)st.sb.st_size) != (size_t)st.sb.st_size) {
|
2008-07-25 16:18:35 +08:00
|
|
|
file_badread(ms);
|
2013-04-08 04:15:56 +08:00
|
|
|
goto error;
|
2008-07-25 16:18:35 +08:00
|
|
|
}
|
2013-04-08 04:15:56 +08:00
|
|
|
map->len = 0;
|
|
|
|
#define RET 1
|
2010-02-01 06:54:00 +08:00
|
|
|
-#endif
|
|
|
|
- (void)close(fd);
|
|
|
|
- fd = -1;
|
2013-04-08 04:15:56 +08:00
|
|
|
- ptr = CAST(uint32_t *, map->p);
|
2010-02-01 06:54:00 +08:00
|
|
|
+
|
|
|
|
+ php_stream_close(stream);
|
|
|
|
+ stream = NULL;
|
|
|
|
+
|
2008-07-25 16:18:35 +08:00
|
|
|
+internal_loaded:
|
2013-04-08 04:15:56 +08:00
|
|
|
+ ptr = (uint32_t *)(void *)map->p;
|
2008-07-25 16:18:35 +08:00
|
|
|
if (*ptr != MAGICNO) {
|
|
|
|
if (swap4(*ptr) != MAGICNO) {
|
2013-04-08 04:15:56 +08:00
|
|
|
file_error(ms, 0, "bad magic in `%s'", dbname);
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -2641,17 +2679,29 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
else
|
|
|
|
version = ptr[1];
|
|
|
|
if (version != VERSIONNO) {
|
2012-03-27 19:34:46 +08:00
|
|
|
- file_error(ms, 0, "File %s supports only version %d magic "
|
|
|
|
- "files. `%s' is version %d", VERSION,
|
|
|
|
+ file_error(ms, 0, "File %d.%d supports only version %d magic "
|
|
|
|
+ "files. `%s' is version %d", FILE_VERSION_MAJOR, patchlevel,
|
2008-07-25 16:18:35 +08:00
|
|
|
VERSIONNO, dbname, version);
|
2013-04-08 04:15:56 +08:00
|
|
|
goto error;
|
2008-07-25 16:18:35 +08:00
|
|
|
}
|
2013-04-08 04:15:56 +08:00
|
|
|
- entries = (uint32_t)(st.st_size / sizeof(struct magic));
|
|
|
|
- if ((off_t)(entries * sizeof(struct magic)) != st.st_size) {
|
|
|
|
- file_error(ms, 0, "Size of `%s' %llu is not a multiple of %zu",
|
|
|
|
- dbname, (unsigned long long)st.st_size,
|
|
|
|
- sizeof(struct magic));
|
|
|
|
- goto error;
|
2010-02-01 06:54:00 +08:00
|
|
|
+
|
|
|
|
+ /* php_magic_database is a const, performing writes will segfault. This is for big-endian
|
|
|
|
+ machines only, PPC and Sparc specifically. Consider static variable or MINIT in
|
|
|
|
+ future. */
|
|
|
|
+ if (needsbyteswap && fn == NULL) {
|
2013-04-08 04:15:56 +08:00
|
|
|
+ map->p = emalloc(sizeof(php_magic_database));
|
|
|
|
+ map->p = memcpy(map->p, php_magic_database, sizeof(php_magic_database));
|
2010-02-01 06:54:00 +08:00
|
|
|
+ }
|
|
|
|
+
|
2013-04-08 04:15:56 +08:00
|
|
|
+ if (NULL != fn) {
|
|
|
|
+ nentries = (uint32_t)(st.sb.st_size / sizeof(struct magic));
|
|
|
|
+ entries = (uint32_t)(st.sb.st_size / sizeof(struct magic));
|
|
|
|
+ if ((off_t)(entries * sizeof(struct magic)) != st.sb.st_size) {
|
|
|
|
+ file_error(ms, 0, "Size of `%s' %llu is not a multiple of %zu",
|
|
|
|
+ dbname, (unsigned long long)st.sb.st_size,
|
|
|
|
+ sizeof(struct magic));
|
|
|
|
+ goto error;
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
map->magic[0] = CAST(struct magic *, map->p) + 1;
|
|
|
|
nentries = 0;
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -2664,22 +2714,29 @@
|
2013-04-08 04:15:56 +08:00
|
|
|
map->magic[i + 1] = map->magic[i] + map->nmagic[i];
|
|
|
|
nentries += map->nmagic[i];
|
|
|
|
}
|
|
|
|
- if (entries != nentries + 1) {
|
|
|
|
+ if (NULL != fn && entries != nentries + 1) {
|
|
|
|
file_error(ms, 0, "Inconsistent entries in `%s' %u != %u",
|
|
|
|
dbname, entries, nentries + 1);
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
+
|
|
|
|
if (needsbyteswap)
|
|
|
|
for (i = 0; i < MAGIC_SETS; i++)
|
|
|
|
byteswap(map->magic[i], map->nmagic[i]);
|
2010-02-01 06:54:00 +08:00
|
|
|
- free(dbname);
|
|
|
|
+
|
|
|
|
+ if (dbname) {
|
|
|
|
+ efree(dbname);
|
|
|
|
+ }
|
2013-04-08 04:15:56 +08:00
|
|
|
return map;
|
2008-07-25 16:18:35 +08:00
|
|
|
|
2013-04-08 04:15:56 +08:00
|
|
|
error:
|
2010-02-01 06:54:00 +08:00
|
|
|
- if (fd != -1)
|
|
|
|
- (void)close(fd);
|
|
|
|
+ if (stream) {
|
|
|
|
+ php_stream_close(stream);
|
|
|
|
+ }
|
2013-04-08 04:15:56 +08:00
|
|
|
apprentice_unmap(map);
|
2010-02-01 06:54:00 +08:00
|
|
|
- free(dbname);
|
|
|
|
+ if (dbname) {
|
|
|
|
+ efree(dbname);
|
|
|
|
+ }
|
2013-04-08 04:15:56 +08:00
|
|
|
return NULL;
|
2010-02-01 06:54:00 +08:00
|
|
|
}
|
|
|
|
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -2700,14 +2757,19 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
char *dbname;
|
|
|
|
int rv = -1;
|
2013-04-08 04:15:56 +08:00
|
|
|
uint32_t i;
|
2010-02-01 06:54:00 +08:00
|
|
|
+ php_stream *stream;
|
2013-04-08 22:23:43 +08:00
|
|
|
+
|
|
|
|
+ TSRMLS_FETCH();
|
2010-02-01 06:54:00 +08:00
|
|
|
|
|
|
|
- dbname = mkdbname(ms, fn, 1);
|
2012-03-27 19:34:46 +08:00
|
|
|
+ dbname = mkdbname(ms, fn, 0);
|
|
|
|
|
|
|
|
if (dbname == NULL)
|
2010-02-01 06:54:00 +08:00
|
|
|
goto out;
|
|
|
|
|
2013-04-08 04:15:56 +08:00
|
|
|
- if ((fd = open(dbname, O_WRONLY|O_CREAT|O_TRUNC|O_BINARY, 0644)) == -1)
|
|
|
|
- {
|
2014-02-19 18:20:24 +08:00
|
|
|
+ /* wb+ == O_WRONLY|O_CREAT|O_TRUNC|O_BINARY */
|
2010-02-01 06:54:00 +08:00
|
|
|
+ stream = php_stream_open_wrapper((char *)fn, "wb+", REPORT_ERRORS, NULL);
|
|
|
|
+
|
|
|
|
+ if (!stream) {
|
|
|
|
file_error(ms, errno, "cannot open `%s'", dbname);
|
|
|
|
goto out;
|
|
|
|
}
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -2717,31 +2779,33 @@
|
2013-04-08 04:15:56 +08:00
|
|
|
goto out;
|
|
|
|
}
|
2010-02-01 06:54:00 +08:00
|
|
|
|
2013-04-08 04:15:56 +08:00
|
|
|
- if (write(fd, map->nmagic, nm) != (ssize_t)nm) {
|
2013-04-27 20:09:29 +08:00
|
|
|
+ if (php_stream_write(stream, (const char *)map->nmagic, nm) != (ssize_t)nm) {
|
2010-02-01 06:54:00 +08:00
|
|
|
file_error(ms, errno, "error writing `%s'", dbname);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2013-04-08 04:15:56 +08:00
|
|
|
assert(nm + sizeof(ar) < m);
|
|
|
|
|
|
|
|
- if (lseek(fd, (off_t)m, SEEK_SET) != (off_t)m) {
|
2010-02-01 06:54:00 +08:00
|
|
|
+ if (php_stream_seek(stream,(off_t)sizeof(struct magic), SEEK_SET) != sizeof(struct magic)) {
|
|
|
|
file_error(ms, errno, "error seeking `%s'", dbname);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2013-04-08 04:15:56 +08:00
|
|
|
for (i = 0; i < MAGIC_SETS; i++) {
|
|
|
|
len = m * map->nmagic[i];
|
|
|
|
- if (write(fd, map->magic[i], len) != (ssize_t)len) {
|
2013-04-27 20:09:29 +08:00
|
|
|
+ if (php_stream_write(stream, (const char *)map->magic[i], len) != (ssize_t)len) {
|
2013-04-08 04:15:56 +08:00
|
|
|
file_error(ms, errno, "error writing `%s'", dbname);
|
|
|
|
goto out;
|
|
|
|
}
|
2010-02-01 06:54:00 +08:00
|
|
|
}
|
|
|
|
|
2012-03-27 19:34:46 +08:00
|
|
|
- if (fd != -1)
|
|
|
|
- (void)close(fd);
|
2013-04-08 04:15:56 +08:00
|
|
|
+ if (stream) {
|
|
|
|
+ php_stream_close(stream);
|
|
|
|
+ }
|
2010-02-01 06:54:00 +08:00
|
|
|
+
|
|
|
|
rv = 0;
|
|
|
|
out:
|
|
|
|
- free(dbname);
|
|
|
|
+ efree(dbname);
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -2754,6 +2818,7 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
{
|
|
|
|
const char *p, *q;
|
|
|
|
char *buf;
|
|
|
|
+ TSRMLS_FETCH();
|
|
|
|
|
|
|
|
if (strip) {
|
|
|
|
if ((p = strrchr(fn, '/')) != NULL)
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -2775,16 +2840,18 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
q++;
|
|
|
|
/* Compatibility with old code that looked in .mime */
|
|
|
|
if (ms->flags & MAGIC_MIME) {
|
2013-04-08 04:15:56 +08:00
|
|
|
- if (asprintf(&buf, "%.*s.mime%s", (int)(q - fn), fn, ext) < 0)
|
|
|
|
- return NULL;
|
2010-02-01 06:54:00 +08:00
|
|
|
- if (access(buf, R_OK) != -1) {
|
|
|
|
+ spprintf(&buf, MAXPATHLEN, "%.*s.mime%s", (int)(q - fn), fn, ext);
|
2012-11-27 23:33:58 +08:00
|
|
|
+#ifdef PHP_WIN32
|
|
|
|
+ if (VCWD_ACCESS(buf, R_OK) == 0) {
|
|
|
|
+#else
|
2010-02-01 06:54:00 +08:00
|
|
|
+ if (VCWD_ACCESS(buf, R_OK) != -1) {
|
2012-11-27 23:33:58 +08:00
|
|
|
+#endif
|
2010-02-01 06:54:00 +08:00
|
|
|
ms->flags &= MAGIC_MIME_TYPE;
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
- free(buf);
|
|
|
|
+ efree(buf);
|
|
|
|
}
|
2013-04-08 04:15:56 +08:00
|
|
|
- if (asprintf(&buf, "%.*s%s", (int)(q - fn), fn, ext) < 0)
|
|
|
|
- return NULL;
|
2010-02-01 06:54:00 +08:00
|
|
|
+ spprintf(&buf, MAXPATHLEN, "%.*s%s", (int)(q - fn), fn, ext);
|
|
|
|
|
|
|
|
/* Compatibility with old code that looked in .mime */
|
|
|
|
if (strstr(p, ".mime") != NULL)
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -2874,7 +2941,7 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
m->offset = swap4((uint32_t)m->offset);
|
|
|
|
m->in_offset = swap4((uint32_t)m->in_offset);
|
|
|
|
m->lineno = swap4((uint32_t)m->lineno);
|
|
|
|
- if (IS_STRING(m->type)) {
|
|
|
|
+ if (IS_LIBMAGIC_STRING(m->type)) {
|
|
|
|
m->str_range = swap4(m->str_range);
|
|
|
|
m->str_flags = swap4(m->str_flags);
|
|
|
|
}
|
2012-04-22 19:38:14 +08:00
|
|
|
diff -u libmagic.orig/ascmagic.c libmagic/ascmagic.c
|
2014-02-19 18:20:24 +08:00
|
|
|
--- libmagic.orig/ascmagic.c Thu Feb 13 00:20:53 2014
|
|
|
|
+++ libmagic/ascmagic.c Wed Feb 19 10:10:11 2014
|
2013-04-08 04:15:56 +08:00
|
|
|
@@ -139,7 +139,7 @@
|
2012-03-27 19:34:46 +08:00
|
|
|
/* malloc size is a conservative overestimate; could be
|
|
|
|
improved, or at least realloced after conversion. */
|
|
|
|
mlen = ulen * 6;
|
|
|
|
- if ((utf8_buf = CAST(unsigned char *, malloc(mlen))) == NULL) {
|
2013-04-08 04:15:56 +08:00
|
|
|
+ if ((utf8_buf = CAST(unsigned char *, emalloc(mlen))) == NULL) {
|
|
|
|
file_oomem(ms, mlen);
|
2012-03-27 19:34:46 +08:00
|
|
|
goto done;
|
2013-04-08 04:15:56 +08:00
|
|
|
}
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -297,7 +297,8 @@
|
2012-03-27 19:34:46 +08:00
|
|
|
}
|
2010-02-01 06:54:00 +08:00
|
|
|
rv = 1;
|
|
|
|
done:
|
2012-03-27 19:34:46 +08:00
|
|
|
- free(utf8_buf);
|
|
|
|
+ if (utf8_buf)
|
2010-02-01 06:54:00 +08:00
|
|
|
+ efree(utf8_buf);
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
2012-04-22 19:38:14 +08:00
|
|
|
diff -u libmagic.orig/cdf.c libmagic/cdf.c
|
2014-02-19 18:20:24 +08:00
|
|
|
--- libmagic.orig/cdf.c Tue Feb 26 17:20:42 2013
|
|
|
|
+++ libmagic/cdf.c Tue Feb 18 10:59:23 2014
|
2012-03-27 19:34:46 +08:00
|
|
|
@@ -43,7 +43,17 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
#include <err.h>
|
|
|
|
#endif
|
|
|
|
#include <stdlib.h>
|
|
|
|
+
|
|
|
|
+#ifdef PHP_WIN32
|
|
|
|
+#include "win32/unistd.h"
|
|
|
|
+#else
|
|
|
|
#include <unistd.h>
|
|
|
|
+#endif
|
|
|
|
+
|
|
|
|
+#ifndef UINT32_MAX
|
|
|
|
+# define UINT32_MAX (0xffffffff)
|
|
|
|
+#endif
|
|
|
|
+
|
|
|
|
#include <string.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <ctype.h>
|
2013-04-08 04:15:56 +08:00
|
|
|
@@ -296,7 +306,10 @@
|
2012-04-02 23:27:23 +08:00
|
|
|
if (info->i_fd == -1)
|
|
|
|
return -1;
|
|
|
|
|
2013-04-08 04:15:56 +08:00
|
|
|
- if (pread(info->i_fd, buf, len, off) != (ssize_t)len)
|
2012-04-02 23:27:23 +08:00
|
|
|
+ if (FINFO_LSEEK_FUNC(info->i_fd, off, SEEK_SET) == (off_t)-1)
|
2013-04-08 04:15:56 +08:00
|
|
|
+ return -1;
|
|
|
|
+
|
2012-04-02 23:27:23 +08:00
|
|
|
+ if (FINFO_READ_FUNC(info->i_fd, buf, len) != (ssize_t)len)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return (ssize_t)len;
|
2013-04-08 04:15:56 +08:00
|
|
|
@@ -1132,7 +1145,7 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
cdf_directory_t *d;
|
|
|
|
char name[__arraycount(d->d_name)];
|
|
|
|
cdf_stream_t scn;
|
|
|
|
- struct timespec ts;
|
|
|
|
+ struct timeval ts;
|
|
|
|
|
|
|
|
static const char *types[] = { "empty", "user storage",
|
|
|
|
"user stream", "lockbytes", "property", "root storage" };
|
2013-04-08 04:15:56 +08:00
|
|
|
@@ -1185,7 +1198,7 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
cdf_dump_property_info(const cdf_property_info_t *info, size_t count)
|
|
|
|
{
|
|
|
|
cdf_timestamp_t tp;
|
|
|
|
- struct timespec ts;
|
|
|
|
+ struct timeval ts;
|
|
|
|
char buf[64];
|
2012-03-27 19:34:46 +08:00
|
|
|
size_t i, j;
|
|
|
|
|
2013-04-08 04:15:56 +08:00
|
|
|
@@ -1229,7 +1242,11 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
break;
|
|
|
|
case CDF_FILETIME:
|
|
|
|
tp = info[i].pi_tp;
|
2010-04-27 07:55:03 +08:00
|
|
|
+#if defined(PHP_WIN32) && _MSC_VER <= 1500
|
2010-02-01 06:54:00 +08:00
|
|
|
+ if (tp < 1000000000000000i64) {
|
|
|
|
+#else
|
|
|
|
if (tp < 1000000000000000LL) {
|
|
|
|
+#endif
|
|
|
|
cdf_print_elapsed_time(buf, sizeof(buf), tp);
|
|
|
|
(void)fprintf(stderr, "timestamp %s\n", buf);
|
|
|
|
} else {
|
2012-04-22 19:38:14 +08:00
|
|
|
diff -u libmagic.orig/cdf.h libmagic/cdf.h
|
2014-02-19 18:20:24 +08:00
|
|
|
--- libmagic.orig/cdf.h Thu Jun 21 00:19:55 2012
|
|
|
|
+++ libmagic/cdf.h Tue Feb 18 10:59:23 2014
|
2013-04-08 04:15:56 +08:00
|
|
|
@@ -35,10 +35,12 @@
|
2012-03-27 19:34:46 +08:00
|
|
|
#ifndef _H_CDF_
|
|
|
|
#define _H_CDF_
|
|
|
|
|
|
|
|
-#ifdef WIN32
|
|
|
|
+#ifdef PHP_WIN32
|
|
|
|
#include <winsock2.h>
|
|
|
|
#define timespec timeval
|
|
|
|
#define tv_nsec tv_usec
|
2013-04-08 04:15:56 +08:00
|
|
|
+#define asctime_r php_asctime_r
|
|
|
|
+#define ctime_r php_ctime_r
|
|
|
|
#endif
|
|
|
|
#ifdef __DJGPP__
|
|
|
|
#define timespec timeval
|
|
|
|
@@ -57,7 +59,11 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
uint64_t h_magic;
|
|
|
|
-#define CDF_MAGIC 0xE11AB1A1E011CFD0LL
|
2010-04-27 07:55:03 +08:00
|
|
|
+#if defined(PHP_WIN32) && _MSC_VER <= 1500
|
2010-02-01 06:54:00 +08:00
|
|
|
+# define CDF_MAGIC 0xE11AB1A1E011CFD0i64
|
|
|
|
+#else
|
|
|
|
+# define CDF_MAGIC 0xE11AB1A1E011CFD0LL
|
|
|
|
+#endif
|
|
|
|
uint64_t h_uuid[2];
|
|
|
|
uint16_t h_revision;
|
|
|
|
uint16_t h_version;
|
2013-04-08 04:15:56 +08:00
|
|
|
@@ -267,9 +273,9 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
size_t i_len;
|
|
|
|
} cdf_info_t;
|
|
|
|
|
|
|
|
-struct timespec;
|
|
|
|
-int cdf_timestamp_to_timespec(struct timespec *, cdf_timestamp_t);
|
|
|
|
-int cdf_timespec_to_timestamp(cdf_timestamp_t *, const struct timespec *);
|
|
|
|
+struct timeval;
|
|
|
|
+int cdf_timestamp_to_timespec(struct timeval *, cdf_timestamp_t);
|
|
|
|
+int cdf_timespec_to_timestamp(cdf_timestamp_t *, const struct timeval *);
|
|
|
|
int cdf_read_header(const cdf_info_t *, cdf_header_t *);
|
|
|
|
void cdf_swap_header(cdf_header_t *);
|
|
|
|
void cdf_unpack_header(cdf_header_t *, char *);
|
2012-04-22 19:38:14 +08:00
|
|
|
diff -u libmagic.orig/cdf_time.c libmagic/cdf_time.c
|
2014-02-19 18:20:24 +08:00
|
|
|
--- libmagic.orig/cdf_time.c Thu Jun 21 00:18:33 2012
|
|
|
|
+++ libmagic/cdf_time.c Tue Feb 18 10:59:23 2014
|
2010-02-01 06:54:00 +08:00
|
|
|
@@ -96,7 +96,7 @@
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
-cdf_timestamp_to_timespec(struct timespec *ts, cdf_timestamp_t t)
|
|
|
|
+cdf_timestamp_to_timespec(struct timeval *ts, cdf_timestamp_t t)
|
|
|
|
{
|
|
|
|
struct tm tm;
|
|
|
|
#ifdef HAVE_STRUCT_TM_TM_ZONE
|
2013-04-08 04:15:56 +08:00
|
|
|
@@ -104,8 +104,9 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
#endif
|
|
|
|
int rdays;
|
|
|
|
|
|
|
|
- /* Unit is 100's of nanoseconds */
|
|
|
|
- ts->tv_nsec = (t % CDF_TIME_PREC) * 100;
|
2013-04-08 04:15:56 +08:00
|
|
|
+ /* XXX 5.14 at least introdced 100 ns intervals, this is to do */
|
2010-02-01 06:54:00 +08:00
|
|
|
+ /* Time interval, in microseconds */
|
|
|
|
+ ts->tv_usec = (t % CDF_TIME_PREC) * CDF_TIME_PREC;
|
|
|
|
|
|
|
|
t /= CDF_TIME_PREC;
|
2012-03-27 19:34:46 +08:00
|
|
|
tm.tm_sec = (int)(t % 60);
|
2013-04-08 04:15:56 +08:00
|
|
|
@@ -117,7 +118,7 @@
|
2012-03-27 19:34:46 +08:00
|
|
|
tm.tm_hour = (int)(t % 24);
|
2011-10-19 23:08:50 +08:00
|
|
|
t /= 24;
|
|
|
|
|
|
|
|
- // XXX: Approx
|
|
|
|
+ /* XXX: Approx */
|
2012-03-27 19:34:46 +08:00
|
|
|
tm.tm_year = (int)(CDF_BASE_YEAR + (t / 365));
|
2011-10-19 23:08:50 +08:00
|
|
|
|
|
|
|
rdays = cdf_getdays(tm.tm_year);
|
2013-04-08 04:15:56 +08:00
|
|
|
@@ -144,7 +145,7 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
|
|
|
|
int
|
2012-03-27 19:34:46 +08:00
|
|
|
/*ARGSUSED*/
|
2010-02-01 06:54:00 +08:00
|
|
|
-cdf_timespec_to_timestamp(cdf_timestamp_t *t, const struct timespec *ts)
|
|
|
|
+cdf_timespec_to_timestamp(cdf_timestamp_t *t, const struct timeval *ts)
|
|
|
|
{
|
2012-03-27 19:34:46 +08:00
|
|
|
#ifndef __lint__
|
2010-02-01 06:54:00 +08:00
|
|
|
(void)&t;
|
2013-04-08 04:15:56 +08:00
|
|
|
@@ -156,7 +157,7 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
errno = EINVAL;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
- *t = (ts->ts_nsec / 100) * CDF_TIME_PREC;
|
|
|
|
+ *t = (ts->ts_usec / CDF_TIME_PREC) * CDF_TIME_PREC;
|
|
|
|
*t = tm.tm_sec;
|
|
|
|
*t += tm.tm_min * 60;
|
|
|
|
*t += tm.tm_hour * 60 * 60;
|
2013-04-08 04:15:56 +08:00
|
|
|
@@ -180,7 +181,7 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
int
|
|
|
|
main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
- struct timespec ts;
|
|
|
|
+ struct timeval ts;
|
2013-04-08 04:15:56 +08:00
|
|
|
char buf[25];
|
2010-02-01 06:54:00 +08:00
|
|
|
static const cdf_timestamp_t tst = 0x01A5E403C2D59C00ULL;
|
|
|
|
static const char *ref = "Sat Apr 23 01:30:00 1977";
|
2012-04-22 19:38:14 +08:00
|
|
|
diff -u libmagic.orig/compress.c libmagic/compress.c
|
2014-02-19 18:20:24 +08:00
|
|
|
--- libmagic.orig/compress.c Sun Jan 5 16:55:21 2014
|
|
|
|
+++ libmagic/compress.c Wed Feb 19 10:10:11 2014
|
2010-02-01 06:54:00 +08:00
|
|
|
@@ -32,6 +32,7 @@
|
|
|
|
* uncompress(method, old, n, newch) - uncompress old into new,
|
|
|
|
* using method, return sizeof new
|
|
|
|
*/
|
|
|
|
+#include "config.h"
|
|
|
|
#include "file.h"
|
|
|
|
|
|
|
|
#ifndef lint
|
2012-03-27 19:34:46 +08:00
|
|
|
@@ -45,7 +46,8 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
#endif
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
2012-03-27 19:34:46 +08:00
|
|
|
-#ifndef __MINGW32__
|
2010-02-01 06:54:00 +08:00
|
|
|
+#include <sys/types.h>
|
|
|
|
+#ifndef PHP_WIN32
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#endif
|
2012-03-27 19:34:46 +08:00
|
|
|
#ifdef HAVE_SYS_WAIT_H
|
|
|
|
@@ -59,6 +61,9 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
#include <zlib.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
+#undef FIONREAD
|
|
|
|
+
|
|
|
|
+
|
|
|
|
private const struct {
|
|
|
|
const char magic[8];
|
|
|
|
size_t maglen;
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -86,8 +91,7 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
#define NODATA ((size_t)~0)
|
|
|
|
|
|
|
|
private ssize_t swrite(int, const void *, size_t);
|
2012-03-27 19:34:46 +08:00
|
|
|
-#if HAVE_FORK
|
|
|
|
-private size_t ncompr = sizeof(compr) / sizeof(compr[0]);
|
2010-02-01 06:54:00 +08:00
|
|
|
+#ifdef PHP_FILEINFO_UNCOMPRESS
|
|
|
|
private size_t uncompressbuf(struct magic_set *, int, size_t,
|
|
|
|
const unsigned char *, unsigned char **, size_t);
|
|
|
|
#ifdef BUILTIN_DECOMPRESS
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -103,10 +107,13 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
size_t i, nsz;
|
|
|
|
int rv = 0;
|
|
|
|
int mime = ms->flags & MAGIC_MIME;
|
|
|
|
+ size_t ncompr;
|
|
|
|
|
|
|
|
if ((ms->flags & MAGIC_COMPRESS) == 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
+ ncompr = sizeof(compr) / sizeof(compr[0]);
|
|
|
|
+
|
|
|
|
for (i = 0; i < ncompr; i++) {
|
|
|
|
if (nbytes < compr[i].maglen)
|
|
|
|
continue;
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -133,7 +140,8 @@
|
2012-03-27 19:34:46 +08:00
|
|
|
}
|
2010-02-01 06:54:00 +08:00
|
|
|
}
|
|
|
|
error:
|
2012-03-27 19:34:46 +08:00
|
|
|
- free(newbuf);
|
|
|
|
+ if (newbuf)
|
2010-02-01 06:54:00 +08:00
|
|
|
+ efree(newbuf);
|
|
|
|
ms->flags |= MAGIC_COMPRESS;
|
|
|
|
return rv;
|
|
|
|
}
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -167,7 +175,7 @@
|
2012-03-27 19:34:46 +08:00
|
|
|
* `safe' read for sockets and pipes.
|
|
|
|
*/
|
2010-02-01 06:54:00 +08:00
|
|
|
protected ssize_t
|
2013-04-08 04:15:56 +08:00
|
|
|
-sread(int fd, void *buf, size_t n, int canbepipe __attribute__((__unused__)))
|
2012-03-27 19:34:46 +08:00
|
|
|
+sread(int fd, void *buf, size_t n, int canbepipe)
|
2010-02-01 06:54:00 +08:00
|
|
|
{
|
2012-03-27 19:34:46 +08:00
|
|
|
ssize_t rv;
|
2010-02-01 06:54:00 +08:00
|
|
|
#ifdef FIONREAD
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -215,7 +223,7 @@
|
2012-04-02 23:27:23 +08:00
|
|
|
|
|
|
|
nocheck:
|
|
|
|
do
|
|
|
|
- switch ((rv = read(fd, buf, n))) {
|
|
|
|
+ switch ((rv = FINFO_READ_FUNC(fd, buf, n))) {
|
|
|
|
case -1:
|
|
|
|
if (errno == EINTR)
|
|
|
|
continue;
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -292,13 +300,14 @@
|
2012-04-02 23:27:23 +08:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
(void)close(tfd);
|
|
|
|
- if (lseek(fd, (off_t)0, SEEK_SET) == (off_t)-1) {
|
|
|
|
+ if (FINFO_LSEEK_FUNC(fd, (off_t)0, SEEK_SET) == (off_t)-1) {
|
|
|
|
file_badseek(ms);
|
|
|
|
return -1;
|
2012-03-27 19:34:46 +08:00
|
|
|
}
|
2010-02-01 06:54:00 +08:00
|
|
|
return fd;
|
|
|
|
}
|
2012-03-27 19:34:46 +08:00
|
|
|
-#if HAVE_FORK
|
|
|
|
+
|
2010-02-01 06:54:00 +08:00
|
|
|
+#ifdef PHP_FILEINFO_UNCOMPRESS
|
|
|
|
#ifdef BUILTIN_DECOMPRESS
|
|
|
|
|
|
|
|
#define FHCRC (1 << 1)
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -335,7 +344,7 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
|
|
|
|
if (data_start >= n)
|
|
|
|
return 0;
|
|
|
|
- if ((*newch = CAST(unsigned char *, malloc(HOWMANY + 1))) == NULL) {
|
2013-04-08 04:15:56 +08:00
|
|
|
+ if ((*newch = CAST(unsigned char *, emalloc(HOWMANY + 1))) == NULL) {
|
|
|
|
return 0;
|
|
|
|
}
|
2010-02-01 06:54:00 +08:00
|
|
|
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -396,19 +405,16 @@
|
2013-04-08 04:15:56 +08:00
|
|
|
case 0: /* child */
|
2012-04-02 23:27:23 +08:00
|
|
|
(void) close(0);
|
|
|
|
if (fd != -1) {
|
2013-04-08 04:15:56 +08:00
|
|
|
- if (dup(fd) == -1)
|
|
|
|
- _exit(1);
|
2012-04-02 23:27:23 +08:00
|
|
|
- (void) lseek(0, (off_t)0, SEEK_SET);
|
2013-04-08 04:15:56 +08:00
|
|
|
+ (void) dup(fd);
|
2012-04-02 23:27:23 +08:00
|
|
|
+ (void) FINFO_LSEEK_FUNC(0, (off_t)0, SEEK_SET);
|
|
|
|
} else {
|
2013-04-08 04:15:56 +08:00
|
|
|
- if (dup(fdin[0]) == -1)
|
|
|
|
- _exit(1);
|
|
|
|
+ (void) dup(fdin[0]);
|
2012-04-02 23:27:23 +08:00
|
|
|
(void) close(fdin[0]);
|
2013-04-08 04:15:56 +08:00
|
|
|
(void) close(fdin[1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
(void) close(1);
|
|
|
|
- if (dup(fdout[1]) == -1)
|
|
|
|
- _exit(1);
|
|
|
|
+ (void) dup(fdout[1]);
|
|
|
|
(void) close(fdout[0]);
|
|
|
|
(void) close(fdout[1]);
|
|
|
|
#ifndef DEBUG
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -465,20 +471,14 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
fdin[1] = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
- if ((*newch = (unsigned char *) malloc(HOWMANY + 1)) == NULL) {
|
|
|
|
-#ifdef DEBUG
|
|
|
|
- (void)fprintf(stderr, "Malloc failed (%s)\n",
|
|
|
|
- strerror(errno));
|
|
|
|
-#endif
|
|
|
|
- n = 0;
|
|
|
|
- goto err;
|
|
|
|
- }
|
|
|
|
+ *newch = (unsigned char *) emalloc(HOWMANY + 1);
|
|
|
|
+
|
|
|
|
if ((r = sread(fdout[0], *newch, HOWMANY, 0)) <= 0) {
|
|
|
|
#ifdef DEBUG
|
|
|
|
(void)fprintf(stderr, "Read failed (%s)\n",
|
|
|
|
strerror(errno));
|
|
|
|
#endif
|
|
|
|
- free(*newch);
|
|
|
|
+ efree(*newch);
|
|
|
|
n = 0;
|
2014-02-19 18:20:24 +08:00
|
|
|
*newch = NULL;
|
2010-02-01 06:54:00 +08:00
|
|
|
goto err;
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -502,4 +502,4 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
return n;
|
|
|
|
}
|
|
|
|
}
|
2012-03-27 19:34:46 +08:00
|
|
|
-#endif
|
2010-02-01 06:54:00 +08:00
|
|
|
+#endif /* if PHP_FILEINFO_UNCOMPRESS */
|
2012-04-22 19:38:14 +08:00
|
|
|
diff -u libmagic.orig/file.h libmagic/file.h
|
2014-02-19 18:20:24 +08:00
|
|
|
--- libmagic.orig/file.h Thu Feb 13 00:20:53 2014
|
|
|
|
+++ libmagic/file.h Wed Feb 19 10:10:11 2014
|
2012-03-27 19:34:46 +08:00
|
|
|
@@ -33,11 +33,9 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
#ifndef __file_h__
|
|
|
|
#define __file_h__
|
|
|
|
|
|
|
|
-#ifdef HAVE_CONFIG_H
|
|
|
|
-#include <config.h>
|
|
|
|
-#endif
|
|
|
|
+#include "config.h"
|
|
|
|
|
2012-03-27 19:34:46 +08:00
|
|
|
-#ifdef WIN32
|
|
|
|
+#ifdef PHP_WIN32
|
|
|
|
#ifdef _WIN64
|
|
|
|
#define SIZE_T_FORMAT "I64"
|
|
|
|
#else
|
2013-04-08 04:15:56 +08:00
|
|
|
@@ -61,10 +59,20 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
#ifdef HAVE_INTTYPES_H
|
|
|
|
#include <inttypes.h>
|
|
|
|
#endif
|
|
|
|
-#include <regex.h>
|
2013-04-08 04:15:56 +08:00
|
|
|
-#include <time.h>
|
2010-02-01 06:54:00 +08:00
|
|
|
+#ifdef PHP_WIN32
|
|
|
|
+#include "win32/php_stdint.h"
|
|
|
|
+#endif
|
|
|
|
+
|
|
|
|
+#include "php.h"
|
|
|
|
+#include "ext/standard/php_string.h"
|
|
|
|
+#include "ext/pcre/php_pcre.h"
|
|
|
|
+
|
|
|
|
#include <sys/types.h>
|
|
|
|
+#ifdef PHP_WIN32
|
|
|
|
+#include "win32/param.h"
|
|
|
|
+#else
|
|
|
|
#include <sys/param.h>
|
|
|
|
+#endif
|
|
|
|
/* Do this here and now, because struct stat gets re-defined on solaris */
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <stdarg.h>
|
2013-04-08 04:15:56 +08:00
|
|
|
@@ -75,7 +83,7 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
#define MAGIC "/etc/magic"
|
|
|
|
#endif
|
|
|
|
|
2012-03-27 19:34:46 +08:00
|
|
|
-#if defined(__EMX__) || defined (WIN32)
|
2010-02-01 06:54:00 +08:00
|
|
|
+#if defined(__EMX__) || defined(PHP_WIN32)
|
|
|
|
#define PATHSEP ';'
|
|
|
|
#else
|
|
|
|
#define PATHSEP ':'
|
2013-04-08 04:15:56 +08:00
|
|
|
@@ -109,12 +117,6 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
-#ifndef __GNUC__
|
|
|
|
-#ifndef __attribute__
|
|
|
|
-#define __attribute__(a)
|
|
|
|
-#endif
|
|
|
|
-#endif
|
|
|
|
-
|
|
|
|
#ifndef MIN
|
|
|
|
#define MIN(a,b) (((a) < (b)) ? (a) : (b))
|
|
|
|
#endif
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -225,7 +227,7 @@
|
|
|
|
#define FILE_CLEAR 47
|
|
|
|
#define FILE_NAMES_SIZE 48 /* size of array to contain all names */
|
2010-02-01 06:54:00 +08:00
|
|
|
|
|
|
|
-#define IS_STRING(t) \
|
|
|
|
+#define IS_LIBMAGIC_STRING(t) \
|
|
|
|
((t) == FILE_STRING || \
|
|
|
|
(t) == FILE_PSTRING || \
|
|
|
|
(t) == FILE_BESTRING16 || \
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -411,22 +413,18 @@
|
2013-04-08 04:15:56 +08:00
|
|
|
protected const char *file_fmttime(uint64_t, int, char *);
|
|
|
|
protected struct magic_set *file_ms_alloc(int);
|
|
|
|
protected void file_ms_free(struct magic_set *);
|
2010-02-01 06:54:00 +08:00
|
|
|
-protected int file_buffer(struct magic_set *, int, const char *, const void *,
|
|
|
|
+protected int file_buffer(struct magic_set *, php_stream *, const char *, const void *,
|
|
|
|
size_t);
|
|
|
|
-protected int file_fsmagic(struct magic_set *, const char *, struct stat *);
|
2013-04-08 04:15:56 +08:00
|
|
|
+protected int file_fsmagic(struct magic_set *, const char *, struct stat *, php_stream *);
|
2010-02-01 06:54:00 +08:00
|
|
|
protected int file_pipe2file(struct magic_set *, int, const void *, size_t);
|
2014-02-19 18:20:24 +08:00
|
|
|
-protected int file_vprintf(struct magic_set *, const char *, va_list)
|
|
|
|
- __attribute__((__format__(__printf__, 2, 0)));
|
2012-03-27 19:34:46 +08:00
|
|
|
-protected size_t file_printedlen(const struct magic_set *);
|
|
|
|
protected int file_replace(struct magic_set *, const char *, const char *);
|
2010-02-01 06:54:00 +08:00
|
|
|
-protected int file_printf(struct magic_set *, const char *, ...)
|
|
|
|
- __attribute__((__format__(__printf__, 2, 3)));
|
|
|
|
+protected int file_printf(struct magic_set *, const char *, ...);
|
|
|
|
protected int file_reset(struct magic_set *);
|
|
|
|
protected int file_tryelf(struct magic_set *, int, const unsigned char *,
|
|
|
|
size_t);
|
|
|
|
protected int file_trycdf(struct magic_set *, int, const unsigned char *,
|
|
|
|
size_t);
|
2012-03-27 19:34:46 +08:00
|
|
|
-#if HAVE_FORK
|
2014-02-19 18:20:24 +08:00
|
|
|
+#ifdef PHP_FILEINFO_UNCOMPRESS
|
2010-02-01 06:54:00 +08:00
|
|
|
protected int file_zmagic(struct magic_set *, int, const char *,
|
|
|
|
const unsigned char *, size_t);
|
2012-03-27 19:34:46 +08:00
|
|
|
#endif
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -444,16 +442,13 @@
|
2013-04-08 04:15:56 +08:00
|
|
|
protected int file_magicfind(struct magic_set *, const char *, struct mlist *);
|
|
|
|
protected uint64_t file_signextend(struct magic_set *, struct magic *,
|
|
|
|
uint64_t);
|
|
|
|
+protected void file_delmagic(struct magic *, int type, size_t entries);
|
2010-02-01 06:54:00 +08:00
|
|
|
protected void file_badread(struct magic_set *);
|
|
|
|
protected void file_badseek(struct magic_set *);
|
|
|
|
protected void file_oomem(struct magic_set *, size_t);
|
|
|
|
-protected void file_error(struct magic_set *, int, const char *, ...)
|
|
|
|
- __attribute__((__format__(__printf__, 3, 4)));
|
|
|
|
-protected void file_magerror(struct magic_set *, const char *, ...)
|
|
|
|
- __attribute__((__format__(__printf__, 2, 3)));
|
|
|
|
-protected void file_magwarn(struct magic_set *, const char *, ...)
|
|
|
|
- __attribute__((__format__(__printf__, 2, 3)));
|
|
|
|
-protected void file_mdump(struct magic *);
|
|
|
|
+protected void file_error(struct magic_set *, int, const char *, ...);
|
|
|
|
+protected void file_magerror(struct magic_set *, const char *, ...);
|
|
|
|
+protected void file_magwarn(struct magic_set *, const char *, ...);
|
|
|
|
protected void file_showstr(FILE *, const char *, size_t);
|
|
|
|
protected size_t file_mbswidth(const char *);
|
|
|
|
protected const char *file_getbuffer(struct magic_set *);
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -463,16 +458,14 @@
|
2012-04-22 19:52:07 +08:00
|
|
|
size_t *);
|
|
|
|
protected size_t file_pstring_length_size(const struct magic *);
|
|
|
|
protected size_t file_pstring_get_length(const struct magic *, const char *);
|
|
|
|
+protected size_t file_printedlen(const struct magic_set *ms);
|
|
|
|
#ifdef __EMX__
|
|
|
|
protected int file_os2_apptype(struct magic_set *, const char *, const void *,
|
2010-02-01 06:54:00 +08:00
|
|
|
size_t);
|
|
|
|
#endif /* __EMX__ */
|
|
|
|
|
|
|
|
-
|
|
|
|
-#ifndef COMPILE_ONLY
|
|
|
|
extern const char *file_names[];
|
|
|
|
extern const size_t file_nnames;
|
|
|
|
-#endif
|
|
|
|
|
|
|
|
#ifndef HAVE_STRERROR
|
|
|
|
extern int sys_nerr;
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -485,20 +478,10 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
#define strtoul(a, b, c) strtol(a, b, c)
|
|
|
|
#endif
|
|
|
|
|
2013-04-08 04:15:56 +08:00
|
|
|
-#ifndef HAVE_PREAD
|
|
|
|
-ssize_t pread(int, void *, size_t, off_t);
|
|
|
|
-#endif
|
2010-02-01 06:54:00 +08:00
|
|
|
-#ifndef HAVE_VASPRINTF
|
|
|
|
-int vasprintf(char **, const char *, va_list);
|
|
|
|
-#endif
|
|
|
|
-#ifndef HAVE_ASPRINTF
|
2014-02-19 18:20:24 +08:00
|
|
|
-int asprintf(char **, const char *, ...);
|
2010-02-01 06:54:00 +08:00
|
|
|
-#endif
|
|
|
|
-
|
|
|
|
-#ifndef HAVE_STRLCPY
|
|
|
|
+#ifndef strlcpy
|
2014-02-19 18:20:24 +08:00
|
|
|
size_t strlcpy(char *, const char *, size_t);
|
2010-02-01 06:54:00 +08:00
|
|
|
#endif
|
|
|
|
-#ifndef HAVE_STRLCAT
|
|
|
|
+#ifndef strlcat
|
2014-02-19 18:20:24 +08:00
|
|
|
size_t strlcat(char *, const char *, size_t);
|
2010-02-01 06:54:00 +08:00
|
|
|
#endif
|
2014-02-19 18:20:24 +08:00
|
|
|
#ifndef HAVE_STRCASESTR
|
|
|
|
@@ -535,6 +518,14 @@
|
2013-04-08 04:15:56 +08:00
|
|
|
#endif
|
2014-02-19 02:08:16 +08:00
|
|
|
#else
|
|
|
|
#define FILE_RCSID(id)
|
|
|
|
+#endif
|
|
|
|
+
|
2012-04-02 23:27:23 +08:00
|
|
|
+#ifdef PHP_WIN32
|
|
|
|
+#define FINFO_LSEEK_FUNC _lseek
|
|
|
|
+#define FINFO_READ_FUNC _read
|
|
|
|
+#else
|
|
|
|
+#define FINFO_LSEEK_FUNC lseek
|
|
|
|
+#define FINFO_READ_FUNC read
|
2014-02-19 02:08:16 +08:00
|
|
|
#endif
|
|
|
|
|
2012-04-02 23:27:23 +08:00
|
|
|
#endif /* __file_h__ */
|
2012-04-22 19:38:14 +08:00
|
|
|
diff -u libmagic.orig/fsmagic.c libmagic/fsmagic.c
|
2014-02-19 18:20:24 +08:00
|
|
|
--- libmagic.orig/fsmagic.c Sun Dec 1 20:22:13 2013
|
|
|
|
+++ libmagic/fsmagic.c Wed Feb 19 10:10:11 2014
|
2012-03-27 19:34:46 +08:00
|
|
|
@@ -59,27 +59,21 @@
|
|
|
|
# define minor(dev) ((dev) & 0xff)
|
2010-02-01 06:54:00 +08:00
|
|
|
#endif
|
|
|
|
#undef HAVE_MAJOR
|
2012-03-27 19:34:46 +08:00
|
|
|
-#ifdef S_IFLNK
|
2010-02-01 06:54:00 +08:00
|
|
|
-private int
|
|
|
|
-bad_link(struct magic_set *ms, int err, char *buf)
|
|
|
|
-{
|
|
|
|
- int mime = ms->flags & MAGIC_MIME;
|
|
|
|
- if ((mime & MAGIC_MIME_TYPE) &&
|
2012-03-27 19:34:46 +08:00
|
|
|
- file_printf(ms, "inode/symlink")
|
2010-02-01 06:54:00 +08:00
|
|
|
- == -1)
|
|
|
|
- return -1;
|
|
|
|
- else if (!mime) {
|
|
|
|
- if (ms->flags & MAGIC_ERROR) {
|
2012-03-27 19:34:46 +08:00
|
|
|
- file_error(ms, err,
|
|
|
|
- "broken symbolic link to `%s'", buf);
|
2010-02-01 06:54:00 +08:00
|
|
|
- return -1;
|
|
|
|
- }
|
2012-03-27 19:34:46 +08:00
|
|
|
- if (file_printf(ms, "broken symbolic link to `%s'", buf) == -1)
|
2010-02-01 06:54:00 +08:00
|
|
|
- return -1;
|
|
|
|
- }
|
|
|
|
- return 1;
|
|
|
|
-}
|
2012-03-27 19:34:46 +08:00
|
|
|
+
|
2010-02-01 06:54:00 +08:00
|
|
|
+#ifdef PHP_WIN32
|
|
|
|
+
|
|
|
|
+# undef S_IFIFO
|
2014-02-19 18:20:24 +08:00
|
|
|
#endif
|
2010-02-01 06:54:00 +08:00
|
|
|
+
|
|
|
|
+
|
|
|
|
+#ifndef S_ISDIR
|
|
|
|
+#define S_ISDIR(mode) ((mode) & _S_IFDIR)
|
|
|
|
+#endif
|
|
|
|
+
|
|
|
|
+#ifndef S_ISREG
|
|
|
|
+#define S_ISREG(mode) ((mode) & _S_IFREG)
|
2014-02-19 18:20:24 +08:00
|
|
|
+#endif
|
2012-03-27 19:34:46 +08:00
|
|
|
+
|
2010-02-01 06:54:00 +08:00
|
|
|
private int
|
|
|
|
handle_mime(struct magic_set *ms, int mime, const char *str)
|
2012-03-27 19:34:46 +08:00
|
|
|
{
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -96,42 +90,39 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
protected int
|
|
|
|
-file_fsmagic(struct magic_set *ms, const char *fn, struct stat *sb)
|
|
|
|
+file_fsmagic(struct magic_set *ms, const char *fn, struct stat *sb, php_stream *stream)
|
|
|
|
{
|
2013-04-08 04:15:56 +08:00
|
|
|
int ret, did = 0;
|
2010-02-01 06:54:00 +08:00
|
|
|
int mime = ms->flags & MAGIC_MIME;
|
|
|
|
-#ifdef S_IFLNK
|
|
|
|
- char buf[BUFSIZ+4];
|
2012-03-27 19:34:46 +08:00
|
|
|
- ssize_t nch;
|
2010-02-01 06:54:00 +08:00
|
|
|
- struct stat tstatbuf;
|
|
|
|
-#endif
|
|
|
|
+ TSRMLS_FETCH();
|
|
|
|
|
|
|
|
if (ms->flags & MAGIC_APPLE)
|
|
|
|
return 0;
|
|
|
|
- if (fn == NULL)
|
|
|
|
+
|
2013-04-08 04:15:56 +08:00
|
|
|
+ if (fn == NULL && !stream) {
|
2010-02-01 06:54:00 +08:00
|
|
|
return 0;
|
|
|
|
+ }
|
|
|
|
|
2013-04-08 04:15:56 +08:00
|
|
|
#define COMMA (did++ ? ", " : "")
|
2010-02-01 06:54:00 +08:00
|
|
|
- /*
|
|
|
|
- * Fstat is cheaper but fails for files you don't have read perms on.
|
|
|
|
- * On 4.2BSD and similar systems, use lstat() to identify symlinks.
|
|
|
|
- */
|
|
|
|
-#ifdef S_IFLNK
|
|
|
|
- if ((ms->flags & MAGIC_SYMLINK) == 0)
|
|
|
|
- ret = lstat(fn, sb);
|
|
|
|
- else
|
|
|
|
-#endif
|
|
|
|
- ret = stat(fn, sb); /* don't merge into if; see "ret =" above */
|
|
|
|
-
|
|
|
|
- if (ret) {
|
|
|
|
- if (ms->flags & MAGIC_ERROR) {
|
|
|
|
- file_error(ms, errno, "cannot stat `%s'", fn);
|
|
|
|
- return -1;
|
2013-04-08 04:15:56 +08:00
|
|
|
+
|
2010-02-01 06:54:00 +08:00
|
|
|
+ if (stream) {
|
|
|
|
+ php_stream_statbuf ssb;
|
|
|
|
+ if (php_stream_stat(stream, &ssb) < 0) {
|
|
|
|
+ if (ms->flags & MAGIC_ERROR) {
|
|
|
|
+ file_error(ms, errno, "cannot stat `%s'", fn);
|
|
|
|
+ return -1;
|
|
|
|
+ }
|
2014-02-19 18:20:24 +08:00
|
|
|
+ return 0;
|
2010-02-01 06:54:00 +08:00
|
|
|
+ }
|
|
|
|
+ memcpy(sb, &ssb.sb, sizeof(struct stat));
|
|
|
|
+ } else {
|
|
|
|
+ if (php_sys_stat(fn, sb) != 0) {
|
|
|
|
+ if (ms->flags & MAGIC_ERROR) {
|
|
|
|
+ file_error(ms, errno, "cannot stat `%s'", fn);
|
|
|
|
+ return -1;
|
|
|
|
+ }
|
2014-02-19 18:20:24 +08:00
|
|
|
+ return 0;
|
2010-02-01 06:54:00 +08:00
|
|
|
}
|
|
|
|
- if (file_printf(ms, "cannot open `%s' (%s)",
|
|
|
|
- fn, strerror(errno)) == -1)
|
|
|
|
- return -1;
|
2014-02-19 18:20:24 +08:00
|
|
|
- return 0;
|
2010-02-01 06:54:00 +08:00
|
|
|
}
|
|
|
|
|
2013-04-08 04:15:56 +08:00
|
|
|
ret = 1;
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -154,30 +145,24 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
}
|
2012-03-27 19:34:46 +08:00
|
|
|
|
2010-02-01 06:54:00 +08:00
|
|
|
switch (sb->st_mode & S_IFMT) {
|
|
|
|
- case S_IFDIR:
|
|
|
|
- if (mime) {
|
2012-03-27 19:34:46 +08:00
|
|
|
- if (handle_mime(ms, mime, "directory") == -1)
|
2010-02-01 06:54:00 +08:00
|
|
|
- return -1;
|
2013-04-08 04:15:56 +08:00
|
|
|
- } else if (file_printf(ms, "%sdirectory", COMMA) == -1)
|
2010-02-01 06:54:00 +08:00
|
|
|
- return -1;
|
2013-04-08 04:15:56 +08:00
|
|
|
- break;
|
2010-02-01 06:54:00 +08:00
|
|
|
-#ifdef S_IFCHR
|
|
|
|
- case S_IFCHR:
|
|
|
|
- /*
|
|
|
|
- * If -s has been specified, treat character special files
|
|
|
|
- * like ordinary files. Otherwise, just report that they
|
|
|
|
- * are block special files and go on to the next file.
|
|
|
|
- */
|
2013-04-08 04:15:56 +08:00
|
|
|
- if ((ms->flags & MAGIC_DEVICES) != 0) {
|
|
|
|
- ret = 0;
|
2010-02-01 06:54:00 +08:00
|
|
|
- break;
|
2013-04-08 04:15:56 +08:00
|
|
|
- }
|
2010-02-01 06:54:00 +08:00
|
|
|
- if (mime) {
|
2012-03-27 19:34:46 +08:00
|
|
|
- if (handle_mime(ms, mime, "chardevice") == -1)
|
2010-02-01 06:54:00 +08:00
|
|
|
- return -1;
|
|
|
|
- } else {
|
|
|
|
-#ifdef HAVE_STAT_ST_RDEV
|
|
|
|
-# ifdef dv_unit
|
2013-04-08 04:15:56 +08:00
|
|
|
+#ifndef PHP_WIN32
|
|
|
|
+# ifdef S_IFCHR
|
|
|
|
+ case S_IFCHR:
|
|
|
|
+ /*
|
|
|
|
+ * If -s has been specified, treat character special files
|
|
|
|
+ * like ordinary files. Otherwise, just report that they
|
|
|
|
+ * are block special files and go on to the next file.
|
|
|
|
+ */
|
|
|
|
+ if ((ms->flags & MAGIC_DEVICES) != 0) {
|
|
|
|
+ ret = 0;
|
|
|
|
+ break;
|
|
|
|
+ }
|
|
|
|
+ if (mime) {
|
2014-02-19 18:20:24 +08:00
|
|
|
+ if (handle_mime(ms, mime, "chardevice") == -1)
|
2013-04-08 04:15:56 +08:00
|
|
|
+ return -1;
|
|
|
|
+ } else {
|
|
|
|
+# ifdef HAVE_STAT_ST_RDEV
|
|
|
|
+# ifdef dv_unit
|
|
|
|
if (file_printf(ms, "%scharacter special (%d/%d/%d)",
|
|
|
|
COMMA, major(sb->st_rdev), dv_unit(sb->st_rdev),
|
2014-02-19 18:20:24 +08:00
|
|
|
dv_subunit(sb->st_rdev)) == -1)
|
|
|
|
@@ -192,44 +177,11 @@
|
2013-04-08 04:15:56 +08:00
|
|
|
if (file_printf(ms, "%scharacter special", COMMA) == -1)
|
2014-02-19 18:20:24 +08:00
|
|
|
return -1;
|
|
|
|
#endif
|
2010-02-01 06:54:00 +08:00
|
|
|
- }
|
2013-04-08 04:15:56 +08:00
|
|
|
- break;
|
2010-02-01 06:54:00 +08:00
|
|
|
-#endif
|
|
|
|
-#ifdef S_IFBLK
|
|
|
|
- case S_IFBLK:
|
|
|
|
- /*
|
|
|
|
- * If -s has been specified, treat block special files
|
|
|
|
- * like ordinary files. Otherwise, just report that they
|
|
|
|
- * are block special files and go on to the next file.
|
|
|
|
- */
|
2013-04-08 04:15:56 +08:00
|
|
|
- if ((ms->flags & MAGIC_DEVICES) != 0) {
|
|
|
|
- ret = 0;
|
2010-02-01 06:54:00 +08:00
|
|
|
- break;
|
2013-04-08 04:15:56 +08:00
|
|
|
- }
|
2010-02-01 06:54:00 +08:00
|
|
|
- if (mime) {
|
2012-03-27 19:34:46 +08:00
|
|
|
- if (handle_mime(ms, mime, "blockdevice") == -1)
|
2010-02-01 06:54:00 +08:00
|
|
|
- return -1;
|
|
|
|
- } else {
|
|
|
|
-#ifdef HAVE_STAT_ST_RDEV
|
|
|
|
-# ifdef dv_unit
|
2013-04-08 04:15:56 +08:00
|
|
|
- if (file_printf(ms, "%sblock special (%d/%d/%d)",
|
|
|
|
- COMMA, major(sb->st_rdev), dv_unit(sb->st_rdev),
|
|
|
|
- dv_subunit(sb->st_rdev)) == -1)
|
2010-02-01 06:54:00 +08:00
|
|
|
- return -1;
|
|
|
|
-# else
|
2013-04-08 04:15:56 +08:00
|
|
|
- if (file_printf(ms, "%sblock special (%ld/%ld)",
|
|
|
|
- COMMA, (long)major(sb->st_rdev),
|
|
|
|
- (long)minor(sb->st_rdev)) == -1)
|
2010-02-01 06:54:00 +08:00
|
|
|
- return -1;
|
2014-02-19 18:20:24 +08:00
|
|
|
+ }
|
2012-03-27 19:34:46 +08:00
|
|
|
+ return 1;
|
|
|
|
# endif
|
|
|
|
-#else
|
2013-04-08 04:15:56 +08:00
|
|
|
- if (file_printf(ms, "%sblock special", COMMA) == -1)
|
2012-03-27 19:34:46 +08:00
|
|
|
- return -1;
|
2014-02-19 18:20:24 +08:00
|
|
|
-#endif
|
2012-03-27 19:34:46 +08:00
|
|
|
- }
|
2013-04-08 04:15:56 +08:00
|
|
|
- break;
|
2014-02-19 18:20:24 +08:00
|
|
|
#endif
|
2012-03-27 19:34:46 +08:00
|
|
|
- /* TODO add code to handle V7 MUX and Blit MUX files */
|
|
|
|
+
|
|
|
|
#ifdef S_IFIFO
|
|
|
|
case S_IFIFO:
|
|
|
|
if((ms->flags & MAGIC_DEVICES) != 0)
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -252,79 +204,14 @@
|
2012-03-27 19:34:46 +08:00
|
|
|
#endif
|
|
|
|
#ifdef S_IFLNK
|
|
|
|
case S_IFLNK:
|
|
|
|
- if ((nch = readlink(fn, buf, BUFSIZ-1)) <= 0) {
|
|
|
|
+ /* stat is used, if it made here then the link is broken */
|
|
|
|
if (ms->flags & MAGIC_ERROR) {
|
|
|
|
- file_error(ms, errno, "unreadable symlink `%s'",
|
|
|
|
- fn);
|
|
|
|
+ file_error(ms, errno, "unreadable symlink `%s'", fn);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
- if (mime) {
|
|
|
|
- if (handle_mime(ms, mime, "symlink") == -1)
|
|
|
|
- return -1;
|
|
|
|
- } else if (file_printf(ms,
|
2013-04-08 04:15:56 +08:00
|
|
|
- "%sunreadable symlink `%s' (%s)", COMMA, fn,
|
2012-03-27 19:34:46 +08:00
|
|
|
- strerror(errno)) == -1)
|
|
|
|
- return -1;
|
2013-04-08 04:15:56 +08:00
|
|
|
- break;
|
2010-02-01 06:54:00 +08:00
|
|
|
- }
|
|
|
|
- buf[nch] = '\0'; /* readlink(2) does not do this */
|
|
|
|
-
|
|
|
|
- /* If broken symlink, say so and quit early. */
|
|
|
|
- if (*buf == '/') {
|
|
|
|
- if (stat(buf, &tstatbuf) < 0)
|
|
|
|
- return bad_link(ms, errno, buf);
|
|
|
|
- } else {
|
|
|
|
- char *tmp;
|
|
|
|
- char buf2[BUFSIZ+BUFSIZ+4];
|
2012-03-27 19:34:46 +08:00
|
|
|
-
|
2010-02-01 06:54:00 +08:00
|
|
|
- if ((tmp = strrchr(fn, '/')) == NULL) {
|
|
|
|
- tmp = buf; /* in current directory anyway */
|
|
|
|
- } else {
|
|
|
|
- if (tmp - fn + 1 > BUFSIZ) {
|
|
|
|
- if (ms->flags & MAGIC_ERROR) {
|
|
|
|
- file_error(ms, 0,
|
|
|
|
- "path too long: `%s'", buf);
|
2012-03-27 19:34:46 +08:00
|
|
|
- return -1;
|
2010-02-01 06:54:00 +08:00
|
|
|
- }
|
2012-03-27 19:34:46 +08:00
|
|
|
- if (mime) {
|
2010-02-01 06:54:00 +08:00
|
|
|
- if (handle_mime(ms, mime,
|
|
|
|
- "x-path-too-long") == -1)
|
2012-03-27 19:34:46 +08:00
|
|
|
- return -1;
|
2010-02-01 06:54:00 +08:00
|
|
|
- } else if (file_printf(ms,
|
2013-04-08 04:15:56 +08:00
|
|
|
- "%spath too long: `%s'", COMMA,
|
|
|
|
- fn) == -1)
|
2012-03-27 19:34:46 +08:00
|
|
|
- return -1;
|
2013-04-08 04:15:56 +08:00
|
|
|
- break;
|
2010-02-01 06:54:00 +08:00
|
|
|
- }
|
|
|
|
- /* take dir part */
|
|
|
|
- (void)strlcpy(buf2, fn, sizeof buf2);
|
|
|
|
- buf2[tmp - fn + 1] = '\0';
|
|
|
|
- /* plus (rel) link */
|
|
|
|
- (void)strlcat(buf2, buf, sizeof buf2);
|
|
|
|
- tmp = buf2;
|
|
|
|
- }
|
|
|
|
- if (stat(tmp, &tstatbuf) < 0)
|
|
|
|
- return bad_link(ms, errno, buf);
|
|
|
|
- }
|
2012-03-27 19:34:46 +08:00
|
|
|
-
|
2010-02-01 06:54:00 +08:00
|
|
|
- /* Otherwise, handle it. */
|
|
|
|
- if ((ms->flags & MAGIC_SYMLINK) != 0) {
|
|
|
|
- const char *p;
|
|
|
|
- ms->flags &= MAGIC_SYMLINK;
|
|
|
|
- p = magic_file(ms, buf);
|
|
|
|
- ms->flags |= MAGIC_SYMLINK;
|
2013-04-08 04:15:56 +08:00
|
|
|
- if (p == NULL)
|
|
|
|
- return -1;
|
2010-02-01 06:54:00 +08:00
|
|
|
- } else { /* just print what it points to */
|
|
|
|
- if (mime) {
|
2012-03-27 19:34:46 +08:00
|
|
|
- if (handle_mime(ms, mime, "symlink") == -1)
|
2010-02-01 06:54:00 +08:00
|
|
|
- return -1;
|
2013-04-08 04:15:56 +08:00
|
|
|
- } else if (file_printf(ms, "%ssymbolic link to `%s'",
|
|
|
|
- COMMA, buf) == -1)
|
2010-02-01 06:54:00 +08:00
|
|
|
- return -1;
|
|
|
|
- }
|
2013-04-08 04:15:56 +08:00
|
|
|
- break;
|
2010-02-01 06:54:00 +08:00
|
|
|
+ return 1;
|
|
|
|
#endif
|
|
|
|
+
|
|
|
|
#ifdef S_IFSOCK
|
|
|
|
#ifndef __COHERENT__
|
|
|
|
case S_IFSOCK:
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -348,15 +235,15 @@
|
2013-04-08 04:15:56 +08:00
|
|
|
* size for raw disk partitions. (If the block special device
|
|
|
|
* really has zero length, the fact that it is empty will be
|
|
|
|
* detected and reported correctly when we read the file.)
|
|
|
|
- */
|
|
|
|
- if ((ms->flags & MAGIC_DEVICES) == 0 && sb->st_size == 0) {
|
|
|
|
- if (mime) {
|
|
|
|
- if (handle_mime(ms, mime, "x-empty") == -1)
|
|
|
|
- return -1;
|
|
|
|
- } else if (file_printf(ms, "%sempty", COMMA) == -1)
|
|
|
|
+ */
|
|
|
|
+ if ((ms->flags & MAGIC_DEVICES) == 0 && sb->st_size == 0) {
|
|
|
|
+ if (mime) {
|
|
|
|
+ if (handle_mime(ms, mime, "x-empty") == -1)
|
|
|
|
return -1;
|
|
|
|
+ } else if (file_printf(ms, "%sempty", COMMA) == -1)
|
2010-02-01 06:54:00 +08:00
|
|
|
+ return -1;
|
2013-04-08 04:15:56 +08:00
|
|
|
break;
|
|
|
|
- }
|
|
|
|
+ }
|
|
|
|
ret = 0;
|
|
|
|
break;
|
|
|
|
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -366,9 +253,5 @@
|
2013-04-08 04:15:56 +08:00
|
|
|
/*NOTREACHED*/
|
2010-02-01 06:54:00 +08:00
|
|
|
}
|
|
|
|
|
2014-02-19 18:20:24 +08:00
|
|
|
- if (!mime && did && ret == 0) {
|
2013-04-08 04:15:56 +08:00
|
|
|
- if (file_printf(ms, " ") == -1)
|
|
|
|
- return -1;
|
|
|
|
- }
|
|
|
|
return ret;
|
|
|
|
}
|
2012-04-22 19:38:14 +08:00
|
|
|
diff -u libmagic.orig/funcs.c libmagic/funcs.c
|
2014-02-19 18:20:24 +08:00
|
|
|
--- libmagic.orig/funcs.c Thu Feb 13 00:20:53 2014
|
|
|
|
+++ libmagic/funcs.c Wed Feb 19 10:10:11 2014
|
|
|
|
@@ -41,79 +41,76 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
#if defined(HAVE_WCTYPE_H)
|
|
|
|
#include <wctype.h>
|
|
|
|
#endif
|
|
|
|
-#if defined(HAVE_LIMITS_H)
|
|
|
|
-#include <limits.h>
|
2014-02-19 18:20:24 +08:00
|
|
|
-#endif
|
|
|
|
#if defined(HAVE_LOCALE_H)
|
|
|
|
#include <locale.h>
|
2012-03-27 19:34:46 +08:00
|
|
|
#endif
|
2010-02-01 06:54:00 +08:00
|
|
|
|
2014-02-19 18:20:24 +08:00
|
|
|
#ifndef SIZE_MAX
|
2010-02-01 06:54:00 +08:00
|
|
|
-#define SIZE_MAX ((size_t)~0)
|
2014-02-19 18:20:24 +08:00
|
|
|
+# define SIZE_MAX ((size_t) -1)
|
2010-02-01 06:54:00 +08:00
|
|
|
#endif
|
|
|
|
|
2014-02-19 18:20:24 +08:00
|
|
|
-/*
|
|
|
|
- * Like printf, only we append to a buffer.
|
|
|
|
- */
|
|
|
|
-protected int
|
2010-02-01 06:54:00 +08:00
|
|
|
-file_vprintf(struct magic_set *ms, const char *fmt, va_list ap)
|
2014-02-19 18:20:24 +08:00
|
|
|
-{
|
|
|
|
- int len;
|
2010-02-01 06:54:00 +08:00
|
|
|
- char *buf, *newstr;
|
2014-02-19 18:20:24 +08:00
|
|
|
+#ifndef PREG_OFFSET_CAPTURE
|
|
|
|
+# define PREG_OFFSET_CAPTURE (1<<8)
|
|
|
|
+#endif
|
2010-02-01 06:54:00 +08:00
|
|
|
|
2014-02-19 18:20:24 +08:00
|
|
|
- if (ms->event_flags & EVENT_HAD_ERR)
|
|
|
|
- return 0;
|
2010-02-01 06:54:00 +08:00
|
|
|
- len = vasprintf(&buf, fmt, ap);
|
|
|
|
- if (len < 0)
|
|
|
|
- goto out;
|
2014-02-19 18:20:24 +08:00
|
|
|
-
|
|
|
|
- if (ms->o.buf != NULL) {
|
2010-02-01 06:54:00 +08:00
|
|
|
- len = asprintf(&newstr, "%s%s", ms->o.buf, buf);
|
|
|
|
- free(buf);
|
|
|
|
- if (len < 0)
|
|
|
|
- goto out;
|
|
|
|
- free(ms->o.buf);
|
|
|
|
- buf = newstr;
|
2014-02-19 18:20:24 +08:00
|
|
|
- }
|
2010-02-01 06:54:00 +08:00
|
|
|
- ms->o.buf = buf;
|
2014-02-19 18:20:24 +08:00
|
|
|
- return 0;
|
2010-02-01 06:54:00 +08:00
|
|
|
-out:
|
|
|
|
- file_error(ms, errno, "vasprintf failed");
|
|
|
|
- return -1;
|
|
|
|
-}
|
2014-02-19 18:20:24 +08:00
|
|
|
+extern public void convert_libmagic_pattern(zval *pattern, int options);
|
|
|
|
|
|
|
|
protected int
|
|
|
|
file_printf(struct magic_set *ms, const char *fmt, ...)
|
|
|
|
{
|
2010-02-01 06:54:00 +08:00
|
|
|
- int rv;
|
2014-02-19 18:20:24 +08:00
|
|
|
va_list ap;
|
|
|
|
+ int len;
|
|
|
|
+ char *buf = NULL, *newstr;
|
|
|
|
|
|
|
|
va_start(ap, fmt);
|
2010-02-01 06:54:00 +08:00
|
|
|
- rv = file_vprintf(ms, fmt, ap);
|
2014-02-19 18:20:24 +08:00
|
|
|
+ len = vspprintf(&buf, 0, fmt, ap);
|
|
|
|
va_end(ap);
|
2010-02-01 06:54:00 +08:00
|
|
|
- return rv;
|
2014-02-19 18:20:24 +08:00
|
|
|
+
|
|
|
|
+ if (ms->o.buf != NULL) {
|
|
|
|
+ len = spprintf(&newstr, 0, "%s%s", ms->o.buf, (buf ? buf : ""));
|
|
|
|
+ if (buf) {
|
|
|
|
+ efree(buf);
|
|
|
|
+ }
|
|
|
|
+ efree(ms->o.buf);
|
|
|
|
+ ms->o.buf = newstr;
|
|
|
|
+ } else {
|
|
|
|
+ ms->o.buf = buf;
|
|
|
|
+ }
|
|
|
|
+ return 0;
|
2010-02-01 06:54:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2014-02-19 18:20:24 +08:00
|
|
|
* error - print best error message possible
|
|
|
|
*/
|
|
|
|
/*VARARGS*/
|
|
|
|
-__attribute__((__format__(__printf__, 3, 0)))
|
|
|
|
private void
|
2010-02-01 06:54:00 +08:00
|
|
|
file_error_core(struct magic_set *ms, int error, const char *f, va_list va,
|
2012-03-27 19:34:46 +08:00
|
|
|
size_t lineno)
|
2010-02-01 06:54:00 +08:00
|
|
|
{
|
|
|
|
+ char *buf = NULL;
|
|
|
|
+
|
|
|
|
/* Only the first error is ok */
|
2012-03-27 19:34:46 +08:00
|
|
|
if (ms->event_flags & EVENT_HAD_ERR)
|
2010-02-01 06:54:00 +08:00
|
|
|
return;
|
|
|
|
if (lineno != 0) {
|
|
|
|
- free(ms->o.buf);
|
|
|
|
+ efree(ms->o.buf);
|
|
|
|
ms->o.buf = NULL;
|
2012-03-27 19:34:46 +08:00
|
|
|
file_printf(ms, "line %" SIZE_T_FORMAT "u: ", lineno);
|
2010-02-01 06:54:00 +08:00
|
|
|
}
|
|
|
|
- file_vprintf(ms, f, va);
|
|
|
|
- if (error > 0)
|
|
|
|
- file_printf(ms, " (%s)", strerror(error));
|
|
|
|
+
|
|
|
|
+ vspprintf(&buf, 0, f, va);
|
|
|
|
+ va_end(va);
|
|
|
|
+
|
|
|
|
+ if (error > 0) {
|
|
|
|
+ file_printf(ms, "%s (%s)", (*buf ? buf : ""), strerror(error));
|
|
|
|
+ } else if (*buf) {
|
|
|
|
+ file_printf(ms, "%s", buf);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ if (buf) {
|
|
|
|
+ efree(buf);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
ms->event_flags |= EVENT_HAD_ERR;
|
|
|
|
ms->error = error;
|
|
|
|
}
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -160,10 +157,9 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
file_error(ms, errno, "error reading");
|
|
|
|
}
|
|
|
|
|
|
|
|
-#ifndef COMPILE_ONLY
|
|
|
|
protected int
|
2012-03-27 19:34:46 +08:00
|
|
|
-file_buffer(struct magic_set *ms, int fd, const char *inname __attribute__ ((unused)),
|
|
|
|
- const void *buf, size_t nb)
|
2010-02-01 06:54:00 +08:00
|
|
|
+file_buffer(struct magic_set *ms, php_stream *stream, const char *inname, const void *buf,
|
2012-03-27 19:34:46 +08:00
|
|
|
+ size_t nb)
|
2010-02-01 06:54:00 +08:00
|
|
|
{
|
|
|
|
int m = 0, rv = 0, looks_text = 0;
|
|
|
|
int mime = ms->flags & MAGIC_MIME;
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -203,10 +199,10 @@
|
2012-03-27 19:34:46 +08:00
|
|
|
}
|
2010-02-01 06:54:00 +08:00
|
|
|
}
|
|
|
|
#endif
|
2012-03-27 19:34:46 +08:00
|
|
|
-#if HAVE_FORK
|
2010-02-01 06:54:00 +08:00
|
|
|
- /* try compression stuff */
|
2012-03-27 19:34:46 +08:00
|
|
|
+
|
2010-02-01 06:54:00 +08:00
|
|
|
+#if PHP_FILEINFO_UNCOMPRESS
|
|
|
|
if ((ms->flags & MAGIC_NO_CHECK_COMPRESS) == 0)
|
|
|
|
- if ((m = file_zmagic(ms, fd, inname, ubuf, nb)) != 0) {
|
|
|
|
+ if ((m = file_zmagic(ms, stream, inname, ubuf, nb)) != 0) {
|
|
|
|
if ((ms->flags & MAGIC_DEBUG) != 0)
|
|
|
|
(void)fprintf(stderr, "zmagic %d\n", m);
|
2014-02-19 18:20:24 +08:00
|
|
|
goto done_encoding;
|
|
|
|
@@ -221,12 +217,17 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Check if we have a CDF file */
|
|
|
|
- if ((ms->flags & MAGIC_NO_CHECK_CDF) == 0)
|
|
|
|
- if ((m = file_trycdf(ms, fd, ubuf, nb)) != 0) {
|
|
|
|
- if ((ms->flags & MAGIC_DEBUG) != 0)
|
|
|
|
- (void)fprintf(stderr, "cdf %d\n", m);
|
|
|
|
- goto done;
|
|
|
|
+ if ((ms->flags & MAGIC_NO_CHECK_CDF) == 0) {
|
|
|
|
+ int fd;
|
|
|
|
+ TSRMLS_FETCH();
|
|
|
|
+ if (stream && SUCCESS == php_stream_cast(stream, PHP_STREAM_AS_FD, (void **)&fd, 0)) {
|
|
|
|
+ if ((m = file_trycdf(ms, fd, ubuf, nb)) != 0) {
|
|
|
|
+ if ((ms->flags & MAGIC_DEBUG) != 0)
|
|
|
|
+ (void)fprintf(stderr, "cdf %d\n", m);
|
|
|
|
+ goto done;
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/* try soft magic tests */
|
|
|
|
if ((ms->flags & MAGIC_NO_CHECK_SOFT) == 0)
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -300,7 +301,6 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
|
|
|
|
return m;
|
|
|
|
}
|
|
|
|
-#endif
|
|
|
|
|
|
|
|
protected int
|
|
|
|
file_reset(struct magic_set *ms)
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -310,11 +310,11 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (ms->o.buf) {
|
|
|
|
- free(ms->o.buf);
|
|
|
|
+ efree(ms->o.buf);
|
|
|
|
ms->o.buf = NULL;
|
|
|
|
}
|
|
|
|
if (ms->o.pbuf) {
|
|
|
|
- free(ms->o.pbuf);
|
|
|
|
+ efree(ms->o.pbuf);
|
|
|
|
ms->o.pbuf = NULL;
|
|
|
|
}
|
|
|
|
ms->event_flags &= ~EVENT_HAD_ERR;
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -333,7 +333,7 @@
|
2013-04-08 04:15:56 +08:00
|
|
|
protected const char *
|
|
|
|
file_getbuffer(struct magic_set *ms)
|
|
|
|
{
|
|
|
|
- char *pbuf, *op, *np;
|
|
|
|
+ char *op, *np;
|
|
|
|
size_t psize, len;
|
|
|
|
|
|
|
|
if (ms->event_flags & EVENT_HAD_ERR)
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -348,15 +348,13 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
/* * 4 is for octal representation, + 1 is for NUL */
|
|
|
|
len = strlen(ms->o.buf);
|
|
|
|
if (len > (SIZE_MAX - 1) / 4) {
|
|
|
|
- file_oomem(ms, len);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
psize = len * 4 + 1;
|
|
|
|
- if ((pbuf = CAST(char *, realloc(ms->o.pbuf, psize))) == NULL) {
|
2013-04-08 04:15:56 +08:00
|
|
|
+ if ((ms->o.pbuf = CAST(char *, erealloc(ms->o.pbuf, psize))) == NULL) {
|
|
|
|
file_oomem(ms, psize);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
- ms->o.pbuf = pbuf;
|
2010-02-01 06:54:00 +08:00
|
|
|
|
|
|
|
#if defined(HAVE_WCHAR_H) && defined(HAVE_MBRTOWC) && defined(HAVE_WCWIDTH)
|
2013-04-08 04:15:56 +08:00
|
|
|
{
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -416,8 +414,8 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
if (level >= ms->c.len) {
|
|
|
|
len = (ms->c.len += 20) * sizeof(*ms->c.li);
|
2013-04-08 04:15:56 +08:00
|
|
|
ms->c.li = CAST(struct level_info *, (ms->c.li == NULL) ?
|
2010-02-01 06:54:00 +08:00
|
|
|
- malloc(len) :
|
|
|
|
- realloc(ms->c.li, len));
|
2013-04-08 04:15:56 +08:00
|
|
|
+ emalloc(len) :
|
|
|
|
+ erealloc(ms->c.li, len));
|
|
|
|
if (ms->c.li == NULL) {
|
|
|
|
file_oomem(ms, len);
|
|
|
|
return -1;
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -437,32 +435,50 @@
|
2012-03-27 19:34:46 +08:00
|
|
|
return ms->o.buf == NULL ? 0 : strlen(ms->o.buf);
|
|
|
|
}
|
|
|
|
|
2012-03-28 18:06:09 +08:00
|
|
|
-protected int
|
|
|
|
file_replace(struct magic_set *ms, const char *pat, const char *rep)
|
|
|
|
{
|
|
|
|
- regex_t rx;
|
2014-02-19 18:20:24 +08:00
|
|
|
- int rc, rv = -1;
|
2012-03-27 19:34:46 +08:00
|
|
|
+ zval *patt;
|
|
|
|
+ int opts = 0;
|
|
|
|
+ pcre_cache_entry *pce;
|
|
|
|
+ char *res;
|
|
|
|
+ zval *repl;
|
2012-04-22 19:38:14 +08:00
|
|
|
+ int res_len, rep_cnt = 0;
|
2012-03-28 18:06:09 +08:00
|
|
|
+ TSRMLS_FETCH();
|
2014-02-19 18:20:24 +08:00
|
|
|
|
|
|
|
(void)setlocale(LC_CTYPE, "C");
|
|
|
|
- rc = regcomp(&rx, pat, REG_EXTENDED);
|
|
|
|
- if (rc) {
|
|
|
|
- char errmsg[512];
|
|
|
|
- (void)regerror(rc, &rx, errmsg, sizeof(errmsg));
|
|
|
|
- file_magerror(ms, "regex error %d, (%s)", rc, errmsg);
|
|
|
|
- } else {
|
|
|
|
- regmatch_t rm;
|
|
|
|
- int nm = 0;
|
|
|
|
- while (regexec(&rx, ms->o.buf, 1, &rm, 0) == 0) {
|
|
|
|
- ms->o.buf[rm.rm_so] = '\0';
|
|
|
|
- if (file_printf(ms, "%s%s", rep,
|
|
|
|
- rm.rm_eo != 0 ? ms->o.buf + rm.rm_eo : "") == -1)
|
|
|
|
- goto out;
|
|
|
|
- nm++;
|
|
|
|
- }
|
|
|
|
- regfree(&rx);
|
|
|
|
- rv = nm;
|
2012-03-27 19:34:46 +08:00
|
|
|
+
|
|
|
|
+ MAKE_STD_ZVAL(patt);
|
|
|
|
+ ZVAL_STRINGL(patt, pat, strlen(pat), 0);
|
|
|
|
+ opts |= PCRE_MULTILINE;
|
|
|
|
+ convert_libmagic_pattern(patt, opts);
|
|
|
|
+ if ((pce = pcre_get_compiled_regex_cache(Z_STRVAL_P(patt), Z_STRLEN_P(patt) TSRMLS_CC)) == NULL) {
|
|
|
|
+ zval_dtor(patt);
|
|
|
|
+ FREE_ZVAL(patt);
|
2014-02-19 18:20:24 +08:00
|
|
|
+ rep_cnt = -1;
|
|
|
|
+ goto out;
|
|
|
|
}
|
2012-03-27 19:34:46 +08:00
|
|
|
+
|
|
|
|
+ MAKE_STD_ZVAL(repl);
|
|
|
|
+ ZVAL_STRINGL(repl, rep, strlen(rep), 0);
|
2013-04-08 04:15:56 +08:00
|
|
|
+
|
|
|
|
+ res = php_pcre_replace_impl(pce, ms->o.buf, strlen(ms->o.buf), repl,
|
|
|
|
+ 0, &res_len, -1, &rep_cnt TSRMLS_CC);
|
2014-02-19 18:20:24 +08:00
|
|
|
+
|
2012-03-27 19:34:46 +08:00
|
|
|
+ FREE_ZVAL(repl);
|
|
|
|
+ zval_dtor(patt);
|
|
|
|
+ FREE_ZVAL(patt);
|
|
|
|
+
|
|
|
|
+ if (NULL == res) {
|
2014-02-19 18:20:24 +08:00
|
|
|
+ rep_cnt = -1;
|
|
|
|
+ goto out;
|
|
|
|
+ }
|
2012-03-27 19:34:46 +08:00
|
|
|
+
|
|
|
|
+ strncpy(ms->o.buf, res, res_len);
|
|
|
|
+ ms->o.buf[res_len] = '\0';
|
|
|
|
+
|
|
|
|
+ efree(res);
|
|
|
|
+
|
2014-02-19 18:20:24 +08:00
|
|
|
out:
|
|
|
|
(void)setlocale(LC_CTYPE, "");
|
|
|
|
- return rv;
|
2012-03-27 19:34:46 +08:00
|
|
|
+ return rep_cnt;
|
|
|
|
}
|
2012-04-22 19:38:14 +08:00
|
|
|
diff -u libmagic.orig/magic.c libmagic/magic.c
|
2014-02-19 18:20:24 +08:00
|
|
|
--- libmagic.orig/magic.c Sun Dec 1 20:22:13 2013
|
|
|
|
+++ libmagic/magic.c Wed Feb 19 10:10:11 2014
|
2012-03-27 19:34:46 +08:00
|
|
|
@@ -25,11 +25,6 @@
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
-#ifdef WIN32
|
|
|
|
-#include <windows.h>
|
|
|
|
-#include <shlwapi.h>
|
|
|
|
-#endif
|
|
|
|
-
|
|
|
|
#include "file.h"
|
|
|
|
|
|
|
|
#ifndef lint
|
|
|
|
@@ -39,15 +34,24 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
#include "magic.h"
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
+#ifdef PHP_WIN32
|
|
|
|
+#include "win32/unistd.h"
|
|
|
|
+#else
|
|
|
|
#include <unistd.h>
|
|
|
|
+#endif
|
|
|
|
#include <string.h>
|
|
|
|
-#ifdef QUICK
|
|
|
|
-#include <sys/mman.h>
|
|
|
|
+#ifdef PHP_WIN32
|
|
|
|
+# include "config.w32.h"
|
|
|
|
+#else
|
|
|
|
+# include "php_config.h"
|
|
|
|
#endif
|
|
|
|
-#ifdef HAVE_LIMITS_H
|
2012-03-27 19:34:46 +08:00
|
|
|
-#include <limits.h> /* for PIPE_BUF */
|
2010-02-01 06:54:00 +08:00
|
|
|
+
|
2012-03-27 19:34:46 +08:00
|
|
|
+#ifdef PHP_WIN32
|
|
|
|
+#include <shlwapi.h>
|
|
|
|
#endif
|
2010-02-01 06:54:00 +08:00
|
|
|
|
2012-03-27 19:34:46 +08:00
|
|
|
+#include <limits.h> /* for PIPE_BUF */
|
|
|
|
+
|
2010-02-01 06:54:00 +08:00
|
|
|
#if defined(HAVE_UTIMES)
|
|
|
|
# include <sys/time.h>
|
2012-03-27 19:34:46 +08:00
|
|
|
#elif defined(HAVE_UTIME)
|
2013-04-27 20:09:29 +08:00
|
|
|
@@ -71,18 +75,25 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
+#ifdef PHP_WIN32
|
|
|
|
+# undef S_IFLNK
|
|
|
|
+# undef S_IFIFO
|
|
|
|
+#endif
|
|
|
|
+
|
|
|
|
private void close_and_restore(const struct magic_set *, const char *, int,
|
|
|
|
const struct stat *);
|
|
|
|
private int unreadable_info(struct magic_set *, mode_t, const char *);
|
2013-04-27 20:09:29 +08:00
|
|
|
+#if 0
|
2012-03-27 19:34:46 +08:00
|
|
|
private const char* get_default_magic(void);
|
2010-02-01 06:54:00 +08:00
|
|
|
-#ifndef COMPILE_ONLY
|
|
|
|
-private const char *file_or_fd(struct magic_set *, const char *, int);
|
2013-04-27 20:09:29 +08:00
|
|
|
#endif
|
2010-02-01 06:54:00 +08:00
|
|
|
+private const char *file_or_stream(struct magic_set *, const char *, php_stream *);
|
|
|
|
|
|
|
|
#ifndef STDIN_FILENO
|
|
|
|
#define STDIN_FILENO 0
|
2012-03-27 19:34:46 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
+/* XXX this functionality is excluded in php, enable it in apprentice.c:340 */
|
2012-03-28 18:06:09 +08:00
|
|
|
+#if 0
|
2012-03-27 19:34:46 +08:00
|
|
|
private const char *
|
|
|
|
get_default_magic(void)
|
|
|
|
{
|
2013-04-27 20:09:29 +08:00
|
|
|
@@ -90,7 +101,7 @@
|
2012-03-27 19:34:46 +08:00
|
|
|
static char *default_magic;
|
|
|
|
char *home, *hmagicpath;
|
|
|
|
|
|
|
|
-#ifndef WIN32
|
|
|
|
+#ifndef PHP_WIN32
|
|
|
|
struct stat st;
|
|
|
|
|
|
|
|
if (default_magic) {
|
2013-04-27 20:09:29 +08:00
|
|
|
@@ -104,17 +115,17 @@
|
2013-04-08 04:15:56 +08:00
|
|
|
return MAGIC;
|
|
|
|
if (stat(hmagicpath, &st) == -1) {
|
|
|
|
free(hmagicpath);
|
|
|
|
- if (asprintf(&hmagicpath, "%s/.magic", home) < 0)
|
|
|
|
+ if (asprintf(&hmagicpath, "%s/.magic", home) < 0)
|
|
|
|
+ return MAGIC;
|
|
|
|
+ if (stat(hmagicpath, &st) == -1)
|
|
|
|
+ goto out;
|
|
|
|
+ if (S_ISDIR(st.st_mode)) {
|
|
|
|
+ free(hmagicpath);
|
|
|
|
+ if (asprintf(&hmagicpath, "%s/%s", home, hmagic) < 0)
|
|
|
|
return MAGIC;
|
|
|
|
- if (stat(hmagicpath, &st) == -1)
|
|
|
|
+ if (access(hmagicpath, R_OK) == -1)
|
|
|
|
goto out;
|
|
|
|
- if (S_ISDIR(st.st_mode)) {
|
|
|
|
- free(hmagicpath);
|
|
|
|
- if (asprintf(&hmagicpath, "%s/%s", home, hmagic) < 0)
|
|
|
|
- return MAGIC;
|
|
|
|
- if (access(hmagicpath, R_OK) == -1)
|
|
|
|
- goto out;
|
|
|
|
- }
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
|
|
|
|
if (asprintf(&default_magic, "%s:%s", hmagicpath, MAGIC) < 0)
|
2013-04-27 20:09:29 +08:00
|
|
|
@@ -128,6 +139,7 @@
|
2012-03-27 19:34:46 +08:00
|
|
|
#else
|
|
|
|
char *hmagicp = hmagicpath;
|
|
|
|
char *tmppath = NULL;
|
|
|
|
+ LPTSTR dllpath;
|
|
|
|
|
|
|
|
#define APPENDPATH() \
|
|
|
|
do { \
|
2013-04-27 20:09:29 +08:00
|
|
|
@@ -172,7 +184,7 @@
|
2012-03-27 19:34:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Third, try to get magic file relative to dll location */
|
|
|
|
- LPTSTR dllpath = malloc(sizeof(*dllpath) * (MAX_PATH + 1));
|
|
|
|
+ dllpath = malloc(sizeof(*dllpath) * (MAX_PATH + 1));
|
|
|
|
dllpath[MAX_PATH] = 0; /* just in case long path gets truncated and not null terminated */
|
|
|
|
if (GetModuleFileNameA(NULL, dllpath, MAX_PATH)){
|
|
|
|
PathRemoveFileSpecA(dllpath);
|
2013-04-27 20:09:29 +08:00
|
|
|
@@ -210,6 +222,7 @@
|
2012-03-28 18:06:09 +08:00
|
|
|
|
|
|
|
return action == FILE_LOAD ? get_default_magic() : MAGIC;
|
|
|
|
}
|
|
|
|
+#endif
|
|
|
|
|
|
|
|
public struct magic_set *
|
2010-02-01 06:54:00 +08:00
|
|
|
magic_open(int flags)
|
2013-04-27 20:09:29 +08:00
|
|
|
@@ -262,13 +275,6 @@
|
2013-04-08 04:15:56 +08:00
|
|
|
return file_apprentice(ms, magicfile, FILE_COMPILE);
|
2010-02-01 06:54:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
-public int
|
|
|
|
-magic_check(struct magic_set *ms, const char *magicfile)
|
|
|
|
-{
|
2013-04-08 04:15:56 +08:00
|
|
|
- if (ms == NULL)
|
|
|
|
- return -1;
|
|
|
|
- return file_apprentice(ms, magicfile, FILE_CHECK);
|
2010-02-01 06:54:00 +08:00
|
|
|
-}
|
2012-03-27 19:34:46 +08:00
|
|
|
|
|
|
|
public int
|
|
|
|
magic_list(struct magic_set *ms, const char *magicfile)
|
2013-04-27 20:09:29 +08:00
|
|
|
@@ -282,9 +288,6 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
close_and_restore(const struct magic_set *ms, const char *name, int fd,
|
|
|
|
const struct stat *sb)
|
|
|
|
{
|
2014-02-19 18:20:24 +08:00
|
|
|
- if (fd == STDIN_FILENO || name == NULL)
|
2010-02-01 06:54:00 +08:00
|
|
|
- return;
|
|
|
|
- (void) close(fd);
|
|
|
|
|
|
|
|
if ((ms->flags & MAGIC_PRESERVE_ATIME) != 0) {
|
|
|
|
/*
|
2013-04-27 20:09:29 +08:00
|
|
|
@@ -311,7 +314,6 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
-#ifndef COMPILE_ONLY
|
|
|
|
|
|
|
|
/*
|
|
|
|
* find type of descriptor
|
2013-04-27 20:09:29 +08:00
|
|
|
@@ -321,7 +323,7 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
{
|
2013-04-08 04:15:56 +08:00
|
|
|
if (ms == NULL)
|
|
|
|
return NULL;
|
2010-02-01 06:54:00 +08:00
|
|
|
- return file_or_fd(ms, NULL, fd);
|
|
|
|
+ return file_or_stream(ms, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -332,31 +334,42 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
{
|
2013-04-08 04:15:56 +08:00
|
|
|
if (ms == NULL)
|
|
|
|
return NULL;
|
2010-02-01 06:54:00 +08:00
|
|
|
- return file_or_fd(ms, inname, STDIN_FILENO);
|
|
|
|
+ return file_or_stream(ms, inname, NULL);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+public const char *
|
|
|
|
+magic_stream(struct magic_set *ms, php_stream *stream)
|
|
|
|
+{
|
2013-04-08 04:15:56 +08:00
|
|
|
+ if (ms == NULL)
|
|
|
|
+ return NULL;
|
2010-02-01 06:54:00 +08:00
|
|
|
+ return file_or_stream(ms, NULL, stream);
|
|
|
|
}
|
|
|
|
|
|
|
|
private const char *
|
|
|
|
-file_or_fd(struct magic_set *ms, const char *inname, int fd)
|
|
|
|
+file_or_stream(struct magic_set *ms, const char *inname, php_stream *stream)
|
|
|
|
{
|
|
|
|
int rv = -1;
|
|
|
|
unsigned char *buf;
|
|
|
|
struct stat sb;
|
|
|
|
ssize_t nbytes = 0; /* number of bytes read from a datafile */
|
|
|
|
- int ispipe = 0;
|
2014-02-19 18:20:24 +08:00
|
|
|
- off_t pos = (off_t)-1;
|
2010-02-01 06:54:00 +08:00
|
|
|
+ int no_in_stream = 0;
|
|
|
|
+ TSRMLS_FETCH();
|
|
|
|
+
|
|
|
|
+ if (!inname && !stream) {
|
|
|
|
+ return NULL;
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/*
|
|
|
|
* one extra for terminating '\0', and
|
|
|
|
* some overlapping space for matches near EOF
|
|
|
|
*/
|
|
|
|
#define SLOP (1 + sizeof(union VALUETYPE))
|
|
|
|
- if ((buf = CAST(unsigned char *, malloc(HOWMANY + SLOP))) == NULL)
|
|
|
|
- return NULL;
|
|
|
|
+ buf = emalloc(HOWMANY + SLOP);
|
|
|
|
|
2012-03-27 19:34:46 +08:00
|
|
|
if (file_reset(ms) == -1)
|
2010-02-01 06:54:00 +08:00
|
|
|
goto done;
|
|
|
|
|
|
|
|
- switch (file_fsmagic(ms, inname, &sb)) {
|
|
|
|
+ switch (file_fsmagic(ms, inname, &sb, stream)) {
|
2012-03-27 19:34:46 +08:00
|
|
|
case -1: /* error */
|
|
|
|
goto done;
|
|
|
|
case 0: /* nothing found */
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -366,74 +379,44 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
- if (inname == NULL) {
|
|
|
|
- if (fstat(fd, &sb) == 0 && S_ISFIFO(sb.st_mode))
|
|
|
|
- ispipe = 1;
|
2014-02-19 18:20:24 +08:00
|
|
|
- else
|
|
|
|
- pos = lseek(fd, (off_t)0, SEEK_CUR);
|
2010-02-01 06:54:00 +08:00
|
|
|
- } else {
|
|
|
|
- int flags = O_RDONLY|O_BINARY;
|
2014-02-19 18:20:24 +08:00
|
|
|
- int okstat = stat(inname, &sb) == 0;
|
2012-03-27 19:34:46 +08:00
|
|
|
+ errno = 0;
|
|
|
|
|
2014-02-19 18:20:24 +08:00
|
|
|
- if (okstat && S_ISFIFO(sb.st_mode)) {
|
2012-03-27 19:34:46 +08:00
|
|
|
-#ifdef O_NONBLOCK
|
2010-02-01 06:54:00 +08:00
|
|
|
- flags |= O_NONBLOCK;
|
2014-02-19 18:20:24 +08:00
|
|
|
-#endif
|
|
|
|
- ispipe = 1;
|
|
|
|
- }
|
2012-03-27 19:34:46 +08:00
|
|
|
+ if (!stream && inname) {
|
|
|
|
+ no_in_stream = 1;
|
|
|
|
+ stream = php_stream_open_wrapper((char *)inname, "rb", REPORT_ERRORS, NULL);
|
|
|
|
+ }
|
|
|
|
|
2010-02-01 06:54:00 +08:00
|
|
|
- errno = 0;
|
|
|
|
- if ((fd = open(inname, flags)) < 0) {
|
2014-02-19 18:20:24 +08:00
|
|
|
- if (okstat &&
|
|
|
|
- unreadable_info(ms, sb.st_mode, inname) == -1)
|
2010-02-01 06:54:00 +08:00
|
|
|
- goto done;
|
|
|
|
- rv = 0;
|
2012-03-27 19:34:46 +08:00
|
|
|
+ if (!stream) {
|
|
|
|
+ if (unreadable_info(ms, sb.st_mode, inname) == -1)
|
|
|
|
goto done;
|
2010-02-01 06:54:00 +08:00
|
|
|
- }
|
2012-03-27 19:34:46 +08:00
|
|
|
+ rv = 0;
|
|
|
|
+ goto done;
|
|
|
|
+ }
|
|
|
|
+
|
2010-02-01 06:54:00 +08:00
|
|
|
#ifdef O_NONBLOCK
|
|
|
|
- if ((flags = fcntl(fd, F_GETFL)) != -1) {
|
|
|
|
- flags &= ~O_NONBLOCK;
|
|
|
|
- (void)fcntl(fd, F_SETFL, flags);
|
|
|
|
- }
|
|
|
|
+/* we should be already be in non blocking mode for network socket */
|
|
|
|
#endif
|
|
|
|
- }
|
|
|
|
|
|
|
|
/*
|
|
|
|
* try looking at the first HOWMANY bytes
|
|
|
|
*/
|
|
|
|
- if (ispipe) {
|
|
|
|
- ssize_t r = 0;
|
|
|
|
-
|
|
|
|
- while ((r = sread(fd, (void *)&buf[nbytes],
|
|
|
|
- (size_t)(HOWMANY - nbytes), 1)) > 0) {
|
|
|
|
- nbytes += r;
|
|
|
|
- if (r < PIPE_BUF) break;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- if (nbytes == 0) {
|
|
|
|
- /* We can not read it, but we were able to stat it. */
|
|
|
|
- if (unreadable_info(ms, sb.st_mode, inname) == -1)
|
|
|
|
- goto done;
|
|
|
|
- rv = 0;
|
|
|
|
- goto done;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- } else {
|
|
|
|
- if ((nbytes = read(fd, (char *)buf, HOWMANY)) == -1) {
|
|
|
|
- file_error(ms, errno, "cannot read `%s'", inname);
|
|
|
|
- goto done;
|
|
|
|
- }
|
|
|
|
+ if ((nbytes = php_stream_read(stream, (char *)buf, HOWMANY)) < 0) {
|
|
|
|
+ file_error(ms, errno, "cannot read `%s'", inname);
|
|
|
|
+ goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
(void)memset(buf + nbytes, 0, SLOP); /* NUL terminate */
|
|
|
|
- if (file_buffer(ms, fd, inname, buf, (size_t)nbytes) == -1)
|
|
|
|
+ if (file_buffer(ms, stream, inname, buf, (size_t)nbytes) == -1)
|
|
|
|
goto done;
|
|
|
|
rv = 0;
|
|
|
|
done:
|
|
|
|
- free(buf);
|
2014-02-19 18:20:24 +08:00
|
|
|
- if (pos != (off_t)-1)
|
|
|
|
- (void)lseek(fd, pos, SEEK_SET);
|
2010-02-01 06:54:00 +08:00
|
|
|
- close_and_restore(ms, inname, fd, &sb);
|
|
|
|
+ efree(buf);
|
|
|
|
+
|
|
|
|
+ if (no_in_stream && stream) {
|
|
|
|
+ php_stream_close(stream);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ close_and_restore(ms, inname, 0, &sb);
|
|
|
|
return rv == 0 ? file_getbuffer(ms) : NULL;
|
|
|
|
}
|
|
|
|
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -447,14 +430,13 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
return NULL;
|
|
|
|
/*
|
|
|
|
* The main work is done here!
|
|
|
|
- * We have the file name and/or the data buffer to be identified.
|
|
|
|
+ * We have the file name and/or the data buffer to be identified.
|
|
|
|
*/
|
|
|
|
- if (file_buffer(ms, -1, NULL, buf, nb) == -1) {
|
|
|
|
+ if (file_buffer(ms, NULL, NULL, buf, nb) == -1) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return file_getbuffer(ms);
|
|
|
|
}
|
|
|
|
-#endif
|
|
|
|
|
|
|
|
public const char *
|
|
|
|
magic_error(struct magic_set *ms)
|
2012-04-22 19:38:14 +08:00
|
|
|
diff -u libmagic.orig/magic.h libmagic/magic.h
|
2014-02-19 18:20:24 +08:00
|
|
|
--- libmagic.orig/magic.h Wed Feb 19 10:53:11 2014
|
|
|
|
+++ libmagic/magic.h Wed Feb 19 10:46:54 2014
|
|
|
|
@@ -88,6 +88,7 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
|
2012-03-27 19:34:46 +08:00
|
|
|
const char *magic_getpath(const char *, int);
|
2010-02-01 06:54:00 +08:00
|
|
|
const char *magic_file(magic_t, const char *);
|
|
|
|
+const char *magic_stream(magic_t, php_stream *);
|
|
|
|
const char *magic_descriptor(magic_t, int);
|
|
|
|
const char *magic_buffer(magic_t, const void *, size_t);
|
|
|
|
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -97,7 +98,6 @@
|
2013-04-08 04:15:56 +08:00
|
|
|
int magic_version(void);
|
2010-02-01 06:54:00 +08:00
|
|
|
int magic_load(magic_t, const char *);
|
|
|
|
int magic_compile(magic_t, const char *);
|
|
|
|
-int magic_check(magic_t, const char *);
|
2012-03-27 19:34:46 +08:00
|
|
|
int magic_list(magic_t, const char *);
|
2010-02-01 06:54:00 +08:00
|
|
|
int magic_errno(magic_t);
|
|
|
|
|
2012-04-22 19:38:14 +08:00
|
|
|
diff -u libmagic.orig/print.c libmagic/print.c
|
2014-02-19 18:20:24 +08:00
|
|
|
--- libmagic.orig/print.c Tue Feb 26 19:25:00 2013
|
|
|
|
+++ libmagic/print.c Tue Feb 18 10:59:23 2014
|
|
|
|
@@ -28,13 +28,17 @@
|
|
|
|
/*
|
2010-02-01 06:54:00 +08:00
|
|
|
* print.c - debugging printout routines
|
|
|
|
*/
|
2012-07-15 18:25:58 +08:00
|
|
|
+#define _GNU_SOURCE
|
2012-03-27 19:34:46 +08:00
|
|
|
+#include "php.h"
|
2014-02-19 18:20:24 +08:00
|
|
|
|
2010-02-01 06:54:00 +08:00
|
|
|
#include "file.h"
|
2013-04-27 20:09:29 +08:00
|
|
|
+#include "cdf.h"
|
2010-02-01 06:54:00 +08:00
|
|
|
|
2013-04-27 20:09:29 +08:00
|
|
|
#ifndef lint
|
2013-04-08 04:15:56 +08:00
|
|
|
FILE_RCSID("@(#)$File: print.c,v 1.76 2013/02/26 18:25:00 christos Exp $")
|
2012-10-16 17:03:32 +08:00
|
|
|
#endif /* lint */
|
|
|
|
|
|
|
|
+#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdlib.h>
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -43,188 +47,28 @@
|
2013-04-08 04:15:56 +08:00
|
|
|
#endif
|
|
|
|
#include <time.h>
|
2010-02-01 06:54:00 +08:00
|
|
|
|
2013-04-08 04:15:56 +08:00
|
|
|
-#define SZOF(a) (sizeof(a) / sizeof(a[0]))
|
|
|
|
-
|
|
|
|
-#include "cdf.h"
|
|
|
|
-
|
2010-02-01 06:54:00 +08:00
|
|
|
-#ifndef COMPILE_ONLY
|
|
|
|
-protected void
|
|
|
|
-file_mdump(struct magic *m)
|
|
|
|
-{
|
2013-04-08 04:15:56 +08:00
|
|
|
- static const char optyp[] = { FILE_OPS };
|
|
|
|
- char tbuf[26];
|
2010-02-01 06:54:00 +08:00
|
|
|
-
|
2012-03-27 19:34:46 +08:00
|
|
|
- (void) fprintf(stderr, "%u: %.*s %u", m->lineno,
|
|
|
|
- (m->cont_level & 7) + 1, ">>>>>>>>", m->offset);
|
2010-02-01 06:54:00 +08:00
|
|
|
-
|
|
|
|
- if (m->flag & INDIR) {
|
|
|
|
- (void) fprintf(stderr, "(%s,",
|
2013-04-08 04:15:56 +08:00
|
|
|
- /* Note: type is unsigned */
|
|
|
|
- (m->in_type < file_nnames) ? file_names[m->in_type] :
|
|
|
|
- "*bad in_type*");
|
2010-02-01 06:54:00 +08:00
|
|
|
- if (m->in_op & FILE_OPINVERSE)
|
|
|
|
- (void) fputc('~', stderr);
|
|
|
|
- (void) fprintf(stderr, "%c%u),",
|
2013-04-08 04:15:56 +08:00
|
|
|
- ((size_t)(m->in_op & FILE_OPS_MASK) <
|
|
|
|
- SZOF(optyp)) ? optyp[m->in_op & FILE_OPS_MASK] : '?',
|
|
|
|
- m->in_offset);
|
2010-02-01 06:54:00 +08:00
|
|
|
- }
|
|
|
|
- (void) fprintf(stderr, " %s%s", (m->flag & UNSIGNED) ? "u" : "",
|
2013-04-08 04:15:56 +08:00
|
|
|
- /* Note: type is unsigned */
|
|
|
|
- (m->type < file_nnames) ? file_names[m->type] : "*bad type");
|
2010-02-01 06:54:00 +08:00
|
|
|
- if (m->mask_op & FILE_OPINVERSE)
|
|
|
|
- (void) fputc('~', stderr);
|
|
|
|
-
|
|
|
|
- if (IS_STRING(m->type)) {
|
|
|
|
- if (m->str_flags) {
|
|
|
|
- (void) fputc('/', stderr);
|
2012-03-27 19:34:46 +08:00
|
|
|
- if (m->str_flags & STRING_COMPACT_WHITESPACE)
|
|
|
|
- (void) fputc(CHAR_COMPACT_WHITESPACE, stderr);
|
|
|
|
- if (m->str_flags & STRING_COMPACT_OPTIONAL_WHITESPACE)
|
|
|
|
- (void) fputc(CHAR_COMPACT_OPTIONAL_WHITESPACE,
|
2010-02-01 06:54:00 +08:00
|
|
|
- stderr);
|
|
|
|
- if (m->str_flags & STRING_IGNORE_LOWERCASE)
|
|
|
|
- (void) fputc(CHAR_IGNORE_LOWERCASE, stderr);
|
|
|
|
- if (m->str_flags & STRING_IGNORE_UPPERCASE)
|
|
|
|
- (void) fputc(CHAR_IGNORE_UPPERCASE, stderr);
|
|
|
|
- if (m->str_flags & REGEX_OFFSET_START)
|
|
|
|
- (void) fputc(CHAR_REGEX_OFFSET_START, stderr);
|
2012-03-27 19:34:46 +08:00
|
|
|
- if (m->str_flags & STRING_TEXTTEST)
|
|
|
|
- (void) fputc(CHAR_TEXTTEST, stderr);
|
|
|
|
- if (m->str_flags & STRING_BINTEST)
|
|
|
|
- (void) fputc(CHAR_BINTEST, stderr);
|
|
|
|
- if (m->str_flags & PSTRING_1_BE)
|
|
|
|
- (void) fputc(CHAR_PSTRING_1_BE, stderr);
|
|
|
|
- if (m->str_flags & PSTRING_2_BE)
|
|
|
|
- (void) fputc(CHAR_PSTRING_2_BE, stderr);
|
|
|
|
- if (m->str_flags & PSTRING_2_LE)
|
|
|
|
- (void) fputc(CHAR_PSTRING_2_LE, stderr);
|
|
|
|
- if (m->str_flags & PSTRING_4_BE)
|
|
|
|
- (void) fputc(CHAR_PSTRING_4_BE, stderr);
|
|
|
|
- if (m->str_flags & PSTRING_4_LE)
|
|
|
|
- (void) fputc(CHAR_PSTRING_4_LE, stderr);
|
|
|
|
- if (m->str_flags & PSTRING_LENGTH_INCLUDES_ITSELF)
|
|
|
|
- (void) fputc(
|
|
|
|
- CHAR_PSTRING_LENGTH_INCLUDES_ITSELF,
|
|
|
|
- stderr);
|
2010-02-01 06:54:00 +08:00
|
|
|
- }
|
|
|
|
- if (m->str_range)
|
|
|
|
- (void) fprintf(stderr, "/%u", m->str_range);
|
|
|
|
- }
|
|
|
|
- else {
|
|
|
|
- if ((size_t)(m->mask_op & FILE_OPS_MASK) < SZOF(optyp))
|
|
|
|
- (void) fputc(optyp[m->mask_op & FILE_OPS_MASK], stderr);
|
|
|
|
- else
|
|
|
|
- (void) fputc('?', stderr);
|
|
|
|
-
|
|
|
|
- if (m->num_mask) {
|
|
|
|
- (void) fprintf(stderr, "%.8llx",
|
|
|
|
- (unsigned long long)m->num_mask);
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- (void) fprintf(stderr, ",%c", m->reln);
|
|
|
|
-
|
|
|
|
- if (m->reln != 'x') {
|
|
|
|
- switch (m->type) {
|
|
|
|
- case FILE_BYTE:
|
|
|
|
- case FILE_SHORT:
|
|
|
|
- case FILE_LONG:
|
|
|
|
- case FILE_LESHORT:
|
|
|
|
- case FILE_LELONG:
|
|
|
|
- case FILE_MELONG:
|
|
|
|
- case FILE_BESHORT:
|
|
|
|
- case FILE_BELONG:
|
2013-04-08 04:15:56 +08:00
|
|
|
- case FILE_INDIRECT:
|
2010-02-01 06:54:00 +08:00
|
|
|
- (void) fprintf(stderr, "%d", m->value.l);
|
|
|
|
- break;
|
|
|
|
- case FILE_BEQUAD:
|
|
|
|
- case FILE_LEQUAD:
|
|
|
|
- case FILE_QUAD:
|
2012-03-27 19:34:46 +08:00
|
|
|
- (void) fprintf(stderr, "%" INT64_T_FORMAT "d",
|
2010-02-01 06:54:00 +08:00
|
|
|
- (unsigned long long)m->value.q);
|
|
|
|
- break;
|
|
|
|
- case FILE_PSTRING:
|
|
|
|
- case FILE_STRING:
|
|
|
|
- case FILE_REGEX:
|
|
|
|
- case FILE_BESTRING16:
|
|
|
|
- case FILE_LESTRING16:
|
|
|
|
- case FILE_SEARCH:
|
|
|
|
- file_showstr(stderr, m->value.s, (size_t)m->vallen);
|
|
|
|
- break;
|
|
|
|
- case FILE_DATE:
|
|
|
|
- case FILE_LEDATE:
|
|
|
|
- case FILE_BEDATE:
|
|
|
|
- case FILE_MEDATE:
|
|
|
|
- (void)fprintf(stderr, "%s,",
|
2013-04-08 04:15:56 +08:00
|
|
|
- file_fmttime(m->value.l, FILE_T_LOCAL, tbuf));
|
2010-02-01 06:54:00 +08:00
|
|
|
- break;
|
|
|
|
- case FILE_LDATE:
|
|
|
|
- case FILE_LELDATE:
|
|
|
|
- case FILE_BELDATE:
|
|
|
|
- case FILE_MELDATE:
|
|
|
|
- (void)fprintf(stderr, "%s,",
|
2013-04-08 04:15:56 +08:00
|
|
|
- file_fmttime(m->value.l, 0, tbuf));
|
2010-02-01 06:54:00 +08:00
|
|
|
- case FILE_QDATE:
|
|
|
|
- case FILE_LEQDATE:
|
|
|
|
- case FILE_BEQDATE:
|
|
|
|
- (void)fprintf(stderr, "%s,",
|
2013-04-08 04:15:56 +08:00
|
|
|
- file_fmttime(m->value.q, FILE_T_LOCAL, tbuf));
|
2010-02-01 06:54:00 +08:00
|
|
|
- break;
|
|
|
|
- case FILE_QLDATE:
|
|
|
|
- case FILE_LEQLDATE:
|
|
|
|
- case FILE_BEQLDATE:
|
|
|
|
- (void)fprintf(stderr, "%s,",
|
2013-04-08 04:15:56 +08:00
|
|
|
- file_fmttime(m->value.q, 0, tbuf));
|
|
|
|
- break;
|
|
|
|
- case FILE_QWDATE:
|
|
|
|
- case FILE_LEQWDATE:
|
|
|
|
- case FILE_BEQWDATE:
|
|
|
|
- (void)fprintf(stderr, "%s,",
|
|
|
|
- file_fmttime(m->value.q, FILE_T_WINDOWS, tbuf));
|
2010-02-01 06:54:00 +08:00
|
|
|
- break;
|
|
|
|
- case FILE_FLOAT:
|
|
|
|
- case FILE_BEFLOAT:
|
|
|
|
- case FILE_LEFLOAT:
|
|
|
|
- (void) fprintf(stderr, "%G", m->value.f);
|
|
|
|
- break;
|
|
|
|
- case FILE_DOUBLE:
|
|
|
|
- case FILE_BEDOUBLE:
|
|
|
|
- case FILE_LEDOUBLE:
|
|
|
|
- (void) fprintf(stderr, "%G", m->value.d);
|
|
|
|
- break;
|
|
|
|
- case FILE_DEFAULT:
|
|
|
|
- /* XXX - do anything here? */
|
|
|
|
- break;
|
2013-04-08 04:15:56 +08:00
|
|
|
- case FILE_USE:
|
|
|
|
- case FILE_NAME:
|
|
|
|
- (void) fprintf(stderr, "'%s'", m->value.s);
|
|
|
|
- break;
|
2010-02-01 06:54:00 +08:00
|
|
|
- default:
|
2013-04-08 04:15:56 +08:00
|
|
|
- (void) fprintf(stderr, "*bad type %d*", m->type);
|
2010-02-01 06:54:00 +08:00
|
|
|
- break;
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- (void) fprintf(stderr, ",\"%s\"]\n", m->desc);
|
|
|
|
-}
|
2013-04-08 04:15:56 +08:00
|
|
|
+#ifdef PHP_WIN32
|
|
|
|
+# define asctime_r php_asctime_r
|
|
|
|
+# define ctime_r php_ctime_r
|
|
|
|
#endif
|
|
|
|
|
|
|
|
+#define SZOF(a) (sizeof(a) / sizeof(a[0]))
|
|
|
|
+
|
2010-02-01 06:54:00 +08:00
|
|
|
/*VARARGS*/
|
|
|
|
protected void
|
|
|
|
file_magwarn(struct magic_set *ms, const char *f, ...)
|
|
|
|
{
|
|
|
|
va_list va;
|
|
|
|
+ char *expanded_format;
|
|
|
|
+ TSRMLS_FETCH();
|
|
|
|
|
|
|
|
- /* cuz we use stdout for most, stderr here */
|
|
|
|
- (void) fflush(stdout);
|
|
|
|
-
|
|
|
|
- if (ms->file)
|
|
|
|
- (void) fprintf(stderr, "%s, %lu: ", ms->file,
|
|
|
|
- (unsigned long)ms->line);
|
|
|
|
- (void) fprintf(stderr, "Warning: ");
|
|
|
|
va_start(va, f);
|
|
|
|
- (void) vfprintf(stderr, f, va);
|
2013-04-27 20:09:29 +08:00
|
|
|
+ if (vasprintf(&expanded_format, f, va)); /* silence */
|
2010-02-01 06:54:00 +08:00
|
|
|
va_end(va);
|
|
|
|
- (void) fputc('\n', stderr);
|
|
|
|
+
|
|
|
|
+ php_error_docref(NULL TSRMLS_CC, E_NOTICE, "Warning: %s", expanded_format);
|
|
|
|
+
|
|
|
|
+ free(expanded_format);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected const char *
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -235,7 +79,7 @@
|
2013-04-08 04:15:56 +08:00
|
|
|
struct tm *tm;
|
|
|
|
|
|
|
|
if (flags & FILE_T_WINDOWS) {
|
|
|
|
- struct timespec ts;
|
|
|
|
+ struct timeval ts;
|
|
|
|
cdf_timestamp_to_timespec(&ts, t);
|
|
|
|
t = ts.tv_sec;
|
|
|
|
}
|
2012-04-22 19:38:14 +08:00
|
|
|
diff -u libmagic.orig/readcdf.c libmagic/readcdf.c
|
2014-02-19 18:20:24 +08:00
|
|
|
--- libmagic.orig/readcdf.c Tue Jan 7 04:13:42 2014
|
|
|
|
+++ libmagic/readcdf.c Wed Feb 19 10:10:11 2014
|
2010-02-01 06:54:00 +08:00
|
|
|
@@ -30,7 +30,11 @@
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
+#ifdef PHP_WIN32
|
|
|
|
+#include "win32/unistd.h"
|
|
|
|
+#else
|
|
|
|
#include <unistd.h>
|
|
|
|
+#endif
|
|
|
|
#include <string.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <ctype.h>
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -69,6 +73,10 @@
|
|
|
|
{ NULL, NULL, },
|
|
|
|
};
|
|
|
|
|
|
|
|
+#ifdef PHP_WIN32
|
|
|
|
+# define strcasestr strstr
|
|
|
|
+#endif
|
|
|
|
+
|
|
|
|
private const char *
|
|
|
|
cdf_app_to_mime(const char *vbuf, const struct nv *nv)
|
|
|
|
{
|
|
|
|
@@ -91,7 +99,7 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
{
|
2012-03-27 19:34:46 +08:00
|
|
|
size_t i;
|
|
|
|
cdf_timestamp_t tp;
|
|
|
|
- struct timespec ts;
|
|
|
|
+ struct timeval ts;
|
|
|
|
char buf[64];
|
|
|
|
const char *str = NULL;
|
|
|
|
const char *s;
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -162,8 +170,12 @@
|
2012-03-27 19:34:46 +08:00
|
|
|
case CDF_FILETIME:
|
|
|
|
tp = info[i].pi_tp;
|
|
|
|
if (tp != 0) {
|
2013-04-08 04:15:56 +08:00
|
|
|
- char tbuf[64];
|
2012-03-27 19:34:46 +08:00
|
|
|
- if (tp < 1000000000000000LL) {
|
2013-04-08 04:15:56 +08:00
|
|
|
+ char tbuf[64];
|
2010-04-27 07:55:03 +08:00
|
|
|
+#if defined(PHP_WIN32) && _MSC_VER <= 1500
|
2012-03-27 19:34:46 +08:00
|
|
|
+ if (tp < 1000000000000000i64) {
|
2010-02-01 06:54:00 +08:00
|
|
|
+#else
|
2012-03-27 19:34:46 +08:00
|
|
|
+ if (tp < 1000000000000000LL) {
|
2010-02-01 06:54:00 +08:00
|
|
|
+#endif
|
2012-03-27 19:34:46 +08:00
|
|
|
cdf_print_elapsed_time(tbuf,
|
|
|
|
sizeof(tbuf), tp);
|
2013-04-08 04:15:56 +08:00
|
|
|
if (NOTMIME(ms) && file_printf(ms,
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -171,8 +183,11 @@
|
2012-03-27 19:34:46 +08:00
|
|
|
return -1;
|
|
|
|
} else {
|
|
|
|
char *c, *ec;
|
|
|
|
- cdf_timestamp_to_timespec(&ts, tp);
|
2014-02-19 18:20:24 +08:00
|
|
|
- c = cdf_ctime(&ts.tv_sec, tbuf);
|
|
|
|
+ const time_t sec = ts.tv_sec;
|
2012-03-27 19:34:46 +08:00
|
|
|
+ if (cdf_timestamp_to_timespec(&ts, tp) == -1) {
|
|
|
|
+ return -1;
|
|
|
|
+ }
|
2014-02-19 18:20:24 +08:00
|
|
|
+ c = cdf_ctime(&sec, tbuf);
|
|
|
|
if (c != NULL &&
|
|
|
|
(ec = strchr(c, '\n')) != NULL)
|
|
|
|
*ec = '\0';
|
2012-04-22 19:38:14 +08:00
|
|
|
diff -u libmagic.orig/readelf.c libmagic/readelf.c
|
2014-02-19 18:20:24 +08:00
|
|
|
--- libmagic.orig/readelf.c Tue Nov 5 16:44:01 2013
|
|
|
|
+++ libmagic/readelf.c Wed Feb 19 10:10:11 2014
|
2013-04-08 04:15:56 +08:00
|
|
|
@@ -48,8 +48,8 @@
|
|
|
|
private int dophn_exec(struct magic_set *, int, int, int, off_t, int, size_t,
|
2010-02-01 06:54:00 +08:00
|
|
|
off_t, int *, int);
|
2012-03-27 19:34:46 +08:00
|
|
|
private int doshn(struct magic_set *, int, int, int, off_t, int, size_t,
|
2013-04-08 04:15:56 +08:00
|
|
|
- off_t, int *, int, int);
|
2010-02-01 06:54:00 +08:00
|
|
|
-private size_t donote(struct magic_set *, void *, size_t, size_t, int,
|
2013-04-08 04:15:56 +08:00
|
|
|
+ off_t, int *, int);
|
2010-02-01 06:54:00 +08:00
|
|
|
+private size_t donote(struct magic_set *, unsigned char *, size_t, size_t, int,
|
|
|
|
int, size_t, int *);
|
|
|
|
|
|
|
|
#define ELF_ALIGN(a) ((((a) + align - 1) / align) * align)
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -127,7 +127,13 @@
|
2013-04-08 04:15:56 +08:00
|
|
|
|
|
|
|
#define elf_getu16(swap, value) getu16(swap, value)
|
|
|
|
#define elf_getu32(swap, value) getu32(swap, value)
|
|
|
|
-#define elf_getu64(swap, value) getu64(swap, value)
|
|
|
|
+#ifdef USE_ARRAY_FOR_64BIT_TYPES
|
|
|
|
+# define elf_getu64(swap, array) \
|
|
|
|
+ ((swap ? ((uint64_t)elf_getu32(swap, array[0])) << 32 : elf_getu32(swap, array[0])) + \
|
|
|
|
+ (swap ? elf_getu32(swap, array[1]) : ((uint64_t)elf_getu32(swap, array[1]) << 32)))
|
|
|
|
+#else
|
|
|
|
+# define elf_getu64(swap, value) getu64(swap, value)
|
|
|
|
+#endif
|
|
|
|
|
|
|
|
#define xsh_addr (clazz == ELFCLASS32 \
|
2014-02-19 18:20:24 +08:00
|
|
|
? (void *)&sh32 \
|
2013-04-08 04:15:56 +08:00
|
|
|
@@ -292,7 +298,7 @@
|
|
|
|
{
|
|
|
|
Elf32_Phdr ph32;
|
|
|
|
Elf64_Phdr ph64;
|
|
|
|
- size_t offset, len;
|
|
|
|
+ size_t offset;
|
|
|
|
unsigned char nbuf[BUFSIZ];
|
|
|
|
ssize_t bufsize;
|
|
|
|
|
|
|
|
@@ -306,7 +312,11 @@
|
2012-04-02 23:27:23 +08:00
|
|
|
* Loop through all the program headers.
|
|
|
|
*/
|
|
|
|
for ( ; num; num--) {
|
2013-04-08 04:15:56 +08:00
|
|
|
- if (pread(fd, xph_addr, xph_sizeof, off) == -1) {
|
2012-04-02 23:27:23 +08:00
|
|
|
+ if (FINFO_LSEEK_FUNC(fd, off, SEEK_SET) == (off_t)-1) {
|
2013-04-08 04:15:56 +08:00
|
|
|
+ file_badseek(ms);
|
|
|
|
+ return -1;
|
|
|
|
+ }
|
2012-04-02 23:27:23 +08:00
|
|
|
+ if (FINFO_READ_FUNC(fd, xph_addr, xph_sizeof) == -1) {
|
|
|
|
file_badread(ms);
|
|
|
|
return -1;
|
|
|
|
}
|
2013-04-08 04:15:56 +08:00
|
|
|
@@ -324,8 +334,13 @@
|
2012-04-02 23:27:23 +08:00
|
|
|
* This is a PT_NOTE section; loop through all the notes
|
|
|
|
* in the section.
|
|
|
|
*/
|
2013-04-08 04:15:56 +08:00
|
|
|
- len = xph_filesz < sizeof(nbuf) ? xph_filesz : sizeof(nbuf);
|
|
|
|
- if ((bufsize = pread(fd, nbuf, len, xph_offset)) == -1) {
|
2012-04-02 23:27:23 +08:00
|
|
|
+ if (FINFO_LSEEK_FUNC(fd, xph_offset, SEEK_SET) == (off_t)-1) {
|
2013-04-08 04:15:56 +08:00
|
|
|
+ file_badseek(ms);
|
|
|
|
+ return -1;
|
|
|
|
+ }
|
2012-04-02 23:27:23 +08:00
|
|
|
+ bufsize = FINFO_READ_FUNC(fd, nbuf,
|
2013-04-08 04:15:56 +08:00
|
|
|
+ ((xph_filesz < sizeof(nbuf)) ? xph_filesz : sizeof(nbuf)));
|
|
|
|
+ if (bufsize == -1) {
|
2012-04-02 23:27:23 +08:00
|
|
|
file_badread(ms);
|
2013-04-08 04:15:56 +08:00
|
|
|
return -1;
|
|
|
|
}
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -913,24 +928,12 @@
|
2013-04-08 04:15:56 +08:00
|
|
|
return 0;
|
2012-04-02 23:27:23 +08:00
|
|
|
}
|
|
|
|
|
2013-04-08 04:15:56 +08:00
|
|
|
- /* Read offset of name section to be able to read section names later */
|
|
|
|
- if (pread(fd, xsh_addr, xsh_sizeof, off + size * strtab) == -1) {
|
|
|
|
- file_badread(ms);
|
|
|
|
- return -1;
|
|
|
|
- }
|
|
|
|
- name_off = xsh_offset;
|
|
|
|
-
|
2012-04-02 23:27:23 +08:00
|
|
|
for ( ; num; num--) {
|
2013-04-08 04:15:56 +08:00
|
|
|
- /* Read the name of this section. */
|
|
|
|
- if (pread(fd, name, sizeof(name), name_off + xsh_name) == -1) {
|
|
|
|
- file_badread(ms);
|
2012-04-02 23:27:23 +08:00
|
|
|
+ if (FINFO_LSEEK_FUNC(fd, off, SEEK_SET) == (off_t)-1) {
|
2013-04-08 04:15:56 +08:00
|
|
|
+ file_badseek(ms);
|
2012-04-02 23:27:23 +08:00
|
|
|
return -1;
|
|
|
|
}
|
2013-04-08 04:15:56 +08:00
|
|
|
- name[sizeof(name) - 1] = '\0';
|
|
|
|
- if (strcmp(name, ".debug_info") == 0)
|
|
|
|
- stripped = 0;
|
|
|
|
-
|
|
|
|
- if (pread(fd, xsh_addr, xsh_sizeof, off) == -1) {
|
2012-04-02 23:27:23 +08:00
|
|
|
+ if (FINFO_READ_FUNC(fd, xsh_addr, xsh_sizeof) == -1) {
|
|
|
|
file_badread(ms);
|
|
|
|
return -1;
|
|
|
|
}
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -955,14 +958,17 @@
|
2012-03-27 19:34:46 +08:00
|
|
|
/* Things we can determine when we seek */
|
|
|
|
switch (xsh_type) {
|
|
|
|
case SHT_NOTE:
|
2013-04-08 04:15:56 +08:00
|
|
|
- if ((nbuf = malloc(xsh_size)) == NULL) {
|
2010-02-01 06:54:00 +08:00
|
|
|
- file_error(ms, errno, "Cannot allocate memory"
|
|
|
|
- " for note");
|
|
|
|
+ nbuf = emalloc((size_t)xsh_size);
|
2012-04-02 23:27:23 +08:00
|
|
|
+ if ((noff = FINFO_LSEEK_FUNC(fd, (off_t)xsh_offset, SEEK_SET)) ==
|
2013-04-08 04:15:56 +08:00
|
|
|
+ (off_t)-1) {
|
|
|
|
+ file_badread(ms);
|
2010-02-01 06:54:00 +08:00
|
|
|
+ efree(nbuf);
|
|
|
|
return -1;
|
|
|
|
}
|
2013-04-08 04:15:56 +08:00
|
|
|
- if (pread(fd, nbuf, xsh_size, xsh_offset) == -1) {
|
2012-04-02 23:27:23 +08:00
|
|
|
+ if (FINFO_READ_FUNC(fd, nbuf, (size_t)xsh_size) !=
|
2013-04-08 04:15:56 +08:00
|
|
|
+ (ssize_t)xsh_size) {
|
2010-02-01 06:54:00 +08:00
|
|
|
file_badread(ms);
|
2013-04-08 04:15:56 +08:00
|
|
|
- free(nbuf);
|
2014-02-19 18:20:24 +08:00
|
|
|
+ efree(nbuf);
|
2010-02-01 06:54:00 +08:00
|
|
|
return -1;
|
|
|
|
}
|
2013-04-08 04:15:56 +08:00
|
|
|
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -971,25 +977,16 @@
|
2013-04-08 04:15:56 +08:00
|
|
|
if (noff >= (off_t)xsh_size)
|
|
|
|
break;
|
|
|
|
noff = donote(ms, nbuf, (size_t)noff,
|
|
|
|
- xsh_size, clazz, swap, 4, flags);
|
|
|
|
+ (size_t)xsh_size, clazz, swap, 4,
|
|
|
|
+ flags);
|
2012-03-27 19:34:46 +08:00
|
|
|
if (noff == 0)
|
2010-02-01 06:54:00 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
- free(nbuf);
|
|
|
|
+ efree(nbuf);
|
|
|
|
break;
|
|
|
|
case SHT_SUNW_cap:
|
2013-04-08 04:15:56 +08:00
|
|
|
- switch (mach) {
|
|
|
|
- case EM_SPARC:
|
|
|
|
- case EM_SPARCV9:
|
|
|
|
- case EM_IA_64:
|
|
|
|
- case EM_386:
|
|
|
|
- case EM_AMD64:
|
|
|
|
- break;
|
|
|
|
- default:
|
|
|
|
- goto skip;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- if (lseek(fd, xsh_offset, SEEK_SET) == (off_t)-1) {
|
2012-04-02 23:27:23 +08:00
|
|
|
+ if (FINFO_LSEEK_FUNC(fd, (off_t)xsh_offset, SEEK_SET) ==
|
2013-04-08 04:15:56 +08:00
|
|
|
+ (off_t)-1) {
|
2012-04-02 23:27:23 +08:00
|
|
|
file_badseek(ms);
|
|
|
|
return -1;
|
2013-04-08 04:15:56 +08:00
|
|
|
}
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -1001,7 +998,7 @@
|
2012-04-02 23:27:23 +08:00
|
|
|
MAX(sizeof cap32, sizeof cap64)];
|
|
|
|
if ((coff += xcap_sizeof) > (off_t)xsh_size)
|
|
|
|
break;
|
|
|
|
- if (read(fd, cbuf, (size_t)xcap_sizeof) !=
|
|
|
|
+ if (FINFO_READ_FUNC(fd, cbuf, (size_t)xcap_sizeof) !=
|
|
|
|
(ssize_t)xcap_sizeof) {
|
|
|
|
file_badread(ms);
|
|
|
|
return -1;
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -1027,13 +1024,12 @@
|
2013-04-08 04:15:56 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
- /*FALLTHROUGH*/
|
|
|
|
- skip:
|
|
|
|
+ break;
|
|
|
|
+
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
-
|
|
|
|
if (file_printf(ms, ", %sstripped", stripped ? "" : "not ") == -1)
|
|
|
|
return -1;
|
|
|
|
if (cap_hw1) {
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -1112,7 +1108,7 @@
|
2013-04-08 04:15:56 +08:00
|
|
|
const char *shared_libraries = "";
|
|
|
|
unsigned char nbuf[BUFSIZ];
|
|
|
|
ssize_t bufsize;
|
|
|
|
- size_t offset, align, len;
|
|
|
|
+ size_t offset, align;
|
|
|
|
|
|
|
|
if (size != xph_sizeof) {
|
|
|
|
if (file_printf(ms, ", corrupted program header size") == -1)
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -1121,8 +1117,13 @@
|
2012-04-02 23:27:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
for ( ; num; num--) {
|
2013-04-08 04:15:56 +08:00
|
|
|
- if (pread(fd, xph_addr, xph_sizeof, off) == -1) {
|
|
|
|
- file_badread(ms);
|
2012-04-02 23:27:23 +08:00
|
|
|
+ if (FINFO_LSEEK_FUNC(fd, off, SEEK_SET) == (off_t)-1) {
|
2013-04-08 04:15:56 +08:00
|
|
|
+ file_badseek(ms);
|
|
|
|
+ return -1;
|
|
|
|
+ }
|
|
|
|
+
|
2012-04-02 23:27:23 +08:00
|
|
|
+ if (FINFO_READ_FUNC(fd, xph_addr, xph_sizeof) == -1) {
|
2013-04-08 04:15:56 +08:00
|
|
|
+ file_badread(ms);
|
2012-04-02 23:27:23 +08:00
|
|
|
return -1;
|
|
|
|
}
|
2013-04-08 04:15:56 +08:00
|
|
|
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -1160,9 +1161,12 @@
|
2012-04-02 23:27:23 +08:00
|
|
|
* This is a PT_NOTE section; loop through all the notes
|
|
|
|
* in the section.
|
|
|
|
*/
|
2013-04-08 04:15:56 +08:00
|
|
|
- len = xph_filesz < sizeof(nbuf) ? xph_filesz
|
|
|
|
- : sizeof(nbuf);
|
|
|
|
- bufsize = pread(fd, nbuf, len, xph_offset);
|
2012-04-02 23:27:23 +08:00
|
|
|
+ if (FINFO_LSEEK_FUNC(fd, xph_offset, SEEK_SET) == (off_t)-1) {
|
2013-04-08 04:15:56 +08:00
|
|
|
+ file_badseek(ms);
|
|
|
|
+ return -1;
|
|
|
|
+ }
|
2012-04-02 23:27:23 +08:00
|
|
|
+ bufsize = FINFO_READ_FUNC(fd, nbuf, ((xph_filesz < sizeof(nbuf)) ?
|
2013-04-08 04:15:56 +08:00
|
|
|
+ xph_filesz : sizeof(nbuf)));
|
2012-04-02 23:27:23 +08:00
|
|
|
if (bufsize == -1) {
|
|
|
|
file_badread(ms);
|
2013-04-08 04:15:56 +08:00
|
|
|
return -1;
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -1223,7 +1227,7 @@
|
2012-04-02 23:27:23 +08:00
|
|
|
/*
|
|
|
|
* If we cannot seek, it must be a pipe, socket or fifo.
|
|
|
|
*/
|
|
|
|
- if((lseek(fd, (off_t)0, SEEK_SET) == (off_t)-1) && (errno == ESPIPE))
|
|
|
|
+ if((FINFO_LSEEK_FUNC(fd, (off_t)0, SEEK_SET) == (off_t)-1) && (errno == ESPIPE))
|
|
|
|
fd = file_pipe2file(ms, fd, buf, nbytes);
|
|
|
|
|
|
|
|
if (fstat(fd, &st) == -1) {
|
2013-04-08 04:15:56 +08:00
|
|
|
diff -u libmagic.orig/readelf.h libmagic/readelf.h
|
2014-02-19 18:20:24 +08:00
|
|
|
--- libmagic.orig/readelf.h Tue Nov 5 16:41:56 2013
|
|
|
|
+++ libmagic/readelf.h Wed Feb 19 10:10:11 2014
|
2013-04-08 04:15:56 +08:00
|
|
|
@@ -44,9 +44,17 @@
|
|
|
|
typedef uint32_t Elf32_Word;
|
|
|
|
typedef uint8_t Elf32_Char;
|
|
|
|
|
|
|
|
+#if SIZEOF_LONG_LONG != 8
|
|
|
|
+#define USE_ARRAY_FOR_64BIT_TYPES
|
|
|
|
+typedef uint32_t Elf64_Addr[2];
|
|
|
|
+typedef uint32_t Elf64_Off[2];
|
|
|
|
+typedef uint32_t Elf64_Xword[2];
|
|
|
|
+#else
|
|
|
|
+#undef USE_ARRAY_FOR_64BIT_TYPES
|
|
|
|
typedef uint64_t Elf64_Addr;
|
|
|
|
typedef uint64_t Elf64_Off;
|
|
|
|
typedef uint64_t Elf64_Xword;
|
|
|
|
+#endif
|
|
|
|
typedef uint16_t Elf64_Half;
|
|
|
|
typedef uint32_t Elf64_Word;
|
|
|
|
typedef uint8_t Elf64_Char;
|
2012-04-22 19:38:14 +08:00
|
|
|
diff -u libmagic.orig/softmagic.c libmagic/softmagic.c
|
2014-02-19 18:20:24 +08:00
|
|
|
--- libmagic.orig/softmagic.c Thu Feb 13 00:20:53 2014
|
|
|
|
+++ libmagic/softmagic.c Wed Feb 19 10:10:11 2014
|
|
|
|
@@ -50,6 +50,11 @@
|
|
|
|
#include <locale.h>
|
|
|
|
#endif
|
2010-02-01 06:54:00 +08:00
|
|
|
|
|
|
|
+#ifndef PREG_OFFSET_CAPTURE
|
|
|
|
+# define PREG_OFFSET_CAPTURE (1<<8)
|
|
|
|
+#endif
|
|
|
|
+
|
|
|
|
+
|
|
|
|
|
|
|
|
private int match(struct magic_set *, struct magic *, uint32_t,
|
2013-04-08 04:15:56 +08:00
|
|
|
const unsigned char *, size_t, size_t, int, int, int, int, int *, int *,
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -71,7 +76,8 @@
|
|
|
|
private void cvt_32(union VALUETYPE *, const struct magic *);
|
|
|
|
private void cvt_64(union VALUETYPE *, const struct magic *);
|
|
|
|
|
|
|
|
-#define OFFSET_OOB(n, o, i) ((n) < (o) || (i) >= ((n) - (o)))
|
|
|
|
+/*#define OFFSET_OOB(n, o, i) ((n) < (o) || (i) >= ((n) - (o))) */
|
|
|
|
+#define OFFSET_OOB(n, o, i) (n < o + i)
|
|
|
|
/*
|
|
|
|
* softmagic - lookup one file in parsed, in-memory copy of database
|
|
|
|
* Passed the name and FILE * of one file to be typed.
|
|
|
|
@@ -142,7 +148,7 @@
|
2012-03-27 19:34:46 +08:00
|
|
|
struct magic *m = &magic[magindex];
|
|
|
|
|
2013-04-08 04:15:56 +08:00
|
|
|
if (m->type != FILE_NAME)
|
2012-03-27 19:34:46 +08:00
|
|
|
- if ((IS_STRING(m->type) &&
|
|
|
|
+ if ((IS_LIBMAGIC_STRING(m->type) &&
|
2013-04-08 04:15:56 +08:00
|
|
|
#define FLT (STRING_BINTEST | STRING_TEXTTEST)
|
|
|
|
((text && (m->str_flags & FLT) == STRING_BINTEST) ||
|
|
|
|
(!text && (m->str_flags & FLT) == STRING_TEXTTEST))) ||
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -221,8 +227,8 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
if (file_check_mem(ms, ++cont_level) == -1)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
- while (magic[magindex+1].cont_level != 0 &&
|
|
|
|
- ++magindex < nmagic) {
|
2013-04-08 04:15:56 +08:00
|
|
|
+ while (magindex + 1 < nmagic && magic[magindex+1].cont_level != 0 &&
|
|
|
|
+ ++magindex) {
|
2010-02-01 06:54:00 +08:00
|
|
|
m = &magic[magindex];
|
|
|
|
ms->line = m->lineno; /* for messages */
|
|
|
|
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -350,46 +356,24 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
private int
|
|
|
|
check_fmt(struct magic_set *ms, struct magic *m)
|
|
|
|
{
|
|
|
|
- regex_t rx;
|
2014-02-19 18:20:24 +08:00
|
|
|
- int rc, rv = -1;
|
2010-02-01 06:54:00 +08:00
|
|
|
-
|
|
|
|
+ pcre *pce;
|
2014-02-19 18:20:24 +08:00
|
|
|
+ int re_options, rv = -1;
|
2010-02-01 06:54:00 +08:00
|
|
|
+ pcre_extra *re_extra;
|
|
|
|
+ TSRMLS_FETCH();
|
|
|
|
+
|
2014-02-19 18:20:24 +08:00
|
|
|
if (strchr(m->desc, '%') == NULL)
|
2010-02-01 06:54:00 +08:00
|
|
|
return 0;
|
2014-02-19 18:20:24 +08:00
|
|
|
|
|
|
|
(void)setlocale(LC_CTYPE, "C");
|
2010-02-01 06:54:00 +08:00
|
|
|
- rc = regcomp(&rx, "%[-0-9\\.]*s", REG_EXTENDED|REG_NOSUB);
|
|
|
|
- if (rc) {
|
|
|
|
- char errmsg[512];
|
|
|
|
- (void)regerror(rc, &rx, errmsg, sizeof(errmsg));
|
|
|
|
- file_magerror(ms, "regex error %d, (%s)", rc, errmsg);
|
|
|
|
+ if ((pce = pcre_get_compiled_regex("~%[-0-9.]*s~", &re_extra, &re_options TSRMLS_CC)) == NULL) {
|
2014-02-19 18:20:24 +08:00
|
|
|
+ rv = -1;
|
2010-02-01 06:54:00 +08:00
|
|
|
} else {
|
|
|
|
- rc = regexec(&rx, m->desc, 0, 0, 0);
|
|
|
|
- regfree(&rx);
|
2014-02-19 18:20:24 +08:00
|
|
|
- rv = !rc;
|
|
|
|
+ rv = !pcre_exec(pce, re_extra, m->desc, strlen(m->desc), 0, re_options, NULL, 0);
|
2010-02-01 06:54:00 +08:00
|
|
|
}
|
2014-02-19 18:20:24 +08:00
|
|
|
(void)setlocale(LC_CTYPE, "");
|
|
|
|
return rv;
|
2010-02-01 06:54:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
-#ifndef HAVE_STRNDUP
|
|
|
|
-char * strndup(const char *, size_t);
|
|
|
|
-
|
|
|
|
-char *
|
|
|
|
-strndup(const char *str, size_t n)
|
|
|
|
-{
|
|
|
|
- size_t len;
|
|
|
|
- char *copy;
|
|
|
|
-
|
|
|
|
- for (len = 0; len < n && str[len]; len++)
|
|
|
|
- continue;
|
|
|
|
- if ((copy = malloc(len + 1)) == NULL)
|
|
|
|
- return NULL;
|
|
|
|
- (void)memcpy(copy, str, len);
|
|
|
|
- copy[len] = '\0';
|
|
|
|
- return copy;
|
|
|
|
-}
|
|
|
|
-#endif /* HAVE_STRNDUP */
|
|
|
|
-
|
|
|
|
private int32_t
|
|
|
|
mprint(struct magic_set *ms, struct magic *m)
|
|
|
|
{
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -618,13 +602,13 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
char *cp;
|
|
|
|
int rval;
|
|
|
|
|
|
|
|
- cp = strndup((const char *)ms->search.s, ms->search.rm_len);
|
|
|
|
+ cp = estrndup((const char *)ms->search.s, ms->search.rm_len);
|
2013-04-08 04:15:56 +08:00
|
|
|
if (cp == NULL) {
|
|
|
|
file_oomem(ms, ms->search.rm_len);
|
|
|
|
return -1;
|
|
|
|
}
|
2014-02-19 18:20:24 +08:00
|
|
|
rval = file_printf(ms, F(m->desc, "%s"), cp);
|
2010-02-01 06:54:00 +08:00
|
|
|
- free(cp);
|
|
|
|
+ efree(cp);
|
|
|
|
|
|
|
|
if (rval == -1)
|
|
|
|
return -1;
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -870,16 +854,16 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
if (m->num_mask) \
|
|
|
|
switch (m->mask_op & FILE_OPS_MASK) { \
|
|
|
|
case FILE_OPADD: \
|
|
|
|
- p->fld += cast m->num_mask; \
|
|
|
|
+ p->fld += cast (int64_t)m->num_mask; \
|
|
|
|
break; \
|
|
|
|
case FILE_OPMINUS: \
|
|
|
|
- p->fld -= cast m->num_mask; \
|
|
|
|
+ p->fld -= cast (int64_t)m->num_mask; \
|
|
|
|
break; \
|
|
|
|
case FILE_OPMULTIPLY: \
|
|
|
|
- p->fld *= cast m->num_mask; \
|
|
|
|
+ p->fld *= cast (int64_t)m->num_mask; \
|
|
|
|
break; \
|
|
|
|
case FILE_OPDIVIDE: \
|
|
|
|
- p->fld /= cast m->num_mask; \
|
|
|
|
+ p->fld /= cast (int64_t)m->num_mask; \
|
|
|
|
break; \
|
|
|
|
} \
|
|
|
|
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -1178,9 +1162,6 @@
|
2013-04-08 04:15:56 +08:00
|
|
|
"nbytes=%zu, count=%u)\n", m->type, m->flag, offset, o,
|
|
|
|
nbytes, count);
|
2010-02-01 06:54:00 +08:00
|
|
|
mdebug(offset, (char *)(void *)p, sizeof(union VALUETYPE));
|
|
|
|
-#ifndef COMPILE_ONLY
|
|
|
|
- file_mdump(m);
|
|
|
|
-#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m->flag & INDIR) {
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -1679,9 +1660,6 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
if ((ms->flags & MAGIC_DEBUG) != 0) {
|
|
|
|
mdebug(offset, (char *)(void *)p,
|
|
|
|
sizeof(union VALUETYPE));
|
|
|
|
-#ifndef COMPILE_ONLY
|
|
|
|
- file_mdump(m);
|
|
|
|
-#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -1759,7 +1737,7 @@
|
|
|
|
return -1;
|
2013-04-08 04:15:56 +08:00
|
|
|
if (file_printf(ms, "%s", rbuf) == -1)
|
|
|
|
return -1;
|
2013-05-14 17:14:37 +08:00
|
|
|
- free(rbuf);
|
|
|
|
+ efree(rbuf);
|
|
|
|
}
|
|
|
|
return rv;
|
|
|
|
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -1875,6 +1853,42 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
return file_strncmp(a, b, len, flags);
|
|
|
|
}
|
|
|
|
|
2012-03-27 19:34:46 +08:00
|
|
|
+public void
|
2010-02-01 06:54:00 +08:00
|
|
|
+convert_libmagic_pattern(zval *pattern, int options)
|
|
|
|
+{
|
|
|
|
+ int i, j=0;
|
|
|
|
+ char *t;
|
|
|
|
+
|
|
|
|
+ t = (char *) safe_emalloc(Z_STRLEN_P(pattern), 2, 5);
|
|
|
|
+
|
|
|
|
+ t[j++] = '~';
|
|
|
|
+
|
|
|
|
+ for (i=0; i<Z_STRLEN_P(pattern); i++, j++) {
|
|
|
|
+ switch (Z_STRVAL_P(pattern)[i]) {
|
|
|
|
+ case '~':
|
|
|
|
+ t[j++] = '\\';
|
|
|
|
+ t[j] = '~';
|
|
|
|
+ break;
|
|
|
|
+ default:
|
|
|
|
+ t[j] = Z_STRVAL_P(pattern)[i];
|
|
|
|
+ break;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ t[j++] = '~';
|
|
|
|
+
|
|
|
|
+ if (options & PCRE_CASELESS)
|
2012-03-27 19:34:46 +08:00
|
|
|
+ t[j++] = 'i';
|
2010-02-01 06:54:00 +08:00
|
|
|
+
|
|
|
|
+ if (options & PCRE_MULTILINE)
|
2012-03-27 19:34:46 +08:00
|
|
|
+ t[j++] = 'm';
|
2010-02-01 06:54:00 +08:00
|
|
|
+
|
2012-03-27 19:34:46 +08:00
|
|
|
+ t[j]='\0';
|
2010-02-01 06:54:00 +08:00
|
|
|
+
|
|
|
|
+ Z_STRVAL_P(pattern) = t;
|
|
|
|
+ Z_STRLEN_P(pattern) = j;
|
|
|
|
+
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
private int
|
|
|
|
magiccheck(struct magic_set *ms, struct magic *m)
|
|
|
|
{
|
2014-02-19 18:20:24 +08:00
|
|
|
@@ -2035,63 +2049,151 @@
|
2010-02-01 06:54:00 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case FILE_REGEX: {
|
|
|
|
- int rc;
|
|
|
|
- regex_t rx;
|
|
|
|
- char errmsg[512];
|
|
|
|
-
|
|
|
|
- if (ms->search.s == NULL)
|
|
|
|
- return 0;
|
2012-05-29 23:38:30 +08:00
|
|
|
+ zval *pattern;
|
|
|
|
+ int options = 0;
|
|
|
|
+ pcre_cache_entry *pce;
|
|
|
|
+ TSRMLS_FETCH();
|
|
|
|
+
|
|
|
|
+ MAKE_STD_ZVAL(pattern);
|
|
|
|
+ ZVAL_STRINGL(pattern, (char *)m->value.s, m->vallen, 0);
|
|
|
|
+
|
|
|
|
+ options |= PCRE_MULTILINE;
|
|
|
|
+
|
|
|
|
+ if (m->str_flags & STRING_IGNORE_CASE) {
|
|
|
|
+ options |= PCRE_CASELESS;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ convert_libmagic_pattern(pattern, options);
|
|
|
|
+
|
|
|
|
+ l = v = 0;
|
2010-02-01 06:54:00 +08:00
|
|
|
+ if ((pce = pcre_get_compiled_regex_cache(Z_STRVAL_P(pattern), Z_STRLEN_P(pattern) TSRMLS_CC)) == NULL) {
|
|
|
|
+ zval_dtor(pattern);
|
|
|
|
+ FREE_ZVAL(pattern);
|
|
|
|
+ return -1;
|
|
|
|
+ } else {
|
|
|
|
+ /* pce now contains the compiled regex */
|
|
|
|
+ zval *retval;
|
|
|
|
+ zval *subpats;
|
|
|
|
+ char *haystack;
|
|
|
|
+
|
|
|
|
+ MAKE_STD_ZVAL(retval);
|
|
|
|
+ ALLOC_INIT_ZVAL(subpats);
|
|
|
|
+
|
|
|
|
+ /* Cut the search len from haystack, equals to REG_STARTEND */
|
|
|
|
+ haystack = estrndup(ms->search.s, ms->search.s_len);
|
|
|
|
+
|
|
|
|
+ /* match v = 0, no match v = 1 */
|
|
|
|
+ php_pcre_match_impl(pce, haystack, ms->search.s_len, retval, subpats, 1, 1, PREG_OFFSET_CAPTURE, 0 TSRMLS_CC);
|
|
|
|
+ /* Free haystack */
|
|
|
|
+ efree(haystack);
|
|
|
|
+
|
|
|
|
+ if (Z_LVAL_P(retval) < 0) {
|
|
|
|
+ zval_ptr_dtor(&subpats);
|
|
|
|
+ FREE_ZVAL(retval);
|
|
|
|
+ zval_dtor(pattern);
|
|
|
|
+ FREE_ZVAL(pattern);
|
|
|
|
+ return -1;
|
|
|
|
+ } else if ((Z_LVAL_P(retval) > 0) && (Z_TYPE_P(subpats) == IS_ARRAY)) {
|
|
|
|
+
|
|
|
|
+ /* Need to fetch global match which equals pmatch[0] */
|
|
|
|
+ HashTable *ht = Z_ARRVAL_P(subpats);
|
|
|
|
+ HashPosition outer_pos;
|
|
|
|
+ zval *pattern_match = NULL, *pattern_offset = NULL;
|
|
|
|
+
|
|
|
|
+ zend_hash_internal_pointer_reset_ex(ht, &outer_pos);
|
|
|
|
+
|
|
|
|
+ if (zend_hash_has_more_elements_ex(ht, &outer_pos) == SUCCESS &&
|
|
|
|
+ zend_hash_move_forward_ex(ht, &outer_pos)) {
|
|
|
|
+
|
|
|
|
+ zval **ppzval;
|
|
|
|
+
|
|
|
|
+ /* The first element (should be) is the global match
|
|
|
|
+ Need to move to the inner array to get the global match */
|
|
|
|
+
|
|
|
|
+ if (zend_hash_get_current_data_ex(ht, (void**)&ppzval, &outer_pos) != FAILURE) {
|
|
|
|
+
|
|
|
|
+ HashTable *inner_ht;
|
|
|
|
+ HashPosition inner_pos;
|
|
|
|
+ zval **match, **offset;
|
|
|
|
+ zval tmpcopy = **ppzval, matchcopy, offsetcopy;
|
|
|
|
+
|
|
|
|
+ zval_copy_ctor(&tmpcopy);
|
|
|
|
+ INIT_PZVAL(&tmpcopy);
|
|
|
|
+
|
|
|
|
+ inner_ht = Z_ARRVAL(tmpcopy);
|
|
|
|
+
|
|
|
|
+ /* If everything goes according to the master plan
|
|
|
|
+ tmpcopy now contains two elements:
|
|
|
|
+ 0 = the match
|
|
|
|
+ 1 = starting position of the match */
|
|
|
|
+ zend_hash_internal_pointer_reset_ex(inner_ht, &inner_pos);
|
|
|
|
+
|
|
|
|
+ if (zend_hash_has_more_elements_ex(inner_ht, &inner_pos) == SUCCESS &&
|
|
|
|
+ zend_hash_move_forward_ex(inner_ht, &inner_pos)) {
|
|
|
|
+
|
|
|
|
+ if (zend_hash_get_current_data_ex(inner_ht, (void**)&match, &inner_pos) != FAILURE) {
|
|
|
|
+
|
|
|
|
+ matchcopy = **match;
|
|
|
|
+ zval_copy_ctor(&matchcopy);
|
|
|
|
+ INIT_PZVAL(&matchcopy);
|
|
|
|
+ convert_to_string(&matchcopy);
|
|
|
|
+
|
|
|
|
+ MAKE_STD_ZVAL(pattern_match);
|
|
|
|
+ Z_STRVAL_P(pattern_match) = (char *)Z_STRVAL(matchcopy);
|
|
|
|
+ Z_STRLEN_P(pattern_match) = Z_STRLEN(matchcopy);
|
|
|
|
+ Z_TYPE_P(pattern_match) = IS_STRING;
|
|
|
|
+
|
|
|
|
+ zval_dtor(&matchcopy);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ if (zend_hash_has_more_elements_ex(inner_ht, &inner_pos) == SUCCESS &&
|
|
|
|
+ zend_hash_move_forward_ex(inner_ht, &inner_pos)) {
|
|
|
|
+
|
|
|
|
+ if (zend_hash_get_current_data_ex(inner_ht, (void**)&offset, &inner_pos) != FAILURE) {
|
|
|
|
+
|
|
|
|
+ offsetcopy = **offset;
|
|
|
|
+ zval_copy_ctor(&offsetcopy);
|
|
|
|
+ INIT_PZVAL(&offsetcopy);
|
|
|
|
+ convert_to_long(&offsetcopy);
|
|
|
|
+
|
|
|
|
+ MAKE_STD_ZVAL(pattern_offset);
|
|
|
|
+ Z_LVAL_P(pattern_offset) = Z_LVAL(offsetcopy);
|
|
|
|
+ Z_TYPE_P(pattern_offset) = IS_LONG;
|
|
|
|
+
|
|
|
|
+ zval_dtor(&offsetcopy);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ zval_dtor(&tmpcopy);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ if ((pattern_match != NULL) && (pattern_offset != NULL)) {
|
|
|
|
+ ms->search.s += (int)Z_LVAL_P(pattern_offset); /* this is where the match starts */
|
|
|
|
+ ms->search.offset += (size_t)Z_LVAL_P(pattern_offset); /* this is where the match starts as size_t */
|
|
|
|
+ ms->search.rm_len = Z_STRLEN_P(pattern_match) /* This is the length of the matched pattern */;
|
|
|
|
+ v = 0;
|
|
|
|
+
|
|
|
|
+ efree(pattern_match);
|
|
|
|
+ efree(pattern_offset);
|
|
|
|
+
|
|
|
|
+ } else {
|
|
|
|
+ zval_ptr_dtor(&subpats);
|
|
|
|
+ FREE_ZVAL(retval);
|
|
|
|
+ zval_dtor(pattern);
|
|
|
|
+ FREE_ZVAL(pattern);
|
|
|
|
+ return -1;
|
2014-02-19 18:20:24 +08:00
|
|
|
+ }
|
2010-02-01 06:54:00 +08:00
|
|
|
+ }
|
|
|
|
|
2014-02-19 18:20:24 +08:00
|
|
|
- l = 0;
|
|
|
|
- rc = regcomp(&rx, m->value.s,
|
|
|
|
- REG_EXTENDED|REG_NEWLINE|
|
|
|
|
- ((m->str_flags & STRING_IGNORE_CASE) ? REG_ICASE : 0));
|
|
|
|
- if (rc) {
|
|
|
|
- (void)regerror(rc, &rx, errmsg, sizeof(errmsg));
|
|
|
|
- file_magerror(ms, "regex error %d, (%s)",
|
|
|
|
- rc, errmsg);
|
|
|
|
- v = (uint64_t)-1;
|
|
|
|
- }
|
|
|
|
- else {
|
|
|
|
- regmatch_t pmatch[1];
|
|
|
|
-#ifndef REG_STARTEND
|
|
|
|
-#define REG_STARTEND 0
|
|
|
|
- size_t l = ms->search.s_len - 1;
|
|
|
|
- char c = ms->search.s[l];
|
|
|
|
- ((char *)(intptr_t)ms->search.s)[l] = '\0';
|
|
|
|
-#else
|
|
|
|
- pmatch[0].rm_so = 0;
|
|
|
|
- pmatch[0].rm_eo = ms->search.s_len;
|
|
|
|
-#endif
|
|
|
|
- rc = regexec(&rx, (const char *)ms->search.s,
|
|
|
|
- 1, pmatch, REG_STARTEND);
|
|
|
|
-#if REG_STARTEND == 0
|
|
|
|
- ((char *)(intptr_t)ms->search.s)[l] = c;
|
|
|
|
-#endif
|
|
|
|
- switch (rc) {
|
|
|
|
- case 0:
|
|
|
|
- ms->search.s += (int)pmatch[0].rm_so;
|
|
|
|
- ms->search.offset += (size_t)pmatch[0].rm_so;
|
|
|
|
- ms->search.rm_len =
|
|
|
|
- (size_t)(pmatch[0].rm_eo - pmatch[0].rm_so);
|
|
|
|
- v = 0;
|
|
|
|
- break;
|
|
|
|
|
2010-02-01 06:54:00 +08:00
|
|
|
- case REG_NOMATCH:
|
|
|
|
+ } else {
|
|
|
|
v = 1;
|
|
|
|
- break;
|
|
|
|
-
|
|
|
|
- default:
|
|
|
|
- (void)regerror(rc, &rx, errmsg, sizeof(errmsg));
|
|
|
|
- file_magerror(ms, "regexec error %d, (%s)",
|
|
|
|
- rc, errmsg);
|
|
|
|
- v = (uint64_t)-1;
|
|
|
|
- break;
|
|
|
|
}
|
|
|
|
- regfree(&rx);
|
|
|
|
+ zval_ptr_dtor(&subpats);
|
|
|
|
+ FREE_ZVAL(retval);
|
|
|
|
}
|
|
|
|
- if (v == (uint64_t)-1)
|
|
|
|
- return -1;
|
|
|
|
+ zval_dtor(pattern);
|
|
|
|
+ FREE_ZVAL(pattern);
|
2014-02-19 18:20:24 +08:00
|
|
|
break;
|
2010-02-01 06:54:00 +08:00
|
|
|
}
|
|
|
|
case FILE_INDIRECT:
|