2012-03-06 02:03:49 +04:00
|
|
|
/**
|
2012-05-22 06:48:33 +04:00
|
|
|
* WinPR: Windows Portable Runtime
|
2012-03-06 02:03:49 +04:00
|
|
|
* Negotiate Security Package
|
|
|
|
*
|
2014-06-06 06:10:08 +04:00
|
|
|
* Copyright 2011-2014 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
2017-05-11 19:51:45 +03:00
|
|
|
* Copyright 2017 Dorian Ducournau <dorian.ducournau@gmail.com>
|
2015-07-07 18:17:29 +03:00
|
|
|
*
|
2012-03-06 02:03:49 +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-05-06 06:39:00 +04:00
|
|
|
#include <winpr/crt.h>
|
|
|
|
#include <winpr/sspi.h>
|
2012-03-06 02:03:49 +04:00
|
|
|
|
|
|
|
#include "negotiate.h"
|
|
|
|
|
|
|
|
#include "../sspi.h"
|
2015-07-07 18:17:29 +03:00
|
|
|
#include "../log.h"
|
2016-07-22 00:53:20 +03:00
|
|
|
#define TAG WINPR_TAG("negotiate")
|
2012-03-06 02:03:49 +04:00
|
|
|
|
2014-06-08 00:26:57 +04:00
|
|
|
extern const SecurityFunctionTableA NTLM_SecurityFunctionTableA;
|
|
|
|
extern const SecurityFunctionTableW NTLM_SecurityFunctionTableW;
|
|
|
|
|
2017-05-11 19:51:45 +03:00
|
|
|
extern const SecurityFunctionTableA KERBEROS_SecurityFunctionTableA;
|
|
|
|
extern const SecurityFunctionTableW KERBEROS_SecurityFunctionTableW;
|
|
|
|
|
|
|
|
#ifdef WITH_GSSAPI
|
|
|
|
static BOOL ErrorInitContextKerberos = FALSE;
|
|
|
|
#else
|
|
|
|
static BOOL ErrorInitContextKerberos = TRUE;
|
|
|
|
#endif
|
|
|
|
|
2017-07-03 13:47:56 +03:00
|
|
|
const SecPkgInfoA NEGOTIATE_SecPkgInfoA =
|
|
|
|
{
|
|
|
|
0x00083BB3, /* fCapabilities */
|
|
|
|
1, /* wVersion */
|
|
|
|
0x0009, /* wRPCID */
|
|
|
|
0x00002FE0, /* cbMaxToken */
|
|
|
|
"Negotiate", /* Name */
|
|
|
|
"Microsoft Package Negotiator" /* Comment */
|
|
|
|
};
|
|
|
|
|
|
|
|
WCHAR NEGOTIATE_SecPkgInfoW_Name[] = { 'N', 'e', 'g', 'o', 't', 'i', 'a', 't', 'e', '\0' };
|
|
|
|
|
|
|
|
WCHAR NEGOTIATE_SecPkgInfoW_Comment[] =
|
|
|
|
{
|
|
|
|
'M', 'i', 'c', 'r', 'o', 's', 'o', 'f', 't', ' ',
|
|
|
|
'P', 'a', 'c', 'k', 'a', 'g', 'e', ' ',
|
|
|
|
'N', 'e', 'g', 'o', 't', 'i', 'a', 't', 'o', 'r', '\0'
|
|
|
|
};
|
|
|
|
|
|
|
|
const SecPkgInfoW NEGOTIATE_SecPkgInfoW =
|
|
|
|
{
|
|
|
|
0x00083BB3, /* fCapabilities */
|
|
|
|
1, /* wVersion */
|
|
|
|
0x0009, /* wRPCID */
|
|
|
|
0x00002FE0, /* cbMaxToken */
|
|
|
|
NEGOTIATE_SecPkgInfoW_Name, /* Name */
|
|
|
|
NEGOTIATE_SecPkgInfoW_Comment /* Comment */
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2017-05-11 19:51:45 +03:00
|
|
|
void negotiate_SetSubPackage(NEGOTIATE_CONTEXT* context, const char* name)
|
|
|
|
{
|
|
|
|
if (strcmp(name, KERBEROS_SSP_NAME) == 0)
|
|
|
|
{
|
|
|
|
context->sspiA = (SecurityFunctionTableA*) &KERBEROS_SecurityFunctionTableA;
|
|
|
|
context->sspiW = (SecurityFunctionTableW*) &KERBEROS_SecurityFunctionTableW;
|
|
|
|
context->kerberos = TRUE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
context->sspiA = (SecurityFunctionTableA*) &NTLM_SecurityFunctionTableA;
|
|
|
|
context->sspiW = (SecurityFunctionTableW*) &NTLM_SecurityFunctionTableW;
|
|
|
|
context->kerberos = FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
sspi_SecureHandleSetLowerPointer(&(context->SubContext), NULL);
|
|
|
|
sspi_SecureHandleSetUpperPointer(&(context->SubContext), NULL);
|
|
|
|
}
|
2012-03-06 02:03:49 +04:00
|
|
|
|
2014-06-08 00:26:57 +04:00
|
|
|
NEGOTIATE_CONTEXT* negotiate_ContextNew()
|
|
|
|
{
|
|
|
|
NEGOTIATE_CONTEXT* context;
|
|
|
|
context = (NEGOTIATE_CONTEXT*) calloc(1, sizeof(NEGOTIATE_CONTEXT));
|
|
|
|
|
|
|
|
if (!context)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
context->NegotiateFlags = 0;
|
|
|
|
context->state = NEGOTIATE_STATE_INITIAL;
|
2014-06-10 22:16:02 +04:00
|
|
|
SecInvalidateHandle(&(context->SubContext));
|
2017-07-03 13:47:56 +03:00
|
|
|
negotiate_SetSubPackage(context, (const char*) KERBEROS_SSP_NAME);
|
2014-06-08 00:26:57 +04:00
|
|
|
return context;
|
|
|
|
}
|
|
|
|
|
|
|
|
void negotiate_ContextFree(NEGOTIATE_CONTEXT* context)
|
|
|
|
{
|
|
|
|
free(context);
|
|
|
|
}
|
|
|
|
|
2017-05-11 19:51:45 +03:00
|
|
|
SECURITY_STATUS SEC_ENTRY negotiate_InitializeSecurityContextW(PCredHandle phCredential,
|
|
|
|
PCtxtHandle phContext,
|
|
|
|
SEC_WCHAR* pszTargetName, ULONG fContextReq, ULONG Reserved1, ULONG TargetDataRep,
|
|
|
|
PSecBufferDesc pInput, ULONG Reserved2, PCtxtHandle phNewContext,
|
|
|
|
PSecBufferDesc pOutput, PULONG pfContextAttr, PTimeStamp ptsExpiry)
|
2012-03-24 23:47:16 +04:00
|
|
|
{
|
2014-06-08 00:26:57 +04:00
|
|
|
SECURITY_STATUS status;
|
|
|
|
NEGOTIATE_CONTEXT* context;
|
|
|
|
context = (NEGOTIATE_CONTEXT*) sspi_SecureHandleGetLowerPointer(phContext);
|
|
|
|
|
|
|
|
if (!context)
|
|
|
|
{
|
|
|
|
context = negotiate_ContextNew();
|
|
|
|
|
|
|
|
if (!context)
|
|
|
|
return SEC_E_INTERNAL_ERROR;
|
|
|
|
|
|
|
|
sspi_SecureHandleSetLowerPointer(phNewContext, context);
|
2017-07-03 13:47:56 +03:00
|
|
|
sspi_SecureHandleSetUpperPointer(phNewContext, (void*) NEGO_SSP_NAME);
|
2014-06-08 00:26:57 +04:00
|
|
|
}
|
|
|
|
|
2017-05-11 19:51:45 +03:00
|
|
|
/* if Kerberos has previously failed or WITH_GSSAPI is not defined, we use NTLM directly */
|
|
|
|
if (ErrorInitContextKerberos == FALSE)
|
|
|
|
{
|
|
|
|
if (!pInput)
|
|
|
|
{
|
2017-07-03 13:47:56 +03:00
|
|
|
negotiate_SetSubPackage(context, (const char*) KERBEROS_SSP_NAME);
|
2017-05-11 19:51:45 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
status = context->sspiW->InitializeSecurityContextW(phCredential, &(context->SubContext),
|
|
|
|
pszTargetName, fContextReq, Reserved1, TargetDataRep, pInput, Reserved2, &(context->SubContext),
|
|
|
|
pOutput, pfContextAttr, ptsExpiry);
|
|
|
|
|
|
|
|
if (status == SEC_E_NO_CREDENTIALS)
|
|
|
|
{
|
|
|
|
WLog_WARN(TAG, "No Kerberos credentials. Retry with NTLM");
|
|
|
|
ErrorInitContextKerberos = TRUE;
|
|
|
|
context->sspiA->DeleteSecurityContext(&(context->SubContext));
|
|
|
|
negotiate_ContextFree(context);
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!pInput)
|
|
|
|
{
|
|
|
|
context->sspiA->DeleteSecurityContext(&(context->SubContext));
|
2017-07-03 13:47:56 +03:00
|
|
|
negotiate_SetSubPackage(context, (const char*) NTLM_SSP_NAME);
|
2017-05-11 19:51:45 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
status = context->sspiW->InitializeSecurityContextW(phCredential, &(context->SubContext),
|
|
|
|
pszTargetName, fContextReq, Reserved1, TargetDataRep, pInput, Reserved2, &(context->SubContext),
|
|
|
|
pOutput, pfContextAttr, ptsExpiry);
|
|
|
|
}
|
2014-06-08 00:26:57 +04:00
|
|
|
|
|
|
|
return status;
|
2012-03-24 23:47:16 +04:00
|
|
|
}
|
|
|
|
|
2017-05-11 19:51:45 +03:00
|
|
|
SECURITY_STATUS SEC_ENTRY negotiate_InitializeSecurityContextA(PCredHandle phCredential,
|
|
|
|
PCtxtHandle phContext,
|
|
|
|
SEC_CHAR* pszTargetName, ULONG fContextReq, ULONG Reserved1, ULONG TargetDataRep,
|
|
|
|
PSecBufferDesc pInput, ULONG Reserved2, PCtxtHandle phNewContext,
|
|
|
|
PSecBufferDesc pOutput, PULONG pfContextAttr, PTimeStamp ptsExpiry)
|
2012-03-06 02:03:49 +04:00
|
|
|
{
|
2014-06-08 00:26:57 +04:00
|
|
|
SECURITY_STATUS status;
|
2012-03-06 02:03:49 +04:00
|
|
|
NEGOTIATE_CONTEXT* context;
|
2014-06-07 01:20:34 +04:00
|
|
|
context = (NEGOTIATE_CONTEXT*) sspi_SecureHandleGetLowerPointer(phContext);
|
2012-03-06 02:03:49 +04:00
|
|
|
|
|
|
|
if (!context)
|
|
|
|
{
|
|
|
|
context = negotiate_ContextNew();
|
|
|
|
|
2014-06-08 00:26:57 +04:00
|
|
|
if (!context)
|
|
|
|
return SEC_E_INTERNAL_ERROR;
|
|
|
|
|
2012-03-06 02:03:49 +04:00
|
|
|
sspi_SecureHandleSetLowerPointer(phNewContext, context);
|
2017-07-03 13:47:56 +03:00
|
|
|
sspi_SecureHandleSetUpperPointer(phNewContext, (void*) NEGO_SSP_NAME);
|
2012-03-06 02:03:49 +04:00
|
|
|
}
|
|
|
|
|
2017-05-11 19:51:45 +03:00
|
|
|
/* if Kerberos has previously failed or WITH_GSSAPI is not defined, we use NTLM directly */
|
|
|
|
if (ErrorInitContextKerberos == FALSE)
|
|
|
|
{
|
|
|
|
if (!pInput)
|
|
|
|
{
|
2017-07-03 13:47:56 +03:00
|
|
|
negotiate_SetSubPackage(context, (const char*) KERBEROS_SSP_NAME);
|
2017-05-11 19:51:45 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
status = context->sspiA->InitializeSecurityContextA(phCredential, &(context->SubContext),
|
|
|
|
pszTargetName, fContextReq, Reserved1, TargetDataRep, pInput, Reserved2, &(context->SubContext),
|
|
|
|
pOutput, pfContextAttr, ptsExpiry);
|
|
|
|
|
|
|
|
if (status == SEC_E_NO_CREDENTIALS)
|
|
|
|
{
|
|
|
|
WLog_WARN(TAG, "No Kerberos credentials. Retry with NTLM");
|
|
|
|
ErrorInitContextKerberos = TRUE;
|
|
|
|
context->sspiA->DeleteSecurityContext(&(context->SubContext));
|
|
|
|
negotiate_ContextFree(context);
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!pInput)
|
|
|
|
{
|
|
|
|
context->sspiA->DeleteSecurityContext(&(context->SubContext));
|
2017-07-03 13:47:56 +03:00
|
|
|
negotiate_SetSubPackage(context, (const char*) NTLM_SSP_NAME);
|
2017-05-11 19:51:45 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
status = context->sspiA->InitializeSecurityContextA(phCredential, &(context->SubContext),
|
|
|
|
pszTargetName, fContextReq, Reserved1, TargetDataRep, pInput, Reserved2, &(context->SubContext),
|
|
|
|
pOutput, pfContextAttr, ptsExpiry);
|
|
|
|
}
|
2014-06-08 00:26:57 +04:00
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
2017-05-11 19:51:45 +03:00
|
|
|
SECURITY_STATUS SEC_ENTRY negotiate_AcceptSecurityContext(PCredHandle phCredential,
|
|
|
|
PCtxtHandle phContext,
|
|
|
|
PSecBufferDesc pInput, ULONG fContextReq, ULONG TargetDataRep, PCtxtHandle phNewContext,
|
|
|
|
PSecBufferDesc pOutput, PULONG pfContextAttr, PTimeStamp ptsTimeStamp)
|
2014-06-08 00:26:57 +04:00
|
|
|
{
|
|
|
|
SECURITY_STATUS status;
|
|
|
|
NEGOTIATE_CONTEXT* context;
|
|
|
|
context = (NEGOTIATE_CONTEXT*) sspi_SecureHandleGetLowerPointer(phContext);
|
|
|
|
|
|
|
|
if (!context)
|
2012-03-06 02:03:49 +04:00
|
|
|
{
|
2014-06-08 00:26:57 +04:00
|
|
|
context = negotiate_ContextNew();
|
2012-03-06 02:03:49 +04:00
|
|
|
|
2014-06-08 00:26:57 +04:00
|
|
|
if (!context)
|
|
|
|
return SEC_E_INTERNAL_ERROR;
|
2012-03-06 02:03:49 +04:00
|
|
|
|
2014-06-08 00:26:57 +04:00
|
|
|
sspi_SecureHandleSetLowerPointer(phNewContext, context);
|
2017-07-03 13:47:56 +03:00
|
|
|
sspi_SecureHandleSetUpperPointer(phNewContext, (void*) NEGO_SSP_NAME);
|
2014-06-08 00:26:57 +04:00
|
|
|
}
|
2012-03-06 02:03:49 +04:00
|
|
|
|
2017-07-03 13:47:56 +03:00
|
|
|
negotiate_SetSubPackage(context,
|
|
|
|
(const char*) NTLM_SSP_NAME); /* server-side Kerberos not yet implemented */
|
2014-06-10 22:16:02 +04:00
|
|
|
status = context->sspiA->AcceptSecurityContext(phCredential, &(context->SubContext),
|
2017-05-11 19:51:45 +03:00
|
|
|
pInput, fContextReq, TargetDataRep, &(context->SubContext),
|
|
|
|
pOutput, pfContextAttr, ptsTimeStamp);
|
2014-06-08 00:26:57 +04:00
|
|
|
|
2015-07-07 18:17:29 +03:00
|
|
|
if (status != SEC_E_OK)
|
|
|
|
{
|
2016-12-14 00:47:08 +03:00
|
|
|
WLog_WARN(TAG, "AcceptSecurityContext status %s [0x%08"PRIX32"]",
|
2017-05-11 19:51:45 +03:00
|
|
|
GetSecurityStatusString(status), status);
|
2015-07-07 18:17:29 +03:00
|
|
|
}
|
2017-05-11 19:51:45 +03:00
|
|
|
|
2015-07-07 18:17:29 +03:00
|
|
|
return status;
|
2012-03-06 02:03:49 +04:00
|
|
|
}
|
|
|
|
|
2014-06-08 00:26:57 +04:00
|
|
|
SECURITY_STATUS SEC_ENTRY negotiate_CompleteAuthToken(PCtxtHandle phContext, PSecBufferDesc pToken)
|
2012-03-06 02:03:49 +04:00
|
|
|
{
|
|
|
|
NEGOTIATE_CONTEXT* context;
|
2014-06-08 00:26:57 +04:00
|
|
|
SECURITY_STATUS status = SEC_E_OK;
|
|
|
|
context = (NEGOTIATE_CONTEXT*) sspi_SecureHandleGetLowerPointer(phContext);
|
2012-03-06 02:03:49 +04:00
|
|
|
|
2014-06-07 01:20:34 +04:00
|
|
|
if (!context)
|
2014-06-08 00:26:57 +04:00
|
|
|
return SEC_E_INVALID_HANDLE;
|
2014-06-07 01:20:34 +04:00
|
|
|
|
2014-06-08 00:26:57 +04:00
|
|
|
if (context->sspiW->CompleteAuthToken)
|
2015-05-15 14:02:40 +03:00
|
|
|
status = context->sspiW->CompleteAuthToken(&(context->SubContext), pToken);
|
2012-03-06 02:03:49 +04:00
|
|
|
|
2014-06-08 00:26:57 +04:00
|
|
|
return status;
|
2012-03-06 02:03:49 +04:00
|
|
|
}
|
|
|
|
|
2014-06-08 00:26:57 +04:00
|
|
|
SECURITY_STATUS SEC_ENTRY negotiate_DeleteSecurityContext(PCtxtHandle phContext)
|
2012-03-06 02:03:49 +04:00
|
|
|
{
|
2014-06-08 00:26:57 +04:00
|
|
|
NEGOTIATE_CONTEXT* context;
|
|
|
|
SECURITY_STATUS status = SEC_E_OK;
|
|
|
|
context = (NEGOTIATE_CONTEXT*) sspi_SecureHandleGetLowerPointer(phContext);
|
|
|
|
|
2012-03-06 02:03:49 +04:00
|
|
|
if (!context)
|
2014-06-08 00:26:57 +04:00
|
|
|
return SEC_E_INVALID_HANDLE;
|
2012-03-06 02:03:49 +04:00
|
|
|
|
2014-06-08 00:26:57 +04:00
|
|
|
if (context->sspiW->DeleteSecurityContext)
|
2014-06-10 22:16:02 +04:00
|
|
|
status = context->sspiW->DeleteSecurityContext(&(context->SubContext));
|
2014-06-08 00:26:57 +04:00
|
|
|
|
|
|
|
negotiate_ContextFree(context);
|
|
|
|
return status;
|
2012-03-06 02:03:49 +04:00
|
|
|
}
|
|
|
|
|
2014-06-11 00:38:16 +04:00
|
|
|
SECURITY_STATUS SEC_ENTRY negotiate_ImpersonateSecurityContext(PCtxtHandle phContext)
|
|
|
|
{
|
|
|
|
NEGOTIATE_CONTEXT* context;
|
|
|
|
SECURITY_STATUS status = SEC_E_OK;
|
|
|
|
context = (NEGOTIATE_CONTEXT*) sspi_SecureHandleGetLowerPointer(phContext);
|
|
|
|
|
|
|
|
if (!phContext)
|
|
|
|
return SEC_E_INVALID_HANDLE;
|
|
|
|
|
|
|
|
if (context->sspiW->ImpersonateSecurityContext)
|
|
|
|
status = context->sspiW->ImpersonateSecurityContext(&(context->SubContext));
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
SECURITY_STATUS SEC_ENTRY negotiate_RevertSecurityContext(PCtxtHandle phContext)
|
|
|
|
{
|
|
|
|
NEGOTIATE_CONTEXT* context;
|
|
|
|
SECURITY_STATUS status = SEC_E_OK;
|
|
|
|
context = (NEGOTIATE_CONTEXT*) sspi_SecureHandleGetLowerPointer(phContext);
|
|
|
|
|
|
|
|
if (!phContext)
|
|
|
|
return SEC_E_INVALID_HANDLE;
|
|
|
|
|
|
|
|
if (context->sspiW->RevertSecurityContext)
|
|
|
|
status = context->sspiW->RevertSecurityContext(&(context->SubContext));
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
2017-05-11 19:51:45 +03:00
|
|
|
SECURITY_STATUS SEC_ENTRY negotiate_QueryContextAttributesW(PCtxtHandle phContext,
|
|
|
|
ULONG ulAttribute, void* pBuffer)
|
2012-03-06 02:03:49 +04:00
|
|
|
{
|
2014-06-08 00:26:57 +04:00
|
|
|
NEGOTIATE_CONTEXT* context;
|
|
|
|
SECURITY_STATUS status = SEC_E_OK;
|
|
|
|
context = (NEGOTIATE_CONTEXT*) sspi_SecureHandleGetLowerPointer(phContext);
|
|
|
|
|
2012-03-06 02:03:49 +04:00
|
|
|
if (!phContext)
|
|
|
|
return SEC_E_INVALID_HANDLE;
|
|
|
|
|
|
|
|
if (!pBuffer)
|
|
|
|
return SEC_E_INSUFFICIENT_MEMORY;
|
|
|
|
|
2014-06-08 00:26:57 +04:00
|
|
|
if (context->sspiW->QueryContextAttributesW)
|
2014-06-10 22:16:02 +04:00
|
|
|
status = context->sspiW->QueryContextAttributesW(&(context->SubContext), ulAttribute, pBuffer);
|
2014-06-08 00:26:57 +04:00
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
2017-05-11 19:51:45 +03:00
|
|
|
SECURITY_STATUS SEC_ENTRY negotiate_QueryContextAttributesA(PCtxtHandle phContext,
|
|
|
|
ULONG ulAttribute, void* pBuffer)
|
2014-06-08 01:08:07 +04:00
|
|
|
{
|
|
|
|
NEGOTIATE_CONTEXT* context;
|
|
|
|
SECURITY_STATUS status = SEC_E_OK;
|
|
|
|
context = (NEGOTIATE_CONTEXT*) sspi_SecureHandleGetLowerPointer(phContext);
|
|
|
|
|
|
|
|
if (!phContext)
|
|
|
|
return SEC_E_INVALID_HANDLE;
|
|
|
|
|
2014-06-11 00:38:16 +04:00
|
|
|
if (!pBuffer)
|
|
|
|
return SEC_E_INSUFFICIENT_MEMORY;
|
|
|
|
|
|
|
|
if (context->sspiA->QueryContextAttributesA)
|
|
|
|
status = context->sspiA->QueryContextAttributesA(&(context->SubContext), ulAttribute, pBuffer);
|
2014-06-08 01:08:07 +04:00
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
2017-05-11 19:51:45 +03:00
|
|
|
SECURITY_STATUS SEC_ENTRY negotiate_SetContextAttributesW(PCtxtHandle phContext, ULONG ulAttribute,
|
|
|
|
void* pBuffer, ULONG cbBuffer)
|
2014-06-08 01:08:07 +04:00
|
|
|
{
|
|
|
|
NEGOTIATE_CONTEXT* context;
|
|
|
|
SECURITY_STATUS status = SEC_E_OK;
|
|
|
|
context = (NEGOTIATE_CONTEXT*) sspi_SecureHandleGetLowerPointer(phContext);
|
|
|
|
|
|
|
|
if (!phContext)
|
|
|
|
return SEC_E_INVALID_HANDLE;
|
|
|
|
|
2014-06-11 00:38:16 +04:00
|
|
|
if (!pBuffer)
|
|
|
|
return SEC_E_INSUFFICIENT_MEMORY;
|
|
|
|
|
|
|
|
if (context->sspiW->SetContextAttributesW)
|
2017-05-11 19:51:45 +03:00
|
|
|
status = context->sspiW->SetContextAttributesW(&(context->SubContext), ulAttribute, pBuffer,
|
|
|
|
cbBuffer);
|
2014-06-08 01:08:07 +04:00
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
2017-05-11 19:51:45 +03:00
|
|
|
SECURITY_STATUS SEC_ENTRY negotiate_SetContextAttributesA(PCtxtHandle phContext, ULONG ulAttribute,
|
|
|
|
void* pBuffer, ULONG cbBuffer)
|
2014-06-08 00:26:57 +04:00
|
|
|
{
|
|
|
|
NEGOTIATE_CONTEXT* context;
|
|
|
|
SECURITY_STATUS status = SEC_E_OK;
|
|
|
|
context = (NEGOTIATE_CONTEXT*) sspi_SecureHandleGetLowerPointer(phContext);
|
|
|
|
|
|
|
|
if (!phContext)
|
|
|
|
return SEC_E_INVALID_HANDLE;
|
|
|
|
|
|
|
|
if (!pBuffer)
|
|
|
|
return SEC_E_INSUFFICIENT_MEMORY;
|
|
|
|
|
2014-06-11 00:38:16 +04:00
|
|
|
if (context->sspiA->SetContextAttributesA)
|
2017-05-11 19:51:45 +03:00
|
|
|
status = context->sspiA->SetContextAttributesA(&(context->SubContext), ulAttribute, pBuffer,
|
|
|
|
cbBuffer);
|
2014-06-08 00:26:57 +04:00
|
|
|
|
|
|
|
return status;
|
2012-03-06 02:03:49 +04:00
|
|
|
}
|
|
|
|
|
2017-05-11 19:51:45 +03:00
|
|
|
SECURITY_STATUS SEC_ENTRY negotiate_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-06-09 23:25:00 +04:00
|
|
|
SSPI_CREDENTIALS* credentials;
|
2014-06-08 00:26:57 +04:00
|
|
|
SEC_WINNT_AUTH_IDENTITY* identity;
|
|
|
|
|
2014-06-09 23:25:00 +04:00
|
|
|
if ((fCredentialUse != SECPKG_CRED_OUTBOUND) &&
|
2017-05-11 19:51:45 +03:00
|
|
|
(fCredentialUse != SECPKG_CRED_INBOUND) &&
|
|
|
|
(fCredentialUse != SECPKG_CRED_BOTH))
|
2014-06-08 00:26:57 +04:00
|
|
|
{
|
2014-06-09 23:25:00 +04:00
|
|
|
return SEC_E_INVALID_PARAMETER;
|
2014-06-08 01:08:07 +04:00
|
|
|
}
|
|
|
|
|
2014-06-09 23:25:00 +04:00
|
|
|
credentials = sspi_CredentialsNew();
|
2014-06-08 00:26:57 +04:00
|
|
|
|
2014-06-09 23:25:00 +04:00
|
|
|
if (!credentials)
|
|
|
|
return SEC_E_INTERNAL_ERROR;
|
2014-06-08 00:26:57 +04:00
|
|
|
|
2014-06-09 23:25:00 +04:00
|
|
|
credentials->fCredentialUse = fCredentialUse;
|
|
|
|
credentials->pGetKeyFn = pGetKeyFn;
|
|
|
|
credentials->pvGetKeyArgument = pvGetKeyArgument;
|
|
|
|
identity = (SEC_WINNT_AUTH_IDENTITY*) pAuthData;
|
2014-06-08 00:26:57 +04:00
|
|
|
|
2014-06-09 23:25:00 +04:00
|
|
|
if (identity)
|
|
|
|
sspi_CopyAuthIdentity(&(credentials->identity), identity);
|
2014-06-08 00:26:57 +04:00
|
|
|
|
2014-06-09 23:25:00 +04:00
|
|
|
sspi_SecureHandleSetLowerPointer(phCredential, (void*) credentials);
|
2017-07-03 13:47:56 +03:00
|
|
|
sspi_SecureHandleSetUpperPointer(phCredential, (void*) NEGO_SSP_NAME);
|
2014-06-09 23:25:00 +04:00
|
|
|
return SEC_E_OK;
|
2012-03-24 23:47:16 +04:00
|
|
|
}
|
|
|
|
|
2017-05-11 19:51:45 +03:00
|
|
|
SECURITY_STATUS SEC_ENTRY negotiate_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-03-06 02:03:49 +04:00
|
|
|
{
|
2014-06-09 23:25:00 +04:00
|
|
|
SSPI_CREDENTIALS* credentials;
|
2012-03-16 04:37:38 +04:00
|
|
|
SEC_WINNT_AUTH_IDENTITY* identity;
|
2012-03-06 02:03:49 +04:00
|
|
|
|
2014-06-09 23:25:00 +04:00
|
|
|
if ((fCredentialUse != SECPKG_CRED_OUTBOUND) &&
|
2017-05-11 19:51:45 +03:00
|
|
|
(fCredentialUse != SECPKG_CRED_INBOUND) &&
|
|
|
|
(fCredentialUse != SECPKG_CRED_BOTH))
|
2012-03-06 02:03:49 +04:00
|
|
|
{
|
2014-06-09 23:25:00 +04:00
|
|
|
return SEC_E_INVALID_PARAMETER;
|
2014-06-08 01:08:07 +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-03-06 02:03:49 +04:00
|
|
|
|
2014-06-09 23:25:00 +04:00
|
|
|
credentials->fCredentialUse = fCredentialUse;
|
|
|
|
credentials->pGetKeyFn = pGetKeyFn;
|
|
|
|
credentials->pvGetKeyArgument = pvGetKeyArgument;
|
|
|
|
identity = (SEC_WINNT_AUTH_IDENTITY*) pAuthData;
|
2012-03-06 02:03:49 +04:00
|
|
|
|
2014-06-09 23:25:00 +04:00
|
|
|
if (identity)
|
|
|
|
sspi_CopyAuthIdentity(&(credentials->identity), identity);
|
2012-03-06 02:03:49 +04:00
|
|
|
|
2014-06-09 23:25:00 +04:00
|
|
|
sspi_SecureHandleSetLowerPointer(phCredential, (void*) credentials);
|
2017-07-03 13:47:56 +03:00
|
|
|
sspi_SecureHandleSetUpperPointer(phCredential, (void*) NEGO_SSP_NAME);
|
2014-06-09 23:25:00 +04:00
|
|
|
return SEC_E_OK;
|
2012-03-06 02:03:49 +04:00
|
|
|
}
|
|
|
|
|
2017-05-11 19:51:45 +03:00
|
|
|
SECURITY_STATUS SEC_ENTRY negotiate_QueryCredentialsAttributesW(PCredHandle phCredential,
|
|
|
|
ULONG ulAttribute, void* pBuffer)
|
2012-03-24 23:47:16 +04:00
|
|
|
{
|
2014-06-08 00:26:57 +04:00
|
|
|
return SEC_E_UNSUPPORTED_FUNCTION;
|
2012-03-24 23:47:16 +04:00
|
|
|
}
|
|
|
|
|
2017-05-11 19:51:45 +03:00
|
|
|
SECURITY_STATUS SEC_ENTRY negotiate_QueryCredentialsAttributesA(PCredHandle phCredential,
|
|
|
|
ULONG ulAttribute, void* pBuffer)
|
2012-03-06 02:03:49 +04:00
|
|
|
{
|
|
|
|
return SEC_E_UNSUPPORTED_FUNCTION;
|
|
|
|
}
|
|
|
|
|
2012-03-24 08:14:45 +04:00
|
|
|
SECURITY_STATUS SEC_ENTRY negotiate_FreeCredentialsHandle(PCredHandle phCredential)
|
2012-03-06 02:03:49 +04:00
|
|
|
{
|
2014-06-09 23:25:00 +04:00
|
|
|
SSPI_CREDENTIALS* credentials;
|
2012-03-06 02:03:49 +04:00
|
|
|
|
|
|
|
if (!phCredential)
|
|
|
|
return SEC_E_INVALID_HANDLE;
|
|
|
|
|
2014-06-09 23:25:00 +04:00
|
|
|
credentials = (SSPI_CREDENTIALS*) sspi_SecureHandleGetLowerPointer(phCredential);
|
2012-03-06 02:03:49 +04:00
|
|
|
|
|
|
|
if (!credentials)
|
|
|
|
return SEC_E_INVALID_HANDLE;
|
|
|
|
|
|
|
|
sspi_CredentialsFree(credentials);
|
2017-07-18 14:23:22 +03:00
|
|
|
sspi_SecureHandleInvalidate(phCredential);
|
2012-03-06 02:03:49 +04:00
|
|
|
return SEC_E_OK;
|
|
|
|
}
|
|
|
|
|
2017-05-11 19:51:45 +03:00
|
|
|
SECURITY_STATUS SEC_ENTRY negotiate_EncryptMessage(PCtxtHandle phContext, ULONG fQOP,
|
|
|
|
PSecBufferDesc pMessage, ULONG MessageSeqNo)
|
2012-03-06 02:03:49 +04:00
|
|
|
{
|
2014-06-08 00:26:57 +04:00
|
|
|
NEGOTIATE_CONTEXT* context;
|
|
|
|
SECURITY_STATUS status = SEC_E_UNSUPPORTED_FUNCTION;
|
|
|
|
context = (NEGOTIATE_CONTEXT*) sspi_SecureHandleGetLowerPointer(phContext);
|
|
|
|
|
|
|
|
if (context->sspiW->EncryptMessage)
|
2014-06-10 22:16:02 +04:00
|
|
|
status = context->sspiW->EncryptMessage(&(context->SubContext), fQOP, pMessage, MessageSeqNo);
|
2014-06-08 00:26:57 +04:00
|
|
|
|
|
|
|
return status;
|
2012-03-06 02:03:49 +04:00
|
|
|
}
|
|
|
|
|
2017-05-11 19:51:45 +03:00
|
|
|
SECURITY_STATUS SEC_ENTRY negotiate_DecryptMessage(PCtxtHandle phContext, PSecBufferDesc pMessage,
|
|
|
|
ULONG MessageSeqNo, ULONG* pfQOP)
|
2012-03-06 02:03:49 +04:00
|
|
|
{
|
2014-06-08 00:26:57 +04:00
|
|
|
NEGOTIATE_CONTEXT* context;
|
|
|
|
SECURITY_STATUS status = SEC_E_UNSUPPORTED_FUNCTION;
|
|
|
|
context = (NEGOTIATE_CONTEXT*) sspi_SecureHandleGetLowerPointer(phContext);
|
|
|
|
|
|
|
|
if (context->sspiW->DecryptMessage)
|
2014-06-10 22:16:02 +04:00
|
|
|
status = context->sspiW->DecryptMessage(&(context->SubContext), pMessage, MessageSeqNo, pfQOP);
|
2014-06-08 00:26:57 +04:00
|
|
|
|
|
|
|
return status;
|
2012-03-06 02:03:49 +04:00
|
|
|
}
|
|
|
|
|
2017-05-11 19:51:45 +03:00
|
|
|
SECURITY_STATUS SEC_ENTRY negotiate_MakeSignature(PCtxtHandle phContext, ULONG fQOP,
|
|
|
|
PSecBufferDesc pMessage, ULONG MessageSeqNo)
|
2012-03-06 02:03:49 +04:00
|
|
|
{
|
2014-06-08 00:26:57 +04:00
|
|
|
NEGOTIATE_CONTEXT* context;
|
|
|
|
SECURITY_STATUS status = SEC_E_UNSUPPORTED_FUNCTION;
|
|
|
|
context = (NEGOTIATE_CONTEXT*) sspi_SecureHandleGetLowerPointer(phContext);
|
|
|
|
|
|
|
|
if (context->sspiW->MakeSignature)
|
2014-06-10 22:16:02 +04:00
|
|
|
status = context->sspiW->MakeSignature(&(context->SubContext), fQOP, pMessage, MessageSeqNo);
|
2014-06-08 00:26:57 +04:00
|
|
|
|
|
|
|
return status;
|
2012-03-06 02:03:49 +04:00
|
|
|
}
|
|
|
|
|
2017-05-11 19:51:45 +03:00
|
|
|
SECURITY_STATUS SEC_ENTRY negotiate_VerifySignature(PCtxtHandle phContext, PSecBufferDesc pMessage,
|
|
|
|
ULONG MessageSeqNo, ULONG* pfQOP)
|
2012-03-06 02:03:49 +04:00
|
|
|
{
|
2014-06-08 00:26:57 +04:00
|
|
|
NEGOTIATE_CONTEXT* context;
|
|
|
|
SECURITY_STATUS status = SEC_E_UNSUPPORTED_FUNCTION;
|
|
|
|
context = (NEGOTIATE_CONTEXT*) sspi_SecureHandleGetLowerPointer(phContext);
|
|
|
|
|
|
|
|
if (context->sspiW->VerifySignature)
|
2014-06-10 22:16:02 +04:00
|
|
|
status = context->sspiW->VerifySignature(&(context->SubContext), pMessage, MessageSeqNo, pfQOP);
|
2014-06-08 00:26:57 +04:00
|
|
|
|
|
|
|
return status;
|
2012-03-06 02:03:49 +04:00
|
|
|
}
|
|
|
|
|
2012-03-24 23:47:16 +04:00
|
|
|
const SecurityFunctionTableA NEGOTIATE_SecurityFunctionTableA =
|
2012-03-06 02:03:49 +04:00
|
|
|
{
|
|
|
|
1, /* dwVersion */
|
|
|
|
NULL, /* EnumerateSecurityPackages */
|
2012-03-24 09:01:28 +04:00
|
|
|
negotiate_QueryCredentialsAttributesA, /* QueryCredentialsAttributes */
|
2012-03-24 23:47:16 +04:00
|
|
|
negotiate_AcquireCredentialsHandleA, /* AcquireCredentialsHandle */
|
|
|
|
negotiate_FreeCredentialsHandle, /* FreeCredentialsHandle */
|
|
|
|
NULL, /* Reserved2 */
|
|
|
|
negotiate_InitializeSecurityContextA, /* InitializeSecurityContext */
|
2014-06-08 00:26:57 +04:00
|
|
|
negotiate_AcceptSecurityContext, /* AcceptSecurityContext */
|
|
|
|
negotiate_CompleteAuthToken, /* CompleteAuthToken */
|
|
|
|
negotiate_DeleteSecurityContext, /* DeleteSecurityContext */
|
2012-03-24 23:47:16 +04:00
|
|
|
NULL, /* ApplyControlToken */
|
2014-06-08 00:26:57 +04:00
|
|
|
negotiate_QueryContextAttributesA, /* QueryContextAttributes */
|
2014-06-08 01:08:07 +04:00
|
|
|
negotiate_ImpersonateSecurityContext, /* ImpersonateSecurityContext */
|
|
|
|
negotiate_RevertSecurityContext, /* RevertSecurityContext */
|
2012-03-24 23:47:16 +04:00
|
|
|
negotiate_MakeSignature, /* MakeSignature */
|
|
|
|
negotiate_VerifySignature, /* VerifySignature */
|
|
|
|
NULL, /* FreeContextBuffer */
|
|
|
|
NULL, /* QuerySecurityPackageInfo */
|
|
|
|
NULL, /* Reserved3 */
|
|
|
|
NULL, /* Reserved4 */
|
|
|
|
NULL, /* ExportSecurityContext */
|
|
|
|
NULL, /* ImportSecurityContext */
|
|
|
|
NULL, /* AddCredentials */
|
|
|
|
NULL, /* Reserved8 */
|
|
|
|
NULL, /* QuerySecurityContextToken */
|
|
|
|
negotiate_EncryptMessage, /* EncryptMessage */
|
|
|
|
negotiate_DecryptMessage, /* DecryptMessage */
|
2014-06-11 00:38:16 +04:00
|
|
|
negotiate_SetContextAttributesA, /* SetContextAttributes */
|
2012-03-24 23:47:16 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
const SecurityFunctionTableW NEGOTIATE_SecurityFunctionTableW =
|
|
|
|
{
|
|
|
|
1, /* dwVersion */
|
|
|
|
NULL, /* EnumerateSecurityPackages */
|
|
|
|
negotiate_QueryCredentialsAttributesW, /* QueryCredentialsAttributes */
|
|
|
|
negotiate_AcquireCredentialsHandleW, /* AcquireCredentialsHandle */
|
2012-03-06 02:03:49 +04:00
|
|
|
negotiate_FreeCredentialsHandle, /* FreeCredentialsHandle */
|
|
|
|
NULL, /* Reserved2 */
|
2012-03-24 23:47:16 +04:00
|
|
|
negotiate_InitializeSecurityContextW, /* InitializeSecurityContext */
|
2014-06-08 00:26:57 +04:00
|
|
|
negotiate_AcceptSecurityContext, /* AcceptSecurityContext */
|
|
|
|
negotiate_CompleteAuthToken, /* CompleteAuthToken */
|
|
|
|
negotiate_DeleteSecurityContext, /* DeleteSecurityContext */
|
2012-03-06 02:03:49 +04:00
|
|
|
NULL, /* ApplyControlToken */
|
2014-06-08 00:26:57 +04:00
|
|
|
negotiate_QueryContextAttributesW, /* QueryContextAttributes */
|
2014-06-08 01:08:07 +04:00
|
|
|
negotiate_ImpersonateSecurityContext, /* ImpersonateSecurityContext */
|
|
|
|
negotiate_RevertSecurityContext, /* RevertSecurityContext */
|
2012-03-06 02:03:49 +04:00
|
|
|
negotiate_MakeSignature, /* MakeSignature */
|
|
|
|
negotiate_VerifySignature, /* VerifySignature */
|
|
|
|
NULL, /* FreeContextBuffer */
|
|
|
|
NULL, /* QuerySecurityPackageInfo */
|
|
|
|
NULL, /* Reserved3 */
|
|
|
|
NULL, /* Reserved4 */
|
|
|
|
NULL, /* ExportSecurityContext */
|
|
|
|
NULL, /* ImportSecurityContext */
|
|
|
|
NULL, /* AddCredentials */
|
|
|
|
NULL, /* Reserved8 */
|
|
|
|
NULL, /* QuerySecurityContextToken */
|
|
|
|
negotiate_EncryptMessage, /* EncryptMessage */
|
|
|
|
negotiate_DecryptMessage, /* DecryptMessage */
|
2014-06-11 00:38:16 +04:00
|
|
|
negotiate_SetContextAttributesW, /* SetContextAttributes */
|
2012-03-06 02:03:49 +04:00
|
|
|
};
|
2012-06-04 03:59:35 +04:00
|
|
|
|