From: Martin Schwenke Date: Thu, 11 Oct 2018 00:26:06 +0000 (+1100) Subject: ctdb-daemon: Exit if eventd goes away X-Git-Tag: tdb-1.3.17~1268 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c9e1603a5d0c1a216439d4a2b0e7cdc05181e898;p=thirdparty%2Fsamba.git ctdb-daemon: Exit if eventd goes away ctdbd enters a broken state if eventd goes away. A clean shutdown is not possible because that involves running events. Restarting eventd is possible but this might mask a serious problem and it is possible that eventd might keep on disappearing. Just exit. BUG: https://bugzilla.samba.org/show_bug.cgi?id=13659 Signed-off-by: Martin Schwenke Reviewed-by: Amitay Isaacs --- diff --git a/ctdb/server/eventscript.c b/ctdb/server/eventscript.c index 31f267c5c8e..11a87063122 100644 --- a/ctdb/server/eventscript.c +++ b/ctdb/server/eventscript.c @@ -324,13 +324,8 @@ static void eventd_dead_handler(struct tevent_context *ev, struct tevent_fd *fde, uint16_t flags, void *private_data) { - struct eventd_context *ectx = talloc_get_type_abort( - private_data, struct eventd_context); - - DEBUG(DEBUG_ERR, ("Eventd went away\n")); - - TALLOC_FREE(ectx->eventd_fde); - ectx->eventd_pid = -1; + D_ERR("Eventd went away - exiting\n"); + exit(1); } void ctdb_stop_eventd(struct ctdb_context *ctdb)