blob: b08f92d813eea899464b0cc76f9a8acb89285dc8 [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
Denis Vlasenkocad04ef2007-03-25 23:21:05 +0000136// "Renumber" opened fd
137void xmove_fd(int from, int to)
138{
139 if (from == to)
140 return;
141 if (dup2(from, to) != to)
142 bb_perror_msg_and_die("cannot duplicate file descriptor");
143 close(from);
144}
145
Rob Landleyda9d1d02006-09-14 19:52:07 +0000146// Die with an error message if we can't write the entire buffer.
Denis Vlasenko2d27e4c2006-11-25 23:50:28 +0000147void xwrite(int fd, const void *buf, size_t count)
Rob Landley53437472006-07-16 08:14:35 +0000148{
Denis Vlasenko88ca0672006-10-12 22:44:13 +0000149 if (count) {
150 ssize_t size = full_write(fd, buf, count);
151 if (size != count)
Denis Vlasenko1db39b22006-10-11 20:59:02 +0000152 bb_error_msg_and_die("short write");
Rob Landley53437472006-07-16 08:14:35 +0000153 }
154}
Rob Landley53437472006-07-16 08:14:35 +0000155
Rob Landleyda9d1d02006-09-14 19:52:07 +0000156// Die with an error message if we can't lseek to the right spot.
Denis Vlasenkoea620772006-10-14 02:23:43 +0000157off_t xlseek(int fd, off_t offset, int whence)
Rob Landley53437472006-07-16 08:14:35 +0000158{
Denis Vlasenkoea620772006-10-14 02:23:43 +0000159 off_t off = lseek(fd, offset, whence);
Denis Vlasenkoc6ce8732006-11-29 18:15:52 +0000160 if (off == (off_t)-1) {
161 if (whence == SEEK_SET)
162 bb_perror_msg_and_die("lseek(%"OFF_FMT"u)", offset);
Denis Vlasenkoea620772006-10-14 02:23:43 +0000163 bb_perror_msg_and_die("lseek");
Denis Vlasenkoc6ce8732006-11-29 18:15:52 +0000164 }
Denis Vlasenkoea620772006-10-14 02:23:43 +0000165 return off;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000166}
167
Denis Vlasenkocf749bc2006-11-26 15:45:17 +0000168// Die with supplied filename if this FILE * has ferror set.
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000169void die_if_ferror(FILE *fp, const char *fn)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000170{
171 if (ferror(fp)) {
Denis Vlasenko2d27e4c2006-11-25 23:50:28 +0000172 bb_error_msg_and_die("%s: I/O error", fn);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000173 }
174}
Manuel Novoa III cad53642003-03-19 09:13:01 +0000175
Rob Landleyda9d1d02006-09-14 19:52:07 +0000176// Die with an error message if stdout has ferror set.
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000177void die_if_ferror_stdout(void)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000178{
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000179 die_if_ferror(stdout, bb_msg_standard_output);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000180}
Manuel Novoa III cad53642003-03-19 09:13:01 +0000181
Rob Landleyda9d1d02006-09-14 19:52:07 +0000182// Die with an error message if we have trouble flushing stdout.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000183void xfflush_stdout(void)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000184{
185 if (fflush(stdout)) {
186 bb_perror_msg_and_die(bb_msg_standard_output);
187 }
188}
Rob Landley399d2b52006-05-25 23:02:40 +0000189
Rob Landleyda9d1d02006-09-14 19:52:07 +0000190// Wait for the specified child PID to exit, returning child's error return.
Rob Landleyc7ddefc2006-06-14 01:24:33 +0000191int wait4pid(int pid)
192{
193 int status;
194
Denis Vlasenkoafa70232007-03-26 17:25:33 +0000195 if (pid <= 0) {
196 errno = ECHILD;
197 return -1;
198 }
199 if (waitpid(pid, &status, 0) == -1)
200 return -1;
201 if (WIFEXITED(status))
202 return WEXITSTATUS(status);
203 if (WIFSIGNALED(status))
204 return WTERMSIG(status) + 10000;
Rob Landleyc7ddefc2006-06-14 01:24:33 +0000205 return 0;
206}
Rob Landley5b88a382006-07-10 07:41:34 +0000207
Denis Vlasenko2856dab2007-04-01 01:18:20 +0000208int wait_nohang(int *wstat)
209{
210 return waitpid(-1, wstat, WNOHANG);
211}
212
213int wait_pid(int *wstat, int pid)
214{
215 int r;
216
217 do
218 r = waitpid(pid, wstat, 0);
219 while ((r == -1) && (errno == EINTR));
220 return r;
221}
222
223void sig_block(int sig)
224{
225 sigset_t ss;
226 sigemptyset(&ss);
227 sigaddset(&ss, sig);
228 sigprocmask(SIG_BLOCK, &ss, NULL);
229}
230
231void sig_unblock(int sig)
232{
233 sigset_t ss;
234 sigemptyset(&ss);
235 sigaddset(&ss, sig);
236 sigprocmask(SIG_UNBLOCK, &ss, NULL);
237}
238
239#if 0
240void sig_blocknone(void)
241{
242 sigset_t ss;
243 sigemptyset(&ss);
244 sigprocmask(SIG_SETMASK, &ss, NULL);
245}
246#endif
247
248void sig_catch(int sig, void (*f)(int))
249{
250 struct sigaction sa;
251 sa.sa_handler = f;
252 sa.sa_flags = 0;
253 sigemptyset(&sa.sa_mask);
254 sigaction(sig, &sa, NULL);
255}
256
257void sig_pause(void)
258{
259 sigset_t ss;
260 sigemptyset(&ss);
261 sigsuspend(&ss);
262}
263
264
Denis Vlasenkofe544582006-10-03 15:57:40 +0000265void xsetenv(const char *key, const char *value)
266{
Denis Vlasenko1db39b22006-10-11 20:59:02 +0000267 if (setenv(key, value, 1))
Denis Vlasenkofe544582006-10-03 15:57:40 +0000268 bb_error_msg_and_die(bb_msg_memory_exhausted);
269}
Denis Vlasenkofe544582006-10-03 15:57:40 +0000270
Denis Vlasenkoaae03112006-11-05 00:44:39 +0000271// Converts unsigned long long value into compact 4-char
272// representation. Examples: "1234", "1.2k", " 27M", "123T"
273// Fifth char is always '\0'
274void smart_ulltoa5(unsigned long long ul, char buf[5])
275{
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000276 const char *fmt;
Denis Vlasenkoaae03112006-11-05 00:44:39 +0000277 char c;
278 unsigned v,idx = 0;
279 ul *= 10;
280 if (ul > 9999*10) { // do not scale if 9999 or less
281 while (ul >= 10000) {
282 ul /= 1024;
283 idx++;
284 }
285 }
286 v = ul; // ullong divisions are expensive, avoid them
287
288 fmt = " 123456789";
289 if (!idx) { // 9999 or less: use 1234 format
290 c = buf[0] = " 123456789"[v/10000];
Denis Vlasenko1b6fa4c2007-03-24 12:08:36 +0000291 if (c != ' ') fmt = "0123456789";
Denis Vlasenkoaae03112006-11-05 00:44:39 +0000292 c = buf[1] = fmt[v/1000%10];
Denis Vlasenko1b6fa4c2007-03-24 12:08:36 +0000293 if (c != ' ') fmt = "0123456789";
Denis Vlasenkoaae03112006-11-05 00:44:39 +0000294 buf[2] = fmt[v/100%10];
295 buf[3] = "0123456789"[v/10%10];
296 } else {
Denis Vlasenko1b6fa4c2007-03-24 12:08:36 +0000297 if (v >= 10*10) { // scaled value is >=10: use 123M format
Denis Vlasenkoaae03112006-11-05 00:44:39 +0000298 c = buf[0] = " 123456789"[v/1000];
Denis Vlasenko1b6fa4c2007-03-24 12:08:36 +0000299 if (c != ' ') fmt = "0123456789";
Denis Vlasenkoaae03112006-11-05 00:44:39 +0000300 buf[1] = fmt[v/100%10];
301 buf[2] = "0123456789"[v/10%10];
302 } else { // scaled value is <10: use 1.2M format
303 buf[0] = "0123456789"[v/10];
304 buf[1] = '.';
305 buf[2] = "0123456789"[v%10];
306 }
307 // see http://en.wikipedia.org/wiki/Tera
308 buf[3] = " kMGTPEZY"[idx];
309 }
310 buf[4] = '\0';
311}
312
Denis Vlasenko450196c2007-03-28 21:57:12 +0000313// Convert unsigned integer to ascii, writing into supplied buffer.
314// A truncated result contains the first few digits of the result ala strncpy.
315// Returns a pointer past last generated digit, does _not_ store NUL.
Denis Vlasenkoaae03112006-11-05 00:44:39 +0000316void BUG_sizeof_unsigned_not_4(void);
Denis Vlasenko10457b92007-03-27 22:01:31 +0000317char *utoa_to_buf(unsigned n, char *buf, unsigned buflen)
Rob Landley5b88a382006-07-10 07:41:34 +0000318{
Denis Vlasenkoaae03112006-11-05 00:44:39 +0000319 unsigned i, out, res;
320 if (sizeof(unsigned) != 4)
321 BUG_sizeof_unsigned_not_4();
Rob Landley22d39582006-07-11 00:44:36 +0000322 if (buflen) {
Denis Vlasenkoaae03112006-11-05 00:44:39 +0000323 out = 0;
324 for (i = 1000000000; i; i /= 10) {
325 res = n / i;
326 if (res || out || i == 1) {
327 if (!--buflen) break;
Rob Landley22d39582006-07-11 00:44:36 +0000328 out++;
329 n -= res*i;
330 *buf++ = '0' + res;
331 }
Rob Landley5b88a382006-07-10 07:41:34 +0000332 }
333 }
Denis Vlasenko10457b92007-03-27 22:01:31 +0000334 return buf;
Rob Landley5b88a382006-07-10 07:41:34 +0000335}
336
Rob Landleyda9d1d02006-09-14 19:52:07 +0000337// Convert signed integer to ascii, like utoa_to_buf()
Denis Vlasenko10457b92007-03-27 22:01:31 +0000338char *itoa_to_buf(int n, char *buf, unsigned buflen)
Rob Landley5b88a382006-07-10 07:41:34 +0000339{
Rob Landley22d39582006-07-11 00:44:36 +0000340 if (buflen && n<0) {
Rob Landley5b88a382006-07-10 07:41:34 +0000341 n = -n;
342 *buf++ = '-';
Rob Landley22d39582006-07-11 00:44:36 +0000343 buflen--;
Rob Landley5b88a382006-07-10 07:41:34 +0000344 }
Denis Vlasenko10457b92007-03-27 22:01:31 +0000345 return utoa_to_buf((unsigned)n, buf, buflen);
Rob Landley5b88a382006-07-10 07:41:34 +0000346}
347
Rob Landleyda9d1d02006-09-14 19:52:07 +0000348// The following two functions use a static buffer, so calling either one a
349// second time will overwrite previous results.
350//
351// The largest 32 bit integer is -2 billion plus null terminator, or 12 bytes.
352// Int should always be 32 bits on any remotely Unix-like system, see
353// http://www.unix.org/whitepapers/64bit.html for the reasons why.
354
Rob Landley23b61be2006-08-04 20:20:03 +0000355static char local_buf[12];
356
Rob Landleyda9d1d02006-09-14 19:52:07 +0000357// Convert unsigned integer to ascii using a static buffer (returned).
Rob Landley23b61be2006-08-04 20:20:03 +0000358char *utoa(unsigned n)
359{
Denis Vlasenko10457b92007-03-27 22:01:31 +0000360 *(utoa_to_buf(n, local_buf, sizeof(local_buf))) = '\0';
Rob Landley23b61be2006-08-04 20:20:03 +0000361
362 return local_buf;
363}
364
Rob Landleyda9d1d02006-09-14 19:52:07 +0000365// Convert signed integer to ascii using a static buffer (returned).
Rob Landley5b88a382006-07-10 07:41:34 +0000366char *itoa(int n)
367{
Denis Vlasenko10457b92007-03-27 22:01:31 +0000368 *(itoa_to_buf(n, local_buf, sizeof(local_buf))) = '\0';
Rob Landley5b88a382006-07-10 07:41:34 +0000369
370 return local_buf;
371}
Rob Landleydf822f22006-07-15 23:00:46 +0000372
Denis Vlasenko3a34d0c2007-01-12 22:10:34 +0000373// Emit a string of hex representation of bytes
374char *bin2hex(char *p, const char *cp, int count)
375{
376 while (count) {
377 unsigned char c = *cp++;
378 /* put lowercase hex digits */
Denis Vlasenko98c0bba2007-01-26 23:31:05 +0000379 *p++ = 0x20 | bb_hexdigits_upcase[c >> 4];
380 *p++ = 0x20 | bb_hexdigits_upcase[c & 0xf];
Denis Vlasenko3a34d0c2007-01-12 22:10:34 +0000381 count--;
382 }
383 return p;
384}
385
Rob Landleyda9d1d02006-09-14 19:52:07 +0000386// Die with an error message if we can't set gid. (Because resource limits may
387// limit this user to a given number of processes, and if that fills up the
388// setgid() will fail and we'll _still_be_root_, which is bad.)
Rob Landleydf822f22006-07-15 23:00:46 +0000389void xsetgid(gid_t gid)
390{
391 if (setgid(gid)) bb_error_msg_and_die("setgid");
392}
393
Denis Vlasenkoe1a0d482006-10-20 13:28:22 +0000394// Die with an error message if we can't set uid. (See xsetgid() for why.)
Rob Landleydf822f22006-07-15 23:00:46 +0000395void xsetuid(uid_t uid)
396{
397 if (setuid(uid)) bb_error_msg_and_die("setuid");
398}
Rob Landley53437472006-07-16 08:14:35 +0000399
Rob Landleyda9d1d02006-09-14 19:52:07 +0000400// Return how long the file at fd is, if there's any way to determine it.
Rob Landley53437472006-07-16 08:14:35 +0000401off_t fdlength(int fd)
402{
403 off_t bottom = 0, top = 0, pos;
404 long size;
405
Rob Landleyda9d1d02006-09-14 19:52:07 +0000406 // If the ioctl works for this, return it.
Rob Landley53437472006-07-16 08:14:35 +0000407
408 if (ioctl(fd, BLKGETSIZE, &size) >= 0) return size*512;
409
Denis Vlasenko621204b2006-10-27 09:03:24 +0000410 // FIXME: explain why lseek(SEEK_END) is not used here!
411
Rob Landleyda9d1d02006-09-14 19:52:07 +0000412 // If not, do a binary search for the last location we can read. (Some
413 // block devices don't do BLKGETSIZE right.)
Rob Landley53437472006-07-16 08:14:35 +0000414
415 do {
416 char temp;
417
Denis Vlasenkod25a2642006-09-05 09:36:19 +0000418 pos = bottom + (top - bottom) / 2;
Rob Landley53437472006-07-16 08:14:35 +0000419
Rob Landleyda9d1d02006-09-14 19:52:07 +0000420 // If we can read from the current location, it's bigger.
Rob Landley53437472006-07-16 08:14:35 +0000421
Denis Vlasenkoea620772006-10-14 02:23:43 +0000422 if (lseek(fd, pos, SEEK_SET)>=0 && safe_read(fd, &temp, 1)==1) {
Rob Landley53437472006-07-16 08:14:35 +0000423 if (bottom == top) bottom = top = (top+1) * 2;
424 else bottom = pos;
425
Rob Landleyda9d1d02006-09-14 19:52:07 +0000426 // If we can't, it's smaller.
Rob Landley53437472006-07-16 08:14:35 +0000427
428 } else {
429 if (bottom == top) {
430 if (!top) return 0;
431 bottom = top/2;
432 }
433 else top = pos;
434 }
435 } while (bottom + 1 != top);
436
437 return pos + 1;
438}
Rob Landleyd921b2e2006-08-03 15:41:12 +0000439
Rob Landleyda9d1d02006-09-14 19:52:07 +0000440// Die with an error message if we can't malloc() enough space and do an
441// sprintf() into that space.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000442char *xasprintf(const char *format, ...)
443{
444 va_list p;
445 int r;
446 char *string_ptr;
447
448#if 1
449 // GNU extension
450 va_start(p, format);
451 r = vasprintf(&string_ptr, format, p);
452 va_end(p);
453#else
454 // Bloat for systems that haven't got the GNU extension.
455 va_start(p, format);
456 r = vsnprintf(NULL, 0, format, p);
457 va_end(p);
458 string_ptr = xmalloc(r+1);
459 va_start(p, format);
460 r = vsnprintf(string_ptr, r+1, format, p);
461 va_end(p);
462#endif
463
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000464 if (r < 0) bb_error_msg_and_die(bb_msg_memory_exhausted);
Rob Landleyd921b2e2006-08-03 15:41:12 +0000465 return string_ptr;
466}
Rob Landleyd921b2e2006-08-03 15:41:12 +0000467
Denis Vlasenko7cfecc42006-12-18 22:32:45 +0000468#if 0 /* If we will ever meet a libc which hasn't [f]dprintf... */
469int fdprintf(int fd, const char *format, ...)
Denis Vlasenkoc8e6e352006-12-18 22:10:24 +0000470{
471 va_list p;
472 int r;
473 char *string_ptr;
474
475#if 1
476 // GNU extension
477 va_start(p, format);
478 r = vasprintf(&string_ptr, format, p);
479 va_end(p);
480#else
481 // Bloat for systems that haven't got the GNU extension.
482 va_start(p, format);
483 r = vsnprintf(NULL, 0, format, p);
484 va_end(p);
485 string_ptr = xmalloc(r+1);
486 va_start(p, format);
487 r = vsnprintf(string_ptr, r+1, format, p);
488 va_end(p);
489#endif
490
491 if (r >= 0) {
492 full_write(fd, string_ptr, r);
493 free(string_ptr);
494 }
495 return r;
496}
497#endif
498
Rob Landleyda9d1d02006-09-14 19:52:07 +0000499// Die with an error message if we can't copy an entire FILE * to stdout, then
500// close that file.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000501void xprint_and_close_file(FILE *file)
502{
Denis Vlasenkoddec5af2006-10-26 23:25:17 +0000503 fflush(stdout);
Rob Landleyd921b2e2006-08-03 15:41:12 +0000504 // copyfd outputs error messages for us.
Denis Vlasenkoa9801652006-09-07 16:20:03 +0000505 if (bb_copyfd_eof(fileno(file), 1) == -1)
Denis Vlasenko40920822006-10-03 20:28:06 +0000506 exit(xfunc_error_retval);
Rob Landleyd921b2e2006-08-03 15:41:12 +0000507
508 fclose(file);
509}
Rob Landleyd921b2e2006-08-03 15:41:12 +0000510
Rob Landleyda9d1d02006-09-14 19:52:07 +0000511// Die if we can't chdir to a new path.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000512void xchdir(const char *path)
513{
514 if (chdir(path))
515 bb_perror_msg_and_die("chdir(%s)", path);
516}
Rob Landleyd921b2e2006-08-03 15:41:12 +0000517
Rob Landleyda9d1d02006-09-14 19:52:07 +0000518// Print a warning message if opendir() fails, but don't die.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000519DIR *warn_opendir(const char *path)
520{
521 DIR *dp;
522
Denis Vlasenko1b6fa4c2007-03-24 12:08:36 +0000523 dp = opendir(path);
524 if (!dp)
Denis Vlasenko89f0b342006-11-18 22:04:09 +0000525 bb_perror_msg("cannot open '%s'", path);
Rob Landleyd921b2e2006-08-03 15:41:12 +0000526 return dp;
527}
Rob Landleyd921b2e2006-08-03 15:41:12 +0000528
Rob Landleyda9d1d02006-09-14 19:52:07 +0000529// Die with an error message if opendir() fails.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000530DIR *xopendir(const char *path)
531{
532 DIR *dp;
533
Denis Vlasenko1b6fa4c2007-03-24 12:08:36 +0000534 dp = opendir(path);
535 if (!dp)
Denis Vlasenko89f0b342006-11-18 22:04:09 +0000536 bb_perror_msg_and_die("cannot open '%s'", path);
Rob Landleyd921b2e2006-08-03 15:41:12 +0000537 return dp;
538}
Rob Landleyd921b2e2006-08-03 15:41:12 +0000539
Rob Landleyda9d1d02006-09-14 19:52:07 +0000540// Die with an error message if we can't open a new socket.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000541int xsocket(int domain, int type, int protocol)
542{
543 int r = socket(domain, type, protocol);
544
545 if (r < 0) bb_perror_msg_and_die("socket");
546
547 return r;
548}
Rob Landleyd921b2e2006-08-03 15:41:12 +0000549
Rob Landleyda9d1d02006-09-14 19:52:07 +0000550// Die with an error message if we can't bind a socket to an address.
Rob Landley23b61be2006-08-04 20:20:03 +0000551void xbind(int sockfd, struct sockaddr *my_addr, socklen_t addrlen)
552{
553 if (bind(sockfd, my_addr, addrlen)) bb_perror_msg_and_die("bind");
554}
Rob Landley23b61be2006-08-04 20:20:03 +0000555
Rob Landleyda9d1d02006-09-14 19:52:07 +0000556// Die with an error message if we can't listen for connections on a socket.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000557void xlisten(int s, int backlog)
558{
559 if (listen(s, backlog)) bb_perror_msg_and_die("listen");
560}
Bernhard Reutner-Fischer57b56672006-09-11 09:18:09 +0000561
Rob Landleyda9d1d02006-09-14 19:52:07 +0000562// xstat() - a stat() which dies on failure with meaningful error message
Denis Vlasenko434ad542007-01-27 13:45:17 +0000563void xstat(const char *name, struct stat *stat_buf)
Bernhard Reutner-Fischer57b56672006-09-11 09:18:09 +0000564{
Denis Vlasenko9213a9e2006-09-17 16:28:10 +0000565 if (stat(name, stat_buf))
Denis Vlasenkob6332242006-10-03 19:57:50 +0000566 bb_perror_msg_and_die("can't stat '%s'", name);
Bernhard Reutner-Fischer57b56672006-09-11 09:18:09 +0000567}
Bernhard Reutner-Fischer57b56672006-09-11 09:18:09 +0000568
Denis Vlasenkod46d3c22007-02-06 19:28:50 +0000569// selinux_or_die() - die if SELinux is disabled.
570void selinux_or_die(void)
571{
572#if ENABLE_SELINUX
573 int rc = is_selinux_enabled();
574 if (rc == 0) {
575 bb_error_msg_and_die("SELinux is disabled");
576 } else if (rc < 0) {
577 bb_error_msg_and_die("is_selinux_enabled() failed");
578 }
579#else
580 bb_error_msg_and_die("SELinux support is disabled");
581#endif
582}
583
Rob Landleyfbdf1212006-09-20 22:06:01 +0000584/* It is perfectly ok to pass in a NULL for either width or for
Denis Vlasenko621204b2006-10-27 09:03:24 +0000585 * height, in which case that value will not be set. */
Bernhard Reutner-Fischeraf457602007-01-20 21:33:50 +0000586int get_terminal_width_height(const int fd, int *width, int *height)
Rob Landleyfbdf1212006-09-20 22:06:01 +0000587{
588 struct winsize win = { 0, 0, 0, 0 };
589 int ret = ioctl(fd, TIOCGWINSZ, &win);
Denis Vlasenko621204b2006-10-27 09:03:24 +0000590
591 if (height) {
592 if (!win.ws_row) {
593 char *s = getenv("LINES");
594 if (s) win.ws_row = atoi(s);
595 }
596 if (win.ws_row <= 1 || win.ws_row >= 30000)
597 win.ws_row = 24;
598 *height = (int) win.ws_row;
Rob Landleyfbdf1212006-09-20 22:06:01 +0000599 }
Denis Vlasenko621204b2006-10-27 09:03:24 +0000600
601 if (width) {
602 if (!win.ws_col) {
603 char *s = getenv("COLUMNS");
604 if (s) win.ws_col = atoi(s);
605 }
606 if (win.ws_col <= 1 || win.ws_col >= 30000)
607 win.ws_col = 80;
608 *width = (int) win.ws_col;
Rob Landleyfbdf1212006-09-20 22:06:01 +0000609 }
Rob Landleyfbdf1212006-09-20 22:06:01 +0000610
611 return ret;
612}