]> git.proxmox.com Git - mirror_qemu.git/blame - util/cutils.c
util/cutils: Rename qemu_strtoll(), qemu_strtoull()
[mirror_qemu.git] / util / cutils.c
CommitLineData
18607dcb
FB
1/*
2 * Simple C functions to supplement the C library
5fafdf24 3 *
18607dcb
FB
4 * Copyright (c) 2006 Fabrice Bellard
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
aafd7584 24#include "qemu/osdep.h"
faf07963 25#include "qemu-common.h"
1de7afc9 26#include "qemu/host-utils.h"
9f9b17a4 27#include <math.h>
18607dcb 28
1de7afc9
PB
29#include "qemu/sockets.h"
30#include "qemu/iov.h"
4297c8ee 31#include "net/net.h"
f348b6d1 32#include "qemu/cutils.h"
8c5135f9 33
2a025ae4
DF
34void strpadcpy(char *buf, int buf_size, const char *str, char pad)
35{
36 int len = qemu_strnlen(str, buf_size);
37 memcpy(buf, str, len);
38 memset(buf + len, pad, buf_size - len);
39}
40
18607dcb
FB
41void pstrcpy(char *buf, int buf_size, const char *str)
42{
43 int c;
44 char *q = buf;
45
46 if (buf_size <= 0)
47 return;
48
49 for(;;) {
50 c = *str++;
51 if (c == 0 || q >= buf + buf_size - 1)
52 break;
53 *q++ = c;
54 }
55 *q = '\0';
56}
57
58/* strcat and truncate. */
59char *pstrcat(char *buf, int buf_size, const char *s)
60{
61 int len;
62 len = strlen(buf);
5fafdf24 63 if (len < buf_size)
18607dcb
FB
64 pstrcpy(buf + len, buf_size - len, s);
65 return buf;
66}
67
68int strstart(const char *str, const char *val, const char **ptr)
69{
70 const char *p, *q;
71 p = str;
72 q = val;
73 while (*q != '\0') {
74 if (*p != *q)
75 return 0;
76 p++;
77 q++;
78 }
79 if (ptr)
80 *ptr = p;
81 return 1;
82}
83
84int stristart(const char *str, const char *val, const char **ptr)
85{
86 const char *p, *q;
87 p = str;
88 q = val;
89 while (*q != '\0') {
cd390083 90 if (qemu_toupper(*p) != qemu_toupper(*q))
18607dcb
FB
91 return 0;
92 p++;
93 q++;
94 }
95 if (ptr)
96 *ptr = p;
97 return 1;
98}
3c6b2088 99
d43277c5
BS
100/* XXX: use host strnlen if available ? */
101int qemu_strnlen(const char *s, int max_len)
102{
103 int i;
104
105 for(i = 0; i < max_len; i++) {
106 if (s[i] == '\0') {
107 break;
108 }
109 }
110 return i;
111}
112
a38ed811
KW
113char *qemu_strsep(char **input, const char *delim)
114{
115 char *result = *input;
116 if (result != NULL) {
117 char *p;
118
119 for (p = result; *p != '\0'; p++) {
120 if (strchr(delim, *p)) {
121 break;
122 }
123 }
124 if (*p == '\0') {
125 *input = NULL;
126 } else {
127 *p = '\0';
128 *input = p + 1;
129 }
130 }
131 return result;
132}
133
3c6b2088
FB
134time_t mktimegm(struct tm *tm)
135{
136 time_t t;
137 int y = tm->tm_year + 1900, m = tm->tm_mon + 1, d = tm->tm_mday;
138 if (m < 3) {
139 m += 12;
140 y--;
141 }
b6db4aca 142 t = 86400ULL * (d + (153 * m - 457) / 5 + 365 * y + y / 4 - y / 100 +
3c6b2088
FB
143 y / 400 - 719469);
144 t += 3600 * tm->tm_hour + 60 * tm->tm_min + tm->tm_sec;
145 return t;
146}
b39ade83 147
6f1953c4
CH
148/*
149 * Make sure data goes on disk, but if possible do not bother to
150 * write out the inode just for timestamp updates.
151 *
152 * Unfortunately even in 2009 many operating systems do not support
153 * fdatasync and have to fall back to fsync.
154 */
155int qemu_fdatasync(int fd)
156{
5f6b9e8f 157#ifdef CONFIG_FDATASYNC
6f1953c4
CH
158 return fdatasync(fd);
159#else
160 return fsync(fd);
161#endif
162}
163
db1a4972
PB
164#ifndef _WIN32
165/* Sets a specific flag */
166int fcntl_setfl(int fd, int flag)
167{
168 int flags;
169
170 flags = fcntl(fd, F_GETFL);
171 if (flags == -1)
172 return -errno;
173
174 if (fcntl(fd, F_SETFL, flags | flag) == -1)
175 return -errno;
176
177 return 0;
178}
179#endif
180
eba90e4e
MA
181static int64_t suffix_mul(char suffix, int64_t unit)
182{
183 switch (qemu_toupper(suffix)) {
4677bb40 184 case QEMU_STRTOSZ_DEFSUFFIX_B:
eba90e4e 185 return 1;
4677bb40 186 case QEMU_STRTOSZ_DEFSUFFIX_KB:
eba90e4e 187 return unit;
4677bb40 188 case QEMU_STRTOSZ_DEFSUFFIX_MB:
eba90e4e 189 return unit * unit;
4677bb40 190 case QEMU_STRTOSZ_DEFSUFFIX_GB:
eba90e4e 191 return unit * unit * unit;
4677bb40 192 case QEMU_STRTOSZ_DEFSUFFIX_TB:
eba90e4e 193 return unit * unit * unit * unit;
4677bb40 194 case QEMU_STRTOSZ_DEFSUFFIX_PB:
5e00984a 195 return unit * unit * unit * unit * unit;
4677bb40 196 case QEMU_STRTOSZ_DEFSUFFIX_EB:
5e00984a 197 return unit * unit * unit * unit * unit * unit;
eba90e4e
MA
198 }
199 return -1;
200}
201
9f9b17a4
JS
202/*
203 * Convert string to bytes, allowing either B/b for bytes, K/k for KB,
8dddfb55 204 * M/m for MB, G/g for GB or T/t for TB. End pointer will be returned
37edbf7e
LG
205 * in *end, if not NULL. Return -ERANGE on overflow, Return -EINVAL on
206 * other error.
9f9b17a4 207 */
4677bb40 208int64_t qemu_strtosz_suffix_unit(const char *nptr, char **end,
a732e1ba 209 const char default_suffix, int64_t unit)
9f9b17a4 210{
37edbf7e 211 int64_t retval = -EINVAL;
f3bd362a 212 char *endptr;
eba90e4e 213 unsigned char c;
9f9b17a4
JS
214 int mul_required = 0;
215 double val, mul, integral, fraction;
216
217 errno = 0;
218 val = strtod(nptr, &endptr);
219 if (isnan(val) || endptr == nptr || errno != 0) {
220 goto fail;
221 }
7eb05349
JS
222 fraction = modf(val, &integral);
223 if (fraction != 0) {
9f9b17a4
JS
224 mul_required = 1;
225 }
9f9b17a4 226 c = *endptr;
eba90e4e
MA
227 mul = suffix_mul(c, unit);
228 if (mul >= 0) {
229 endptr++;
230 } else {
231 mul = suffix_mul(default_suffix, unit);
232 assert(mul >= 0);
9f9b17a4 233 }
eba90e4e 234 if (mul == 1 && mul_required) {
9f9b17a4
JS
235 goto fail;
236 }
70b4f4bb 237 if ((val * mul >= INT64_MAX) || val < 0) {
37edbf7e 238 retval = -ERANGE;
9f9b17a4
JS
239 goto fail;
240 }
241 retval = val * mul;
242
243fail:
244 if (end) {
245 *end = endptr;
246 }
247
248 return retval;
249}
d8427002 250
4677bb40
MAL
251int64_t qemu_strtosz_suffix(const char *nptr, char **end,
252 const char default_suffix)
a732e1ba 253{
4677bb40 254 return qemu_strtosz_suffix_unit(nptr, end, default_suffix, 1024);
a732e1ba
JR
255}
256
4677bb40 257int64_t qemu_strtosz(const char *nptr, char **end)
d8427002 258{
4677bb40 259 return qemu_strtosz_suffix(nptr, end, QEMU_STRTOSZ_DEFSUFFIX_MB);
d8427002 260}
443916d1 261
764e0fa4
CT
262/**
263 * Helper function for qemu_strto*l() functions.
264 */
47d4be12 265static int check_strtox_error(const char *p, char *endptr, const char **next,
764e0fa4
CT
266 int err)
267{
47d4be12
PB
268 if (err == 0 && endptr == p) {
269 err = EINVAL;
270 }
764e0fa4
CT
271 if (!next && *endptr) {
272 return -EINVAL;
273 }
274 if (next) {
275 *next = endptr;
276 }
277 return -err;
278}
279
280/**
4295f879 281 * Convert string @nptr to a long integer, and store it in @result.
764e0fa4 282 *
4295f879
MA
283 * This is a wrapper around strtol() that is harder to misuse.
284 * Semantics of @nptr, @endptr, @base match strtol() with differences
285 * noted below.
764e0fa4 286 *
4295f879 287 * @nptr may be null, and no conversion is performed then.
764e0fa4 288 *
4295f879
MA
289 * If no conversion is performed, store @nptr in *@endptr and return
290 * -EINVAL.
764e0fa4 291 *
4295f879
MA
292 * If @endptr is null, and the string isn't fully converted, return
293 * -EINVAL. This is the case when the pointer that would be stored in
294 * a non-null @endptr points to a character other than '\0'.
295 *
296 * If the conversion overflows @result, store LONG_MAX in @result,
297 * and return -ERANGE.
298 *
299 * If the conversion underflows @result, store LONG_MIN in @result,
300 * and return -ERANGE.
301 *
302 * Else store the converted value in @result, and return zero.
764e0fa4
CT
303 */
304int qemu_strtol(const char *nptr, const char **endptr, int base,
305 long *result)
306{
307 char *p;
308 int err = 0;
309 if (!nptr) {
310 if (endptr) {
311 *endptr = nptr;
312 }
313 err = -EINVAL;
314 } else {
315 errno = 0;
316 *result = strtol(nptr, &p, base);
47d4be12 317 err = check_strtox_error(nptr, p, endptr, errno);
764e0fa4
CT
318 }
319 return err;
320}
c817c015
CT
321
322/**
4295f879
MA
323 * Convert string @nptr to an unsigned long, and store it in @result.
324 *
325 * This is a wrapper around strtoul() that is harder to misuse.
326 * Semantics of @nptr, @endptr, @base match strtoul() with differences
327 * noted below.
328 *
329 * @nptr may be null, and no conversion is performed then.
330 *
331 * If no conversion is performed, store @nptr in *@endptr and return
332 * -EINVAL.
333 *
334 * If @endptr is null, and the string isn't fully converted, return
335 * -EINVAL. This is the case when the pointer that would be stored in
336 * a non-null @endptr points to a character other than '\0'.
c817c015 337 *
4295f879
MA
338 * If the conversion overflows @result, store ULONG_MAX in @result,
339 * and return -ERANGE.
c817c015 340 *
4295f879 341 * Else store the converted value in @result, and return zero.
c817c015 342 *
4295f879
MA
343 * Note that a number with a leading minus sign gets converted without
344 * the minus sign, checked for overflow (see above), then negated (in
345 * @result's type). This is exactly how strtoul() works.
c817c015
CT
346 */
347int qemu_strtoul(const char *nptr, const char **endptr, int base,
348 unsigned long *result)
349{
350 char *p;
351 int err = 0;
352 if (!nptr) {
353 if (endptr) {
354 *endptr = nptr;
355 }
356 err = -EINVAL;
357 } else {
358 errno = 0;
359 *result = strtoul(nptr, &p, base);
47d4be12
PB
360 /* Windows returns 1 for negative out-of-range values. */
361 if (errno == ERANGE) {
362 *result = -1;
363 }
364 err = check_strtox_error(nptr, p, endptr, errno);
c817c015
CT
365 }
366 return err;
367}
368
8ac4df40 369/**
4295f879 370 * Convert string @nptr to an int64_t.
8ac4df40 371 *
4295f879
MA
372 * Works like qemu_strtol(), except it stores INT64_MAX on overflow,
373 * and INT_MIN on underflow.
8ac4df40 374 */
b30d1886 375int qemu_strtoi64(const char *nptr, const char **endptr, int base,
8ac4df40
CT
376 int64_t *result)
377{
378 char *p;
379 int err = 0;
380 if (!nptr) {
381 if (endptr) {
382 *endptr = nptr;
383 }
384 err = -EINVAL;
385 } else {
386 errno = 0;
4295f879 387 /* FIXME This assumes int64_t is long long */
8ac4df40 388 *result = strtoll(nptr, &p, base);
47d4be12 389 err = check_strtox_error(nptr, p, endptr, errno);
8ac4df40
CT
390 }
391 return err;
392}
393
3904e6bf 394/**
4295f879 395 * Convert string @nptr to an uint64_t.
3904e6bf 396 *
4295f879 397 * Works like qemu_strtoul(), except it stores UINT64_MAX on overflow.
3904e6bf 398 */
b30d1886 399int qemu_strtou64(const char *nptr, const char **endptr, int base,
3904e6bf
CT
400 uint64_t *result)
401{
402 char *p;
403 int err = 0;
404 if (!nptr) {
405 if (endptr) {
406 *endptr = nptr;
407 }
408 err = -EINVAL;
409 } else {
410 errno = 0;
4295f879 411 /* FIXME This assumes uint64_t is unsigned long long */
3904e6bf 412 *result = strtoull(nptr, &p, base);
47d4be12
PB
413 /* Windows returns 1 for negative out-of-range values. */
414 if (errno == ERANGE) {
415 *result = -1;
416 }
417 err = check_strtox_error(nptr, p, endptr, errno);
3904e6bf
CT
418 }
419 return err;
420}
421
e3f9fe2d
EH
422/**
423 * parse_uint:
424 *
425 * @s: String to parse
426 * @value: Destination for parsed integer value
427 * @endptr: Destination for pointer to first character not consumed
428 * @base: integer base, between 2 and 36 inclusive, or 0
429 *
430 * Parse unsigned integer
431 *
432 * Parsed syntax is like strtoull()'s: arbitrary whitespace, a single optional
433 * '+' or '-', an optional "0x" if @base is 0 or 16, one or more digits.
434 *
435 * If @s is null, or @base is invalid, or @s doesn't start with an
436 * integer in the syntax above, set *@value to 0, *@endptr to @s, and
437 * return -EINVAL.
438 *
439 * Set *@endptr to point right beyond the parsed integer (even if the integer
440 * overflows or is negative, all digits will be parsed and *@endptr will
441 * point right beyond them).
442 *
443 * If the integer is negative, set *@value to 0, and return -ERANGE.
444 *
445 * If the integer overflows unsigned long long, set *@value to
446 * ULLONG_MAX, and return -ERANGE.
447 *
448 * Else, set *@value to the parsed integer, and return 0.
449 */
450int parse_uint(const char *s, unsigned long long *value, char **endptr,
451 int base)
452{
453 int r = 0;
454 char *endp = (char *)s;
455 unsigned long long val = 0;
456
457 if (!s) {
458 r = -EINVAL;
459 goto out;
460 }
461
462 errno = 0;
463 val = strtoull(s, &endp, base);
464 if (errno) {
465 r = -errno;
466 goto out;
467 }
468
469 if (endp == s) {
470 r = -EINVAL;
471 goto out;
472 }
473
474 /* make sure we reject negative numbers: */
475 while (isspace((unsigned char)*s)) {
476 s++;
477 }
478 if (*s == '-') {
479 val = 0;
480 r = -ERANGE;
481 goto out;
482 }
483
484out:
485 *value = val;
486 *endptr = endp;
487 return r;
488}
489
490/**
491 * parse_uint_full:
492 *
493 * @s: String to parse
494 * @value: Destination for parsed integer value
495 * @base: integer base, between 2 and 36 inclusive, or 0
496 *
497 * Parse unsigned integer from entire string
498 *
499 * Have the same behavior of parse_uint(), but with an additional check
500 * for additional data after the parsed number. If extra characters are present
501 * after the parsed number, the function will return -EINVAL, and *@v will
502 * be set to 0.
503 */
504int parse_uint_full(const char *s, unsigned long long *value, int base)
505{
506 char *endp;
507 int r;
508
509 r = parse_uint(s, value, &endp, base);
510 if (r < 0) {
511 return r;
512 }
513 if (*endp) {
514 *value = 0;
515 return -EINVAL;
516 }
517
518 return 0;
519}
520
443916d1
SB
521int qemu_parse_fd(const char *param)
522{
e9c5c1f4
LE
523 long fd;
524 char *endptr;
443916d1 525
e9c5c1f4 526 errno = 0;
443916d1 527 fd = strtol(param, &endptr, 10);
e9c5c1f4
LE
528 if (param == endptr /* no conversion performed */ ||
529 errno != 0 /* not representable as long; possibly others */ ||
530 *endptr != '\0' /* final string not empty */ ||
531 fd < 0 /* invalid as file descriptor */ ||
532 fd > INT_MAX /* not representable as int */) {
443916d1
SB
533 return -1;
534 }
535 return fd;
536}
9fb26641 537
e6546bb9
OW
538/*
539 * Implementation of ULEB128 (http://en.wikipedia.org/wiki/LEB128)
540 * Input is limited to 14-bit numbers
541 */
542int uleb128_encode_small(uint8_t *out, uint32_t n)
543{
544 g_assert(n <= 0x3fff);
545 if (n < 0x80) {
546 *out++ = n;
547 return 1;
548 } else {
549 *out++ = (n & 0x7f) | 0x80;
550 *out++ = n >> 7;
551 return 2;
552 }
553}
554
555int uleb128_decode_small(const uint8_t *in, uint32_t *n)
556{
557 if (!(*in & 0x80)) {
558 *n = *in++;
559 return 1;
560 } else {
561 *n = *in++ & 0x7f;
562 /* we exceed 14 bit number */
563 if (*in & 0x80) {
564 return -1;
565 }
566 *n |= *in++ << 7;
567 return 2;
568 }
569}
b16352ac
AL
570
571/*
572 * helper to parse debug environment variables
573 */
574int parse_debug_env(const char *name, int max, int initial)
575{
576 char *debug_env = getenv(name);
577 char *inv = NULL;
cc5d0e04 578 long debug;
b16352ac
AL
579
580 if (!debug_env) {
581 return initial;
582 }
cc5d0e04 583 errno = 0;
b16352ac
AL
584 debug = strtol(debug_env, &inv, 10);
585 if (inv == debug_env) {
586 return initial;
587 }
cc5d0e04 588 if (debug < 0 || debug > max || errno != 0) {
b16352ac
AL
589 fprintf(stderr, "warning: %s not in [0, %d]", name, max);
590 return initial;
591 }
592 return debug;
593}
4297c8ee
AK
594
595/*
596 * Helper to print ethernet mac address
597 */
598const char *qemu_ether_ntoa(const MACAddr *mac)
599{
600 static char ret[18];
601
602 snprintf(ret, sizeof(ret), "%02x:%02x:%02x:%02x:%02x:%02x",
603 mac->a[0], mac->a[1], mac->a[2], mac->a[3], mac->a[4], mac->a[5]);
604
605 return ret;
606}