2 process.c -- process management functions
3 Copyright (C) 1999-2001 Ivo Timmermans <itimmermans@bigfoot.com>,
4 2000,2001 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.29 2001/10/28 10:16:18 guus Exp $
31 #include <sys/ioctl.h>
32 #include <sys/types.h>
46 #include "connection.h"
50 /* If zero, don't detach from the terminal. */
53 extern char *identname;
54 extern char *pidfilename;
59 static int saved_debug_lvl = 0;
61 void memory_full(int size)
63 syslog(LOG_ERR, _("Memory exhausted (couldn't allocate %d bytes), exiting."), size);
68 /* Some functions the less gifted operating systems might lack... */
70 #ifndef HAVE_FCLOSEALL
83 Close network connections, and terminate neatly
85 void cleanup_and_exit(int c)
88 close_network_connections();
90 if(debug_lvl > DEBUG_NOTHING)
93 syslog(LOG_NOTICE, _("Terminating"));
100 check for an existing tinc for this net, and write pid to pidfile
102 int write_pidfile(void)
106 if((pid = check_pid(pidfilename)))
109 fprintf(stderr, _("A tincd is already running for net `%s' with pid %d.\n"),
112 fprintf(stderr, _("A tincd is already running with pid %d.\n"), pid);
116 /* if it's locked, write-protected, or whatever */
117 if(!write_pid(pidfilename))
124 kill older tincd for this net
126 int kill_other(int signal)
130 if(!(pid = read_pid(pidfilename)))
133 fprintf(stderr, _("No other tincd is running for net `%s'.\n"), netname);
135 fprintf(stderr, _("No other tincd is running.\n"));
139 errno = 0; /* No error, sometimes errno is only changed on error */
140 /* ESRCH is returned when no process with that pid is found */
141 if(kill(pid, signal) && errno == ESRCH)
142 fprintf(stderr, _("Removing stale lock file.\n"));
143 remove_pid(pidfilename);
149 Detach from current terminal, write pidfile, kill parent
156 /* First check if we can open a fresh new pidfile */
161 /* If we succeeded in doing that, detach */
169 fprintf(stderr, _("Couldn't detach from terminal: %s"), strerror(errno));
173 /* Now UPDATE the pid in the pidfile, because we changed it... */
175 if(!write_pid(pidfilename))
179 openlog(identname, LOG_CONS | LOG_PID, LOG_DAEMON);
181 if(debug_lvl > DEBUG_NOTHING)
182 syslog(LOG_NOTICE, _("tincd %s (%s %s) starting, debug level %d"),
183 VERSION, __DATE__, __TIME__, debug_lvl);
185 syslog(LOG_NOTICE, _("tincd %s starting"), VERSION);
187 xalloc_fail_func = memory_full;
193 Execute the program name, with sane environment. All output will be
194 redirected to syslog.
196 void _execute_script(const char *name) __attribute__ ((noreturn));
197 void _execute_script(const char *name)
204 asprintf(&s, "NETNAME=%s", netname);
205 putenv(s); /* Don't free s! see man 3 putenv */
216 asprintf(&scriptname, "%s/%s", confbase, name);
218 /* Close all file descriptors */
219 closelog(); /* <- this means we cannot use syslog() here anymore! */
222 execl(scriptname, NULL);
223 /* No return on success */
225 if(errno != ENOENT) /* Ignore if the file does not exist */
226 exit(1); /* Some error while trying execl(). */
232 Fork and execute the program pointed to by name.
234 int execute_script(const char *name)
239 if((pid = fork()) < 0)
241 syslog(LOG_ERR, _("System call `%s' failed: %m"),
248 if(debug_lvl >= DEBUG_STATUS)
249 syslog(LOG_INFO, _("Executing script %s"), name);
251 if(waitpid(pid, &status, 0) == pid)
253 if(WIFEXITED(status)) /* Child exited by itself */
255 if(WEXITSTATUS(status))
257 syslog(LOG_ERR, _("Process %d (%s) exited with non-zero status %d"), pid, name, WEXITSTATUS(status));
263 else if(WIFSIGNALED(status)) /* Child was killed by a signal */
265 syslog(LOG_ERR, _("Process %d (%s) was killed by signal %d (%s)"),
266 pid, name, WTERMSIG(status), strsignal(WTERMSIG(status)));
269 else /* Something strange happened */
271 syslog(LOG_ERR, _("Process %d (%s) terminated abnormally"), pid, name);
277 syslog(LOG_ERR, _("System call `%s' failed: %m"), "waitpid");
284 _execute_script(name);
293 sigterm_handler(int a, siginfo_t *info, void *b)
295 if(debug_lvl > DEBUG_NOTHING)
296 syslog(LOG_NOTICE, _("Got TERM signal"));
302 sigquit_handler(int a, siginfo_t *info, void *b)
304 if(debug_lvl > DEBUG_NOTHING)
305 syslog(LOG_NOTICE, _("Got QUIT signal"));
310 sigsegv_square(int a, siginfo_t *info, void *b)
312 syslog(LOG_ERR, _("Got another SEGV signal: not restarting"));
318 sigsegv_handler(int a, siginfo_t *info, void *b)
320 struct sigaction act;
321 syslog(LOG_ERR, _("Got SEGV signal"));
326 syslog(LOG_NOTICE, _("Trying to re-execute in 5 seconds..."));
328 act.sa_handler = NULL;
329 act.sa_mask = emptysigset;
330 act.sa_flags = SA_SIGINFO;
331 act.sa_sigaction = sigsegv_square;
333 close_network_connections();
335 remove_pid(pidfilename);
336 execvp(g_argv[0], g_argv);
340 syslog(LOG_NOTICE, _("Not restarting."));
346 sighup_handler(int a, siginfo_t *info, void *b)
348 if(debug_lvl > DEBUG_NOTHING)
349 syslog(LOG_NOTICE, _("Got HUP signal"));
354 sigint_handler(int a, siginfo_t *info, void *b)
358 syslog(LOG_NOTICE, _("Reverting to old debug level (%d)"),
360 debug_lvl = saved_debug_lvl;
365 syslog(LOG_NOTICE, _("Temporarily setting debug level to 5. Kill me with SIGINT again to go back to level %d."),
367 saved_debug_lvl = debug_lvl;
373 sigusr1_handler(int a, siginfo_t *info, void *b)
379 sigusr2_handler(int a, siginfo_t *info, void *b)
388 unexpected_signal_handler(int a, siginfo_t *info, void *b)
390 syslog(LOG_WARNING, _("Got unexpected signal %d (%s)"), a, strsignal(a));
395 ignore_signal_handler(int a, siginfo_t *info, void *b)
397 if(debug_lvl >= DEBUG_SCARY_THINGS)
399 syslog(LOG_WARNING, _("Got unexpected signal %d (%s)"), a, strsignal(a));
406 void (*handler)(int, siginfo_t *, void *);
408 { SIGHUP, sighup_handler },
409 { SIGTERM, sigterm_handler },
410 { SIGQUIT, sigquit_handler },
411 { SIGSEGV, sigsegv_handler },
412 { SIGPIPE, ignore_signal_handler },
413 { SIGINT, sigint_handler },
414 { SIGUSR1, sigusr1_handler },
415 { SIGUSR2, sigusr2_handler },
416 { SIGCHLD, ignore_signal_handler },
417 { SIGALRM, ignore_signal_handler },
425 struct sigaction act;
427 sigemptyset(&emptysigset);
428 act.sa_handler = NULL;
429 act.sa_mask = emptysigset;
430 act.sa_flags = SA_SIGINFO;
432 /* Set a default signal handler for every signal, errors will be
434 for(i = 0; i < NSIG; i++)
436 act.sa_sigaction = unexpected_signal_handler;
437 sigaction(i, &act, NULL);
441 sighandlers[3].handler = SIG_DFL;
443 /* Then, for each known signal that we want to catch, assign a
444 handler to the signal, with error checking this time. */
445 for(i = 0; sighandlers[i].signal; i++)
447 act.sa_sigaction = sighandlers[i].handler;
448 if(sigaction(sighandlers[i].signal, &act, NULL) < 0)
449 fprintf(stderr, _("Installing signal handler for signal %d (%s) failed: %s\n"),
450 sighandlers[i].signal, strsignal(sighandlers[i].signal), strerror(errno));