Skip to content

Commit

Permalink
daemon-windows: unlink pidfile before stopping the service.
Browse files Browse the repository at this point in the history
When a OVS daemon is configured to run as a Windows service,
when the service is stopped by calling service_stop(), the
windows services manager does not give enough time to do
everything in the atexit handler. So call the exit handler
directly from service_stop().

Also add a test case for Windows services which checks for
the termination of the service by looking at pidfile cleaned
by the exit handler.

Signed-off-by: Gurucharan Shetty <[email protected]
Acked-by: Ben Pfaff <[email protected]>
  • Loading branch information
shettyg committed Jun 24, 2014
1 parent 784acd8 commit 02a514e
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 4 deletions.
5 changes: 5 additions & 0 deletions lib/daemon-windows.c
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,11 @@ should_service_stop(void)
void
service_stop()
{
if (!service_started) {
return;
}
fatal_signal_atexit_handler();

ResetEvent(wevent);
CloseHandle(wevent);

Expand Down
7 changes: 3 additions & 4 deletions lib/fatal-signal.c
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ static volatile sig_atomic_t stored_sig_nr = SIG_ATOMIC_MAX;

static struct ovs_mutex mutex;

static void atexit_handler(void);
static void call_hooks(int sig_nr);
#ifdef _WIN32
static BOOL WINAPI ConsoleHandlerRoutine(DWORD dwCtrlType);
Expand Down Expand Up @@ -115,7 +114,7 @@ fatal_signal_init(void)
}
#endif
}
atexit(atexit_handler);
atexit(fatal_signal_atexit_handler);
}
}

Expand Down Expand Up @@ -226,8 +225,8 @@ fatal_ignore_sigpipe(void)
#endif
}

static void
atexit_handler(void)
void
fatal_signal_atexit_handler(void)
{
call_hooks(0);
}
Expand Down
1 change: 1 addition & 0 deletions lib/fatal-signal.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ void fatal_signal_fork(void);
void fatal_signal_run(void);
void fatal_signal_wait(void);
void fatal_ignore_sigpipe(void);
void fatal_signal_atexit_handler(void);

/* Convenience functions for unlinking files upon termination.
*
Expand Down
25 changes: 25 additions & 0 deletions tests/daemon.at
Original file line number Diff line number Diff line change
Expand Up @@ -159,3 +159,28 @@ AT_CHECK([grep 'ovsdb-server: could not initialize control socket' stderr],
[0], [ignore], [])
AT_CHECK([test ! -s pid])
AT_CLEANUP

AT_SETUP([daemon --service])
AT_SKIP_IF([test "$IS_WIN32" != "yes"])
OVSDB_INIT([db])
AT_CAPTURE_FILE([pid])
# To create a Windows service, we need the absolute path for the executable.
abs_path="$(cd $(dirname `which ovsdb-server`); pwd -W; cd $OLDPWD)"

AT_CHECK([sc create ovsdb-server binpath="$abs_path/ovsdb-server `pwd`/db --log-file=`pwd`/ovsdb-server.log --pidfile=`pwd`/pid --remote=punix:`pwd`/socket --unixctl=`pwd`/unixctl --service"],
[0], [[[SC]] CreateService SUCCESS
])

AT_CHECK([sc start ovsdb-server], [0], [ignore])
OVS_WAIT_UNTIL([test -s pid])
AT_CHECK([sc query ovsdb-server | grep STATE | grep RUNNING], [0], [ignore])
AT_CHECK([kill -0 `cat pid`], [0], [ignore])
AT_CHECK([ovs-appctl -t `pwd`/unixctl ovsdb-server/list-dbs], [0],
[Open_vSwitch
])
AT_CHECK([sc stop ovsdb-server], [0], [ignore])
OVS_WAIT_UNTIL([test ! -s pid])
AT_CHECK([sc query ovsdb-server | grep STATE | grep STOPPED], [0], [ignore])
AT_CHECK([sc delete ovsdb-server], [0], [[[SC]] DeleteService SUCCESS
])
AT_CLEANUP

0 comments on commit 02a514e

Please sign in to comment.