2022-09-21 16:57:30 -07:00
|
|
|
From dff5b9a65fdc1f188150d20dc5af8b5772368d13 Mon Sep 17 00:00:00 2001
|
2021-04-23 23:08:20 -07:00
|
|
|
From: Alistair Leslie-Hughes <leslie_alistair@hotmail.com>
|
|
|
|
Date: Wed, 21 Apr 2021 21:06:55 +1000
|
|
|
|
Subject: [PATCH] secur32: Input Parameter should be NULL on first call to
|
|
|
|
InitializeSecurityContextW.
|
|
|
|
|
|
|
|
This fixes a crash in "Sea of Thieves".
|
|
|
|
|
|
|
|
Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com>
|
|
|
|
---
|
2022-09-21 16:57:30 -07:00
|
|
|
dlls/secur32/schannel.c | 2 +-
|
|
|
|
dlls/secur32/tests/schannel.c | 21 ++++++++++++++++++++-
|
|
|
|
2 files changed, 21 insertions(+), 2 deletions(-)
|
2021-04-23 23:08:20 -07:00
|
|
|
|
|
|
|
diff --git a/dlls/secur32/schannel.c b/dlls/secur32/schannel.c
|
2022-09-21 16:57:30 -07:00
|
|
|
index 4699f79ac1f..8a69d01e1f5 100644
|
2021-04-23 23:08:20 -07:00
|
|
|
--- a/dlls/secur32/schannel.c
|
|
|
|
+++ b/dlls/secur32/schannel.c
|
2022-09-21 16:57:30 -07:00
|
|
|
@@ -815,7 +815,7 @@ static SECURITY_STATUS SEC_ENTRY schan_InitializeSecurityContextW(
|
2022-01-26 16:50:15 -08:00
|
|
|
return SEC_E_INSUFFICIENT_MEMORY;
|
2021-10-30 00:14:25 -07:00
|
|
|
}
|
2021-04-23 23:08:20 -07:00
|
|
|
|
|
|
|
- if (!phContext)
|
|
|
|
+ if (!phContext || (phNewContext && !pInput))
|
|
|
|
{
|
|
|
|
ULONG_PTR handle;
|
2021-12-06 19:08:29 -08:00
|
|
|
struct create_session_params create_params;
|
2021-04-23 23:08:20 -07:00
|
|
|
diff --git a/dlls/secur32/tests/schannel.c b/dlls/secur32/tests/schannel.c
|
2022-09-21 16:57:30 -07:00
|
|
|
index 25ae197bca6..232f7619f48 100644
|
2021-04-23 23:08:20 -07:00
|
|
|
--- a/dlls/secur32/tests/schannel.c
|
|
|
|
+++ b/dlls/secur32/tests/schannel.c
|
2022-09-21 16:57:30 -07:00
|
|
|
@@ -1464,7 +1464,7 @@ static void test_communication(void)
|
2021-04-23 23:08:20 -07:00
|
|
|
status = InitializeSecurityContextA(&cred_handle, &context, (SEC_CHAR *)"localhost",
|
|
|
|
ISC_REQ_CONFIDENTIALITY|ISC_REQ_STREAM,
|
|
|
|
0, 0, NULL, 0, &context, &buffers[0], &attrs, NULL);
|
2022-03-04 14:58:02 -08:00
|
|
|
- todo_wine ok(status == SEC_I_CONTINUE_NEEDED, "Expected SEC_I_CONTINUE_NEEDED, got %08lx\n", status);
|
|
|
|
+ ok(status == SEC_I_CONTINUE_NEEDED, "Expected SEC_I_CONTINUE_NEEDED, got %08lx\n", status);
|
2021-04-23 23:08:20 -07:00
|
|
|
if (status != SEC_I_CONTINUE_NEEDED)
|
|
|
|
{
|
|
|
|
skip("skipping remaining renegotiate test\n");
|
2022-09-21 16:57:30 -07:00
|
|
|
@@ -1508,6 +1508,25 @@ static void test_communication(void)
|
2021-04-23 23:08:20 -07:00
|
|
|
}
|
2022-09-21 16:57:30 -07:00
|
|
|
ok (status == SEC_E_CERT_EXPIRED, "got %08lx\n", status);
|
2021-04-23 23:08:20 -07:00
|
|
|
|
2022-09-21 16:57:30 -07:00
|
|
|
+ buf = &buffers[0].pBuffers[0];
|
|
|
|
+ buf->cbBuffer = buf_size;
|
|
|
|
+ data_size = receive_data(sock, buf);
|
|
|
|
+
|
|
|
|
+ buffers[0].pBuffers[0].cbBuffer = data_size;
|
|
|
|
+ buffers[0].pBuffers[0].BufferType = SECBUFFER_DATA;
|
|
|
|
+ buffers[0].pBuffers[1].BufferType = SECBUFFER_EMPTY;
|
|
|
|
+ status = DecryptMessage(&context, &buffers[0], 0, NULL);
|
2022-03-04 14:58:02 -08:00
|
|
|
+ todo_wine ok(status == SEC_E_OK, "DecryptMessage failed: %08lx\n", status);
|
2022-09-21 16:57:30 -07:00
|
|
|
+ if (status == SEC_E_OK)
|
|
|
|
+ {
|
|
|
|
+ ok(buffers[0].pBuffers[0].BufferType == SECBUFFER_STREAM_HEADER, "Expected first buffer to be SECBUFFER_STREAM_HEADER\n");
|
|
|
|
+ ok(buffers[0].pBuffers[1].BufferType == SECBUFFER_DATA, "Expected second buffer to be SECBUFFER_DATA\n");
|
|
|
|
+ ok(buffers[0].pBuffers[2].BufferType == SECBUFFER_STREAM_TRAILER, "Expected third buffer to be SECBUFFER_STREAM_TRAILER\n");
|
|
|
|
+
|
|
|
|
+ data = buffers[0].pBuffers[1].pvBuffer;
|
|
|
|
+ data[buffers[0].pBuffers[1].cbBuffer] = 0;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
done:
|
|
|
|
DeleteSecurityContext(&context);
|
|
|
|
FreeCredentialsHandle(&cred_handle);
|
2021-04-23 23:08:20 -07:00
|
|
|
--
|
2022-09-21 16:57:30 -07:00
|
|
|
2.35.1
|
2021-04-23 23:08:20 -07:00
|
|
|
|