Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/SoftEtherVPN/SoftEtherVPN_Stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/Cedar/IPsec_Win7.c')
-rw-r--r--src/Cedar/IPsec_Win7.c530
1 files changed, 530 insertions, 0 deletions
diff --git a/src/Cedar/IPsec_Win7.c b/src/Cedar/IPsec_Win7.c
new file mode 100644
index 00000000..e04a81e2
--- /dev/null
+++ b/src/Cedar/IPsec_Win7.c
@@ -0,0 +1,530 @@
+// SoftEther VPN Source Code
+// Cedar Communication Module
+//
+// SoftEther VPN Server, Client and Bridge are free software under GPLv2.
+//
+// Copyright (c) 2012-2014 Daiyuu Nobori.
+// Copyright (c) 2012-2014 SoftEther VPN Project, University of Tsukuba, Japan.
+// Copyright (c) 2012-2014 SoftEther Corporation.
+//
+// All Rights Reserved.
+//
+// http://www.softether.org/
+//
+// Author: Daiyuu Nobori
+// Comments: Tetsuo Sugiyama, Ph.D.
+//
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// version 2 as published by the Free Software Foundation.
+//
+// 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 version 2
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+//
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+// IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+// CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+// TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+// SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+// THE LICENSE AGREEMENT IS ATTACHED ON THE SOURCE-CODE PACKAGE
+// AS "LICENSE.TXT" FILE. READ THE TEXT FILE IN ADVANCE TO USE THE SOFTWARE.
+//
+//
+// THIS SOFTWARE IS DEVELOPED IN JAPAN, AND DISTRIBUTED FROM JAPAN,
+// UNDER JAPANESE LAWS. YOU MUST AGREE IN ADVANCE TO USE, COPY, MODIFY,
+// MERGE, PUBLISH, DISTRIBUTE, SUBLICENSE, AND/OR SELL COPIES OF THIS
+// SOFTWARE, THAT ANY JURIDICAL DISPUTES WHICH ARE CONCERNED TO THIS
+// SOFTWARE OR ITS CONTENTS, AGAINST US (SOFTETHER PROJECT, SOFTETHER
+// CORPORATION, DAIYUU NOBORI OR OTHER SUPPLIERS), OR ANY JURIDICAL
+// DISPUTES AGAINST US WHICH ARE CAUSED BY ANY KIND OF USING, COPYING,
+// MODIFYING, MERGING, PUBLISHING, DISTRIBUTING, SUBLICENSING, AND/OR
+// SELLING COPIES OF THIS SOFTWARE SHALL BE REGARDED AS BE CONSTRUED AND
+// CONTROLLED BY JAPANESE LAWS, AND YOU MUST FURTHER CONSENT TO
+// EXCLUSIVE JURISDICTION AND VENUE IN THE COURTS SITTING IN TOKYO,
+// JAPAN. YOU MUST WAIVE ALL DEFENSES OF LACK OF PERSONAL JURISDICTION
+// AND FORUM NON CONVENIENS. PROCESS MAY BE SERVED ON EITHER PARTY IN
+// THE MANNER AUTHORIZED BY APPLICABLE LAW OR COURT RULE.
+//
+// USE ONLY IN JAPAN. DO NOT USE IT IN OTHER COUNTRIES. IMPORTING THIS
+// SOFTWARE INTO OTHER COUNTRIES IS AT YOUR OWN RISK. SOME COUNTRIES
+// PROHIBIT ENCRYPTED COMMUNICATIONS. USING THIS SOFTWARE IN OTHER
+// COUNTRIES MIGHT BE RESTRICTED.
+//
+//
+// DEAR SECURITY EXPERTS
+// ---------------------
+//
+// If you find a bug or a security vulnerability please kindly inform us
+// about the problem immediately so that we can fix the security problem
+// to protect a lot of users around the world as soon as possible.
+//
+// Our e-mail address for security reports is:
+// softether-vpn-security [at] softether.org
+//
+// Please note that the above e-mail address is not a technical support
+// inquiry address. If you need technical assistance, please visit
+// http://www.softether.org/ and ask your question on the users forum.
+//
+// Thank you for your cooperation.
+
+
+// IPsec_Win7.c
+// Initialize the helper module for Windows 7 / Windows 8 / Windows Vista / Windows Server 2008 / Windows Server 2008 R2 / Windows Server 2012
+
+#include <GlobalConst.h>
+
+#ifdef WIN32
+
+#define _WIN32_WINNT 0x0600
+#define WINVER 0x0600
+#define INITGUID
+#include <winsock2.h>
+#include <Ws2tcpip.h>
+#include <windows.h>
+#include <wincrypt.h>
+#include <wininet.h>
+#include <shlobj.h>
+#include <commctrl.h>
+#include <Dbghelp.h>
+#include <Fwpmu.h>
+#include <Fwpmtypes.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <wchar.h>
+#include <stdarg.h>
+#include <time.h>
+#include <errno.h>
+#include <Mayaqua/Mayaqua.h>
+#include <Cedar/Cedar.h>
+#include "IPsec_Win7Inner.h"
+#include <Wfp/Wfp.h>
+
+static IPSEC_WIN7_FUNCTIONS *api = NULL;
+static HINSTANCE hDll = NULL;
+
+
+// Initialize the IPsec helper module for Windows 7
+IPSEC_WIN7 *IPsecWin7Init()
+{
+ IPSEC_WIN7 *w;
+ FWPM_SESSION0 session;
+ UINT ret;
+ FWPM_FILTER0 filter;
+ UINT64 weight = MAXUINT64;
+
+ Debug("IPsecWin7Init()\n");
+
+ if (MsIsVista() == false)
+ {
+ return NULL;
+ }
+
+ if (MsIsAdmin() == false)
+ {
+ return NULL;
+ }
+
+ if (IPsecWin7InitApi() == false)
+ {
+ return NULL;
+ }
+
+ // Driver Initialization
+ if (IPsecWin7InitDriver() == false)
+ {
+ return NULL;
+ }
+
+ // Open the WFP (Dynamic Session)
+ Zero(&session, sizeof(session));
+ session.flags = FWPM_SESSION_FLAG_DYNAMIC;
+
+ w = ZeroMalloc(sizeof(IPSEC_WIN7));
+ ret = api->FwpmEngineOpen0(NULL, RPC_C_AUTHN_DEFAULT, NULL, &session, &w->hEngine);
+ if (ret)
+ {
+ Debug("FwpmEngineOpen0 Failed.\n");
+ IPsecWin7Free(w);
+ return NULL;
+ }
+
+ // Create the Filter (IPv4)
+ Zero(&filter, sizeof(filter));
+ filter.flags = FWPM_FILTER_FLAG_PERMIT_IF_CALLOUT_UNREGISTERED;
+ filter.layerKey = FWPM_LAYER_INBOUND_IPPACKET_V4;
+ filter.weight.type = FWP_UINT64;
+ filter.weight.uint64 = &weight;
+ filter.action.type = FWP_ACTION_CALLOUT_UNKNOWN;
+ filter.action.calloutKey = GUID_WFP_CALLOUT_DRIVER_V4;
+ filter.displayData.name = IPSEC_WIN7_FILTER_TITLE_V4;
+ ret = api->FwpmFilterAdd0(w->hEngine, &filter, NULL, &w->FilterIPv4Id);
+ if (ret)
+ {
+ Debug("FwpmFilterAdd0 for IPv4 Failed: 0x%X\n", ret);
+ }
+ else
+ {
+ Debug("FwpmFilterAdd0 for IPv4 Ok.\n");
+ }
+
+ // Create the Filter (IPv6)
+ Zero(&filter, sizeof(filter));
+ filter.flags = FWPM_FILTER_FLAG_PERMIT_IF_CALLOUT_UNREGISTERED;
+ filter.layerKey = FWPM_LAYER_INBOUND_IPPACKET_V6;
+ filter.weight.type = FWP_UINT64;
+ filter.weight.uint64 = &weight;
+ filter.action.type = FWP_ACTION_CALLOUT_UNKNOWN;
+ filter.action.calloutKey = GUID_WFP_CALLOUT_DRIVER_V6;
+ filter.displayData.name = IPSEC_WIN7_FILTER_TITLE_V6;
+ ret = api->FwpmFilterAdd0(w->hEngine, &filter, NULL, &w->FilterIPv6Id);
+ if (ret)
+ {
+ Debug("FwpmFilterAdd0 for IPv6 Failed: 0x%X\n", ret);
+ }
+ else
+ {
+ Debug("FwpmFilterAdd0 for IPv6 Ok.\n");
+ }
+
+ // Open the device of the driver as a file
+ w->hDriverFile = CreateFileA(WFP_DEVICE_FILE_NAME, GENERIC_READ | GENERIC_WRITE,
+ FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, OPEN_EXISTING, 0, NULL);
+
+ if (w->hDriverFile == NULL || w->hDriverFile == INVALID_HANDLE_VALUE)
+ {
+ Debug("CreateFileA(\"%s\") Failed.\n", WFP_DEVICE_FILE_NAME);
+ IPsecWin7Free(w);
+ return NULL;
+ }
+
+ IPsecWin7UpdateHostIPAddressList(w);
+
+ Debug("IPsecWin7Init() Ok.\n");
+
+ return w;
+}
+
+// Update the IP address list of the host
+void IPsecWin7UpdateHostIPAddressList(IPSEC_WIN7 *w)
+{
+ LIST *o;
+ UINT i;
+ BUF *buf;
+ UINT retsize;
+ // Validate arguments
+ if (w == NULL)
+ {
+ return;
+ }
+
+ o = GetHostIPAddressList();
+ if (o == NULL)
+ {
+ return;
+ }
+
+ buf = NewBuf();
+
+ for (i = 0;i < LIST_NUM(o);i++)
+ {
+ IP *ip = LIST_DATA(o, i);
+ WFP_LOCAL_IP a;
+
+ Zero(&a, sizeof(a));
+
+ // Exclude any IPs or localhost IP
+ if (IsZeroIP(ip) == false && IsLocalHostIP(ip) == false)
+ {
+ if (IsIP4(ip))
+ {
+ a.IpVersion = 4;
+ Copy(a.IpAddress.IPv4Address, ip->addr, 4);
+ }
+ else
+ {
+ a.IpVersion = 6;
+ Copy(a.IpAddress.IPv6Address, ip->ipv6_addr, 16);
+ }
+
+ WriteBuf(buf, &a, sizeof(WFP_LOCAL_IP));
+ }
+ }
+
+ if (WriteFile(w->hDriverFile, buf->Buf, buf->Size, &retsize, NULL) == false)
+ {
+ Debug("WriteFile to the driver failed. %u\n", GetLastError());
+ }
+
+ FreeHostIPAddressList(o);
+
+ FreeBuf(buf);
+}
+
+// Release the module
+void IPsecWin7Free(IPSEC_WIN7 *w)
+{
+ // Validate arguments
+ if (w == NULL)
+ {
+ return;
+ }
+
+ if (w->hEngine != NULL)
+ {
+ api->FwpmEngineClose0(w->hEngine);
+ }
+
+ if (w->hDriverFile != NULL && w->hDriverFile != INVALID_HANDLE_VALUE)
+ {
+ CloseHandle(w->hDriverFile);
+ }
+
+ Free(w);
+}
+
+// Initialize and start the driver
+bool IPsecWin7InitDriver()
+{
+ bool ret;
+ void *lock = MsInitGlobalLock("IPsecWin7InitDriver", false);
+ void *p = MsDisableWow64FileSystemRedirection();
+
+ MsGlobalLock(lock);
+ {
+ ret = IPsecWin7InitDriverInner();
+ }
+ MsGlobalUnlock(lock);
+
+ MsFreeGlobalLock(lock);
+
+ MsRestoreWow64FileSystemRedirection(p);
+
+ Debug("IPsecWin7InitDriver: %u\n", ret);
+
+ return ret;
+}
+bool IPsecWin7InitDriverInner()
+{
+ char sys_filename[MAX_PATH];
+ bool install_driver = true;
+ HANDLE hEngine;
+ UINT ret;
+ FWPM_SESSION0 session;
+ UINT id;
+ FWPM_CALLOUT0 callout;
+
+ Format(sys_filename, sizeof(sys_filename), IPSEC_WIN7_DST_SYS, MsGetSystem32Dir());
+
+ if (IsFileExists(sys_filename) && MsIsServiceInstalled(IPSEC_WIN7_DRIVER_NAME))
+ {
+ if (GetCurrentIPsecWin7DriverBuild() >= CEDAR_BUILD)
+ {
+ // Not to install since the latest version has been already installed
+ install_driver = false;
+ }
+ }
+
+ if (install_driver)
+ {
+ char *src_filename = IPSEC_WIN7_SRC_SYS_X86;
+ if (MsIsX64())
+ {
+ src_filename = IPSEC_WIN7_SRC_SYS_X64;
+ }
+
+ // Copy the driver
+ if (FileCopy(src_filename, sys_filename) == false)
+ {
+ Debug("%s copy failed.\n", sys_filename);
+ return false;
+ }
+ Debug("%s copied.\n", sys_filename);
+
+ // Set the build number
+ SetCurrentIPsecWin7DriverBuild();
+ }
+
+ // Get whether the device drivers is already installed
+ if (MsIsServiceInstalled(IPSEC_WIN7_DRIVER_NAME) == false)
+ {
+ wchar_t sys_filename_w[MAX_PATH];
+
+ StrToUni(sys_filename_w, sizeof(sys_filename_w), sys_filename);
+
+ // Run a new installation
+ if (MsInstallDeviceDriverW(IPSEC_WIN7_DRIVER_NAME, IPSEC_WIN7_DRIVER_TITLE,
+ sys_filename_w, NULL) == false)
+ {
+ // Installation failed
+ Debug("MsInstallDeviceDriverW failed.\n");
+ return false;
+ }
+ }
+
+ // Start if the device driver is stopped
+ if (MsIsServiceRunning(IPSEC_WIN7_DRIVER_NAME) == false)
+ {
+ if (MsStartService(IPSEC_WIN7_DRIVER_NAME) == false)
+ {
+ // Start failure
+ Debug("MsStartService failed.\n");
+ return false;
+ }
+
+ Debug("%s service started.\n", IPSEC_WIN7_DRIVER_NAME);
+ }
+ else
+ {
+ Debug("%s service was already started.\n", IPSEC_WIN7_DRIVER_NAME);
+ }
+
+ // Open the WFP
+ Zero(&session, sizeof(session));
+
+ ret = api->FwpmEngineOpen0(NULL, RPC_C_AUTHN_DEFAULT, NULL, &session, &hEngine);
+ if (ret)
+ {
+ Debug("FwpmEngineOpen0 failed.\n");
+ return false;
+ }
+
+ // Create the Callout Driver (IPv4)
+ Zero(&callout, sizeof(callout));
+ callout.calloutKey = GUID_WFP_CALLOUT_DRIVER_V4;
+ callout.applicableLayer = FWPM_LAYER_INBOUND_IPPACKET_V4;
+ callout.displayData.name = IPSEC_WIN7_DRIVER_TITLE_V4;
+ ret = api->FwpmCalloutAdd0(hEngine, &callout, NULL, &id);
+ if (ret)
+ {
+ Debug("FwpmCalloutAdd0 for IPv4 Failed: 0x%X\n", ret);
+ }
+ else
+ {
+ Debug("FwpmCalloutAdd0 for IPv4 Ok.\n");
+ }
+
+ // Create the Callout Driver (IPv6)
+ Zero(&callout, sizeof(callout));
+ callout.calloutKey = GUID_WFP_CALLOUT_DRIVER_V6;
+ callout.applicableLayer = FWPM_LAYER_INBOUND_IPPACKET_V6;
+ callout.displayData.name = IPSEC_WIN7_DRIVER_TITLE_V6;
+ ret = api->FwpmCalloutAdd0(hEngine, &callout, NULL, &id);
+ if (ret)
+ {
+ Debug("FwpmCalloutAdd0 for IPv6 Failed: 0x%X\n", ret);
+ }
+ else
+ {
+ Debug("FwpmCalloutAdd0 for IPv6 Ok.\n");
+ }
+
+ api->FwpmEngineClose0(hEngine);
+
+ return true;
+}
+
+// Write the build number of the current driver
+void SetCurrentIPsecWin7DriverBuild()
+{
+ MsRegWriteInt(REG_LOCAL_MACHINE, IPSEC_WIN7_DRIVER_REGKEY, IPSEC_WIN7_DRIVER_BUILDNUMBER, CEDAR_BUILD);
+}
+
+// Get the build number of the current driver
+UINT GetCurrentIPsecWin7DriverBuild()
+{
+ return MsRegReadInt(REG_LOCAL_MACHINE, IPSEC_WIN7_DRIVER_REGKEY, IPSEC_WIN7_DRIVER_BUILDNUMBER);
+}
+
+// Initialization of the API
+bool IPsecWin7InitApi()
+{
+ if (api != NULL)
+ {
+ return true;
+ }
+
+ if (hDll == NULL)
+ {
+ hDll = LoadLibraryA("FWPUCLNT.DLL");
+ }
+
+ if (hDll == NULL)
+ {
+ return false;
+ }
+
+ api = malloc(sizeof(IPSEC_WIN7_FUNCTIONS));
+ Zero(api, sizeof(IPSEC_WIN7_FUNCTIONS));
+
+ api->FwpmEngineOpen0 =
+ (DWORD (__stdcall *)(const wchar_t *,UINT32,SEC_WINNT_AUTH_IDENTITY_W *,const FWPM_SESSION0 *,HANDLE *))
+ GetProcAddress(hDll, "FwpmEngineOpen0");
+
+ api->FwpmEngineClose0 =
+ (DWORD (__stdcall *)(HANDLE))
+ GetProcAddress(hDll, "FwpmEngineClose0");
+
+ api->FwpmFreeMemory0 =
+ (void (__stdcall *)(void **))
+ GetProcAddress(hDll, "FwpmFreeMemory0");
+
+ api->FwpmFilterAdd0 =
+ (DWORD (__stdcall *)(HANDLE,const FWPM_FILTER0 *,PSECURITY_DESCRIPTOR,UINT64 *))
+ GetProcAddress(hDll, "FwpmFilterAdd0");
+
+ api->IPsecSaContextCreate0 =
+ (DWORD (__stdcall *)(HANDLE,const IPSEC_TRAFFIC0 *,UINT64 *,UINT64 *))
+ GetProcAddress(hDll, "IPsecSaContextCreate0");
+
+ api->IPsecSaContextGetSpi0 =
+ (DWORD (__stdcall *)(HANDLE,UINT64,const IPSEC_GETSPI0 *,IPSEC_SA_SPI *))
+ GetProcAddress(hDll, "IPsecSaContextGetSpi0");
+
+ api->IPsecSaContextAddInbound0 =
+ (DWORD (__stdcall *)(HANDLE,UINT64,const IPSEC_SA_BUNDLE0 *))
+ GetProcAddress(hDll, "IPsecSaContextAddInbound0");
+
+ api->IPsecSaContextAddOutbound0 =
+ (DWORD (__stdcall *)(HANDLE,UINT64,const IPSEC_SA_BUNDLE0 *))
+ GetProcAddress(hDll, "IPsecSaContextAddOutbound0");
+
+ api->FwpmCalloutAdd0 =
+ (DWORD (__stdcall *)(HANDLE,const FWPM_CALLOUT0 *,PSECURITY_DESCRIPTOR,UINT32 *))
+ GetProcAddress(hDll, "FwpmCalloutAdd0");
+
+ if (api->FwpmEngineOpen0 == NULL ||
+ api->FwpmEngineClose0 == NULL ||
+ api->FwpmFreeMemory0 == NULL ||
+ api->FwpmFilterAdd0 == NULL ||
+ api->IPsecSaContextCreate0 == NULL ||
+ api->IPsecSaContextGetSpi0 == NULL ||
+ api->IPsecSaContextAddInbound0 == NULL ||
+ api->IPsecSaContextAddOutbound0 == NULL ||
+ api->FwpmCalloutAdd0 == NULL)
+ {
+ free(api);
+ api = NULL;
+ return false;
+ }
+
+ return true;
+}
+
+#endif // WIN32
+
+
+
+// Developed by SoftEther VPN Project at University of Tsukuba in Japan.
+// Department of Computer Science has dozens of overly-enthusiastic geeks.
+// Join us: http://www.tsukuba.ac.jp/english/admission/