blob: 92091e555032060fe2fdaf34292a7ea288c5193f [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 */
Manuel Novoa III cad53642003-03-19 09:13:01 +000023#ifdef L_xmalloc
Rob Landleyda9d1d02006-09-14 19:52:07 +000024// Die if we can't allocate size bytes of memory.
Rob Landleydfba7412006-03-06 20:47:33 +000025void *xmalloc(size_t size)
Eric Andersenaad1a882001-03-16 22:47:14 +000026{
27 void *ptr = malloc(size);
Matt Kraaia99b1942002-02-26 15:28:22 +000028 if (ptr == NULL && size != 0)
Manuel Novoa III cad53642003-03-19 09:13:01 +000029 bb_error_msg_and_die(bb_msg_memory_exhausted);
Eric Andersenaad1a882001-03-16 22:47:14 +000030 return ptr;
31}
Manuel Novoa III cad53642003-03-19 09:13:01 +000032#endif
Eric Andersenaad1a882001-03-16 22:47:14 +000033
Manuel Novoa III cad53642003-03-19 09:13:01 +000034#ifdef L_xrealloc
Rob Landleyda9d1d02006-09-14 19:52:07 +000035// Die if we can't resize previously allocated memory. (This returns a pointer
36// to the new memory, which may or may not be the same as the old memory.
37// It'll copy the contents to a new chunk and free the old one if necessary.)
Rob Landleydfba7412006-03-06 20:47:33 +000038void *xrealloc(void *ptr, size_t size)
Eric Andersenaad1a882001-03-16 22:47:14 +000039{
Matt Kraaia99b1942002-02-26 15:28:22 +000040 ptr = realloc(ptr, size);
41 if (ptr == NULL && size != 0)
Manuel Novoa III cad53642003-03-19 09:13:01 +000042 bb_error_msg_and_die(bb_msg_memory_exhausted);
Eric Andersenaad1a882001-03-16 22:47:14 +000043 return ptr;
44}
Manuel Novoa III cad53642003-03-19 09:13:01 +000045#endif
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000046#endif /* DMALLOC */
47
Eric Andersenaad1a882001-03-16 22:47:14 +000048
Rob Landley80b8ff02006-05-19 20:36:49 +000049#ifdef L_xzalloc
Rob Landleyda9d1d02006-09-14 19:52:07 +000050// Die if we can't allocate and zero size bytes of memory.
Rob Landley80b8ff02006-05-19 20:36:49 +000051void *xzalloc(size_t size)
52{
53 void *ptr = xmalloc(size);
54 memset(ptr, 0, size);
55 return ptr;
56}
57#endif
58
Manuel Novoa III cad53642003-03-19 09:13:01 +000059#ifdef L_xstrdup
Rob Landleyda9d1d02006-09-14 19:52:07 +000060// Die if we can't copy a string to freshly allocated memory.
Rob Landley23b61be2006-08-04 20:20:03 +000061char * xstrdup(const char *s)
Rob Landley31642d72006-03-14 21:45:38 +000062{
Eric Andersenaad1a882001-03-16 22:47:14 +000063 char *t;
64
65 if (s == NULL)
66 return NULL;
67
68 t = strdup (s);
69
70 if (t == NULL)
Manuel Novoa III cad53642003-03-19 09:13:01 +000071 bb_error_msg_and_die(bb_msg_memory_exhausted);
Eric Andersenaad1a882001-03-16 22:47:14 +000072
73 return t;
74}
75#endif
76
Manuel Novoa III cad53642003-03-19 09:13:01 +000077#ifdef L_xstrndup
Rob Landleyda9d1d02006-09-14 19:52:07 +000078// Die if we can't allocate n+1 bytes (space for the null terminator) and copy
79// the (possibly truncated to length n) string into it.
Rob Landley23b61be2006-08-04 20:20:03 +000080char * xstrndup(const char *s, int n)
Rob Landley31642d72006-03-14 21:45:38 +000081{
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
87 t = xmalloc(++n);
Eric Andersenc7bda1c2004-03-15 08:29:22 +000088
Eric Andersenaad1a882001-03-16 22:47:14 +000089 return safe_strncpy(t,s,n);
90}
Manuel Novoa III cad53642003-03-19 09:13:01 +000091#endif
Eric Andersenaad1a882001-03-16 22:47:14 +000092
Manuel Novoa III cad53642003-03-19 09:13:01 +000093#ifdef L_xfopen
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{
98 FILE *fp;
99 if ((fp = fopen(path, mode)) == 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}
Manuel Novoa III cad53642003-03-19 09:13:01 +0000103#endif
Eric Andersenaad1a882001-03-16 22:47:14 +0000104
Manuel Novoa III cad53642003-03-19 09:13:01 +0000105#ifdef L_xopen
Rob Landleyda9d1d02006-09-14 19:52:07 +0000106// Die if we can't open an existing file and return an fd.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000107int xopen(const char *pathname, int flags)
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000108{
Denis Vlasenkod25a2642006-09-05 09:36:19 +0000109 if (ENABLE_DEBUG && (flags & O_CREAT))
Denis Vlasenko6d655be2006-09-06 19:02:46 +0000110 bb_error_msg_and_die("xopen() with O_CREAT");
Rob Landley23b61be2006-08-04 20:20:03 +0000111
Rob Landleyd921b2e2006-08-03 15:41:12 +0000112 return xopen3(pathname, flags, 0777);
Bernhard Reutner-Fischerc2cb0f32006-04-13 12:45:04 +0000113}
114#endif
115
116#ifdef L_xopen3
Rob Landleyda9d1d02006-09-14 19:52:07 +0000117// Die if we can't open a new file and return an fd.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000118int xopen3(const char *pathname, int flags, int mode)
Bernhard Reutner-Fischerc2cb0f32006-04-13 12:45:04 +0000119{
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000120 int ret;
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000121
Bernhard Reutner-Fischerc2cb0f32006-04-13 12:45:04 +0000122 ret = open(pathname, flags, mode);
123 if (ret < 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000124 bb_perror_msg_and_die("%s", pathname);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000125 }
126 return ret;
127}
Manuel Novoa III cad53642003-03-19 09:13:01 +0000128#endif
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000129
Manuel Novoa III cad53642003-03-19 09:13:01 +0000130#ifdef L_xread
Rob Landleyda9d1d02006-09-14 19:52:07 +0000131// Die with an error message if we can't read the entire buffer.
Rob Landley53437472006-07-16 08:14:35 +0000132void xread(int fd, void *buf, size_t count)
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000133{
Manuel Novoa III cad53642003-03-19 09:13:01 +0000134 while (count) {
Rob Landley53437472006-07-16 08:14:35 +0000135 ssize_t size;
136
137 if ((size = safe_read(fd, buf, count)) < 1)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000138 bb_error_msg_and_die("Short read");
Manuel Novoa III cad53642003-03-19 09:13:01 +0000139 count -= size;
Manuel Novoa III 948d4902004-03-08 05:44:30 +0000140 buf = ((char *) buf) + size;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000141 }
Rob Landley53437472006-07-16 08:14:35 +0000142}
143#endif
144
145#ifdef L_xwrite
Rob Landleyda9d1d02006-09-14 19:52:07 +0000146// Die with an error message if we can't write the entire buffer.
Rob Landley53437472006-07-16 08:14:35 +0000147void xwrite(int fd, void *buf, size_t count)
148{
149 while (count) {
150 ssize_t size;
151
152 if ((size = safe_write(fd, buf, count)) < 1)
153 bb_error_msg_and_die("Short write");
154 count -= size;
155 buf = ((char *) buf) + size;
156 }
157}
158#endif
159
160#ifdef L_xlseek
Rob Landleyda9d1d02006-09-14 19:52:07 +0000161// Die with an error message if we can't lseek to the right spot.
Rob Landley53437472006-07-16 08:14:35 +0000162void xlseek(int fd, off_t offset, int whence)
163{
Rob Landley2c55fca2006-08-04 05:24:58 +0000164 if (offset != lseek(fd, offset, whence)) bb_error_msg_and_die("lseek");
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000165}
Manuel Novoa III cad53642003-03-19 09:13:01 +0000166#endif
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000167
Manuel Novoa III cad53642003-03-19 09:13:01 +0000168#ifdef L_xread_char
Rob Landleyda9d1d02006-09-14 19:52:07 +0000169// Die with an error message if we can't read one character.
Rob Landley53437472006-07-16 08:14:35 +0000170unsigned char xread_char(int fd)
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000171{
172 char tmp;
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000173
Rob Landley53437472006-07-16 08:14:35 +0000174 xread(fd, &tmp, 1);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000175
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000176 return(tmp);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000177}
Manuel Novoa III cad53642003-03-19 09:13:01 +0000178#endif
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000179
Manuel Novoa III cad53642003-03-19 09:13:01 +0000180#ifdef L_xferror
Rob Landleyda9d1d02006-09-14 19:52:07 +0000181// Die with supplied error message if this FILE * has ferror set.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000182void xferror(FILE *fp, const char *fn)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000183{
184 if (ferror(fp)) {
185 bb_error_msg_and_die("%s", fn);
186 }
187}
188#endif
189
190#ifdef L_xferror_stdout
Rob Landleyda9d1d02006-09-14 19:52:07 +0000191// Die with an error message if stdout has ferror set.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000192void xferror_stdout(void)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000193{
Rob Landleyd921b2e2006-08-03 15:41:12 +0000194 xferror(stdout, bb_msg_standard_output);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000195}
196#endif
197
198#ifdef L_xfflush_stdout
Rob Landleyda9d1d02006-09-14 19:52:07 +0000199// Die with an error message if we have trouble flushing stdout.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000200void xfflush_stdout(void)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000201{
202 if (fflush(stdout)) {
203 bb_perror_msg_and_die(bb_msg_standard_output);
204 }
205}
206#endif
Rob Landley399d2b52006-05-25 23:02:40 +0000207
208#ifdef L_spawn
Rob Landleyda9d1d02006-09-14 19:52:07 +0000209// This does a fork/exec in one call, using vfork(). Return PID of new child,
210// -1 for failure. Runs argv[0], searching path if that has no / in it.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000211pid_t spawn(char **argv)
Rob Landley399d2b52006-05-25 23:02:40 +0000212{
213 static int failed;
214 pid_t pid;
Rob Landley519d7df2006-08-09 20:56:23 +0000215 void *app = ENABLE_FEATURE_SH_STANDALONE_SHELL ? find_applet_by_name(argv[0]) : 0;
Rob Landley399d2b52006-05-25 23:02:40 +0000216
Rob Landleyda9d1d02006-09-14 19:52:07 +0000217 // Be nice to nommu machines.
Rob Landley399d2b52006-05-25 23:02:40 +0000218 failed = 0;
219 pid = vfork();
220 if (pid < 0) return pid;
221 if (!pid) {
Rob Landleyc7ddefc2006-06-14 01:24:33 +0000222 execvp(app ? CONFIG_BUSYBOX_EXEC_PATH : *argv, argv);
Rob Landley399d2b52006-05-25 23:02:40 +0000223
Rob Landleyda9d1d02006-09-14 19:52:07 +0000224 // We're sharing a stack with blocked parent, let parent know we failed
225 // and then exit to unblock parent (but don't run atexit() stuff, which
226 // would screw up parent.)
Rob Landley399d2b52006-05-25 23:02:40 +0000227
228 failed = -1;
229 _exit(0);
230 }
231 return failed ? failed : pid;
232}
233#endif
234
235#ifdef L_xspawn
Rob Landleyda9d1d02006-09-14 19:52:07 +0000236// Die with an error message if we can't spawn a child process.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000237pid_t xspawn(char **argv)
Rob Landley399d2b52006-05-25 23:02:40 +0000238{
Rob Landleyd921b2e2006-08-03 15:41:12 +0000239 pid_t pid = spawn(argv);
Rob Landley399d2b52006-05-25 23:02:40 +0000240 if (pid < 0) bb_perror_msg_and_die("%s", *argv);
241 return pid;
242}
243#endif
Rob Landleyc7ddefc2006-06-14 01:24:33 +0000244
245#ifdef L_wait4
Rob Landleyda9d1d02006-09-14 19:52:07 +0000246// Wait for the specified child PID to exit, returning child's error return.
Rob Landleyc7ddefc2006-06-14 01:24:33 +0000247int wait4pid(int pid)
248{
249 int status;
250
251 if (pid == -1 || waitpid(pid, &status, 0) == -1) return -1;
252 if (WIFEXITED(status)) return WEXITSTATUS(status);
253 if (WIFSIGNALED(status)) return WTERMSIG(status);
254 return 0;
255}
Rob Landley5b88a382006-07-10 07:41:34 +0000256#endif
257
258#ifdef L_itoa
Rob Landleyda9d1d02006-09-14 19:52:07 +0000259// Convert unsigned integer to ascii, writing into supplied buffer. A
260// truncated result is always null terminated (unless buflen is 0), and
261// contains the first few digits of the result ala strncpy.
Rob Landley22d39582006-07-11 00:44:36 +0000262void utoa_to_buf(unsigned n, char *buf, unsigned buflen)
Rob Landley5b88a382006-07-10 07:41:34 +0000263{
264 int i, out = 0;
Rob Landley22d39582006-07-11 00:44:36 +0000265 if (buflen) {
266 for (i=1000000000; i; i/=10) {
267 int res = n/i;
Rob Landley5b88a382006-07-10 07:41:34 +0000268
Rob Landley22d39582006-07-11 00:44:36 +0000269 if ((res || out || i == 1) && --buflen>0) {
270 out++;
271 n -= res*i;
272 *buf++ = '0' + res;
273 }
Rob Landley5b88a382006-07-10 07:41:34 +0000274 }
Rob Landley22d39582006-07-11 00:44:36 +0000275 *buf = 0;
Rob Landley5b88a382006-07-10 07:41:34 +0000276 }
Rob Landley5b88a382006-07-10 07:41:34 +0000277}
278
Rob Landleyda9d1d02006-09-14 19:52:07 +0000279// Convert signed integer to ascii, like utoa_to_buf()
Rob Landley22d39582006-07-11 00:44:36 +0000280void itoa_to_buf(int n, char *buf, unsigned buflen)
Rob Landley5b88a382006-07-10 07:41:34 +0000281{
Rob Landley22d39582006-07-11 00:44:36 +0000282 if (buflen && n<0) {
Rob Landley5b88a382006-07-10 07:41:34 +0000283 n = -n;
284 *buf++ = '-';
Rob Landley22d39582006-07-11 00:44:36 +0000285 buflen--;
Rob Landley5b88a382006-07-10 07:41:34 +0000286 }
287 utoa_to_buf((unsigned)n, buf, buflen);
288}
289
Rob Landleyda9d1d02006-09-14 19:52:07 +0000290// The following two functions use a static buffer, so calling either one a
291// second time will overwrite previous results.
292//
293// The largest 32 bit integer is -2 billion plus null terminator, or 12 bytes.
294// Int should always be 32 bits on any remotely Unix-like system, see
295// http://www.unix.org/whitepapers/64bit.html for the reasons why.
296
Rob Landley23b61be2006-08-04 20:20:03 +0000297static char local_buf[12];
298
Rob Landleyda9d1d02006-09-14 19:52:07 +0000299// Convert unsigned integer to ascii using a static buffer (returned).
Rob Landley23b61be2006-08-04 20:20:03 +0000300char *utoa(unsigned n)
301{
302 utoa_to_buf(n, local_buf, sizeof(local_buf));
303
304 return local_buf;
305}
306
Rob Landleyda9d1d02006-09-14 19:52:07 +0000307// Convert signed integer to ascii using a static buffer (returned).
Rob Landley5b88a382006-07-10 07:41:34 +0000308char *itoa(int n)
309{
310 itoa_to_buf(n, local_buf, sizeof(local_buf));
311
312 return local_buf;
313}
314#endif
Rob Landleydf822f22006-07-15 23:00:46 +0000315
316#ifdef L_setuid
Rob Landleyda9d1d02006-09-14 19:52:07 +0000317// Die with an error message if we can't set gid. (Because resource limits may
318// limit this user to a given number of processes, and if that fills up the
319// setgid() will fail and we'll _still_be_root_, which is bad.)
Rob Landleydf822f22006-07-15 23:00:46 +0000320void xsetgid(gid_t gid)
321{
322 if (setgid(gid)) bb_error_msg_and_die("setgid");
323}
324
Rob Landleyda9d1d02006-09-14 19:52:07 +0000325// Die with an error message if we cant' set uid. (See xsetgid() for why.)
Rob Landleydf822f22006-07-15 23:00:46 +0000326void xsetuid(uid_t uid)
327{
328 if (setuid(uid)) bb_error_msg_and_die("setuid");
329}
330#endif
Rob Landley53437472006-07-16 08:14:35 +0000331
332#ifdef L_fdlength
Rob Landleyda9d1d02006-09-14 19:52:07 +0000333// Return how long the file at fd is, if there's any way to determine it.
Rob Landley53437472006-07-16 08:14:35 +0000334off_t fdlength(int fd)
335{
336 off_t bottom = 0, top = 0, pos;
337 long size;
338
Rob Landleyda9d1d02006-09-14 19:52:07 +0000339 // If the ioctl works for this, return it.
Rob Landley53437472006-07-16 08:14:35 +0000340
341 if (ioctl(fd, BLKGETSIZE, &size) >= 0) return size*512;
342
Rob Landleyda9d1d02006-09-14 19:52:07 +0000343 // If not, do a binary search for the last location we can read. (Some
344 // block devices don't do BLKGETSIZE right.)
Rob Landley53437472006-07-16 08:14:35 +0000345
346 do {
347 char temp;
348
Denis Vlasenkod25a2642006-09-05 09:36:19 +0000349 pos = bottom + (top - bottom) / 2;
Rob Landley53437472006-07-16 08:14:35 +0000350
Rob Landleyda9d1d02006-09-14 19:52:07 +0000351 // If we can read from the current location, it's bigger.
Rob Landley53437472006-07-16 08:14:35 +0000352
353 if (lseek(fd, pos, 0)>=0 && safe_read(fd, &temp, 1)==1) {
354 if (bottom == top) bottom = top = (top+1) * 2;
355 else bottom = pos;
356
Rob Landleyda9d1d02006-09-14 19:52:07 +0000357 // If we can't, it's smaller.
Rob Landley53437472006-07-16 08:14:35 +0000358
359 } else {
360 if (bottom == top) {
361 if (!top) return 0;
362 bottom = top/2;
363 }
364 else top = pos;
365 }
366 } while (bottom + 1 != top);
367
368 return pos + 1;
369}
370#endif
Rob Landleyd921b2e2006-08-03 15:41:12 +0000371
372#ifdef L_xasprintf
Rob Landleyda9d1d02006-09-14 19:52:07 +0000373// Die with an error message if we can't malloc() enough space and do an
374// sprintf() into that space.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000375char *xasprintf(const char *format, ...)
376{
377 va_list p;
378 int r;
379 char *string_ptr;
380
381#if 1
382 // GNU extension
383 va_start(p, format);
384 r = vasprintf(&string_ptr, format, p);
385 va_end(p);
386#else
387 // Bloat for systems that haven't got the GNU extension.
388 va_start(p, format);
389 r = vsnprintf(NULL, 0, format, p);
390 va_end(p);
391 string_ptr = xmalloc(r+1);
392 va_start(p, format);
393 r = vsnprintf(string_ptr, r+1, format, p);
394 va_end(p);
395#endif
396
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000397 if (r < 0) bb_error_msg_and_die(bb_msg_memory_exhausted);
Rob Landleyd921b2e2006-08-03 15:41:12 +0000398 return string_ptr;
399}
400#endif
401
402#ifdef L_xprint_and_close_file
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{
407 // copyfd outputs error messages for us.
Denis Vlasenkoa9801652006-09-07 16:20:03 +0000408 if (bb_copyfd_eof(fileno(file), 1) == -1)
409 exit(bb_default_error_retval);
Rob Landleyd921b2e2006-08-03 15:41:12 +0000410
411 fclose(file);
412}
413#endif
414
415#ifdef L_xchdir
Rob Landleyda9d1d02006-09-14 19:52:07 +0000416// Die if we can't chdir to a new path.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000417void xchdir(const char *path)
418{
419 if (chdir(path))
420 bb_perror_msg_and_die("chdir(%s)", path);
421}
422#endif
423
424#ifdef L_warn_opendir
Rob Landleyda9d1d02006-09-14 19:52:07 +0000425// Print a warning message if opendir() fails, but don't die.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000426DIR *warn_opendir(const char *path)
427{
428 DIR *dp;
429
430 if ((dp = opendir(path)) == NULL) {
431 bb_perror_msg("unable to open `%s'", path);
432 return NULL;
433 }
434 return dp;
435}
436#endif
437
438#ifdef L_xopendir
Rob Landleyda9d1d02006-09-14 19:52:07 +0000439// Die with an error message if opendir() fails.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000440DIR *xopendir(const char *path)
441{
442 DIR *dp;
443
444 if ((dp = opendir(path)) == NULL)
445 bb_perror_msg_and_die("unable to open `%s'", path);
446 return dp;
447}
448#endif
449
450#ifdef L_xdaemon
451#ifndef BB_NOMMU
Rob Landleyda9d1d02006-09-14 19:52:07 +0000452// Die with an error message if we can't daemonize.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000453void xdaemon(int nochdir, int noclose)
454{
Denis Vlasenko27af5a02006-09-03 12:21:59 +0000455 if (daemon(nochdir, noclose)) bb_perror_msg_and_die("daemon");
Rob Landleyd921b2e2006-08-03 15:41:12 +0000456}
457#endif
458#endif
459
Rob Landleyd921b2e2006-08-03 15:41:12 +0000460#ifdef L_xsocket
Rob Landleyda9d1d02006-09-14 19:52:07 +0000461// Die with an error message if we can't open a new socket.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000462int xsocket(int domain, int type, int protocol)
463{
464 int r = socket(domain, type, protocol);
465
466 if (r < 0) bb_perror_msg_and_die("socket");
467
468 return r;
469}
470#endif
471
Rob Landley23b61be2006-08-04 20:20:03 +0000472#ifdef L_xbind
Rob Landleyda9d1d02006-09-14 19:52:07 +0000473// Die with an error message if we can't bind a socket to an address.
Rob Landley23b61be2006-08-04 20:20:03 +0000474void xbind(int sockfd, struct sockaddr *my_addr, socklen_t addrlen)
475{
476 if (bind(sockfd, my_addr, addrlen)) bb_perror_msg_and_die("bind");
477}
478#endif
479
Rob Landleyd921b2e2006-08-03 15:41:12 +0000480#ifdef L_xlisten
Rob Landleyda9d1d02006-09-14 19:52:07 +0000481// Die with an error message if we can't listen for connections on a socket.
Rob Landleyd921b2e2006-08-03 15:41:12 +0000482void xlisten(int s, int backlog)
483{
484 if (listen(s, backlog)) bb_perror_msg_and_die("listen");
485}
486#endif
Bernhard Reutner-Fischer57b56672006-09-11 09:18:09 +0000487
488#ifdef L_xstat
Rob Landleyda9d1d02006-09-14 19:52:07 +0000489// xstat() - a stat() which dies on failure with meaningful error message
Rob Landley20cc6d52006-09-12 21:42:17 +0000490void xstat(char *name, struct stat *stat_buf)
Bernhard Reutner-Fischer57b56672006-09-11 09:18:09 +0000491{
Denis Vlasenko9213a9e2006-09-17 16:28:10 +0000492 if (stat(name, stat_buf))
493 bb_perror_msg_and_die("Can't stat '%s'", name);
Bernhard Reutner-Fischer57b56672006-09-11 09:18:09 +0000494}
495#endif
496
Rob Landleyfbdf1212006-09-20 22:06:01 +0000497#ifdef L_get_terminal_width_height
498/* It is perfectly ok to pass in a NULL for either width or for
499 * * height, in which case that value will not be set. */
500int get_terminal_width_height(int fd, int *width, int *height)
501{
502 struct winsize win = { 0, 0, 0, 0 };
503 int ret = ioctl(fd, TIOCGWINSZ, &win);
504 if (!win.ws_row) {
505 char *s = getenv("LINES");
506 if (s) win.ws_row = atoi(s);
507 }
508 if (win.ws_row <= 1) win.ws_row = 24;
509 if (!win.ws_col) {
510 char *s = getenv("COLUMNS");
511 if (s) win.ws_col = atoi(s);
512 }
513 if (win.ws_col <= 1) win.ws_col = 80;
514 if (height) *height = (int) win.ws_row;
515 if (width) *width = (int) win.ws_col;
516
517 return ret;
518}
519#endif