2 Unix SMB/Netbios implementation.
4 handle NLTMSSP, server side
6 Copyright (C) Andrew Tridgell 2001
7 Copyright (C) Andrew Bartlett 2001-2003
8 Copyright (C) Andrew Bartlett 2005 (Updated from gensec).
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
27 static NTSTATUS
ntlmssp_client_initial(struct ntlmssp_state
*ntlmssp_state
,
28 DATA_BLOB reply
, DATA_BLOB
*next_request
);
29 static NTSTATUS
ntlmssp_server_negotiate(struct ntlmssp_state
*ntlmssp_state
,
30 const DATA_BLOB in
, DATA_BLOB
*out
);
31 static NTSTATUS
ntlmssp_client_challenge(struct ntlmssp_state
*ntlmssp_state
,
32 const DATA_BLOB reply
, DATA_BLOB
*next_request
);
33 static NTSTATUS
ntlmssp_server_auth(struct ntlmssp_state
*ntlmssp_state
,
34 const DATA_BLOB request
, DATA_BLOB
*reply
);
37 * Callbacks for NTLMSSP - for both client and server operating modes
41 static const struct ntlmssp_callbacks
{
42 enum NTLMSSP_ROLE role
;
43 enum NTLM_MESSAGE_TYPE ntlmssp_command
;
44 NTSTATUS (*fn
)(struct ntlmssp_state
*ntlmssp_state
,
45 DATA_BLOB in
, DATA_BLOB
*out
);
46 } ntlmssp_callbacks
[] = {
47 {NTLMSSP_CLIENT
, NTLMSSP_INITIAL
, ntlmssp_client_initial
},
48 {NTLMSSP_SERVER
, NTLMSSP_NEGOTIATE
, ntlmssp_server_negotiate
},
49 {NTLMSSP_CLIENT
, NTLMSSP_CHALLENGE
, ntlmssp_client_challenge
},
50 {NTLMSSP_SERVER
, NTLMSSP_AUTH
, ntlmssp_server_auth
},
51 {NTLMSSP_CLIENT
, NTLMSSP_UNKNOWN
, NULL
},
52 {NTLMSSP_SERVER
, NTLMSSP_UNKNOWN
, NULL
}
57 * Print out the NTLMSSP flags for debugging
58 * @param neg_flags The flags from the packet
61 void debug_ntlmssp_flags(uint32 neg_flags
)
63 DEBUG(3,("Got NTLMSSP neg_flags=0x%08x\n", neg_flags
));
65 if (neg_flags
& NTLMSSP_NEGOTIATE_UNICODE
)
66 DEBUGADD(4, (" NTLMSSP_NEGOTIATE_UNICODE\n"));
67 if (neg_flags
& NTLMSSP_NEGOTIATE_OEM
)
68 DEBUGADD(4, (" NTLMSSP_NEGOTIATE_OEM\n"));
69 if (neg_flags
& NTLMSSP_REQUEST_TARGET
)
70 DEBUGADD(4, (" NTLMSSP_REQUEST_TARGET\n"));
71 if (neg_flags
& NTLMSSP_NEGOTIATE_SIGN
)
72 DEBUGADD(4, (" NTLMSSP_NEGOTIATE_SIGN\n"));
73 if (neg_flags
& NTLMSSP_NEGOTIATE_SEAL
)
74 DEBUGADD(4, (" NTLMSSP_NEGOTIATE_SEAL\n"));
75 if (neg_flags
& NTLMSSP_NEGOTIATE_DATAGRAM_STYLE
)
76 DEBUGADD(4, (" NTLMSSP_NEGOTIATE_DATAGRAM_STYLE\n"));
77 if (neg_flags
& NTLMSSP_NEGOTIATE_LM_KEY
)
78 DEBUGADD(4, (" NTLMSSP_NEGOTIATE_LM_KEY\n"));
79 if (neg_flags
& NTLMSSP_NEGOTIATE_NETWARE
)
80 DEBUGADD(4, (" NTLMSSP_NEGOTIATE_NETWARE\n"));
81 if (neg_flags
& NTLMSSP_NEGOTIATE_NTLM
)
82 DEBUGADD(4, (" NTLMSSP_NEGOTIATE_NTLM\n"));
83 if (neg_flags
& NTLMSSP_NEGOTIATE_DOMAIN_SUPPLIED
)
84 DEBUGADD(4, (" NTLMSSP_NEGOTIATE_DOMAIN_SUPPLIED\n"));
85 if (neg_flags
& NTLMSSP_NEGOTIATE_WORKSTATION_SUPPLIED
)
86 DEBUGADD(4, (" NTLMSSP_NEGOTIATE_WORKSTATION_SUPPLIED\n"));
87 if (neg_flags
& NTLMSSP_NEGOTIATE_THIS_IS_LOCAL_CALL
)
88 DEBUGADD(4, (" NTLMSSP_NEGOTIATE_THIS_IS_LOCAL_CALL\n"));
89 if (neg_flags
& NTLMSSP_NEGOTIATE_ALWAYS_SIGN
)
90 DEBUGADD(4, (" NTLMSSP_NEGOTIATE_ALWAYS_SIGN\n"));
91 if (neg_flags
& NTLMSSP_CHAL_ACCEPT_RESPONSE
)
92 DEBUGADD(4, (" NTLMSSP_CHAL_ACCEPT_RESPONSE\n"));
93 if (neg_flags
& NTLMSSP_CHAL_NON_NT_SESSION_KEY
)
94 DEBUGADD(4, (" NTLMSSP_CHAL_NON_NT_SESSION_KEY\n"));
95 if (neg_flags
& NTLMSSP_NEGOTIATE_NTLM2
)
96 DEBUGADD(4, (" NTLMSSP_NEGOTIATE_NTLM2\n"));
97 if (neg_flags
& NTLMSSP_CHAL_TARGET_INFO
)
98 DEBUGADD(4, (" NTLMSSP_CHAL_TARGET_INFO\n"));
99 if (neg_flags
& NTLMSSP_NEGOTIATE_128
)
100 DEBUGADD(4, (" NTLMSSP_NEGOTIATE_128\n"));
101 if (neg_flags
& NTLMSSP_NEGOTIATE_KEY_EXCH
)
102 DEBUGADD(4, (" NTLMSSP_NEGOTIATE_KEY_EXCH\n"));
103 if (neg_flags
& NTLMSSP_NEGOTIATE_56
)
104 DEBUGADD(4, (" NTLMSSP_NEGOTIATE_56\n"));
108 * Default challenge generation code.
112 static const uint8
*get_challenge(const struct ntlmssp_state
*ntlmssp_state
)
114 static uchar chal
[8];
115 generate_random_buffer(chal
, sizeof(chal
));
121 * Default 'we can set the challenge to anything we like' implementation
125 static BOOL
may_set_challenge(const struct ntlmssp_state
*ntlmssp_state
)
131 * Default 'we can set the challenge to anything we like' implementation
133 * Does not actually do anything, as the value is always in the structure anyway.
137 static NTSTATUS
set_challenge(struct ntlmssp_state
*ntlmssp_state
, DATA_BLOB
*challenge
)
139 SMB_ASSERT(challenge
->length
== 8);
144 * Set a username on an NTLMSSP context - ensures it is talloc()ed
148 NTSTATUS
ntlmssp_set_username(NTLMSSP_STATE
*ntlmssp_state
, const char *user
)
150 ntlmssp_state
->user
= talloc_strdup(ntlmssp_state
->mem_ctx
, user
? user
: "" );
151 if (!ntlmssp_state
->user
) {
152 return NT_STATUS_NO_MEMORY
;
158 * Store NT and LM hashes on an NTLMSSP context - ensures they are talloc()ed
161 NTSTATUS
ntlmssp_set_hashes(NTLMSSP_STATE
*ntlmssp_state
,
162 const unsigned char lm_hash
[16],
163 const unsigned char nt_hash
[16])
165 ntlmssp_state
->lm_hash
= (unsigned char *)
166 TALLOC_MEMDUP(ntlmssp_state
->mem_ctx
, lm_hash
, 16);
167 ntlmssp_state
->nt_hash
= (unsigned char *)
168 TALLOC_MEMDUP(ntlmssp_state
->mem_ctx
, nt_hash
, 16);
169 if (!ntlmssp_state
->lm_hash
|| !ntlmssp_state
->nt_hash
) {
170 TALLOC_FREE(ntlmssp_state
->lm_hash
);
171 TALLOC_FREE(ntlmssp_state
->nt_hash
);
172 return NT_STATUS_NO_MEMORY
;
178 * Converts a password to the hashes on an NTLMSSP context.
181 NTSTATUS
ntlmssp_set_password(NTLMSSP_STATE
*ntlmssp_state
, const char *password
)
184 ntlmssp_state
->lm_hash
= NULL
;
185 ntlmssp_state
->nt_hash
= NULL
;
187 unsigned char lm_hash
[16];
188 unsigned char nt_hash
[16];
190 E_deshash(password
, lm_hash
);
191 E_md4hash(password
, nt_hash
);
192 return ntlmssp_set_hashes(ntlmssp_state
, lm_hash
, nt_hash
);
198 * Set a domain on an NTLMSSP context - ensures it is talloc()ed
201 NTSTATUS
ntlmssp_set_domain(NTLMSSP_STATE
*ntlmssp_state
, const char *domain
)
203 ntlmssp_state
->domain
= talloc_strdup(ntlmssp_state
->mem_ctx
, domain
? domain
: "" );
204 if (!ntlmssp_state
->domain
) {
205 return NT_STATUS_NO_MEMORY
;
211 * Set a workstation on an NTLMSSP context - ensures it is talloc()ed
214 NTSTATUS
ntlmssp_set_workstation(NTLMSSP_STATE
*ntlmssp_state
, const char *workstation
)
216 ntlmssp_state
->workstation
= talloc_strdup(ntlmssp_state
->mem_ctx
, workstation
);
217 if (!ntlmssp_state
->workstation
) {
218 return NT_STATUS_NO_MEMORY
;
224 * Store a DATA_BLOB containing an NTLMSSP response, for use later.
225 * This copies the data blob
228 NTSTATUS
ntlmssp_store_response(NTLMSSP_STATE
*ntlmssp_state
,
231 ntlmssp_state
->stored_response
= data_blob_talloc(ntlmssp_state
->mem_ctx
,
232 response
.data
, response
.length
);
237 * Request features for the NTLMSSP negotiation
239 * @param ntlmssp_state NTLMSSP state
240 * @param feature_list List of space seperated features requested from NTLMSSP.
242 void ntlmssp_want_feature_list(NTLMSSP_STATE
*ntlmssp_state
, char *feature_list
)
245 * We need to set this to allow a later SetPassword
246 * via the SAMR pipe to succeed. Strange.... We could
247 * also add NTLMSSP_NEGOTIATE_SEAL here. JRA.
249 if (in_list("NTLMSSP_FEATURE_SESSION_KEY", feature_list
, True
)) {
250 ntlmssp_state
->neg_flags
|= NTLMSSP_NEGOTIATE_SIGN
;
252 if (in_list("NTLMSSP_FEATURE_SIGN", feature_list
, True
)) {
253 ntlmssp_state
->neg_flags
|= NTLMSSP_NEGOTIATE_SIGN
;
255 if(in_list("NTLMSSP_FEATURE_SEAL", feature_list
, True
)) {
256 ntlmssp_state
->neg_flags
|= NTLMSSP_NEGOTIATE_SEAL
;
261 * Request a feature for the NTLMSSP negotiation
263 * @param ntlmssp_state NTLMSSP state
264 * @param feature Bit flag specifying the requested feature
266 void ntlmssp_want_feature(NTLMSSP_STATE
*ntlmssp_state
, uint32 feature
)
268 /* As per JRA's comment above */
269 if (feature
& NTLMSSP_FEATURE_SESSION_KEY
) {
270 ntlmssp_state
->neg_flags
|= NTLMSSP_NEGOTIATE_SIGN
;
272 if (feature
& NTLMSSP_FEATURE_SIGN
) {
273 ntlmssp_state
->neg_flags
|= NTLMSSP_NEGOTIATE_SIGN
;
275 if (feature
& NTLMSSP_FEATURE_SEAL
) {
276 ntlmssp_state
->neg_flags
|= NTLMSSP_NEGOTIATE_SEAL
;
281 * Next state function for the NTLMSSP state machine
283 * @param ntlmssp_state NTLMSSP State
284 * @param in The packet in from the NTLMSSP partner, as a DATA_BLOB
285 * @param out The reply, as an allocated DATA_BLOB, caller to free.
286 * @return Errors, NT_STATUS_MORE_PROCESSING_REQUIRED or NT_STATUS_OK.
289 NTSTATUS
ntlmssp_update(NTLMSSP_STATE
*ntlmssp_state
,
290 const DATA_BLOB in
, DATA_BLOB
*out
)
293 uint32 ntlmssp_command
;
296 if (ntlmssp_state
->expected_state
== NTLMSSP_DONE
) {
297 /* Called update after negotiations finished. */
298 DEBUG(1, ("Called NTLMSSP after state machine was 'done'\n"));
299 return NT_STATUS_INVALID_PARAMETER
;
302 *out
= data_blob(NULL
, 0);
304 if (!in
.length
&& ntlmssp_state
->stored_response
.length
) {
305 input
= ntlmssp_state
->stored_response
;
307 /* we only want to read the stored response once - overwrite it */
308 ntlmssp_state
->stored_response
= data_blob(NULL
, 0);
314 switch (ntlmssp_state
->role
) {
316 ntlmssp_command
= NTLMSSP_INITIAL
;
319 /* 'datagram' mode - no neg packet */
320 ntlmssp_command
= NTLMSSP_NEGOTIATE
;
324 if (!msrpc_parse(&input
, "Cd",
327 DEBUG(1, ("Failed to parse NTLMSSP packet, could not extract NTLMSSP command\n"));
328 dump_data(2, (const char *)input
.data
, input
.length
);
329 return NT_STATUS_INVALID_PARAMETER
;
333 if (ntlmssp_command
!= ntlmssp_state
->expected_state
) {
334 DEBUG(1, ("got NTLMSSP command %u, expected %u\n", ntlmssp_command
, ntlmssp_state
->expected_state
));
335 return NT_STATUS_INVALID_PARAMETER
;
338 for (i
=0; ntlmssp_callbacks
[i
].fn
; i
++) {
339 if (ntlmssp_callbacks
[i
].role
== ntlmssp_state
->role
340 && ntlmssp_callbacks
[i
].ntlmssp_command
== ntlmssp_command
) {
341 return ntlmssp_callbacks
[i
].fn(ntlmssp_state
, input
, out
);
345 DEBUG(1, ("failed to find NTLMSSP callback for NTLMSSP mode %u, command %u\n",
346 ntlmssp_state
->role
, ntlmssp_command
));
348 return NT_STATUS_INVALID_PARAMETER
;
352 * End an NTLMSSP state machine
354 * @param ntlmssp_state NTLMSSP State, free()ed by this function
357 void ntlmssp_end(NTLMSSP_STATE
**ntlmssp_state
)
359 TALLOC_CTX
*mem_ctx
= (*ntlmssp_state
)->mem_ctx
;
361 (*ntlmssp_state
)->ref_count
--;
363 if ((*ntlmssp_state
)->ref_count
== 0) {
364 data_blob_free(&(*ntlmssp_state
)->chal
);
365 data_blob_free(&(*ntlmssp_state
)->lm_resp
);
366 data_blob_free(&(*ntlmssp_state
)->nt_resp
);
368 talloc_destroy(mem_ctx
);
371 *ntlmssp_state
= NULL
;
376 * Determine correct target name flags for reply, given server role
377 * and negotiated flags
379 * @param ntlmssp_state NTLMSSP State
380 * @param neg_flags The flags from the packet
381 * @param chal_flags The flags to be set in the reply packet
382 * @return The 'target name' string.
385 static const char *ntlmssp_target_name(struct ntlmssp_state
*ntlmssp_state
,
386 uint32 neg_flags
, uint32
*chal_flags
)
388 if (neg_flags
& NTLMSSP_REQUEST_TARGET
) {
389 *chal_flags
|= NTLMSSP_CHAL_TARGET_INFO
;
390 *chal_flags
|= NTLMSSP_REQUEST_TARGET
;
391 if (ntlmssp_state
->server_role
== ROLE_STANDALONE
) {
392 *chal_flags
|= NTLMSSP_TARGET_TYPE_SERVER
;
393 return ntlmssp_state
->get_global_myname();
395 *chal_flags
|= NTLMSSP_TARGET_TYPE_DOMAIN
;
396 return ntlmssp_state
->get_domain();
403 static void ntlmssp_handle_neg_flags(struct ntlmssp_state
*ntlmssp_state
,
404 uint32 neg_flags
, BOOL allow_lm
) {
405 if (neg_flags
& NTLMSSP_NEGOTIATE_UNICODE
) {
406 ntlmssp_state
->neg_flags
|= NTLMSSP_NEGOTIATE_UNICODE
;
407 ntlmssp_state
->neg_flags
&= ~NTLMSSP_NEGOTIATE_OEM
;
408 ntlmssp_state
->unicode
= True
;
410 ntlmssp_state
->neg_flags
&= ~NTLMSSP_NEGOTIATE_UNICODE
;
411 ntlmssp_state
->neg_flags
|= NTLMSSP_NEGOTIATE_OEM
;
412 ntlmssp_state
->unicode
= False
;
415 if ((neg_flags
& NTLMSSP_NEGOTIATE_LM_KEY
) && allow_lm
) {
416 /* other end forcing us to use LM */
417 ntlmssp_state
->neg_flags
|= NTLMSSP_NEGOTIATE_LM_KEY
;
418 ntlmssp_state
->use_ntlmv2
= False
;
420 ntlmssp_state
->neg_flags
&= ~NTLMSSP_NEGOTIATE_LM_KEY
;
423 if (neg_flags
& NTLMSSP_NEGOTIATE_ALWAYS_SIGN
) {
424 ntlmssp_state
->neg_flags
|= NTLMSSP_NEGOTIATE_ALWAYS_SIGN
;
427 if (!(neg_flags
& NTLMSSP_NEGOTIATE_NTLM2
)) {
428 ntlmssp_state
->neg_flags
&= ~NTLMSSP_NEGOTIATE_NTLM2
;
431 if (!(neg_flags
& NTLMSSP_NEGOTIATE_128
)) {
432 ntlmssp_state
->neg_flags
&= ~NTLMSSP_NEGOTIATE_128
;
435 if (!(neg_flags
& NTLMSSP_NEGOTIATE_56
)) {
436 ntlmssp_state
->neg_flags
&= ~NTLMSSP_NEGOTIATE_56
;
439 if (!(neg_flags
& NTLMSSP_NEGOTIATE_KEY_EXCH
)) {
440 ntlmssp_state
->neg_flags
&= ~NTLMSSP_NEGOTIATE_KEY_EXCH
;
443 if (!(neg_flags
& NTLMSSP_NEGOTIATE_SIGN
)) {
444 ntlmssp_state
->neg_flags
&= ~NTLMSSP_NEGOTIATE_SIGN
;
447 if (!(neg_flags
& NTLMSSP_NEGOTIATE_SEAL
)) {
448 ntlmssp_state
->neg_flags
&= ~NTLMSSP_NEGOTIATE_SEAL
;
451 /* Woop Woop - unknown flag for Windows compatibility...
452 What does this really do ? JRA. */
453 if (!(neg_flags
& NTLMSSP_UNKNOWN_02000000
)) {
454 ntlmssp_state
->neg_flags
&= ~NTLMSSP_UNKNOWN_02000000
;
457 if ((neg_flags
& NTLMSSP_REQUEST_TARGET
)) {
458 ntlmssp_state
->neg_flags
|= NTLMSSP_REQUEST_TARGET
;
463 Weaken NTLMSSP keys to cope with down-level clients and servers.
465 We probably should have some parameters to control this, but as
466 it only occours for LM_KEY connections, and this is controlled
467 by the client lanman auth/lanman auth parameters, it isn't too bad.
470 DATA_BLOB
ntlmssp_weaken_keys(NTLMSSP_STATE
*ntlmssp_state
, TALLOC_CTX
*mem_ctx
)
472 DATA_BLOB weakened_key
= data_blob_talloc(mem_ctx
,
473 ntlmssp_state
->session_key
.data
,
474 ntlmssp_state
->session_key
.length
);
476 /* Nothing to weaken. We certainly don't want to 'extend' the length... */
477 if (weakened_key
.length
< 16) {
478 /* perhaps there was no key? */
482 /* Key weakening not performed on the master key for NTLM2
483 and does not occour for NTLM1. Therefore we only need
484 to do this for the LM_KEY.
487 if (ntlmssp_state
->neg_flags
& NTLMSSP_NEGOTIATE_LM_KEY
) {
488 /* LM key doesn't support 128 bit crypto, so this is
489 * the best we can do. If you negotiate 128 bit, but
490 * not 56, you end up with 40 bit... */
491 if (ntlmssp_state
->neg_flags
& NTLMSSP_NEGOTIATE_56
) {
492 weakened_key
.data
[7] = 0xa0;
493 } else { /* forty bits */
494 weakened_key
.data
[5] = 0xe5;
495 weakened_key
.data
[6] = 0x38;
496 weakened_key
.data
[7] = 0xb0;
498 weakened_key
.length
= 8;
504 * Next state function for the Negotiate packet
506 * @param ntlmssp_state NTLMSSP State
507 * @param request The request, as a DATA_BLOB
508 * @param request The reply, as an allocated DATA_BLOB, caller to free.
509 * @return Errors or MORE_PROCESSING_REQUIRED if a reply is sent.
512 static NTSTATUS
ntlmssp_server_negotiate(struct ntlmssp_state
*ntlmssp_state
,
513 const DATA_BLOB request
, DATA_BLOB
*reply
)
515 DATA_BLOB struct_blob
;
516 fstring dnsname
, dnsdomname
;
517 uint32 neg_flags
= 0;
518 uint32 ntlmssp_command
, chal_flags
;
519 const uint8
*cryptkey
;
520 const char *target_name
;
522 /* parse the NTLMSSP packet */
524 file_save("ntlmssp_negotiate.dat", request
.data
, request
.length
);
527 if (request
.length
) {
528 if ((request
.length
< 16) || !msrpc_parse(&request
, "Cdd",
532 DEBUG(1, ("ntlmssp_server_negotiate: failed to parse NTLMSSP Negotiate of length %u\n",
533 (unsigned int)request
.length
));
534 dump_data(2, (const char *)request
.data
, request
.length
);
535 return NT_STATUS_INVALID_PARAMETER
;
537 debug_ntlmssp_flags(neg_flags
);
540 ntlmssp_handle_neg_flags(ntlmssp_state
, neg_flags
, lp_lanman_auth());
542 /* Ask our caller what challenge they would like in the packet */
543 cryptkey
= ntlmssp_state
->get_challenge(ntlmssp_state
);
545 /* Check if we may set the challenge */
546 if (!ntlmssp_state
->may_set_challenge(ntlmssp_state
)) {
547 ntlmssp_state
->neg_flags
&= ~NTLMSSP_NEGOTIATE_NTLM2
;
550 /* The flags we send back are not just the negotiated flags,
551 * they are also 'what is in this packet'. Therfore, we
552 * operate on 'chal_flags' from here on
555 chal_flags
= ntlmssp_state
->neg_flags
;
557 /* get the right name to fill in as 'target' */
558 target_name
= ntlmssp_target_name(ntlmssp_state
,
559 neg_flags
, &chal_flags
);
560 if (target_name
== NULL
)
561 return NT_STATUS_INVALID_PARAMETER
;
563 ntlmssp_state
->chal
= data_blob_talloc(ntlmssp_state
->mem_ctx
, cryptkey
, 8);
564 ntlmssp_state
->internal_chal
= data_blob_talloc(ntlmssp_state
->mem_ctx
, cryptkey
, 8);
567 /* This should be a 'netbios domain -> DNS domain' mapping */
568 dnsdomname
[0] = '\0';
569 get_mydnsdomname(dnsdomname
);
570 strlower_m(dnsdomname
);
573 get_mydnsfullname(dnsname
);
575 /* This creates the 'blob' of names that appears at the end of the packet */
576 if (chal_flags
& NTLMSSP_CHAL_TARGET_INFO
)
578 msrpc_gen(&struct_blob
, "aaaaa",
579 NTLMSSP_NAME_TYPE_DOMAIN
, target_name
,
580 NTLMSSP_NAME_TYPE_SERVER
, ntlmssp_state
->get_global_myname(),
581 NTLMSSP_NAME_TYPE_DOMAIN_DNS
, dnsdomname
,
582 NTLMSSP_NAME_TYPE_SERVER_DNS
, dnsname
,
585 struct_blob
= data_blob(NULL
, 0);
589 /* Marshel the packet in the right format, be it unicode or ASCII */
590 const char *gen_string
;
591 if (ntlmssp_state
->unicode
) {
592 gen_string
= "CdUdbddB";
594 gen_string
= "CdAdbddB";
597 msrpc_gen(reply
, gen_string
,
604 struct_blob
.data
, struct_blob
.length
);
607 data_blob_free(&struct_blob
);
609 ntlmssp_state
->expected_state
= NTLMSSP_AUTH
;
611 return NT_STATUS_MORE_PROCESSING_REQUIRED
;
615 * Next state function for the Authenticate packet
617 * @param ntlmssp_state NTLMSSP State
618 * @param request The request, as a DATA_BLOB
619 * @param request The reply, as an allocated DATA_BLOB, caller to free.
620 * @return Errors or NT_STATUS_OK.
623 static NTSTATUS
ntlmssp_server_auth(struct ntlmssp_state
*ntlmssp_state
,
624 const DATA_BLOB request
, DATA_BLOB
*reply
)
626 DATA_BLOB encrypted_session_key
= data_blob(NULL
, 0);
627 DATA_BLOB user_session_key
= data_blob(NULL
, 0);
628 DATA_BLOB lm_session_key
= data_blob(NULL
, 0);
629 DATA_BLOB session_key
= data_blob(NULL
, 0);
630 uint32 ntlmssp_command
, auth_flags
;
631 NTSTATUS nt_status
= NT_STATUS_OK
;
634 BOOL doing_ntlm2
= False
;
636 uchar session_nonce
[16];
637 uchar session_nonce_hash
[16];
639 const char *parse_string
;
642 char *workstation
= NULL
;
644 /* parse the NTLMSSP packet */
645 *reply
= data_blob(NULL
, 0);
648 file_save("ntlmssp_auth.dat", request
.data
, request
.length
);
651 if (ntlmssp_state
->unicode
) {
652 parse_string
= "CdBBUUUBd";
654 parse_string
= "CdBBAAABd";
657 data_blob_free(&ntlmssp_state
->lm_resp
);
658 data_blob_free(&ntlmssp_state
->nt_resp
);
660 ntlmssp_state
->user
= NULL
;
661 ntlmssp_state
->domain
= NULL
;
662 ntlmssp_state
->workstation
= NULL
;
664 /* now the NTLMSSP encoded auth hashes */
665 if (!msrpc_parse(&request
, parse_string
,
668 &ntlmssp_state
->lm_resp
,
669 &ntlmssp_state
->nt_resp
,
673 &encrypted_session_key
,
677 SAFE_FREE(workstation
);
678 data_blob_free(&encrypted_session_key
);
681 /* Try again with a shorter string (Win9X truncates this packet) */
682 if (ntlmssp_state
->unicode
) {
683 parse_string
= "CdBBUUU";
685 parse_string
= "CdBBAAA";
688 /* now the NTLMSSP encoded auth hashes */
689 if (!msrpc_parse(&request
, parse_string
,
692 &ntlmssp_state
->lm_resp
,
693 &ntlmssp_state
->nt_resp
,
697 DEBUG(1, ("ntlmssp_server_auth: failed to parse NTLMSSP (tried both formats):\n"));
698 dump_data(2, (const char *)request
.data
, request
.length
);
701 SAFE_FREE(workstation
);
703 return NT_STATUS_INVALID_PARAMETER
;
708 ntlmssp_handle_neg_flags(ntlmssp_state
, auth_flags
, lp_lanman_auth());
710 if (!NT_STATUS_IS_OK(nt_status
= ntlmssp_set_domain(ntlmssp_state
, domain
))) {
713 SAFE_FREE(workstation
);
714 data_blob_free(&encrypted_session_key
);
718 if (!NT_STATUS_IS_OK(nt_status
= ntlmssp_set_username(ntlmssp_state
, user
))) {
721 SAFE_FREE(workstation
);
722 data_blob_free(&encrypted_session_key
);
726 if (!NT_STATUS_IS_OK(nt_status
= ntlmssp_set_workstation(ntlmssp_state
, workstation
))) {
729 SAFE_FREE(workstation
);
730 data_blob_free(&encrypted_session_key
);
736 SAFE_FREE(workstation
);
738 DEBUG(3,("Got user=[%s] domain=[%s] workstation=[%s] len1=%lu len2=%lu\n",
739 ntlmssp_state
->user
, ntlmssp_state
->domain
, ntlmssp_state
->workstation
, (unsigned long)ntlmssp_state
->lm_resp
.length
, (unsigned long)ntlmssp_state
->nt_resp
.length
));
742 file_save("nthash1.dat", &ntlmssp_state
->nt_resp
.data
, &ntlmssp_state
->nt_resp
.length
);
743 file_save("lmhash1.dat", &ntlmssp_state
->lm_resp
.data
, &ntlmssp_state
->lm_resp
.length
);
746 /* NTLM2 uses a 'challenge' that is made of up both the server challenge, and a
749 However, the NTLM2 flag may still be set for the real NTLMv2 logins, be careful.
751 if (ntlmssp_state
->neg_flags
& NTLMSSP_NEGOTIATE_NTLM2
) {
752 if (ntlmssp_state
->nt_resp
.length
== 24 && ntlmssp_state
->lm_resp
.length
== 24) {
753 struct MD5Context md5_session_nonce_ctx
;
754 SMB_ASSERT(ntlmssp_state
->internal_chal
.data
&& ntlmssp_state
->internal_chal
.length
== 8);
758 memcpy(session_nonce
, ntlmssp_state
->internal_chal
.data
, 8);
759 memcpy(&session_nonce
[8], ntlmssp_state
->lm_resp
.data
, 8);
761 MD5Init(&md5_session_nonce_ctx
);
762 MD5Update(&md5_session_nonce_ctx
, session_nonce
, 16);
763 MD5Final(session_nonce_hash
, &md5_session_nonce_ctx
);
765 ntlmssp_state
->chal
= data_blob_talloc(ntlmssp_state
->mem_ctx
, session_nonce_hash
, 8);
767 /* LM response is no longer useful */
768 data_blob_free(&ntlmssp_state
->lm_resp
);
770 /* We changed the effective challenge - set it */
771 if (!NT_STATUS_IS_OK(nt_status
= ntlmssp_state
->set_challenge(ntlmssp_state
, &ntlmssp_state
->chal
))) {
772 data_blob_free(&encrypted_session_key
);
776 /* LM Key is incompatible. */
777 ntlmssp_state
->neg_flags
&= ~NTLMSSP_NEGOTIATE_LM_KEY
;
782 * Note we don't check here for NTLMv2 auth settings. If NTLMv2 auth
783 * is required (by "ntlm auth = no" and "lm auth = no" being set in the
784 * smb.conf file) and no NTLMv2 response was sent then the password check
785 * will fail here. JRA.
788 /* Finally, actually ask if the password is OK */
790 if (!NT_STATUS_IS_OK(nt_status
= ntlmssp_state
->check_password(ntlmssp_state
,
791 &user_session_key
, &lm_session_key
))) {
792 data_blob_free(&encrypted_session_key
);
796 dump_data_pw("NT session key:\n", user_session_key
.data
, user_session_key
.length
);
797 dump_data_pw("LM first-8:\n", lm_session_key
.data
, lm_session_key
.length
);
799 /* Handle the different session key derivation for NTLM2 */
801 if (user_session_key
.data
&& user_session_key
.length
== 16) {
802 session_key
= data_blob_talloc(ntlmssp_state
->mem_ctx
, NULL
, 16);
803 hmac_md5(user_session_key
.data
, session_nonce
,
804 sizeof(session_nonce
), session_key
.data
);
805 DEBUG(10,("ntlmssp_server_auth: Created NTLM2 session key.\n"));
806 dump_data_pw("NTLM2 session key:\n", session_key
.data
, session_key
.length
);
809 DEBUG(10,("ntlmssp_server_auth: Failed to create NTLM2 session key.\n"));
810 session_key
= data_blob(NULL
, 0);
812 } else if (ntlmssp_state
->neg_flags
& NTLMSSP_NEGOTIATE_LM_KEY
) {
813 if (lm_session_key
.data
&& lm_session_key
.length
>= 8) {
814 if (ntlmssp_state
->lm_resp
.data
&& ntlmssp_state
->lm_resp
.length
== 24) {
815 session_key
= data_blob_talloc(ntlmssp_state
->mem_ctx
, NULL
, 16);
816 SMBsesskeygen_lm_sess_key(lm_session_key
.data
, ntlmssp_state
->lm_resp
.data
,
818 DEBUG(10,("ntlmssp_server_auth: Created NTLM session key.\n"));
819 dump_data_pw("LM session key:\n", session_key
.data
, session_key
.length
);
821 /* use the key unmodified - it's
822 * probably a NULL key from the guest
824 session_key
= lm_session_key
;
827 DEBUG(10,("ntlmssp_server_auth: Failed to create NTLM session key.\n"));
828 session_key
= data_blob(NULL
, 0);
830 } else if (user_session_key
.data
) {
831 session_key
= user_session_key
;
832 DEBUG(10,("ntlmssp_server_auth: Using unmodified nt session key.\n"));
833 dump_data_pw("unmodified session key:\n", session_key
.data
, session_key
.length
);
834 } else if (lm_session_key
.data
) {
835 session_key
= lm_session_key
;
836 DEBUG(10,("ntlmssp_server_auth: Using unmodified lm session key.\n"));
837 dump_data_pw("unmodified session key:\n", session_key
.data
, session_key
.length
);
839 DEBUG(10,("ntlmssp_server_auth: Failed to create unmodified session key.\n"));
840 session_key
= data_blob(NULL
, 0);
843 /* With KEY_EXCH, the client supplies the proposed session key,
844 but encrypts it with the long-term key */
845 if (ntlmssp_state
->neg_flags
& NTLMSSP_NEGOTIATE_KEY_EXCH
) {
846 if (!encrypted_session_key
.data
|| encrypted_session_key
.length
!= 16) {
847 data_blob_free(&encrypted_session_key
);
848 DEBUG(1, ("Client-supplied KEY_EXCH session key was of invalid length (%u)!\n",
849 (unsigned int)encrypted_session_key
.length
));
850 return NT_STATUS_INVALID_PARAMETER
;
851 } else if (!session_key
.data
|| session_key
.length
!= 16) {
852 DEBUG(5, ("server session key is invalid (len == %u), cannot do KEY_EXCH!\n",
853 (unsigned int)session_key
.length
));
854 ntlmssp_state
->session_key
= session_key
;
856 dump_data_pw("KEY_EXCH session key (enc):\n", encrypted_session_key
.data
, encrypted_session_key
.length
);
857 SamOEMhash(encrypted_session_key
.data
,
859 encrypted_session_key
.length
);
860 ntlmssp_state
->session_key
= data_blob_talloc(ntlmssp_state
->mem_ctx
,
861 encrypted_session_key
.data
,
862 encrypted_session_key
.length
);
863 dump_data_pw("KEY_EXCH session key:\n", encrypted_session_key
.data
,
864 encrypted_session_key
.length
);
867 ntlmssp_state
->session_key
= session_key
;
870 if (!NT_STATUS_IS_OK(nt_status
)) {
871 ntlmssp_state
->session_key
= data_blob(NULL
, 0);
872 } else if (ntlmssp_state
->session_key
.length
) {
873 nt_status
= ntlmssp_sign_init(ntlmssp_state
);
876 data_blob_free(&encrypted_session_key
);
878 /* Only one authentication allowed per server state. */
879 ntlmssp_state
->expected_state
= NTLMSSP_DONE
;
885 * Create an NTLMSSP state machine
887 * @param ntlmssp_state NTLMSSP State, allocated by this function
890 NTSTATUS
ntlmssp_server_start(NTLMSSP_STATE
**ntlmssp_state
)
894 mem_ctx
= talloc_init("NTLMSSP context");
896 *ntlmssp_state
= TALLOC_ZERO_P(mem_ctx
, NTLMSSP_STATE
);
897 if (!*ntlmssp_state
) {
898 DEBUG(0,("ntlmssp_server_start: talloc failed!\n"));
899 talloc_destroy(mem_ctx
);
900 return NT_STATUS_NO_MEMORY
;
903 (*ntlmssp_state
)->role
= NTLMSSP_SERVER
;
905 (*ntlmssp_state
)->mem_ctx
= mem_ctx
;
906 (*ntlmssp_state
)->get_challenge
= get_challenge
;
907 (*ntlmssp_state
)->set_challenge
= set_challenge
;
908 (*ntlmssp_state
)->may_set_challenge
= may_set_challenge
;
910 (*ntlmssp_state
)->get_global_myname
= global_myname
;
911 (*ntlmssp_state
)->get_domain
= lp_workgroup
;
912 (*ntlmssp_state
)->server_role
= ROLE_DOMAIN_MEMBER
; /* a good default */
914 (*ntlmssp_state
)->expected_state
= NTLMSSP_NEGOTIATE
;
916 (*ntlmssp_state
)->ref_count
= 1;
918 (*ntlmssp_state
)->neg_flags
=
919 NTLMSSP_NEGOTIATE_128
|
920 NTLMSSP_NEGOTIATE_56
|
921 NTLMSSP_UNKNOWN_02000000
|
922 NTLMSSP_NEGOTIATE_NTLM
|
923 NTLMSSP_NEGOTIATE_NTLM2
|
924 NTLMSSP_NEGOTIATE_KEY_EXCH
|
925 NTLMSSP_NEGOTIATE_SIGN
|
926 NTLMSSP_NEGOTIATE_SEAL
;
931 /*********************************************************************
933 *********************************************************************/
936 * Next state function for the Initial packet
938 * @param ntlmssp_state NTLMSSP State
939 * @param request The request, as a DATA_BLOB. reply.data must be NULL
940 * @param request The reply, as an allocated DATA_BLOB, caller to free.
941 * @return Errors or NT_STATUS_OK.
944 static NTSTATUS
ntlmssp_client_initial(struct ntlmssp_state
*ntlmssp_state
,
945 DATA_BLOB reply
, DATA_BLOB
*next_request
)
947 if (ntlmssp_state
->unicode
) {
948 ntlmssp_state
->neg_flags
|= NTLMSSP_NEGOTIATE_UNICODE
;
950 ntlmssp_state
->neg_flags
|= NTLMSSP_NEGOTIATE_OEM
;
953 if (ntlmssp_state
->use_ntlmv2
) {
954 ntlmssp_state
->neg_flags
|= NTLMSSP_NEGOTIATE_NTLM2
;
957 /* generate the ntlmssp negotiate packet */
958 msrpc_gen(next_request
, "CddAA",
961 ntlmssp_state
->neg_flags
,
962 ntlmssp_state
->get_domain(),
963 ntlmssp_state
->get_global_myname());
965 ntlmssp_state
->expected_state
= NTLMSSP_CHALLENGE
;
967 return NT_STATUS_MORE_PROCESSING_REQUIRED
;
971 * Next state function for the Challenge Packet. Generate an auth packet.
973 * @param ntlmssp_state NTLMSSP State
974 * @param request The request, as a DATA_BLOB. reply.data must be NULL
975 * @param request The reply, as an allocated DATA_BLOB, caller to free.
976 * @return Errors or NT_STATUS_OK.
979 static NTSTATUS
ntlmssp_client_challenge(struct ntlmssp_state
*ntlmssp_state
,
980 const DATA_BLOB reply
, DATA_BLOB
*next_request
)
982 uint32 chal_flags
, ntlmssp_command
, unkn1
, unkn2
;
983 DATA_BLOB server_domain_blob
;
984 DATA_BLOB challenge_blob
;
985 DATA_BLOB struct_blob
= data_blob(NULL
, 0);
987 const char *chal_parse_string
;
988 const char *auth_gen_string
;
989 DATA_BLOB lm_response
= data_blob(NULL
, 0);
990 DATA_BLOB nt_response
= data_blob(NULL
, 0);
991 DATA_BLOB session_key
= data_blob(NULL
, 0);
992 DATA_BLOB encrypted_session_key
= data_blob(NULL
, 0);
993 NTSTATUS nt_status
= NT_STATUS_OK
;
995 if (!msrpc_parse(&reply
, "CdBd",
1000 DEBUG(1, ("Failed to parse the NTLMSSP Challenge: (#1)\n"));
1001 dump_data(2, (const char *)reply
.data
, reply
.length
);
1003 return NT_STATUS_INVALID_PARAMETER
;
1006 data_blob_free(&server_domain_blob
);
1008 DEBUG(3, ("Got challenge flags:\n"));
1009 debug_ntlmssp_flags(chal_flags
);
1011 ntlmssp_handle_neg_flags(ntlmssp_state
, chal_flags
, lp_client_lanman_auth());
1013 if (ntlmssp_state
->unicode
) {
1014 if (chal_flags
& NTLMSSP_CHAL_TARGET_INFO
) {
1015 chal_parse_string
= "CdUdbddB";
1017 chal_parse_string
= "CdUdbdd";
1019 auth_gen_string
= "CdBBUUUBd";
1021 if (chal_flags
& NTLMSSP_CHAL_TARGET_INFO
) {
1022 chal_parse_string
= "CdAdbddB";
1024 chal_parse_string
= "CdAdbdd";
1027 auth_gen_string
= "CdBBAAABd";
1030 DEBUG(3, ("NTLMSSP: Set final flags:\n"));
1031 debug_ntlmssp_flags(ntlmssp_state
->neg_flags
);
1033 if (!msrpc_parse(&reply
, chal_parse_string
,
1041 DEBUG(1, ("Failed to parse the NTLMSSP Challenge: (#2)\n"));
1042 dump_data(2, (const char *)reply
.data
, reply
.length
);
1043 return NT_STATUS_INVALID_PARAMETER
;
1046 ntlmssp_state
->server_domain
= talloc_strdup(ntlmssp_state
->mem_ctx
,
1049 SAFE_FREE(server_domain
);
1050 if (challenge_blob
.length
!= 8) {
1051 data_blob_free(&struct_blob
);
1052 return NT_STATUS_INVALID_PARAMETER
;
1055 if (!ntlmssp_state
->nt_hash
|| !ntlmssp_state
->lm_hash
) {
1056 static const uchar zeros
[16];
1057 /* do nothing - blobs are zero length */
1059 /* session key is all zeros */
1060 session_key
= data_blob_talloc(ntlmssp_state
->mem_ctx
, zeros
, 16);
1062 /* not doing NLTM2 without a password */
1063 ntlmssp_state
->neg_flags
&= ~NTLMSSP_NEGOTIATE_NTLM2
;
1064 } else if (ntlmssp_state
->use_ntlmv2
) {
1066 if (!struct_blob
.length
) {
1067 /* be lazy, match win2k - we can't do NTLMv2 without it */
1068 DEBUG(1, ("Server did not provide 'target information', required for NTLMv2\n"));
1069 return NT_STATUS_INVALID_PARAMETER
;
1072 /* TODO: if the remote server is standalone, then we should replace 'domain'
1073 with the server name as supplied above */
1075 if (!SMBNTLMv2encrypt_hash(ntlmssp_state
->user
,
1076 ntlmssp_state
->domain
,
1077 ntlmssp_state
->nt_hash
, &challenge_blob
,
1079 &lm_response
, &nt_response
, &session_key
)) {
1080 data_blob_free(&challenge_blob
);
1081 data_blob_free(&struct_blob
);
1082 return NT_STATUS_NO_MEMORY
;
1084 } else if (ntlmssp_state
->neg_flags
& NTLMSSP_NEGOTIATE_NTLM2
) {
1085 struct MD5Context md5_session_nonce_ctx
;
1086 uchar session_nonce
[16];
1087 uchar session_nonce_hash
[16];
1088 uchar user_session_key
[16];
1090 lm_response
= data_blob_talloc(ntlmssp_state
->mem_ctx
, NULL
, 24);
1091 generate_random_buffer(lm_response
.data
, 8);
1092 memset(lm_response
.data
+8, 0, 16);
1094 memcpy(session_nonce
, challenge_blob
.data
, 8);
1095 memcpy(&session_nonce
[8], lm_response
.data
, 8);
1097 MD5Init(&md5_session_nonce_ctx
);
1098 MD5Update(&md5_session_nonce_ctx
, challenge_blob
.data
, 8);
1099 MD5Update(&md5_session_nonce_ctx
, lm_response
.data
, 8);
1100 MD5Final(session_nonce_hash
, &md5_session_nonce_ctx
);
1102 DEBUG(5, ("NTLMSSP challenge set by NTLM2\n"));
1103 DEBUG(5, ("challenge is: \n"));
1104 dump_data(5, (const char *)session_nonce_hash
, 8);
1106 nt_response
= data_blob_talloc(ntlmssp_state
->mem_ctx
, NULL
, 24);
1107 SMBNTencrypt_hash(ntlmssp_state
->nt_hash
,
1111 session_key
= data_blob_talloc(ntlmssp_state
->mem_ctx
, NULL
, 16);
1113 SMBsesskeygen_ntv1(ntlmssp_state
->nt_hash
, NULL
, user_session_key
);
1114 hmac_md5(user_session_key
, session_nonce
, sizeof(session_nonce
), session_key
.data
);
1115 dump_data_pw("NTLM2 session key:\n", session_key
.data
, session_key
.length
);
1117 /* lanman auth is insecure, it may be disabled */
1118 if (lp_client_lanman_auth()) {
1119 lm_response
= data_blob_talloc(ntlmssp_state
->mem_ctx
, NULL
, 24);
1120 SMBencrypt_hash(ntlmssp_state
->lm_hash
,challenge_blob
.data
,
1124 nt_response
= data_blob_talloc(ntlmssp_state
->mem_ctx
, NULL
, 24);
1125 SMBNTencrypt_hash(ntlmssp_state
->nt_hash
,challenge_blob
.data
,
1128 session_key
= data_blob_talloc(ntlmssp_state
->mem_ctx
, NULL
, 16);
1129 if ((ntlmssp_state
->neg_flags
& NTLMSSP_NEGOTIATE_LM_KEY
)
1130 && lp_client_lanman_auth()) {
1131 SMBsesskeygen_lm_sess_key(ntlmssp_state
->lm_hash
, lm_response
.data
,
1133 dump_data_pw("LM session key\n", session_key
.data
, session_key
.length
);
1135 SMBsesskeygen_ntv1(ntlmssp_state
->nt_hash
, NULL
, session_key
.data
);
1136 dump_data_pw("NT session key:\n", session_key
.data
, session_key
.length
);
1139 data_blob_free(&struct_blob
);
1141 /* Key exchange encryptes a new client-generated session key with
1142 the password-derived key */
1143 if (ntlmssp_state
->neg_flags
& NTLMSSP_NEGOTIATE_KEY_EXCH
) {
1144 /* Make up a new session key */
1145 uint8 client_session_key
[16];
1146 generate_random_buffer(client_session_key
, sizeof(client_session_key
));
1148 /* Encrypt the new session key with the old one */
1149 encrypted_session_key
= data_blob(client_session_key
, sizeof(client_session_key
));
1150 dump_data_pw("KEY_EXCH session key:\n", encrypted_session_key
.data
, encrypted_session_key
.length
);
1151 SamOEMhash(encrypted_session_key
.data
, session_key
.data
, encrypted_session_key
.length
);
1152 dump_data_pw("KEY_EXCH session key (enc):\n", encrypted_session_key
.data
, encrypted_session_key
.length
);
1154 /* Mark the new session key as the 'real' session key */
1155 data_blob_free(&session_key
);
1156 session_key
= data_blob_talloc(ntlmssp_state
->mem_ctx
, client_session_key
, sizeof(client_session_key
));
1159 /* this generates the actual auth packet */
1160 if (!msrpc_gen(next_request
, auth_gen_string
,
1163 lm_response
.data
, lm_response
.length
,
1164 nt_response
.data
, nt_response
.length
,
1165 ntlmssp_state
->domain
,
1166 ntlmssp_state
->user
,
1167 ntlmssp_state
->get_global_myname(),
1168 encrypted_session_key
.data
, encrypted_session_key
.length
,
1169 ntlmssp_state
->neg_flags
)) {
1171 return NT_STATUS_NO_MEMORY
;
1174 data_blob_free(&encrypted_session_key
);
1176 data_blob_free(&ntlmssp_state
->chal
);
1178 ntlmssp_state
->session_key
= session_key
;
1180 ntlmssp_state
->chal
= challenge_blob
;
1181 ntlmssp_state
->lm_resp
= lm_response
;
1182 ntlmssp_state
->nt_resp
= nt_response
;
1184 ntlmssp_state
->expected_state
= NTLMSSP_DONE
;
1186 if (!NT_STATUS_IS_OK(nt_status
= ntlmssp_sign_init(ntlmssp_state
))) {
1187 DEBUG(1, ("Could not setup NTLMSSP signing/sealing system (error was: %s)\n", nt_errstr(nt_status
)));
1193 NTSTATUS
ntlmssp_client_start(NTLMSSP_STATE
**ntlmssp_state
)
1195 TALLOC_CTX
*mem_ctx
;
1197 mem_ctx
= talloc_init("NTLMSSP Client context");
1199 *ntlmssp_state
= TALLOC_ZERO_P(mem_ctx
, NTLMSSP_STATE
);
1200 if (!*ntlmssp_state
) {
1201 DEBUG(0,("ntlmssp_client_start: talloc failed!\n"));
1202 talloc_destroy(mem_ctx
);
1203 return NT_STATUS_NO_MEMORY
;
1206 (*ntlmssp_state
)->role
= NTLMSSP_CLIENT
;
1208 (*ntlmssp_state
)->mem_ctx
= mem_ctx
;
1210 (*ntlmssp_state
)->get_global_myname
= global_myname
;
1211 (*ntlmssp_state
)->get_domain
= lp_workgroup
;
1213 (*ntlmssp_state
)->unicode
= True
;
1215 (*ntlmssp_state
)->use_ntlmv2
= lp_client_ntlmv2_auth();
1217 (*ntlmssp_state
)->expected_state
= NTLMSSP_INITIAL
;
1219 (*ntlmssp_state
)->ref_count
= 1;
1221 (*ntlmssp_state
)->neg_flags
=
1222 NTLMSSP_NEGOTIATE_128
|
1223 NTLMSSP_NEGOTIATE_NTLM
|
1224 NTLMSSP_NEGOTIATE_NTLM2
|
1225 NTLMSSP_NEGOTIATE_KEY_EXCH
|
1226 NTLMSSP_REQUEST_TARGET
;
1228 return NT_STATUS_OK
;