blob: cd0f84dea1b561084da859b8066118c5b95451d8 [file] [log] [blame]
Denis Vlasenko858ebf12008-04-09 00:33:53 +00001/* 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 GPL version 2, see file LICENSE in this tarball for details.
10 */
11
12/* We need to have separate xfuncs.c and xfuncs_printf.c because
13 * with current linkers, even with section garbage collection,
14 * if *.o module references any of XXXprintf functions, you pull in
15 * entire printf machinery. Even if you do not use the function
16 * which uses XXXprintf.
17 *
18 * xfuncs.c contains functions (not necessarily xfuncs)
19 * which do not pull in printf, directly or indirectly.
20 * xfunc_printf.c contains those which do.
21 */
22
23#include "libbb.h"
24
25
26/* All the functions starting with "x" call bb_error_msg_and_die() if they
27 * fail, so callers never need to check for errors. If it returned, it
28 * succeeded. */
29
30#ifndef DMALLOC
31/* dmalloc provides variants of these that do abort() on failure.
32 * Since dmalloc's prototypes overwrite the impls here as they are
33 * included after these prototypes in libbb.h, all is well.
34 */
35// Warn if we can't allocate size bytes of memory.
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +000036void* FAST_FUNC malloc_or_warn(size_t size)
Denis Vlasenko858ebf12008-04-09 00:33:53 +000037{
38 void *ptr = malloc(size);
39 if (ptr == NULL && size != 0)
40 bb_error_msg(bb_msg_memory_exhausted);
41 return ptr;
42}
43
44// Die if we can't allocate size bytes of memory.
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +000045void* FAST_FUNC xmalloc(size_t size)
Denis Vlasenko858ebf12008-04-09 00:33:53 +000046{
47 void *ptr = malloc(size);
48 if (ptr == NULL && size != 0)
49 bb_error_msg_and_die(bb_msg_memory_exhausted);
50 return ptr;
51}
52
53// Die if we can't resize previously allocated memory. (This returns a pointer
54// to the new memory, which may or may not be the same as the old memory.
55// It'll copy the contents to a new chunk and free the old one if necessary.)
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +000056void* FAST_FUNC xrealloc(void *ptr, size_t size)
Denis Vlasenko858ebf12008-04-09 00:33:53 +000057{
58 ptr = realloc(ptr, size);
59 if (ptr == NULL && size != 0)
60 bb_error_msg_and_die(bb_msg_memory_exhausted);
61 return ptr;
62}
63#endif /* DMALLOC */
64
65// Die if we can't allocate and zero size bytes of memory.
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +000066void* FAST_FUNC xzalloc(size_t size)
Denis Vlasenko858ebf12008-04-09 00:33:53 +000067{
68 void *ptr = xmalloc(size);
69 memset(ptr, 0, size);
70 return ptr;
71}
72
73// Die if we can't copy a string to freshly allocated memory.
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +000074char* FAST_FUNC xstrdup(const char *s)
Denis Vlasenko858ebf12008-04-09 00:33:53 +000075{
76 char *t;
77
78 if (s == NULL)
79 return NULL;
80
81 t = strdup(s);
82
83 if (t == NULL)
84 bb_error_msg_and_die(bb_msg_memory_exhausted);
85
86 return t;
87}
88
89// Die if we can't allocate n+1 bytes (space for the null terminator) and copy
90// the (possibly truncated to length n) string into it.
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +000091char* FAST_FUNC xstrndup(const char *s, int n)
Denis Vlasenko858ebf12008-04-09 00:33:53 +000092{
93 int m;
94 char *t;
95
96 if (ENABLE_DEBUG && s == NULL)
97 bb_error_msg_and_die("xstrndup bug");
98
99 /* We can just xmalloc(n+1) and strncpy into it, */
100 /* but think about xstrndup("abc", 10000) wastage! */
101 m = n;
102 t = (char*) s;
103 while (m) {
104 if (!*t) break;
105 m--;
106 t++;
107 }
108 n -= m;
109 t = xmalloc(n + 1);
110 t[n] = '\0';
111
112 return memcpy(t, s, n);
113}
114
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000115// Die if we can't open a file and return a FILE* to it.
Denis Vlasenko858ebf12008-04-09 00:33:53 +0000116// Notice we haven't got xfread(), This is for use with fscanf() and friends.
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000117FILE* FAST_FUNC xfopen(const char *path, const char *mode)
Denis Vlasenko858ebf12008-04-09 00:33:53 +0000118{
119 FILE *fp = fopen(path, mode);
120 if (fp == NULL)
121 bb_perror_msg_and_die("can't open '%s'", path);
122 return fp;
123}
124
125// Die if we can't open a file and return a fd.
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000126int FAST_FUNC xopen3(const char *pathname, int flags, int mode)
Denis Vlasenko858ebf12008-04-09 00:33:53 +0000127{
128 int ret;
129
130 ret = open(pathname, flags, mode);
131 if (ret < 0) {
132 bb_perror_msg_and_die("can't open '%s'", pathname);
133 }
134 return ret;
135}
136
137// Die if we can't open an existing file and return a fd.
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000138int FAST_FUNC xopen(const char *pathname, int flags)
Denis Vlasenko858ebf12008-04-09 00:33:53 +0000139{
140 return xopen3(pathname, flags, 0666);
141}
142
143// Warn if we can't open a file and return a fd.
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000144int FAST_FUNC open3_or_warn(const char *pathname, int flags, int mode)
Denis Vlasenko858ebf12008-04-09 00:33:53 +0000145{
146 int ret;
147
148 ret = open(pathname, flags, mode);
149 if (ret < 0) {
150 bb_perror_msg("can't open '%s'", pathname);
151 }
152 return ret;
153}
154
155// Warn if we can't open a file and return a fd.
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000156int FAST_FUNC open_or_warn(const char *pathname, int flags)
Denis Vlasenko858ebf12008-04-09 00:33:53 +0000157{
158 return open3_or_warn(pathname, flags, 0666);
159}
160
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000161void FAST_FUNC xunlink(const char *pathname)
Denis Vlasenko858ebf12008-04-09 00:33:53 +0000162{
163 if (unlink(pathname))
164 bb_perror_msg_and_die("can't remove file '%s'", pathname);
165}
166
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000167void FAST_FUNC xrename(const char *oldpath, const char *newpath)
Denis Vlasenko858ebf12008-04-09 00:33:53 +0000168{
169 if (rename(oldpath, newpath))
170 bb_perror_msg_and_die("can't move '%s' to '%s'", oldpath, newpath);
171}
172
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000173int FAST_FUNC rename_or_warn(const char *oldpath, const char *newpath)
Denis Vlasenko858ebf12008-04-09 00:33:53 +0000174{
175 int n = rename(oldpath, newpath);
176 if (n)
177 bb_perror_msg("can't move '%s' to '%s'", oldpath, newpath);
178 return n;
179}
180
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000181void FAST_FUNC xpipe(int filedes[2])
Denis Vlasenko858ebf12008-04-09 00:33:53 +0000182{
183 if (pipe(filedes))
184 bb_perror_msg_and_die("can't create pipe");
185}
186
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000187void FAST_FUNC xdup2(int from, int to)
Denis Vlasenko858ebf12008-04-09 00:33:53 +0000188{
189 if (dup2(from, to) != to)
190 bb_perror_msg_and_die("can't duplicate file descriptor");
191}
192
193// "Renumber" opened fd
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000194void FAST_FUNC xmove_fd(int from, int to)
Denis Vlasenko858ebf12008-04-09 00:33:53 +0000195{
196 if (from == to)
197 return;
198 xdup2(from, to);
199 close(from);
200}
201
202// Die with an error message if we can't write the entire buffer.
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000203void FAST_FUNC xwrite(int fd, const void *buf, size_t count)
Denis Vlasenko858ebf12008-04-09 00:33:53 +0000204{
205 if (count) {
206 ssize_t size = full_write(fd, buf, count);
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000207 if ((size_t)size != count)
Denis Vlasenko858ebf12008-04-09 00:33:53 +0000208 bb_error_msg_and_die("short write");
209 }
210}
211
212// Die with an error message if we can't lseek to the right spot.
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000213off_t FAST_FUNC xlseek(int fd, off_t offset, int whence)
Denis Vlasenko858ebf12008-04-09 00:33:53 +0000214{
215 off_t off = lseek(fd, offset, whence);
216 if (off == (off_t)-1) {
217 if (whence == SEEK_SET)
218 bb_perror_msg_and_die("lseek(%"OFF_FMT"u)", offset);
219 bb_perror_msg_and_die("lseek");
220 }
221 return off;
222}
223
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000224// Die with supplied filename if this FILE* has ferror set.
225void FAST_FUNC die_if_ferror(FILE *fp, const char *fn)
Denis Vlasenko858ebf12008-04-09 00:33:53 +0000226{
227 if (ferror(fp)) {
228 /* ferror doesn't set useful errno */
229 bb_error_msg_and_die("%s: I/O error", fn);
230 }
231}
232
233// Die with an error message if stdout has ferror set.
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000234void FAST_FUNC die_if_ferror_stdout(void)
Denis Vlasenko858ebf12008-04-09 00:33:53 +0000235{
236 die_if_ferror(stdout, bb_msg_standard_output);
237}
238
239// Die with an error message if we have trouble flushing stdout.
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000240void FAST_FUNC xfflush_stdout(void)
Denis Vlasenko858ebf12008-04-09 00:33:53 +0000241{
242 if (fflush(stdout)) {
243 bb_perror_msg_and_die(bb_msg_standard_output);
244 }
245}
246
247
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000248int FAST_FUNC bb_putchar(int ch)
Denis Vlasenko858ebf12008-04-09 00:33:53 +0000249{
250 /* time.c needs putc(ch, stdout), not putchar(ch).
251 * it does "stdout = stderr;", but then glibc's putchar()
252 * doesn't work as expected. bad glibc, bad */
253 return putc(ch, stdout);
254}
255
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000256/* Die with an error message if we can't copy an entire FILE* to stdout,
Denis Vlasenko858ebf12008-04-09 00:33:53 +0000257 * then close that file. */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000258void FAST_FUNC xprint_and_close_file(FILE *file)
Denis Vlasenko858ebf12008-04-09 00:33:53 +0000259{
260 fflush(stdout);
261 // copyfd outputs error messages for us.
262 if (bb_copyfd_eof(fileno(file), 1) == -1)
263 xfunc_die();
264
265 fclose(file);
266}
267
268// Die with an error message if we can't malloc() enough space and do an
269// sprintf() into that space.
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000270char* FAST_FUNC xasprintf(const char *format, ...)
Denis Vlasenko858ebf12008-04-09 00:33:53 +0000271{
272 va_list p;
273 int r;
274 char *string_ptr;
275
276#if 1
277 // GNU extension
278 va_start(p, format);
279 r = vasprintf(&string_ptr, format, p);
280 va_end(p);
281#else
282 // Bloat for systems that haven't got the GNU extension.
283 va_start(p, format);
284 r = vsnprintf(NULL, 0, format, p);
285 va_end(p);
286 string_ptr = xmalloc(r+1);
287 va_start(p, format);
288 r = vsnprintf(string_ptr, r+1, format, p);
289 va_end(p);
290#endif
291
292 if (r < 0)
293 bb_error_msg_and_die(bb_msg_memory_exhausted);
294 return string_ptr;
295}
296
297#if 0 /* If we will ever meet a libc which hasn't [f]dprintf... */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000298int FAST_FUNC fdprintf(int fd, const char *format, ...)
Denis Vlasenko858ebf12008-04-09 00:33:53 +0000299{
300 va_list p;
301 int r;
302 char *string_ptr;
303
304#if 1
305 // GNU extension
306 va_start(p, format);
307 r = vasprintf(&string_ptr, format, p);
308 va_end(p);
309#else
310 // Bloat for systems that haven't got the GNU extension.
311 va_start(p, format);
312 r = vsnprintf(NULL, 0, format, p) + 1;
313 va_end(p);
314 string_ptr = malloc(r);
315 if (string_ptr) {
316 va_start(p, format);
317 r = vsnprintf(string_ptr, r, format, p);
318 va_end(p);
319 }
320#endif
321
322 if (r >= 0) {
323 full_write(fd, string_ptr, r);
324 free(string_ptr);
325 }
326 return r;
327}
328#endif
329
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000330void FAST_FUNC xsetenv(const char *key, const char *value)
Denis Vlasenko858ebf12008-04-09 00:33:53 +0000331{
332 if (setenv(key, value, 1))
333 bb_error_msg_and_die(bb_msg_memory_exhausted);
334}
335
Denis Vlasenko76ddc2e2008-12-30 05:05:31 +0000336/* Handles "VAR=VAL" strings, even those which are part of environ
337 * _right now_
338 */
339void FAST_FUNC bb_unsetenv(const char *var)
340{
341 char *tp = strchr(var, '=');
342
343 if (!tp) {
344 unsetenv(var);
345 return;
346 }
347
348 /* In case var was putenv'ed, we can't replace '='
349 * with NUL and unsetenv(var) - it won't work,
350 * env is modified by the replacement, unsetenv
351 * sees "VAR" instead of "VAR=VAL" and does not remove it!
352 * horror :( */
353 tp = xstrndup(var, tp - var);
354 unsetenv(tp);
355 free(tp);
356}
357
358
Denis Vlasenko858ebf12008-04-09 00:33:53 +0000359// Die with an error message if we can't set gid. (Because resource limits may
360// limit this user to a given number of processes, and if that fills up the
361// setgid() will fail and we'll _still_be_root_, which is bad.)
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000362void FAST_FUNC xsetgid(gid_t gid)
Denis Vlasenko858ebf12008-04-09 00:33:53 +0000363{
364 if (setgid(gid)) bb_perror_msg_and_die("setgid");
365}
366
367// Die with an error message if we can't set uid. (See xsetgid() for why.)
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000368void FAST_FUNC xsetuid(uid_t uid)
Denis Vlasenko858ebf12008-04-09 00:33:53 +0000369{
370 if (setuid(uid)) bb_perror_msg_and_die("setuid");
371}
372
373// Die if we can't chdir to a new path.
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000374void FAST_FUNC xchdir(const char *path)
Denis Vlasenko858ebf12008-04-09 00:33:53 +0000375{
376 if (chdir(path))
377 bb_perror_msg_and_die("chdir(%s)", path);
378}
379
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000380void FAST_FUNC xchroot(const char *path)
Denis Vlasenko858ebf12008-04-09 00:33:53 +0000381{
382 if (chroot(path))
383 bb_perror_msg_and_die("can't change root directory to %s", path);
384}
385
386// Print a warning message if opendir() fails, but don't die.
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000387DIR* FAST_FUNC warn_opendir(const char *path)
Denis Vlasenko858ebf12008-04-09 00:33:53 +0000388{
389 DIR *dp;
390
391 dp = opendir(path);
392 if (!dp)
393 bb_perror_msg("can't open '%s'", path);
394 return dp;
395}
396
397// Die with an error message if opendir() fails.
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000398DIR* FAST_FUNC xopendir(const char *path)
Denis Vlasenko858ebf12008-04-09 00:33:53 +0000399{
400 DIR *dp;
401
402 dp = opendir(path);
403 if (!dp)
404 bb_perror_msg_and_die("can't open '%s'", path);
405 return dp;
406}
407
408// Die with an error message if we can't open a new socket.
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000409int FAST_FUNC xsocket(int domain, int type, int protocol)
Denis Vlasenko858ebf12008-04-09 00:33:53 +0000410{
411 int r = socket(domain, type, protocol);
412
413 if (r < 0) {
414 /* Hijack vaguely related config option */
415#if ENABLE_VERBOSE_RESOLUTION_ERRORS
416 const char *s = "INET";
417 if (domain == AF_PACKET) s = "PACKET";
418 if (domain == AF_NETLINK) s = "NETLINK";
419USE_FEATURE_IPV6(if (domain == AF_INET6) s = "INET6";)
420 bb_perror_msg_and_die("socket(AF_%s)", s);
421#else
422 bb_perror_msg_and_die("socket");
423#endif
424 }
425
426 return r;
427}
428
429// Die with an error message if we can't bind a socket to an address.
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000430void FAST_FUNC xbind(int sockfd, struct sockaddr *my_addr, socklen_t addrlen)
Denis Vlasenko858ebf12008-04-09 00:33:53 +0000431{
432 if (bind(sockfd, my_addr, addrlen)) bb_perror_msg_and_die("bind");
433}
434
435// Die with an error message if we can't listen for connections on a socket.
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000436void FAST_FUNC xlisten(int s, int backlog)
Denis Vlasenko858ebf12008-04-09 00:33:53 +0000437{
438 if (listen(s, backlog)) bb_perror_msg_and_die("listen");
439}
440
441/* Die with an error message if sendto failed.
442 * Return bytes sent otherwise */
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000443ssize_t FAST_FUNC xsendto(int s, const void *buf, size_t len, const struct sockaddr *to,
Denis Vlasenko858ebf12008-04-09 00:33:53 +0000444 socklen_t tolen)
445{
446 ssize_t ret = sendto(s, buf, len, 0, to, tolen);
447 if (ret < 0) {
448 if (ENABLE_FEATURE_CLEAN_UP)
449 close(s);
450 bb_perror_msg_and_die("sendto");
451 }
452 return ret;
453}
454
455// xstat() - a stat() which dies on failure with meaningful error message
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000456void FAST_FUNC xstat(const char *name, struct stat *stat_buf)
Denis Vlasenko858ebf12008-04-09 00:33:53 +0000457{
458 if (stat(name, stat_buf))
459 bb_perror_msg_and_die("can't stat '%s'", name);
460}
461
462// selinux_or_die() - die if SELinux is disabled.
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000463void FAST_FUNC selinux_or_die(void)
Denis Vlasenko858ebf12008-04-09 00:33:53 +0000464{
465#if ENABLE_SELINUX
466 int rc = is_selinux_enabled();
467 if (rc == 0) {
468 bb_error_msg_and_die("SELinux is disabled");
469 } else if (rc < 0) {
470 bb_error_msg_and_die("is_selinux_enabled() failed");
471 }
472#else
473 bb_error_msg_and_die("SELinux support is disabled");
474#endif
475}
476
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000477int FAST_FUNC ioctl_or_perror_and_die(int fd, unsigned request, void *argp, const char *fmt,...)
Denis Vlasenko858ebf12008-04-09 00:33:53 +0000478{
479 int ret;
480 va_list p;
481
482 ret = ioctl(fd, request, argp);
483 if (ret < 0) {
484 va_start(p, fmt);
485 bb_verror_msg(fmt, p, strerror(errno));
486 /* xfunc_die can actually longjmp, so be nice */
487 va_end(p);
488 xfunc_die();
489 }
490 return ret;
491}
492
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000493int FAST_FUNC ioctl_or_perror(int fd, unsigned request, void *argp, const char *fmt,...)
Denis Vlasenko858ebf12008-04-09 00:33:53 +0000494{
495 va_list p;
496 int ret = ioctl(fd, request, argp);
497
498 if (ret < 0) {
499 va_start(p, fmt);
500 bb_verror_msg(fmt, p, strerror(errno));
501 va_end(p);
502 }
503 return ret;
504}
505
506#if ENABLE_IOCTL_HEX2STR_ERROR
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000507int FAST_FUNC bb_ioctl_or_warn(int fd, unsigned request, void *argp, const char *ioctl_name)
Denis Vlasenko858ebf12008-04-09 00:33:53 +0000508{
509 int ret;
510
511 ret = ioctl(fd, request, argp);
512 if (ret < 0)
513 bb_simple_perror_msg(ioctl_name);
514 return ret;
515}
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000516int FAST_FUNC bb_xioctl(int fd, unsigned request, void *argp, const char *ioctl_name)
Denis Vlasenko858ebf12008-04-09 00:33:53 +0000517{
518 int ret;
519
520 ret = ioctl(fd, request, argp);
521 if (ret < 0)
522 bb_simple_perror_msg_and_die(ioctl_name);
523 return ret;
524}
525#else
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000526int FAST_FUNC bb_ioctl_or_warn(int fd, unsigned request, void *argp)
Denis Vlasenko858ebf12008-04-09 00:33:53 +0000527{
528 int ret;
529
530 ret = ioctl(fd, request, argp);
531 if (ret < 0)
532 bb_perror_msg("ioctl %#x failed", request);
533 return ret;
534}
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000535int FAST_FUNC bb_xioctl(int fd, unsigned request, void *argp)
Denis Vlasenko858ebf12008-04-09 00:33:53 +0000536{
537 int ret;
538
539 ret = ioctl(fd, request, argp);
540 if (ret < 0)
541 bb_perror_msg_and_die("ioctl %#x failed", request);
542 return ret;
543}
544#endif