s3:lib/events: s/EVENT_FD/TEVENT_FD
[Samba/gebeck_regimport.git] / lib / util / pidfile.c
blob1b382d12175d3e940c0615fc10626020f66c0e7d
1 /* this code is broken - there is a race condition with the unlink (tridge) */
3 /*
4 Unix SMB/CIFS implementation.
5 pidfile handling
6 Copyright (C) Andrew Tridgell 1998
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
22 #include "includes.h"
23 #include "system/filesys.h"
24 #include "lib/util/pidfile.h"
26 /**
27 * @file
28 * @brief Pid file handling
31 /**
32 * return the pid in a pidfile. return 0 if the process (or pidfile)
33 * does not exist
35 pid_t pidfile_pid(const char *piddir, const char *name)
37 int fd;
38 char pidstr[20];
39 pid_t ret = -1;
40 char *pidFile;
42 if (asprintf(&pidFile, "%s/%s.pid", piddir, name) < 0) {
43 return 0;
46 fd = open(pidFile, O_NONBLOCK | O_RDONLY, 0644);
48 if (fd == -1) {
49 SAFE_FREE(pidFile);
50 return 0;
53 ZERO_STRUCT(pidstr);
55 if (read(fd, pidstr, sizeof(pidstr)-1) <= 0) {
56 goto noproc;
59 ret = (pid_t)atoi(pidstr);
60 if (ret <= 0) {
61 DEBUG(1, ("Could not parse contents of pidfile %s\n",
62 pidFile));
63 goto noproc;
66 if (!process_exists_by_pid(ret)) {
67 DEBUG(10, ("Process with PID=%d does not exist.\n", (int)ret));
68 goto noproc;
71 if (fcntl_lock(fd,F_SETLK,0,1,F_RDLCK)) {
72 /* we could get the lock - it can't be a Samba process */
73 DEBUG(10, ("Process with PID=%d is not a Samba process.\n",
74 (int)ret));
75 goto noproc;
78 close(fd);
79 SAFE_FREE(pidFile);
80 DEBUG(10, ("Process with PID=%d is running.\n", (int)ret));
81 return ret;
83 noproc:
84 close(fd);
85 DEBUG(10, ("Deleting %s, since %d is not a Samba process.\n", pidFile,
86 (int)ret));
87 unlink(pidFile);
88 SAFE_FREE(pidFile);
89 return 0;
92 /**
93 * create a pid file in the pid directory. open it and leave it locked
95 void pidfile_create(const char *piddir, const char *name)
97 int fd;
98 char buf[20];
99 char *pidFile;
100 pid_t pid;
102 if (asprintf(&pidFile, "%s/%s.pid", piddir, name) < 0) {
103 DEBUG(0,("ERROR: Out of memory\n"));
104 exit(1);
107 pid = pidfile_pid(piddir, name);
108 if (pid != 0) {
109 DEBUG(0,("ERROR: %s is already running. File %s exists and process id %d is running.\n",
110 name, pidFile, (int)pid));
111 exit(1);
114 fd = open(pidFile, O_NONBLOCK | O_CREAT | O_WRONLY | O_EXCL, 0644);
115 if (fd == -1) {
116 DEBUG(0,("ERROR: can't open %s: Error was %s\n", pidFile,
117 strerror(errno)));
118 exit(1);
121 smb_set_close_on_exec(fd);
123 if (fcntl_lock(fd,F_SETLK,0,1,F_WRLCK)==false) {
124 DEBUG(0,("ERROR: %s : fcntl lock of file %s failed. Error was %s\n",
125 name, pidFile, strerror(errno)));
126 exit(1);
129 memset(buf, 0, sizeof(buf));
130 slprintf(buf, sizeof(buf) - 1, "%u\n", (unsigned int) getpid());
131 if (write(fd, buf, strlen(buf)) != (ssize_t)strlen(buf)) {
132 DEBUG(0,("ERROR: can't write to file %s: %s\n",
133 pidFile, strerror(errno)));
134 exit(1);
137 /* Leave pid file open & locked for the duration... */
138 SAFE_FREE(pidFile);
141 void pidfile_unlink(const char *piddir, const char *name)
143 int ret;
144 char *pidFile = NULL;
146 if (asprintf(&pidFile, "%s/%s.pid", piddir, name) < 0) {
147 DEBUG(0,("ERROR: Out of memory\n"));
148 exit(1);
150 ret = unlink(pidFile);
151 if (ret == -1) {
152 DEBUG(0,("Failed to delete pidfile %s. Error was %s\n",
153 pidFile, strerror(errno)));