xfuncs_printf.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * Utility routines.
  4. *
  5. * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
  6. * Copyright (C) 2006 Rob Landley
  7. * Copyright (C) 2006 Denys Vlasenko
  8. *
  9. * Licensed under GPLv2, see file LICENSE in this source tree.
  10. */
  11. /* We need to have separate xfuncs.c and xfuncs_printf.c because
  12. * with current linkers, even with section garbage collection,
  13. * if *.o module references any of XXXprintf functions, you pull in
  14. * entire printf machinery. Even if you do not use the function
  15. * which uses XXXprintf.
  16. *
  17. * xfuncs.c contains functions (not necessarily xfuncs)
  18. * which do not pull in printf, directly or indirectly.
  19. * xfunc_printf.c contains those which do.
  20. */
  21. #include "libbb.h"
  22. /* All the functions starting with "x" call bb_error_msg_and_die() if they
  23. * fail, so callers never need to check for errors. If it returned, it
  24. * succeeded. */
  25. #ifndef DMALLOC
  26. /* dmalloc provides variants of these that do abort() on failure.
  27. * Since dmalloc's prototypes overwrite the impls here as they are
  28. * included after these prototypes in libbb.h, all is well.
  29. */
  30. // Warn if we can't allocate size bytes of memory.
  31. void* FAST_FUNC malloc_or_warn(size_t size)
  32. {
  33. void *ptr = malloc(size);
  34. if (ptr == NULL && size != 0)
  35. bb_error_msg(bb_msg_memory_exhausted);
  36. return ptr;
  37. }
  38. // Die if we can't allocate size bytes of memory.
  39. void* FAST_FUNC xmalloc(size_t size)
  40. {
  41. void *ptr = malloc(size);
  42. if (ptr == NULL && size != 0)
  43. bb_error_msg_and_die(bb_msg_memory_exhausted);
  44. return ptr;
  45. }
  46. // Die if we can't resize previously allocated memory. (This returns a pointer
  47. // to the new memory, which may or may not be the same as the old memory.
  48. // It'll copy the contents to a new chunk and free the old one if necessary.)
  49. void* FAST_FUNC xrealloc(void *ptr, size_t size)
  50. {
  51. ptr = realloc(ptr, size);
  52. if (ptr == NULL && size != 0)
  53. bb_error_msg_and_die(bb_msg_memory_exhausted);
  54. return ptr;
  55. }
  56. #endif /* DMALLOC */
  57. // Die if we can't allocate and zero size bytes of memory.
  58. void* FAST_FUNC xzalloc(size_t size)
  59. {
  60. void *ptr = xmalloc(size);
  61. memset(ptr, 0, size);
  62. return ptr;
  63. }
  64. // Die if we can't copy a string to freshly allocated memory.
  65. char* FAST_FUNC xstrdup(const char *s)
  66. {
  67. char *t;
  68. if (s == NULL)
  69. return NULL;
  70. t = strdup(s);
  71. if (t == NULL)
  72. bb_error_msg_and_die(bb_msg_memory_exhausted);
  73. return t;
  74. }
  75. // Die if we can't allocate n+1 bytes (space for the null terminator) and copy
  76. // the (possibly truncated to length n) string into it.
  77. char* FAST_FUNC xstrndup(const char *s, int n)
  78. {
  79. int m;
  80. char *t;
  81. if (ENABLE_DEBUG && s == NULL)
  82. bb_error_msg_and_die("xstrndup bug");
  83. /* We can just xmalloc(n+1) and strncpy into it, */
  84. /* but think about xstrndup("abc", 10000) wastage! */
  85. m = n;
  86. t = (char*) s;
  87. while (m) {
  88. if (!*t) break;
  89. m--;
  90. t++;
  91. }
  92. n -= m;
  93. t = xmalloc(n + 1);
  94. t[n] = '\0';
  95. return memcpy(t, s, n);
  96. }
  97. void* FAST_FUNC xmemdup(const void *s, int n)
  98. {
  99. return memcpy(xmalloc(n), s, n);
  100. }
  101. // Die if we can't open a file and return a FILE* to it.
  102. // Notice we haven't got xfread(), This is for use with fscanf() and friends.
  103. FILE* FAST_FUNC xfopen(const char *path, const char *mode)
  104. {
  105. FILE *fp = fopen(path, mode);
  106. if (fp == NULL)
  107. bb_perror_msg_and_die("can't open '%s'", path);
  108. return fp;
  109. }
  110. // Die if we can't open a file and return a fd.
  111. int FAST_FUNC xopen3(const char *pathname, int flags, int mode)
  112. {
  113. int ret;
  114. ret = open(pathname, flags, mode);
  115. if (ret < 0) {
  116. bb_perror_msg_and_die("can't open '%s'", pathname);
  117. }
  118. return ret;
  119. }
  120. // Die if we can't open a file and return a fd.
  121. int FAST_FUNC xopen(const char *pathname, int flags)
  122. {
  123. return xopen3(pathname, flags, 0666);
  124. }
  125. // Warn if we can't open a file and return a fd.
  126. int FAST_FUNC open3_or_warn(const char *pathname, int flags, int mode)
  127. {
  128. int ret;
  129. ret = open(pathname, flags, mode);
  130. if (ret < 0) {
  131. bb_perror_msg("can't open '%s'", pathname);
  132. }
  133. return ret;
  134. }
  135. // Warn if we can't open a file and return a fd.
  136. int FAST_FUNC open_or_warn(const char *pathname, int flags)
  137. {
  138. return open3_or_warn(pathname, flags, 0666);
  139. }
  140. /* Die if we can't open an existing file readonly with O_NONBLOCK
  141. * and return the fd.
  142. * Note that for ioctl O_RDONLY is sufficient.
  143. */
  144. int FAST_FUNC xopen_nonblocking(const char *pathname)
  145. {
  146. return xopen(pathname, O_RDONLY | O_NONBLOCK);
  147. }
  148. int FAST_FUNC xopen_as_uid_gid(const char *pathname, int flags, uid_t u, gid_t g)
  149. {
  150. int fd;
  151. uid_t old_euid = geteuid();
  152. gid_t old_egid = getegid();
  153. xsetegid(g);
  154. xseteuid(u);
  155. fd = xopen(pathname, flags);
  156. xseteuid(old_euid);
  157. xsetegid(old_egid);
  158. return fd;
  159. }
  160. void FAST_FUNC xunlink(const char *pathname)
  161. {
  162. if (unlink(pathname))
  163. bb_perror_msg_and_die("can't remove file '%s'", pathname);
  164. }
  165. void FAST_FUNC xrename(const char *oldpath, const char *newpath)
  166. {
  167. if (rename(oldpath, newpath))
  168. bb_perror_msg_and_die("can't move '%s' to '%s'", oldpath, newpath);
  169. }
  170. int FAST_FUNC rename_or_warn(const char *oldpath, const char *newpath)
  171. {
  172. int n = rename(oldpath, newpath);
  173. if (n)
  174. bb_perror_msg("can't move '%s' to '%s'", oldpath, newpath);
  175. return n;
  176. }
  177. void FAST_FUNC xpipe(int filedes[2])
  178. {
  179. if (pipe(filedes))
  180. bb_perror_msg_and_die("can't create pipe");
  181. }
  182. void FAST_FUNC xdup2(int from, int to)
  183. {
  184. if (dup2(from, to) != to)
  185. bb_perror_msg_and_die("can't duplicate file descriptor");
  186. }
  187. // "Renumber" opened fd
  188. void FAST_FUNC xmove_fd(int from, int to)
  189. {
  190. if (from == to)
  191. return;
  192. xdup2(from, to);
  193. close(from);
  194. }
  195. // Die with an error message if we can't write the entire buffer.
  196. void FAST_FUNC xwrite(int fd, const void *buf, size_t count)
  197. {
  198. if (count) {
  199. ssize_t size = full_write(fd, buf, count);
  200. if ((size_t)size != count)
  201. bb_error_msg_and_die("short write");
  202. }
  203. }
  204. void FAST_FUNC xwrite_str(int fd, const char *str)
  205. {
  206. xwrite(fd, str, strlen(str));
  207. }
  208. void FAST_FUNC xclose(int fd)
  209. {
  210. if (close(fd))
  211. bb_perror_msg_and_die("close failed");
  212. }
  213. // Die with an error message if we can't lseek to the right spot.
  214. off_t FAST_FUNC xlseek(int fd, off_t offset, int whence)
  215. {
  216. off_t off = lseek(fd, offset, whence);
  217. if (off == (off_t)-1) {
  218. if (whence == SEEK_SET)
  219. bb_perror_msg_and_die("lseek(%"OFF_FMT"u)", offset);
  220. bb_perror_msg_and_die("lseek");
  221. }
  222. return off;
  223. }
  224. int FAST_FUNC xmkstemp(char *template)
  225. {
  226. int fd = mkstemp(template);
  227. if (fd < 0)
  228. bb_perror_msg_and_die("can't create temp file '%s'", template);
  229. return fd;
  230. }
  231. // Die with supplied filename if this FILE* has ferror set.
  232. void FAST_FUNC die_if_ferror(FILE *fp, const char *fn)
  233. {
  234. if (ferror(fp)) {
  235. /* ferror doesn't set useful errno */
  236. bb_error_msg_and_die("%s: I/O error", fn);
  237. }
  238. }
  239. // Die with an error message if stdout has ferror set.
  240. void FAST_FUNC die_if_ferror_stdout(void)
  241. {
  242. die_if_ferror(stdout, bb_msg_standard_output);
  243. }
  244. int FAST_FUNC fflush_all(void)
  245. {
  246. return fflush(NULL);
  247. }
  248. int FAST_FUNC bb_putchar(int ch)
  249. {
  250. return putchar(ch);
  251. }
  252. /* Die with an error message if we can't copy an entire FILE* to stdout,
  253. * then close that file. */
  254. void FAST_FUNC xprint_and_close_file(FILE *file)
  255. {
  256. fflush_all();
  257. // copyfd outputs error messages for us.
  258. if (bb_copyfd_eof(fileno(file), STDOUT_FILENO) == -1)
  259. xfunc_die();
  260. fclose(file);
  261. }
  262. // Die with an error message if we can't malloc() enough space and do an
  263. // sprintf() into that space.
  264. char* FAST_FUNC xasprintf(const char *format, ...)
  265. {
  266. va_list p;
  267. int r;
  268. char *string_ptr;
  269. va_start(p, format);
  270. r = vasprintf(&string_ptr, format, p);
  271. va_end(p);
  272. if (r < 0)
  273. bb_error_msg_and_die(bb_msg_memory_exhausted);
  274. return string_ptr;
  275. }
  276. void FAST_FUNC xsetenv(const char *key, const char *value)
  277. {
  278. if (setenv(key, value, 1))
  279. bb_error_msg_and_die(bb_msg_memory_exhausted);
  280. }
  281. /* Handles "VAR=VAL" strings, even those which are part of environ
  282. * _right now_
  283. */
  284. void FAST_FUNC bb_unsetenv(const char *var)
  285. {
  286. char *tp = strchr(var, '=');
  287. if (!tp) {
  288. unsetenv(var);
  289. return;
  290. }
  291. /* In case var was putenv'ed, we can't replace '='
  292. * with NUL and unsetenv(var) - it won't work,
  293. * env is modified by the replacement, unsetenv
  294. * sees "VAR" instead of "VAR=VAL" and does not remove it!
  295. * horror :( */
  296. tp = xstrndup(var, tp - var);
  297. unsetenv(tp);
  298. free(tp);
  299. }
  300. void FAST_FUNC bb_unsetenv_and_free(char *var)
  301. {
  302. bb_unsetenv(var);
  303. free(var);
  304. }
  305. // Die with an error message if we can't set gid. (Because resource limits may
  306. // limit this user to a given number of processes, and if that fills up the
  307. // setgid() will fail and we'll _still_be_root_, which is bad.)
  308. void FAST_FUNC xsetgid(gid_t gid)
  309. {
  310. if (setgid(gid)) bb_perror_msg_and_die("setgid");
  311. }
  312. // Die with an error message if we can't set uid. (See xsetgid() for why.)
  313. void FAST_FUNC xsetuid(uid_t uid)
  314. {
  315. if (setuid(uid)) bb_perror_msg_and_die("setuid");
  316. }
  317. void FAST_FUNC xsetegid(gid_t egid)
  318. {
  319. if (setegid(egid)) bb_perror_msg_and_die("setegid");
  320. }
  321. void FAST_FUNC xseteuid(uid_t euid)
  322. {
  323. if (seteuid(euid)) bb_perror_msg_and_die("seteuid");
  324. }
  325. // Die if we can't chdir to a new path.
  326. void FAST_FUNC xchdir(const char *path)
  327. {
  328. if (chdir(path))
  329. bb_perror_msg_and_die("can't change directory to '%s'", path);
  330. }
  331. void FAST_FUNC xfchdir(int fd)
  332. {
  333. if (fchdir(fd))
  334. bb_perror_msg_and_die("fchdir");
  335. }
  336. void FAST_FUNC xchroot(const char *path)
  337. {
  338. if (chroot(path))
  339. bb_perror_msg_and_die("can't change root directory to '%s'", path);
  340. xchdir("/");
  341. }
  342. // Print a warning message if opendir() fails, but don't die.
  343. DIR* FAST_FUNC warn_opendir(const char *path)
  344. {
  345. DIR *dp;
  346. dp = opendir(path);
  347. if (!dp)
  348. bb_perror_msg("can't open '%s'", path);
  349. return dp;
  350. }
  351. // Die with an error message if opendir() fails.
  352. DIR* FAST_FUNC xopendir(const char *path)
  353. {
  354. DIR *dp;
  355. dp = opendir(path);
  356. if (!dp)
  357. bb_perror_msg_and_die("can't open '%s'", path);
  358. return dp;
  359. }
  360. // Die with an error message if we can't open a new socket.
  361. int FAST_FUNC xsocket(int domain, int type, int protocol)
  362. {
  363. int r = socket(domain, type, protocol);
  364. if (r < 0) {
  365. /* Hijack vaguely related config option */
  366. #if ENABLE_VERBOSE_RESOLUTION_ERRORS
  367. const char *s = "INET";
  368. # ifdef AF_PACKET
  369. if (domain == AF_PACKET) s = "PACKET";
  370. # endif
  371. # ifdef AF_NETLINK
  372. if (domain == AF_NETLINK) s = "NETLINK";
  373. # endif
  374. IF_FEATURE_IPV6(if (domain == AF_INET6) s = "INET6";)
  375. bb_perror_msg_and_die("socket(AF_%s,%d,%d)", s, type, protocol);
  376. #else
  377. bb_perror_msg_and_die("socket");
  378. #endif
  379. }
  380. return r;
  381. }
  382. // Die with an error message if we can't bind a socket to an address.
  383. void FAST_FUNC xbind(int sockfd, struct sockaddr *my_addr, socklen_t addrlen)
  384. {
  385. if (bind(sockfd, my_addr, addrlen)) bb_perror_msg_and_die("bind");
  386. }
  387. // Die with an error message if we can't listen for connections on a socket.
  388. void FAST_FUNC xlisten(int s, int backlog)
  389. {
  390. if (listen(s, backlog)) bb_perror_msg_and_die("listen");
  391. }
  392. /* Die with an error message if sendto failed.
  393. * Return bytes sent otherwise */
  394. ssize_t FAST_FUNC xsendto(int s, const void *buf, size_t len, const struct sockaddr *to,
  395. socklen_t tolen)
  396. {
  397. ssize_t ret = sendto(s, buf, len, 0, to, tolen);
  398. if (ret < 0) {
  399. if (ENABLE_FEATURE_CLEAN_UP)
  400. close(s);
  401. bb_perror_msg_and_die("sendto");
  402. }
  403. return ret;
  404. }
  405. // xstat() - a stat() which dies on failure with meaningful error message
  406. void FAST_FUNC xstat(const char *name, struct stat *stat_buf)
  407. {
  408. if (stat(name, stat_buf))
  409. bb_perror_msg_and_die("can't stat '%s'", name);
  410. }
  411. void FAST_FUNC xfstat(int fd, struct stat *stat_buf, const char *errmsg)
  412. {
  413. /* errmsg is usually a file name, but not always:
  414. * xfstat may be called in a spot where file name is no longer
  415. * available, and caller may give e.g. "can't stat input file" string.
  416. */
  417. if (fstat(fd, stat_buf))
  418. bb_simple_perror_msg_and_die(errmsg);
  419. }
  420. // selinux_or_die() - die if SELinux is disabled.
  421. void FAST_FUNC selinux_or_die(void)
  422. {
  423. #if ENABLE_SELINUX
  424. int rc = is_selinux_enabled();
  425. if (rc == 0) {
  426. bb_error_msg_and_die("SELinux is disabled");
  427. } else if (rc < 0) {
  428. bb_error_msg_and_die("is_selinux_enabled() failed");
  429. }
  430. #else
  431. bb_error_msg_and_die("SELinux support is disabled");
  432. #endif
  433. }
  434. int FAST_FUNC ioctl_or_perror_and_die(int fd, unsigned request, void *argp, const char *fmt,...)
  435. {
  436. int ret;
  437. va_list p;
  438. ret = ioctl(fd, request, argp);
  439. if (ret < 0) {
  440. va_start(p, fmt);
  441. bb_verror_msg(fmt, p, strerror(errno));
  442. /* xfunc_die can actually longjmp, so be nice */
  443. va_end(p);
  444. xfunc_die();
  445. }
  446. return ret;
  447. }
  448. int FAST_FUNC ioctl_or_perror(int fd, unsigned request, void *argp, const char *fmt,...)
  449. {
  450. va_list p;
  451. int ret = ioctl(fd, request, argp);
  452. if (ret < 0) {
  453. va_start(p, fmt);
  454. bb_verror_msg(fmt, p, strerror(errno));
  455. va_end(p);
  456. }
  457. return ret;
  458. }
  459. #if ENABLE_IOCTL_HEX2STR_ERROR
  460. int FAST_FUNC bb_ioctl_or_warn(int fd, unsigned request, void *argp, const char *ioctl_name)
  461. {
  462. int ret;
  463. ret = ioctl(fd, request, argp);
  464. if (ret < 0)
  465. bb_simple_perror_msg(ioctl_name);
  466. return ret;
  467. }
  468. int FAST_FUNC bb_xioctl(int fd, unsigned request, void *argp, const char *ioctl_name)
  469. {
  470. int ret;
  471. ret = ioctl(fd, request, argp);
  472. if (ret < 0)
  473. bb_simple_perror_msg_and_die(ioctl_name);
  474. return ret;
  475. }
  476. #else
  477. int FAST_FUNC bb_ioctl_or_warn(int fd, unsigned request, void *argp)
  478. {
  479. int ret;
  480. ret = ioctl(fd, request, argp);
  481. if (ret < 0)
  482. bb_perror_msg("ioctl %#x failed", request);
  483. return ret;
  484. }
  485. int FAST_FUNC bb_xioctl(int fd, unsigned request, void *argp)
  486. {
  487. int ret;
  488. ret = ioctl(fd, request, argp);
  489. if (ret < 0)
  490. bb_perror_msg_and_die("ioctl %#x failed", request);
  491. return ret;
  492. }
  493. #endif
  494. char* FAST_FUNC xmalloc_ttyname(int fd)
  495. {
  496. char buf[128];
  497. int r = ttyname_r(fd, buf, sizeof(buf) - 1);
  498. if (r)
  499. return NULL;
  500. return xstrdup(buf);
  501. }
  502. void FAST_FUNC generate_uuid(uint8_t *buf)
  503. {
  504. /* http://www.ietf.org/rfc/rfc4122.txt
  505. * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
  506. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  507. * | time_low |
  508. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  509. * | time_mid | time_hi_and_version |
  510. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  511. * |clk_seq_and_variant | node (0-1) |
  512. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  513. * | node (2-5) |
  514. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  515. * IOW, uuid has this layout:
  516. * uint32_t time_low (big endian)
  517. * uint16_t time_mid (big endian)
  518. * uint16_t time_hi_and_version (big endian)
  519. * version is a 4-bit field:
  520. * 1 Time-based
  521. * 2 DCE Security, with embedded POSIX UIDs
  522. * 3 Name-based (MD5)
  523. * 4 Randomly generated
  524. * 5 Name-based (SHA-1)
  525. * uint16_t clk_seq_and_variant (big endian)
  526. * variant is a 3-bit field:
  527. * 0xx Reserved, NCS backward compatibility
  528. * 10x The variant specified in rfc4122
  529. * 110 Reserved, Microsoft backward compatibility
  530. * 111 Reserved for future definition
  531. * uint8_t node[6]
  532. *
  533. * For version 4, these bits are set/cleared:
  534. * time_hi_and_version & 0x0fff | 0x4000
  535. * clk_seq_and_variant & 0x3fff | 0x8000
  536. */
  537. pid_t pid;
  538. int i;
  539. i = open("/dev/urandom", O_RDONLY);
  540. if (i >= 0) {
  541. read(i, buf, 16);
  542. close(i);
  543. }
  544. /* Paranoia. /dev/urandom may be missing.
  545. * rand() is guaranteed to generate at least [0, 2^15) range,
  546. * but lowest bits in some libc are not so "random". */
  547. srand(monotonic_us()); /* pulls in printf */
  548. pid = getpid();
  549. while (1) {
  550. for (i = 0; i < 16; i++)
  551. buf[i] ^= rand() >> 5;
  552. if (pid == 0)
  553. break;
  554. srand(pid);
  555. pid = 0;
  556. }
  557. /* version = 4 */
  558. buf[4 + 2 ] = (buf[4 + 2 ] & 0x0f) | 0x40;
  559. /* variant = 10x */
  560. buf[4 + 2 + 2] = (buf[4 + 2 + 2] & 0x3f) | 0x80;
  561. }
  562. #if BB_MMU
  563. pid_t FAST_FUNC xfork(void)
  564. {
  565. pid_t pid;
  566. pid = fork();
  567. if (pid < 0) /* wtf? */
  568. bb_perror_msg_and_die("vfork"+1);
  569. return pid;
  570. }
  571. #endif
  572. void FAST_FUNC xvfork_parent_waits_and_exits(void)
  573. {
  574. pid_t pid;
  575. fflush_all();
  576. pid = xvfork();
  577. if (pid > 0) {
  578. /* Parent */
  579. int exit_status = wait_for_exitstatus(pid);
  580. if (WIFSIGNALED(exit_status))
  581. kill_myself_with_sig(WTERMSIG(exit_status));
  582. _exit(WEXITSTATUS(exit_status));
  583. }
  584. /* Child continues */
  585. }