|
|
|
/*
|
|
|
|
* OpenVPN-GUI -- A Windows GUI for OpenVPN.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2004 Mathias Sundman <mathias@nilings.se>
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program (see the file COPYING included with this
|
|
|
|
* distribution); if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include <config.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "service.h"
|
|
|
|
#include "options.h"
|
|
|
|
#include "main.h"
|
|
|
|
#include "misc.h"
|
|
|
|
#include "openvpn-gui-res.h"
|
|
|
|
#include "localization.h"
|
|
|
|
|
|
|
|
#define OPENVPN_SERVICE_NAME_OVPN3 L"ovpnagent"
|
|
|
|
#define OPENVPN_SERVICE_NAME_OVPN2 L"OpenVPNServiceInteractive"
|
|
|
|
|
|
|
|
extern options_t o;
|
|
|
|
|
|
|
|
bool
|
|
|
|
CheckIServiceStatus(BOOL warn)
|
|
|
|
{
|
|
|
|
SC_HANDLE schSCManager = NULL;
|
|
|
|
SC_HANDLE schService = NULL;
|
|
|
|
SERVICE_STATUS ssStatus;
|
|
|
|
BOOL ret = false;
|
|
|
|
|
|
|
|
/* Open a handle to the SC Manager database. */
|
|
|
|
schSCManager = OpenSCManager(NULL, NULL, SC_MANAGER_CONNECT);
|
|
|
|
|
|
|
|
if (NULL == schSCManager)
|
|
|
|
{
|
|
|
|
return(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
schService = OpenService(schSCManager, o.ovpn_engine == OPENVPN_ENGINE_OVPN3 ?
|
|
|
|
OPENVPN_SERVICE_NAME_OVPN3 : OPENVPN_SERVICE_NAME_OVPN2, SERVICE_QUERY_STATUS);
|
|
|
|
|
|
|
|
if (schService == NULL
|
|
|
|
&& GetLastError() == ERROR_SERVICE_DOES_NOT_EXIST)
|
|
|
|
{
|
|
|
|
/* warn that iservice is not installed */
|
|
|
|
if (warn)
|
|
|
|
{
|
|
|
|
ShowLocalizedMsg(IDS_ERR_INSTALL_ISERVICE);
|
|
|
|
}
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!QueryServiceStatus(schService, &ssStatus))
|
|
|
|
{
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ssStatus.dwCurrentState != SERVICE_RUNNING)
|
|
|
|
{
|
|
|
|
/* warn that iservice is not started */
|
|
|
|
if (warn)
|
|
|
|
{
|
|
|
|
if (IsUserAdmin())
|
|
|
|
{
|
|
|
|
ShowLocalizedMsg(IDS_ERR_NOTSTARTED_ISERVICE_ADM);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ShowLocalizedMsg(IDS_ERR_NOTSTARTED_ISERVICE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
ret = true;
|
|
|
|
|
|
|
|
out:
|
|
|
|
if (schService)
|
|
|
|
{
|
|
|
|
CloseServiceHandle(schService);
|
|
|
|
}
|
|
|
|
if (schSCManager)
|
|
|
|
{
|
|
|
|
CloseServiceHandle(schSCManager);
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
VOID
|
|
|
|
CheckServiceStatus()
|
|
|
|
{
|
|
|
|
SC_HANDLE schSCManager = NULL;
|
|
|
|
SC_HANDLE schService = NULL;
|
|
|
|
SERVICE_STATUS ssStatus;
|
|
|
|
|
|
|
|
/* Open a handle to the SC Manager database. */
|
|
|
|
schSCManager = OpenSCManager(
|
|
|
|
NULL, /* local machine */
|
|
|
|
NULL, /* ServicesActive database */
|
|
|
|
SC_MANAGER_CONNECT); /* Connect rights */
|
|
|
|
|
|
|
|
if (NULL == schSCManager)
|
|
|
|
{
|
|
|
|
o.service_state = service_noaccess;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
schService = OpenService(
|
|
|
|
schSCManager, /* SCM database */
|
|
|
|
_T("OpenVPNService"), /* service name */
|
|
|
|
SERVICE_QUERY_STATUS);
|
|
|
|
|
|
|
|
if (schService == NULL)
|
|
|
|
{
|
|
|
|
o.service_state = service_noaccess;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!QueryServiceStatus(
|
|
|
|
schService, /* handle to service */
|
|
|
|
&ssStatus) ) /* address of status information structure */
|
|
|
|
{
|
|
|
|
/* query failed */
|
|
|
|
o.service_state = service_noaccess;
|
|
|
|
MsgToEventLog(EVENTLOG_ERROR_TYPE, LoadLocalizedString(IDS_ERR_QUERY_SERVICE));
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ssStatus.dwCurrentState == SERVICE_RUNNING)
|
|
|
|
{
|
|
|
|
o.service_state = service_connected;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
o.service_state = service_disconnected;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
out:
|
|
|
|
if (schService)
|
|
|
|
{
|
|
|
|
CloseServiceHandle(schService);
|
|
|
|
}
|
|
|
|
if (schSCManager)
|
|
|
|
{
|
|
|
|
CloseServiceHandle(schSCManager);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Attempt to start OpenVPN Automatc Service */
|
|
|
|
void
|
|
|
|
StartAutomaticService(void)
|
|
|
|
{
|
|
|
|
SC_HANDLE schSCManager = NULL;
|
|
|
|
SC_HANDLE schService = NULL;
|
|
|
|
|
|
|
|
schSCManager = OpenSCManager(NULL, NULL, SC_MANAGER_CONNECT);
|
|
|
|
|
|
|
|
if (schSCManager)
|
|
|
|
{
|
|
|
|
schService = OpenService(schSCManager, L"OpenVPNService", SERVICE_START);
|
|
|
|
|
|
|
|
if (schService)
|
|
|
|
{
|
|
|
|
StartService(schService, 0, NULL);
|
|
|
|
CloseServiceHandle(schService);
|
|
|
|
}
|
|
|
|
|
|
|
|
CloseServiceHandle(schSCManager);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Returns the processId of the Interactive Service or zero on error
|
|
|
|
* which includes service not running.
|
|
|
|
*/
|
|
|
|
ULONG
|
|
|
|
GetServicePid(void)
|
|
|
|
{
|
|
|
|
SC_HANDLE schManager;
|
|
|
|
SC_HANDLE schService;
|
|
|
|
ULONG pid = 0;
|
|
|
|
|
|
|
|
schManager = OpenSCManager(NULL, NULL, SC_MANAGER_CONNECT);
|
|
|
|
if (schManager)
|
|
|
|
{
|
|
|
|
schService = OpenService(schManager, o.ovpn_engine == OPENVPN_ENGINE_OVPN3 ?
|
|
|
|
OPENVPN_SERVICE_NAME_OVPN3 : OPENVPN_SERVICE_NAME_OVPN2, SERVICE_QUERY_STATUS);
|
|
|
|
if (schService)
|
|
|
|
{
|
|
|
|
SERVICE_STATUS_PROCESS ssp = {0};
|
|
|
|
DWORD nbytes = 0;
|
|
|
|
if (QueryServiceStatusEx(schService, SC_STATUS_PROCESS_INFO, (BYTE *)&ssp, sizeof(ssp), &nbytes)
|
|
|
|
&& ssp.dwCurrentState == SERVICE_RUNNING)
|
|
|
|
{
|
|
|
|
pid = ssp.dwProcessId;
|
|
|
|
}
|
|
|
|
CloseServiceHandle(schService);
|
|
|
|
}
|
|
|
|
CloseServiceHandle(schManager);
|
|
|
|
}
|
|
|
|
if (pid == 0)
|
|
|
|
{
|
|
|
|
MsgToEventLog(EVENTLOG_ERROR_TYPE, L"%hs:%d Failed to get service process id: (error = 0x%08x)",
|
|
|
|
__func__, __LINE__, GetLastError());
|
|
|
|
}
|
|
|
|
return pid;
|
|
|
|
}
|