2 process.c -- process management functions
3 Copyright (C) 1999-2005 Ivo Timmermans,
4 2000-2013 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 along
17 with this program; if not, write to the Free Software Foundation, Inc.,
18 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24 #include "connection.h"
36 /* If zero, don't detach from the terminal. */
37 bool do_detach = true;
41 extern char *identname;
42 extern char *pidfilename;
44 extern bool use_logfile;
47 static sigset_t emptysigset;
50 static void memory_full(int size) {
51 logger(LOG_ERR, "Memory exhausted (couldn't allocate %d bytes), exitting.", size);
55 /* Some functions the less gifted operating systems might lack... */
58 extern char *identname;
59 extern char *program_name;
62 static SC_HANDLE manager = NULL;
63 static SC_HANDLE service = NULL;
64 static SERVICE_STATUS status = {0};
65 static SERVICE_STATUS_HANDLE statushandle = 0;
67 bool install_service(void) {
68 char command[4096] = "\"";
71 SERVICE_DESCRIPTION description = {"Virtual Private Network daemon"};
73 manager = OpenSCManager(NULL, NULL, SC_MANAGER_ALL_ACCESS);
75 logger(LOG_ERR, "Could not open service manager: %s", winerror(GetLastError()));
79 if(!strchr(program_name, '\\')) {
80 GetCurrentDirectory(sizeof command - 1, command + 1);
81 strncat(command, "\\", sizeof command - strlen(command));
84 strncat(command, program_name, sizeof command - strlen(command));
86 strncat(command, "\"", sizeof command - strlen(command));
88 for(argp = g_argv + 1; *argp; argp++) {
89 space = strchr(*argp, ' ');
90 strncat(command, " ", sizeof command - strlen(command));
93 strncat(command, "\"", sizeof command - strlen(command));
95 strncat(command, *argp, sizeof command - strlen(command));
98 strncat(command, "\"", sizeof command - strlen(command));
101 service = CreateService(manager, identname, identname,
102 SERVICE_ALL_ACCESS, SERVICE_WIN32_OWN_PROCESS, SERVICE_AUTO_START, SERVICE_ERROR_NORMAL,
103 command, NULL, NULL, NULL, NULL, NULL);
106 DWORD lasterror = GetLastError();
107 logger(LOG_ERR, "Could not create %s service: %s", identname, winerror(lasterror));
108 if(lasterror != ERROR_SERVICE_EXISTS)
113 ChangeServiceConfig2(service, SERVICE_CONFIG_DESCRIPTION, &description);
114 logger(LOG_INFO, "%s service installed", identname);
116 service = OpenService(manager, identname, SERVICE_ALL_ACCESS);
119 if(!StartService(service, 0, NULL))
120 logger(LOG_WARNING, "Could not start %s service: %s", identname, winerror(GetLastError()));
122 logger(LOG_INFO, "%s service started", identname);
127 bool remove_service(void) {
128 manager = OpenSCManager(NULL, NULL, SC_MANAGER_ALL_ACCESS);
130 logger(LOG_ERR, "Could not open service manager: %s", winerror(GetLastError()));
134 service = OpenService(manager, identname, SERVICE_ALL_ACCESS);
137 logger(LOG_ERR, "Could not open %s service: %s", identname, winerror(GetLastError()));
141 if(!ControlService(service, SERVICE_CONTROL_STOP, &status))
142 logger(LOG_ERR, "Could not stop %s service: %s", identname, winerror(GetLastError()));
144 logger(LOG_INFO, "%s service stopped", identname);
146 if(!DeleteService(service)) {
147 logger(LOG_ERR, "Could not remove %s service: %s", identname, winerror(GetLastError()));
151 logger(LOG_INFO, "%s service removed", identname);
156 DWORD WINAPI controlhandler(DWORD request, DWORD type, LPVOID boe, LPVOID bah) {
158 case SERVICE_CONTROL_INTERROGATE:
159 SetServiceStatus(statushandle, &status);
161 case SERVICE_CONTROL_STOP:
162 logger(LOG_NOTICE, "Got %s request", "SERVICE_CONTROL_STOP");
164 case SERVICE_CONTROL_SHUTDOWN:
165 logger(LOG_NOTICE, "Got %s request", "SERVICE_CONTROL_SHUTDOWN");
168 logger(LOG_WARNING, "Got unexpected request %d", (int)request);
169 return ERROR_CALL_NOT_IMPLEMENTED;
174 status.dwWaitHint = 30000;
175 status.dwCurrentState = SERVICE_STOP_PENDING;
176 SetServiceStatus(statushandle, &status);
179 status.dwWaitHint = 0;
180 status.dwCurrentState = SERVICE_STOPPED;
181 SetServiceStatus(statushandle, &status);
187 VOID WINAPI run_service(DWORD argc, LPTSTR* argv) {
188 extern int main2(int argc, char **argv);
190 status.dwServiceType = SERVICE_WIN32;
191 status.dwControlsAccepted = SERVICE_ACCEPT_STOP | SERVICE_ACCEPT_SHUTDOWN;
192 status.dwWin32ExitCode = 0;
193 status.dwServiceSpecificExitCode = 0;
194 status.dwCheckPoint = 0;
196 statushandle = RegisterServiceCtrlHandlerEx(identname, controlhandler, NULL);
199 logger(LOG_ERR, "System call `%s' failed: %s", "RegisterServiceCtrlHandlerEx", winerror(GetLastError()));
201 status.dwWaitHint = 30000;
202 status.dwCurrentState = SERVICE_START_PENDING;
203 SetServiceStatus(statushandle, &status);
205 status.dwWaitHint = 0;
206 status.dwCurrentState = SERVICE_RUNNING;
207 SetServiceStatus(statushandle, &status);
211 status.dwWaitHint = 0;
212 status.dwCurrentState = SERVICE_STOPPED;
213 SetServiceStatus(statushandle, &status);
219 bool init_service(void) {
220 SERVICE_TABLE_ENTRY services[] = {
221 {identname, run_service},
225 if(!StartServiceCtrlDispatcher(services)) {
226 if(GetLastError() == ERROR_FAILED_SERVICE_CONTROLLER_CONNECT) {
230 logger(LOG_ERR, "System call `%s' failed: %s", "StartServiceCtrlDispatcher", winerror(GetLastError()));
239 check for an existing tinc for this net, and write pid to pidfile
241 static bool write_pidfile(void) {
244 pid = check_pid(pidfilename);
248 fprintf(stderr, "A tincd is already running for net `%s' with pid %ld.\n",
251 fprintf(stderr, "A tincd is already running with pid %ld.\n", (long)pid);
255 /* if it's locked, write-protected, or whatever */
256 if(!write_pid(pidfilename)) {
257 fprintf(stderr, "Couldn't write pid file %s: %s\n", pidfilename, strerror(errno));
266 kill older tincd for this net
268 bool kill_other(int signal) {
272 pid = read_pid(pidfilename);
276 fprintf(stderr, "No other tincd is running for net `%s'.\n",
279 fprintf(stderr, "No other tincd is running.\n");
283 errno = 0; /* No error, sometimes errno is only changed on error */
285 /* ESRCH is returned when no process with that pid is found */
286 if(kill(pid, signal) && errno == ESRCH) {
288 fprintf(stderr, "The tincd for net `%s' is no longer running. ",
291 fprintf(stderr, "The tincd is no longer running. ");
293 fprintf(stderr, "Removing stale lock file.\n");
294 remove_pid(pidfilename);
299 return remove_service();
304 Detach from current terminal, write pidfile, kill parent
309 /* First check if we can open a fresh new pidfile */
315 /* If we succeeded in doing that, detach */
323 fprintf(stderr, "Couldn't detach from terminal: %s",
328 /* Now UPDATE the pid in the pidfile, because we changed it... */
330 if(!write_pid(pidfilename)) {
331 fprintf(stderr, "Could not write pid file %s: %s\n", pidfilename, strerror(errno));
336 exit(install_service());
340 openlogger(identname, use_logfile?LOGMODE_FILE:(do_detach?LOGMODE_SYSLOG:LOGMODE_STDERR));
342 logger(LOG_NOTICE, "tincd %s (%s %s) starting, debug level %d",
343 VERSION, __DATE__, __TIME__, debug_level);
345 xalloc_fail_func = memory_full;
350 bool execute_script(const char *name, char **envp) {
355 char *interpreter = NULL;
358 len = xasprintf(&scriptname, "\"%s/%s\"", confbase, name);
360 len = xasprintf(&scriptname, "\"%s/%s.bat\"", confbase, name);
365 scriptname[len - 1] = '\0';
367 /* First check if there is a script */
369 if(access(scriptname + 1, F_OK)) {
374 // Custom scripts interpreter
375 if(get_config_string(lookup_config(config_tree, "ScriptsInterpreter"), &interpreter)) {
376 // Force custom scripts interpreter allowing execution of scripts on android without execution flag (such as on /sdcard)
378 len = xasprintf(&scriptname, "%s \"%s/%s\"", interpreter, confbase, name);
384 ifdebug(STATUS) logger(LOG_INFO, "Executing script %s", name);
387 /* Set environment */
389 for(i = 0; envp[i]; i++)
393 scriptname[len - 1] = '\"';
394 status = system(scriptname);
398 /* Unset environment */
400 for(i = 0; envp[i]; i++) {
401 char *e = strchr(envp[i], '=');
403 char p[e - envp[i] + 1];
404 strncpy(p, envp[i], e - envp[i]);
405 p[e - envp[i]] = '\0';
412 if(WIFEXITED(status)) { /* Child exited by itself */
413 if(WEXITSTATUS(status)) {
414 logger(LOG_ERR, "Script %s exited with non-zero status %d",
415 name, WEXITSTATUS(status));
418 } else if(WIFSIGNALED(status)) { /* Child was killed by a signal */
419 logger(LOG_ERR, "Script %s was killed by signal %d (%s)",
420 name, WTERMSIG(status), strsignal(WTERMSIG(status)));
422 } else { /* Something strange happened */
423 logger(LOG_ERR, "Script %s terminated abnormally", name);
428 logger(LOG_ERR, "System call `%s' failed: %s", "system", strerror(errno));
441 static RETSIGTYPE sigterm_handler(int a) {
442 logger(LOG_NOTICE, "Got %s signal", "TERM");
449 static RETSIGTYPE sigquit_handler(int a) {
450 logger(LOG_NOTICE, "Got %s signal", "QUIT");
457 static RETSIGTYPE fatal_signal_square(int a) {
458 logger(LOG_ERR, "Got another fatal signal %d (%s): not restarting.", a,
463 static RETSIGTYPE fatal_signal_handler(int a) {
464 struct sigaction act;
465 logger(LOG_ERR, "Got fatal signal %d (%s)", a, strsignal(a));
468 logger(LOG_NOTICE, "Trying to re-execute in 5 seconds...");
470 act.sa_handler = fatal_signal_square;
471 act.sa_mask = emptysigset;
473 sigaction(SIGSEGV, &act, NULL);
475 close_network_connections();
477 remove_pid(pidfilename);
478 execvp(g_argv[0], g_argv);
480 logger(LOG_NOTICE, "Not restarting.");
485 static RETSIGTYPE sighup_handler(int a) {
486 logger(LOG_NOTICE, "Got %s signal", "HUP");
490 static RETSIGTYPE sigint_handler(int a) {
491 static int saved_debug_level = -1;
493 logger(LOG_NOTICE, "Got %s signal", "INT");
495 if(saved_debug_level != -1) {
496 logger(LOG_NOTICE, "Reverting to old debug level (%d)",
498 debug_level = saved_debug_level;
499 saved_debug_level = -1;
502 "Temporarily setting debug level to 5. Kill me with SIGINT again to go back to level %d.",
504 saved_debug_level = debug_level;
509 static RETSIGTYPE sigalrm_handler(int a) {
510 logger(LOG_NOTICE, "Got %s signal", "ALRM");
514 static RETSIGTYPE sigusr1_handler(int a) {
518 static RETSIGTYPE sigusr2_handler(int a) {
525 static RETSIGTYPE sigwinch_handler(int a) {
529 static RETSIGTYPE unexpected_signal_handler(int a) {
530 logger(LOG_WARNING, "Got unexpected signal %d (%s)", a, strsignal(a));
533 static RETSIGTYPE ignore_signal_handler(int a) {
534 ifdebug(SCARY_THINGS) logger(LOG_DEBUG, "Ignored signal %d (%s)", a, strsignal(a));
539 void (*handler)(int);
541 {SIGHUP, sighup_handler},
542 {SIGTERM, sigterm_handler},
543 {SIGQUIT, sigquit_handler},
544 {SIGSEGV, fatal_signal_handler},
545 {SIGBUS, fatal_signal_handler},
546 {SIGILL, fatal_signal_handler},
547 {SIGPIPE, ignore_signal_handler},
548 {SIGINT, sigint_handler},
549 {SIGUSR1, sigusr1_handler},
550 {SIGUSR2, sigusr2_handler},
551 {SIGCHLD, ignore_signal_handler},
552 {SIGALRM, sigalrm_handler},
553 {SIGWINCH, sigwinch_handler},
559 void setup_signals(void) {
562 struct sigaction act;
564 sigemptyset(&emptysigset);
565 act.sa_handler = NULL;
566 act.sa_mask = emptysigset;
569 /* Set a default signal handler for every signal, errors will be
571 for(i = 1; i < NSIG; i++) {
573 act.sa_handler = SIG_DFL;
575 act.sa_handler = unexpected_signal_handler;
576 sigaction(i, &act, NULL);
579 /* If we didn't detach, allow coredumps */
581 sighandlers[3].handler = SIG_DFL;
583 /* Then, for each known signal that we want to catch, assign a
584 handler to the signal, with error checking this time. */
585 for(i = 0; sighandlers[i].signal; i++) {
586 act.sa_handler = sighandlers[i].handler;
587 if(sigaction(sighandlers[i].signal, &act, NULL) < 0)
588 fprintf(stderr, "Installing signal handler for signal %d (%s) failed: %s\n",
589 sighandlers[i].signal, strsignal(sighandlers[i].signal),