This commit was manufactured by cvs2svn to create branch 'SAMBA_3_0'.(This used to...
[samba.git] / source3 / 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
25 #ifndef O_NONBLOCK
26 #define O_NONBLOCK
27 #endif
28
29 /* return the pid in a pidfile. return 0 if the process (or pidfile)
30    does not exist */
31 pid_t pidfile_pid(char *name)
32 {
33         int fd;
34         char pidstr[20];
35         unsigned ret;
36         pstring pidFile;
37
38         slprintf(pidFile, sizeof(pidFile)-1, "%s/%s.pid", lp_lockdir(), name);
39
40         fd = sys_open(pidFile, O_NONBLOCK | O_RDONLY, 0644);
41         if (fd == -1) {
42                 return 0;
43         }
44
45         ZERO_ARRAY(pidstr);
46
47         if (read(fd, pidstr, sizeof(pidstr)-1) <= 0) {
48                 goto noproc;
49         }
50
51         ret = atoi(pidstr);
52         
53         if (!process_exists((pid_t)ret)) {
54                 goto noproc;
55         }
56
57         if (fcntl_lock(fd,SMB_F_SETLK,0,1,F_RDLCK)) {
58                 /* we could get the lock - it can't be a Samba process */
59                 goto noproc;
60         }
61
62         close(fd);
63         return (pid_t)ret;
64
65  noproc:
66         close(fd);
67         unlink(pidFile);
68         return 0;
69 }
70
71 /* Create a pid file in the lock directory. open it and leave it locked.
72    This must be done after a call to lp_load() as it uses the lp_lockdir()
73    function to generate the path to the pidfile. */
74
75 void pidfile_create(char *name)
76 {
77         int     fd;
78         char    buf[20];
79         pstring pidFile;
80         pid_t pid;
81
82         slprintf(pidFile, sizeof(pidFile)-1, "%s/%s.pid", lp_lockdir(), name);
83
84         pid = pidfile_pid(name);
85         if (pid != 0) {
86                 DEBUG(0,("ERROR: %s is already running. File %s exists and process id %d is running.\n", 
87                          name, pidFile, (int)pid));
88                 exit(1);
89         }
90
91         fd = sys_open(pidFile, O_NONBLOCK | O_CREAT | O_WRONLY | O_EXCL, 0644);
92         if (fd == -1) {
93                 DEBUG(0,("ERROR: can't open %s: Error was %s\n", pidFile, 
94                          strerror(errno)));
95                 exit(1);
96         }
97
98         if (fcntl_lock(fd,SMB_F_SETLK,0,1,F_WRLCK)==False) {
99                 DEBUG(0,("ERROR: %s : fcntl lock of file %s failed. Error was %s\n",  
100               name, pidFile, strerror(errno)));
101                 exit(1);
102         }
103
104         memset(buf, 0, sizeof(buf));
105         slprintf(buf, sizeof(buf) - 1, "%u\n", (unsigned int) sys_getpid());
106         if (write(fd, buf, sizeof(buf)) != sizeof(buf)) {
107                 DEBUG(0,("ERROR: can't write to file %s: %s\n", 
108                          pidFile, strerror(errno)));
109                 exit(1);
110         }
111         /* Leave pid file open & locked for the duration... */
112 }