blob: 445e077170e162d6bfcc64a01a211c800d77414d [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 Vlasenkod37f2222007-08-19 13:42:08 +0000164 return fcntl(fd, F_SETFL, fcntl(fd,F_GETFL) | O_NONBLOCK);
Denis Vlasenko75f8d082006-11-22 15:54:52 +0000165}
166
Denis Vlasenko96e1b382007-09-30 23:50:48 +0000167int close_on_exec_on(int fd)
168{
Denis Vlasenko6b404432008-01-07 16:13:14 +0000169 return fcntl(fd, F_SETFD, FD_CLOEXEC);
Denis Vlasenko96e1b382007-09-30 23:50:48 +0000170}
171
Denis Vlasenkoa5b3e762006-12-24 07:15:50 +0000172int ndelay_off(int fd)
173{
Denis Vlasenkod37f2222007-08-19 13:42:08 +0000174 return fcntl(fd, F_SETFL, fcntl(fd,F_GETFL) & ~O_NONBLOCK);
Denis Vlasenkoa5b3e762006-12-24 07:15:50 +0000175}
176
Denis Vlasenkoa27a11b2007-08-18 14:16:39 +0000177void xdup2(int from, int to)
178{
179 if (dup2(from, to) != to)
180 bb_perror_msg_and_die("can't duplicate file descriptor");
181}
182
Denis Vlasenkocad04ef2007-03-25 23:21:05 +0000183// "Renumber" opened fd
184void xmove_fd(int from, int to)
185{
186 if (from == to)
187 return;
Denis Vlasenkoa27a11b2007-08-18 14:16:39 +0000188 xdup2(from, to);
Denis Vlasenkocad04ef2007-03-25 23:21:05 +0000189 close(from);
190}
191
Rob Landleyda9d1d02006-09-14 19:52:07 +0000192// Die with an error message if we can't write the entire buffer.
Denis Vlasenko2d27e4c2006-11-25 23:50:28 +0000193void xwrite(int fd, const void *buf, size_t count)
Rob Landley53437472006-07-16 08:14:35 +0000194{
Denis Vlasenko88ca0672006-10-12 22:44:13 +0000195 if (count) {
196 ssize_t size = full_write(fd, buf, count);
197 if (size != count)
Denis Vlasenko1db39b22006-10-11 20:59:02 +0000198 bb_error_msg_and_die("short write");
Rob Landley53437472006-07-16 08:14:35 +0000199 }
200}
Rob Landley53437472006-07-16 08:14:35 +0000201
Rob Landleyda9d1d02006-09-14 19:52:07 +0000202// Die with an error message if we can't lseek to the right spot.
Denis Vlasenkoea620772006-10-14 02:23:43 +0000203off_t xlseek(int fd, off_t offset, int whence)
Rob Landley53437472006-07-16 08:14:35 +0000204{
Denis Vlasenkoea620772006-10-14 02:23:43 +0000205 off_t off = lseek(fd, offset, whence);
Denis Vlasenkoc6ce8732006-11-29 18:15:52 +0000206 if (off == (off_t)-1) {
207 if (whence == SEEK_SET)
208 bb_perror_msg_and_die("lseek(%"OFF_FMT"u)", offset);
Denis Vlasenkoea620772006-10-14 02:23:43 +0000209 bb_perror_msg_and_die("lseek");
Denis Vlasenkoc6ce8732006-11-29 18:15:52 +0000210 }
Denis Vlasenkoea620772006-10-14 02:23:43 +0000211 return off;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000212}
213
Denis Vlasenkocf749bc2006-11-26 15:45:17 +0000214// Die with supplied filename if this FILE * has ferror set.
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000215void die_if_ferror(FILE *fp, const char *fn)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000216{
217 if (ferror(fp)) {
Denis Vlasenko5a6aedd2007-05-26 16:44:20 +0000218 /* ferror doesn't set useful errno */
Denis Vlasenko2d27e4c2006-11-25 23:50:28 +0000219 bb_error_msg_and_die("%s: I/O error", fn);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000220 }
221}
Manuel Novoa III cad53642003-03-19 09:13:01 +0000222
Rob Landleyda9d1d02006-09-14 19:52:07 +0000223// Die with an error message if stdout has ferror set.
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000224void die_if_ferror_stdout(void)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000225{
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000226 die_if_ferror(stdout, bb_msg_standard_output);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000227}
Manuel Novoa III cad53642003-03-19 09:13:01 +0000228
Rob Landleyda9d1d02006-09-14 19:52:07 +0000229// Die with an error message if we have trouble flushing stdout.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000230void xfflush_stdout(void)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000231{
232 if (fflush(stdout)) {
233 bb_perror_msg_and_die(bb_msg_standard_output);
234 }
235}
Rob Landley399d2b52006-05-25 23:02:40 +0000236
Denis Vlasenko2856dab2007-04-01 01:18:20 +0000237void sig_block(int sig)
238{
239 sigset_t ss;
240 sigemptyset(&ss);
241 sigaddset(&ss, sig);
242 sigprocmask(SIG_BLOCK, &ss, NULL);
243}
244
245void sig_unblock(int sig)
246{
247 sigset_t ss;
248 sigemptyset(&ss);
249 sigaddset(&ss, sig);
250 sigprocmask(SIG_UNBLOCK, &ss, NULL);
251}
252
253#if 0
254void sig_blocknone(void)
255{
256 sigset_t ss;
257 sigemptyset(&ss);
258 sigprocmask(SIG_SETMASK, &ss, NULL);
259}
260#endif
261
262void sig_catch(int sig, void (*f)(int))
263{
264 struct sigaction sa;
265 sa.sa_handler = f;
266 sa.sa_flags = 0;
267 sigemptyset(&sa.sa_mask);
268 sigaction(sig, &sa, NULL);
269}
270
271void sig_pause(void)
272{
273 sigset_t ss;
274 sigemptyset(&ss);
275 sigsuspend(&ss);
276}
277
278
Denis Vlasenkofe544582006-10-03 15:57:40 +0000279void xsetenv(const char *key, const char *value)
280{
Denis Vlasenko1db39b22006-10-11 20:59:02 +0000281 if (setenv(key, value, 1))
Denis Vlasenkofe544582006-10-03 15:57:40 +0000282 bb_error_msg_and_die(bb_msg_memory_exhausted);
283}
Denis Vlasenkofe544582006-10-03 15:57:40 +0000284
Denis Vlasenko56ea65c2008-01-06 03:26:53 +0000285/* Converts unsigned long long value into compact 4-char
286 * representation. Examples: "1234", "1.2k", " 27M", "123T"
287 * String is not terminated (buf[4] is untouched) */
288void smart_ulltoa4(unsigned long long ul, char buf[5], const char *scale)
Denis Vlasenkoaae03112006-11-05 00:44:39 +0000289{
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000290 const char *fmt;
Denis Vlasenkoaae03112006-11-05 00:44:39 +0000291 char c;
Denis Vlasenkob308d812007-08-28 19:35:34 +0000292 unsigned v, u, idx = 0;
293
294 if (ul > 9999) { // do not scale if 9999 or less
295 ul *= 10;
296 do {
Denis Vlasenkoaae03112006-11-05 00:44:39 +0000297 ul /= 1024;
298 idx++;
Denis Vlasenkob308d812007-08-28 19:35:34 +0000299 } while (ul >= 10000);
Denis Vlasenkoaae03112006-11-05 00:44:39 +0000300 }
301 v = ul; // ullong divisions are expensive, avoid them
302
303 fmt = " 123456789";
Denis Vlasenkob308d812007-08-28 19:35:34 +0000304 u = v / 10;
305 v = v % 10;
306 if (!idx) {
307 // 9999 or less: use "1234" format
308 // u is value/10, v is last digit
309 c = buf[0] = " 123456789"[u/100];
Denis Vlasenko1b6fa4c2007-03-24 12:08:36 +0000310 if (c != ' ') fmt = "0123456789";
Denis Vlasenkob308d812007-08-28 19:35:34 +0000311 c = buf[1] = fmt[u/10%10];
Denis Vlasenko1b6fa4c2007-03-24 12:08:36 +0000312 if (c != ' ') fmt = "0123456789";
Denis Vlasenkob308d812007-08-28 19:35:34 +0000313 buf[2] = fmt[u%10];
314 buf[3] = "0123456789"[v];
Denis Vlasenkoaae03112006-11-05 00:44:39 +0000315 } else {
Denis Vlasenkob308d812007-08-28 19:35:34 +0000316 // u is value, v is 1/10ths (allows for 9.2M format)
317 if (u >= 10) {
318 // value is >= 10: use "123M', " 12M" formats
319 c = buf[0] = " 123456789"[u/100];
Denis Vlasenko1b6fa4c2007-03-24 12:08:36 +0000320 if (c != ' ') fmt = "0123456789";
Denis Vlasenkob308d812007-08-28 19:35:34 +0000321 v = u % 10;
322 u = u / 10;
323 buf[1] = fmt[u%10];
324 } else {
325 // value is < 10: use "9.2M" format
326 buf[0] = "0123456789"[u];
Denis Vlasenkoaae03112006-11-05 00:44:39 +0000327 buf[1] = '.';
Denis Vlasenkoaae03112006-11-05 00:44:39 +0000328 }
Denis Vlasenkob308d812007-08-28 19:35:34 +0000329 buf[2] = "0123456789"[v];
Denis Vlasenko56ea65c2008-01-06 03:26:53 +0000330 buf[3] = scale[idx]; /* typically scale = " kmgt..." */
Denis Vlasenkoaae03112006-11-05 00:44:39 +0000331 }
Denis Vlasenkoaae03112006-11-05 00:44:39 +0000332}
333
Denis Vlasenko56ea65c2008-01-06 03:26:53 +0000334/* Converts unsigned long long value into compact 5-char representation.
335 * String is not terminated (buf[5] is untouched) */
336void smart_ulltoa5(unsigned long long ul, char buf[6], const char *scale)
337{
338 const char *fmt;
339 char c;
340 unsigned v, u, idx = 0;
341
342 if (ul > 99999) { // do not scale if 99999 or less
343 ul *= 10;
344 do {
345 ul /= 1024;
346 idx++;
347 } while (ul >= 100000);
348 }
349 v = ul; // ullong divisions are expensive, avoid them
350
351 fmt = " 123456789";
352 u = v / 10;
353 v = v % 10;
354 if (!idx) {
355 // 99999 or less: use "12345" format
356 // u is value/10, v is last digit
357 c = buf[0] = " 123456789"[u/1000];
358 if (c != ' ') fmt = "0123456789";
359 c = buf[1] = fmt[u/100%10];
360 if (c != ' ') fmt = "0123456789";
361 c = buf[2] = fmt[u/10%10];
362 if (c != ' ') fmt = "0123456789";
363 buf[3] = fmt[u%10];
364 buf[4] = "0123456789"[v];
365 } else {
366 // value has been scaled into 0..9999.9 range
367 // u is value, v is 1/10ths (allows for 92.1M format)
368 if (u >= 100) {
369 // value is >= 100: use "1234M', " 123M" formats
370 c = buf[0] = " 123456789"[u/1000];
371 if (c != ' ') fmt = "0123456789";
372 c = buf[1] = fmt[u/100%10];
373 if (c != ' ') fmt = "0123456789";
374 v = u % 10;
375 u = u / 10;
376 buf[2] = fmt[u%10];
377 } else {
378 // value is < 100: use "92.1M" format
379 c = buf[0] = " 123456789"[u/10];
380 if (c != ' ') fmt = "0123456789";
381 buf[1] = fmt[u%10];
382 buf[2] = '.';
383 }
384 buf[3] = "0123456789"[v];
385 buf[4] = scale[idx]; /* typically scale = " kmgt..." */
386 }
387}
388
389
Denis Vlasenko450196c2007-03-28 21:57:12 +0000390// Convert unsigned integer to ascii, writing into supplied buffer.
391// A truncated result contains the first few digits of the result ala strncpy.
392// Returns a pointer past last generated digit, does _not_ store NUL.
Denis Vlasenkoaae03112006-11-05 00:44:39 +0000393void BUG_sizeof_unsigned_not_4(void);
Denis Vlasenko10457b92007-03-27 22:01:31 +0000394char *utoa_to_buf(unsigned n, char *buf, unsigned buflen)
Rob Landley5b88a382006-07-10 07:41:34 +0000395{
Denis Vlasenkoaae03112006-11-05 00:44:39 +0000396 unsigned i, out, res;
397 if (sizeof(unsigned) != 4)
398 BUG_sizeof_unsigned_not_4();
Rob Landley22d39582006-07-11 00:44:36 +0000399 if (buflen) {
Denis Vlasenkoaae03112006-11-05 00:44:39 +0000400 out = 0;
401 for (i = 1000000000; i; i /= 10) {
402 res = n / i;
403 if (res || out || i == 1) {
404 if (!--buflen) break;
Rob Landley22d39582006-07-11 00:44:36 +0000405 out++;
406 n -= res*i;
407 *buf++ = '0' + res;
408 }
Rob Landley5b88a382006-07-10 07:41:34 +0000409 }
410 }
Denis Vlasenko10457b92007-03-27 22:01:31 +0000411 return buf;
Rob Landley5b88a382006-07-10 07:41:34 +0000412}
413
Rob Landleyda9d1d02006-09-14 19:52:07 +0000414// Convert signed integer to ascii, like utoa_to_buf()
Denis Vlasenko10457b92007-03-27 22:01:31 +0000415char *itoa_to_buf(int n, char *buf, unsigned buflen)
Rob Landley5b88a382006-07-10 07:41:34 +0000416{
Rob Landley22d39582006-07-11 00:44:36 +0000417 if (buflen && n<0) {
Rob Landley5b88a382006-07-10 07:41:34 +0000418 n = -n;
419 *buf++ = '-';
Rob Landley22d39582006-07-11 00:44:36 +0000420 buflen--;
Rob Landley5b88a382006-07-10 07:41:34 +0000421 }
Denis Vlasenko10457b92007-03-27 22:01:31 +0000422 return utoa_to_buf((unsigned)n, buf, buflen);
Rob Landley5b88a382006-07-10 07:41:34 +0000423}
424
Rob Landleyda9d1d02006-09-14 19:52:07 +0000425// The following two functions use a static buffer, so calling either one a
426// second time will overwrite previous results.
427//
428// The largest 32 bit integer is -2 billion plus null terminator, or 12 bytes.
429// Int should always be 32 bits on any remotely Unix-like system, see
430// http://www.unix.org/whitepapers/64bit.html for the reasons why.
431
Rob Landley23b61be2006-08-04 20:20:03 +0000432static char local_buf[12];
433
Rob Landleyda9d1d02006-09-14 19:52:07 +0000434// Convert unsigned integer to ascii using a static buffer (returned).
Rob Landley23b61be2006-08-04 20:20:03 +0000435char *utoa(unsigned n)
436{
Denis Vlasenko10457b92007-03-27 22:01:31 +0000437 *(utoa_to_buf(n, local_buf, sizeof(local_buf))) = '\0';
Rob Landley23b61be2006-08-04 20:20:03 +0000438
439 return local_buf;
440}
441
Rob Landleyda9d1d02006-09-14 19:52:07 +0000442// Convert signed integer to ascii using a static buffer (returned).
Rob Landley5b88a382006-07-10 07:41:34 +0000443char *itoa(int n)
444{
Denis Vlasenko10457b92007-03-27 22:01:31 +0000445 *(itoa_to_buf(n, local_buf, sizeof(local_buf))) = '\0';
Rob Landley5b88a382006-07-10 07:41:34 +0000446
447 return local_buf;
448}
Rob Landleydf822f22006-07-15 23:00:46 +0000449
Denis Vlasenko3a34d0c2007-01-12 22:10:34 +0000450// Emit a string of hex representation of bytes
451char *bin2hex(char *p, const char *cp, int count)
452{
453 while (count) {
454 unsigned char c = *cp++;
455 /* put lowercase hex digits */
Denis Vlasenko98c0bba2007-01-26 23:31:05 +0000456 *p++ = 0x20 | bb_hexdigits_upcase[c >> 4];
457 *p++ = 0x20 | bb_hexdigits_upcase[c & 0xf];
Denis Vlasenko3a34d0c2007-01-12 22:10:34 +0000458 count--;
459 }
460 return p;
461}
462
Rob Landleyda9d1d02006-09-14 19:52:07 +0000463// Die with an error message if we can't set gid. (Because resource limits may
464// limit this user to a given number of processes, and if that fills up the
465// setgid() will fail and we'll _still_be_root_, which is bad.)
Rob Landleydf822f22006-07-15 23:00:46 +0000466void xsetgid(gid_t gid)
467{
Denis Vlasenko3bc18252007-05-02 23:01:32 +0000468 if (setgid(gid)) bb_perror_msg_and_die("setgid");
Rob Landleydf822f22006-07-15 23:00:46 +0000469}
470
Denis Vlasenkoe1a0d482006-10-20 13:28:22 +0000471// Die with an error message if we can't set uid. (See xsetgid() for why.)
Rob Landleydf822f22006-07-15 23:00:46 +0000472void xsetuid(uid_t uid)
473{
Denis Vlasenko3bc18252007-05-02 23:01:32 +0000474 if (setuid(uid)) bb_perror_msg_and_die("setuid");
Rob Landleydf822f22006-07-15 23:00:46 +0000475}
Rob Landley53437472006-07-16 08:14:35 +0000476
Rob Landleyda9d1d02006-09-14 19:52:07 +0000477// Return how long the file at fd is, if there's any way to determine it.
Denis Vlasenkob5c60fc2008-01-27 23:41:34 +0000478#ifdef UNUSED
Rob Landley53437472006-07-16 08:14:35 +0000479off_t fdlength(int fd)
480{
481 off_t bottom = 0, top = 0, pos;
482 long size;
483
Rob Landleyda9d1d02006-09-14 19:52:07 +0000484 // If the ioctl works for this, return it.
Rob Landley53437472006-07-16 08:14:35 +0000485
486 if (ioctl(fd, BLKGETSIZE, &size) >= 0) return size*512;
487
Denis Vlasenko621204b2006-10-27 09:03:24 +0000488 // FIXME: explain why lseek(SEEK_END) is not used here!
489
Rob Landleyda9d1d02006-09-14 19:52:07 +0000490 // If not, do a binary search for the last location we can read. (Some
491 // block devices don't do BLKGETSIZE right.)
Rob Landley53437472006-07-16 08:14:35 +0000492
493 do {
494 char temp;
495
Denis Vlasenkod25a2642006-09-05 09:36:19 +0000496 pos = bottom + (top - bottom) / 2;
Rob Landley53437472006-07-16 08:14:35 +0000497
Rob Landleyda9d1d02006-09-14 19:52:07 +0000498 // If we can read from the current location, it's bigger.
Rob Landley53437472006-07-16 08:14:35 +0000499
Denis Vlasenkoea620772006-10-14 02:23:43 +0000500 if (lseek(fd, pos, SEEK_SET)>=0 && safe_read(fd, &temp, 1)==1) {
Rob Landley53437472006-07-16 08:14:35 +0000501 if (bottom == top) bottom = top = (top+1) * 2;
502 else bottom = pos;
503
Rob Landleyda9d1d02006-09-14 19:52:07 +0000504 // If we can't, it's smaller.
Rob Landley53437472006-07-16 08:14:35 +0000505
506 } else {
507 if (bottom == top) {
508 if (!top) return 0;
509 bottom = top/2;
510 }
511 else top = pos;
512 }
513 } while (bottom + 1 != top);
514
515 return pos + 1;
516}
Denis Vlasenkob5c60fc2008-01-27 23:41:34 +0000517#endif
Rob Landleyd921b2e2006-08-03 15:41:12 +0000518
Denis Vlasenko4daad902007-09-27 10:20:47 +0000519int bb_putchar(int ch)
520{
521 /* time.c needs putc(ch, stdout), not putchar(ch).
522 * it does "stdout = stderr;", but then glibc's putchar()
523 * doesn't work as expected. bad glibc, bad */
524 return putc(ch, stdout);
525}
526
Rob Landleyda9d1d02006-09-14 19:52:07 +0000527// Die with an error message if we can't malloc() enough space and do an
528// sprintf() into that space.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000529char *xasprintf(const char *format, ...)
530{
531 va_list p;
532 int r;
533 char *string_ptr;
534
535#if 1
536 // GNU extension
537 va_start(p, format);
538 r = vasprintf(&string_ptr, format, p);
539 va_end(p);
540#else
541 // Bloat for systems that haven't got the GNU extension.
542 va_start(p, format);
543 r = vsnprintf(NULL, 0, format, p);
544 va_end(p);
545 string_ptr = xmalloc(r+1);
546 va_start(p, format);
547 r = vsnprintf(string_ptr, r+1, format, p);
548 va_end(p);
549#endif
550
Denis Vlasenkob308d812007-08-28 19:35:34 +0000551 if (r < 0)
552 bb_error_msg_and_die(bb_msg_memory_exhausted);
Rob Landleyd921b2e2006-08-03 15:41:12 +0000553 return string_ptr;
554}
Rob Landleyd921b2e2006-08-03 15:41:12 +0000555
Denis Vlasenko7cfecc42006-12-18 22:32:45 +0000556#if 0 /* If we will ever meet a libc which hasn't [f]dprintf... */
557int fdprintf(int fd, const char *format, ...)
Denis Vlasenkoc8e6e352006-12-18 22:10:24 +0000558{
559 va_list p;
560 int r;
561 char *string_ptr;
562
563#if 1
564 // GNU extension
565 va_start(p, format);
566 r = vasprintf(&string_ptr, format, p);
567 va_end(p);
568#else
569 // Bloat for systems that haven't got the GNU extension.
570 va_start(p, format);
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000571 r = vsnprintf(NULL, 0, format, p) + 1;
Denis Vlasenkoc8e6e352006-12-18 22:10:24 +0000572 va_end(p);
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000573 string_ptr = malloc(r);
574 if (string_ptr) {
575 va_start(p, format);
576 r = vsnprintf(string_ptr, r, format, p);
577 va_end(p);
578 }
Denis Vlasenkoc8e6e352006-12-18 22:10:24 +0000579#endif
580
581 if (r >= 0) {
582 full_write(fd, string_ptr, r);
583 free(string_ptr);
584 }
585 return r;
586}
587#endif
588
Rob Landleyda9d1d02006-09-14 19:52:07 +0000589// Die with an error message if we can't copy an entire FILE * to stdout, then
590// close that file.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000591void xprint_and_close_file(FILE *file)
592{
Denis Vlasenkoddec5af2006-10-26 23:25:17 +0000593 fflush(stdout);
Rob Landleyd921b2e2006-08-03 15:41:12 +0000594 // copyfd outputs error messages for us.
Denis Vlasenkoa9801652006-09-07 16:20:03 +0000595 if (bb_copyfd_eof(fileno(file), 1) == -1)
Denis Vlasenko335b63d2007-04-10 21:38:30 +0000596 xfunc_die();
Rob Landleyd921b2e2006-08-03 15:41:12 +0000597
598 fclose(file);
599}
Rob Landleyd921b2e2006-08-03 15:41:12 +0000600
Rob Landleyda9d1d02006-09-14 19:52:07 +0000601// Die if we can't chdir to a new path.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000602void xchdir(const char *path)
603{
604 if (chdir(path))
605 bb_perror_msg_and_die("chdir(%s)", path);
606}
Rob Landleyd921b2e2006-08-03 15:41:12 +0000607
Rob Landleyda9d1d02006-09-14 19:52:07 +0000608// Print a warning message if opendir() fails, but don't die.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000609DIR *warn_opendir(const char *path)
610{
611 DIR *dp;
612
Denis Vlasenko1b6fa4c2007-03-24 12:08:36 +0000613 dp = opendir(path);
614 if (!dp)
Denis Vlasenko5a6aedd2007-05-26 16:44:20 +0000615 bb_perror_msg("can't open '%s'", path);
Rob Landleyd921b2e2006-08-03 15:41:12 +0000616 return dp;
617}
Rob Landleyd921b2e2006-08-03 15:41:12 +0000618
Rob Landleyda9d1d02006-09-14 19:52:07 +0000619// Die with an error message if opendir() fails.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000620DIR *xopendir(const char *path)
621{
622 DIR *dp;
623
Denis Vlasenko1b6fa4c2007-03-24 12:08:36 +0000624 dp = opendir(path);
625 if (!dp)
Denis Vlasenko5a6aedd2007-05-26 16:44:20 +0000626 bb_perror_msg_and_die("can't open '%s'", path);
Rob Landleyd921b2e2006-08-03 15:41:12 +0000627 return dp;
628}
Rob Landleyd921b2e2006-08-03 15:41:12 +0000629
Rob Landleyda9d1d02006-09-14 19:52:07 +0000630// Die with an error message if we can't open a new socket.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000631int xsocket(int domain, int type, int protocol)
632{
633 int r = socket(domain, type, protocol);
634
Denis Vlasenko1d6a4ae2007-04-13 21:26:20 +0000635 if (r < 0) {
636 /* Hijack vaguely related config option */
637#if ENABLE_VERBOSE_RESOLUTION_ERRORS
638 const char *s = "INET";
639 if (domain == AF_PACKET) s = "PACKET";
640 if (domain == AF_NETLINK) s = "NETLINK";
641USE_FEATURE_IPV6(if (domain == AF_INET6) s = "INET6";)
642 bb_perror_msg_and_die("socket(AF_%s)", s);
643#else
644 bb_perror_msg_and_die("socket");
645#endif
646 }
Rob Landleyd921b2e2006-08-03 15:41:12 +0000647
648 return r;
649}
Rob Landleyd921b2e2006-08-03 15:41:12 +0000650
Rob Landleyda9d1d02006-09-14 19:52:07 +0000651// Die with an error message if we can't bind a socket to an address.
Rob Landley23b61be2006-08-04 20:20:03 +0000652void xbind(int sockfd, struct sockaddr *my_addr, socklen_t addrlen)
653{
654 if (bind(sockfd, my_addr, addrlen)) bb_perror_msg_and_die("bind");
655}
Rob Landley23b61be2006-08-04 20:20:03 +0000656
Rob Landleyda9d1d02006-09-14 19:52:07 +0000657// Die with an error message if we can't listen for connections on a socket.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000658void xlisten(int s, int backlog)
659{
660 if (listen(s, backlog)) bb_perror_msg_and_die("listen");
661}
Bernhard Reutner-Fischer57b56672006-09-11 09:18:09 +0000662
Denis Vlasenko5a6aedd2007-05-26 16:44:20 +0000663/* Die with an error message if sendto failed.
664 * Return bytes sent otherwise */
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000665ssize_t xsendto(int s, const void *buf, size_t len, const struct sockaddr *to,
666 socklen_t tolen)
667{
668 ssize_t ret = sendto(s, buf, len, 0, to, tolen);
669 if (ret < 0) {
670 if (ENABLE_FEATURE_CLEAN_UP)
671 close(s);
672 bb_perror_msg_and_die("sendto");
673 }
674 return ret;
675}
676
Rob Landleyda9d1d02006-09-14 19:52:07 +0000677// xstat() - a stat() which dies on failure with meaningful error message
Denis Vlasenko434ad542007-01-27 13:45:17 +0000678void xstat(const char *name, struct stat *stat_buf)
Bernhard Reutner-Fischer57b56672006-09-11 09:18:09 +0000679{
Denis Vlasenko9213a9e2006-09-17 16:28:10 +0000680 if (stat(name, stat_buf))
Denis Vlasenkob6332242006-10-03 19:57:50 +0000681 bb_perror_msg_and_die("can't stat '%s'", name);
Bernhard Reutner-Fischer57b56672006-09-11 09:18:09 +0000682}
Bernhard Reutner-Fischer57b56672006-09-11 09:18:09 +0000683
Denis Vlasenkod46d3c22007-02-06 19:28:50 +0000684// selinux_or_die() - die if SELinux is disabled.
685void selinux_or_die(void)
686{
687#if ENABLE_SELINUX
688 int rc = is_selinux_enabled();
689 if (rc == 0) {
690 bb_error_msg_and_die("SELinux is disabled");
691 } else if (rc < 0) {
692 bb_error_msg_and_die("is_selinux_enabled() failed");
693 }
694#else
695 bb_error_msg_and_die("SELinux support is disabled");
696#endif
697}
698
Rob Landleyfbdf1212006-09-20 22:06:01 +0000699/* It is perfectly ok to pass in a NULL for either width or for
Denis Vlasenko621204b2006-10-27 09:03:24 +0000700 * height, in which case that value will not be set. */
Denis Vlasenkof893da82007-08-09 08:27:24 +0000701int get_terminal_width_height(int fd, int *width, int *height)
Rob Landleyfbdf1212006-09-20 22:06:01 +0000702{
703 struct winsize win = { 0, 0, 0, 0 };
704 int ret = ioctl(fd, TIOCGWINSZ, &win);
Denis Vlasenko621204b2006-10-27 09:03:24 +0000705
706 if (height) {
707 if (!win.ws_row) {
708 char *s = getenv("LINES");
709 if (s) win.ws_row = atoi(s);
710 }
711 if (win.ws_row <= 1 || win.ws_row >= 30000)
712 win.ws_row = 24;
713 *height = (int) win.ws_row;
Rob Landleyfbdf1212006-09-20 22:06:01 +0000714 }
Denis Vlasenko621204b2006-10-27 09:03:24 +0000715
716 if (width) {
717 if (!win.ws_col) {
718 char *s = getenv("COLUMNS");
719 if (s) win.ws_col = atoi(s);
720 }
721 if (win.ws_col <= 1 || win.ws_col >= 30000)
722 win.ws_col = 80;
723 *width = (int) win.ws_col;
Rob Landleyfbdf1212006-09-20 22:06:01 +0000724 }
Rob Landleyfbdf1212006-09-20 22:06:01 +0000725
726 return ret;
727}
Denis Vlasenkofb79a2e2007-07-14 22:07:14 +0000728
729void ioctl_or_perror_and_die(int fd, int request, void *argp, const char *fmt,...)
730{
731 va_list p;
732
733 if (ioctl(fd, request, argp) < 0) {
734 va_start(p, fmt);
Denis Vlasenkoab9c44b2007-08-15 20:07:53 +0000735 bb_verror_msg(fmt, p, strerror(errno));
Denis Vlasenkofb79a2e2007-07-14 22:07:14 +0000736 /* xfunc_die can actually longjmp, so be nice */
737 va_end(p);
738 xfunc_die();
739 }
740}
741
742int ioctl_or_perror(int fd, int request, void *argp, const char *fmt,...)
743{
744 va_list p;
745 int ret = ioctl(fd, request, argp);
746
747 if (ret < 0) {
748 va_start(p, fmt);
Denis Vlasenkoab9c44b2007-08-15 20:07:53 +0000749 bb_verror_msg(fmt, p, strerror(errno));
Denis Vlasenkofb79a2e2007-07-14 22:07:14 +0000750 va_end(p);
751 }
752 return ret;
753}
754
755#if ENABLE_IOCTL_HEX2STR_ERROR
756int bb_ioctl_or_warn(int fd, int request, void *argp, const char *ioctl_name)
757{
758 int ret;
Denis Vlasenko2f6ae432007-07-19 22:50:47 +0000759
Denis Vlasenkofb79a2e2007-07-14 22:07:14 +0000760 ret = ioctl(fd, request, argp);
761 if (ret < 0)
Denis Vlasenko0c97c9d2007-10-01 11:58:38 +0000762 bb_simple_perror_msg(ioctl_name);
Denis Vlasenkofb79a2e2007-07-14 22:07:14 +0000763 return ret;
764}
765void bb_xioctl(int fd, int request, void *argp, const char *ioctl_name)
766{
767 if (ioctl(fd, request, argp) < 0)
Denis Vlasenko0c97c9d2007-10-01 11:58:38 +0000768 bb_simple_perror_msg_and_die(ioctl_name);
Denis Vlasenkofb79a2e2007-07-14 22:07:14 +0000769}
770#else
771int bb_ioctl_or_warn(int fd, int request, void *argp)
772{
773 int ret;
Denis Vlasenko2f6ae432007-07-19 22:50:47 +0000774
Denis Vlasenkofb79a2e2007-07-14 22:07:14 +0000775 ret = ioctl(fd, request, argp);
776 if (ret < 0)
777 bb_perror_msg("ioctl %#x failed", request);
778 return ret;
779}
780void bb_xioctl(int fd, int request, void *argp)
781{
782 if (ioctl(fd, request, argp) < 0)
783 bb_perror_msg_and_die("ioctl %#x failed", request);
784}
785#endif