Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
| 2 | /* |
| 3 | * Utility routines. |
| 4 | * |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 5 | * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org> |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 6 | * Copyright (C) 2006 Rob Landley |
| 7 | * Copyright (C) 2006 Denis Vlasenko |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 8 | * |
Rob Landley | 4e9deec | 2006-02-20 02:44:30 +0000 | [diff] [blame] | 9 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 10 | */ |
| 11 | |
Rob Landley | 552b56d | 2006-05-04 21:22:27 +0000 | [diff] [blame] | 12 | #include "busybox.h" |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 13 | |
Rob Landley | 23b61be | 2006-08-04 20:20:03 +0000 | [diff] [blame] | 14 | /* 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 Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 18 | #ifndef DMALLOC |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 19 | /* 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 | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 23 | #ifdef L_xmalloc |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 24 | /* Die if we can't allocate size bytes of memory. */ |
Rob Landley | dfba741 | 2006-03-06 20:47:33 +0000 | [diff] [blame] | 25 | void *xmalloc(size_t size) |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 26 | { |
| 27 | void *ptr = malloc(size); |
Matt Kraai | a99b194 | 2002-02-26 15:28:22 +0000 | [diff] [blame] | 28 | if (ptr == NULL && size != 0) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 29 | bb_error_msg_and_die(bb_msg_memory_exhausted); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 30 | return ptr; |
| 31 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 32 | #endif |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 33 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 34 | #ifdef L_xrealloc |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 35 | /* 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 Landley | dfba741 | 2006-03-06 20:47:33 +0000 | [diff] [blame] | 38 | void *xrealloc(void *ptr, size_t size) |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 39 | { |
Matt Kraai | a99b194 | 2002-02-26 15:28:22 +0000 | [diff] [blame] | 40 | ptr = realloc(ptr, size); |
| 41 | if (ptr == NULL && size != 0) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 42 | bb_error_msg_and_die(bb_msg_memory_exhausted); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 43 | return ptr; |
| 44 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 45 | #endif |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 46 | #endif /* DMALLOC */ |
| 47 | |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 48 | |
Rob Landley | 80b8ff0 | 2006-05-19 20:36:49 +0000 | [diff] [blame] | 49 | #ifdef L_xzalloc |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 50 | /* Die if we can't allocate and zero size bytes of memory. */ |
Rob Landley | 80b8ff0 | 2006-05-19 20:36:49 +0000 | [diff] [blame] | 51 | void *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 | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 59 | #ifdef L_xstrdup |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 60 | /* Die if we can't copy a string to freshly allocated memory. */ |
Rob Landley | 23b61be | 2006-08-04 20:20:03 +0000 | [diff] [blame] | 61 | char * xstrdup(const char *s) |
Rob Landley | 31642d7 | 2006-03-14 21:45:38 +0000 | [diff] [blame] | 62 | { |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 63 | char *t; |
| 64 | |
| 65 | if (s == NULL) |
| 66 | return NULL; |
| 67 | |
| 68 | t = strdup (s); |
| 69 | |
| 70 | if (t == NULL) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 71 | bb_error_msg_and_die(bb_msg_memory_exhausted); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 72 | |
| 73 | return t; |
| 74 | } |
| 75 | #endif |
| 76 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 77 | #ifdef L_xstrndup |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 78 | /* 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. |
| 80 | */ |
Rob Landley | 23b61be | 2006-08-04 20:20:03 +0000 | [diff] [blame] | 81 | char * xstrndup(const char *s, int n) |
Rob Landley | 31642d7 | 2006-03-14 21:45:38 +0000 | [diff] [blame] | 82 | { |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 83 | char *t; |
| 84 | |
Rob Landley | 8bbdb87 | 2006-06-30 16:36:56 +0000 | [diff] [blame] | 85 | if (ENABLE_DEBUG && s == NULL) |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 86 | bb_error_msg_and_die("xstrndup bug"); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 87 | |
| 88 | t = xmalloc(++n); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 89 | |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 90 | return safe_strncpy(t,s,n); |
| 91 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 92 | #endif |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 93 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 94 | #ifdef L_xfopen |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 95 | /* Die if we can't open a file and return a FILE * to it. |
| 96 | * Notice we haven't got xfread(), This is for use with fscanf() and friends. |
| 97 | */ |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 98 | FILE *xfopen(const char *path, const char *mode) |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 99 | { |
| 100 | FILE *fp; |
| 101 | if ((fp = fopen(path, mode)) == NULL) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 102 | bb_perror_msg_and_die("%s", path); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 103 | return fp; |
| 104 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 105 | #endif |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 106 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 107 | #ifdef L_xopen |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 108 | /* Die if we can't open an existing file and return an fd. */ |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 109 | int xopen(const char *pathname, int flags) |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 110 | { |
Denis Vlasenko | d25a264 | 2006-09-05 09:36:19 +0000 | [diff] [blame] | 111 | if (ENABLE_DEBUG && (flags & O_CREAT)) |
Denis Vlasenko | 6d655be | 2006-09-06 19:02:46 +0000 | [diff] [blame] | 112 | bb_error_msg_and_die("xopen() with O_CREAT"); |
Rob Landley | 23b61be | 2006-08-04 20:20:03 +0000 | [diff] [blame] | 113 | |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 114 | return xopen3(pathname, flags, 0777); |
Bernhard Reutner-Fischer | c2cb0f3 | 2006-04-13 12:45:04 +0000 | [diff] [blame] | 115 | } |
| 116 | #endif |
| 117 | |
| 118 | #ifdef L_xopen3 |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 119 | /* Die if we can't open a new file and return an fd. */ |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 120 | int xopen3(const char *pathname, int flags, int mode) |
Bernhard Reutner-Fischer | c2cb0f3 | 2006-04-13 12:45:04 +0000 | [diff] [blame] | 121 | { |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 122 | int ret; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 123 | |
Bernhard Reutner-Fischer | c2cb0f3 | 2006-04-13 12:45:04 +0000 | [diff] [blame] | 124 | ret = open(pathname, flags, mode); |
| 125 | if (ret < 0) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 126 | bb_perror_msg_and_die("%s", pathname); |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 127 | } |
| 128 | return ret; |
| 129 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 130 | #endif |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 131 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 132 | #ifdef L_xread |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 133 | /* Die with an error message if we can't read the entire buffer. */ |
Rob Landley | 5343747 | 2006-07-16 08:14:35 +0000 | [diff] [blame] | 134 | void xread(int fd, void *buf, size_t count) |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 135 | { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 136 | while (count) { |
Rob Landley | 5343747 | 2006-07-16 08:14:35 +0000 | [diff] [blame] | 137 | ssize_t size; |
| 138 | |
| 139 | if ((size = safe_read(fd, buf, count)) < 1) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 140 | bb_error_msg_and_die("Short read"); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 141 | count -= size; |
Manuel Novoa III | 948d490 | 2004-03-08 05:44:30 +0000 | [diff] [blame] | 142 | buf = ((char *) buf) + size; |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 143 | } |
Rob Landley | 5343747 | 2006-07-16 08:14:35 +0000 | [diff] [blame] | 144 | } |
| 145 | #endif |
| 146 | |
| 147 | #ifdef L_xwrite |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 148 | /* Die with an error message if we can't write the entire buffer. */ |
Rob Landley | 5343747 | 2006-07-16 08:14:35 +0000 | [diff] [blame] | 149 | void xwrite(int fd, void *buf, size_t count) |
| 150 | { |
| 151 | while (count) { |
| 152 | ssize_t size; |
| 153 | |
| 154 | if ((size = safe_write(fd, buf, count)) < 1) |
| 155 | bb_error_msg_and_die("Short write"); |
| 156 | count -= size; |
| 157 | buf = ((char *) buf) + size; |
| 158 | } |
| 159 | } |
| 160 | #endif |
| 161 | |
| 162 | #ifdef L_xlseek |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 163 | /* Die with an error message if we can't lseek to the right spot. */ |
Rob Landley | 5343747 | 2006-07-16 08:14:35 +0000 | [diff] [blame] | 164 | void xlseek(int fd, off_t offset, int whence) |
| 165 | { |
Rob Landley | 2c55fca | 2006-08-04 05:24:58 +0000 | [diff] [blame] | 166 | if (offset != lseek(fd, offset, whence)) bb_error_msg_and_die("lseek"); |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 167 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 168 | #endif |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 169 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 170 | #ifdef L_xread_char |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 171 | /* Die with an error message if we can't read one character. */ |
Rob Landley | 5343747 | 2006-07-16 08:14:35 +0000 | [diff] [blame] | 172 | unsigned char xread_char(int fd) |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 173 | { |
| 174 | char tmp; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 175 | |
Rob Landley | 5343747 | 2006-07-16 08:14:35 +0000 | [diff] [blame] | 176 | xread(fd, &tmp, 1); |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 177 | |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 178 | return(tmp); |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 179 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 180 | #endif |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 181 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 182 | #ifdef L_xferror |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 183 | /* Die with supplied error message if this FILE * has ferror set. */ |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 184 | void xferror(FILE *fp, const char *fn) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 185 | { |
| 186 | if (ferror(fp)) { |
| 187 | bb_error_msg_and_die("%s", fn); |
| 188 | } |
| 189 | } |
| 190 | #endif |
| 191 | |
| 192 | #ifdef L_xferror_stdout |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 193 | /* Die with an error message if stdout has ferror set. */ |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 194 | void xferror_stdout(void) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 195 | { |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 196 | xferror(stdout, bb_msg_standard_output); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 197 | } |
| 198 | #endif |
| 199 | |
| 200 | #ifdef L_xfflush_stdout |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 201 | /* Die with an error message if we have trouble flushing stdout. */ |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 202 | void xfflush_stdout(void) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 203 | { |
| 204 | if (fflush(stdout)) { |
| 205 | bb_perror_msg_and_die(bb_msg_standard_output); |
| 206 | } |
| 207 | } |
| 208 | #endif |
Rob Landley | 399d2b5 | 2006-05-25 23:02:40 +0000 | [diff] [blame] | 209 | |
| 210 | #ifdef L_spawn |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 211 | /* This does a fork/exec in one call, using vfork(). Return PID of new child, |
| 212 | * -1 for failure. Runs argv[0], searching path if that has no / in it. |
| 213 | */ |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 214 | pid_t spawn(char **argv) |
Rob Landley | 399d2b5 | 2006-05-25 23:02:40 +0000 | [diff] [blame] | 215 | { |
| 216 | static int failed; |
| 217 | pid_t pid; |
Rob Landley | 519d7df | 2006-08-09 20:56:23 +0000 | [diff] [blame] | 218 | void *app = ENABLE_FEATURE_SH_STANDALONE_SHELL ? find_applet_by_name(argv[0]) : 0; |
Rob Landley | 399d2b5 | 2006-05-25 23:02:40 +0000 | [diff] [blame] | 219 | |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 220 | /* Be nice to nommu machines. */ |
Rob Landley | 399d2b5 | 2006-05-25 23:02:40 +0000 | [diff] [blame] | 221 | failed = 0; |
| 222 | pid = vfork(); |
| 223 | if (pid < 0) return pid; |
| 224 | if (!pid) { |
Rob Landley | c7ddefc | 2006-06-14 01:24:33 +0000 | [diff] [blame] | 225 | execvp(app ? CONFIG_BUSYBOX_EXEC_PATH : *argv, argv); |
Rob Landley | 399d2b5 | 2006-05-25 23:02:40 +0000 | [diff] [blame] | 226 | |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 227 | /* We're sharing a stack with blocked parent, let parent know we failed |
| 228 | * and then exit to unblock parent (but don't run atexit() stuff, which |
| 229 | would screw up parent.) */ |
Rob Landley | 399d2b5 | 2006-05-25 23:02:40 +0000 | [diff] [blame] | 230 | |
| 231 | failed = -1; |
| 232 | _exit(0); |
| 233 | } |
| 234 | return failed ? failed : pid; |
| 235 | } |
| 236 | #endif |
| 237 | |
| 238 | #ifdef L_xspawn |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 239 | /* Die with an error message if we can't spawn a child process. */ |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 240 | pid_t xspawn(char **argv) |
Rob Landley | 399d2b5 | 2006-05-25 23:02:40 +0000 | [diff] [blame] | 241 | { |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 242 | pid_t pid = spawn(argv); |
Rob Landley | 399d2b5 | 2006-05-25 23:02:40 +0000 | [diff] [blame] | 243 | if (pid < 0) bb_perror_msg_and_die("%s", *argv); |
| 244 | return pid; |
| 245 | } |
| 246 | #endif |
Rob Landley | c7ddefc | 2006-06-14 01:24:33 +0000 | [diff] [blame] | 247 | |
| 248 | #ifdef L_wait4 |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 249 | /* Wait for the specified child PID to exit, returning child's error return. */ |
Rob Landley | c7ddefc | 2006-06-14 01:24:33 +0000 | [diff] [blame] | 250 | int wait4pid(int pid) |
| 251 | { |
| 252 | int status; |
| 253 | |
| 254 | if (pid == -1 || waitpid(pid, &status, 0) == -1) return -1; |
| 255 | if (WIFEXITED(status)) return WEXITSTATUS(status); |
| 256 | if (WIFSIGNALED(status)) return WTERMSIG(status); |
| 257 | return 0; |
| 258 | } |
Rob Landley | 5b88a38 | 2006-07-10 07:41:34 +0000 | [diff] [blame] | 259 | #endif |
| 260 | |
| 261 | #ifdef L_itoa |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 262 | /* Convert unsigned integer to ascii, writing into supplied buffer. A |
| 263 | * truncated result is always null terminated (unless buflen is 0), and |
| 264 | * contains the first few digits of the result ala strncpy. */ |
Rob Landley | 22d3958 | 2006-07-11 00:44:36 +0000 | [diff] [blame] | 265 | void utoa_to_buf(unsigned n, char *buf, unsigned buflen) |
Rob Landley | 5b88a38 | 2006-07-10 07:41:34 +0000 | [diff] [blame] | 266 | { |
| 267 | int i, out = 0; |
Rob Landley | 22d3958 | 2006-07-11 00:44:36 +0000 | [diff] [blame] | 268 | if (buflen) { |
| 269 | for (i=1000000000; i; i/=10) { |
| 270 | int res = n/i; |
Rob Landley | 5b88a38 | 2006-07-10 07:41:34 +0000 | [diff] [blame] | 271 | |
Rob Landley | 22d3958 | 2006-07-11 00:44:36 +0000 | [diff] [blame] | 272 | if ((res || out || i == 1) && --buflen>0) { |
| 273 | out++; |
| 274 | n -= res*i; |
| 275 | *buf++ = '0' + res; |
| 276 | } |
Rob Landley | 5b88a38 | 2006-07-10 07:41:34 +0000 | [diff] [blame] | 277 | } |
Rob Landley | 22d3958 | 2006-07-11 00:44:36 +0000 | [diff] [blame] | 278 | *buf = 0; |
Rob Landley | 5b88a38 | 2006-07-10 07:41:34 +0000 | [diff] [blame] | 279 | } |
Rob Landley | 5b88a38 | 2006-07-10 07:41:34 +0000 | [diff] [blame] | 280 | } |
| 281 | |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 282 | /* Convert signed integer to ascii, like utoa_to_buf() */ |
Rob Landley | 22d3958 | 2006-07-11 00:44:36 +0000 | [diff] [blame] | 283 | void itoa_to_buf(int n, char *buf, unsigned buflen) |
Rob Landley | 5b88a38 | 2006-07-10 07:41:34 +0000 | [diff] [blame] | 284 | { |
Rob Landley | 22d3958 | 2006-07-11 00:44:36 +0000 | [diff] [blame] | 285 | if (buflen && n<0) { |
Rob Landley | 5b88a38 | 2006-07-10 07:41:34 +0000 | [diff] [blame] | 286 | n = -n; |
| 287 | *buf++ = '-'; |
Rob Landley | 22d3958 | 2006-07-11 00:44:36 +0000 | [diff] [blame] | 288 | buflen--; |
Rob Landley | 5b88a38 | 2006-07-10 07:41:34 +0000 | [diff] [blame] | 289 | } |
| 290 | utoa_to_buf((unsigned)n, buf, buflen); |
| 291 | } |
| 292 | |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 293 | /* The following two functions use a static buffer, so calling either one a |
| 294 | * second time will overwrite previous results. |
| 295 | * |
| 296 | * The largest 32 bit integer is -2 billion plus null terminator, or 12 bytes. |
| 297 | * Int should always be 32 bits on any remotely Unix-like system, see |
| 298 | * http://www.unix.org/whitepapers/64bit.html for the reasons why. |
| 299 | */ |
Rob Landley | 23b61be | 2006-08-04 20:20:03 +0000 | [diff] [blame] | 300 | static char local_buf[12]; |
| 301 | |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 302 | /* Convert unsigned integer to ascii using a static buffer (returned). */ |
Rob Landley | 23b61be | 2006-08-04 20:20:03 +0000 | [diff] [blame] | 303 | char *utoa(unsigned n) |
| 304 | { |
| 305 | utoa_to_buf(n, local_buf, sizeof(local_buf)); |
| 306 | |
| 307 | return local_buf; |
| 308 | } |
| 309 | |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 310 | /* Convert signed integer to ascii using a static buffer (returned). */ |
Rob Landley | 5b88a38 | 2006-07-10 07:41:34 +0000 | [diff] [blame] | 311 | char *itoa(int n) |
| 312 | { |
| 313 | itoa_to_buf(n, local_buf, sizeof(local_buf)); |
| 314 | |
| 315 | return local_buf; |
| 316 | } |
| 317 | #endif |
Rob Landley | df822f2 | 2006-07-15 23:00:46 +0000 | [diff] [blame] | 318 | |
| 319 | #ifdef L_setuid |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 320 | /* Die with an error message if we can't set gid. (Because resource limits may |
| 321 | * limit this user to a given number of processes, and if that fills up the |
| 322 | * setgid() will fail and we'll _still_be_root_, which is bad.) */ |
Rob Landley | df822f2 | 2006-07-15 23:00:46 +0000 | [diff] [blame] | 323 | void xsetgid(gid_t gid) |
| 324 | { |
| 325 | if (setgid(gid)) bb_error_msg_and_die("setgid"); |
| 326 | } |
| 327 | |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 328 | /* Die with an error message if we cant' set uid. (See xsetgid() for why.) */ |
Rob Landley | df822f2 | 2006-07-15 23:00:46 +0000 | [diff] [blame] | 329 | void xsetuid(uid_t uid) |
| 330 | { |
| 331 | if (setuid(uid)) bb_error_msg_and_die("setuid"); |
| 332 | } |
| 333 | #endif |
Rob Landley | 5343747 | 2006-07-16 08:14:35 +0000 | [diff] [blame] | 334 | |
| 335 | #ifdef L_fdlength |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 336 | /* Return how long the file at fd is, if there's any way to determine it. */ |
Rob Landley | 5343747 | 2006-07-16 08:14:35 +0000 | [diff] [blame] | 337 | off_t fdlength(int fd) |
| 338 | { |
| 339 | off_t bottom = 0, top = 0, pos; |
| 340 | long size; |
| 341 | |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 342 | /* If the ioctl works for this, return it. */ |
Rob Landley | 5343747 | 2006-07-16 08:14:35 +0000 | [diff] [blame] | 343 | |
| 344 | if (ioctl(fd, BLKGETSIZE, &size) >= 0) return size*512; |
| 345 | |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 346 | /* If not, do a binary search for the last location we can read. (Some |
| 347 | * block devices don't do BLKGETSIZE right.) */ |
Rob Landley | 5343747 | 2006-07-16 08:14:35 +0000 | [diff] [blame] | 348 | |
| 349 | do { |
| 350 | char temp; |
| 351 | |
Denis Vlasenko | d25a264 | 2006-09-05 09:36:19 +0000 | [diff] [blame] | 352 | pos = bottom + (top - bottom) / 2; |
Rob Landley | 5343747 | 2006-07-16 08:14:35 +0000 | [diff] [blame] | 353 | |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 354 | /* If we can read from the current location, it's bigger. */ |
Rob Landley | 5343747 | 2006-07-16 08:14:35 +0000 | [diff] [blame] | 355 | |
| 356 | if (lseek(fd, pos, 0)>=0 && safe_read(fd, &temp, 1)==1) { |
| 357 | if (bottom == top) bottom = top = (top+1) * 2; |
| 358 | else bottom = pos; |
| 359 | |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 360 | /* If we can't, it's smaller. */ |
Rob Landley | 5343747 | 2006-07-16 08:14:35 +0000 | [diff] [blame] | 361 | |
| 362 | } else { |
| 363 | if (bottom == top) { |
| 364 | if (!top) return 0; |
| 365 | bottom = top/2; |
| 366 | } |
| 367 | else top = pos; |
| 368 | } |
| 369 | } while (bottom + 1 != top); |
| 370 | |
| 371 | return pos + 1; |
| 372 | } |
| 373 | #endif |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 374 | |
| 375 | #ifdef L_xasprintf |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 376 | /* Die with an error message if we can't malloc() enough space and do an |
| 377 | * sprintf() into that space. */ |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 378 | char *xasprintf(const char *format, ...) |
| 379 | { |
| 380 | va_list p; |
| 381 | int r; |
| 382 | char *string_ptr; |
| 383 | |
| 384 | #if 1 |
| 385 | // GNU extension |
| 386 | va_start(p, format); |
| 387 | r = vasprintf(&string_ptr, format, p); |
| 388 | va_end(p); |
| 389 | #else |
| 390 | // Bloat for systems that haven't got the GNU extension. |
| 391 | va_start(p, format); |
| 392 | r = vsnprintf(NULL, 0, format, p); |
| 393 | va_end(p); |
| 394 | string_ptr = xmalloc(r+1); |
| 395 | va_start(p, format); |
| 396 | r = vsnprintf(string_ptr, r+1, format, p); |
| 397 | va_end(p); |
| 398 | #endif |
| 399 | |
Denis Vlasenko | 3538b9a | 2006-09-06 18:36:50 +0000 | [diff] [blame] | 400 | if (r < 0) bb_error_msg_and_die(bb_msg_memory_exhausted); |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 401 | return string_ptr; |
| 402 | } |
| 403 | #endif |
| 404 | |
| 405 | #ifdef L_xprint_and_close_file |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 406 | /* Die with an error message if we can't copy an entire FILE * to stdout, then |
| 407 | * close that file. */ |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 408 | void xprint_and_close_file(FILE *file) |
| 409 | { |
| 410 | // copyfd outputs error messages for us. |
Denis Vlasenko | a980165 | 2006-09-07 16:20:03 +0000 | [diff] [blame] | 411 | if (bb_copyfd_eof(fileno(file), 1) == -1) |
| 412 | exit(bb_default_error_retval); |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 413 | |
| 414 | fclose(file); |
| 415 | } |
| 416 | #endif |
| 417 | |
| 418 | #ifdef L_xchdir |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 419 | /* Die if we can't chdir to a new path. */ |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 420 | void xchdir(const char *path) |
| 421 | { |
| 422 | if (chdir(path)) |
| 423 | bb_perror_msg_and_die("chdir(%s)", path); |
| 424 | } |
| 425 | #endif |
| 426 | |
| 427 | #ifdef L_warn_opendir |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 428 | /* Print a warning message if opendir() fails, but don't die. */ |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 429 | DIR *warn_opendir(const char *path) |
| 430 | { |
| 431 | DIR *dp; |
| 432 | |
| 433 | if ((dp = opendir(path)) == NULL) { |
| 434 | bb_perror_msg("unable to open `%s'", path); |
| 435 | return NULL; |
| 436 | } |
| 437 | return dp; |
| 438 | } |
| 439 | #endif |
| 440 | |
| 441 | #ifdef L_xopendir |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 442 | /* Die with an error message if opendir() fails. */ |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 443 | DIR *xopendir(const char *path) |
| 444 | { |
| 445 | DIR *dp; |
| 446 | |
| 447 | if ((dp = opendir(path)) == NULL) |
| 448 | bb_perror_msg_and_die("unable to open `%s'", path); |
| 449 | return dp; |
| 450 | } |
| 451 | #endif |
| 452 | |
| 453 | #ifdef L_xdaemon |
| 454 | #ifndef BB_NOMMU |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 455 | /* Die with an error message if we can't daemonize. */ |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 456 | void xdaemon(int nochdir, int noclose) |
| 457 | { |
Denis Vlasenko | 27af5a0 | 2006-09-03 12:21:59 +0000 | [diff] [blame] | 458 | if (daemon(nochdir, noclose)) bb_perror_msg_and_die("daemon"); |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 459 | } |
| 460 | #endif |
| 461 | #endif |
| 462 | |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 463 | #ifdef L_xsocket |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 464 | /* Die with an error message if we can't open a new socket. */ |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 465 | int xsocket(int domain, int type, int protocol) |
| 466 | { |
| 467 | int r = socket(domain, type, protocol); |
| 468 | |
| 469 | if (r < 0) bb_perror_msg_and_die("socket"); |
| 470 | |
| 471 | return r; |
| 472 | } |
| 473 | #endif |
| 474 | |
Rob Landley | 23b61be | 2006-08-04 20:20:03 +0000 | [diff] [blame] | 475 | #ifdef L_xbind |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 476 | /* Die with an error message if we can't bind a socket to an address. */ |
Rob Landley | 23b61be | 2006-08-04 20:20:03 +0000 | [diff] [blame] | 477 | void xbind(int sockfd, struct sockaddr *my_addr, socklen_t addrlen) |
| 478 | { |
| 479 | if (bind(sockfd, my_addr, addrlen)) bb_perror_msg_and_die("bind"); |
| 480 | } |
| 481 | #endif |
| 482 | |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 483 | #ifdef L_xlisten |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 484 | /* Die with an error message if we can't listen for connections on a socket. */ |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 485 | void xlisten(int s, int backlog) |
| 486 | { |
| 487 | if (listen(s, backlog)) bb_perror_msg_and_die("listen"); |
| 488 | } |
| 489 | #endif |
Bernhard Reutner-Fischer | 57b5667 | 2006-09-11 09:18:09 +0000 | [diff] [blame] | 490 | |
| 491 | #ifdef L_xstat |
| 492 | /* xstat() - a stat() which dies on failure with meaningful error message */ |
Rob Landley | 20cc6d5 | 2006-09-12 21:42:17 +0000 | [diff] [blame^] | 493 | void xstat(char *name, struct stat *stat_buf) |
Bernhard Reutner-Fischer | 57b5667 | 2006-09-11 09:18:09 +0000 | [diff] [blame] | 494 | { |
| 495 | if (stat(name, stat_buf)) |
| 496 | bb_perror_msg_and_die("Can't stat '%s'", name); |
| 497 | } |
| 498 | #endif |
| 499 | |