cut 0.5k off mkfs.minix
[oweals/busybox.git] / libbb / xfuncs.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Utility routines.
4  *
5  * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
6  * Copyright (C) 2006 Rob Landley
7  * Copyright (C) 2006 Denis Vlasenko
8  *
9  * Licensed under GPL version 2, see file LICENSE in this tarball for details.
10  */
11
12 #include "busybox.h"
13
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
18 #ifndef DMALLOC
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  */
23 // Die if we can't allocate size bytes of memory.
24 void *xmalloc(size_t size)
25 {
26         void *ptr = malloc(size);
27         if (ptr == NULL && size != 0)
28                 bb_error_msg_and_die(bb_msg_memory_exhausted);
29         return ptr;
30 }
31
32 // Die if we can't resize previously allocated memory.  (This returns a pointer
33 // to the new memory, which may or may not be the same as the old memory.
34 // It'll copy the contents to a new chunk and free the old one if necessary.)
35 void *xrealloc(void *ptr, size_t size)
36 {
37         ptr = realloc(ptr, size);
38         if (ptr == NULL && size != 0)
39                 bb_error_msg_and_die(bb_msg_memory_exhausted);
40         return ptr;
41 }
42 #endif /* DMALLOC */
43
44 // Die if we can't allocate and zero size bytes of memory.
45 void *xzalloc(size_t size)
46 {
47         void *ptr = xmalloc(size);
48         memset(ptr, 0, size);
49         return ptr;
50 }
51
52 // Die if we can't copy a string to freshly allocated memory.
53 char * xstrdup(const char *s)
54 {
55         char *t;
56
57         if (s == NULL)
58                 return NULL;
59
60         t = strdup(s);
61
62         if (t == NULL)
63                 bb_error_msg_and_die(bb_msg_memory_exhausted);
64
65         return t;
66 }
67
68 // Die if we can't allocate n+1 bytes (space for the null terminator) and copy
69 // the (possibly truncated to length n) string into it.
70 char * xstrndup(const char *s, int n)
71 {
72         int m;
73         char *t;
74
75         if (ENABLE_DEBUG && s == NULL)
76                 bb_error_msg_and_die("xstrndup bug");
77
78         /* We can just xmalloc(n+1) and strncpy into it, */
79         /* but think about xstrndup("abc", 10000) wastage! */
80         m = n;
81         t = (char*) s;
82         while (m) {
83                 if (!*t) break;
84                 m--; t++;
85         }
86         n = n - m;
87         t = xmalloc(n + 1);
88         t[n] = '\0';
89
90         return memcpy(t,s,n);
91 }
92
93 // Die if we can't open a file and return a FILE * to it.
94 // Notice we haven't got xfread(), This is for use with fscanf() and friends.
95 FILE *xfopen(const char *path, const char *mode)
96 {
97         FILE *fp = fopen(path, mode);
98         if (fp == NULL)
99                 bb_perror_msg_and_die("%s", path);
100         return fp;
101 }
102
103 // Die if we can't open an existing file and return an fd.
104 int xopen(const char *pathname, int flags)
105 {
106         //if (ENABLE_DEBUG && (flags & O_CREAT))
107         //      bb_error_msg_and_die("xopen() with O_CREAT");
108
109         return xopen3(pathname, flags, 0666);
110 }
111
112 // Die if we can't open a new file and return an fd.
113 int xopen3(const char *pathname, int flags, int mode)
114 {
115         int ret;
116
117         ret = open(pathname, flags, mode);
118         if (ret < 0) {
119                 bb_perror_msg_and_die("%s", pathname);
120         }
121         return ret;
122 }
123
124 /*
125 int ndelay_off(int fd)
126 {
127         return fcntl(fd,F_SETFL,fcntl(fd,F_GETFL,0) & ~O_NONBLOCK);
128 }
129 */
130 // Turn on nonblocking I/O on a fd
131 int ndelay_on(int fd)
132 {
133         return fcntl(fd,F_SETFL,fcntl(fd,F_GETFL,0) | O_NONBLOCK);
134 }
135
136 // Die with an error message if we can't write the entire buffer.
137 void xwrite(int fd, const void *buf, size_t count)
138 {
139         if (count) {
140                 ssize_t size = full_write(fd, buf, count);
141                 if (size != count)
142                         bb_error_msg_and_die("short write");
143         }
144 }
145
146 // Die with an error message if we can't lseek to the right spot.
147 off_t xlseek(int fd, off_t offset, int whence)
148 {
149         off_t off = lseek(fd, offset, whence);
150         if (off == (off_t)-1) {
151                 if (whence == SEEK_SET)
152                         bb_perror_msg_and_die("lseek(%"OFF_FMT"u)", offset);
153                 bb_perror_msg_and_die("lseek");
154         }
155         return off;
156 }
157
158 // Die with supplied filename if this FILE * has ferror set.
159 void die_if_ferror(FILE *fp, const char *fn)
160 {
161         if (ferror(fp)) {
162                 bb_error_msg_and_die("%s: I/O error", fn);
163         }
164 }
165
166 // Die with an error message if stdout has ferror set.
167 void die_if_ferror_stdout(void)
168 {
169         die_if_ferror(stdout, bb_msg_standard_output);
170 }
171
172 // Die with an error message if we have trouble flushing stdout.
173 void xfflush_stdout(void)
174 {
175         if (fflush(stdout)) {
176                 bb_perror_msg_and_die(bb_msg_standard_output);
177         }
178 }
179
180 // This does a fork/exec in one call, using vfork().  Return PID of new child,
181 // -1 for failure.  Runs argv[0], searching path if that has no / in it.
182 pid_t spawn(char **argv)
183 {
184         static int failed;
185         pid_t pid;
186         void *app = ENABLE_FEATURE_SH_STANDALONE_SHELL ? find_applet_by_name(argv[0]) : 0;
187
188         // Be nice to nommu machines.
189         failed = 0;
190         pid = vfork();
191         if (pid < 0) return pid;
192         if (!pid) {
193                 execvp(app ? CONFIG_BUSYBOX_EXEC_PATH : *argv, argv);
194
195                 // We're sharing a stack with blocked parent, let parent know we failed
196                 // and then exit to unblock parent (but don't run atexit() stuff, which
197                 // would screw up parent.)
198
199                 failed = -1;
200                 _exit(0);
201         }
202         return failed ? failed : pid;
203 }
204
205 // Die with an error message if we can't spawn a child process.
206 pid_t xspawn(char **argv)
207 {
208         pid_t pid = spawn(argv);
209         if (pid < 0) bb_perror_msg_and_die("%s", *argv);
210         return pid;
211 }
212
213 // Wait for the specified child PID to exit, returning child's error return.
214 int wait4pid(int pid)
215 {
216         int status;
217
218         if (pid == -1 || waitpid(pid, &status, 0) == -1) return -1;
219         if (WIFEXITED(status)) return WEXITSTATUS(status);
220         if (WIFSIGNALED(status)) return WTERMSIG(status);
221         return 0;
222 }
223
224 void xsetenv(const char *key, const char *value)
225 {
226         if (setenv(key, value, 1))
227                 bb_error_msg_and_die(bb_msg_memory_exhausted);
228 }
229
230 // Converts unsigned long long value into compact 4-char
231 // representation. Examples: "1234", "1.2k", " 27M", "123T"
232 // Fifth char is always '\0'
233 void smart_ulltoa5(unsigned long long ul, char buf[5])
234 {
235         char *fmt;
236         char c;
237         unsigned v,idx = 0;
238         ul *= 10;
239         if (ul > 9999*10) { // do not scale if 9999 or less
240                 while (ul >= 10000) {
241                         ul /= 1024;
242                         idx++;
243                 }
244         }
245         v = ul; // ullong divisions are expensive, avoid them
246
247         fmt = " 123456789";
248         if (!idx) {             // 9999 or less: use 1234 format
249                 c = buf[0] = " 123456789"[v/10000];
250                 if (c!=' ') fmt = "0123456789";
251                 c = buf[1] = fmt[v/1000%10];
252                 if (c!=' ') fmt = "0123456789";
253                 buf[2] = fmt[v/100%10];
254                 buf[3] = "0123456789"[v/10%10];
255         } else {
256                 if (v>=10*10) { // scaled value is >=10: use 123M format
257                         c = buf[0] = " 123456789"[v/1000];
258                         if (c!=' ') fmt = "0123456789";
259                         buf[1] = fmt[v/100%10];
260                         buf[2] = "0123456789"[v/10%10];
261                 } else {        // scaled value is <10: use 1.2M format
262                         buf[0] = "0123456789"[v/10];
263                         buf[1] = '.';
264                         buf[2] = "0123456789"[v%10];
265                 }
266                 // see http://en.wikipedia.org/wiki/Tera
267                 buf[3] = " kMGTPEZY"[idx];
268         }
269         buf[4] = '\0';
270 }
271
272 // Convert unsigned integer to ascii, writing into supplied buffer.  A
273 // truncated result is always null terminated (unless buflen is 0), and
274 // contains the first few digits of the result ala strncpy.
275 void BUG_sizeof_unsigned_not_4(void);
276 void utoa_to_buf(unsigned n, char *buf, unsigned buflen)
277 {
278         unsigned i, out, res;
279         if (sizeof(unsigned) != 4)
280                 BUG_sizeof_unsigned_not_4();
281         if (buflen) {
282                 out = 0;
283                 for (i = 1000000000; i; i /= 10) {
284                         res = n / i;
285                         if (res || out || i == 1) {
286                                 if (!--buflen) break;
287                                 out++;
288                                 n -= res*i;
289                                 *buf++ = '0' + res;
290                         }
291                 }
292                 *buf = '\0';
293         }
294 }
295
296 // Convert signed integer to ascii, like utoa_to_buf()
297 void itoa_to_buf(int n, char *buf, unsigned buflen)
298 {
299         if (buflen && n<0) {
300                 n = -n;
301                 *buf++ = '-';
302                 buflen--;
303         }
304         utoa_to_buf((unsigned)n, buf, buflen);
305 }
306
307 // The following two functions use a static buffer, so calling either one a
308 // second time will overwrite previous results.
309 //
310 // The largest 32 bit integer is -2 billion plus null terminator, or 12 bytes.
311 // Int should always be 32 bits on any remotely Unix-like system, see
312 // http://www.unix.org/whitepapers/64bit.html for the reasons why.
313
314 static char local_buf[12];
315
316 // Convert unsigned integer to ascii using a static buffer (returned).
317 char *utoa(unsigned n)
318 {
319         utoa_to_buf(n, local_buf, sizeof(local_buf));
320
321         return local_buf;
322 }
323
324 // Convert signed integer to ascii using a static buffer (returned).
325 char *itoa(int n)
326 {
327         itoa_to_buf(n, local_buf, sizeof(local_buf));
328
329         return local_buf;
330 }
331
332 // Die with an error message if we can't set gid.  (Because resource limits may
333 // limit this user to a given number of processes, and if that fills up the
334 // setgid() will fail and we'll _still_be_root_, which is bad.)
335 void xsetgid(gid_t gid)
336 {
337         if (setgid(gid)) bb_error_msg_and_die("setgid");
338 }
339
340 // Die with an error message if we can't set uid.  (See xsetgid() for why.)
341 void xsetuid(uid_t uid)
342 {
343         if (setuid(uid)) bb_error_msg_and_die("setuid");
344 }
345
346 // Return how long the file at fd is, if there's any way to determine it.
347 off_t fdlength(int fd)
348 {
349         off_t bottom = 0, top = 0, pos;
350         long size;
351
352         // If the ioctl works for this, return it.
353
354         if (ioctl(fd, BLKGETSIZE, &size) >= 0) return size*512;
355
356         // FIXME: explain why lseek(SEEK_END) is not used here!
357
358         // If not, do a binary search for the last location we can read.  (Some
359         // block devices don't do BLKGETSIZE right.)
360
361         do {
362                 char temp;
363
364                 pos = bottom + (top - bottom) / 2;
365
366                 // If we can read from the current location, it's bigger.
367
368                 if (lseek(fd, pos, SEEK_SET)>=0 && safe_read(fd, &temp, 1)==1) {
369                         if (bottom == top) bottom = top = (top+1) * 2;
370                         else bottom = pos;
371
372                 // If we can't, it's smaller.
373
374                 } else {
375                         if (bottom == top) {
376                                 if (!top) return 0;
377                                 bottom = top/2;
378                         }
379                         else top = pos;
380                 }
381         } while (bottom + 1 != top);
382
383         return pos + 1;
384 }
385
386 // Die with an error message if we can't malloc() enough space and do an
387 // sprintf() into that space.
388 char *xasprintf(const char *format, ...)
389 {
390         va_list p;
391         int r;
392         char *string_ptr;
393
394 #if 1
395         // GNU extension
396         va_start(p, format);
397         r = vasprintf(&string_ptr, format, p);
398         va_end(p);
399 #else
400         // Bloat for systems that haven't got the GNU extension.
401         va_start(p, format);
402         r = vsnprintf(NULL, 0, format, p);
403         va_end(p);
404         string_ptr = xmalloc(r+1);
405         va_start(p, format);
406         r = vsnprintf(string_ptr, r+1, format, p);
407         va_end(p);
408 #endif
409
410         if (r < 0) bb_error_msg_and_die(bb_msg_memory_exhausted);
411         return string_ptr;
412 }
413
414 // Die with an error message if we can't copy an entire FILE * to stdout, then
415 // close that file.
416 void xprint_and_close_file(FILE *file)
417 {
418         fflush(stdout);
419         // copyfd outputs error messages for us.
420         if (bb_copyfd_eof(fileno(file), 1) == -1)
421                 exit(xfunc_error_retval);
422
423         fclose(file);
424 }
425
426 // Die if we can't chdir to a new path.
427 void xchdir(const char *path)
428 {
429         if (chdir(path))
430                 bb_perror_msg_and_die("chdir(%s)", path);
431 }
432
433 // Print a warning message if opendir() fails, but don't die.
434 DIR *warn_opendir(const char *path)
435 {
436         DIR *dp;
437
438         if ((dp = opendir(path)) == NULL) {
439                 bb_perror_msg("cannot open '%s'", path);
440                 return NULL;
441         }
442         return dp;
443 }
444
445 // Die with an error message if opendir() fails.
446 DIR *xopendir(const char *path)
447 {
448         DIR *dp;
449
450         if ((dp = opendir(path)) == NULL)
451                 bb_perror_msg_and_die("cannot open '%s'", path);
452         return dp;
453 }
454
455 #ifndef BB_NOMMU
456 // Die with an error message if we can't daemonize.
457 void xdaemon(int nochdir, int noclose)
458 {
459         if (daemon(nochdir, noclose))
460                 bb_perror_msg_and_die("daemon");
461 }
462 #endif
463
464 // Die with an error message if we can't open a new socket.
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
474 // Die with an error message if we can't bind a socket to an address.
475 void xbind(int sockfd, struct sockaddr *my_addr, socklen_t addrlen)
476 {
477         if (bind(sockfd, my_addr, addrlen)) bb_perror_msg_and_die("bind");
478 }
479
480 // Die with an error message if we can't listen for connections on a socket.
481 void xlisten(int s, int backlog)
482 {
483         if (listen(s, backlog)) bb_perror_msg_and_die("listen");
484 }
485
486 // xstat() - a stat() which dies on failure with meaningful error message
487 void xstat(char *name, struct stat *stat_buf)
488 {
489         if (stat(name, stat_buf))
490                 bb_perror_msg_and_die("can't stat '%s'", name);
491 }
492
493 /* It is perfectly ok to pass in a NULL for either width or for
494  * height, in which case that value will not be set.  */
495 int get_terminal_width_height(int fd, int *width, int *height)
496 {
497         struct winsize win = { 0, 0, 0, 0 };
498         int ret = ioctl(fd, TIOCGWINSZ, &win);
499
500         if (height) {
501                 if (!win.ws_row) {
502                         char *s = getenv("LINES");
503                         if (s) win.ws_row = atoi(s);
504                 }
505                 if (win.ws_row <= 1 || win.ws_row >= 30000)
506                         win.ws_row = 24;
507                 *height = (int) win.ws_row;
508         }
509
510         if (width) {
511                 if (!win.ws_col) {
512                         char *s = getenv("COLUMNS");
513                         if (s) win.ws_col = atoi(s);
514                 }
515                 if (win.ws_col <= 1 || win.ws_col >= 30000)
516                         win.ws_col = 80;
517                 *width = (int) win.ws_col;
518         }
519
520         return ret;
521 }