2 * Copyright (c) 2008, 2009, 2010 Nicira Networks.
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.
28 VLOG_DEFINE_THIS_MODULE(util);
30 COVERAGE_DEFINE(util_xalloc);
32 const char *program_name;
37 ovs_fatal(0, "virtual memory exhausted");
41 xcalloc(size_t count, size_t size)
43 void *p = count && size ? calloc(count, size) : malloc(1);
44 COVERAGE_INC(util_xalloc);
54 return xcalloc(1, size);
60 void *p = malloc(size ? size : 1);
61 COVERAGE_INC(util_xalloc);
69 xrealloc(void *p, size_t size)
71 p = realloc(p, size ? size : 1);
72 COVERAGE_INC(util_xalloc);
80 xmemdup(const void *p_, size_t size)
82 void *p = xmalloc(size);
88 xmemdup0(const char *p_, size_t length)
90 char *p = xmalloc(length + 1);
91 memcpy(p, p_, length);
97 xstrdup(const char *s)
99 return xmemdup0(s, strlen(s));
103 xvasprintf(const char *format, va_list args)
109 va_copy(args2, args);
110 needed = vsnprintf(NULL, 0, format, args);
112 s = xmalloc(needed + 1);
114 vsnprintf(s, needed + 1, format, args2);
121 x2nrealloc(void *p, size_t *n, size_t s)
123 *n = *n == 0 ? 1 : 2 * *n;
124 return xrealloc(p, *n * s);
128 xasprintf(const char *format, ...)
133 va_start(args, format);
134 s = xvasprintf(format, args);
141 ovs_strlcpy(char *dst, const char *src, size_t size)
144 size_t n = strlen(src);
145 size_t n_copy = MIN(n, size - 1);
146 memcpy(dst, src, n_copy);
152 ovs_fatal(int err_no, const char *format, ...)
156 fprintf(stderr, "%s: ", program_name);
157 va_start(args, format);
158 vfprintf(stderr, format, args);
161 fprintf(stderr, " (%s)", ovs_retval_to_string(err_no));
168 ovs_error(int err_no, const char *format, ...)
170 int save_errno = errno;
173 fprintf(stderr, "%s: ", program_name);
174 va_start(args, format);
175 vfprintf(stderr, format, args);
178 fprintf(stderr, " (%s)", ovs_retval_to_string(err_no));
185 /* Many OVS functions return an int which is one of:
188 * - EOF: end of file (not necessarily an error; depends on the function called)
190 * Returns the appropriate human-readable string. The caller must copy the
191 * string if it wants to hold onto it, as the storage may be overwritten on
192 * subsequent function calls.
195 ovs_retval_to_string(int retval)
197 static char unknown[48];
203 return strerror(retval);
206 return "End of file";
208 snprintf(unknown, sizeof unknown, "***unknown return value: %d***", retval);
212 /* Sets program_name based on 'argv0'. Should be called at the beginning of
213 * main(), as "set_program_name(argv[0]);". */
214 void set_program_name(const char *argv0)
216 const char *slash = strrchr(argv0, '/');
217 program_name = slash ? slash + 1 : argv0;
220 /* Print the version information for the program. */
222 ovs_print_version(char *date, char *time,
223 uint8_t min_ofp, uint8_t max_ofp)
225 printf("%s (Open vSwitch) "VERSION BUILDNR"\n", program_name);
226 printf("Compiled %s %s\n", date, time);
227 if (min_ofp || max_ofp) {
228 printf("OpenFlow versions %#x:%#x\n", min_ofp, max_ofp);
232 /* Writes the 'size' bytes in 'buf' to 'stream' as hex bytes arranged 16 per
233 * line. Numeric offsets are also included, starting at 'ofs' for the first
234 * byte in 'buf'. If 'ascii' is true then the corresponding ASCII characters
235 * are also rendered alongside. */
237 ovs_hex_dump(FILE *stream, const void *buf_, size_t size,
238 uintptr_t ofs, bool ascii)
240 const uint8_t *buf = buf_;
241 const size_t per_line = 16; /* Maximum bytes per line. */
245 size_t start, end, n;
248 /* Number of bytes on this line. */
249 start = ofs % per_line;
251 if (end - start > size)
256 fprintf(stream, "%08jx ", (uintmax_t) ROUND_DOWN(ofs, per_line));
257 for (i = 0; i < start; i++)
258 fprintf(stream, " ");
260 fprintf(stream, "%02hhx%c",
261 buf[i - start], i == per_line / 2 - 1? '-' : ' ');
264 for (; i < per_line; i++)
265 fprintf(stream, " ");
266 fprintf(stream, "|");
267 for (i = 0; i < start; i++)
268 fprintf(stream, " ");
269 for (; i < end; i++) {
270 int c = buf[i - start];
271 putc(c >= 32 && c < 127 ? c : '.', stream);
273 for (; i < per_line; i++)
274 fprintf(stream, " ");
275 fprintf(stream, "|");
277 fprintf(stream, "\n");
286 str_to_int(const char *s, int base, int *i)
289 bool ok = str_to_llong(s, base, &ll);
295 str_to_long(const char *s, int base, long *li)
298 bool ok = str_to_llong(s, base, &ll);
304 str_to_llong(const char *s, int base, long long *x)
306 int save_errno = errno;
309 *x = strtoll(s, &tail, base);
310 if (errno == EINVAL || errno == ERANGE || tail == s || *tail != '\0') {
321 str_to_uint(const char *s, int base, unsigned int *u)
323 return str_to_int(s, base, (int *) u);
327 str_to_ulong(const char *s, int base, unsigned long *ul)
329 return str_to_long(s, base, (long *) ul);
333 str_to_ullong(const char *s, int base, unsigned long long *ull)
335 return str_to_llong(s, base, (long long *) ull);
338 /* Converts floating-point string 's' into a double. If successful, stores
339 * the double in '*d' and returns true; on failure, stores 0 in '*d' and
342 * Underflow (e.g. "1e-9999") is not considered an error, but overflow
343 * (e.g. "1e9999)" is. */
345 str_to_double(const char *s, double *d)
347 int save_errno = errno;
350 *d = strtod(s, &tail);
351 if (errno == EINVAL || (errno == ERANGE && *d != 0)
352 || tail == s || *tail != '\0') {
362 /* Returns the value of 'c' as a hexadecimal digit. */
367 case '0': case '1': case '2': case '3': case '4':
368 case '5': case '6': case '7': case '8': case '9':
394 /* Returns the integer value of the 'n' hexadecimal digits starting at 's', or
395 * UINT_MAX if one of those "digits" is not really a hex digit. If 'ok' is
396 * nonnull, '*ok' is set to true if the conversion succeeds or to false if a
397 * non-hex digit is detected. */
399 hexits_value(const char *s, size_t n, bool *ok)
405 for (i = 0; i < n; i++) {
406 int hexit = hexit_value(s[i]);
413 value = (value << 4) + hexit;
421 /* Returns the current working directory as a malloc()'d string, or a null
422 * pointer if the current working directory cannot be determined. */
429 /* Get maximum path length or at least a reasonable estimate. */
430 path_max = pathconf(".", _PC_PATH_MAX);
431 size = (path_max < 0 ? 1024
432 : path_max > 10240 ? 10240
435 /* Get current working directory. */
437 char *buf = xmalloc(size);
438 if (getcwd(buf, size)) {
439 return xrealloc(buf, strlen(buf) + 1);
443 if (error != ERANGE) {
444 VLOG_WARN("getcwd failed (%s)", strerror(error));
453 all_slashes_name(const char *s)
455 return xstrdup(s[0] == '/' && s[1] == '/' && s[2] != '/' ? "//"
460 /* Returns the directory name portion of 'file_name' as a malloc()'d string,
461 * similar to the POSIX dirname() function but thread-safe. */
463 dir_name(const char *file_name)
465 size_t len = strlen(file_name);
466 while (len > 0 && file_name[len - 1] == '/') {
469 while (len > 0 && file_name[len - 1] != '/') {
472 while (len > 0 && file_name[len - 1] == '/') {
475 return len ? xmemdup0(file_name, len) : all_slashes_name(file_name);
478 /* Returns the file name portion of 'file_name' as a malloc()'d string,
479 * similar to the POSIX basename() function but thread-safe. */
481 base_name(const char *file_name)
485 end = strlen(file_name);
486 while (end > 0 && file_name[end - 1] == '/') {
491 return all_slashes_name(file_name);
495 while (start > 0 && file_name[start - 1] != '/') {
499 return xmemdup0(file_name + start, end - start);
502 /* If 'file_name' starts with '/', returns a copy of 'file_name'. Otherwise,
503 * returns an absolute path to 'file_name' considering it relative to 'dir',
504 * which itself must be absolute. 'dir' may be null or the empty string, in
505 * which case the current working directory is used.
507 * Returns a null pointer if 'dir' is null and getcwd() fails. */
509 abs_file_name(const char *dir, const char *file_name)
511 if (file_name[0] == '/') {
512 return xstrdup(file_name);
513 } else if (dir && dir[0]) {
514 char *separator = dir[strlen(dir) - 1] == '/' ? "" : "/";
515 return xasprintf("%s%s%s", dir, separator, file_name);
517 char *cwd = get_cwd();
519 char *abs_name = xasprintf("%s/%s", cwd, file_name);
529 /* Pass a value to this function if it is marked with
530 * __attribute__((warn_unused_result)) and you genuinely want to ignore
531 * its return value. (Note that every scalar type can be implicitly
532 * converted to bool.) */
533 void ignore(bool x OVS_UNUSED) { }