Try to fix case where we can't getpgid() treating pid == pgid.
[oweals/dinit.git] / src / dinit-log.cc
1 #include <iostream>
2 #include <algorithm>
3
4 #include <unistd.h>
5 #include <fcntl.h>
6 #include <sys/syslog.h>
7 #include <sys/uio.h>
8
9 #include "dasynq.h"
10
11 #include "service.h"
12 #include "dinit-log.h"
13 #include "cpbuffer.h"
14
15 // Dinit logging subsystem.
16 //
17 // Note that most actual functions for logging messages are found in the header, dinit-log.h.
18 //
19 // We have two separate log "streams": one for the console/stdout, one for the syslog facility (or log
20 // file). Both have a circular buffer. Log messages are appended to the circular buffer (for a syslog
21 // stream, the messages are prepended with a syslog priority indicator). Both streams start out inactive
22 // (release = true in buffered_log_stream), which means they will buffer messages but not write them.
23 //
24 // The console log stream needs to be able to release the console, if a service is waiting to acquire it.
25 // This is accomplished by calling flush_for_release() which then completes the output of the current
26 // message (if any) and then assigns the console to a waiting service.
27
28 extern eventloop_t event_loop;
29
30 static bool log_current_line[2];  // Whether the current line is being logged (for console, main log)
31 loglevel_t log_level[2] = { loglevel_t::INFO, loglevel_t::WARN };
32 static bool log_format_syslog[2] = { false, true };
33
34 static service_set *services = nullptr;  // Reference to service set
35
36 dasynq::time_val release_time; // time the log was released
37
38 using rearm = dasynq::rearm;
39
40 namespace {
41 class buffered_log_stream : public eventloop_t::fd_watcher_impl<buffered_log_stream>
42 {
43     private:
44
45     // Outgoing:
46     bool partway = false;     // if we are partway throught output of a log message
47     bool discarded = false;   // if we have discarded a message
48     bool release = true;      // if we should inhibit output and release console
49
50     // A "special message" is not stored in the circular buffer; instead
51     // it is delivered from an external buffer not managed by BufferedLogger.
52     bool special = false;      // currently outputting special message?
53     const char *special_buf; // buffer containing special message
54     int msg_index;     // index into special message
55
56     cpbuffer<4096> log_buffer;
57     
58     public:
59     
60     // Incoming:
61     int current_index = 0;    // current/next incoming message index
62
63     int fd = -1;
64
65     void init(int fd)
66     {
67         this->fd = fd;
68         release = false;
69     }
70     
71     rearm fd_event(eventloop_t &loop, int fd, int flags) noexcept;
72
73     // Check whether the console can be released.
74     void flush_for_release();
75     bool is_release_set() { return release; }
76     
77     // Commit a log message
78     void commit_msg()
79     {
80         bool was_first = current_index == 0;
81         current_index = log_buffer.get_length();
82         if (was_first && ! release) {
83             set_enabled(event_loop, true);
84         }
85     }
86     
87     void rollback_msg()
88     {
89         log_buffer.trim_to(current_index);
90     }
91     
92     int get_free()
93     {
94         return log_buffer.get_free();
95     }
96     
97     void append(const char *s, size_t len)
98     {
99         log_buffer.append(s, len);
100     }
101     
102     // Discard buffer; call only when the stream isn't active.
103     void discard()
104     {
105         current_index = 0;
106         log_buffer.trim_to(0);
107     }
108
109     // Mark that a message was discarded due to full buffer
110     void mark_discarded()
111     {
112         discarded = true;
113     }
114
115     private:
116     void release_console();
117 };
118 }
119
120 // Two log streams:
121 // (One for main log, one for console)
122 static buffered_log_stream log_stream[2];
123
124 constexpr static int DLOG_MAIN = 0; // main log facility
125 constexpr static int DLOG_CONS = 1; // console
126
127 void buffered_log_stream::release_console()
128 {
129     if (release) {
130         int flags = fcntl(1, F_GETFL, 0);
131         fcntl(1, F_SETFL, flags & ~O_NONBLOCK);
132         services->pull_console_queue();
133         if (release) {
134             // release still set, we didn't immediately get the console back; record the
135             // time at which we released:
136             event_loop.get_time(release_time, clock_type::MONOTONIC);
137         }
138     }
139 }
140
141 void buffered_log_stream::flush_for_release()
142 {
143     release = true;
144     
145     // Try to flush any messages that are currently buffered. (Console is non-blocking
146     // so it will fail gracefully).
147     if (fd_event(event_loop, fd, dasynq::OUT_EVENTS) == rearm::DISARM) {
148         // Console has already been released at this point.
149         set_enabled(event_loop, false);
150     }
151     // fd_event didn't want to disarm, so must be partway through a message; will
152     // release when it's finished.
153 }
154
155 rearm buffered_log_stream::fd_event(eventloop_t &loop, int fd, int flags) noexcept
156 {
157     if ((! partway) && (! special) && discarded) {
158         special_buf = "dinit: *** log message discarded due to full buffer ***\n";
159         special = true;
160         discarded = false;
161         msg_index = 0;
162     }
163
164     if ((! partway) && special) {
165         const char * start = special_buf + msg_index;
166         const char * end = std::find(special_buf + msg_index, (const char *)nullptr, '\n');
167         int r = write(fd, start, end - start + 1);
168         if (r >= 0) {
169             if (start + r > end) {
170                 // All written: go on to next message in queue
171                 special = false;
172                 discarded = false;
173                 msg_index = 0;
174                 
175                 if (release) {
176                     release_console();
177                     return rearm::DISARM;
178                 }
179             }
180             else {
181                 msg_index += r;
182                 return rearm::REARM;
183             }
184         }
185         else if (errno != EAGAIN && errno != EINTR && errno != EWOULDBLOCK) {
186             return rearm::REMOVE;
187         }
188         return rearm::REARM;
189     }
190     else {
191         // Writing from the regular circular buffer
192         
193         if (current_index == 0) {
194             release_console();
195             return rearm::DISARM;
196         }
197         
198         // We try to find a complete line (terminated by '\n') in the buffer, and write it
199         // out. Since it may span the circular buffer end, it may consist of two distinct spans,
200         // and so we use writev to write them atomically.
201         
202         struct iovec logiov[2];
203         
204         char *ptr = log_buffer.get_ptr(0);
205         int len = log_buffer.get_contiguous_length(ptr);
206         char *creptr = ptr + len;  // contiguous region end
207         char *eptr = std::find(ptr, creptr, '\n');
208         
209         bool will_complete = false;  // will complete this message?
210         if (eptr != creptr) {
211             eptr++;  // include '\n'
212             will_complete = true;
213         }
214
215         len = eptr - ptr;
216         
217         logiov[0].iov_base = ptr;
218         logiov[0].iov_len = len;
219         int iovs_to_write = 1;
220         
221         // Do we need the second span?
222         if (! will_complete && len != log_buffer.get_length()) {
223             ptr = log_buffer.get_buf_base();
224             creptr = ptr + log_buffer.get_length() - len;
225             eptr = std::find(ptr, creptr, '\n');
226             if (eptr != creptr) {
227                 eptr++; // include '\n'
228                 // It should not ever be the case that we do not now have a complete message
229                 will_complete = true;
230             }
231             logiov[1].iov_base = ptr;
232             logiov[1].iov_len = eptr - ptr;
233             len += logiov[1].iov_len;
234             iovs_to_write = 2;
235         }
236         
237         ssize_t r = writev(fd, logiov, iovs_to_write);
238
239         if (r >= 0) {
240             bool complete = (r == len) && will_complete;
241             log_buffer.consume(len);
242             partway = ! complete;
243             if (complete) {
244                 current_index -= len;
245                 if (current_index == 0 || release) {
246                     // No more messages buffered / stop logging to console:
247                     release_console();
248                     return rearm::DISARM;
249                 }
250             }
251         }
252         else if (errno != EAGAIN && errno != EINTR && errno != EWOULDBLOCK) {
253             return rearm::REMOVE;
254         }
255     }
256     
257     // We've written something by the time we get here. We could fall through to below, but
258     // let's give other events a chance to be processed by returning now.
259     return rearm::REARM;
260 }
261
262 // Initialise the logging subsystem
263 // Potentially throws std::bad_alloc or std::system_error
264 void init_log(service_set *sset, bool syslog_format)
265 {
266     services = sset;
267     log_stream[DLOG_CONS].add_watch(event_loop, STDOUT_FILENO, dasynq::OUT_EVENTS, false);
268     enable_console_log(true);
269
270     // The main (non-console) log won't be active yet, but we set the format here so that we
271     // buffer messages in the correct format:
272     log_format_syslog[DLOG_MAIN] = syslog_format;
273 }
274
275 // Set up the main log to output to the given file descriptor.
276 // Potentially throws std::bad_alloc or std::system_error
277 void setup_main_log(int fd)
278 {
279     log_stream[DLOG_MAIN].init(fd);
280     log_stream[DLOG_MAIN].add_watch(event_loop, fd, dasynq::OUT_EVENTS);
281 }
282
283 bool is_log_flushed() noexcept
284 {
285     return log_stream[DLOG_CONS].current_index == 0;
286 }
287
288 // Enable or disable console logging. If disabled, console logging will be disabled on the
289 // completion of output of the current message (if any), at which point the first service record
290 // queued in the service set will acquire the console.
291 void enable_console_log(bool enable) noexcept
292 {
293     bool log_to_console = ! log_stream[DLOG_CONS].is_release_set();
294     if (enable && ! log_to_console) {
295         // Set non-blocking IO:
296         int flags = fcntl(STDOUT_FILENO, F_GETFL, 0);
297         fcntl(STDOUT_FILENO, F_SETFL, flags | O_NONBLOCK);
298         // Activate watcher:
299         log_stream[DLOG_CONS].init(STDOUT_FILENO);
300         log_stream[DLOG_CONS].set_enabled(event_loop, true);
301     }
302     else if (! enable && log_to_console) {
303         log_stream[DLOG_CONS].flush_for_release();
304     }
305 }
306
307 void discard_console_log_buffer() noexcept
308 {
309     // Only discard if more than a second has passed since we released the console.
310     dasynq::time_val current_time;
311     event_loop.get_time(current_time, clock_type::MONOTONIC);
312     if (current_time - release_time >= dasynq::time_val(1, 0)) {
313         log_stream[DLOG_CONS].discard();
314     }
315 }
316
317 // Variadic method to calculate the sum of string lengths:
318 static int sum_length(const char *arg) noexcept
319 {
320     return std::strlen(arg);
321 }
322
323 template <typename ... T> static int sum_length(const char * first, T ... args) noexcept
324 {
325     return sum_length(first) + sum_length(args...);
326 }
327
328 // Variadic method to append strings to a buffer:
329 static void append(buffered_log_stream &buf, const char *s)
330 {
331     buf.append(s, std::strlen(s));
332 }
333
334 template <typename ... T> static void append(buffered_log_stream &buf, const char *u, T ... t)
335 {
336     append(buf, u);
337     append(buf, t...);
338 }
339
340 static int log_level_to_syslog_level(loglevel_t l)
341 {
342     switch (l) {
343     case loglevel_t::DEBUG:
344         return LOG_DEBUG;
345     case loglevel_t::INFO:
346         return LOG_INFO;
347     case loglevel_t::WARN:
348         return LOG_WARNING;
349     case loglevel_t::ERROR:
350         return LOG_ERR;
351     default: ;
352     }
353     
354     return LOG_CRIT;
355 }
356
357 // Variadic method to log a sequence of strings as a single message to a particular facility:
358 template <typename ... T> static void push_to_log(int idx, T ... args) noexcept
359 {
360     if (! log_current_line[idx]) return;
361     int amount = sum_length(args...);
362     if (log_stream[idx].get_free() >= amount) {
363         append(log_stream[idx], args...);
364         log_stream[idx].commit_msg();
365     }
366     else {
367         log_stream[idx].mark_discarded();
368     }
369 }
370
371 // Variadic method to potentially log a sequence of strings as a single message with the given log level:
372 template <typename ... T> static void do_log(loglevel_t lvl, bool to_cons, T ... args) noexcept
373 {
374     log_current_line[DLOG_CONS] = (lvl >= log_level[DLOG_CONS]) && to_cons;
375     log_current_line[DLOG_MAIN] = (lvl >= log_level[DLOG_MAIN]);
376     push_to_log(DLOG_CONS, args...);
377     
378     if (log_current_line[DLOG_MAIN]) {
379         if (log_format_syslog[DLOG_MAIN]) {
380             char svcbuf[10];
381             snprintf(svcbuf, 10, "<%d>", LOG_DAEMON | log_level_to_syslog_level(lvl));
382             push_to_log(DLOG_MAIN, svcbuf, args...);
383         }
384         else {
385             push_to_log(DLOG_MAIN, args...);
386         }
387     }
388 }
389
390 template <typename ... T> static void do_log_cons(T ... args) noexcept
391 {
392     log_current_line[DLOG_CONS] = true;
393     log_current_line[DLOG_MAIN] = false;
394     push_to_log(DLOG_CONS, args...);
395 }
396
397 // Log to the main facility at NOTICE level
398 template <typename ... T> static void do_log_main(T ... args) noexcept
399 {
400     log_current_line[DLOG_CONS] = false;
401     log_current_line[DLOG_MAIN] = true;
402     
403     if (log_format_syslog[DLOG_MAIN]) {
404         char svcbuf[10];
405         snprintf(svcbuf, 10, "<%d>", LOG_DAEMON | LOG_NOTICE);
406         push_to_log(DLOG_MAIN, svcbuf, args...);
407     }
408     else {
409         push_to_log(DLOG_MAIN, args...);
410     }
411 }
412
413 // Log a message. A newline will be appended.
414 void log(loglevel_t lvl, const char *msg) noexcept
415 {
416     do_log(lvl, true, "dinit: ", msg, "\n");
417 }
418
419 void log(loglevel_t lvl, bool to_cons, const char *msg) noexcept
420 {
421     do_log(lvl, to_cons, "dinit: ", msg, "\n");
422 }
423
424 // Log part of a message. A series of calls to do_log_part must be followed by a call to do_log_commit.
425 template <typename T> static void do_log_part(int idx, T arg) noexcept
426 {
427     if (log_current_line[idx]) {
428         int amount = sum_length(arg);
429         if (log_stream[idx].get_free() >= amount) {
430             append(log_stream[idx], arg);
431         }
432         else {
433             log_stream[idx].rollback_msg();
434             log_current_line[idx] = false;
435             log_stream[idx].mark_discarded();
436         }
437     }
438 }
439
440 // Commit a message that was issued as a series of parts (via do_log_part).
441 static void do_log_commit(int idx) noexcept
442 {
443     if (log_current_line[idx]) {
444         log_stream[idx].commit_msg();
445     }
446 }
447
448 // Log a multi-part message beginning
449 void log_msg_begin(loglevel_t lvl, const char *msg) noexcept
450 {
451     log_current_line[DLOG_CONS] = lvl >= log_level[DLOG_CONS];
452     log_current_line[DLOG_MAIN] = lvl >= log_level[DLOG_MAIN];
453
454     // Prepend the syslog priority level string ("<N>") for the main log:
455     if (log_current_line[DLOG_MAIN]) {
456         if (log_format_syslog[DLOG_MAIN]) {
457             char svcbuf[10];
458             snprintf(svcbuf, 10, "<%d>", LOG_DAEMON | log_level_to_syslog_level(lvl));
459             do_log_part(DLOG_MAIN, svcbuf);
460         }
461     }
462
463     for (int i = 0; i < 2; i++) {
464         do_log_part(i, "dinit: ");
465         do_log_part(i, msg);
466     }
467 }
468
469 // Continue a multi-part log message
470 void log_msg_part(const char *msg) noexcept
471 {
472     do_log_part(DLOG_CONS, msg);
473     do_log_part(DLOG_MAIN, msg);
474 }
475
476 // Complete a multi-part log message
477 void log_msg_end(const char *msg) noexcept
478 {
479     for (int i = 0; i < 2; i++) {
480         do_log_part(i, msg);
481         do_log_part(i, "\n");
482         do_log_commit(i);
483     }
484 }
485
486 void log_service_started(const char *service_name) noexcept
487 {
488     do_log_cons("[  OK  ] ", service_name, "\n");
489     do_log_main("dinit: service ", service_name, " started.\n");
490 }
491
492 void log_service_failed(const char *service_name) noexcept
493 {
494     do_log_cons("[FAILED] ", service_name, "\n");
495     do_log_main("dinit: service ", service_name, " failed to start.\n");
496 }
497
498 void log_service_stopped(const char *service_name) noexcept
499 {
500     do_log_cons("[STOPPD] ", service_name, "\n");
501     do_log_main("dinit: service ", service_name, " stopped.\n");
502 }