1 /* vi: set sw=4 ts=4: */
5 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
6 * Copyright (C) 2006 Rob Landley
7 * Copyright (C) 2006 Denys Vlasenko
9 * Licensed under GPLv2, see file LICENSE in this source tree.
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.
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.
22 * TODO: move xmalloc() and xatonum() here.
27 /* Turn on nonblocking I/O on a fd */
28 int FAST_FUNC
ndelay_on(int fd
)
30 int flags
= fcntl(fd
, F_GETFL
);
31 if (flags
& O_NONBLOCK
)
33 fcntl(fd
, F_SETFL
, flags
| O_NONBLOCK
);
37 int FAST_FUNC
ndelay_off(int fd
)
39 int flags
= fcntl(fd
, F_GETFL
);
40 if (!(flags
& O_NONBLOCK
))
42 fcntl(fd
, F_SETFL
, flags
& ~O_NONBLOCK
);
46 void FAST_FUNC
close_on_exec_on(int fd
)
48 fcntl(fd
, F_SETFD
, FD_CLOEXEC
);
51 char* FAST_FUNC
strncpy_IFNAMSIZ(char *dst
, const char *src
)
54 enum { IFNAMSIZ
= 16 };
56 return strncpy(dst
, src
, IFNAMSIZ
);
60 /* Convert unsigned integer to ascii, writing into supplied buffer.
61 * A truncated result contains the first few digits of the result ala strncpy.
62 * Returns a pointer past last generated digit, does _not_ store NUL.
64 void BUG_sizeof(void);
65 char* FAST_FUNC
utoa_to_buf(unsigned n
, char *buf
, unsigned buflen
)
72 // 2^32-1 = 4294967295
74 #if UINT_MAX > 4294967295 /* prevents warning about "const too large" */
77 // 2^64-1 = 18446744073709551615
78 i
= 10000000000000000000;
85 if (res
|| out
|| i
== 1) {
96 /* Convert signed integer to ascii, like utoa_to_buf() */
97 char* FAST_FUNC
itoa_to_buf(int n
, char *buf
, unsigned buflen
)
106 return utoa_to_buf((unsigned)n
, buf
, buflen
);
109 // The following two functions use a static buffer, so calling either one a
110 // second time will overwrite previous results.
112 // The largest 32 bit integer is -2 billion plus NUL, or 1+10+1=12 bytes.
113 // It so happens that sizeof(int) * 3 is enough for 32+ bit ints.
114 // (sizeof(int) * 3 + 2 is correct for any width, even 8-bit)
116 static char local_buf
[sizeof(int) * 3];
118 /* Convert unsigned integer to ascii using a static buffer (returned). */
119 char* FAST_FUNC
utoa(unsigned n
)
121 *(utoa_to_buf(n
, local_buf
, sizeof(local_buf
) - 1)) = '\0';
126 /* Convert signed integer to ascii using a static buffer (returned). */
127 char* FAST_FUNC
itoa(int n
)
129 *(itoa_to_buf(n
, local_buf
, sizeof(local_buf
) - 1)) = '\0';
134 /* Emit a string of hex representation of bytes */
135 char* FAST_FUNC
bin2hex(char *p
, const char *cp
, int count
)
138 unsigned char c
= *cp
++;
139 /* put lowercase hex digits */
140 *p
++ = 0x20 | bb_hexdigits_upcase
[c
>> 4];
141 *p
++ = 0x20 | bb_hexdigits_upcase
[c
& 0xf];
147 /* Convert "[x]x[:][x]x[:][x]x[:][x]x" hex string to binary, no more than COUNT bytes */
148 char* FAST_FUNC
hex2bin(char *dst
, const char *str
, int count
)
151 while (*str
&& count
) {
156 else if ((c
|0x20) >= 'a' && (c
|0x20) <= 'f')
157 val
= (c
|0x20) - ('a' - 10);
164 else if ((c
|0x20) >= 'a' && (c
|0x20) <= 'f')
165 val
|= (c
|0x20) - ('a' - 10);
166 else if (c
== ':' || c
== '\0')
178 errno
= (*str
? ERANGE
: 0);
182 /* Return how long the file at fd is, if there's any way to determine it. */
184 off_t FAST_FUNC
fdlength(int fd
)
186 off_t bottom
= 0, top
= 0, pos
;
189 // If the ioctl works for this, return it.
191 if (ioctl(fd
, BLKGETSIZE
, &size
) >= 0) return size
*512;
193 // FIXME: explain why lseek(SEEK_END) is not used here!
195 // If not, do a binary search for the last location we can read. (Some
196 // block devices don't do BLKGETSIZE right.)
201 pos
= bottom
+ (top
- bottom
) / 2;
203 // If we can read from the current location, it's bigger.
205 if (lseek(fd
, pos
, SEEK_SET
)>=0 && safe_read(fd
, &temp
, 1)==1) {
206 if (bottom
== top
) bottom
= top
= (top
+1) * 2;
209 // If we can't, it's smaller.
217 } while (bottom
+ 1 != top
);
223 int FAST_FUNC
bb_putchar_stderr(char ch
)
225 return write(STDERR_FILENO
, &ch
, 1);
228 ssize_t FAST_FUNC
full_write1_str(const char *str
)
230 return full_write(STDOUT_FILENO
, str
, strlen(str
));
233 ssize_t FAST_FUNC
full_write2_str(const char *str
)
235 return full_write(STDERR_FILENO
, str
, strlen(str
));
238 static int wh_helper(int value
, int def_val
, const char *env_name
, int *err
)
241 char *s
= getenv(env_name
);
244 /* If LINES/COLUMNS are set, pretend that there is
245 * no error getting w/h, this prevents some ugly
246 * cursor tricks by our callers */
250 if (value
<= 1 || value
>= 30000)
255 /* It is perfectly ok to pass in a NULL for either width or for
256 * height, in which case that value will not be set. */
257 int FAST_FUNC
get_terminal_width_height(int fd
, unsigned *width
, unsigned *height
)
264 /* I've seen ioctl returning 0, but row/col is (still?) 0.
265 * We treat that as an error too. */
266 err
= ioctl(fd
, TIOCGWINSZ
, &win
) != 0 || win
.ws_row
== 0;
268 *height
= wh_helper(win
.ws_row
, 24, "LINES", &err
);
270 *width
= wh_helper(win
.ws_col
, 80, "COLUMNS", &err
);
273 int FAST_FUNC
get_terminal_width(int fd
)
276 get_terminal_width_height(fd
, &width
, NULL
);
280 int FAST_FUNC
tcsetattr_stdin_TCSANOW(const struct termios
*tp
)
282 return tcsetattr(STDIN_FILENO
, TCSANOW
, tp
);
285 pid_t FAST_FUNC
safe_waitpid(pid_t pid
, int *wstat
, int options
)
290 r
= waitpid(pid
, wstat
, options
);
291 while ((r
== -1) && (errno
== EINTR
));
295 pid_t FAST_FUNC
wait_any_nohang(int *wstat
)
297 return safe_waitpid(-1, wstat
, WNOHANG
);
300 // Wait for the specified child PID to exit, returning child's error return.
301 int FAST_FUNC
wait4pid(pid_t pid
)
306 /*errno = ECHILD; -- wrong. */
307 /* we expect errno to be already set from failed [v]fork/exec */
310 if (safe_waitpid(pid
, &status
, 0) == -1)
312 if (WIFEXITED(status
))
313 return WEXITSTATUS(status
);
314 if (WIFSIGNALED(status
))
315 return WTERMSIG(status
) + 0x180;
319 // Useful when we do know that pid is valid, and we just want to wait
320 // for it to exit. Not existing pid is fatal. waitpid() status is not returned.
321 int FAST_FUNC
wait_for_exitstatus(pid_t pid
)
325 n
= safe_waitpid(pid
, &exit_status
, 0);
327 bb_perror_msg_and_die("waitpid");
331 char * FAST_FUNC
unparse_uuid(const uint8_t *uu
, char *out
)
333 char uuid_string
[32];
335 bin2hex(uuid_string
, (char *)uu
, 16);
336 /* f.e. UUID=dfd9c173-be52-4d27-99a5-c34c6c2ff55f */
337 sprintf(out
, "%.8s-%.4s-%.4s-%.4s-%.12s",
347 static unsigned char fromhex(char c
)
351 return ((c
|0x20) - 'a' + 10);
354 /* Parse & verify UUID string */
355 int FAST_FUNC
parse_uuid(const char *s
, uint8_t *uuid
)
359 if (strlen(s
) != 36 || s
[8] != '-' || s
[13] != '-'
360 || s
[18] != '-' || s
[23] != '-'
364 for (i
= 0; i
< 16; i
++) {
367 if (!isxdigit(s
[0]) || !isxdigit(s
[1]))
369 uuid
[i
] = ((fromhex(s
[0]) << 4) | fromhex(s
[1]));