]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - lib/libutil/pidfile.c
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / lib / libutil / pidfile.c
1 /*-
2  * Copyright (c) 2005 Pawel Jakub Dawidek <pjd@FreeBSD.org>
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  */
26
27 #include <sys/cdefs.h>
28 __FBSDID("$FreeBSD$");
29
30 #include <sys/param.h>
31 #include <sys/file.h>
32 #include <sys/stat.h>
33
34 #include <stdio.h>
35 #include <stdlib.h>
36 #include <unistd.h>
37 #include <fcntl.h>
38 #include <string.h>
39 #include <time.h>
40 #include <err.h>
41 #include <errno.h>
42 #include <libutil.h>
43
44 struct pidfh {
45         int     pf_fd;
46         char    pf_path[MAXPATHLEN + 1];
47         dev_t   pf_dev;
48         ino_t   pf_ino;
49 };
50
51 static int _pidfile_remove(struct pidfh *pfh, int freeit);
52
53 static int
54 pidfile_verify(const struct pidfh *pfh)
55 {
56         struct stat sb;
57
58         if (pfh == NULL || pfh->pf_fd == -1)
59                 return (EDOOFUS);
60         /*
61          * Check remembered descriptor.
62          */
63         if (fstat(pfh->pf_fd, &sb) == -1)
64                 return (errno);
65         if (sb.st_dev != pfh->pf_dev || sb.st_ino != pfh->pf_ino)
66                 return (EDOOFUS);
67         return (0);
68 }
69
70 static int
71 pidfile_read(const char *path, pid_t *pidptr)
72 {
73         char buf[16], *endptr;
74         int error, fd, i;
75
76         fd = open(path, O_RDONLY);
77         if (fd == -1)
78                 return (errno);
79
80         i = read(fd, buf, sizeof(buf) - 1);
81         error = errno;  /* Remember errno in case close() wants to change it. */
82         close(fd);
83         if (i == -1)
84                 return (error);
85         else if (i == 0)
86                 return (EAGAIN);
87         buf[i] = '\0';
88
89         *pidptr = strtol(buf, &endptr, 10);
90         if (endptr != &buf[i])
91                 return (EINVAL);
92
93         return (0);
94 }
95
96 struct pidfh *
97 pidfile_open(const char *path, mode_t mode, pid_t *pidptr)
98 {
99         struct pidfh *pfh;
100         struct stat sb;
101         int error, fd, len, count;
102         struct timespec rqtp;
103
104         pfh = malloc(sizeof(*pfh));
105         if (pfh == NULL)
106                 return (NULL);
107
108         if (path == NULL)
109                 len = snprintf(pfh->pf_path, sizeof(pfh->pf_path),
110                     "/var/run/%s.pid", getprogname());
111         else
112                 len = snprintf(pfh->pf_path, sizeof(pfh->pf_path),
113                     "%s", path);
114         if (len >= (int)sizeof(pfh->pf_path)) {
115                 free(pfh);
116                 errno = ENAMETOOLONG;
117                 return (NULL);
118         }
119
120         /*
121          * Open the PID file and obtain exclusive lock.
122          * We truncate PID file here only to remove old PID immediatelly,
123          * PID file will be truncated again in pidfile_write(), so
124          * pidfile_write() can be called multiple times.
125          */
126         fd = flopen(pfh->pf_path,
127             O_WRONLY | O_CREAT | O_TRUNC | O_CLOEXEC | O_NONBLOCK, mode);
128         if (fd == -1) {
129                 count = 0;
130                 rqtp.tv_sec = 0;
131                 rqtp.tv_nsec = 5000000;
132                 if (errno == EWOULDBLOCK && pidptr != NULL) {
133                 again:
134                         errno = pidfile_read(pfh->pf_path, pidptr);
135                         if (errno == 0)
136                                 errno = EEXIST;
137                         else if (errno == EAGAIN) {
138                                 if (++count <= 3) {
139                                         nanosleep(&rqtp, 0);
140                                         goto again;
141                                 }
142                         }
143                 }
144                 free(pfh);
145                 return (NULL);
146         }
147         /*
148          * Remember file information, so in pidfile_write() we are sure we write
149          * to the proper descriptor.
150          */
151         if (fstat(fd, &sb) == -1) {
152                 error = errno;
153                 unlink(pfh->pf_path);
154                 close(fd);
155                 free(pfh);
156                 errno = error;
157                 return (NULL);
158         }
159
160         pfh->pf_fd = fd;
161         pfh->pf_dev = sb.st_dev;
162         pfh->pf_ino = sb.st_ino;
163
164         return (pfh);
165 }
166
167 int
168 pidfile_write(struct pidfh *pfh)
169 {
170         char pidstr[16];
171         int error, fd;
172
173         /*
174          * Check remembered descriptor, so we don't overwrite some other
175          * file if pidfile was closed and descriptor reused.
176          */
177         errno = pidfile_verify(pfh);
178         if (errno != 0) {
179                 /*
180                  * Don't close descriptor, because we are not sure if it's ours.
181                  */
182                 return (-1);
183         }
184         fd = pfh->pf_fd;
185
186         /*
187          * Truncate PID file, so multiple calls of pidfile_write() are allowed.
188          */
189         if (ftruncate(fd, 0) == -1) {
190                 error = errno;
191                 _pidfile_remove(pfh, 0);
192                 errno = error;
193                 return (-1);
194         }
195
196         snprintf(pidstr, sizeof(pidstr), "%u", getpid());
197         if (pwrite(fd, pidstr, strlen(pidstr), 0) != (ssize_t)strlen(pidstr)) {
198                 error = errno;
199                 _pidfile_remove(pfh, 0);
200                 errno = error;
201                 return (-1);
202         }
203
204         return (0);
205 }
206
207 int
208 pidfile_close(struct pidfh *pfh)
209 {
210         int error;
211
212         error = pidfile_verify(pfh);
213         if (error != 0) {
214                 errno = error;
215                 return (-1);
216         }
217
218         if (close(pfh->pf_fd) == -1)
219                 error = errno;
220         free(pfh);
221         if (error != 0) {
222                 errno = error;
223                 return (-1);
224         }
225         return (0);
226 }
227
228 static int
229 _pidfile_remove(struct pidfh *pfh, int freeit)
230 {
231         int error;
232
233         error = pidfile_verify(pfh);
234         if (error != 0) {
235                 errno = error;
236                 return (-1);
237         }
238
239         if (unlink(pfh->pf_path) == -1)
240                 error = errno;
241         if (close(pfh->pf_fd) == -1) {
242                 if (error == 0)
243                         error = errno;
244         }
245         if (freeit)
246                 free(pfh);
247         else
248                 pfh->pf_fd = -1;
249         if (error != 0) {
250                 errno = error;
251                 return (-1);
252         }
253         return (0);
254 }
255
256 int
257 pidfile_remove(struct pidfh *pfh)
258 {
259
260         return (_pidfile_remove(pfh, 1));
261 }
262
263 int
264 pidfile_fileno(const struct pidfh *pfh)
265 {
266
267         if (pfh == NULL || pfh->pf_fd == -1) {
268                 errno = EDOOFUS;
269                 return (-1);
270         }
271         return (pfh->pf_fd);
272 }