2011-03-31 09:44:30 -07:00
|
|
|
# Copyright (c) 2010, 2011 Nicira Networks.
|
2010-09-22 22:48:42 -07:00
|
|
|
#
|
2010-08-25 10:26:40 -07:00
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at:
|
2010-09-22 22:48:42 -07:00
|
|
|
#
|
2010-08-25 10:26:40 -07:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2010-09-22 22:48:42 -07:00
|
|
|
#
|
2010-08-25 10:26:40 -07:00
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2011-09-26 16:02:26 -07:00
|
|
|
import argparse
|
daemon: Avoid races on pidfile creation.
Until now, if two copies of one OVS daemon started up at the same time,
then due to races in pidfile creation it was possible for both of them to
start successfully, instead of just one. This was made worse when a
previous copy of the daemon had died abruptly, leaving a stale pidfile.
This commit implements a new pidfile creation and removal protocol that I
believe closes these races. Now, a pidfile is asserted with "link" instead
of "rename", which prevents the race on creation, and a stale pidfile may
only be deleted by a process after it has taken a lock on it.
This may solve mysterious problems seen occasionally on vswitch restart.
I'm still puzzled by these problems, however, because I don't see anything
in our tests cases that would actually cause two copies of a daemon to
start at the same time, which as far as I can see is a necessary
precondition for the problem.
2011-04-04 10:59:19 -07:00
|
|
|
import logging
|
2010-09-22 21:59:02 -07:00
|
|
|
import signal
|
2010-08-25 10:26:40 -07:00
|
|
|
import sys
|
|
|
|
import time
|
|
|
|
|
|
|
|
import ovs.daemon
|
|
|
|
import ovs.util
|
|
|
|
|
2011-09-16 15:48:33 -07:00
|
|
|
|
|
|
|
def handler(signum, _):
|
2010-09-22 21:59:02 -07:00
|
|
|
raise Exception("Signal handler called with %d" % signum)
|
|
|
|
|
2011-09-16 15:48:33 -07:00
|
|
|
|
2011-09-26 16:02:26 -07:00
|
|
|
def main():
|
2010-09-22 21:59:02 -07:00
|
|
|
|
|
|
|
signal.signal(signal.SIGHUP, handler)
|
|
|
|
|
2011-09-26 16:02:26 -07:00
|
|
|
parser = argparse.ArgumentParser(
|
|
|
|
description="Open vSwitch daemonization test program for Python.")
|
|
|
|
parser.add_argument("-b", "--bail", action="store_true",
|
|
|
|
help="Exit with an error after daemonize_start().")
|
2010-08-25 10:26:40 -07:00
|
|
|
|
2011-09-26 16:02:26 -07:00
|
|
|
ovs.daemon.add_args(parser)
|
|
|
|
args = parser.parse_args()
|
|
|
|
ovs.daemon.handle_args(args)
|
2010-08-25 10:26:40 -07:00
|
|
|
|
|
|
|
ovs.daemon.daemonize_start()
|
2011-09-26 16:02:26 -07:00
|
|
|
if args.bail:
|
2010-08-25 10:26:40 -07:00
|
|
|
sys.stderr.write("%s: exiting after daemonize_start() as requested\n"
|
|
|
|
% ovs.util.PROGRAM_NAME)
|
|
|
|
sys.exit(1)
|
|
|
|
ovs.daemon.daemonize_complete()
|
|
|
|
|
|
|
|
while True:
|
|
|
|
time.sleep(1)
|
|
|
|
|
2011-09-16 15:48:33 -07:00
|
|
|
|
2010-08-25 10:26:40 -07:00
|
|
|
if __name__ == '__main__':
|
2010-09-22 21:59:02 -07:00
|
|
|
try:
|
2011-09-26 16:02:26 -07:00
|
|
|
main()
|
2010-09-22 21:59:02 -07:00
|
|
|
except SystemExit:
|
|
|
|
# Let system.exit() calls complete normally
|
|
|
|
raise
|
|
|
|
except:
|
|
|
|
sys.exit(ovs.daemon.RESTART_EXIT_CODE)
|