blob: 601ff3f7e94b2855ccf7af6a97fc2c71d5bffd16 [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;
Denis Vlasenko218f2f42007-01-24 22:02:01 +000084 m--;
85 t++;
Denis Vlasenkocf749bc2006-11-26 15:45:17 +000086 }
Denis Vlasenko218f2f42007-01-24 22:02:01 +000087 n -= m;
Denis Vlasenkocf749bc2006-11-26 15:45:17 +000088 t = xmalloc(n + 1);
89 t[n] = '\0';
Eric Andersenc7bda1c2004-03-15 08:29:22 +000090
Denis Vlasenko218f2f42007-01-24 22:02:01 +000091 return memcpy(t, s, n);
Eric Andersenaad1a882001-03-16 22:47:14 +000092}
93
Rob Landleyda9d1d02006-09-14 19:52:07 +000094// Die if we can't open a file and return a FILE * to it.
95// Notice we haven't got xfread(), This is for use with fscanf() and friends.
Rob Landleyd921b2e2006-08-03 15:41:12 +000096FILE *xfopen(const char *path, const char *mode)
Eric Andersenaad1a882001-03-16 22:47:14 +000097{
Denis Vlasenkocf749bc2006-11-26 15:45:17 +000098 FILE *fp = fopen(path, mode);
99 if (fp == NULL)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000100 bb_perror_msg_and_die("%s", path);
Eric Andersenaad1a882001-03-16 22:47:14 +0000101 return fp;
102}
103
Rob Landleyda9d1d02006-09-14 19:52:07 +0000104// Die if we can't open an existing file and return an fd.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000105int xopen(const char *pathname, int flags)
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000106{
Denis Vlasenkocf749bc2006-11-26 15:45:17 +0000107 //if (ENABLE_DEBUG && (flags & O_CREAT))
108 // bb_error_msg_and_die("xopen() with O_CREAT");
Rob Landley23b61be2006-08-04 20:20:03 +0000109
Denis Vlasenkoea620772006-10-14 02:23:43 +0000110 return xopen3(pathname, flags, 0666);
Bernhard Reutner-Fischerc2cb0f32006-04-13 12:45:04 +0000111}
Bernhard Reutner-Fischerc2cb0f32006-04-13 12:45:04 +0000112
Rob Landleyda9d1d02006-09-14 19:52:07 +0000113// Die if we can't open a new file and return an fd.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000114int xopen3(const char *pathname, int flags, int mode)
Bernhard Reutner-Fischerc2cb0f32006-04-13 12:45:04 +0000115{
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000116 int ret;
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000117
Bernhard Reutner-Fischerc2cb0f32006-04-13 12:45:04 +0000118 ret = open(pathname, flags, mode);
119 if (ret < 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000120 bb_perror_msg_and_die("%s", pathname);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000121 }
122 return ret;
123}
124
Denis Vlasenko75f8d082006-11-22 15:54:52 +0000125// Turn on nonblocking I/O on a fd
126int ndelay_on(int fd)
127{
128 return fcntl(fd,F_SETFL,fcntl(fd,F_GETFL,0) | O_NONBLOCK);
129}
130
Denis Vlasenkoa5b3e762006-12-24 07:15:50 +0000131int ndelay_off(int fd)
132{
133 return fcntl(fd,F_SETFL,fcntl(fd,F_GETFL,0) & ~O_NONBLOCK);
134}
135
Rob Landleyda9d1d02006-09-14 19:52:07 +0000136// Die with an error message if we can't write the entire buffer.
Denis Vlasenko2d27e4c2006-11-25 23:50:28 +0000137void xwrite(int fd, const void *buf, size_t count)
Rob Landley53437472006-07-16 08:14:35 +0000138{
Denis Vlasenko88ca0672006-10-12 22:44:13 +0000139 if (count) {
140 ssize_t size = full_write(fd, buf, count);
141 if (size != count)
Denis Vlasenko1db39b22006-10-11 20:59:02 +0000142 bb_error_msg_and_die("short write");
Rob Landley53437472006-07-16 08:14:35 +0000143 }
144}
Rob Landley53437472006-07-16 08:14:35 +0000145
Rob Landleyda9d1d02006-09-14 19:52:07 +0000146// Die with an error message if we can't lseek to the right spot.
Denis Vlasenkoea620772006-10-14 02:23:43 +0000147off_t xlseek(int fd, off_t offset, int whence)
Rob Landley53437472006-07-16 08:14:35 +0000148{
Denis Vlasenkoea620772006-10-14 02:23:43 +0000149 off_t off = lseek(fd, offset, whence);
Denis Vlasenkoc6ce8732006-11-29 18:15:52 +0000150 if (off == (off_t)-1) {
151 if (whence == SEEK_SET)
152 bb_perror_msg_and_die("lseek(%"OFF_FMT"u)", offset);
Denis Vlasenkoea620772006-10-14 02:23:43 +0000153 bb_perror_msg_and_die("lseek");
Denis Vlasenkoc6ce8732006-11-29 18:15:52 +0000154 }
Denis Vlasenkoea620772006-10-14 02:23:43 +0000155 return off;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000156}
157
Denis Vlasenkocf749bc2006-11-26 15:45:17 +0000158// Die with supplied filename if this FILE * has ferror set.
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000159void die_if_ferror(FILE *fp, const char *fn)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000160{
161 if (ferror(fp)) {
Denis Vlasenko2d27e4c2006-11-25 23:50:28 +0000162 bb_error_msg_and_die("%s: I/O error", fn);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000163 }
164}
Manuel Novoa III cad53642003-03-19 09:13:01 +0000165
Rob Landleyda9d1d02006-09-14 19:52:07 +0000166// Die with an error message if stdout has ferror set.
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000167void die_if_ferror_stdout(void)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000168{
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000169 die_if_ferror(stdout, bb_msg_standard_output);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000170}
Manuel Novoa III cad53642003-03-19 09:13:01 +0000171
Rob Landleyda9d1d02006-09-14 19:52:07 +0000172// Die with an error message if we have trouble flushing stdout.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000173void xfflush_stdout(void)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000174{
175 if (fflush(stdout)) {
176 bb_perror_msg_and_die(bb_msg_standard_output);
177 }
178}
Rob Landley399d2b52006-05-25 23:02:40 +0000179
Rob Landleyda9d1d02006-09-14 19:52:07 +0000180// This does a fork/exec in one call, using vfork(). Return PID of new child,
181// -1 for failure. Runs argv[0], searching path if that has no / in it.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000182pid_t spawn(char **argv)
Rob Landley399d2b52006-05-25 23:02:40 +0000183{
Denis Vlasenko8f6c7922006-12-23 00:49:10 +0000184 /* Why static? */
Rob Landley399d2b52006-05-25 23:02:40 +0000185 static int failed;
186 pid_t pid;
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000187 const char *prog;
Rob Landley399d2b52006-05-25 23:02:40 +0000188
Rob Landleyda9d1d02006-09-14 19:52:07 +0000189 // Be nice to nommu machines.
Rob Landley399d2b52006-05-25 23:02:40 +0000190 failed = 0;
191 pid = vfork();
192 if (pid < 0) return pid;
193 if (!pid) {
Denis Vlasenko2f0c0d02007-01-21 00:41:04 +0000194 prog = argv[0];
195 if (ENABLE_FEATURE_EXEC_PREFER_APPLETS && find_applet_by_name(prog))
196 prog = CONFIG_BUSYBOX_EXEC_PATH;
197 execvp(prog, argv);
Rob Landley399d2b52006-05-25 23:02:40 +0000198
Rob Landleyda9d1d02006-09-14 19:52:07 +0000199 // We're sharing a stack with blocked parent, let parent know we failed
200 // and then exit to unblock parent (but don't run atexit() stuff, which
201 // would screw up parent.)
Rob Landley399d2b52006-05-25 23:02:40 +0000202
Denis Vlasenko8f6c7922006-12-23 00:49:10 +0000203 failed = errno;
Rob Landley399d2b52006-05-25 23:02:40 +0000204 _exit(0);
205 }
Denis Vlasenko8f6c7922006-12-23 00:49:10 +0000206 if (failed) {
207 errno = failed;
208 return -1;
209 }
210 return pid;
Rob Landley399d2b52006-05-25 23:02:40 +0000211}
Rob Landley399d2b52006-05-25 23:02:40 +0000212
Rob Landleyda9d1d02006-09-14 19:52:07 +0000213// Die with an error message if we can't spawn a child process.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000214pid_t xspawn(char **argv)
Rob Landley399d2b52006-05-25 23:02:40 +0000215{
Rob Landleyd921b2e2006-08-03 15:41:12 +0000216 pid_t pid = spawn(argv);
Rob Landley399d2b52006-05-25 23:02:40 +0000217 if (pid < 0) bb_perror_msg_and_die("%s", *argv);
218 return pid;
219}
Rob Landleyc7ddefc2006-06-14 01:24:33 +0000220
Rob Landleyda9d1d02006-09-14 19:52:07 +0000221// Wait for the specified child PID to exit, returning child's error return.
Rob Landleyc7ddefc2006-06-14 01:24:33 +0000222int wait4pid(int pid)
223{
224 int status;
225
226 if (pid == -1 || waitpid(pid, &status, 0) == -1) return -1;
227 if (WIFEXITED(status)) return WEXITSTATUS(status);
228 if (WIFSIGNALED(status)) return WTERMSIG(status);
229 return 0;
230}
Rob Landley5b88a382006-07-10 07:41:34 +0000231
Denis Vlasenkofe544582006-10-03 15:57:40 +0000232void xsetenv(const char *key, const char *value)
233{
Denis Vlasenko1db39b22006-10-11 20:59:02 +0000234 if (setenv(key, value, 1))
Denis Vlasenkofe544582006-10-03 15:57:40 +0000235 bb_error_msg_and_die(bb_msg_memory_exhausted);
236}
Denis Vlasenkofe544582006-10-03 15:57:40 +0000237
Denis Vlasenkoaae03112006-11-05 00:44:39 +0000238// Converts unsigned long long value into compact 4-char
239// representation. Examples: "1234", "1.2k", " 27M", "123T"
240// Fifth char is always '\0'
241void smart_ulltoa5(unsigned long long ul, char buf[5])
242{
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000243 const char *fmt;
Denis Vlasenkoaae03112006-11-05 00:44:39 +0000244 char c;
245 unsigned v,idx = 0;
246 ul *= 10;
247 if (ul > 9999*10) { // do not scale if 9999 or less
248 while (ul >= 10000) {
249 ul /= 1024;
250 idx++;
251 }
252 }
253 v = ul; // ullong divisions are expensive, avoid them
254
255 fmt = " 123456789";
256 if (!idx) { // 9999 or less: use 1234 format
257 c = buf[0] = " 123456789"[v/10000];
258 if (c!=' ') fmt = "0123456789";
259 c = buf[1] = fmt[v/1000%10];
260 if (c!=' ') fmt = "0123456789";
261 buf[2] = fmt[v/100%10];
262 buf[3] = "0123456789"[v/10%10];
263 } else {
264 if (v>=10*10) { // scaled value is >=10: use 123M format
265 c = buf[0] = " 123456789"[v/1000];
266 if (c!=' ') fmt = "0123456789";
267 buf[1] = fmt[v/100%10];
268 buf[2] = "0123456789"[v/10%10];
269 } else { // scaled value is <10: use 1.2M format
270 buf[0] = "0123456789"[v/10];
271 buf[1] = '.';
272 buf[2] = "0123456789"[v%10];
273 }
274 // see http://en.wikipedia.org/wiki/Tera
275 buf[3] = " kMGTPEZY"[idx];
276 }
277 buf[4] = '\0';
278}
279
Rob Landleyda9d1d02006-09-14 19:52:07 +0000280// Convert unsigned integer to ascii, writing into supplied buffer. A
281// truncated result is always null terminated (unless buflen is 0), and
282// contains the first few digits of the result ala strncpy.
Denis Vlasenkoaae03112006-11-05 00:44:39 +0000283void BUG_sizeof_unsigned_not_4(void);
Rob Landley22d39582006-07-11 00:44:36 +0000284void utoa_to_buf(unsigned n, char *buf, unsigned buflen)
Rob Landley5b88a382006-07-10 07:41:34 +0000285{
Denis Vlasenkoaae03112006-11-05 00:44:39 +0000286 unsigned i, out, res;
287 if (sizeof(unsigned) != 4)
288 BUG_sizeof_unsigned_not_4();
Rob Landley22d39582006-07-11 00:44:36 +0000289 if (buflen) {
Denis Vlasenkoaae03112006-11-05 00:44:39 +0000290 out = 0;
291 for (i = 1000000000; i; i /= 10) {
292 res = n / i;
293 if (res || out || i == 1) {
294 if (!--buflen) break;
Rob Landley22d39582006-07-11 00:44:36 +0000295 out++;
296 n -= res*i;
297 *buf++ = '0' + res;
298 }
Rob Landley5b88a382006-07-10 07:41:34 +0000299 }
Denis Vlasenkoaae03112006-11-05 00:44:39 +0000300 *buf = '\0';
Rob Landley5b88a382006-07-10 07:41:34 +0000301 }
Rob Landley5b88a382006-07-10 07:41:34 +0000302}
303
Rob Landleyda9d1d02006-09-14 19:52:07 +0000304// Convert signed integer to ascii, like utoa_to_buf()
Rob Landley22d39582006-07-11 00:44:36 +0000305void itoa_to_buf(int n, char *buf, unsigned buflen)
Rob Landley5b88a382006-07-10 07:41:34 +0000306{
Rob Landley22d39582006-07-11 00:44:36 +0000307 if (buflen && n<0) {
Rob Landley5b88a382006-07-10 07:41:34 +0000308 n = -n;
309 *buf++ = '-';
Rob Landley22d39582006-07-11 00:44:36 +0000310 buflen--;
Rob Landley5b88a382006-07-10 07:41:34 +0000311 }
312 utoa_to_buf((unsigned)n, buf, buflen);
313}
314
Rob Landleyda9d1d02006-09-14 19:52:07 +0000315// The following two functions use a static buffer, so calling either one a
316// second time will overwrite previous results.
317//
318// The largest 32 bit integer is -2 billion plus null terminator, or 12 bytes.
319// Int should always be 32 bits on any remotely Unix-like system, see
320// http://www.unix.org/whitepapers/64bit.html for the reasons why.
321
Rob Landley23b61be2006-08-04 20:20:03 +0000322static char local_buf[12];
323
Rob Landleyda9d1d02006-09-14 19:52:07 +0000324// Convert unsigned integer to ascii using a static buffer (returned).
Rob Landley23b61be2006-08-04 20:20:03 +0000325char *utoa(unsigned n)
326{
327 utoa_to_buf(n, local_buf, sizeof(local_buf));
328
329 return local_buf;
330}
331
Rob Landleyda9d1d02006-09-14 19:52:07 +0000332// Convert signed integer to ascii using a static buffer (returned).
Rob Landley5b88a382006-07-10 07:41:34 +0000333char *itoa(int n)
334{
335 itoa_to_buf(n, local_buf, sizeof(local_buf));
336
337 return local_buf;
338}
Rob Landleydf822f22006-07-15 23:00:46 +0000339
Denis Vlasenko3a34d0c2007-01-12 22:10:34 +0000340// Emit a string of hex representation of bytes
341char *bin2hex(char *p, const char *cp, int count)
342{
343 while (count) {
344 unsigned char c = *cp++;
345 /* put lowercase hex digits */
Denis Vlasenko98c0bba2007-01-26 23:31:05 +0000346 *p++ = 0x20 | bb_hexdigits_upcase[c >> 4];
347 *p++ = 0x20 | bb_hexdigits_upcase[c & 0xf];
Denis Vlasenko3a34d0c2007-01-12 22:10:34 +0000348 count--;
349 }
350 return p;
351}
352
Rob Landleyda9d1d02006-09-14 19:52:07 +0000353// Die with an error message if we can't set gid. (Because resource limits may
354// limit this user to a given number of processes, and if that fills up the
355// setgid() will fail and we'll _still_be_root_, which is bad.)
Rob Landleydf822f22006-07-15 23:00:46 +0000356void xsetgid(gid_t gid)
357{
358 if (setgid(gid)) bb_error_msg_and_die("setgid");
359}
360
Denis Vlasenkoe1a0d482006-10-20 13:28:22 +0000361// Die with an error message if we can't set uid. (See xsetgid() for why.)
Rob Landleydf822f22006-07-15 23:00:46 +0000362void xsetuid(uid_t uid)
363{
364 if (setuid(uid)) bb_error_msg_and_die("setuid");
365}
Rob Landley53437472006-07-16 08:14:35 +0000366
Rob Landleyda9d1d02006-09-14 19:52:07 +0000367// Return how long the file at fd is, if there's any way to determine it.
Rob Landley53437472006-07-16 08:14:35 +0000368off_t fdlength(int fd)
369{
370 off_t bottom = 0, top = 0, pos;
371 long size;
372
Rob Landleyda9d1d02006-09-14 19:52:07 +0000373 // If the ioctl works for this, return it.
Rob Landley53437472006-07-16 08:14:35 +0000374
375 if (ioctl(fd, BLKGETSIZE, &size) >= 0) return size*512;
376
Denis Vlasenko621204b2006-10-27 09:03:24 +0000377 // FIXME: explain why lseek(SEEK_END) is not used here!
378
Rob Landleyda9d1d02006-09-14 19:52:07 +0000379 // If not, do a binary search for the last location we can read. (Some
380 // block devices don't do BLKGETSIZE right.)
Rob Landley53437472006-07-16 08:14:35 +0000381
382 do {
383 char temp;
384
Denis Vlasenkod25a2642006-09-05 09:36:19 +0000385 pos = bottom + (top - bottom) / 2;
Rob Landley53437472006-07-16 08:14:35 +0000386
Rob Landleyda9d1d02006-09-14 19:52:07 +0000387 // If we can read from the current location, it's bigger.
Rob Landley53437472006-07-16 08:14:35 +0000388
Denis Vlasenkoea620772006-10-14 02:23:43 +0000389 if (lseek(fd, pos, SEEK_SET)>=0 && safe_read(fd, &temp, 1)==1) {
Rob Landley53437472006-07-16 08:14:35 +0000390 if (bottom == top) bottom = top = (top+1) * 2;
391 else bottom = pos;
392
Rob Landleyda9d1d02006-09-14 19:52:07 +0000393 // If we can't, it's smaller.
Rob Landley53437472006-07-16 08:14:35 +0000394
395 } else {
396 if (bottom == top) {
397 if (!top) return 0;
398 bottom = top/2;
399 }
400 else top = pos;
401 }
402 } while (bottom + 1 != top);
403
404 return pos + 1;
405}
Rob Landleyd921b2e2006-08-03 15:41:12 +0000406
Rob Landleyda9d1d02006-09-14 19:52:07 +0000407// Die with an error message if we can't malloc() enough space and do an
408// sprintf() into that space.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000409char *xasprintf(const char *format, ...)
410{
411 va_list p;
412 int r;
413 char *string_ptr;
414
415#if 1
416 // GNU extension
417 va_start(p, format);
418 r = vasprintf(&string_ptr, format, p);
419 va_end(p);
420#else
421 // Bloat for systems that haven't got the GNU extension.
422 va_start(p, format);
423 r = vsnprintf(NULL, 0, format, p);
424 va_end(p);
425 string_ptr = xmalloc(r+1);
426 va_start(p, format);
427 r = vsnprintf(string_ptr, r+1, format, p);
428 va_end(p);
429#endif
430
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000431 if (r < 0) bb_error_msg_and_die(bb_msg_memory_exhausted);
Rob Landleyd921b2e2006-08-03 15:41:12 +0000432 return string_ptr;
433}
Rob Landleyd921b2e2006-08-03 15:41:12 +0000434
Denis Vlasenko7cfecc42006-12-18 22:32:45 +0000435#if 0 /* If we will ever meet a libc which hasn't [f]dprintf... */
436int fdprintf(int fd, const char *format, ...)
Denis Vlasenkoc8e6e352006-12-18 22:10:24 +0000437{
438 va_list p;
439 int r;
440 char *string_ptr;
441
442#if 1
443 // GNU extension
444 va_start(p, format);
445 r = vasprintf(&string_ptr, format, p);
446 va_end(p);
447#else
448 // Bloat for systems that haven't got the GNU extension.
449 va_start(p, format);
450 r = vsnprintf(NULL, 0, format, p);
451 va_end(p);
452 string_ptr = xmalloc(r+1);
453 va_start(p, format);
454 r = vsnprintf(string_ptr, r+1, format, p);
455 va_end(p);
456#endif
457
458 if (r >= 0) {
459 full_write(fd, string_ptr, r);
460 free(string_ptr);
461 }
462 return r;
463}
464#endif
465
Rob Landleyda9d1d02006-09-14 19:52:07 +0000466// Die with an error message if we can't copy an entire FILE * to stdout, then
467// close that file.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000468void xprint_and_close_file(FILE *file)
469{
Denis Vlasenkoddec5af2006-10-26 23:25:17 +0000470 fflush(stdout);
Rob Landleyd921b2e2006-08-03 15:41:12 +0000471 // copyfd outputs error messages for us.
Denis Vlasenkoa9801652006-09-07 16:20:03 +0000472 if (bb_copyfd_eof(fileno(file), 1) == -1)
Denis Vlasenko40920822006-10-03 20:28:06 +0000473 exit(xfunc_error_retval);
Rob Landleyd921b2e2006-08-03 15:41:12 +0000474
475 fclose(file);
476}
Rob Landleyd921b2e2006-08-03 15:41:12 +0000477
Rob Landleyda9d1d02006-09-14 19:52:07 +0000478// Die if we can't chdir to a new path.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000479void xchdir(const char *path)
480{
481 if (chdir(path))
482 bb_perror_msg_and_die("chdir(%s)", path);
483}
Rob Landleyd921b2e2006-08-03 15:41:12 +0000484
Rob Landleyda9d1d02006-09-14 19:52:07 +0000485// Print a warning message if opendir() fails, but don't die.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000486DIR *warn_opendir(const char *path)
487{
488 DIR *dp;
489
490 if ((dp = opendir(path)) == NULL) {
Denis Vlasenko89f0b342006-11-18 22:04:09 +0000491 bb_perror_msg("cannot open '%s'", path);
Rob Landleyd921b2e2006-08-03 15:41:12 +0000492 return NULL;
493 }
494 return dp;
495}
Rob Landleyd921b2e2006-08-03 15:41:12 +0000496
Rob Landleyda9d1d02006-09-14 19:52:07 +0000497// Die with an error message if opendir() fails.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000498DIR *xopendir(const char *path)
499{
500 DIR *dp;
501
502 if ((dp = opendir(path)) == NULL)
Denis Vlasenko89f0b342006-11-18 22:04:09 +0000503 bb_perror_msg_and_die("cannot open '%s'", path);
Rob Landleyd921b2e2006-08-03 15:41:12 +0000504 return dp;
505}
Rob Landleyd921b2e2006-08-03 15:41:12 +0000506
Rob Landleyd921b2e2006-08-03 15:41:12 +0000507#ifndef BB_NOMMU
Rob Landleyda9d1d02006-09-14 19:52:07 +0000508// Die with an error message if we can't daemonize.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000509void xdaemon(int nochdir, int noclose)
510{
Denis Vlasenko621204b2006-10-27 09:03:24 +0000511 if (daemon(nochdir, noclose))
512 bb_perror_msg_and_die("daemon");
Rob Landleyd921b2e2006-08-03 15:41:12 +0000513}
514#endif
Rob Landleyd921b2e2006-08-03 15:41:12 +0000515
Denis Vlasenko9af7c9d2007-01-19 21:19:35 +0000516void bb_sanitize_stdio_maybe_daemonize(int daemonize)
Denis Vlasenko7a431b32007-01-14 01:29:06 +0000517{
518 int fd;
519 /* Mega-paranoid */
520 fd = xopen(bb_dev_null, O_RDWR);
Denis Vlasenkoe06bed32007-01-27 22:21:12 +0000521 while ((unsigned)fd < 2)
Denis Vlasenko7a431b32007-01-14 01:29:06 +0000522 fd = dup(fd); /* have 0,1,2 open at least to /dev/null */
523 if (daemonize) {
524 pid_t pid = fork();
525 if (pid < 0) /* wtf? */
526 bb_perror_msg_and_die("fork");
527 if (pid) /* parent */
528 exit(0);
529 /* child */
Denis Vlasenko7a431b32007-01-14 01:29:06 +0000530 /* if daemonizing, make sure we detach from stdio */
Denis Vlasenko9af7c9d2007-01-19 21:19:35 +0000531 setsid();
Denis Vlasenko7a431b32007-01-14 01:29:06 +0000532 dup2(fd, 0);
533 dup2(fd, 1);
534 dup2(fd, 2);
535 }
536 while (fd > 2)
537 close(fd--); /* close everything after fd#2 */
538}
Denis Vlasenko9af7c9d2007-01-19 21:19:35 +0000539void bb_sanitize_stdio(void)
540{
541 bb_sanitize_stdio_maybe_daemonize(0);
542}
543void bb_daemonize(void)
544{
545 bb_sanitize_stdio_maybe_daemonize(1);
546}
Denis Vlasenko7a431b32007-01-14 01:29:06 +0000547
Rob Landleyda9d1d02006-09-14 19:52:07 +0000548// Die with an error message if we can't open a new socket.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000549int xsocket(int domain, int type, int protocol)
550{
551 int r = socket(domain, type, protocol);
552
553 if (r < 0) bb_perror_msg_and_die("socket");
554
555 return r;
556}
Rob Landleyd921b2e2006-08-03 15:41:12 +0000557
Rob Landleyda9d1d02006-09-14 19:52:07 +0000558// Die with an error message if we can't bind a socket to an address.
Rob Landley23b61be2006-08-04 20:20:03 +0000559void xbind(int sockfd, struct sockaddr *my_addr, socklen_t addrlen)
560{
561 if (bind(sockfd, my_addr, addrlen)) bb_perror_msg_and_die("bind");
562}
Rob Landley23b61be2006-08-04 20:20:03 +0000563
Rob Landleyda9d1d02006-09-14 19:52:07 +0000564// Die with an error message if we can't listen for connections on a socket.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000565void xlisten(int s, int backlog)
566{
567 if (listen(s, backlog)) bb_perror_msg_and_die("listen");
568}
Bernhard Reutner-Fischer57b56672006-09-11 09:18:09 +0000569
Rob Landleyda9d1d02006-09-14 19:52:07 +0000570// xstat() - a stat() which dies on failure with meaningful error message
Denis Vlasenko434ad542007-01-27 13:45:17 +0000571void xstat(const char *name, struct stat *stat_buf)
Bernhard Reutner-Fischer57b56672006-09-11 09:18:09 +0000572{
Denis Vlasenko9213a9e2006-09-17 16:28:10 +0000573 if (stat(name, stat_buf))
Denis Vlasenkob6332242006-10-03 19:57:50 +0000574 bb_perror_msg_and_die("can't stat '%s'", name);
Bernhard Reutner-Fischer57b56672006-09-11 09:18:09 +0000575}
Bernhard Reutner-Fischer57b56672006-09-11 09:18:09 +0000576
Rob Landleyfbdf1212006-09-20 22:06:01 +0000577/* It is perfectly ok to pass in a NULL for either width or for
Denis Vlasenko621204b2006-10-27 09:03:24 +0000578 * height, in which case that value will not be set. */
Bernhard Reutner-Fischeraf457602007-01-20 21:33:50 +0000579int get_terminal_width_height(const int fd, int *width, int *height)
Rob Landleyfbdf1212006-09-20 22:06:01 +0000580{
581 struct winsize win = { 0, 0, 0, 0 };
582 int ret = ioctl(fd, TIOCGWINSZ, &win);
Denis Vlasenko621204b2006-10-27 09:03:24 +0000583
584 if (height) {
585 if (!win.ws_row) {
586 char *s = getenv("LINES");
587 if (s) win.ws_row = atoi(s);
588 }
589 if (win.ws_row <= 1 || win.ws_row >= 30000)
590 win.ws_row = 24;
591 *height = (int) win.ws_row;
Rob Landleyfbdf1212006-09-20 22:06:01 +0000592 }
Denis Vlasenko621204b2006-10-27 09:03:24 +0000593
594 if (width) {
595 if (!win.ws_col) {
596 char *s = getenv("COLUMNS");
597 if (s) win.ws_col = atoi(s);
598 }
599 if (win.ws_col <= 1 || win.ws_col >= 30000)
600 win.ws_col = 80;
601 *width = (int) win.ws_col;
Rob Landleyfbdf1212006-09-20 22:06:01 +0000602 }
Rob Landleyfbdf1212006-09-20 22:06:01 +0000603
604 return ret;
605}