13 bool_t secnet_is_daemon=False;
14 uint32_t message_level=M_WARNING|M_ERR|M_SECURITY|M_FATAL;
15 struct log_if *system_log=NULL;
17 static void vMessageFallback(uint32_t class, const char *message, va_list args)
19 static void vMessageFallback(uint32_t class, const char *message, va_list args)
22 /* Messages go to stdout/stderr */
23 if (class & message_level) {
24 if (class&M_FATAL || class&M_ERR || class&M_WARNING) {
27 vfprintf(dest,message,args);
31 static void vMessage(uint32_t class, const char *message, va_list args)
35 /* Messages go to the system log interface */
36 vslilog_part(system_log, class, message, args);
38 vMessageFallback(class,message,args);
42 void Message(uint32_t class, const char *message, ...)
47 vMessage(class,message,ap);
51 static void MessageFallback(uint32_t class, const char *message, ...)
53 static void MessageFallback(uint32_t class, const char *message, ...)
58 vMessageFallback(class,message,ap);
62 static NORETURN(vfatal(int status, bool_t perror, const char *message,
65 static void vfatal(int status, bool_t perror, const char *message,
72 enter_phase(PHASE_SHUTDOWN);
73 Message(M_FATAL, "secnet fatal error: ");
74 vMessage(M_FATAL, message, args);
76 Message(M_FATAL, ": %s\n",strerror(err));
78 Message(M_FATAL, "\n");
82 void fatal(const char *message, ...)
85 va_start(args,message);
86 vfatal(current_phase,False,message,args);
90 void fatal_status(int status, const char *message, ...)
93 va_start(args,message);
94 vfatal(status,False,message,args);
98 void fatal_perror(const char *message, ...)
101 va_start(args,message);
102 vfatal(current_phase,True,message,args);
106 void fatal_perror_status(int status, const char *message, ...)
109 va_start(args,message);
110 vfatal(status,True,message,args);
114 void vcfgfatal_maybefile(FILE *maybe_f /* or 0 */, struct cloc loc,
115 cstring_t facility, const char *message, va_list args)
117 enter_phase(PHASE_SHUTDOWN);
119 if (maybe_f && ferror(maybe_f)) {
121 Message(M_FATAL, "error reading config file (%s, %s): %s",
122 facility, loc.file, strerror(errno));
123 } else if (maybe_f && feof(maybe_f)) {
125 Message(M_FATAL, "unexpected end of config file (%s, %s)",
127 } else if (loc.file && loc.line) {
128 Message(M_FATAL, "config error (%s, %s:%d): ",facility,loc.file,
130 } else if (!loc.file && loc.line) {
131 Message(M_FATAL, "config error (%s, line %d): ",facility,loc.line);
133 Message(M_FATAL, "config error (%s): ",facility);
136 vMessage(M_FATAL,message,args);
140 void cfgfatal_maybefile(FILE *maybe_f, struct cloc loc, cstring_t facility,
141 const char *message, ...)
145 va_start(args,message);
146 vcfgfatal_maybefile(maybe_f,loc,facility,message,args);
150 void cfgfatal(struct cloc loc, cstring_t facility, const char *message, ...)
154 va_start(args,message);
155 vcfgfatal_maybefile(0,loc,facility,message,args);
159 void cfgfile_postreadcheck(struct cloc loc, FILE *f)
163 Message(M_FATAL, "error reading config file (%s): %s\n",
164 loc.file, strerror(errno));
166 } else if (feof(f)) {
167 Message(M_FATAL, "unexpected end of config file (%s)\n", loc.file);
172 /* Take a list of log closures and merge them */
175 struct loglist *next;
178 static void log_vmulti(void *sst, int class, const char *message, va_list args)
180 struct loglist *st=sst, *i;
182 if (secnet_is_daemon) {
183 for (i=st; i; i=i->next) {
184 vslilog(i->l,class,message,args);
187 vMessage(class,message,args);
192 void lg_vperror(struct log_if *lg, const char *desc, struct cloc *loc,
193 int class, int errnoval, const char *fmt, va_list al)
195 int status=current_phase;
202 enter_phase(PHASE_SHUTDOWN);
204 slilog_part(lg,class,"%s",desc);
206 slilog_part(lg,class," (%s:%d)",loc->file,loc->line);
207 slilog_part(lg,class,": ");
208 vslilog_part(lg,class,fmt,al);
210 slilog_part(lg,class,": %s",strerror(errnoval));
211 slilog_part(lg,class,"\n");
219 void lg_perror(struct log_if *lg, const char *desc, struct cloc *loc,
220 int class, int errnoval, const char *fmt, ...)
224 lg_vperror(lg,desc,loc,class,errnoval,fmt,al);
228 void lg_exitstatus(struct log_if *lg, const char *desc, struct cloc *loc,
229 int class, int status, const char *progname)
232 lg_perror(lg,desc,loc,class,0,"%s exited",progname);
233 else if (WIFEXITED(status))
234 lg_perror(lg,desc,loc,class,0,"%s exited with error exit status %d",
235 progname,WEXITSTATUS(status));
236 else if (WIFSIGNALED(status))
237 lg_perror(lg,desc,loc,class,0,"%s died due to fatal signal %s (%d)%s",
238 progname,strsignal(WTERMSIG(status)),WTERMSIG(status),
239 WCOREDUMP(status)?" (core dumped)":"");
241 lg_perror(lg,desc,loc,class,0,"%s died with unknown wait status %d",
245 struct log_if *init_log(list_t *ll)
250 struct loglist *l=NULL, *n;
253 if (list_length(ll)==1) {
254 item=list_elem(ll,0);
255 cl=item->data.closure;
256 if (cl->type!=CL_LOG) {
257 cfgfatal(item->loc,"init_log","closure is not a logger");
259 return cl->interface;
261 while ((item=list_elem(ll,i++))) {
262 if (item->type!=t_closure) {
263 cfgfatal(item->loc,"init_log","item is not a closure");
265 cl=item->data.closure;
266 if (cl->type!=CL_LOG) {
267 cfgfatal(item->loc,"init_log","closure is not a logger");
275 fatal("init_log: no log");
279 r->vlogfn=log_vmulti;
294 static cstring_t months[]={
295 "Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"};
297 static void logfile_vlog(void *sst, int class, const char *message,
300 struct logfile *st=sst;
307 snprintf(pidbuf,sizeof(pidbuf),"[%ld] ",(long)us);
312 if (secnet_is_daemon && st->f) {
313 if (class&st->level) {
316 fprintf(st->f,"%s %2d %02d:%02d:%02d %s",
317 months[tm->tm_mon],tm->tm_mday,tm->tm_hour,tm->tm_min,
320 vfprintf(st->f,message,args);
325 if (pidbuf[0]) MessageFallback(class,"%s",pidbuf);
326 vMessageFallback(class,message,args);
327 MessageFallback(class,"\n");
331 static void logfile_log(void *state, int class, const char *message, ...)
333 static void logfile_log(void *state, int class, const char *message, ...)
337 va_start(ap,message);
338 logfile_vlog(state,class,message,ap);
342 static void logfile_hup_notify(void *sst, int signum)
344 struct logfile *st=sst;
346 f=fopen(st->logfile,"a");
348 logfile_log(st,M_FATAL,"received SIGHUP, but could not reopen "
349 "logfile: %s",strerror(errno));
353 logfile_log(st,M_INFO,"received SIGHUP");
357 static void logfile_phase_hook(void *sst, uint32_t new_phase)
359 struct logfile *st=sst;
363 f=fopen(st->logfile,"a");
364 if (!f) fatal_perror("logfile (%s:%d): cannot open \"%s\"",
365 st->loc.file,st->loc.line,st->logfile);
367 request_signal_notification(SIGHUP, logfile_hup_notify,st);
371 static void logfile_childpersist_hook(void *sst, uint32_t new_phase)
373 struct logfile *st=sst;
377 static struct flagstr message_class_table[]={
378 { "debug-config", M_DEBUG_CONFIG },
379 { "debug-phase", M_DEBUG_PHASE },
380 { "debug", M_DEBUG },
381 { "all-debug", M_DEBUG|M_DEBUG_PHASE|M_DEBUG_CONFIG },
383 { "notice", M_NOTICE },
384 { "warning", M_WARNING },
386 { "security", M_SECURITY },
387 { "fatal", M_FATAL },
388 { "default", M_WARNING|M_ERR|M_SECURITY|M_FATAL },
389 { "verbose", M_INFO|M_NOTICE|M_WARNING|M_ERR|M_SECURITY|M_FATAL },
390 { "quiet", M_FATAL },
394 static list_t *logfile_apply(closure_t *self, struct cloc loc, dict_t *context,
401 /* We should defer opening the logfile until the getresources
402 phase. We should defer writing into the logfile until after we
406 st->cl.description="logfile";
409 st->cl.interface=&st->ops;
411 st->ops.vlogfn=logfile_vlog;
417 item=list_elem(args,0);
418 if (!item || item->type!=t_dict) {
419 cfgfatal(loc,"logfile","argument must be a dictionary\n");
421 dict=item->data.dict;
423 st->logfile=dict_read_string(dict,"filename",True,"logfile",loc);
424 st->level=string_list_to_word(dict_lookup(dict,"class"),
425 message_class_table,"logfile");
427 add_hook(PHASE_GETRESOURCES,logfile_phase_hook,st);
428 add_hook(PHASE_CHILDPERSIST,logfile_childpersist_hook,st);
430 return new_closure(&st->cl);
441 static int msgclass_to_syslogpriority(uint32_t m)
444 case M_DEBUG_CONFIG: return LOG_DEBUG;
445 case M_DEBUG_PHASE: return LOG_DEBUG;
446 case M_DEBUG: return LOG_DEBUG;
447 case M_INFO: return LOG_INFO;
448 case M_NOTICE: return LOG_NOTICE;
449 case M_WARNING: return LOG_WARNING;
450 case M_ERR: return LOG_ERR;
451 case M_SECURITY: return LOG_CRIT;
452 case M_FATAL: return LOG_EMERG;
453 default: return LOG_NOTICE;
457 static void syslog_vlog(void *sst, int class, const char *message,
460 static void syslog_vlog(void *sst, int class, const char *message,
463 struct syslog *st=sst;
466 vsyslog(msgclass_to_syslogpriority(class),message,args);
468 vMessageFallback(class,message,args);
469 MessageFallback(class,"\n");
473 static struct flagstr syslog_facility_table[]={
475 { "auth", LOG_AUTH },
478 { "authpriv", LOG_AUTHPRIV },
480 { "cron", LOG_CRON },
481 { "daemon", LOG_DAEMON },
482 { "kern", LOG_KERN },
483 { "local0", LOG_LOCAL0 },
484 { "local1", LOG_LOCAL1 },
485 { "local2", LOG_LOCAL2 },
486 { "local3", LOG_LOCAL3 },
487 { "local4", LOG_LOCAL4 },
488 { "local5", LOG_LOCAL5 },
489 { "local6", LOG_LOCAL6 },
490 { "local7", LOG_LOCAL7 },
492 { "mail", LOG_MAIL },
493 { "news", LOG_NEWS },
494 { "syslog", LOG_SYSLOG },
495 { "user", LOG_USER },
496 { "uucp", LOG_UUCP },
500 static void syslog_phase_hook(void *sst, uint32_t newphase)
502 struct syslog *st=sst;
506 newphase==PHASE_CHILDPERSIST ? LOG_PID : 0,
512 static list_t *syslog_apply(closure_t *self, struct cloc loc, dict_t *context,
521 st->cl.description="syslog";
524 st->cl.interface=&st->ops;
526 st->ops.vlogfn=syslog_vlog;
529 item=list_elem(args,0);
530 if (!item || item->type!=t_dict)
531 cfgfatal(loc,"syslog","parameter must be a dictionary\n");
534 st->ident=dict_read_string(d, "ident", False, "syslog", loc);
535 facstr=dict_read_string(d, "facility", True, "syslog", loc);
536 st->facility=string_to_word(facstr,loc,
537 syslog_facility_table,"syslog");
539 add_hook(PHASE_GETRESOURCES,syslog_phase_hook,st);
540 add_hook(PHASE_CHILDPERSIST,syslog_phase_hook,st);
542 return new_closure(&st->cl);
545 /* Read from a fd and output to a log. This is a quick hack to
546 support logging stderr, and needs code adding to tidy up before it
547 can be used for anything else. */
548 #define FDLOG_BUFSIZE 1024
558 static int log_from_fd_beforepoll(void *sst, struct pollfd *fds, int *nfds_io,
561 struct fdlog *st=sst;
563 BEFOREPOLL_WANT_FDS(1);
565 fds[0].events=POLLIN;
567 BEFOREPOLL_WANT_FDS(0);
572 static void log_from_fd_afterpoll(void *sst, struct pollfd *fds, int nfds)
574 struct fdlog *st=sst;
578 if (fds[0].revents&POLLERR) {
581 if (fds[0].revents&POLLIN) {
582 remain=FDLOG_BUFSIZE-st->i-1;
584 st->buffer[FDLOG_BUFSIZE-1]=0;
585 slilog(st->log,M_WARNING,"%s: overlong line: %s",
586 st->prefix,st->buffer);
588 remain=FDLOG_BUFSIZE-1;
590 r=read(st->fd,st->buffer+st->i,remain);
593 for (i=0; i<st->i; i++) {
594 if (st->buffer[i]=='\n') {
596 slilog(st->log,M_INFO,"%s: %s",
597 st->prefix,st->buffer);
599 memmove(st->buffer,st->buffer+i,st->i-i);
604 } else if (errno==EINTR || iswouldblock(errno)) {
606 Message(M_WARNING,"log_from_fd: %s\n",strerror(errno));
612 void log_from_fd(int fd, cstring_t prefix, struct log_if *log)
620 st->buffer=safe_malloc(FDLOG_BUFSIZE,"log_from_fd");
626 register_for_poll(st,log_from_fd_beforepoll,log_from_fd_afterpoll,
630 void log_module(dict_t *dict)
632 add_closure(dict,"logfile",logfile_apply);
633 add_closure(dict,"syslog",syslog_apply);