libcli/smb: fix padding in smb2_create_blob*
[Samba/gebeck_regimport.git] / source3 / smbd / smb2_negprot.c
blob11ec2a5eff4dda7ac65159bface61ffbc22e887a
1 /*
2 Unix SMB/CIFS implementation.
3 Core SMB2 server
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/>.
21 #include "includes.h"
22 #include "smbd/smbd.h"
23 #include "smbd/globals.h"
24 #include "../libcli/smb/smb_common.h"
25 #include "../lib/tsocket/tsocket.h"
26 #include "../librpc/ndr/libndr.h"
29 * this is the entry point if SMB2 is selected via
30 * the SMB negprot and the given dialect.
32 static void reply_smb20xx(struct smb_request *req, uint16_t dialect)
34 uint8_t *smb2_inbuf;
35 uint8_t *smb2_hdr;
36 uint8_t *smb2_body;
37 uint8_t *smb2_dyn;
38 size_t len = 4 + SMB2_HDR_BODY + 0x24 + 2;
40 smb2_inbuf = talloc_zero_array(talloc_tos(), uint8_t, len);
41 if (smb2_inbuf == NULL) {
42 DEBUG(0, ("Could not push spnego blob\n"));
43 reply_nterror(req, NT_STATUS_NO_MEMORY);
44 return;
46 smb2_hdr = smb2_inbuf + 4;
47 smb2_body = smb2_hdr + SMB2_HDR_BODY;
48 smb2_dyn = smb2_body + 0x24;
50 SIVAL(smb2_hdr, SMB2_HDR_PROTOCOL_ID, SMB2_MAGIC);
51 SIVAL(smb2_hdr, SMB2_HDR_LENGTH, SMB2_HDR_BODY);
53 SSVAL(smb2_body, 0x00, 0x0024); /* struct size */
54 SSVAL(smb2_body, 0x02, 0x0001); /* dialect count */
56 SSVAL(smb2_dyn, 0x00, dialect);
58 req->outbuf = NULL;
60 smbd_smb2_first_negprot(req->sconn, smb2_inbuf, len);
61 return;
65 * this is the entry point if SMB2 is selected via
66 * the SMB negprot and the "SMB 2.002" dialect.
68 void reply_smb2002(struct smb_request *req, uint16_t choice)
70 reply_smb20xx(req, SMB2_DIALECT_REVISION_202);
74 * this is the entry point if SMB2 is selected via
75 * the SMB negprot and the "SMB 2.???" dialect.
77 void reply_smb20ff(struct smb_request *req, uint16_t choice)
79 req->sconn->smb2.negprot_2ff = true;
80 reply_smb20xx(req, SMB2_DIALECT_REVISION_2FF);
83 NTSTATUS smbd_smb2_request_process_negprot(struct smbd_smb2_request *req)
85 NTSTATUS status;
86 const uint8_t *inbody;
87 const uint8_t *indyn = NULL;
88 DATA_BLOB outbody;
89 DATA_BLOB outdyn;
90 DATA_BLOB negprot_spnego_blob;
91 uint16_t security_offset;
92 DATA_BLOB security_buffer;
93 size_t expected_dyn_size = 0;
94 size_t c;
95 uint16_t security_mode;
96 uint16_t dialect_count;
97 uint16_t in_security_mode;
98 uint32_t in_capabilities;
99 DATA_BLOB in_guid_blob;
100 struct GUID in_guid;
101 uint16_t dialect = 0;
102 uint32_t capabilities;
103 DATA_BLOB out_guid_blob;
104 struct GUID out_guid;
105 enum protocol_types protocol = PROTOCOL_NONE;
106 uint32_t max_limit;
107 uint32_t max_trans = lp_smb2_max_trans();
108 uint32_t max_read = lp_smb2_max_read();
109 uint32_t max_write = lp_smb2_max_write();
110 NTTIME now = timeval_to_nttime(&req->request_time);
112 status = smbd_smb2_request_verify_sizes(req, 0x24);
113 if (!NT_STATUS_IS_OK(status)) {
114 return smbd_smb2_request_error(req, status);
116 inbody = SMBD_SMB2_IN_BODY_PTR(req);
118 dialect_count = SVAL(inbody, 0x02);
120 in_security_mode = SVAL(inbody, 0x04);
121 in_capabilities = IVAL(inbody, 0x08);
122 in_guid_blob = data_blob_const(inbody + 0x0C, 16);
124 if (dialect_count == 0) {
125 return smbd_smb2_request_error(req, NT_STATUS_INVALID_PARAMETER);
128 status = GUID_from_ndr_blob(&in_guid_blob, &in_guid);
129 if (!NT_STATUS_IS_OK(status)) {
130 return smbd_smb2_request_error(req, status);
133 expected_dyn_size = dialect_count * 2;
134 if (SMBD_SMB2_IN_DYN_LEN(req) < expected_dyn_size) {
135 return smbd_smb2_request_error(req, NT_STATUS_INVALID_PARAMETER);
137 indyn = SMBD_SMB2_IN_DYN_PTR(req);
139 for (c=0; protocol == PROTOCOL_NONE && c < dialect_count; c++) {
140 if (lp_srv_maxprotocol() < PROTOCOL_SMB3_00) {
141 break;
143 if (lp_srv_minprotocol() > PROTOCOL_SMB3_00) {
144 break;
147 dialect = SVAL(indyn, c*2);
148 if (dialect == SMB3_DIALECT_REVISION_300) {
149 protocol = PROTOCOL_SMB3_00;
150 break;
154 for (c=0; protocol == PROTOCOL_NONE && c < dialect_count; c++) {
155 if (lp_srv_maxprotocol() < PROTOCOL_SMB2_24) {
156 break;
158 if (lp_srv_minprotocol() > PROTOCOL_SMB2_24) {
159 break;
162 dialect = SVAL(indyn, c*2);
163 if (dialect == SMB2_DIALECT_REVISION_224) {
164 protocol = PROTOCOL_SMB2_24;
165 break;
169 for (c=0; protocol == PROTOCOL_NONE && c < dialect_count; c++) {
170 if (lp_srv_maxprotocol() < PROTOCOL_SMB2_22) {
171 break;
173 if (lp_srv_minprotocol() > PROTOCOL_SMB2_22) {
174 break;
177 dialect = SVAL(indyn, c*2);
178 if (dialect == SMB2_DIALECT_REVISION_222) {
179 protocol = PROTOCOL_SMB2_22;
180 break;
184 for (c=0; protocol == PROTOCOL_NONE && c < dialect_count; c++) {
185 if (lp_srv_maxprotocol() < PROTOCOL_SMB2_10) {
186 break;
188 if (lp_srv_minprotocol() > PROTOCOL_SMB2_10) {
189 break;
192 dialect = SVAL(indyn, c*2);
193 if (dialect == SMB2_DIALECT_REVISION_210) {
194 protocol = PROTOCOL_SMB2_10;
195 break;
199 for (c=0; protocol == PROTOCOL_NONE && c < dialect_count; c++) {
200 if (lp_srv_maxprotocol() < PROTOCOL_SMB2_02) {
201 break;
203 if (lp_srv_minprotocol() > PROTOCOL_SMB2_02) {
204 break;
207 dialect = SVAL(indyn, c*2);
208 if (dialect == SMB2_DIALECT_REVISION_202) {
209 protocol = PROTOCOL_SMB2_02;
210 break;
214 for (c=0; protocol == PROTOCOL_NONE && c < dialect_count; c++) {
215 if (lp_srv_maxprotocol() < PROTOCOL_SMB2_10) {
216 break;
219 dialect = SVAL(indyn, c*2);
220 if (dialect == SMB2_DIALECT_REVISION_2FF) {
221 if (req->sconn->smb2.negprot_2ff) {
222 req->sconn->smb2.negprot_2ff = false;
223 protocol = PROTOCOL_SMB2_10;
224 break;
229 if (protocol == PROTOCOL_NONE) {
230 return smbd_smb2_request_error(req, NT_STATUS_NOT_SUPPORTED);
233 if (get_remote_arch() != RA_SAMBA) {
234 set_remote_arch(RA_VISTA);
237 /* negprot_spnego() returns a the server guid in the first 16 bytes */
238 negprot_spnego_blob = negprot_spnego(req, req->sconn);
239 if (negprot_spnego_blob.data == NULL) {
240 return smbd_smb2_request_error(req, NT_STATUS_NO_MEMORY);
243 if (negprot_spnego_blob.length < 16) {
244 return smbd_smb2_request_error(req, NT_STATUS_INTERNAL_ERROR);
247 security_mode = SMB2_NEGOTIATE_SIGNING_ENABLED;
248 if (lp_server_signing() == SMB_SIGNING_REQUIRED) {
249 security_mode |= SMB2_NEGOTIATE_SIGNING_REQUIRED;
252 capabilities = 0;
253 if (lp_host_msdfs()) {
254 capabilities |= SMB2_CAP_DFS;
257 if ((protocol >= PROTOCOL_SMB2_24) &&
258 (lp_smb_encrypt(-1) != SMB_SIGNING_OFF))
260 if (in_capabilities & SMB2_CAP_ENCRYPTION) {
261 capabilities |= SMB2_CAP_ENCRYPTION;
266 * 0x10000 (65536) is the maximum allowed message size
267 * for SMB 2.0
269 max_limit = 0x10000;
271 if (protocol >= PROTOCOL_SMB2_10) {
272 int p = 0;
274 if (tsocket_address_is_inet(req->sconn->local_address, "ip")) {
275 p = tsocket_address_inet_port(req->sconn->local_address);
278 /* largeMTU is not supported over NBT (tcp port 139) */
279 if (p != NBT_SMB_PORT) {
280 capabilities |= SMB2_CAP_LARGE_MTU;
281 req->sconn->smb2.supports_multicredit = true;
283 /* SMB >= 2.1 has 1 MB of allowed size */
284 max_limit = 0x100000; /* 1MB */
289 * the defaults are 1MB, but we'll limit this to max_limit based on
290 * the dialect (64kb for SMB2.0, 1MB for SMB2.1 with LargeMTU)
292 * user configured values exceeding the limits will be overwritten,
293 * only smaller values will be accepted
296 max_trans = MIN(max_limit, lp_smb2_max_trans());
297 max_read = MIN(max_limit, lp_smb2_max_read());
298 max_write = MIN(max_limit, lp_smb2_max_write());
300 security_offset = SMB2_HDR_BODY + 0x40;
302 #if 1
303 /* Try SPNEGO auth... */
304 security_buffer = data_blob_const(negprot_spnego_blob.data + 16,
305 negprot_spnego_blob.length - 16);
306 #else
307 /* for now we want raw NTLMSSP */
308 security_buffer = data_blob_const(NULL, 0);
309 #endif
311 out_guid_blob = data_blob_const(negprot_spnego_blob.data, 16);
312 status = GUID_from_ndr_blob(&out_guid_blob, &out_guid);
313 if (!NT_STATUS_IS_OK(status)) {
314 return smbd_smb2_request_error(req, status);
317 outbody = data_blob_talloc(req->out.vector, NULL, 0x40);
318 if (outbody.data == NULL) {
319 return smbd_smb2_request_error(req, NT_STATUS_NO_MEMORY);
322 SSVAL(outbody.data, 0x00, 0x40 + 1); /* struct size */
323 SSVAL(outbody.data, 0x02,
324 security_mode); /* security mode */
325 SSVAL(outbody.data, 0x04, dialect); /* dialect revision */
326 SSVAL(outbody.data, 0x06, 0); /* reserved */
327 memcpy(outbody.data + 0x08,
328 out_guid_blob.data, 16); /* server guid */
329 SIVAL(outbody.data, 0x18,
330 capabilities); /* capabilities */
331 SIVAL(outbody.data, 0x1C, max_trans); /* max transact size */
332 SIVAL(outbody.data, 0x20, max_read); /* max read size */
333 SIVAL(outbody.data, 0x24, max_write); /* max write size */
334 SBVAL(outbody.data, 0x28, now); /* system time */
335 SBVAL(outbody.data, 0x30, 0); /* server start time */
336 SSVAL(outbody.data, 0x38,
337 security_offset); /* security buffer offset */
338 SSVAL(outbody.data, 0x3A,
339 security_buffer.length); /* security buffer length */
340 SIVAL(outbody.data, 0x3C, 0); /* reserved */
342 outdyn = security_buffer;
344 req->sconn->using_smb2 = true;
346 if (dialect != SMB2_DIALECT_REVISION_2FF) {
347 struct smbXsrv_connection *conn = req->sconn->conn;
349 status = smbXsrv_connection_init_tables(conn, protocol);
350 if (!NT_STATUS_IS_OK(status)) {
351 return smbd_smb2_request_error(req, status);
354 conn->smb2.client.capabilities = in_capabilities;
355 conn->smb2.client.security_mode = in_security_mode;
356 conn->smb2.client.guid = in_guid;
357 conn->smb2.client.num_dialects = dialect_count;
358 conn->smb2.client.dialects = talloc_array(conn,
359 uint16_t,
360 dialect_count);
361 if (conn->smb2.client.dialects == NULL) {
362 return smbd_smb2_request_error(req, NT_STATUS_NO_MEMORY);
364 for (c=0; c < dialect_count; c++) {
365 conn->smb2.client.dialects[c] = SVAL(indyn, c*2);
368 conn->smb2.server.capabilities = capabilities;
369 conn->smb2.server.security_mode = security_mode;
370 conn->smb2.server.guid = out_guid;
371 conn->smb2.server.dialect = dialect;
372 conn->smb2.server.max_trans = max_trans;
373 conn->smb2.server.max_read = max_read;
374 conn->smb2.server.max_write = max_write;
376 req->sconn->smb2.max_trans = max_trans;
377 req->sconn->smb2.max_read = max_read;
378 req->sconn->smb2.max_write = max_write;
381 return smbd_smb2_request_done(req, outbody, &outdyn);