1 /* 2 * Simple C functions to supplement the C library 3 * 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 */ 24 25 #include "qemu/osdep.h" 26 #include "qemu/host-utils.h" 27 #include <math.h> 28 29 #include "qemu/sockets.h" 30 #include "qemu/iov.h" 31 #include "net/net.h" 32 #include "qemu/ctype.h" 33 #include "qemu/cutils.h" 34 #include "qemu/error-report.h" 35 36 void 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 43 void 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. */ 61 char *pstrcat(char *buf, int buf_size, const char *s) 62 { 63 int len; 64 len = strlen(buf); 65 if (len < buf_size) 66 pstrcpy(buf + len, buf_size - len, s); 67 return buf; 68 } 69 70 int 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 86 int 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') { 92 if (qemu_toupper(*p) != qemu_toupper(*q)) 93 return 0; 94 p++; 95 q++; 96 } 97 if (ptr) 98 *ptr = p; 99 return 1; 100 } 101 102 /* XXX: use host strnlen if available ? */ 103 int 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 115 char *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 136 time_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 } 144 t = 86400ULL * (d + (153 * m - 457) / 5 + 365 * y + y / 4 - y / 100 + 145 y / 400 - 719469); 146 t += 3600 * tm->tm_hour + 60 * tm->tm_min + tm->tm_sec; 147 return t; 148 } 149 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 */ 157 int qemu_fdatasync(int fd) 158 { 159 #ifdef CONFIG_FDATASYNC 160 return fdatasync(fd); 161 #else 162 return fsync(fd); 163 #endif 164 } 165 166 #ifndef _WIN32 167 /* Sets a specific flag */ 168 int 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 183 static int64_t suffix_mul(char suffix, int64_t unit) 184 { 185 switch (qemu_toupper(suffix)) { 186 case 'B': 187 return 1; 188 case 'K': 189 return unit; 190 case 'M': 191 return unit * unit; 192 case 'G': 193 return unit * unit * unit; 194 case 'T': 195 return unit * unit * unit * unit; 196 case 'P': 197 return unit * unit * unit * unit * unit; 198 case 'E': 199 return unit * unit * unit * unit * unit * unit; 200 } 201 return -1; 202 } 203 204 /* 205 * Convert string to bytes, allowing either B/b for bytes, K/k for KB, 206 * M/m for MB, G/g for GB or T/t for TB. End pointer will be returned 207 * in *end, if not NULL. Return -ERANGE on overflow, and -EINVAL on 208 * other error. 209 */ 210 static int do_strtosz(const char *nptr, const char **end, 211 const char default_suffix, int64_t unit, 212 uint64_t *result) 213 { 214 int retval; 215 const char *endptr; 216 unsigned char c; 217 int mul_required = 0; 218 double val, mul, integral, fraction; 219 220 retval = qemu_strtod_finite(nptr, &endptr, &val); 221 if (retval) { 222 goto out; 223 } 224 fraction = modf(val, &integral); 225 if (fraction != 0) { 226 mul_required = 1; 227 } 228 c = *endptr; 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); 235 } 236 if (mul == 1 && mul_required) { 237 retval = -EINVAL; 238 goto out; 239 } 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) { 245 retval = -ERANGE; 246 goto out; 247 } 248 *result = val * mul; 249 retval = 0; 250 251 out: 252 if (end) { 253 *end = endptr; 254 } else if (*endptr) { 255 retval = -EINVAL; 256 } 257 258 return retval; 259 } 260 261 int qemu_strtosz(const char *nptr, const char **end, uint64_t *result) 262 { 263 return do_strtosz(nptr, end, 'B', 1024, result); 264 } 265 266 int qemu_strtosz_MiB(const char *nptr, const char **end, uint64_t *result) 267 { 268 return do_strtosz(nptr, end, 'M', 1024, result); 269 } 270 271 int qemu_strtosz_metric(const char *nptr, const char **end, uint64_t *result) 272 { 273 return do_strtosz(nptr, end, 'B', 1000, result); 274 } 275 276 /** 277 * Helper function for error checking after strtol() and the like 278 */ 279 static int check_strtox_error(const char *nptr, char *ep, 280 const char **endptr, int libc_errno) 281 { 282 assert(ep >= nptr); 283 if (endptr) { 284 *endptr = ep; 285 } 286 287 /* Turn "no conversion" into an error */ 288 if (libc_errno == 0 && ep == nptr) { 289 return -EINVAL; 290 } 291 292 /* Fail when we're expected to consume the string, but didn't */ 293 if (!endptr && *ep) { 294 return -EINVAL; 295 } 296 297 return -libc_errno; 298 } 299 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 */ 324 int qemu_strtoi(const char *nptr, const char **endptr, int base, 325 int *result) 326 { 327 char *ep; 328 long long lresult; 329 330 assert((unsigned) base <= 36 && base != 1); 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 */ 377 int qemu_strtoui(const char *nptr, const char **endptr, int base, 378 unsigned int *result) 379 { 380 char *ep; 381 long long lresult; 382 383 assert((unsigned) base <= 36 && base != 1); 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 411 /** 412 * Convert string @nptr to a long integer, and store it in @result. 413 * 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. 417 * 418 * @nptr may be null, and no conversion is performed then. 419 * 420 * If no conversion is performed, store @nptr in *@endptr and return 421 * -EINVAL. 422 * 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. 434 */ 435 int qemu_strtol(const char *nptr, const char **endptr, int base, 436 long *result) 437 { 438 char *ep; 439 440 assert((unsigned) base <= 36 && base != 1); 441 if (!nptr) { 442 if (endptr) { 443 *endptr = nptr; 444 } 445 return -EINVAL; 446 } 447 448 errno = 0; 449 *result = strtol(nptr, &ep, base); 450 return check_strtox_error(nptr, ep, endptr, errno); 451 } 452 453 /** 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'. 468 * 469 * If the conversion overflows @result, store ULONG_MAX in @result, 470 * and return -ERANGE. 471 * 472 * Else store the converted value in @result, and return zero. 473 * 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. 477 */ 478 int qemu_strtoul(const char *nptr, const char **endptr, int base, 479 unsigned long *result) 480 { 481 char *ep; 482 483 assert((unsigned) base <= 36 && base != 1); 484 if (!nptr) { 485 if (endptr) { 486 *endptr = nptr; 487 } 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; 496 } 497 return check_strtox_error(nptr, ep, endptr, errno); 498 } 499 500 /** 501 * Convert string @nptr to an int64_t. 502 * 503 * Works like qemu_strtol(), except it stores INT64_MAX on overflow, 504 * and INT_MIN on underflow. 505 */ 506 int qemu_strtoi64(const char *nptr, const char **endptr, int base, 507 int64_t *result) 508 { 509 char *ep; 510 511 assert((unsigned) base <= 36 && base != 1); 512 if (!nptr) { 513 if (endptr) { 514 *endptr = nptr; 515 } 516 return -EINVAL; 517 } 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); 523 } 524 525 /** 526 * Convert string @nptr to an uint64_t. 527 * 528 * Works like qemu_strtoul(), except it stores UINT64_MAX on overflow. 529 */ 530 int qemu_strtou64(const char *nptr, const char **endptr, int base, 531 uint64_t *result) 532 { 533 char *ep; 534 535 assert((unsigned) base <= 36 && base != 1); 536 if (!nptr) { 537 if (endptr) { 538 *endptr = nptr; 539 } 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; 549 } 550 return check_strtox_error(nptr, ep, endptr, errno); 551 } 552 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 */ 577 int 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 */ 599 int 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 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 623 const 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 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 */ 661 int 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 668 assert((unsigned) base <= 36 && base != 1); 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: */ 687 while (qemu_isspace(*s)) { 688 s++; 689 } 690 if (*s == '-') { 691 val = 0; 692 r = -ERANGE; 693 goto out; 694 } 695 696 out: 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 */ 716 int 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 733 int qemu_parse_fd(const char *param) 734 { 735 long fd; 736 char *endptr; 737 738 errno = 0; 739 fd = strtol(param, &endptr, 10); 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 */) { 745 return -1; 746 } 747 return fd; 748 } 749 750 /* 751 * Implementation of ULEB128 (http://en.wikipedia.org/wiki/LEB128) 752 * Input is limited to 14-bit numbers 753 */ 754 int 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 767 int 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 } 782 783 /* 784 * helper to parse debug environment variables 785 */ 786 int parse_debug_env(const char *name, int max, int initial) 787 { 788 char *debug_env = getenv(name); 789 char *inv = NULL; 790 long debug; 791 792 if (!debug_env) { 793 return initial; 794 } 795 errno = 0; 796 debug = strtol(debug_env, &inv, 10); 797 if (inv == debug_env) { 798 return initial; 799 } 800 if (debug < 0 || debug > max || errno != 0) { 801 warn_report("%s not in [0, %d]", name, max); 802 return initial; 803 } 804 return debug; 805 } 806 807 /* 808 * Helper to print ethernet mac address 809 */ 810 const 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 } 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 */ 826 char *size_to_str(uint64_t val) 827 { 828 static const char *suffixes[] = { "", "Ki", "Mi", "Gi", "Ti", "Pi", "Ei" }; 829 uint64_t div; 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 } 844 845 int qemu_pstrcmp0(const char **str1, const char **str2) 846 { 847 return g_strcmp0(*str1, *str2); 848 } 849