funcs.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570
  1. /*
  2. * Copyright (c) Christos Zoulas 2003.
  3. * All Rights Reserved.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions
  7. * are met:
  8. * 1. Redistributions of source code must retain the above copyright
  9. * notice immediately at the beginning of the file, without modification,
  10. * this list of conditions, and the following disclaimer.
  11. * 2. Redistributions in binary form must reproduce the above copyright
  12. * notice, this list of conditions and the following disclaimer in the
  13. * documentation and/or other materials provided with the distribution.
  14. *
  15. * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
  16. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  17. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  18. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
  19. * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  20. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  21. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  22. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  23. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  24. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  25. * SUCH DAMAGE.
  26. */
  27. #include "file.h"
  28. #ifndef lint
  29. FILE_RCSID("@(#)$File: funcs.c,v 1.94 2017/11/02 20:25:39 christos Exp $")
  30. #endif /* lint */
  31. #include "magic.h"
  32. #include <stdarg.h>
  33. #include <stdlib.h>
  34. #include <string.h>
  35. #include <ctype.h>
  36. #if defined(HAVE_WCHAR_H)
  37. #include <wchar.h>
  38. #endif
  39. #if defined(HAVE_WCTYPE_H)
  40. #include <wctype.h>
  41. #endif
  42. #if defined(HAVE_LOCALE_H)
  43. #include <locale.h>
  44. #endif
  45. #ifndef SIZE_MAX
  46. #define SIZE_MAX ((size_t)~0)
  47. #endif
  48. #include "php.h"
  49. #include "main/php_network.h"
  50. #ifndef PREG_OFFSET_CAPTURE
  51. # define PREG_OFFSET_CAPTURE (1<<8)
  52. #endif
  53. protected int
  54. file_printf(struct magic_set *ms, const char *fmt, ...)
  55. {
  56. va_list ap;
  57. size_t len;
  58. char *buf = NULL, *newstr;
  59. va_start(ap, fmt);
  60. len = vspprintf(&buf, 0, fmt, ap);
  61. va_end(ap);
  62. if (ms->o.buf != NULL) {
  63. len = spprintf(&newstr, 0, "%s%s", ms->o.buf, (buf ? buf : ""));
  64. if (buf) {
  65. efree(buf);
  66. }
  67. efree(ms->o.buf);
  68. ms->o.buf = newstr;
  69. } else {
  70. ms->o.buf = buf;
  71. }
  72. return 0;
  73. }
  74. /*
  75. * error - print best error message possible
  76. */
  77. /*VARARGS*/
  78. private void
  79. file_error_core(struct magic_set *ms, int error, const char *f, va_list va,
  80. size_t lineno)
  81. {
  82. char *buf = NULL;
  83. /* Only the first error is ok */
  84. if (ms->event_flags & EVENT_HAD_ERR)
  85. return;
  86. if (lineno != 0) {
  87. efree(ms->o.buf);
  88. ms->o.buf = NULL;
  89. file_printf(ms, "line %" SIZE_T_FORMAT "u:", lineno);
  90. }
  91. vspprintf(&buf, 0, f, va);
  92. va_end(va);
  93. if (error > 0) {
  94. file_printf(ms, "%s (%s)", (*buf ? buf : ""), strerror(error));
  95. } else if (*buf) {
  96. file_printf(ms, "%s", buf);
  97. }
  98. if (buf) {
  99. efree(buf);
  100. }
  101. ms->event_flags |= EVENT_HAD_ERR;
  102. ms->error = error;
  103. }
  104. /*VARARGS*/
  105. protected void
  106. file_error(struct magic_set *ms, int error, const char *f, ...)
  107. {
  108. va_list va;
  109. va_start(va, f);
  110. file_error_core(ms, error, f, va, 0);
  111. va_end(va);
  112. }
  113. /*
  114. * Print an error with magic line number.
  115. */
  116. /*VARARGS*/
  117. protected void
  118. file_magerror(struct magic_set *ms, const char *f, ...)
  119. {
  120. va_list va;
  121. va_start(va, f);
  122. file_error_core(ms, 0, f, va, ms->line);
  123. va_end(va);
  124. }
  125. protected void
  126. file_oomem(struct magic_set *ms, size_t len)
  127. {
  128. file_error(ms, errno, "cannot allocate %" SIZE_T_FORMAT "u bytes",
  129. len);
  130. }
  131. protected void
  132. file_badseek(struct magic_set *ms)
  133. {
  134. file_error(ms, errno, "error seeking");
  135. }
  136. protected void
  137. file_badread(struct magic_set *ms)
  138. {
  139. file_error(ms, errno, "error reading");
  140. }
  141. static int
  142. checkdone(struct magic_set *ms, int *rv)
  143. {
  144. if ((ms->flags & MAGIC_CONTINUE) == 0)
  145. return 1;
  146. if (file_printf(ms, "\n- ") == -1)
  147. *rv = -1;
  148. return 0;
  149. }
  150. /*ARGSUSED*/
  151. protected int
  152. file_buffer(struct magic_set *ms, php_stream *stream, const char *inname, const void *buf,
  153. size_t nb)
  154. {
  155. int m = 0, rv = 0, looks_text = 0;
  156. const char *code = NULL;
  157. const char *code_mime = "binary";
  158. const char *type = "application/octet-stream";
  159. const char *def = "data";
  160. const char *ftype = NULL;
  161. struct buffer b;
  162. int fd = -1;
  163. buffer_init(&b, fd, buf, nb);
  164. if (nb == 0) {
  165. def = "empty";
  166. type = "application/x-empty";
  167. goto simple;
  168. } else if (nb == 1) {
  169. def = "very short file (no magic)";
  170. goto simple;
  171. }
  172. if ((ms->flags & MAGIC_NO_CHECK_ENCODING) == 0) {
  173. looks_text = file_encoding(ms, &b, NULL, 0,
  174. &code, &code_mime, &ftype);
  175. }
  176. #ifdef __EMX__
  177. if ((ms->flags & MAGIC_NO_CHECK_APPTYPE) == 0 && inname) {
  178. m = file_os2_apptype(ms, inname, &b);
  179. if ((ms->flags & MAGIC_DEBUG) != 0)
  180. (void)fprintf(stderr, "[try os2_apptype %d]\n", m);
  181. switch (m) {
  182. case -1:
  183. return -1;
  184. case 0:
  185. break;
  186. default:
  187. return 1;
  188. }
  189. }
  190. #endif
  191. #if PHP_FILEINFO_UNCOMPRESS
  192. if ((ms->flags & MAGIC_NO_CHECK_COMPRESS) == 0) {
  193. m = file_zmagic(ms, &b, inname);
  194. if ((ms->flags & MAGIC_DEBUG) != 0)
  195. (void)fprintf(stderr, "[try zmagic %d]\n", m);
  196. if (m) {
  197. goto done_encoding;
  198. }
  199. }
  200. #endif
  201. /* Check if we have a tar file */
  202. if ((ms->flags & MAGIC_NO_CHECK_TAR) == 0) {
  203. m = file_is_tar(ms, &b);
  204. if ((ms->flags & MAGIC_DEBUG) != 0)
  205. (void)fprintf(stderr, "[try tar %d]\n", m);
  206. if (m) {
  207. if (checkdone(ms, &rv))
  208. goto done;
  209. }
  210. }
  211. /* Check if we have a CDF file */
  212. if ((ms->flags & MAGIC_NO_CHECK_CDF) == 0 && stream) {
  213. #ifdef _WIN64
  214. php_socket_t _fd = fd;
  215. int _ret = php_stream_cast(stream, PHP_STREAM_AS_FD, (void **)&_fd, 0);
  216. fd = (int)_fd;
  217. #else
  218. int _ret = php_stream_cast(stream, PHP_STREAM_AS_FD, (void **)&fd, 0);
  219. #endif
  220. if (SUCCESS == _ret) {
  221. m = file_trycdf(ms, &b);
  222. if ((ms->flags & MAGIC_DEBUG) != 0)
  223. (void)fprintf(stderr, "[try cdf %d]\n", m);
  224. if (m) {
  225. if (checkdone(ms, &rv))
  226. goto done;
  227. }
  228. }
  229. }
  230. /* try soft magic tests */
  231. if ((ms->flags & MAGIC_NO_CHECK_SOFT) == 0) {
  232. m = file_softmagic(ms, &b, NULL, NULL, BINTEST, looks_text);
  233. if ((ms->flags & MAGIC_DEBUG) != 0)
  234. (void)fprintf(stderr, "[try softmagic %d]\n", m);
  235. if (m) {
  236. #ifdef BUILTIN_ELF
  237. if ((ms->flags & MAGIC_NO_CHECK_ELF) == 0 && m == 1 &&
  238. nb > 5 && fd != -1) {
  239. /*
  240. * We matched something in the file, so this
  241. * *might* be an ELF file, and the file is at
  242. * least 5 bytes long, so if it's an ELF file
  243. * it has at least one byte past the ELF magic
  244. * number - try extracting information from the
  245. * ELF headers that cannot easily * be
  246. * extracted with rules in the magic file.
  247. */
  248. m = file_tryelf(ms, &b);
  249. if ((ms->flags & MAGIC_DEBUG) != 0)
  250. (void)fprintf(stderr, "[try elf %d]\n",
  251. m);
  252. }
  253. #endif
  254. if (checkdone(ms, &rv))
  255. goto done;
  256. }
  257. }
  258. /* try text properties */
  259. if ((ms->flags & MAGIC_NO_CHECK_TEXT) == 0) {
  260. m = file_ascmagic(ms, &b, looks_text);
  261. if ((ms->flags & MAGIC_DEBUG) != 0)
  262. (void)fprintf(stderr, "[try ascmagic %d]\n", m);
  263. if (m) {
  264. if (checkdone(ms, &rv))
  265. goto done;
  266. }
  267. }
  268. simple:
  269. /* give up */
  270. m = 1;
  271. if (ms->flags & MAGIC_MIME) {
  272. if ((ms->flags & MAGIC_MIME_TYPE) &&
  273. file_printf(ms, "%s", type) == -1)
  274. rv = -1;
  275. } else if (ms->flags & MAGIC_APPLE) {
  276. if (file_printf(ms, "UNKNUNKN") == -1)
  277. rv = -1;
  278. } else if (ms->flags & MAGIC_EXTENSION) {
  279. if (file_printf(ms, "???") == -1)
  280. rv = -1;
  281. } else {
  282. if (file_printf(ms, "%s", def) == -1)
  283. rv = -1;
  284. }
  285. done:
  286. if ((ms->flags & MAGIC_MIME_ENCODING) != 0) {
  287. if (ms->flags & MAGIC_MIME_TYPE)
  288. if (file_printf(ms, "; charset=") == -1)
  289. rv = -1;
  290. if (file_printf(ms, "%s", code_mime) == -1)
  291. rv = -1;
  292. }
  293. #if PHP_FILEINFO_UNCOMPRESS
  294. done_encoding:
  295. #endif
  296. buffer_fini(&b);
  297. if (rv)
  298. return rv;
  299. return m;
  300. }
  301. protected int
  302. file_reset(struct magic_set *ms, int checkloaded)
  303. {
  304. if (checkloaded && ms->mlist[0] == NULL) {
  305. file_error(ms, 0, "no magic files loaded");
  306. return -1;
  307. }
  308. if (ms->o.buf) {
  309. efree(ms->o.buf);
  310. ms->o.buf = NULL;
  311. }
  312. if (ms->o.pbuf) {
  313. efree(ms->o.pbuf);
  314. ms->o.pbuf = NULL;
  315. }
  316. ms->event_flags &= ~EVENT_HAD_ERR;
  317. ms->error = -1;
  318. return 0;
  319. }
  320. #define OCTALIFY(n, o) \
  321. /*LINTED*/ \
  322. (void)(*(n)++ = '\\', \
  323. *(n)++ = (((uint32_t)*(o) >> 6) & 3) + '0', \
  324. *(n)++ = (((uint32_t)*(o) >> 3) & 7) + '0', \
  325. *(n)++ = (((uint32_t)*(o) >> 0) & 7) + '0', \
  326. (o)++)
  327. protected const char *
  328. file_getbuffer(struct magic_set *ms)
  329. {
  330. char *pbuf, *op, *np;
  331. size_t psize, len;
  332. if (ms->event_flags & EVENT_HAD_ERR)
  333. return NULL;
  334. if (ms->flags & MAGIC_RAW)
  335. return ms->o.buf;
  336. if (ms->o.buf == NULL)
  337. return NULL;
  338. /* * 4 is for octal representation, + 1 is for NUL */
  339. len = strlen(ms->o.buf);
  340. if (len > (SIZE_MAX - 1) / 4) {
  341. file_oomem(ms, len);
  342. return NULL;
  343. }
  344. psize = len * 4 + 1;
  345. if ((pbuf = CAST(char *, erealloc(ms->o.pbuf, psize))) == NULL) {
  346. file_oomem(ms, psize);
  347. return NULL;
  348. }
  349. ms->o.pbuf = pbuf;
  350. #if defined(HAVE_WCHAR_H) && defined(HAVE_MBRTOWC) && defined(HAVE_WCWIDTH)
  351. {
  352. mbstate_t state;
  353. wchar_t nextchar;
  354. int mb_conv = 1;
  355. size_t bytesconsumed;
  356. char *eop;
  357. (void)memset(&state, 0, sizeof(mbstate_t));
  358. np = ms->o.pbuf;
  359. op = ms->o.buf;
  360. eop = op + len;
  361. while (op < eop) {
  362. bytesconsumed = mbrtowc(&nextchar, op,
  363. (size_t)(eop - op), &state);
  364. if (bytesconsumed == (size_t)(-1) ||
  365. bytesconsumed == (size_t)(-2)) {
  366. mb_conv = 0;
  367. break;
  368. }
  369. if (iswprint(nextchar)) {
  370. (void)memcpy(np, op, bytesconsumed);
  371. op += bytesconsumed;
  372. np += bytesconsumed;
  373. } else {
  374. while (bytesconsumed-- > 0)
  375. OCTALIFY(np, op);
  376. }
  377. }
  378. *np = '\0';
  379. /* Parsing succeeded as a multi-byte sequence */
  380. if (mb_conv != 0)
  381. return ms->o.pbuf;
  382. }
  383. #endif
  384. for (np = ms->o.pbuf, op = ms->o.buf; *op;) {
  385. if (isprint((unsigned char)*op)) {
  386. *np++ = *op++;
  387. } else {
  388. OCTALIFY(np, op);
  389. }
  390. }
  391. *np = '\0';
  392. return ms->o.pbuf;
  393. }
  394. protected int
  395. file_check_mem(struct magic_set *ms, unsigned int level)
  396. {
  397. size_t len;
  398. if (level >= ms->c.len) {
  399. len = (ms->c.len = 20 + level) * sizeof(*ms->c.li);
  400. ms->c.li = CAST(struct level_info *, (ms->c.li == NULL) ?
  401. emalloc(len) :
  402. erealloc(ms->c.li, len));
  403. if (ms->c.li == NULL) {
  404. file_oomem(ms, len);
  405. return -1;
  406. }
  407. }
  408. ms->c.li[level].got_match = 0;
  409. #ifdef ENABLE_CONDITIONALS
  410. ms->c.li[level].last_match = 0;
  411. ms->c.li[level].last_cond = COND_NONE;
  412. #endif /* ENABLE_CONDITIONALS */
  413. return 0;
  414. }
  415. protected size_t
  416. file_printedlen(const struct magic_set *ms)
  417. {
  418. return ms->o.buf == NULL ? 0 : strlen(ms->o.buf);
  419. }
  420. protected int
  421. file_replace(struct magic_set *ms, const char *pat, const char *rep)
  422. {
  423. zval patt;
  424. uint32_t opts = 0;
  425. pcre_cache_entry *pce;
  426. zend_string *res;
  427. zend_string *repl;
  428. size_t rep_cnt = 0;
  429. opts |= PCRE2_MULTILINE;
  430. convert_libmagic_pattern(&patt, (char*)pat, strlen(pat), opts);
  431. if ((pce = pcre_get_compiled_regex_cache_ex(Z_STR(patt), 0)) == NULL) {
  432. zval_ptr_dtor(&patt);
  433. rep_cnt = -1;
  434. goto out;
  435. }
  436. zval_ptr_dtor(&patt);
  437. repl = zend_string_init(rep, strlen(rep), 0);
  438. res = php_pcre_replace_impl(pce, NULL, ms->o.buf, strlen(ms->o.buf), repl, -1, &rep_cnt);
  439. zend_string_release_ex(repl, 0);
  440. if (NULL == res) {
  441. rep_cnt = -1;
  442. goto out;
  443. }
  444. strncpy(ms->o.buf, ZSTR_VAL(res), ZSTR_LEN(res));
  445. ms->o.buf[ZSTR_LEN(res)] = '\0';
  446. zend_string_release_ex(res, 0);
  447. out:
  448. return rep_cnt;
  449. }
  450. protected file_pushbuf_t *
  451. file_push_buffer(struct magic_set *ms)
  452. {
  453. file_pushbuf_t *pb;
  454. if (ms->event_flags & EVENT_HAD_ERR)
  455. return NULL;
  456. if ((pb = (CAST(file_pushbuf_t *, emalloc(sizeof(*pb))))) == NULL)
  457. return NULL;
  458. pb->buf = ms->o.buf;
  459. pb->offset = ms->offset;
  460. ms->o.buf = NULL;
  461. ms->offset = 0;
  462. return pb;
  463. }
  464. protected char *
  465. file_pop_buffer(struct magic_set *ms, file_pushbuf_t *pb)
  466. {
  467. char *rbuf;
  468. if (ms->event_flags & EVENT_HAD_ERR) {
  469. efree(pb->buf);
  470. efree(pb);
  471. return NULL;
  472. }
  473. rbuf = ms->o.buf;
  474. ms->o.buf = pb->buf;
  475. ms->offset = pb->offset;
  476. efree(pb);
  477. return rbuf;
  478. }
  479. /*
  480. * convert string to ascii printable format.
  481. */
  482. protected char *
  483. file_printable(char *buf, size_t bufsiz, const char *str)
  484. {
  485. char *ptr, *eptr;
  486. const unsigned char *s = (const unsigned char *)str;
  487. for (ptr = buf, eptr = ptr + bufsiz - 1; ptr < eptr && *s; s++) {
  488. if (isprint(*s)) {
  489. *ptr++ = *s;
  490. continue;
  491. }
  492. if (ptr >= eptr - 3)
  493. break;
  494. *ptr++ = '\\';
  495. *ptr++ = ((CAST(unsigned int, *s) >> 6) & 7) + '0';
  496. *ptr++ = ((CAST(unsigned int, *s) >> 3) & 7) + '0';
  497. *ptr++ = ((CAST(unsigned int, *s) >> 0) & 7) + '0';
  498. }
  499. *ptr = '\0';
  500. return buf;
  501. }