4aa1c3000ea241ca01001ebe12d9710ee2c8c4da
[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 #ifdef L_xmalloc
24 // Die if we can't allocate size bytes of memory.
25 void *xmalloc(size_t size)
26 {
27         void *ptr = malloc(size);
28         if (ptr == NULL && size != 0)
29                 bb_error_msg_and_die(bb_msg_memory_exhausted);
30         return ptr;
31 }
32 #endif
33
34 #ifdef L_xrealloc
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.)
38 void *xrealloc(void *ptr, size_t size)
39 {
40         ptr = realloc(ptr, size);
41         if (ptr == NULL && size != 0)
42                 bb_error_msg_and_die(bb_msg_memory_exhausted);
43         return ptr;
44 }
45 #endif
46 #endif /* DMALLOC */
47
48
49 #ifdef L_xzalloc
50 // Die if we can't allocate and zero size bytes of memory.
51 void *xzalloc(size_t size)
52 {
53         void *ptr = xmalloc(size);
54         memset(ptr, 0, size);
55         return ptr;
56 }
57 #endif
58
59 #ifdef L_xstrdup
60 // Die if we can't copy a string to freshly allocated memory.
61 char * xstrdup(const char *s)
62 {
63         char *t;
64
65         if (s == NULL)
66                 return NULL;
67
68         t = strdup (s);
69
70         if (t == NULL)
71                 bb_error_msg_and_die(bb_msg_memory_exhausted);
72
73         return t;
74 }
75 #endif
76
77 #ifdef L_xstrndup
78 // Die if we can't allocate n+1 bytes (space for the null terminator) and copy
79 // the (possibly truncated to length n) string into it.
80 char * xstrndup(const char *s, int n)
81 {
82         char *t;
83
84         if (ENABLE_DEBUG && s == NULL)
85                 bb_error_msg_and_die("xstrndup bug");
86
87         t = xmalloc(++n);
88
89         return safe_strncpy(t,s,n);
90 }
91 #endif
92
93 #ifdef L_xfopen
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;
99         if ((fp = fopen(path, mode)) == NULL)
100                 bb_perror_msg_and_die("%s", path);
101         return fp;
102 }
103 #endif
104
105 #ifdef L_xopen
106 // Die if we can't open an existing file and return an fd.
107 int xopen(const char *pathname, int flags)
108 {
109         if (ENABLE_DEBUG && (flags & O_CREAT))
110                 bb_error_msg_and_die("xopen() with O_CREAT");
111
112         return xopen3(pathname, flags, 0777);
113 }
114 #endif
115
116 #ifdef L_xopen3
117 // Die if we can't open a new file and return an fd.
118 int xopen3(const char *pathname, int flags, int mode)
119 {
120         int ret;
121
122         ret = open(pathname, flags, mode);
123         if (ret < 0) {
124                 bb_perror_msg_and_die("%s", pathname);
125         }
126         return ret;
127 }
128 #endif
129
130 #ifdef L_xread
131 // Die with an error message if we can't read the entire buffer.
132 void xread(int fd, void *buf, size_t count)
133 {
134         while (count) {
135                 ssize_t size;
136
137                 if ((size = safe_read(fd, buf, count)) < 1)
138                         bb_error_msg_and_die("Short read");
139                 count -= size;
140                 buf = ((char *) buf) + size;
141         }
142 }
143 #endif
144
145 #ifdef L_xwrite
146 // Die with an error message if we can't write the entire buffer.
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
161 // Die with an error message if we can't lseek to the right spot.
162 void xlseek(int fd, off_t offset, int whence)
163 {
164         if (offset != lseek(fd, offset, whence)) bb_error_msg_and_die("lseek");
165 }
166 #endif
167
168 #ifdef L_xread_char
169 // Die with an error message if we can't read one character.
170 unsigned char xread_char(int fd)
171 {
172         char tmp;
173
174         xread(fd, &tmp, 1);
175
176         return(tmp);
177 }
178 #endif
179
180 #ifdef L_xferror
181 // Die with supplied error message if this FILE * has ferror set.
182 void xferror(FILE *fp, const char *fn)
183 {
184         if (ferror(fp)) {
185                 bb_error_msg_and_die("%s", fn);
186         }
187 }
188 #endif
189
190 #ifdef L_xferror_stdout
191 // Die with an error message if stdout has ferror set.
192 void xferror_stdout(void)
193 {
194         xferror(stdout, bb_msg_standard_output);
195 }
196 #endif
197
198 #ifdef L_xfflush_stdout
199 // Die with an error message if we have trouble flushing stdout.
200 void xfflush_stdout(void)
201 {
202         if (fflush(stdout)) {
203                 bb_perror_msg_and_die(bb_msg_standard_output);
204         }
205 }
206 #endif
207
208 #ifdef L_spawn
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.
211 pid_t spawn(char **argv)
212 {
213         static int failed;
214         pid_t pid;
215         void *app = ENABLE_FEATURE_SH_STANDALONE_SHELL ? find_applet_by_name(argv[0]) : 0;
216
217         // Be nice to nommu machines.
218         failed = 0;
219         pid = vfork();
220         if (pid < 0) return pid;
221         if (!pid) {
222                 execvp(app ? CONFIG_BUSYBOX_EXEC_PATH : *argv, argv);
223
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.)
227
228                 failed = -1;
229                 _exit(0);
230         }
231         return failed ? failed : pid;
232 }
233 #endif
234
235 #ifdef L_xspawn
236 // Die with an error message if we can't spawn a child process.
237 pid_t xspawn(char **argv)
238 {
239         pid_t pid = spawn(argv);
240         if (pid < 0) bb_perror_msg_and_die("%s", *argv);
241         return pid;
242 }
243 #endif
244
245 #ifdef L_wait4
246 // Wait for the specified child PID to exit, returning child's error return.
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 }
256 #endif
257
258 #ifdef L_xsetenv
259 void xsetenv(const char *key, const char *value)
260 {
261         if(setenv(key, value, 1))
262                 bb_error_msg_and_die(bb_msg_memory_exhausted);
263 }
264 #endif
265
266 #ifdef L_itoa
267 // Convert unsigned integer to ascii, writing into supplied buffer.  A
268 // truncated result is always null terminated (unless buflen is 0), and
269 // contains the first few digits of the result ala strncpy.
270 void utoa_to_buf(unsigned n, char *buf, unsigned buflen)
271 {
272         int i, out = 0;
273         if (buflen) {
274                 for (i=1000000000; i; i/=10) {
275                         int res = n/i;
276
277                         if ((res || out || i == 1) && --buflen>0) {
278                                 out++;
279                                 n -= res*i;
280                                 *buf++ = '0' + res;
281                         }
282                 }
283                 *buf = 0;
284         }
285 }
286
287 // Convert signed integer to ascii, like utoa_to_buf()
288 void itoa_to_buf(int n, char *buf, unsigned buflen)
289 {
290         if (buflen && n<0) {
291                 n = -n;
292                 *buf++ = '-';
293                 buflen--;
294         }
295         utoa_to_buf((unsigned)n, buf, buflen);
296 }
297
298 // The following two functions use a static buffer, so calling either one a
299 // second time will overwrite previous results.
300 //
301 // The largest 32 bit integer is -2 billion plus null terminator, or 12 bytes.
302 // Int should always be 32 bits on any remotely Unix-like system, see
303 // http://www.unix.org/whitepapers/64bit.html for the reasons why.
304
305 static char local_buf[12];
306
307 // Convert unsigned integer to ascii using a static buffer (returned).
308 char *utoa(unsigned n)
309 {
310         utoa_to_buf(n, local_buf, sizeof(local_buf));
311
312         return local_buf;
313 }
314
315 // Convert signed integer to ascii using a static buffer (returned).
316 char *itoa(int n)
317 {
318         itoa_to_buf(n, local_buf, sizeof(local_buf));
319
320         return local_buf;
321 }
322 #endif
323
324 #ifdef L_setuid
325 // Die with an error message if we can't set gid.  (Because resource limits may
326 // limit this user to a given number of processes, and if that fills up the
327 // setgid() will fail and we'll _still_be_root_, which is bad.)
328 void xsetgid(gid_t gid)
329 {
330         if (setgid(gid)) bb_error_msg_and_die("setgid");
331 }
332
333 // Die with an error message if we cant' set uid.  (See xsetgid() for why.)
334 void xsetuid(uid_t uid)
335 {
336         if (setuid(uid)) bb_error_msg_and_die("setuid");
337 }
338 #endif
339
340 #ifdef L_fdlength
341 // Return how long the file at fd is, if there's any way to determine it.
342 off_t fdlength(int fd)
343 {
344         off_t bottom = 0, top = 0, pos;
345         long size;
346
347         // If the ioctl works for this, return it.
348
349         if (ioctl(fd, BLKGETSIZE, &size) >= 0) return size*512;
350
351         // If not, do a binary search for the last location we can read.  (Some
352         // block devices don't do BLKGETSIZE right.)
353
354         do {
355                 char temp;
356
357                 pos = bottom + (top - bottom) / 2;
358
359                 // If we can read from the current location, it's bigger.
360
361                 if (lseek(fd, pos, 0)>=0 && safe_read(fd, &temp, 1)==1) {
362                         if (bottom == top) bottom = top = (top+1) * 2;
363                         else bottom = pos;
364
365                 // If we can't, it's smaller.
366
367                 } else {
368                         if (bottom == top) {
369                                 if (!top) return 0;
370                                 bottom = top/2;
371                         }
372                         else top = pos;
373                 }
374         } while (bottom + 1 != top);
375
376         return pos + 1;
377 }
378 #endif
379
380 #ifdef L_xasprintf
381 // Die with an error message if we can't malloc() enough space and do an
382 // sprintf() into that space.
383 char *xasprintf(const char *format, ...)
384 {
385         va_list p;
386         int r;
387         char *string_ptr;
388
389 #if 1
390         // GNU extension
391         va_start(p, format);
392         r = vasprintf(&string_ptr, format, p);
393         va_end(p);
394 #else
395         // Bloat for systems that haven't got the GNU extension.
396         va_start(p, format);
397         r = vsnprintf(NULL, 0, format, p);
398         va_end(p);
399         string_ptr = xmalloc(r+1);
400         va_start(p, format);
401         r = vsnprintf(string_ptr, r+1, format, p);
402         va_end(p);
403 #endif
404
405         if (r < 0) bb_error_msg_and_die(bb_msg_memory_exhausted);
406         return string_ptr;
407 }
408 #endif
409
410 #ifdef L_xprint_and_close_file
411 // Die with an error message if we can't copy an entire FILE * to stdout, then
412 // close that file.
413 void xprint_and_close_file(FILE *file)
414 {
415         // copyfd outputs error messages for us.
416         if (bb_copyfd_eof(fileno(file), 1) == -1)
417                 exit(bb_default_error_retval);
418
419         fclose(file);
420 }
421 #endif
422
423 #ifdef L_xchdir
424 // Die if we can't chdir to a new path.
425 void xchdir(const char *path)
426 {
427         if (chdir(path))
428                 bb_perror_msg_and_die("chdir(%s)", path);
429 }
430 #endif
431
432 #ifdef L_warn_opendir
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("unable to open `%s'", path);
440                 return NULL;
441         }
442         return dp;
443 }
444 #endif
445
446 #ifdef L_xopendir
447 // Die with an error message if opendir() fails.
448 DIR *xopendir(const char *path)
449 {
450         DIR *dp;
451
452         if ((dp = opendir(path)) == NULL)
453                 bb_perror_msg_and_die("unable to open `%s'", path);
454         return dp;
455 }
456 #endif
457
458 #ifdef L_xdaemon
459 #ifndef BB_NOMMU
460 // Die with an error message if we can't daemonize.
461 void xdaemon(int nochdir, int noclose)
462 {
463         if (daemon(nochdir, noclose)) bb_perror_msg_and_die("daemon");
464 }
465 #endif
466 #endif
467
468 #ifdef L_xsocket
469 // Die with an error message if we can't open a new socket.
470 int xsocket(int domain, int type, int protocol)
471 {
472         int r = socket(domain, type, protocol);
473
474         if (r < 0) bb_perror_msg_and_die("socket");
475
476         return r;
477 }
478 #endif
479
480 #ifdef L_xbind
481 // Die with an error message if we can't bind a socket to an address.
482 void xbind(int sockfd, struct sockaddr *my_addr, socklen_t addrlen)
483 {
484         if (bind(sockfd, my_addr, addrlen)) bb_perror_msg_and_die("bind");
485 }
486 #endif
487
488 #ifdef L_xlisten
489 // Die with an error message if we can't listen for connections on a socket.
490 void xlisten(int s, int backlog)
491 {
492         if (listen(s, backlog)) bb_perror_msg_and_die("listen");
493 }
494 #endif
495
496 #ifdef L_xstat
497 // xstat() - a stat() which dies on failure with meaningful error message
498 void xstat(char *name, struct stat *stat_buf)
499 {
500         if (stat(name, stat_buf))
501                 bb_perror_msg_and_die("can't stat '%s'", name);
502 }
503 #endif
504
505 #ifdef L_get_terminal_width_height
506 /* It is perfectly ok to pass in a NULL for either width or for
507  *  * height, in which case that value will not be set.  */
508 int get_terminal_width_height(int fd, int *width, int *height)
509 {
510         struct winsize win = { 0, 0, 0, 0 };
511         int ret = ioctl(fd, TIOCGWINSZ, &win);
512         if (!win.ws_row) {
513                 char *s = getenv("LINES");
514                 if (s) win.ws_row = atoi(s);
515         }
516         if (win.ws_row <= 1) win.ws_row = 24;
517         if (!win.ws_col) {
518                 char *s = getenv("COLUMNS");
519                 if (s) win.ws_col = atoi(s);
520         }
521         if (win.ws_col <= 1) win.ws_col = 80;
522         if (height) *height = (int) win.ws_row;
523         if (width) *width = (int) win.ws_col;
524
525         return ret;
526 }
527 #endif