Fix execute_script().
[tinc] / src / process.c
1 /*
2     process.c -- process management functions
3     Copyright (C) 1999-2002 Ivo Timmermans <itimmermans@bigfoot.com>,
4                   2000-2002 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.39 2002/03/26 12:00:38 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/stat.h>
34 #include <sys/wait.h>
35 #include <stdlib.h>
36 #include <unistd.h>
37 #include <termios.h>
38
39 #include <pidfile.h>
40 #include <utils.h>
41 #include <xalloc.h>
42
43 #include "conf.h"
44 #include "process.h"
45 #include "subnet.h"
46 #include "device.h"
47 #include "connection.h"
48 #include "device.h"
49
50 #include "system.h"
51
52 /* If zero, don't detach from the terminal. */
53 int do_detach = 1;
54
55 extern char *identname;
56 extern char *pidfilename;
57 extern char **g_argv;
58
59 sigset_t emptysigset;
60
61 static int saved_debug_lvl = 0;
62
63 extern int sighup;
64 extern int sigalrm;
65 extern int do_purge;
66
67 void memory_full(int size)
68 {
69   syslog(LOG_ERR, _("Memory exhausted (couldn't allocate %d bytes), exitting."), size);
70   cp_trace();
71   exit(1);
72 }
73
74 /* Some functions the less gifted operating systems might lack... */
75
76 #ifndef HAVE_FCLOSEALL
77 int fcloseall(void)
78 {
79   fflush(stdin);
80   fflush(stdout);
81   fflush(stderr);
82   fclose(stdin);
83   fclose(stdout);
84   fclose(stderr);
85   return 0;
86 }
87 #endif
88
89 /*
90   Close network connections, and terminate neatly
91 */
92 void cleanup_and_exit(int c)
93 {
94 cp
95   close_network_connections();
96
97   if(debug_lvl > DEBUG_NOTHING)
98     dump_device_stats();
99
100   syslog(LOG_NOTICE, _("Terminating"));
101
102   closelog();
103   exit(c);
104 }
105
106 /*
107   check for an existing tinc for this net, and write pid to pidfile
108 */
109 int write_pidfile(void)
110 {
111   int pid;
112 cp
113   if((pid = check_pid(pidfilename)))
114     {
115       if(netname)
116         fprintf(stderr, _("A tincd is already running for net `%s' with pid %d.\n"),
117                 netname, pid);
118       else
119         fprintf(stderr, _("A tincd is already running with pid %d.\n"), pid);
120       return 1;
121     }
122
123   /* if it's locked, write-protected, or whatever */
124   if(!write_pid(pidfilename))
125     return 1;
126 cp
127   return 0;
128 }
129
130 /*
131   kill older tincd for this net
132 */
133 int kill_other(int signal)
134 {
135   int pid;
136 cp
137   if(!(pid = read_pid(pidfilename)))
138     {
139       if(netname)
140         fprintf(stderr, _("No other tincd is running for net `%s'.\n"), netname);
141       else
142         fprintf(stderr, _("No other tincd is running.\n"));
143       return 1;
144     }
145
146   errno = 0;    /* No error, sometimes errno is only changed on error */
147   /* ESRCH is returned when no process with that pid is found */
148   if(kill(pid, signal) && errno == ESRCH)
149     {
150       if(netname)
151         fprintf(stderr, _("The tincd for net `%s' is no longer running. "), netname);
152       else
153         fprintf(stderr, _("The tincd is no longer running. "));
154
155       fprintf(stderr, _("Removing stale lock file.\n"));
156       remove_pid(pidfilename);
157     }
158 cp
159   return 0;
160 }
161
162 /*
163   Detach from current terminal, write pidfile, kill parent
164 */
165 int detach(void)
166 {
167 cp
168   setup_signals();
169
170   /* First check if we can open a fresh new pidfile */
171   
172   if(write_pidfile())
173     return -1;
174
175   /* If we succeeded in doing that, detach */
176
177   closelog();
178
179   if(do_detach)
180     {
181       if(daemon(0, 0) < 0)
182         {
183           fprintf(stderr, _("Couldn't detach from terminal: %s"), strerror(errno));
184           return -1;
185         }
186
187       /* Now UPDATE the pid in the pidfile, because we changed it... */
188       
189       if(!write_pid(pidfilename))
190         return -1;
191     }
192   
193   openlog(identname, LOG_CONS | LOG_PID, LOG_DAEMON);
194
195   if(debug_lvl > DEBUG_NOTHING)
196     syslog(LOG_NOTICE, _("tincd %s (%s %s) starting, debug level %d"),
197            VERSION, __DATE__, __TIME__, debug_lvl);
198   else
199     syslog(LOG_NOTICE, _("tincd %s starting"), VERSION);
200
201   xalloc_fail_func = memory_full;
202 cp
203   return 0;
204 }
205
206 /*
207   Execute the program name, with sane environment.  All output will be
208   redirected to syslog.
209 */
210 void _execute_script(const char *scriptname)  __attribute__ ((noreturn));
211 void _execute_script(const char *scriptname)
212 {
213   char *s;
214 cp
215 #ifdef HAVE_UNSETENV
216   unsetenv("NETNAME");
217   unsetenv("DEVICE");
218   unsetenv("INTERFACE");
219 #endif
220
221   if(netname)
222     {
223       asprintf(&s, "NETNAME=%s", netname);
224       putenv(s);        /* Don't free s! see man 3 putenv */
225     }
226
227   if(device)
228     {
229       asprintf(&s, "DEVICE=%s", device);
230       putenv(s);        /* Don't free s! see man 3 putenv */
231     }
232
233   if(interface)
234     {
235       asprintf(&s, "INTERFACE=%s", interface);
236       putenv(s);        /* Don't free s! see man 3 putenv */
237     }
238
239   chdir("/");
240   
241   /* Close all file descriptors */
242   closelog();           /* <- this means we cannot use syslog() here anymore! */
243   fcloseall();
244
245   execl(scriptname, NULL);
246   /* No return on success */
247   
248   if(errno != ENOENT)   /* Ignore if the file does not exist */
249     exit(1);            /* Some error while trying execl(). */
250   else
251     exit(0);
252 }
253
254 /*
255   Fork and execute the program pointed to by name.
256 */
257 int execute_script(const char *name)
258 {
259   pid_t pid;
260   int status;
261   struct stat s;
262   char *scriptname;
263 cp
264   asprintf(&scriptname, "%s/%s", confbase, name);
265
266   /* First check if there is a script */
267
268   if(stat(scriptname, &s))
269     return 0;
270
271   if((pid = fork()) < 0)
272     {
273       syslog(LOG_ERR, _("System call `%s' failed: %s"), "fork", strerror(errno));
274       return -1;
275     }
276
277   if(pid)
278     {
279       if(debug_lvl >= DEBUG_STATUS)
280         syslog(LOG_INFO, _("Executing script %s"), name);
281
282       free(scriptname);
283
284       if(waitpid(pid, &status, 0) == pid)
285         {
286           if(WIFEXITED(status))         /* Child exited by itself */
287             {
288               if(WEXITSTATUS(status))
289                 {
290                   syslog(LOG_ERR, _("Process %d (%s) exited with non-zero status %d"), pid, name, WEXITSTATUS(status));
291                   return -1;
292                 }
293               else
294                 return 0;
295             }
296           else if(WIFSIGNALED(status))  /* Child was killed by a signal */
297             {
298               syslog(LOG_ERR, _("Process %d (%s) was killed by signal %d (%s)"),
299                      pid, name, WTERMSIG(status), strsignal(WTERMSIG(status)));
300               return -1;
301             }
302           else                          /* Something strange happened */
303             {
304               syslog(LOG_ERR, _("Process %d (%s) terminated abnormally"), pid, name);
305               return -1;
306             }
307         }
308       else
309         {
310           syslog(LOG_ERR, _("System call `%s' failed: %s"), "waitpid", strerror(errno));
311           return -1;
312         }
313     }
314 cp
315   /* Child here */
316
317   _execute_script(scriptname);
318 }
319
320
321 /*
322   Signal handlers.
323 */
324
325 RETSIGTYPE
326 sigterm_handler(int a)
327 {
328   if(debug_lvl > DEBUG_NOTHING)
329     syslog(LOG_NOTICE, _("Got TERM signal"));
330
331   cleanup_and_exit(0);
332 }
333
334 RETSIGTYPE
335 sigquit_handler(int a)
336 {
337   if(debug_lvl > DEBUG_NOTHING)
338     syslog(LOG_NOTICE, _("Got QUIT signal"));
339   cleanup_and_exit(0);
340 }
341
342 RETSIGTYPE
343 fatal_signal_square(int a)
344 {
345   syslog(LOG_ERR, _("Got another fatal signal %d (%s): not restarting."), a, strsignal(a));
346   cp_trace();
347   exit(1);
348 }
349
350 RETSIGTYPE
351 fatal_signal_handler(int a)
352 {
353   struct sigaction act;
354   syslog(LOG_ERR, _("Got fatal signal %d (%s)"), a, strsignal(a));
355   cp_trace();
356
357   if(do_detach)
358     {
359       syslog(LOG_NOTICE, _("Trying to re-execute in 5 seconds..."));
360
361       act.sa_handler = fatal_signal_square;
362       act.sa_mask = emptysigset;
363       act.sa_flags = 0;
364       sigaction(SIGSEGV, &act, NULL);
365
366       close_network_connections();
367       sleep(5);
368       remove_pid(pidfilename);
369       execvp(g_argv[0], g_argv);
370     }
371   else
372     {
373       syslog(LOG_NOTICE, _("Not restarting."));
374       exit(1);
375     }
376 }
377
378 RETSIGTYPE
379 sighup_handler(int a)
380 {
381   if(debug_lvl > DEBUG_NOTHING)
382     syslog(LOG_NOTICE, _("Got HUP signal"));
383   sighup = 1;
384 }
385
386 RETSIGTYPE
387 sigint_handler(int a)
388 {
389   if(saved_debug_lvl)
390     {
391       syslog(LOG_NOTICE, _("Reverting to old debug level (%d)"),
392              saved_debug_lvl);
393       debug_lvl = saved_debug_lvl;
394       saved_debug_lvl = 0;
395     }
396   else
397     {
398       syslog(LOG_NOTICE, _("Temporarily setting debug level to 5.  Kill me with SIGINT again to go back to level %d."),
399              debug_lvl);
400       saved_debug_lvl = debug_lvl;
401       debug_lvl = 5;
402     }
403 }
404
405 RETSIGTYPE
406 sigalrm_handler(int a)
407 {
408   if(debug_lvl > DEBUG_NOTHING)
409     syslog(LOG_NOTICE, _("Got ALRM signal"));
410   sigalrm = 1;
411 }
412
413 RETSIGTYPE
414 sigusr1_handler(int a)
415 {
416   dump_connections();
417 }
418
419 RETSIGTYPE
420 sigusr2_handler(int a)
421 {
422   dump_device_stats();
423   dump_nodes();
424   dump_edges();
425   dump_subnets();
426 }
427
428 RETSIGTYPE
429 sigwinch_handler(int a)
430 {
431   extern int do_purge;
432   do_purge = 1;
433 }
434
435 RETSIGTYPE
436 unexpected_signal_handler(int a)
437 {
438   syslog(LOG_WARNING, _("Got unexpected signal %d (%s)"), a, strsignal(a));
439   cp_trace();
440 }
441
442 RETSIGTYPE
443 ignore_signal_handler(int a)
444 {
445   if(debug_lvl >= DEBUG_SCARY_THINGS)
446   {
447     syslog(LOG_DEBUG, _("Ignored signal %d (%s)"), a, strsignal(a));
448     cp_trace();
449   }
450 }
451
452 struct {
453   int signal;
454   void (*handler)(int);
455 } sighandlers[] = {
456   { SIGHUP, sighup_handler },
457   { SIGTERM, sigterm_handler },
458   { SIGQUIT, sigquit_handler },
459   { SIGSEGV, fatal_signal_handler },
460   { SIGBUS, fatal_signal_handler },
461   { SIGILL, fatal_signal_handler },
462   { SIGPIPE, ignore_signal_handler },
463   { SIGINT, sigint_handler },
464   { SIGUSR1, sigusr1_handler },
465   { SIGUSR2, sigusr2_handler },
466   { SIGCHLD, ignore_signal_handler },
467   { SIGALRM, sigalrm_handler },
468   { SIGWINCH, sigwinch_handler },
469   { 0, NULL }
470 };
471
472 void
473 setup_signals(void)
474 {
475   int i;
476   struct sigaction act;
477
478   sigemptyset(&emptysigset);
479   act.sa_handler = NULL;
480   act.sa_mask = emptysigset;
481   act.sa_flags = 0;
482
483   /* Set a default signal handler for every signal, errors will be
484      ignored. */
485   for(i = 0; i < NSIG; i++) 
486     {
487       if(!do_detach)
488         act.sa_handler = SIG_DFL;
489       else
490         act.sa_handler = unexpected_signal_handler;
491       sigaction(i, &act, NULL);
492     }
493
494   /* If we didn't detach, allow coredumps */
495   if(!do_detach)
496     sighandlers[3].handler = SIG_DFL;
497
498   /* Then, for each known signal that we want to catch, assign a
499      handler to the signal, with error checking this time. */
500   for(i = 0; sighandlers[i].signal; i++)
501     {
502       act.sa_handler = sighandlers[i].handler;
503       if(sigaction(sighandlers[i].signal, &act, NULL) < 0)
504         fprintf(stderr, _("Installing signal handler for signal %d (%s) failed: %s\n"),
505                 sighandlers[i].signal, strsignal(sighandlers[i].signal), strerror(errno));
506     }
507 }