2 process.c -- process management functions
3 Copyright (C) 1999,2000 Ivo Timmermans <itimmermans@bigfoot.com>,
4 2000 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.7 2000/11/20 23:29:47 guus Exp $
31 #include <sys/ioctl.h>
32 #include <sys/types.h>
46 /* A list containing all our children */
47 list_t *child_pids = NULL;
49 /* If zero, don't detach from the terminal. */
54 extern char *identname;
55 extern char *pidfilename;
58 void init_processes(void)
61 child_pids = list_new();
65 void memory_full(int size)
67 syslog(LOG_ERR, _("Memory exhausted (couldn't allocate %d bytes), exiting."), size);
73 Close network connections, and terminate neatly
75 void cleanup_and_exit(int c)
78 close_network_connections();
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);
90 check for an existing tinc for this net, and write pid to pidfile
92 int write_pidfile(void)
96 if((pid = check_pid(pidfilename)))
99 fprintf(stderr, _("A tincd is already running for net `%s' with pid %d.\n"),
102 fprintf(stderr, _("A tincd is already running with pid %d.\n"), pid);
106 /* if it's locked, write-protected, or whatever */
107 if(!write_pid(pidfilename))
114 kill older tincd for this net
120 if(!(pid = read_pid(pidfilename)))
123 fprintf(stderr, _("No other tincd is running for net `%s'.\n"), netname);
125 fprintf(stderr, _("No other tincd is running.\n"));
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);
139 Detach from current terminal, write pidfile, kill parent
154 openlog(identname, LOG_CONS | LOG_PID, LOG_DAEMON);
156 if(debug_lvl > DEBUG_NOTHING)
157 syslog(LOG_NOTICE, _("tincd %s (%s %s) starting, debug level %d"),
158 VERSION, __DATE__, __TIME__, debug_lvl);
160 syslog(LOG_NOTICE, _("tincd %s starting"), VERSION);
162 xalloc_fail_func = memory_full;
168 Execute the program name, with sane environment. All output will be
169 redirected to syslog.
171 void _execute_script(const char *name) __attribute__ ((noreturn));
172 void _execute_script(const char *name)
180 asprintf(&s, "NETNAME=%s", netname);
181 putenv(s); /* Don't free s! see man 3 putenv */
190 if(chdir(confbase) < 0)
191 /* This cannot fail since we already read config files from this
193 /* Yes this can fail, somebody could have removed this directory
194 when we didn't pay attention. - Ivo */
197 /* Now if THIS fails, something wicked is going on. - Ivo */
198 syslog(LOG_ERR, _("Couldn't chdir to `/': %m"));
200 /* Continue anyway. */
203 asprintf(&scriptname, "%s/%s", confbase, name);
205 /* Close all file descriptors */
209 /* Open standard input */
210 if(open("/dev/null", O_RDONLY) < 0)
212 syslog(LOG_ERR, _("Opening `/dev/null' failed: %m"));
218 /* Standard output directly goes to syslog */
219 openlog(name, LOG_CONS | LOG_PID, LOG_DAEMON);
220 /* Standard error as well */
223 syslog(LOG_ERR, _("System call `%s' failed: %m"),
229 if(error && debug_lvl > 1)
230 syslog(LOG_INFO, _("This means that any output the script generates will not be shown in syslog."));
232 execl(scriptname, NULL);
233 /* No return on success */
235 if(errno != ENOENT) /* Ignore if the file does not exist */
236 syslog(LOG_WARNING, _("Error executing `%s': %m"), scriptname);
238 /* No need to free things */
243 Fork and execute the program pointed to by name.
245 int execute_script(const char *name)
249 if((pid = fork()) < 0)
251 syslog(LOG_ERR, _("System call `%s' failed: %m"),
258 list_append(child_pids, &pid);
263 _execute_script(name);
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.
271 int check_child(void *data)
277 pid = waitpid(pid, &status, WNOHANG);
278 if(WIFEXITED(status))
280 if(WIFSIGNALED(status)) /* Child was killed by a signal */
282 syslog(LOG_ERR, _("Child with PID %d was killed by signal %d (%s)"),
283 pid, WTERMSIG(status), strsignal(WTERMSIG(status)));
286 if(WEXITSTATUS(status) != 0)
288 syslog(LOG_INFO, _("Child with PID %d exited with code %d"),
289 WEXITSTATUS(status));
294 /* Child is still running */
299 Check the status of all our children.
301 void check_children(void)
303 list_forall_nodes(child_pids, check_child);
312 sigterm_handler(int a)
314 if(debug_lvl > DEBUG_NOTHING)
315 syslog(LOG_NOTICE, _("Got TERM signal"));
321 sigquit_handler(int a)
323 if(debug_lvl > DEBUG_NOTHING)
324 syslog(LOG_NOTICE, _("Got QUIT signal"));
329 sigsegv_square(int a)
331 syslog(LOG_ERR, _("Got another SEGV signal: not restarting"));
336 sigsegv_handler(int a)
338 syslog(LOG_ERR, _("Got SEGV signal"));
343 syslog(LOG_NOTICE, _("Trying to re-execute in 5 seconds..."));
344 signal(SIGSEGV, sigsegv_square);
345 close_network_connections();
347 remove_pid(pidfilename);
348 execvp(g_argv[0], g_argv);
352 syslog(LOG_NOTICE, _("Not restarting."));
358 sighup_handler(int a)
360 if(debug_lvl > DEBUG_NOTHING)
361 syslog(LOG_NOTICE, _("Got HUP signal"));
366 sigint_handler(int a)
368 if(debug_lvl > DEBUG_NOTHING)
369 syslog(LOG_NOTICE, _("Got INT signal, exiting"));
374 sigusr1_handler(int a)
376 dump_connection_list();
380 sigusr2_handler(int a)
388 syslog(LOG_WARNING, _("Got unexpected signal %d (%s)"), a, strsignal(a));
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);
416 RETSIGTYPE parent_exit(int a)