193e4f7483133ca9f4954203c29ad93ddf641975
[sliver-openvswitch.git] / lib / vlog.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 "vlog.h"
19 #include <assert.h>
20 #include <ctype.h>
21 #include <errno.h>
22 #include <fcntl.h>
23 #include <stdarg.h>
24 #include <stdlib.h>
25 #include <string.h>
26 #include <sys/stat.h>
27 #include <sys/types.h>
28 #include <syslog.h>
29 #include <time.h>
30 #include <unistd.h>
31 #include "coverage.h"
32 #include "dirs.h"
33 #include "dynamic-string.h"
34 #include "ofpbuf.h"
35 #include "sat-math.h"
36 #include "svec.h"
37 #include "timeval.h"
38 #include "unixctl.h"
39 #include "util.h"
40 #include "worker.h"
41
42 VLOG_DEFINE_THIS_MODULE(vlog);
43
44 COVERAGE_DEFINE(vlog_recursive);
45
46 /* ovs_assert() logs the assertion message, so using ovs_assert() in this
47  * source file could cause recursion. */
48 #undef ovs_assert
49 #define ovs_assert use_assert_instead_of_ovs_assert_in_this_module
50
51 /* Name for each logging level. */
52 static const char *const level_names[VLL_N_LEVELS] = {
53 #define VLOG_LEVEL(NAME, SYSLOG_LEVEL) #NAME,
54     VLOG_LEVELS
55 #undef VLOG_LEVEL
56 };
57
58 /* Syslog value for each logging level. */
59 static const int syslog_levels[VLL_N_LEVELS] = {
60 #define VLOG_LEVEL(NAME, SYSLOG_LEVEL) SYSLOG_LEVEL,
61     VLOG_LEVELS
62 #undef VLOG_LEVEL
63 };
64
65 /* The log modules. */
66 #if USE_LINKER_SECTIONS
67 extern struct vlog_module *__start_vlog_modules[];
68 extern struct vlog_module *__stop_vlog_modules[];
69 #define vlog_modules __start_vlog_modules
70 #define n_vlog_modules (__stop_vlog_modules - __start_vlog_modules)
71 #else
72 #define VLOG_MODULE VLOG_DEFINE_MODULE__
73 #include "vlog-modules.def"
74 #undef VLOG_MODULE
75
76 struct vlog_module *vlog_modules[] = {
77 #define VLOG_MODULE(NAME) &VLM_##NAME,
78 #include "vlog-modules.def"
79 #undef VLOG_MODULE
80 };
81 #define n_vlog_modules ARRAY_SIZE(vlog_modules)
82 #endif
83
84 /* Information about each facility. */
85 struct facility {
86     const char *name;           /* Name. */
87     char *pattern;              /* Current pattern. */
88     bool default_pattern;       /* Whether current pattern is the default. */
89 };
90 static struct facility facilities[VLF_N_FACILITIES] = {
91 #define VLOG_FACILITY(NAME, PATTERN) {#NAME, PATTERN, true},
92     VLOG_FACILITIES
93 #undef VLOG_FACILITY
94 };
95
96 /* VLF_FILE configuration. */
97 static char *log_file_name;
98 static int log_fd = -1;
99
100 /* vlog initialized? */
101 static bool vlog_inited;
102
103 static void format_log_message(const struct vlog_module *, enum vlog_level,
104                                enum vlog_facility, unsigned int msg_num,
105                                const char *message, va_list, struct ds *)
106     PRINTF_FORMAT(5, 0);
107 static void vlog_write_file(struct ds *);
108 static void vlog_update_async_log_fd(void);
109
110 /* Searches the 'n_names' in 'names'.  Returns the index of a match for
111  * 'target', or 'n_names' if no name matches. */
112 static size_t
113 search_name_array(const char *target, const char *const *names, size_t n_names)
114 {
115     size_t i;
116
117     for (i = 0; i < n_names; i++) {
118         assert(names[i]);
119         if (!strcasecmp(names[i], target)) {
120             break;
121         }
122     }
123     return i;
124 }
125
126 /* Returns the name for logging level 'level'. */
127 const char *
128 vlog_get_level_name(enum vlog_level level)
129 {
130     assert(level < VLL_N_LEVELS);
131     return level_names[level];
132 }
133
134 /* Returns the logging level with the given 'name', or VLL_N_LEVELS if 'name'
135  * is not the name of a logging level. */
136 enum vlog_level
137 vlog_get_level_val(const char *name)
138 {
139     return search_name_array(name, level_names, ARRAY_SIZE(level_names));
140 }
141
142 /* Returns the name for logging facility 'facility'. */
143 const char *
144 vlog_get_facility_name(enum vlog_facility facility)
145 {
146     assert(facility < VLF_N_FACILITIES);
147     return facilities[facility].name;
148 }
149
150 /* Returns the logging facility named 'name', or VLF_N_FACILITIES if 'name' is
151  * not the name of a logging facility. */
152 enum vlog_facility
153 vlog_get_facility_val(const char *name)
154 {
155     size_t i;
156
157     for (i = 0; i < VLF_N_FACILITIES; i++) {
158         if (!strcasecmp(facilities[i].name, name)) {
159             break;
160         }
161     }
162     return i;
163 }
164
165 /* Returns the name for logging module 'module'. */
166 const char *
167 vlog_get_module_name(const struct vlog_module *module)
168 {
169     return module->name;
170 }
171
172 /* Returns the logging module named 'name', or NULL if 'name' is not the name
173  * of a logging module. */
174 struct vlog_module *
175 vlog_module_from_name(const char *name)
176 {
177     struct vlog_module **mp;
178
179     for (mp = vlog_modules; mp < &vlog_modules[n_vlog_modules]; mp++) {
180         if (!strcasecmp(name, (*mp)->name)) {
181             return *mp;
182         }
183     }
184     return NULL;
185 }
186
187 /* Returns the current logging level for the given 'module' and 'facility'. */
188 enum vlog_level
189 vlog_get_level(const struct vlog_module *module, enum vlog_facility facility)
190 {
191     assert(facility < VLF_N_FACILITIES);
192     return module->levels[facility];
193 }
194
195 static void
196 update_min_level(struct vlog_module *module)
197 {
198     enum vlog_facility facility;
199
200     module->min_level = VLL_OFF;
201     for (facility = 0; facility < VLF_N_FACILITIES; facility++) {
202         if (log_fd >= 0 || facility != VLF_FILE) {
203             enum vlog_level level = module->levels[facility];
204             if (level > module->min_level) {
205                 module->min_level = level;
206             }
207         }
208     }
209 }
210
211 static void
212 set_facility_level(enum vlog_facility facility, struct vlog_module *module,
213                    enum vlog_level level)
214 {
215     assert(facility >= 0 && facility < VLF_N_FACILITIES);
216     assert(level < VLL_N_LEVELS);
217
218     if (!module) {
219         struct vlog_module **mp;
220
221         for (mp = vlog_modules; mp < &vlog_modules[n_vlog_modules]; mp++) {
222             (*mp)->levels[facility] = level;
223             update_min_level(*mp);
224         }
225     } else {
226         module->levels[facility] = level;
227         update_min_level(module);
228     }
229 }
230
231 /* Sets the logging level for the given 'module' and 'facility' to 'level'.  A
232  * null 'module' or a 'facility' of VLF_ANY_FACILITY is treated as a wildcard
233  * across all modules or facilities, respectively. */
234 void
235 vlog_set_levels(struct vlog_module *module, enum vlog_facility facility,
236                 enum vlog_level level)
237 {
238     assert(facility < VLF_N_FACILITIES || facility == VLF_ANY_FACILITY);
239     if (facility == VLF_ANY_FACILITY) {
240         for (facility = 0; facility < VLF_N_FACILITIES; facility++) {
241             set_facility_level(facility, module, level);
242         }
243     } else {
244         set_facility_level(facility, module, level);
245     }
246 }
247
248 static void
249 do_set_pattern(enum vlog_facility facility, const char *pattern)
250 {
251     struct facility *f = &facilities[facility];
252     if (!f->default_pattern) {
253         free(f->pattern);
254     } else {
255         f->default_pattern = false;
256     }
257     f->pattern = xstrdup(pattern);
258 }
259
260 /* Sets the pattern for the given 'facility' to 'pattern'. */
261 void
262 vlog_set_pattern(enum vlog_facility facility, const char *pattern)
263 {
264     assert(facility < VLF_N_FACILITIES || facility == VLF_ANY_FACILITY);
265     if (facility == VLF_ANY_FACILITY) {
266         for (facility = 0; facility < VLF_N_FACILITIES; facility++) {
267             do_set_pattern(facility, pattern);
268         }
269     } else {
270         do_set_pattern(facility, pattern);
271     }
272 }
273
274 /* Returns the name of the log file used by VLF_FILE, or a null pointer if no
275  * log file has been set.  (A non-null return value does not assert that the
276  * named log file is in use: if vlog_set_log_file() or vlog_reopen_log_file()
277  * fails, it still sets the log file name.) */
278 const char *
279 vlog_get_log_file(void)
280 {
281     return log_file_name;
282 }
283
284 /* Sets the name of the log file used by VLF_FILE to 'file_name', or to the
285  * default file name if 'file_name' is null.  Returns 0 if successful,
286  * otherwise a positive errno value. */
287 int
288 vlog_set_log_file(const char *file_name)
289 {
290     char *old_log_file_name;
291     struct vlog_module **mp;
292     int error;
293
294     /* Close old log file. */
295     if (log_fd >= 0) {
296         VLOG_INFO("closing log file");
297         close(log_fd);
298         log_fd = -1;
299     }
300
301     /* Update log file name and free old name.  The ordering is important
302      * because 'file_name' might be 'log_file_name' or some suffix of it. */
303     old_log_file_name = log_file_name;
304     log_file_name = (file_name
305                      ? xstrdup(file_name)
306                      : xasprintf("%s/%s.log", ovs_logdir(), program_name));
307     free(old_log_file_name);
308     file_name = NULL;           /* Might have been freed. */
309
310     /* Open new log file and update min_levels[] to reflect whether we actually
311      * have a log_file. */
312     log_fd = open(log_file_name, O_WRONLY | O_CREAT | O_APPEND, 0666);
313     if (log_fd >= 0) {
314         vlog_update_async_log_fd();
315     }
316     for (mp = vlog_modules; mp < &vlog_modules[n_vlog_modules]; mp++) {
317         update_min_level(*mp);
318     }
319
320     /* Log success or failure. */
321     if (log_fd < 0) {
322         VLOG_WARN("failed to open %s for logging: %s",
323                   log_file_name, strerror(errno));
324         error = errno;
325     } else {
326         VLOG_INFO("opened log file %s", log_file_name);
327         error = 0;
328     }
329
330     return error;
331 }
332
333 /* Closes and then attempts to re-open the current log file.  (This is useful
334  * just after log rotation, to ensure that the new log file starts being used.)
335  * Returns 0 if successful, otherwise a positive errno value. */
336 int
337 vlog_reopen_log_file(void)
338 {
339     struct stat old, new;
340
341     /* Skip re-opening if there's nothing to reopen. */
342     if (!log_file_name) {
343         return 0;
344     }
345
346     /* Skip re-opening if it would be a no-op because the old and new files are
347      * the same.  (This avoids writing "closing log file" followed immediately
348      * by "opened log file".) */
349     if (log_fd >= 0
350         && !fstat(log_fd, &old)
351         && !stat(log_file_name, &new)
352         && old.st_dev == new.st_dev
353         && old.st_ino == new.st_ino) {
354         return 0;
355     }
356
357     return vlog_set_log_file(log_file_name);
358 }
359
360 /* Set debugging levels.  Returns null if successful, otherwise an error
361  * message that the caller must free(). */
362 char *
363 vlog_set_levels_from_string(const char *s_)
364 {
365     char *s = xstrdup(s_);
366     char *save_ptr = NULL;
367     char *msg = NULL;
368     char *word;
369
370     word = strtok_r(s, " ,:\t", &save_ptr);
371     if (word && !strcasecmp(word, "PATTERN")) {
372         enum vlog_facility facility;
373
374         word = strtok_r(NULL, " ,:\t", &save_ptr);
375         if (!word) {
376             msg = xstrdup("missing facility");
377             goto exit;
378         }
379
380         facility = (!strcasecmp(word, "ANY")
381                     ? VLF_ANY_FACILITY
382                     : vlog_get_facility_val(word));
383         if (facility == VLF_N_FACILITIES) {
384             msg = xasprintf("unknown facility \"%s\"", word);
385             goto exit;
386         }
387         vlog_set_pattern(facility, save_ptr);
388     } else {
389         struct vlog_module *module = NULL;
390         enum vlog_level level = VLL_N_LEVELS;
391         enum vlog_facility facility = VLF_N_FACILITIES;
392
393         for (; word != NULL; word = strtok_r(NULL, " ,:\t", &save_ptr)) {
394             if (!strcasecmp(word, "ANY")) {
395                 continue;
396             } else if (vlog_get_facility_val(word) != VLF_N_FACILITIES) {
397                 if (facility != VLF_N_FACILITIES) {
398                     msg = xstrdup("cannot specify multiple facilities");
399                     goto exit;
400                 }
401                 facility = vlog_get_facility_val(word);
402             } else if (vlog_get_level_val(word) != VLL_N_LEVELS) {
403                 if (level != VLL_N_LEVELS) {
404                     msg = xstrdup("cannot specify multiple levels");
405                     goto exit;
406                 }
407                 level = vlog_get_level_val(word);
408             } else if (vlog_module_from_name(word)) {
409                 if (module) {
410                     msg = xstrdup("cannot specify multiple modules");
411                     goto exit;
412                 }
413                 module = vlog_module_from_name(word);
414             } else {
415                 msg = xasprintf("no facility, level, or module \"%s\"", word);
416                 goto exit;
417             }
418         }
419
420         if (facility == VLF_N_FACILITIES) {
421             facility = VLF_ANY_FACILITY;
422         }
423         if (level == VLL_N_LEVELS) {
424             level = VLL_DBG;
425         }
426         vlog_set_levels(module, facility, level);
427     }
428
429 exit:
430     free(s);
431     return msg;
432 }
433
434 /* Set debugging levels.  Abort with an error message if 's' is invalid. */
435 void
436 vlog_set_levels_from_string_assert(const char *s)
437 {
438     char *error = vlog_set_levels_from_string(s);
439     if (error) {
440         ovs_fatal(0, "%s", error);
441     }
442 }
443
444 /* If 'arg' is null, configure maximum verbosity.  Otherwise, sets
445  * configuration according to 'arg' (see vlog_set_levels_from_string()). */
446 void
447 vlog_set_verbosity(const char *arg)
448 {
449     if (arg) {
450         char *msg = vlog_set_levels_from_string(arg);
451         if (msg) {
452             ovs_fatal(0, "processing \"%s\": %s", arg, msg);
453         }
454     } else {
455         vlog_set_levels(NULL, VLF_ANY_FACILITY, VLL_DBG);
456     }
457 }
458
459 static void
460 vlog_unixctl_set(struct unixctl_conn *conn, int argc, const char *argv[],
461                  void *aux OVS_UNUSED)
462 {
463     int i;
464
465     for (i = 1; i < argc; i++) {
466         char *msg = vlog_set_levels_from_string(argv[i]);
467         if (msg) {
468             unixctl_command_reply_error(conn, msg);
469             free(msg);
470             return;
471         }
472     }
473     unixctl_command_reply(conn, NULL);
474 }
475
476 static void
477 vlog_unixctl_list(struct unixctl_conn *conn, int argc OVS_UNUSED,
478                   const char *argv[] OVS_UNUSED, void *aux OVS_UNUSED)
479 {
480     char *msg = vlog_get_levels();
481     unixctl_command_reply(conn, msg);
482     free(msg);
483 }
484
485 static void
486 vlog_unixctl_reopen(struct unixctl_conn *conn, int argc OVS_UNUSED,
487                     const char *argv[] OVS_UNUSED, void *aux OVS_UNUSED)
488 {
489     if (log_file_name) {
490         int error = vlog_reopen_log_file();
491         if (error) {
492             unixctl_command_reply_error(conn, strerror(errno));
493         } else {
494             unixctl_command_reply(conn, NULL);
495         }
496     } else {
497         unixctl_command_reply_error(conn, "Logging to file not configured");
498     }
499 }
500
501 static void
502 set_all_rate_limits(bool enable)
503 {
504     struct vlog_module **mp;
505
506     for (mp = vlog_modules; mp < &vlog_modules[n_vlog_modules]; mp++) {
507         (*mp)->honor_rate_limits = enable;
508     }
509 }
510
511 static void
512 set_rate_limits(struct unixctl_conn *conn, int argc,
513                 const char *argv[], bool enable)
514 {
515     if (argc > 1) {
516         int i;
517
518         for (i = 1; i < argc; i++) {
519             if (!strcasecmp(argv[i], "ANY")) {
520                 set_all_rate_limits(enable);
521             } else {
522                 struct vlog_module *module = vlog_module_from_name(argv[i]);
523                 if (!module) {
524                     unixctl_command_reply_error(conn, "unknown module");
525                     return;
526                 }
527                 module->honor_rate_limits = enable;
528             }
529         }
530     } else {
531         set_all_rate_limits(enable);
532     }
533     unixctl_command_reply(conn, NULL);
534 }
535
536 static void
537 vlog_enable_rate_limit(struct unixctl_conn *conn, int argc,
538                        const char *argv[], void *aux OVS_UNUSED)
539 {
540     set_rate_limits(conn, argc, argv, true);
541 }
542
543 static void
544 vlog_disable_rate_limit(struct unixctl_conn *conn, int argc,
545                        const char *argv[], void *aux OVS_UNUSED)
546 {
547     set_rate_limits(conn, argc, argv, false);
548 }
549
550 /* Initializes the logging subsystem and registers its unixctl server
551  * commands. */
552 void
553 vlog_init(void)
554 {
555     static char *program_name_copy;
556     time_t now;
557
558     if (vlog_inited) {
559         return;
560     }
561     vlog_inited = true;
562
563     /* openlog() is allowed to keep the pointer passed in, without making a
564      * copy.  The daemonize code sometimes frees and replaces 'program_name',
565      * so make a private copy just for openlog().  (We keep a pointer to the
566      * private copy to suppress memory leak warnings in case openlog() does
567      * make its own copy.) */
568     program_name_copy = program_name ? xstrdup(program_name) : NULL;
569     openlog(program_name_copy, LOG_NDELAY, LOG_DAEMON);
570
571     now = time_wall();
572     if (now < 0) {
573         char *s = xastrftime("%a, %d %b %Y %H:%M:%S", now, true);
574         VLOG_ERR("current time is negative: %s (%ld)", s, (long int) now);
575         free(s);
576     }
577
578     unixctl_command_register(
579         "vlog/set", "{spec | PATTERN:facility:pattern}",
580         1, INT_MAX, vlog_unixctl_set, NULL);
581     unixctl_command_register("vlog/list", "", 0, 0, vlog_unixctl_list, NULL);
582     unixctl_command_register("vlog/enable-rate-limit", "[module]...",
583                              0, INT_MAX, vlog_enable_rate_limit, NULL);
584     unixctl_command_register("vlog/disable-rate-limit", "[module]...",
585                              0, INT_MAX, vlog_disable_rate_limit, NULL);
586     unixctl_command_register("vlog/reopen", "", 0, 0,
587                              vlog_unixctl_reopen, NULL);
588 }
589
590 /* Closes the logging subsystem. */
591 void
592 vlog_exit(void)
593 {
594     if (vlog_inited) {
595         closelog();
596         vlog_inited = false;
597     }
598 }
599
600 /* Print the current logging level for each module. */
601 char *
602 vlog_get_levels(void)
603 {
604     struct ds s = DS_EMPTY_INITIALIZER;
605     struct vlog_module **mp;
606     struct svec lines = SVEC_EMPTY_INITIALIZER;
607     char *line;
608     size_t i;
609
610     ds_put_format(&s, "                 console    syslog    file\n");
611     ds_put_format(&s, "                 -------    ------    ------\n");
612
613     for (mp = vlog_modules; mp < &vlog_modules[n_vlog_modules]; mp++) {
614         struct ds line;
615
616         ds_init(&line);
617         ds_put_format(&line, "%-16s  %4s       %4s       %4s",
618                       vlog_get_module_name(*mp),
619                       vlog_get_level_name(vlog_get_level(*mp, VLF_CONSOLE)),
620                       vlog_get_level_name(vlog_get_level(*mp, VLF_SYSLOG)),
621                       vlog_get_level_name(vlog_get_level(*mp, VLF_FILE)));
622         if (!(*mp)->honor_rate_limits) {
623             ds_put_cstr(&line, "    (rate limiting disabled)");
624         }
625         ds_put_char(&line, '\n');
626
627         svec_add_nocopy(&lines, ds_steal_cstr(&line));
628     }
629
630     svec_sort(&lines);
631     SVEC_FOR_EACH (i, line, &lines) {
632         ds_put_cstr(&s, line);
633     }
634     svec_destroy(&lines);
635
636     return ds_cstr(&s);
637 }
638
639 /* Returns true if a log message emitted for the given 'module' and 'level'
640  * would cause some log output, false if that module and level are completely
641  * disabled. */
642 bool
643 vlog_is_enabled(const struct vlog_module *module, enum vlog_level level)
644 {
645     return module->min_level >= level;
646 }
647
648 static const char *
649 fetch_braces(const char *p, const char *def, char *out, size_t out_size)
650 {
651     if (*p == '{') {
652         size_t n = strcspn(p + 1, "}");
653         size_t n_copy = MIN(n, out_size - 1);
654         memcpy(out, p + 1, n_copy);
655         out[n_copy] = '\0';
656         p += n + 2;
657     } else {
658         ovs_strlcpy(out, def, out_size);
659     }
660     return p;
661 }
662
663 static void
664 format_log_message(const struct vlog_module *module, enum vlog_level level,
665                    enum vlog_facility facility, unsigned int msg_num,
666                    const char *message, va_list args_, struct ds *s)
667 {
668     char tmp[128];
669     va_list args;
670     const char *p;
671
672     ds_clear(s);
673     for (p = facilities[facility].pattern; *p != '\0'; ) {
674         enum { LEFT, RIGHT } justify = RIGHT;
675         int pad = '0';
676         size_t length, field, used;
677
678         if (*p != '%') {
679             ds_put_char(s, *p++);
680             continue;
681         }
682
683         p++;
684         if (*p == '-') {
685             justify = LEFT;
686             p++;
687         }
688         if (*p == '0') {
689             pad = '0';
690             p++;
691         }
692         field = 0;
693         while (isdigit((unsigned char)*p)) {
694             field = (field * 10) + (*p - '0');
695             p++;
696         }
697
698         length = s->length;
699         switch (*p++) {
700         case 'A':
701             ds_put_cstr(s, program_name);
702             break;
703         case 'c':
704             p = fetch_braces(p, "", tmp, sizeof tmp);
705             ds_put_cstr(s, vlog_get_module_name(module));
706             break;
707         case 'd':
708             p = fetch_braces(p, "%Y-%m-%d %H:%M:%S", tmp, sizeof tmp);
709             ds_put_strftime(s, tmp, time_wall(), false);
710             break;
711         case 'D':
712             p = fetch_braces(p, "%Y-%m-%d %H:%M:%S", tmp, sizeof tmp);
713             ds_put_strftime(s, tmp, time_wall(), true);
714             break;
715         case 'm':
716             /* Format user-supplied log message and trim trailing new-lines. */
717             length = s->length;
718             va_copy(args, args_);
719             ds_put_format_valist(s, message, args);
720             va_end(args);
721             while (s->length > length && s->string[s->length - 1] == '\n') {
722                 s->length--;
723             }
724             break;
725         case 'N':
726             ds_put_format(s, "%u", msg_num);
727             break;
728         case 'n':
729             ds_put_char(s, '\n');
730             break;
731         case 'p':
732             ds_put_cstr(s, vlog_get_level_name(level));
733             break;
734         case 'P':
735             ds_put_format(s, "%ld", (long int) getpid());
736             break;
737         case 'r':
738             ds_put_format(s, "%lld", time_msec() - time_boot_msec());
739             break;
740         case 't':
741             ds_put_cstr(s, subprogram_name[0] ? subprogram_name : "main");
742             break;
743         case 'T':
744             if (subprogram_name[0]) {
745                 ds_put_format(s, "(%s)", subprogram_name);
746             }
747             break;
748         default:
749             ds_put_char(s, p[-1]);
750             break;
751         }
752         used = s->length - length;
753         if (used < field) {
754             size_t n_pad = field - used;
755             if (justify == RIGHT) {
756                 ds_put_uninit(s, n_pad);
757                 memmove(&s->string[length + n_pad], &s->string[length], used);
758                 memset(&s->string[length], pad, n_pad);
759             } else {
760                 ds_put_char_multiple(s, pad, n_pad);
761             }
762         }
763     }
764 }
765
766 /* Writes 'message' to the log at the given 'level' and as coming from the
767  * given 'module'.
768  *
769  * Guaranteed to preserve errno. */
770 void
771 vlog_valist(const struct vlog_module *module, enum vlog_level level,
772             const char *message, va_list args)
773 {
774     bool log_to_console = module->levels[VLF_CONSOLE] >= level;
775     bool log_to_syslog = module->levels[VLF_SYSLOG] >= level;
776     bool log_to_file = module->levels[VLF_FILE] >= level && log_fd >= 0;
777     if (log_to_console || log_to_syslog || log_to_file) {
778         int save_errno = errno;
779         static unsigned int msg_num;
780         struct ds s;
781
782         vlog_init();
783
784         ds_init(&s);
785         ds_reserve(&s, 1024);
786         msg_num++;
787
788         if (log_to_console) {
789             format_log_message(module, level, VLF_CONSOLE, msg_num,
790                                message, args, &s);
791             ds_put_char(&s, '\n');
792             fputs(ds_cstr(&s), stderr);
793         }
794
795         if (log_to_syslog) {
796             int syslog_level = syslog_levels[level];
797             char *save_ptr = NULL;
798             char *line;
799
800             format_log_message(module, level, VLF_SYSLOG, msg_num,
801                                message, args, &s);
802             for (line = strtok_r(s.string, "\n", &save_ptr); line;
803                  line = strtok_r(NULL, "\n", &save_ptr)) {
804                 syslog(syslog_level, "%s", line);
805             }
806         }
807
808         if (log_to_file) {
809             format_log_message(module, level, VLF_FILE, msg_num,
810                                message, args, &s);
811             ds_put_char(&s, '\n');
812             vlog_write_file(&s);
813         }
814
815         ds_destroy(&s);
816         errno = save_errno;
817     }
818 }
819
820 void
821 vlog(const struct vlog_module *module, enum vlog_level level,
822      const char *message, ...)
823 {
824     va_list args;
825
826     va_start(args, message);
827     vlog_valist(module, level, message, args);
828     va_end(args);
829 }
830
831 /* Logs 'message' to 'module' at maximum verbosity, then exits with a failure
832  * exit code.  Always writes the message to stderr, even if the console
833  * facility is disabled.
834  *
835  * Choose this function instead of vlog_abort_valist() if the daemon monitoring
836  * facility shouldn't automatically restart the current daemon.  */
837 void
838 vlog_fatal_valist(const struct vlog_module *module_,
839                   const char *message, va_list args)
840 {
841     struct vlog_module *module = CONST_CAST(struct vlog_module *, module_);
842
843     /* Don't log this message to the console to avoid redundancy with the
844      * message written by the later ovs_fatal_valist(). */
845     module->levels[VLF_CONSOLE] = VLL_OFF;
846
847     vlog_valist(module, VLL_EMER, message, args);
848     ovs_fatal_valist(0, message, args);
849 }
850
851 /* Logs 'message' to 'module' at maximum verbosity, then exits with a failure
852  * exit code.  Always writes the message to stderr, even if the console
853  * facility is disabled.
854  *
855  * Choose this function instead of vlog_abort() if the daemon monitoring
856  * facility shouldn't automatically restart the current daemon.  */
857 void
858 vlog_fatal(const struct vlog_module *module, const char *message, ...)
859 {
860     va_list args;
861
862     va_start(args, message);
863     vlog_fatal_valist(module, message, args);
864     va_end(args);
865 }
866
867 /* Logs 'message' to 'module' at maximum verbosity, then calls abort().  Always
868  * writes the message to stderr, even if the console facility is disabled.
869  *
870  * Choose this function instead of vlog_fatal_valist() if the daemon monitoring
871  * facility should automatically restart the current daemon.  */
872 void
873 vlog_abort_valist(const struct vlog_module *module_,
874                   const char *message, va_list args)
875 {
876     struct vlog_module *module = (struct vlog_module *) module_;
877
878     /* Don't log this message to the console to avoid redundancy with the
879      * message written by the later ovs_abort_valist(). */
880     module->levels[VLF_CONSOLE] = VLL_OFF;
881
882     vlog_valist(module, VLL_EMER, message, args);
883     ovs_abort_valist(0, message, args);
884 }
885
886 /* Logs 'message' to 'module' at maximum verbosity, then calls abort().  Always
887  * writes the message to stderr, even if the console facility is disabled.
888  *
889  * Choose this function instead of vlog_fatal() if the daemon monitoring
890  * facility should automatically restart the current daemon.  */
891 void
892 vlog_abort(const struct vlog_module *module, const char *message, ...)
893 {
894     va_list args;
895
896     va_start(args, message);
897     vlog_abort_valist(module, message, args);
898     va_end(args);
899 }
900
901 bool
902 vlog_should_drop(const struct vlog_module *module, enum vlog_level level,
903                  struct vlog_rate_limit *rl)
904 {
905     if (!module->honor_rate_limits) {
906         return false;
907     }
908
909     if (!vlog_is_enabled(module, level)) {
910         return true;
911     }
912
913     if (!token_bucket_withdraw(&rl->token_bucket, VLOG_MSG_TOKENS)) {
914         time_t now = time_now();
915         if (!rl->n_dropped) {
916             rl->first_dropped = now;
917         }
918         rl->last_dropped = now;
919         rl->n_dropped++;
920         return true;
921     }
922
923     if (rl->n_dropped) {
924         time_t now = time_now();
925         unsigned int first_dropped_elapsed = now - rl->first_dropped;
926         unsigned int last_dropped_elapsed = now - rl->last_dropped;
927
928         vlog(module, level,
929              "Dropped %u log messages in last %u seconds (most recently, "
930              "%u seconds ago) due to excessive rate",
931              rl->n_dropped, first_dropped_elapsed, last_dropped_elapsed);
932
933         rl->n_dropped = 0;
934     }
935     return false;
936 }
937
938 void
939 vlog_rate_limit(const struct vlog_module *module, enum vlog_level level,
940                 struct vlog_rate_limit *rl, const char *message, ...)
941 {
942     if (!vlog_should_drop(module, level, rl)) {
943         va_list args;
944
945         va_start(args, message);
946         vlog_valist(module, level, message, args);
947         va_end(args);
948     }
949 }
950
951 void
952 vlog_usage(void)
953 {
954     printf("\nLogging options:\n"
955            "  -v, --verbose=[SPEC]    set logging levels\n"
956            "  -v, --verbose           set maximum verbosity level\n"
957            "  --log-file[=FILE]       enable logging to specified FILE\n"
958            "                          (default: %s/%s.log)\n",
959            ovs_logdir(), program_name);
960 }
961 \f
962 static bool vlog_async_inited = false;
963
964 static worker_request_func vlog_async_write_request_cb;
965
966 static void
967 vlog_write_file(struct ds *s)
968 {
969     if (worker_is_running()) {
970         static bool in_worker_request = false;
971         if (!in_worker_request) {
972             in_worker_request = true;
973
974             worker_request(s->string, s->length,
975                            &log_fd, vlog_async_inited ? 0 : 1,
976                            vlog_async_write_request_cb, NULL, NULL);
977             vlog_async_inited = true;
978
979             in_worker_request = false;
980             return;
981         } else {
982             /* We've been entered recursively.  This can happen if
983              * worker_request(), or a function that it calls, tries to log
984              * something.  We can't call worker_request() recursively, so fall
985              * back to writing the log file directly. */
986             COVERAGE_INC(vlog_recursive);
987         }
988     }
989     ignore(write(log_fd, s->string, s->length));
990 }
991
992 static void
993 vlog_update_async_log_fd(void)
994 {
995     if (worker_is_running()) {
996         worker_request(NULL, 0, &log_fd, 1, vlog_async_write_request_cb,
997                        NULL, NULL);
998         vlog_async_inited = true;
999     }
1000 }
1001
1002 static void
1003 vlog_async_write_request_cb(struct ofpbuf *request,
1004                             const int *fd, size_t n_fds)
1005 {
1006     if (n_fds > 0) {
1007         if (log_fd >= 0) {
1008             close(log_fd);
1009         }
1010         log_fd = *fd;
1011     }
1012
1013     if (request->size > 0) {
1014         ignore(write(log_fd, request->data, request->size));
1015     }
1016 }