2000-11-16 17:54:29 +00:00
|
|
|
/*
|
|
|
|
process.c -- process management functions
|
2006-04-26 13:52:58 +00:00
|
|
|
Copyright (C) 1999-2005 Ivo Timmermans,
|
2011-05-08 19:22:20 +00:00
|
|
|
2000-2011 Guus Sliepen <guus@tinc-vpn.org>
|
2000-11-16 17:54:29 +00:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
2009-09-24 22:01:00 +00:00
|
|
|
You should have received a copy of the GNU General Public License along
|
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2000-11-16 17:54:29 +00:00
|
|
|
*/
|
|
|
|
|
2003-07-17 15:06:27 +00:00
|
|
|
#include "system.h"
|
2000-11-16 22:12:23 +00:00
|
|
|
|
|
|
|
#include "conf.h"
|
2000-11-22 22:18:03 +00:00
|
|
|
#include "connection.h"
|
2007-05-19 14:13:21 +00:00
|
|
|
#include "control.h"
|
2001-10-31 12:50:24 +00:00
|
|
|
#include "device.h"
|
2003-07-17 15:06:27 +00:00
|
|
|
#include "edge.h"
|
2003-07-06 22:11:37 +00:00
|
|
|
#include "logger.h"
|
2011-05-28 21:36:52 +00:00
|
|
|
#include "net.h"
|
2003-07-17 15:06:27 +00:00
|
|
|
#include "node.h"
|
|
|
|
#include "process.h"
|
|
|
|
#include "subnet.h"
|
|
|
|
#include "utils.h"
|
|
|
|
#include "xalloc.h"
|
2000-11-16 17:54:29 +00:00
|
|
|
|
|
|
|
/* If zero, don't detach from the terminal. */
|
2003-07-22 20:55:21 +00:00
|
|
|
bool do_detach = true;
|
|
|
|
bool sigalrm = false;
|
2000-11-16 17:54:29 +00:00
|
|
|
|
2000-11-16 22:12:23 +00:00
|
|
|
extern char *identname;
|
|
|
|
extern char **g_argv;
|
2003-07-22 20:55:21 +00:00
|
|
|
extern bool use_logfile;
|
2000-11-16 22:12:23 +00:00
|
|
|
|
2000-11-22 22:05:37 +00:00
|
|
|
/* Some functions the less gifted operating systems might lack... */
|
|
|
|
|
2003-08-02 20:50:38 +00:00
|
|
|
#ifdef HAVE_MINGW
|
|
|
|
extern char *identname;
|
|
|
|
extern char *program_name;
|
|
|
|
extern char **g_argv;
|
|
|
|
|
|
|
|
static SC_HANDLE manager = NULL;
|
|
|
|
static SC_HANDLE service = NULL;
|
|
|
|
static SERVICE_STATUS status = {0};
|
|
|
|
static SERVICE_STATUS_HANDLE statushandle = 0;
|
|
|
|
|
2011-07-17 17:23:52 +00:00
|
|
|
static bool install_service(void) {
|
2003-08-22 15:05:01 +00:00
|
|
|
char command[4096] = "\"";
|
2003-08-02 20:50:38 +00:00
|
|
|
char **argp;
|
2003-08-08 17:17:13 +00:00
|
|
|
bool space;
|
2003-08-10 13:35:05 +00:00
|
|
|
SERVICE_DESCRIPTION description = {"Virtual Private Network daemon"};
|
2003-08-02 20:50:38 +00:00
|
|
|
|
|
|
|
manager = OpenSCManager(NULL, NULL, SC_MANAGER_ALL_ACCESS);
|
|
|
|
if(!manager) {
|
2009-09-24 22:54:07 +00:00
|
|
|
logger(LOG_ERR, "Could not open service manager: %s", winerror(GetLastError()));
|
2003-08-02 20:50:38 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!strchr(program_name, '\\')) {
|
2005-01-04 22:18:58 +00:00
|
|
|
GetCurrentDirectory(sizeof command - 1, command + 1);
|
|
|
|
strncat(command, "\\", sizeof command - strlen(command));
|
2003-08-02 20:50:38 +00:00
|
|
|
}
|
|
|
|
|
2005-01-04 22:18:58 +00:00
|
|
|
strncat(command, program_name, sizeof command - strlen(command));
|
2003-08-16 12:11:11 +00:00
|
|
|
|
2005-01-04 22:18:58 +00:00
|
|
|
strncat(command, "\"", sizeof command - strlen(command));
|
2003-08-16 12:11:11 +00:00
|
|
|
|
2003-08-02 20:50:38 +00:00
|
|
|
for(argp = g_argv + 1; *argp; argp++) {
|
2003-08-08 19:43:47 +00:00
|
|
|
space = strchr(*argp, ' ');
|
2005-01-04 22:18:58 +00:00
|
|
|
strncat(command, " ", sizeof command - strlen(command));
|
2003-08-08 19:56:11 +00:00
|
|
|
|
|
|
|
if(space)
|
2005-01-04 22:18:58 +00:00
|
|
|
strncat(command, "\"", sizeof command - strlen(command));
|
2003-08-08 19:56:11 +00:00
|
|
|
|
2005-01-04 22:18:58 +00:00
|
|
|
strncat(command, *argp, sizeof command - strlen(command));
|
2003-08-08 19:56:11 +00:00
|
|
|
|
2003-08-08 17:17:13 +00:00
|
|
|
if(space)
|
2005-01-04 22:18:58 +00:00
|
|
|
strncat(command, "\"", sizeof command - strlen(command));
|
2003-08-02 20:50:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
service = CreateService(manager, identname, identname,
|
|
|
|
SERVICE_ALL_ACCESS, SERVICE_WIN32_OWN_PROCESS, SERVICE_AUTO_START, SERVICE_ERROR_NORMAL,
|
2004-11-01 15:18:22 +00:00
|
|
|
command, NULL, NULL, NULL, NULL, NULL);
|
2003-08-02 20:50:38 +00:00
|
|
|
|
|
|
|
if(!service) {
|
2009-11-01 14:57:28 +00:00
|
|
|
DWORD lasterror = GetLastError();
|
|
|
|
logger(LOG_ERR, "Could not create %s service: %s", identname, winerror(lasterror));
|
|
|
|
if(lasterror != ERROR_SERVICE_EXISTS)
|
|
|
|
return false;
|
2003-08-02 20:50:38 +00:00
|
|
|
}
|
|
|
|
|
2009-11-01 14:57:28 +00:00
|
|
|
if(service) {
|
|
|
|
ChangeServiceConfig2(service, SERVICE_CONFIG_DESCRIPTION, &description);
|
|
|
|
logger(LOG_INFO, "%s service installed", identname);
|
|
|
|
} else {
|
|
|
|
service = OpenService(manager, identname, SERVICE_ALL_ACCESS);
|
|
|
|
}
|
2003-08-02 20:50:38 +00:00
|
|
|
|
|
|
|
if(!StartService(service, 0, NULL))
|
2009-09-24 22:54:07 +00:00
|
|
|
logger(LOG_WARNING, "Could not start %s service: %s", identname, winerror(GetLastError()));
|
2003-08-02 20:50:38 +00:00
|
|
|
else
|
2009-09-24 22:54:07 +00:00
|
|
|
logger(LOG_INFO, "%s service started", identname);
|
2003-08-02 20:50:38 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
DWORD WINAPI controlhandler(DWORD request, DWORD type, LPVOID boe, LPVOID bah) {
|
|
|
|
switch(request) {
|
2008-12-11 15:21:40 +00:00
|
|
|
case SERVICE_CONTROL_INTERROGATE:
|
|
|
|
SetServiceStatus(statushandle, &status);
|
|
|
|
return NO_ERROR;
|
2003-08-02 20:50:38 +00:00
|
|
|
case SERVICE_CONTROL_STOP:
|
2009-09-24 22:54:07 +00:00
|
|
|
logger(LOG_NOTICE, "Got %s request", "SERVICE_CONTROL_STOP");
|
2003-08-02 20:50:38 +00:00
|
|
|
break;
|
|
|
|
case SERVICE_CONTROL_SHUTDOWN:
|
2009-09-24 22:54:07 +00:00
|
|
|
logger(LOG_NOTICE, "Got %s request", "SERVICE_CONTROL_SHUTDOWN");
|
2003-08-02 20:50:38 +00:00
|
|
|
break;
|
|
|
|
default:
|
2009-09-24 22:54:07 +00:00
|
|
|
logger(LOG_WARNING, "Got unexpected request %d", request);
|
2003-08-02 20:50:38 +00:00
|
|
|
return ERROR_CALL_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
2007-05-18 09:51:54 +00:00
|
|
|
event_loopexit(NULL);
|
|
|
|
status.dwWaitHint = 30000;
|
|
|
|
status.dwCurrentState = SERVICE_STOP_PENDING;
|
|
|
|
SetServiceStatus(statushandle, &status);
|
|
|
|
return NO_ERROR;
|
2003-08-02 20:50:38 +00:00
|
|
|
}
|
|
|
|
|
2007-05-18 10:00:00 +00:00
|
|
|
VOID WINAPI run_service(DWORD argc, LPTSTR* argv) {
|
2003-08-02 20:50:38 +00:00
|
|
|
int err = 1;
|
|
|
|
extern int main2(int argc, char **argv);
|
2000-11-16 22:12:23 +00:00
|
|
|
|
|
|
|
|
2003-08-02 20:50:38 +00:00
|
|
|
status.dwServiceType = SERVICE_WIN32;
|
|
|
|
status.dwControlsAccepted = SERVICE_ACCEPT_STOP | SERVICE_ACCEPT_SHUTDOWN;
|
|
|
|
status.dwWin32ExitCode = 0;
|
|
|
|
status.dwServiceSpecificExitCode = 0;
|
|
|
|
status.dwCheckPoint = 0;
|
2000-11-24 23:13:07 +00:00
|
|
|
|
2003-08-02 20:50:38 +00:00
|
|
|
statushandle = RegisterServiceCtrlHandlerEx(identname, controlhandler, NULL);
|
2002-09-09 21:25:28 +00:00
|
|
|
|
2003-08-02 20:50:38 +00:00
|
|
|
if (!statushandle) {
|
2009-09-24 22:54:07 +00:00
|
|
|
logger(LOG_ERR, "System call `%s' failed: %s", "RegisterServiceCtrlHandlerEx", winerror(GetLastError()));
|
2003-08-02 20:50:38 +00:00
|
|
|
err = 1;
|
|
|
|
} else {
|
2003-08-08 12:55:05 +00:00
|
|
|
status.dwWaitHint = 30000;
|
2003-08-03 12:38:18 +00:00
|
|
|
status.dwCurrentState = SERVICE_START_PENDING;
|
|
|
|
SetServiceStatus(statushandle, &status);
|
|
|
|
|
2003-08-08 12:55:05 +00:00
|
|
|
status.dwWaitHint = 0;
|
2003-08-03 12:38:18 +00:00
|
|
|
status.dwCurrentState = SERVICE_RUNNING;
|
2003-08-02 20:50:38 +00:00
|
|
|
SetServiceStatus(statushandle, &status);
|
|
|
|
|
|
|
|
err = main2(argc, argv);
|
|
|
|
|
2003-08-08 12:55:05 +00:00
|
|
|
status.dwWaitHint = 0;
|
2003-08-02 20:50:38 +00:00
|
|
|
status.dwCurrentState = SERVICE_STOPPED;
|
2003-08-03 12:38:18 +00:00
|
|
|
//status.dwWin32ExitCode = err;
|
2003-08-02 20:50:38 +00:00
|
|
|
SetServiceStatus(statushandle, &status);
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool init_service(void) {
|
|
|
|
SERVICE_TABLE_ENTRY services[] = {
|
|
|
|
{identname, run_service},
|
|
|
|
{NULL, NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
if(!StartServiceCtrlDispatcher(services)) {
|
|
|
|
if(GetLastError() == ERROR_FAILED_SERVICE_CONTROLLER_CONNECT) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else
|
2009-09-24 22:54:07 +00:00
|
|
|
logger(LOG_ERR, "System call `%s' failed: %s", "StartServiceCtrlDispatcher", winerror(GetLastError()));
|
2003-08-02 20:50:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2000-11-16 22:12:23 +00:00
|
|
|
}
|
2003-08-02 20:50:38 +00:00
|
|
|
#endif
|
2000-11-16 22:12:23 +00:00
|
|
|
|
|
|
|
/*
|
2007-05-19 14:13:21 +00:00
|
|
|
Detach from current terminal
|
2000-11-16 17:54:29 +00:00
|
|
|
*/
|
2007-05-18 10:00:00 +00:00
|
|
|
bool detach(void) {
|
2003-07-28 22:06:09 +00:00
|
|
|
#ifndef HAVE_MINGW
|
2011-06-03 13:50:20 +00:00
|
|
|
signal(SIGPIPE, SIG_IGN);
|
|
|
|
signal(SIGUSR1, SIG_IGN);
|
|
|
|
signal(SIGUSR2, SIG_IGN);
|
|
|
|
signal(SIGWINCH, SIG_IGN);
|
2011-06-02 20:14:53 +00:00
|
|
|
|
2003-07-21 14:47:43 +00:00
|
|
|
closelogger();
|
2003-08-02 20:50:38 +00:00
|
|
|
#endif
|
2002-09-09 21:25:28 +00:00
|
|
|
|
|
|
|
if(do_detach) {
|
2003-08-02 20:50:38 +00:00
|
|
|
#ifndef HAVE_MINGW
|
2003-07-22 20:55:21 +00:00
|
|
|
if(daemon(0, 0)) {
|
2009-09-24 22:54:07 +00:00
|
|
|
fprintf(stderr, "Couldn't detach from terminal: %s",
|
2002-09-09 21:25:28 +00:00
|
|
|
strerror(errno));
|
2003-07-22 20:55:21 +00:00
|
|
|
return false;
|
2002-09-09 21:25:28 +00:00
|
|
|
}
|
2003-08-02 20:50:38 +00:00
|
|
|
#else
|
|
|
|
if(!statushandle)
|
|
|
|
exit(install_service());
|
2003-07-28 22:06:09 +00:00
|
|
|
#endif
|
2003-08-02 20:50:38 +00:00
|
|
|
}
|
2000-11-25 13:33:33 +00:00
|
|
|
|
2003-07-06 22:11:37 +00:00
|
|
|
openlogger(identname, use_logfile?LOGMODE_FILE:(do_detach?LOGMODE_SYSLOG:LOGMODE_STDERR));
|
2002-09-09 21:25:28 +00:00
|
|
|
|
2009-09-24 22:54:07 +00:00
|
|
|
logger(LOG_NOTICE, "tincd %s (%s %s) starting, debug level %d",
|
2003-07-06 22:11:37 +00:00
|
|
|
VERSION, __DATE__, __TIME__, debug_level);
|
2002-09-09 21:25:28 +00:00
|
|
|
|
2003-07-22 20:55:21 +00:00
|
|
|
return true;
|
2000-11-16 17:54:29 +00:00
|
|
|
}
|
|
|
|
|
2007-05-18 10:00:00 +00:00
|
|
|
bool execute_script(const char *name, char **envp) {
|
2003-08-08 14:48:33 +00:00
|
|
|
#ifdef HAVE_SYSTEM
|
2003-08-16 12:11:11 +00:00
|
|
|
int status, len;
|
2010-11-16 15:45:36 +00:00
|
|
|
char *scriptname;
|
2004-06-14 14:32:10 +00:00
|
|
|
int i;
|
2002-09-09 21:25:28 +00:00
|
|
|
|
2003-08-08 19:43:47 +00:00
|
|
|
#ifndef HAVE_MINGW
|
2009-09-08 16:18:36 +00:00
|
|
|
len = xasprintf(&scriptname, "\"%s/%s\"", confbase, name);
|
2003-08-16 12:11:11 +00:00
|
|
|
#else
|
2009-09-08 16:18:36 +00:00
|
|
|
len = xasprintf(&scriptname, "\"%s/%s.bat\"", confbase, name);
|
2003-08-16 12:11:11 +00:00
|
|
|
#endif
|
|
|
|
if(len < 0)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
scriptname[len - 1] = '\0';
|
2003-08-08 22:45:46 +00:00
|
|
|
|
2009-09-10 17:51:08 +00:00
|
|
|
#ifndef HAVE_TUNEMU
|
2002-09-09 21:25:28 +00:00
|
|
|
/* First check if there is a script */
|
|
|
|
|
2009-09-14 22:36:07 +00:00
|
|
|
if(access(scriptname + 1, F_OK)) {
|
2007-02-14 09:21:34 +00:00
|
|
|
free(scriptname);
|
2003-07-22 20:55:21 +00:00
|
|
|
return true;
|
2007-02-14 09:21:34 +00:00
|
|
|
}
|
2009-09-10 17:51:08 +00:00
|
|
|
#endif
|
2002-09-09 21:25:28 +00:00
|
|
|
|
2009-09-24 22:54:07 +00:00
|
|
|
ifdebug(STATUS) logger(LOG_INFO, "Executing script %s", name);
|
2003-08-08 22:45:46 +00:00
|
|
|
|
2003-08-08 19:56:11 +00:00
|
|
|
#ifdef HAVE_PUTENV
|
2003-08-08 14:48:33 +00:00
|
|
|
/* Set environment */
|
|
|
|
|
2004-06-14 14:32:10 +00:00
|
|
|
for(i = 0; envp[i]; i++)
|
|
|
|
putenv(envp[i]);
|
2003-08-08 19:56:11 +00:00
|
|
|
#endif
|
2002-09-09 21:25:28 +00:00
|
|
|
|
2003-08-16 12:11:11 +00:00
|
|
|
scriptname[len - 1] = '\"';
|
2003-08-08 14:48:33 +00:00
|
|
|
status = system(scriptname);
|
|
|
|
|
|
|
|
free(scriptname);
|
|
|
|
|
2004-06-14 14:32:10 +00:00
|
|
|
/* Unset environment */
|
|
|
|
|
|
|
|
for(i = 0; envp[i]; i++) {
|
|
|
|
char *e = strchr(envp[i], '=');
|
2004-10-01 18:24:41 +00:00
|
|
|
if(e) {
|
2010-11-16 15:45:36 +00:00
|
|
|
char p[e - envp[i] + 1];
|
2004-10-01 18:24:41 +00:00
|
|
|
strncpy(p, envp[i], e - envp[i]);
|
|
|
|
p[e - envp[i]] = '\0';
|
|
|
|
putenv(p);
|
|
|
|
}
|
2004-06-14 14:32:10 +00:00
|
|
|
}
|
2003-08-08 14:48:33 +00:00
|
|
|
|
2003-08-08 19:43:47 +00:00
|
|
|
#ifdef WEXITSTATUS
|
2003-08-08 14:48:33 +00:00
|
|
|
if(status != -1) {
|
|
|
|
if(WIFEXITED(status)) { /* Child exited by itself */
|
|
|
|
if(WEXITSTATUS(status)) {
|
2009-09-24 22:54:07 +00:00
|
|
|
logger(LOG_ERR, "Script %s exited with non-zero status %d",
|
2003-08-08 22:11:54 +00:00
|
|
|
name, WEXITSTATUS(status));
|
2003-07-22 20:55:21 +00:00
|
|
|
return false;
|
2002-09-09 21:25:28 +00:00
|
|
|
}
|
2003-08-08 14:48:33 +00:00
|
|
|
} else if(WIFSIGNALED(status)) { /* Child was killed by a signal */
|
2009-09-24 22:54:07 +00:00
|
|
|
logger(LOG_ERR, "Script %s was killed by signal %d (%s)",
|
2003-08-08 14:48:33 +00:00
|
|
|
name, WTERMSIG(status), strsignal(WTERMSIG(status)));
|
|
|
|
return false;
|
|
|
|
} else { /* Something strange happened */
|
2009-09-24 22:54:07 +00:00
|
|
|
logger(LOG_ERR, "Script %s terminated abnormally", name);
|
2003-07-22 20:55:21 +00:00
|
|
|
return false;
|
2002-09-09 21:25:28 +00:00
|
|
|
}
|
2003-08-08 14:48:33 +00:00
|
|
|
} else {
|
2009-09-24 22:54:07 +00:00
|
|
|
logger(LOG_ERR, "System call `%s' failed: %s", "system", strerror(errno));
|
2003-08-08 14:48:33 +00:00
|
|
|
return false;
|
2002-09-09 21:25:28 +00:00
|
|
|
}
|
2003-08-08 19:43:47 +00:00
|
|
|
#endif
|
2003-07-28 22:06:09 +00:00
|
|
|
#endif
|
2003-08-08 14:48:33 +00:00
|
|
|
return true;
|
2000-11-16 17:54:29 +00:00
|
|
|
}
|