libbb: add bb_unsetenv (taken from hush).
[oweals/busybox.git] / libbb / xfuncs_printf.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 Denys Vlasenko
8  *
9  * Licensed under GPL version 2, see file LICENSE in this tarball for details.
10  */
11
12 /* We need to have separate xfuncs.c and xfuncs_printf.c because
13  * with current linkers, even with section garbage collection,
14  * if *.o module references any of XXXprintf functions, you pull in
15  * entire printf machinery. Even if you do not use the function
16  * which uses XXXprintf.
17  *
18  * xfuncs.c contains functions (not necessarily xfuncs)
19  * which do not pull in printf, directly or indirectly.
20  * xfunc_printf.c contains those which do.
21  */
22
23 #include "libbb.h"
24
25
26 /* All the functions starting with "x" call bb_error_msg_and_die() if they
27  * fail, so callers never need to check for errors.  If it returned, it
28  * succeeded. */
29
30 #ifndef DMALLOC
31 /* dmalloc provides variants of these that do abort() on failure.
32  * Since dmalloc's prototypes overwrite the impls here as they are
33  * included after these prototypes in libbb.h, all is well.
34  */
35 // Warn if we can't allocate size bytes of memory.
36 void* FAST_FUNC malloc_or_warn(size_t size)
37 {
38         void *ptr = malloc(size);
39         if (ptr == NULL && size != 0)
40                 bb_error_msg(bb_msg_memory_exhausted);
41         return ptr;
42 }
43
44 // Die if we can't allocate size bytes of memory.
45 void* FAST_FUNC xmalloc(size_t size)
46 {
47         void *ptr = malloc(size);
48         if (ptr == NULL && size != 0)
49                 bb_error_msg_and_die(bb_msg_memory_exhausted);
50         return ptr;
51 }
52
53 // Die if we can't resize previously allocated memory.  (This returns a pointer
54 // to the new memory, which may or may not be the same as the old memory.
55 // It'll copy the contents to a new chunk and free the old one if necessary.)
56 void* FAST_FUNC xrealloc(void *ptr, size_t size)
57 {
58         ptr = realloc(ptr, size);
59         if (ptr == NULL && size != 0)
60                 bb_error_msg_and_die(bb_msg_memory_exhausted);
61         return ptr;
62 }
63 #endif /* DMALLOC */
64
65 // Die if we can't allocate and zero size bytes of memory.
66 void* FAST_FUNC xzalloc(size_t size)
67 {
68         void *ptr = xmalloc(size);
69         memset(ptr, 0, size);
70         return ptr;
71 }
72
73 // Die if we can't copy a string to freshly allocated memory.
74 char* FAST_FUNC xstrdup(const char *s)
75 {
76         char *t;
77
78         if (s == NULL)
79                 return NULL;
80
81         t = strdup(s);
82
83         if (t == NULL)
84                 bb_error_msg_and_die(bb_msg_memory_exhausted);
85
86         return t;
87 }
88
89 // Die if we can't allocate n+1 bytes (space for the null terminator) and copy
90 // the (possibly truncated to length n) string into it.
91 char* FAST_FUNC xstrndup(const char *s, int n)
92 {
93         int m;
94         char *t;
95
96         if (ENABLE_DEBUG && s == NULL)
97                 bb_error_msg_and_die("xstrndup bug");
98
99         /* We can just xmalloc(n+1) and strncpy into it, */
100         /* but think about xstrndup("abc", 10000) wastage! */
101         m = n;
102         t = (char*) s;
103         while (m) {
104                 if (!*t) break;
105                 m--;
106                 t++;
107         }
108         n -= m;
109         t = xmalloc(n + 1);
110         t[n] = '\0';
111
112         return memcpy(t, s, n);
113 }
114
115 // Die if we can't open a file and return a FILE* to it.
116 // Notice we haven't got xfread(), This is for use with fscanf() and friends.
117 FILE* FAST_FUNC xfopen(const char *path, const char *mode)
118 {
119         FILE *fp = fopen(path, mode);
120         if (fp == NULL)
121                 bb_perror_msg_and_die("can't open '%s'", path);
122         return fp;
123 }
124
125 // Die if we can't open a file and return a fd.
126 int FAST_FUNC xopen3(const char *pathname, int flags, int mode)
127 {
128         int ret;
129
130         ret = open(pathname, flags, mode);
131         if (ret < 0) {
132                 bb_perror_msg_and_die("can't open '%s'", pathname);
133         }
134         return ret;
135 }
136
137 // Die if we can't open an existing file and return a fd.
138 int FAST_FUNC xopen(const char *pathname, int flags)
139 {
140         return xopen3(pathname, flags, 0666);
141 }
142
143 // Warn if we can't open a file and return a fd.
144 int FAST_FUNC open3_or_warn(const char *pathname, int flags, int mode)
145 {
146         int ret;
147
148         ret = open(pathname, flags, mode);
149         if (ret < 0) {
150                 bb_perror_msg("can't open '%s'", pathname);
151         }
152         return ret;
153 }
154
155 // Warn if we can't open a file and return a fd.
156 int FAST_FUNC open_or_warn(const char *pathname, int flags)
157 {
158         return open3_or_warn(pathname, flags, 0666);
159 }
160
161 void FAST_FUNC xunlink(const char *pathname)
162 {
163         if (unlink(pathname))
164                 bb_perror_msg_and_die("can't remove file '%s'", pathname);
165 }
166
167 void FAST_FUNC xrename(const char *oldpath, const char *newpath)
168 {
169         if (rename(oldpath, newpath))
170                 bb_perror_msg_and_die("can't move '%s' to '%s'", oldpath, newpath);
171 }
172
173 int FAST_FUNC rename_or_warn(const char *oldpath, const char *newpath)
174 {
175         int n = rename(oldpath, newpath);
176         if (n)
177                 bb_perror_msg("can't move '%s' to '%s'", oldpath, newpath);
178         return n;
179 }
180
181 void FAST_FUNC xpipe(int filedes[2])
182 {
183         if (pipe(filedes))
184                 bb_perror_msg_and_die("can't create pipe");
185 }
186
187 void FAST_FUNC xdup2(int from, int to)
188 {
189         if (dup2(from, to) != to)
190                 bb_perror_msg_and_die("can't duplicate file descriptor");
191 }
192
193 // "Renumber" opened fd
194 void FAST_FUNC xmove_fd(int from, int to)
195 {
196         if (from == to)
197                 return;
198         xdup2(from, to);
199         close(from);
200 }
201
202 // Die with an error message if we can't write the entire buffer.
203 void FAST_FUNC xwrite(int fd, const void *buf, size_t count)
204 {
205         if (count) {
206                 ssize_t size = full_write(fd, buf, count);
207                 if ((size_t)size != count)
208                         bb_error_msg_and_die("short write");
209         }
210 }
211
212 // Die with an error message if we can't lseek to the right spot.
213 off_t FAST_FUNC xlseek(int fd, off_t offset, int whence)
214 {
215         off_t off = lseek(fd, offset, whence);
216         if (off == (off_t)-1) {
217                 if (whence == SEEK_SET)
218                         bb_perror_msg_and_die("lseek(%"OFF_FMT"u)", offset);
219                 bb_perror_msg_and_die("lseek");
220         }
221         return off;
222 }
223
224 // Die with supplied filename if this FILE* has ferror set.
225 void FAST_FUNC die_if_ferror(FILE *fp, const char *fn)
226 {
227         if (ferror(fp)) {
228                 /* ferror doesn't set useful errno */
229                 bb_error_msg_and_die("%s: I/O error", fn);
230         }
231 }
232
233 // Die with an error message if stdout has ferror set.
234 void FAST_FUNC die_if_ferror_stdout(void)
235 {
236         die_if_ferror(stdout, bb_msg_standard_output);
237 }
238
239 // Die with an error message if we have trouble flushing stdout.
240 void FAST_FUNC xfflush_stdout(void)
241 {
242         if (fflush(stdout)) {
243                 bb_perror_msg_and_die(bb_msg_standard_output);
244         }
245 }
246
247
248 int FAST_FUNC bb_putchar(int ch)
249 {
250         /* time.c needs putc(ch, stdout), not putchar(ch).
251          * it does "stdout = stderr;", but then glibc's putchar()
252          * doesn't work as expected. bad glibc, bad */
253         return putc(ch, stdout);
254 }
255
256 /* Die with an error message if we can't copy an entire FILE* to stdout,
257  * then close that file. */
258 void FAST_FUNC xprint_and_close_file(FILE *file)
259 {
260         fflush(stdout);
261         // copyfd outputs error messages for us.
262         if (bb_copyfd_eof(fileno(file), 1) == -1)
263                 xfunc_die();
264
265         fclose(file);
266 }
267
268 // Die with an error message if we can't malloc() enough space and do an
269 // sprintf() into that space.
270 char* FAST_FUNC xasprintf(const char *format, ...)
271 {
272         va_list p;
273         int r;
274         char *string_ptr;
275
276 #if 1
277         // GNU extension
278         va_start(p, format);
279         r = vasprintf(&string_ptr, format, p);
280         va_end(p);
281 #else
282         // Bloat for systems that haven't got the GNU extension.
283         va_start(p, format);
284         r = vsnprintf(NULL, 0, format, p);
285         va_end(p);
286         string_ptr = xmalloc(r+1);
287         va_start(p, format);
288         r = vsnprintf(string_ptr, r+1, format, p);
289         va_end(p);
290 #endif
291
292         if (r < 0)
293                 bb_error_msg_and_die(bb_msg_memory_exhausted);
294         return string_ptr;
295 }
296
297 #if 0 /* If we will ever meet a libc which hasn't [f]dprintf... */
298 int FAST_FUNC fdprintf(int fd, const char *format, ...)
299 {
300         va_list p;
301         int r;
302         char *string_ptr;
303
304 #if 1
305         // GNU extension
306         va_start(p, format);
307         r = vasprintf(&string_ptr, format, p);
308         va_end(p);
309 #else
310         // Bloat for systems that haven't got the GNU extension.
311         va_start(p, format);
312         r = vsnprintf(NULL, 0, format, p) + 1;
313         va_end(p);
314         string_ptr = malloc(r);
315         if (string_ptr) {
316                 va_start(p, format);
317                 r = vsnprintf(string_ptr, r, format, p);
318                 va_end(p);
319         }
320 #endif
321
322         if (r >= 0) {
323                 full_write(fd, string_ptr, r);
324                 free(string_ptr);
325         }
326         return r;
327 }
328 #endif
329
330 void FAST_FUNC xsetenv(const char *key, const char *value)
331 {
332         if (setenv(key, value, 1))
333                 bb_error_msg_and_die(bb_msg_memory_exhausted);
334 }
335
336 /* Handles "VAR=VAL" strings, even those which are part of environ
337  * _right now_
338  */
339 void FAST_FUNC bb_unsetenv(const char *var)
340 {
341         char *tp = strchr(var, '=');
342
343         if (!tp) {
344                 unsetenv(var);
345                 return;
346         }
347
348         /* In case var was putenv'ed, we can't replace '='
349          * with NUL and unsetenv(var) - it won't work,
350          * env is modified by the replacement, unsetenv
351          * sees "VAR" instead of "VAR=VAL" and does not remove it!
352          * horror :( */
353         tp = xstrndup(var, tp - var);
354         unsetenv(tp);
355         free(tp);
356 }
357
358
359 // Die with an error message if we can't set gid.  (Because resource limits may
360 // limit this user to a given number of processes, and if that fills up the
361 // setgid() will fail and we'll _still_be_root_, which is bad.)
362 void FAST_FUNC xsetgid(gid_t gid)
363 {
364         if (setgid(gid)) bb_perror_msg_and_die("setgid");
365 }
366
367 // Die with an error message if we can't set uid.  (See xsetgid() for why.)
368 void FAST_FUNC xsetuid(uid_t uid)
369 {
370         if (setuid(uid)) bb_perror_msg_and_die("setuid");
371 }
372
373 // Die if we can't chdir to a new path.
374 void FAST_FUNC xchdir(const char *path)
375 {
376         if (chdir(path))
377                 bb_perror_msg_and_die("chdir(%s)", path);
378 }
379
380 void FAST_FUNC xchroot(const char *path)
381 {
382         if (chroot(path))
383                 bb_perror_msg_and_die("can't change root directory to %s", path);
384 }
385
386 // Print a warning message if opendir() fails, but don't die.
387 DIR* FAST_FUNC warn_opendir(const char *path)
388 {
389         DIR *dp;
390
391         dp = opendir(path);
392         if (!dp)
393                 bb_perror_msg("can't open '%s'", path);
394         return dp;
395 }
396
397 // Die with an error message if opendir() fails.
398 DIR* FAST_FUNC xopendir(const char *path)
399 {
400         DIR *dp;
401
402         dp = opendir(path);
403         if (!dp)
404                 bb_perror_msg_and_die("can't open '%s'", path);
405         return dp;
406 }
407
408 // Die with an error message if we can't open a new socket.
409 int FAST_FUNC xsocket(int domain, int type, int protocol)
410 {
411         int r = socket(domain, type, protocol);
412
413         if (r < 0) {
414                 /* Hijack vaguely related config option */
415 #if ENABLE_VERBOSE_RESOLUTION_ERRORS
416                 const char *s = "INET";
417                 if (domain == AF_PACKET) s = "PACKET";
418                 if (domain == AF_NETLINK) s = "NETLINK";
419 USE_FEATURE_IPV6(if (domain == AF_INET6) s = "INET6";)
420                 bb_perror_msg_and_die("socket(AF_%s)", s);
421 #else
422                 bb_perror_msg_and_die("socket");
423 #endif
424         }
425
426         return r;
427 }
428
429 // Die with an error message if we can't bind a socket to an address.
430 void FAST_FUNC xbind(int sockfd, struct sockaddr *my_addr, socklen_t addrlen)
431 {
432         if (bind(sockfd, my_addr, addrlen)) bb_perror_msg_and_die("bind");
433 }
434
435 // Die with an error message if we can't listen for connections on a socket.
436 void FAST_FUNC xlisten(int s, int backlog)
437 {
438         if (listen(s, backlog)) bb_perror_msg_and_die("listen");
439 }
440
441 /* Die with an error message if sendto failed.
442  * Return bytes sent otherwise  */
443 ssize_t FAST_FUNC xsendto(int s, const  void *buf, size_t len, const struct sockaddr *to,
444                                 socklen_t tolen)
445 {
446         ssize_t ret = sendto(s, buf, len, 0, to, tolen);
447         if (ret < 0) {
448                 if (ENABLE_FEATURE_CLEAN_UP)
449                         close(s);
450                 bb_perror_msg_and_die("sendto");
451         }
452         return ret;
453 }
454
455 // xstat() - a stat() which dies on failure with meaningful error message
456 void FAST_FUNC xstat(const char *name, struct stat *stat_buf)
457 {
458         if (stat(name, stat_buf))
459                 bb_perror_msg_and_die("can't stat '%s'", name);
460 }
461
462 // selinux_or_die() - die if SELinux is disabled.
463 void FAST_FUNC selinux_or_die(void)
464 {
465 #if ENABLE_SELINUX
466         int rc = is_selinux_enabled();
467         if (rc == 0) {
468                 bb_error_msg_and_die("SELinux is disabled");
469         } else if (rc < 0) {
470                 bb_error_msg_and_die("is_selinux_enabled() failed");
471         }
472 #else
473         bb_error_msg_and_die("SELinux support is disabled");
474 #endif
475 }
476
477 int FAST_FUNC ioctl_or_perror_and_die(int fd, unsigned request, void *argp, const char *fmt,...)
478 {
479         int ret;
480         va_list p;
481
482         ret = ioctl(fd, request, argp);
483         if (ret < 0) {
484                 va_start(p, fmt);
485                 bb_verror_msg(fmt, p, strerror(errno));
486                 /* xfunc_die can actually longjmp, so be nice */
487                 va_end(p);
488                 xfunc_die();
489         }
490         return ret;
491 }
492
493 int FAST_FUNC ioctl_or_perror(int fd, unsigned request, void *argp, const char *fmt,...)
494 {
495         va_list p;
496         int ret = ioctl(fd, request, argp);
497
498         if (ret < 0) {
499                 va_start(p, fmt);
500                 bb_verror_msg(fmt, p, strerror(errno));
501                 va_end(p);
502         }
503         return ret;
504 }
505
506 #if ENABLE_IOCTL_HEX2STR_ERROR
507 int FAST_FUNC bb_ioctl_or_warn(int fd, unsigned request, void *argp, const char *ioctl_name)
508 {
509         int ret;
510
511         ret = ioctl(fd, request, argp);
512         if (ret < 0)
513                 bb_simple_perror_msg(ioctl_name);
514         return ret;
515 }
516 int FAST_FUNC bb_xioctl(int fd, unsigned request, void *argp, const char *ioctl_name)
517 {
518         int ret;
519
520         ret = ioctl(fd, request, argp);
521         if (ret < 0)
522                 bb_simple_perror_msg_and_die(ioctl_name);
523         return ret;
524 }
525 #else
526 int FAST_FUNC bb_ioctl_or_warn(int fd, unsigned request, void *argp)
527 {
528         int ret;
529
530         ret = ioctl(fd, request, argp);
531         if (ret < 0)
532                 bb_perror_msg("ioctl %#x failed", request);
533         return ret;
534 }
535 int FAST_FUNC bb_xioctl(int fd, unsigned request, void *argp)
536 {
537         int ret;
538
539         ret = ioctl(fd, request, argp);
540         if (ret < 0)
541                 bb_perror_msg_and_die("ioctl %#x failed", request);
542         return ret;
543 }
544 #endif