Use signalfd to handle SIGINT and SIGTERM shutdown.
This commit is contained in:
@@ -2,6 +2,7 @@
|
|||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#include <netdb.h>
|
#include <netdb.h>
|
||||||
#include <pthread.h>
|
#include <pthread.h>
|
||||||
|
#include <signal.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <sys/socket.h>
|
#include <sys/socket.h>
|
||||||
@@ -28,6 +29,11 @@ static int asyncaddrinfo_write_fd;
|
|||||||
|
|
||||||
static void *asyncaddrinfo_main(void *arg) {
|
static void *asyncaddrinfo_main(void *arg) {
|
||||||
int fd = (int) (intptr_t) arg;
|
int fd = (int) (intptr_t) arg;
|
||||||
|
|
||||||
|
sigset_t sigmask;
|
||||||
|
assert(!sigfillset(&sigmask));
|
||||||
|
assert(!pthread_sigmask(SIG_BLOCK, &sigmask, NULL));
|
||||||
|
|
||||||
struct asyncaddrinfo_resolution *res;
|
struct asyncaddrinfo_resolution *res;
|
||||||
ssize_t len;
|
ssize_t len;
|
||||||
while ((len = recv(fd, &res, sizeof(res), 0)) == sizeof(res)) {
|
while ((len = recv(fd, &res, sizeof(res), 0)) == sizeof(res)) {
|
||||||
|
|||||||
@@ -3,6 +3,8 @@
|
|||||||
#include <signal.h>
|
#include <signal.h>
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.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>
|
||||||
@@ -18,14 +20,15 @@ static char log_module = 'X';
|
|||||||
uint32_t peer_count_in = 0, peer_count_out = 0, peer_count_out_in = 0;
|
uint32_t peer_count_in = 0, peer_count_out = 0, peer_count_out_in = 0;
|
||||||
|
|
||||||
static int peer_epoll_fd;
|
static int peer_epoll_fd;
|
||||||
static int peer_shutdown_fd;
|
static struct peer peer_shutdown;
|
||||||
static bool peer_shutdown_flag = false;
|
static bool peer_shutdown_flag = false;
|
||||||
static struct list_head peer_always_trigger_head = LIST_HEAD_INIT(peer_always_trigger_head);
|
static struct list_head peer_always_trigger_head = LIST_HEAD_INIT(peer_always_trigger_head);
|
||||||
|
|
||||||
static void peer_shutdown_handler(struct peer *peer) {
|
static void peer_shutdown_handler(struct peer *peer) {
|
||||||
LOG(server_id, "Shutting down");
|
struct signalfd_siginfo siginfo;
|
||||||
assert(!close(peer->fd));
|
assert(read(peer->fd, &siginfo, sizeof(siginfo)) == sizeof(siginfo));
|
||||||
free(peer);
|
peer_close(peer);
|
||||||
|
LOG(server_id, "Received signal %u; shutting down", siginfo.ssi_signo);
|
||||||
peer_shutdown_flag = true;
|
peer_shutdown_flag = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -33,31 +36,22 @@ void peer_init() {
|
|||||||
peer_epoll_fd = epoll_create1(EPOLL_CLOEXEC);
|
peer_epoll_fd = epoll_create1(EPOLL_CLOEXEC);
|
||||||
assert(peer_epoll_fd >= 0);
|
assert(peer_epoll_fd >= 0);
|
||||||
|
|
||||||
int shutdown_fds[2];
|
sigset_t sigmask;
|
||||||
assert(!socketpair(AF_UNIX, SOCK_STREAM | SOCK_CLOEXEC, 0, shutdown_fds));
|
assert(!sigemptyset(&sigmask));
|
||||||
|
assert(!sigaddset(&sigmask, SIGINT));
|
||||||
|
assert(!sigaddset(&sigmask, SIGTERM));
|
||||||
|
peer_shutdown.fd = signalfd(-1, &sigmask, SFD_NONBLOCK | SFD_CLOEXEC);
|
||||||
|
assert(peer_shutdown.fd >= 0);
|
||||||
|
peer_shutdown.event_handler = peer_shutdown_handler;
|
||||||
|
peer_epoll_add(&peer_shutdown, EPOLLIN);
|
||||||
|
|
||||||
struct peer *shutdown_peer = malloc(sizeof(*shutdown_peer));
|
assert(!sigprocmask(SIG_BLOCK, &sigmask, NULL));
|
||||||
assert(shutdown_peer);
|
|
||||||
shutdown_peer->fd = shutdown_fds[0];
|
|
||||||
shutdown_peer->event_handler = peer_shutdown_handler;
|
|
||||||
peer_epoll_add(shutdown_peer, EPOLLRDHUP);
|
|
||||||
|
|
||||||
peer_shutdown_fd = shutdown_fds[1];
|
|
||||||
signal(SIGINT, peer_shutdown);
|
|
||||||
signal(SIGTERM, peer_shutdown);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void peer_cleanup() {
|
void peer_cleanup() {
|
||||||
assert(!close(peer_epoll_fd));
|
assert(!close(peer_epoll_fd));
|
||||||
}
|
}
|
||||||
|
|
||||||
void peer_shutdown(int __attribute__((unused)) signal) {
|
|
||||||
if (peer_shutdown_fd != -1) {
|
|
||||||
assert(!close(peer_shutdown_fd));
|
|
||||||
peer_shutdown_fd = -1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void peer_epoll_add(struct peer *peer, uint32_t events) {
|
void peer_epoll_add(struct peer *peer, uint32_t events) {
|
||||||
struct epoll_event ev = {
|
struct epoll_event ev = {
|
||||||
.events = events,
|
.events = events,
|
||||||
@@ -110,10 +104,10 @@ void peer_loop() {
|
|||||||
while (!peer_shutdown_flag) {
|
while (!peer_shutdown_flag) {
|
||||||
if (!(peer_count_in + peer_count_out_in)) {
|
if (!(peer_count_in + peer_count_out_in)) {
|
||||||
LOG(server_id, "No remaining inputs");
|
LOG(server_id, "No remaining inputs");
|
||||||
peer_shutdown(0);
|
peer_call(&peer_shutdown);
|
||||||
} else if (!(peer_count_out + peer_count_out_in)) {
|
} else if (!(peer_count_out + peer_count_out_in)) {
|
||||||
LOG(server_id, "No remaining outputs");
|
LOG(server_id, "No remaining outputs");
|
||||||
peer_shutdown(0);
|
peer_call(&peer_shutdown);
|
||||||
}
|
}
|
||||||
#define MAX_EVENTS 10
|
#define MAX_EVENTS 10
|
||||||
struct epoll_event events[MAX_EVENTS];
|
struct epoll_event events[MAX_EVENTS];
|
||||||
|
|||||||
@@ -18,7 +18,6 @@ extern uint32_t peer_count_in, peer_count_out, peer_count_out_in;
|
|||||||
|
|
||||||
void peer_init(void);
|
void peer_init(void);
|
||||||
void peer_cleanup(void);
|
void peer_cleanup(void);
|
||||||
void peer_shutdown(int signal);
|
|
||||||
void peer_epoll_add(struct peer *, uint32_t);
|
void peer_epoll_add(struct peer *, uint32_t);
|
||||||
void peer_epoll_del(struct peer *);
|
void peer_epoll_del(struct peer *);
|
||||||
void peer_close(struct peer *);
|
void peer_close(struct peer *);
|
||||||
|
|||||||
Reference in New Issue
Block a user