blob: d02ef9c77ef15021f6fa9b54479e1a44ff8e1e8d [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
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000012#include "libbb.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 Vlasenko5a6aedd2007-05-26 16:44:20 +0000109 bb_perror_msg_and_die("can't 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 Vlasenko5a6aedd2007-05-26 16:44:20 +0000120 bb_perror_msg_and_die("can't 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) {
Denis Vlasenko5a6aedd2007-05-26 16:44:20 +0000138 bb_perror_msg("can't open '%s'", pathname);
Denis Vlasenko50f7f442007-04-11 23:20:53 +0000139 }
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 Vlasenko5a6aedd2007-05-26 16:44:20 +0000149void xpipe(int filedes[2])
150{
151 if (pipe(filedes))
152 bb_perror_msg_and_die("can't create pipe");
153}
154
Denis Vlasenko1bb552b2007-04-05 21:25:15 +0000155void xunlink(const char *pathname)
156{
157 if (unlink(pathname))
Denis Vlasenko5a6aedd2007-05-26 16:44:20 +0000158 bb_perror_msg_and_die("can't remove file '%s'", pathname);
Denis Vlasenko1bb552b2007-04-05 21:25:15 +0000159}
160
Denis Vlasenko75f8d082006-11-22 15:54:52 +0000161// Turn on nonblocking I/O on a fd
162int ndelay_on(int fd)
163{
Denis Vlasenko5a6aedd2007-05-26 16:44:20 +0000164 return fcntl(fd, F_SETFL, fcntl(fd,F_GETFL,0) | O_NONBLOCK);
Denis Vlasenko75f8d082006-11-22 15:54:52 +0000165}
166
Denis Vlasenkoa5b3e762006-12-24 07:15:50 +0000167int ndelay_off(int fd)
168{
Denis Vlasenko5a6aedd2007-05-26 16:44:20 +0000169 return fcntl(fd, F_SETFL, fcntl(fd,F_GETFL,0) & ~O_NONBLOCK);
Denis Vlasenkoa5b3e762006-12-24 07:15:50 +0000170}
171
Denis Vlasenkocad04ef2007-03-25 23:21:05 +0000172// "Renumber" opened fd
173void xmove_fd(int from, int to)
174{
175 if (from == to)
176 return;
177 if (dup2(from, to) != to)
Denis Vlasenko5a6aedd2007-05-26 16:44:20 +0000178 bb_perror_msg_and_die("can't duplicate file descriptor");
Denis Vlasenkocad04ef2007-03-25 23:21:05 +0000179 close(from);
180}
181
Rob Landleyda9d1d02006-09-14 19:52:07 +0000182// Die with an error message if we can't write the entire buffer.
Denis Vlasenko2d27e4c2006-11-25 23:50:28 +0000183void xwrite(int fd, const void *buf, size_t count)
Rob Landley53437472006-07-16 08:14:35 +0000184{
Denis Vlasenko88ca0672006-10-12 22:44:13 +0000185 if (count) {
186 ssize_t size = full_write(fd, buf, count);
187 if (size != count)
Denis Vlasenko1db39b22006-10-11 20:59:02 +0000188 bb_error_msg_and_die("short write");
Rob Landley53437472006-07-16 08:14:35 +0000189 }
190}
Rob Landley53437472006-07-16 08:14:35 +0000191
Rob Landleyda9d1d02006-09-14 19:52:07 +0000192// Die with an error message if we can't lseek to the right spot.
Denis Vlasenkoea620772006-10-14 02:23:43 +0000193off_t xlseek(int fd, off_t offset, int whence)
Rob Landley53437472006-07-16 08:14:35 +0000194{
Denis Vlasenkoea620772006-10-14 02:23:43 +0000195 off_t off = lseek(fd, offset, whence);
Denis Vlasenkoc6ce8732006-11-29 18:15:52 +0000196 if (off == (off_t)-1) {
197 if (whence == SEEK_SET)
198 bb_perror_msg_and_die("lseek(%"OFF_FMT"u)", offset);
Denis Vlasenkoea620772006-10-14 02:23:43 +0000199 bb_perror_msg_and_die("lseek");
Denis Vlasenkoc6ce8732006-11-29 18:15:52 +0000200 }
Denis Vlasenkoea620772006-10-14 02:23:43 +0000201 return off;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000202}
203
Denis Vlasenkocf749bc2006-11-26 15:45:17 +0000204// Die with supplied filename if this FILE * has ferror set.
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000205void die_if_ferror(FILE *fp, const char *fn)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000206{
207 if (ferror(fp)) {
Denis Vlasenko5a6aedd2007-05-26 16:44:20 +0000208 /* ferror doesn't set useful errno */
Denis Vlasenko2d27e4c2006-11-25 23:50:28 +0000209 bb_error_msg_and_die("%s: I/O error", fn);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000210 }
211}
Manuel Novoa III cad53642003-03-19 09:13:01 +0000212
Rob Landleyda9d1d02006-09-14 19:52:07 +0000213// Die with an error message if stdout has ferror set.
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000214void die_if_ferror_stdout(void)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000215{
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000216 die_if_ferror(stdout, bb_msg_standard_output);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000217}
Manuel Novoa III cad53642003-03-19 09:13:01 +0000218
Rob Landleyda9d1d02006-09-14 19:52:07 +0000219// Die with an error message if we have trouble flushing stdout.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000220void xfflush_stdout(void)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000221{
222 if (fflush(stdout)) {
223 bb_perror_msg_and_die(bb_msg_standard_output);
224 }
225}
Rob Landley399d2b52006-05-25 23:02:40 +0000226
Denis Vlasenko2856dab2007-04-01 01:18:20 +0000227void sig_block(int sig)
228{
229 sigset_t ss;
230 sigemptyset(&ss);
231 sigaddset(&ss, sig);
232 sigprocmask(SIG_BLOCK, &ss, NULL);
233}
234
235void sig_unblock(int sig)
236{
237 sigset_t ss;
238 sigemptyset(&ss);
239 sigaddset(&ss, sig);
240 sigprocmask(SIG_UNBLOCK, &ss, NULL);
241}
242
243#if 0
244void sig_blocknone(void)
245{
246 sigset_t ss;
247 sigemptyset(&ss);
248 sigprocmask(SIG_SETMASK, &ss, NULL);
249}
250#endif
251
252void sig_catch(int sig, void (*f)(int))
253{
254 struct sigaction sa;
255 sa.sa_handler = f;
256 sa.sa_flags = 0;
257 sigemptyset(&sa.sa_mask);
258 sigaction(sig, &sa, NULL);
259}
260
261void sig_pause(void)
262{
263 sigset_t ss;
264 sigemptyset(&ss);
265 sigsuspend(&ss);
266}
267
268
Denis Vlasenkofe544582006-10-03 15:57:40 +0000269void xsetenv(const char *key, const char *value)
270{
Denis Vlasenko1db39b22006-10-11 20:59:02 +0000271 if (setenv(key, value, 1))
Denis Vlasenkofe544582006-10-03 15:57:40 +0000272 bb_error_msg_and_die(bb_msg_memory_exhausted);
273}
Denis Vlasenkofe544582006-10-03 15:57:40 +0000274
Denis Vlasenkoaae03112006-11-05 00:44:39 +0000275// Converts unsigned long long value into compact 4-char
276// representation. Examples: "1234", "1.2k", " 27M", "123T"
277// Fifth char is always '\0'
278void smart_ulltoa5(unsigned long long ul, char buf[5])
279{
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000280 const char *fmt;
Denis Vlasenkoaae03112006-11-05 00:44:39 +0000281 char c;
282 unsigned v,idx = 0;
283 ul *= 10;
284 if (ul > 9999*10) { // do not scale if 9999 or less
285 while (ul >= 10000) {
286 ul /= 1024;
287 idx++;
288 }
289 }
290 v = ul; // ullong divisions are expensive, avoid them
291
292 fmt = " 123456789";
293 if (!idx) { // 9999 or less: use 1234 format
294 c = buf[0] = " 123456789"[v/10000];
Denis Vlasenko1b6fa4c2007-03-24 12:08:36 +0000295 if (c != ' ') fmt = "0123456789";
Denis Vlasenkoaae03112006-11-05 00:44:39 +0000296 c = buf[1] = fmt[v/1000%10];
Denis Vlasenko1b6fa4c2007-03-24 12:08:36 +0000297 if (c != ' ') fmt = "0123456789";
Denis Vlasenkoaae03112006-11-05 00:44:39 +0000298 buf[2] = fmt[v/100%10];
299 buf[3] = "0123456789"[v/10%10];
300 } else {
Denis Vlasenko1b6fa4c2007-03-24 12:08:36 +0000301 if (v >= 10*10) { // scaled value is >=10: use 123M format
Denis Vlasenkoaae03112006-11-05 00:44:39 +0000302 c = buf[0] = " 123456789"[v/1000];
Denis Vlasenko1b6fa4c2007-03-24 12:08:36 +0000303 if (c != ' ') fmt = "0123456789";
Denis Vlasenkoaae03112006-11-05 00:44:39 +0000304 buf[1] = fmt[v/100%10];
305 buf[2] = "0123456789"[v/10%10];
306 } else { // scaled value is <10: use 1.2M format
307 buf[0] = "0123456789"[v/10];
308 buf[1] = '.';
309 buf[2] = "0123456789"[v%10];
310 }
311 // see http://en.wikipedia.org/wiki/Tera
312 buf[3] = " kMGTPEZY"[idx];
313 }
314 buf[4] = '\0';
315}
316
Denis Vlasenko450196c2007-03-28 21:57:12 +0000317// Convert unsigned integer to ascii, writing into supplied buffer.
318// A truncated result contains the first few digits of the result ala strncpy.
319// Returns a pointer past last generated digit, does _not_ store NUL.
Denis Vlasenkoaae03112006-11-05 00:44:39 +0000320void BUG_sizeof_unsigned_not_4(void);
Denis Vlasenko10457b92007-03-27 22:01:31 +0000321char *utoa_to_buf(unsigned n, char *buf, unsigned buflen)
Rob Landley5b88a382006-07-10 07:41:34 +0000322{
Denis Vlasenkoaae03112006-11-05 00:44:39 +0000323 unsigned i, out, res;
324 if (sizeof(unsigned) != 4)
325 BUG_sizeof_unsigned_not_4();
Rob Landley22d39582006-07-11 00:44:36 +0000326 if (buflen) {
Denis Vlasenkoaae03112006-11-05 00:44:39 +0000327 out = 0;
328 for (i = 1000000000; i; i /= 10) {
329 res = n / i;
330 if (res || out || i == 1) {
331 if (!--buflen) break;
Rob Landley22d39582006-07-11 00:44:36 +0000332 out++;
333 n -= res*i;
334 *buf++ = '0' + res;
335 }
Rob Landley5b88a382006-07-10 07:41:34 +0000336 }
337 }
Denis Vlasenko10457b92007-03-27 22:01:31 +0000338 return buf;
Rob Landley5b88a382006-07-10 07:41:34 +0000339}
340
Rob Landleyda9d1d02006-09-14 19:52:07 +0000341// Convert signed integer to ascii, like utoa_to_buf()
Denis Vlasenko10457b92007-03-27 22:01:31 +0000342char *itoa_to_buf(int n, char *buf, unsigned buflen)
Rob Landley5b88a382006-07-10 07:41:34 +0000343{
Rob Landley22d39582006-07-11 00:44:36 +0000344 if (buflen && n<0) {
Rob Landley5b88a382006-07-10 07:41:34 +0000345 n = -n;
346 *buf++ = '-';
Rob Landley22d39582006-07-11 00:44:36 +0000347 buflen--;
Rob Landley5b88a382006-07-10 07:41:34 +0000348 }
Denis Vlasenko10457b92007-03-27 22:01:31 +0000349 return utoa_to_buf((unsigned)n, buf, buflen);
Rob Landley5b88a382006-07-10 07:41:34 +0000350}
351
Rob Landleyda9d1d02006-09-14 19:52:07 +0000352// The following two functions use a static buffer, so calling either one a
353// second time will overwrite previous results.
354//
355// The largest 32 bit integer is -2 billion plus null terminator, or 12 bytes.
356// Int should always be 32 bits on any remotely Unix-like system, see
357// http://www.unix.org/whitepapers/64bit.html for the reasons why.
358
Rob Landley23b61be2006-08-04 20:20:03 +0000359static char local_buf[12];
360
Rob Landleyda9d1d02006-09-14 19:52:07 +0000361// Convert unsigned integer to ascii using a static buffer (returned).
Rob Landley23b61be2006-08-04 20:20:03 +0000362char *utoa(unsigned n)
363{
Denis Vlasenko10457b92007-03-27 22:01:31 +0000364 *(utoa_to_buf(n, local_buf, sizeof(local_buf))) = '\0';
Rob Landley23b61be2006-08-04 20:20:03 +0000365
366 return local_buf;
367}
368
Rob Landleyda9d1d02006-09-14 19:52:07 +0000369// Convert signed integer to ascii using a static buffer (returned).
Rob Landley5b88a382006-07-10 07:41:34 +0000370char *itoa(int n)
371{
Denis Vlasenko10457b92007-03-27 22:01:31 +0000372 *(itoa_to_buf(n, local_buf, sizeof(local_buf))) = '\0';
Rob Landley5b88a382006-07-10 07:41:34 +0000373
374 return local_buf;
375}
Rob Landleydf822f22006-07-15 23:00:46 +0000376
Denis Vlasenko3a34d0c2007-01-12 22:10:34 +0000377// Emit a string of hex representation of bytes
378char *bin2hex(char *p, const char *cp, int count)
379{
380 while (count) {
381 unsigned char c = *cp++;
382 /* put lowercase hex digits */
Denis Vlasenko98c0bba2007-01-26 23:31:05 +0000383 *p++ = 0x20 | bb_hexdigits_upcase[c >> 4];
384 *p++ = 0x20 | bb_hexdigits_upcase[c & 0xf];
Denis Vlasenko3a34d0c2007-01-12 22:10:34 +0000385 count--;
386 }
387 return p;
388}
389
Rob Landleyda9d1d02006-09-14 19:52:07 +0000390// Die with an error message if we can't set gid. (Because resource limits may
391// limit this user to a given number of processes, and if that fills up the
392// setgid() will fail and we'll _still_be_root_, which is bad.)
Rob Landleydf822f22006-07-15 23:00:46 +0000393void xsetgid(gid_t gid)
394{
Denis Vlasenko3bc18252007-05-02 23:01:32 +0000395 if (setgid(gid)) bb_perror_msg_and_die("setgid");
Rob Landleydf822f22006-07-15 23:00:46 +0000396}
397
Denis Vlasenkoe1a0d482006-10-20 13:28:22 +0000398// Die with an error message if we can't set uid. (See xsetgid() for why.)
Rob Landleydf822f22006-07-15 23:00:46 +0000399void xsetuid(uid_t uid)
400{
Denis Vlasenko3bc18252007-05-02 23:01:32 +0000401 if (setuid(uid)) bb_perror_msg_and_die("setuid");
Rob Landleydf822f22006-07-15 23:00:46 +0000402}
Rob Landley53437472006-07-16 08:14:35 +0000403
Rob Landleyda9d1d02006-09-14 19:52:07 +0000404// Return how long the file at fd is, if there's any way to determine it.
Rob Landley53437472006-07-16 08:14:35 +0000405off_t fdlength(int fd)
406{
407 off_t bottom = 0, top = 0, pos;
408 long size;
409
Rob Landleyda9d1d02006-09-14 19:52:07 +0000410 // If the ioctl works for this, return it.
Rob Landley53437472006-07-16 08:14:35 +0000411
412 if (ioctl(fd, BLKGETSIZE, &size) >= 0) return size*512;
413
Denis Vlasenko621204b2006-10-27 09:03:24 +0000414 // FIXME: explain why lseek(SEEK_END) is not used here!
415
Rob Landleyda9d1d02006-09-14 19:52:07 +0000416 // If not, do a binary search for the last location we can read. (Some
417 // block devices don't do BLKGETSIZE right.)
Rob Landley53437472006-07-16 08:14:35 +0000418
419 do {
420 char temp;
421
Denis Vlasenkod25a2642006-09-05 09:36:19 +0000422 pos = bottom + (top - bottom) / 2;
Rob Landley53437472006-07-16 08:14:35 +0000423
Rob Landleyda9d1d02006-09-14 19:52:07 +0000424 // If we can read from the current location, it's bigger.
Rob Landley53437472006-07-16 08:14:35 +0000425
Denis Vlasenkoea620772006-10-14 02:23:43 +0000426 if (lseek(fd, pos, SEEK_SET)>=0 && safe_read(fd, &temp, 1)==1) {
Rob Landley53437472006-07-16 08:14:35 +0000427 if (bottom == top) bottom = top = (top+1) * 2;
428 else bottom = pos;
429
Rob Landleyda9d1d02006-09-14 19:52:07 +0000430 // If we can't, it's smaller.
Rob Landley53437472006-07-16 08:14:35 +0000431
432 } else {
433 if (bottom == top) {
434 if (!top) return 0;
435 bottom = top/2;
436 }
437 else top = pos;
438 }
439 } while (bottom + 1 != top);
440
441 return pos + 1;
442}
Rob Landleyd921b2e2006-08-03 15:41:12 +0000443
Rob Landleyda9d1d02006-09-14 19:52:07 +0000444// Die with an error message if we can't malloc() enough space and do an
445// sprintf() into that space.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000446char *xasprintf(const char *format, ...)
447{
448 va_list p;
449 int r;
450 char *string_ptr;
451
452#if 1
453 // GNU extension
454 va_start(p, format);
455 r = vasprintf(&string_ptr, format, p);
456 va_end(p);
457#else
458 // Bloat for systems that haven't got the GNU extension.
459 va_start(p, format);
460 r = vsnprintf(NULL, 0, format, p);
461 va_end(p);
462 string_ptr = xmalloc(r+1);
463 va_start(p, format);
464 r = vsnprintf(string_ptr, r+1, format, p);
465 va_end(p);
466#endif
467
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000468 if (r < 0) bb_error_msg_and_die(bb_msg_memory_exhausted);
Rob Landleyd921b2e2006-08-03 15:41:12 +0000469 return string_ptr;
470}
Rob Landleyd921b2e2006-08-03 15:41:12 +0000471
Denis Vlasenko7cfecc42006-12-18 22:32:45 +0000472#if 0 /* If we will ever meet a libc which hasn't [f]dprintf... */
473int fdprintf(int fd, const char *format, ...)
Denis Vlasenkoc8e6e352006-12-18 22:10:24 +0000474{
475 va_list p;
476 int r;
477 char *string_ptr;
478
479#if 1
480 // GNU extension
481 va_start(p, format);
482 r = vasprintf(&string_ptr, format, p);
483 va_end(p);
484#else
485 // Bloat for systems that haven't got the GNU extension.
486 va_start(p, format);
487 r = vsnprintf(NULL, 0, format, p);
488 va_end(p);
489 string_ptr = xmalloc(r+1);
490 va_start(p, format);
491 r = vsnprintf(string_ptr, r+1, format, p);
492 va_end(p);
493#endif
494
495 if (r >= 0) {
496 full_write(fd, string_ptr, r);
497 free(string_ptr);
498 }
499 return r;
500}
501#endif
502
Rob Landleyda9d1d02006-09-14 19:52:07 +0000503// Die with an error message if we can't copy an entire FILE * to stdout, then
504// close that file.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000505void xprint_and_close_file(FILE *file)
506{
Denis Vlasenkoddec5af2006-10-26 23:25:17 +0000507 fflush(stdout);
Rob Landleyd921b2e2006-08-03 15:41:12 +0000508 // copyfd outputs error messages for us.
Denis Vlasenkoa9801652006-09-07 16:20:03 +0000509 if (bb_copyfd_eof(fileno(file), 1) == -1)
Denis Vlasenko335b63d2007-04-10 21:38:30 +0000510 xfunc_die();
Rob Landleyd921b2e2006-08-03 15:41:12 +0000511
512 fclose(file);
513}
Rob Landleyd921b2e2006-08-03 15:41:12 +0000514
Rob Landleyda9d1d02006-09-14 19:52:07 +0000515// Die if we can't chdir to a new path.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000516void xchdir(const char *path)
517{
518 if (chdir(path))
519 bb_perror_msg_and_die("chdir(%s)", path);
520}
Rob Landleyd921b2e2006-08-03 15:41:12 +0000521
Rob Landleyda9d1d02006-09-14 19:52:07 +0000522// Print a warning message if opendir() fails, but don't die.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000523DIR *warn_opendir(const char *path)
524{
525 DIR *dp;
526
Denis Vlasenko1b6fa4c2007-03-24 12:08:36 +0000527 dp = opendir(path);
528 if (!dp)
Denis Vlasenko5a6aedd2007-05-26 16:44:20 +0000529 bb_perror_msg("can't open '%s'", path);
Rob Landleyd921b2e2006-08-03 15:41:12 +0000530 return dp;
531}
Rob Landleyd921b2e2006-08-03 15:41:12 +0000532
Rob Landleyda9d1d02006-09-14 19:52:07 +0000533// Die with an error message if opendir() fails.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000534DIR *xopendir(const char *path)
535{
536 DIR *dp;
537
Denis Vlasenko1b6fa4c2007-03-24 12:08:36 +0000538 dp = opendir(path);
539 if (!dp)
Denis Vlasenko5a6aedd2007-05-26 16:44:20 +0000540 bb_perror_msg_and_die("can't open '%s'", path);
Rob Landleyd921b2e2006-08-03 15:41:12 +0000541 return dp;
542}
Rob Landleyd921b2e2006-08-03 15:41:12 +0000543
Rob Landleyda9d1d02006-09-14 19:52:07 +0000544// Die with an error message if we can't open a new socket.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000545int xsocket(int domain, int type, int protocol)
546{
547 int r = socket(domain, type, protocol);
548
Denis Vlasenko1d6a4ae2007-04-13 21:26:20 +0000549 if (r < 0) {
550 /* Hijack vaguely related config option */
551#if ENABLE_VERBOSE_RESOLUTION_ERRORS
552 const char *s = "INET";
553 if (domain == AF_PACKET) s = "PACKET";
554 if (domain == AF_NETLINK) s = "NETLINK";
555USE_FEATURE_IPV6(if (domain == AF_INET6) s = "INET6";)
556 bb_perror_msg_and_die("socket(AF_%s)", s);
557#else
558 bb_perror_msg_and_die("socket");
559#endif
560 }
Rob Landleyd921b2e2006-08-03 15:41:12 +0000561
562 return r;
563}
Rob Landleyd921b2e2006-08-03 15:41:12 +0000564
Rob Landleyda9d1d02006-09-14 19:52:07 +0000565// Die with an error message if we can't bind a socket to an address.
Rob Landley23b61be2006-08-04 20:20:03 +0000566void xbind(int sockfd, struct sockaddr *my_addr, socklen_t addrlen)
567{
568 if (bind(sockfd, my_addr, addrlen)) bb_perror_msg_and_die("bind");
569}
Rob Landley23b61be2006-08-04 20:20:03 +0000570
Rob Landleyda9d1d02006-09-14 19:52:07 +0000571// Die with an error message if we can't listen for connections on a socket.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000572void xlisten(int s, int backlog)
573{
574 if (listen(s, backlog)) bb_perror_msg_and_die("listen");
575}
Bernhard Reutner-Fischer57b56672006-09-11 09:18:09 +0000576
Denis Vlasenko5a6aedd2007-05-26 16:44:20 +0000577/* Die with an error message if sendto failed.
578 * Return bytes sent otherwise */
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000579ssize_t xsendto(int s, const void *buf, size_t len, const struct sockaddr *to,
580 socklen_t tolen)
581{
582 ssize_t ret = sendto(s, buf, len, 0, to, tolen);
583 if (ret < 0) {
584 if (ENABLE_FEATURE_CLEAN_UP)
585 close(s);
586 bb_perror_msg_and_die("sendto");
587 }
588 return ret;
589}
590
Rob Landleyda9d1d02006-09-14 19:52:07 +0000591// xstat() - a stat() which dies on failure with meaningful error message
Denis Vlasenko434ad542007-01-27 13:45:17 +0000592void xstat(const char *name, struct stat *stat_buf)
Bernhard Reutner-Fischer57b56672006-09-11 09:18:09 +0000593{
Denis Vlasenko9213a9e2006-09-17 16:28:10 +0000594 if (stat(name, stat_buf))
Denis Vlasenkob6332242006-10-03 19:57:50 +0000595 bb_perror_msg_and_die("can't stat '%s'", name);
Bernhard Reutner-Fischer57b56672006-09-11 09:18:09 +0000596}
Bernhard Reutner-Fischer57b56672006-09-11 09:18:09 +0000597
Denis Vlasenkod46d3c22007-02-06 19:28:50 +0000598// selinux_or_die() - die if SELinux is disabled.
599void selinux_or_die(void)
600{
601#if ENABLE_SELINUX
602 int rc = is_selinux_enabled();
603 if (rc == 0) {
604 bb_error_msg_and_die("SELinux is disabled");
605 } else if (rc < 0) {
606 bb_error_msg_and_die("is_selinux_enabled() failed");
607 }
608#else
609 bb_error_msg_and_die("SELinux support is disabled");
610#endif
611}
612
Rob Landleyfbdf1212006-09-20 22:06:01 +0000613/* It is perfectly ok to pass in a NULL for either width or for
Denis Vlasenko621204b2006-10-27 09:03:24 +0000614 * height, in which case that value will not be set. */
Bernhard Reutner-Fischeraf457602007-01-20 21:33:50 +0000615int get_terminal_width_height(const int fd, int *width, int *height)
Rob Landleyfbdf1212006-09-20 22:06:01 +0000616{
617 struct winsize win = { 0, 0, 0, 0 };
618 int ret = ioctl(fd, TIOCGWINSZ, &win);
Denis Vlasenko621204b2006-10-27 09:03:24 +0000619
620 if (height) {
621 if (!win.ws_row) {
622 char *s = getenv("LINES");
623 if (s) win.ws_row = atoi(s);
624 }
625 if (win.ws_row <= 1 || win.ws_row >= 30000)
626 win.ws_row = 24;
627 *height = (int) win.ws_row;
Rob Landleyfbdf1212006-09-20 22:06:01 +0000628 }
Denis Vlasenko621204b2006-10-27 09:03:24 +0000629
630 if (width) {
631 if (!win.ws_col) {
632 char *s = getenv("COLUMNS");
633 if (s) win.ws_col = atoi(s);
634 }
635 if (win.ws_col <= 1 || win.ws_col >= 30000)
636 win.ws_col = 80;
637 *width = (int) win.ws_col;
Rob Landleyfbdf1212006-09-20 22:06:01 +0000638 }
Rob Landleyfbdf1212006-09-20 22:06:01 +0000639
640 return ret;
641}