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