summaryrefslogtreecommitdiff
path: root/src/rc/runscript.c
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2009-04-18 19:54:04 +0000
committerRoy Marples <roy@marples.name>2009-04-18 19:54:04 +0000
commit3579663173be18becb5f4ddadf859e5984eab660 (patch)
tree92b3d9b1b63f3fb7a67578b7d50b73ad21eba183 /src/rc/runscript.c
parent802fe9709ec9e2e5887e87e1047c15d90020472f (diff)
downloadopenrc-3579663173be18becb5f4ddadf859e5984eab660.tar.gz
openrc-3579663173be18becb5f4ddadf859e5984eab660.tar.bz2
openrc-3579663173be18becb5f4ddadf859e5984eab660.tar.xz
Don't leak the lock fd.
Diffstat (limited to 'src/rc/runscript.c')
-rw-r--r--src/rc/runscript.c13
1 files changed, 10 insertions, 3 deletions
diff --git a/src/rc/runscript.c b/src/rc/runscript.c
index 20b14ae..a727ba0 100644
--- a/src/rc/runscript.c
+++ b/src/rc/runscript.c
@@ -596,7 +596,7 @@ svc_start(bool deps)
" next runlevel", applet);
}
- if (exclusive_fd == -1)
+ if (exclusive_fd == -1)
exclusive_fd = svc_lock(applet);
if (exclusive_fd == -1) {
if (errno == EACCES)
@@ -606,7 +606,9 @@ svc_start(bool deps)
else
ewarnx("WARNING: %s is already starting", applet);
}
-
+ fcntl(exclusive_fd, F_SETFD,
+ fcntl(exclusive_fd, F_GETFD, 0) | FD_CLOEXEC);
+
if (state & RC_SERVICE_STARTED) {
ewarn("WARNING: %s has already been started", applet);
return;
@@ -824,8 +826,11 @@ svc_stop(bool deps)
eerrorx("%s: superuser access required", applet);
if (state & RC_SERVICE_STOPPING)
ewarnx("WARNING: %s is already stopping", applet);
- eerrorx("ERROR: %d %s has been stopped by something else", exclusive_fd, applet);
+ eerrorx("ERROR: %s has been stopped by something else", applet);
}
+ fcntl(exclusive_fd, F_SETFD,
+ fcntl(exclusive_fd, F_GETFD, 0) | FD_CLOEXEC);
+
if (state & RC_SERVICE_STOPPED) {
ewarn("WARNING: %s is already stopped", applet);
return;
@@ -1160,6 +1165,8 @@ runscript(int argc, char **argv)
break;
case 'l':
exclusive_fd = atoi(optarg);
+ fcntl(exclusive_fd, F_SETFD,
+ fcntl(exclusive_fd, F_GETFD, 0) | FD_CLOEXEC);
break;
case 's':
if (!(rc_service_state(service) & RC_SERVICE_STARTED))