3
0

xfuncs_printf.c 15 KB

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