9a7c197f7003334c7e89a6dd3c4e0c3d0eb38dde
[bbaumbach/samba-autobuild/.git] / source4 / lib / pidfile.c
1 /* this code is broken - there is a race condition with the unlink (tridge) */
2
3 /* 
4    Unix SMB/CIFS implementation.
5    pidfile handling
6    Copyright (C) Andrew Tridgell 1998
7    
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 2 of the License, or
11    (at your option) any later version.
12    
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.
17    
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
23 #include "includes.h"
24 #include "system/filesys.h"
25
26 #ifndef O_NONBLOCK
27 #define O_NONBLOCK
28 #endif
29
30 /* return the pid in a pidfile. return 0 if the process (or pidfile)
31    does not exist */
32 pid_t pidfile_pid(const char *name)
33 {
34         int fd;
35         char pidstr[20];
36         uint_t ret;
37         char *pidFile;
38
39         asprintf(&pidFile, "%s/%s.pid", lp_piddir(), name);
40
41         fd = open(pidFile, O_NONBLOCK | O_RDONLY, 0644);
42
43         if (fd == -1) {
44                 SAFE_FREE(pidFile);
45                 return 0;
46         }
47
48         ZERO_STRUCT(pidstr);
49
50         if (read(fd, pidstr, sizeof(pidstr)-1) <= 0) {
51                 goto noproc;
52         }
53
54         ret = atoi(pidstr);
55         
56         if (!process_exists((pid_t)ret)) {
57                 goto noproc;
58         }
59
60         if (fcntl_lock(fd,F_SETLK,0,1,F_RDLCK)) {
61                 /* we could get the lock - it can't be a Samba process */
62                 goto noproc;
63         }
64
65         close(fd);
66         SAFE_FREE(pidFile);
67         return (pid_t)ret;
68
69  noproc:
70         close(fd);
71         unlink(pidFile);
72         SAFE_FREE(pidFile);
73         return 0;
74 }
75
76 /* create a pid file in the pid directory. open it and leave it locked */
77 void pidfile_create(const char *name)
78 {
79         int     fd;
80         char    buf[20];
81         char *pidFile;
82         pid_t pid;
83
84         asprintf(&pidFile, "%s/%s.pid", lp_piddir(), name);
85
86         pid = pidfile_pid(name);
87         if (pid != 0) {
88                 DEBUG(0,("ERROR: %s is already running. File %s exists and process id %d is running.\n", 
89                          name, pidFile, (int)pid));
90                 exit(1);
91         }
92
93         fd = open(pidFile, O_NONBLOCK | O_CREAT | O_WRONLY | O_EXCL, 0644);
94         if (fd == -1) {
95                 DEBUG(0,("ERROR: can't open %s: Error was %s\n", pidFile, 
96                          strerror(errno)));
97                 exit(1);
98         }
99
100         if (fcntl_lock(fd,F_SETLK,0,1,F_WRLCK)==False) {
101                 DEBUG(0,("ERROR: %s : fcntl lock of file %s failed. Error was %s\n",  
102               name, pidFile, strerror(errno)));
103                 exit(1);
104         }
105
106         memset(buf, 0, sizeof(buf));
107         slprintf(buf, sizeof(buf) - 1, "%u\n", (uint_t) getpid());
108         if (write(fd, buf, strlen(buf)) != (ssize_t)strlen(buf)) {
109                 DEBUG(0,("ERROR: can't write to file %s: %s\n", 
110                          pidFile, strerror(errno)));
111                 exit(1);
112         }
113
114         /* Leave pid file open & locked for the duration... */
115         SAFE_FREE(pidFile);
116 }