2 process.c -- process management functions
3 Copyright (C) 1999-2005 Ivo Timmermans,
4 2000-2006 Guus Sliepen <guus@tinc-vpn.org>
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.
26 #include "connection.h"
37 /* If zero, don't detach from the terminal. */
38 bool do_detach = true;
42 extern char *identname;
43 extern char *pidfilename;
45 extern bool use_logfile;
46 extern volatile bool running;
50 static int saved_debug_level = -1;
52 static void memory_full(int size)
54 logger(LOG_ERR, _("Memory exhausted (couldn't allocate %d bytes), exitting."), size);
59 /* Some functions the less gifted operating systems might lack... */
62 extern char *identname;
63 extern char *program_name;
66 static SC_HANDLE manager = NULL;
67 static SC_HANDLE service = NULL;
68 static SERVICE_STATUS status = {0};
69 static SERVICE_STATUS_HANDLE statushandle = 0;
71 bool install_service(void) {
72 char command[4096] = "\"";
75 SERVICE_DESCRIPTION description = {"Virtual Private Network daemon"};
77 manager = OpenSCManager(NULL, NULL, SC_MANAGER_ALL_ACCESS);
79 logger(LOG_ERR, _("Could not open service manager: %s"), winerror(GetLastError()));
83 if(!strchr(program_name, '\\')) {
84 GetCurrentDirectory(sizeof command - 1, command + 1);
85 strncat(command, "\\", sizeof command - strlen(command));
88 strncat(command, program_name, sizeof command - strlen(command));
90 strncat(command, "\"", sizeof command - strlen(command));
92 for(argp = g_argv + 1; *argp; argp++) {
93 space = strchr(*argp, ' ');
94 strncat(command, " ", sizeof command - strlen(command));
97 strncat(command, "\"", sizeof command - strlen(command));
99 strncat(command, *argp, sizeof command - strlen(command));
102 strncat(command, "\"", sizeof command - strlen(command));
105 service = CreateService(manager, identname, identname,
106 SERVICE_ALL_ACCESS, SERVICE_WIN32_OWN_PROCESS, SERVICE_AUTO_START, SERVICE_ERROR_NORMAL,
107 command, NULL, NULL, NULL, NULL, NULL);
110 logger(LOG_ERR, _("Could not create %s service: %s"), identname, winerror(GetLastError()));
114 ChangeServiceConfig2(service, SERVICE_CONFIG_DESCRIPTION, &description);
116 logger(LOG_INFO, _("%s service installed"), identname);
118 if(!StartService(service, 0, NULL))
119 logger(LOG_WARNING, _("Could not start %s service: %s"), identname, winerror(GetLastError()));
121 logger(LOG_INFO, _("%s service started"), identname);
126 bool remove_service(void) {
127 manager = OpenSCManager(NULL, NULL, SC_MANAGER_ALL_ACCESS);
129 logger(LOG_ERR, _("Could not open service manager: %s"), winerror(GetLastError()));
133 service = OpenService(manager, identname, SERVICE_ALL_ACCESS);
136 logger(LOG_ERR, _("Could not open %s service: %s"), identname, winerror(GetLastError()));
140 if(!ControlService(service, SERVICE_CONTROL_STOP, &status))
141 logger(LOG_ERR, _("Could not stop %s service: %s"), identname, winerror(GetLastError()));
143 logger(LOG_INFO, _("%s service stopped"), identname);
145 if(!DeleteService(service)) {
146 logger(LOG_ERR, _("Could not remove %s service: %s"), identname, winerror(GetLastError()));
150 logger(LOG_INFO, _("%s service removed"), identname);
155 DWORD WINAPI controlhandler(DWORD request, DWORD type, LPVOID boe, LPVOID bah) {
157 case SERVICE_CONTROL_INTERROGATE:
158 SetServiceStatus(statushandle, &status);
160 case SERVICE_CONTROL_STOP:
161 logger(LOG_NOTICE, _("Got %s request"), "SERVICE_CONTROL_STOP");
163 case SERVICE_CONTROL_SHUTDOWN:
164 logger(LOG_NOTICE, _("Got %s request"), "SERVICE_CONTROL_SHUTDOWN");
167 logger(LOG_WARNING, _("Got unexpected request %d"), request);
168 return ERROR_CALL_NOT_IMPLEMENTED;
173 status.dwWaitHint = 30000;
174 status.dwCurrentState = SERVICE_STOP_PENDING;
175 SetServiceStatus(statushandle, &status);
178 status.dwWaitHint = 0;
179 status.dwCurrentState = SERVICE_STOPPED;
180 SetServiceStatus(statushandle, &status);
186 VOID WINAPI run_service(DWORD argc, LPTSTR* argv)
189 extern int main2(int argc, char **argv);
192 status.dwServiceType = SERVICE_WIN32;
193 status.dwControlsAccepted = SERVICE_ACCEPT_STOP | SERVICE_ACCEPT_SHUTDOWN;
194 status.dwWin32ExitCode = 0;
195 status.dwServiceSpecificExitCode = 0;
196 status.dwCheckPoint = 0;
198 statushandle = RegisterServiceCtrlHandlerEx(identname, controlhandler, NULL);
201 logger(LOG_ERR, _("System call `%s' failed: %s"), "RegisterServiceCtrlHandlerEx", winerror(GetLastError()));
204 status.dwWaitHint = 30000;
205 status.dwCurrentState = SERVICE_START_PENDING;
206 SetServiceStatus(statushandle, &status);
208 status.dwWaitHint = 0;
209 status.dwCurrentState = SERVICE_RUNNING;
210 SetServiceStatus(statushandle, &status);
212 err = main2(argc, argv);
214 status.dwWaitHint = 0;
215 status.dwCurrentState = SERVICE_STOPPED;
216 //status.dwWin32ExitCode = err;
217 SetServiceStatus(statushandle, &status);
223 bool init_service(void) {
224 SERVICE_TABLE_ENTRY services[] = {
225 {identname, run_service},
229 if(!StartServiceCtrlDispatcher(services)) {
230 if(GetLastError() == ERROR_FAILED_SERVICE_CONTROLLER_CONNECT) {
234 logger(LOG_ERR, _("System call `%s' failed: %s"), "StartServiceCtrlDispatcher", winerror(GetLastError()));
243 check for an existing tinc for this net, and write pid to pidfile
245 static bool write_pidfile(void)
251 pid = check_pid(pidfilename);
255 fprintf(stderr, _("A tincd is already running for net `%s' with pid %ld.\n"),
258 fprintf(stderr, _("A tincd is already running with pid %ld.\n"), (long)pid);
262 /* if it's locked, write-protected, or whatever */
263 if(!write_pid(pidfilename)) {
264 fprintf(stderr, _("Could write pid file %s: %s\n"), pidfilename, strerror(errno));
273 kill older tincd for this net
275 bool kill_other(int signal)
282 pid = read_pid(pidfilename);
286 fprintf(stderr, _("No other tincd is running for net `%s'.\n"),
289 fprintf(stderr, _("No other tincd is running.\n"));
293 errno = 0; /* No error, sometimes errno is only changed on error */
295 /* ESRCH is returned when no process with that pid is found */
296 if(kill(pid, signal) && errno == ESRCH) {
298 fprintf(stderr, _("The tincd for net `%s' is no longer running. "),
301 fprintf(stderr, _("The tincd is no longer running. "));
303 fprintf(stderr, _("Removing stale lock file.\n"));
304 remove_pid(pidfilename);
309 return remove_service();
314 Detach from current terminal, write pidfile, kill parent
322 /* First check if we can open a fresh new pidfile */
328 /* If we succeeded in doing that, detach */
336 fprintf(stderr, _("Couldn't detach from terminal: %s"),
341 /* Now UPDATE the pid in the pidfile, because we changed it... */
343 if(!write_pid(pidfilename)) {
344 fprintf(stderr, _("Could not write pid file %s: %s\n"), pidfilename, strerror(errno));
349 exit(install_service());
353 openlogger(identname, use_logfile?LOGMODE_FILE:(do_detach?LOGMODE_SYSLOG:LOGMODE_STDERR));
355 logger(LOG_NOTICE, _("tincd %s (%s %s) starting, debug level %d"),
356 VERSION, __DATE__, __TIME__, debug_level);
358 xalloc_fail_func = memory_full;
363 bool execute_script(const char *name, char **envp)
368 char *scriptname, *p;
374 len = asprintf(&scriptname, "\"%s/%s\"", confbase, name);
376 len = asprintf(&scriptname, "\"%s/%s.bat\"", confbase, name);
381 scriptname[len - 1] = '\0';
383 /* First check if there is a script */
385 if(stat(scriptname + 1, &s)) {
390 ifdebug(STATUS) logger(LOG_INFO, _("Executing script %s"), name);
393 /* Set environment */
395 for(i = 0; envp[i]; i++)
399 scriptname[len - 1] = '\"';
400 status = system(scriptname);
404 /* Unset environment */
406 for(i = 0; envp[i]; i++) {
407 char *e = strchr(envp[i], '=');
409 p = alloca(e - envp[i] + 1);
410 strncpy(p, envp[i], e - envp[i]);
411 p[e - envp[i]] = '\0';
418 if(WIFEXITED(status)) { /* Child exited by itself */
419 if(WEXITSTATUS(status)) {
420 logger(LOG_ERR, _("Script %s exited with non-zero status %d"),
421 name, WEXITSTATUS(status));
424 } else if(WIFSIGNALED(status)) { /* Child was killed by a signal */
425 logger(LOG_ERR, _("Script %s was killed by signal %d (%s)"),
426 name, WTERMSIG(status), strsignal(WTERMSIG(status)));
428 } else { /* Something strange happened */
429 logger(LOG_ERR, _("Script %s terminated abnormally"), name);
433 logger(LOG_ERR, _("System call `%s' failed: %s"), "system", strerror(errno));
447 static RETSIGTYPE sigterm_handler(int a)
449 logger(LOG_NOTICE, _("Got %s signal"), "TERM");
456 static RETSIGTYPE sigquit_handler(int a)
458 logger(LOG_NOTICE, _("Got %s signal"), "QUIT");
465 static RETSIGTYPE fatal_signal_square(int a)
467 logger(LOG_ERR, _("Got another fatal signal %d (%s): not restarting."), a,
473 static RETSIGTYPE fatal_signal_handler(int a)
475 struct sigaction act;
476 logger(LOG_ERR, _("Got fatal signal %d (%s)"), a, strsignal(a));
480 logger(LOG_NOTICE, _("Trying to re-execute in 5 seconds..."));
482 act.sa_handler = fatal_signal_square;
483 act.sa_mask = emptysigset;
485 sigaction(SIGSEGV, &act, NULL);
487 close_network_connections();
489 remove_pid(pidfilename);
490 execvp(g_argv[0], g_argv);
492 logger(LOG_NOTICE, _("Not restarting."));
497 static RETSIGTYPE sighup_handler(int a)
499 logger(LOG_NOTICE, _("Got %s signal"), "HUP");
503 static RETSIGTYPE sigint_handler(int a)
505 logger(LOG_NOTICE, _("Got %s signal"), "INT");
507 if(saved_debug_level != -1) {
508 logger(LOG_NOTICE, _("Reverting to old debug level (%d)"),
510 debug_level = saved_debug_level;
511 saved_debug_level = -1;
514 _("Temporarily setting debug level to 5. Kill me with SIGINT again to go back to level %d."),
516 saved_debug_level = debug_level;
521 static RETSIGTYPE sigalrm_handler(int a)
523 logger(LOG_NOTICE, _("Got %s signal"), "ALRM");
527 static RETSIGTYPE sigusr1_handler(int a)
532 static RETSIGTYPE sigusr2_handler(int a)
540 static RETSIGTYPE sigwinch_handler(int a)
545 static RETSIGTYPE unexpected_signal_handler(int a)
547 logger(LOG_WARNING, _("Got unexpected signal %d (%s)"), a, strsignal(a));
551 static RETSIGTYPE ignore_signal_handler(int a)
553 ifdebug(SCARY_THINGS) logger(LOG_DEBUG, _("Ignored signal %d (%s)"), a, strsignal(a));
558 void (*handler)(int);
560 {SIGHUP, sighup_handler},
561 {SIGTERM, sigterm_handler},
562 {SIGQUIT, sigquit_handler},
563 {SIGSEGV, fatal_signal_handler},
564 {SIGBUS, fatal_signal_handler},
565 {SIGILL, fatal_signal_handler},
566 {SIGPIPE, ignore_signal_handler},
567 {SIGINT, sigint_handler},
568 {SIGUSR1, sigusr1_handler},
569 {SIGUSR2, sigusr2_handler},
570 {SIGCHLD, ignore_signal_handler},
571 {SIGALRM, sigalrm_handler},
572 {SIGWINCH, sigwinch_handler},
577 void setup_signals(void)
581 struct sigaction act;
583 sigemptyset(&emptysigset);
584 act.sa_handler = NULL;
585 act.sa_mask = emptysigset;
588 /* Set a default signal handler for every signal, errors will be
590 for(i = 0; i < NSIG; i++) {
592 act.sa_handler = SIG_DFL;
594 act.sa_handler = unexpected_signal_handler;
595 sigaction(i, &act, NULL);
598 /* If we didn't detach, allow coredumps */
600 sighandlers[3].handler = SIG_DFL;
602 /* Then, for each known signal that we want to catch, assign a
603 handler to the signal, with error checking this time. */
604 for(i = 0; sighandlers[i].signal; i++) {
605 act.sa_handler = sighandlers[i].handler;
606 if(sigaction(sighandlers[i].signal, &act, NULL) < 0)
607 fprintf(stderr, _("Installing signal handler for signal %d (%s) failed: %s\n"),
608 sighandlers[i].signal, strsignal(sighandlers[i].signal),