clean up accumulated whitespace damage
[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--;
85                 t++;
86         }
87         n -= m;
88         t = xmalloc(n + 1);
89         t[n] = '\0';
90
91         return memcpy(t, s, n);
92 }
93
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.
96 FILE *xfopen(const char *path, const char *mode)
97 {
98         FILE *fp = fopen(path, mode);
99         if (fp == NULL)
100                 bb_perror_msg_and_die("%s", path);
101         return fp;
102 }
103
104 // Die if we can't open an existing file and return an fd.
105 int xopen(const char *pathname, int flags)
106 {
107         //if (ENABLE_DEBUG && (flags & O_CREAT))
108         //      bb_error_msg_and_die("xopen() with O_CREAT");
109
110         return xopen3(pathname, flags, 0666);
111 }
112
113 // Die if we can't open a new file and return an fd.
114 int xopen3(const char *pathname, int flags, int mode)
115 {
116         int ret;
117
118         ret = open(pathname, flags, mode);
119         if (ret < 0) {
120                 bb_perror_msg_and_die("%s", pathname);
121         }
122         return ret;
123 }
124
125 // Turn on nonblocking I/O on a fd
126 int ndelay_on(int fd)
127 {
128         return fcntl(fd,F_SETFL,fcntl(fd,F_GETFL,0) | O_NONBLOCK);
129 }
130
131 int ndelay_off(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         /* Why static? */
185         static int failed;
186         pid_t pid;
187
188         // Be nice to nommu machines.
189         failed = 0;
190         pid = vfork();
191         if (pid < 0) return pid;
192         if (!pid) {
193                 BB_EXECVP(argv[0], 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 = errno;
200                 _exit(0);
201         }
202         if (failed) {
203                 errno = failed;
204                 return -1;
205         }
206         return pid;
207 }
208
209 // Die with an error message if we can't spawn a child process.
210 pid_t xspawn(char **argv)
211 {
212         pid_t pid = spawn(argv);
213         if (pid < 0) bb_perror_msg_and_die("%s", *argv);
214         return pid;
215 }
216
217 // Wait for the specified child PID to exit, returning child's error return.
218 int wait4pid(int pid)
219 {
220         int status;
221
222         if (pid == -1 || waitpid(pid, &status, 0) == -1) return -1;
223         if (WIFEXITED(status)) return WEXITSTATUS(status);
224         if (WIFSIGNALED(status)) return WTERMSIG(status);
225         return 0;
226 }
227
228 void xsetenv(const char *key, const char *value)
229 {
230         if (setenv(key, value, 1))
231                 bb_error_msg_and_die(bb_msg_memory_exhausted);
232 }
233
234 // Converts unsigned long long value into compact 4-char
235 // representation. Examples: "1234", "1.2k", " 27M", "123T"
236 // Fifth char is always '\0'
237 void smart_ulltoa5(unsigned long long ul, char buf[5])
238 {
239         const char *fmt;
240         char c;
241         unsigned v,idx = 0;
242         ul *= 10;
243         if (ul > 9999*10) { // do not scale if 9999 or less
244                 while (ul >= 10000) {
245                         ul /= 1024;
246                         idx++;
247                 }
248         }
249         v = ul; // ullong divisions are expensive, avoid them
250
251         fmt = " 123456789";
252         if (!idx) {             // 9999 or less: use 1234 format
253                 c = buf[0] = " 123456789"[v/10000];
254                 if (c!=' ') fmt = "0123456789";
255                 c = buf[1] = fmt[v/1000%10];
256                 if (c!=' ') fmt = "0123456789";
257                 buf[2] = fmt[v/100%10];
258                 buf[3] = "0123456789"[v/10%10];
259         } else {
260                 if (v>=10*10) { // scaled value is >=10: use 123M format
261                         c = buf[0] = " 123456789"[v/1000];
262                         if (c!=' ') fmt = "0123456789";
263                         buf[1] = fmt[v/100%10];
264                         buf[2] = "0123456789"[v/10%10];
265                 } else {        // scaled value is <10: use 1.2M format
266                         buf[0] = "0123456789"[v/10];
267                         buf[1] = '.';
268                         buf[2] = "0123456789"[v%10];
269                 }
270                 // see http://en.wikipedia.org/wiki/Tera
271                 buf[3] = " kMGTPEZY"[idx];
272         }
273         buf[4] = '\0';
274 }
275
276 // Convert unsigned integer to ascii, writing into supplied buffer.  A
277 // truncated result is always null terminated (unless buflen is 0), and
278 // contains the first few digits of the result ala strncpy.
279 void BUG_sizeof_unsigned_not_4(void);
280 void utoa_to_buf(unsigned n, char *buf, unsigned buflen)
281 {
282         unsigned i, out, res;
283         if (sizeof(unsigned) != 4)
284                 BUG_sizeof_unsigned_not_4();
285         if (buflen) {
286                 out = 0;
287                 for (i = 1000000000; i; i /= 10) {
288                         res = n / i;
289                         if (res || out || i == 1) {
290                                 if (!--buflen) break;
291                                 out++;
292                                 n -= res*i;
293                                 *buf++ = '0' + res;
294                         }
295                 }
296                 *buf = '\0';
297         }
298 }
299
300 // Convert signed integer to ascii, like utoa_to_buf()
301 void itoa_to_buf(int n, char *buf, unsigned buflen)
302 {
303         if (buflen && n<0) {
304                 n = -n;
305                 *buf++ = '-';
306                 buflen--;
307         }
308         utoa_to_buf((unsigned)n, buf, buflen);
309 }
310
311 // The following two functions use a static buffer, so calling either one a
312 // second time will overwrite previous results.
313 //
314 // The largest 32 bit integer is -2 billion plus null terminator, or 12 bytes.
315 // Int should always be 32 bits on any remotely Unix-like system, see
316 // http://www.unix.org/whitepapers/64bit.html for the reasons why.
317
318 static char local_buf[12];
319
320 // Convert unsigned integer to ascii using a static buffer (returned).
321 char *utoa(unsigned n)
322 {
323         utoa_to_buf(n, local_buf, sizeof(local_buf));
324
325         return local_buf;
326 }
327
328 // Convert signed integer to ascii using a static buffer (returned).
329 char *itoa(int n)
330 {
331         itoa_to_buf(n, local_buf, sizeof(local_buf));
332
333         return local_buf;
334 }
335
336 // Emit a string of hex representation of bytes
337 char *bin2hex(char *p, const char *cp, int count)
338 {
339         while (count) {
340                 unsigned char c = *cp++;
341                 /* put lowercase hex digits */
342                 *p++ = 0x20 | bb_hexdigits_upcase[c >> 4];
343                 *p++ = 0x20 | bb_hexdigits_upcase[c & 0xf];
344                 count--;
345         }
346         return p;
347 }
348
349 // Die with an error message if we can't set gid.  (Because resource limits may
350 // limit this user to a given number of processes, and if that fills up the
351 // setgid() will fail and we'll _still_be_root_, which is bad.)
352 void xsetgid(gid_t gid)
353 {
354         if (setgid(gid)) bb_error_msg_and_die("setgid");
355 }
356
357 // Die with an error message if we can't set uid.  (See xsetgid() for why.)
358 void xsetuid(uid_t uid)
359 {
360         if (setuid(uid)) bb_error_msg_and_die("setuid");
361 }
362
363 // Return how long the file at fd is, if there's any way to determine it.
364 off_t fdlength(int fd)
365 {
366         off_t bottom = 0, top = 0, pos;
367         long size;
368
369         // If the ioctl works for this, return it.
370
371         if (ioctl(fd, BLKGETSIZE, &size) >= 0) return size*512;
372
373         // FIXME: explain why lseek(SEEK_END) is not used here!
374
375         // If not, do a binary search for the last location we can read.  (Some
376         // block devices don't do BLKGETSIZE right.)
377
378         do {
379                 char temp;
380
381                 pos = bottom + (top - bottom) / 2;
382
383                 // If we can read from the current location, it's bigger.
384
385                 if (lseek(fd, pos, SEEK_SET)>=0 && safe_read(fd, &temp, 1)==1) {
386                         if (bottom == top) bottom = top = (top+1) * 2;
387                         else bottom = pos;
388
389                 // If we can't, it's smaller.
390
391                 } else {
392                         if (bottom == top) {
393                                 if (!top) return 0;
394                                 bottom = top/2;
395                         }
396                         else top = pos;
397                 }
398         } while (bottom + 1 != top);
399
400         return pos + 1;
401 }
402
403 // Die with an error message if we can't malloc() enough space and do an
404 // sprintf() into that space.
405 char *xasprintf(const char *format, ...)
406 {
407         va_list p;
408         int r;
409         char *string_ptr;
410
411 #if 1
412         // GNU extension
413         va_start(p, format);
414         r = vasprintf(&string_ptr, format, p);
415         va_end(p);
416 #else
417         // Bloat for systems that haven't got the GNU extension.
418         va_start(p, format);
419         r = vsnprintf(NULL, 0, format, p);
420         va_end(p);
421         string_ptr = xmalloc(r+1);
422         va_start(p, format);
423         r = vsnprintf(string_ptr, r+1, format, p);
424         va_end(p);
425 #endif
426
427         if (r < 0) bb_error_msg_and_die(bb_msg_memory_exhausted);
428         return string_ptr;
429 }
430
431 #if 0 /* If we will ever meet a libc which hasn't [f]dprintf... */
432 int fdprintf(int fd, const char *format, ...)
433 {
434         va_list p;
435         int r;
436         char *string_ptr;
437
438 #if 1
439         // GNU extension
440         va_start(p, format);
441         r = vasprintf(&string_ptr, format, p);
442         va_end(p);
443 #else
444         // Bloat for systems that haven't got the GNU extension.
445         va_start(p, format);
446         r = vsnprintf(NULL, 0, format, p);
447         va_end(p);
448         string_ptr = xmalloc(r+1);
449         va_start(p, format);
450         r = vsnprintf(string_ptr, r+1, format, p);
451         va_end(p);
452 #endif
453
454         if (r >= 0) {
455                 full_write(fd, string_ptr, r);
456                 free(string_ptr);
457         }
458         return r;
459 }
460 #endif
461
462 // Die with an error message if we can't copy an entire FILE * to stdout, then
463 // close that file.
464 void xprint_and_close_file(FILE *file)
465 {
466         fflush(stdout);
467         // copyfd outputs error messages for us.
468         if (bb_copyfd_eof(fileno(file), 1) == -1)
469                 exit(xfunc_error_retval);
470
471         fclose(file);
472 }
473
474 // Die if we can't chdir to a new path.
475 void xchdir(const char *path)
476 {
477         if (chdir(path))
478                 bb_perror_msg_and_die("chdir(%s)", path);
479 }
480
481 // Print a warning message if opendir() fails, but don't die.
482 DIR *warn_opendir(const char *path)
483 {
484         DIR *dp;
485
486         if ((dp = opendir(path)) == NULL) {
487                 bb_perror_msg("cannot open '%s'", path);
488                 return NULL;
489         }
490         return dp;
491 }
492
493 // Die with an error message if opendir() fails.
494 DIR *xopendir(const char *path)
495 {
496         DIR *dp;
497
498         if ((dp = opendir(path)) == NULL)
499                 bb_perror_msg_and_die("cannot open '%s'", path);
500         return dp;
501 }
502
503 #ifndef BB_NOMMU
504 // Die with an error message if we can't daemonize.
505 void xdaemon(int nochdir, int noclose)
506 {
507         if (daemon(nochdir, noclose))
508                 bb_perror_msg_and_die("daemon");
509 }
510 #endif
511
512 void bb_sanitize_stdio_maybe_daemonize(int daemonize)
513 {
514         int fd;
515         /* Mega-paranoid */
516         fd = xopen(bb_dev_null, O_RDWR);
517         while ((unsigned)fd < 2)
518                 fd = dup(fd); /* have 0,1,2 open at least to /dev/null */
519         if (daemonize) {
520                 pid_t pid = fork();
521                 if (pid < 0) /* wtf? */
522                         bb_perror_msg_and_die("fork");
523                 if (pid) /* parent */
524                         exit(0);
525                 /* child */
526                 /* if daemonizing, make sure we detach from stdio */
527                 setsid();
528                 dup2(fd, 0);
529                 dup2(fd, 1);
530                 dup2(fd, 2);
531         }
532         while (fd > 2)
533                 close(fd--); /* close everything after fd#2 */
534 }
535 void bb_sanitize_stdio(void)
536 {
537         bb_sanitize_stdio_maybe_daemonize(0);
538 }
539 void bb_daemonize(void)
540 {
541         bb_sanitize_stdio_maybe_daemonize(1);
542 }
543
544 // Die with an error message if we can't open a new socket.
545 int xsocket(int domain, int type, int protocol)
546 {
547         int r = socket(domain, type, protocol);
548
549         if (r < 0) bb_perror_msg_and_die("socket");
550
551         return r;
552 }
553
554 // Die with an error message if we can't bind a socket to an address.
555 void xbind(int sockfd, struct sockaddr *my_addr, socklen_t addrlen)
556 {
557         if (bind(sockfd, my_addr, addrlen)) bb_perror_msg_and_die("bind");
558 }
559
560 // Die with an error message if we can't listen for connections on a socket.
561 void xlisten(int s, int backlog)
562 {
563         if (listen(s, backlog)) bb_perror_msg_and_die("listen");
564 }
565
566 // xstat() - a stat() which dies on failure with meaningful error message
567 void xstat(const char *name, struct stat *stat_buf)
568 {
569         if (stat(name, stat_buf))
570                 bb_perror_msg_and_die("can't stat '%s'", name);
571 }
572
573 // selinux_or_die() - die if SELinux is disabled.
574 void selinux_or_die(void)
575 {
576 #if ENABLE_SELINUX
577         int rc = is_selinux_enabled();
578         if (rc == 0) {
579                 bb_error_msg_and_die("SELinux is disabled");
580         } else if (rc < 0) {
581                 bb_error_msg_and_die("is_selinux_enabled() failed");
582         }
583 #else
584         bb_error_msg_and_die("SELinux support is disabled");
585 #endif
586 }
587
588 /* It is perfectly ok to pass in a NULL for either width or for
589  * height, in which case that value will not be set.  */
590 int get_terminal_width_height(const int fd, int *width, int *height)
591 {
592         struct winsize win = { 0, 0, 0, 0 };
593         int ret = ioctl(fd, TIOCGWINSZ, &win);
594
595         if (height) {
596                 if (!win.ws_row) {
597                         char *s = getenv("LINES");
598                         if (s) win.ws_row = atoi(s);
599                 }
600                 if (win.ws_row <= 1 || win.ws_row >= 30000)
601                         win.ws_row = 24;
602                 *height = (int) win.ws_row;
603         }
604
605         if (width) {
606                 if (!win.ws_col) {
607                         char *s = getenv("COLUMNS");
608                         if (s) win.ws_col = atoi(s);
609                 }
610                 if (win.ws_col <= 1 || win.ws_col >= 30000)
611                         win.ws_col = 80;
612                 *width = (int) win.ws_col;
613         }
614
615         return ret;
616 }