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 | fbdf121 | 2006-09-20 22:06:01 +0000 | [diff] [blame] | 9 | * Licensed under GPL version 2, 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 |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +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 |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +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 |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +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 |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +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 |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +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. |
Rob Landley | 23b61be | 2006-08-04 20:20:03 +0000 | [diff] [blame] | 80 | char * xstrndup(const char *s, int n) |
Rob Landley | 31642d7 | 2006-03-14 21:45:38 +0000 | [diff] [blame] | 81 | { |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 82 | char *t; |
| 83 | |
Rob Landley | 8bbdb87 | 2006-06-30 16:36:56 +0000 | [diff] [blame] | 84 | if (ENABLE_DEBUG && s == NULL) |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 85 | bb_error_msg_and_die("xstrndup bug"); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 86 | |
| 87 | t = xmalloc(++n); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 88 | |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 89 | return safe_strncpy(t,s,n); |
| 90 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 91 | #endif |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 92 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 93 | #ifdef L_xfopen |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 94 | // 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 Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 96 | FILE *xfopen(const char *path, const char *mode) |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 97 | { |
| 98 | FILE *fp; |
| 99 | if ((fp = fopen(path, mode)) == NULL) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 100 | bb_perror_msg_and_die("%s", path); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 101 | return fp; |
| 102 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 103 | #endif |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 104 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 105 | #ifdef L_xopen |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 106 | // 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] | 107 | int xopen(const char *pathname, int flags) |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 108 | { |
Denis Vlasenko | d25a264 | 2006-09-05 09:36:19 +0000 | [diff] [blame] | 109 | if (ENABLE_DEBUG && (flags & O_CREAT)) |
Denis Vlasenko | 6d655be | 2006-09-06 19:02:46 +0000 | [diff] [blame] | 110 | bb_error_msg_and_die("xopen() with O_CREAT"); |
Rob Landley | 23b61be | 2006-08-04 20:20:03 +0000 | [diff] [blame] | 111 | |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 112 | return xopen3(pathname, flags, 0777); |
Bernhard Reutner-Fischer | c2cb0f3 | 2006-04-13 12:45:04 +0000 | [diff] [blame] | 113 | } |
| 114 | #endif |
| 115 | |
| 116 | #ifdef L_xopen3 |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 117 | // 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] | 118 | int xopen3(const char *pathname, int flags, int mode) |
Bernhard Reutner-Fischer | c2cb0f3 | 2006-04-13 12:45:04 +0000 | [diff] [blame] | 119 | { |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 120 | int ret; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 121 | |
Bernhard Reutner-Fischer | c2cb0f3 | 2006-04-13 12:45:04 +0000 | [diff] [blame] | 122 | ret = open(pathname, flags, mode); |
| 123 | if (ret < 0) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 124 | bb_perror_msg_and_die("%s", pathname); |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 125 | } |
| 126 | return ret; |
| 127 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 128 | #endif |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 129 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 130 | #ifdef L_xread |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 131 | // 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] | 132 | void xread(int fd, void *buf, size_t count) |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 133 | { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 134 | while (count) { |
Rob Landley | 5343747 | 2006-07-16 08:14:35 +0000 | [diff] [blame] | 135 | ssize_t size; |
| 136 | |
| 137 | if ((size = safe_read(fd, buf, count)) < 1) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 138 | bb_error_msg_and_die("Short read"); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 139 | count -= size; |
Manuel Novoa III | 948d490 | 2004-03-08 05:44:30 +0000 | [diff] [blame] | 140 | buf = ((char *) buf) + size; |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 141 | } |
Rob Landley | 5343747 | 2006-07-16 08:14:35 +0000 | [diff] [blame] | 142 | } |
| 143 | #endif |
| 144 | |
| 145 | #ifdef L_xwrite |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 146 | // 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] | 147 | void 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 Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 161 | // 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] | 162 | void xlseek(int fd, off_t offset, int whence) |
| 163 | { |
Rob Landley | 2c55fca | 2006-08-04 05:24:58 +0000 | [diff] [blame] | 164 | 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] | 165 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 166 | #endif |
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 | #ifdef L_xread_char |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 169 | // Die with an error message if we can't read one character. |
Rob Landley | 5343747 | 2006-07-16 08:14:35 +0000 | [diff] [blame] | 170 | unsigned char xread_char(int fd) |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 171 | { |
| 172 | char tmp; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 173 | |
Rob Landley | 5343747 | 2006-07-16 08:14:35 +0000 | [diff] [blame] | 174 | xread(fd, &tmp, 1); |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 175 | |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 176 | return(tmp); |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 177 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 178 | #endif |
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 | #ifdef L_xferror |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 181 | // Die with supplied error message if this FILE * has ferror set. |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 182 | void xferror(FILE *fp, const char *fn) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 183 | { |
| 184 | if (ferror(fp)) { |
| 185 | bb_error_msg_and_die("%s", fn); |
| 186 | } |
| 187 | } |
| 188 | #endif |
| 189 | |
| 190 | #ifdef L_xferror_stdout |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 191 | // Die with an error message if stdout has ferror set. |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 192 | void xferror_stdout(void) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 193 | { |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 194 | xferror(stdout, bb_msg_standard_output); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 195 | } |
| 196 | #endif |
| 197 | |
| 198 | #ifdef L_xfflush_stdout |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 199 | // Die with an error message if we have trouble flushing stdout. |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 200 | void xfflush_stdout(void) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 201 | { |
| 202 | if (fflush(stdout)) { |
| 203 | bb_perror_msg_and_die(bb_msg_standard_output); |
| 204 | } |
| 205 | } |
| 206 | #endif |
Rob Landley | 399d2b5 | 2006-05-25 23:02:40 +0000 | [diff] [blame] | 207 | |
| 208 | #ifdef L_spawn |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 209 | // 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 Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 211 | pid_t spawn(char **argv) |
Rob Landley | 399d2b5 | 2006-05-25 23:02:40 +0000 | [diff] [blame] | 212 | { |
| 213 | static int failed; |
| 214 | pid_t pid; |
Rob Landley | 519d7df | 2006-08-09 20:56:23 +0000 | [diff] [blame] | 215 | 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] | 216 | |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 217 | // Be nice to nommu machines. |
Rob Landley | 399d2b5 | 2006-05-25 23:02:40 +0000 | [diff] [blame] | 218 | failed = 0; |
| 219 | pid = vfork(); |
| 220 | if (pid < 0) return pid; |
| 221 | if (!pid) { |
Rob Landley | c7ddefc | 2006-06-14 01:24:33 +0000 | [diff] [blame] | 222 | execvp(app ? CONFIG_BUSYBOX_EXEC_PATH : *argv, argv); |
Rob Landley | 399d2b5 | 2006-05-25 23:02:40 +0000 | [diff] [blame] | 223 | |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 224 | // 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 Landley | 399d2b5 | 2006-05-25 23:02:40 +0000 | [diff] [blame] | 227 | |
| 228 | failed = -1; |
| 229 | _exit(0); |
| 230 | } |
| 231 | return failed ? failed : pid; |
| 232 | } |
| 233 | #endif |
| 234 | |
| 235 | #ifdef L_xspawn |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 236 | // 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] | 237 | pid_t xspawn(char **argv) |
Rob Landley | 399d2b5 | 2006-05-25 23:02:40 +0000 | [diff] [blame] | 238 | { |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 239 | pid_t pid = spawn(argv); |
Rob Landley | 399d2b5 | 2006-05-25 23:02:40 +0000 | [diff] [blame] | 240 | if (pid < 0) bb_perror_msg_and_die("%s", *argv); |
| 241 | return pid; |
| 242 | } |
| 243 | #endif |
Rob Landley | c7ddefc | 2006-06-14 01:24:33 +0000 | [diff] [blame] | 244 | |
| 245 | #ifdef L_wait4 |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 246 | // 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] | 247 | int 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 Landley | 5b88a38 | 2006-07-10 07:41:34 +0000 | [diff] [blame] | 256 | #endif |
| 257 | |
| 258 | #ifdef L_itoa |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 259 | // 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 Landley | 22d3958 | 2006-07-11 00:44:36 +0000 | [diff] [blame] | 262 | void utoa_to_buf(unsigned n, char *buf, unsigned buflen) |
Rob Landley | 5b88a38 | 2006-07-10 07:41:34 +0000 | [diff] [blame] | 263 | { |
| 264 | int i, out = 0; |
Rob Landley | 22d3958 | 2006-07-11 00:44:36 +0000 | [diff] [blame] | 265 | if (buflen) { |
| 266 | for (i=1000000000; i; i/=10) { |
| 267 | int res = n/i; |
Rob Landley | 5b88a38 | 2006-07-10 07:41:34 +0000 | [diff] [blame] | 268 | |
Rob Landley | 22d3958 | 2006-07-11 00:44:36 +0000 | [diff] [blame] | 269 | if ((res || out || i == 1) && --buflen>0) { |
| 270 | out++; |
| 271 | n -= res*i; |
| 272 | *buf++ = '0' + res; |
| 273 | } |
Rob Landley | 5b88a38 | 2006-07-10 07:41:34 +0000 | [diff] [blame] | 274 | } |
Rob Landley | 22d3958 | 2006-07-11 00:44:36 +0000 | [diff] [blame] | 275 | *buf = 0; |
Rob Landley | 5b88a38 | 2006-07-10 07:41:34 +0000 | [diff] [blame] | 276 | } |
Rob Landley | 5b88a38 | 2006-07-10 07:41:34 +0000 | [diff] [blame] | 277 | } |
| 278 | |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 279 | // Convert signed integer to ascii, like utoa_to_buf() |
Rob Landley | 22d3958 | 2006-07-11 00:44:36 +0000 | [diff] [blame] | 280 | void itoa_to_buf(int n, char *buf, unsigned buflen) |
Rob Landley | 5b88a38 | 2006-07-10 07:41:34 +0000 | [diff] [blame] | 281 | { |
Rob Landley | 22d3958 | 2006-07-11 00:44:36 +0000 | [diff] [blame] | 282 | if (buflen && n<0) { |
Rob Landley | 5b88a38 | 2006-07-10 07:41:34 +0000 | [diff] [blame] | 283 | n = -n; |
| 284 | *buf++ = '-'; |
Rob Landley | 22d3958 | 2006-07-11 00:44:36 +0000 | [diff] [blame] | 285 | buflen--; |
Rob Landley | 5b88a38 | 2006-07-10 07:41:34 +0000 | [diff] [blame] | 286 | } |
| 287 | utoa_to_buf((unsigned)n, buf, buflen); |
| 288 | } |
| 289 | |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 290 | // 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 Landley | 23b61be | 2006-08-04 20:20:03 +0000 | [diff] [blame] | 297 | static char local_buf[12]; |
| 298 | |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 299 | // Convert unsigned integer to ascii using a static buffer (returned). |
Rob Landley | 23b61be | 2006-08-04 20:20:03 +0000 | [diff] [blame] | 300 | char *utoa(unsigned n) |
| 301 | { |
| 302 | utoa_to_buf(n, local_buf, sizeof(local_buf)); |
| 303 | |
| 304 | return local_buf; |
| 305 | } |
| 306 | |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 307 | // Convert signed integer to ascii using a static buffer (returned). |
Rob Landley | 5b88a38 | 2006-07-10 07:41:34 +0000 | [diff] [blame] | 308 | char *itoa(int n) |
| 309 | { |
| 310 | itoa_to_buf(n, local_buf, sizeof(local_buf)); |
| 311 | |
| 312 | return local_buf; |
| 313 | } |
| 314 | #endif |
Rob Landley | df822f2 | 2006-07-15 23:00:46 +0000 | [diff] [blame] | 315 | |
| 316 | #ifdef L_setuid |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 317 | // 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 Landley | df822f2 | 2006-07-15 23:00:46 +0000 | [diff] [blame] | 320 | void xsetgid(gid_t gid) |
| 321 | { |
| 322 | if (setgid(gid)) bb_error_msg_and_die("setgid"); |
| 323 | } |
| 324 | |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 325 | // 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] | 326 | void xsetuid(uid_t uid) |
| 327 | { |
| 328 | if (setuid(uid)) bb_error_msg_and_die("setuid"); |
| 329 | } |
| 330 | #endif |
Rob Landley | 5343747 | 2006-07-16 08:14:35 +0000 | [diff] [blame] | 331 | |
| 332 | #ifdef L_fdlength |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 333 | // 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] | 334 | off_t fdlength(int fd) |
| 335 | { |
| 336 | off_t bottom = 0, top = 0, pos; |
| 337 | long size; |
| 338 | |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 339 | // If the ioctl works for this, return it. |
Rob Landley | 5343747 | 2006-07-16 08:14:35 +0000 | [diff] [blame] | 340 | |
| 341 | if (ioctl(fd, BLKGETSIZE, &size) >= 0) return size*512; |
| 342 | |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 343 | // If not, do a binary search for the last location we can read. (Some |
| 344 | // block devices don't do BLKGETSIZE right.) |
Rob Landley | 5343747 | 2006-07-16 08:14:35 +0000 | [diff] [blame] | 345 | |
| 346 | do { |
| 347 | char temp; |
| 348 | |
Denis Vlasenko | d25a264 | 2006-09-05 09:36:19 +0000 | [diff] [blame] | 349 | pos = bottom + (top - bottom) / 2; |
Rob Landley | 5343747 | 2006-07-16 08:14:35 +0000 | [diff] [blame] | 350 | |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 351 | // If we can read from the current location, it's bigger. |
Rob Landley | 5343747 | 2006-07-16 08:14:35 +0000 | [diff] [blame] | 352 | |
| 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 Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 357 | // If we can't, it's smaller. |
Rob Landley | 5343747 | 2006-07-16 08:14:35 +0000 | [diff] [blame] | 358 | |
| 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 Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 371 | |
| 372 | #ifdef L_xasprintf |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 373 | // Die with an error message if we can't malloc() enough space and do an |
| 374 | // sprintf() into that space. |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 375 | char *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 Vlasenko | 3538b9a | 2006-09-06 18:36:50 +0000 | [diff] [blame] | 397 | if (r < 0) bb_error_msg_and_die(bb_msg_memory_exhausted); |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 398 | return string_ptr; |
| 399 | } |
| 400 | #endif |
| 401 | |
| 402 | #ifdef L_xprint_and_close_file |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 403 | // Die with an error message if we can't copy an entire FILE * to stdout, then |
| 404 | // close that file. |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 405 | void xprint_and_close_file(FILE *file) |
| 406 | { |
| 407 | // copyfd outputs error messages for us. |
Denis Vlasenko | a980165 | 2006-09-07 16:20:03 +0000 | [diff] [blame] | 408 | if (bb_copyfd_eof(fileno(file), 1) == -1) |
| 409 | exit(bb_default_error_retval); |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 410 | |
| 411 | fclose(file); |
| 412 | } |
| 413 | #endif |
| 414 | |
| 415 | #ifdef L_xchdir |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 416 | // Die if we can't chdir to a new path. |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 417 | void 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 Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 425 | // Print a warning message if opendir() fails, but don't die. |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 426 | DIR *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 Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 439 | // Die with an error message if opendir() fails. |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 440 | DIR *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 Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 452 | // Die with an error message if we can't daemonize. |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 453 | void xdaemon(int nochdir, int noclose) |
| 454 | { |
Denis Vlasenko | 27af5a0 | 2006-09-03 12:21:59 +0000 | [diff] [blame] | 455 | if (daemon(nochdir, noclose)) bb_perror_msg_and_die("daemon"); |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 456 | } |
| 457 | #endif |
| 458 | #endif |
| 459 | |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 460 | #ifdef L_xsocket |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 461 | // 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] | 462 | int 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 Landley | 23b61be | 2006-08-04 20:20:03 +0000 | [diff] [blame] | 472 | #ifdef L_xbind |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 473 | // 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] | 474 | void 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 Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 480 | #ifdef L_xlisten |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 481 | // 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] | 482 | void xlisten(int s, int backlog) |
| 483 | { |
| 484 | if (listen(s, backlog)) bb_perror_msg_and_die("listen"); |
| 485 | } |
| 486 | #endif |
Bernhard Reutner-Fischer | 57b5667 | 2006-09-11 09:18:09 +0000 | [diff] [blame] | 487 | |
| 488 | #ifdef L_xstat |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 489 | // xstat() - a stat() which dies on failure with meaningful error message |
Rob Landley | 20cc6d5 | 2006-09-12 21:42:17 +0000 | [diff] [blame] | 490 | void xstat(char *name, struct stat *stat_buf) |
Bernhard Reutner-Fischer | 57b5667 | 2006-09-11 09:18:09 +0000 | [diff] [blame] | 491 | { |
Denis Vlasenko | 9213a9e | 2006-09-17 16:28:10 +0000 | [diff] [blame] | 492 | if (stat(name, stat_buf)) |
| 493 | bb_perror_msg_and_die("Can't stat '%s'", name); |
Bernhard Reutner-Fischer | 57b5667 | 2006-09-11 09:18:09 +0000 | [diff] [blame] | 494 | } |
| 495 | #endif |
| 496 | |
Rob Landley | fbdf121 | 2006-09-20 22:06:01 +0000 | [diff] [blame] | 497 | #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. */ |
| 500 | int 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 |