2012-02-24 00:56:50 +04:00
|
|
|
/**
|
2012-05-22 06:48:33 +04:00
|
|
|
* WinPR: Windows Portable Runtime
|
2012-02-24 00:56:50 +04:00
|
|
|
* NTLM Security Package
|
|
|
|
*
|
2014-06-06 06:10:08 +04:00
|
|
|
* Copyright 2011-2014 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
2012-02-24 00:56:50 +04:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2012-08-15 01:20:53 +04:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2012-02-24 00:56:50 +04:00
|
|
|
#include <time.h>
|
|
|
|
#include <openssl/des.h>
|
|
|
|
#include <openssl/md4.h>
|
|
|
|
#include <openssl/hmac.h>
|
|
|
|
#include <openssl/rand.h>
|
|
|
|
#include <openssl/engine.h>
|
|
|
|
|
2012-05-06 06:39:00 +04:00
|
|
|
#include <winpr/crt.h>
|
2012-05-05 03:48:53 +04:00
|
|
|
#include <winpr/sspi.h>
|
2012-05-25 22:03:56 +04:00
|
|
|
#include <winpr/print.h>
|
2012-06-20 01:26:37 +04:00
|
|
|
#include <winpr/sysinfo.h>
|
2012-07-27 03:43:51 +04:00
|
|
|
#include <winpr/registry.h>
|
2012-02-24 00:56:50 +04:00
|
|
|
|
|
|
|
#include "ntlm.h"
|
|
|
|
#include "../sspi.h"
|
|
|
|
|
2012-02-24 06:26:00 +04:00
|
|
|
#include "ntlm_message.h"
|
|
|
|
|
2014-08-18 19:22:22 +04:00
|
|
|
#include "../../log.h"
|
2014-08-18 20:57:08 +04:00
|
|
|
#define TAG WINPR_TAG("sspi.NTLM")
|
2012-02-24 00:56:50 +04:00
|
|
|
|
2014-08-18 21:34:47 +04:00
|
|
|
char* NTLM_PACKAGE_NAME = "NTLM";
|
2014-08-18 19:22:22 +04:00
|
|
|
|
2014-08-18 21:34:47 +04:00
|
|
|
int ntlm_SetContextWorkstation(NTLM_CONTEXT* context, char* Workstation)
|
2012-02-25 18:55:52 +04:00
|
|
|
{
|
2014-06-07 01:20:34 +04:00
|
|
|
int status;
|
2012-06-20 01:26:37 +04:00
|
|
|
DWORD nSize = 0;
|
2014-08-18 21:34:47 +04:00
|
|
|
char* ws = Workstation;
|
2012-06-20 01:26:37 +04:00
|
|
|
|
|
|
|
if (!Workstation)
|
|
|
|
{
|
|
|
|
GetComputerNameExA(ComputerNameNetBIOS, NULL, &nSize);
|
2014-08-18 21:34:47 +04:00
|
|
|
ws = (char*) malloc(nSize);
|
2014-06-07 01:20:34 +04:00
|
|
|
|
|
|
|
if (!ws)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (!GetComputerNameExA(ComputerNameNetBIOS, ws, &nSize))
|
2014-11-16 16:56:08 +03:00
|
|
|
{
|
|
|
|
free(ws);
|
2014-06-07 01:20:34 +04:00
|
|
|
return 0;
|
2014-11-16 16:56:08 +03:00
|
|
|
}
|
2012-06-20 01:26:37 +04:00
|
|
|
}
|
|
|
|
|
2014-06-07 01:20:34 +04:00
|
|
|
context->Workstation.Buffer = NULL;
|
|
|
|
status = ConvertToUnicode(CP_UTF8, 0, ws, -1, &context->Workstation.Buffer, 0);
|
2014-11-16 16:56:08 +03:00
|
|
|
if (!Workstation)
|
|
|
|
free(ws);
|
2014-06-07 01:20:34 +04:00
|
|
|
|
|
|
|
if (status <= 0)
|
|
|
|
return -1;
|
|
|
|
|
2014-08-18 19:22:22 +04:00
|
|
|
context->Workstation.Length = (USHORT)(status - 1);
|
2012-12-17 22:35:12 +04:00
|
|
|
context->Workstation.Length *= 2;
|
2012-06-20 01:26:37 +04:00
|
|
|
|
2014-06-07 01:20:34 +04:00
|
|
|
return 1;
|
2012-02-25 18:55:52 +04:00
|
|
|
}
|
|
|
|
|
2014-08-18 21:34:47 +04:00
|
|
|
int ntlm_SetContextServicePrincipalNameW(NTLM_CONTEXT* context, LPWSTR ServicePrincipalName)
|
2012-07-27 02:35:39 +04:00
|
|
|
{
|
2013-03-16 00:47:24 +04:00
|
|
|
if (!ServicePrincipalName)
|
|
|
|
{
|
|
|
|
context->ServicePrincipalName.Buffer = NULL;
|
2014-06-08 17:14:49 +04:00
|
|
|
context->ServicePrincipalName.Length = 0;
|
2014-06-07 01:20:34 +04:00
|
|
|
return 1;
|
2013-03-16 00:47:24 +04:00
|
|
|
}
|
2014-06-07 01:20:34 +04:00
|
|
|
|
2014-06-08 17:14:49 +04:00
|
|
|
context->ServicePrincipalName.Length = _wcslen(ServicePrincipalName) * 2;
|
2012-12-21 21:17:07 +04:00
|
|
|
context->ServicePrincipalName.Buffer = (PWSTR) malloc(context->ServicePrincipalName.Length + 2);
|
2014-06-07 01:20:34 +04:00
|
|
|
|
|
|
|
if (!context->ServicePrincipalName.Buffer)
|
|
|
|
return -1;
|
|
|
|
|
2012-12-21 21:17:07 +04:00
|
|
|
CopyMemory(context->ServicePrincipalName.Buffer, ServicePrincipalName, context->ServicePrincipalName.Length + 2);
|
2014-06-07 01:20:34 +04:00
|
|
|
return 1;
|
2012-07-27 02:35:39 +04:00
|
|
|
}
|
|
|
|
|
2014-08-18 21:34:47 +04:00
|
|
|
int ntlm_SetContextServicePrincipalNameA(NTLM_CONTEXT* context, char* ServicePrincipalName)
|
2012-07-02 06:13:02 +04:00
|
|
|
{
|
2014-06-07 01:20:34 +04:00
|
|
|
int status;
|
|
|
|
context->ServicePrincipalName.Buffer = NULL;
|
|
|
|
status = ConvertToUnicode(CP_UTF8, 0, ServicePrincipalName, -1, &context->ServicePrincipalName.Buffer, 0);
|
|
|
|
|
|
|
|
if (status <= 0)
|
|
|
|
return -1;
|
|
|
|
|
2014-08-18 19:22:22 +04:00
|
|
|
context->ServicePrincipalName.Length = (USHORT)((status - 1) * 2);
|
2014-06-07 01:20:34 +04:00
|
|
|
return 1;
|
2012-07-02 06:13:02 +04:00
|
|
|
}
|
|
|
|
|
2014-08-18 21:34:47 +04:00
|
|
|
int ntlm_SetContextTargetName(NTLM_CONTEXT* context, char* TargetName)
|
2012-03-19 02:14:20 +04:00
|
|
|
{
|
2014-06-07 01:20:34 +04:00
|
|
|
int status;
|
2012-06-20 01:26:37 +04:00
|
|
|
DWORD nSize = 0;
|
2014-08-18 21:34:47 +04:00
|
|
|
char* name = TargetName;
|
2012-06-20 01:26:37 +04:00
|
|
|
|
|
|
|
if (!TargetName)
|
|
|
|
{
|
2014-06-07 01:20:34 +04:00
|
|
|
if (!GetComputerNameExA(ComputerNameDnsHostname, NULL, &nSize))
|
|
|
|
return -1;
|
|
|
|
|
2014-08-18 21:34:47 +04:00
|
|
|
name = (char*) malloc(nSize);
|
2014-06-07 01:20:34 +04:00
|
|
|
|
|
|
|
if (!name)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (!GetComputerNameExA(ComputerNameDnsHostname, name, &nSize))
|
2014-11-16 16:56:08 +03:00
|
|
|
{
|
|
|
|
free(name);
|
2014-06-07 01:20:34 +04:00
|
|
|
return -1;
|
2014-11-16 16:56:08 +03:00
|
|
|
}
|
2014-06-07 01:20:34 +04:00
|
|
|
|
2012-07-01 22:33:36 +04:00
|
|
|
CharUpperA(TargetName);
|
2012-06-20 01:26:37 +04:00
|
|
|
}
|
|
|
|
|
2014-06-07 01:20:34 +04:00
|
|
|
context->TargetName.pvBuffer = NULL;
|
2014-08-18 21:34:47 +04:00
|
|
|
status = ConvertToUnicode(CP_UTF8, 0, name, -1, (LPWSTR*) &context->TargetName.pvBuffer, 0);
|
2014-06-07 01:20:34 +04:00
|
|
|
|
|
|
|
if (status <= 0)
|
2014-11-16 16:56:08 +03:00
|
|
|
{
|
2015-05-11 10:07:39 +03:00
|
|
|
free(TargetName);
|
2014-06-07 01:20:34 +04:00
|
|
|
return -1;
|
2014-11-16 16:56:08 +03:00
|
|
|
}
|
2014-06-07 01:20:34 +04:00
|
|
|
|
2014-08-18 19:22:22 +04:00
|
|
|
context->TargetName.cbBuffer = (USHORT)((status - 1) * 2);
|
2012-06-20 01:26:37 +04:00
|
|
|
|
2013-08-28 19:40:29 +04:00
|
|
|
if (!TargetName)
|
|
|
|
free(name);
|
2014-06-07 01:20:34 +04:00
|
|
|
|
|
|
|
return 1;
|
2012-03-19 02:14:20 +04:00
|
|
|
}
|
|
|
|
|
2014-08-18 21:34:47 +04:00
|
|
|
NTLM_CONTEXT* ntlm_ContextNew()
|
2012-02-24 00:56:50 +04:00
|
|
|
{
|
2014-06-07 01:20:34 +04:00
|
|
|
HKEY hKey;
|
|
|
|
LONG status;
|
|
|
|
DWORD dwType;
|
|
|
|
DWORD dwSize;
|
|
|
|
DWORD dwValue;
|
2014-08-18 21:34:47 +04:00
|
|
|
NTLM_CONTEXT* context;
|
|
|
|
context = (NTLM_CONTEXT*) calloc(1, sizeof(NTLM_CONTEXT));
|
2012-02-24 00:56:50 +04:00
|
|
|
|
2014-06-07 01:20:34 +04:00
|
|
|
if (!context)
|
|
|
|
return NULL;
|
2012-07-27 02:35:39 +04:00
|
|
|
|
2014-06-07 01:20:34 +04:00
|
|
|
context->NTLMv2 = TRUE;
|
|
|
|
context->UseMIC = FALSE;
|
|
|
|
context->SendVersionInfo = TRUE;
|
|
|
|
context->SendSingleHostData = FALSE;
|
|
|
|
context->SendWorkstationName = TRUE;
|
2014-06-18 22:42:35 +04:00
|
|
|
context->NegotiateKeyExchange = TRUE;
|
2014-06-19 00:02:13 +04:00
|
|
|
context->UseSamFileDatabase = TRUE;
|
2014-06-07 01:20:34 +04:00
|
|
|
status = RegOpenKeyEx(HKEY_LOCAL_MACHINE, _T("Software\\WinPR\\NTLM"), 0, KEY_READ | KEY_WOW64_64KEY, &hKey);
|
2012-07-27 02:35:39 +04:00
|
|
|
|
2014-06-07 01:20:34 +04:00
|
|
|
if (status == ERROR_SUCCESS)
|
|
|
|
{
|
2014-08-18 21:34:47 +04:00
|
|
|
if (RegQueryValueEx(hKey, _T("NTLMv2"), NULL, &dwType, (BYTE*) &dwValue, &dwSize) == ERROR_SUCCESS)
|
2014-06-07 01:20:34 +04:00
|
|
|
context->NTLMv2 = dwValue ? 1 : 0;
|
2012-07-27 02:35:39 +04:00
|
|
|
|
2014-08-18 21:34:47 +04:00
|
|
|
if (RegQueryValueEx(hKey, _T("UseMIC"), NULL, &dwType, (BYTE*) &dwValue, &dwSize) == ERROR_SUCCESS)
|
2014-06-07 01:20:34 +04:00
|
|
|
context->UseMIC = dwValue ? 1 : 0;
|
2012-07-27 02:35:39 +04:00
|
|
|
|
2014-08-18 21:34:47 +04:00
|
|
|
if (RegQueryValueEx(hKey, _T("SendVersionInfo"), NULL, &dwType, (BYTE*) &dwValue, &dwSize) == ERROR_SUCCESS)
|
2014-06-07 01:20:34 +04:00
|
|
|
context->SendVersionInfo = dwValue ? 1 : 0;
|
2012-07-27 02:35:39 +04:00
|
|
|
|
2014-08-18 21:34:47 +04:00
|
|
|
if (RegQueryValueEx(hKey, _T("SendSingleHostData"), NULL, &dwType, (BYTE*) &dwValue, &dwSize) == ERROR_SUCCESS)
|
2014-06-07 01:20:34 +04:00
|
|
|
context->SendSingleHostData = dwValue ? 1 : 0;
|
2013-01-09 21:05:34 +04:00
|
|
|
|
2014-08-18 21:34:47 +04:00
|
|
|
if (RegQueryValueEx(hKey, _T("SendWorkstationName"), NULL, &dwType, (BYTE*) &dwValue, &dwSize) == ERROR_SUCCESS)
|
2014-06-07 01:20:34 +04:00
|
|
|
context->SendWorkstationName = dwValue ? 1 : 0;
|
2013-01-31 04:47:27 +04:00
|
|
|
|
2014-06-07 01:20:34 +04:00
|
|
|
if (RegQueryValueEx(hKey, _T("WorkstationName"), NULL, &dwType, NULL, &dwSize) == ERROR_SUCCESS)
|
|
|
|
{
|
2014-08-18 21:34:47 +04:00
|
|
|
char* workstation = (char*) malloc(dwSize + 1);
|
2013-01-31 04:47:27 +04:00
|
|
|
|
2014-06-07 01:20:34 +04:00
|
|
|
if (!workstation)
|
2014-11-16 19:07:48 +03:00
|
|
|
{
|
|
|
|
free (context);
|
2014-06-07 01:20:34 +04:00
|
|
|
return NULL;
|
2014-11-16 19:07:48 +03:00
|
|
|
}
|
2013-01-31 04:47:27 +04:00
|
|
|
|
2014-08-18 21:34:47 +04:00
|
|
|
status = RegQueryValueExA(hKey, "WorkstationName", NULL, &dwType, (BYTE*) workstation, &dwSize);
|
2014-06-07 01:20:34 +04:00
|
|
|
workstation[dwSize] = '\0';
|
|
|
|
|
|
|
|
if (ntlm_SetContextWorkstation(context, workstation) < 0)
|
2014-11-16 16:56:08 +03:00
|
|
|
{
|
|
|
|
free(workstation);
|
2014-11-16 19:07:48 +03:00
|
|
|
free(context);
|
2014-06-07 01:20:34 +04:00
|
|
|
return NULL;
|
2014-11-16 16:56:08 +03:00
|
|
|
}
|
2013-01-31 04:47:27 +04:00
|
|
|
|
2014-06-07 01:20:34 +04:00
|
|
|
free(workstation);
|
2012-07-27 02:35:39 +04:00
|
|
|
}
|
|
|
|
|
2014-06-07 01:20:34 +04:00
|
|
|
RegCloseKey(hKey);
|
|
|
|
}
|
2012-08-01 05:15:07 +04:00
|
|
|
|
2014-06-07 01:20:34 +04:00
|
|
|
/*
|
|
|
|
* Extended Protection is enabled by default in Windows 7,
|
|
|
|
* but enabling it in WinPR breaks TS Gateway at this point
|
|
|
|
*/
|
|
|
|
context->SuppressExtendedProtection = FALSE;
|
|
|
|
status = RegOpenKeyEx(HKEY_LOCAL_MACHINE, _T("System\\CurrentControlSet\\Control\\LSA"), 0, KEY_READ | KEY_WOW64_64KEY, &hKey);
|
2012-08-01 05:15:07 +04:00
|
|
|
|
2014-06-07 01:20:34 +04:00
|
|
|
if (status == ERROR_SUCCESS)
|
|
|
|
{
|
2014-08-18 21:34:47 +04:00
|
|
|
if (RegQueryValueEx(hKey, _T("SuppressExtendedProtection"), NULL, &dwType, (BYTE*) &dwValue, &dwSize) == ERROR_SUCCESS)
|
2014-06-07 01:20:34 +04:00
|
|
|
context->SuppressExtendedProtection = dwValue ? 1 : 0;
|
2012-07-02 05:40:33 +04:00
|
|
|
|
2014-06-07 01:20:34 +04:00
|
|
|
RegCloseKey(hKey);
|
2012-02-24 00:56:50 +04:00
|
|
|
}
|
|
|
|
|
2014-06-07 01:20:34 +04:00
|
|
|
context->NegotiateFlags = 0;
|
|
|
|
context->LmCompatibilityLevel = 3;
|
|
|
|
context->state = NTLM_STATE_INITIAL;
|
|
|
|
FillMemory(context->MachineID, sizeof(context->MachineID), 0xAA);
|
|
|
|
|
|
|
|
if (context->NTLMv2)
|
|
|
|
context->UseMIC = TRUE;
|
|
|
|
|
2012-02-24 00:56:50 +04:00
|
|
|
return context;
|
|
|
|
}
|
|
|
|
|
2014-08-18 21:34:47 +04:00
|
|
|
void ntlm_ContextFree(NTLM_CONTEXT* context)
|
2012-02-24 00:56:50 +04:00
|
|
|
{
|
|
|
|
if (!context)
|
|
|
|
return;
|
|
|
|
|
2012-03-16 21:12:49 +04:00
|
|
|
sspi_SecBufferFree(&context->NegotiateMessage);
|
|
|
|
sspi_SecBufferFree(&context->ChallengeMessage);
|
|
|
|
sspi_SecBufferFree(&context->AuthenticateMessage);
|
2012-07-02 05:40:33 +04:00
|
|
|
sspi_SecBufferFree(&context->ChallengeTargetInfo);
|
2012-03-16 21:12:49 +04:00
|
|
|
sspi_SecBufferFree(&context->TargetName);
|
|
|
|
sspi_SecBufferFree(&context->NtChallengeResponse);
|
|
|
|
sspi_SecBufferFree(&context->LmChallengeResponse);
|
2012-11-19 22:26:56 +04:00
|
|
|
free(context->ServicePrincipalName.Buffer);
|
2012-07-02 05:40:33 +04:00
|
|
|
free(context->Workstation.Buffer);
|
2012-05-06 06:39:00 +04:00
|
|
|
free(context);
|
2012-02-24 00:56:50 +04:00
|
|
|
}
|
|
|
|
|
2014-08-18 21:34:47 +04:00
|
|
|
SECURITY_STATUS SEC_ENTRY ntlm_AcquireCredentialsHandleW(SEC_WCHAR* pszPrincipal, SEC_WCHAR* pszPackage,
|
|
|
|
ULONG fCredentialUse, void* pvLogonID, void* pAuthData, SEC_GET_KEY_FN pGetKeyFn,
|
|
|
|
void* pvGetKeyArgument, PCredHandle phCredential, PTimeStamp ptsExpiry)
|
2012-03-24 23:47:16 +04:00
|
|
|
{
|
2014-08-18 21:34:47 +04:00
|
|
|
SSPI_CREDENTIALS* credentials;
|
|
|
|
SEC_WINNT_AUTH_IDENTITY* identity;
|
2012-03-25 00:23:14 +04:00
|
|
|
|
2014-06-09 23:25:00 +04:00
|
|
|
if ((fCredentialUse != SECPKG_CRED_OUTBOUND) &&
|
2014-08-18 19:22:22 +04:00
|
|
|
(fCredentialUse != SECPKG_CRED_INBOUND) &&
|
|
|
|
(fCredentialUse != SECPKG_CRED_BOTH))
|
2012-03-25 00:23:14 +04:00
|
|
|
{
|
2014-06-09 23:25:00 +04:00
|
|
|
return SEC_E_INVALID_PARAMETER;
|
2012-03-25 00:23:14 +04:00
|
|
|
}
|
|
|
|
|
2014-06-09 23:25:00 +04:00
|
|
|
credentials = sspi_CredentialsNew();
|
2014-06-07 01:20:34 +04:00
|
|
|
|
2014-06-09 23:25:00 +04:00
|
|
|
if (!credentials)
|
|
|
|
return SEC_E_INTERNAL_ERROR;
|
2012-07-25 04:46:21 +04:00
|
|
|
|
2014-06-09 23:25:00 +04:00
|
|
|
credentials->fCredentialUse = fCredentialUse;
|
|
|
|
credentials->pGetKeyFn = pGetKeyFn;
|
|
|
|
credentials->pvGetKeyArgument = pvGetKeyArgument;
|
2014-08-18 21:34:47 +04:00
|
|
|
identity = (SEC_WINNT_AUTH_IDENTITY*) pAuthData;
|
2012-03-25 00:23:14 +04:00
|
|
|
|
2014-06-09 23:25:00 +04:00
|
|
|
if (identity)
|
|
|
|
sspi_CopyAuthIdentity(&(credentials->identity), identity);
|
|
|
|
|
2014-08-18 21:34:47 +04:00
|
|
|
sspi_SecureHandleSetLowerPointer(phCredential, (void*) credentials);
|
|
|
|
sspi_SecureHandleSetUpperPointer(phCredential, (void*) NTLM_PACKAGE_NAME);
|
2012-03-24 23:47:16 +04:00
|
|
|
return SEC_E_OK;
|
|
|
|
}
|
|
|
|
|
2014-08-18 21:34:47 +04:00
|
|
|
SECURITY_STATUS SEC_ENTRY ntlm_AcquireCredentialsHandleA(SEC_CHAR* pszPrincipal, SEC_CHAR* pszPackage,
|
|
|
|
ULONG fCredentialUse, void* pvLogonID, void* pAuthData, SEC_GET_KEY_FN pGetKeyFn,
|
|
|
|
void* pvGetKeyArgument, PCredHandle phCredential, PTimeStamp ptsExpiry)
|
2012-02-24 00:56:50 +04:00
|
|
|
{
|
2014-08-18 21:34:47 +04:00
|
|
|
SSPI_CREDENTIALS* credentials;
|
|
|
|
SEC_WINNT_AUTH_IDENTITY* identity;
|
2012-02-24 00:56:50 +04:00
|
|
|
|
2014-06-09 23:25:00 +04:00
|
|
|
if ((fCredentialUse != SECPKG_CRED_OUTBOUND) &&
|
2014-08-18 19:22:22 +04:00
|
|
|
(fCredentialUse != SECPKG_CRED_INBOUND) &&
|
|
|
|
(fCredentialUse != SECPKG_CRED_BOTH))
|
2012-02-24 00:56:50 +04:00
|
|
|
{
|
2014-06-09 23:25:00 +04:00
|
|
|
return SEC_E_INVALID_PARAMETER;
|
2012-02-24 00:56:50 +04:00
|
|
|
}
|
2012-03-05 06:56:41 +04:00
|
|
|
|
2014-06-09 23:25:00 +04:00
|
|
|
credentials = sspi_CredentialsNew();
|
2014-06-07 01:20:34 +04:00
|
|
|
|
2014-06-09 23:25:00 +04:00
|
|
|
if (!credentials)
|
|
|
|
return SEC_E_INTERNAL_ERROR;
|
2012-06-19 06:22:39 +04:00
|
|
|
|
2014-06-09 23:25:00 +04:00
|
|
|
credentials->fCredentialUse = fCredentialUse;
|
|
|
|
credentials->pGetKeyFn = pGetKeyFn;
|
|
|
|
credentials->pvGetKeyArgument = pvGetKeyArgument;
|
2014-08-18 21:34:47 +04:00
|
|
|
identity = (SEC_WINNT_AUTH_IDENTITY*) pAuthData;
|
2012-03-05 06:56:41 +04:00
|
|
|
|
2014-06-09 23:25:00 +04:00
|
|
|
if (identity)
|
|
|
|
sspi_CopyAuthIdentity(&(credentials->identity), identity);
|
|
|
|
|
2014-08-18 21:34:47 +04:00
|
|
|
sspi_SecureHandleSetLowerPointer(phCredential, (void*) credentials);
|
|
|
|
sspi_SecureHandleSetUpperPointer(phCredential, (void*) NTLM_PACKAGE_NAME);
|
2012-02-24 00:56:50 +04:00
|
|
|
return SEC_E_OK;
|
|
|
|
}
|
|
|
|
|
2012-03-24 23:47:16 +04:00
|
|
|
SECURITY_STATUS SEC_ENTRY ntlm_FreeCredentialsHandle(PCredHandle phCredential)
|
2012-02-25 00:00:49 +04:00
|
|
|
{
|
2014-08-18 21:34:47 +04:00
|
|
|
SSPI_CREDENTIALS* credentials;
|
2012-02-25 00:00:49 +04:00
|
|
|
|
|
|
|
if (!phCredential)
|
|
|
|
return SEC_E_INVALID_HANDLE;
|
|
|
|
|
2014-08-18 21:34:47 +04:00
|
|
|
credentials = (SSPI_CREDENTIALS*) sspi_SecureHandleGetLowerPointer(phCredential);
|
2012-02-25 00:00:49 +04:00
|
|
|
|
|
|
|
if (!credentials)
|
|
|
|
return SEC_E_INVALID_HANDLE;
|
|
|
|
|
|
|
|
sspi_CredentialsFree(credentials);
|
|
|
|
return SEC_E_OK;
|
|
|
|
}
|
|
|
|
|
2014-08-18 21:34:47 +04:00
|
|
|
SECURITY_STATUS SEC_ENTRY ntlm_QueryCredentialsAttributesW(PCredHandle phCredential, ULONG ulAttribute, void* pBuffer)
|
2012-03-24 23:47:16 +04:00
|
|
|
{
|
|
|
|
if (ulAttribute == SECPKG_CRED_ATTR_NAMES)
|
|
|
|
{
|
|
|
|
return SEC_E_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
return SEC_E_UNSUPPORTED_FUNCTION;
|
|
|
|
}
|
|
|
|
|
2014-08-18 21:34:47 +04:00
|
|
|
SECURITY_STATUS SEC_ENTRY ntlm_QueryCredentialsAttributesA(PCredHandle phCredential, ULONG ulAttribute, void* pBuffer)
|
2012-02-24 00:56:50 +04:00
|
|
|
{
|
2012-07-27 02:35:39 +04:00
|
|
|
return ntlm_QueryCredentialsAttributesW(phCredential, ulAttribute, pBuffer);
|
2012-02-24 00:56:50 +04:00
|
|
|
}
|
|
|
|
|
2012-05-10 12:54:20 +04:00
|
|
|
/**
|
|
|
|
* @see http://msdn.microsoft.com/en-us/library/windows/desktop/aa374707
|
|
|
|
*/
|
2012-03-24 09:01:28 +04:00
|
|
|
SECURITY_STATUS SEC_ENTRY ntlm_AcceptSecurityContext(PCredHandle phCredential, PCtxtHandle phContext,
|
2012-05-22 04:39:45 +04:00
|
|
|
PSecBufferDesc pInput, ULONG fContextReq, ULONG TargetDataRep, PCtxtHandle phNewContext,
|
|
|
|
PSecBufferDesc pOutput, PULONG pfContextAttr, PTimeStamp ptsTimeStamp)
|
2012-03-05 06:56:41 +04:00
|
|
|
{
|
2014-08-18 21:34:47 +04:00
|
|
|
NTLM_CONTEXT* context;
|
2012-03-05 06:56:41 +04:00
|
|
|
SECURITY_STATUS status;
|
2014-08-18 21:34:47 +04:00
|
|
|
SSPI_CREDENTIALS* credentials;
|
2012-03-24 08:14:45 +04:00
|
|
|
PSecBuffer input_buffer;
|
|
|
|
PSecBuffer output_buffer;
|
2014-08-18 21:34:47 +04:00
|
|
|
context = (NTLM_CONTEXT*) sspi_SecureHandleGetLowerPointer(phContext);
|
2012-03-05 06:56:41 +04:00
|
|
|
|
|
|
|
if (!context)
|
|
|
|
{
|
|
|
|
context = ntlm_ContextNew();
|
2012-05-21 02:32:22 +04:00
|
|
|
|
2012-05-10 12:54:20 +04:00
|
|
|
if (!context)
|
2012-05-21 02:32:22 +04:00
|
|
|
return SEC_E_INSUFFICIENT_MEMORY;
|
|
|
|
|
2014-06-07 01:20:34 +04:00
|
|
|
context->server = TRUE;
|
2012-03-05 06:56:41 +04:00
|
|
|
|
2012-05-21 02:32:22 +04:00
|
|
|
if (fContextReq & ASC_REQ_CONFIDENTIALITY)
|
2014-06-07 01:20:34 +04:00
|
|
|
context->confidentiality = TRUE;
|
2012-05-21 02:32:22 +04:00
|
|
|
|
2014-08-18 21:34:47 +04:00
|
|
|
credentials = (SSPI_CREDENTIALS*) sspi_SecureHandleGetLowerPointer(phCredential);
|
2014-06-09 23:25:00 +04:00
|
|
|
context->credentials = credentials;
|
2012-06-20 01:26:37 +04:00
|
|
|
ntlm_SetContextTargetName(context, NULL);
|
2012-03-05 06:56:41 +04:00
|
|
|
sspi_SecureHandleSetLowerPointer(phNewContext, context);
|
2014-08-18 21:34:47 +04:00
|
|
|
sspi_SecureHandleSetUpperPointer(phNewContext, (void*) NTLM_PACKAGE_NAME);
|
2012-03-05 06:56:41 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (context->state == NTLM_STATE_INITIAL)
|
|
|
|
{
|
|
|
|
context->state = NTLM_STATE_NEGOTIATE;
|
|
|
|
|
|
|
|
if (!pInput)
|
|
|
|
return SEC_E_INVALID_TOKEN;
|
|
|
|
|
|
|
|
if (pInput->cBuffers < 1)
|
|
|
|
return SEC_E_INVALID_TOKEN;
|
|
|
|
|
2013-01-11 23:23:54 +04:00
|
|
|
input_buffer = sspi_FindSecBuffer(pInput, SECBUFFER_TOKEN);
|
2012-03-05 06:56:41 +04:00
|
|
|
|
2013-01-11 23:23:54 +04:00
|
|
|
if (!input_buffer)
|
2012-03-05 06:56:41 +04:00
|
|
|
return SEC_E_INVALID_TOKEN;
|
|
|
|
|
|
|
|
if (input_buffer->cbBuffer < 1)
|
|
|
|
return SEC_E_INVALID_TOKEN;
|
|
|
|
|
|
|
|
status = ntlm_read_NegotiateMessage(context, input_buffer);
|
|
|
|
|
|
|
|
if (context->state == NTLM_STATE_CHALLENGE)
|
|
|
|
{
|
|
|
|
if (!pOutput)
|
|
|
|
return SEC_E_INVALID_TOKEN;
|
|
|
|
|
|
|
|
if (pOutput->cBuffers < 1)
|
|
|
|
return SEC_E_INVALID_TOKEN;
|
|
|
|
|
2013-01-11 23:23:54 +04:00
|
|
|
output_buffer = sspi_FindSecBuffer(pOutput, SECBUFFER_TOKEN);
|
2012-03-05 06:56:41 +04:00
|
|
|
|
2013-01-11 23:23:54 +04:00
|
|
|
if (!output_buffer->BufferType)
|
2012-03-05 06:56:41 +04:00
|
|
|
return SEC_E_INVALID_TOKEN;
|
|
|
|
|
|
|
|
if (output_buffer->cbBuffer < 1)
|
|
|
|
return SEC_E_INSUFFICIENT_MEMORY;
|
|
|
|
|
|
|
|
return ntlm_write_ChallengeMessage(context, output_buffer);
|
|
|
|
}
|
|
|
|
|
|
|
|
return SEC_E_OUT_OF_SEQUENCE;
|
|
|
|
}
|
|
|
|
else if (context->state == NTLM_STATE_AUTHENTICATE)
|
|
|
|
{
|
|
|
|
if (!pInput)
|
|
|
|
return SEC_E_INVALID_TOKEN;
|
|
|
|
|
|
|
|
if (pInput->cBuffers < 1)
|
|
|
|
return SEC_E_INVALID_TOKEN;
|
|
|
|
|
2013-01-11 23:23:54 +04:00
|
|
|
input_buffer = sspi_FindSecBuffer(pInput, SECBUFFER_TOKEN);
|
2012-03-05 06:56:41 +04:00
|
|
|
|
2013-01-11 23:23:54 +04:00
|
|
|
if (!input_buffer)
|
2012-03-05 06:56:41 +04:00
|
|
|
return SEC_E_INVALID_TOKEN;
|
|
|
|
|
|
|
|
if (input_buffer->cbBuffer < 1)
|
|
|
|
return SEC_E_INVALID_TOKEN;
|
|
|
|
|
|
|
|
status = ntlm_read_AuthenticateMessage(context, input_buffer);
|
|
|
|
|
2012-09-01 02:04:26 +04:00
|
|
|
if (pOutput)
|
|
|
|
{
|
2014-06-07 01:20:34 +04:00
|
|
|
ULONG i;
|
2012-09-01 02:04:26 +04:00
|
|
|
|
|
|
|
for (i = 0; i < pOutput->cBuffers; i++)
|
|
|
|
{
|
|
|
|
pOutput->pBuffers[i].cbBuffer = 0;
|
|
|
|
pOutput->pBuffers[i].BufferType = SECBUFFER_TOKEN;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-03-05 06:56:41 +04:00
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
return SEC_E_OUT_OF_SEQUENCE;
|
|
|
|
}
|
|
|
|
|
2012-03-24 09:01:28 +04:00
|
|
|
SECURITY_STATUS SEC_ENTRY ntlm_ImpersonateSecurityContext(PCtxtHandle phContext)
|
2012-03-05 06:56:41 +04:00
|
|
|
{
|
2014-06-08 01:08:07 +04:00
|
|
|
return SEC_E_OK;
|
2012-03-05 06:56:41 +04:00
|
|
|
}
|
|
|
|
|
2012-03-24 23:47:16 +04:00
|
|
|
SECURITY_STATUS SEC_ENTRY ntlm_InitializeSecurityContextW(PCredHandle phCredential, PCtxtHandle phContext,
|
2014-08-18 21:34:47 +04:00
|
|
|
SEC_WCHAR* pszTargetName, ULONG fContextReq, ULONG Reserved1, ULONG TargetDataRep,
|
2012-05-22 04:39:45 +04:00
|
|
|
PSecBufferDesc pInput, ULONG Reserved2, PCtxtHandle phNewContext,
|
|
|
|
PSecBufferDesc pOutput, PULONG pfContextAttr, PTimeStamp ptsExpiry)
|
2012-02-24 00:56:50 +04:00
|
|
|
{
|
2014-08-18 21:34:47 +04:00
|
|
|
NTLM_CONTEXT* context;
|
2012-02-27 05:07:42 +04:00
|
|
|
SECURITY_STATUS status;
|
2014-08-18 21:34:47 +04:00
|
|
|
SSPI_CREDENTIALS* credentials;
|
2013-01-09 09:20:08 +04:00
|
|
|
PSecBuffer input_buffer = NULL;
|
|
|
|
PSecBuffer output_buffer = NULL;
|
|
|
|
PSecBuffer channel_bindings = NULL;
|
2014-08-18 21:34:47 +04:00
|
|
|
context = (NTLM_CONTEXT*) sspi_SecureHandleGetLowerPointer(phContext);
|
2012-02-25 20:48:08 +04:00
|
|
|
|
|
|
|
if (!context)
|
2012-02-24 06:26:00 +04:00
|
|
|
{
|
|
|
|
context = ntlm_ContextNew();
|
2012-07-27 02:35:39 +04:00
|
|
|
|
2012-05-10 12:54:20 +04:00
|
|
|
if (!context)
|
2012-05-21 02:32:22 +04:00
|
|
|
return SEC_E_INSUFFICIENT_MEMORY;
|
2012-02-24 06:26:00 +04:00
|
|
|
|
2012-04-21 01:00:00 +04:00
|
|
|
if (fContextReq & ISC_REQ_CONFIDENTIALITY)
|
2014-06-07 01:20:34 +04:00
|
|
|
context->confidentiality = TRUE;
|
2012-04-21 01:00:00 +04:00
|
|
|
|
2014-08-18 21:34:47 +04:00
|
|
|
credentials = (SSPI_CREDENTIALS*) sspi_SecureHandleGetLowerPointer(phCredential);
|
2014-06-09 23:25:00 +04:00
|
|
|
context->credentials = credentials;
|
2012-02-25 18:55:52 +04:00
|
|
|
|
2013-01-31 04:47:27 +04:00
|
|
|
if (context->Workstation.Length < 1)
|
2014-06-07 01:20:34 +04:00
|
|
|
{
|
|
|
|
if (ntlm_SetContextWorkstation(context, NULL) < 0)
|
2014-06-09 23:25:00 +04:00
|
|
|
return SEC_E_INTERNAL_ERROR;
|
2014-06-07 01:20:34 +04:00
|
|
|
}
|
2013-01-31 04:47:27 +04:00
|
|
|
|
2014-06-07 01:20:34 +04:00
|
|
|
if (ntlm_SetContextServicePrincipalNameW(context, pszTargetName) < 0)
|
2014-06-09 23:25:00 +04:00
|
|
|
return SEC_E_INTERNAL_ERROR;
|
2012-02-25 18:55:52 +04:00
|
|
|
|
2012-02-25 20:48:08 +04:00
|
|
|
sspi_SecureHandleSetLowerPointer(phNewContext, context);
|
2014-08-18 21:34:47 +04:00
|
|
|
sspi_SecureHandleSetUpperPointer(phNewContext, (void*) NTLM_PACKAGE_NAME);
|
2012-02-25 20:48:08 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if ((!pInput) || (context->state == NTLM_STATE_AUTHENTICATE))
|
|
|
|
{
|
2012-02-24 06:26:00 +04:00
|
|
|
if (!pOutput)
|
|
|
|
return SEC_E_INVALID_TOKEN;
|
|
|
|
|
|
|
|
if (pOutput->cBuffers < 1)
|
|
|
|
return SEC_E_INVALID_TOKEN;
|
|
|
|
|
2013-01-11 23:23:54 +04:00
|
|
|
output_buffer = sspi_FindSecBuffer(pOutput, SECBUFFER_TOKEN);
|
2012-02-24 06:26:00 +04:00
|
|
|
|
2013-01-11 23:23:54 +04:00
|
|
|
if (!output_buffer)
|
2012-02-24 06:26:00 +04:00
|
|
|
return SEC_E_INVALID_TOKEN;
|
|
|
|
|
2012-03-05 06:56:41 +04:00
|
|
|
if (output_buffer->cbBuffer < 1)
|
2012-05-10 12:54:20 +04:00
|
|
|
return SEC_E_INVALID_TOKEN;
|
2012-02-24 06:26:00 +04:00
|
|
|
|
2012-02-25 20:48:08 +04:00
|
|
|
if (context->state == NTLM_STATE_INITIAL)
|
|
|
|
context->state = NTLM_STATE_NEGOTIATE;
|
2012-02-25 02:17:38 +04:00
|
|
|
|
2012-02-25 20:48:08 +04:00
|
|
|
if (context->state == NTLM_STATE_NEGOTIATE)
|
2012-03-05 06:56:41 +04:00
|
|
|
return ntlm_write_NegotiateMessage(context, output_buffer);
|
2012-02-25 20:48:08 +04:00
|
|
|
|
|
|
|
return SEC_E_OUT_OF_SEQUENCE;
|
2012-02-24 06:26:00 +04:00
|
|
|
}
|
2012-02-25 02:17:38 +04:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if (pInput->cBuffers < 1)
|
|
|
|
return SEC_E_INVALID_TOKEN;
|
|
|
|
|
2013-01-11 23:23:54 +04:00
|
|
|
input_buffer = sspi_FindSecBuffer(pInput, SECBUFFER_TOKEN);
|
2012-02-25 02:17:38 +04:00
|
|
|
|
2013-01-11 23:23:54 +04:00
|
|
|
if (!input_buffer)
|
2012-02-25 02:17:38 +04:00
|
|
|
return SEC_E_INVALID_TOKEN;
|
|
|
|
|
2012-03-05 06:56:41 +04:00
|
|
|
if (input_buffer->cbBuffer < 1)
|
2012-02-25 02:17:38 +04:00
|
|
|
return SEC_E_INVALID_TOKEN;
|
2012-02-25 18:55:52 +04:00
|
|
|
|
2013-01-11 23:23:54 +04:00
|
|
|
channel_bindings = sspi_FindSecBuffer(pInput, SECBUFFER_CHANNEL_BINDINGS);
|
2013-01-09 09:20:08 +04:00
|
|
|
|
|
|
|
if (channel_bindings)
|
|
|
|
{
|
|
|
|
context->Bindings.BindingsLength = channel_bindings->cbBuffer;
|
2014-08-18 21:34:47 +04:00
|
|
|
context->Bindings.Bindings = (SEC_CHANNEL_BINDINGS*) channel_bindings->pvBuffer;
|
2013-01-09 09:20:08 +04:00
|
|
|
}
|
|
|
|
|
2012-02-25 20:48:08 +04:00
|
|
|
if (context->state == NTLM_STATE_CHALLENGE)
|
2012-02-27 05:07:42 +04:00
|
|
|
{
|
2012-03-05 06:56:41 +04:00
|
|
|
status = ntlm_read_ChallengeMessage(context, input_buffer);
|
2012-02-27 05:07:42 +04:00
|
|
|
|
|
|
|
if (!pOutput)
|
|
|
|
return SEC_E_INVALID_TOKEN;
|
|
|
|
|
|
|
|
if (pOutput->cBuffers < 1)
|
|
|
|
return SEC_E_INVALID_TOKEN;
|
|
|
|
|
2013-01-11 23:23:54 +04:00
|
|
|
output_buffer = sspi_FindSecBuffer(pOutput, SECBUFFER_TOKEN);
|
2012-02-27 05:07:42 +04:00
|
|
|
|
2013-01-11 23:23:54 +04:00
|
|
|
if (!output_buffer)
|
2012-02-27 05:07:42 +04:00
|
|
|
return SEC_E_INVALID_TOKEN;
|
|
|
|
|
2012-03-05 06:56:41 +04:00
|
|
|
if (output_buffer->cbBuffer < 1)
|
2012-02-27 05:07:42 +04:00
|
|
|
return SEC_E_INSUFFICIENT_MEMORY;
|
|
|
|
|
|
|
|
if (context->state == NTLM_STATE_AUTHENTICATE)
|
2012-03-05 06:56:41 +04:00
|
|
|
return ntlm_write_AuthenticateMessage(context, output_buffer);
|
2012-02-27 05:07:42 +04:00
|
|
|
}
|
2012-02-25 20:48:08 +04:00
|
|
|
|
|
|
|
return SEC_E_OUT_OF_SEQUENCE;
|
2012-02-25 02:17:38 +04:00
|
|
|
}
|
2012-02-24 06:26:00 +04:00
|
|
|
|
2012-03-05 06:56:41 +04:00
|
|
|
return SEC_E_OUT_OF_SEQUENCE;
|
2012-02-24 00:56:50 +04:00
|
|
|
}
|
|
|
|
|
2012-07-27 02:35:39 +04:00
|
|
|
/**
|
|
|
|
* @see http://msdn.microsoft.com/en-us/library/windows/desktop/aa375512%28v=vs.85%29.aspx
|
|
|
|
*/
|
|
|
|
SECURITY_STATUS SEC_ENTRY ntlm_InitializeSecurityContextA(PCredHandle phCredential, PCtxtHandle phContext,
|
2014-08-18 21:34:47 +04:00
|
|
|
SEC_CHAR* pszTargetName, ULONG fContextReq, ULONG Reserved1, ULONG TargetDataRep,
|
2012-07-27 02:35:39 +04:00
|
|
|
PSecBufferDesc pInput, ULONG Reserved2, PCtxtHandle phNewContext,
|
|
|
|
PSecBufferDesc pOutput, PULONG pfContextAttr, PTimeStamp ptsExpiry)
|
|
|
|
{
|
|
|
|
SECURITY_STATUS status;
|
2014-08-18 21:34:47 +04:00
|
|
|
SEC_WCHAR* pszTargetNameW = NULL;
|
2012-07-27 02:35:39 +04:00
|
|
|
|
2014-06-07 01:20:34 +04:00
|
|
|
if (pszTargetName)
|
2012-07-27 02:35:39 +04:00
|
|
|
{
|
2014-06-07 01:20:34 +04:00
|
|
|
if (ConvertToUnicode(CP_UTF8, 0, pszTargetName, -1, &pszTargetNameW, 0) <= 0)
|
2014-06-09 23:25:00 +04:00
|
|
|
return SEC_E_INTERNAL_ERROR;
|
2012-07-27 02:35:39 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
status = ntlm_InitializeSecurityContextW(phCredential, phContext, pszTargetNameW, fContextReq,
|
2014-08-18 19:22:22 +04:00
|
|
|
Reserved1, TargetDataRep, pInput, Reserved2, phNewContext, pOutput, pfContextAttr, ptsExpiry);
|
2012-07-27 02:35:39 +04:00
|
|
|
|
2015-05-11 10:07:39 +03:00
|
|
|
free(pszTargetNameW);
|
2014-08-18 19:22:22 +04:00
|
|
|
|
2012-07-27 02:35:39 +04:00
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
2014-06-08 00:26:57 +04:00
|
|
|
SECURITY_STATUS SEC_ENTRY ntlm_CompleteAuthToken(PCtxtHandle phContext, PSecBufferDesc pToken)
|
|
|
|
{
|
2014-08-18 21:34:47 +04:00
|
|
|
NTLM_CONTEXT* context;
|
2014-06-11 00:38:16 +04:00
|
|
|
SECURITY_STATUS status = SEC_E_OK;
|
2014-08-18 21:34:47 +04:00
|
|
|
context = (NTLM_CONTEXT*) sspi_SecureHandleGetLowerPointer(phContext);
|
2014-06-11 00:38:16 +04:00
|
|
|
|
|
|
|
if (!context)
|
|
|
|
return SEC_E_INVALID_HANDLE;
|
|
|
|
|
|
|
|
if (context->server)
|
|
|
|
{
|
|
|
|
status = ntlm_server_AuthenticateComplete(context);
|
|
|
|
}
|
|
|
|
|
|
|
|
return status;
|
2014-06-08 00:26:57 +04:00
|
|
|
}
|
|
|
|
|
2012-03-16 21:12:49 +04:00
|
|
|
/* http://msdn.microsoft.com/en-us/library/windows/desktop/aa375354 */
|
|
|
|
|
2012-03-24 09:01:28 +04:00
|
|
|
SECURITY_STATUS SEC_ENTRY ntlm_DeleteSecurityContext(PCtxtHandle phContext)
|
2012-03-16 21:12:49 +04:00
|
|
|
{
|
2014-08-18 21:34:47 +04:00
|
|
|
NTLM_CONTEXT* context;
|
|
|
|
context = (NTLM_CONTEXT*) sspi_SecureHandleGetLowerPointer(phContext);
|
2012-03-24 23:47:16 +04:00
|
|
|
|
2012-03-16 21:12:49 +04:00
|
|
|
if (!context)
|
|
|
|
return SEC_E_INVALID_HANDLE;
|
|
|
|
|
|
|
|
ntlm_ContextFree(context);
|
|
|
|
return SEC_E_OK;
|
|
|
|
}
|
|
|
|
|
2012-02-24 00:56:50 +04:00
|
|
|
/* http://msdn.microsoft.com/en-us/library/windows/desktop/aa379337/ */
|
|
|
|
|
2014-08-18 21:34:47 +04:00
|
|
|
SECURITY_STATUS SEC_ENTRY ntlm_QueryContextAttributesW(PCtxtHandle phContext, ULONG ulAttribute, void* pBuffer)
|
2012-02-24 00:56:50 +04:00
|
|
|
{
|
2014-08-18 21:34:47 +04:00
|
|
|
NTLM_CONTEXT* context;
|
2014-06-11 00:38:16 +04:00
|
|
|
|
2012-02-27 20:58:14 +04:00
|
|
|
if (!phContext)
|
|
|
|
return SEC_E_INVALID_HANDLE;
|
|
|
|
|
|
|
|
if (!pBuffer)
|
|
|
|
return SEC_E_INSUFFICIENT_MEMORY;
|
|
|
|
|
2014-08-18 21:34:47 +04:00
|
|
|
context = (NTLM_CONTEXT*) sspi_SecureHandleGetLowerPointer(phContext);
|
2014-06-11 00:38:16 +04:00
|
|
|
|
2012-02-27 20:58:14 +04:00
|
|
|
if (ulAttribute == SECPKG_ATTR_SIZES)
|
|
|
|
{
|
2014-08-18 21:34:47 +04:00
|
|
|
SecPkgContext_Sizes* ContextSizes = (SecPkgContext_Sizes*) pBuffer;
|
2012-02-27 20:58:14 +04:00
|
|
|
ContextSizes->cbMaxToken = 2010;
|
|
|
|
ContextSizes->cbMaxSignature = 16;
|
|
|
|
ContextSizes->cbBlockSize = 0;
|
|
|
|
ContextSizes->cbSecurityTrailer = 16;
|
|
|
|
return SEC_E_OK;
|
|
|
|
}
|
2014-06-11 00:38:16 +04:00
|
|
|
else if (ulAttribute == SECPKG_ATTR_AUTH_IDENTITY)
|
|
|
|
{
|
|
|
|
int status;
|
2014-08-18 21:34:47 +04:00
|
|
|
char* UserA = NULL;
|
|
|
|
char* DomainA = NULL;
|
|
|
|
SSPI_CREDENTIALS* credentials;
|
|
|
|
SecPkgContext_AuthIdentity* AuthIdentity = (SecPkgContext_AuthIdentity*) pBuffer;
|
2014-06-19 00:02:13 +04:00
|
|
|
context->UseSamFileDatabase = FALSE;
|
2014-06-11 00:38:16 +04:00
|
|
|
credentials = context->credentials;
|
|
|
|
ZeroMemory(AuthIdentity, sizeof(SecPkgContext_AuthIdentity));
|
|
|
|
UserA = AuthIdentity->User;
|
2014-08-18 21:34:47 +04:00
|
|
|
status = ConvertFromUnicode(CP_UTF8, 0, (WCHAR*) credentials->identity.User,
|
2014-08-18 19:22:22 +04:00
|
|
|
credentials->identity.UserLength,
|
|
|
|
&UserA, 256, NULL, NULL);
|
2014-06-11 00:38:16 +04:00
|
|
|
|
|
|
|
if (status <= 0)
|
|
|
|
return SEC_E_INTERNAL_ERROR;
|
|
|
|
|
|
|
|
DomainA = AuthIdentity->Domain;
|
2014-08-18 21:34:47 +04:00
|
|
|
status = ConvertFromUnicode(CP_UTF8, 0, (WCHAR*) credentials->identity.Domain,
|
2014-08-18 19:22:22 +04:00
|
|
|
credentials->identity.DomainLength,
|
|
|
|
&DomainA, 256, NULL, NULL);
|
2014-06-11 00:38:16 +04:00
|
|
|
|
|
|
|
if (status <= 0)
|
|
|
|
return SEC_E_INTERNAL_ERROR;
|
|
|
|
|
|
|
|
return SEC_E_OK;
|
|
|
|
}
|
2012-02-27 20:58:14 +04:00
|
|
|
|
|
|
|
return SEC_E_UNSUPPORTED_FUNCTION;
|
2012-02-24 00:56:50 +04:00
|
|
|
}
|
|
|
|
|
2014-08-18 21:34:47 +04:00
|
|
|
SECURITY_STATUS SEC_ENTRY ntlm_QueryContextAttributesA(PCtxtHandle phContext, ULONG ulAttribute, void* pBuffer)
|
2012-07-27 02:35:39 +04:00
|
|
|
{
|
|
|
|
return ntlm_QueryContextAttributesW(phContext, ulAttribute, pBuffer);
|
|
|
|
}
|
|
|
|
|
2014-08-18 21:34:47 +04:00
|
|
|
SECURITY_STATUS SEC_ENTRY ntlm_SetContextAttributesW(PCtxtHandle phContext, ULONG ulAttribute, void* pBuffer, ULONG cbBuffer)
|
2014-06-11 00:38:16 +04:00
|
|
|
{
|
2014-08-18 21:34:47 +04:00
|
|
|
NTLM_CONTEXT* context;
|
2014-06-11 00:38:16 +04:00
|
|
|
|
|
|
|
if (!phContext)
|
|
|
|
return SEC_E_INVALID_HANDLE;
|
|
|
|
|
|
|
|
if (!pBuffer)
|
|
|
|
return SEC_E_INVALID_PARAMETER;
|
|
|
|
|
2014-08-18 21:34:47 +04:00
|
|
|
context = (NTLM_CONTEXT*) sspi_SecureHandleGetLowerPointer(phContext);
|
2014-06-11 00:38:16 +04:00
|
|
|
|
|
|
|
if (ulAttribute == SECPKG_ATTR_AUTH_NTLM_HASH)
|
|
|
|
{
|
2014-08-18 21:34:47 +04:00
|
|
|
SecPkgContext_AuthNtlmHash* AuthNtlmHash = (SecPkgContext_AuthNtlmHash*) pBuffer;
|
2014-06-11 00:38:16 +04:00
|
|
|
|
|
|
|
if (cbBuffer < sizeof(SecPkgContext_AuthNtlmHash))
|
|
|
|
return SEC_E_INVALID_PARAMETER;
|
|
|
|
|
2014-06-19 00:02:13 +04:00
|
|
|
if (AuthNtlmHash->Version == 1)
|
|
|
|
CopyMemory(context->NtlmHash, AuthNtlmHash->NtlmHash, 16);
|
|
|
|
else if (AuthNtlmHash->Version == 2)
|
|
|
|
CopyMemory(context->NtlmV2Hash, AuthNtlmHash->NtlmHash, 16);
|
2014-06-11 00:38:16 +04:00
|
|
|
|
|
|
|
return SEC_E_OK;
|
|
|
|
}
|
2014-06-18 22:42:35 +04:00
|
|
|
else if (ulAttribute == SECPKG_ATTR_AUTH_NTLM_MESSAGE)
|
|
|
|
{
|
2014-08-18 21:34:47 +04:00
|
|
|
SecPkgContext_AuthNtlmMessage* AuthNtlmMessage = (SecPkgContext_AuthNtlmMessage*) pBuffer;
|
2014-06-18 22:42:35 +04:00
|
|
|
|
|
|
|
if (cbBuffer < sizeof(SecPkgContext_AuthNtlmMessage))
|
|
|
|
return SEC_E_INVALID_PARAMETER;
|
|
|
|
|
|
|
|
if (AuthNtlmMessage->type == 1)
|
|
|
|
{
|
|
|
|
sspi_SecBufferFree(&context->NegotiateMessage);
|
2015-04-03 17:21:01 +03:00
|
|
|
if (!sspi_SecBufferAlloc(&context->NegotiateMessage, AuthNtlmMessage->length))
|
|
|
|
return SEC_E_INSUFFICIENT_MEMORY;
|
2014-06-18 22:42:35 +04:00
|
|
|
CopyMemory(context->NegotiateMessage.pvBuffer, AuthNtlmMessage->buffer, AuthNtlmMessage->length);
|
|
|
|
}
|
|
|
|
else if (AuthNtlmMessage->type == 2)
|
|
|
|
{
|
|
|
|
sspi_SecBufferFree(&context->ChallengeMessage);
|
2015-04-03 17:21:01 +03:00
|
|
|
if (!sspi_SecBufferAlloc(&context->ChallengeMessage, AuthNtlmMessage->length))
|
|
|
|
return SEC_E_INSUFFICIENT_MEMORY;
|
2014-06-18 22:42:35 +04:00
|
|
|
CopyMemory(context->ChallengeMessage.pvBuffer, AuthNtlmMessage->buffer, AuthNtlmMessage->length);
|
|
|
|
}
|
|
|
|
else if (AuthNtlmMessage->type == 3)
|
|
|
|
{
|
|
|
|
sspi_SecBufferFree(&context->AuthenticateMessage);
|
2015-04-03 17:21:01 +03:00
|
|
|
if (!sspi_SecBufferAlloc(&context->AuthenticateMessage, AuthNtlmMessage->length))
|
|
|
|
return SEC_E_INSUFFICIENT_MEMORY;
|
2014-06-18 22:42:35 +04:00
|
|
|
CopyMemory(context->AuthenticateMessage.pvBuffer, AuthNtlmMessage->buffer, AuthNtlmMessage->length);
|
|
|
|
}
|
|
|
|
|
|
|
|
return SEC_E_OK;
|
|
|
|
}
|
|
|
|
else if (ulAttribute == SECPKG_ATTR_AUTH_NTLM_TIMESTAMP)
|
|
|
|
{
|
2014-08-18 21:34:47 +04:00
|
|
|
SecPkgContext_AuthNtlmTimestamp* AuthNtlmTimestamp = (SecPkgContext_AuthNtlmTimestamp*) pBuffer;
|
2014-06-18 22:42:35 +04:00
|
|
|
|
|
|
|
if (cbBuffer < sizeof(SecPkgContext_AuthNtlmTimestamp))
|
|
|
|
return SEC_E_INVALID_PARAMETER;
|
|
|
|
|
|
|
|
if (AuthNtlmTimestamp->ChallengeOrResponse)
|
|
|
|
CopyMemory(context->ChallengeTimestamp, AuthNtlmTimestamp->Timestamp, 8);
|
|
|
|
else
|
|
|
|
CopyMemory(context->Timestamp, AuthNtlmTimestamp->Timestamp, 8);
|
|
|
|
|
|
|
|
return SEC_E_OK;
|
|
|
|
}
|
|
|
|
else if (ulAttribute == SECPKG_ATTR_AUTH_NTLM_CLIENT_CHALLENGE)
|
|
|
|
{
|
2014-08-18 21:34:47 +04:00
|
|
|
SecPkgContext_AuthNtlmClientChallenge* AuthNtlmClientChallenge = (SecPkgContext_AuthNtlmClientChallenge*) pBuffer;
|
2014-06-18 22:42:35 +04:00
|
|
|
|
|
|
|
if (cbBuffer < sizeof(SecPkgContext_AuthNtlmClientChallenge))
|
|
|
|
return SEC_E_INVALID_PARAMETER;
|
|
|
|
|
|
|
|
CopyMemory(context->ClientChallenge, AuthNtlmClientChallenge->ClientChallenge, 8);
|
|
|
|
return SEC_E_OK;
|
|
|
|
}
|
|
|
|
else if (ulAttribute == SECPKG_ATTR_AUTH_NTLM_SERVER_CHALLENGE)
|
|
|
|
{
|
2014-08-18 21:34:47 +04:00
|
|
|
SecPkgContext_AuthNtlmServerChallenge* AuthNtlmServerChallenge = (SecPkgContext_AuthNtlmServerChallenge*) pBuffer;
|
2014-06-18 22:42:35 +04:00
|
|
|
|
|
|
|
if (cbBuffer < sizeof(SecPkgContext_AuthNtlmServerChallenge))
|
|
|
|
return SEC_E_INVALID_PARAMETER;
|
|
|
|
|
|
|
|
CopyMemory(context->ServerChallenge, AuthNtlmServerChallenge->ServerChallenge, 8);
|
|
|
|
return SEC_E_OK;
|
|
|
|
}
|
2014-06-11 00:38:16 +04:00
|
|
|
|
|
|
|
return SEC_E_UNSUPPORTED_FUNCTION;
|
|
|
|
}
|
|
|
|
|
2014-08-18 21:34:47 +04:00
|
|
|
SECURITY_STATUS SEC_ENTRY ntlm_SetContextAttributesA(PCtxtHandle phContext, ULONG ulAttribute, void* pBuffer, ULONG cbBuffer)
|
2014-06-11 00:38:16 +04:00
|
|
|
{
|
|
|
|
return ntlm_SetContextAttributesW(phContext, ulAttribute, pBuffer, cbBuffer);
|
|
|
|
}
|
|
|
|
|
2012-03-24 09:01:28 +04:00
|
|
|
SECURITY_STATUS SEC_ENTRY ntlm_RevertSecurityContext(PCtxtHandle phContext)
|
2012-03-05 06:56:41 +04:00
|
|
|
{
|
2014-06-08 01:08:07 +04:00
|
|
|
return SEC_E_OK;
|
2012-03-05 06:56:41 +04:00
|
|
|
}
|
|
|
|
|
2012-05-22 04:39:45 +04:00
|
|
|
SECURITY_STATUS SEC_ENTRY ntlm_EncryptMessage(PCtxtHandle phContext, ULONG fQOP, PSecBufferDesc pMessage, ULONG MessageSeqNo)
|
2012-02-27 05:07:42 +04:00
|
|
|
{
|
|
|
|
int index;
|
|
|
|
int length;
|
2014-08-18 21:34:47 +04:00
|
|
|
void* data;
|
2012-06-29 16:55:03 +04:00
|
|
|
UINT32 SeqNo;
|
2012-02-27 05:07:42 +04:00
|
|
|
HMAC_CTX hmac;
|
2012-05-22 04:39:45 +04:00
|
|
|
BYTE digest[16];
|
|
|
|
BYTE checksum[8];
|
2014-08-18 21:34:47 +04:00
|
|
|
BYTE* signature;
|
2012-05-22 04:39:45 +04:00
|
|
|
ULONG version = 1;
|
2014-08-18 21:34:47 +04:00
|
|
|
NTLM_CONTEXT* context;
|
2012-03-24 08:14:45 +04:00
|
|
|
PSecBuffer data_buffer = NULL;
|
|
|
|
PSecBuffer signature_buffer = NULL;
|
2012-06-29 16:55:03 +04:00
|
|
|
SeqNo = MessageSeqNo;
|
2014-08-18 21:34:47 +04:00
|
|
|
context = (NTLM_CONTEXT*) sspi_SecureHandleGetLowerPointer(phContext);
|
2012-02-27 05:07:42 +04:00
|
|
|
|
2012-02-28 19:01:47 +04:00
|
|
|
for (index = 0; index < (int) pMessage->cBuffers; index++)
|
2012-02-27 05:07:42 +04:00
|
|
|
{
|
|
|
|
if (pMessage->pBuffers[index].BufferType == SECBUFFER_DATA)
|
|
|
|
data_buffer = &pMessage->pBuffers[index];
|
2012-03-24 08:14:45 +04:00
|
|
|
else if (pMessage->pBuffers[index].BufferType == SECBUFFER_TOKEN)
|
2012-02-27 05:07:42 +04:00
|
|
|
signature_buffer = &pMessage->pBuffers[index];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!data_buffer)
|
|
|
|
return SEC_E_INVALID_TOKEN;
|
|
|
|
|
|
|
|
if (!signature_buffer)
|
|
|
|
return SEC_E_INVALID_TOKEN;
|
|
|
|
|
|
|
|
/* Copy original data buffer */
|
|
|
|
length = data_buffer->cbBuffer;
|
2012-05-06 06:39:00 +04:00
|
|
|
data = malloc(length);
|
2014-06-07 01:20:34 +04:00
|
|
|
|
|
|
|
if (!data)
|
|
|
|
return SEC_E_INSUFFICIENT_MEMORY;
|
|
|
|
|
2012-05-24 23:19:11 +04:00
|
|
|
CopyMemory(data, data_buffer->pvBuffer, length);
|
2012-02-27 08:41:59 +04:00
|
|
|
/* Compute the HMAC-MD5 hash of ConcatenationOf(seq_num,data) using the client signing key */
|
2012-02-27 05:07:42 +04:00
|
|
|
HMAC_CTX_init(&hmac);
|
2012-03-19 06:24:49 +04:00
|
|
|
HMAC_Init_ex(&hmac, context->SendSigningKey, 16, EVP_md5(), NULL);
|
2014-08-18 21:34:47 +04:00
|
|
|
HMAC_Update(&hmac, (void*) &(SeqNo), 4);
|
|
|
|
HMAC_Update(&hmac, (void*) data, length);
|
2012-02-27 05:07:42 +04:00
|
|
|
HMAC_Final(&hmac, digest, NULL);
|
2012-02-27 08:41:59 +04:00
|
|
|
HMAC_CTX_cleanup(&hmac);
|
2012-02-27 05:07:42 +04:00
|
|
|
|
|
|
|
/* Encrypt message using with RC4, result overwrites original buffer */
|
2012-04-21 01:00:00 +04:00
|
|
|
|
|
|
|
if (context->confidentiality)
|
2014-08-18 21:34:47 +04:00
|
|
|
RC4(&context->SendRc4Seal, length, (BYTE*) data, (BYTE*) data_buffer->pvBuffer);
|
2012-04-21 01:00:00 +04:00
|
|
|
else
|
2012-05-25 22:03:56 +04:00
|
|
|
CopyMemory(data_buffer->pvBuffer, data, length);
|
2012-04-21 01:00:00 +04:00
|
|
|
|
2012-02-27 08:41:59 +04:00
|
|
|
#ifdef WITH_DEBUG_NTLM
|
2014-08-18 19:22:22 +04:00
|
|
|
WLog_DBG(TAG, "Data Buffer (length = %d)", length);
|
2014-08-19 13:49:25 +04:00
|
|
|
winpr_HexDump(TAG, WLOG_DEBUG, data, length);
|
2014-08-18 19:22:22 +04:00
|
|
|
WLog_DBG(TAG, "Encrypted Data Buffer (length = %d)", (int) data_buffer->cbBuffer);
|
2014-08-19 13:49:25 +04:00
|
|
|
winpr_HexDump(TAG, WLOG_DEBUG, data_buffer->pvBuffer, data_buffer->cbBuffer);
|
2012-02-27 08:41:59 +04:00
|
|
|
#endif
|
2012-05-21 02:32:22 +04:00
|
|
|
free(data);
|
2012-02-27 05:07:42 +04:00
|
|
|
/* RC4-encrypt first 8 bytes of digest */
|
2012-05-25 22:03:56 +04:00
|
|
|
RC4(&context->SendRc4Seal, 8, digest, checksum);
|
2014-08-18 21:34:47 +04:00
|
|
|
signature = (BYTE*) signature_buffer->pvBuffer;
|
2012-02-27 05:07:42 +04:00
|
|
|
/* Concatenate version, ciphertext and sequence number to build signature */
|
2014-08-18 21:34:47 +04:00
|
|
|
CopyMemory(signature, (void*) &version, 4);
|
|
|
|
CopyMemory(&signature[4], (void*) checksum, 8);
|
|
|
|
CopyMemory(&signature[12], (void*) &(SeqNo), 4);
|
2012-03-19 06:24:49 +04:00
|
|
|
context->SendSeqNum++;
|
2012-02-27 05:07:42 +04:00
|
|
|
#ifdef WITH_DEBUG_NTLM
|
2014-08-18 19:22:22 +04:00
|
|
|
WLog_DBG(TAG, "Signature (length = %d)", (int) signature_buffer->cbBuffer);
|
2014-08-19 13:49:25 +04:00
|
|
|
winpr_HexDump(TAG, WLOG_DEBUG, signature_buffer->pvBuffer, signature_buffer->cbBuffer);
|
2012-02-27 05:07:42 +04:00
|
|
|
#endif
|
|
|
|
return SEC_E_OK;
|
|
|
|
}
|
|
|
|
|
2012-05-22 04:39:45 +04:00
|
|
|
SECURITY_STATUS SEC_ENTRY ntlm_DecryptMessage(PCtxtHandle phContext, PSecBufferDesc pMessage, ULONG MessageSeqNo, PULONG pfQOP)
|
2012-02-27 07:08:43 +04:00
|
|
|
{
|
|
|
|
int index;
|
|
|
|
int length;
|
2014-08-18 21:34:47 +04:00
|
|
|
void* data;
|
2012-06-29 16:55:03 +04:00
|
|
|
UINT32 SeqNo;
|
2012-02-27 07:08:43 +04:00
|
|
|
HMAC_CTX hmac;
|
2012-05-23 11:08:24 +04:00
|
|
|
BYTE digest[16];
|
|
|
|
BYTE checksum[8];
|
|
|
|
UINT32 version = 1;
|
2014-08-18 21:34:47 +04:00
|
|
|
NTLM_CONTEXT* context;
|
2012-05-23 11:08:24 +04:00
|
|
|
BYTE expected_signature[16];
|
2012-03-24 08:14:45 +04:00
|
|
|
PSecBuffer data_buffer = NULL;
|
|
|
|
PSecBuffer signature_buffer = NULL;
|
2012-06-29 16:55:03 +04:00
|
|
|
SeqNo = (UINT32) MessageSeqNo;
|
2014-08-18 21:34:47 +04:00
|
|
|
context = (NTLM_CONTEXT*) sspi_SecureHandleGetLowerPointer(phContext);
|
2012-02-27 07:08:43 +04:00
|
|
|
|
2012-02-28 19:01:47 +04:00
|
|
|
for (index = 0; index < (int) pMessage->cBuffers; index++)
|
2012-02-27 07:08:43 +04:00
|
|
|
{
|
|
|
|
if (pMessage->pBuffers[index].BufferType == SECBUFFER_DATA)
|
|
|
|
data_buffer = &pMessage->pBuffers[index];
|
2012-03-24 08:14:45 +04:00
|
|
|
else if (pMessage->pBuffers[index].BufferType == SECBUFFER_TOKEN)
|
2012-02-27 07:08:43 +04:00
|
|
|
signature_buffer = &pMessage->pBuffers[index];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!data_buffer)
|
|
|
|
return SEC_E_INVALID_TOKEN;
|
|
|
|
|
|
|
|
if (!signature_buffer)
|
|
|
|
return SEC_E_INVALID_TOKEN;
|
|
|
|
|
|
|
|
/* Copy original data buffer */
|
|
|
|
length = data_buffer->cbBuffer;
|
2012-05-06 06:39:00 +04:00
|
|
|
data = malloc(length);
|
2014-06-07 01:20:34 +04:00
|
|
|
|
|
|
|
if (!data)
|
|
|
|
return SEC_E_INSUFFICIENT_MEMORY;
|
|
|
|
|
2012-05-24 23:19:11 +04:00
|
|
|
CopyMemory(data, data_buffer->pvBuffer, length);
|
2012-02-27 07:08:43 +04:00
|
|
|
|
2012-05-24 23:19:11 +04:00
|
|
|
/* Decrypt message using with RC4, result overwrites original buffer */
|
|
|
|
|
|
|
|
if (context->confidentiality)
|
2014-08-18 21:34:47 +04:00
|
|
|
RC4(&context->RecvRc4Seal, length, (BYTE*) data, (BYTE*) data_buffer->pvBuffer);
|
2012-05-24 23:19:11 +04:00
|
|
|
else
|
|
|
|
CopyMemory(data_buffer->pvBuffer, data, length);
|
2012-02-27 07:08:43 +04:00
|
|
|
|
2012-02-27 08:41:59 +04:00
|
|
|
/* Compute the HMAC-MD5 hash of ConcatenationOf(seq_num,data) using the client signing key */
|
2012-02-27 07:08:43 +04:00
|
|
|
HMAC_CTX_init(&hmac);
|
2012-03-19 06:24:49 +04:00
|
|
|
HMAC_Init_ex(&hmac, context->RecvSigningKey, 16, EVP_md5(), NULL);
|
2014-08-18 21:34:47 +04:00
|
|
|
HMAC_Update(&hmac, (void*) &(SeqNo), 4);
|
|
|
|
HMAC_Update(&hmac, (void*) data_buffer->pvBuffer, data_buffer->cbBuffer);
|
2012-02-27 07:08:43 +04:00
|
|
|
HMAC_Final(&hmac, digest, NULL);
|
2012-02-27 08:41:59 +04:00
|
|
|
HMAC_CTX_cleanup(&hmac);
|
2012-05-21 02:32:22 +04:00
|
|
|
#ifdef WITH_DEBUG_NTLM
|
2014-08-18 19:22:22 +04:00
|
|
|
WLog_DBG(TAG, "Encrypted Data Buffer (length = %d)", length);
|
2014-08-19 13:49:25 +04:00
|
|
|
winpr_HexDump(TAG, WLOG_DEBUG, data, length);
|
2014-08-18 19:22:22 +04:00
|
|
|
WLog_DBG(TAG, "Data Buffer (length = %d)", (int) data_buffer->cbBuffer);
|
2014-08-19 13:49:25 +04:00
|
|
|
winpr_HexDump(TAG, WLOG_DEBUG, data_buffer->pvBuffer, data_buffer->cbBuffer);
|
2012-05-21 02:32:22 +04:00
|
|
|
#endif
|
2012-05-06 06:39:00 +04:00
|
|
|
free(data);
|
2012-02-27 07:08:43 +04:00
|
|
|
/* RC4-encrypt first 8 bytes of digest */
|
2012-05-25 22:03:56 +04:00
|
|
|
RC4(&context->RecvRc4Seal, 8, digest, checksum);
|
2012-02-27 07:08:43 +04:00
|
|
|
/* Concatenate version, ciphertext and sequence number to build signature */
|
2014-08-18 21:34:47 +04:00
|
|
|
CopyMemory(expected_signature, (void*) &version, 4);
|
|
|
|
CopyMemory(&expected_signature[4], (void*) checksum, 8);
|
|
|
|
CopyMemory(&expected_signature[12], (void*) &(SeqNo), 4);
|
2012-03-19 06:24:49 +04:00
|
|
|
context->RecvSeqNum++;
|
2012-02-27 07:08:43 +04:00
|
|
|
|
|
|
|
if (memcmp(signature_buffer->pvBuffer, expected_signature, 16) != 0)
|
|
|
|
{
|
|
|
|
/* signature verification failed! */
|
2014-08-18 20:57:08 +04:00
|
|
|
WLog_ERR(TAG, "signature verification failed, something nasty is going on!");
|
2014-08-18 19:22:22 +04:00
|
|
|
WLog_ERR(TAG, "Expected Signature:");
|
|
|
|
winpr_HexDump(TAG, WLOG_ERROR, expected_signature, 16);
|
|
|
|
WLog_ERR(TAG, "Actual Signature:");
|
2014-08-18 21:34:47 +04:00
|
|
|
winpr_HexDump(TAG, WLOG_ERROR, (BYTE*) signature_buffer->pvBuffer, 16);
|
2012-02-27 07:08:43 +04:00
|
|
|
return SEC_E_MESSAGE_ALTERED;
|
|
|
|
}
|
|
|
|
|
2012-02-27 08:41:59 +04:00
|
|
|
return SEC_E_OK;
|
|
|
|
}
|
2012-02-27 07:08:43 +04:00
|
|
|
|
2012-05-22 04:39:45 +04:00
|
|
|
SECURITY_STATUS SEC_ENTRY ntlm_MakeSignature(PCtxtHandle phContext, ULONG fQOP, PSecBufferDesc pMessage, ULONG MessageSeqNo)
|
2012-02-27 08:41:59 +04:00
|
|
|
{
|
2014-06-07 01:20:34 +04:00
|
|
|
return SEC_E_UNSUPPORTED_FUNCTION;
|
2012-02-27 08:41:59 +04:00
|
|
|
}
|
2012-02-27 07:08:43 +04:00
|
|
|
|
2012-05-22 04:39:45 +04:00
|
|
|
SECURITY_STATUS SEC_ENTRY ntlm_VerifySignature(PCtxtHandle phContext, PSecBufferDesc pMessage, ULONG MessageSeqNo, PULONG pfQOP)
|
2012-02-27 08:41:59 +04:00
|
|
|
{
|
2014-06-07 01:20:34 +04:00
|
|
|
return SEC_E_UNSUPPORTED_FUNCTION;
|
2012-02-27 07:08:43 +04:00
|
|
|
}
|
|
|
|
|
2012-03-24 23:47:16 +04:00
|
|
|
const SecurityFunctionTableA NTLM_SecurityFunctionTableA =
|
2012-02-24 00:56:50 +04:00
|
|
|
{
|
|
|
|
1, /* dwVersion */
|
|
|
|
NULL, /* EnumerateSecurityPackages */
|
2012-03-24 09:01:28 +04:00
|
|
|
ntlm_QueryCredentialsAttributesA, /* QueryCredentialsAttributes */
|
|
|
|
ntlm_AcquireCredentialsHandleA, /* AcquireCredentialsHandle */
|
2012-02-25 00:00:49 +04:00
|
|
|
ntlm_FreeCredentialsHandle, /* FreeCredentialsHandle */
|
2012-02-24 00:56:50 +04:00
|
|
|
NULL, /* Reserved2 */
|
2012-03-24 09:01:28 +04:00
|
|
|
ntlm_InitializeSecurityContextA, /* InitializeSecurityContext */
|
2012-03-05 06:56:41 +04:00
|
|
|
ntlm_AcceptSecurityContext, /* AcceptSecurityContext */
|
2014-06-08 00:26:57 +04:00
|
|
|
ntlm_CompleteAuthToken, /* CompleteAuthToken */
|
2012-03-16 21:12:49 +04:00
|
|
|
ntlm_DeleteSecurityContext, /* DeleteSecurityContext */
|
2012-02-24 00:56:50 +04:00
|
|
|
NULL, /* ApplyControlToken */
|
2012-03-24 09:01:28 +04:00
|
|
|
ntlm_QueryContextAttributesA, /* QueryContextAttributes */
|
2012-03-05 06:56:41 +04:00
|
|
|
ntlm_ImpersonateSecurityContext, /* ImpersonateSecurityContext */
|
|
|
|
ntlm_RevertSecurityContext, /* RevertSecurityContext */
|
2012-02-27 08:41:59 +04:00
|
|
|
ntlm_MakeSignature, /* MakeSignature */
|
|
|
|
ntlm_VerifySignature, /* VerifySignature */
|
2012-02-24 00:56:50 +04:00
|
|
|
NULL, /* FreeContextBuffer */
|
|
|
|
NULL, /* QuerySecurityPackageInfo */
|
|
|
|
NULL, /* Reserved3 */
|
|
|
|
NULL, /* Reserved4 */
|
|
|
|
NULL, /* ExportSecurityContext */
|
|
|
|
NULL, /* ImportSecurityContext */
|
|
|
|
NULL, /* AddCredentials */
|
|
|
|
NULL, /* Reserved8 */
|
|
|
|
NULL, /* QuerySecurityContextToken */
|
2012-02-27 05:07:42 +04:00
|
|
|
ntlm_EncryptMessage, /* EncryptMessage */
|
2012-02-27 07:08:43 +04:00
|
|
|
ntlm_DecryptMessage, /* DecryptMessage */
|
2014-06-11 00:38:16 +04:00
|
|
|
ntlm_SetContextAttributesA, /* SetContextAttributes */
|
2012-02-24 00:56:50 +04:00
|
|
|
};
|
2012-03-24 23:47:16 +04:00
|
|
|
|
|
|
|
const SecurityFunctionTableW NTLM_SecurityFunctionTableW =
|
|
|
|
{
|
|
|
|
1, /* dwVersion */
|
|
|
|
NULL, /* EnumerateSecurityPackages */
|
|
|
|
ntlm_QueryCredentialsAttributesW, /* QueryCredentialsAttributes */
|
|
|
|
ntlm_AcquireCredentialsHandleW, /* AcquireCredentialsHandle */
|
|
|
|
ntlm_FreeCredentialsHandle, /* FreeCredentialsHandle */
|
|
|
|
NULL, /* Reserved2 */
|
|
|
|
ntlm_InitializeSecurityContextW, /* InitializeSecurityContext */
|
|
|
|
ntlm_AcceptSecurityContext, /* AcceptSecurityContext */
|
2014-06-08 00:26:57 +04:00
|
|
|
ntlm_CompleteAuthToken, /* CompleteAuthToken */
|
2012-03-24 23:47:16 +04:00
|
|
|
ntlm_DeleteSecurityContext, /* DeleteSecurityContext */
|
|
|
|
NULL, /* ApplyControlToken */
|
|
|
|
ntlm_QueryContextAttributesW, /* QueryContextAttributes */
|
|
|
|
ntlm_ImpersonateSecurityContext, /* ImpersonateSecurityContext */
|
|
|
|
ntlm_RevertSecurityContext, /* RevertSecurityContext */
|
|
|
|
ntlm_MakeSignature, /* MakeSignature */
|
|
|
|
ntlm_VerifySignature, /* VerifySignature */
|
|
|
|
NULL, /* FreeContextBuffer */
|
|
|
|
NULL, /* QuerySecurityPackageInfo */
|
|
|
|
NULL, /* Reserved3 */
|
|
|
|
NULL, /* Reserved4 */
|
|
|
|
NULL, /* ExportSecurityContext */
|
|
|
|
NULL, /* ImportSecurityContext */
|
|
|
|
NULL, /* AddCredentials */
|
|
|
|
NULL, /* Reserved8 */
|
|
|
|
NULL, /* QuerySecurityContextToken */
|
|
|
|
ntlm_EncryptMessage, /* EncryptMessage */
|
|
|
|
ntlm_DecryptMessage, /* DecryptMessage */
|
2014-06-11 00:38:16 +04:00
|
|
|
ntlm_SetContextAttributesA, /* SetContextAttributes */
|
2012-03-24 23:47:16 +04:00
|
|
|
};
|
2012-05-25 09:50:46 +04:00
|
|
|
|
|
|
|
const SecPkgInfoA NTLM_SecPkgInfoA =
|
|
|
|
{
|
|
|
|
0x00082B37, /* fCapabilities */
|
|
|
|
1, /* wVersion */
|
|
|
|
0x000A, /* wRPCID */
|
|
|
|
0x00000B48, /* cbMaxToken */
|
|
|
|
"NTLM", /* Name */
|
|
|
|
"NTLM Security Package" /* Comment */
|
|
|
|
};
|
|
|
|
|
2012-06-04 03:59:35 +04:00
|
|
|
WCHAR NTLM_SecPkgInfoW_Name[] = { 'N','T','L','M','\0' };
|
|
|
|
|
|
|
|
WCHAR NTLM_SecPkgInfoW_Comment[] =
|
|
|
|
{
|
|
|
|
'N','T','L','M',' ',
|
|
|
|
'S','e','c','u','r','i','t','y',' ',
|
|
|
|
'P','a','c','k','a','g','e','\0'
|
|
|
|
};
|
|
|
|
|
2012-05-25 09:50:46 +04:00
|
|
|
const SecPkgInfoW NTLM_SecPkgInfoW =
|
|
|
|
{
|
|
|
|
0x00082B37, /* fCapabilities */
|
|
|
|
1, /* wVersion */
|
|
|
|
0x000A, /* wRPCID */
|
|
|
|
0x00000B48, /* cbMaxToken */
|
2012-06-04 03:59:35 +04:00
|
|
|
NTLM_SecPkgInfoW_Name, /* Name */
|
|
|
|
NTLM_SecPkgInfoW_Comment /* Comment */
|
2012-05-25 09:50:46 +04:00
|
|
|
};
|