blob: 827cbe870845c107437c05c93df0fe07d6ddbbdb [file] [log] [blame]
Eric Andersenaad1a882001-03-16 22:47:14 +00001/* vi: set sw=4 ts=4: */
2/*
3 * Utility routines.
4 *
Eric Andersenc7bda1c2004-03-15 08:29:22 +00005 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
Rob Landleyd921b2e2006-08-03 15:41:12 +00006 * Copyright (C) 2006 Rob Landley
7 * Copyright (C) 2006 Denis Vlasenko
Eric Andersenaad1a882001-03-16 22:47:14 +00008 *
Rob Landleyfbdf1212006-09-20 22:06:01 +00009 * Licensed under GPL version 2, see file LICENSE in this tarball for details.
Eric Andersenaad1a882001-03-16 22:47:14 +000010 */
11
Rob Landley552b56d2006-05-04 21:22:27 +000012#include "busybox.h"
Eric Andersenaad1a882001-03-16 22:47:14 +000013
Rob Landley23b61be2006-08-04 20:20:03 +000014/* All the functions starting with "x" call bb_error_msg_and_die() if they
15 * fail, so callers never need to check for errors. If it returned, it
16 * succeeded. */
17
Eric Andersenaad1a882001-03-16 22:47:14 +000018#ifndef DMALLOC
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000019/* dmalloc provides variants of these that do abort() on failure.
20 * Since dmalloc's prototypes overwrite the impls here as they are
21 * included after these prototypes in libbb.h, all is well.
22 */
Rob Landleyda9d1d02006-09-14 19:52:07 +000023// Die if we can't allocate size bytes of memory.
Rob Landleydfba7412006-03-06 20:47:33 +000024void *xmalloc(size_t size)
Eric Andersenaad1a882001-03-16 22:47:14 +000025{
26 void *ptr = malloc(size);
Matt Kraaia99b1942002-02-26 15:28:22 +000027 if (ptr == NULL && size != 0)
Manuel Novoa III cad53642003-03-19 09:13:01 +000028 bb_error_msg_and_die(bb_msg_memory_exhausted);
Eric Andersenaad1a882001-03-16 22:47:14 +000029 return ptr;
30}
31
Rob Landleyda9d1d02006-09-14 19:52:07 +000032// Die if we can't resize previously allocated memory. (This returns a pointer
33// to the new memory, which may or may not be the same as the old memory.
34// It'll copy the contents to a new chunk and free the old one if necessary.)
Rob Landleydfba7412006-03-06 20:47:33 +000035void *xrealloc(void *ptr, size_t size)
Eric Andersenaad1a882001-03-16 22:47:14 +000036{
Matt Kraaia99b1942002-02-26 15:28:22 +000037 ptr = realloc(ptr, size);
38 if (ptr == NULL && size != 0)
Manuel Novoa III cad53642003-03-19 09:13:01 +000039 bb_error_msg_and_die(bb_msg_memory_exhausted);
Eric Andersenaad1a882001-03-16 22:47:14 +000040 return ptr;
41}
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000042#endif /* DMALLOC */
43
Rob Landleyda9d1d02006-09-14 19:52:07 +000044// Die if we can't allocate and zero size bytes of memory.
Rob Landley80b8ff02006-05-19 20:36:49 +000045void *xzalloc(size_t size)
46{
47 void *ptr = xmalloc(size);
48 memset(ptr, 0, size);
49 return ptr;
50}
Rob Landley80b8ff02006-05-19 20:36:49 +000051
Rob Landleyda9d1d02006-09-14 19:52:07 +000052// Die if we can't copy a string to freshly allocated memory.
Rob Landley23b61be2006-08-04 20:20:03 +000053char * xstrdup(const char *s)
Rob Landley31642d72006-03-14 21:45:38 +000054{
Eric Andersenaad1a882001-03-16 22:47:14 +000055 char *t;
56
57 if (s == NULL)
58 return NULL;
59
Denis Vlasenkocf749bc2006-11-26 15:45:17 +000060 t = strdup(s);
Eric Andersenaad1a882001-03-16 22:47:14 +000061
62 if (t == NULL)
Manuel Novoa III cad53642003-03-19 09:13:01 +000063 bb_error_msg_and_die(bb_msg_memory_exhausted);
Eric Andersenaad1a882001-03-16 22:47:14 +000064
65 return t;
66}
Eric Andersenaad1a882001-03-16 22:47:14 +000067
Rob Landleyda9d1d02006-09-14 19:52:07 +000068// Die if we can't allocate n+1 bytes (space for the null terminator) and copy
69// the (possibly truncated to length n) string into it.
Rob Landley23b61be2006-08-04 20:20:03 +000070char * xstrndup(const char *s, int n)
Rob Landley31642d72006-03-14 21:45:38 +000071{
Denis Vlasenkocf749bc2006-11-26 15:45:17 +000072 int m;
Eric Andersenaad1a882001-03-16 22:47:14 +000073 char *t;
74
Rob Landley8bbdb872006-06-30 16:36:56 +000075 if (ENABLE_DEBUG && s == NULL)
Rob Landleyd921b2e2006-08-03 15:41:12 +000076 bb_error_msg_and_die("xstrndup bug");
Eric Andersenaad1a882001-03-16 22:47:14 +000077
Denis Vlasenkocf749bc2006-11-26 15:45:17 +000078 /* We can just xmalloc(n+1) and strncpy into it, */
79 /* but think about xstrndup("abc", 10000) wastage! */
80 m = n;
81 t = (char*) s;
82 while (m) {
83 if (!*t) break;
84 m--; t++;
85 }
86 n = n - m;
87 t = xmalloc(n + 1);
88 t[n] = '\0';
Eric Andersenc7bda1c2004-03-15 08:29:22 +000089
Denis Vlasenkocf749bc2006-11-26 15:45:17 +000090 return memcpy(t,s,n);
Eric Andersenaad1a882001-03-16 22:47:14 +000091}
92
Rob Landleyda9d1d02006-09-14 19:52:07 +000093// Die if we can't open a file and return a FILE * to it.
94// Notice we haven't got xfread(), This is for use with fscanf() and friends.
Rob Landleyd921b2e2006-08-03 15:41:12 +000095FILE *xfopen(const char *path, const char *mode)
Eric Andersenaad1a882001-03-16 22:47:14 +000096{
Denis Vlasenkocf749bc2006-11-26 15:45:17 +000097 FILE *fp = fopen(path, mode);
98 if (fp == NULL)
Manuel Novoa III cad53642003-03-19 09:13:01 +000099 bb_perror_msg_and_die("%s", path);
Eric Andersenaad1a882001-03-16 22:47:14 +0000100 return fp;
101}
102
Rob Landleyda9d1d02006-09-14 19:52:07 +0000103// Die if we can't open an existing file and return an fd.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000104int xopen(const char *pathname, int flags)
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000105{
Denis Vlasenkocf749bc2006-11-26 15:45:17 +0000106 //if (ENABLE_DEBUG && (flags & O_CREAT))
107 // bb_error_msg_and_die("xopen() with O_CREAT");
Rob Landley23b61be2006-08-04 20:20:03 +0000108
Denis Vlasenkoea620772006-10-14 02:23:43 +0000109 return xopen3(pathname, flags, 0666);
Bernhard Reutner-Fischerc2cb0f32006-04-13 12:45:04 +0000110}
Bernhard Reutner-Fischerc2cb0f32006-04-13 12:45:04 +0000111
Rob Landleyda9d1d02006-09-14 19:52:07 +0000112// Die if we can't open a new file and return an fd.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000113int xopen3(const char *pathname, int flags, int mode)
Bernhard Reutner-Fischerc2cb0f32006-04-13 12:45:04 +0000114{
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000115 int ret;
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000116
Bernhard Reutner-Fischerc2cb0f32006-04-13 12:45:04 +0000117 ret = open(pathname, flags, mode);
118 if (ret < 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000119 bb_perror_msg_and_die("%s", pathname);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000120 }
121 return ret;
122}
123
Denis Vlasenko75f8d082006-11-22 15:54:52 +0000124// Turn on nonblocking I/O on a fd
125int ndelay_on(int fd)
126{
127 return fcntl(fd,F_SETFL,fcntl(fd,F_GETFL,0) | O_NONBLOCK);
128}
129
Denis Vlasenkoa5b3e762006-12-24 07:15:50 +0000130int ndelay_off(int fd)
131{
132 return fcntl(fd,F_SETFL,fcntl(fd,F_GETFL,0) & ~O_NONBLOCK);
133}
134
Rob Landleyda9d1d02006-09-14 19:52:07 +0000135// Die with an error message if we can't write the entire buffer.
Denis Vlasenko2d27e4c2006-11-25 23:50:28 +0000136void xwrite(int fd, const void *buf, size_t count)
Rob Landley53437472006-07-16 08:14:35 +0000137{
Denis Vlasenko88ca0672006-10-12 22:44:13 +0000138 if (count) {
139 ssize_t size = full_write(fd, buf, count);
140 if (size != count)
Denis Vlasenko1db39b22006-10-11 20:59:02 +0000141 bb_error_msg_and_die("short write");
Rob Landley53437472006-07-16 08:14:35 +0000142 }
143}
Rob Landley53437472006-07-16 08:14:35 +0000144
Rob Landleyda9d1d02006-09-14 19:52:07 +0000145// Die with an error message if we can't lseek to the right spot.
Denis Vlasenkoea620772006-10-14 02:23:43 +0000146off_t xlseek(int fd, off_t offset, int whence)
Rob Landley53437472006-07-16 08:14:35 +0000147{
Denis Vlasenkoea620772006-10-14 02:23:43 +0000148 off_t off = lseek(fd, offset, whence);
Denis Vlasenkoc6ce8732006-11-29 18:15:52 +0000149 if (off == (off_t)-1) {
150 if (whence == SEEK_SET)
151 bb_perror_msg_and_die("lseek(%"OFF_FMT"u)", offset);
Denis Vlasenkoea620772006-10-14 02:23:43 +0000152 bb_perror_msg_and_die("lseek");
Denis Vlasenkoc6ce8732006-11-29 18:15:52 +0000153 }
Denis Vlasenkoea620772006-10-14 02:23:43 +0000154 return off;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000155}
156
Denis Vlasenkocf749bc2006-11-26 15:45:17 +0000157// Die with supplied filename if this FILE * has ferror set.
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000158void die_if_ferror(FILE *fp, const char *fn)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000159{
160 if (ferror(fp)) {
Denis Vlasenko2d27e4c2006-11-25 23:50:28 +0000161 bb_error_msg_and_die("%s: I/O error", fn);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000162 }
163}
Manuel Novoa III cad53642003-03-19 09:13:01 +0000164
Rob Landleyda9d1d02006-09-14 19:52:07 +0000165// Die with an error message if stdout has ferror set.
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000166void die_if_ferror_stdout(void)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000167{
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000168 die_if_ferror(stdout, bb_msg_standard_output);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000169}
Manuel Novoa III cad53642003-03-19 09:13:01 +0000170
Rob Landleyda9d1d02006-09-14 19:52:07 +0000171// Die with an error message if we have trouble flushing stdout.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000172void xfflush_stdout(void)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000173{
174 if (fflush(stdout)) {
175 bb_perror_msg_and_die(bb_msg_standard_output);
176 }
177}
Rob Landley399d2b52006-05-25 23:02:40 +0000178
Rob Landleyda9d1d02006-09-14 19:52:07 +0000179// This does a fork/exec in one call, using vfork(). Return PID of new child,
180// -1 for failure. Runs argv[0], searching path if that has no / in it.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000181pid_t spawn(char **argv)
Rob Landley399d2b52006-05-25 23:02:40 +0000182{
Denis Vlasenko8f6c7922006-12-23 00:49:10 +0000183 /* Why static? */
Rob Landley399d2b52006-05-25 23:02:40 +0000184 static int failed;
185 pid_t pid;
Rob Landley519d7df2006-08-09 20:56:23 +0000186 void *app = ENABLE_FEATURE_SH_STANDALONE_SHELL ? find_applet_by_name(argv[0]) : 0;
Rob Landley399d2b52006-05-25 23:02:40 +0000187
Rob Landleyda9d1d02006-09-14 19:52:07 +0000188 // Be nice to nommu machines.
Rob Landley399d2b52006-05-25 23:02:40 +0000189 failed = 0;
190 pid = vfork();
191 if (pid < 0) return pid;
192 if (!pid) {
Rob Landleyc7ddefc2006-06-14 01:24:33 +0000193 execvp(app ? CONFIG_BUSYBOX_EXEC_PATH : *argv, argv);
Rob Landley399d2b52006-05-25 23:02:40 +0000194
Rob Landleyda9d1d02006-09-14 19:52:07 +0000195 // We're sharing a stack with blocked parent, let parent know we failed
196 // and then exit to unblock parent (but don't run atexit() stuff, which
197 // would screw up parent.)
Rob Landley399d2b52006-05-25 23:02:40 +0000198
Denis Vlasenko8f6c7922006-12-23 00:49:10 +0000199 failed = errno;
Rob Landley399d2b52006-05-25 23:02:40 +0000200 _exit(0);
201 }
Denis Vlasenko8f6c7922006-12-23 00:49:10 +0000202 if (failed) {
203 errno = failed;
204 return -1;
205 }
206 return pid;
Rob Landley399d2b52006-05-25 23:02:40 +0000207}
Rob Landley399d2b52006-05-25 23:02:40 +0000208
Rob Landleyda9d1d02006-09-14 19:52:07 +0000209// Die with an error message if we can't spawn a child process.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000210pid_t xspawn(char **argv)
Rob Landley399d2b52006-05-25 23:02:40 +0000211{
Rob Landleyd921b2e2006-08-03 15:41:12 +0000212 pid_t pid = spawn(argv);
Rob Landley399d2b52006-05-25 23:02:40 +0000213 if (pid < 0) bb_perror_msg_and_die("%s", *argv);
214 return pid;
215}
Rob Landleyc7ddefc2006-06-14 01:24:33 +0000216
Rob Landleyda9d1d02006-09-14 19:52:07 +0000217// Wait for the specified child PID to exit, returning child's error return.
Rob Landleyc7ddefc2006-06-14 01:24:33 +0000218int wait4pid(int pid)
219{
220 int status;
221
222 if (pid == -1 || waitpid(pid, &status, 0) == -1) return -1;
223 if (WIFEXITED(status)) return WEXITSTATUS(status);
224 if (WIFSIGNALED(status)) return WTERMSIG(status);
225 return 0;
226}
Rob Landley5b88a382006-07-10 07:41:34 +0000227
Denis Vlasenkofe544582006-10-03 15:57:40 +0000228void xsetenv(const char *key, const char *value)
229{
Denis Vlasenko1db39b22006-10-11 20:59:02 +0000230 if (setenv(key, value, 1))
Denis Vlasenkofe544582006-10-03 15:57:40 +0000231 bb_error_msg_and_die(bb_msg_memory_exhausted);
232}
Denis Vlasenkofe544582006-10-03 15:57:40 +0000233
Denis Vlasenkoaae03112006-11-05 00:44:39 +0000234// Converts unsigned long long value into compact 4-char
235// representation. Examples: "1234", "1.2k", " 27M", "123T"
236// Fifth char is always '\0'
237void smart_ulltoa5(unsigned long long ul, char buf[5])
238{
239 char *fmt;
240 char c;
241 unsigned v,idx = 0;
242 ul *= 10;
243 if (ul > 9999*10) { // do not scale if 9999 or less
244 while (ul >= 10000) {
245 ul /= 1024;
246 idx++;
247 }
248 }
249 v = ul; // ullong divisions are expensive, avoid them
250
251 fmt = " 123456789";
252 if (!idx) { // 9999 or less: use 1234 format
253 c = buf[0] = " 123456789"[v/10000];
254 if (c!=' ') fmt = "0123456789";
255 c = buf[1] = fmt[v/1000%10];
256 if (c!=' ') fmt = "0123456789";
257 buf[2] = fmt[v/100%10];
258 buf[3] = "0123456789"[v/10%10];
259 } else {
260 if (v>=10*10) { // scaled value is >=10: use 123M format
261 c = buf[0] = " 123456789"[v/1000];
262 if (c!=' ') fmt = "0123456789";
263 buf[1] = fmt[v/100%10];
264 buf[2] = "0123456789"[v/10%10];
265 } else { // scaled value is <10: use 1.2M format
266 buf[0] = "0123456789"[v/10];
267 buf[1] = '.';
268 buf[2] = "0123456789"[v%10];
269 }
270 // see http://en.wikipedia.org/wiki/Tera
271 buf[3] = " kMGTPEZY"[idx];
272 }
273 buf[4] = '\0';
274}
275
Rob Landleyda9d1d02006-09-14 19:52:07 +0000276// Convert unsigned integer to ascii, writing into supplied buffer. A
277// truncated result is always null terminated (unless buflen is 0), and
278// contains the first few digits of the result ala strncpy.
Denis Vlasenkoaae03112006-11-05 00:44:39 +0000279void BUG_sizeof_unsigned_not_4(void);
Rob Landley22d39582006-07-11 00:44:36 +0000280void utoa_to_buf(unsigned n, char *buf, unsigned buflen)
Rob Landley5b88a382006-07-10 07:41:34 +0000281{
Denis Vlasenkoaae03112006-11-05 00:44:39 +0000282 unsigned i, out, res;
283 if (sizeof(unsigned) != 4)
284 BUG_sizeof_unsigned_not_4();
Rob Landley22d39582006-07-11 00:44:36 +0000285 if (buflen) {
Denis Vlasenkoaae03112006-11-05 00:44:39 +0000286 out = 0;
287 for (i = 1000000000; i; i /= 10) {
288 res = n / i;
289 if (res || out || i == 1) {
290 if (!--buflen) break;
Rob Landley22d39582006-07-11 00:44:36 +0000291 out++;
292 n -= res*i;
293 *buf++ = '0' + res;
294 }
Rob Landley5b88a382006-07-10 07:41:34 +0000295 }
Denis Vlasenkoaae03112006-11-05 00:44:39 +0000296 *buf = '\0';
Rob Landley5b88a382006-07-10 07:41:34 +0000297 }
Rob Landley5b88a382006-07-10 07:41:34 +0000298}
299
Rob Landleyda9d1d02006-09-14 19:52:07 +0000300// Convert signed integer to ascii, like utoa_to_buf()
Rob Landley22d39582006-07-11 00:44:36 +0000301void itoa_to_buf(int n, char *buf, unsigned buflen)
Rob Landley5b88a382006-07-10 07:41:34 +0000302{
Rob Landley22d39582006-07-11 00:44:36 +0000303 if (buflen && n<0) {
Rob Landley5b88a382006-07-10 07:41:34 +0000304 n = -n;
305 *buf++ = '-';
Rob Landley22d39582006-07-11 00:44:36 +0000306 buflen--;
Rob Landley5b88a382006-07-10 07:41:34 +0000307 }
308 utoa_to_buf((unsigned)n, buf, buflen);
309}
310
Rob Landleyda9d1d02006-09-14 19:52:07 +0000311// The following two functions use a static buffer, so calling either one a
312// second time will overwrite previous results.
313//
314// The largest 32 bit integer is -2 billion plus null terminator, or 12 bytes.
315// Int should always be 32 bits on any remotely Unix-like system, see
316// http://www.unix.org/whitepapers/64bit.html for the reasons why.
317
Rob Landley23b61be2006-08-04 20:20:03 +0000318static char local_buf[12];
319
Rob Landleyda9d1d02006-09-14 19:52:07 +0000320// Convert unsigned integer to ascii using a static buffer (returned).
Rob Landley23b61be2006-08-04 20:20:03 +0000321char *utoa(unsigned n)
322{
323 utoa_to_buf(n, local_buf, sizeof(local_buf));
324
325 return local_buf;
326}
327
Rob Landleyda9d1d02006-09-14 19:52:07 +0000328// Convert signed integer to ascii using a static buffer (returned).
Rob Landley5b88a382006-07-10 07:41:34 +0000329char *itoa(int n)
330{
331 itoa_to_buf(n, local_buf, sizeof(local_buf));
332
333 return local_buf;
334}
Rob Landleydf822f22006-07-15 23:00:46 +0000335
Rob Landleyda9d1d02006-09-14 19:52:07 +0000336// Die with an error message if we can't set gid. (Because resource limits may
337// limit this user to a given number of processes, and if that fills up the
338// setgid() will fail and we'll _still_be_root_, which is bad.)
Rob Landleydf822f22006-07-15 23:00:46 +0000339void xsetgid(gid_t gid)
340{
341 if (setgid(gid)) bb_error_msg_and_die("setgid");
342}
343
Denis Vlasenkoe1a0d482006-10-20 13:28:22 +0000344// Die with an error message if we can't set uid. (See xsetgid() for why.)
Rob Landleydf822f22006-07-15 23:00:46 +0000345void xsetuid(uid_t uid)
346{
347 if (setuid(uid)) bb_error_msg_and_die("setuid");
348}
Rob Landley53437472006-07-16 08:14:35 +0000349
Rob Landleyda9d1d02006-09-14 19:52:07 +0000350// Return how long the file at fd is, if there's any way to determine it.
Rob Landley53437472006-07-16 08:14:35 +0000351off_t fdlength(int fd)
352{
353 off_t bottom = 0, top = 0, pos;
354 long size;
355
Rob Landleyda9d1d02006-09-14 19:52:07 +0000356 // If the ioctl works for this, return it.
Rob Landley53437472006-07-16 08:14:35 +0000357
358 if (ioctl(fd, BLKGETSIZE, &size) >= 0) return size*512;
359
Denis Vlasenko621204b2006-10-27 09:03:24 +0000360 // FIXME: explain why lseek(SEEK_END) is not used here!
361
Rob Landleyda9d1d02006-09-14 19:52:07 +0000362 // If not, do a binary search for the last location we can read. (Some
363 // block devices don't do BLKGETSIZE right.)
Rob Landley53437472006-07-16 08:14:35 +0000364
365 do {
366 char temp;
367
Denis Vlasenkod25a2642006-09-05 09:36:19 +0000368 pos = bottom + (top - bottom) / 2;
Rob Landley53437472006-07-16 08:14:35 +0000369
Rob Landleyda9d1d02006-09-14 19:52:07 +0000370 // If we can read from the current location, it's bigger.
Rob Landley53437472006-07-16 08:14:35 +0000371
Denis Vlasenkoea620772006-10-14 02:23:43 +0000372 if (lseek(fd, pos, SEEK_SET)>=0 && safe_read(fd, &temp, 1)==1) {
Rob Landley53437472006-07-16 08:14:35 +0000373 if (bottom == top) bottom = top = (top+1) * 2;
374 else bottom = pos;
375
Rob Landleyda9d1d02006-09-14 19:52:07 +0000376 // If we can't, it's smaller.
Rob Landley53437472006-07-16 08:14:35 +0000377
378 } else {
379 if (bottom == top) {
380 if (!top) return 0;
381 bottom = top/2;
382 }
383 else top = pos;
384 }
385 } while (bottom + 1 != top);
386
387 return pos + 1;
388}
Rob Landleyd921b2e2006-08-03 15:41:12 +0000389
Rob Landleyda9d1d02006-09-14 19:52:07 +0000390// Die with an error message if we can't malloc() enough space and do an
391// sprintf() into that space.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000392char *xasprintf(const char *format, ...)
393{
394 va_list p;
395 int r;
396 char *string_ptr;
397
398#if 1
399 // GNU extension
400 va_start(p, format);
401 r = vasprintf(&string_ptr, format, p);
402 va_end(p);
403#else
404 // Bloat for systems that haven't got the GNU extension.
405 va_start(p, format);
406 r = vsnprintf(NULL, 0, format, p);
407 va_end(p);
408 string_ptr = xmalloc(r+1);
409 va_start(p, format);
410 r = vsnprintf(string_ptr, r+1, format, p);
411 va_end(p);
412#endif
413
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000414 if (r < 0) bb_error_msg_and_die(bb_msg_memory_exhausted);
Rob Landleyd921b2e2006-08-03 15:41:12 +0000415 return string_ptr;
416}
Rob Landleyd921b2e2006-08-03 15:41:12 +0000417
Denis Vlasenko7cfecc42006-12-18 22:32:45 +0000418#if 0 /* If we will ever meet a libc which hasn't [f]dprintf... */
419int fdprintf(int fd, const char *format, ...)
Denis Vlasenkoc8e6e352006-12-18 22:10:24 +0000420{
421 va_list p;
422 int r;
423 char *string_ptr;
424
425#if 1
426 // GNU extension
427 va_start(p, format);
428 r = vasprintf(&string_ptr, format, p);
429 va_end(p);
430#else
431 // Bloat for systems that haven't got the GNU extension.
432 va_start(p, format);
433 r = vsnprintf(NULL, 0, format, p);
434 va_end(p);
435 string_ptr = xmalloc(r+1);
436 va_start(p, format);
437 r = vsnprintf(string_ptr, r+1, format, p);
438 va_end(p);
439#endif
440
441 if (r >= 0) {
442 full_write(fd, string_ptr, r);
443 free(string_ptr);
444 }
445 return r;
446}
447#endif
448
Rob Landleyda9d1d02006-09-14 19:52:07 +0000449// Die with an error message if we can't copy an entire FILE * to stdout, then
450// close that file.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000451void xprint_and_close_file(FILE *file)
452{
Denis Vlasenkoddec5af2006-10-26 23:25:17 +0000453 fflush(stdout);
Rob Landleyd921b2e2006-08-03 15:41:12 +0000454 // copyfd outputs error messages for us.
Denis Vlasenkoa9801652006-09-07 16:20:03 +0000455 if (bb_copyfd_eof(fileno(file), 1) == -1)
Denis Vlasenko40920822006-10-03 20:28:06 +0000456 exit(xfunc_error_retval);
Rob Landleyd921b2e2006-08-03 15:41:12 +0000457
458 fclose(file);
459}
Rob Landleyd921b2e2006-08-03 15:41:12 +0000460
Rob Landleyda9d1d02006-09-14 19:52:07 +0000461// Die if we can't chdir to a new path.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000462void xchdir(const char *path)
463{
464 if (chdir(path))
465 bb_perror_msg_and_die("chdir(%s)", path);
466}
Rob Landleyd921b2e2006-08-03 15:41:12 +0000467
Rob Landleyda9d1d02006-09-14 19:52:07 +0000468// Print a warning message if opendir() fails, but don't die.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000469DIR *warn_opendir(const char *path)
470{
471 DIR *dp;
472
473 if ((dp = opendir(path)) == NULL) {
Denis Vlasenko89f0b342006-11-18 22:04:09 +0000474 bb_perror_msg("cannot open '%s'", path);
Rob Landleyd921b2e2006-08-03 15:41:12 +0000475 return NULL;
476 }
477 return dp;
478}
Rob Landleyd921b2e2006-08-03 15:41:12 +0000479
Rob Landleyda9d1d02006-09-14 19:52:07 +0000480// Die with an error message if opendir() fails.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000481DIR *xopendir(const char *path)
482{
483 DIR *dp;
484
485 if ((dp = opendir(path)) == NULL)
Denis Vlasenko89f0b342006-11-18 22:04:09 +0000486 bb_perror_msg_and_die("cannot open '%s'", path);
Rob Landleyd921b2e2006-08-03 15:41:12 +0000487 return dp;
488}
Rob Landleyd921b2e2006-08-03 15:41:12 +0000489
Rob Landleyd921b2e2006-08-03 15:41:12 +0000490#ifndef BB_NOMMU
Rob Landleyda9d1d02006-09-14 19:52:07 +0000491// Die with an error message if we can't daemonize.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000492void xdaemon(int nochdir, int noclose)
493{
Denis Vlasenko621204b2006-10-27 09:03:24 +0000494 if (daemon(nochdir, noclose))
495 bb_perror_msg_and_die("daemon");
Rob Landleyd921b2e2006-08-03 15:41:12 +0000496}
497#endif
Rob Landleyd921b2e2006-08-03 15:41:12 +0000498
Rob Landleyda9d1d02006-09-14 19:52:07 +0000499// Die with an error message if we can't open a new socket.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000500int xsocket(int domain, int type, int protocol)
501{
502 int r = socket(domain, type, protocol);
503
504 if (r < 0) bb_perror_msg_and_die("socket");
505
506 return r;
507}
Rob Landleyd921b2e2006-08-03 15:41:12 +0000508
Rob Landleyda9d1d02006-09-14 19:52:07 +0000509// Die with an error message if we can't bind a socket to an address.
Rob Landley23b61be2006-08-04 20:20:03 +0000510void xbind(int sockfd, struct sockaddr *my_addr, socklen_t addrlen)
511{
512 if (bind(sockfd, my_addr, addrlen)) bb_perror_msg_and_die("bind");
513}
Rob Landley23b61be2006-08-04 20:20:03 +0000514
Rob Landleyda9d1d02006-09-14 19:52:07 +0000515// Die with an error message if we can't listen for connections on a socket.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000516void xlisten(int s, int backlog)
517{
518 if (listen(s, backlog)) bb_perror_msg_and_die("listen");
519}
Bernhard Reutner-Fischer57b56672006-09-11 09:18:09 +0000520
Rob Landleyda9d1d02006-09-14 19:52:07 +0000521// xstat() - a stat() which dies on failure with meaningful error message
Rob Landley20cc6d52006-09-12 21:42:17 +0000522void xstat(char *name, struct stat *stat_buf)
Bernhard Reutner-Fischer57b56672006-09-11 09:18:09 +0000523{
Denis Vlasenko9213a9e2006-09-17 16:28:10 +0000524 if (stat(name, stat_buf))
Denis Vlasenkob6332242006-10-03 19:57:50 +0000525 bb_perror_msg_and_die("can't stat '%s'", name);
Bernhard Reutner-Fischer57b56672006-09-11 09:18:09 +0000526}
Bernhard Reutner-Fischer57b56672006-09-11 09:18:09 +0000527
Rob Landleyfbdf1212006-09-20 22:06:01 +0000528/* It is perfectly ok to pass in a NULL for either width or for
Denis Vlasenko621204b2006-10-27 09:03:24 +0000529 * height, in which case that value will not be set. */
Rob Landleyfbdf1212006-09-20 22:06:01 +0000530int get_terminal_width_height(int fd, int *width, int *height)
531{
532 struct winsize win = { 0, 0, 0, 0 };
533 int ret = ioctl(fd, TIOCGWINSZ, &win);
Denis Vlasenko621204b2006-10-27 09:03:24 +0000534
535 if (height) {
536 if (!win.ws_row) {
537 char *s = getenv("LINES");
538 if (s) win.ws_row = atoi(s);
539 }
540 if (win.ws_row <= 1 || win.ws_row >= 30000)
541 win.ws_row = 24;
542 *height = (int) win.ws_row;
Rob Landleyfbdf1212006-09-20 22:06:01 +0000543 }
Denis Vlasenko621204b2006-10-27 09:03:24 +0000544
545 if (width) {
546 if (!win.ws_col) {
547 char *s = getenv("COLUMNS");
548 if (s) win.ws_col = atoi(s);
549 }
550 if (win.ws_col <= 1 || win.ws_col >= 30000)
551 win.ws_col = 80;
552 *width = (int) win.ws_col;
Rob Landleyfbdf1212006-09-20 22:06:01 +0000553 }
Rob Landleyfbdf1212006-09-20 22:06:01 +0000554
555 return ret;
556}