1
1

pkd_daemon.c: force close pkd_state.server_fd upon stop

There's a race window between the accept loop's call to
accept(2) and it checking `ctx.keep_going`.  Forcefully
close the server socket such that any raced `accept` ends
up failing.

Signed-off-by: Jon Simons <jon@jonsimons.org>
Reviewed-by: Andreas Schneider <asn@cryptomilk.org>
Этот коммит содержится в:
Jon Simons 2017-09-09 20:12:35 -07:00 коммит произвёл Andreas Schneider
родитель 8d7563a9c3
Коммит 9003f92e8f

Просмотреть файл

@ -498,6 +498,7 @@ void pkd_stop(struct pkd_result *out) {
int rc = 0;
ctx.keep_going = 0;
close(pkd_state.server_fd);
rc = pthread_kill(ctx.tid, SIGUSR1);
assert_int_equal(rc, 0);