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