eb066abc64ca20571eea0b689b890b6498996f20
[tinc] / src / process.c
1 /*
2     process.c -- process management functions
3     Copyright (C) 1999,2000 Ivo Timmermans <itimmermans@bigfoot.com>,
4                        2000 Guus Sliepen <guus@sliepen.warande.net>
5
6     This program is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     This program is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with this program; if not, write to the Free Software
18     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19
20     $Id: process.c,v 1.1.2.7 2000/11/20 23:29:47 guus Exp $
21 */
22
23 #include "config.h"
24
25 #include <errno.h>
26 #include <fcntl.h>
27 #include <signal.h>
28 #include <stdio.h>
29 #include <string.h>
30 #include <syslog.h>
31 #include <sys/ioctl.h>
32 #include <sys/types.h>
33 #include <sys/wait.h>
34 #include <unistd.h>
35
36 #include <list.h>
37 #include <pidfile.h>
38 #include <utils.h>
39 #include <xalloc.h>
40
41 #include "conf.h"
42 #include "process.h"
43
44 #include "system.h"
45
46 /* A list containing all our children */
47 list_t *child_pids = NULL;
48
49 /* If zero, don't detach from the terminal. */
50 int do_detach = 1;
51
52 static pid_t ppid;
53
54 extern char *identname;
55 extern char *pidfilename;
56 extern char **g_argv;
57
58 void init_processes(void)
59 {
60 cp
61   child_pids = list_new();
62 cp
63 }
64
65 void memory_full(int size)
66 {
67   syslog(LOG_ERR, _("Memory exhausted (couldn't allocate %d bytes), exiting."), size);
68   cp_trace();
69   exit(1);
70 }
71
72 /*
73   Close network connections, and terminate neatly
74 */
75 void cleanup_and_exit(int c)
76 {
77 cp
78   close_network_connections();
79
80   if(debug_lvl > DEBUG_NOTHING)
81     syslog(LOG_INFO, _("Total bytes written: tap %d, socket %d; bytes read: tap %d, socket %d"),
82            total_tap_out, total_socket_out, total_tap_in, total_socket_in);
83
84   closelog();
85   kill(ppid, SIGTERM);
86   exit(c);
87 }
88
89 /*
90   check for an existing tinc for this net, and write pid to pidfile
91 */
92 int write_pidfile(void)
93 {
94   int pid;
95 cp
96   if((pid = check_pid(pidfilename)))
97     {
98       if(netname)
99         fprintf(stderr, _("A tincd is already running for net `%s' with pid %d.\n"),
100                 netname, pid);
101       else
102         fprintf(stderr, _("A tincd is already running with pid %d.\n"), pid);
103       return 1;
104     }
105
106   /* if it's locked, write-protected, or whatever */
107   if(!write_pid(pidfilename))
108     return 1;
109 cp
110   return 0;
111 }
112
113 /*
114   kill older tincd for this net
115 */
116 int kill_other(void)
117 {
118   int pid;
119 cp
120   if(!(pid = read_pid(pidfilename)))
121     {
122       if(netname)
123         fprintf(stderr, _("No other tincd is running for net `%s'.\n"), netname);
124       else
125         fprintf(stderr, _("No other tincd is running.\n"));
126       return 1;
127     }
128
129   errno = 0;    /* No error, sometimes errno is only changed on error */
130   /* ESRCH is returned when no process with that pid is found */
131   if(kill(pid, SIGTERM) && errno == ESRCH)
132     fprintf(stderr, _("Removing stale lock file.\n"));
133   remove_pid(pidfilename);
134 cp
135   return 0;
136 }
137
138 /*
139   Detach from current terminal, write pidfile, kill parent
140 */
141 int detach(void)
142 {
143   int fd;
144   pid_t pid;
145 cp
146   setup_signals();
147
148   if(write_pidfile())
149     return -1;
150
151   if(do_detach)
152     daemon(0, 0);
153
154   openlog(identname, LOG_CONS | LOG_PID, LOG_DAEMON);
155
156   if(debug_lvl > DEBUG_NOTHING)
157     syslog(LOG_NOTICE, _("tincd %s (%s %s) starting, debug level %d"),
158            VERSION, __DATE__, __TIME__, debug_lvl);
159   else
160     syslog(LOG_NOTICE, _("tincd %s starting"), VERSION);
161
162   xalloc_fail_func = memory_full;
163 cp
164   return 0;
165 }
166
167 /*
168   Execute the program name, with sane environment.  All output will be
169   redirected to syslog.
170 */
171 void _execute_script(const char *name)  __attribute__ ((noreturn));
172 void _execute_script(const char *name)
173 {
174   int error = 0;
175   char *scriptname;
176   char *s;
177 cp
178   if(netname)
179     {
180       asprintf(&s, "NETNAME=%s", netname);
181       putenv(s);        /* Don't free s! see man 3 putenv */
182     }
183 #ifdef HAVE_UNSETENV
184   else
185     {
186       unsetenv("NETNAME");
187     }
188 #endif
189
190   if(chdir(confbase) < 0)
191     /* This cannot fail since we already read config files from this
192        directory. - Guus */
193     /* Yes this can fail, somebody could have removed this directory
194        when we didn't pay attention. - Ivo */
195     {
196       if(chdir("/") < 0)
197         /* Now if THIS fails, something wicked is going on. - Ivo */
198         syslog(LOG_ERR, _("Couldn't chdir to `/': %m"));
199
200       /* Continue anyway. */
201     }
202   
203   asprintf(&scriptname, "%s/%s", confbase, name);
204
205   /* Close all file descriptors */
206   closelog();
207   fcloseall();
208
209   /* Open standard input */
210   if(open("/dev/null", O_RDONLY) < 0)
211     {
212       syslog(LOG_ERR, _("Opening `/dev/null' failed: %m"));
213       error = 1;
214     }
215
216   if(!error)
217     {
218       /* Standard output directly goes to syslog */
219       openlog(name, LOG_CONS | LOG_PID, LOG_DAEMON);
220       /* Standard error as well */
221       if(dup2(1, 2) < 0)
222         {
223           syslog(LOG_ERR, _("System call `%s' failed: %m"),
224                  "dup2");
225           error = 1;
226         }
227     }
228   
229   if(error && debug_lvl > 1)
230     syslog(LOG_INFO, _("This means that any output the script generates will not be shown in syslog."));
231   
232   execl(scriptname, NULL);
233   /* No return on success */
234   
235   if(errno != ENOENT)  /* Ignore if the file does not exist */
236     syslog(LOG_WARNING, _("Error executing `%s': %m"), scriptname);
237
238   /* No need to free things */
239   exit(0);
240 }
241
242 /*
243   Fork and execute the program pointed to by name.
244 */
245 int execute_script(const char *name)
246 {
247   pid_t pid;
248 cp
249   if((pid = fork()) < 0)
250     {
251       syslog(LOG_ERR, _("System call `%s' failed: %m"),
252              "fork");
253       return -1;
254     }
255
256   if(pid)
257     {
258       list_append(child_pids, &pid);
259       return 0;
260     }
261 cp
262   /* Child here */
263   _execute_script(name);
264 }
265
266 /*
267   Check a child (the pointer data is actually an integer, the PID of
268   that child.  A non-zero return value means that the child has exited
269   and can be removed from our list.
270 */
271 int check_child(void *data)
272 {
273   pid_t pid;
274   int status;
275 cp
276   pid = (pid_t) data;
277   pid = waitpid(pid, &status, WNOHANG);
278   if(WIFEXITED(status))
279     {
280       if(WIFSIGNALED(status)) /* Child was killed by a signal */
281         {
282           syslog(LOG_ERR, _("Child with PID %d was killed by signal %d (%s)"),
283                  pid, WTERMSIG(status), strsignal(WTERMSIG(status)));
284           return -1;
285         }
286       if(WEXITSTATUS(status) != 0)
287         {
288           syslog(LOG_INFO, _("Child with PID %d exited with code %d"),
289                  WEXITSTATUS(status));
290         }
291       return -1;
292     }
293 cp
294   /* Child is still running */
295   return 0;
296 }
297
298 /*
299   Check the status of all our children.
300 */
301 void check_children(void)
302 {
303   list_forall_nodes(child_pids, check_child);
304 }
305
306
307 /*
308   Signal handlers.
309 */
310
311 RETSIGTYPE
312 sigterm_handler(int a)
313 {
314   if(debug_lvl > DEBUG_NOTHING)
315     syslog(LOG_NOTICE, _("Got TERM signal"));
316
317   cleanup_and_exit(0);
318 }
319
320 RETSIGTYPE
321 sigquit_handler(int a)
322 {
323   if(debug_lvl > DEBUG_NOTHING)
324     syslog(LOG_NOTICE, _("Got QUIT signal"));
325   cleanup_and_exit(0);
326 }
327
328 RETSIGTYPE
329 sigsegv_square(int a)
330 {
331   syslog(LOG_ERR, _("Got another SEGV signal: not restarting"));
332   exit(0);
333 }
334
335 RETSIGTYPE
336 sigsegv_handler(int a)
337 {
338   syslog(LOG_ERR, _("Got SEGV signal"));
339   cp_trace();
340
341   if(do_detach)
342     {
343       syslog(LOG_NOTICE, _("Trying to re-execute in 5 seconds..."));
344       signal(SIGSEGV, sigsegv_square);
345       close_network_connections();
346       sleep(5);
347       remove_pid(pidfilename);
348       execvp(g_argv[0], g_argv);
349     }
350   else
351     {
352       syslog(LOG_NOTICE, _("Not restarting."));
353       exit(0);
354     }
355 }
356
357 RETSIGTYPE
358 sighup_handler(int a)
359 {
360   if(debug_lvl > DEBUG_NOTHING)
361     syslog(LOG_NOTICE, _("Got HUP signal"));
362   sighup = 1;
363 }
364
365 RETSIGTYPE
366 sigint_handler(int a)
367 {
368   if(debug_lvl > DEBUG_NOTHING)
369     syslog(LOG_NOTICE, _("Got INT signal, exiting"));
370   cleanup_and_exit(0);
371 }
372
373 RETSIGTYPE
374 sigusr1_handler(int a)
375 {
376   dump_connection_list();
377 }
378
379 RETSIGTYPE
380 sigusr2_handler(int a)
381 {
382   dump_subnet_list();
383 }
384
385 RETSIGTYPE
386 sighuh(int a)
387 {
388   syslog(LOG_WARNING, _("Got unexpected signal %d (%s)"), a, strsignal(a));
389   cp_trace();
390 }
391
392 void
393 setup_signals(void)
394 {
395   int i;
396
397   for(i=0;i<32;i++)
398     signal(i,sighuh);
399
400   if(signal(SIGTERM, SIG_IGN) != SIG_ERR)
401     signal(SIGTERM, sigterm_handler);
402   if(signal(SIGQUIT, SIG_IGN) != SIG_ERR)
403     signal(SIGQUIT, sigquit_handler);
404   if(signal(SIGSEGV, SIG_IGN) != SIG_ERR)
405     signal(SIGSEGV, sigsegv_handler);
406   if(signal(SIGHUP, SIG_IGN) != SIG_ERR)
407     signal(SIGHUP, sighup_handler);
408   signal(SIGPIPE, SIG_IGN);
409   if(signal(SIGINT, SIG_IGN) != SIG_ERR)
410     signal(SIGINT, sigint_handler);
411   signal(SIGUSR1, sigusr1_handler);
412   signal(SIGUSR2, sigusr2_handler);
413   signal(SIGCHLD, SIG_IGN);
414 }
415
416 RETSIGTYPE parent_exit(int a)
417 {
418   exit(0);
419 }