Eat trailing whitespace in config files.
[tinc] / lib / pidfile.c
1 /*
2     pidfile.c - interact with pidfiles
3     Copyright (c) 1995  Martin Schulze <Martin.Schulze@Linux.DE>
4
5     This file is part of the sysklogd package, a kernel and system log daemon.
6
7     This program is free software; you can redistribute it and/or modify
8     it under the terms of the GNU General Public License as published by
9     the Free Software Foundation; either version 2 of the License, or
10     (at your option) any later version.
11
12     This program is distributed in the hope that it will be useful,
13     but WITHOUT ANY WARRANTY; without even the implied warranty of
14     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15     GNU General Public License for more details.
16
17     You should have received a copy of the GNU General Public License
18     along with this program; if not, write to the Free Software
19     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA
20 */
21
22 /* left unaltered for tinc -- Ivo Timmermans */
23 /*
24  * Sat Aug 19 13:24:33 MET DST 1995: Martin Schulze
25  *      First version (v0.2) released
26  */
27
28 #include "system.h"
29
30 #ifndef HAVE_MINGW
31 /* read_pid
32  *
33  * Reads the specified pidfile and returns the read pid.
34  * 0 is returned if either there's no pidfile, it's empty
35  * or no pid can be read.
36  */
37 pid_t read_pid (char *pidfile)
38 {
39   FILE *f;
40   long pid;
41
42   if (!(f=fopen(pidfile,"r")))
43     return 0;
44   fscanf(f,"%ld", &pid);
45   fclose(f);
46   return pid;
47 }
48
49 /* check_pid
50  *
51  * Reads the pid using read_pid and looks up the pid in the process
52  * table (using /proc) to determine if the process already exists. If
53  * so the pid is returned, otherwise 0.
54  */
55 pid_t check_pid (char *pidfile)
56 {
57   pid_t pid = read_pid(pidfile);
58
59   /* Amazing ! _I_ am already holding the pid file... */
60   if ((!pid) || (pid == getpid ()))
61     return 0;
62
63   /*
64    * The 'standard' method of doing this is to try and do a 'fake' kill
65    * of the process.  If an ESRCH error is returned the process cannot
66    * be found -- GW
67    */
68   /* But... errno is usually changed only on error.. */
69   errno = 0;
70   if (kill(pid, 0) && errno == ESRCH)
71           return 0;
72
73   return pid;
74 }
75
76 /* write_pid
77  *
78  * Writes the pid to the specified file. If that fails 0 is
79  * returned, otherwise the pid.
80  */
81 pid_t write_pid (char *pidfile)
82 {
83   FILE *f;
84   int fd;
85   pid_t pid;
86
87   if ( ((fd = open(pidfile, O_RDWR|O_CREAT, 0644)) == -1)
88        || ((f = fdopen(fd, "r+")) == NULL) ) {
89       return 0;
90   }
91   
92 #ifdef HAVE_FLOCK
93   if (flock(fd, LOCK_EX|LOCK_NB) == -1) {
94       fclose(f);
95       return 0;
96   }
97 #endif
98
99   pid = getpid();
100   if (!fprintf(f,"%ld\n", (long)pid)) {
101       close(fd);
102       return 0;
103   }
104   fflush(f);
105
106 #ifdef HAVE_FLOCK
107   if (flock(fd, LOCK_UN) == -1) {
108       close(fd);
109       return 0;
110   }
111 #endif
112   close(fd);
113
114   return pid;
115 }
116
117 /* remove_pid
118  *
119  * Remove the the specified file. The result from unlink(2)
120  * is returned
121  */
122 int remove_pid (char *pidfile)
123 {
124   return unlink (pidfile);
125 }
126 #endif