From 7d88772a2e6e5dc44287053b0e55dfd2b3e0b653 Mon Sep 17 00:00:00 2001 From: Iustin Pop <iustin@google.com> Date: Fri, 9 Jan 2009 12:52:17 +0000 Subject: [PATCH] Rework the daemonization sequence The current fork+close fds sequence has deficiencies which are hard to work around: - logging can start logging before we fork (e.g. if we need to emit messages related to master checking), and thus use FDs which we can't track nicely - the queue locks the queue file, and again this fd needs to be kept open which is hard from the main loop (and this error is currently hidden by the fact that we don't log it) Given the above, it's much simpler, in case we will fork later, to close file descriptors right at the beginning of the program, and in Daemonize only close/reopen the stdin/out/err fds. In addition, we also close() the handlers we remove in SetupLogging so that the cleanup is more thorough. Reviewed-by: imsnah --- daemons/ganeti-masterd | 6 ++- daemons/ganeti-noded | 4 ++ daemons/ganeti-rapi | 3 ++ lib/utils.py | 83 +++++++++++++++++++++++++++++------------- 4 files changed, 69 insertions(+), 27 deletions(-) diff --git a/daemons/ganeti-masterd b/daemons/ganeti-masterd index ff7ec0c31..ac0af6df3 100755 --- a/daemons/ganeti-masterd +++ b/daemons/ganeti-masterd @@ -429,6 +429,9 @@ def main(): utils.debug = options.debug utils.no_fork = True + if options.fork: + utils.CloseFDs() + rpc.Init() try: ssconf.CheckMaster(options.debug) @@ -460,8 +463,7 @@ def main(): # become a daemon if options.fork: - utils.Daemonize(logfile=constants.LOG_MASTERDAEMON, - noclose_fds=[master.fileno()]) + utils.Daemonize(logfile=constants.LOG_MASTERDAEMON) utils.WritePidFile(constants.MASTERD_PID) try: diff --git a/daemons/ganeti-noded b/daemons/ganeti-noded index c88de964c..a00bf546d 100755 --- a/daemons/ganeti-noded +++ b/daemons/ganeti-noded @@ -704,6 +704,10 @@ def main(): options, args = ParseOptions() utils.debug = options.debug + + if options.fork: + utils.CloseFDs() + for fname in (constants.SSL_CERT_FILE,): if not os.path.isfile(fname): print "config %s not there, will not run." % fname diff --git a/daemons/ganeti-rapi b/daemons/ganeti-rapi index 963293973..768a6b39e 100755 --- a/daemons/ganeti-rapi +++ b/daemons/ganeti-rapi @@ -191,6 +191,9 @@ def main(): """ options, args = ParseOptions() + if options.fork: + utils.CloseFDs() + ssconf.CheckMaster(options.debug) if options.fork: diff --git a/lib/utils.py b/lib/utils.py index 76adfc577..6a6679c3f 100644 --- a/lib/utils.py +++ b/lib/utils.py @@ -1348,23 +1348,37 @@ def TestDelay(duration): return True -def Daemonize(logfile, noclose_fds=None): - """Daemonize the current process. +def _CloseFDNoErr(fd, retries=5): + """Close a file descriptor ignoring errors. - This detaches the current process from the controlling terminal and - runs it in the background as a daemon. + @type fd: int + @param fd: the file descriptor + @type retries: int + @param retries: how many retries to make, in case we get any + other error than EBADF + + """ + try: + os.close(fd) + except OSError, err: + if err.errno != errno.EBADF: + if retries > 0: + _CloseFDNoErr(fd, retries - 1) + # else either it's closed already or we're out of retries, so we + # ignore this and go on + + +def CloseFDs(noclose_fds=None): + """Close file descriptors. + + This closes all file descriptors above 2 (i.e. except + stdin/out/err). - @type logfile: str - @param logfile: the logfile to which we should redirect stdout/stderr @type noclose_fds: list or None @param noclose_fds: if given, it denotes a list of file descriptor that should not be closed - @rtype: int - @returns: the value zero """ - UMASK = 077 - WORKDIR = "/" # Default maximum for the number of available file descriptors. if 'SC_OPEN_MAX' in os.sysconf_names: try: @@ -1375,6 +1389,31 @@ def Daemonize(logfile, noclose_fds=None): MAXFD = 1024 else: MAXFD = 1024 + maxfd = resource.getrlimit(resource.RLIMIT_NOFILE)[1] + if (maxfd == resource.RLIM_INFINITY): + maxfd = MAXFD + + # Iterate through and close all file descriptors (except the standard ones) + for fd in range(3, maxfd): + if noclose_fds and fd in noclose_fds: + continue + _CloseFDNoErr(fd) + + +def Daemonize(logfile): + """Daemonize the current process. + + This detaches the current process from the controlling terminal and + runs it in the background as a daemon. + + @type logfile: str + @param logfile: the logfile to which we should redirect stdout/stderr + @rtype: int + @returns: the value zero + + """ + UMASK = 077 + WORKDIR = "/" # this might fail pid = os.fork() @@ -1390,22 +1429,15 @@ def Daemonize(logfile, noclose_fds=None): os._exit(0) # Exit parent (the first child) of the second child. else: os._exit(0) # Exit parent of the first child. - maxfd = resource.getrlimit(resource.RLIMIT_NOFILE)[1] - if (maxfd == resource.RLIM_INFINITY): - maxfd = MAXFD - # Iterate through and close all file descriptors. - for fd in range(0, maxfd): - if noclose_fds and fd in noclose_fds: - continue - try: - os.close(fd) - except OSError: # ERROR, fd wasn't open to begin with (ignored) - pass - os.open(logfile, os.O_RDWR|os.O_CREAT|os.O_APPEND, 0600) - # Duplicate standard input to standard output and standard error. - os.dup2(0, 1) # standard output (1) - os.dup2(0, 2) # standard error (2) + for fd in range(3): + _CloseFDNoErr(fd) + i = os.open("/dev/null", os.O_RDONLY) # stdin + assert i == 0, "Can't close/reopen stdin" + i = os.open(logfile, os.O_WRONLY|os.O_CREAT|os.O_APPEND, 0600) # stdout + assert i == 1, "Can't close/reopen stdout" + # Duplicate standard output to standard error. + os.dup2(1, 2) return 0 @@ -1649,6 +1681,7 @@ def SetupLogging(logfile, debug=False, stderr_logging=False, program=""): # Remove all previously setup handlers for handler in root_logger.handlers: + handler.close() root_logger.removeHandler(handler) if stderr_logging: -- GitLab