Switch to signalfd for SIGHUP
This commit is contained in:
@@ -58,7 +58,7 @@ int main(int argc, char *argv[]) {
|
|||||||
wakeup_init();
|
wakeup_init();
|
||||||
peer_init();
|
peer_init();
|
||||||
|
|
||||||
log_init2();
|
log_init_peer();
|
||||||
|
|
||||||
receive_init();
|
receive_init();
|
||||||
send_init();
|
send_init();
|
||||||
@@ -96,6 +96,8 @@ int main(int argc, char *argv[]) {
|
|||||||
rand_cleanup();
|
rand_cleanup();
|
||||||
wakeup_cleanup();
|
wakeup_cleanup();
|
||||||
|
|
||||||
|
log_cleanup_peer();
|
||||||
|
|
||||||
peer_cleanup();
|
peer_cleanup();
|
||||||
|
|
||||||
log_cleanup();
|
log_cleanup();
|
||||||
|
|||||||
34
adsbus/log.c
34
adsbus/log.c
@@ -6,6 +6,7 @@
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
#include <sys/signalfd.h>
|
||||||
#include <sys/socket.h>
|
#include <sys/socket.h>
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
@@ -22,7 +23,6 @@
|
|||||||
static FILE *log_stream = NULL;
|
static FILE *log_stream = NULL;
|
||||||
static char *log_path = NULL;
|
static char *log_path = NULL;
|
||||||
static uint8_t log_id[UUID_LEN];
|
static uint8_t log_id[UUID_LEN];
|
||||||
static int log_rotate_fd;
|
|
||||||
static struct peer log_rotate_peer;
|
static struct peer log_rotate_peer;
|
||||||
static bool log_timestamps = false;
|
static bool log_timestamps = false;
|
||||||
static opts_group log_opts;
|
static opts_group log_opts;
|
||||||
@@ -31,7 +31,7 @@ static char log_module = 'L';
|
|||||||
|
|
||||||
static void log_rotate() {
|
static void log_rotate() {
|
||||||
if (!log_path) {
|
if (!log_path) {
|
||||||
LOG(log_id, "Received SIGHUP but logging to stderr; ignoring");
|
LOG(log_id, "Asked to rotate logs but not logging to a file; ignoring");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -48,16 +48,12 @@ static void log_rotate() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void log_rotate_handler(struct peer *peer) {
|
static void log_rotate_handler(struct peer *peer) {
|
||||||
char buf[1];
|
struct signalfd_siginfo siginfo;
|
||||||
assert(read(peer->fd, buf, 1) == 1);
|
assert(read(peer->fd, &siginfo, sizeof(siginfo)) == sizeof(siginfo));
|
||||||
assert(buf[0] == 'L');
|
LOG(log_id, "Received signal %u; rotating logs", siginfo.ssi_signo);
|
||||||
log_rotate();
|
log_rotate();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void log_rotate_signal(int __attribute__ ((unused)) signum) {
|
|
||||||
assert(write(log_rotate_fd, "L", 1) == 1);
|
|
||||||
}
|
|
||||||
|
|
||||||
static bool log_set_path(const char *path) {
|
static bool log_set_path(const char *path) {
|
||||||
if (log_path) {
|
if (log_path) {
|
||||||
return false;
|
return false;
|
||||||
@@ -93,23 +89,25 @@ void log_init() {
|
|||||||
LOG(log_id, "Log start");
|
LOG(log_id, "Log start");
|
||||||
}
|
}
|
||||||
|
|
||||||
void log_init2() {
|
void log_init_peer() {
|
||||||
int rotate_fds[2];
|
sigset_t sigmask;
|
||||||
assert(!socketpair(AF_UNIX, SOCK_STREAM | SOCK_CLOEXEC, 0, rotate_fds));
|
assert(!sigemptyset(&sigmask));
|
||||||
log_rotate_peer.fd = rotate_fds[0];
|
assert(!sigaddset(&sigmask, SIGHUP));
|
||||||
assert(!shutdown(log_rotate_peer.fd, SHUT_WR));
|
log_rotate_peer.fd = signalfd(-1, &sigmask, SFD_NONBLOCK | SFD_CLOEXEC);
|
||||||
|
assert(log_rotate_peer.fd >= 0);
|
||||||
log_rotate_peer.event_handler = log_rotate_handler;
|
log_rotate_peer.event_handler = log_rotate_handler;
|
||||||
peer_epoll_add(&log_rotate_peer, EPOLLIN);
|
peer_epoll_add(&log_rotate_peer, EPOLLIN);
|
||||||
|
|
||||||
log_rotate_fd = rotate_fds[1];
|
assert(!sigprocmask(SIG_BLOCK, &sigmask, NULL));
|
||||||
signal(SIGHUP, log_rotate_signal);
|
}
|
||||||
|
|
||||||
|
void log_cleanup_peer() {
|
||||||
|
peer_close(&log_rotate_peer);
|
||||||
}
|
}
|
||||||
|
|
||||||
void log_cleanup() {
|
void log_cleanup() {
|
||||||
LOG(log_id, "Log end");
|
LOG(log_id, "Log end");
|
||||||
assert(!fclose(log_stream));
|
assert(!fclose(log_stream));
|
||||||
assert(!close(log_rotate_fd));
|
|
||||||
assert(!close(log_rotate_peer.fd));
|
|
||||||
if (log_path) {
|
if (log_path) {
|
||||||
free(log_path);
|
free(log_path);
|
||||||
log_path = NULL;
|
log_path = NULL;
|
||||||
|
|||||||
@@ -9,7 +9,8 @@
|
|||||||
|
|
||||||
void log_opts_add(void);
|
void log_opts_add(void);
|
||||||
void log_init(void);
|
void log_init(void);
|
||||||
void log_init2(void);
|
|
||||||
void log_cleanup(void);
|
void log_cleanup(void);
|
||||||
|
void log_init_peer(void);
|
||||||
|
void log_cleanup_peer(void);
|
||||||
void log_write(char, const char *, const uint8_t *, const char *, ...)
|
void log_write(char, const char *, const uint8_t *, const char *, ...)
|
||||||
__attribute__ ((__format__ (__printf__, 4, 5)));
|
__attribute__ ((__format__ (__printf__, 4, 5)));
|
||||||
|
|||||||
Reference in New Issue
Block a user