2 * Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013 Nicira, Inc.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
31 #include "byte-order.h"
33 #include "ovs-thread.h"
35 #ifdef HAVE_PTHREAD_SET_NAME_NP
36 #include <pthread_np.h>
39 VLOG_DEFINE_THIS_MODULE(util);
41 COVERAGE_DEFINE(util_xalloc);
43 /* argv[0] without directory names. */
44 const char *program_name;
46 /* Name for the currently running thread or process, for log messages, process
47 * listings, and debuggers. */
48 DEFINE_PER_THREAD_MALLOCED_DATA(char *, subprogram_name);
50 /* --version option output. */
51 static char *program_version;
53 /* Buffer used by ovs_strerror(). */
54 DEFINE_STATIC_PER_THREAD_DATA(struct { char s[128]; },
59 ovs_assert_failure(const char *where, const char *function,
60 const char *condition)
62 /* Prevent an infinite loop (or stack overflow) in case VLOG_ABORT happens
63 * to trigger an assertion failure of its own. */
64 static int reentry = 0;
68 VLOG_ABORT("%s: assertion %s failed in %s()",
69 where, condition, function);
73 fprintf(stderr, "%s: assertion %s failed in %s()",
74 where, condition, function);
85 ovs_abort(0, "virtual memory exhausted");
89 xcalloc(size_t count, size_t size)
91 void *p = count && size ? calloc(count, size) : malloc(1);
92 COVERAGE_INC(util_xalloc);
102 return xcalloc(1, size);
108 void *p = malloc(size ? size : 1);
109 COVERAGE_INC(util_xalloc);
117 xrealloc(void *p, size_t size)
119 p = realloc(p, size ? size : 1);
120 COVERAGE_INC(util_xalloc);
128 xmemdup(const void *p_, size_t size)
130 void *p = xmalloc(size);
136 xmemdup0(const char *p_, size_t length)
138 char *p = xmalloc(length + 1);
139 memcpy(p, p_, length);
145 xstrdup(const char *s)
147 return xmemdup0(s, strlen(s));
151 xvasprintf(const char *format, va_list args)
157 va_copy(args2, args);
158 needed = vsnprintf(NULL, 0, format, args);
160 s = xmalloc(needed + 1);
162 vsnprintf(s, needed + 1, format, args2);
169 x2nrealloc(void *p, size_t *n, size_t s)
171 *n = *n == 0 ? 1 : 2 * *n;
172 return xrealloc(p, *n * s);
176 xasprintf(const char *format, ...)
181 va_start(args, format);
182 s = xvasprintf(format, args);
188 /* Similar to strlcpy() from OpenBSD, but it never reads more than 'size - 1'
189 * bytes from 'src' and doesn't return anything. */
191 ovs_strlcpy(char *dst, const char *src, size_t size)
194 size_t len = strnlen(src, size - 1);
195 memcpy(dst, src, len);
200 /* Copies 'src' to 'dst'. Reads no more than 'size - 1' bytes from 'src'.
201 * Always null-terminates 'dst' (if 'size' is nonzero), and writes a zero byte
202 * to every otherwise unused byte in 'dst'.
204 * Except for performance, the following call:
205 * ovs_strzcpy(dst, src, size);
206 * is equivalent to these two calls:
207 * memset(dst, '\0', size);
208 * ovs_strlcpy(dst, src, size);
210 * (Thus, ovs_strzcpy() is similar to strncpy() without some of the pitfalls.)
213 ovs_strzcpy(char *dst, const char *src, size_t size)
216 size_t len = strnlen(src, size - 1);
217 memcpy(dst, src, len);
218 memset(dst + len, '\0', size - len);
222 /* Prints 'format' on stderr, formatting it like printf() does. If 'err_no' is
223 * nonzero, then it is formatted with ovs_retval_to_string() and appended to
224 * the message inside parentheses. Then, terminates with abort().
226 * This function is preferred to ovs_fatal() in a situation where it would make
227 * sense for a monitoring process to restart the daemon.
229 * 'format' should not end with a new-line, because this function will add one
232 ovs_abort(int err_no, const char *format, ...)
236 va_start(args, format);
237 ovs_abort_valist(err_no, format, args);
240 /* Same as ovs_abort() except that the arguments are supplied as a va_list. */
242 ovs_abort_valist(int err_no, const char *format, va_list args)
244 ovs_error_valist(err_no, format, args);
248 /* Prints 'format' on stderr, formatting it like printf() does. If 'err_no' is
249 * nonzero, then it is formatted with ovs_retval_to_string() and appended to
250 * the message inside parentheses. Then, terminates with EXIT_FAILURE.
252 * 'format' should not end with a new-line, because this function will add one
255 ovs_fatal(int err_no, const char *format, ...)
259 va_start(args, format);
260 ovs_fatal_valist(err_no, format, args);
263 /* Same as ovs_fatal() except that the arguments are supplied as a va_list. */
265 ovs_fatal_valist(int err_no, const char *format, va_list args)
267 ovs_error_valist(err_no, format, args);
271 /* Prints 'format' on stderr, formatting it like printf() does. If 'err_no' is
272 * nonzero, then it is formatted with ovs_retval_to_string() and appended to
273 * the message inside parentheses.
275 * 'format' should not end with a new-line, because this function will add one
278 ovs_error(int err_no, const char *format, ...)
282 va_start(args, format);
283 ovs_error_valist(err_no, format, args);
287 /* Same as ovs_error() except that the arguments are supplied as a va_list. */
289 ovs_error_valist(int err_no, const char *format, va_list args)
291 const char *subprogram_name = get_subprogram_name();
292 int save_errno = errno;
294 if (subprogram_name[0]) {
295 fprintf(stderr, "%s(%s): ", program_name, subprogram_name);
297 fprintf(stderr, "%s: ", program_name);
300 vfprintf(stderr, format, args);
302 fprintf(stderr, " (%s)", ovs_retval_to_string(err_no));
309 /* Many OVS functions return an int which is one of:
312 * - EOF: end of file (not necessarily an error; depends on the function called)
314 * Returns the appropriate human-readable string. The caller must copy the
315 * string if it wants to hold onto it, as the storage may be overwritten on
316 * subsequent function calls.
319 ovs_retval_to_string(int retval)
322 : retval == EOF ? "End of file"
323 : ovs_strerror(retval));
327 ovs_strerror(int error)
329 enum { BUFSIZE = sizeof strerror_buffer_get()->s };
335 buffer = strerror_buffer_get()->s;
337 #if STRERROR_R_CHAR_P
338 /* GNU style strerror_r() might return an immutable static string, or it
339 * might write and return 'buffer', but in either case we can pass the
340 * returned string directly to the caller. */
341 s = strerror_r(error, buffer, BUFSIZE);
342 #else /* strerror_r() returns an int. */
344 if (strerror_r(error, buffer, BUFSIZE)) {
345 /* strerror_r() is only allowed to fail on ERANGE (because the buffer
346 * is too short). We don't check the actual failure reason because
347 * POSIX requires strerror_r() to return the error but old glibc
348 * (before 2.13) returns -1 and sets errno. */
349 snprintf(buffer, BUFSIZE, "Unknown error %d", error);
358 /* Sets global "program_name" and "program_version" variables. Should
359 * be called at the beginning of main() with "argv[0]" as the argument
362 * 'version' should contain the version of the caller's program. If 'version'
363 * is the same as the VERSION #define, the caller is assumed to be part of Open
364 * vSwitch. Otherwise, it is assumed to be an external program linking against
365 * the Open vSwitch libraries.
367 * The 'date' and 'time' arguments should likely be called with
368 * "__DATE__" and "__TIME__" to use the time the binary was built.
369 * Alternatively, the "set_program_name" macro may be called to do this
373 set_program_name__(const char *argv0, const char *version, const char *date,
376 const char *slash = strrchr(argv0, '/');
378 assert_single_threaded();
380 program_name = slash ? slash + 1 : argv0;
382 free(program_version);
384 if (!strcmp(version, VERSION)) {
385 program_version = xasprintf("%s (Open vSwitch) "VERSION"\n"
387 program_name, date, time);
389 program_version = xasprintf("%s %s\n"
390 "Open vSwitch Library "VERSION"\n"
392 program_name, version, date, time);
396 /* Returns the name of the currently running thread or process. */
398 get_subprogram_name(void)
400 const char *name = subprogram_name_get();
401 return name ? name : "";
404 /* Sets the formatted value of 'format' as the name of the currently running
405 * thread or process. (This appears in log messages and may also be visible in
406 * system process listings and debuggers.) */
408 set_subprogram_name(const char *format, ...)
415 va_start(args, format);
416 pname = xvasprintf(format, args);
419 pname = xstrdup(program_name);
422 free(subprogram_name_set(pname));
424 #if HAVE_GLIBC_PTHREAD_SETNAME_NP
425 pthread_setname_np(pthread_self(), pname);
426 #elif HAVE_NETBSD_PTHREAD_SETNAME_NP
427 pthread_setname_np(pthread_self(), "%s", pname);
428 #elif HAVE_PTHREAD_SET_NAME_NP
429 pthread_set_name_np(pthread_self(), pname);
433 /* Returns a pointer to a string describing the program version. The
434 * caller must not modify or free the returned string.
437 get_program_version(void)
439 return program_version;
442 /* Print the version information for the program. */
444 ovs_print_version(uint8_t min_ofp, uint8_t max_ofp)
446 printf("%s", program_version);
447 if (min_ofp || max_ofp) {
448 printf("OpenFlow versions %#x:%#x\n", min_ofp, max_ofp);
452 /* Writes the 'size' bytes in 'buf' to 'stream' as hex bytes arranged 16 per
453 * line. Numeric offsets are also included, starting at 'ofs' for the first
454 * byte in 'buf'. If 'ascii' is true then the corresponding ASCII characters
455 * are also rendered alongside. */
457 ovs_hex_dump(FILE *stream, const void *buf_, size_t size,
458 uintptr_t ofs, bool ascii)
460 const uint8_t *buf = buf_;
461 const size_t per_line = 16; /* Maximum bytes per line. */
465 size_t start, end, n;
468 /* Number of bytes on this line. */
469 start = ofs % per_line;
471 if (end - start > size)
476 fprintf(stream, "%08"PRIxMAX" ", (uintmax_t) ROUND_DOWN(ofs, per_line));
477 for (i = 0; i < start; i++)
478 fprintf(stream, " ");
480 fprintf(stream, "%02x%c",
481 buf[i - start], i == per_line / 2 - 1? '-' : ' ');
484 for (; i < per_line; i++)
485 fprintf(stream, " ");
486 fprintf(stream, "|");
487 for (i = 0; i < start; i++)
488 fprintf(stream, " ");
489 for (; i < end; i++) {
490 int c = buf[i - start];
491 putc(c >= 32 && c < 127 ? c : '.', stream);
493 for (; i < per_line; i++)
494 fprintf(stream, " ");
495 fprintf(stream, "|");
497 fprintf(stream, "\n");
506 str_to_int(const char *s, int base, int *i)
509 bool ok = str_to_llong(s, base, &ll);
515 str_to_long(const char *s, int base, long *li)
518 bool ok = str_to_llong(s, base, &ll);
524 str_to_llong(const char *s, int base, long long *x)
526 int save_errno = errno;
529 *x = strtoll(s, &tail, base);
530 if (errno == EINVAL || errno == ERANGE || tail == s || *tail != '\0') {
540 /* Converts floating-point string 's' into a double. If successful, stores
541 * the double in '*d' and returns true; on failure, stores 0 in '*d' and
544 * Underflow (e.g. "1e-9999") is not considered an error, but overflow
545 * (e.g. "1e9999)" is. */
547 str_to_double(const char *s, double *d)
549 int save_errno = errno;
552 *d = strtod(s, &tail);
553 if (errno == EINVAL || (errno == ERANGE && *d != 0)
554 || tail == s || *tail != '\0') {
564 /* Returns the value of 'c' as a hexadecimal digit. */
569 case '0': case '1': case '2': case '3': case '4':
570 case '5': case '6': case '7': case '8': case '9':
596 /* Returns the integer value of the 'n' hexadecimal digits starting at 's', or
597 * UINT_MAX if one of those "digits" is not really a hex digit. If 'ok' is
598 * nonnull, '*ok' is set to true if the conversion succeeds or to false if a
599 * non-hex digit is detected. */
601 hexits_value(const char *s, size_t n, bool *ok)
607 for (i = 0; i < n; i++) {
608 int hexit = hexit_value(s[i]);
615 value = (value << 4) + hexit;
623 /* Returns the current working directory as a malloc()'d string, or a null
624 * pointer if the current working directory cannot be determined. */
631 /* Get maximum path length or at least a reasonable estimate. */
632 path_max = pathconf(".", _PC_PATH_MAX);
633 size = (path_max < 0 ? 1024
634 : path_max > 10240 ? 10240
637 /* Get current working directory. */
639 char *buf = xmalloc(size);
640 if (getcwd(buf, size)) {
641 return xrealloc(buf, strlen(buf) + 1);
645 if (error != ERANGE) {
646 VLOG_WARN("getcwd failed (%s)", ovs_strerror(error));
655 all_slashes_name(const char *s)
657 return xstrdup(s[0] == '/' && s[1] == '/' && s[2] != '/' ? "//"
662 /* Returns the directory name portion of 'file_name' as a malloc()'d string,
663 * similar to the POSIX dirname() function but thread-safe. */
665 dir_name(const char *file_name)
667 size_t len = strlen(file_name);
668 while (len > 0 && file_name[len - 1] == '/') {
671 while (len > 0 && file_name[len - 1] != '/') {
674 while (len > 0 && file_name[len - 1] == '/') {
677 return len ? xmemdup0(file_name, len) : all_slashes_name(file_name);
680 /* Returns the file name portion of 'file_name' as a malloc()'d string,
681 * similar to the POSIX basename() function but thread-safe. */
683 base_name(const char *file_name)
687 end = strlen(file_name);
688 while (end > 0 && file_name[end - 1] == '/') {
693 return all_slashes_name(file_name);
697 while (start > 0 && file_name[start - 1] != '/') {
701 return xmemdup0(file_name + start, end - start);
704 /* If 'file_name' starts with '/', returns a copy of 'file_name'. Otherwise,
705 * returns an absolute path to 'file_name' considering it relative to 'dir',
706 * which itself must be absolute. 'dir' may be null or the empty string, in
707 * which case the current working directory is used.
709 * Returns a null pointer if 'dir' is null and getcwd() fails. */
711 abs_file_name(const char *dir, const char *file_name)
713 if (file_name[0] == '/') {
714 return xstrdup(file_name);
715 } else if (dir && dir[0]) {
716 char *separator = dir[strlen(dir) - 1] == '/' ? "" : "/";
717 return xasprintf("%s%s%s", dir, separator, file_name);
719 char *cwd = get_cwd();
721 char *abs_name = xasprintf("%s/%s", cwd, file_name);
730 /* Like readlink(), but returns the link name as a null-terminated string in
731 * allocated memory that the caller must eventually free (with free()).
732 * Returns NULL on error, in which case errno is set appropriately. */
734 xreadlink(const char *filename)
738 for (size = 64; ; size *= 2) {
739 char *buf = xmalloc(size);
740 ssize_t retval = readlink(filename, buf, size);
743 if (retval >= 0 && retval < size) {
756 /* Returns a version of 'filename' with symlinks in the final component
757 * dereferenced. This differs from realpath() in that:
759 * - 'filename' need not exist.
761 * - If 'filename' does exist as a symlink, its referent need not exist.
763 * - Only symlinks in the final component of 'filename' are dereferenced.
765 * The caller must eventually free the returned string (with free()). */
767 follow_symlinks(const char *filename)
773 fn = xstrdup(filename);
774 for (i = 0; i < 10; i++) {
778 if (lstat(fn, &s) != 0 || !S_ISLNK(s.st_mode)) {
782 linkname = xreadlink(fn);
784 VLOG_WARN("%s: readlink failed (%s)",
785 filename, ovs_strerror(errno));
789 if (linkname[0] == '/') {
790 /* Target of symlink is absolute so use it raw. */
793 /* Target of symlink is relative so add to 'fn''s directory. */
794 char *dir = dir_name(fn);
796 if (!strcmp(dir, ".")) {
799 char *separator = dir[strlen(dir) - 1] == '/' ? "" : "/";
800 next_fn = xasprintf("%s%s%s", dir, separator, linkname);
811 VLOG_WARN("%s: too many levels of symlinks", filename);
813 return xstrdup(filename);
816 /* Pass a value to this function if it is marked with
817 * __attribute__((warn_unused_result)) and you genuinely want to ignore
818 * its return value. (Note that every scalar type can be implicitly
819 * converted to bool.) */
820 void ignore(bool x OVS_UNUSED) { }
822 /* Returns an appropriate delimiter for inserting just before the 0-based item
823 * 'index' in a list that has 'total' items in it. */
825 english_list_delimiter(size_t index, size_t total)
827 return (index == 0 ? ""
828 : index < total - 1 ? ", "
829 : total > 2 ? ", and "
833 /* Returns the number of trailing 0-bits in 'n'. Undefined if 'n' == 0. */
835 /* Defined inline in util.h. */
837 /* Returns the number of trailing 0-bits in 'n'. Undefined if 'n' == 0. */
844 #define CTZ_STEP(X) \
861 /* Returns the number of leading 0-bits in 'n'. Undefined if 'n' == 0. */
863 raw_clz64(uint64_t n)
868 #define CLZ_STEP(X) \
886 #if NEED_COUNT_1BITS_8
888 ((((X) & (1 << 0)) != 0) + \
889 (((X) & (1 << 1)) != 0) + \
890 (((X) & (1 << 2)) != 0) + \
891 (((X) & (1 << 3)) != 0) + \
892 (((X) & (1 << 4)) != 0) + \
893 (((X) & (1 << 5)) != 0) + \
894 (((X) & (1 << 6)) != 0) + \
895 (((X) & (1 << 7)) != 0))
896 #define INIT2(X) INIT1(X), INIT1((X) + 1)
897 #define INIT4(X) INIT2(X), INIT2((X) + 2)
898 #define INIT8(X) INIT4(X), INIT4((X) + 4)
899 #define INIT16(X) INIT8(X), INIT8((X) + 8)
900 #define INIT32(X) INIT16(X), INIT16((X) + 16)
901 #define INIT64(X) INIT32(X), INIT32((X) + 32)
903 const uint8_t count_1bits_8[256] = {
904 INIT64(0), INIT64(64), INIT64(128), INIT64(192)
908 /* Returns true if the 'n' bytes starting at 'p' are zeros. */
910 is_all_zeros(const uint8_t *p, size_t n)
914 for (i = 0; i < n; i++) {
922 /* Returns true if the 'n' bytes starting at 'p' are 0xff. */
924 is_all_ones(const uint8_t *p, size_t n)
928 for (i = 0; i < n; i++) {
936 /* Copies 'n_bits' bits starting from bit 'src_ofs' in 'src' to the 'n_bits'
937 * starting from bit 'dst_ofs' in 'dst'. 'src' is 'src_len' bytes long and
938 * 'dst' is 'dst_len' bytes long.
940 * If you consider all of 'src' to be a single unsigned integer in network byte
941 * order, then bit N is the bit with value 2**N. That is, bit 0 is the bit
942 * with value 1 in src[src_len - 1], bit 1 is the bit with value 2, bit 2 is
943 * the bit with value 4, ..., bit 8 is the bit with value 1 in src[src_len -
944 * 2], and so on. Similarly for 'dst'.
946 * Required invariants:
947 * src_ofs + n_bits <= src_len * 8
948 * dst_ofs + n_bits <= dst_len * 8
949 * 'src' and 'dst' must not overlap.
952 bitwise_copy(const void *src_, unsigned int src_len, unsigned int src_ofs,
953 void *dst_, unsigned int dst_len, unsigned int dst_ofs,
956 const uint8_t *src = src_;
959 src += src_len - (src_ofs / 8 + 1);
962 dst += dst_len - (dst_ofs / 8 + 1);
965 if (src_ofs == 0 && dst_ofs == 0) {
966 unsigned int n_bytes = n_bits / 8;
970 memcpy(dst, src, n_bytes);
977 uint8_t mask = (1 << n_bits) - 1;
978 *dst = (*dst & ~mask) | (*src & mask);
982 unsigned int max_copy = 8 - MAX(src_ofs, dst_ofs);
983 unsigned int chunk = MIN(n_bits, max_copy);
984 uint8_t mask = ((1 << chunk) - 1) << dst_ofs;
987 *dst |= ((*src >> src_ofs) << dst_ofs) & mask;
1004 /* Zeros the 'n_bits' bits starting from bit 'dst_ofs' in 'dst'. 'dst' is
1005 * 'dst_len' bytes long.
1007 * If you consider all of 'dst' to be a single unsigned integer in network byte
1008 * order, then bit N is the bit with value 2**N. That is, bit 0 is the bit
1009 * with value 1 in dst[dst_len - 1], bit 1 is the bit with value 2, bit 2 is
1010 * the bit with value 4, ..., bit 8 is the bit with value 1 in dst[dst_len -
1013 * Required invariant:
1014 * dst_ofs + n_bits <= dst_len * 8
1017 bitwise_zero(void *dst_, unsigned int dst_len, unsigned dst_ofs,
1018 unsigned int n_bits)
1020 uint8_t *dst = dst_;
1026 dst += dst_len - (dst_ofs / 8 + 1);
1030 unsigned int chunk = MIN(n_bits, 8 - dst_ofs);
1032 *dst &= ~(((1 << chunk) - 1) << dst_ofs);
1042 while (n_bits >= 8) {
1048 *dst &= ~((1 << n_bits) - 1);
1052 /* Sets to 1 all of the 'n_bits' bits starting from bit 'dst_ofs' in 'dst'.
1053 * 'dst' is 'dst_len' bytes long.
1055 * If you consider all of 'dst' to be a single unsigned integer in network byte
1056 * order, then bit N is the bit with value 2**N. That is, bit 0 is the bit
1057 * with value 1 in dst[dst_len - 1], bit 1 is the bit with value 2, bit 2 is
1058 * the bit with value 4, ..., bit 8 is the bit with value 1 in dst[dst_len -
1061 * Required invariant:
1062 * dst_ofs + n_bits <= dst_len * 8
1065 bitwise_one(void *dst_, unsigned int dst_len, unsigned dst_ofs,
1066 unsigned int n_bits)
1068 uint8_t *dst = dst_;
1074 dst += dst_len - (dst_ofs / 8 + 1);
1078 unsigned int chunk = MIN(n_bits, 8 - dst_ofs);
1080 *dst |= ((1 << chunk) - 1) << dst_ofs;
1090 while (n_bits >= 8) {
1096 *dst |= (1 << n_bits) - 1;
1100 /* Scans the 'n_bits' bits starting from bit 'dst_ofs' in 'dst' for 1-bits.
1101 * Returns false if any 1-bits are found, otherwise true. 'dst' is 'dst_len'
1104 * If you consider all of 'dst' to be a single unsigned integer in network byte
1105 * order, then bit N is the bit with value 2**N. That is, bit 0 is the bit
1106 * with value 1 in dst[dst_len - 1], bit 1 is the bit with value 2, bit 2 is
1107 * the bit with value 4, ..., bit 8 is the bit with value 1 in dst[dst_len -
1110 * Required invariant:
1111 * dst_ofs + n_bits <= dst_len * 8
1114 bitwise_is_all_zeros(const void *p_, unsigned int len, unsigned int ofs,
1115 unsigned int n_bits)
1117 const uint8_t *p = p_;
1123 p += len - (ofs / 8 + 1);
1127 unsigned int chunk = MIN(n_bits, 8 - ofs);
1129 if (*p & (((1 << chunk) - 1) << ofs)) {
1141 while (n_bits >= 8) {
1149 if (n_bits && *p & ((1 << n_bits) - 1)) {
1156 /* Copies the 'n_bits' low-order bits of 'value' into the 'n_bits' bits
1157 * starting at bit 'dst_ofs' in 'dst', which is 'dst_len' bytes long.
1159 * If you consider all of 'dst' to be a single unsigned integer in network byte
1160 * order, then bit N is the bit with value 2**N. That is, bit 0 is the bit
1161 * with value 1 in dst[dst_len - 1], bit 1 is the bit with value 2, bit 2 is
1162 * the bit with value 4, ..., bit 8 is the bit with value 1 in dst[dst_len -
1165 * Required invariants:
1166 * dst_ofs + n_bits <= dst_len * 8
1170 bitwise_put(uint64_t value,
1171 void *dst, unsigned int dst_len, unsigned int dst_ofs,
1172 unsigned int n_bits)
1174 ovs_be64 n_value = htonll(value);
1175 bitwise_copy(&n_value, sizeof n_value, 0,
1176 dst, dst_len, dst_ofs,
1180 /* Returns the value of the 'n_bits' bits starting at bit 'src_ofs' in 'src',
1181 * which is 'src_len' bytes long.
1183 * If you consider all of 'src' to be a single unsigned integer in network byte
1184 * order, then bit N is the bit with value 2**N. That is, bit 0 is the bit
1185 * with value 1 in src[src_len - 1], bit 1 is the bit with value 2, bit 2 is
1186 * the bit with value 4, ..., bit 8 is the bit with value 1 in src[src_len -
1189 * Required invariants:
1190 * src_ofs + n_bits <= src_len * 8
1194 bitwise_get(const void *src, unsigned int src_len,
1195 unsigned int src_ofs, unsigned int n_bits)
1197 ovs_be64 value = htonll(0);
1199 bitwise_copy(src, src_len, src_ofs,
1200 &value, sizeof value, 0,
1202 return ntohll(value);
1223 skip_spaces(const char *s)
1225 while (isspace((unsigned char) *s)) {
1232 scan_int(const char *s, const struct scan_spec *spec, int base, va_list *args)
1234 const char *start = s;
1239 negative = *s == '-';
1240 s += *s == '-' || *s == '+';
1242 if ((!base || base == 16) && *s == '0' && (s[1] == 'x' || s[1] == 'X')) {
1246 base = *s == '0' ? 8 : 10;
1249 if (s - start >= spec->width) {
1255 while (s - start < spec->width) {
1256 int digit = hexit_value(*s);
1258 if (digit < 0 || digit >= base) {
1261 value = value * base + digit;
1273 switch (spec->type) {
1277 *va_arg(*args, char *) = value;
1280 *va_arg(*args, short int *) = value;
1283 *va_arg(*args, int *) = value;
1286 *va_arg(*args, long int *) = value;
1289 *va_arg(*args, long long int *) = value;
1292 *va_arg(*args, intmax_t *) = value;
1294 case SCAN_PTRDIFF_T:
1295 *va_arg(*args, ptrdiff_t *) = value;
1298 *va_arg(*args, size_t *) = value;
1305 skip_digits(const char *s)
1307 while (*s >= '0' && *s <= '9') {
1314 scan_float(const char *s, const struct scan_spec *spec, va_list *args)
1316 const char *start = s;
1322 s += *s == '+' || *s == '-';
1325 s = skip_digits(s + 1);
1327 if (*s == 'e' || *s == 'E') {
1329 s += *s == '+' || *s == '-';
1333 if (s - start > spec->width) {
1334 s = start + spec->width;
1337 copy = xmemdup0(start, s - start);
1338 value = strtold(copy, &tail);
1345 switch (spec->type) {
1349 *va_arg(*args, float *) = value;
1352 *va_arg(*args, double *) = value;
1355 *va_arg(*args, long double *) = value;
1361 case SCAN_PTRDIFF_T:
1369 scan_output_string(const struct scan_spec *spec,
1370 const char *s, size_t n,
1373 if (spec->type != SCAN_DISCARD) {
1374 char *out = va_arg(*args, char *);
1381 scan_string(const char *s, const struct scan_spec *spec, va_list *args)
1385 for (n = 0; n < spec->width; n++) {
1386 if (!s[n] || isspace((unsigned char) s[n])) {
1394 scan_output_string(spec, s, n, args);
1399 parse_scanset(const char *p_, unsigned long *set, bool *complemented)
1401 const uint8_t *p = (const uint8_t *) p_;
1403 *complemented = *p == '^';
1407 bitmap_set1(set, ']');
1411 while (*p && *p != ']') {
1412 if (p[1] == '-' && p[2] != ']' && p[2] > *p) {
1413 bitmap_set_multiple(set, *p, p[2] - *p + 1, true);
1416 bitmap_set1(set, *p++);
1422 return (const char *) p;
1426 scan_set(const char *s, const struct scan_spec *spec, const char **pp,
1429 unsigned long set[BITMAP_N_LONGS(UCHAR_MAX + 1)];
1433 /* Parse the scan set. */
1434 memset(set, 0, sizeof set);
1435 *pp = parse_scanset(*pp, set, &complemented);
1437 /* Parse the data. */
1440 && bitmap_is_set(set, (unsigned char) s[n]) == !complemented
1441 && n < spec->width) {
1447 scan_output_string(spec, s, n, args);
1452 scan_chars(const char *s, const struct scan_spec *spec, va_list *args)
1454 unsigned int n = spec->width == UINT_MAX ? 1 : spec->width;
1456 if (strlen(s) < n) {
1459 if (spec->type != SCAN_DISCARD) {
1460 memcpy(va_arg(*args, char *), s, n);
1465 /* This is an implementation of the standard sscanf() function, with the
1466 * following exceptions:
1468 * - It returns true if the entire format was successfully scanned and
1469 * converted, false if any conversion failed.
1471 * - The standard doesn't define sscanf() behavior when an out-of-range value
1472 * is scanned, e.g. if a "%"PRIi8 conversion scans "-1" or "0x1ff". Some
1473 * implementations consider this an error and stop scanning. This
1474 * implementation never considers an out-of-range value an error; instead,
1475 * it stores the least-significant bits of the converted value in the
1476 * destination, e.g. the value 255 for both examples earlier.
1478 * - Only single-byte characters are supported, that is, the 'l' modifier
1479 * on %s, %[, and %c is not supported. The GNU extension 'a' modifier is
1480 * also not supported.
1482 * - %p is not supported.
1485 ovs_scan(const char *s, const char *format, ...)
1487 const char *const start = s;
1492 va_start(args, format);
1494 while (*p != '\0') {
1495 struct scan_spec spec;
1496 unsigned char c = *p++;
1502 } else if (c != '%') {
1508 } else if (*p == '%') {
1516 /* Parse '*' flag. */
1517 discard = *p == '*';
1520 /* Parse field width. */
1522 while (*p >= '0' && *p <= '9') {
1523 spec.width = spec.width * 10 + (*p++ - '0');
1525 if (spec.width == 0) {
1526 spec.width = UINT_MAX;
1529 /* Parse type modifier. */
1533 spec.type = SCAN_CHAR;
1536 spec.type = SCAN_SHORT;
1542 spec.type = SCAN_INTMAX_T;
1548 spec.type = SCAN_LLONG;
1551 spec.type = SCAN_LONG;
1558 spec.type = SCAN_LLONG;
1563 spec.type = SCAN_PTRDIFF_T;
1568 spec.type = SCAN_SIZE_T;
1573 spec.type = SCAN_INT;
1578 spec.type = SCAN_DISCARD;
1582 if (c != 'c' && c != 'n' && c != '[') {
1587 s = scan_int(s, &spec, 10, &args);
1591 s = scan_int(s, &spec, 0, &args);
1595 s = scan_int(s, &spec, 8, &args);
1599 s = scan_int(s, &spec, 10, &args);
1604 s = scan_int(s, &spec, 16, &args);
1612 s = scan_float(s, &spec, &args);
1616 s = scan_string(s, &spec, &args);
1620 s = scan_set(s, &spec, &p, &args);
1624 s = scan_chars(s, &spec, &args);
1628 if (spec.type != SCAN_DISCARD) {
1629 *va_arg(args, int *) = s - start;