blob: 1dbd7521b91368d6d838d19980d2f24736b39f82 [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
60 t = strdup (s);
61
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{
Eric Andersenaad1a882001-03-16 22:47:14 +000072 char *t;
73
Rob Landley8bbdb872006-06-30 16:36:56 +000074 if (ENABLE_DEBUG && s == NULL)
Rob Landleyd921b2e2006-08-03 15:41:12 +000075 bb_error_msg_and_die("xstrndup bug");
Eric Andersenaad1a882001-03-16 22:47:14 +000076
Denis Vlasenkod6772502006-11-24 17:21:44 +000077 /* TODO: think about xstrndup("abc", 10000)!!! */
Eric Andersenaad1a882001-03-16 22:47:14 +000078 t = xmalloc(++n);
Eric Andersenc7bda1c2004-03-15 08:29:22 +000079
Eric Andersenaad1a882001-03-16 22:47:14 +000080 return safe_strncpy(t,s,n);
81}
82
Rob Landleyda9d1d02006-09-14 19:52:07 +000083// Die if we can't open a file and return a FILE * to it.
84// Notice we haven't got xfread(), This is for use with fscanf() and friends.
Rob Landleyd921b2e2006-08-03 15:41:12 +000085FILE *xfopen(const char *path, const char *mode)
Eric Andersenaad1a882001-03-16 22:47:14 +000086{
87 FILE *fp;
88 if ((fp = fopen(path, mode)) == NULL)
Manuel Novoa III cad53642003-03-19 09:13:01 +000089 bb_perror_msg_and_die("%s", path);
Eric Andersenaad1a882001-03-16 22:47:14 +000090 return fp;
91}
92
Rob Landleyda9d1d02006-09-14 19:52:07 +000093// Die if we can't open an existing file and return an fd.
Rob Landleyd921b2e2006-08-03 15:41:12 +000094int xopen(const char *pathname, int flags)
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000095{
Denis Vlasenkod25a2642006-09-05 09:36:19 +000096 if (ENABLE_DEBUG && (flags & O_CREAT))
Denis Vlasenko6d655be2006-09-06 19:02:46 +000097 bb_error_msg_and_die("xopen() with O_CREAT");
Rob Landley23b61be2006-08-04 20:20:03 +000098
Denis Vlasenkoea620772006-10-14 02:23:43 +000099 return xopen3(pathname, flags, 0666);
Bernhard Reutner-Fischerc2cb0f32006-04-13 12:45:04 +0000100}
Bernhard Reutner-Fischerc2cb0f32006-04-13 12:45:04 +0000101
Rob Landleyda9d1d02006-09-14 19:52:07 +0000102// Die if we can't open a new file and return an fd.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000103int xopen3(const char *pathname, int flags, int mode)
Bernhard Reutner-Fischerc2cb0f32006-04-13 12:45:04 +0000104{
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000105 int ret;
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000106
Bernhard Reutner-Fischerc2cb0f32006-04-13 12:45:04 +0000107 ret = open(pathname, flags, mode);
108 if (ret < 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000109 bb_perror_msg_and_die("%s", pathname);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000110 }
111 return ret;
112}
113
Denis Vlasenko75f8d082006-11-22 15:54:52 +0000114/*
115int ndelay_off(int fd)
116{
117 return fcntl(fd,F_SETFL,fcntl(fd,F_GETFL,0) & ~O_NONBLOCK);
118}
119*/
120// Turn on nonblocking I/O on a fd
121int ndelay_on(int fd)
122{
123 return fcntl(fd,F_SETFL,fcntl(fd,F_GETFL,0) | O_NONBLOCK);
124}
125
Rob Landleyda9d1d02006-09-14 19:52:07 +0000126// Die with an error message if we can't write the entire buffer.
Rob Landley53437472006-07-16 08:14:35 +0000127void xwrite(int fd, void *buf, size_t count)
128{
Denis Vlasenko88ca0672006-10-12 22:44:13 +0000129 if (count) {
130 ssize_t size = full_write(fd, buf, count);
131 if (size != count)
Denis Vlasenko1db39b22006-10-11 20:59:02 +0000132 bb_error_msg_and_die("short write");
Rob Landley53437472006-07-16 08:14:35 +0000133 }
134}
Rob Landley53437472006-07-16 08:14:35 +0000135
Rob Landleyda9d1d02006-09-14 19:52:07 +0000136// Die with an error message if we can't lseek to the right spot.
Denis Vlasenkoea620772006-10-14 02:23:43 +0000137off_t xlseek(int fd, off_t offset, int whence)
Rob Landley53437472006-07-16 08:14:35 +0000138{
Denis Vlasenkoea620772006-10-14 02:23:43 +0000139 off_t off = lseek(fd, offset, whence);
140 if (off == (off_t)-1)
141 bb_perror_msg_and_die("lseek");
142 return off;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000143}
144
Rob Landleyda9d1d02006-09-14 19:52:07 +0000145// Die with supplied error message if this FILE * has ferror set.
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000146void die_if_ferror(FILE *fp, const char *fn)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000147{
148 if (ferror(fp)) {
149 bb_error_msg_and_die("%s", fn);
150 }
151}
Manuel Novoa III cad53642003-03-19 09:13:01 +0000152
Rob Landleyda9d1d02006-09-14 19:52:07 +0000153// Die with an error message if stdout has ferror set.
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000154void die_if_ferror_stdout(void)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000155{
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000156 die_if_ferror(stdout, bb_msg_standard_output);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000157}
Manuel Novoa III cad53642003-03-19 09:13:01 +0000158
Rob Landleyda9d1d02006-09-14 19:52:07 +0000159// Die with an error message if we have trouble flushing stdout.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000160void xfflush_stdout(void)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000161{
162 if (fflush(stdout)) {
163 bb_perror_msg_and_die(bb_msg_standard_output);
164 }
165}
Rob Landley399d2b52006-05-25 23:02:40 +0000166
Rob Landleyda9d1d02006-09-14 19:52:07 +0000167// This does a fork/exec in one call, using vfork(). Return PID of new child,
168// -1 for failure. Runs argv[0], searching path if that has no / in it.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000169pid_t spawn(char **argv)
Rob Landley399d2b52006-05-25 23:02:40 +0000170{
171 static int failed;
172 pid_t pid;
Rob Landley519d7df2006-08-09 20:56:23 +0000173 void *app = ENABLE_FEATURE_SH_STANDALONE_SHELL ? find_applet_by_name(argv[0]) : 0;
Rob Landley399d2b52006-05-25 23:02:40 +0000174
Rob Landleyda9d1d02006-09-14 19:52:07 +0000175 // Be nice to nommu machines.
Rob Landley399d2b52006-05-25 23:02:40 +0000176 failed = 0;
177 pid = vfork();
178 if (pid < 0) return pid;
179 if (!pid) {
Rob Landleyc7ddefc2006-06-14 01:24:33 +0000180 execvp(app ? CONFIG_BUSYBOX_EXEC_PATH : *argv, argv);
Rob Landley399d2b52006-05-25 23:02:40 +0000181
Rob Landleyda9d1d02006-09-14 19:52:07 +0000182 // We're sharing a stack with blocked parent, let parent know we failed
183 // and then exit to unblock parent (but don't run atexit() stuff, which
184 // would screw up parent.)
Rob Landley399d2b52006-05-25 23:02:40 +0000185
186 failed = -1;
187 _exit(0);
188 }
189 return failed ? failed : pid;
190}
Rob Landley399d2b52006-05-25 23:02:40 +0000191
Rob Landleyda9d1d02006-09-14 19:52:07 +0000192// Die with an error message if we can't spawn a child process.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000193pid_t xspawn(char **argv)
Rob Landley399d2b52006-05-25 23:02:40 +0000194{
Rob Landleyd921b2e2006-08-03 15:41:12 +0000195 pid_t pid = spawn(argv);
Rob Landley399d2b52006-05-25 23:02:40 +0000196 if (pid < 0) bb_perror_msg_and_die("%s", *argv);
197 return pid;
198}
Rob Landleyc7ddefc2006-06-14 01:24:33 +0000199
Rob Landleyda9d1d02006-09-14 19:52:07 +0000200// Wait for the specified child PID to exit, returning child's error return.
Rob Landleyc7ddefc2006-06-14 01:24:33 +0000201int wait4pid(int pid)
202{
203 int status;
204
205 if (pid == -1 || waitpid(pid, &status, 0) == -1) return -1;
206 if (WIFEXITED(status)) return WEXITSTATUS(status);
207 if (WIFSIGNALED(status)) return WTERMSIG(status);
208 return 0;
209}
Rob Landley5b88a382006-07-10 07:41:34 +0000210
Denis Vlasenkofe544582006-10-03 15:57:40 +0000211void xsetenv(const char *key, const char *value)
212{
Denis Vlasenko1db39b22006-10-11 20:59:02 +0000213 if (setenv(key, value, 1))
Denis Vlasenkofe544582006-10-03 15:57:40 +0000214 bb_error_msg_and_die(bb_msg_memory_exhausted);
215}
Denis Vlasenkofe544582006-10-03 15:57:40 +0000216
Denis Vlasenkoaae03112006-11-05 00:44:39 +0000217
218// Converts unsigned long long value into compact 4-char
219// representation. Examples: "1234", "1.2k", " 27M", "123T"
220// Fifth char is always '\0'
221void smart_ulltoa5(unsigned long long ul, char buf[5])
222{
223 char *fmt;
224 char c;
225 unsigned v,idx = 0;
226 ul *= 10;
227 if (ul > 9999*10) { // do not scale if 9999 or less
228 while (ul >= 10000) {
229 ul /= 1024;
230 idx++;
231 }
232 }
233 v = ul; // ullong divisions are expensive, avoid them
234
235 fmt = " 123456789";
236 if (!idx) { // 9999 or less: use 1234 format
237 c = buf[0] = " 123456789"[v/10000];
238 if (c!=' ') fmt = "0123456789";
239 c = buf[1] = fmt[v/1000%10];
240 if (c!=' ') fmt = "0123456789";
241 buf[2] = fmt[v/100%10];
242 buf[3] = "0123456789"[v/10%10];
243 } else {
244 if (v>=10*10) { // scaled value is >=10: use 123M format
245 c = buf[0] = " 123456789"[v/1000];
246 if (c!=' ') fmt = "0123456789";
247 buf[1] = fmt[v/100%10];
248 buf[2] = "0123456789"[v/10%10];
249 } else { // scaled value is <10: use 1.2M format
250 buf[0] = "0123456789"[v/10];
251 buf[1] = '.';
252 buf[2] = "0123456789"[v%10];
253 }
254 // see http://en.wikipedia.org/wiki/Tera
255 buf[3] = " kMGTPEZY"[idx];
256 }
257 buf[4] = '\0';
258}
259
260
Rob Landleyda9d1d02006-09-14 19:52:07 +0000261// Convert unsigned integer to ascii, writing into supplied buffer. A
262// truncated result is always null terminated (unless buflen is 0), and
263// contains the first few digits of the result ala strncpy.
Denis Vlasenkoaae03112006-11-05 00:44:39 +0000264void BUG_sizeof_unsigned_not_4(void);
Rob Landley22d39582006-07-11 00:44:36 +0000265void utoa_to_buf(unsigned n, char *buf, unsigned buflen)
Rob Landley5b88a382006-07-10 07:41:34 +0000266{
Denis Vlasenkoaae03112006-11-05 00:44:39 +0000267 unsigned i, out, res;
268 if (sizeof(unsigned) != 4)
269 BUG_sizeof_unsigned_not_4();
Rob Landley22d39582006-07-11 00:44:36 +0000270 if (buflen) {
Denis Vlasenkoaae03112006-11-05 00:44:39 +0000271 out = 0;
272 for (i = 1000000000; i; i /= 10) {
273 res = n / i;
274 if (res || out || i == 1) {
275 if (!--buflen) break;
Rob Landley22d39582006-07-11 00:44:36 +0000276 out++;
277 n -= res*i;
278 *buf++ = '0' + res;
279 }
Rob Landley5b88a382006-07-10 07:41:34 +0000280 }
Denis Vlasenkoaae03112006-11-05 00:44:39 +0000281 *buf = '\0';
Rob Landley5b88a382006-07-10 07:41:34 +0000282 }
Rob Landley5b88a382006-07-10 07:41:34 +0000283}
284
Rob Landleyda9d1d02006-09-14 19:52:07 +0000285// Convert signed integer to ascii, like utoa_to_buf()
Rob Landley22d39582006-07-11 00:44:36 +0000286void itoa_to_buf(int n, char *buf, unsigned buflen)
Rob Landley5b88a382006-07-10 07:41:34 +0000287{
Rob Landley22d39582006-07-11 00:44:36 +0000288 if (buflen && n<0) {
Rob Landley5b88a382006-07-10 07:41:34 +0000289 n = -n;
290 *buf++ = '-';
Rob Landley22d39582006-07-11 00:44:36 +0000291 buflen--;
Rob Landley5b88a382006-07-10 07:41:34 +0000292 }
293 utoa_to_buf((unsigned)n, buf, buflen);
294}
295
Rob Landleyda9d1d02006-09-14 19:52:07 +0000296// The following two functions use a static buffer, so calling either one a
297// second time will overwrite previous results.
298//
299// The largest 32 bit integer is -2 billion plus null terminator, or 12 bytes.
300// Int should always be 32 bits on any remotely Unix-like system, see
301// http://www.unix.org/whitepapers/64bit.html for the reasons why.
302
Rob Landley23b61be2006-08-04 20:20:03 +0000303static char local_buf[12];
304
Rob Landleyda9d1d02006-09-14 19:52:07 +0000305// Convert unsigned integer to ascii using a static buffer (returned).
Rob Landley23b61be2006-08-04 20:20:03 +0000306char *utoa(unsigned n)
307{
308 utoa_to_buf(n, local_buf, sizeof(local_buf));
309
310 return local_buf;
311}
312
Rob Landleyda9d1d02006-09-14 19:52:07 +0000313// Convert signed integer to ascii using a static buffer (returned).
Rob Landley5b88a382006-07-10 07:41:34 +0000314char *itoa(int n)
315{
316 itoa_to_buf(n, local_buf, sizeof(local_buf));
317
318 return local_buf;
319}
Rob Landleydf822f22006-07-15 23:00:46 +0000320
Rob Landleyda9d1d02006-09-14 19:52:07 +0000321// Die with an error message if we can't set gid. (Because resource limits may
322// limit this user to a given number of processes, and if that fills up the
323// setgid() will fail and we'll _still_be_root_, which is bad.)
Rob Landleydf822f22006-07-15 23:00:46 +0000324void xsetgid(gid_t gid)
325{
326 if (setgid(gid)) bb_error_msg_and_die("setgid");
327}
328
Denis Vlasenkoe1a0d482006-10-20 13:28:22 +0000329// Die with an error message if we can't set uid. (See xsetgid() for why.)
Rob Landleydf822f22006-07-15 23:00:46 +0000330void xsetuid(uid_t uid)
331{
332 if (setuid(uid)) bb_error_msg_and_die("setuid");
333}
Rob Landley53437472006-07-16 08:14:35 +0000334
Rob Landleyda9d1d02006-09-14 19:52:07 +0000335// Return how long the file at fd is, if there's any way to determine it.
Rob Landley53437472006-07-16 08:14:35 +0000336off_t fdlength(int fd)
337{
338 off_t bottom = 0, top = 0, pos;
339 long size;
340
Rob Landleyda9d1d02006-09-14 19:52:07 +0000341 // If the ioctl works for this, return it.
Rob Landley53437472006-07-16 08:14:35 +0000342
343 if (ioctl(fd, BLKGETSIZE, &size) >= 0) return size*512;
344
Denis Vlasenko621204b2006-10-27 09:03:24 +0000345 // FIXME: explain why lseek(SEEK_END) is not used here!
346
Rob Landleyda9d1d02006-09-14 19:52:07 +0000347 // If not, do a binary search for the last location we can read. (Some
348 // block devices don't do BLKGETSIZE right.)
Rob Landley53437472006-07-16 08:14:35 +0000349
350 do {
351 char temp;
352
Denis Vlasenkod25a2642006-09-05 09:36:19 +0000353 pos = bottom + (top - bottom) / 2;
Rob Landley53437472006-07-16 08:14:35 +0000354
Rob Landleyda9d1d02006-09-14 19:52:07 +0000355 // If we can read from the current location, it's bigger.
Rob Landley53437472006-07-16 08:14:35 +0000356
Denis Vlasenkoea620772006-10-14 02:23:43 +0000357 if (lseek(fd, pos, SEEK_SET)>=0 && safe_read(fd, &temp, 1)==1) {
Rob Landley53437472006-07-16 08:14:35 +0000358 if (bottom == top) bottom = top = (top+1) * 2;
359 else bottom = pos;
360
Rob Landleyda9d1d02006-09-14 19:52:07 +0000361 // If we can't, it's smaller.
Rob Landley53437472006-07-16 08:14:35 +0000362
363 } else {
364 if (bottom == top) {
365 if (!top) return 0;
366 bottom = top/2;
367 }
368 else top = pos;
369 }
370 } while (bottom + 1 != top);
371
372 return pos + 1;
373}
Rob Landleyd921b2e2006-08-03 15:41:12 +0000374
Rob Landleyda9d1d02006-09-14 19:52:07 +0000375// Die with an error message if we can't malloc() enough space and do an
376// sprintf() into that space.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000377char *xasprintf(const char *format, ...)
378{
379 va_list p;
380 int r;
381 char *string_ptr;
382
383#if 1
384 // GNU extension
385 va_start(p, format);
386 r = vasprintf(&string_ptr, format, p);
387 va_end(p);
388#else
389 // Bloat for systems that haven't got the GNU extension.
390 va_start(p, format);
391 r = vsnprintf(NULL, 0, format, p);
392 va_end(p);
393 string_ptr = xmalloc(r+1);
394 va_start(p, format);
395 r = vsnprintf(string_ptr, r+1, format, p);
396 va_end(p);
397#endif
398
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000399 if (r < 0) bb_error_msg_and_die(bb_msg_memory_exhausted);
Rob Landleyd921b2e2006-08-03 15:41:12 +0000400 return string_ptr;
401}
Rob Landleyd921b2e2006-08-03 15:41:12 +0000402
Rob Landleyda9d1d02006-09-14 19:52:07 +0000403// Die with an error message if we can't copy an entire FILE * to stdout, then
404// close that file.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000405void xprint_and_close_file(FILE *file)
406{
Denis Vlasenkoddec5af2006-10-26 23:25:17 +0000407 fflush(stdout);
Rob Landleyd921b2e2006-08-03 15:41:12 +0000408 // copyfd outputs error messages for us.
Denis Vlasenkoa9801652006-09-07 16:20:03 +0000409 if (bb_copyfd_eof(fileno(file), 1) == -1)
Denis Vlasenko40920822006-10-03 20:28:06 +0000410 exit(xfunc_error_retval);
Rob Landleyd921b2e2006-08-03 15:41:12 +0000411
412 fclose(file);
413}
Rob Landleyd921b2e2006-08-03 15:41:12 +0000414
Rob Landleyda9d1d02006-09-14 19:52:07 +0000415// Die if we can't chdir to a new path.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000416void xchdir(const char *path)
417{
418 if (chdir(path))
419 bb_perror_msg_and_die("chdir(%s)", path);
420}
Rob Landleyd921b2e2006-08-03 15:41:12 +0000421
Rob Landleyda9d1d02006-09-14 19:52:07 +0000422// Print a warning message if opendir() fails, but don't die.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000423DIR *warn_opendir(const char *path)
424{
425 DIR *dp;
426
427 if ((dp = opendir(path)) == NULL) {
Denis Vlasenko89f0b342006-11-18 22:04:09 +0000428 bb_perror_msg("cannot open '%s'", path);
Rob Landleyd921b2e2006-08-03 15:41:12 +0000429 return NULL;
430 }
431 return dp;
432}
Rob Landleyd921b2e2006-08-03 15:41:12 +0000433
Rob Landleyda9d1d02006-09-14 19:52:07 +0000434// Die with an error message if opendir() fails.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000435DIR *xopendir(const char *path)
436{
437 DIR *dp;
438
439 if ((dp = opendir(path)) == NULL)
Denis Vlasenko89f0b342006-11-18 22:04:09 +0000440 bb_perror_msg_and_die("cannot open '%s'", path);
Rob Landleyd921b2e2006-08-03 15:41:12 +0000441 return dp;
442}
Rob Landleyd921b2e2006-08-03 15:41:12 +0000443
Rob Landleyd921b2e2006-08-03 15:41:12 +0000444#ifndef BB_NOMMU
Rob Landleyda9d1d02006-09-14 19:52:07 +0000445// Die with an error message if we can't daemonize.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000446void xdaemon(int nochdir, int noclose)
447{
Denis Vlasenko621204b2006-10-27 09:03:24 +0000448 if (daemon(nochdir, noclose))
449 bb_perror_msg_and_die("daemon");
Rob Landleyd921b2e2006-08-03 15:41:12 +0000450}
451#endif
Rob Landleyd921b2e2006-08-03 15:41:12 +0000452
Rob Landleyda9d1d02006-09-14 19:52:07 +0000453// Die with an error message if we can't open a new socket.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000454int xsocket(int domain, int type, int protocol)
455{
456 int r = socket(domain, type, protocol);
457
458 if (r < 0) bb_perror_msg_and_die("socket");
459
460 return r;
461}
Rob Landleyd921b2e2006-08-03 15:41:12 +0000462
Rob Landleyda9d1d02006-09-14 19:52:07 +0000463// Die with an error message if we can't bind a socket to an address.
Rob Landley23b61be2006-08-04 20:20:03 +0000464void xbind(int sockfd, struct sockaddr *my_addr, socklen_t addrlen)
465{
466 if (bind(sockfd, my_addr, addrlen)) bb_perror_msg_and_die("bind");
467}
Rob Landley23b61be2006-08-04 20:20:03 +0000468
Rob Landleyda9d1d02006-09-14 19:52:07 +0000469// Die with an error message if we can't listen for connections on a socket.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000470void xlisten(int s, int backlog)
471{
472 if (listen(s, backlog)) bb_perror_msg_and_die("listen");
473}
Bernhard Reutner-Fischer57b56672006-09-11 09:18:09 +0000474
Rob Landleyda9d1d02006-09-14 19:52:07 +0000475// xstat() - a stat() which dies on failure with meaningful error message
Rob Landley20cc6d52006-09-12 21:42:17 +0000476void xstat(char *name, struct stat *stat_buf)
Bernhard Reutner-Fischer57b56672006-09-11 09:18:09 +0000477{
Denis Vlasenko9213a9e2006-09-17 16:28:10 +0000478 if (stat(name, stat_buf))
Denis Vlasenkob6332242006-10-03 19:57:50 +0000479 bb_perror_msg_and_die("can't stat '%s'", name);
Bernhard Reutner-Fischer57b56672006-09-11 09:18:09 +0000480}
Bernhard Reutner-Fischer57b56672006-09-11 09:18:09 +0000481
Rob Landleyfbdf1212006-09-20 22:06:01 +0000482/* It is perfectly ok to pass in a NULL for either width or for
Denis Vlasenko621204b2006-10-27 09:03:24 +0000483 * height, in which case that value will not be set. */
Rob Landleyfbdf1212006-09-20 22:06:01 +0000484int get_terminal_width_height(int fd, int *width, int *height)
485{
486 struct winsize win = { 0, 0, 0, 0 };
487 int ret = ioctl(fd, TIOCGWINSZ, &win);
Denis Vlasenko621204b2006-10-27 09:03:24 +0000488
489 if (height) {
490 if (!win.ws_row) {
491 char *s = getenv("LINES");
492 if (s) win.ws_row = atoi(s);
493 }
494 if (win.ws_row <= 1 || win.ws_row >= 30000)
495 win.ws_row = 24;
496 *height = (int) win.ws_row;
Rob Landleyfbdf1212006-09-20 22:06:01 +0000497 }
Denis Vlasenko621204b2006-10-27 09:03:24 +0000498
499 if (width) {
500 if (!win.ws_col) {
501 char *s = getenv("COLUMNS");
502 if (s) win.ws_col = atoi(s);
503 }
504 if (win.ws_col <= 1 || win.ws_col >= 30000)
505 win.ws_col = 80;
506 *width = (int) win.ws_col;
Rob Landleyfbdf1212006-09-20 22:06:01 +0000507 }
Rob Landleyfbdf1212006-09-20 22:06:01 +0000508
509 return ret;
510}