Fix bug #6476 - more then 3000 smbd-zombies in memory
authorJeremy Allison <jra@samba.org>
Thu, 18 Jun 2009 09:53:52 +0000 (11:53 +0200)
committerKarolin Seeger <kseeger@samba.org>
Mon, 10 Aug 2009 16:02:29 +0000 (18:02 +0200)
We weren't reaping children in the [x]inetd case.

Jeremy.
(cherry picked from commit 7e51314f2e18241876b049642fcb133df7e44c70)
(cherry picked from commit a0626827c820cad082001ab76f1f7e37f1a7307b)

source/smbd/server.c

index e9141181a5082390171041ca1d16dac446903efd..35c98aa11dfa2a28ae20996988df3f29b3bb9074 100644 (file)
@@ -348,10 +348,6 @@ static bool open_sockets_smbd(bool is_daemon, bool interactive, const char *smb_
        struct dns_reg_state * dns_reg = NULL;
        unsigned dns_port = 0;
 
-       if (!is_daemon) {
-               return open_sockets_inetd();
-       }
-
 #ifdef HAVE_ATEXIT
        {
                static int atexit_set;
@@ -362,6 +358,17 @@ static bool open_sockets_smbd(bool is_daemon, bool interactive, const char *smb_
        }
 #endif
 
+       if (!is_daemon) {
+               /*
+                * Stop zombies the old way.
+                * We aren't forking any new
+                * 'normal' connections when
+                * run from [x]inetd.
+                */
+               CatchChild();
+               return open_sockets_inetd();
+       }
+
        /* Stop zombies */
        CatchSignal(SIGCLD, sig_cld);
 
@@ -1199,6 +1206,10 @@ extern void build_options(bool screen);
        BlockSignals(False, SIGUSR1);
        BlockSignals(False, SIGTERM);
 
+        /* Ensure we leave no zombies until we
+        * correctly set up child handling below. */
+        CatchChild();
+
        /* we want total control over the permissions on created files,
           so set our umask to 0 */
        umask(0);