From f3d4cb5efa72c8665ed95dad605c7235d9ff568f Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Thu, 27 Mar 2008 14:23:20 -0700 Subject: Fix for termination problems when no interfaces found - bug #5267. Jeremy. (This used to be commit 4b03f4eb2da7a523967ace3d13e79406ade07d47) --- source3/nmbd/nmbd.c | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) (limited to 'source3/nmbd') diff --git a/source3/nmbd/nmbd.c b/source3/nmbd/nmbd.c index 00d252940af..9797a7adb67 100644 --- a/source3/nmbd/nmbd.c +++ b/source3/nmbd/nmbd.c @@ -182,11 +182,12 @@ static void reload_interfaces(time_t t) return; } + try_again: + /* the list of probed interfaces has changed, we may need to add/remove some subnets */ load_interfaces(); - try_again: /* find any interfaces that need adding */ for (n=iface_count() - 1; n >= 0; n--) { @@ -278,7 +279,6 @@ static void reload_interfaces(time_t t) /* We need to wait if there are no subnets... */ if (FIRST_SUBNET == NULL) { - void (*saved_handler)(int); DEBUG(0,("reload_interfaces: " "No subnets to listen to. Waiting..\n")); @@ -288,19 +288,28 @@ static void reload_interfaces(time_t t) * cause us to exit. */ - saved_handler = CatchSignal( SIGTERM, SIGNAL_CAST SIG_DFL ); + BlockSignals(false, SIGTERM); /* We only count IPv4 interfaces here. */ - while (iface_count_v4() == 0) { + while (iface_count_v4() == 0 && !got_sig_term) { sleep(5); load_interfaces(); } /* - * We got an interface, restore our normal term handler. + * Handle termination inband. + */ + + if (got_sig_term) { + got_sig_term = 0; + terminate(); + } + + /* + * We got an interface, go back to blocking term. */ - CatchSignal( SIGTERM, SIGNAL_CAST saved_handler ); + BlockSignals(true, SIGTERM); goto try_again; } } -- cgit v1.2.1