aboutsummaryrefslogtreecommitdiff
path: root/logger.c
AgeCommit message (Collapse)Author
2024-01-21convert remaining code to the imsg gettersOmar Polo
Now gmid doesn't touch anymore the internals of the imsg structs.
2024-01-21please macosOmar Polo
for some reason that's not entirely clear to me, __dead doesn't seem to work on macos, so clang thinks datalen is used un-initialized. meh
2024-01-21convert most of gmid to the new imsg APIsOmar Polo
Makes parsing and handling of imsgs simpler / clearer. only crypto.c is left as-is.
2024-01-21convert to use imsg_get_fd()Omar Polo
since proc_forward_imsg() never forwards a file descriptor (it's never called actually) just use -1 there.
2023-08-23resurrect openlog() + tzset() in the loggerOmar Polo
They're not needed on OpenBSD nor in other systems... except under sandbox. These were added for capsicum() if I remember correctly, but also with landlock it's better to initialize these things earlier.
2023-08-07add `log syslog facility' to use a different syslog(3) facilityOmar Polo
Was requested ages ago by Karl Jeacle, now that there is some better support for configuring the logging there's no excuse to add this. It helps with filtering from syslog.d / syslog.conf.
2023-07-26add log syslog off; don't turn syslog off when log access is specifiedOmar Polo
2023-07-26rename IMSG_LOG_TYPE to ACCESSOmar Polo
2023-07-24still respect `log' when in debug modeOmar Polo
2023-07-24logger use dprintf and a fd instead of a FILEOmar Polo
simplifies further handling. The stdio layer introduces its own buffering and for the logs I'd like to avoid it. fflush(3) is an option, but using a raw fd and dprintf(2) requires less code.
2023-06-24copyright years++Omar Polo
2023-06-08less logger.hOmar Polo
2023-06-08move log_request to gmid.cOmar Polo
so that ge can provide its own log_request without requiring a separate logger process.
2023-06-08rework the daemon to do fork+execOmar Polo
It uses the 'common' proc.c from various OpenBSD-daemons. gmid grew organically bit by bit and it was also the first place where I tried to implement privsep. It wasn't done very well, in fact the parent process (that retains root privileges) just fork()s a generation of servers, all sharing *exactly* the same address space. No good! Now, we fork() and re-exec() ourselves, so that each process has a fresh address space. Some features (require client ca for example) are temporarly disabled, will be fixed in subsequent commits. The "ge" program is also temporarly disabled as it needs tweaks to do privsep too.
2023-06-06fix asprintf failure checkOmar Polo
2023-06-06switch to the more usual log.cOmar Polo
2023-06-06use memchr instead of rolling a custom oneOmar Polo
2023-06-06rename log.[ch] to logger.[ch]Omar Polo