]> git.ipfire.org Git - thirdparty/qemu.git/blame - util/cutils.c
Include qemu/module.h where needed, drop it from qemu-common.h
[thirdparty/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 */
856dfd8a 24
aafd7584 25#include "qemu/osdep.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"
856dfd8a 32#include "qemu/ctype.h"
f348b6d1 33#include "qemu/cutils.h"
05cb8ed5 34#include "qemu/error-report.h"
8c5135f9 35
2a025ae4
DF
36void strpadcpy(char *buf, int buf_size, const char *str, char pad)
37{
38 int len = qemu_strnlen(str, buf_size);
39 memcpy(buf, str, len);
40 memset(buf + len, pad, buf_size - len);
41}
42
18607dcb
FB
43void pstrcpy(char *buf, int buf_size, const char *str)
44{
45 int c;
46 char *q = buf;
47
48 if (buf_size <= 0)
49 return;
50
51 for(;;) {
52 c = *str++;
53 if (c == 0 || q >= buf + buf_size - 1)
54 break;
55 *q++ = c;
56 }
57 *q = '\0';
58}
59
60/* strcat and truncate. */
61char *pstrcat(char *buf, int buf_size, const char *s)
62{
63 int len;
64 len = strlen(buf);
5fafdf24 65 if (len < buf_size)
18607dcb
FB
66 pstrcpy(buf + len, buf_size - len, s);
67 return buf;
68}
69
70int strstart(const char *str, const char *val, const char **ptr)
71{
72 const char *p, *q;
73 p = str;
74 q = val;
75 while (*q != '\0') {
76 if (*p != *q)
77 return 0;
78 p++;
79 q++;
80 }
81 if (ptr)
82 *ptr = p;
83 return 1;
84}
85
86int stristart(const char *str, const char *val, const char **ptr)
87{
88 const char *p, *q;
89 p = str;
90 q = val;
91 while (*q != '\0') {
cd390083 92 if (qemu_toupper(*p) != qemu_toupper(*q))
18607dcb
FB
93 return 0;
94 p++;
95 q++;
96 }
97 if (ptr)
98 *ptr = p;
99 return 1;
100}
3c6b2088 101
d43277c5
BS
102/* XXX: use host strnlen if available ? */
103int qemu_strnlen(const char *s, int max_len)
104{
105 int i;
106
107 for(i = 0; i < max_len; i++) {
108 if (s[i] == '\0') {
109 break;
110 }
111 }
112 return i;
113}
114
a38ed811
KW
115char *qemu_strsep(char **input, const char *delim)
116{
117 char *result = *input;
118 if (result != NULL) {
119 char *p;
120
121 for (p = result; *p != '\0'; p++) {
122 if (strchr(delim, *p)) {
123 break;
124 }
125 }
126 if (*p == '\0') {
127 *input = NULL;
128 } else {
129 *p = '\0';
130 *input = p + 1;
131 }
132 }
133 return result;
134}
135
3c6b2088
FB
136time_t mktimegm(struct tm *tm)
137{
138 time_t t;
139 int y = tm->tm_year + 1900, m = tm->tm_mon + 1, d = tm->tm_mday;
140 if (m < 3) {
141 m += 12;
142 y--;
143 }
b6db4aca 144 t = 86400ULL * (d + (153 * m - 457) / 5 + 365 * y + y / 4 - y / 100 +
3c6b2088
FB
145 y / 400 - 719469);
146 t += 3600 * tm->tm_hour + 60 * tm->tm_min + tm->tm_sec;
147 return t;
148}
b39ade83 149
6f1953c4
CH
150/*
151 * Make sure data goes on disk, but if possible do not bother to
152 * write out the inode just for timestamp updates.
153 *
154 * Unfortunately even in 2009 many operating systems do not support
155 * fdatasync and have to fall back to fsync.
156 */
157int qemu_fdatasync(int fd)
158{
5f6b9e8f 159#ifdef CONFIG_FDATASYNC
6f1953c4
CH
160 return fdatasync(fd);
161#else
162 return fsync(fd);
163#endif
164}
165
db1a4972
PB
166#ifndef _WIN32
167/* Sets a specific flag */
168int fcntl_setfl(int fd, int flag)
169{
170 int flags;
171
172 flags = fcntl(fd, F_GETFL);
173 if (flags == -1)
174 return -errno;
175
176 if (fcntl(fd, F_SETFL, flags | flag) == -1)
177 return -errno;
178
179 return 0;
180}
181#endif
182
eba90e4e
MA
183static int64_t suffix_mul(char suffix, int64_t unit)
184{
185 switch (qemu_toupper(suffix)) {
17f94256 186 case 'B':
eba90e4e 187 return 1;
17f94256 188 case 'K':
eba90e4e 189 return unit;
17f94256 190 case 'M':
eba90e4e 191 return unit * unit;
17f94256 192 case 'G':
eba90e4e 193 return unit * unit * unit;
17f94256 194 case 'T':
eba90e4e 195 return unit * unit * unit * unit;
17f94256 196 case 'P':
5e00984a 197 return unit * unit * unit * unit * unit;
17f94256 198 case 'E':
5e00984a 199 return unit * unit * unit * unit * unit * unit;
eba90e4e
MA
200 }
201 return -1;
202}
203
9f9b17a4
JS
204/*
205 * Convert string to bytes, allowing either B/b for bytes, K/k for KB,
8dddfb55 206 * M/m for MB, G/g for GB or T/t for TB. End pointer will be returned
af02f4c5 207 * in *end, if not NULL. Return -ERANGE on overflow, and -EINVAL on
37edbf7e 208 * other error.
9f9b17a4 209 */
af02f4c5 210static int do_strtosz(const char *nptr, const char **end,
f17fd4fd 211 const char default_suffix, int64_t unit,
f46bfdbf 212 uint64_t *result)
9f9b17a4 213{
f17fd4fd 214 int retval;
af02f4c5 215 const char *endptr;
eba90e4e 216 unsigned char c;
9f9b17a4
JS
217 int mul_required = 0;
218 double val, mul, integral, fraction;
219
af02f4c5
DH
220 retval = qemu_strtod_finite(nptr, &endptr, &val);
221 if (retval) {
4fcdf65a 222 goto out;
9f9b17a4 223 }
7eb05349
JS
224 fraction = modf(val, &integral);
225 if (fraction != 0) {
9f9b17a4
JS
226 mul_required = 1;
227 }
9f9b17a4 228 c = *endptr;
eba90e4e
MA
229 mul = suffix_mul(c, unit);
230 if (mul >= 0) {
231 endptr++;
232 } else {
233 mul = suffix_mul(default_suffix, unit);
234 assert(mul >= 0);
9f9b17a4 235 }
eba90e4e 236 if (mul == 1 && mul_required) {
4fcdf65a
MA
237 retval = -EINVAL;
238 goto out;
9f9b17a4 239 }
f46bfdbf
MA
240 /*
241 * Values >= 0xfffffffffffffc00 overflow uint64_t after their trip
242 * through double (53 bits of precision).
243 */
244 if ((val * mul >= 0xfffffffffffffc00) || val < 0) {
37edbf7e 245 retval = -ERANGE;
4fcdf65a 246 goto out;
9f9b17a4 247 }
f17fd4fd
MA
248 *result = val * mul;
249 retval = 0;
9f9b17a4 250
4fcdf65a 251out:
9f9b17a4
JS
252 if (end) {
253 *end = endptr;
4fcdf65a
MA
254 } else if (*endptr) {
255 retval = -EINVAL;
9f9b17a4
JS
256 }
257
258 return retval;
259}
d8427002 260
af02f4c5 261int qemu_strtosz(const char *nptr, const char **end, uint64_t *result)
a732e1ba 262{
f17fd4fd 263 return do_strtosz(nptr, end, 'B', 1024, result);
a732e1ba
JR
264}
265
af02f4c5 266int qemu_strtosz_MiB(const char *nptr, const char **end, uint64_t *result)
d8427002 267{
f17fd4fd 268 return do_strtosz(nptr, end, 'M', 1024, result);
d8427002 269}
443916d1 270
af02f4c5 271int qemu_strtosz_metric(const char *nptr, const char **end, uint64_t *result)
d2734d26 272{
f17fd4fd 273 return do_strtosz(nptr, end, 'B', 1000, result);
d2734d26
MA
274}
275
764e0fa4 276/**
717adf96 277 * Helper function for error checking after strtol() and the like
764e0fa4 278 */
717adf96
MA
279static int check_strtox_error(const char *nptr, char *ep,
280 const char **endptr, int libc_errno)
764e0fa4 281{
53a90b97 282 assert(ep >= nptr);
4baef267
MA
283 if (endptr) {
284 *endptr = ep;
285 }
286
287 /* Turn "no conversion" into an error */
717adf96 288 if (libc_errno == 0 && ep == nptr) {
4baef267 289 return -EINVAL;
47d4be12 290 }
4baef267
MA
291
292 /* Fail when we're expected to consume the string, but didn't */
717adf96 293 if (!endptr && *ep) {
764e0fa4
CT
294 return -EINVAL;
295 }
4baef267 296
717adf96 297 return -libc_errno;
764e0fa4
CT
298}
299
473a2a33
DB
300/**
301 * Convert string @nptr to an integer, and store it in @result.
302 *
303 * This is a wrapper around strtol() that is harder to misuse.
304 * Semantics of @nptr, @endptr, @base match strtol() with differences
305 * noted below.
306 *
307 * @nptr may be null, and no conversion is performed then.
308 *
309 * If no conversion is performed, store @nptr in *@endptr and return
310 * -EINVAL.
311 *
312 * If @endptr is null, and the string isn't fully converted, return
313 * -EINVAL. This is the case when the pointer that would be stored in
314 * a non-null @endptr points to a character other than '\0'.
315 *
316 * If the conversion overflows @result, store INT_MAX in @result,
317 * and return -ERANGE.
318 *
319 * If the conversion underflows @result, store INT_MIN in @result,
320 * and return -ERANGE.
321 *
322 * Else store the converted value in @result, and return zero.
323 */
324int qemu_strtoi(const char *nptr, const char **endptr, int base,
325 int *result)
326{
327 char *ep;
328 long long lresult;
329
53a90b97 330 assert((unsigned) base <= 36 && base != 1);
473a2a33
DB
331 if (!nptr) {
332 if (endptr) {
333 *endptr = nptr;
334 }
335 return -EINVAL;
336 }
337
338 errno = 0;
339 lresult = strtoll(nptr, &ep, base);
340 if (lresult < INT_MIN) {
341 *result = INT_MIN;
342 errno = ERANGE;
343 } else if (lresult > INT_MAX) {
344 *result = INT_MAX;
345 errno = ERANGE;
346 } else {
347 *result = lresult;
348 }
349 return check_strtox_error(nptr, ep, endptr, errno);
350}
351
352/**
353 * Convert string @nptr to an unsigned integer, and store it in @result.
354 *
355 * This is a wrapper around strtoul() that is harder to misuse.
356 * Semantics of @nptr, @endptr, @base match strtoul() with differences
357 * noted below.
358 *
359 * @nptr may be null, and no conversion is performed then.
360 *
361 * If no conversion is performed, store @nptr in *@endptr and return
362 * -EINVAL.
363 *
364 * If @endptr is null, and the string isn't fully converted, return
365 * -EINVAL. This is the case when the pointer that would be stored in
366 * a non-null @endptr points to a character other than '\0'.
367 *
368 * If the conversion overflows @result, store UINT_MAX in @result,
369 * and return -ERANGE.
370 *
371 * Else store the converted value in @result, and return zero.
372 *
373 * Note that a number with a leading minus sign gets converted without
374 * the minus sign, checked for overflow (see above), then negated (in
375 * @result's type). This is exactly how strtoul() works.
376 */
377int qemu_strtoui(const char *nptr, const char **endptr, int base,
378 unsigned int *result)
379{
380 char *ep;
381 long long lresult;
382
53a90b97 383 assert((unsigned) base <= 36 && base != 1);
473a2a33
DB
384 if (!nptr) {
385 if (endptr) {
386 *endptr = nptr;
387 }
388 return -EINVAL;
389 }
390
391 errno = 0;
392 lresult = strtoull(nptr, &ep, base);
393
394 /* Windows returns 1 for negative out-of-range values. */
395 if (errno == ERANGE) {
396 *result = -1;
397 } else {
398 if (lresult > UINT_MAX) {
399 *result = UINT_MAX;
400 errno = ERANGE;
401 } else if (lresult < INT_MIN) {
402 *result = UINT_MAX;
403 errno = ERANGE;
404 } else {
405 *result = lresult;
406 }
407 }
408 return check_strtox_error(nptr, ep, endptr, errno);
409}
410
764e0fa4 411/**
4295f879 412 * Convert string @nptr to a long integer, and store it in @result.
764e0fa4 413 *
4295f879
MA
414 * This is a wrapper around strtol() that is harder to misuse.
415 * Semantics of @nptr, @endptr, @base match strtol() with differences
416 * noted below.
764e0fa4 417 *
4295f879 418 * @nptr may be null, and no conversion is performed then.
764e0fa4 419 *
4295f879
MA
420 * If no conversion is performed, store @nptr in *@endptr and return
421 * -EINVAL.
764e0fa4 422 *
4295f879
MA
423 * If @endptr is null, and the string isn't fully converted, return
424 * -EINVAL. This is the case when the pointer that would be stored in
425 * a non-null @endptr points to a character other than '\0'.
426 *
427 * If the conversion overflows @result, store LONG_MAX in @result,
428 * and return -ERANGE.
429 *
430 * If the conversion underflows @result, store LONG_MIN in @result,
431 * and return -ERANGE.
432 *
433 * Else store the converted value in @result, and return zero.
764e0fa4
CT
434 */
435int qemu_strtol(const char *nptr, const char **endptr, int base,
436 long *result)
437{
717adf96 438 char *ep;
4baef267 439
53a90b97 440 assert((unsigned) base <= 36 && base != 1);
764e0fa4
CT
441 if (!nptr) {
442 if (endptr) {
443 *endptr = nptr;
444 }
4baef267 445 return -EINVAL;
764e0fa4 446 }
4baef267
MA
447
448 errno = 0;
449 *result = strtol(nptr, &ep, base);
450 return check_strtox_error(nptr, ep, endptr, errno);
764e0fa4 451}
c817c015
CT
452
453/**
4295f879
MA
454 * Convert string @nptr to an unsigned long, and store it in @result.
455 *
456 * This is a wrapper around strtoul() that is harder to misuse.
457 * Semantics of @nptr, @endptr, @base match strtoul() with differences
458 * noted below.
459 *
460 * @nptr may be null, and no conversion is performed then.
461 *
462 * If no conversion is performed, store @nptr in *@endptr and return
463 * -EINVAL.
464 *
465 * If @endptr is null, and the string isn't fully converted, return
466 * -EINVAL. This is the case when the pointer that would be stored in
467 * a non-null @endptr points to a character other than '\0'.
c817c015 468 *
4295f879
MA
469 * If the conversion overflows @result, store ULONG_MAX in @result,
470 * and return -ERANGE.
c817c015 471 *
4295f879 472 * Else store the converted value in @result, and return zero.
c817c015 473 *
4295f879
MA
474 * Note that a number with a leading minus sign gets converted without
475 * the minus sign, checked for overflow (see above), then negated (in
476 * @result's type). This is exactly how strtoul() works.
c817c015
CT
477 */
478int qemu_strtoul(const char *nptr, const char **endptr, int base,
479 unsigned long *result)
480{
717adf96 481 char *ep;
4baef267 482
53a90b97 483 assert((unsigned) base <= 36 && base != 1);
c817c015
CT
484 if (!nptr) {
485 if (endptr) {
486 *endptr = nptr;
487 }
4baef267
MA
488 return -EINVAL;
489 }
490
491 errno = 0;
492 *result = strtoul(nptr, &ep, base);
493 /* Windows returns 1 for negative out-of-range values. */
494 if (errno == ERANGE) {
495 *result = -1;
c817c015 496 }
4baef267 497 return check_strtox_error(nptr, ep, endptr, errno);
c817c015
CT
498}
499
8ac4df40 500/**
4295f879 501 * Convert string @nptr to an int64_t.
8ac4df40 502 *
4295f879
MA
503 * Works like qemu_strtol(), except it stores INT64_MAX on overflow,
504 * and INT_MIN on underflow.
8ac4df40 505 */
b30d1886 506int qemu_strtoi64(const char *nptr, const char **endptr, int base,
8ac4df40
CT
507 int64_t *result)
508{
717adf96 509 char *ep;
4baef267 510
53a90b97 511 assert((unsigned) base <= 36 && base != 1);
8ac4df40
CT
512 if (!nptr) {
513 if (endptr) {
514 *endptr = nptr;
515 }
4baef267 516 return -EINVAL;
8ac4df40 517 }
4baef267
MA
518
519 errno = 0;
520 /* FIXME This assumes int64_t is long long */
521 *result = strtoll(nptr, &ep, base);
522 return check_strtox_error(nptr, ep, endptr, errno);
8ac4df40
CT
523}
524
3904e6bf 525/**
4295f879 526 * Convert string @nptr to an uint64_t.
3904e6bf 527 *
4295f879 528 * Works like qemu_strtoul(), except it stores UINT64_MAX on overflow.
3904e6bf 529 */
b30d1886 530int qemu_strtou64(const char *nptr, const char **endptr, int base,
3904e6bf
CT
531 uint64_t *result)
532{
717adf96 533 char *ep;
4baef267 534
53a90b97 535 assert((unsigned) base <= 36 && base != 1);
3904e6bf
CT
536 if (!nptr) {
537 if (endptr) {
538 *endptr = nptr;
539 }
4baef267
MA
540 return -EINVAL;
541 }
542
543 errno = 0;
544 /* FIXME This assumes uint64_t is unsigned long long */
545 *result = strtoull(nptr, &ep, base);
546 /* Windows returns 1 for negative out-of-range values. */
547 if (errno == ERANGE) {
548 *result = -1;
3904e6bf 549 }
4baef267 550 return check_strtox_error(nptr, ep, endptr, errno);
3904e6bf
CT
551}
552
ca28f548
DH
553/**
554 * Convert string @nptr to a double.
555 *
556 * This is a wrapper around strtod() that is harder to misuse.
557 * Semantics of @nptr and @endptr match strtod() with differences
558 * noted below.
559 *
560 * @nptr may be null, and no conversion is performed then.
561 *
562 * If no conversion is performed, store @nptr in *@endptr and return
563 * -EINVAL.
564 *
565 * If @endptr is null, and the string isn't fully converted, return
566 * -EINVAL. This is the case when the pointer that would be stored in
567 * a non-null @endptr points to a character other than '\0'.
568 *
569 * If the conversion overflows, store +/-HUGE_VAL in @result, depending
570 * on the sign, and return -ERANGE.
571 *
572 * If the conversion underflows, store +/-0.0 in @result, depending on the
573 * sign, and return -ERANGE.
574 *
575 * Else store the converted value in @result, and return zero.
576 */
577int qemu_strtod(const char *nptr, const char **endptr, double *result)
578{
579 char *ep;
580
581 if (!nptr) {
582 if (endptr) {
583 *endptr = nptr;
584 }
585 return -EINVAL;
586 }
587
588 errno = 0;
589 *result = strtod(nptr, &ep);
590 return check_strtox_error(nptr, ep, endptr, errno);
591}
592
593/**
594 * Convert string @nptr to a finite double.
595 *
596 * Works like qemu_strtod(), except that "NaN" and "inf" are rejected
597 * with -EINVAL and no conversion is performed.
598 */
599int qemu_strtod_finite(const char *nptr, const char **endptr, double *result)
600{
601 double tmp;
602 int ret;
603
604 ret = qemu_strtod(nptr, endptr, &tmp);
605 if (!ret && !isfinite(tmp)) {
606 if (endptr) {
607 *endptr = nptr;
608 }
609 ret = -EINVAL;
610 }
611
612 if (ret != -EINVAL) {
613 *result = tmp;
614 }
615 return ret;
616}
617
5c99fa37
KF
618/**
619 * Searches for the first occurrence of 'c' in 's', and returns a pointer
620 * to the trailing null byte if none was found.
621 */
622#ifndef HAVE_STRCHRNUL
623const char *qemu_strchrnul(const char *s, int c)
624{
625 const char *e = strchr(s, c);
626 if (!e) {
627 e = s + strlen(s);
628 }
629 return e;
630}
631#endif
632
e3f9fe2d
EH
633/**
634 * parse_uint:
635 *
636 * @s: String to parse
637 * @value: Destination for parsed integer value
638 * @endptr: Destination for pointer to first character not consumed
639 * @base: integer base, between 2 and 36 inclusive, or 0
640 *
641 * Parse unsigned integer
642 *
643 * Parsed syntax is like strtoull()'s: arbitrary whitespace, a single optional
644 * '+' or '-', an optional "0x" if @base is 0 or 16, one or more digits.
645 *
646 * If @s is null, or @base is invalid, or @s doesn't start with an
647 * integer in the syntax above, set *@value to 0, *@endptr to @s, and
648 * return -EINVAL.
649 *
650 * Set *@endptr to point right beyond the parsed integer (even if the integer
651 * overflows or is negative, all digits will be parsed and *@endptr will
652 * point right beyond them).
653 *
654 * If the integer is negative, set *@value to 0, and return -ERANGE.
655 *
656 * If the integer overflows unsigned long long, set *@value to
657 * ULLONG_MAX, and return -ERANGE.
658 *
659 * Else, set *@value to the parsed integer, and return 0.
660 */
661int parse_uint(const char *s, unsigned long long *value, char **endptr,
662 int base)
663{
664 int r = 0;
665 char *endp = (char *)s;
666 unsigned long long val = 0;
667
53a90b97 668 assert((unsigned) base <= 36 && base != 1);
e3f9fe2d
EH
669 if (!s) {
670 r = -EINVAL;
671 goto out;
672 }
673
674 errno = 0;
675 val = strtoull(s, &endp, base);
676 if (errno) {
677 r = -errno;
678 goto out;
679 }
680
681 if (endp == s) {
682 r = -EINVAL;
683 goto out;
684 }
685
686 /* make sure we reject negative numbers: */
db3d11ee 687 while (qemu_isspace(*s)) {
e3f9fe2d
EH
688 s++;
689 }
690 if (*s == '-') {
691 val = 0;
692 r = -ERANGE;
693 goto out;
694 }
695
696out:
697 *value = val;
698 *endptr = endp;
699 return r;
700}
701
702/**
703 * parse_uint_full:
704 *
705 * @s: String to parse
706 * @value: Destination for parsed integer value
707 * @base: integer base, between 2 and 36 inclusive, or 0
708 *
709 * Parse unsigned integer from entire string
710 *
711 * Have the same behavior of parse_uint(), but with an additional check
712 * for additional data after the parsed number. If extra characters are present
713 * after the parsed number, the function will return -EINVAL, and *@v will
714 * be set to 0.
715 */
716int parse_uint_full(const char *s, unsigned long long *value, int base)
717{
718 char *endp;
719 int r;
720
721 r = parse_uint(s, value, &endp, base);
722 if (r < 0) {
723 return r;
724 }
725 if (*endp) {
726 *value = 0;
727 return -EINVAL;
728 }
729
730 return 0;
731}
732
443916d1
SB
733int qemu_parse_fd(const char *param)
734{
e9c5c1f4
LE
735 long fd;
736 char *endptr;
443916d1 737
e9c5c1f4 738 errno = 0;
443916d1 739 fd = strtol(param, &endptr, 10);
e9c5c1f4
LE
740 if (param == endptr /* no conversion performed */ ||
741 errno != 0 /* not representable as long; possibly others */ ||
742 *endptr != '\0' /* final string not empty */ ||
743 fd < 0 /* invalid as file descriptor */ ||
744 fd > INT_MAX /* not representable as int */) {
443916d1
SB
745 return -1;
746 }
747 return fd;
748}
9fb26641 749
e6546bb9
OW
750/*
751 * Implementation of ULEB128 (http://en.wikipedia.org/wiki/LEB128)
752 * Input is limited to 14-bit numbers
753 */
754int uleb128_encode_small(uint8_t *out, uint32_t n)
755{
756 g_assert(n <= 0x3fff);
757 if (n < 0x80) {
758 *out++ = n;
759 return 1;
760 } else {
761 *out++ = (n & 0x7f) | 0x80;
762 *out++ = n >> 7;
763 return 2;
764 }
765}
766
767int uleb128_decode_small(const uint8_t *in, uint32_t *n)
768{
769 if (!(*in & 0x80)) {
770 *n = *in++;
771 return 1;
772 } else {
773 *n = *in++ & 0x7f;
774 /* we exceed 14 bit number */
775 if (*in & 0x80) {
776 return -1;
777 }
778 *n |= *in++ << 7;
779 return 2;
780 }
781}
b16352ac
AL
782
783/*
784 * helper to parse debug environment variables
785 */
786int parse_debug_env(const char *name, int max, int initial)
787{
788 char *debug_env = getenv(name);
789 char *inv = NULL;
cc5d0e04 790 long debug;
b16352ac
AL
791
792 if (!debug_env) {
793 return initial;
794 }
cc5d0e04 795 errno = 0;
b16352ac
AL
796 debug = strtol(debug_env, &inv, 10);
797 if (inv == debug_env) {
798 return initial;
799 }
cc5d0e04 800 if (debug < 0 || debug > max || errno != 0) {
05cb8ed5 801 warn_report("%s not in [0, %d]", name, max);
b16352ac
AL
802 return initial;
803 }
804 return debug;
805}
4297c8ee
AK
806
807/*
808 * Helper to print ethernet mac address
809 */
810const char *qemu_ether_ntoa(const MACAddr *mac)
811{
812 static char ret[18];
813
814 snprintf(ret, sizeof(ret), "%02x:%02x:%02x:%02x:%02x:%02x",
815 mac->a[0], mac->a[1], mac->a[2], mac->a[3], mac->a[4], mac->a[5]);
816
817 return ret;
818}
22951aaa
PX
819
820/*
821 * Return human readable string for size @val.
822 * @val can be anything that uint64_t allows (no more than "16 EiB").
823 * Use IEC binary units like KiB, MiB, and so forth.
824 * Caller is responsible for passing it to g_free().
825 */
826char *size_to_str(uint64_t val)
827{
828 static const char *suffixes[] = { "", "Ki", "Mi", "Gi", "Ti", "Pi", "Ei" };
754da867 829 uint64_t div;
22951aaa
PX
830 int i;
831
832 /*
833 * The exponent (returned in i) minus one gives us
834 * floor(log2(val * 1024 / 1000). The correction makes us
835 * switch to the higher power when the integer part is >= 1000.
836 * (see e41b509d68afb1f for more info)
837 */
838 frexp(val / (1000.0 / 1024.0), &i);
839 i = (i - 1) / 10;
840 div = 1ULL << (i * 10);
841
842 return g_strdup_printf("%0.3g %sB", (double)val / div, suffixes[i]);
843}
85e33a28
MAL
844
845int qemu_pstrcmp0(const char **str1, const char **str2)
846{
847 return g_strcmp0(*str1, *str2);
848}