xfuncs_printf.c 16 KB

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