2 Unix SMB/Netbios implementation.
4 handle NTLMSSP, server side
6 Copyright (C) Andrew Tridgell 2001
7 Copyright (C) Andrew Bartlett 2001-2010
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>.
25 #include "lib/util/tevent_ntstatus.h"
26 #include "lib/util/time_basic.h"
27 #include "auth/ntlmssp/ntlmssp.h"
28 #include "auth/ntlmssp/ntlmssp_private.h"
29 #include "../librpc/gen_ndr/ndr_ntlmssp.h"
30 #include "auth/ntlmssp/ntlmssp_ndr.h"
31 #include "../libcli/auth/libcli_auth.h"
32 #include "auth/gensec/gensec.h"
33 #include "auth/gensec/gensec_internal.h"
34 #include "auth/common_auth.h"
35 #include "param/param.h"
36 #include "param/loadparm.h"
37 #include "libcli/security/session.h"
39 #include "lib/crypto/gnutls_helpers.h"
40 #include <gnutls/gnutls.h>
41 #include <gnutls/crypto.h>
44 #define DBGC_CLASS DBGC_AUTH
47 * Determine correct target name flags for reply, given server role
48 * and negotiated flags
50 * @param ntlmssp_state NTLMSSP State
51 * @param neg_flags The flags from the packet
52 * @param chal_flags The flags to be set in the reply packet
53 * @return The 'target name' string.
56 const char *ntlmssp_target_name(struct ntlmssp_state
*ntlmssp_state
,
57 uint32_t neg_flags
, uint32_t *chal_flags
)
59 if (neg_flags
& NTLMSSP_REQUEST_TARGET
) {
60 *chal_flags
|= NTLMSSP_NEGOTIATE_TARGET_INFO
;
61 *chal_flags
|= NTLMSSP_REQUEST_TARGET
;
62 if (ntlmssp_state
->server
.is_standalone
) {
63 *chal_flags
|= NTLMSSP_TARGET_TYPE_SERVER
;
64 return ntlmssp_state
->server
.netbios_name
;
66 *chal_flags
|= NTLMSSP_TARGET_TYPE_DOMAIN
;
67 return ntlmssp_state
->server
.netbios_domain
;
75 * Next state function for the NTLMSSP Negotiate packet
77 * @param gensec_security GENSEC state
78 * @param out_mem_ctx Memory context for *out
79 * @param in The request, as a DATA_BLOB. reply.data must be NULL
80 * @param out The reply, as an allocated DATA_BLOB, caller to free.
81 * @return Errors or MORE_PROCESSING_REQUIRED if (normal) a reply is required.
84 NTSTATUS
gensec_ntlmssp_server_negotiate(struct gensec_security
*gensec_security
,
85 TALLOC_CTX
*out_mem_ctx
,
86 const DATA_BLOB request
, DATA_BLOB
*reply
)
88 struct gensec_ntlmssp_context
*gensec_ntlmssp
=
89 talloc_get_type_abort(gensec_security
->private_data
,
90 struct gensec_ntlmssp_context
);
91 struct ntlmssp_state
*ntlmssp_state
= gensec_ntlmssp
->ntlmssp_state
;
92 struct auth4_context
*auth_context
= gensec_security
->auth_context
;
93 DATA_BLOB struct_blob
;
94 uint32_t neg_flags
= 0;
95 uint32_t ntlmssp_command
, chal_flags
;
97 const char *target_name
;
99 struct timeval tv_now
= timeval_current();
103 * Windows NT 4.0, windows_2000: use 30 minutes,
104 * Windows XP, Windows Server 2003, Windows Vista,
105 * Windows Server 2008, Windows 7, and Windows Server 2008 R2
108 * Newer systems doesn't check this, likely because the
109 * connectionless NTLMSSP is no longer supported.
111 * As we expect the AUTHENTICATION_MESSAGE to arrive
112 * directly after the NEGOTIATE_MESSAGE (typically less than
113 * as 1 second later). We use a hard timeout of 30 Minutes.
115 * We don't look at AUTHENTICATE_MESSAGE.NtChallengeResponse.TimeStamp
116 * instead we just remember our own time.
118 uint32_t max_lifetime
= 30 * 60;
119 struct timeval tv_end
= timeval_add(&tv_now
, max_lifetime
, 0);
121 /* parse the NTLMSSP packet */
123 file_save("ntlmssp_negotiate.dat", request
.data
, request
.length
);
126 if (request
.length
) {
127 if (request
.length
> UINT16_MAX
) {
128 DEBUG(1, ("ntlmssp_server_negotiate: reject large request of length %u\n",
129 (unsigned int)request
.length
));
130 return NT_STATUS_INVALID_PARAMETER
;
133 if ((request
.length
< 16) || !msrpc_parse(ntlmssp_state
, &request
, "Cdd",
137 DEBUG(1, ("ntlmssp_server_negotiate: failed to parse NTLMSSP Negotiate of length %u\n",
138 (unsigned int)request
.length
));
139 dump_data(2, request
.data
, request
.length
);
140 return NT_STATUS_INVALID_PARAMETER
;
142 debug_ntlmssp_flags(neg_flags
);
144 if (DEBUGLEVEL
>= 10) {
145 struct NEGOTIATE_MESSAGE
*negotiate
= talloc(
146 ntlmssp_state
, struct NEGOTIATE_MESSAGE
);
147 if (negotiate
!= NULL
) {
148 status
= ntlmssp_pull_NEGOTIATE_MESSAGE(
149 &request
, negotiate
, negotiate
);
150 if (NT_STATUS_IS_OK(status
)) {
151 NDR_PRINT_DEBUG(NEGOTIATE_MESSAGE
,
154 TALLOC_FREE(negotiate
);
159 status
= ntlmssp_handle_neg_flags(ntlmssp_state
, neg_flags
, "negotiate");
160 if (!NT_STATUS_IS_OK(status
)){
164 /* Ask our caller what challenge they would like in the packet */
165 if (auth_context
->get_ntlm_challenge
) {
166 status
= auth_context
->get_ntlm_challenge(auth_context
, cryptkey
);
167 if (!NT_STATUS_IS_OK(status
)) {
168 DEBUG(1, ("gensec_ntlmssp_server_negotiate: failed to get challenge: %s\n",
173 DEBUG(1, ("gensec_ntlmssp_server_negotiate: backend doesn't give a challenge\n"));
174 return NT_STATUS_NOT_IMPLEMENTED
;
177 /* The flags we send back are not just the negotiated flags,
178 * they are also 'what is in this packet'. Therfore, we
179 * operate on 'chal_flags' from here on
182 chal_flags
= ntlmssp_state
->neg_flags
;
183 ntlmssp_state
->server
.challenge_endtime
= timeval_to_nttime(&tv_end
);
185 /* get the right name to fill in as 'target' */
186 target_name
= ntlmssp_target_name(ntlmssp_state
,
187 neg_flags
, &chal_flags
);
188 if (target_name
== NULL
)
189 return NT_STATUS_INVALID_PARAMETER
;
191 ntlmssp_state
->chal
= data_blob_talloc(ntlmssp_state
, cryptkey
, 8);
192 ntlmssp_state
->internal_chal
= data_blob_talloc(ntlmssp_state
,
195 /* This creates the 'blob' of names that appears at the end of the packet */
196 if (chal_flags
& NTLMSSP_NEGOTIATE_TARGET_INFO
) {
197 enum ndr_err_code err
;
198 struct AV_PAIR
*pairs
= NULL
;
201 pairs
= talloc_zero_array(ntlmssp_state
, struct AV_PAIR
, count
+ 1);
203 return NT_STATUS_NO_MEMORY
;
206 pairs
[0].AvId
= MsvAvNbDomainName
;
207 pairs
[0].Value
.AvNbDomainName
= target_name
;
209 pairs
[1].AvId
= MsvAvNbComputerName
;
210 pairs
[1].Value
.AvNbComputerName
= ntlmssp_state
->server
.netbios_name
;
212 pairs
[2].AvId
= MsvAvDnsDomainName
;
213 pairs
[2].Value
.AvDnsDomainName
= ntlmssp_state
->server
.dns_domain
;
215 pairs
[3].AvId
= MsvAvDnsComputerName
;
216 pairs
[3].Value
.AvDnsComputerName
= ntlmssp_state
->server
.dns_name
;
218 if (!ntlmssp_state
->force_old_spnego
) {
219 pairs
[4].AvId
= MsvAvTimestamp
;
220 pairs
[4].Value
.AvTimestamp
=
221 timeval_to_nttime(&tv_now
);
224 pairs
[5].AvId
= MsvAvEOL
;
226 pairs
[4].AvId
= MsvAvEOL
;
229 ntlmssp_state
->server
.av_pair_list
.count
= count
;
230 ntlmssp_state
->server
.av_pair_list
.pair
= pairs
;
232 err
= ndr_push_struct_blob(&struct_blob
,
234 &ntlmssp_state
->server
.av_pair_list
,
235 (ndr_push_flags_fn_t
)ndr_push_AV_PAIR_LIST
);
236 if (!NDR_ERR_CODE_IS_SUCCESS(err
)) {
237 return NT_STATUS_NO_MEMORY
;
240 struct_blob
= data_blob_null
;
244 /* Marshal the packet in the right format, be it unicode or ASCII */
245 const char *gen_string
;
246 const DATA_BLOB version_blob
= ntlmssp_version_blob();
248 if (ntlmssp_state
->unicode
) {
249 gen_string
= "CdUdbddBb";
251 gen_string
= "CdAdbddBb";
254 status
= msrpc_gen(out_mem_ctx
, reply
, gen_string
,
261 struct_blob
.data
, struct_blob
.length
,
262 version_blob
.data
, version_blob
.length
);
264 if (!NT_STATUS_IS_OK(status
)) {
265 data_blob_free(&struct_blob
);
269 if (DEBUGLEVEL
>= 10) {
270 struct CHALLENGE_MESSAGE
*challenge
= talloc(
271 ntlmssp_state
, struct CHALLENGE_MESSAGE
);
272 if (challenge
!= NULL
) {
273 challenge
->NegotiateFlags
= chal_flags
;
274 status
= ntlmssp_pull_CHALLENGE_MESSAGE(
275 reply
, challenge
, challenge
);
276 if (NT_STATUS_IS_OK(status
)) {
277 NDR_PRINT_DEBUG(CHALLENGE_MESSAGE
,
280 TALLOC_FREE(challenge
);
285 data_blob_free(&struct_blob
);
287 ntlmssp_state
->negotiate_blob
= data_blob_dup_talloc(ntlmssp_state
,
289 if (ntlmssp_state
->negotiate_blob
.length
!= request
.length
) {
290 return NT_STATUS_NO_MEMORY
;
293 ntlmssp_state
->challenge_blob
= data_blob_dup_talloc(ntlmssp_state
,
295 if (ntlmssp_state
->challenge_blob
.length
!= reply
->length
) {
296 return NT_STATUS_NO_MEMORY
;
299 ntlmssp_state
->expected_state
= NTLMSSP_AUTH
;
301 return NT_STATUS_MORE_PROCESSING_REQUIRED
;
304 struct ntlmssp_server_auth_state
{
305 struct gensec_security
*gensec_security
;
306 struct gensec_ntlmssp_context
*gensec_ntlmssp
;
308 struct auth_usersupplied_info
*user_info
;
309 DATA_BLOB user_session_key
;
310 DATA_BLOB lm_session_key
;
311 /* internal variables used by KEY_EXCH (client-supplied user session key */
312 DATA_BLOB encrypted_session_key
;
314 /* internal variables used by NTLM2 */
315 uint8_t session_nonce
[16];
318 static NTSTATUS
ntlmssp_server_preauth(struct gensec_security
*gensec_security
,
319 struct gensec_ntlmssp_context
*gensec_ntlmssp
,
320 struct ntlmssp_server_auth_state
*state
,
321 const DATA_BLOB request
);
322 static void ntlmssp_server_auth_done(struct tevent_req
*subreq
);
323 static NTSTATUS
ntlmssp_server_postauth(struct gensec_security
*gensec_security
,
324 struct gensec_ntlmssp_context
*gensec_ntlmssp
,
325 struct ntlmssp_server_auth_state
*state
,
328 struct tevent_req
*ntlmssp_server_auth_send(TALLOC_CTX
*mem_ctx
,
329 struct tevent_context
*ev
,
330 struct gensec_security
*gensec_security
,
333 struct gensec_ntlmssp_context
*gensec_ntlmssp
=
334 talloc_get_type_abort(gensec_security
->private_data
,
335 struct gensec_ntlmssp_context
);
336 struct auth4_context
*auth_context
= gensec_security
->auth_context
;
337 struct tevent_req
*req
= NULL
;
338 struct ntlmssp_server_auth_state
*state
= NULL
;
339 uint8_t authoritative
= 0;
342 req
= tevent_req_create(mem_ctx
, &state
,
343 struct ntlmssp_server_auth_state
);
347 state
->gensec_security
= gensec_security
;
348 state
->gensec_ntlmssp
= gensec_ntlmssp
;
351 status
= ntlmssp_server_preauth(gensec_security
,
354 if (tevent_req_nterror(req
, status
)) {
355 return tevent_req_post(req
, ev
);
358 if (auth_context
->check_ntlm_password_send
!= NULL
) {
359 struct tevent_req
*subreq
= NULL
;
361 subreq
= auth_context
->check_ntlm_password_send(state
, ev
,
364 if (tevent_req_nomem(subreq
, req
)) {
365 return tevent_req_post(req
, ev
);
367 tevent_req_set_callback(subreq
,
368 ntlmssp_server_auth_done
,
373 if (auth_context
->check_ntlm_password
== NULL
) {
374 tevent_req_nterror(req
, NT_STATUS_INTERNAL_ERROR
);
375 return tevent_req_post(req
, ev
);
378 status
= auth_context
->check_ntlm_password(auth_context
,
382 &gensec_ntlmssp
->server_returned_info
,
383 &state
->user_session_key
,
384 &state
->lm_session_key
);
385 if (!NT_STATUS_IS_OK(status
)) {
386 DBG_INFO("Checking NTLMSSP password for %s\\%s failed: %s\n",
387 state
->user_info
->client
.domain_name
,
388 state
->user_info
->client
.account_name
,
391 if (tevent_req_nterror(req
, status
)) {
392 return tevent_req_post(req
, ev
);
394 talloc_steal(state
, state
->user_session_key
.data
);
395 talloc_steal(state
, state
->lm_session_key
.data
);
397 status
= ntlmssp_server_postauth(gensec_security
,
400 if (tevent_req_nterror(req
, status
)) {
401 return tevent_req_post(req
, ev
);
404 tevent_req_done(req
);
405 return tevent_req_post(req
, ev
);
409 * Next state function for the Authenticate packet
411 * @param ntlmssp_state NTLMSSP State
412 * @param request The request, as a DATA_BLOB
413 * @return Errors or NT_STATUS_OK.
416 static NTSTATUS
ntlmssp_server_preauth(struct gensec_security
*gensec_security
,
417 struct gensec_ntlmssp_context
*gensec_ntlmssp
,
418 struct ntlmssp_server_auth_state
*state
,
419 const DATA_BLOB request
)
421 struct ntlmssp_state
*ntlmssp_state
= gensec_ntlmssp
->ntlmssp_state
;
422 struct auth4_context
*auth_context
= gensec_security
->auth_context
;
423 struct auth_usersupplied_info
*user_info
= NULL
;
424 uint32_t ntlmssp_command
, auth_flags
;
426 const unsigned int version_len
= 8;
427 DATA_BLOB version_blob
= data_blob_null
;
428 const unsigned int mic_len
= NTLMSSP_MIC_SIZE
;
429 DATA_BLOB mic_blob
= data_blob_null
;
430 const char *parse_string
;
432 struct timeval endtime
;
433 bool expired
= false;
436 file_save("ntlmssp_auth.dat", request
.data
, request
.length
);
439 if (ntlmssp_state
->unicode
) {
440 parse_string
= "CdBBUUUBdbb";
442 parse_string
= "CdBBAAABdbb";
446 data_blob_free(&ntlmssp_state
->session_key
);
447 data_blob_free(&ntlmssp_state
->lm_resp
);
448 data_blob_free(&ntlmssp_state
->nt_resp
);
450 ntlmssp_state
->user
= NULL
;
451 ntlmssp_state
->domain
= NULL
;
452 ntlmssp_state
->client
.netbios_name
= NULL
;
454 /* now the NTLMSSP encoded auth hashes */
455 ok
= msrpc_parse(ntlmssp_state
, &request
, parse_string
,
458 &ntlmssp_state
->lm_resp
,
459 &ntlmssp_state
->nt_resp
,
460 &ntlmssp_state
->domain
,
461 &ntlmssp_state
->user
,
462 &ntlmssp_state
->client
.netbios_name
,
463 &state
->encrypted_session_key
,
465 &version_blob
, version_len
,
468 DEBUG(10, ("ntlmssp_server_auth: failed to parse NTLMSSP (nonfatal):\n"));
469 dump_data(10, request
.data
, request
.length
);
471 data_blob_free(&version_blob
);
472 data_blob_free(&mic_blob
);
474 if (ntlmssp_state
->unicode
) {
475 parse_string
= "CdBBUUUBd";
477 parse_string
= "CdBBAAABd";
480 ok
= msrpc_parse(ntlmssp_state
, &request
, parse_string
,
483 &ntlmssp_state
->lm_resp
,
484 &ntlmssp_state
->nt_resp
,
485 &ntlmssp_state
->domain
,
486 &ntlmssp_state
->user
,
487 &ntlmssp_state
->client
.netbios_name
,
488 &state
->encrypted_session_key
,
493 DEBUG(10, ("ntlmssp_server_auth: failed to parse NTLMSSP (nonfatal):\n"));
494 dump_data(10, request
.data
, request
.length
);
497 data_blob_free(&state
->encrypted_session_key
);
500 /* Try again with a shorter string (Win9X truncates this packet) */
501 if (ntlmssp_state
->unicode
) {
502 parse_string
= "CdBBUUU";
504 parse_string
= "CdBBAAA";
507 /* now the NTLMSSP encoded auth hashes */
508 if (!msrpc_parse(ntlmssp_state
, &request
, parse_string
,
511 &ntlmssp_state
->lm_resp
,
512 &ntlmssp_state
->nt_resp
,
513 &ntlmssp_state
->domain
,
514 &ntlmssp_state
->user
,
515 &ntlmssp_state
->client
.netbios_name
)) {
516 DEBUG(1, ("ntlmssp_server_auth: failed to parse NTLMSSP (tried both formats):\n"));
517 dump_data(2, request
.data
, request
.length
);
519 return NT_STATUS_INVALID_PARAMETER
;
523 talloc_steal(state
, state
->encrypted_session_key
.data
);
525 if (auth_flags
!= 0) {
526 nt_status
= ntlmssp_handle_neg_flags(ntlmssp_state
,
529 if (!NT_STATUS_IS_OK(nt_status
)){
534 if (DEBUGLEVEL
>= 10) {
535 struct AUTHENTICATE_MESSAGE
*authenticate
= talloc(
536 ntlmssp_state
, struct AUTHENTICATE_MESSAGE
);
537 if (authenticate
!= NULL
) {
539 authenticate
->NegotiateFlags
= auth_flags
;
540 status
= ntlmssp_pull_AUTHENTICATE_MESSAGE(
541 &request
, authenticate
, authenticate
);
542 if (NT_STATUS_IS_OK(status
)) {
543 NDR_PRINT_DEBUG(AUTHENTICATE_MESSAGE
,
546 TALLOC_FREE(authenticate
);
550 DEBUG(3,("Got user=[%s] domain=[%s] workstation=[%s] len1=%lu len2=%lu\n",
551 ntlmssp_state
->user
, ntlmssp_state
->domain
,
552 ntlmssp_state
->client
.netbios_name
,
553 (unsigned long)ntlmssp_state
->lm_resp
.length
,
554 (unsigned long)ntlmssp_state
->nt_resp
.length
));
557 file_save("nthash1.dat", &ntlmssp_state
->nt_resp
.data
, &ntlmssp_state
->nt_resp
.length
);
558 file_save("lmhash1.dat", &ntlmssp_state
->lm_resp
.data
, &ntlmssp_state
->lm_resp
.length
);
561 if (ntlmssp_state
->nt_resp
.length
> 24) {
562 struct NTLMv2_RESPONSE v2_resp
;
563 enum ndr_err_code err
;
566 const struct AV_PAIR
*flags
= NULL
;
567 const struct AV_PAIR
*eol
= NULL
;
568 uint32_t av_flags
= 0;
570 err
= ndr_pull_struct_blob(&ntlmssp_state
->nt_resp
,
573 (ndr_pull_flags_fn_t
)ndr_pull_NTLMv2_RESPONSE
);
574 if (!NDR_ERR_CODE_IS_SUCCESS(err
)) {
575 nt_status
= ndr_map_error2ntstatus(err
);
576 DEBUG(1,("%s: failed to parse NTLMv2_RESPONSE of length %zu for "
577 "user=[%s] domain=[%s] workstation=[%s] - %s %s\n",
578 __func__
, ntlmssp_state
->nt_resp
.length
,
579 ntlmssp_state
->user
, ntlmssp_state
->domain
,
580 ntlmssp_state
->client
.netbios_name
,
581 ndr_errstr(err
), nt_errstr(nt_status
)));
586 NDR_PRINT_DEBUG(NTLMv2_RESPONSE
, &v2_resp
);
589 eol
= ndr_ntlmssp_find_av(&v2_resp
.Challenge
.AvPairs
,
592 DEBUG(1,("%s: missing MsvAvEOL for "
593 "user=[%s] domain=[%s] workstation=[%s]\n",
594 __func__
, ntlmssp_state
->user
, ntlmssp_state
->domain
,
595 ntlmssp_state
->client
.netbios_name
));
596 return NT_STATUS_INVALID_PARAMETER
;
599 flags
= ndr_ntlmssp_find_av(&v2_resp
.Challenge
.AvPairs
,
602 av_flags
= flags
->Value
.AvFlags
;
605 if (av_flags
& NTLMSSP_AVFLAG_MIC_IN_AUTHENTICATE_MESSAGE
) {
606 if (mic_blob
.length
!= NTLMSSP_MIC_SIZE
) {
607 DEBUG(1,("%s: mic_blob.length[%u] for "
608 "user=[%s] domain=[%s] workstation=[%s]\n",
610 (unsigned)mic_blob
.length
,
612 ntlmssp_state
->domain
,
613 ntlmssp_state
->client
.netbios_name
));
614 return NT_STATUS_INVALID_PARAMETER
;
618 (NTLMSSP_MIC_OFFSET
+ NTLMSSP_MIC_SIZE
))
620 DEBUG(1,("%s: missing MIC "
621 "request.length[%u] for "
622 "user=[%s] domain=[%s] workstation=[%s]\n",
624 (unsigned)request
.length
,
626 ntlmssp_state
->domain
,
627 ntlmssp_state
->client
.netbios_name
));
628 return NT_STATUS_INVALID_PARAMETER
;
631 ntlmssp_state
->new_spnego
= true;
634 count
= ntlmssp_state
->server
.av_pair_list
.count
;
635 if (v2_resp
.Challenge
.AvPairs
.count
< count
) {
636 return NT_STATUS_INVALID_PARAMETER
;
639 for (i
= 0; i
< count
; i
++) {
640 const struct AV_PAIR
*sp
=
641 &ntlmssp_state
->server
.av_pair_list
.pair
[i
];
642 const struct AV_PAIR
*cp
= NULL
;
644 if (sp
->AvId
== MsvAvEOL
) {
648 cp
= ndr_ntlmssp_find_av(&v2_resp
.Challenge
.AvPairs
,
651 DEBUG(1,("%s: AvId 0x%x missing for"
652 "user=[%s] domain=[%s] "
653 "workstation=[%s]\n",
657 ntlmssp_state
->domain
,
658 ntlmssp_state
->client
.netbios_name
));
659 return NT_STATUS_INVALID_PARAMETER
;
663 #define CASE_STRING(v) case Msv ## v: do { \
665 if (sp->Value.v == NULL) { \
666 return NT_STATUS_INTERNAL_ERROR; \
668 if (cp->Value.v == NULL) { \
669 DEBUG(1,("%s: invalid %s " \
670 "got[%s] expect[%s] for " \
671 "user=[%s] domain=[%s] workstation=[%s]\n", \
675 ntlmssp_state->user, \
676 ntlmssp_state->domain, \
677 ntlmssp_state->client.netbios_name)); \
678 return NT_STATUS_INVALID_PARAMETER; \
680 cmp = strcmp(cp->Value.v, sp->Value.v); \
682 DEBUG(1,("%s: invalid %s " \
683 "got[%s] expect[%s] for " \
684 "user=[%s] domain=[%s] workstation=[%s]\n", \
688 ntlmssp_state->user, \
689 ntlmssp_state->domain, \
690 ntlmssp_state->client.netbios_name)); \
691 return NT_STATUS_INVALID_PARAMETER; \
694 CASE_STRING(AvNbComputerName
);
695 CASE_STRING(AvNbDomainName
);
696 CASE_STRING(AvDnsComputerName
);
697 CASE_STRING(AvDnsDomainName
);
698 CASE_STRING(AvDnsTreeName
);
700 if (cp
->Value
.AvTimestamp
!= sp
->Value
.AvTimestamp
) {
703 struct timeval_buf tmp1
;
704 struct timeval_buf tmp2
;
706 nttime_to_timeval(&ct
,
707 cp
->Value
.AvTimestamp
);
708 nttime_to_timeval(&st
,
709 sp
->Value
.AvTimestamp
);
711 DEBUG(1,("%s: invalid AvTimestamp "
712 "got[%s] expect[%s] for "
713 "user=[%s] domain=[%s] "
714 "workstation=[%s]\n",
716 timeval_str_buf(&ct
, false,
718 timeval_str_buf(&st
, false,
721 ntlmssp_state
->domain
,
722 ntlmssp_state
->client
.netbios_name
));
723 return NT_STATUS_INVALID_PARAMETER
;
728 * This can't happen as we control
729 * ntlmssp_state->server.av_pair_list
731 return NT_STATUS_INTERNAL_ERROR
;
736 nttime_to_timeval(&endtime
, ntlmssp_state
->server
.challenge_endtime
);
737 expired
= timeval_expired(&endtime
);
739 struct timeval_buf tmp
;
740 DEBUG(1,("%s: challenge invalid (expired %s) for "
741 "user=[%s] domain=[%s] workstation=[%s]\n",
743 timeval_str_buf(&endtime
, false, true, &tmp
),
744 ntlmssp_state
->user
, ntlmssp_state
->domain
,
745 ntlmssp_state
->client
.netbios_name
));
746 return NT_STATUS_INVALID_PARAMETER
;
749 /* NTLM2 uses a 'challenge' that is made of up both the server challenge, and a
752 However, the NTLM2 flag may still be set for the real NTLMv2 logins, be careful.
754 if (ntlmssp_state
->neg_flags
& NTLMSSP_NEGOTIATE_NTLM2
) {
755 if (ntlmssp_state
->nt_resp
.length
== 24 && ntlmssp_state
->lm_resp
.length
== 24) {
756 state
->doing_ntlm2
= true;
758 memcpy(state
->session_nonce
, ntlmssp_state
->internal_chal
.data
, 8);
759 memcpy(&state
->session_nonce
[8], ntlmssp_state
->lm_resp
.data
, 8);
761 SMB_ASSERT(ntlmssp_state
->internal_chal
.data
&& ntlmssp_state
->internal_chal
.length
== 8);
763 /* LM response is no longer useful */
764 data_blob_free(&ntlmssp_state
->lm_resp
);
766 /* We changed the effective challenge - set it */
767 if (auth_context
->set_ntlm_challenge
) {
768 uint8_t session_nonce_hash
[16];
771 rc
= gnutls_hash_fast(GNUTLS_DIG_MD5
,
772 state
->session_nonce
,
776 return gnutls_error_to_ntstatus(rc
, NT_STATUS_NTLM_BLOCKED
);
780 nt_status
= auth_context
->set_ntlm_challenge(auth_context
,
782 "NTLMSSP callback (NTLM2)");
783 ZERO_ARRAY(session_nonce_hash
);
784 if (!NT_STATUS_IS_OK(nt_status
)) {
785 DEBUG(1, ("gensec_ntlmssp_server_negotiate: failed to get challenge: %s\n",
786 nt_errstr(nt_status
)));
790 DEBUG(1, ("gensec_ntlmssp_server_negotiate: backend doesn't have facility for challenge to be set\n"));
792 return NT_STATUS_NOT_IMPLEMENTED
;
795 /* LM Key is incompatible. */
796 ntlmssp_state
->neg_flags
&= ~NTLMSSP_NEGOTIATE_LM_KEY
;
800 user_info
= talloc_zero(state
, struct auth_usersupplied_info
);
802 return NT_STATUS_NO_MEMORY
;
805 user_info
->logon_parameters
= MSV1_0_ALLOW_SERVER_TRUST_ACCOUNT
| MSV1_0_ALLOW_WORKSTATION_TRUST_ACCOUNT
;
806 user_info
->flags
= 0;
807 user_info
->mapped_state
= false;
808 user_info
->client
.account_name
= ntlmssp_state
->user
;
809 user_info
->client
.domain_name
= ntlmssp_state
->domain
;
810 user_info
->workstation_name
= ntlmssp_state
->client
.netbios_name
;
811 user_info
->remote_host
= gensec_get_remote_address(gensec_security
);
812 user_info
->local_host
= gensec_get_local_address(gensec_security
);
813 user_info
->service_description
814 = gensec_get_target_service_description(gensec_security
);
817 * This will just be the string "NTLMSSP" from
818 * gensec_ntlmssp_final_auth_type, but ensures it stays in sync
819 * with the same use in the authorization logging triggered by
820 * gensec_session_info() later
822 user_info
->auth_description
= gensec_final_auth_type(gensec_security
);
824 user_info
->password_state
= AUTH_PASSWORD_RESPONSE
;
825 user_info
->password
.response
.lanman
= ntlmssp_state
->lm_resp
;
826 user_info
->password
.response
.nt
= ntlmssp_state
->nt_resp
;
828 state
->user_info
= user_info
;
832 static void ntlmssp_server_auth_done(struct tevent_req
*subreq
)
834 struct tevent_req
*req
=
835 tevent_req_callback_data(subreq
,
837 struct ntlmssp_server_auth_state
*state
=
839 struct ntlmssp_server_auth_state
);
840 struct gensec_security
*gensec_security
= state
->gensec_security
;
841 struct gensec_ntlmssp_context
*gensec_ntlmssp
= state
->gensec_ntlmssp
;
842 struct auth4_context
*auth_context
= gensec_security
->auth_context
;
843 uint8_t authoritative
= 0;
846 status
= auth_context
->check_ntlm_password_recv(subreq
,
849 &gensec_ntlmssp
->server_returned_info
,
850 &state
->user_session_key
,
851 &state
->lm_session_key
);
853 if (!NT_STATUS_IS_OK(status
)) {
854 DBG_INFO("Checking NTLMSSP password for %s\\%s failed: %s\n",
855 state
->user_info
->client
.domain_name
,
856 state
->user_info
->client
.account_name
,
859 if (tevent_req_nterror(req
, status
)) {
862 talloc_steal(state
, state
->user_session_key
.data
);
863 talloc_steal(state
, state
->lm_session_key
.data
);
865 status
= ntlmssp_server_postauth(state
->gensec_security
,
866 state
->gensec_ntlmssp
,
868 if (tevent_req_nterror(req
, status
)) {
872 tevent_req_done(req
);
876 * Next state function for the Authenticate packet
877 * (after authentication - figures out the session keys etc)
879 * @param ntlmssp_state NTLMSSP State
880 * @return Errors or NT_STATUS_OK.
883 static NTSTATUS
ntlmssp_server_postauth(struct gensec_security
*gensec_security
,
884 struct gensec_ntlmssp_context
*gensec_ntlmssp
,
885 struct ntlmssp_server_auth_state
*state
,
888 struct ntlmssp_state
*ntlmssp_state
= gensec_ntlmssp
->ntlmssp_state
;
889 struct auth4_context
*auth_context
= gensec_security
->auth_context
;
890 DATA_BLOB user_session_key
= state
->user_session_key
;
891 DATA_BLOB lm_session_key
= state
->lm_session_key
;
892 NTSTATUS nt_status
= NT_STATUS_OK
;
893 DATA_BLOB session_key
= data_blob(NULL
, 0);
894 struct auth_session_info
*session_info
= NULL
;
896 TALLOC_FREE(state
->user_info
);
898 if (lpcfg_map_to_guest(gensec_security
->settings
->lp_ctx
) != NEVER_MAP_TO_GUEST
899 && auth_context
->generate_session_info
!= NULL
)
904 * We need to check if the auth is anonymous or mapped to guest
906 tmp_status
= auth_context
->generate_session_info(auth_context
, state
,
907 gensec_ntlmssp
->server_returned_info
,
908 gensec_ntlmssp
->ntlmssp_state
->user
,
909 AUTH_SESSION_INFO_SIMPLE_PRIVILEGES
,
911 if (!NT_STATUS_IS_OK(tmp_status
)) {
913 * We don't care about failures,
914 * the worst result is that we try MIC checking
915 * for a map to guest authentication.
917 TALLOC_FREE(session_info
);
921 if (session_info
!= NULL
) {
922 if (security_session_user_level(session_info
, NULL
) < SECURITY_USER
) {
924 * Anonymous and GUEST are not secure anyway.
925 * avoid new_spnego and MIC checking.
927 ntlmssp_state
->new_spnego
= false;
928 ntlmssp_state
->neg_flags
&= ~NTLMSSP_NEGOTIATE_SIGN
;
929 ntlmssp_state
->neg_flags
&= ~NTLMSSP_NEGOTIATE_SEAL
;
931 TALLOC_FREE(session_info
);
934 dump_data_pw("NT session key:\n", user_session_key
.data
, user_session_key
.length
);
935 dump_data_pw("LM first-8:\n", lm_session_key
.data
, lm_session_key
.length
);
937 /* Handle the different session key derivation for NTLM2 */
938 if (state
->doing_ntlm2
) {
939 if (user_session_key
.data
&& user_session_key
.length
== 16) {
942 session_key
= data_blob_talloc(ntlmssp_state
,
945 rc
= gnutls_hmac_fast(GNUTLS_MAC_MD5
,
946 user_session_key
.data
,
947 user_session_key
.length
,
948 state
->session_nonce
,
949 sizeof(state
->session_nonce
),
952 return gnutls_error_to_ntstatus(rc
, NT_STATUS_NTLM_BLOCKED
);
955 DEBUG(10,("ntlmssp_server_auth: Created NTLM2 session key.\n"));
956 dump_data_pw("NTLM2 session key:\n", session_key
.data
, session_key
.length
);
959 DEBUG(10,("ntlmssp_server_auth: Failed to create NTLM2 session key.\n"));
960 session_key
= data_blob_null
;
962 } else if ((ntlmssp_state
->neg_flags
& NTLMSSP_NEGOTIATE_LM_KEY
)
963 /* Ensure we can never get here on NTLMv2 */
964 && (ntlmssp_state
->nt_resp
.length
== 0 || ntlmssp_state
->nt_resp
.length
== 24)) {
966 if (lm_session_key
.data
&& lm_session_key
.length
>= 8) {
967 if (ntlmssp_state
->lm_resp
.data
&& ntlmssp_state
->lm_resp
.length
== 24) {
968 session_key
= data_blob_talloc(ntlmssp_state
,
970 if (session_key
.data
== NULL
) {
971 return NT_STATUS_NO_MEMORY
;
973 SMBsesskeygen_lm_sess_key(lm_session_key
.data
, ntlmssp_state
->lm_resp
.data
,
975 DEBUG(10,("ntlmssp_server_auth: Created NTLM session key.\n"));
977 static const uint8_t zeros
[24] = {0, };
978 session_key
= data_blob_talloc(
979 ntlmssp_state
, NULL
, 16);
980 if (session_key
.data
== NULL
) {
981 return NT_STATUS_NO_MEMORY
;
983 SMBsesskeygen_lm_sess_key(zeros
, zeros
,
985 DEBUG(10,("ntlmssp_server_auth: Created NTLM session key.\n"));
987 dump_data_pw("LM session key:\n", session_key
.data
,
990 /* LM Key not selected */
991 ntlmssp_state
->neg_flags
&= ~NTLMSSP_NEGOTIATE_LM_KEY
;
993 DEBUG(10,("ntlmssp_server_auth: Failed to create NTLM session key.\n"));
994 session_key
= data_blob_null
;
997 } else if (user_session_key
.data
) {
998 session_key
= user_session_key
;
999 DEBUG(10,("ntlmssp_server_auth: Using unmodified nt session key.\n"));
1000 dump_data_pw("unmodified session key:\n", session_key
.data
, session_key
.length
);
1002 /* LM Key not selected */
1003 ntlmssp_state
->neg_flags
&= ~NTLMSSP_NEGOTIATE_LM_KEY
;
1005 } else if (lm_session_key
.data
) {
1006 /* Very weird to have LM key, but no user session key, but anyway.. */
1007 session_key
= lm_session_key
;
1008 DEBUG(10,("ntlmssp_server_auth: Using unmodified lm session key.\n"));
1009 dump_data_pw("unmodified session key:\n", session_key
.data
, session_key
.length
);
1011 /* LM Key not selected */
1012 ntlmssp_state
->neg_flags
&= ~NTLMSSP_NEGOTIATE_LM_KEY
;
1015 DEBUG(10,("ntlmssp_server_auth: Failed to create unmodified session key.\n"));
1016 session_key
= data_blob_null
;
1018 /* LM Key not selected */
1019 ntlmssp_state
->neg_flags
&= ~NTLMSSP_NEGOTIATE_LM_KEY
;
1022 /* With KEY_EXCH, the client supplies the proposed session key,
1023 but encrypts it with the long-term key */
1024 if (ntlmssp_state
->neg_flags
& NTLMSSP_NEGOTIATE_KEY_EXCH
) {
1025 if (!state
->encrypted_session_key
.data
1026 || state
->encrypted_session_key
.length
!= 16) {
1027 DEBUG(1, ("Client-supplied KEY_EXCH session key was of invalid length (%u)!\n",
1028 (unsigned)state
->encrypted_session_key
.length
));
1029 return NT_STATUS_INVALID_PARAMETER
;
1030 } else if (!session_key
.data
|| session_key
.length
!= 16) {
1031 DEBUG(5, ("server session key is invalid (len == %u), cannot do KEY_EXCH!\n",
1032 (unsigned int)session_key
.length
));
1033 ntlmssp_state
->session_key
= session_key
;
1034 talloc_steal(ntlmssp_state
, session_key
.data
);
1036 gnutls_cipher_hd_t cipher_hnd
;
1037 gnutls_datum_t enc_session_key
= {
1038 .data
= session_key
.data
,
1039 .size
= session_key
.length
,
1043 dump_data_pw("KEY_EXCH session key (enc):\n",
1044 state
->encrypted_session_key
.data
,
1045 state
->encrypted_session_key
.length
);
1047 rc
= gnutls_cipher_init(&cipher_hnd
,
1048 GNUTLS_CIPHER_ARCFOUR_128
,
1052 return gnutls_error_to_ntstatus(rc
, NT_STATUS_NTLM_BLOCKED
);
1054 rc
= gnutls_cipher_encrypt(cipher_hnd
,
1055 state
->encrypted_session_key
.data
,
1056 state
->encrypted_session_key
.length
);
1057 gnutls_cipher_deinit(cipher_hnd
);
1059 return gnutls_error_to_ntstatus(rc
, NT_STATUS_NTLM_BLOCKED
);
1062 ntlmssp_state
->session_key
= data_blob_talloc(ntlmssp_state
,
1063 state
->encrypted_session_key
.data
,
1064 state
->encrypted_session_key
.length
);
1065 dump_data_pw("KEY_EXCH session key:\n",
1066 state
->encrypted_session_key
.data
,
1067 state
->encrypted_session_key
.length
);
1070 ntlmssp_state
->session_key
= session_key
;
1071 talloc_steal(ntlmssp_state
, session_key
.data
);
1074 if (ntlmssp_state
->new_spnego
) {
1075 gnutls_hmac_hd_t hmac_hnd
= NULL
;
1076 uint8_t mic_buffer
[NTLMSSP_MIC_SIZE
] = { 0, };
1080 rc
= gnutls_hmac_init(&hmac_hnd
,
1082 ntlmssp_state
->session_key
.data
,
1083 MIN(ntlmssp_state
->session_key
.length
, 64));
1085 return gnutls_error_to_ntstatus(rc
, NT_STATUS_NTLM_BLOCKED
);
1087 rc
= gnutls_hmac(hmac_hnd
,
1088 ntlmssp_state
->negotiate_blob
.data
,
1089 ntlmssp_state
->negotiate_blob
.length
);
1091 gnutls_hmac_deinit(hmac_hnd
, NULL
);
1092 return gnutls_error_to_ntstatus(rc
, NT_STATUS_NTLM_BLOCKED
);
1094 rc
= gnutls_hmac(hmac_hnd
,
1095 ntlmssp_state
->challenge_blob
.data
,
1096 ntlmssp_state
->challenge_blob
.length
);
1098 gnutls_hmac_deinit(hmac_hnd
, NULL
);
1099 return gnutls_error_to_ntstatus(rc
, NT_STATUS_NTLM_BLOCKED
);
1102 /* checked were we set ntlmssp_state->new_spnego */
1103 SMB_ASSERT(request
.length
>
1104 (NTLMSSP_MIC_OFFSET
+ NTLMSSP_MIC_SIZE
));
1106 rc
= gnutls_hmac(hmac_hnd
, request
.data
, NTLMSSP_MIC_OFFSET
);
1108 gnutls_hmac_deinit(hmac_hnd
, NULL
);
1109 return gnutls_error_to_ntstatus(rc
, NT_STATUS_NTLM_BLOCKED
);
1111 rc
= gnutls_hmac(hmac_hnd
, mic_buffer
, NTLMSSP_MIC_SIZE
);
1113 gnutls_hmac_deinit(hmac_hnd
, NULL
);
1114 return gnutls_error_to_ntstatus(rc
, NT_STATUS_NTLM_BLOCKED
);
1116 rc
= gnutls_hmac(hmac_hnd
,
1117 request
.data
+ (NTLMSSP_MIC_OFFSET
+ NTLMSSP_MIC_SIZE
),
1118 request
.length
- (NTLMSSP_MIC_OFFSET
+ NTLMSSP_MIC_SIZE
));
1120 gnutls_hmac_deinit(hmac_hnd
, NULL
);
1121 return gnutls_error_to_ntstatus(rc
, NT_STATUS_NTLM_BLOCKED
);
1123 gnutls_hmac_deinit(hmac_hnd
, mic_buffer
);
1125 cmp
= memcmp(request
.data
+ NTLMSSP_MIC_OFFSET
,
1126 mic_buffer
, NTLMSSP_MIC_SIZE
);
1128 DEBUG(1,("%s: invalid NTLMSSP_MIC for "
1129 "user=[%s] domain=[%s] workstation=[%s]\n",
1131 ntlmssp_state
->user
,
1132 ntlmssp_state
->domain
,
1133 ntlmssp_state
->client
.netbios_name
));
1134 dump_data(11, request
.data
+ NTLMSSP_MIC_OFFSET
,
1136 dump_data(11, mic_buffer
,
1140 ZERO_ARRAY(mic_buffer
);
1143 return NT_STATUS_INVALID_PARAMETER
;
1147 data_blob_free(&ntlmssp_state
->negotiate_blob
);
1148 data_blob_free(&ntlmssp_state
->challenge_blob
);
1150 if (gensec_ntlmssp_have_feature(gensec_security
, GENSEC_FEATURE_SIGN
)) {
1151 if (gensec_security
->want_features
& GENSEC_FEATURE_LDAP_STYLE
) {
1153 * We need to handle NTLMSSP_NEGOTIATE_SIGN as
1154 * NTLMSSP_NEGOTIATE_SEAL if GENSEC_FEATURE_LDAP_STYLE
1157 ntlmssp_state
->force_wrap_seal
= true;
1159 nt_status
= ntlmssp_sign_init(ntlmssp_state
);
1162 data_blob_clear_free(&ntlmssp_state
->internal_chal
);
1163 data_blob_clear_free(&ntlmssp_state
->chal
);
1164 data_blob_clear_free(&ntlmssp_state
->lm_resp
);
1165 data_blob_clear_free(&ntlmssp_state
->nt_resp
);
1167 ntlmssp_state
->expected_state
= NTLMSSP_DONE
;
1172 NTSTATUS
ntlmssp_server_auth_recv(struct tevent_req
*req
,
1173 TALLOC_CTX
*out_mem_ctx
,
1178 *out
= data_blob_null
;
1180 if (tevent_req_is_nterror(req
, &status
)) {
1181 tevent_req_received(req
);
1185 tevent_req_received(req
);
1186 return NT_STATUS_OK
;