blob: e47b01dc1dc5e8c7f3ee9d7bc1d731c533f95f10 [file] [log] [blame]
Eric Andersenaad1a882001-03-16 22:47:14 +00001/* vi: set sw=4 ts=4: */
2/*
3 * Utility routines.
4 *
Eric Andersenc7bda1c2004-03-15 08:29:22 +00005 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
Rob Landleyd921b2e2006-08-03 15:41:12 +00006 * Copyright (C) 2006 Rob Landley
Denis Vlasenkod18f52b2008-03-02 12:53:15 +00007 * Copyright (C) 2006 Denys Vlasenko
Eric Andersenaad1a882001-03-16 22:47:14 +00008 *
Rob Landleyfbdf1212006-09-20 22:06:01 +00009 * Licensed under GPL version 2, see file LICENSE in this tarball for details.
Eric Andersenaad1a882001-03-16 22:47:14 +000010 */
11
Denis Vlasenkob12b1c82008-04-09 00:33:23 +000012/* 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 * TODO: move xmalloc() and xatonum() here.
23 */
24
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000025#include "libbb.h"
Eric Andersenaad1a882001-03-16 22:47:14 +000026
Denis Vlasenkob12b1c82008-04-09 00:33:23 +000027/* Turn on nonblocking I/O on a fd */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +000028int FAST_FUNC ndelay_on(int fd)
Denis Vlasenko75f8d082006-11-22 15:54:52 +000029{
Denis Vlasenkod37f2222007-08-19 13:42:08 +000030 return fcntl(fd, F_SETFL, fcntl(fd,F_GETFL) | O_NONBLOCK);
Denis Vlasenko75f8d082006-11-22 15:54:52 +000031}
32
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +000033int FAST_FUNC ndelay_off(int fd)
Denis Vlasenkoa5b3e762006-12-24 07:15:50 +000034{
Denis Vlasenkod37f2222007-08-19 13:42:08 +000035 return fcntl(fd, F_SETFL, fcntl(fd,F_GETFL) & ~O_NONBLOCK);
Denis Vlasenkoa5b3e762006-12-24 07:15:50 +000036}
37
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +000038int FAST_FUNC close_on_exec_on(int fd)
Denis Vlasenkoa27a11b2007-08-18 14:16:39 +000039{
Denis Vlasenkob12b1c82008-04-09 00:33:23 +000040 return fcntl(fd, F_SETFD, FD_CLOEXEC);
Denis Vlasenkoa27a11b2007-08-18 14:16:39 +000041}
42
Denis Vlasenko360d9662008-12-02 18:18:50 +000043char* FAST_FUNC strncpy_IFNAMSIZ(char *dst, const char *src)
44{
45#ifndef IFNAMSIZ
46 enum { IFNAMSIZ = 16 };
47#endif
48 return strncpy(dst, src, IFNAMSIZ);
49}
50
Denis Vlasenko56ea65c2008-01-06 03:26:53 +000051
Denis Vlasenko450196c2007-03-28 21:57:12 +000052// Convert unsigned integer to ascii, writing into supplied buffer.
53// A truncated result contains the first few digits of the result ala strncpy.
54// Returns a pointer past last generated digit, does _not_ store NUL.
Denis Vlasenkoaae03112006-11-05 00:44:39 +000055void BUG_sizeof_unsigned_not_4(void);
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +000056char* FAST_FUNC utoa_to_buf(unsigned n, char *buf, unsigned buflen)
Rob Landley5b88a382006-07-10 07:41:34 +000057{
Denis Vlasenkoaae03112006-11-05 00:44:39 +000058 unsigned i, out, res;
59 if (sizeof(unsigned) != 4)
60 BUG_sizeof_unsigned_not_4();
Rob Landley22d39582006-07-11 00:44:36 +000061 if (buflen) {
Denis Vlasenkoaae03112006-11-05 00:44:39 +000062 out = 0;
63 for (i = 1000000000; i; i /= 10) {
64 res = n / i;
65 if (res || out || i == 1) {
66 if (!--buflen) break;
Rob Landley22d39582006-07-11 00:44:36 +000067 out++;
68 n -= res*i;
69 *buf++ = '0' + res;
70 }
Rob Landley5b88a382006-07-10 07:41:34 +000071 }
72 }
Denis Vlasenko10457b92007-03-27 22:01:31 +000073 return buf;
Rob Landley5b88a382006-07-10 07:41:34 +000074}
75
Denis Vlasenkob12b1c82008-04-09 00:33:23 +000076/* Convert signed integer to ascii, like utoa_to_buf() */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +000077char* FAST_FUNC itoa_to_buf(int n, char *buf, unsigned buflen)
Rob Landley5b88a382006-07-10 07:41:34 +000078{
Denis Vlasenko6c106572008-04-19 19:05:12 +000079 if (buflen && n < 0) {
Rob Landley5b88a382006-07-10 07:41:34 +000080 n = -n;
81 *buf++ = '-';
Rob Landley22d39582006-07-11 00:44:36 +000082 buflen--;
Rob Landley5b88a382006-07-10 07:41:34 +000083 }
Denis Vlasenko10457b92007-03-27 22:01:31 +000084 return utoa_to_buf((unsigned)n, buf, buflen);
Rob Landley5b88a382006-07-10 07:41:34 +000085}
86
Rob Landleyda9d1d02006-09-14 19:52:07 +000087// The following two functions use a static buffer, so calling either one a
88// second time will overwrite previous results.
89//
90// The largest 32 bit integer is -2 billion plus null terminator, or 12 bytes.
Denis Vlasenkob12b1c82008-04-09 00:33:23 +000091// It so happens that sizeof(int) * 3 is enough for 32+ bits.
92// (sizeof(int) * 3 + 2 is correct for any width, even 8-bit)
Rob Landleyda9d1d02006-09-14 19:52:07 +000093
Denis Vlasenkob12b1c82008-04-09 00:33:23 +000094static char local_buf[sizeof(int) * 3];
Rob Landley23b61be2006-08-04 20:20:03 +000095
Rob Landleyda9d1d02006-09-14 19:52:07 +000096// Convert unsigned integer to ascii using a static buffer (returned).
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +000097char* FAST_FUNC utoa(unsigned n)
Rob Landley23b61be2006-08-04 20:20:03 +000098{
Denis Vlasenko10457b92007-03-27 22:01:31 +000099 *(utoa_to_buf(n, local_buf, sizeof(local_buf))) = '\0';
Rob Landley23b61be2006-08-04 20:20:03 +0000100
101 return local_buf;
102}
103
Denis Vlasenkob12b1c82008-04-09 00:33:23 +0000104/* Convert signed integer to ascii using a static buffer (returned). */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000105char* FAST_FUNC itoa(int n)
Rob Landley5b88a382006-07-10 07:41:34 +0000106{
Denis Vlasenko10457b92007-03-27 22:01:31 +0000107 *(itoa_to_buf(n, local_buf, sizeof(local_buf))) = '\0';
Rob Landley5b88a382006-07-10 07:41:34 +0000108
109 return local_buf;
110}
Rob Landleydf822f22006-07-15 23:00:46 +0000111
Denis Vlasenkob12b1c82008-04-09 00:33:23 +0000112/* Emit a string of hex representation of bytes */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000113char* FAST_FUNC bin2hex(char *p, const char *cp, int count)
Denis Vlasenko3a34d0c2007-01-12 22:10:34 +0000114{
115 while (count) {
116 unsigned char c = *cp++;
117 /* put lowercase hex digits */
Denis Vlasenko98c0bba2007-01-26 23:31:05 +0000118 *p++ = 0x20 | bb_hexdigits_upcase[c >> 4];
119 *p++ = 0x20 | bb_hexdigits_upcase[c & 0xf];
Denis Vlasenko3a34d0c2007-01-12 22:10:34 +0000120 count--;
121 }
122 return p;
123}
124
Denis Vlasenkob12b1c82008-04-09 00:33:23 +0000125/* Return how long the file at fd is, if there's any way to determine it. */
Denis Vlasenkob5c60fc2008-01-27 23:41:34 +0000126#ifdef UNUSED
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000127off_t FAST_FUNC fdlength(int fd)
Rob Landley53437472006-07-16 08:14:35 +0000128{
129 off_t bottom = 0, top = 0, pos;
130 long size;
131
Rob Landleyda9d1d02006-09-14 19:52:07 +0000132 // If the ioctl works for this, return it.
Rob Landley53437472006-07-16 08:14:35 +0000133
134 if (ioctl(fd, BLKGETSIZE, &size) >= 0) return size*512;
135
Denis Vlasenko621204b2006-10-27 09:03:24 +0000136 // FIXME: explain why lseek(SEEK_END) is not used here!
137
Rob Landleyda9d1d02006-09-14 19:52:07 +0000138 // If not, do a binary search for the last location we can read. (Some
139 // block devices don't do BLKGETSIZE right.)
Rob Landley53437472006-07-16 08:14:35 +0000140
141 do {
142 char temp;
143
Denis Vlasenkod25a2642006-09-05 09:36:19 +0000144 pos = bottom + (top - bottom) / 2;
Rob Landley53437472006-07-16 08:14:35 +0000145
Rob Landleyda9d1d02006-09-14 19:52:07 +0000146 // If we can read from the current location, it's bigger.
Rob Landley53437472006-07-16 08:14:35 +0000147
Denis Vlasenkoea620772006-10-14 02:23:43 +0000148 if (lseek(fd, pos, SEEK_SET)>=0 && safe_read(fd, &temp, 1)==1) {
Rob Landley53437472006-07-16 08:14:35 +0000149 if (bottom == top) bottom = top = (top+1) * 2;
150 else bottom = pos;
151
Rob Landleyda9d1d02006-09-14 19:52:07 +0000152 // If we can't, it's smaller.
Rob Landley53437472006-07-16 08:14:35 +0000153
154 } else {
155 if (bottom == top) {
156 if (!top) return 0;
157 bottom = top/2;
158 }
159 else top = pos;
160 }
161 } while (bottom + 1 != top);
162
163 return pos + 1;
164}
Denis Vlasenkob5c60fc2008-01-27 23:41:34 +0000165#endif
Rob Landleyd921b2e2006-08-03 15:41:12 +0000166
Denis Vlasenko4e12b1a2008-12-23 23:36:47 +0000167char* FAST_FUNC xmalloc_ttyname(int fd)
168{
169 char *buf = xzalloc(128);
170 int r = ttyname_r(fd, buf, 127);
171 if (r) {
172 free(buf);
173 buf = NULL;
174 }
175 return buf;
176}
177
Rob Landleyfbdf1212006-09-20 22:06:01 +0000178/* It is perfectly ok to pass in a NULL for either width or for
Denis Vlasenko621204b2006-10-27 09:03:24 +0000179 * height, in which case that value will not be set. */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000180int FAST_FUNC get_terminal_width_height(int fd, unsigned *width, unsigned *height)
Rob Landleyfbdf1212006-09-20 22:06:01 +0000181{
182 struct winsize win = { 0, 0, 0, 0 };
183 int ret = ioctl(fd, TIOCGWINSZ, &win);
Denis Vlasenko621204b2006-10-27 09:03:24 +0000184
185 if (height) {
186 if (!win.ws_row) {
187 char *s = getenv("LINES");
188 if (s) win.ws_row = atoi(s);
189 }
190 if (win.ws_row <= 1 || win.ws_row >= 30000)
191 win.ws_row = 24;
192 *height = (int) win.ws_row;
Rob Landleyfbdf1212006-09-20 22:06:01 +0000193 }
Denis Vlasenko621204b2006-10-27 09:03:24 +0000194
195 if (width) {
196 if (!win.ws_col) {
197 char *s = getenv("COLUMNS");
198 if (s) win.ws_col = atoi(s);
199 }
200 if (win.ws_col <= 1 || win.ws_col >= 30000)
201 win.ws_col = 80;
202 *width = (int) win.ws_col;
Rob Landleyfbdf1212006-09-20 22:06:01 +0000203 }
Rob Landleyfbdf1212006-09-20 22:06:01 +0000204
205 return ret;
206}
Denis Vlasenko202ac502008-11-05 13:20:58 +0000207
208int FAST_FUNC tcsetattr_stdin_TCSANOW(const struct termios *tp)
209{
210 return tcsetattr(STDIN_FILENO, TCSANOW, tp);
211}
Vladimir Dronnikovdb67a202009-10-15 09:24:25 +0200212
213void FAST_FUNC generate_uuid(uint8_t *buf)
214{
215 /* http://www.ietf.org/rfc/rfc4122.txt
216 * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
217 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
218 * | time_low |
219 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
220 * | time_mid | time_hi_and_version |
221 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
222 * |clk_seq_and_variant | node (0-1) |
223 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
224 * | node (2-5) |
225 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
226 * IOW, uuid has this layout:
227 * uint32_t time_low (big endian)
228 * uint16_t time_mid (big endian)
229 * uint16_t time_hi_and_version (big endian)
230 * version is a 4-bit field:
231 * 1 Time-based
232 * 2 DCE Security, with embedded POSIX UIDs
233 * 3 Name-based (MD5)
234 * 4 Randomly generated
235 * 5 Name-based (SHA-1)
236 * uint16_t clk_seq_and_variant (big endian)
237 * variant is a 3-bit field:
238 * 0xx Reserved, NCS backward compatibility
239 * 10x The variant specified in rfc4122
240 * 110 Reserved, Microsoft backward compatibility
241 * 111 Reserved for future definition
242 * uint8_t node[6]
243 *
244 * For version 4, these bits are set/cleared:
245 * time_hi_and_version & 0x0fff | 0x4000
246 * clk_seq_and_variant & 0x3fff | 0x8000
247 */
248 pid_t pid;
249 int i;
250
251 i = open("/dev/urandom", O_RDONLY);
252 if (i >= 0) {
253 read(i, buf, 16);
254 close(i);
255 }
256 /* Paranoia. /dev/urandom may be missing.
257 * rand() is guaranteed to generate at least [0, 2^15) range,
258 * but lowest bits in some libc are not so "random". */
259 srand(monotonic_us());
260 pid = getpid();
261 while (1) {
262 for (i = 0; i < 16; i++)
263 buf[i] ^= rand() >> 5;
264 if (pid == 0)
265 break;
266 srand(pid);
267 pid = 0;
268 }
269
270 /* version = 4 */
271 buf[4 + 2 ] = (buf[4 + 2 ] & 0x0f) | 0x40;
272 /* variant = 10x */
273 buf[4 + 2 + 2] = (buf[4 + 2 + 2] & 0x3f) | 0x80;
274}