2 * Simple C functions to supplement the C library
4 * Copyright (c) 2006 Fabrice Bellard
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:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
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
25 #include "qemu/osdep.h"
26 #include "qemu/host-utils.h"
29 #include "qemu-common.h"
30 #include "qemu/sockets.h"
33 #include "qemu/ctype.h"
34 #include "qemu/cutils.h"
35 #include "qemu/error-report.h"
37 void strpadcpy(char *buf
, int buf_size
, const char *str
, char pad
)
39 int len
= qemu_strnlen(str
, buf_size
);
40 memcpy(buf
, str
, len
);
41 memset(buf
+ len
, pad
, buf_size
- len
);
44 void pstrcpy(char *buf
, int buf_size
, const char *str
)
54 if (c
== 0 || q
>= buf
+ buf_size
- 1)
61 /* strcat and truncate. */
62 char *pstrcat(char *buf
, int buf_size
, const char *s
)
67 pstrcpy(buf
+ len
, buf_size
- len
, s
);
71 int strstart(const char *str
, const char *val
, const char **ptr
)
87 int stristart(const char *str
, const char *val
, const char **ptr
)
93 if (qemu_toupper(*p
) != qemu_toupper(*q
))
103 /* XXX: use host strnlen if available ? */
104 int qemu_strnlen(const char *s
, int max_len
)
108 for(i
= 0; i
< max_len
; i
++) {
116 char *qemu_strsep(char **input
, const char *delim
)
118 char *result
= *input
;
119 if (result
!= NULL
) {
122 for (p
= result
; *p
!= '\0'; p
++) {
123 if (strchr(delim
, *p
)) {
137 time_t mktimegm(struct tm
*tm
)
140 int y
= tm
->tm_year
+ 1900, m
= tm
->tm_mon
+ 1, d
= tm
->tm_mday
;
145 t
= 86400ULL * (d
+ (153 * m
- 457) / 5 + 365 * y
+ y
/ 4 - y
/ 100 +
147 t
+= 3600 * tm
->tm_hour
+ 60 * tm
->tm_min
+ tm
->tm_sec
;
152 * Make sure data goes on disk, but if possible do not bother to
153 * write out the inode just for timestamp updates.
155 * Unfortunately even in 2009 many operating systems do not support
156 * fdatasync and have to fall back to fsync.
158 int qemu_fdatasync(int fd
)
160 #ifdef CONFIG_FDATASYNC
161 return fdatasync(fd
);
168 * Sync changes made to the memory mapped file back to the backing
169 * storage. For POSIX compliant systems this will fallback
170 * to regular msync call. Otherwise it will trigger whole file sync
171 * (including the metadata case there is no support to skip that otherwise)
173 * @addr - start of the memory area to be synced
174 * @length - length of the are to be synced
175 * @fd - file descriptor for the file to be synced
176 * (mandatory only for POSIX non-compliant systems)
178 int qemu_msync(void *addr
, size_t length
, int fd
)
181 size_t align_mask
= ~(qemu_real_host_page_size
- 1);
184 * There are no strict reqs as per the length of mapping
185 * to be synced. Still the length needs to follow the address
186 * alignment changes. Additionally - round the size to the multiple
189 length
+= ((uintptr_t)addr
& (qemu_real_host_page_size
- 1));
190 length
= (length
+ ~align_mask
) & align_mask
;
192 addr
= (void *)((uintptr_t)addr
& align_mask
);
194 return msync(addr
, length
, MS_SYNC
);
195 #else /* CONFIG_POSIX */
197 * Perform the sync based on the file descriptor
198 * The sync range will most probably be wider than the one
199 * requested - but it will still get the job done
201 return qemu_fdatasync(fd
);
202 #endif /* CONFIG_POSIX */
206 /* Sets a specific flag */
207 int fcntl_setfl(int fd
, int flag
)
211 flags
= fcntl(fd
, F_GETFL
);
215 if (fcntl(fd
, F_SETFL
, flags
| flag
) == -1)
222 static int64_t suffix_mul(char suffix
, int64_t unit
)
224 switch (qemu_toupper(suffix
)) {
232 return unit
* unit
* unit
;
234 return unit
* unit
* unit
* unit
;
236 return unit
* unit
* unit
* unit
* unit
;
238 return unit
* unit
* unit
* unit
* unit
* unit
;
244 * Convert string to bytes, allowing either B/b for bytes, K/k for KB,
245 * M/m for MB, G/g for GB or T/t for TB. End pointer will be returned
246 * in *end, if not NULL. Return -ERANGE on overflow, and -EINVAL on
249 static int do_strtosz(const char *nptr
, const char **end
,
250 const char default_suffix
, int64_t unit
,
256 int mul_required
= 0;
257 double val
, mul
, integral
, fraction
;
259 retval
= qemu_strtod_finite(nptr
, &endptr
, &val
);
263 fraction
= modf(val
, &integral
);
268 mul
= suffix_mul(c
, unit
);
272 mul
= suffix_mul(default_suffix
, unit
);
275 if (mul
== 1 && mul_required
) {
280 * Values near UINT64_MAX overflow to 2**64 when converting to double
281 * precision. Compare against the maximum representable double precision
282 * value below 2**64, computed as "the next value after 2**64 (0x1p64) in
283 * the direction of 0".
285 if ((val
* mul
> nextafter(0x1p
64, 0)) || val
< 0) {
295 } else if (*endptr
) {
302 int qemu_strtosz(const char *nptr
, const char **end
, uint64_t *result
)
304 return do_strtosz(nptr
, end
, 'B', 1024, result
);
307 int qemu_strtosz_MiB(const char *nptr
, const char **end
, uint64_t *result
)
309 return do_strtosz(nptr
, end
, 'M', 1024, result
);
312 int qemu_strtosz_metric(const char *nptr
, const char **end
, uint64_t *result
)
314 return do_strtosz(nptr
, end
, 'B', 1000, result
);
318 * Helper function for error checking after strtol() and the like
320 static int check_strtox_error(const char *nptr
, char *ep
,
321 const char **endptr
, int libc_errno
)
328 /* Turn "no conversion" into an error */
329 if (libc_errno
== 0 && ep
== nptr
) {
333 /* Fail when we're expected to consume the string, but didn't */
334 if (!endptr
&& *ep
) {
342 * Convert string @nptr to an integer, and store it in @result.
344 * This is a wrapper around strtol() that is harder to misuse.
345 * Semantics of @nptr, @endptr, @base match strtol() with differences
348 * @nptr may be null, and no conversion is performed then.
350 * If no conversion is performed, store @nptr in *@endptr and return
353 * If @endptr is null, and the string isn't fully converted, return
354 * -EINVAL. This is the case when the pointer that would be stored in
355 * a non-null @endptr points to a character other than '\0'.
357 * If the conversion overflows @result, store INT_MAX in @result,
358 * and return -ERANGE.
360 * If the conversion underflows @result, store INT_MIN in @result,
361 * and return -ERANGE.
363 * Else store the converted value in @result, and return zero.
365 int qemu_strtoi(const char *nptr
, const char **endptr
, int base
,
371 assert((unsigned) base
<= 36 && base
!= 1);
380 lresult
= strtoll(nptr
, &ep
, base
);
381 if (lresult
< INT_MIN
) {
384 } else if (lresult
> INT_MAX
) {
390 return check_strtox_error(nptr
, ep
, endptr
, errno
);
394 * Convert string @nptr to an unsigned integer, and store it in @result.
396 * This is a wrapper around strtoul() that is harder to misuse.
397 * Semantics of @nptr, @endptr, @base match strtoul() with differences
400 * @nptr may be null, and no conversion is performed then.
402 * If no conversion is performed, store @nptr in *@endptr and return
405 * If @endptr is null, and the string isn't fully converted, return
406 * -EINVAL. This is the case when the pointer that would be stored in
407 * a non-null @endptr points to a character other than '\0'.
409 * If the conversion overflows @result, store UINT_MAX in @result,
410 * and return -ERANGE.
412 * Else store the converted value in @result, and return zero.
414 * Note that a number with a leading minus sign gets converted without
415 * the minus sign, checked for overflow (see above), then negated (in
416 * @result's type). This is exactly how strtoul() works.
418 int qemu_strtoui(const char *nptr
, const char **endptr
, int base
,
419 unsigned int *result
)
424 assert((unsigned) base
<= 36 && base
!= 1);
433 lresult
= strtoull(nptr
, &ep
, base
);
435 /* Windows returns 1 for negative out-of-range values. */
436 if (errno
== ERANGE
) {
439 if (lresult
> UINT_MAX
) {
442 } else if (lresult
< INT_MIN
) {
449 return check_strtox_error(nptr
, ep
, endptr
, errno
);
453 * Convert string @nptr to a long integer, and store it in @result.
455 * This is a wrapper around strtol() that is harder to misuse.
456 * Semantics of @nptr, @endptr, @base match strtol() with differences
459 * @nptr may be null, and no conversion is performed then.
461 * If no conversion is performed, store @nptr in *@endptr and return
464 * If @endptr is null, and the string isn't fully converted, return
465 * -EINVAL. This is the case when the pointer that would be stored in
466 * a non-null @endptr points to a character other than '\0'.
468 * If the conversion overflows @result, store LONG_MAX in @result,
469 * and return -ERANGE.
471 * If the conversion underflows @result, store LONG_MIN in @result,
472 * and return -ERANGE.
474 * Else store the converted value in @result, and return zero.
476 int qemu_strtol(const char *nptr
, const char **endptr
, int base
,
481 assert((unsigned) base
<= 36 && base
!= 1);
490 *result
= strtol(nptr
, &ep
, base
);
491 return check_strtox_error(nptr
, ep
, endptr
, errno
);
495 * Convert string @nptr to an unsigned long, and store it in @result.
497 * This is a wrapper around strtoul() that is harder to misuse.
498 * Semantics of @nptr, @endptr, @base match strtoul() with differences
501 * @nptr may be null, and no conversion is performed then.
503 * If no conversion is performed, store @nptr in *@endptr and return
506 * If @endptr is null, and the string isn't fully converted, return
507 * -EINVAL. This is the case when the pointer that would be stored in
508 * a non-null @endptr points to a character other than '\0'.
510 * If the conversion overflows @result, store ULONG_MAX in @result,
511 * and return -ERANGE.
513 * Else store the converted value in @result, and return zero.
515 * Note that a number with a leading minus sign gets converted without
516 * the minus sign, checked for overflow (see above), then negated (in
517 * @result's type). This is exactly how strtoul() works.
519 int qemu_strtoul(const char *nptr
, const char **endptr
, int base
,
520 unsigned long *result
)
524 assert((unsigned) base
<= 36 && base
!= 1);
533 *result
= strtoul(nptr
, &ep
, base
);
534 /* Windows returns 1 for negative out-of-range values. */
535 if (errno
== ERANGE
) {
538 return check_strtox_error(nptr
, ep
, endptr
, errno
);
542 * Convert string @nptr to an int64_t.
544 * Works like qemu_strtol(), except it stores INT64_MAX on overflow,
545 * and INT64_MIN on underflow.
547 int qemu_strtoi64(const char *nptr
, const char **endptr
, int base
,
552 assert((unsigned) base
<= 36 && base
!= 1);
560 /* This assumes int64_t is long long TODO relax */
561 QEMU_BUILD_BUG_ON(sizeof(int64_t) != sizeof(long long));
563 *result
= strtoll(nptr
, &ep
, base
);
564 return check_strtox_error(nptr
, ep
, endptr
, errno
);
568 * Convert string @nptr to an uint64_t.
570 * Works like qemu_strtoul(), except it stores UINT64_MAX on overflow.
572 int qemu_strtou64(const char *nptr
, const char **endptr
, int base
,
577 assert((unsigned) base
<= 36 && base
!= 1);
585 /* This assumes uint64_t is unsigned long long TODO relax */
586 QEMU_BUILD_BUG_ON(sizeof(uint64_t) != sizeof(unsigned long long));
588 *result
= strtoull(nptr
, &ep
, base
);
589 /* Windows returns 1 for negative out-of-range values. */
590 if (errno
== ERANGE
) {
593 return check_strtox_error(nptr
, ep
, endptr
, errno
);
597 * Convert string @nptr to a double.
599 * This is a wrapper around strtod() that is harder to misuse.
600 * Semantics of @nptr and @endptr match strtod() with differences
603 * @nptr may be null, and no conversion is performed then.
605 * If no conversion is performed, store @nptr in *@endptr and return
608 * If @endptr is null, and the string isn't fully converted, return
609 * -EINVAL. This is the case when the pointer that would be stored in
610 * a non-null @endptr points to a character other than '\0'.
612 * If the conversion overflows, store +/-HUGE_VAL in @result, depending
613 * on the sign, and return -ERANGE.
615 * If the conversion underflows, store +/-0.0 in @result, depending on the
616 * sign, and return -ERANGE.
618 * Else store the converted value in @result, and return zero.
620 int qemu_strtod(const char *nptr
, const char **endptr
, double *result
)
632 *result
= strtod(nptr
, &ep
);
633 return check_strtox_error(nptr
, ep
, endptr
, errno
);
637 * Convert string @nptr to a finite double.
639 * Works like qemu_strtod(), except that "NaN" and "inf" are rejected
640 * with -EINVAL and no conversion is performed.
642 int qemu_strtod_finite(const char *nptr
, const char **endptr
, double *result
)
647 ret
= qemu_strtod(nptr
, endptr
, &tmp
);
648 if (!ret
&& !isfinite(tmp
)) {
655 if (ret
!= -EINVAL
) {
662 * Searches for the first occurrence of 'c' in 's', and returns a pointer
663 * to the trailing null byte if none was found.
665 #ifndef HAVE_STRCHRNUL
666 const char *qemu_strchrnul(const char *s
, int c
)
668 const char *e
= strchr(s
, c
);
679 * @s: String to parse
680 * @value: Destination for parsed integer value
681 * @endptr: Destination for pointer to first character not consumed
682 * @base: integer base, between 2 and 36 inclusive, or 0
684 * Parse unsigned integer
686 * Parsed syntax is like strtoull()'s: arbitrary whitespace, a single optional
687 * '+' or '-', an optional "0x" if @base is 0 or 16, one or more digits.
689 * If @s is null, or @base is invalid, or @s doesn't start with an
690 * integer in the syntax above, set *@value to 0, *@endptr to @s, and
693 * Set *@endptr to point right beyond the parsed integer (even if the integer
694 * overflows or is negative, all digits will be parsed and *@endptr will
695 * point right beyond them).
697 * If the integer is negative, set *@value to 0, and return -ERANGE.
699 * If the integer overflows unsigned long long, set *@value to
700 * ULLONG_MAX, and return -ERANGE.
702 * Else, set *@value to the parsed integer, and return 0.
704 int parse_uint(const char *s
, unsigned long long *value
, char **endptr
,
708 char *endp
= (char *)s
;
709 unsigned long long val
= 0;
711 assert((unsigned) base
<= 36 && base
!= 1);
718 val
= strtoull(s
, &endp
, base
);
729 /* make sure we reject negative numbers: */
730 while (qemu_isspace(*s
)) {
748 * @s: String to parse
749 * @value: Destination for parsed integer value
750 * @base: integer base, between 2 and 36 inclusive, or 0
752 * Parse unsigned integer from entire string
754 * Have the same behavior of parse_uint(), but with an additional check
755 * for additional data after the parsed number. If extra characters are present
756 * after the parsed number, the function will return -EINVAL, and *@v will
759 int parse_uint_full(const char *s
, unsigned long long *value
, int base
)
764 r
= parse_uint(s
, value
, &endp
, base
);
776 int qemu_parse_fd(const char *param
)
782 fd
= strtol(param
, &endptr
, 10);
783 if (param
== endptr
/* no conversion performed */ ||
784 errno
!= 0 /* not representable as long; possibly others */ ||
785 *endptr
!= '\0' /* final string not empty */ ||
786 fd
< 0 /* invalid as file descriptor */ ||
787 fd
> INT_MAX
/* not representable as int */) {
794 * Implementation of ULEB128 (http://en.wikipedia.org/wiki/LEB128)
795 * Input is limited to 14-bit numbers
797 int uleb128_encode_small(uint8_t *out
, uint32_t n
)
799 g_assert(n
<= 0x3fff);
804 *out
++ = (n
& 0x7f) | 0x80;
810 int uleb128_decode_small(const uint8_t *in
, uint32_t *n
)
817 /* we exceed 14 bit number */
827 * helper to parse debug environment variables
829 int parse_debug_env(const char *name
, int max
, int initial
)
831 char *debug_env
= getenv(name
);
839 debug
= strtol(debug_env
, &inv
, 10);
840 if (inv
== debug_env
) {
843 if (debug
< 0 || debug
> max
|| errno
!= 0) {
844 warn_report("%s not in [0, %d]", name
, max
);
851 * Helper to print ethernet mac address
853 const char *qemu_ether_ntoa(const MACAddr
*mac
)
857 snprintf(ret
, sizeof(ret
), "%02x:%02x:%02x:%02x:%02x:%02x",
858 mac
->a
[0], mac
->a
[1], mac
->a
[2], mac
->a
[3], mac
->a
[4], mac
->a
[5]);
864 * Return human readable string for size @val.
865 * @val can be anything that uint64_t allows (no more than "16 EiB").
866 * Use IEC binary units like KiB, MiB, and so forth.
867 * Caller is responsible for passing it to g_free().
869 char *size_to_str(uint64_t val
)
871 static const char *suffixes
[] = { "", "Ki", "Mi", "Gi", "Ti", "Pi", "Ei" };
876 * The exponent (returned in i) minus one gives us
877 * floor(log2(val * 1024 / 1000). The correction makes us
878 * switch to the higher power when the integer part is >= 1000.
879 * (see e41b509d68afb1f for more info)
881 frexp(val
/ (1000.0 / 1024.0), &i
);
883 div
= 1ULL << (i
* 10);
885 return g_strdup_printf("%0.3g %sB", (double)val
/ div
, suffixes
[i
]);
888 int qemu_pstrcmp0(const char **str1
, const char **str2
)
890 return g_strcmp0(*str1
, *str2
);