2 Unix SMB/CIFS implementation.
5 Copyright (C) Stefan Metzmacher 2009
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>.
22 #include "smbd/smbd.h"
23 #include "smbd/globals.h"
24 #include "../libcli/smb/smb_common.h"
25 #include "../libcli/smb/smb2_negotiate_context.h"
26 #include "../lib/tsocket/tsocket.h"
27 #include "../librpc/ndr/libndr.h"
28 #include "../libcli/smb/smb_signing.h"
30 #include "auth/gensec/gensec.h"
31 #include "lib/util/string_wrappers.h"
32 #include "source3/lib/substitute.h"
33 #ifdef HAVE_VALGRIND_CALLGRIND_H
34 #include <valgrind/callgrind.h>
35 #endif /* HAVE_VALGRIND_CALLGRIND_H */
38 #define DBGC_CLASS DBGC_SMB2
41 * this is the entry point if SMB2 is selected via
42 * the SMB negprot and the given dialect.
44 static NTSTATUS
reply_smb20xx(struct smb_request
*req
, uint16_t dialect
)
50 size_t len
= SMB2_HDR_BODY
+ 0x24 + 2;
52 smb2_inpdu
= talloc_zero_array(talloc_tos(), uint8_t, len
);
53 if (smb2_inpdu
== NULL
) {
54 DEBUG(0, ("Could not push spnego blob\n"));
55 reply_nterror(req
, NT_STATUS_NO_MEMORY
);
56 return NT_STATUS_NO_MEMORY
;
58 smb2_hdr
= smb2_inpdu
;
59 smb2_body
= smb2_hdr
+ SMB2_HDR_BODY
;
60 smb2_dyn
= smb2_body
+ 0x24;
62 SIVAL(smb2_hdr
, SMB2_HDR_PROTOCOL_ID
, SMB2_MAGIC
);
63 SIVAL(smb2_hdr
, SMB2_HDR_LENGTH
, SMB2_HDR_BODY
);
65 SSVAL(smb2_body
, 0x00, 0x0024); /* struct size */
66 SSVAL(smb2_body
, 0x02, 0x0001); /* dialect count */
68 SSVAL(smb2_dyn
, 0x00, dialect
);
72 return smbd_smb2_process_negprot(req
->xconn
, 0, smb2_inpdu
, len
);
76 * this is the entry point if SMB2 is selected via
77 * the SMB negprot and the "SMB 2.002" dialect.
79 NTSTATUS
reply_smb2002(struct smb_request
*req
, uint16_t choice
)
81 return reply_smb20xx(req
, SMB2_DIALECT_REVISION_202
);
85 * this is the entry point if SMB2 is selected via
86 * the SMB negprot and the "SMB 2.???" dialect.
88 NTSTATUS
reply_smb20ff(struct smb_request
*req
, uint16_t choice
)
90 struct smbXsrv_connection
*xconn
= req
->xconn
;
91 xconn
->smb2
.allow_2ff
= true;
92 return reply_smb20xx(req
, SMB2_DIALECT_REVISION_2FF
);
95 enum protocol_types
smbd_smb2_protocol_dialect_match(const uint8_t *indyn
,
96 const int dialect_count
,
100 enum protocol_types proto
;
103 { PROTOCOL_SMB3_11
, SMB3_DIALECT_REVISION_311
},
104 { PROTOCOL_SMB3_02
, SMB3_DIALECT_REVISION_302
},
105 { PROTOCOL_SMB3_00
, SMB3_DIALECT_REVISION_300
},
106 { PROTOCOL_SMB2_10
, SMB2_DIALECT_REVISION_210
},
107 { PROTOCOL_SMB2_02
, SMB2_DIALECT_REVISION_202
},
111 for (i
= 0; i
< ARRAY_SIZE(pd
); i
++) {
114 if (lp_server_max_protocol() < pd
[i
].proto
) {
117 if (lp_server_min_protocol() > pd
[i
].proto
) {
121 for (c
= 0; c
< dialect_count
; c
++) {
122 *dialect
= SVAL(indyn
, c
*2);
123 if (*dialect
== pd
[i
].dialect
) {
129 return PROTOCOL_NONE
;
132 static NTSTATUS
smb2_negotiate_context_process_posix(
133 const struct smb2_negotiate_contexts
*in_c
,
136 struct smb2_negotiate_context
*in_posix
= NULL
;
137 const uint8_t *inbuf
= NULL
;
139 bool posix_found
= false;
145 if (!lp_smb3_unix_extensions(GLOBAL_SECTION_SNUM
)) {
149 in_posix
= smb2_negotiate_context_find(in_c
,
150 SMB2_POSIX_EXTENSIONS_AVAILABLE
);
151 if (in_posix
== NULL
) {
155 inbuf
= in_posix
->data
.data
;
156 inbuflen
= in_posix
->data
.length
;
159 * For now the server only supports one variant.
160 * Check it's the right one.
162 if ((inbuflen
% 16) != 0) {
163 return NT_STATUS_INVALID_PARAMETER
;
166 SMB_ASSERT(strlen(SMB2_CREATE_TAG_POSIX
) == 16);
168 for (ofs
= 0; ofs
< inbuflen
; ofs
+= 16) {
169 cmp
= memcmp(inbuf
+ofs
, SMB2_CREATE_TAG_POSIX
, 16);
177 DBG_DEBUG("Client requested unknown SMB3 Unix extensions:\n");
178 dump_data(10, inbuf
, inbuflen
);
182 DBG_DEBUG("Client requested SMB3 Unix extensions\n");
187 struct smbd_smb2_request_process_negprot_state
{
188 struct smbd_smb2_request
*req
;
193 static void smbd_smb2_request_process_negprot_mc_done(struct tevent_req
*subreq
);
195 NTSTATUS
smbd_smb2_request_process_negprot(struct smbd_smb2_request
*req
)
197 struct smbd_smb2_request_process_negprot_state
*state
= NULL
;
198 struct smbXsrv_connection
*xconn
= req
->xconn
;
199 struct tevent_req
*subreq
= NULL
;
201 const uint8_t *inbody
;
202 const uint8_t *indyn
= NULL
;
205 DATA_BLOB negprot_spnego_blob
;
206 uint16_t security_offset
;
207 DATA_BLOB security_buffer
;
208 size_t expected_dyn_size
= 0;
210 uint16_t security_mode
;
211 uint16_t dialect_count
;
212 uint16_t in_security_mode
;
213 uint32_t in_capabilities
;
214 DATA_BLOB in_guid_blob
;
216 struct smb2_negotiate_contexts in_c
= { .num_contexts
= 0, };
217 struct smb2_negotiate_context
*in_preauth
= NULL
;
218 struct smb2_negotiate_context
*in_cipher
= NULL
;
219 struct smb2_negotiate_context
*in_sign_algo
= NULL
;
220 struct smb2_negotiate_contexts out_c
= { .num_contexts
= 0, };
221 const struct smb311_capabilities default_smb3_capabilities
=
222 smb311_capabilities_parse("server",
223 lp_server_smb3_signing_algorithms(),
224 lp_server_smb3_encryption_algorithms());
225 DATA_BLOB out_negotiate_context_blob
= data_blob_null
;
226 uint32_t out_negotiate_context_offset
= 0;
227 uint16_t out_negotiate_context_count
= 0;
228 uint16_t dialect
= 0;
229 uint32_t capabilities
;
230 DATA_BLOB out_guid_blob
;
231 struct GUID out_guid
;
232 enum protocol_types protocol
= PROTOCOL_NONE
;
234 uint32_t max_trans
= lp_smb2_max_trans();
235 uint32_t max_read
= lp_smb2_max_read();
236 uint32_t max_write
= lp_smb2_max_write();
237 NTTIME now
= timeval_to_nttime(&req
->request_time
);
241 status
= smbd_smb2_request_verify_sizes(req
, 0x24);
242 if (!NT_STATUS_IS_OK(status
)) {
243 return smbd_smb2_request_error(req
, status
);
245 inbody
= SMBD_SMB2_IN_BODY_PTR(req
);
247 dialect_count
= SVAL(inbody
, 0x02);
249 in_security_mode
= SVAL(inbody
, 0x04);
250 in_capabilities
= IVAL(inbody
, 0x08);
251 in_guid_blob
= data_blob_const(inbody
+ 0x0C, 16);
253 if (dialect_count
== 0) {
254 return smbd_smb2_request_error(req
, NT_STATUS_INVALID_PARAMETER
);
257 status
= GUID_from_ndr_blob(&in_guid_blob
, &in_guid
);
258 if (!NT_STATUS_IS_OK(status
)) {
259 return smbd_smb2_request_error(req
, status
);
262 expected_dyn_size
= dialect_count
* 2;
263 if (SMBD_SMB2_IN_DYN_LEN(req
) < expected_dyn_size
) {
264 return smbd_smb2_request_error(req
, NT_STATUS_INVALID_PARAMETER
);
266 indyn
= SMBD_SMB2_IN_DYN_PTR(req
);
268 protocol
= smbd_smb2_protocol_dialect_match(indyn
,
272 for (c
=0; protocol
== PROTOCOL_NONE
&& c
< dialect_count
; c
++) {
273 if (lp_server_max_protocol() < PROTOCOL_SMB2_10
) {
277 dialect
= SVAL(indyn
, c
*2);
278 if (dialect
== SMB2_DIALECT_REVISION_2FF
) {
279 if (xconn
->smb2
.allow_2ff
) {
280 xconn
->smb2
.allow_2ff
= false;
281 protocol
= PROTOCOL_SMB2_10
;
287 if (protocol
== PROTOCOL_NONE
) {
288 return smbd_smb2_request_error(req
, NT_STATUS_NOT_SUPPORTED
);
291 if (protocol
>= PROTOCOL_SMB3_11
) {
292 uint32_t in_negotiate_context_offset
= 0;
293 uint16_t in_negotiate_context_count
= 0;
294 DATA_BLOB in_negotiate_context_blob
= data_blob_null
;
297 in_negotiate_context_offset
= IVAL(inbody
, 0x1C);
298 in_negotiate_context_count
= SVAL(inbody
, 0x20);
301 ofs
+= SMBD_SMB2_IN_BODY_LEN(req
);
302 ofs
+= expected_dyn_size
;
303 if ((ofs
% 8) != 0) {
304 ofs
+= 8 - (ofs
% 8);
307 if (in_negotiate_context_offset
!= ofs
) {
308 return smbd_smb2_request_error(req
,
309 NT_STATUS_INVALID_PARAMETER
);
312 ofs
-= SMB2_HDR_BODY
;
313 ofs
-= SMBD_SMB2_IN_BODY_LEN(req
);
315 if (SMBD_SMB2_IN_DYN_LEN(req
) < ofs
) {
316 return smbd_smb2_request_error(req
,
317 NT_STATUS_INVALID_PARAMETER
);
320 in_negotiate_context_blob
= data_blob_const(indyn
,
321 SMBD_SMB2_IN_DYN_LEN(req
));
323 in_negotiate_context_blob
.data
+= ofs
;
324 in_negotiate_context_blob
.length
-= ofs
;
326 status
= smb2_negotiate_context_parse(req
,
327 in_negotiate_context_blob
,
328 in_negotiate_context_count
,
330 if (!NT_STATUS_IS_OK(status
)) {
331 return smbd_smb2_request_error(req
, status
);
334 status
= smb2_negotiate_context_process_posix(&in_c
, &posix
);
335 if (!NT_STATUS_IS_OK(status
)) {
336 return smbd_smb2_request_error(req
, status
);
340 if ((dialect
!= SMB2_DIALECT_REVISION_2FF
) &&
341 (protocol
>= PROTOCOL_SMB2_10
) &&
342 !GUID_all_zero(&in_guid
))
344 ok
= remote_arch_cache_update(&in_guid
);
346 return smbd_smb2_request_error(
347 req
, NT_STATUS_UNSUCCESSFUL
);
351 switch (get_remote_arch()) {
358 set_remote_arch(RA_VISTA
);
366 (dialect
>> 8) & 0xFF, dialect
& 0xFF);
367 set_remote_proto(proto
);
368 DEBUG(3,("Selected protocol %s\n", proto
));
371 reload_services(req
->sconn
, conn_snum_used
, true);
373 in_preauth
= smb2_negotiate_context_find(&in_c
,
374 SMB2_PREAUTH_INTEGRITY_CAPABILITIES
);
375 if (protocol
>= PROTOCOL_SMB3_11
&& in_preauth
== NULL
) {
376 return smbd_smb2_request_error(req
, NT_STATUS_INVALID_PARAMETER
);
378 in_cipher
= smb2_negotiate_context_find(&in_c
,
379 SMB2_ENCRYPTION_CAPABILITIES
);
380 in_sign_algo
= smb2_negotiate_context_find(&in_c
,
381 SMB2_SIGNING_CAPABILITIES
);
383 /* negprot_spnego() returns the server guid in the first 16 bytes */
384 negprot_spnego_blob
= negprot_spnego(req
, xconn
);
385 if (negprot_spnego_blob
.data
== NULL
) {
386 return smbd_smb2_request_error(req
, NT_STATUS_NO_MEMORY
);
389 if (negprot_spnego_blob
.length
< 16) {
390 return smbd_smb2_request_error(req
, NT_STATUS_INTERNAL_ERROR
);
393 security_mode
= SMB2_NEGOTIATE_SIGNING_ENABLED
;
394 if (xconn
->smb2
.signing_mandatory
) {
395 security_mode
|= SMB2_NEGOTIATE_SIGNING_REQUIRED
;
399 if (lp_host_msdfs()) {
400 capabilities
|= SMB2_CAP_DFS
;
403 if (protocol
>= PROTOCOL_SMB2_10
&&
405 lp_oplocks(GLOBAL_SECTION_SNUM
) &&
406 !lp_kernel_oplocks(GLOBAL_SECTION_SNUM
))
408 capabilities
|= SMB2_CAP_LEASING
;
411 if ((protocol
>= PROTOCOL_SMB3_00
) &&
412 (lp_server_smb_encrypt(-1) != SMB_ENCRYPTION_OFF
) &&
413 (in_capabilities
& SMB2_CAP_ENCRYPTION
)) {
414 capabilities
|= SMB2_CAP_ENCRYPTION
;
417 if (protocol
>= PROTOCOL_SMB3_00
&&
418 in_capabilities
& SMB2_CAP_DIRECTORY_LEASING
&&
419 lp_smb3_directory_leases())
421 capabilities
|= SMB2_CAP_DIRECTORY_LEASING
;
425 * 0x10000 (65536) is the maximum allowed message size
430 if (protocol
>= PROTOCOL_SMB2_10
) {
433 if (tsocket_address_is_inet(req
->sconn
->local_address
, "ip")) {
434 p
= tsocket_address_inet_port(req
->sconn
->local_address
);
437 /* largeMTU is not supported over NBT (tcp port 139) */
438 if (p
!= NBT_SMB_PORT
) {
439 capabilities
|= SMB2_CAP_LARGE_MTU
;
440 xconn
->smb2
.credits
.multicredit
= true;
443 * We allow up to almost 16MB.
445 * The maximum PDU size is 0xFFFFFF (16776960)
446 * and we need some space for the header.
448 max_limit
= 0xFFFF00;
453 * the defaults are 8MB, but we'll limit this to max_limit based on
454 * the dialect (64kb for SMB 2.0, 8MB for SMB >= 2.1 with LargeMTU)
456 * user configured values exceeding the limits will be overwritten,
457 * only smaller values will be accepted
460 max_trans
= MIN(max_limit
, lp_smb2_max_trans());
461 max_read
= MIN(max_limit
, lp_smb2_max_read());
462 max_write
= MIN(max_limit
, lp_smb2_max_write());
464 if (in_preauth
!= NULL
) {
467 uint16_t salt_length
;
468 uint16_t selected_preauth
= 0;
473 if (in_preauth
->data
.length
< needed
) {
474 return smbd_smb2_request_error(req
,
475 NT_STATUS_INVALID_PARAMETER
);
478 hash_count
= SVAL(in_preauth
->data
.data
, 0);
479 salt_length
= SVAL(in_preauth
->data
.data
, 2);
481 if (hash_count
== 0) {
482 return smbd_smb2_request_error(req
,
483 NT_STATUS_INVALID_PARAMETER
);
486 p
= in_preauth
->data
.data
+ needed
;
487 needed
+= hash_count
* 2;
488 needed
+= salt_length
;
490 if (in_preauth
->data
.length
< needed
) {
491 return smbd_smb2_request_error(req
,
492 NT_STATUS_INVALID_PARAMETER
);
495 for (i
=0; i
< hash_count
; i
++) {
501 if (v
== SMB2_PREAUTH_INTEGRITY_SHA512
) {
502 selected_preauth
= v
;
507 if (selected_preauth
== 0) {
508 return smbd_smb2_request_error(req
,
509 NT_STATUS_SMB_NO_PREAUTH_INTEGRITY_HASH_OVERLAP
);
512 SSVAL(buf
, 0, 1); /* HashAlgorithmCount */
513 SSVAL(buf
, 2, 32); /* SaltLength */
514 SSVAL(buf
, 4, selected_preauth
);
515 generate_random_buffer(buf
+ 6, 32);
517 status
= smb2_negotiate_context_add(
520 SMB2_PREAUTH_INTEGRITY_CAPABILITIES
,
523 if (!NT_STATUS_IS_OK(status
)) {
524 return smbd_smb2_request_error(req
, status
);
527 req
->preauth
= &req
->xconn
->smb2
.preauth
;
530 if (protocol
>= PROTOCOL_SMB3_00
) {
531 xconn
->smb2
.server
.sign_algo
= SMB2_SIGNING_AES128_CMAC
;
533 xconn
->smb2
.server
.sign_algo
= SMB2_SIGNING_HMAC_SHA256
;
536 if ((capabilities
& SMB2_CAP_ENCRYPTION
) && (in_cipher
!= NULL
)) {
537 const struct smb3_encryption_capabilities
*srv_ciphers
=
538 &default_smb3_capabilities
.encryption
;
539 uint16_t srv_preferred_idx
= UINT16_MAX
;
541 uint16_t cipher_count
;
546 capabilities
&= ~SMB2_CAP_ENCRYPTION
;
548 if (in_cipher
->data
.length
< needed
) {
549 return smbd_smb2_request_error(req
,
550 NT_STATUS_INVALID_PARAMETER
);
553 cipher_count
= SVAL(in_cipher
->data
.data
, 0);
554 if (cipher_count
== 0) {
555 return smbd_smb2_request_error(req
,
556 NT_STATUS_INVALID_PARAMETER
);
559 p
= in_cipher
->data
.data
+ needed
;
560 needed
+= cipher_count
* 2;
562 if (in_cipher
->data
.length
< needed
) {
563 return smbd_smb2_request_error(req
,
564 NT_STATUS_INVALID_PARAMETER
);
567 for (i
=0; i
< cipher_count
; i
++) {
574 for (si
= 0; si
< srv_ciphers
->num_algos
; si
++) {
575 if (srv_ciphers
->algos
[si
] != v
) {
580 * The server ciphers are listed
581 * with the lowest idx being preferred.
583 if (si
< srv_preferred_idx
) {
584 srv_preferred_idx
= si
;
590 if (srv_preferred_idx
!= UINT16_MAX
) {
591 xconn
->smb2
.server
.cipher
=
592 srv_ciphers
->algos
[srv_preferred_idx
];
595 SSVAL(buf
, 0, 1); /* ChiperCount */
596 SSVAL(buf
, 2, xconn
->smb2
.server
.cipher
);
598 status
= smb2_negotiate_context_add(
601 SMB2_ENCRYPTION_CAPABILITIES
,
604 if (!NT_STATUS_IS_OK(status
)) {
605 return smbd_smb2_request_error(req
, status
);
609 if (capabilities
& SMB2_CAP_ENCRYPTION
) {
610 xconn
->smb2
.server
.cipher
= SMB2_ENCRYPTION_AES128_CCM
;
613 if (in_sign_algo
!= NULL
) {
614 const struct smb3_signing_capabilities
*srv_sign_algos
=
615 &default_smb3_capabilities
.signing
;
616 uint16_t srv_preferred_idx
= UINT16_MAX
;
618 uint16_t sign_algo_count
;
622 if (in_sign_algo
->data
.length
< needed
) {
623 return smbd_smb2_request_error(req
,
624 NT_STATUS_INVALID_PARAMETER
);
627 sign_algo_count
= SVAL(in_sign_algo
->data
.data
, 0);
628 if (sign_algo_count
== 0) {
629 return smbd_smb2_request_error(req
,
630 NT_STATUS_INVALID_PARAMETER
);
633 p
= in_sign_algo
->data
.data
+ needed
;
634 needed
+= sign_algo_count
* 2;
636 if (in_sign_algo
->data
.length
< needed
) {
637 return smbd_smb2_request_error(req
,
638 NT_STATUS_INVALID_PARAMETER
);
641 for (i
=0; i
< sign_algo_count
; i
++) {
648 for (si
= 0; si
< srv_sign_algos
->num_algos
; si
++) {
649 if (srv_sign_algos
->algos
[si
] != v
) {
654 * The server sign_algos are listed
655 * with the lowest idx being preferred.
657 if (si
< srv_preferred_idx
) {
658 srv_preferred_idx
= si
;
665 * If we found a match announce it
666 * otherwise we'll keep the default
667 * of SMB2_SIGNING_AES128_CMAC
669 if (srv_preferred_idx
!= UINT16_MAX
) {
672 xconn
->smb2
.server
.sign_algo
=
673 srv_sign_algos
->algos
[srv_preferred_idx
];
675 SSVAL(buf
, 0, 1); /* SigningAlgorithmCount */
676 SSVAL(buf
, 2, xconn
->smb2
.server
.sign_algo
);
678 status
= smb2_negotiate_context_add(
681 SMB2_SIGNING_CAPABILITIES
,
684 if (!NT_STATUS_IS_OK(status
)) {
685 return smbd_smb2_request_error(req
, status
);
690 status
= smb311_capabilities_check(&default_smb3_capabilities
,
693 NT_STATUS_INVALID_PARAMETER
,
696 xconn
->smb2
.server
.sign_algo
,
697 xconn
->smb2
.server
.cipher
);
698 if (!NT_STATUS_IS_OK(status
)) {
699 return smbd_smb2_request_error(req
, status
);
702 if (protocol
>= PROTOCOL_SMB3_00
&&
703 xconn
->client
->server_multi_channel_enabled
)
705 if (in_capabilities
& SMB2_CAP_MULTI_CHANNEL
) {
706 capabilities
|= SMB2_CAP_MULTI_CHANNEL
;
710 security_offset
= SMB2_HDR_BODY
+ 0x40;
713 /* Try SPNEGO auth... */
714 security_buffer
= data_blob_const(negprot_spnego_blob
.data
+ 16,
715 negprot_spnego_blob
.length
- 16);
717 /* for now we want raw NTLMSSP */
718 security_buffer
= data_blob_const(NULL
, 0);
722 /* Client correctly negotiated SMB2 unix extensions. */
723 const uint8_t *buf
= (const uint8_t *)SMB2_CREATE_TAG_POSIX
;
724 status
= smb2_negotiate_context_add(
727 SMB2_POSIX_EXTENSIONS_AVAILABLE
,
730 if (!NT_STATUS_IS_OK(status
)) {
731 return smbd_smb2_request_error(req
, status
);
733 xconn
->smb2
.server
.posix_extensions_negotiated
= true;
736 if (out_c
.num_contexts
!= 0) {
737 status
= smb2_negotiate_context_push(req
,
738 &out_negotiate_context_blob
,
740 if (!NT_STATUS_IS_OK(status
)) {
741 return smbd_smb2_request_error(req
, status
);
745 if (out_negotiate_context_blob
.length
!= 0) {
746 static const uint8_t zeros
[8];
750 outdyn
= data_blob_dup_talloc(req
, security_buffer
);
751 if (outdyn
.length
!= security_buffer
.length
) {
752 return smbd_smb2_request_error(req
,
753 NT_STATUS_NO_MEMORY
);
756 ofs
= security_offset
+ security_buffer
.length
;
757 if ((ofs
% 8) != 0) {
762 ok
= data_blob_append(req
, &outdyn
, zeros
, pad
);
764 return smbd_smb2_request_error(req
,
765 NT_STATUS_NO_MEMORY
);
768 ok
= data_blob_append(req
, &outdyn
,
769 out_negotiate_context_blob
.data
,
770 out_negotiate_context_blob
.length
);
772 return smbd_smb2_request_error(req
,
773 NT_STATUS_NO_MEMORY
);
776 out_negotiate_context_offset
= ofs
;
777 out_negotiate_context_count
= out_c
.num_contexts
;
779 outdyn
= security_buffer
;
782 out_guid_blob
= data_blob_const(negprot_spnego_blob
.data
, 16);
783 status
= GUID_from_ndr_blob(&out_guid_blob
, &out_guid
);
784 if (!NT_STATUS_IS_OK(status
)) {
785 return smbd_smb2_request_error(req
, status
);
788 outbody
= smbd_smb2_generate_outbody(req
, 0x40);
789 if (outbody
.data
== NULL
) {
790 return smbd_smb2_request_error(req
, NT_STATUS_NO_MEMORY
);
793 SSVAL(outbody
.data
, 0x00, 0x40 + 1); /* struct size */
794 SSVAL(outbody
.data
, 0x02,
795 security_mode
); /* security mode */
796 SSVAL(outbody
.data
, 0x04, dialect
); /* dialect revision */
797 SSVAL(outbody
.data
, 0x06,
798 out_negotiate_context_count
); /* reserved/NegotiateContextCount */
799 memcpy(outbody
.data
+ 0x08,
800 out_guid_blob
.data
, 16); /* server guid */
801 SIVAL(outbody
.data
, 0x18,
802 capabilities
); /* capabilities */
803 SIVAL(outbody
.data
, 0x1C, max_trans
); /* max transact size */
804 SIVAL(outbody
.data
, 0x20, max_read
); /* max read size */
805 SIVAL(outbody
.data
, 0x24, max_write
); /* max write size */
806 SBVAL(outbody
.data
, 0x28, now
); /* system time */
807 SBVAL(outbody
.data
, 0x30, 0); /* server start time */
808 SSVAL(outbody
.data
, 0x38,
809 security_offset
); /* security buffer offset */
810 SSVAL(outbody
.data
, 0x3A,
811 security_buffer
.length
); /* security buffer length */
812 SIVAL(outbody
.data
, 0x3C,
813 out_negotiate_context_offset
); /* reserved/NegotiateContextOffset */
815 if (dialect
== SMB2_DIALECT_REVISION_2FF
) {
816 return smbd_smb2_request_done(req
, outbody
, &outdyn
);
819 status
= smbXsrv_connection_init_tables(xconn
, protocol
);
820 if (!NT_STATUS_IS_OK(status
)) {
821 return smbd_smb2_request_error(req
, status
);
824 xconn
->smb2
.client
.capabilities
= in_capabilities
;
825 xconn
->smb2
.client
.security_mode
= in_security_mode
;
826 xconn
->smb2
.client
.guid
= in_guid
;
827 xconn
->smb2
.client
.num_dialects
= dialect_count
;
828 xconn
->smb2
.client
.dialects
= talloc_array(xconn
,
831 if (xconn
->smb2
.client
.dialects
== NULL
) {
832 return smbd_smb2_request_error(req
, NT_STATUS_NO_MEMORY
);
834 for (c
=0; c
< dialect_count
; c
++) {
835 xconn
->smb2
.client
.dialects
[c
] = SVAL(indyn
, c
*2);
838 xconn
->smb2
.server
.capabilities
= capabilities
;
839 xconn
->smb2
.server
.security_mode
= security_mode
;
840 xconn
->smb2
.server
.guid
= out_guid
;
841 xconn
->smb2
.server
.dialect
= dialect
;
842 xconn
->smb2
.server
.max_trans
= max_trans
;
843 xconn
->smb2
.server
.max_read
= max_read
;
844 xconn
->smb2
.server
.max_write
= max_write
;
846 if (xconn
->protocol
< PROTOCOL_SMB2_10
) {
848 * SMB2_02 doesn't support client guids
850 return smbd_smb2_request_done(req
, outbody
, &outdyn
);
853 if (!xconn
->client
->server_multi_channel_enabled
) {
855 * Only deal with the client guid database
856 * if multi-channel is enabled.
858 * But we still need to setup
859 * xconn->client->global->client_guid to
862 xconn
->client
->global
->client_guid
=
863 xconn
->smb2
.client
.guid
;
864 return smbd_smb2_request_done(req
, outbody
, &outdyn
);
867 if (xconn
->smb2
.client
.guid_verified
) {
869 * The connection was passed from another
872 return smbd_smb2_request_done(req
, outbody
, &outdyn
);
875 state
= talloc_zero(req
, struct smbd_smb2_request_process_negprot_state
);
877 return smbd_smb2_request_error(req
, NT_STATUS_NO_MEMORY
);
879 *state
= (struct smbd_smb2_request_process_negprot_state
) {
885 subreq
= smb2srv_client_mc_negprot_send(state
,
886 req
->xconn
->client
->raw_ev_ctx
,
888 if (subreq
== NULL
) {
889 return smbd_smb2_request_error(req
, NT_STATUS_NO_MEMORY
);
891 tevent_req_set_callback(subreq
,
892 smbd_smb2_request_process_negprot_mc_done
,
897 static void smbd_smb2_request_process_negprot_mc_done(struct tevent_req
*subreq
)
899 struct smbd_smb2_request_process_negprot_state
*state
=
900 tevent_req_callback_data(subreq
,
901 struct smbd_smb2_request_process_negprot_state
);
902 struct smbd_smb2_request
*req
= state
->req
;
903 struct smbXsrv_connection
*xconn
= req
->xconn
;
906 status
= smb2srv_client_mc_negprot_recv(subreq
);
908 if (NT_STATUS_EQUAL(status
, NT_STATUS_MESSAGE_RETRIEVED
)) {
910 * The connection was passed to another process
912 * We mark the error as NT_STATUS_CONNECTION_IN_USE,
913 * in order to indicate to low level code if
914 * ctdbd_unregister_ips() or ctdbd_passed_ips()
917 smbXsrv_connection_disconnect_transport(xconn
,
918 NT_STATUS_CONNECTION_IN_USE
);
919 smbd_server_connection_terminate(xconn
,
920 "passed connection");
921 exit_server_cleanly("connection passed");
924 if (!NT_STATUS_IS_OK(status
)) {
925 status
= smbd_smb2_request_error(req
, status
);
926 if (NT_STATUS_IS_OK(status
)) {
931 * The connection was passed to another process
933 smbd_server_connection_terminate(xconn
, nt_errstr(status
));
934 exit_server_cleanly("connection passed");
939 * We're the first connection...
941 status
= smbd_smb2_request_done(req
, state
->outbody
, &state
->outdyn
);
942 if (NT_STATUS_IS_OK(status
)) {
944 * This allows us to support starting smbd under
945 * callgrind and only start the overhead and
946 * instrumentation after the SMB2 negprot,
947 * this allows us to profile only useful
948 * stuff and not all the smbd startup, forking
949 * and multichannel handling.
951 * valgrind --tool=callgrind --instr-atstart=no smbd
953 #ifdef CALLGRIND_START_INSTRUMENTATION
954 CALLGRIND_START_INSTRUMENTATION
;
960 * The connection was passed to another process
962 smbd_server_connection_terminate(xconn
, nt_errstr(status
));
963 exit_server_cleanly("connection passed");
967 /****************************************************************************
968 Generate the spnego negprot reply blob. Return the number of bytes used.
969 ****************************************************************************/
971 DATA_BLOB
negprot_spnego(TALLOC_CTX
*ctx
, struct smbXsrv_connection
*xconn
)
973 DATA_BLOB blob
= data_blob_null
;
974 DATA_BLOB blob_out
= data_blob_null
;
981 struct gensec_security
*gensec_security
;
983 /* See if we can get an SPNEGO blob */
984 status
= auth_generic_prepare(talloc_tos(),
985 xconn
->remote_address
,
986 xconn
->local_address
,
991 * Despite including it above, there is no need to set a
992 * remote address or similar as we are just interested in the
993 * SPNEGO blob, we never keep this context.
996 if (NT_STATUS_IS_OK(status
)) {
997 status
= gensec_start_mech_by_oid(gensec_security
, GENSEC_OID_SPNEGO
);
998 if (NT_STATUS_IS_OK(status
)) {
999 status
= gensec_update(gensec_security
, ctx
,
1000 data_blob_null
, &blob
);
1001 /* If we get the list of OIDs, the 'OK' answer
1002 * is NT_STATUS_MORE_PROCESSING_REQUIRED */
1003 if (!NT_STATUS_EQUAL(status
, NT_STATUS_MORE_PROCESSING_REQUIRED
)) {
1004 DEBUG(0, ("Failed to start SPNEGO handler for negprot OID list!\n"));
1005 blob
= data_blob_null
;
1008 TALLOC_FREE(gensec_security
);
1011 #if defined(WITH_SMB1SERVER)
1012 xconn
->smb1
.negprot
.spnego
= true;
1015 /* strangely enough, NT does not sent the single OID NTLMSSP when
1016 not a ADS member, it sends no OIDs at all
1018 OLD COMMENT : "we can't do this until we teach our session setup parser to know
1019 about raw NTLMSSP (clients send no ASN.1 wrapping if we do this)"
1021 Our sessionsetup code now handles raw NTLMSSP connects, so we can go
1022 back to doing what W2K3 does here. This is needed to make PocketPC 2003
1023 CIFS connections work with SPNEGO. See bugzilla bugs #1828 and #3133
1028 if (blob
.length
== 0 || blob
.data
== NULL
) {
1029 return data_blob_null
;
1032 blob_out
= data_blob_talloc(ctx
, NULL
, 16 + blob
.length
);
1033 if (blob_out
.data
== NULL
) {
1034 data_blob_free(&blob
);
1035 return data_blob_null
;
1038 memset(blob_out
.data
, '\0', 16);
1040 checked_strlcpy(unix_name
, lp_netbios_name(), sizeof(unix_name
));
1041 (void)strlower_m(unix_name
);
1042 push_ascii_nstring(dos_name
, unix_name
);
1043 strlcpy((char *)blob_out
.data
, dos_name
, 17);
1046 /* Fix valgrind 'uninitialized bytes' issue. */
1047 slen
= strlen(dos_name
);
1049 memset(blob_out
.data
+slen
, '\0', 16 - slen
);
1053 memcpy(&blob_out
.data
[16], blob
.data
, blob
.length
);
1055 data_blob_free(&blob
);
1061 * MS-CIFS, 2.2.4.52.2 SMB_COM_NEGOTIATE Response:
1062 * If the server does not support any of the listed dialects, it MUST return a
1063 * DialectIndex of 0XFFFF
1065 #define NO_PROTOCOL_CHOSEN 0xffff
1067 #define PROT_SMB_2_002 0x1000
1068 #define PROT_SMB_2_FF 0x2000
1070 /* List of supported SMB1 protocols, most desired first.
1071 * This is for enabling multi-protocol negotiation in SMB2 when SMB1
1074 static const struct {
1075 const char *proto_name
;
1076 const char *short_name
;
1077 NTSTATUS (*proto_reply_fn
)(struct smb_request
*req
, uint16_t choice
);
1079 } supported_protocols
[] = {
1080 {"SMB 2.???", "SMB2_FF", reply_smb20ff
, PROTOCOL_SMB2_10
},
1081 {"SMB 2.002", "SMB2_02", reply_smb2002
, PROTOCOL_SMB2_02
},
1085 /****************************************************************************
1087 conn POINTER CAN BE NULL HERE !
1088 ****************************************************************************/
1090 NTSTATUS
smb2_multi_protocol_reply_negprot(struct smb_request
*req
)
1093 bool choice_set
= false;
1099 size_t converted_size
;
1100 struct smbXsrv_connection
*xconn
= req
->xconn
;
1101 struct smbd_server_connection
*sconn
= req
->sconn
;
1106 START_PROFILE(SMBnegprot
);
1108 if (req
->buflen
== 0) {
1109 DEBUG(0, ("negprot got no protocols\n"));
1110 reply_nterror(req
, NT_STATUS_INVALID_PARAMETER
);
1111 END_PROFILE(SMBnegprot
);
1112 return NT_STATUS_INVALID_PARAMETER
;
1115 if (req
->buf
[req
->buflen
-1] != '\0') {
1116 DEBUG(0, ("negprot protocols not 0-terminated\n"));
1117 reply_nterror(req
, NT_STATUS_INVALID_PARAMETER
);
1118 END_PROFILE(SMBnegprot
);
1119 return NT_STATUS_INVALID_PARAMETER
;
1122 p
= (const char *)req
->buf
+ 1;
1127 while (smbreq_bufrem(req
, p
) > 0) {
1131 tmp
= talloc_realloc(talloc_tos(), cliprotos
, char *,
1134 DEBUG(0, ("talloc failed\n"));
1135 TALLOC_FREE(cliprotos
);
1136 reply_nterror(req
, NT_STATUS_NO_MEMORY
);
1137 END_PROFILE(SMBnegprot
);
1138 return NT_STATUS_NO_MEMORY
;
1143 if (!pull_ascii_talloc(cliprotos
, &cliprotos
[num_cliprotos
], p
,
1145 DEBUG(0, ("pull_ascii_talloc failed\n"));
1146 TALLOC_FREE(cliprotos
);
1147 reply_nterror(req
, NT_STATUS_NO_MEMORY
);
1148 END_PROFILE(SMBnegprot
);
1149 return NT_STATUS_NO_MEMORY
;
1152 DEBUG(3, ("Requested protocol [%s]\n",
1153 cliprotos
[num_cliprotos
]));
1159 /* possibly reload - change of architecture */
1160 reload_services(sconn
, conn_snum_used
, true);
1163 * Anything higher than PROTOCOL_SMB2_10 still
1164 * needs to go via "SMB 2.???", which is marked
1165 * as PROTOCOL_SMB2_10.
1167 * The real negotiation happens via reply_smb20ff()
1168 * using SMB2 Negotiation.
1170 max_proto
= lp_server_max_protocol();
1171 if (max_proto
> PROTOCOL_SMB2_10
) {
1172 max_proto
= PROTOCOL_SMB2_10
;
1174 min_proto
= lp_server_min_protocol();
1175 if (min_proto
> PROTOCOL_SMB2_10
) {
1176 min_proto
= PROTOCOL_SMB2_10
;
1179 /* Check for protocols, most desirable first */
1180 for (protocol
= 0; supported_protocols
[protocol
].proto_name
; protocol
++) {
1182 if ((supported_protocols
[protocol
].protocol_level
<= max_proto
) &&
1183 (supported_protocols
[protocol
].protocol_level
>= min_proto
))
1184 while (i
< num_cliprotos
) {
1185 if (strequal(cliprotos
[i
],supported_protocols
[protocol
].proto_name
)) {
1199 DBG_NOTICE("No protocol supported !\n");
1200 reply_smb1_outbuf(req
, 1, 0);
1201 SSVAL(req
->outbuf
, smb_vwv0
, NO_PROTOCOL_CHOSEN
);
1203 ok
= smb1_srv_send(xconn
, (char *)req
->outbuf
, false, 0, false);
1205 DBG_NOTICE("smb1_srv_send failed\n");
1207 exit_server_cleanly("no protocol supported\n");
1210 set_remote_proto(supported_protocols
[protocol
].short_name
);
1211 reload_services(sconn
, conn_snum_used
, true);
1212 status
= supported_protocols
[protocol
].proto_reply_fn(req
, choice
);
1213 if (!NT_STATUS_IS_OK(status
)) {
1214 exit_server_cleanly("negprot function failed\n");
1217 DEBUG(3,("Selected protocol %s\n",supported_protocols
[protocol
].proto_name
));
1219 DBG_INFO("negprot index=%zu\n", choice
);
1221 TALLOC_FREE(cliprotos
);
1223 END_PROFILE(SMBnegprot
);
1224 return NT_STATUS_OK
;