Fix compiler warnings.
[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 <stdio.h>
29 #include <unistd.h>
30 #include <sys/stat.h>
31 #include <sys/file.h>
32 #include <string.h>
33 #include <errno.h>
34 #include <signal.h>
35 #include <sys/types.h>
36 #include <signal.h>
37 #include <fcntl.h>
38
39 /* read_pid
40  *
41  * Reads the specified pidfile and returns the read pid.
42  * 0 is returned if either there's no pidfile, it's empty
43  * or no pid can be read.
44  */
45 int read_pid (char *pidfile)
46 {
47   FILE *f;
48   int pid;
49
50   if (!(f=fopen(pidfile,"r")))
51     return 0;
52   fscanf(f,"%d", &pid);
53   fclose(f);
54   return pid;
55 }
56
57 /* check_pid
58  *
59  * Reads the pid using read_pid and looks up the pid in the process
60  * table (using /proc) to determine if the process already exists. If
61  * so 1 is returned, otherwise 0.
62  */
63 int check_pid (char *pidfile)
64 {
65   int pid = read_pid(pidfile);
66
67   /* Amazing ! _I_ am already holding the pid file... */
68   if ((!pid) || (pid == getpid ()))
69     return 0;
70
71   /*
72    * The 'standard' method of doing this is to try and do a 'fake' kill
73    * of the process.  If an ESRCH error is returned the process cannot
74    * be found -- GW
75    */
76   /* But... errno is usually changed only on error.. */
77   errno = 0;
78   if (kill(pid, 0) && errno == ESRCH)
79           return(0);
80
81   return pid;
82 }
83
84 /* write_pid
85  *
86  * Writes the pid to the specified file. If that fails 0 is
87  * returned, otherwise the pid.
88  */
89 int write_pid (char *pidfile)
90 {
91   FILE *f;
92   int fd;
93   int pid;
94
95   if ( ((fd = open(pidfile, O_RDWR|O_CREAT, 0644)) == -1)
96        || ((f = fdopen(fd, "r+")) == NULL) ) {
97       fprintf(stderr, "Can't open or create %s.\n", pidfile);
98       return 0;
99   }
100   
101 #ifdef HAVE_FLOCK
102   if (flock(fd, LOCK_EX|LOCK_NB) == -1) {
103       fscanf(f, "%d", &pid);
104       fclose(f);
105       printf("Can't lock, lock is held by pid %d.\n", pid);
106       return 0;
107   }
108 #endif
109
110   pid = getpid();
111   if (!fprintf(f,"%d\n", pid)) {
112       printf("Can't write pid , %s.\n", strerror(errno));
113       close(fd);
114       return 0;
115   }
116   fflush(f);
117
118 #ifdef HAVE_FLOCK
119   if (flock(fd, LOCK_UN) == -1) {
120       printf("Can't unlock pidfile %s, %s.\n", pidfile, strerror(errno));
121       close(fd);
122       return 0;
123   }
124 #endif
125   close(fd);
126
127   return pid;
128 }
129
130 /* remove_pid
131  *
132  * Remove the the specified file. The result from unlink(2)
133  * is returned
134  */
135 int remove_pid (char *pidfile)
136 {
137   return unlink (pidfile);
138 }
139