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>
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.
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.
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.
20 $Id: process.c,v 1.1.2.36 2002/03/11 11:23:04 guus Exp $
31 #include <sys/ioctl.h>
32 #include <sys/types.h>
46 #include "connection.h"
51 /* If zero, don't detach from the terminal. */
54 extern char *identname;
55 extern char *pidfilename;
60 static int saved_debug_lvl = 0;
66 void memory_full(int size)
68 syslog(LOG_ERR, _("Memory exhausted (couldn't allocate %d bytes), exitting."), size);
73 /* Some functions the less gifted operating systems might lack... */
75 #ifndef HAVE_FCLOSEALL
88 Close network connections, and terminate neatly
90 void cleanup_and_exit(int c)
93 close_network_connections();
95 if(debug_lvl > DEBUG_NOTHING)
98 syslog(LOG_NOTICE, _("Terminating"));
105 check for an existing tinc for this net, and write pid to pidfile
107 int write_pidfile(void)
111 if((pid = check_pid(pidfilename)))
114 fprintf(stderr, _("A tincd is already running for net `%s' with pid %d.\n"),
117 fprintf(stderr, _("A tincd is already running with pid %d.\n"), pid);
121 /* if it's locked, write-protected, or whatever */
122 if(!write_pid(pidfilename))
129 kill older tincd for this net
131 int kill_other(int signal)
135 if(!(pid = read_pid(pidfilename)))
138 fprintf(stderr, _("No other tincd is running for net `%s'.\n"), netname);
140 fprintf(stderr, _("No other tincd is running.\n"));
144 errno = 0; /* No error, sometimes errno is only changed on error */
145 /* ESRCH is returned when no process with that pid is found */
146 if(kill(pid, signal) && errno == ESRCH)
149 fprintf(stderr, _("The tincd for net `%s' is no longer running. "), netname);
151 fprintf(stderr, _("The tincd is no longer running. "));
153 fprintf(stderr, _("Removing stale lock file.\n"));
154 remove_pid(pidfilename);
161 Detach from current terminal, write pidfile, kill parent
168 /* First check if we can open a fresh new pidfile */
173 /* If we succeeded in doing that, detach */
181 fprintf(stderr, _("Couldn't detach from terminal: %s"), strerror(errno));
185 /* Now UPDATE the pid in the pidfile, because we changed it... */
187 if(!write_pid(pidfilename))
191 openlog(identname, LOG_CONS | LOG_PID, LOG_DAEMON);
193 if(debug_lvl > DEBUG_NOTHING)
194 syslog(LOG_NOTICE, _("tincd %s (%s %s) starting, debug level %d"),
195 VERSION, __DATE__, __TIME__, debug_lvl);
197 syslog(LOG_NOTICE, _("tincd %s starting"), VERSION);
199 xalloc_fail_func = memory_full;
205 Execute the program name, with sane environment. All output will be
206 redirected to syslog.
208 void _execute_script(const char *name) __attribute__ ((noreturn));
209 void _execute_script(const char *name)
217 unsetenv("INTERFACE");
222 asprintf(&s, "NETNAME=%s", netname);
223 putenv(s); /* Don't free s! see man 3 putenv */
228 asprintf(&s, "DEVICE=%s", device);
229 putenv(s); /* Don't free s! see man 3 putenv */
234 asprintf(&s, "INTERFACE=%s", interface);
235 putenv(s); /* Don't free s! see man 3 putenv */
240 asprintf(&scriptname, "%s/%s", confbase, name);
242 /* Close all file descriptors */
243 closelog(); /* <- this means we cannot use syslog() here anymore! */
246 execl(scriptname, NULL);
247 /* No return on success */
249 if(errno != ENOENT) /* Ignore if the file does not exist */
250 exit(1); /* Some error while trying execl(). */
256 Fork and execute the program pointed to by name.
258 int execute_script(const char *name)
263 if((pid = fork()) < 0)
265 syslog(LOG_ERR, _("System call `%s' failed: %s"), "fork", strerror(errno));
271 if(debug_lvl >= DEBUG_STATUS)
272 syslog(LOG_INFO, _("Executing script %s"), name);
274 if(waitpid(pid, &status, 0) == pid)
276 if(WIFEXITED(status)) /* Child exited by itself */
278 if(WEXITSTATUS(status))
280 syslog(LOG_ERR, _("Process %d (%s) exited with non-zero status %d"), pid, name, WEXITSTATUS(status));
286 else if(WIFSIGNALED(status)) /* Child was killed by a signal */
288 syslog(LOG_ERR, _("Process %d (%s) was killed by signal %d (%s)"),
289 pid, name, WTERMSIG(status), strsignal(WTERMSIG(status)));
292 else /* Something strange happened */
294 syslog(LOG_ERR, _("Process %d (%s) terminated abnormally"), pid, name);
300 syslog(LOG_ERR, _("System call `%s' failed: %s"), "waitpid", strerror(errno));
307 _execute_script(name);
316 sigterm_handler(int a)
318 if(debug_lvl > DEBUG_NOTHING)
319 syslog(LOG_NOTICE, _("Got TERM signal"));
325 sigquit_handler(int a)
327 if(debug_lvl > DEBUG_NOTHING)
328 syslog(LOG_NOTICE, _("Got QUIT signal"));
333 fatal_signal_square(int a)
335 syslog(LOG_ERR, _("Got another fatal signal %d (%s): not restarting."), a, strsignal(a));
341 fatal_signal_handler(int a)
343 struct sigaction act;
344 syslog(LOG_ERR, _("Got fatal signal %d (%s)"), a, strsignal(a));
349 syslog(LOG_NOTICE, _("Trying to re-execute in 5 seconds..."));
351 act.sa_handler = fatal_signal_square;
352 act.sa_mask = emptysigset;
354 sigaction(SIGSEGV, &act, NULL);
356 close_network_connections();
358 remove_pid(pidfilename);
359 execvp(g_argv[0], g_argv);
363 syslog(LOG_NOTICE, _("Not restarting."));
369 sighup_handler(int a)
371 if(debug_lvl > DEBUG_NOTHING)
372 syslog(LOG_NOTICE, _("Got HUP signal"));
377 sigint_handler(int a)
381 syslog(LOG_NOTICE, _("Reverting to old debug level (%d)"),
383 debug_lvl = saved_debug_lvl;
388 syslog(LOG_NOTICE, _("Temporarily setting debug level to 5. Kill me with SIGINT again to go back to level %d."),
390 saved_debug_lvl = debug_lvl;
396 sigalrm_handler(int a)
398 if(debug_lvl > DEBUG_NOTHING)
399 syslog(LOG_NOTICE, _("Got ALRM signal"));
404 sigusr1_handler(int a)
410 sigusr2_handler(int a)
419 sigwinch_handler(int a)
426 unexpected_signal_handler(int a)
428 syslog(LOG_WARNING, _("Got unexpected signal %d (%s)"), a, strsignal(a));
433 ignore_signal_handler(int a)
435 if(debug_lvl >= DEBUG_SCARY_THINGS)
437 syslog(LOG_DEBUG, _("Ignored signal %d (%s)"), a, strsignal(a));
444 void (*handler)(int);
446 { SIGHUP, sighup_handler },
447 { SIGTERM, sigterm_handler },
448 { SIGQUIT, sigquit_handler },
449 { SIGSEGV, fatal_signal_handler },
450 { SIGBUS, fatal_signal_handler },
451 { SIGILL, fatal_signal_handler },
452 { SIGPIPE, ignore_signal_handler },
453 { SIGINT, sigint_handler },
454 { SIGUSR1, sigusr1_handler },
455 { SIGUSR2, sigusr2_handler },
456 { SIGCHLD, ignore_signal_handler },
457 { SIGALRM, sigalrm_handler },
458 { SIGWINCH, sigwinch_handler },
466 struct sigaction act;
468 sigemptyset(&emptysigset);
469 act.sa_handler = NULL;
470 act.sa_mask = emptysigset;
473 /* Set a default signal handler for every signal, errors will be
475 for(i = 0; i < NSIG; i++)
478 act.sa_handler = SIG_DFL;
480 act.sa_handler = unexpected_signal_handler;
481 sigaction(i, &act, NULL);
484 /* If we didn't detach, allow coredumps */
486 sighandlers[3].handler = SIG_DFL;
488 /* Then, for each known signal that we want to catch, assign a
489 handler to the signal, with error checking this time. */
490 for(i = 0; sighandlers[i].signal; i++)
492 act.sa_handler = sighandlers[i].handler;
493 if(sigaction(sighandlers[i].signal, &act, NULL) < 0)
494 fprintf(stderr, _("Installing signal handler for signal %d (%s) failed: %s\n"),
495 sighandlers[i].signal, strsignal(sighandlers[i].signal), strerror(errno));