s4-scripting: samba-tool: Fix domain info usage message
[Samba/gebeck_regimport.git] / source4 / smbd / pidfile.c
blobb7d1c27cd0f0a99fcff0bf0925f42903c970e15e
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 "smbd/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;
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);
61 if (!process_exists_by_pid(ret)) {
62 goto noproc;
65 if (fcntl_lock(fd,F_SETLK,0,1,F_RDLCK)) {
66 /* we could get the lock - it can't be a Samba process */
67 goto noproc;
70 close(fd);
71 SAFE_FREE(pidFile);
72 return ret;
74 noproc:
75 close(fd);
76 unlink(pidFile);
77 SAFE_FREE(pidFile);
78 return 0;
81 /**
82 * create a pid file in the pid directory. open it and leave it locked
84 void pidfile_create(const char *piddir, const char *name)
86 int fd;
87 char buf[20];
88 char *pidFile;
89 pid_t pid;
91 if (asprintf(&pidFile, "%s/%s.pid", piddir, name) < 0) {
92 DEBUG(0,("ERROR: Out of memory\n"));
93 exit(1);
96 pid = pidfile_pid(piddir, name);
97 if (pid != 0) {
98 DEBUG(0,("ERROR: %s is already running. File %s exists and process id %d is running.\n",
99 name, pidFile, (int)pid));
100 exit(1);
103 fd = open(pidFile, O_NONBLOCK | O_CREAT | O_WRONLY | O_EXCL, 0644);
104 if (fd == -1) {
105 DEBUG(0,("ERROR: can't open %s: Error was %s\n", pidFile,
106 strerror(errno)));
107 exit(1);
110 smb_set_close_on_exec(fd);
112 if (fcntl_lock(fd,F_SETLK,0,1,F_WRLCK)==false) {
113 DEBUG(0,("ERROR: %s : fcntl lock of file %s failed. Error was %s\n",
114 name, pidFile, strerror(errno)));
115 exit(1);
118 memset(buf, 0, sizeof(buf));
119 slprintf(buf, sizeof(buf) - 1, "%u\n", (unsigned int) getpid());
120 if (write(fd, buf, strlen(buf)) != (ssize_t)strlen(buf)) {
121 DEBUG(0,("ERROR: can't write to file %s: %s\n",
122 pidFile, strerror(errno)));
123 exit(1);
126 /* Leave pid file open & locked for the duration... */
127 SAFE_FREE(pidFile);