Make return value of SetPriorityClass() behave the same as setpriority().
[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 along
18     with this program; if not, write to the Free Software Foundation, Inc.,
19     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 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   if(fscanf(f,"%20ld", &pid) != 1)
45     pid = 0;
46   fclose(f);
47   return pid;
48 }
49
50 /* check_pid
51  *
52  * Reads the pid using read_pid and looks up the pid in the process
53  * table (using /proc) to determine if the process already exists. If
54  * so the pid is returned, otherwise 0.
55  */
56 pid_t check_pid (char *pidfile)
57 {
58   pid_t pid = read_pid(pidfile);
59
60   /* Amazing ! _I_ am already holding the pid file... */
61   if ((!pid) || (pid == getpid ()))
62     return 0;
63
64   /*
65    * The 'standard' method of doing this is to try and do a 'fake' kill
66    * of the process.  If an ESRCH error is returned the process cannot
67    * be found -- GW
68    */
69   /* But... errno is usually changed only on error.. */
70   errno = 0;
71   if (kill(pid, 0) && errno == ESRCH)
72           return 0;
73
74   return pid;
75 }
76
77 /* write_pid
78  *
79  * Writes the pid to the specified file. If that fails 0 is
80  * returned, otherwise the pid.
81  */
82 pid_t write_pid (char *pidfile)
83 {
84   FILE *f;
85   int fd;
86   pid_t pid;
87
88   if ((fd = open(pidfile, O_RDWR|O_CREAT, 0644)) == -1) {
89       return 0;
90   }
91
92   if ((f = fdopen(fd, "r+")) == NULL) {
93       close(fd);
94       return 0;
95   }
96   
97 #ifdef HAVE_FLOCK
98   if (flock(fd, LOCK_EX|LOCK_NB) == -1) {
99       fclose(f);
100       return 0;
101   }
102 #endif
103
104   pid = getpid();
105   if (!fprintf(f,"%ld\n", (long)pid)) {
106       fclose(f);
107       return 0;
108   }
109   fflush(f);
110
111 #ifdef HAVE_FLOCK
112   if (flock(fd, LOCK_UN) == -1) {
113       fclose(f);
114       return 0;
115   }
116 #endif
117   fclose(f);
118
119   return pid;
120 }
121
122 /* remove_pid
123  *
124  * Remove the the specified file. The result from unlink(2)
125  * is returned
126  */
127 int remove_pid (char *pidfile)
128 {
129   return unlink (pidfile);
130 }
131 #endif