compress.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700
  1. /*
  2. * Copyright (c) Ian F. Darwin 1986-1995.
  3. * Software written by Ian F. Darwin and others;
  4. * maintained 1995-present by Christos Zoulas and others.
  5. *
  6. * Redistribution and use in source and binary forms, with or without
  7. * modification, are permitted provided that the following conditions
  8. * are met:
  9. * 1. Redistributions of source code must retain the above copyright
  10. * notice immediately at the beginning of the file, without modification,
  11. * this list of conditions, and the following disclaimer.
  12. * 2. Redistributions in binary form must reproduce the above copyright
  13. * notice, this list of conditions and the following disclaimer in the
  14. * documentation and/or other materials provided with the distribution.
  15. *
  16. * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
  17. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  18. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  19. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
  20. * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  21. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  22. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  23. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  24. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  25. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  26. * SUCH DAMAGE.
  27. */
  28. /*
  29. * compress routines:
  30. * zmagic() - returns 0 if not recognized, uncompresses and prints
  31. * information if recognized
  32. * uncompress(method, old, n, newch) - uncompress old into new,
  33. * using method, return sizeof new
  34. */
  35. #include "file.h"
  36. #ifndef lint
  37. FILE_RCSID("@(#)$File: compress.c,v 1.104 2017/03/29 15:57:48 christos Exp $")
  38. #endif
  39. #include "magic.h"
  40. #include <stdlib.h>
  41. #ifdef HAVE_UNISTD_H
  42. #include <unistd.h>
  43. #endif
  44. #include <string.h>
  45. #include <errno.h>
  46. #ifdef HAVE_SIGNAL_H
  47. #include <signal.h>
  48. # ifndef HAVE_SIG_T
  49. typedef void (*sig_t)(int);
  50. # endif /* HAVE_SIG_T */
  51. #endif
  52. #ifndef PHP_WIN32
  53. #include <sys/ioctl.h>
  54. #endif
  55. #ifdef HAVE_SYS_WAIT_H
  56. #include <sys/wait.h>
  57. #endif
  58. #if defined(HAVE_SYS_TIME_H)
  59. #include <sys/time.h>
  60. #endif
  61. #if defined(HAVE_ZLIB_H) && defined(PHP_FILEINFO_UNCOMPRESS)
  62. #define BUILTIN_DECOMPRESS
  63. #include <zlib.h>
  64. #endif
  65. #undef FIONREAD
  66. #define gzip_flags "-cd"
  67. #define lrzip_flags "-do"
  68. #define lzip_flags gzip_flags
  69. static const char *gzip_args[] = {
  70. "gzip", gzip_flags, NULL
  71. };
  72. static const char *uncompress_args[] = {
  73. "uncompress", "-c", NULL
  74. };
  75. static const char *bzip2_args[] = {
  76. "bzip2", "-cd", NULL
  77. };
  78. static const char *lzip_args[] = {
  79. "lzip", lzip_flags, NULL
  80. };
  81. static const char *xz_args[] = {
  82. "xz", "-cd", NULL
  83. };
  84. static const char *lrzip_args[] = {
  85. "lrzip", lrzip_flags, NULL
  86. };
  87. static const char *lz4_args[] = {
  88. "lz4", "-cd", NULL
  89. };
  90. static const char *zstd_args[] = {
  91. "zstd", "-cd", NULL
  92. };
  93. private const struct {
  94. const void *magic;
  95. size_t maglen;
  96. const char **argv;
  97. } compr[] = {
  98. { "\037\235", 2, gzip_args }, /* compressed */
  99. /* Uncompress can get stuck; so use gzip first if we have it
  100. * Idea from Damien Clark, thanks! */
  101. { "\037\235", 2, uncompress_args }, /* compressed */
  102. { "\037\213", 2, gzip_args }, /* gzipped */
  103. { "\037\236", 2, gzip_args }, /* frozen */
  104. { "\037\240", 2, gzip_args }, /* SCO LZH */
  105. /* the standard pack utilities do not accept standard input */
  106. { "\037\036", 2, gzip_args }, /* packed */
  107. { "PK\3\4", 4, gzip_args }, /* pkzipped, */
  108. /* ...only first file examined */
  109. { "BZh", 3, bzip2_args }, /* bzip2-ed */
  110. { "LZIP", 4, lzip_args }, /* lzip-ed */
  111. { "\3757zXZ\0", 6, xz_args }, /* XZ Utils */
  112. { "LRZI", 4, lrzip_args }, /* LRZIP */
  113. { "\004\"M\030",4, lz4_args }, /* LZ4 */
  114. { "\x28\xB5\x2F\xFD", 4, zstd_args }, /* zstd */
  115. #ifdef ZLIBSUPPORT
  116. { RCAST(const void *, zlibcmp), 0, zlib_args }, /* zlib */
  117. #endif
  118. };
  119. #define OKDATA 0
  120. #define NODATA 1
  121. #define ERRDATA 2
  122. private ssize_t swrite(int, const void *, size_t);
  123. #ifdef PHP_FILEINFO_UNCOMPRESS
  124. private size_t ncompr = sizeof(compr) / sizeof(compr[0]);
  125. private int uncompressbuf(int, size_t, size_t, const unsigned char *,
  126. unsigned char **, size_t *);
  127. #ifdef BUILTIN_DECOMPRESS
  128. private int uncompresszlib(const unsigned char *, unsigned char **, size_t,
  129. size_t *, int);
  130. private int uncompressgzipped(const unsigned char *, unsigned char **, size_t,
  131. size_t *);
  132. #endif
  133. static int makeerror(unsigned char **, size_t *, const char *, ...);
  134. private const char *methodname(size_t);
  135. protected int
  136. file_zmagic(struct magic_set *ms, int fd, const char *name,
  137. const unsigned char *buf, size_t nbytes)
  138. {
  139. unsigned char *newbuf = NULL;
  140. size_t i, nsz;
  141. char *rbuf;
  142. file_pushbuf_t *pb;
  143. int urv, prv, rv = 0;
  144. int mime = ms->flags & MAGIC_MIME;
  145. #ifdef HAVE_SIGNAL_H
  146. sig_t osigpipe;
  147. #endif
  148. if ((ms->flags & MAGIC_COMPRESS) == 0)
  149. return 0;
  150. #ifdef HAVE_SIGNAL_H
  151. osigpipe = signal(SIGPIPE, SIG_IGN);
  152. #endif
  153. for (i = 0; i < ncompr; i++) {
  154. int zm;
  155. if (nbytes < compr[i].maglen)
  156. continue;
  157. #ifdef ZLIBSUPPORT
  158. if (compr[i].maglen == 0)
  159. zm = (RCAST(int (*)(const unsigned char *),
  160. CCAST(void *, compr[i].magic)))(buf);
  161. else
  162. #endif
  163. zm = memcmp(buf, compr[i].magic, compr[i].maglen) == 0;
  164. if (!zm)
  165. continue;
  166. nsz = nbytes;
  167. urv = uncompressbuf(fd, ms->bytes_max, i, buf, &newbuf, &nsz);
  168. DPRINTF("uncompressbuf = %d, %s, %zu\n", urv, (char *)newbuf,
  169. nsz);
  170. switch (urv) {
  171. case OKDATA:
  172. case ERRDATA:
  173. ms->flags &= ~MAGIC_COMPRESS;
  174. if (urv == ERRDATA)
  175. prv = file_printf(ms, "%s ERROR: %s",
  176. methodname(i), newbuf);
  177. else
  178. prv = file_buffer(ms, -1, name, newbuf, nsz);
  179. if (prv == -1)
  180. goto error;
  181. rv = 1;
  182. if ((ms->flags & MAGIC_COMPRESS_TRANSP) != 0)
  183. goto out;
  184. if (mime != MAGIC_MIME && mime != 0)
  185. goto out;
  186. if ((file_printf(ms,
  187. mime ? " compressed-encoding=" : " (")) == -1)
  188. goto error;
  189. if ((pb = file_push_buffer(ms)) == NULL)
  190. goto error;
  191. /*
  192. * XXX: If file_buffer fails here, we overwrite
  193. * the compressed text. FIXME.
  194. */
  195. if (file_buffer(ms, -1, NULL, buf, nbytes) == -1)
  196. goto error;
  197. if ((rbuf = file_pop_buffer(ms, pb)) != NULL) {
  198. if (file_printf(ms, "%s", rbuf) == -1) {
  199. efree(rbuf);
  200. goto error;
  201. }
  202. efree(rbuf);
  203. }
  204. if (!mime && file_printf(ms, ")") == -1)
  205. goto error;
  206. /*FALLTHROUGH*/
  207. case NODATA:
  208. break;
  209. default:
  210. abort();
  211. /*NOTREACHED*/
  212. error:
  213. rv = -1;
  214. break;
  215. }
  216. }
  217. out:
  218. DPRINTF("rv = %d\n", rv);
  219. #ifdef HAVE_SIGNAL_H
  220. (void)signal(SIGPIPE, osigpipe);
  221. #endif
  222. if (newbuf)
  223. efree(newbuf);
  224. ms->flags |= MAGIC_COMPRESS;
  225. DPRINTF("Zmagic returns %d\n", rv);
  226. return rv;
  227. }
  228. #endif
  229. /*
  230. * `safe' write for sockets and pipes.
  231. */
  232. private ssize_t
  233. swrite(int fd, const void *buf, size_t n)
  234. {
  235. ssize_t rv;
  236. size_t rn = n;
  237. do
  238. switch (rv = write(fd, buf, n)) {
  239. case -1:
  240. if (errno == EINTR)
  241. continue;
  242. return -1;
  243. default:
  244. n -= rv;
  245. buf = CAST(const char *, buf) + rv;
  246. break;
  247. }
  248. while (n > 0);
  249. return rn;
  250. }
  251. /*
  252. * `safe' read for sockets and pipes.
  253. */
  254. protected ssize_t
  255. sread(int fd, void *buf, size_t n, int canbepipe)
  256. {
  257. ssize_t rv;
  258. #ifdef FIONREAD
  259. int t = 0;
  260. #endif
  261. size_t rn = n;
  262. if (fd == STDIN_FILENO)
  263. goto nocheck;
  264. #ifdef FIONREAD
  265. if (canbepipe && (ioctl(fd, FIONREAD, &t) == -1 || t == 0)) {
  266. #ifdef FD_ZERO
  267. ssize_t cnt;
  268. for (cnt = 0;; cnt++) {
  269. fd_set check;
  270. struct timeval tout = {0, 100 * 1000};
  271. int selrv;
  272. FD_ZERO(&check);
  273. FD_SET(fd, &check);
  274. /*
  275. * Avoid soft deadlock: do not read if there
  276. * is nothing to read from sockets and pipes.
  277. */
  278. selrv = select(fd + 1, &check, NULL, NULL, &tout);
  279. if (selrv == -1) {
  280. if (errno == EINTR || errno == EAGAIN)
  281. continue;
  282. } else if (selrv == 0 && cnt >= 5) {
  283. return 0;
  284. } else
  285. break;
  286. }
  287. #endif
  288. (void)ioctl(fd, FIONREAD, &t);
  289. }
  290. if (t > 0 && (size_t)t < n) {
  291. n = t;
  292. rn = n;
  293. }
  294. #endif
  295. nocheck:
  296. do
  297. switch ((rv = FINFO_READ_FUNC(fd, buf, n))) {
  298. case -1:
  299. if (errno == EINTR)
  300. continue;
  301. return -1;
  302. case 0:
  303. return rn - n;
  304. default:
  305. n -= rv;
  306. buf = CAST(char *, CCAST(void *, buf)) + rv;
  307. break;
  308. }
  309. while (n > 0);
  310. return rn;
  311. }
  312. protected int
  313. file_pipe2file(struct magic_set *ms, int fd, const void *startbuf,
  314. size_t nbytes)
  315. {
  316. char buf[4096];
  317. ssize_t r;
  318. int tfd;
  319. (void)strlcpy(buf, "/tmp/file.XXXXXX", sizeof buf);
  320. #ifndef HAVE_MKSTEMP
  321. {
  322. char *ptr = mktemp(buf);
  323. tfd = open(ptr, O_RDWR|O_TRUNC|O_EXCL|O_CREAT, 0600);
  324. r = errno;
  325. (void)unlink(ptr);
  326. errno = r;
  327. }
  328. #else
  329. {
  330. int te;
  331. tfd = mkstemp(buf);
  332. te = errno;
  333. (void)unlink(buf);
  334. errno = te;
  335. }
  336. #endif
  337. if (tfd == -1) {
  338. file_error(ms, errno,
  339. "cannot create temporary file for pipe copy");
  340. return -1;
  341. }
  342. if (swrite(tfd, startbuf, nbytes) != (ssize_t)nbytes)
  343. r = 1;
  344. else {
  345. while ((r = sread(fd, buf, sizeof(buf), 1)) > 0)
  346. if (swrite(tfd, buf, (size_t)r) != r)
  347. break;
  348. }
  349. switch (r) {
  350. case -1:
  351. file_error(ms, errno, "error copying from pipe to temp file");
  352. return -1;
  353. case 0:
  354. break;
  355. default:
  356. file_error(ms, errno, "error while writing to temp file");
  357. return -1;
  358. }
  359. /*
  360. * We duplicate the file descriptor, because fclose on a
  361. * tmpfile will delete the file, but any open descriptors
  362. * can still access the phantom inode.
  363. */
  364. if ((fd = dup2(tfd, fd)) == -1) {
  365. file_error(ms, errno, "could not dup descriptor for temp file");
  366. return -1;
  367. }
  368. (void)close(tfd);
  369. if (FINFO_LSEEK_FUNC(fd, (zend_off_t)0, SEEK_SET) == (zend_off_t)-1) {
  370. file_badseek(ms);
  371. return -1;
  372. }
  373. return fd;
  374. }
  375. #ifdef PHP_FILEINFO_UNCOMPRESS
  376. #ifdef BUILTIN_DECOMPRESS
  377. #define FHCRC (1 << 1)
  378. #define FEXTRA (1 << 2)
  379. #define FNAME (1 << 3)
  380. #define FCOMMENT (1 << 4)
  381. private int
  382. uncompressgzipped(const unsigned char *old, unsigned char **newch,
  383. size_t bytes_max, size_t *n)
  384. {
  385. unsigned char flg = old[3];
  386. size_t data_start = 10;
  387. if (flg & FEXTRA) {
  388. if (data_start + 1 >= *n)
  389. goto err;
  390. data_start += 2 + old[data_start] + old[data_start + 1] * 256;
  391. }
  392. if (flg & FNAME) {
  393. while(data_start < *n && old[data_start])
  394. data_start++;
  395. data_start++;
  396. }
  397. if (flg & FCOMMENT) {
  398. while(data_start < *n && old[data_start])
  399. data_start++;
  400. data_start++;
  401. }
  402. if (flg & FHCRC)
  403. data_start += 2;
  404. if (data_start >= *n)
  405. goto err;
  406. *n -= data_start;
  407. old += data_start;
  408. return uncompresszlib(old, newch, bytes_max, n, 0);
  409. err:
  410. return makeerror(newch, n, "File too short");
  411. }
  412. private int
  413. uncompresszlib(const unsigned char *old, unsigned char **newch,
  414. size_t bytes_max, size_t *n, int zlib)
  415. {
  416. int rc;
  417. z_stream z;
  418. if ((*newch = CAST(unsigned char *, emalloc(bytes_max + 1))) == NULL)
  419. return makeerror(newch, n, "No buffer, %s", strerror(errno));
  420. z.next_in = CCAST(Bytef *, old);
  421. z.avail_in = CAST(uint32_t, *n);
  422. z.next_out = *newch;
  423. z.avail_out = CAST(unsigned int, bytes_max);
  424. z.zalloc = Z_NULL;
  425. z.zfree = Z_NULL;
  426. z.opaque = Z_NULL;
  427. /* LINTED bug in header macro */
  428. rc = zlib ? inflateInit(&z) : inflateInit2(&z, -15);
  429. if (rc != Z_OK)
  430. goto err;
  431. rc = inflate(&z, Z_SYNC_FLUSH);
  432. if (rc != Z_OK && rc != Z_STREAM_END)
  433. goto err;
  434. *n = (size_t)z.total_out;
  435. rc = inflateEnd(&z);
  436. if (rc != Z_OK)
  437. goto err;
  438. /* let's keep the nul-terminate tradition */
  439. (*newch)[*n] = '\0';
  440. return OKDATA;
  441. err:
  442. strlcpy((char *)*newch, z.msg ? z.msg : zError(rc), bytes_max);
  443. *n = strlen((char *)*newch);
  444. return ERRDATA;
  445. }
  446. #endif
  447. static int
  448. makeerror(unsigned char **buf, size_t *len, const char *fmt, ...)
  449. {
  450. char *msg;
  451. va_list ap;
  452. int rv;
  453. va_start(ap, fmt);
  454. rv = vasprintf(&msg, fmt, ap);
  455. va_end(ap);
  456. if (rv < 0) {
  457. *buf = NULL;
  458. *len = 0;
  459. return NODATA;
  460. }
  461. *buf = (unsigned char *)msg;
  462. *len = strlen(msg);
  463. return ERRDATA;
  464. }
  465. static void
  466. closefd(int *fd, size_t i)
  467. {
  468. if (fd[i] == -1)
  469. return;
  470. (void) close(fd[i]);
  471. fd[i] = -1;
  472. }
  473. static void
  474. closep(int *fd)
  475. {
  476. size_t i;
  477. for (i = 0; i < 2; i++)
  478. closefd(fd, i);
  479. }
  480. static void
  481. copydesc(int i, int *fd)
  482. {
  483. int j = fd[i == STDIN_FILENO ? 0 : 1];
  484. if (j == i)
  485. return;
  486. if (dup2(j, i) == -1) {
  487. DPRINTF("dup(%d, %d) failed (%s)\n", j, i, strerror(errno));
  488. exit(1);
  489. }
  490. closep(fd);
  491. }
  492. static void
  493. writechild(int fdp[3][2], const void *old, size_t n)
  494. {
  495. int status;
  496. closefd(fdp[STDIN_FILENO], 0);
  497. /*
  498. * fork again, to avoid blocking because both
  499. * pipes filled
  500. */
  501. switch (fork()) {
  502. case 0: /* child */
  503. closefd(fdp[STDOUT_FILENO], 0);
  504. if (swrite(fdp[STDIN_FILENO][1], old, n) != (ssize_t)n) {
  505. DPRINTF("Write failed (%s)\n", strerror(errno));
  506. exit(1);
  507. }
  508. exit(0);
  509. /*NOTREACHED*/
  510. case -1:
  511. DPRINTF("Fork failed (%s)\n", strerror(errno));
  512. exit(1);
  513. /*NOTREACHED*/
  514. default: /* parent */
  515. if (wait(&status) == -1) {
  516. DPRINTF("Wait failed (%s)\n", strerror(errno));
  517. exit(1);
  518. }
  519. DPRINTF("Grandchild wait return %#x\n", status);
  520. }
  521. closefd(fdp[STDIN_FILENO], 1);
  522. }
  523. static ssize_t
  524. filter_error(unsigned char *ubuf, ssize_t n)
  525. {
  526. char *p;
  527. char *buf;
  528. ubuf[n] = '\0';
  529. buf = (char *)ubuf;
  530. while (isspace((unsigned char)*buf))
  531. buf++;
  532. DPRINTF("Filter error[[[%s]]]\n", buf);
  533. if ((p = strchr((char *)buf, '\n')) != NULL)
  534. *p = '\0';
  535. if ((p = strchr((char *)buf, ';')) != NULL)
  536. *p = '\0';
  537. if ((p = strrchr((char *)buf, ':')) != NULL) {
  538. ++p;
  539. while (isspace((unsigned char)*p))
  540. p++;
  541. n = strlen(p);
  542. memmove(ubuf, p, CAST(size_t, n + 1));
  543. }
  544. DPRINTF("Filter error after[[[%s]]]\n", (char *)ubuf);
  545. if (islower(*ubuf))
  546. *ubuf = toupper(*ubuf);
  547. return n;
  548. }
  549. private const char *
  550. methodname(size_t method)
  551. {
  552. #ifdef BUILTIN_DECOMPRESS
  553. /* FIXME: This doesn't cope with bzip2 */
  554. if (method == 2 || compr[method].maglen == 0)
  555. return "zlib";
  556. #endif
  557. return compr[method].argv[0];
  558. }
  559. private int
  560. uncompressbuf(int fd, size_t bytes_max, size_t method, const unsigned char *old,
  561. unsigned char **newch, size_t* n)
  562. {
  563. int fdp[3][2];
  564. int status, rv;
  565. size_t i;
  566. ssize_t r;
  567. #ifdef BUILTIN_DECOMPRESS
  568. /* FIXME: This doesn't cope with bzip2 */
  569. if (method == 2)
  570. return uncompressgzipped(old, newch, bytes_max, n);
  571. if (compr[method].maglen == 0)
  572. return uncompresszlib(old, newch, bytes_max, n, 1);
  573. #endif
  574. (void)fflush(stdout);
  575. (void)fflush(stderr);
  576. for (i = 0; i < __arraycount(fdp); i++)
  577. fdp[i][0] = fdp[i][1] = -1;
  578. if ((fd == -1 && pipe(fdp[STDIN_FILENO]) == -1) ||
  579. pipe(fdp[STDOUT_FILENO]) == -1 || pipe(fdp[STDERR_FILENO]) == -1) {
  580. closep(fdp[STDIN_FILENO]);
  581. closep(fdp[STDOUT_FILENO]);
  582. return makeerror(newch, n, "Cannot create pipe, %s",
  583. strerror(errno));
  584. }
  585. switch (fork()) {
  586. case 0: /* child */
  587. if (fd != -1) {
  588. fdp[STDIN_FILENO][0] = fd;
  589. (void) lseek(fd, (off_t)0, SEEK_SET);
  590. }
  591. for (i = 0; i < __arraycount(fdp); i++)
  592. copydesc(CAST(int, i), fdp[i]);
  593. (void)execvp(compr[method].argv[0],
  594. (char *const *)(intptr_t)compr[method].argv);
  595. dprintf(STDERR_FILENO, "exec `%s' failed, %s",
  596. compr[method].argv[0], strerror(errno));
  597. exit(1);
  598. /*NOTREACHED*/
  599. case -1:
  600. return makeerror(newch, n, "Cannot fork, %s",
  601. strerror(errno));
  602. default: /* parent */
  603. for (i = 1; i < __arraycount(fdp); i++)
  604. closefd(fdp[i], 1);
  605. /* Write the buffer data to the child, if we don't have fd */
  606. if (fd == -1)
  607. writechild(fdp, old, *n);
  608. *newch = CAST(unsigned char *, emalloc(bytes_max + 1));
  609. if (*newch == NULL) {
  610. rv = makeerror(newch, n, "No buffer, %s",
  611. strerror(errno));
  612. goto err;
  613. }
  614. rv = OKDATA;
  615. if ((r = sread(fdp[STDOUT_FILENO][0], *newch, bytes_max, 0)) > 0)
  616. break;
  617. DPRINTF("Read stdout failed %d (%s)\n", fdp[STDOUT_FILENO][0],
  618. r != -1 ? strerror(errno) : "no data");
  619. rv = ERRDATA;
  620. if (r == 0 &&
  621. (r = sread(fdp[STDERR_FILENO][0], *newch, bytes_max, 0)) > 0)
  622. {
  623. r = filter_error(*newch, r);
  624. break;
  625. }
  626. efree(*newch);
  627. if (r == 0)
  628. rv = makeerror(newch, n, "Read failed, %s",
  629. strerror(errno));
  630. else
  631. rv = makeerror(newch, n, "No data");
  632. goto err;
  633. }
  634. }
  635. #endif /* if PHP_FILEINFO_UNCOMPRESS */