util: Make raw_ctz() accept 64-bit integers.
[sliver-openvswitch.git] / lib / util.c
1 /*
2  * Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013 Nicira, Inc.
3  *
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:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
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.
15  */
16
17 #include <config.h>
18 #include "util.h"
19 #include <ctype.h>
20 #include <errno.h>
21 #include <limits.h>
22 #include <pthread.h>
23 #include <stdarg.h>
24 #include <stdint.h>
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <string.h>
28 #include <sys/stat.h>
29 #include <unistd.h>
30 #include "bitmap.h"
31 #include "byte-order.h"
32 #include "coverage.h"
33 #include "ovs-thread.h"
34 #include "vlog.h"
35 #ifdef HAVE_PTHREAD_SET_NAME_NP
36 #include <pthread_np.h>
37 #endif
38
39 VLOG_DEFINE_THIS_MODULE(util);
40
41 COVERAGE_DEFINE(util_xalloc);
42
43 /* argv[0] without directory names. */
44 const char *program_name;
45
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);
49
50 /* --version option output. */
51 static char *program_version;
52
53 /* Buffer used by ovs_strerror(). */
54 DEFINE_STATIC_PER_THREAD_DATA(struct { char s[128]; },
55                               strerror_buffer,
56                               { "" });
57
58 void
59 ovs_assert_failure(const char *where, const char *function,
60                    const char *condition)
61 {
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;
65
66     switch (reentry++) {
67     case 0:
68         VLOG_ABORT("%s: assertion %s failed in %s()",
69                    where, condition, function);
70         NOT_REACHED();
71
72     case 1:
73         fprintf(stderr, "%s: assertion %s failed in %s()",
74                 where, condition, function);
75         abort();
76
77     default:
78         abort();
79     }
80 }
81
82 void
83 out_of_memory(void)
84 {
85     ovs_abort(0, "virtual memory exhausted");
86 }
87
88 void *
89 xcalloc(size_t count, size_t size)
90 {
91     void *p = count && size ? calloc(count, size) : malloc(1);
92     COVERAGE_INC(util_xalloc);
93     if (p == NULL) {
94         out_of_memory();
95     }
96     return p;
97 }
98
99 void *
100 xzalloc(size_t size)
101 {
102     return xcalloc(1, size);
103 }
104
105 void *
106 xmalloc(size_t size)
107 {
108     void *p = malloc(size ? size : 1);
109     COVERAGE_INC(util_xalloc);
110     if (p == NULL) {
111         out_of_memory();
112     }
113     return p;
114 }
115
116 void *
117 xrealloc(void *p, size_t size)
118 {
119     p = realloc(p, size ? size : 1);
120     COVERAGE_INC(util_xalloc);
121     if (p == NULL) {
122         out_of_memory();
123     }
124     return p;
125 }
126
127 void *
128 xmemdup(const void *p_, size_t size)
129 {
130     void *p = xmalloc(size);
131     memcpy(p, p_, size);
132     return p;
133 }
134
135 char *
136 xmemdup0(const char *p_, size_t length)
137 {
138     char *p = xmalloc(length + 1);
139     memcpy(p, p_, length);
140     p[length] = '\0';
141     return p;
142 }
143
144 char *
145 xstrdup(const char *s)
146 {
147     return xmemdup0(s, strlen(s));
148 }
149
150 char *
151 xvasprintf(const char *format, va_list args)
152 {
153     va_list args2;
154     size_t needed;
155     char *s;
156
157     va_copy(args2, args);
158     needed = vsnprintf(NULL, 0, format, args);
159
160     s = xmalloc(needed + 1);
161
162     vsnprintf(s, needed + 1, format, args2);
163     va_end(args2);
164
165     return s;
166 }
167
168 void *
169 x2nrealloc(void *p, size_t *n, size_t s)
170 {
171     *n = *n == 0 ? 1 : 2 * *n;
172     return xrealloc(p, *n * s);
173 }
174
175 char *
176 xasprintf(const char *format, ...)
177 {
178     va_list args;
179     char *s;
180
181     va_start(args, format);
182     s = xvasprintf(format, args);
183     va_end(args);
184
185     return s;
186 }
187
188 /* Similar to strlcpy() from OpenBSD, but it never reads more than 'size - 1'
189  * bytes from 'src' and doesn't return anything. */
190 void
191 ovs_strlcpy(char *dst, const char *src, size_t size)
192 {
193     if (size > 0) {
194         size_t len = strnlen(src, size - 1);
195         memcpy(dst, src, len);
196         dst[len] = '\0';
197     }
198 }
199
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'.
203  *
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);
209  *
210  * (Thus, ovs_strzcpy() is similar to strncpy() without some of the pitfalls.)
211  */
212 void
213 ovs_strzcpy(char *dst, const char *src, size_t size)
214 {
215     if (size > 0) {
216         size_t len = strnlen(src, size - 1);
217         memcpy(dst, src, len);
218         memset(dst + len, '\0', size - len);
219     }
220 }
221
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().
225  *
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.
228  *
229  * 'format' should not end with a new-line, because this function will add one
230  * itself. */
231 void
232 ovs_abort(int err_no, const char *format, ...)
233 {
234     va_list args;
235
236     va_start(args, format);
237     ovs_abort_valist(err_no, format, args);
238 }
239
240 /* Same as ovs_abort() except that the arguments are supplied as a va_list. */
241 void
242 ovs_abort_valist(int err_no, const char *format, va_list args)
243 {
244     ovs_error_valist(err_no, format, args);
245     abort();
246 }
247
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.
251  *
252  * 'format' should not end with a new-line, because this function will add one
253  * itself. */
254 void
255 ovs_fatal(int err_no, const char *format, ...)
256 {
257     va_list args;
258
259     va_start(args, format);
260     ovs_fatal_valist(err_no, format, args);
261 }
262
263 /* Same as ovs_fatal() except that the arguments are supplied as a va_list. */
264 void
265 ovs_fatal_valist(int err_no, const char *format, va_list args)
266 {
267     ovs_error_valist(err_no, format, args);
268     exit(EXIT_FAILURE);
269 }
270
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.
274  *
275  * 'format' should not end with a new-line, because this function will add one
276  * itself. */
277 void
278 ovs_error(int err_no, const char *format, ...)
279 {
280     va_list args;
281
282     va_start(args, format);
283     ovs_error_valist(err_no, format, args);
284     va_end(args);
285 }
286
287 /* Same as ovs_error() except that the arguments are supplied as a va_list. */
288 void
289 ovs_error_valist(int err_no, const char *format, va_list args)
290 {
291     const char *subprogram_name = get_subprogram_name();
292     int save_errno = errno;
293
294     if (subprogram_name[0]) {
295         fprintf(stderr, "%s(%s): ", program_name, subprogram_name);
296     } else {
297         fprintf(stderr, "%s: ", program_name);
298     }
299
300     vfprintf(stderr, format, args);
301     if (err_no != 0) {
302         fprintf(stderr, " (%s)", ovs_retval_to_string(err_no));
303     }
304     putc('\n', stderr);
305
306     errno = save_errno;
307 }
308
309 /* Many OVS functions return an int which is one of:
310  * - 0: no error yet
311  * - >0: errno value
312  * - EOF: end of file (not necessarily an error; depends on the function called)
313  *
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.
317  */
318 const char *
319 ovs_retval_to_string(int retval)
320 {
321     return (!retval ? ""
322             : retval == EOF ? "End of file"
323             : ovs_strerror(retval));
324 }
325
326 const char *
327 ovs_strerror(int error)
328 {
329     enum { BUFSIZE = sizeof strerror_buffer_get()->s };
330     int save_errno;
331     char *buffer;
332     char *s;
333
334     save_errno = errno;
335     buffer = strerror_buffer_get()->s;
336
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. */
343     s = buffer;
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);
350     }
351 #endif
352
353     errno = save_errno;
354
355     return s;
356 }
357
358 /* Sets global "program_name" and "program_version" variables.  Should
359  * be called at the beginning of main() with "argv[0]" as the argument
360  * to 'argv0'.
361  *
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.
366  *
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
370  * automatically.
371  */
372 void
373 set_program_name__(const char *argv0, const char *version, const char *date,
374                    const char *time)
375 {
376     const char *slash = strrchr(argv0, '/');
377
378     assert_single_threaded();
379
380     program_name = slash ? slash + 1 : argv0;
381
382     free(program_version);
383
384     if (!strcmp(version, VERSION)) {
385         program_version = xasprintf("%s (Open vSwitch) "VERSION"\n"
386                                     "Compiled %s %s\n",
387                                     program_name, date, time);
388     } else {
389         program_version = xasprintf("%s %s\n"
390                                     "Open vSwitch Library "VERSION"\n"
391                                     "Compiled %s %s\n",
392                                     program_name, version, date, time);
393     }
394 }
395
396 /* Returns the name of the currently running thread or process. */
397 const char *
398 get_subprogram_name(void)
399 {
400     const char *name = subprogram_name_get();
401     return name ? name : "";
402 }
403
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.) */
407 void
408 set_subprogram_name(const char *format, ...)
409 {
410     char *pname;
411
412     if (format) {
413         va_list args;
414
415         va_start(args, format);
416         pname = xvasprintf(format, args);
417         va_end(args);
418     } else {
419         pname = xstrdup(program_name);
420     }
421
422     free(subprogram_name_set(pname));
423
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);
430 #endif
431 }
432
433 /* Returns a pointer to a string describing the program version.  The
434  * caller must not modify or free the returned string.
435  */
436 const char *
437 get_program_version(void)
438 {
439     return program_version;
440 }
441
442 /* Print the version information for the program.  */
443 void
444 ovs_print_version(uint8_t min_ofp, uint8_t max_ofp)
445 {
446     printf("%s", program_version);
447     if (min_ofp || max_ofp) {
448         printf("OpenFlow versions %#x:%#x\n", min_ofp, max_ofp);
449     }
450 }
451
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. */
456 void
457 ovs_hex_dump(FILE *stream, const void *buf_, size_t size,
458              uintptr_t ofs, bool ascii)
459 {
460   const uint8_t *buf = buf_;
461   const size_t per_line = 16; /* Maximum bytes per line. */
462
463   while (size > 0)
464     {
465       size_t start, end, n;
466       size_t i;
467
468       /* Number of bytes on this line. */
469       start = ofs % per_line;
470       end = per_line;
471       if (end - start > size)
472         end = start + size;
473       n = end - start;
474
475       /* Print line. */
476       fprintf(stream, "%08jx  ", (uintmax_t) ROUND_DOWN(ofs, per_line));
477       for (i = 0; i < start; i++)
478         fprintf(stream, "   ");
479       for (; i < end; i++)
480         fprintf(stream, "%02hhx%c",
481                 buf[i - start], i == per_line / 2 - 1? '-' : ' ');
482       if (ascii)
483         {
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);
492           }
493           for (; i < per_line; i++)
494             fprintf(stream, " ");
495           fprintf(stream, "|");
496         }
497       fprintf(stream, "\n");
498
499       ofs += n;
500       buf += n;
501       size -= n;
502     }
503 }
504
505 bool
506 str_to_int(const char *s, int base, int *i)
507 {
508     long long ll;
509     bool ok = str_to_llong(s, base, &ll);
510     *i = ll;
511     return ok;
512 }
513
514 bool
515 str_to_long(const char *s, int base, long *li)
516 {
517     long long ll;
518     bool ok = str_to_llong(s, base, &ll);
519     *li = ll;
520     return ok;
521 }
522
523 bool
524 str_to_llong(const char *s, int base, long long *x)
525 {
526     int save_errno = errno;
527     char *tail;
528     errno = 0;
529     *x = strtoll(s, &tail, base);
530     if (errno == EINVAL || errno == ERANGE || tail == s || *tail != '\0') {
531         errno = save_errno;
532         *x = 0;
533         return false;
534     } else {
535         errno = save_errno;
536         return true;
537     }
538 }
539
540 bool
541 str_to_uint(const char *s, int base, unsigned int *u)
542 {
543     return str_to_int(s, base, (int *) u);
544 }
545
546 bool
547 str_to_ulong(const char *s, int base, unsigned long *ul)
548 {
549     return str_to_long(s, base, (long *) ul);
550 }
551
552 bool
553 str_to_ullong(const char *s, int base, unsigned long long *ull)
554 {
555     return str_to_llong(s, base, (long long *) ull);
556 }
557
558 /* Converts floating-point string 's' into a double.  If successful, stores
559  * the double in '*d' and returns true; on failure, stores 0 in '*d' and
560  * returns false.
561  *
562  * Underflow (e.g. "1e-9999") is not considered an error, but overflow
563  * (e.g. "1e9999)" is. */
564 bool
565 str_to_double(const char *s, double *d)
566 {
567     int save_errno = errno;
568     char *tail;
569     errno = 0;
570     *d = strtod(s, &tail);
571     if (errno == EINVAL || (errno == ERANGE && *d != 0)
572         || tail == s || *tail != '\0') {
573         errno = save_errno;
574         *d = 0;
575         return false;
576     } else {
577         errno = save_errno;
578         return true;
579     }
580 }
581
582 /* Returns the value of 'c' as a hexadecimal digit. */
583 int
584 hexit_value(int c)
585 {
586     switch (c) {
587     case '0': case '1': case '2': case '3': case '4':
588     case '5': case '6': case '7': case '8': case '9':
589         return c - '0';
590
591     case 'a': case 'A':
592         return 0xa;
593
594     case 'b': case 'B':
595         return 0xb;
596
597     case 'c': case 'C':
598         return 0xc;
599
600     case 'd': case 'D':
601         return 0xd;
602
603     case 'e': case 'E':
604         return 0xe;
605
606     case 'f': case 'F':
607         return 0xf;
608
609     default:
610         return -1;
611     }
612 }
613
614 /* Returns the integer value of the 'n' hexadecimal digits starting at 's', or
615  * UINT_MAX if one of those "digits" is not really a hex digit.  If 'ok' is
616  * nonnull, '*ok' is set to true if the conversion succeeds or to false if a
617  * non-hex digit is detected. */
618 unsigned int
619 hexits_value(const char *s, size_t n, bool *ok)
620 {
621     unsigned int value;
622     size_t i;
623
624     value = 0;
625     for (i = 0; i < n; i++) {
626         int hexit = hexit_value(s[i]);
627         if (hexit < 0) {
628             if (ok) {
629                 *ok = false;
630             }
631             return UINT_MAX;
632         }
633         value = (value << 4) + hexit;
634     }
635     if (ok) {
636         *ok = true;
637     }
638     return value;
639 }
640
641 /* Returns the current working directory as a malloc()'d string, or a null
642  * pointer if the current working directory cannot be determined. */
643 char *
644 get_cwd(void)
645 {
646     long int path_max;
647     size_t size;
648
649     /* Get maximum path length or at least a reasonable estimate. */
650     path_max = pathconf(".", _PC_PATH_MAX);
651     size = (path_max < 0 ? 1024
652             : path_max > 10240 ? 10240
653             : path_max);
654
655     /* Get current working directory. */
656     for (;;) {
657         char *buf = xmalloc(size);
658         if (getcwd(buf, size)) {
659             return xrealloc(buf, strlen(buf) + 1);
660         } else {
661             int error = errno;
662             free(buf);
663             if (error != ERANGE) {
664                 VLOG_WARN("getcwd failed (%s)", ovs_strerror(error));
665                 return NULL;
666             }
667             size *= 2;
668         }
669     }
670 }
671
672 static char *
673 all_slashes_name(const char *s)
674 {
675     return xstrdup(s[0] == '/' && s[1] == '/' && s[2] != '/' ? "//"
676                    : s[0] == '/' ? "/"
677                    : ".");
678 }
679
680 /* Returns the directory name portion of 'file_name' as a malloc()'d string,
681  * similar to the POSIX dirname() function but thread-safe. */
682 char *
683 dir_name(const char *file_name)
684 {
685     size_t len = strlen(file_name);
686     while (len > 0 && file_name[len - 1] == '/') {
687         len--;
688     }
689     while (len > 0 && file_name[len - 1] != '/') {
690         len--;
691     }
692     while (len > 0 && file_name[len - 1] == '/') {
693         len--;
694     }
695     return len ? xmemdup0(file_name, len) : all_slashes_name(file_name);
696 }
697
698 /* Returns the file name portion of 'file_name' as a malloc()'d string,
699  * similar to the POSIX basename() function but thread-safe. */
700 char *
701 base_name(const char *file_name)
702 {
703     size_t end, start;
704
705     end = strlen(file_name);
706     while (end > 0 && file_name[end - 1] == '/') {
707         end--;
708     }
709
710     if (!end) {
711         return all_slashes_name(file_name);
712     }
713
714     start = end;
715     while (start > 0 && file_name[start - 1] != '/') {
716         start--;
717     }
718
719     return xmemdup0(file_name + start, end - start);
720 }
721
722 /* If 'file_name' starts with '/', returns a copy of 'file_name'.  Otherwise,
723  * returns an absolute path to 'file_name' considering it relative to 'dir',
724  * which itself must be absolute.  'dir' may be null or the empty string, in
725  * which case the current working directory is used.
726  *
727  * Returns a null pointer if 'dir' is null and getcwd() fails. */
728 char *
729 abs_file_name(const char *dir, const char *file_name)
730 {
731     if (file_name[0] == '/') {
732         return xstrdup(file_name);
733     } else if (dir && dir[0]) {
734         char *separator = dir[strlen(dir) - 1] == '/' ? "" : "/";
735         return xasprintf("%s%s%s", dir, separator, file_name);
736     } else {
737         char *cwd = get_cwd();
738         if (cwd) {
739             char *abs_name = xasprintf("%s/%s", cwd, file_name);
740             free(cwd);
741             return abs_name;
742         } else {
743             return NULL;
744         }
745     }
746 }
747
748 /* Like readlink(), but returns the link name as a null-terminated string in
749  * allocated memory that the caller must eventually free (with free()).
750  * Returns NULL on error, in which case errno is set appropriately. */
751 char *
752 xreadlink(const char *filename)
753 {
754     size_t size;
755
756     for (size = 64; ; size *= 2) {
757         char *buf = xmalloc(size);
758         ssize_t retval = readlink(filename, buf, size);
759         int error = errno;
760
761         if (retval >= 0 && retval < size) {
762             buf[retval] = '\0';
763             return buf;
764         }
765
766         free(buf);
767         if (retval < 0) {
768             errno = error;
769             return NULL;
770         }
771     }
772 }
773
774 /* Returns a version of 'filename' with symlinks in the final component
775  * dereferenced.  This differs from realpath() in that:
776  *
777  *     - 'filename' need not exist.
778  *
779  *     - If 'filename' does exist as a symlink, its referent need not exist.
780  *
781  *     - Only symlinks in the final component of 'filename' are dereferenced.
782  *
783  * The caller must eventually free the returned string (with free()). */
784 char *
785 follow_symlinks(const char *filename)
786 {
787     struct stat s;
788     char *fn;
789     int i;
790
791     fn = xstrdup(filename);
792     for (i = 0; i < 10; i++) {
793         char *linkname;
794         char *next_fn;
795
796         if (lstat(fn, &s) != 0 || !S_ISLNK(s.st_mode)) {
797             return fn;
798         }
799
800         linkname = xreadlink(fn);
801         if (!linkname) {
802             VLOG_WARN("%s: readlink failed (%s)",
803                       filename, ovs_strerror(errno));
804             return fn;
805         }
806
807         if (linkname[0] == '/') {
808             /* Target of symlink is absolute so use it raw. */
809             next_fn = linkname;
810         } else {
811             /* Target of symlink is relative so add to 'fn''s directory. */
812             char *dir = dir_name(fn);
813
814             if (!strcmp(dir, ".")) {
815                 next_fn = linkname;
816             } else {
817                 char *separator = dir[strlen(dir) - 1] == '/' ? "" : "/";
818                 next_fn = xasprintf("%s%s%s", dir, separator, linkname);
819                 free(linkname);
820             }
821
822             free(dir);
823         }
824
825         free(fn);
826         fn = next_fn;
827     }
828
829     VLOG_WARN("%s: too many levels of symlinks", filename);
830     free(fn);
831     return xstrdup(filename);
832 }
833
834 /* Pass a value to this function if it is marked with
835  * __attribute__((warn_unused_result)) and you genuinely want to ignore
836  * its return value.  (Note that every scalar type can be implicitly
837  * converted to bool.) */
838 void ignore(bool x OVS_UNUSED) { }
839
840 /* Returns an appropriate delimiter for inserting just before the 0-based item
841  * 'index' in a list that has 'total' items in it. */
842 const char *
843 english_list_delimiter(size_t index, size_t total)
844 {
845     return (index == 0 ? ""
846             : index < total - 1 ? ", "
847             : total > 2 ? ", and "
848             : " and ");
849 }
850
851 /* Given a 32 bit word 'n', calculates floor(log_2('n')).  This is equivalent
852  * to finding the bit position of the most significant one bit in 'n'.  It is
853  * an error to call this function with 'n' == 0. */
854 int
855 log_2_floor(uint32_t n)
856 {
857     ovs_assert(n);
858
859 #if !defined(UINT_MAX) || !defined(UINT32_MAX)
860 #error "Someone screwed up the #includes."
861 #elif __GNUC__ >= 4 && UINT_MAX == UINT32_MAX
862     return 31 - __builtin_clz(n);
863 #else
864     {
865         int log = 0;
866
867 #define BIN_SEARCH_STEP(BITS)                   \
868         if (n >= (1 << BITS)) {                 \
869             log += BITS;                        \
870             n >>= BITS;                         \
871         }
872         BIN_SEARCH_STEP(16);
873         BIN_SEARCH_STEP(8);
874         BIN_SEARCH_STEP(4);
875         BIN_SEARCH_STEP(2);
876         BIN_SEARCH_STEP(1);
877 #undef BIN_SEARCH_STEP
878         return log;
879     }
880 #endif
881 }
882
883 /* Given a 32 bit word 'n', calculates ceil(log_2('n')).  It is an error to
884  * call this function with 'n' == 0. */
885 int
886 log_2_ceil(uint32_t n)
887 {
888     return log_2_floor(n) + !is_pow2(n);
889 }
890
891 /* Returns the number of trailing 0-bits in 'n'.  Undefined if 'n' == 0. */
892 #if __GNUC__ >= 4
893 /* Defined inline in util.h. */
894 #else
895 int
896 raw_ctz(uint64_t n)
897 {
898     uint64_t k;
899     int count = 63;
900
901 #define CTZ_STEP(X)                             \
902     k = n << (X);                               \
903     if (k) {                                    \
904         count -= X;                             \
905         n = k;                                  \
906     }
907     CTZ_STEP(32);
908     CTZ_STEP(16);
909     CTZ_STEP(8);
910     CTZ_STEP(4);
911     CTZ_STEP(2);
912     CTZ_STEP(1);
913 #undef CTZ_STEP
914
915     return count;
916 }
917 #endif
918
919 /* Returns the number of 1-bits in 'x', between 0 and 32 inclusive. */
920 unsigned int
921 popcount(uint32_t x)
922 {
923     /* In my testing, this implementation is over twice as fast as any other
924      * portable implementation that I tried, including GCC 4.4
925      * __builtin_popcount(), although nonportable asm("popcnt") was over 50%
926      * faster. */
927 #define INIT1(X)                                \
928     ((((X) & (1 << 0)) != 0) +                  \
929      (((X) & (1 << 1)) != 0) +                  \
930      (((X) & (1 << 2)) != 0) +                  \
931      (((X) & (1 << 3)) != 0) +                  \
932      (((X) & (1 << 4)) != 0) +                  \
933      (((X) & (1 << 5)) != 0) +                  \
934      (((X) & (1 << 6)) != 0) +                  \
935      (((X) & (1 << 7)) != 0))
936 #define INIT2(X)   INIT1(X),  INIT1((X) +  1)
937 #define INIT4(X)   INIT2(X),  INIT2((X) +  2)
938 #define INIT8(X)   INIT4(X),  INIT4((X) +  4)
939 #define INIT16(X)  INIT8(X),  INIT8((X) +  8)
940 #define INIT32(X) INIT16(X), INIT16((X) + 16)
941 #define INIT64(X) INIT32(X), INIT32((X) + 32)
942
943     static const uint8_t popcount8[256] = {
944         INIT64(0), INIT64(64), INIT64(128), INIT64(192)
945     };
946
947     return (popcount8[x & 0xff] +
948             popcount8[(x >> 8) & 0xff] +
949             popcount8[(x >> 16) & 0xff] +
950             popcount8[x >> 24]);
951 }
952
953 /* Returns true if the 'n' bytes starting at 'p' are zeros. */
954 bool
955 is_all_zeros(const uint8_t *p, size_t n)
956 {
957     size_t i;
958
959     for (i = 0; i < n; i++) {
960         if (p[i] != 0x00) {
961             return false;
962         }
963     }
964     return true;
965 }
966
967 /* Returns true if the 'n' bytes starting at 'p' are 0xff. */
968 bool
969 is_all_ones(const uint8_t *p, size_t n)
970 {
971     size_t i;
972
973     for (i = 0; i < n; i++) {
974         if (p[i] != 0xff) {
975             return false;
976         }
977     }
978     return true;
979 }
980
981 /* Copies 'n_bits' bits starting from bit 'src_ofs' in 'src' to the 'n_bits'
982  * starting from bit 'dst_ofs' in 'dst'.  'src' is 'src_len' bytes long and
983  * 'dst' is 'dst_len' bytes long.
984  *
985  * If you consider all of 'src' to be a single unsigned integer in network byte
986  * order, then bit N is the bit with value 2**N.  That is, bit 0 is the bit
987  * with value 1 in src[src_len - 1], bit 1 is the bit with value 2, bit 2 is
988  * the bit with value 4, ..., bit 8 is the bit with value 1 in src[src_len -
989  * 2], and so on.  Similarly for 'dst'.
990  *
991  * Required invariants:
992  *   src_ofs + n_bits <= src_len * 8
993  *   dst_ofs + n_bits <= dst_len * 8
994  *   'src' and 'dst' must not overlap.
995  */
996 void
997 bitwise_copy(const void *src_, unsigned int src_len, unsigned int src_ofs,
998              void *dst_, unsigned int dst_len, unsigned int dst_ofs,
999              unsigned int n_bits)
1000 {
1001     const uint8_t *src = src_;
1002     uint8_t *dst = dst_;
1003
1004     src += src_len - (src_ofs / 8 + 1);
1005     src_ofs %= 8;
1006
1007     dst += dst_len - (dst_ofs / 8 + 1);
1008     dst_ofs %= 8;
1009
1010     if (src_ofs == 0 && dst_ofs == 0) {
1011         unsigned int n_bytes = n_bits / 8;
1012         if (n_bytes) {
1013             dst -= n_bytes - 1;
1014             src -= n_bytes - 1;
1015             memcpy(dst, src, n_bytes);
1016
1017             n_bits %= 8;
1018             src--;
1019             dst--;
1020         }
1021         if (n_bits) {
1022             uint8_t mask = (1 << n_bits) - 1;
1023             *dst = (*dst & ~mask) | (*src & mask);
1024         }
1025     } else {
1026         while (n_bits > 0) {
1027             unsigned int max_copy = 8 - MAX(src_ofs, dst_ofs);
1028             unsigned int chunk = MIN(n_bits, max_copy);
1029             uint8_t mask = ((1 << chunk) - 1) << dst_ofs;
1030
1031             *dst &= ~mask;
1032             *dst |= ((*src >> src_ofs) << dst_ofs) & mask;
1033
1034             src_ofs += chunk;
1035             if (src_ofs == 8) {
1036                 src--;
1037                 src_ofs = 0;
1038             }
1039             dst_ofs += chunk;
1040             if (dst_ofs == 8) {
1041                 dst--;
1042                 dst_ofs = 0;
1043             }
1044             n_bits -= chunk;
1045         }
1046     }
1047 }
1048
1049 /* Zeros the 'n_bits' bits starting from bit 'dst_ofs' in 'dst'.  'dst' is
1050  * 'dst_len' bytes long.
1051  *
1052  * If you consider all of 'dst' to be a single unsigned integer in network byte
1053  * order, then bit N is the bit with value 2**N.  That is, bit 0 is the bit
1054  * with value 1 in dst[dst_len - 1], bit 1 is the bit with value 2, bit 2 is
1055  * the bit with value 4, ..., bit 8 is the bit with value 1 in dst[dst_len -
1056  * 2], and so on.
1057  *
1058  * Required invariant:
1059  *   dst_ofs + n_bits <= dst_len * 8
1060  */
1061 void
1062 bitwise_zero(void *dst_, unsigned int dst_len, unsigned dst_ofs,
1063              unsigned int n_bits)
1064 {
1065     uint8_t *dst = dst_;
1066
1067     if (!n_bits) {
1068         return;
1069     }
1070
1071     dst += dst_len - (dst_ofs / 8 + 1);
1072     dst_ofs %= 8;
1073
1074     if (dst_ofs) {
1075         unsigned int chunk = MIN(n_bits, 8 - dst_ofs);
1076
1077         *dst &= ~(((1 << chunk) - 1) << dst_ofs);
1078
1079         n_bits -= chunk;
1080         if (!n_bits) {
1081             return;
1082         }
1083
1084         dst--;
1085     }
1086
1087     while (n_bits >= 8) {
1088         *dst-- = 0;
1089         n_bits -= 8;
1090     }
1091
1092     if (n_bits) {
1093         *dst &= ~((1 << n_bits) - 1);
1094     }
1095 }
1096
1097 /* Sets to 1 all of the 'n_bits' bits starting from bit 'dst_ofs' in 'dst'.
1098  * 'dst' is 'dst_len' bytes long.
1099  *
1100  * If you consider all of 'dst' to be a single unsigned integer in network byte
1101  * order, then bit N is the bit with value 2**N.  That is, bit 0 is the bit
1102  * with value 1 in dst[dst_len - 1], bit 1 is the bit with value 2, bit 2 is
1103  * the bit with value 4, ..., bit 8 is the bit with value 1 in dst[dst_len -
1104  * 2], and so on.
1105  *
1106  * Required invariant:
1107  *   dst_ofs + n_bits <= dst_len * 8
1108  */
1109 void
1110 bitwise_one(void *dst_, unsigned int dst_len, unsigned dst_ofs,
1111             unsigned int n_bits)
1112 {
1113     uint8_t *dst = dst_;
1114
1115     if (!n_bits) {
1116         return;
1117     }
1118
1119     dst += dst_len - (dst_ofs / 8 + 1);
1120     dst_ofs %= 8;
1121
1122     if (dst_ofs) {
1123         unsigned int chunk = MIN(n_bits, 8 - dst_ofs);
1124
1125         *dst |= ((1 << chunk) - 1) << dst_ofs;
1126
1127         n_bits -= chunk;
1128         if (!n_bits) {
1129             return;
1130         }
1131
1132         dst--;
1133     }
1134
1135     while (n_bits >= 8) {
1136         *dst-- = 0xff;
1137         n_bits -= 8;
1138     }
1139
1140     if (n_bits) {
1141         *dst |= (1 << n_bits) - 1;
1142     }
1143 }
1144
1145 /* Scans the 'n_bits' bits starting from bit 'dst_ofs' in 'dst' for 1-bits.
1146  * Returns false if any 1-bits are found, otherwise true.  'dst' is 'dst_len'
1147  * bytes long.
1148  *
1149  * If you consider all of 'dst' to be a single unsigned integer in network byte
1150  * order, then bit N is the bit with value 2**N.  That is, bit 0 is the bit
1151  * with value 1 in dst[dst_len - 1], bit 1 is the bit with value 2, bit 2 is
1152  * the bit with value 4, ..., bit 8 is the bit with value 1 in dst[dst_len -
1153  * 2], and so on.
1154  *
1155  * Required invariant:
1156  *   dst_ofs + n_bits <= dst_len * 8
1157  */
1158 bool
1159 bitwise_is_all_zeros(const void *p_, unsigned int len, unsigned int ofs,
1160                      unsigned int n_bits)
1161 {
1162     const uint8_t *p = p_;
1163
1164     if (!n_bits) {
1165         return true;
1166     }
1167
1168     p += len - (ofs / 8 + 1);
1169     ofs %= 8;
1170
1171     if (ofs) {
1172         unsigned int chunk = MIN(n_bits, 8 - ofs);
1173
1174         if (*p & (((1 << chunk) - 1) << ofs)) {
1175             return false;
1176         }
1177
1178         n_bits -= chunk;
1179         if (!n_bits) {
1180             return true;
1181         }
1182
1183         p--;
1184     }
1185
1186     while (n_bits >= 8) {
1187         if (*p) {
1188             return false;
1189         }
1190         n_bits -= 8;
1191         p--;
1192     }
1193
1194     if (n_bits && *p & ((1 << n_bits) - 1)) {
1195         return false;
1196     }
1197
1198     return true;
1199 }
1200
1201 /* Copies the 'n_bits' low-order bits of 'value' into the 'n_bits' bits
1202  * starting at bit 'dst_ofs' in 'dst', which is 'dst_len' bytes long.
1203  *
1204  * If you consider all of 'dst' to be a single unsigned integer in network byte
1205  * order, then bit N is the bit with value 2**N.  That is, bit 0 is the bit
1206  * with value 1 in dst[dst_len - 1], bit 1 is the bit with value 2, bit 2 is
1207  * the bit with value 4, ..., bit 8 is the bit with value 1 in dst[dst_len -
1208  * 2], and so on.
1209  *
1210  * Required invariants:
1211  *   dst_ofs + n_bits <= dst_len * 8
1212  *   n_bits <= 64
1213  */
1214 void
1215 bitwise_put(uint64_t value,
1216             void *dst, unsigned int dst_len, unsigned int dst_ofs,
1217             unsigned int n_bits)
1218 {
1219     ovs_be64 n_value = htonll(value);
1220     bitwise_copy(&n_value, sizeof n_value, 0,
1221                  dst, dst_len, dst_ofs,
1222                  n_bits);
1223 }
1224
1225 /* Returns the value of the 'n_bits' bits starting at bit 'src_ofs' in 'src',
1226  * which is 'src_len' bytes long.
1227  *
1228  * If you consider all of 'src' to be a single unsigned integer in network byte
1229  * order, then bit N is the bit with value 2**N.  That is, bit 0 is the bit
1230  * with value 1 in src[src_len - 1], bit 1 is the bit with value 2, bit 2 is
1231  * the bit with value 4, ..., bit 8 is the bit with value 1 in src[src_len -
1232  * 2], and so on.
1233  *
1234  * Required invariants:
1235  *   src_ofs + n_bits <= src_len * 8
1236  *   n_bits <= 64
1237  */
1238 uint64_t
1239 bitwise_get(const void *src, unsigned int src_len,
1240             unsigned int src_ofs, unsigned int n_bits)
1241 {
1242     ovs_be64 value = htonll(0);
1243
1244     bitwise_copy(src, src_len, src_ofs,
1245                  &value, sizeof value, 0,
1246                  n_bits);
1247     return ntohll(value);
1248 }
1249 \f
1250 /* ovs_scan */
1251
1252 struct scan_spec {
1253     unsigned int width;
1254     enum {
1255         SCAN_DISCARD,
1256         SCAN_CHAR,
1257         SCAN_SHORT,
1258         SCAN_INT,
1259         SCAN_LONG,
1260         SCAN_LLONG,
1261         SCAN_INTMAX_T,
1262         SCAN_PTRDIFF_T,
1263         SCAN_SIZE_T
1264     } type;
1265 };
1266
1267 static const char *
1268 skip_spaces(const char *s)
1269 {
1270     while (isspace((unsigned char) *s)) {
1271         s++;
1272     }
1273     return s;
1274 }
1275
1276 static const char *
1277 scan_int(const char *s, const struct scan_spec *spec, int base, va_list *args)
1278 {
1279     const char *start = s;
1280     uintmax_t value;
1281     bool negative;
1282     int n_digits;
1283
1284     negative = *s == '-';
1285     s += *s == '-' || *s == '+';
1286
1287     if ((!base || base == 16) && *s == '0' && (s[1] == 'x' || s[1] == 'X')) {
1288         base = 16;
1289         s += 2;
1290     } else if (!base) {
1291         base = *s == '0' ? 8 : 10;
1292     }
1293
1294     if (s - start >= spec->width) {
1295         return NULL;
1296     }
1297
1298     value = 0;
1299     n_digits = 0;
1300     while (s - start < spec->width) {
1301         int digit = hexit_value(*s);
1302
1303         if (digit < 0 || digit >= base) {
1304             break;
1305         }
1306         value = value * base + digit;
1307         n_digits++;
1308         s++;
1309     }
1310     if (!n_digits) {
1311         return NULL;
1312     }
1313
1314     if (negative) {
1315         value = -value;
1316     }
1317
1318     switch (spec->type) {
1319     case SCAN_DISCARD:
1320         break;
1321     case SCAN_CHAR:
1322         *va_arg(*args, char *) = value;
1323         break;
1324     case SCAN_SHORT:
1325         *va_arg(*args, short int *) = value;
1326         break;
1327     case SCAN_INT:
1328         *va_arg(*args, int *) = value;
1329         break;
1330     case SCAN_LONG:
1331         *va_arg(*args, long int *) = value;
1332         break;
1333     case SCAN_LLONG:
1334         *va_arg(*args, long long int *) = value;
1335         break;
1336     case SCAN_INTMAX_T:
1337         *va_arg(*args, intmax_t *) = value;
1338         break;
1339     case SCAN_PTRDIFF_T:
1340         *va_arg(*args, ptrdiff_t *) = value;
1341         break;
1342     case SCAN_SIZE_T:
1343         *va_arg(*args, size_t *) = value;
1344         break;
1345     }
1346     return s;
1347 }
1348
1349 static const char *
1350 skip_digits(const char *s)
1351 {
1352     while (*s >= '0' && *s <= '9') {
1353         s++;
1354     }
1355     return s;
1356 }
1357
1358 static const char *
1359 scan_float(const char *s, const struct scan_spec *spec, va_list *args)
1360 {
1361     const char *start = s;
1362     long double value;
1363     char *tail;
1364     char *copy;
1365     bool ok;
1366
1367     s += *s == '+' || *s == '-';
1368     s = skip_digits(s);
1369     if (*s == '.') {
1370         s = skip_digits(s + 1);
1371     }
1372     if (*s == 'e' || *s == 'E') {
1373         s++;
1374         s += *s == '+' || *s == '-';
1375         s = skip_digits(s);
1376     }
1377
1378     if (s - start > spec->width) {
1379         s = start + spec->width;
1380     }
1381
1382     copy = xmemdup0(start, s - start);
1383     value = strtold(copy, &tail);
1384     ok = *tail == '\0';
1385     free(copy);
1386     if (!ok) {
1387         return NULL;
1388     }
1389
1390     switch (spec->type) {
1391     case SCAN_DISCARD:
1392         break;
1393     case SCAN_INT:
1394         *va_arg(*args, float *) = value;
1395         break;
1396     case SCAN_LONG:
1397         *va_arg(*args, double *) = value;
1398         break;
1399     case SCAN_LLONG:
1400         *va_arg(*args, long double *) = value;
1401         break;
1402
1403     case SCAN_CHAR:
1404     case SCAN_SHORT:
1405     case SCAN_INTMAX_T:
1406     case SCAN_PTRDIFF_T:
1407     case SCAN_SIZE_T:
1408         NOT_REACHED();
1409     }
1410     return s;
1411 }
1412
1413 static void
1414 scan_output_string(const struct scan_spec *spec,
1415                    const char *s, size_t n,
1416                    va_list *args)
1417 {
1418     if (spec->type != SCAN_DISCARD) {
1419         char *out = va_arg(*args, char *);
1420         memcpy(out, s, n);
1421         out[n] = '\0';
1422     }
1423 }
1424
1425 static const char *
1426 scan_string(const char *s, const struct scan_spec *spec, va_list *args)
1427 {
1428     size_t n;
1429
1430     for (n = 0; n < spec->width; n++) {
1431         if (!s[n] || isspace((unsigned char) s[n])) {
1432             break;
1433         }
1434     }
1435     if (!n) {
1436         return NULL;
1437     }
1438
1439     scan_output_string(spec, s, n, args);
1440     return s + n;
1441 }
1442
1443 static const char *
1444 parse_scanset(const char *p_, unsigned long *set, bool *complemented)
1445 {
1446     const uint8_t *p = (const uint8_t *) p_;
1447
1448     *complemented = *p == '^';
1449     p += *complemented;
1450
1451     if (*p == ']') {
1452         bitmap_set1(set, ']');
1453         p++;
1454     }
1455
1456     while (*p && *p != ']') {
1457         if (p[1] == '-' && p[2] != ']' && p[2] > *p) {
1458             bitmap_set_multiple(set, *p, p[2] - *p + 1, true);
1459             p += 3;
1460         } else {
1461             bitmap_set1(set, *p++);
1462         }
1463     }
1464     if (*p == ']') {
1465         p++;
1466     }
1467     return (const char *) p;
1468 }
1469
1470 static const char *
1471 scan_set(const char *s, const struct scan_spec *spec, const char **pp,
1472          va_list *args)
1473 {
1474     unsigned long set[BITMAP_N_LONGS(UCHAR_MAX + 1)];
1475     bool complemented;
1476     unsigned int n;
1477
1478     /* Parse the scan set. */
1479     memset(set, 0, sizeof set);
1480     *pp = parse_scanset(*pp, set, &complemented);
1481
1482     /* Parse the data. */
1483     n = 0;
1484     while (s[n]
1485            && bitmap_is_set(set, (unsigned char) s[n]) == !complemented
1486            && n < spec->width) {
1487         n++;
1488     }
1489     if (!n) {
1490         return NULL;
1491     }
1492     scan_output_string(spec, s, n, args);
1493     return s + n;
1494 }
1495
1496 static const char *
1497 scan_chars(const char *s, const struct scan_spec *spec, va_list *args)
1498 {
1499     unsigned int n = spec->width == UINT_MAX ? 1 : spec->width;
1500
1501     if (strlen(s) < n) {
1502         return NULL;
1503     }
1504     if (spec->type != SCAN_DISCARD) {
1505         memcpy(va_arg(*args, char *), s, n);
1506     }
1507     return s + n;
1508 }
1509
1510 /* This is an implementation of the standard sscanf() function, with the
1511  * following exceptions:
1512  *
1513  *   - It returns true if the entire template was successfully scanned and
1514  *     converted, false if any conversion failed.
1515  *
1516  *   - The standard doesn't define sscanf() behavior when an out-of-range value
1517  *     is scanned, e.g. if a "%"PRIi8 conversion scans "-1" or "0x1ff".  Some
1518  *     implementations consider this an error and stop scanning.  This
1519  *     implementation never considers an out-of-range value an error; instead,
1520  *     it stores the least-significant bits of the converted value in the
1521  *     destination, e.g. the value 255 for both examples earlier.
1522  *
1523  *   - Only single-byte characters are supported, that is, the 'l' modifier
1524  *     on %s, %[, and %c is not supported.  The GNU extension 'a' modifier is
1525  *     also not supported.
1526  *
1527  *   - %p is not supported.
1528  */
1529 bool
1530 ovs_scan(const char *s, const char *template, ...)
1531 {
1532     const char *const start = s;
1533     bool ok = false;
1534     const char *p;
1535     va_list args;
1536
1537     va_start(args, template);
1538     p = template;
1539     while (*p != '\0') {
1540         struct scan_spec spec;
1541         unsigned char c = *p++;
1542         bool discard;
1543
1544         if (isspace(c)) {
1545             s = skip_spaces(s);
1546             continue;
1547         } else if (c != '%') {
1548             if (*s != c) {
1549                 goto exit;
1550             }
1551             s++;
1552             continue;
1553         } else if (*p == '%') {
1554             if (*s++ != '%') {
1555                 goto exit;
1556             }
1557             p++;
1558             continue;
1559         }
1560
1561         /* Parse '*' flag. */
1562         discard = *p == '*';
1563         p += discard;
1564
1565         /* Parse field width. */
1566         spec.width = 0;
1567         while (*p >= '0' && *p <= '9') {
1568             spec.width = spec.width * 10 + (*p++ - '0');
1569         }
1570         if (spec.width == 0) {
1571             spec.width = UINT_MAX;
1572         }
1573
1574         /* Parse type modifier. */
1575         switch (*p) {
1576         case 'h':
1577             if (p[1] == 'h') {
1578                 spec.type = SCAN_CHAR;
1579                 p += 2;
1580             } else {
1581                 spec.type = SCAN_SHORT;
1582                 p++;
1583             }
1584             break;
1585
1586         case 'j':
1587             spec.type = SCAN_INTMAX_T;
1588             p++;
1589             break;
1590
1591         case 'l':
1592             if (p[1] == 'l') {
1593                 spec.type = SCAN_LLONG;
1594                 p += 2;
1595             } else {
1596                 spec.type = SCAN_LONG;
1597                 p++;
1598             }
1599             break;
1600
1601         case 'L':
1602         case 'q':
1603             spec.type = SCAN_LLONG;
1604             p++;
1605             break;
1606
1607         case 't':
1608             spec.type = SCAN_PTRDIFF_T;
1609             p++;
1610             break;
1611
1612         case 'z':
1613             spec.type = SCAN_SIZE_T;
1614             p++;
1615             break;
1616
1617         default:
1618             spec.type = SCAN_INT;
1619             break;
1620         }
1621
1622         if (discard) {
1623             spec.type = SCAN_DISCARD;
1624         }
1625
1626         c = *p++;
1627         if (c != 'c' && c != 'n' && c != '[') {
1628             s = skip_spaces(s);
1629         }
1630         switch (c) {
1631         case 'd':
1632             s = scan_int(s, &spec, 10, &args);
1633             break;
1634
1635         case 'i':
1636             s = scan_int(s, &spec, 0, &args);
1637             break;
1638
1639         case 'o':
1640             s = scan_int(s, &spec, 8, &args);
1641             break;
1642
1643         case 'u':
1644             s = scan_int(s, &spec, 10, &args);
1645             break;
1646
1647         case 'x':
1648         case 'X':
1649             s = scan_int(s, &spec, 16, &args);
1650             break;
1651
1652         case 'e':
1653         case 'f':
1654         case 'g':
1655         case 'E':
1656         case 'G':
1657             s = scan_float(s, &spec, &args);
1658             break;
1659
1660         case 's':
1661             s = scan_string(s, &spec, &args);
1662             break;
1663
1664         case '[':
1665             s = scan_set(s, &spec, &p, &args);
1666             break;
1667
1668         case 'c':
1669             s = scan_chars(s, &spec, &args);
1670             break;
1671
1672         case 'n':
1673             if (spec.type != SCAN_DISCARD) {
1674                 *va_arg(args, int *) = s - start;
1675             }
1676             break;
1677         }
1678
1679         if (!s) {
1680             goto exit;
1681         }
1682     }
1683     ok = true;
1684
1685 exit:
1686     va_end(args);
1687     return ok;
1688 }
1689