2 * Copyright 2005, 2006 Kai Blin
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
18 * This file implements the NTLM security provider.
31 #include "secur32_priv.h"
33 #include "wine/unicode.h"
34 #include "wine/debug.h"
36 WINE_DEFAULT_DEBUG_CHANNEL(ntlm
);
37 WINE_DECLARE_DEBUG_CHANNEL(winediag
);
39 #define NTLM_MAX_BUF 1904
40 #define MIN_NTLM_AUTH_MAJOR_VERSION 3
41 #define MIN_NTLM_AUTH_MINOR_VERSION 0
42 #define MIN_NTLM_AUTH_MICRO_VERSION 25
44 static CHAR ntlm_auth
[] = "ntlm_auth";
46 typedef struct _NtlmCredentials
50 /* these are all in the Unix codepage */
53 char *password
; /* not nul-terminated */
55 } NtlmCredentials
, *PNtlmCredentials
;
57 /***********************************************************************
58 * QueryCredentialsAttributesA
60 static SECURITY_STATUS SEC_ENTRY
ntlm_QueryCredentialsAttributesA(
61 PCredHandle phCredential
, ULONG ulAttribute
, PVOID pBuffer
)
65 TRACE("(%p, %d, %p)\n", phCredential
, ulAttribute
, pBuffer
);
67 if(ulAttribute
== SECPKG_ATTR_NAMES
)
69 FIXME("SECPKG_CRED_ATTR_NAMES: stub\n");
70 ret
= SEC_E_UNSUPPORTED_FUNCTION
;
73 ret
= SEC_E_UNSUPPORTED_FUNCTION
;
78 /***********************************************************************
79 * QueryCredentialsAttributesW
81 static SECURITY_STATUS SEC_ENTRY
ntlm_QueryCredentialsAttributesW(
82 PCredHandle phCredential
, ULONG ulAttribute
, PVOID pBuffer
)
86 TRACE("(%p, %d, %p)\n", phCredential
, ulAttribute
, pBuffer
);
88 if(ulAttribute
== SECPKG_ATTR_NAMES
)
90 FIXME("SECPKG_CRED_ATTR_NAMES: stub\n");
91 ret
= SEC_E_UNSUPPORTED_FUNCTION
;
94 ret
= SEC_E_UNSUPPORTED_FUNCTION
;
99 static char *ntlm_GetUsernameArg(LPCWSTR userW
, INT userW_length
)
101 static const char username_arg
[] = "--username=";
105 unixcp_size
= WideCharToMultiByte(CP_UNIXCP
, WC_NO_BEST_FIT_CHARS
,
106 userW
, userW_length
, NULL
, 0, NULL
, NULL
) + sizeof(username_arg
);
107 user
= HeapAlloc(GetProcessHeap(), 0, unixcp_size
);
108 if (!user
) return NULL
;
109 memcpy(user
, username_arg
, sizeof(username_arg
) - 1);
110 WideCharToMultiByte(CP_UNIXCP
, WC_NO_BEST_FIT_CHARS
, userW
, userW_length
,
111 user
+ sizeof(username_arg
) - 1,
112 unixcp_size
- sizeof(username_arg
) + 1, NULL
, NULL
);
113 user
[unixcp_size
- 1] = '\0';
117 static char *ntlm_GetDomainArg(LPCWSTR domainW
, INT domainW_length
)
119 static const char domain_arg
[] = "--domain=";
123 unixcp_size
= WideCharToMultiByte(CP_UNIXCP
, WC_NO_BEST_FIT_CHARS
,
124 domainW
, domainW_length
, NULL
, 0, NULL
, NULL
) + sizeof(domain_arg
);
125 domain
= HeapAlloc(GetProcessHeap(), 0, unixcp_size
);
126 if (!domain
) return NULL
;
127 memcpy(domain
, domain_arg
, sizeof(domain_arg
) - 1);
128 WideCharToMultiByte(CP_UNIXCP
, WC_NO_BEST_FIT_CHARS
, domainW
,
129 domainW_length
, domain
+ sizeof(domain_arg
) - 1,
130 unixcp_size
- sizeof(domain
) + 1, NULL
, NULL
);
131 domain
[unixcp_size
- 1] = '\0';
135 /***********************************************************************
136 * AcquireCredentialsHandleW
138 static SECURITY_STATUS SEC_ENTRY
ntlm_AcquireCredentialsHandleW(
139 SEC_WCHAR
*pszPrincipal
, SEC_WCHAR
*pszPackage
, ULONG fCredentialUse
,
140 PLUID pLogonID
, PVOID pAuthData
, SEC_GET_KEY_FN pGetKeyFn
,
141 PVOID pGetKeyArgument
, PCredHandle phCredential
, PTimeStamp ptsExpiry
)
144 PNtlmCredentials ntlm_cred
= NULL
;
145 SEC_WCHAR
*username
= NULL
, *domain
= NULL
;
147 TRACE("(%s, %s, 0x%08x, %p, %p, %p, %p, %p, %p)\n",
148 debugstr_w(pszPrincipal
), debugstr_w(pszPackage
), fCredentialUse
,
149 pLogonID
, pAuthData
, pGetKeyFn
, pGetKeyArgument
, phCredential
, ptsExpiry
);
151 switch(fCredentialUse
)
153 case SECPKG_CRED_INBOUND
:
154 ntlm_cred
= HeapAlloc(GetProcessHeap(), 0, sizeof(*ntlm_cred
));
156 ret
= SEC_E_INSUFFICIENT_MEMORY
;
159 ntlm_cred
->mode
= NTLM_SERVER
;
160 ntlm_cred
->username_arg
= NULL
;
161 ntlm_cred
->domain_arg
= NULL
;
162 ntlm_cred
->password
= NULL
;
163 ntlm_cred
->pwlen
= 0;
164 phCredential
->dwUpper
= fCredentialUse
;
165 phCredential
->dwLower
= (ULONG_PTR
)ntlm_cred
;
169 case SECPKG_CRED_OUTBOUND
:
171 ntlm_cred
= HeapAlloc(GetProcessHeap(), 0, sizeof(*ntlm_cred
));
174 ret
= SEC_E_INSUFFICIENT_MEMORY
;
177 ntlm_cred
->mode
= NTLM_CLIENT
;
178 ntlm_cred
->username_arg
= NULL
;
179 ntlm_cred
->domain_arg
= NULL
;
180 ntlm_cred
->password
= NULL
;
181 ntlm_cred
->pwlen
= 0;
183 if(pAuthData
!= NULL
)
185 PSEC_WINNT_AUTH_IDENTITY_W auth_data
= pAuthData
;
187 TRACE("Username is %s\n", debugstr_wn(auth_data
->User
, auth_data
->UserLength
));
188 TRACE("Domain name is %s\n", debugstr_wn(auth_data
->Domain
, auth_data
->DomainLength
));
190 ntlm_cred
->username_arg
= ntlm_GetUsernameArg(auth_data
->User
, auth_data
->UserLength
);
191 ntlm_cred
->domain_arg
= ntlm_GetDomainArg(auth_data
->Domain
, auth_data
->DomainLength
);
193 if(auth_data
->PasswordLength
!= 0)
195 ntlm_cred
->pwlen
= WideCharToMultiByte(CP_UNIXCP
,
196 WC_NO_BEST_FIT_CHARS
, auth_data
->Password
,
197 auth_data
->PasswordLength
, NULL
, 0, NULL
,
200 ntlm_cred
->password
= HeapAlloc(GetProcessHeap(), 0,
203 WideCharToMultiByte(CP_UNIXCP
, WC_NO_BEST_FIT_CHARS
,
204 auth_data
->Password
, auth_data
->PasswordLength
,
205 ntlm_cred
->password
, ntlm_cred
->pwlen
, NULL
, NULL
);
209 phCredential
->dwUpper
= fCredentialUse
;
210 phCredential
->dwLower
= (ULONG_PTR
)ntlm_cred
;
211 TRACE("ACH phCredential->dwUpper: 0x%08lx, dwLower: 0x%08lx\n",
212 phCredential
->dwUpper
, phCredential
->dwLower
);
216 case SECPKG_CRED_BOTH
:
217 FIXME("AcquireCredentialsHandle: SECPKG_CRED_BOTH stub\n");
218 ret
= SEC_E_UNSUPPORTED_FUNCTION
;
223 ret
= SEC_E_UNKNOWN_CREDENTIALS
;
226 HeapFree(GetProcessHeap(), 0, username
);
227 HeapFree(GetProcessHeap(), 0, domain
);
232 /***********************************************************************
233 * AcquireCredentialsHandleA
235 static SECURITY_STATUS SEC_ENTRY
ntlm_AcquireCredentialsHandleA(
236 SEC_CHAR
*pszPrincipal
, SEC_CHAR
*pszPackage
, ULONG fCredentialUse
,
237 PLUID pLogonID
, PVOID pAuthData
, SEC_GET_KEY_FN pGetKeyFn
,
238 PVOID pGetKeyArgument
, PCredHandle phCredential
, PTimeStamp ptsExpiry
)
241 int user_sizeW
, domain_sizeW
, passwd_sizeW
;
243 SEC_WCHAR
*user
= NULL
, *domain
= NULL
, *passwd
= NULL
, *package
= NULL
;
245 PSEC_WINNT_AUTH_IDENTITY_W pAuthDataW
= NULL
;
246 PSEC_WINNT_AUTH_IDENTITY_A identity
= NULL
;
248 TRACE("(%s, %s, 0x%08x, %p, %p, %p, %p, %p, %p)\n",
249 debugstr_a(pszPrincipal
), debugstr_a(pszPackage
), fCredentialUse
,
250 pLogonID
, pAuthData
, pGetKeyFn
, pGetKeyArgument
, phCredential
, ptsExpiry
);
252 if(pszPackage
!= NULL
)
254 int package_sizeW
= MultiByteToWideChar(CP_ACP
, 0, pszPackage
, -1,
257 package
= HeapAlloc(GetProcessHeap(), 0, package_sizeW
*
259 MultiByteToWideChar(CP_ACP
, 0, pszPackage
, -1, package
, package_sizeW
);
263 if(pAuthData
!= NULL
)
265 identity
= pAuthData
;
267 if(identity
->Flags
== SEC_WINNT_AUTH_IDENTITY_ANSI
)
269 pAuthDataW
= HeapAlloc(GetProcessHeap(), 0,
270 sizeof(SEC_WINNT_AUTH_IDENTITY_W
));
272 if(identity
->UserLength
!= 0)
274 user_sizeW
= MultiByteToWideChar(CP_ACP
, 0,
275 (LPCSTR
)identity
->User
, identity
->UserLength
, NULL
, 0);
276 user
= HeapAlloc(GetProcessHeap(), 0, user_sizeW
*
278 MultiByteToWideChar(CP_ACP
, 0, (LPCSTR
)identity
->User
,
279 identity
->UserLength
, user
, user_sizeW
);
286 if(identity
->DomainLength
!= 0)
288 domain_sizeW
= MultiByteToWideChar(CP_ACP
, 0,
289 (LPCSTR
)identity
->Domain
, identity
->DomainLength
, NULL
, 0);
290 domain
= HeapAlloc(GetProcessHeap(), 0, domain_sizeW
291 * sizeof(SEC_WCHAR
));
292 MultiByteToWideChar(CP_ACP
, 0, (LPCSTR
)identity
->Domain
,
293 identity
->DomainLength
, domain
, domain_sizeW
);
300 if(identity
->PasswordLength
!= 0)
302 passwd_sizeW
= MultiByteToWideChar(CP_ACP
, 0,
303 (LPCSTR
)identity
->Password
, identity
->PasswordLength
,
305 passwd
= HeapAlloc(GetProcessHeap(), 0, passwd_sizeW
306 * sizeof(SEC_WCHAR
));
307 MultiByteToWideChar(CP_ACP
, 0, (LPCSTR
)identity
->Password
,
308 identity
->PasswordLength
, passwd
, passwd_sizeW
);
315 pAuthDataW
->Flags
= SEC_WINNT_AUTH_IDENTITY_UNICODE
;
316 pAuthDataW
->User
= user
;
317 pAuthDataW
->UserLength
= user_sizeW
;
318 pAuthDataW
->Domain
= domain
;
319 pAuthDataW
->DomainLength
= domain_sizeW
;
320 pAuthDataW
->Password
= passwd
;
321 pAuthDataW
->PasswordLength
= passwd_sizeW
;
325 pAuthDataW
= (PSEC_WINNT_AUTH_IDENTITY_W
)identity
;
329 ret
= ntlm_AcquireCredentialsHandleW(NULL
, package
, fCredentialUse
,
330 pLogonID
, pAuthDataW
, pGetKeyFn
, pGetKeyArgument
, phCredential
,
333 HeapFree(GetProcessHeap(), 0, package
);
334 HeapFree(GetProcessHeap(), 0, user
);
335 HeapFree(GetProcessHeap(), 0, domain
);
336 HeapFree(GetProcessHeap(), 0, passwd
);
337 if(pAuthDataW
!= (PSEC_WINNT_AUTH_IDENTITY_W
)identity
)
338 HeapFree(GetProcessHeap(), 0, pAuthDataW
);
343 /*************************************************************************
344 * ntlm_GetTokenBufferIndex
345 * Calculates the index of the secbuffer with BufferType == SECBUFFER_TOKEN
346 * Returns index if found or -1 if not found.
348 static int ntlm_GetTokenBufferIndex(PSecBufferDesc pMessage
)
352 TRACE("%p\n", pMessage
);
354 for( i
= 0; i
< pMessage
->cBuffers
; ++i
)
356 if(pMessage
->pBuffers
[i
].BufferType
== SECBUFFER_TOKEN
)
363 /*************************************************************************
364 * ntlm_GetDataBufferIndex
365 * Calculates the index of the first secbuffer with BufferType == SECBUFFER_DATA
366 * Returns index if found or -1 if not found.
368 static int ntlm_GetDataBufferIndex(PSecBufferDesc pMessage
)
372 TRACE("%p\n", pMessage
);
374 for( i
= 0; i
< pMessage
->cBuffers
; ++i
)
376 if(pMessage
->pBuffers
[i
].BufferType
== SECBUFFER_DATA
)
383 static BOOL
ntlm_GetCachedCredential(const SEC_WCHAR
*pszTargetName
, PCREDENTIALW
*cred
)
393 /* try to get the start of the hostname from service principal name (SPN) */
394 pszHost
= strchrW(pszTargetName
, '/');
397 /* skip slash character */
400 /* find end of host by detecting start of instance port or start of referrer */
401 p
= strchrW(pszHost
, ':');
403 p
= strchrW(pszHost
, '/');
405 p
= pszHost
+ strlenW(pszHost
);
407 else /* otherwise not an SPN, just a host */
409 pszHost
= pszTargetName
;
410 p
= pszHost
+ strlenW(pszHost
);
413 pszHostOnly
= HeapAlloc(GetProcessHeap(), 0, (p
- pszHost
+ 1) * sizeof(WCHAR
));
417 memcpy(pszHostOnly
, pszHost
, (p
- pszHost
) * sizeof(WCHAR
));
418 pszHostOnly
[p
- pszHost
] = '\0';
420 ret
= CredReadW(pszHostOnly
, CRED_TYPE_DOMAIN_PASSWORD
, 0, cred
);
422 HeapFree(GetProcessHeap(), 0, pszHostOnly
);
426 /***********************************************************************
427 * InitializeSecurityContextW
429 static SECURITY_STATUS SEC_ENTRY
ntlm_InitializeSecurityContextW(
430 PCredHandle phCredential
, PCtxtHandle phContext
, SEC_WCHAR
*pszTargetName
,
431 ULONG fContextReq
, ULONG Reserved1
, ULONG TargetDataRep
,
432 PSecBufferDesc pInput
, ULONG Reserved2
, PCtxtHandle phNewContext
,
433 PSecBufferDesc pOutput
, ULONG
*pfContextAttr
, PTimeStamp ptsExpiry
)
436 PNtlmCredentials ntlm_cred
= NULL
;
437 PNegoHelper helper
= NULL
;
439 char* buffer
, *want_flags
= NULL
;
441 int buffer_len
, bin_len
, max_len
= NTLM_MAX_BUF
;
443 SEC_CHAR
*username
= NULL
;
444 SEC_CHAR
*domain
= NULL
;
445 SEC_CHAR
*password
= NULL
;
447 TRACE("%p %p %s 0x%08x %d %d %p %d %p %p %p %p\n", phCredential
, phContext
,
448 debugstr_w(pszTargetName
), fContextReq
, Reserved1
, TargetDataRep
, pInput
,
449 Reserved1
, phNewContext
, pOutput
, pfContextAttr
, ptsExpiry
);
451 /****************************************
452 * When communicating with the client, there can be the
453 * following reply packets:
454 * YR <base64 blob> should be sent to the server
455 * PW should be sent back to helper with
456 * base64 encoded password
457 * AF <base64 blob> client is done, blob should be
458 * sent to server with KK prefixed
459 * GF <string list> A string list of negotiated flags
460 * GK <base64 blob> base64 encoded session key
461 * BH <char reason> something broke
463 /* The squid cache size is 2010 chars, and that's what ntlm_auth uses */
465 if(TargetDataRep
== SECURITY_NETWORK_DREP
){
466 TRACE("Setting SECURITY_NETWORK_DREP\n");
469 buffer
= HeapAlloc(GetProcessHeap(), 0, sizeof(char) * NTLM_MAX_BUF
);
470 bin
= HeapAlloc(GetProcessHeap(), 0, sizeof(BYTE
) * NTLM_MAX_BUF
);
472 if((phContext
== NULL
) && (pInput
== NULL
))
474 static char helper_protocol
[] = "--helper-protocol=ntlmssp-client-1";
475 static CHAR credentials_argv
[] = "--use-cached-creds";
476 SEC_CHAR
*client_argv
[5];
479 TRACE("First time in ISC()\n");
483 ret
= SEC_E_INVALID_HANDLE
;
487 /* As the server side of sspi never calls this, make sure that
488 * the handler is a client handler.
490 ntlm_cred
= (PNtlmCredentials
)phCredential
->dwLower
;
491 if(ntlm_cred
->mode
!= NTLM_CLIENT
)
493 TRACE("Cred mode = %d\n", ntlm_cred
->mode
);
494 ret
= SEC_E_INVALID_HANDLE
;
498 client_argv
[0] = ntlm_auth
;
499 client_argv
[1] = helper_protocol
;
500 if (!ntlm_cred
->username_arg
&& !ntlm_cred
->domain_arg
)
502 LPWKSTA_USER_INFO_1 ui
= NULL
;
503 NET_API_STATUS status
;
506 if (ntlm_GetCachedCredential(pszTargetName
, &cred
))
509 p
= strchrW(cred
->UserName
, '\\');
512 domain
= ntlm_GetDomainArg(cred
->UserName
, p
- cred
->UserName
);
517 domain
= ntlm_GetDomainArg(NULL
, 0);
521 username
= ntlm_GetUsernameArg(p
, -1);
523 if(cred
->CredentialBlobSize
!= 0)
525 pwlen
= WideCharToMultiByte(CP_UNIXCP
,
526 WC_NO_BEST_FIT_CHARS
, (LPWSTR
)cred
->CredentialBlob
,
527 cred
->CredentialBlobSize
/ sizeof(WCHAR
), NULL
, 0,
530 password
= HeapAlloc(GetProcessHeap(), 0, pwlen
);
532 WideCharToMultiByte(CP_UNIXCP
, WC_NO_BEST_FIT_CHARS
,
533 (LPWSTR
)cred
->CredentialBlob
,
534 cred
->CredentialBlobSize
/ sizeof(WCHAR
),
535 password
, pwlen
, NULL
, NULL
);
540 client_argv
[2] = username
;
541 client_argv
[3] = domain
;
542 client_argv
[4] = NULL
;
546 status
= NetWkstaUserGetInfo(NULL
, 1, (LPBYTE
*)&ui
);
547 if (status
!= NERR_Success
|| ui
== NULL
)
549 ret
= SEC_E_NO_CREDENTIALS
;
552 username
= ntlm_GetUsernameArg(ui
->wkui1_username
, -1);
553 NetApiBufferFree(ui
);
555 TRACE("using cached credentials\n");
557 client_argv
[2] = username
;
558 client_argv
[3] = credentials_argv
;
559 client_argv
[4] = NULL
;
564 client_argv
[2] = ntlm_cred
->username_arg
;
565 client_argv
[3] = ntlm_cred
->domain_arg
;
566 client_argv
[4] = NULL
;
569 if((ret
= fork_helper(&helper
, ntlm_auth
, client_argv
)) != SEC_E_OK
)
572 helper
->mode
= NTLM_CLIENT
;
573 helper
->session_key
= HeapAlloc(GetProcessHeap(), 0, 16);
574 if (!helper
->session_key
)
576 cleanup_helper(helper
);
577 ret
= SEC_E_INSUFFICIENT_MEMORY
;
581 /* Generate the dummy session key = MD4(MD4(password))*/
582 if(password
|| ntlm_cred
->password
)
584 SEC_WCHAR
*unicode_password
;
587 TRACE("Converting password to unicode.\n");
588 passwd_lenW
= MultiByteToWideChar(CP_ACP
, 0,
589 password
? password
: ntlm_cred
->password
,
590 password
? pwlen
: ntlm_cred
->pwlen
,
592 unicode_password
= HeapAlloc(GetProcessHeap(), 0,
593 passwd_lenW
* sizeof(SEC_WCHAR
));
594 MultiByteToWideChar(CP_ACP
, 0, password
? password
: ntlm_cred
->password
,
595 password
? pwlen
: ntlm_cred
->pwlen
, unicode_password
, passwd_lenW
);
597 SECUR32_CreateNTLM1SessionKey((PBYTE
)unicode_password
,
598 passwd_lenW
* sizeof(SEC_WCHAR
), helper
->session_key
);
600 HeapFree(GetProcessHeap(), 0, unicode_password
);
603 memset(helper
->session_key
, 0, 16);
605 /* Allocate space for a maximal string of
606 * "SF NTLMSSP_FEATURE_SIGN NTLMSSP_FEATURE_SEAL
607 * NTLMSSP_FEATURE_SESSION_KEY"
609 want_flags
= HeapAlloc(GetProcessHeap(), 0, 73);
610 if(want_flags
== NULL
)
612 cleanup_helper(helper
);
613 ret
= SEC_E_INSUFFICIENT_MEMORY
;
616 lstrcpyA(want_flags
, "SF");
617 if(fContextReq
& ISC_REQ_CONFIDENTIALITY
)
619 if(strstr(want_flags
, "NTLMSSP_FEATURE_SEAL") == NULL
)
620 lstrcatA(want_flags
, " NTLMSSP_FEATURE_SEAL");
622 if(fContextReq
& ISC_REQ_CONNECTION
)
623 ctxt_attr
|= ISC_RET_CONNECTION
;
624 if(fContextReq
& ISC_REQ_EXTENDED_ERROR
)
625 ctxt_attr
|= ISC_RET_EXTENDED_ERROR
;
626 if(fContextReq
& ISC_REQ_INTEGRITY
)
628 if(strstr(want_flags
, "NTLMSSP_FEATURE_SIGN") == NULL
)
629 lstrcatA(want_flags
, " NTLMSSP_FEATURE_SIGN");
631 if(fContextReq
& ISC_REQ_MUTUAL_AUTH
)
632 ctxt_attr
|= ISC_RET_MUTUAL_AUTH
;
633 if(fContextReq
& ISC_REQ_REPLAY_DETECT
)
635 if(strstr(want_flags
, "NTLMSSP_FEATURE_SIGN") == NULL
)
636 lstrcatA(want_flags
, " NTLMSSP_FEATURE_SIGN");
638 if(fContextReq
& ISC_REQ_SEQUENCE_DETECT
)
640 if(strstr(want_flags
, "NTLMSSP_FEATURE_SIGN") == NULL
)
641 lstrcatA(want_flags
, " NTLMSSP_FEATURE_SIGN");
643 if(fContextReq
& ISC_REQ_STREAM
)
644 FIXME("ISC_REQ_STREAM\n");
645 if(fContextReq
& ISC_REQ_USE_DCE_STYLE
)
646 ctxt_attr
|= ISC_RET_USED_DCE_STYLE
;
647 if(fContextReq
& ISC_REQ_DELEGATE
)
648 ctxt_attr
|= ISC_RET_DELEGATE
;
650 /* If no password is given, try to use cached credentials. Fall back to an empty
651 * password if this failed. */
652 if(!password
&& !ntlm_cred
->password
)
654 lstrcpynA(buffer
, "OK", max_len
-1);
655 if((ret
= run_helper(helper
, buffer
, max_len
, &buffer_len
)) != SEC_E_OK
)
657 cleanup_helper(helper
);
660 /* If the helper replied with "PW", using cached credentials failed */
661 if(!strncmp(buffer
, "PW", 2))
663 TRACE("Using cached credentials failed.\n");
664 lstrcpynA(buffer
, "PW AA==", max_len
-1);
666 else /* Just do a noop on the next run */
667 lstrcpynA(buffer
, "OK", max_len
-1);
671 lstrcpynA(buffer
, "PW ", max_len
-1);
672 if((ret
= encodeBase64(password
? (unsigned char *)password
: (unsigned char *)ntlm_cred
->password
,
673 password
? pwlen
: ntlm_cred
->pwlen
, buffer
+3,
674 max_len
-3, &buffer_len
)) != SEC_E_OK
)
676 cleanup_helper(helper
);
682 TRACE("Sending to helper: %s\n", debugstr_a(buffer
));
683 if((ret
= run_helper(helper
, buffer
, max_len
, &buffer_len
)) != SEC_E_OK
)
685 cleanup_helper(helper
);
689 TRACE("Helper returned %s\n", debugstr_a(buffer
));
691 if(lstrlenA(want_flags
) > 2)
693 TRACE("Want flags are %s\n", debugstr_a(want_flags
));
694 lstrcpynA(buffer
, want_flags
, max_len
-1);
695 if((ret
= run_helper(helper
, buffer
, max_len
, &buffer_len
))
698 cleanup_helper(helper
);
701 if(!strncmp(buffer
, "BH", 2))
702 ERR("Helper doesn't understand new command set. Expect more things to fail.\n");
705 lstrcpynA(buffer
, "YR", max_len
-1);
707 if((ret
= run_helper(helper
, buffer
, max_len
, &buffer_len
)) != SEC_E_OK
)
709 cleanup_helper(helper
);
713 TRACE("%s\n", buffer
);
715 if(strncmp(buffer
, "YR ", 3) != 0)
717 /* Something borked */
718 TRACE("Helper returned %c%c\n", buffer
[0], buffer
[1]);
719 ret
= SEC_E_INTERNAL_ERROR
;
720 cleanup_helper(helper
);
723 if((ret
= decodeBase64(buffer
+3, buffer_len
-3, bin
,
724 max_len
-1, &bin_len
)) != SEC_E_OK
)
726 cleanup_helper(helper
);
730 /* put the decoded client blob into the out buffer */
732 phNewContext
->dwUpper
= ctxt_attr
;
733 phNewContext
->dwLower
= (ULONG_PTR
)helper
;
735 ret
= SEC_I_CONTINUE_NEEDED
;
741 /* handle second call here */
742 /* encode server data to base64 */
743 if (!pInput
|| ((input_token_idx
= ntlm_GetTokenBufferIndex(pInput
)) == -1))
745 ret
= SEC_E_INVALID_TOKEN
;
751 ret
= SEC_E_INVALID_HANDLE
;
755 /* As the server side of sspi never calls this, make sure that
756 * the handler is a client handler.
758 helper
= (PNegoHelper
)phContext
->dwLower
;
759 if(helper
->mode
!= NTLM_CLIENT
)
761 TRACE("Helper mode = %d\n", helper
->mode
);
762 ret
= SEC_E_INVALID_HANDLE
;
766 if (!pInput
->pBuffers
[input_token_idx
].pvBuffer
)
768 ret
= SEC_E_INTERNAL_ERROR
;
772 if(pInput
->pBuffers
[input_token_idx
].cbBuffer
> max_len
)
774 TRACE("pInput->pBuffers[%d].cbBuffer is: %d\n",
776 pInput
->pBuffers
[input_token_idx
].cbBuffer
);
777 ret
= SEC_E_INVALID_TOKEN
;
781 bin_len
= pInput
->pBuffers
[input_token_idx
].cbBuffer
;
783 memcpy(bin
, pInput
->pBuffers
[input_token_idx
].pvBuffer
, bin_len
);
785 lstrcpynA(buffer
, "TT ", max_len
-1);
787 if((ret
= encodeBase64(bin
, bin_len
, buffer
+3,
788 max_len
-3, &buffer_len
)) != SEC_E_OK
)
791 TRACE("Server sent: %s\n", debugstr_a(buffer
));
793 /* send TT base64 blob to ntlm_auth */
794 if((ret
= run_helper(helper
, buffer
, max_len
, &buffer_len
)) != SEC_E_OK
)
797 TRACE("Helper replied: %s\n", debugstr_a(buffer
));
799 if( (strncmp(buffer
, "KK ", 3) != 0) &&
800 (strncmp(buffer
, "AF ", 3) !=0))
802 TRACE("Helper returned %c%c\n", buffer
[0], buffer
[1]);
803 ret
= SEC_E_INVALID_TOKEN
;
807 /* decode the blob and send it to server */
808 if((ret
= decodeBase64(buffer
+3, buffer_len
-3, bin
, max_len
,
809 &bin_len
)) != SEC_E_OK
)
814 phNewContext
->dwUpper
= ctxt_attr
;
815 phNewContext
->dwLower
= (ULONG_PTR
)helper
;
820 /* put the decoded client blob into the out buffer */
822 if (!pOutput
|| ((token_idx
= ntlm_GetTokenBufferIndex(pOutput
)) == -1))
824 TRACE("no SECBUFFER_TOKEN buffer could be found\n");
825 ret
= SEC_E_BUFFER_TOO_SMALL
;
826 if ((phContext
== NULL
) && (pInput
== NULL
))
828 HeapFree(GetProcessHeap(), 0, helper
->session_key
);
829 cleanup_helper(helper
);
830 phNewContext
->dwUpper
= 0;
831 phNewContext
->dwLower
= 0;
836 if (fContextReq
& ISC_REQ_ALLOCATE_MEMORY
)
838 pOutput
->pBuffers
[token_idx
].pvBuffer
= HeapAlloc(GetProcessHeap(), 0, bin_len
);
839 pOutput
->pBuffers
[token_idx
].cbBuffer
= bin_len
;
841 else if (pOutput
->pBuffers
[token_idx
].cbBuffer
< bin_len
)
843 TRACE("out buffer is NULL or has not enough space\n");
844 ret
= SEC_E_BUFFER_TOO_SMALL
;
845 if ((phContext
== NULL
) && (pInput
== NULL
))
847 HeapFree(GetProcessHeap(), 0, helper
->session_key
);
848 cleanup_helper(helper
);
849 phNewContext
->dwUpper
= 0;
850 phNewContext
->dwLower
= 0;
855 if (!pOutput
->pBuffers
[token_idx
].pvBuffer
)
857 TRACE("out buffer is NULL\n");
858 ret
= SEC_E_INTERNAL_ERROR
;
859 if ((phContext
== NULL
) && (pInput
== NULL
))
861 HeapFree(GetProcessHeap(), 0, helper
->session_key
);
862 cleanup_helper(helper
);
863 phNewContext
->dwUpper
= 0;
864 phNewContext
->dwLower
= 0;
869 pOutput
->pBuffers
[token_idx
].cbBuffer
= bin_len
;
870 memcpy(pOutput
->pBuffers
[token_idx
].pvBuffer
, bin
, bin_len
);
874 TRACE("Getting negotiated flags\n");
875 lstrcpynA(buffer
, "GF", max_len
- 1);
876 if((ret
= run_helper(helper
, buffer
, max_len
, &buffer_len
)) != SEC_E_OK
)
881 TRACE("No flags negotiated.\n");
882 helper
->neg_flags
= 0l;
886 TRACE("Negotiated %s\n", debugstr_a(buffer
));
887 sscanf(buffer
+ 3, "%x", &(helper
->neg_flags
));
888 TRACE("Stored 0x%08x as flags\n", helper
->neg_flags
);
891 TRACE("Getting session key\n");
892 lstrcpynA(buffer
, "GK", max_len
- 1);
893 if((ret
= run_helper(helper
, buffer
, max_len
, &buffer_len
)) != SEC_E_OK
)
896 if(strncmp(buffer
, "BH", 2) == 0)
897 TRACE("No key negotiated.\n");
898 else if(strncmp(buffer
, "GK ", 3) == 0)
900 if((ret
= decodeBase64(buffer
+3, buffer_len
-3, bin
, max_len
,
901 &bin_len
)) != SEC_E_OK
)
903 TRACE("Failed to decode session key\n");
905 TRACE("Session key is %s\n", debugstr_a(buffer
+3));
906 HeapFree(GetProcessHeap(), 0, helper
->session_key
);
907 helper
->session_key
= HeapAlloc(GetProcessHeap(), 0, bin_len
);
908 if(!helper
->session_key
)
910 TRACE("Failed to allocate memory for session key\n");
911 ret
= SEC_E_INTERNAL_ERROR
;
914 memcpy(helper
->session_key
, bin
, bin_len
);
917 helper
->crypt
.ntlm
.a4i
= SECUR32_arc4Alloc();
918 SECUR32_arc4Init(helper
->crypt
.ntlm
.a4i
, helper
->session_key
, 16);
919 helper
->crypt
.ntlm
.seq_num
= 0l;
920 SECUR32_CreateNTLM2SubKeys(helper
);
921 helper
->crypt
.ntlm2
.send_a4i
= SECUR32_arc4Alloc();
922 helper
->crypt
.ntlm2
.recv_a4i
= SECUR32_arc4Alloc();
923 SECUR32_arc4Init(helper
->crypt
.ntlm2
.send_a4i
,
924 helper
->crypt
.ntlm2
.send_seal_key
, 16);
925 SECUR32_arc4Init(helper
->crypt
.ntlm2
.recv_a4i
,
926 helper
->crypt
.ntlm2
.recv_seal_key
, 16);
927 helper
->crypt
.ntlm2
.send_seq_no
= 0l;
928 helper
->crypt
.ntlm2
.recv_seq_no
= 0l;
932 HeapFree(GetProcessHeap(), 0, username
);
933 HeapFree(GetProcessHeap(), 0, domain
);
934 HeapFree(GetProcessHeap(), 0, password
);
935 HeapFree(GetProcessHeap(), 0, want_flags
);
936 HeapFree(GetProcessHeap(), 0, buffer
);
937 HeapFree(GetProcessHeap(), 0, bin
);
941 /***********************************************************************
942 * InitializeSecurityContextA
944 static SECURITY_STATUS SEC_ENTRY
ntlm_InitializeSecurityContextA(
945 PCredHandle phCredential
, PCtxtHandle phContext
, SEC_CHAR
*pszTargetName
,
946 ULONG fContextReq
, ULONG Reserved1
, ULONG TargetDataRep
,
947 PSecBufferDesc pInput
,ULONG Reserved2
, PCtxtHandle phNewContext
,
948 PSecBufferDesc pOutput
, ULONG
*pfContextAttr
, PTimeStamp ptsExpiry
)
951 SEC_WCHAR
*target
= NULL
;
953 TRACE("%p %p %s %d %d %d %p %d %p %p %p %p\n", phCredential
, phContext
,
954 debugstr_a(pszTargetName
), fContextReq
, Reserved1
, TargetDataRep
, pInput
,
955 Reserved1
, phNewContext
, pOutput
, pfContextAttr
, ptsExpiry
);
957 if(pszTargetName
!= NULL
)
959 int target_size
= MultiByteToWideChar(CP_ACP
, 0, pszTargetName
,
960 strlen(pszTargetName
)+1, NULL
, 0);
961 target
= HeapAlloc(GetProcessHeap(), 0, target_size
*
963 MultiByteToWideChar(CP_ACP
, 0, pszTargetName
, strlen(pszTargetName
)+1,
964 target
, target_size
);
967 ret
= ntlm_InitializeSecurityContextW(phCredential
, phContext
, target
,
968 fContextReq
, Reserved1
, TargetDataRep
, pInput
, Reserved2
,
969 phNewContext
, pOutput
, pfContextAttr
, ptsExpiry
);
971 HeapFree(GetProcessHeap(), 0, target
);
975 /***********************************************************************
976 * AcceptSecurityContext
978 static SECURITY_STATUS SEC_ENTRY
ntlm_AcceptSecurityContext(
979 PCredHandle phCredential
, PCtxtHandle phContext
, PSecBufferDesc pInput
,
980 ULONG fContextReq
, ULONG TargetDataRep
, PCtxtHandle phNewContext
,
981 PSecBufferDesc pOutput
, ULONG
*pfContextAttr
, PTimeStamp ptsExpiry
)
984 char *buffer
, *want_flags
= NULL
;
986 int buffer_len
, bin_len
, max_len
= NTLM_MAX_BUF
;
989 PNtlmCredentials ntlm_cred
;
991 TRACE("%p %p %p %d %d %p %p %p %p\n", phCredential
, phContext
, pInput
,
992 fContextReq
, TargetDataRep
, phNewContext
, pOutput
, pfContextAttr
,
995 buffer
= HeapAlloc(GetProcessHeap(), 0, sizeof(char) * NTLM_MAX_BUF
);
996 bin
= HeapAlloc(GetProcessHeap(),0, sizeof(BYTE
) * NTLM_MAX_BUF
);
998 if(TargetDataRep
== SECURITY_NETWORK_DREP
){
999 TRACE("Using SECURITY_NETWORK_DREP\n");
1002 if(phContext
== NULL
)
1004 static CHAR server_helper_protocol
[] = "--helper-protocol=squid-2.5-ntlmssp";
1005 SEC_CHAR
*server_argv
[] = { ntlm_auth
,
1006 server_helper_protocol
,
1011 ret
= SEC_E_INVALID_HANDLE
;
1015 ntlm_cred
= (PNtlmCredentials
)phCredential
->dwLower
;
1017 if(ntlm_cred
->mode
!= NTLM_SERVER
)
1019 ret
= SEC_E_INVALID_HANDLE
;
1023 /* This is the first call to AcceptSecurityHandle */
1026 ret
= SEC_E_INCOMPLETE_MESSAGE
;
1030 if(pInput
->cBuffers
< 1)
1032 ret
= SEC_E_INCOMPLETE_MESSAGE
;
1036 if(pInput
->pBuffers
[0].cbBuffer
> max_len
)
1038 ret
= SEC_E_INVALID_TOKEN
;
1042 bin_len
= pInput
->pBuffers
[0].cbBuffer
;
1044 if( (ret
= fork_helper(&helper
, ntlm_auth
, server_argv
)) !=
1047 ret
= SEC_E_INTERNAL_ERROR
;
1050 helper
->mode
= NTLM_SERVER
;
1052 /* Handle all the flags */
1053 want_flags
= HeapAlloc(GetProcessHeap(), 0, 73);
1054 if(want_flags
== NULL
)
1056 TRACE("Failed to allocate memory for the want_flags!\n");
1057 ret
= SEC_E_INSUFFICIENT_MEMORY
;
1058 cleanup_helper(helper
);
1061 lstrcpyA(want_flags
, "SF");
1062 if(fContextReq
& ASC_REQ_ALLOCATE_MEMORY
)
1064 FIXME("ASC_REQ_ALLOCATE_MEMORY stub\n");
1066 if(fContextReq
& ASC_REQ_CONFIDENTIALITY
)
1068 lstrcatA(want_flags
, " NTLMSSP_FEATURE_SEAL");
1070 if(fContextReq
& ASC_REQ_CONNECTION
)
1072 /* This is default, so we'll enable it */
1073 lstrcatA(want_flags
, " NTLMSSP_FEATURE_SESSION_KEY");
1074 ctxt_attr
|= ASC_RET_CONNECTION
;
1076 if(fContextReq
& ASC_REQ_EXTENDED_ERROR
)
1078 FIXME("ASC_REQ_EXTENDED_ERROR stub\n");
1080 if(fContextReq
& ASC_REQ_INTEGRITY
)
1082 lstrcatA(want_flags
, " NTLMSSP_FEATURE_SIGN");
1084 if(fContextReq
& ASC_REQ_MUTUAL_AUTH
)
1086 FIXME("ASC_REQ_MUTUAL_AUTH stub\n");
1088 if(fContextReq
& ASC_REQ_REPLAY_DETECT
)
1090 FIXME("ASC_REQ_REPLAY_DETECT stub\n");
1092 if(fContextReq
& ISC_REQ_SEQUENCE_DETECT
)
1094 FIXME("ASC_REQ_SEQUENCE_DETECT stub\n");
1096 if(fContextReq
& ISC_REQ_STREAM
)
1098 FIXME("ASC_REQ_STREAM stub\n");
1100 /* Done with the flags */
1102 if(lstrlenA(want_flags
) > 3)
1104 TRACE("Server set want_flags: %s\n", debugstr_a(want_flags
));
1105 lstrcpynA(buffer
, want_flags
, max_len
- 1);
1106 if((ret
= run_helper(helper
, buffer
, max_len
, &buffer_len
)) !=
1109 cleanup_helper(helper
);
1112 if(!strncmp(buffer
, "BH", 2))
1113 TRACE("Helper doesn't understand new command set\n");
1116 /* This is the YR request from the client, encode to base64 */
1118 memcpy(bin
, pInput
->pBuffers
[0].pvBuffer
, bin_len
);
1120 lstrcpynA(buffer
, "YR ", max_len
-1);
1122 if((ret
= encodeBase64(bin
, bin_len
, buffer
+3, max_len
-3,
1123 &buffer_len
)) != SEC_E_OK
)
1125 cleanup_helper(helper
);
1129 TRACE("Client sent: %s\n", debugstr_a(buffer
));
1131 if((ret
= run_helper(helper
, buffer
, max_len
, &buffer_len
)) !=
1134 cleanup_helper(helper
);
1138 TRACE("Reply from ntlm_auth: %s\n", debugstr_a(buffer
));
1139 /* The expected answer is TT <base64 blob> */
1141 if(strncmp(buffer
, "TT ", 3) != 0)
1143 ret
= SEC_E_INTERNAL_ERROR
;
1144 cleanup_helper(helper
);
1148 if((ret
= decodeBase64(buffer
+3, buffer_len
-3, bin
, max_len
,
1149 &bin_len
)) != SEC_E_OK
)
1151 cleanup_helper(helper
);
1155 /* send this to the client */
1158 ret
= SEC_E_INSUFFICIENT_MEMORY
;
1159 cleanup_helper(helper
);
1163 if(pOutput
->cBuffers
< 1)
1165 ret
= SEC_E_INSUFFICIENT_MEMORY
;
1166 cleanup_helper(helper
);
1170 pOutput
->pBuffers
[0].cbBuffer
= bin_len
;
1171 pOutput
->pBuffers
[0].BufferType
= SECBUFFER_DATA
;
1172 memcpy(pOutput
->pBuffers
[0].pvBuffer
, bin
, bin_len
);
1173 ret
= SEC_I_CONTINUE_NEEDED
;
1178 /* we expect a KK request from client */
1181 ret
= SEC_E_INCOMPLETE_MESSAGE
;
1185 if(pInput
->cBuffers
< 1)
1187 ret
= SEC_E_INCOMPLETE_MESSAGE
;
1193 ret
= SEC_E_INVALID_HANDLE
;
1197 helper
= (PNegoHelper
)phContext
->dwLower
;
1199 if(helper
->mode
!= NTLM_SERVER
)
1201 ret
= SEC_E_INVALID_HANDLE
;
1205 if(pInput
->pBuffers
[0].cbBuffer
> max_len
)
1207 ret
= SEC_E_INVALID_TOKEN
;
1211 bin_len
= pInput
->pBuffers
[0].cbBuffer
;
1213 memcpy(bin
, pInput
->pBuffers
[0].pvBuffer
, bin_len
);
1215 lstrcpynA(buffer
, "KK ", max_len
-1);
1217 if((ret
= encodeBase64(bin
, bin_len
, buffer
+3, max_len
-3,
1218 &buffer_len
)) != SEC_E_OK
)
1223 TRACE("Client sent: %s\n", debugstr_a(buffer
));
1225 if((ret
= run_helper(helper
, buffer
, max_len
, &buffer_len
)) !=
1231 TRACE("Reply from ntlm_auth: %s\n", debugstr_a(buffer
));
1233 /* At this point, we get a NA if the user didn't authenticate, but a BH
1234 * if ntlm_auth could not connect to winbindd. Apart from running Wine
1235 * as root, there is no way to fix this for now, so just handle this as
1236 * a failed login. */
1237 if(strncmp(buffer
, "AF ", 3) != 0)
1239 if(strncmp(buffer
, "NA ", 3) == 0)
1241 ret
= SEC_E_LOGON_DENIED
;
1246 size_t ntlm_pipe_err_len
= strlen("BH NT_STATUS_ACCESS_DENIED");
1248 if( (buffer_len
>= ntlm_pipe_err_len
) &&
1249 (strncmp(buffer
, "BH NT_STATUS_ACCESS_DENIED",
1250 ntlm_pipe_err_len
) == 0))
1252 TRACE("Connection to winbindd failed\n");
1253 ret
= SEC_E_LOGON_DENIED
;
1256 ret
= SEC_E_INTERNAL_ERROR
;
1261 pOutput
->pBuffers
[0].cbBuffer
= 0;
1263 TRACE("Getting negotiated flags\n");
1264 lstrcpynA(buffer
, "GF", max_len
- 1);
1265 if((ret
= run_helper(helper
, buffer
, max_len
, &buffer_len
)) != SEC_E_OK
)
1270 TRACE("No flags negotiated, or helper does not support GF command\n");
1274 TRACE("Negotiated %s\n", debugstr_a(buffer
));
1275 sscanf(buffer
+ 3, "%x", &(helper
->neg_flags
));
1276 TRACE("Stored 0x%08x as flags\n", helper
->neg_flags
);
1279 TRACE("Getting session key\n");
1280 lstrcpynA(buffer
, "GK", max_len
- 1);
1281 if((ret
= run_helper(helper
, buffer
, max_len
, &buffer_len
)) != SEC_E_OK
)
1285 TRACE("Helper does not support GK command\n");
1288 if(strncmp(buffer
, "BH ", 3) == 0)
1290 TRACE("Helper sent %s\n", debugstr_a(buffer
+3));
1291 helper
->session_key
= HeapAlloc(GetProcessHeap(), 0, 16);
1292 /*FIXME: Generate the dummy session key = MD4(MD4(password))*/
1293 memset(helper
->session_key
, 0 , 16);
1295 else if(strncmp(buffer
, "GK ", 3) == 0)
1297 if((ret
= decodeBase64(buffer
+3, buffer_len
-3, bin
, max_len
,
1298 &bin_len
)) != SEC_E_OK
)
1300 TRACE("Failed to decode session key\n");
1302 TRACE("Session key is %s\n", debugstr_a(buffer
+3));
1303 helper
->session_key
= HeapAlloc(GetProcessHeap(), 0, 16);
1304 if(!helper
->session_key
)
1306 TRACE("Failed to allocate memory for session key\n");
1307 ret
= SEC_E_INTERNAL_ERROR
;
1310 memcpy(helper
->session_key
, bin
, 16);
1313 helper
->crypt
.ntlm
.a4i
= SECUR32_arc4Alloc();
1314 SECUR32_arc4Init(helper
->crypt
.ntlm
.a4i
, helper
->session_key
, 16);
1315 helper
->crypt
.ntlm
.seq_num
= 0l;
1318 phNewContext
->dwUpper
= ctxt_attr
;
1319 phNewContext
->dwLower
= (ULONG_PTR
)helper
;
1322 HeapFree(GetProcessHeap(), 0, want_flags
);
1323 HeapFree(GetProcessHeap(), 0, buffer
);
1324 HeapFree(GetProcessHeap(), 0, bin
);
1328 /***********************************************************************
1331 static SECURITY_STATUS SEC_ENTRY
ntlm_CompleteAuthToken(PCtxtHandle phContext
,
1332 PSecBufferDesc pToken
)
1334 /* We never need to call CompleteAuthToken anyway */
1335 TRACE("%p %p\n", phContext
, pToken
);
1337 return SEC_E_INVALID_HANDLE
;
1342 /***********************************************************************
1343 * DeleteSecurityContext
1345 static SECURITY_STATUS SEC_ENTRY
ntlm_DeleteSecurityContext(PCtxtHandle phContext
)
1349 TRACE("%p\n", phContext
);
1351 return SEC_E_INVALID_HANDLE
;
1353 helper
= (PNegoHelper
)phContext
->dwLower
;
1355 phContext
->dwUpper
= 0;
1356 phContext
->dwLower
= 0;
1358 SECUR32_arc4Cleanup(helper
->crypt
.ntlm
.a4i
);
1359 HeapFree(GetProcessHeap(), 0, helper
->session_key
);
1360 SECUR32_arc4Cleanup(helper
->crypt
.ntlm2
.send_a4i
);
1361 SECUR32_arc4Cleanup(helper
->crypt
.ntlm2
.recv_a4i
);
1362 HeapFree(GetProcessHeap(), 0, helper
->crypt
.ntlm2
.send_sign_key
);
1363 HeapFree(GetProcessHeap(), 0, helper
->crypt
.ntlm2
.send_seal_key
);
1364 HeapFree(GetProcessHeap(), 0, helper
->crypt
.ntlm2
.recv_sign_key
);
1365 HeapFree(GetProcessHeap(), 0, helper
->crypt
.ntlm2
.recv_seal_key
);
1367 cleanup_helper(helper
);
1372 /***********************************************************************
1373 * QueryContextAttributesW
1375 static SECURITY_STATUS SEC_ENTRY
ntlm_QueryContextAttributesW(PCtxtHandle phContext
,
1376 ULONG ulAttribute
, void *pBuffer
)
1378 TRACE("%p %d %p\n", phContext
, ulAttribute
, pBuffer
);
1380 return SEC_E_INVALID_HANDLE
;
1384 #define _x(x) case (x) : FIXME(#x" stub\n"); break
1385 _x(SECPKG_ATTR_ACCESS_TOKEN
);
1386 _x(SECPKG_ATTR_AUTHORITY
);
1387 _x(SECPKG_ATTR_DCE_INFO
);
1388 case SECPKG_ATTR_FLAGS
:
1390 PSecPkgContext_Flags spcf
= (PSecPkgContext_Flags
)pBuffer
;
1391 PNegoHelper helper
= (PNegoHelper
)phContext
->dwLower
;
1394 if(helper
->neg_flags
& NTLMSSP_NEGOTIATE_SIGN
)
1395 spcf
->Flags
|= ISC_RET_INTEGRITY
;
1396 if(helper
->neg_flags
& NTLMSSP_NEGOTIATE_SEAL
)
1397 spcf
->Flags
|= ISC_RET_CONFIDENTIALITY
;
1400 _x(SECPKG_ATTR_KEY_INFO
);
1401 _x(SECPKG_ATTR_LIFESPAN
);
1402 _x(SECPKG_ATTR_NAMES
);
1403 _x(SECPKG_ATTR_NATIVE_NAMES
);
1404 _x(SECPKG_ATTR_NEGOTIATION_INFO
);
1405 _x(SECPKG_ATTR_PACKAGE_INFO
);
1406 _x(SECPKG_ATTR_PASSWORD_EXPIRY
);
1407 _x(SECPKG_ATTR_SESSION_KEY
);
1408 case SECPKG_ATTR_SIZES
:
1410 PSecPkgContext_Sizes spcs
= (PSecPkgContext_Sizes
)pBuffer
;
1411 spcs
->cbMaxToken
= NTLM_MAX_BUF
;
1412 spcs
->cbMaxSignature
= 16;
1413 spcs
->cbBlockSize
= 0;
1414 spcs
->cbSecurityTrailer
= 16;
1417 _x(SECPKG_ATTR_STREAM_SIZES
);
1418 _x(SECPKG_ATTR_TARGET_INFORMATION
);
1421 TRACE("Unknown value %d passed for ulAttribute\n", ulAttribute
);
1424 return SEC_E_UNSUPPORTED_FUNCTION
;
1427 /***********************************************************************
1428 * QueryContextAttributesA
1430 static SECURITY_STATUS SEC_ENTRY
ntlm_QueryContextAttributesA(PCtxtHandle phContext
,
1431 ULONG ulAttribute
, void *pBuffer
)
1433 return ntlm_QueryContextAttributesW(phContext
, ulAttribute
, pBuffer
);
1436 /***********************************************************************
1437 * ImpersonateSecurityContext
1439 static SECURITY_STATUS SEC_ENTRY
ntlm_ImpersonateSecurityContext(PCtxtHandle phContext
)
1441 SECURITY_STATUS ret
;
1443 TRACE("%p\n", phContext
);
1446 ret
= SEC_E_UNSUPPORTED_FUNCTION
;
1450 ret
= SEC_E_INVALID_HANDLE
;
1455 /***********************************************************************
1456 * RevertSecurityContext
1458 static SECURITY_STATUS SEC_ENTRY
ntlm_RevertSecurityContext(PCtxtHandle phContext
)
1460 SECURITY_STATUS ret
;
1462 TRACE("%p\n", phContext
);
1465 ret
= SEC_E_UNSUPPORTED_FUNCTION
;
1469 ret
= SEC_E_INVALID_HANDLE
;
1474 /***********************************************************************
1475 * ntlm_CreateSignature
1476 * As both MakeSignature and VerifySignature need this, but different keys
1477 * are needed for NTLM2, the logic goes into a helper function.
1478 * To ensure maximal reusability, we can specify the direction as NTLM_SEND for
1479 * signing/encrypting and NTLM_RECV for verfying/decrypting. When encrypting,
1480 * the signature is encrypted after the message was encrypted, so
1481 * CreateSignature shouldn't do it. In this case, encrypt_sig can be set to
1484 static SECURITY_STATUS
ntlm_CreateSignature(PNegoHelper helper
, PSecBufferDesc pMessage
,
1485 int token_idx
, SignDirection direction
, BOOL encrypt_sig
)
1487 ULONG sign_version
= 1;
1490 TRACE("%p, %p, %d, %d, %d\n", helper
, pMessage
, token_idx
, direction
,
1493 sig
= pMessage
->pBuffers
[token_idx
].pvBuffer
;
1495 if(helper
->neg_flags
& NTLMSSP_NEGOTIATE_NTLM2
&&
1496 helper
->neg_flags
& NTLMSSP_NEGOTIATE_SIGN
)
1500 HMAC_MD5_CTX hmac_md5_ctx
;
1502 TRACE("Signing NTLM2 style\n");
1504 if(direction
== NTLM_SEND
)
1506 seq_no
[0] = (helper
->crypt
.ntlm2
.send_seq_no
>> 0) & 0xff;
1507 seq_no
[1] = (helper
->crypt
.ntlm2
.send_seq_no
>> 8) & 0xff;
1508 seq_no
[2] = (helper
->crypt
.ntlm2
.send_seq_no
>> 16) & 0xff;
1509 seq_no
[3] = (helper
->crypt
.ntlm2
.send_seq_no
>> 24) & 0xff;
1511 ++(helper
->crypt
.ntlm2
.send_seq_no
);
1513 HMACMD5Init(&hmac_md5_ctx
, helper
->crypt
.ntlm2
.send_sign_key
, 16);
1517 seq_no
[0] = (helper
->crypt
.ntlm2
.recv_seq_no
>> 0) & 0xff;
1518 seq_no
[1] = (helper
->crypt
.ntlm2
.recv_seq_no
>> 8) & 0xff;
1519 seq_no
[2] = (helper
->crypt
.ntlm2
.recv_seq_no
>> 16) & 0xff;
1520 seq_no
[3] = (helper
->crypt
.ntlm2
.recv_seq_no
>> 24) & 0xff;
1522 ++(helper
->crypt
.ntlm2
.recv_seq_no
);
1524 HMACMD5Init(&hmac_md5_ctx
, helper
->crypt
.ntlm2
.recv_sign_key
, 16);
1527 HMACMD5Update(&hmac_md5_ctx
, seq_no
, 4);
1528 for( i
= 0; i
< pMessage
->cBuffers
; ++i
)
1530 if(pMessage
->pBuffers
[i
].BufferType
& SECBUFFER_DATA
)
1531 HMACMD5Update(&hmac_md5_ctx
, pMessage
->pBuffers
[i
].pvBuffer
,
1532 pMessage
->pBuffers
[i
].cbBuffer
);
1535 HMACMD5Final(&hmac_md5_ctx
, digest
);
1537 if(encrypt_sig
&& helper
->neg_flags
& NTLMSSP_NEGOTIATE_KEY_EXCHANGE
)
1539 if(direction
== NTLM_SEND
)
1540 SECUR32_arc4Process(helper
->crypt
.ntlm2
.send_a4i
, digest
, 8);
1542 SECUR32_arc4Process(helper
->crypt
.ntlm2
.recv_a4i
, digest
, 8);
1545 /* The NTLM2 signature is the sign version */
1546 sig
[ 0] = (sign_version
>> 0) & 0xff;
1547 sig
[ 1] = (sign_version
>> 8) & 0xff;
1548 sig
[ 2] = (sign_version
>> 16) & 0xff;
1549 sig
[ 3] = (sign_version
>> 24) & 0xff;
1550 /* The first 8 bytes of the digest */
1551 memcpy(sig
+4, digest
, 8);
1552 /* And the sequence number */
1553 memcpy(sig
+12, seq_no
, 4);
1555 pMessage
->pBuffers
[token_idx
].cbBuffer
= 16;
1559 if(helper
->neg_flags
& NTLMSSP_NEGOTIATE_SIGN
)
1562 TRACE("Signing NTLM1 style\n");
1564 for(i
=0; i
< pMessage
->cBuffers
; ++i
)
1566 if(pMessage
->pBuffers
[i
].BufferType
& SECBUFFER_DATA
)
1568 crc
= ComputeCrc32(pMessage
->pBuffers
[i
].pvBuffer
,
1569 pMessage
->pBuffers
[i
].cbBuffer
, crc
);
1573 sig
[ 0] = (sign_version
>> 0) & 0xff;
1574 sig
[ 1] = (sign_version
>> 8) & 0xff;
1575 sig
[ 2] = (sign_version
>> 16) & 0xff;
1576 sig
[ 3] = (sign_version
>> 24) & 0xff;
1577 memset(sig
+4, 0, 4);
1578 sig
[ 8] = (crc
>> 0) & 0xff;
1579 sig
[ 9] = (crc
>> 8) & 0xff;
1580 sig
[10] = (crc
>> 16) & 0xff;
1581 sig
[11] = (crc
>> 24) & 0xff;
1582 sig
[12] = (helper
->crypt
.ntlm
.seq_num
>> 0) & 0xff;
1583 sig
[13] = (helper
->crypt
.ntlm
.seq_num
>> 8) & 0xff;
1584 sig
[14] = (helper
->crypt
.ntlm
.seq_num
>> 16) & 0xff;
1585 sig
[15] = (helper
->crypt
.ntlm
.seq_num
>> 24) & 0xff;
1587 ++(helper
->crypt
.ntlm
.seq_num
);
1590 SECUR32_arc4Process(helper
->crypt
.ntlm
.a4i
, sig
+4, 12);
1594 if(helper
->neg_flags
& NTLMSSP_NEGOTIATE_ALWAYS_SIGN
|| helper
->neg_flags
== 0)
1596 TRACE("Creating a dummy signature.\n");
1597 /* A dummy signature is 0x01 followed by 15 bytes of 0x00 */
1598 memset(pMessage
->pBuffers
[token_idx
].pvBuffer
, 0, 16);
1599 memset(pMessage
->pBuffers
[token_idx
].pvBuffer
, 0x01, 1);
1600 pMessage
->pBuffers
[token_idx
].cbBuffer
= 16;
1604 return SEC_E_UNSUPPORTED_FUNCTION
;
1607 /***********************************************************************
1610 static SECURITY_STATUS SEC_ENTRY
ntlm_MakeSignature(PCtxtHandle phContext
, ULONG fQOP
,
1611 PSecBufferDesc pMessage
, ULONG MessageSeqNo
)
1616 TRACE("%p %d %p %d\n", phContext
, fQOP
, pMessage
, MessageSeqNo
);
1618 return SEC_E_INVALID_HANDLE
;
1621 FIXME("Ignoring fQOP 0x%08x\n", fQOP
);
1624 FIXME("Ignoring MessageSeqNo\n");
1626 if(!pMessage
|| !pMessage
->pBuffers
|| pMessage
->cBuffers
< 2)
1627 return SEC_E_INVALID_TOKEN
;
1629 /* If we didn't find a SECBUFFER_TOKEN type buffer */
1630 if((token_idx
= ntlm_GetTokenBufferIndex(pMessage
)) == -1)
1631 return SEC_E_INVALID_TOKEN
;
1633 if(pMessage
->pBuffers
[token_idx
].cbBuffer
< 16)
1634 return SEC_E_BUFFER_TOO_SMALL
;
1636 helper
= (PNegoHelper
)phContext
->dwLower
;
1637 TRACE("Negotiated flags are: 0x%08x\n", helper
->neg_flags
);
1639 return ntlm_CreateSignature(helper
, pMessage
, token_idx
, NTLM_SEND
, TRUE
);
1642 /***********************************************************************
1645 static SECURITY_STATUS SEC_ENTRY
ntlm_VerifySignature(PCtxtHandle phContext
,
1646 PSecBufferDesc pMessage
, ULONG MessageSeqNo
, PULONG pfQOP
)
1652 SECURITY_STATUS ret
;
1653 SecBufferDesc local_desc
;
1654 PSecBuffer local_buff
;
1657 TRACE("%p %p %d %p\n", phContext
, pMessage
, MessageSeqNo
, pfQOP
);
1659 return SEC_E_INVALID_HANDLE
;
1661 if(!pMessage
|| !pMessage
->pBuffers
|| pMessage
->cBuffers
< 2)
1662 return SEC_E_INVALID_TOKEN
;
1664 if((token_idx
= ntlm_GetTokenBufferIndex(pMessage
)) == -1)
1665 return SEC_E_INVALID_TOKEN
;
1667 if(pMessage
->pBuffers
[token_idx
].cbBuffer
< 16)
1668 return SEC_E_BUFFER_TOO_SMALL
;
1671 FIXME("Ignoring MessageSeqNo\n");
1673 helper
= (PNegoHelper
)phContext
->dwLower
;
1674 TRACE("Negotiated flags: 0x%08x\n", helper
->neg_flags
);
1676 local_buff
= HeapAlloc(GetProcessHeap(), 0, pMessage
->cBuffers
* sizeof(SecBuffer
));
1678 local_desc
.ulVersion
= SECBUFFER_VERSION
;
1679 local_desc
.cBuffers
= pMessage
->cBuffers
;
1680 local_desc
.pBuffers
= local_buff
;
1682 for(i
=0; i
< pMessage
->cBuffers
; ++i
)
1684 if(pMessage
->pBuffers
[i
].BufferType
== SECBUFFER_TOKEN
)
1686 local_buff
[i
].BufferType
= SECBUFFER_TOKEN
;
1687 local_buff
[i
].cbBuffer
= 16;
1688 local_buff
[i
].pvBuffer
= local_sig
;
1692 local_buff
[i
].BufferType
= pMessage
->pBuffers
[i
].BufferType
;
1693 local_buff
[i
].cbBuffer
= pMessage
->pBuffers
[i
].cbBuffer
;
1694 local_buff
[i
].pvBuffer
= pMessage
->pBuffers
[i
].pvBuffer
;
1698 if((ret
= ntlm_CreateSignature(helper
, &local_desc
, token_idx
, NTLM_RECV
, TRUE
)) != SEC_E_OK
)
1701 if(memcmp(((PBYTE
)local_buff
[token_idx
].pvBuffer
) + 8,
1702 ((PBYTE
)pMessage
->pBuffers
[token_idx
].pvBuffer
) + 8, 8))
1703 ret
= SEC_E_MESSAGE_ALTERED
;
1707 HeapFree(GetProcessHeap(), 0, local_buff
);
1714 /***********************************************************************
1715 * FreeCredentialsHandle
1717 static SECURITY_STATUS SEC_ENTRY
ntlm_FreeCredentialsHandle(
1718 PCredHandle phCredential
)
1720 SECURITY_STATUS ret
;
1723 PNtlmCredentials ntlm_cred
= (PNtlmCredentials
) phCredential
->dwLower
;
1724 phCredential
->dwUpper
= 0;
1725 phCredential
->dwLower
= 0;
1726 if (ntlm_cred
->password
)
1727 memset(ntlm_cred
->password
, 0, ntlm_cred
->pwlen
);
1728 HeapFree(GetProcessHeap(), 0, ntlm_cred
->password
);
1729 HeapFree(GetProcessHeap(), 0, ntlm_cred
->username_arg
);
1730 HeapFree(GetProcessHeap(), 0, ntlm_cred
->domain_arg
);
1731 HeapFree(GetProcessHeap(), 0, ntlm_cred
);
1740 /***********************************************************************
1743 static SECURITY_STATUS SEC_ENTRY
ntlm_EncryptMessage(PCtxtHandle phContext
,
1744 ULONG fQOP
, PSecBufferDesc pMessage
, ULONG MessageSeqNo
)
1747 int token_idx
, data_idx
;
1749 TRACE("(%p %d %p %d)\n", phContext
, fQOP
, pMessage
, MessageSeqNo
);
1752 return SEC_E_INVALID_HANDLE
;
1755 FIXME("Ignoring fQOP\n");
1758 FIXME("Ignoring MessageSeqNo\n");
1760 if(!pMessage
|| !pMessage
->pBuffers
|| pMessage
->cBuffers
< 2)
1761 return SEC_E_INVALID_TOKEN
;
1763 if((token_idx
= ntlm_GetTokenBufferIndex(pMessage
)) == -1)
1764 return SEC_E_INVALID_TOKEN
;
1766 if((data_idx
= ntlm_GetDataBufferIndex(pMessage
)) ==-1 )
1767 return SEC_E_INVALID_TOKEN
;
1769 if(pMessage
->pBuffers
[token_idx
].cbBuffer
< 16)
1770 return SEC_E_BUFFER_TOO_SMALL
;
1772 helper
= (PNegoHelper
) phContext
->dwLower
;
1774 if(helper
->neg_flags
& NTLMSSP_NEGOTIATE_NTLM2
&&
1775 helper
->neg_flags
& NTLMSSP_NEGOTIATE_SEAL
)
1777 ntlm_CreateSignature(helper
, pMessage
, token_idx
, NTLM_SEND
, FALSE
);
1778 SECUR32_arc4Process(helper
->crypt
.ntlm2
.send_a4i
,
1779 pMessage
->pBuffers
[data_idx
].pvBuffer
,
1780 pMessage
->pBuffers
[data_idx
].cbBuffer
);
1782 if(helper
->neg_flags
& NTLMSSP_NEGOTIATE_KEY_EXCHANGE
)
1783 SECUR32_arc4Process(helper
->crypt
.ntlm2
.send_a4i
,
1784 ((BYTE
*)pMessage
->pBuffers
[token_idx
].pvBuffer
)+4, 8);
1794 /* EncryptMessage always produces real signatures, so make sure
1795 * NTLMSSP_NEGOTIATE_SIGN is set*/
1796 save_flags
= helper
->neg_flags
;
1797 helper
->neg_flags
|= NTLMSSP_NEGOTIATE_SIGN
;
1798 ntlm_CreateSignature(helper
, pMessage
, token_idx
, NTLM_SEND
, FALSE
);
1799 helper
->neg_flags
= save_flags
;
1801 sig
= pMessage
->pBuffers
[token_idx
].pvBuffer
;
1803 SECUR32_arc4Process(helper
->crypt
.ntlm
.a4i
,
1804 pMessage
->pBuffers
[data_idx
].pvBuffer
,
1805 pMessage
->pBuffers
[data_idx
].cbBuffer
);
1806 SECUR32_arc4Process(helper
->crypt
.ntlm
.a4i
, sig
+4, 12);
1808 if(helper
->neg_flags
& NTLMSSP_NEGOTIATE_ALWAYS_SIGN
|| helper
->neg_flags
== 0)
1809 memset(sig
+4, 0, 4);
1816 /***********************************************************************
1819 static SECURITY_STATUS SEC_ENTRY
ntlm_DecryptMessage(PCtxtHandle phContext
,
1820 PSecBufferDesc pMessage
, ULONG MessageSeqNo
, PULONG pfQOP
)
1822 SECURITY_STATUS ret
;
1823 ULONG ntlmssp_flags_save
;
1825 int token_idx
, data_idx
;
1826 TRACE("(%p %p %d %p)\n", phContext
, pMessage
, MessageSeqNo
, pfQOP
);
1829 return SEC_E_INVALID_HANDLE
;
1832 FIXME("Ignoring MessageSeqNo\n");
1834 if(!pMessage
|| !pMessage
->pBuffers
|| pMessage
->cBuffers
< 2)
1835 return SEC_E_INVALID_TOKEN
;
1837 if((token_idx
= ntlm_GetTokenBufferIndex(pMessage
)) == -1)
1838 return SEC_E_INVALID_TOKEN
;
1840 if((data_idx
= ntlm_GetDataBufferIndex(pMessage
)) ==-1)
1841 return SEC_E_INVALID_TOKEN
;
1843 if(pMessage
->pBuffers
[token_idx
].cbBuffer
< 16)
1844 return SEC_E_BUFFER_TOO_SMALL
;
1846 helper
= (PNegoHelper
) phContext
->dwLower
;
1848 if(helper
->neg_flags
& NTLMSSP_NEGOTIATE_NTLM2
&& helper
->neg_flags
& NTLMSSP_NEGOTIATE_SEAL
)
1850 SECUR32_arc4Process(helper
->crypt
.ntlm2
.recv_a4i
,
1851 pMessage
->pBuffers
[data_idx
].pvBuffer
,
1852 pMessage
->pBuffers
[data_idx
].cbBuffer
);
1856 SECUR32_arc4Process(helper
->crypt
.ntlm
.a4i
,
1857 pMessage
->pBuffers
[data_idx
].pvBuffer
,
1858 pMessage
->pBuffers
[data_idx
].cbBuffer
);
1861 /* Make sure we use a session key for the signature check, EncryptMessage
1862 * always does that, even in the dummy case */
1863 ntlmssp_flags_save
= helper
->neg_flags
;
1865 helper
->neg_flags
|= NTLMSSP_NEGOTIATE_SIGN
;
1866 ret
= ntlm_VerifySignature(phContext
, pMessage
, MessageSeqNo
, pfQOP
);
1868 helper
->neg_flags
= ntlmssp_flags_save
;
1873 static const SecurityFunctionTableA ntlmTableA
= {
1875 NULL
, /* EnumerateSecurityPackagesA */
1876 ntlm_QueryCredentialsAttributesA
, /* QueryCredentialsAttributesA */
1877 ntlm_AcquireCredentialsHandleA
, /* AcquireCredentialsHandleA */
1878 ntlm_FreeCredentialsHandle
, /* FreeCredentialsHandle */
1879 NULL
, /* Reserved2 */
1880 ntlm_InitializeSecurityContextA
, /* InitializeSecurityContextA */
1881 ntlm_AcceptSecurityContext
, /* AcceptSecurityContext */
1882 ntlm_CompleteAuthToken
, /* CompleteAuthToken */
1883 ntlm_DeleteSecurityContext
, /* DeleteSecurityContext */
1884 NULL
, /* ApplyControlToken */
1885 ntlm_QueryContextAttributesA
, /* QueryContextAttributesA */
1886 ntlm_ImpersonateSecurityContext
, /* ImpersonateSecurityContext */
1887 ntlm_RevertSecurityContext
, /* RevertSecurityContext */
1888 ntlm_MakeSignature
, /* MakeSignature */
1889 ntlm_VerifySignature
, /* VerifySignature */
1890 FreeContextBuffer
, /* FreeContextBuffer */
1891 NULL
, /* QuerySecurityPackageInfoA */
1892 NULL
, /* Reserved3 */
1893 NULL
, /* Reserved4 */
1894 NULL
, /* ExportSecurityContext */
1895 NULL
, /* ImportSecurityContextA */
1896 NULL
, /* AddCredentialsA */
1897 NULL
, /* Reserved8 */
1898 NULL
, /* QuerySecurityContextToken */
1899 ntlm_EncryptMessage
, /* EncryptMessage */
1900 ntlm_DecryptMessage
, /* DecryptMessage */
1901 NULL
, /* SetContextAttributesA */
1904 static const SecurityFunctionTableW ntlmTableW
= {
1906 NULL
, /* EnumerateSecurityPackagesW */
1907 ntlm_QueryCredentialsAttributesW
, /* QueryCredentialsAttributesW */
1908 ntlm_AcquireCredentialsHandleW
, /* AcquireCredentialsHandleW */
1909 ntlm_FreeCredentialsHandle
, /* FreeCredentialsHandle */
1910 NULL
, /* Reserved2 */
1911 ntlm_InitializeSecurityContextW
, /* InitializeSecurityContextW */
1912 ntlm_AcceptSecurityContext
, /* AcceptSecurityContext */
1913 ntlm_CompleteAuthToken
, /* CompleteAuthToken */
1914 ntlm_DeleteSecurityContext
, /* DeleteSecurityContext */
1915 NULL
, /* ApplyControlToken */
1916 ntlm_QueryContextAttributesW
, /* QueryContextAttributesW */
1917 ntlm_ImpersonateSecurityContext
, /* ImpersonateSecurityContext */
1918 ntlm_RevertSecurityContext
, /* RevertSecurityContext */
1919 ntlm_MakeSignature
, /* MakeSignature */
1920 ntlm_VerifySignature
, /* VerifySignature */
1921 FreeContextBuffer
, /* FreeContextBuffer */
1922 NULL
, /* QuerySecurityPackageInfoW */
1923 NULL
, /* Reserved3 */
1924 NULL
, /* Reserved4 */
1925 NULL
, /* ExportSecurityContext */
1926 NULL
, /* ImportSecurityContextW */
1927 NULL
, /* AddCredentialsW */
1928 NULL
, /* Reserved8 */
1929 NULL
, /* QuerySecurityContextToken */
1930 ntlm_EncryptMessage
, /* EncryptMessage */
1931 ntlm_DecryptMessage
, /* DecryptMessage */
1932 NULL
, /* SetContextAttributesW */
1935 #define NTLM_COMMENT \
1936 { 'N', 'T', 'L', 'M', ' ', \
1937 'S', 'e', 'c', 'u', 'r', 'i', 't', 'y', ' ', \
1938 'P', 'a', 'c', 'k', 'a', 'g', 'e', 0}
1940 static CHAR ntlm_comment_A
[] = NTLM_COMMENT
;
1941 static WCHAR ntlm_comment_W
[] = NTLM_COMMENT
;
1943 #define NTLM_NAME {'N', 'T', 'L', 'M', 0}
1945 static char ntlm_name_A
[] = NTLM_NAME
;
1946 static WCHAR ntlm_name_W
[] = NTLM_NAME
;
1948 /* According to Windows, NTLM has the following capabilities. */
1950 SECPKG_FLAG_INTEGRITY | \
1951 SECPKG_FLAG_PRIVACY | \
1952 SECPKG_FLAG_TOKEN_ONLY | \
1953 SECPKG_FLAG_CONNECTION | \
1954 SECPKG_FLAG_MULTI_REQUIRED | \
1955 SECPKG_FLAG_IMPERSONATION | \
1956 SECPKG_FLAG_ACCEPT_WIN32_NAME | \
1957 SECPKG_FLAG_READONLY_WITH_CHECKSUM)
1959 static const SecPkgInfoW infoW
= {
1968 static const SecPkgInfoA infoA
= {
1977 #define NEGO_COMMENT { 'M', 'i', 'c', 'r', 'o', 's', 'o', 'f', 't', ' ', \
1978 'P', 'a', 'c', 'k', 'a', 'g', 'e', ' ', \
1979 'N', 'e', 'g', 'o', 't', 'i', 'a', 't', 'o', 'r', 0}
1981 static CHAR nego_comment_A
[] = NEGO_COMMENT
;
1982 static WCHAR nego_comment_W
[] = NEGO_COMMENT
;
1984 #define NEGO_NAME {'N', 'e', 'g', 'o', 't', 'i', 'a', 't', 'e', 0}
1986 static CHAR nego_name_A
[] = NEGO_NAME
;
1987 static WCHAR nego_name_W
[] = NEGO_NAME
;
1989 #define NEGO_CAPS (\
1990 SECPKG_FLAG_INTEGRITY | \
1991 SECPKG_FLAG_PRIVACY | \
1992 SECPKG_FLAG_CONNECTION | \
1993 SECPKG_FLAG_MULTI_REQUIRED | \
1994 SECPKG_FLAG_EXTENDED_ERROR | \
1995 SECPKG_FLAG_IMPERSONATION | \
1996 SECPKG_FLAG_ACCEPT_WIN32_NAME | \
1997 SECPKG_FLAG_READONLY_WITH_CHECKSUM )
1999 /* Not used for now, just kept here for completeness sake. We need to use the
2000 * NTLM_MAX_BUF value. If the hack works, we might want to refactor the code a
2002 #define NEGO_MAX_TOKEN 12000
2004 static const SecPkgInfoW nego_infoW
= {
2007 RPC_C_AUTHN_GSS_NEGOTIATE
,
2013 static const SecPkgInfoA nego_infoA
= {
2016 RPC_C_AUTHN_GSS_NEGOTIATE
,
2022 void SECUR32_initNTLMSP(void)
2025 static CHAR version
[] = "--version";
2027 SEC_CHAR
*args
[] = {
2032 if(fork_helper(&helper
, ntlm_auth
, args
) != SEC_E_OK
)
2035 check_version(helper
);
2038 ((helper
->major
> MIN_NTLM_AUTH_MAJOR_VERSION
) ||
2039 (helper
->major
== MIN_NTLM_AUTH_MAJOR_VERSION
&&
2040 helper
->minor
> MIN_NTLM_AUTH_MINOR_VERSION
) ||
2041 (helper
->major
== MIN_NTLM_AUTH_MAJOR_VERSION
&&
2042 helper
->minor
== MIN_NTLM_AUTH_MINOR_VERSION
&&
2043 helper
->micro
>= MIN_NTLM_AUTH_MICRO_VERSION
)) )
2045 SecureProvider
*provider
= SECUR32_addProvider(&ntlmTableA
, &ntlmTableW
, NULL
);
2046 SecureProvider
*nego_provider
= SECUR32_addProvider(&ntlmTableA
, &ntlmTableW
, NULL
);
2048 SECUR32_addPackages(provider
, 1L, &infoA
, &infoW
);
2049 /* HACK: Also pretend this is the Negotiate provider */
2050 SECUR32_addPackages(nego_provider
, 1L, &nego_infoA
, &nego_infoW
);
2054 ERR_(winediag
)("%s was not found or is outdated. "
2055 "Make sure that ntlm_auth >= %d.%d.%d is in your path. "
2056 "Usually, you can find it in the winbind package of your distribution.\n",
2058 MIN_NTLM_AUTH_MAJOR_VERSION
,
2059 MIN_NTLM_AUTH_MINOR_VERSION
,
2060 MIN_NTLM_AUTH_MICRO_VERSION
);
2063 cleanup_helper(helper
);