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 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 12 | #include "libbb.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 | */ |
Denis Vlasenko | c6758a0 | 2007-04-10 21:40:19 +0000 | [diff] [blame] | 23 | // Warn if we can't allocate size bytes of memory. |
| 24 | void *malloc_or_warn(size_t size) |
| 25 | { |
| 26 | void *ptr = malloc(size); |
| 27 | if (ptr == NULL && size != 0) |
| 28 | bb_error_msg(bb_msg_memory_exhausted); |
| 29 | return ptr; |
| 30 | } |
| 31 | |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 32 | // Die if we can't allocate size bytes of memory. |
Rob Landley | dfba741 | 2006-03-06 20:47:33 +0000 | [diff] [blame] | 33 | void *xmalloc(size_t size) |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 34 | { |
| 35 | void *ptr = malloc(size); |
Matt Kraai | a99b194 | 2002-02-26 15:28:22 +0000 | [diff] [blame] | 36 | if (ptr == NULL && size != 0) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 37 | bb_error_msg_and_die(bb_msg_memory_exhausted); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 38 | return ptr; |
| 39 | } |
| 40 | |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 41 | // Die if we can't resize previously allocated memory. (This returns a pointer |
| 42 | // to the new memory, which may or may not be the same as the old memory. |
| 43 | // It'll copy the contents to a new chunk and free the old one if necessary.) |
Rob Landley | dfba741 | 2006-03-06 20:47:33 +0000 | [diff] [blame] | 44 | void *xrealloc(void *ptr, size_t size) |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 45 | { |
Matt Kraai | a99b194 | 2002-02-26 15:28:22 +0000 | [diff] [blame] | 46 | ptr = realloc(ptr, size); |
| 47 | if (ptr == NULL && size != 0) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 48 | bb_error_msg_and_die(bb_msg_memory_exhausted); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 49 | return ptr; |
| 50 | } |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 51 | #endif /* DMALLOC */ |
| 52 | |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 53 | // Die if we can't allocate and zero size bytes of memory. |
Rob Landley | 80b8ff0 | 2006-05-19 20:36:49 +0000 | [diff] [blame] | 54 | void *xzalloc(size_t size) |
| 55 | { |
| 56 | void *ptr = xmalloc(size); |
| 57 | memset(ptr, 0, size); |
| 58 | return ptr; |
| 59 | } |
Rob Landley | 80b8ff0 | 2006-05-19 20:36:49 +0000 | [diff] [blame] | 60 | |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 61 | // Die if we can't copy a string to freshly allocated memory. |
Rob Landley | 23b61be | 2006-08-04 20:20:03 +0000 | [diff] [blame] | 62 | char * xstrdup(const char *s) |
Rob Landley | 31642d7 | 2006-03-14 21:45:38 +0000 | [diff] [blame] | 63 | { |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 64 | char *t; |
| 65 | |
| 66 | if (s == NULL) |
| 67 | return NULL; |
| 68 | |
Denis Vlasenko | cf749bc | 2006-11-26 15:45:17 +0000 | [diff] [blame] | 69 | t = strdup(s); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 70 | |
| 71 | if (t == NULL) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 72 | bb_error_msg_and_die(bb_msg_memory_exhausted); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 73 | |
| 74 | return t; |
| 75 | } |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 76 | |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 77 | // Die if we can't allocate n+1 bytes (space for the null terminator) and copy |
| 78 | // the (possibly truncated to length n) string into it. |
Denis Vlasenko | 68444b9 | 2008-02-22 22:24:48 +0000 | [diff] [blame] | 79 | char *xstrndup(const char *s, int n) |
Rob Landley | 31642d7 | 2006-03-14 21:45:38 +0000 | [diff] [blame] | 80 | { |
Denis Vlasenko | cf749bc | 2006-11-26 15:45:17 +0000 | [diff] [blame] | 81 | int m; |
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 | |
Denis Vlasenko | cf749bc | 2006-11-26 15:45:17 +0000 | [diff] [blame] | 87 | /* We can just xmalloc(n+1) and strncpy into it, */ |
| 88 | /* but think about xstrndup("abc", 10000) wastage! */ |
| 89 | m = n; |
| 90 | t = (char*) s; |
| 91 | while (m) { |
| 92 | if (!*t) break; |
Denis Vlasenko | 218f2f4 | 2007-01-24 22:02:01 +0000 | [diff] [blame] | 93 | m--; |
| 94 | t++; |
Denis Vlasenko | cf749bc | 2006-11-26 15:45:17 +0000 | [diff] [blame] | 95 | } |
Denis Vlasenko | 218f2f4 | 2007-01-24 22:02:01 +0000 | [diff] [blame] | 96 | n -= m; |
Denis Vlasenko | cf749bc | 2006-11-26 15:45:17 +0000 | [diff] [blame] | 97 | t = xmalloc(n + 1); |
| 98 | t[n] = '\0'; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 99 | |
Denis Vlasenko | 218f2f4 | 2007-01-24 22:02:01 +0000 | [diff] [blame] | 100 | return memcpy(t, s, n); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 101 | } |
| 102 | |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 103 | // Die if we can't open a file and return a FILE * to it. |
| 104 | // Notice we haven't got xfread(), This is for use with fscanf() and friends. |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 105 | FILE *xfopen(const char *path, const char *mode) |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 106 | { |
Denis Vlasenko | cf749bc | 2006-11-26 15:45:17 +0000 | [diff] [blame] | 107 | FILE *fp = fopen(path, mode); |
| 108 | if (fp == NULL) |
Denis Vlasenko | 5a6aedd | 2007-05-26 16:44:20 +0000 | [diff] [blame] | 109 | bb_perror_msg_and_die("can't open '%s'", path); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 110 | return fp; |
| 111 | } |
| 112 | |
Denis Vlasenko | 50f7f44 | 2007-04-11 23:20:53 +0000 | [diff] [blame] | 113 | // Die if we can't open a file and return a fd. |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 114 | int xopen3(const char *pathname, int flags, int mode) |
Bernhard Reutner-Fischer | c2cb0f3 | 2006-04-13 12:45:04 +0000 | [diff] [blame] | 115 | { |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 116 | int ret; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 117 | |
Bernhard Reutner-Fischer | c2cb0f3 | 2006-04-13 12:45:04 +0000 | [diff] [blame] | 118 | ret = open(pathname, flags, mode); |
| 119 | if (ret < 0) { |
Denis Vlasenko | 5a6aedd | 2007-05-26 16:44:20 +0000 | [diff] [blame] | 120 | bb_perror_msg_and_die("can't open '%s'", pathname); |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 121 | } |
| 122 | return ret; |
| 123 | } |
| 124 | |
Denis Vlasenko | 50f7f44 | 2007-04-11 23:20:53 +0000 | [diff] [blame] | 125 | // Die if we can't open an existing file and return a fd. |
| 126 | int xopen(const char *pathname, int flags) |
| 127 | { |
| 128 | return xopen3(pathname, flags, 0666); |
| 129 | } |
| 130 | |
| 131 | // Warn if we can't open a file and return a fd. |
| 132 | int open3_or_warn(const char *pathname, int flags, int mode) |
| 133 | { |
| 134 | int ret; |
| 135 | |
| 136 | ret = open(pathname, flags, mode); |
| 137 | if (ret < 0) { |
Denis Vlasenko | 5a6aedd | 2007-05-26 16:44:20 +0000 | [diff] [blame] | 138 | bb_perror_msg("can't open '%s'", pathname); |
Denis Vlasenko | 50f7f44 | 2007-04-11 23:20:53 +0000 | [diff] [blame] | 139 | } |
| 140 | return ret; |
| 141 | } |
| 142 | |
| 143 | // Warn if we can't open a file and return a fd. |
| 144 | int open_or_warn(const char *pathname, int flags) |
| 145 | { |
| 146 | return open3_or_warn(pathname, flags, 0666); |
| 147 | } |
| 148 | |
Denis Vlasenko | 1bb552b | 2007-04-05 21:25:15 +0000 | [diff] [blame] | 149 | void xunlink(const char *pathname) |
| 150 | { |
| 151 | if (unlink(pathname)) |
Denis Vlasenko | 5a6aedd | 2007-05-26 16:44:20 +0000 | [diff] [blame] | 152 | bb_perror_msg_and_die("can't remove file '%s'", pathname); |
Denis Vlasenko | 1bb552b | 2007-04-05 21:25:15 +0000 | [diff] [blame] | 153 | } |
| 154 | |
Denis Vlasenko | cb448fe | 2008-02-17 14:28:53 +0000 | [diff] [blame] | 155 | void xrename(const char *oldpath, const char *newpath) |
| 156 | { |
| 157 | if (rename(oldpath, newpath)) |
| 158 | bb_perror_msg_and_die("can't move '%s' to '%s'", oldpath, newpath); |
| 159 | } |
| 160 | |
| 161 | int rename_or_warn(const char *oldpath, const char *newpath) |
| 162 | { |
| 163 | int n = rename(oldpath, newpath); |
| 164 | if (n) |
| 165 | bb_perror_msg("can't move '%s' to '%s'", oldpath, newpath); |
| 166 | return n; |
| 167 | } |
| 168 | |
| 169 | void xpipe(int filedes[2]) |
| 170 | { |
| 171 | if (pipe(filedes)) |
| 172 | bb_perror_msg_and_die("can't create pipe"); |
| 173 | } |
| 174 | |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 175 | // Turn on nonblocking I/O on a fd |
| 176 | int ndelay_on(int fd) |
| 177 | { |
Denis Vlasenko | d37f222 | 2007-08-19 13:42:08 +0000 | [diff] [blame] | 178 | return fcntl(fd, F_SETFL, fcntl(fd,F_GETFL) | O_NONBLOCK); |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 179 | } |
| 180 | |
Denis Vlasenko | 96e1b38 | 2007-09-30 23:50:48 +0000 | [diff] [blame] | 181 | int close_on_exec_on(int fd) |
| 182 | { |
Denis Vlasenko | 6b40443 | 2008-01-07 16:13:14 +0000 | [diff] [blame] | 183 | return fcntl(fd, F_SETFD, FD_CLOEXEC); |
Denis Vlasenko | 96e1b38 | 2007-09-30 23:50:48 +0000 | [diff] [blame] | 184 | } |
| 185 | |
Denis Vlasenko | a5b3e76 | 2006-12-24 07:15:50 +0000 | [diff] [blame] | 186 | int ndelay_off(int fd) |
| 187 | { |
Denis Vlasenko | d37f222 | 2007-08-19 13:42:08 +0000 | [diff] [blame] | 188 | return fcntl(fd, F_SETFL, fcntl(fd,F_GETFL) & ~O_NONBLOCK); |
Denis Vlasenko | a5b3e76 | 2006-12-24 07:15:50 +0000 | [diff] [blame] | 189 | } |
| 190 | |
Denis Vlasenko | a27a11b | 2007-08-18 14:16:39 +0000 | [diff] [blame] | 191 | void xdup2(int from, int to) |
| 192 | { |
| 193 | if (dup2(from, to) != to) |
| 194 | bb_perror_msg_and_die("can't duplicate file descriptor"); |
| 195 | } |
| 196 | |
Denis Vlasenko | cad04ef | 2007-03-25 23:21:05 +0000 | [diff] [blame] | 197 | // "Renumber" opened fd |
| 198 | void xmove_fd(int from, int to) |
| 199 | { |
| 200 | if (from == to) |
| 201 | return; |
Denis Vlasenko | a27a11b | 2007-08-18 14:16:39 +0000 | [diff] [blame] | 202 | xdup2(from, to); |
Denis Vlasenko | cad04ef | 2007-03-25 23:21:05 +0000 | [diff] [blame] | 203 | close(from); |
| 204 | } |
| 205 | |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 206 | // Die with an error message if we can't write the entire buffer. |
Denis Vlasenko | 2d27e4c | 2006-11-25 23:50:28 +0000 | [diff] [blame] | 207 | void xwrite(int fd, const void *buf, size_t count) |
Rob Landley | 5343747 | 2006-07-16 08:14:35 +0000 | [diff] [blame] | 208 | { |
Denis Vlasenko | 88ca067 | 2006-10-12 22:44:13 +0000 | [diff] [blame] | 209 | if (count) { |
| 210 | ssize_t size = full_write(fd, buf, count); |
| 211 | if (size != count) |
Denis Vlasenko | 1db39b2 | 2006-10-11 20:59:02 +0000 | [diff] [blame] | 212 | bb_error_msg_and_die("short write"); |
Rob Landley | 5343747 | 2006-07-16 08:14:35 +0000 | [diff] [blame] | 213 | } |
| 214 | } |
Rob Landley | 5343747 | 2006-07-16 08:14:35 +0000 | [diff] [blame] | 215 | |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 216 | // Die with an error message if we can't lseek to the right spot. |
Denis Vlasenko | ea62077 | 2006-10-14 02:23:43 +0000 | [diff] [blame] | 217 | off_t xlseek(int fd, off_t offset, int whence) |
Rob Landley | 5343747 | 2006-07-16 08:14:35 +0000 | [diff] [blame] | 218 | { |
Denis Vlasenko | ea62077 | 2006-10-14 02:23:43 +0000 | [diff] [blame] | 219 | off_t off = lseek(fd, offset, whence); |
Denis Vlasenko | c6ce873 | 2006-11-29 18:15:52 +0000 | [diff] [blame] | 220 | if (off == (off_t)-1) { |
| 221 | if (whence == SEEK_SET) |
| 222 | bb_perror_msg_and_die("lseek(%"OFF_FMT"u)", offset); |
Denis Vlasenko | ea62077 | 2006-10-14 02:23:43 +0000 | [diff] [blame] | 223 | bb_perror_msg_and_die("lseek"); |
Denis Vlasenko | c6ce873 | 2006-11-29 18:15:52 +0000 | [diff] [blame] | 224 | } |
Denis Vlasenko | ea62077 | 2006-10-14 02:23:43 +0000 | [diff] [blame] | 225 | return off; |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 226 | } |
| 227 | |
Denis Vlasenko | cf749bc | 2006-11-26 15:45:17 +0000 | [diff] [blame] | 228 | // Die with supplied filename if this FILE * has ferror set. |
Denis Vlasenko | f0ed376 | 2006-10-26 23:21:47 +0000 | [diff] [blame] | 229 | void die_if_ferror(FILE *fp, const char *fn) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 230 | { |
| 231 | if (ferror(fp)) { |
Denis Vlasenko | 5a6aedd | 2007-05-26 16:44:20 +0000 | [diff] [blame] | 232 | /* ferror doesn't set useful errno */ |
Denis Vlasenko | 2d27e4c | 2006-11-25 23:50:28 +0000 | [diff] [blame] | 233 | bb_error_msg_and_die("%s: I/O error", fn); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 234 | } |
| 235 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 236 | |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 237 | // Die with an error message if stdout has ferror set. |
Denis Vlasenko | f0ed376 | 2006-10-26 23:21:47 +0000 | [diff] [blame] | 238 | void die_if_ferror_stdout(void) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 239 | { |
Denis Vlasenko | f0ed376 | 2006-10-26 23:21:47 +0000 | [diff] [blame] | 240 | die_if_ferror(stdout, bb_msg_standard_output); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 241 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 242 | |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 243 | // Die with an error message if we have trouble flushing stdout. |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 244 | void xfflush_stdout(void) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 245 | { |
| 246 | if (fflush(stdout)) { |
| 247 | bb_perror_msg_and_die(bb_msg_standard_output); |
| 248 | } |
| 249 | } |
Rob Landley | 399d2b5 | 2006-05-25 23:02:40 +0000 | [diff] [blame] | 250 | |
Denis Vlasenko | fe54458 | 2006-10-03 15:57:40 +0000 | [diff] [blame] | 251 | void xsetenv(const char *key, const char *value) |
| 252 | { |
Denis Vlasenko | 1db39b2 | 2006-10-11 20:59:02 +0000 | [diff] [blame] | 253 | if (setenv(key, value, 1)) |
Denis Vlasenko | fe54458 | 2006-10-03 15:57:40 +0000 | [diff] [blame] | 254 | bb_error_msg_and_die(bb_msg_memory_exhausted); |
| 255 | } |
Denis Vlasenko | fe54458 | 2006-10-03 15:57:40 +0000 | [diff] [blame] | 256 | |
Denis Vlasenko | 56ea65c | 2008-01-06 03:26:53 +0000 | [diff] [blame] | 257 | /* Converts unsigned long long value into compact 4-char |
| 258 | * representation. Examples: "1234", "1.2k", " 27M", "123T" |
| 259 | * String is not terminated (buf[4] is untouched) */ |
| 260 | void smart_ulltoa4(unsigned long long ul, char buf[5], const char *scale) |
Denis Vlasenko | aae0311 | 2006-11-05 00:44:39 +0000 | [diff] [blame] | 261 | { |
Denis Vlasenko | b6aae0f | 2007-01-29 22:51:25 +0000 | [diff] [blame] | 262 | const char *fmt; |
Denis Vlasenko | aae0311 | 2006-11-05 00:44:39 +0000 | [diff] [blame] | 263 | char c; |
Denis Vlasenko | b308d81 | 2007-08-28 19:35:34 +0000 | [diff] [blame] | 264 | unsigned v, u, idx = 0; |
| 265 | |
| 266 | if (ul > 9999) { // do not scale if 9999 or less |
| 267 | ul *= 10; |
| 268 | do { |
Denis Vlasenko | aae0311 | 2006-11-05 00:44:39 +0000 | [diff] [blame] | 269 | ul /= 1024; |
| 270 | idx++; |
Denis Vlasenko | b308d81 | 2007-08-28 19:35:34 +0000 | [diff] [blame] | 271 | } while (ul >= 10000); |
Denis Vlasenko | aae0311 | 2006-11-05 00:44:39 +0000 | [diff] [blame] | 272 | } |
| 273 | v = ul; // ullong divisions are expensive, avoid them |
| 274 | |
| 275 | fmt = " 123456789"; |
Denis Vlasenko | b308d81 | 2007-08-28 19:35:34 +0000 | [diff] [blame] | 276 | u = v / 10; |
| 277 | v = v % 10; |
| 278 | if (!idx) { |
| 279 | // 9999 or less: use "1234" format |
| 280 | // u is value/10, v is last digit |
| 281 | c = buf[0] = " 123456789"[u/100]; |
Denis Vlasenko | 1b6fa4c | 2007-03-24 12:08:36 +0000 | [diff] [blame] | 282 | if (c != ' ') fmt = "0123456789"; |
Denis Vlasenko | b308d81 | 2007-08-28 19:35:34 +0000 | [diff] [blame] | 283 | c = buf[1] = fmt[u/10%10]; |
Denis Vlasenko | 1b6fa4c | 2007-03-24 12:08:36 +0000 | [diff] [blame] | 284 | if (c != ' ') fmt = "0123456789"; |
Denis Vlasenko | b308d81 | 2007-08-28 19:35:34 +0000 | [diff] [blame] | 285 | buf[2] = fmt[u%10]; |
| 286 | buf[3] = "0123456789"[v]; |
Denis Vlasenko | aae0311 | 2006-11-05 00:44:39 +0000 | [diff] [blame] | 287 | } else { |
Denis Vlasenko | b308d81 | 2007-08-28 19:35:34 +0000 | [diff] [blame] | 288 | // u is value, v is 1/10ths (allows for 9.2M format) |
| 289 | if (u >= 10) { |
| 290 | // value is >= 10: use "123M', " 12M" formats |
| 291 | c = buf[0] = " 123456789"[u/100]; |
Denis Vlasenko | 1b6fa4c | 2007-03-24 12:08:36 +0000 | [diff] [blame] | 292 | if (c != ' ') fmt = "0123456789"; |
Denis Vlasenko | b308d81 | 2007-08-28 19:35:34 +0000 | [diff] [blame] | 293 | v = u % 10; |
| 294 | u = u / 10; |
| 295 | buf[1] = fmt[u%10]; |
| 296 | } else { |
| 297 | // value is < 10: use "9.2M" format |
| 298 | buf[0] = "0123456789"[u]; |
Denis Vlasenko | aae0311 | 2006-11-05 00:44:39 +0000 | [diff] [blame] | 299 | buf[1] = '.'; |
Denis Vlasenko | aae0311 | 2006-11-05 00:44:39 +0000 | [diff] [blame] | 300 | } |
Denis Vlasenko | b308d81 | 2007-08-28 19:35:34 +0000 | [diff] [blame] | 301 | buf[2] = "0123456789"[v]; |
Denis Vlasenko | 56ea65c | 2008-01-06 03:26:53 +0000 | [diff] [blame] | 302 | buf[3] = scale[idx]; /* typically scale = " kmgt..." */ |
Denis Vlasenko | aae0311 | 2006-11-05 00:44:39 +0000 | [diff] [blame] | 303 | } |
Denis Vlasenko | aae0311 | 2006-11-05 00:44:39 +0000 | [diff] [blame] | 304 | } |
| 305 | |
Denis Vlasenko | 56ea65c | 2008-01-06 03:26:53 +0000 | [diff] [blame] | 306 | /* Converts unsigned long long value into compact 5-char representation. |
| 307 | * String is not terminated (buf[5] is untouched) */ |
| 308 | void smart_ulltoa5(unsigned long long ul, char buf[6], const char *scale) |
| 309 | { |
| 310 | const char *fmt; |
| 311 | char c; |
| 312 | unsigned v, u, idx = 0; |
| 313 | |
| 314 | if (ul > 99999) { // do not scale if 99999 or less |
| 315 | ul *= 10; |
| 316 | do { |
| 317 | ul /= 1024; |
| 318 | idx++; |
| 319 | } while (ul >= 100000); |
| 320 | } |
| 321 | v = ul; // ullong divisions are expensive, avoid them |
| 322 | |
| 323 | fmt = " 123456789"; |
| 324 | u = v / 10; |
| 325 | v = v % 10; |
| 326 | if (!idx) { |
| 327 | // 99999 or less: use "12345" format |
| 328 | // u is value/10, v is last digit |
| 329 | c = buf[0] = " 123456789"[u/1000]; |
| 330 | if (c != ' ') fmt = "0123456789"; |
| 331 | c = buf[1] = fmt[u/100%10]; |
| 332 | if (c != ' ') fmt = "0123456789"; |
| 333 | c = buf[2] = fmt[u/10%10]; |
| 334 | if (c != ' ') fmt = "0123456789"; |
| 335 | buf[3] = fmt[u%10]; |
| 336 | buf[4] = "0123456789"[v]; |
| 337 | } else { |
| 338 | // value has been scaled into 0..9999.9 range |
| 339 | // u is value, v is 1/10ths (allows for 92.1M format) |
| 340 | if (u >= 100) { |
| 341 | // value is >= 100: use "1234M', " 123M" formats |
| 342 | c = buf[0] = " 123456789"[u/1000]; |
| 343 | if (c != ' ') fmt = "0123456789"; |
| 344 | c = buf[1] = fmt[u/100%10]; |
| 345 | if (c != ' ') fmt = "0123456789"; |
| 346 | v = u % 10; |
| 347 | u = u / 10; |
| 348 | buf[2] = fmt[u%10]; |
| 349 | } else { |
| 350 | // value is < 100: use "92.1M" format |
| 351 | c = buf[0] = " 123456789"[u/10]; |
| 352 | if (c != ' ') fmt = "0123456789"; |
| 353 | buf[1] = fmt[u%10]; |
| 354 | buf[2] = '.'; |
| 355 | } |
| 356 | buf[3] = "0123456789"[v]; |
| 357 | buf[4] = scale[idx]; /* typically scale = " kmgt..." */ |
| 358 | } |
| 359 | } |
| 360 | |
| 361 | |
Denis Vlasenko | 450196c | 2007-03-28 21:57:12 +0000 | [diff] [blame] | 362 | // Convert unsigned integer to ascii, writing into supplied buffer. |
| 363 | // A truncated result contains the first few digits of the result ala strncpy. |
| 364 | // Returns a pointer past last generated digit, does _not_ store NUL. |
Denis Vlasenko | aae0311 | 2006-11-05 00:44:39 +0000 | [diff] [blame] | 365 | void BUG_sizeof_unsigned_not_4(void); |
Denis Vlasenko | 10457b9 | 2007-03-27 22:01:31 +0000 | [diff] [blame] | 366 | char *utoa_to_buf(unsigned n, char *buf, unsigned buflen) |
Rob Landley | 5b88a38 | 2006-07-10 07:41:34 +0000 | [diff] [blame] | 367 | { |
Denis Vlasenko | aae0311 | 2006-11-05 00:44:39 +0000 | [diff] [blame] | 368 | unsigned i, out, res; |
| 369 | if (sizeof(unsigned) != 4) |
| 370 | BUG_sizeof_unsigned_not_4(); |
Rob Landley | 22d3958 | 2006-07-11 00:44:36 +0000 | [diff] [blame] | 371 | if (buflen) { |
Denis Vlasenko | aae0311 | 2006-11-05 00:44:39 +0000 | [diff] [blame] | 372 | out = 0; |
| 373 | for (i = 1000000000; i; i /= 10) { |
| 374 | res = n / i; |
| 375 | if (res || out || i == 1) { |
| 376 | if (!--buflen) break; |
Rob Landley | 22d3958 | 2006-07-11 00:44:36 +0000 | [diff] [blame] | 377 | out++; |
| 378 | n -= res*i; |
| 379 | *buf++ = '0' + res; |
| 380 | } |
Rob Landley | 5b88a38 | 2006-07-10 07:41:34 +0000 | [diff] [blame] | 381 | } |
| 382 | } |
Denis Vlasenko | 10457b9 | 2007-03-27 22:01:31 +0000 | [diff] [blame] | 383 | return buf; |
Rob Landley | 5b88a38 | 2006-07-10 07:41:34 +0000 | [diff] [blame] | 384 | } |
| 385 | |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 386 | // Convert signed integer to ascii, like utoa_to_buf() |
Denis Vlasenko | 10457b9 | 2007-03-27 22:01:31 +0000 | [diff] [blame] | 387 | char *itoa_to_buf(int n, char *buf, unsigned buflen) |
Rob Landley | 5b88a38 | 2006-07-10 07:41:34 +0000 | [diff] [blame] | 388 | { |
Rob Landley | 22d3958 | 2006-07-11 00:44:36 +0000 | [diff] [blame] | 389 | if (buflen && n<0) { |
Rob Landley | 5b88a38 | 2006-07-10 07:41:34 +0000 | [diff] [blame] | 390 | n = -n; |
| 391 | *buf++ = '-'; |
Rob Landley | 22d3958 | 2006-07-11 00:44:36 +0000 | [diff] [blame] | 392 | buflen--; |
Rob Landley | 5b88a38 | 2006-07-10 07:41:34 +0000 | [diff] [blame] | 393 | } |
Denis Vlasenko | 10457b9 | 2007-03-27 22:01:31 +0000 | [diff] [blame] | 394 | return utoa_to_buf((unsigned)n, buf, buflen); |
Rob Landley | 5b88a38 | 2006-07-10 07:41:34 +0000 | [diff] [blame] | 395 | } |
| 396 | |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 397 | // The following two functions use a static buffer, so calling either one a |
| 398 | // second time will overwrite previous results. |
| 399 | // |
| 400 | // The largest 32 bit integer is -2 billion plus null terminator, or 12 bytes. |
| 401 | // Int should always be 32 bits on any remotely Unix-like system, see |
| 402 | // http://www.unix.org/whitepapers/64bit.html for the reasons why. |
| 403 | |
Rob Landley | 23b61be | 2006-08-04 20:20:03 +0000 | [diff] [blame] | 404 | static char local_buf[12]; |
| 405 | |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 406 | // Convert unsigned integer to ascii using a static buffer (returned). |
Rob Landley | 23b61be | 2006-08-04 20:20:03 +0000 | [diff] [blame] | 407 | char *utoa(unsigned n) |
| 408 | { |
Denis Vlasenko | 10457b9 | 2007-03-27 22:01:31 +0000 | [diff] [blame] | 409 | *(utoa_to_buf(n, local_buf, sizeof(local_buf))) = '\0'; |
Rob Landley | 23b61be | 2006-08-04 20:20:03 +0000 | [diff] [blame] | 410 | |
| 411 | return local_buf; |
| 412 | } |
| 413 | |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 414 | // Convert signed integer to ascii using a static buffer (returned). |
Rob Landley | 5b88a38 | 2006-07-10 07:41:34 +0000 | [diff] [blame] | 415 | char *itoa(int n) |
| 416 | { |
Denis Vlasenko | 10457b9 | 2007-03-27 22:01:31 +0000 | [diff] [blame] | 417 | *(itoa_to_buf(n, local_buf, sizeof(local_buf))) = '\0'; |
Rob Landley | 5b88a38 | 2006-07-10 07:41:34 +0000 | [diff] [blame] | 418 | |
| 419 | return local_buf; |
| 420 | } |
Rob Landley | df822f2 | 2006-07-15 23:00:46 +0000 | [diff] [blame] | 421 | |
Denis Vlasenko | 3a34d0c | 2007-01-12 22:10:34 +0000 | [diff] [blame] | 422 | // Emit a string of hex representation of bytes |
| 423 | char *bin2hex(char *p, const char *cp, int count) |
| 424 | { |
| 425 | while (count) { |
| 426 | unsigned char c = *cp++; |
| 427 | /* put lowercase hex digits */ |
Denis Vlasenko | 98c0bba | 2007-01-26 23:31:05 +0000 | [diff] [blame] | 428 | *p++ = 0x20 | bb_hexdigits_upcase[c >> 4]; |
| 429 | *p++ = 0x20 | bb_hexdigits_upcase[c & 0xf]; |
Denis Vlasenko | 3a34d0c | 2007-01-12 22:10:34 +0000 | [diff] [blame] | 430 | count--; |
| 431 | } |
| 432 | return p; |
| 433 | } |
| 434 | |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 435 | // Die with an error message if we can't set gid. (Because resource limits may |
| 436 | // limit this user to a given number of processes, and if that fills up the |
| 437 | // setgid() will fail and we'll _still_be_root_, which is bad.) |
Rob Landley | df822f2 | 2006-07-15 23:00:46 +0000 | [diff] [blame] | 438 | void xsetgid(gid_t gid) |
| 439 | { |
Denis Vlasenko | 3bc1825 | 2007-05-02 23:01:32 +0000 | [diff] [blame] | 440 | if (setgid(gid)) bb_perror_msg_and_die("setgid"); |
Rob Landley | df822f2 | 2006-07-15 23:00:46 +0000 | [diff] [blame] | 441 | } |
| 442 | |
Denis Vlasenko | e1a0d48 | 2006-10-20 13:28:22 +0000 | [diff] [blame] | 443 | // Die with an error message if we can't set uid. (See xsetgid() for why.) |
Rob Landley | df822f2 | 2006-07-15 23:00:46 +0000 | [diff] [blame] | 444 | void xsetuid(uid_t uid) |
| 445 | { |
Denis Vlasenko | 3bc1825 | 2007-05-02 23:01:32 +0000 | [diff] [blame] | 446 | if (setuid(uid)) bb_perror_msg_and_die("setuid"); |
Rob Landley | df822f2 | 2006-07-15 23:00:46 +0000 | [diff] [blame] | 447 | } |
Rob Landley | 5343747 | 2006-07-16 08:14:35 +0000 | [diff] [blame] | 448 | |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 449 | // Return how long the file at fd is, if there's any way to determine it. |
Denis Vlasenko | b5c60fc | 2008-01-27 23:41:34 +0000 | [diff] [blame] | 450 | #ifdef UNUSED |
Rob Landley | 5343747 | 2006-07-16 08:14:35 +0000 | [diff] [blame] | 451 | off_t fdlength(int fd) |
| 452 | { |
| 453 | off_t bottom = 0, top = 0, pos; |
| 454 | long size; |
| 455 | |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 456 | // If the ioctl works for this, return it. |
Rob Landley | 5343747 | 2006-07-16 08:14:35 +0000 | [diff] [blame] | 457 | |
| 458 | if (ioctl(fd, BLKGETSIZE, &size) >= 0) return size*512; |
| 459 | |
Denis Vlasenko | 621204b | 2006-10-27 09:03:24 +0000 | [diff] [blame] | 460 | // FIXME: explain why lseek(SEEK_END) is not used here! |
| 461 | |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 462 | // If not, do a binary search for the last location we can read. (Some |
| 463 | // block devices don't do BLKGETSIZE right.) |
Rob Landley | 5343747 | 2006-07-16 08:14:35 +0000 | [diff] [blame] | 464 | |
| 465 | do { |
| 466 | char temp; |
| 467 | |
Denis Vlasenko | d25a264 | 2006-09-05 09:36:19 +0000 | [diff] [blame] | 468 | pos = bottom + (top - bottom) / 2; |
Rob Landley | 5343747 | 2006-07-16 08:14:35 +0000 | [diff] [blame] | 469 | |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 470 | // If we can read from the current location, it's bigger. |
Rob Landley | 5343747 | 2006-07-16 08:14:35 +0000 | [diff] [blame] | 471 | |
Denis Vlasenko | ea62077 | 2006-10-14 02:23:43 +0000 | [diff] [blame] | 472 | if (lseek(fd, pos, SEEK_SET)>=0 && safe_read(fd, &temp, 1)==1) { |
Rob Landley | 5343747 | 2006-07-16 08:14:35 +0000 | [diff] [blame] | 473 | if (bottom == top) bottom = top = (top+1) * 2; |
| 474 | else bottom = pos; |
| 475 | |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 476 | // If we can't, it's smaller. |
Rob Landley | 5343747 | 2006-07-16 08:14:35 +0000 | [diff] [blame] | 477 | |
| 478 | } else { |
| 479 | if (bottom == top) { |
| 480 | if (!top) return 0; |
| 481 | bottom = top/2; |
| 482 | } |
| 483 | else top = pos; |
| 484 | } |
| 485 | } while (bottom + 1 != top); |
| 486 | |
| 487 | return pos + 1; |
| 488 | } |
Denis Vlasenko | b5c60fc | 2008-01-27 23:41:34 +0000 | [diff] [blame] | 489 | #endif |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 490 | |
Denis Vlasenko | 4daad90 | 2007-09-27 10:20:47 +0000 | [diff] [blame] | 491 | int bb_putchar(int ch) |
| 492 | { |
| 493 | /* time.c needs putc(ch, stdout), not putchar(ch). |
| 494 | * it does "stdout = stderr;", but then glibc's putchar() |
| 495 | * doesn't work as expected. bad glibc, bad */ |
| 496 | return putc(ch, stdout); |
| 497 | } |
| 498 | |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 499 | // Die with an error message if we can't malloc() enough space and do an |
| 500 | // sprintf() into that space. |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 501 | char *xasprintf(const char *format, ...) |
| 502 | { |
| 503 | va_list p; |
| 504 | int r; |
| 505 | char *string_ptr; |
| 506 | |
| 507 | #if 1 |
| 508 | // GNU extension |
| 509 | va_start(p, format); |
| 510 | r = vasprintf(&string_ptr, format, p); |
| 511 | va_end(p); |
| 512 | #else |
| 513 | // Bloat for systems that haven't got the GNU extension. |
| 514 | va_start(p, format); |
| 515 | r = vsnprintf(NULL, 0, format, p); |
| 516 | va_end(p); |
| 517 | string_ptr = xmalloc(r+1); |
| 518 | va_start(p, format); |
| 519 | r = vsnprintf(string_ptr, r+1, format, p); |
| 520 | va_end(p); |
| 521 | #endif |
| 522 | |
Denis Vlasenko | b308d81 | 2007-08-28 19:35:34 +0000 | [diff] [blame] | 523 | if (r < 0) |
| 524 | bb_error_msg_and_die(bb_msg_memory_exhausted); |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 525 | return string_ptr; |
| 526 | } |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 527 | |
Denis Vlasenko | 7cfecc4 | 2006-12-18 22:32:45 +0000 | [diff] [blame] | 528 | #if 0 /* If we will ever meet a libc which hasn't [f]dprintf... */ |
| 529 | int fdprintf(int fd, const char *format, ...) |
Denis Vlasenko | c8e6e35 | 2006-12-18 22:10:24 +0000 | [diff] [blame] | 530 | { |
| 531 | va_list p; |
| 532 | int r; |
| 533 | char *string_ptr; |
| 534 | |
| 535 | #if 1 |
| 536 | // GNU extension |
| 537 | va_start(p, format); |
| 538 | r = vasprintf(&string_ptr, format, p); |
| 539 | va_end(p); |
| 540 | #else |
| 541 | // Bloat for systems that haven't got the GNU extension. |
| 542 | va_start(p, format); |
Denis Vlasenko | 384b1d1 | 2007-08-14 16:55:01 +0000 | [diff] [blame] | 543 | r = vsnprintf(NULL, 0, format, p) + 1; |
Denis Vlasenko | c8e6e35 | 2006-12-18 22:10:24 +0000 | [diff] [blame] | 544 | va_end(p); |
Denis Vlasenko | 384b1d1 | 2007-08-14 16:55:01 +0000 | [diff] [blame] | 545 | string_ptr = malloc(r); |
| 546 | if (string_ptr) { |
| 547 | va_start(p, format); |
| 548 | r = vsnprintf(string_ptr, r, format, p); |
| 549 | va_end(p); |
| 550 | } |
Denis Vlasenko | c8e6e35 | 2006-12-18 22:10:24 +0000 | [diff] [blame] | 551 | #endif |
| 552 | |
| 553 | if (r >= 0) { |
| 554 | full_write(fd, string_ptr, r); |
| 555 | free(string_ptr); |
| 556 | } |
| 557 | return r; |
| 558 | } |
| 559 | #endif |
| 560 | |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 561 | // Die with an error message if we can't copy an entire FILE * to stdout, then |
| 562 | // close that file. |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 563 | void xprint_and_close_file(FILE *file) |
| 564 | { |
Denis Vlasenko | ddec5af | 2006-10-26 23:25:17 +0000 | [diff] [blame] | 565 | fflush(stdout); |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 566 | // copyfd outputs error messages for us. |
Denis Vlasenko | a980165 | 2006-09-07 16:20:03 +0000 | [diff] [blame] | 567 | if (bb_copyfd_eof(fileno(file), 1) == -1) |
Denis Vlasenko | 335b63d | 2007-04-10 21:38:30 +0000 | [diff] [blame] | 568 | xfunc_die(); |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 569 | |
| 570 | fclose(file); |
| 571 | } |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 572 | |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 573 | // Die if we can't chdir to a new path. |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 574 | void xchdir(const char *path) |
| 575 | { |
| 576 | if (chdir(path)) |
| 577 | bb_perror_msg_and_die("chdir(%s)", path); |
| 578 | } |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 579 | |
Denis Vlasenko | 394eebe | 2008-02-25 20:30:24 +0000 | [diff] [blame] | 580 | void xchroot(const char *path) |
| 581 | { |
| 582 | if (chroot(path)) |
| 583 | bb_perror_msg_and_die("can't change root directory to %s", path); |
| 584 | } |
| 585 | |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 586 | // Print a warning message if opendir() fails, but don't die. |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 587 | DIR *warn_opendir(const char *path) |
| 588 | { |
| 589 | DIR *dp; |
| 590 | |
Denis Vlasenko | 1b6fa4c | 2007-03-24 12:08:36 +0000 | [diff] [blame] | 591 | dp = opendir(path); |
| 592 | if (!dp) |
Denis Vlasenko | 5a6aedd | 2007-05-26 16:44:20 +0000 | [diff] [blame] | 593 | bb_perror_msg("can't open '%s'", path); |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 594 | return dp; |
| 595 | } |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 596 | |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 597 | // Die with an error message if opendir() fails. |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 598 | DIR *xopendir(const char *path) |
| 599 | { |
| 600 | DIR *dp; |
| 601 | |
Denis Vlasenko | 1b6fa4c | 2007-03-24 12:08:36 +0000 | [diff] [blame] | 602 | dp = opendir(path); |
| 603 | if (!dp) |
Denis Vlasenko | 5a6aedd | 2007-05-26 16:44:20 +0000 | [diff] [blame] | 604 | bb_perror_msg_and_die("can't open '%s'", path); |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 605 | return dp; |
| 606 | } |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 607 | |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 608 | // 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] | 609 | int xsocket(int domain, int type, int protocol) |
| 610 | { |
| 611 | int r = socket(domain, type, protocol); |
| 612 | |
Denis Vlasenko | 1d6a4ae | 2007-04-13 21:26:20 +0000 | [diff] [blame] | 613 | if (r < 0) { |
| 614 | /* Hijack vaguely related config option */ |
| 615 | #if ENABLE_VERBOSE_RESOLUTION_ERRORS |
| 616 | const char *s = "INET"; |
| 617 | if (domain == AF_PACKET) s = "PACKET"; |
| 618 | if (domain == AF_NETLINK) s = "NETLINK"; |
| 619 | USE_FEATURE_IPV6(if (domain == AF_INET6) s = "INET6";) |
| 620 | bb_perror_msg_and_die("socket(AF_%s)", s); |
| 621 | #else |
| 622 | bb_perror_msg_and_die("socket"); |
| 623 | #endif |
| 624 | } |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 625 | |
| 626 | return r; |
| 627 | } |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 628 | |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 629 | // 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] | 630 | void xbind(int sockfd, struct sockaddr *my_addr, socklen_t addrlen) |
| 631 | { |
| 632 | if (bind(sockfd, my_addr, addrlen)) bb_perror_msg_and_die("bind"); |
| 633 | } |
Rob Landley | 23b61be | 2006-08-04 20:20:03 +0000 | [diff] [blame] | 634 | |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 635 | // 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] | 636 | void xlisten(int s, int backlog) |
| 637 | { |
| 638 | if (listen(s, backlog)) bb_perror_msg_and_die("listen"); |
| 639 | } |
Bernhard Reutner-Fischer | 57b5667 | 2006-09-11 09:18:09 +0000 | [diff] [blame] | 640 | |
Denis Vlasenko | 5a6aedd | 2007-05-26 16:44:20 +0000 | [diff] [blame] | 641 | /* Die with an error message if sendto failed. |
| 642 | * Return bytes sent otherwise */ |
Bernhard Reutner-Fischer | b290889 | 2007-04-12 11:34:39 +0000 | [diff] [blame] | 643 | ssize_t xsendto(int s, const void *buf, size_t len, const struct sockaddr *to, |
| 644 | socklen_t tolen) |
| 645 | { |
| 646 | ssize_t ret = sendto(s, buf, len, 0, to, tolen); |
| 647 | if (ret < 0) { |
| 648 | if (ENABLE_FEATURE_CLEAN_UP) |
| 649 | close(s); |
| 650 | bb_perror_msg_and_die("sendto"); |
| 651 | } |
| 652 | return ret; |
| 653 | } |
| 654 | |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 655 | // xstat() - a stat() which dies on failure with meaningful error message |
Denis Vlasenko | 434ad54 | 2007-01-27 13:45:17 +0000 | [diff] [blame] | 656 | void xstat(const char *name, struct stat *stat_buf) |
Bernhard Reutner-Fischer | 57b5667 | 2006-09-11 09:18:09 +0000 | [diff] [blame] | 657 | { |
Denis Vlasenko | 9213a9e | 2006-09-17 16:28:10 +0000 | [diff] [blame] | 658 | if (stat(name, stat_buf)) |
Denis Vlasenko | b633224 | 2006-10-03 19:57:50 +0000 | [diff] [blame] | 659 | bb_perror_msg_and_die("can't stat '%s'", name); |
Bernhard Reutner-Fischer | 57b5667 | 2006-09-11 09:18:09 +0000 | [diff] [blame] | 660 | } |
Bernhard Reutner-Fischer | 57b5667 | 2006-09-11 09:18:09 +0000 | [diff] [blame] | 661 | |
Denis Vlasenko | d46d3c2 | 2007-02-06 19:28:50 +0000 | [diff] [blame] | 662 | // selinux_or_die() - die if SELinux is disabled. |
| 663 | void selinux_or_die(void) |
| 664 | { |
| 665 | #if ENABLE_SELINUX |
| 666 | int rc = is_selinux_enabled(); |
| 667 | if (rc == 0) { |
| 668 | bb_error_msg_and_die("SELinux is disabled"); |
| 669 | } else if (rc < 0) { |
| 670 | bb_error_msg_and_die("is_selinux_enabled() failed"); |
| 671 | } |
| 672 | #else |
| 673 | bb_error_msg_and_die("SELinux support is disabled"); |
| 674 | #endif |
| 675 | } |
| 676 | |
Rob Landley | fbdf121 | 2006-09-20 22:06:01 +0000 | [diff] [blame] | 677 | /* It is perfectly ok to pass in a NULL for either width or for |
Denis Vlasenko | 621204b | 2006-10-27 09:03:24 +0000 | [diff] [blame] | 678 | * height, in which case that value will not be set. */ |
Denis Vlasenko | f893da8 | 2007-08-09 08:27:24 +0000 | [diff] [blame] | 679 | int get_terminal_width_height(int fd, int *width, int *height) |
Rob Landley | fbdf121 | 2006-09-20 22:06:01 +0000 | [diff] [blame] | 680 | { |
| 681 | struct winsize win = { 0, 0, 0, 0 }; |
| 682 | int ret = ioctl(fd, TIOCGWINSZ, &win); |
Denis Vlasenko | 621204b | 2006-10-27 09:03:24 +0000 | [diff] [blame] | 683 | |
| 684 | if (height) { |
| 685 | if (!win.ws_row) { |
| 686 | char *s = getenv("LINES"); |
| 687 | if (s) win.ws_row = atoi(s); |
| 688 | } |
| 689 | if (win.ws_row <= 1 || win.ws_row >= 30000) |
| 690 | win.ws_row = 24; |
| 691 | *height = (int) win.ws_row; |
Rob Landley | fbdf121 | 2006-09-20 22:06:01 +0000 | [diff] [blame] | 692 | } |
Denis Vlasenko | 621204b | 2006-10-27 09:03:24 +0000 | [diff] [blame] | 693 | |
| 694 | if (width) { |
| 695 | if (!win.ws_col) { |
| 696 | char *s = getenv("COLUMNS"); |
| 697 | if (s) win.ws_col = atoi(s); |
| 698 | } |
| 699 | if (win.ws_col <= 1 || win.ws_col >= 30000) |
| 700 | win.ws_col = 80; |
| 701 | *width = (int) win.ws_col; |
Rob Landley | fbdf121 | 2006-09-20 22:06:01 +0000 | [diff] [blame] | 702 | } |
Rob Landley | fbdf121 | 2006-09-20 22:06:01 +0000 | [diff] [blame] | 703 | |
| 704 | return ret; |
| 705 | } |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 706 | |
| 707 | void ioctl_or_perror_and_die(int fd, int request, void *argp, const char *fmt,...) |
| 708 | { |
| 709 | va_list p; |
| 710 | |
| 711 | if (ioctl(fd, request, argp) < 0) { |
| 712 | va_start(p, fmt); |
Denis Vlasenko | ab9c44b | 2007-08-15 20:07:53 +0000 | [diff] [blame] | 713 | bb_verror_msg(fmt, p, strerror(errno)); |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 714 | /* xfunc_die can actually longjmp, so be nice */ |
| 715 | va_end(p); |
| 716 | xfunc_die(); |
| 717 | } |
| 718 | } |
| 719 | |
| 720 | int ioctl_or_perror(int fd, int request, void *argp, const char *fmt,...) |
| 721 | { |
| 722 | va_list p; |
| 723 | int ret = ioctl(fd, request, argp); |
| 724 | |
| 725 | if (ret < 0) { |
| 726 | va_start(p, fmt); |
Denis Vlasenko | ab9c44b | 2007-08-15 20:07:53 +0000 | [diff] [blame] | 727 | bb_verror_msg(fmt, p, strerror(errno)); |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 728 | va_end(p); |
| 729 | } |
| 730 | return ret; |
| 731 | } |
| 732 | |
| 733 | #if ENABLE_IOCTL_HEX2STR_ERROR |
| 734 | int bb_ioctl_or_warn(int fd, int request, void *argp, const char *ioctl_name) |
| 735 | { |
| 736 | int ret; |
Denis Vlasenko | 2f6ae43 | 2007-07-19 22:50:47 +0000 | [diff] [blame] | 737 | |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 738 | ret = ioctl(fd, request, argp); |
| 739 | if (ret < 0) |
Denis Vlasenko | 0c97c9d | 2007-10-01 11:58:38 +0000 | [diff] [blame] | 740 | bb_simple_perror_msg(ioctl_name); |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 741 | return ret; |
| 742 | } |
| 743 | void bb_xioctl(int fd, int request, void *argp, const char *ioctl_name) |
| 744 | { |
| 745 | if (ioctl(fd, request, argp) < 0) |
Denis Vlasenko | 0c97c9d | 2007-10-01 11:58:38 +0000 | [diff] [blame] | 746 | bb_simple_perror_msg_and_die(ioctl_name); |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 747 | } |
| 748 | #else |
| 749 | int bb_ioctl_or_warn(int fd, int request, void *argp) |
| 750 | { |
| 751 | int ret; |
Denis Vlasenko | 2f6ae43 | 2007-07-19 22:50:47 +0000 | [diff] [blame] | 752 | |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 753 | ret = ioctl(fd, request, argp); |
| 754 | if (ret < 0) |
| 755 | bb_perror_msg("ioctl %#x failed", request); |
| 756 | return ret; |
| 757 | } |
| 758 | void bb_xioctl(int fd, int request, void *argp) |
| 759 | { |
| 760 | if (ioctl(fd, request, argp) < 0) |
| 761 | bb_perror_msg_and_die("ioctl %#x failed", request); |
| 762 | } |
| 763 | #endif |