blob: a85a046cf693b01f9403df43e117eb9037e0b5b1 [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 */
Denis Vlasenkoc6758a02007-04-10 21:40:19 +000023// Warn if we can't allocate size bytes of memory.
24void *malloc_or_warn(size_t size)
25{
26 void *ptr = malloc(size);
27 if (ptr == NULL && size != 0)
28 bb_error_msg(bb_msg_memory_exhausted);
29 return ptr;
30}
31
Rob Landleyda9d1d02006-09-14 19:52:07 +000032// Die if we can't allocate size bytes of memory.
Rob Landleydfba7412006-03-06 20:47:33 +000033void *xmalloc(size_t size)
Eric Andersenaad1a882001-03-16 22:47:14 +000034{
35 void *ptr = malloc(size);
Matt Kraaia99b1942002-02-26 15:28:22 +000036 if (ptr == NULL && size != 0)
Manuel Novoa III cad53642003-03-19 09:13:01 +000037 bb_error_msg_and_die(bb_msg_memory_exhausted);
Eric Andersenaad1a882001-03-16 22:47:14 +000038 return ptr;
39}
40
Rob Landleyda9d1d02006-09-14 19:52:07 +000041// Die if we can't resize previously allocated memory. (This returns a pointer
42// to the new memory, which may or may not be the same as the old memory.
43// It'll copy the contents to a new chunk and free the old one if necessary.)
Rob Landleydfba7412006-03-06 20:47:33 +000044void *xrealloc(void *ptr, size_t size)
Eric Andersenaad1a882001-03-16 22:47:14 +000045{
Matt Kraaia99b1942002-02-26 15:28:22 +000046 ptr = realloc(ptr, size);
47 if (ptr == NULL && size != 0)
Manuel Novoa III cad53642003-03-19 09:13:01 +000048 bb_error_msg_and_die(bb_msg_memory_exhausted);
Eric Andersenaad1a882001-03-16 22:47:14 +000049 return ptr;
50}
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000051#endif /* DMALLOC */
52
Rob Landleyda9d1d02006-09-14 19:52:07 +000053// Die if we can't allocate and zero size bytes of memory.
Rob Landley80b8ff02006-05-19 20:36:49 +000054void *xzalloc(size_t size)
55{
56 void *ptr = xmalloc(size);
57 memset(ptr, 0, size);
58 return ptr;
59}
Rob Landley80b8ff02006-05-19 20:36:49 +000060
Rob Landleyda9d1d02006-09-14 19:52:07 +000061// Die if we can't copy a string to freshly allocated memory.
Rob Landley23b61be2006-08-04 20:20:03 +000062char * xstrdup(const char *s)
Rob Landley31642d72006-03-14 21:45:38 +000063{
Eric Andersenaad1a882001-03-16 22:47:14 +000064 char *t;
65
66 if (s == NULL)
67 return NULL;
68
Denis Vlasenkocf749bc2006-11-26 15:45:17 +000069 t = strdup(s);
Eric Andersenaad1a882001-03-16 22:47:14 +000070
71 if (t == NULL)
Manuel Novoa III cad53642003-03-19 09:13:01 +000072 bb_error_msg_and_die(bb_msg_memory_exhausted);
Eric Andersenaad1a882001-03-16 22:47:14 +000073
74 return t;
75}
Eric Andersenaad1a882001-03-16 22:47:14 +000076
Rob Landleyda9d1d02006-09-14 19:52:07 +000077// Die if we can't allocate n+1 bytes (space for the null terminator) and copy
78// the (possibly truncated to length n) string into it.
Rob Landley23b61be2006-08-04 20:20:03 +000079char * xstrndup(const char *s, int n)
Rob Landley31642d72006-03-14 21:45:38 +000080{
Denis Vlasenkocf749bc2006-11-26 15:45:17 +000081 int m;
Eric Andersenaad1a882001-03-16 22:47:14 +000082 char *t;
83
Rob Landley8bbdb872006-06-30 16:36:56 +000084 if (ENABLE_DEBUG && s == NULL)
Rob Landleyd921b2e2006-08-03 15:41:12 +000085 bb_error_msg_and_die("xstrndup bug");
Eric Andersenaad1a882001-03-16 22:47:14 +000086
Denis Vlasenkocf749bc2006-11-26 15:45:17 +000087 /* We can just xmalloc(n+1) and strncpy into it, */
88 /* but think about xstrndup("abc", 10000) wastage! */
89 m = n;
90 t = (char*) s;
91 while (m) {
92 if (!*t) break;
Denis Vlasenko218f2f42007-01-24 22:02:01 +000093 m--;
94 t++;
Denis Vlasenkocf749bc2006-11-26 15:45:17 +000095 }
Denis Vlasenko218f2f42007-01-24 22:02:01 +000096 n -= m;
Denis Vlasenkocf749bc2006-11-26 15:45:17 +000097 t = xmalloc(n + 1);
98 t[n] = '\0';
Eric Andersenc7bda1c2004-03-15 08:29:22 +000099
Denis Vlasenko218f2f42007-01-24 22:02:01 +0000100 return memcpy(t, s, n);
Eric Andersenaad1a882001-03-16 22:47:14 +0000101}
102
Rob Landleyda9d1d02006-09-14 19:52:07 +0000103// Die if we can't open a file and return a FILE * to it.
104// Notice we haven't got xfread(), This is for use with fscanf() and friends.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000105FILE *xfopen(const char *path, const char *mode)
Eric Andersenaad1a882001-03-16 22:47:14 +0000106{
Denis Vlasenkocf749bc2006-11-26 15:45:17 +0000107 FILE *fp = fopen(path, mode);
108 if (fp == NULL)
Denis Vlasenko50f7f442007-04-11 23:20:53 +0000109 bb_perror_msg_and_die("cannot open '%s'", path);
Eric Andersenaad1a882001-03-16 22:47:14 +0000110 return fp;
111}
112
Denis Vlasenko50f7f442007-04-11 23:20:53 +0000113// Die if we can't open a file and return a 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) {
Denis Vlasenko50f7f442007-04-11 23:20:53 +0000120 bb_perror_msg_and_die("cannot open '%s'", pathname);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000121 }
122 return ret;
123}
124
Denis Vlasenko50f7f442007-04-11 23:20:53 +0000125// Die if we can't open an existing file and return a fd.
126int xopen(const char *pathname, int flags)
127{
128 return xopen3(pathname, flags, 0666);
129}
130
131// Warn if we can't open a file and return a fd.
132int open3_or_warn(const char *pathname, int flags, int mode)
133{
134 int ret;
135
136 ret = open(pathname, flags, mode);
137 if (ret < 0) {
138 bb_perror_msg("cannot open '%s'", pathname);
139 }
140 return ret;
141}
142
143// Warn if we can't open a file and return a fd.
144int open_or_warn(const char *pathname, int flags)
145{
146 return open3_or_warn(pathname, flags, 0666);
147}
148
Denis Vlasenko1bb552b2007-04-05 21:25:15 +0000149void xunlink(const char *pathname)
150{
151 if (unlink(pathname))
152 bb_perror_msg_and_die("cannot remove file '%s'", pathname);
153}
154
Denis Vlasenko75f8d082006-11-22 15:54:52 +0000155// Turn on nonblocking I/O on a fd
156int ndelay_on(int fd)
157{
158 return fcntl(fd,F_SETFL,fcntl(fd,F_GETFL,0) | O_NONBLOCK);
159}
160
Denis Vlasenkoa5b3e762006-12-24 07:15:50 +0000161int ndelay_off(int fd)
162{
163 return fcntl(fd,F_SETFL,fcntl(fd,F_GETFL,0) & ~O_NONBLOCK);
164}
165
Denis Vlasenkocad04ef2007-03-25 23:21:05 +0000166// "Renumber" opened fd
167void xmove_fd(int from, int to)
168{
169 if (from == to)
170 return;
171 if (dup2(from, to) != to)
172 bb_perror_msg_and_die("cannot duplicate file descriptor");
173 close(from);
174}
175
Rob Landleyda9d1d02006-09-14 19:52:07 +0000176// Die with an error message if we can't write the entire buffer.
Denis Vlasenko2d27e4c2006-11-25 23:50:28 +0000177void xwrite(int fd, const void *buf, size_t count)
Rob Landley53437472006-07-16 08:14:35 +0000178{
Denis Vlasenko88ca0672006-10-12 22:44:13 +0000179 if (count) {
180 ssize_t size = full_write(fd, buf, count);
181 if (size != count)
Denis Vlasenko1db39b22006-10-11 20:59:02 +0000182 bb_error_msg_and_die("short write");
Rob Landley53437472006-07-16 08:14:35 +0000183 }
184}
Rob Landley53437472006-07-16 08:14:35 +0000185
Rob Landleyda9d1d02006-09-14 19:52:07 +0000186// Die with an error message if we can't lseek to the right spot.
Denis Vlasenkoea620772006-10-14 02:23:43 +0000187off_t xlseek(int fd, off_t offset, int whence)
Rob Landley53437472006-07-16 08:14:35 +0000188{
Denis Vlasenkoea620772006-10-14 02:23:43 +0000189 off_t off = lseek(fd, offset, whence);
Denis Vlasenkoc6ce8732006-11-29 18:15:52 +0000190 if (off == (off_t)-1) {
191 if (whence == SEEK_SET)
192 bb_perror_msg_and_die("lseek(%"OFF_FMT"u)", offset);
Denis Vlasenkoea620772006-10-14 02:23:43 +0000193 bb_perror_msg_and_die("lseek");
Denis Vlasenkoc6ce8732006-11-29 18:15:52 +0000194 }
Denis Vlasenkoea620772006-10-14 02:23:43 +0000195 return off;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000196}
197
Denis Vlasenkocf749bc2006-11-26 15:45:17 +0000198// Die with supplied filename if this FILE * has ferror set.
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000199void die_if_ferror(FILE *fp, const char *fn)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000200{
201 if (ferror(fp)) {
Denis Vlasenko50f7f442007-04-11 23:20:53 +0000202 /* doesn't set useful errno */
Denis Vlasenko2d27e4c2006-11-25 23:50:28 +0000203 bb_error_msg_and_die("%s: I/O error", fn);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000204 }
205}
Manuel Novoa III cad53642003-03-19 09:13:01 +0000206
Rob Landleyda9d1d02006-09-14 19:52:07 +0000207// Die with an error message if stdout has ferror set.
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000208void die_if_ferror_stdout(void)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000209{
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000210 die_if_ferror(stdout, bb_msg_standard_output);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000211}
Manuel Novoa III cad53642003-03-19 09:13:01 +0000212
Rob Landleyda9d1d02006-09-14 19:52:07 +0000213// Die with an error message if we have trouble flushing stdout.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000214void xfflush_stdout(void)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000215{
216 if (fflush(stdout)) {
217 bb_perror_msg_and_die(bb_msg_standard_output);
218 }
219}
Rob Landley399d2b52006-05-25 23:02:40 +0000220
Denis Vlasenko2856dab2007-04-01 01:18:20 +0000221void sig_block(int sig)
222{
223 sigset_t ss;
224 sigemptyset(&ss);
225 sigaddset(&ss, sig);
226 sigprocmask(SIG_BLOCK, &ss, NULL);
227}
228
229void sig_unblock(int sig)
230{
231 sigset_t ss;
232 sigemptyset(&ss);
233 sigaddset(&ss, sig);
234 sigprocmask(SIG_UNBLOCK, &ss, NULL);
235}
236
237#if 0
238void sig_blocknone(void)
239{
240 sigset_t ss;
241 sigemptyset(&ss);
242 sigprocmask(SIG_SETMASK, &ss, NULL);
243}
244#endif
245
246void sig_catch(int sig, void (*f)(int))
247{
248 struct sigaction sa;
249 sa.sa_handler = f;
250 sa.sa_flags = 0;
251 sigemptyset(&sa.sa_mask);
252 sigaction(sig, &sa, NULL);
253}
254
255void sig_pause(void)
256{
257 sigset_t ss;
258 sigemptyset(&ss);
259 sigsuspend(&ss);
260}
261
262
Denis Vlasenkofe544582006-10-03 15:57:40 +0000263void xsetenv(const char *key, const char *value)
264{
Denis Vlasenko1db39b22006-10-11 20:59:02 +0000265 if (setenv(key, value, 1))
Denis Vlasenkofe544582006-10-03 15:57:40 +0000266 bb_error_msg_and_die(bb_msg_memory_exhausted);
267}
Denis Vlasenkofe544582006-10-03 15:57:40 +0000268
Denis Vlasenkoaae03112006-11-05 00:44:39 +0000269// Converts unsigned long long value into compact 4-char
270// representation. Examples: "1234", "1.2k", " 27M", "123T"
271// Fifth char is always '\0'
272void smart_ulltoa5(unsigned long long ul, char buf[5])
273{
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000274 const char *fmt;
Denis Vlasenkoaae03112006-11-05 00:44:39 +0000275 char c;
276 unsigned v,idx = 0;
277 ul *= 10;
278 if (ul > 9999*10) { // do not scale if 9999 or less
279 while (ul >= 10000) {
280 ul /= 1024;
281 idx++;
282 }
283 }
284 v = ul; // ullong divisions are expensive, avoid them
285
286 fmt = " 123456789";
287 if (!idx) { // 9999 or less: use 1234 format
288 c = buf[0] = " 123456789"[v/10000];
Denis Vlasenko1b6fa4c2007-03-24 12:08:36 +0000289 if (c != ' ') fmt = "0123456789";
Denis Vlasenkoaae03112006-11-05 00:44:39 +0000290 c = buf[1] = fmt[v/1000%10];
Denis Vlasenko1b6fa4c2007-03-24 12:08:36 +0000291 if (c != ' ') fmt = "0123456789";
Denis Vlasenkoaae03112006-11-05 00:44:39 +0000292 buf[2] = fmt[v/100%10];
293 buf[3] = "0123456789"[v/10%10];
294 } else {
Denis Vlasenko1b6fa4c2007-03-24 12:08:36 +0000295 if (v >= 10*10) { // scaled value is >=10: use 123M format
Denis Vlasenkoaae03112006-11-05 00:44:39 +0000296 c = buf[0] = " 123456789"[v/1000];
Denis Vlasenko1b6fa4c2007-03-24 12:08:36 +0000297 if (c != ' ') fmt = "0123456789";
Denis Vlasenkoaae03112006-11-05 00:44:39 +0000298 buf[1] = fmt[v/100%10];
299 buf[2] = "0123456789"[v/10%10];
300 } else { // scaled value is <10: use 1.2M format
301 buf[0] = "0123456789"[v/10];
302 buf[1] = '.';
303 buf[2] = "0123456789"[v%10];
304 }
305 // see http://en.wikipedia.org/wiki/Tera
306 buf[3] = " kMGTPEZY"[idx];
307 }
308 buf[4] = '\0';
309}
310
Denis Vlasenko450196c2007-03-28 21:57:12 +0000311// Convert unsigned integer to ascii, writing into supplied buffer.
312// A truncated result contains the first few digits of the result ala strncpy.
313// Returns a pointer past last generated digit, does _not_ store NUL.
Denis Vlasenkoaae03112006-11-05 00:44:39 +0000314void BUG_sizeof_unsigned_not_4(void);
Denis Vlasenko10457b92007-03-27 22:01:31 +0000315char *utoa_to_buf(unsigned n, char *buf, unsigned buflen)
Rob Landley5b88a382006-07-10 07:41:34 +0000316{
Denis Vlasenkoaae03112006-11-05 00:44:39 +0000317 unsigned i, out, res;
318 if (sizeof(unsigned) != 4)
319 BUG_sizeof_unsigned_not_4();
Rob Landley22d39582006-07-11 00:44:36 +0000320 if (buflen) {
Denis Vlasenkoaae03112006-11-05 00:44:39 +0000321 out = 0;
322 for (i = 1000000000; i; i /= 10) {
323 res = n / i;
324 if (res || out || i == 1) {
325 if (!--buflen) break;
Rob Landley22d39582006-07-11 00:44:36 +0000326 out++;
327 n -= res*i;
328 *buf++ = '0' + res;
329 }
Rob Landley5b88a382006-07-10 07:41:34 +0000330 }
331 }
Denis Vlasenko10457b92007-03-27 22:01:31 +0000332 return buf;
Rob Landley5b88a382006-07-10 07:41:34 +0000333}
334
Rob Landleyda9d1d02006-09-14 19:52:07 +0000335// Convert signed integer to ascii, like utoa_to_buf()
Denis Vlasenko10457b92007-03-27 22:01:31 +0000336char *itoa_to_buf(int n, char *buf, unsigned buflen)
Rob Landley5b88a382006-07-10 07:41:34 +0000337{
Rob Landley22d39582006-07-11 00:44:36 +0000338 if (buflen && n<0) {
Rob Landley5b88a382006-07-10 07:41:34 +0000339 n = -n;
340 *buf++ = '-';
Rob Landley22d39582006-07-11 00:44:36 +0000341 buflen--;
Rob Landley5b88a382006-07-10 07:41:34 +0000342 }
Denis Vlasenko10457b92007-03-27 22:01:31 +0000343 return utoa_to_buf((unsigned)n, buf, buflen);
Rob Landley5b88a382006-07-10 07:41:34 +0000344}
345
Rob Landleyda9d1d02006-09-14 19:52:07 +0000346// The following two functions use a static buffer, so calling either one a
347// second time will overwrite previous results.
348//
349// The largest 32 bit integer is -2 billion plus null terminator, or 12 bytes.
350// Int should always be 32 bits on any remotely Unix-like system, see
351// http://www.unix.org/whitepapers/64bit.html for the reasons why.
352
Rob Landley23b61be2006-08-04 20:20:03 +0000353static char local_buf[12];
354
Rob Landleyda9d1d02006-09-14 19:52:07 +0000355// Convert unsigned integer to ascii using a static buffer (returned).
Rob Landley23b61be2006-08-04 20:20:03 +0000356char *utoa(unsigned n)
357{
Denis Vlasenko10457b92007-03-27 22:01:31 +0000358 *(utoa_to_buf(n, local_buf, sizeof(local_buf))) = '\0';
Rob Landley23b61be2006-08-04 20:20:03 +0000359
360 return local_buf;
361}
362
Rob Landleyda9d1d02006-09-14 19:52:07 +0000363// Convert signed integer to ascii using a static buffer (returned).
Rob Landley5b88a382006-07-10 07:41:34 +0000364char *itoa(int n)
365{
Denis Vlasenko10457b92007-03-27 22:01:31 +0000366 *(itoa_to_buf(n, local_buf, sizeof(local_buf))) = '\0';
Rob Landley5b88a382006-07-10 07:41:34 +0000367
368 return local_buf;
369}
Rob Landleydf822f22006-07-15 23:00:46 +0000370
Denis Vlasenko3a34d0c2007-01-12 22:10:34 +0000371// Emit a string of hex representation of bytes
372char *bin2hex(char *p, const char *cp, int count)
373{
374 while (count) {
375 unsigned char c = *cp++;
376 /* put lowercase hex digits */
Denis Vlasenko98c0bba2007-01-26 23:31:05 +0000377 *p++ = 0x20 | bb_hexdigits_upcase[c >> 4];
378 *p++ = 0x20 | bb_hexdigits_upcase[c & 0xf];
Denis Vlasenko3a34d0c2007-01-12 22:10:34 +0000379 count--;
380 }
381 return p;
382}
383
Rob Landleyda9d1d02006-09-14 19:52:07 +0000384// Die with an error message if we can't set gid. (Because resource limits may
385// limit this user to a given number of processes, and if that fills up the
386// setgid() will fail and we'll _still_be_root_, which is bad.)
Rob Landleydf822f22006-07-15 23:00:46 +0000387void xsetgid(gid_t gid)
388{
Denis Vlasenko3bc18252007-05-02 23:01:32 +0000389 if (setgid(gid)) bb_perror_msg_and_die("setgid");
Rob Landleydf822f22006-07-15 23:00:46 +0000390}
391
Denis Vlasenkoe1a0d482006-10-20 13:28:22 +0000392// Die with an error message if we can't set uid. (See xsetgid() for why.)
Rob Landleydf822f22006-07-15 23:00:46 +0000393void xsetuid(uid_t uid)
394{
Denis Vlasenko3bc18252007-05-02 23:01:32 +0000395 if (setuid(uid)) bb_perror_msg_and_die("setuid");
Rob Landleydf822f22006-07-15 23:00:46 +0000396}
Rob Landley53437472006-07-16 08:14:35 +0000397
Rob Landleyda9d1d02006-09-14 19:52:07 +0000398// Return how long the file at fd is, if there's any way to determine it.
Rob Landley53437472006-07-16 08:14:35 +0000399off_t fdlength(int fd)
400{
401 off_t bottom = 0, top = 0, pos;
402 long size;
403
Rob Landleyda9d1d02006-09-14 19:52:07 +0000404 // If the ioctl works for this, return it.
Rob Landley53437472006-07-16 08:14:35 +0000405
406 if (ioctl(fd, BLKGETSIZE, &size) >= 0) return size*512;
407
Denis Vlasenko621204b2006-10-27 09:03:24 +0000408 // FIXME: explain why lseek(SEEK_END) is not used here!
409
Rob Landleyda9d1d02006-09-14 19:52:07 +0000410 // If not, do a binary search for the last location we can read. (Some
411 // block devices don't do BLKGETSIZE right.)
Rob Landley53437472006-07-16 08:14:35 +0000412
413 do {
414 char temp;
415
Denis Vlasenkod25a2642006-09-05 09:36:19 +0000416 pos = bottom + (top - bottom) / 2;
Rob Landley53437472006-07-16 08:14:35 +0000417
Rob Landleyda9d1d02006-09-14 19:52:07 +0000418 // If we can read from the current location, it's bigger.
Rob Landley53437472006-07-16 08:14:35 +0000419
Denis Vlasenkoea620772006-10-14 02:23:43 +0000420 if (lseek(fd, pos, SEEK_SET)>=0 && safe_read(fd, &temp, 1)==1) {
Rob Landley53437472006-07-16 08:14:35 +0000421 if (bottom == top) bottom = top = (top+1) * 2;
422 else bottom = pos;
423
Rob Landleyda9d1d02006-09-14 19:52:07 +0000424 // If we can't, it's smaller.
Rob Landley53437472006-07-16 08:14:35 +0000425
426 } else {
427 if (bottom == top) {
428 if (!top) return 0;
429 bottom = top/2;
430 }
431 else top = pos;
432 }
433 } while (bottom + 1 != top);
434
435 return pos + 1;
436}
Rob Landleyd921b2e2006-08-03 15:41:12 +0000437
Rob Landleyda9d1d02006-09-14 19:52:07 +0000438// Die with an error message if we can't malloc() enough space and do an
439// sprintf() into that space.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000440char *xasprintf(const char *format, ...)
441{
442 va_list p;
443 int r;
444 char *string_ptr;
445
446#if 1
447 // GNU extension
448 va_start(p, format);
449 r = vasprintf(&string_ptr, format, p);
450 va_end(p);
451#else
452 // Bloat for systems that haven't got the GNU extension.
453 va_start(p, format);
454 r = vsnprintf(NULL, 0, format, p);
455 va_end(p);
456 string_ptr = xmalloc(r+1);
457 va_start(p, format);
458 r = vsnprintf(string_ptr, r+1, format, p);
459 va_end(p);
460#endif
461
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000462 if (r < 0) bb_error_msg_and_die(bb_msg_memory_exhausted);
Rob Landleyd921b2e2006-08-03 15:41:12 +0000463 return string_ptr;
464}
Rob Landleyd921b2e2006-08-03 15:41:12 +0000465
Denis Vlasenko7cfecc42006-12-18 22:32:45 +0000466#if 0 /* If we will ever meet a libc which hasn't [f]dprintf... */
467int fdprintf(int fd, const char *format, ...)
Denis Vlasenkoc8e6e352006-12-18 22:10:24 +0000468{
469 va_list p;
470 int r;
471 char *string_ptr;
472
473#if 1
474 // GNU extension
475 va_start(p, format);
476 r = vasprintf(&string_ptr, format, p);
477 va_end(p);
478#else
479 // Bloat for systems that haven't got the GNU extension.
480 va_start(p, format);
481 r = vsnprintf(NULL, 0, format, p);
482 va_end(p);
483 string_ptr = xmalloc(r+1);
484 va_start(p, format);
485 r = vsnprintf(string_ptr, r+1, format, p);
486 va_end(p);
487#endif
488
489 if (r >= 0) {
490 full_write(fd, string_ptr, r);
491 free(string_ptr);
492 }
493 return r;
494}
495#endif
496
Rob Landleyda9d1d02006-09-14 19:52:07 +0000497// Die with an error message if we can't copy an entire FILE * to stdout, then
498// close that file.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000499void xprint_and_close_file(FILE *file)
500{
Denis Vlasenkoddec5af2006-10-26 23:25:17 +0000501 fflush(stdout);
Rob Landleyd921b2e2006-08-03 15:41:12 +0000502 // copyfd outputs error messages for us.
Denis Vlasenkoa9801652006-09-07 16:20:03 +0000503 if (bb_copyfd_eof(fileno(file), 1) == -1)
Denis Vlasenko335b63d2007-04-10 21:38:30 +0000504 xfunc_die();
Rob Landleyd921b2e2006-08-03 15:41:12 +0000505
506 fclose(file);
507}
Rob Landleyd921b2e2006-08-03 15:41:12 +0000508
Rob Landleyda9d1d02006-09-14 19:52:07 +0000509// Die if we can't chdir to a new path.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000510void xchdir(const char *path)
511{
512 if (chdir(path))
513 bb_perror_msg_and_die("chdir(%s)", path);
514}
Rob Landleyd921b2e2006-08-03 15:41:12 +0000515
Rob Landleyda9d1d02006-09-14 19:52:07 +0000516// Print a warning message if opendir() fails, but don't die.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000517DIR *warn_opendir(const char *path)
518{
519 DIR *dp;
520
Denis Vlasenko1b6fa4c2007-03-24 12:08:36 +0000521 dp = opendir(path);
522 if (!dp)
Denis Vlasenko89f0b342006-11-18 22:04:09 +0000523 bb_perror_msg("cannot open '%s'", path);
Rob Landleyd921b2e2006-08-03 15:41:12 +0000524 return dp;
525}
Rob Landleyd921b2e2006-08-03 15:41:12 +0000526
Rob Landleyda9d1d02006-09-14 19:52:07 +0000527// Die with an error message if opendir() fails.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000528DIR *xopendir(const char *path)
529{
530 DIR *dp;
531
Denis Vlasenko1b6fa4c2007-03-24 12:08:36 +0000532 dp = opendir(path);
533 if (!dp)
Denis Vlasenko89f0b342006-11-18 22:04:09 +0000534 bb_perror_msg_and_die("cannot open '%s'", path);
Rob Landleyd921b2e2006-08-03 15:41:12 +0000535 return dp;
536}
Rob Landleyd921b2e2006-08-03 15:41:12 +0000537
Rob Landleyda9d1d02006-09-14 19:52:07 +0000538// Die with an error message if we can't open a new socket.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000539int xsocket(int domain, int type, int protocol)
540{
541 int r = socket(domain, type, protocol);
542
Denis Vlasenko1d6a4ae2007-04-13 21:26:20 +0000543 if (r < 0) {
544 /* Hijack vaguely related config option */
545#if ENABLE_VERBOSE_RESOLUTION_ERRORS
546 const char *s = "INET";
547 if (domain == AF_PACKET) s = "PACKET";
548 if (domain == AF_NETLINK) s = "NETLINK";
549USE_FEATURE_IPV6(if (domain == AF_INET6) s = "INET6";)
550 bb_perror_msg_and_die("socket(AF_%s)", s);
551#else
552 bb_perror_msg_and_die("socket");
553#endif
554 }
Rob Landleyd921b2e2006-08-03 15:41:12 +0000555
556 return r;
557}
Rob Landleyd921b2e2006-08-03 15:41:12 +0000558
Rob Landleyda9d1d02006-09-14 19:52:07 +0000559// Die with an error message if we can't bind a socket to an address.
Rob Landley23b61be2006-08-04 20:20:03 +0000560void xbind(int sockfd, struct sockaddr *my_addr, socklen_t addrlen)
561{
562 if (bind(sockfd, my_addr, addrlen)) bb_perror_msg_and_die("bind");
563}
Rob Landley23b61be2006-08-04 20:20:03 +0000564
Rob Landleyda9d1d02006-09-14 19:52:07 +0000565// Die with an error message if we can't listen for connections on a socket.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000566void xlisten(int s, int backlog)
567{
568 if (listen(s, backlog)) bb_perror_msg_and_die("listen");
569}
Bernhard Reutner-Fischer57b56672006-09-11 09:18:09 +0000570
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000571/* Die with an error message if we the sendto failed.
572 * Return bytes sent otherwise
573 */
574
575ssize_t xsendto(int s, const void *buf, size_t len, const struct sockaddr *to,
576 socklen_t tolen)
577{
578 ssize_t ret = sendto(s, buf, len, 0, to, tolen);
579 if (ret < 0) {
580 if (ENABLE_FEATURE_CLEAN_UP)
581 close(s);
582 bb_perror_msg_and_die("sendto");
583 }
584 return ret;
585}
586
Rob Landleyda9d1d02006-09-14 19:52:07 +0000587// xstat() - a stat() which dies on failure with meaningful error message
Denis Vlasenko434ad542007-01-27 13:45:17 +0000588void xstat(const char *name, struct stat *stat_buf)
Bernhard Reutner-Fischer57b56672006-09-11 09:18:09 +0000589{
Denis Vlasenko9213a9e2006-09-17 16:28:10 +0000590 if (stat(name, stat_buf))
Denis Vlasenkob6332242006-10-03 19:57:50 +0000591 bb_perror_msg_and_die("can't stat '%s'", name);
Bernhard Reutner-Fischer57b56672006-09-11 09:18:09 +0000592}
Bernhard Reutner-Fischer57b56672006-09-11 09:18:09 +0000593
Denis Vlasenkod46d3c22007-02-06 19:28:50 +0000594// selinux_or_die() - die if SELinux is disabled.
595void selinux_or_die(void)
596{
597#if ENABLE_SELINUX
598 int rc = is_selinux_enabled();
599 if (rc == 0) {
600 bb_error_msg_and_die("SELinux is disabled");
601 } else if (rc < 0) {
602 bb_error_msg_and_die("is_selinux_enabled() failed");
603 }
604#else
605 bb_error_msg_and_die("SELinux support is disabled");
606#endif
607}
608
Rob Landleyfbdf1212006-09-20 22:06:01 +0000609/* It is perfectly ok to pass in a NULL for either width or for
Denis Vlasenko621204b2006-10-27 09:03:24 +0000610 * height, in which case that value will not be set. */
Bernhard Reutner-Fischeraf457602007-01-20 21:33:50 +0000611int get_terminal_width_height(const int fd, int *width, int *height)
Rob Landleyfbdf1212006-09-20 22:06:01 +0000612{
613 struct winsize win = { 0, 0, 0, 0 };
614 int ret = ioctl(fd, TIOCGWINSZ, &win);
Denis Vlasenko621204b2006-10-27 09:03:24 +0000615
616 if (height) {
617 if (!win.ws_row) {
618 char *s = getenv("LINES");
619 if (s) win.ws_row = atoi(s);
620 }
621 if (win.ws_row <= 1 || win.ws_row >= 30000)
622 win.ws_row = 24;
623 *height = (int) win.ws_row;
Rob Landleyfbdf1212006-09-20 22:06:01 +0000624 }
Denis Vlasenko621204b2006-10-27 09:03:24 +0000625
626 if (width) {
627 if (!win.ws_col) {
628 char *s = getenv("COLUMNS");
629 if (s) win.ws_col = atoi(s);
630 }
631 if (win.ws_col <= 1 || win.ws_col >= 30000)
632 win.ws_col = 80;
633 *width = (int) win.ws_col;
Rob Landleyfbdf1212006-09-20 22:06:01 +0000634 }
Rob Landleyfbdf1212006-09-20 22:06:01 +0000635
636 return ret;
637}