tdb: allow reads after prepare commit
[Samba/aatanasov.git] / source3 / smbd / smb2_negprot.c
blob2c6449dbaa83380320f01dbfac7413b572a0b8ba
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/globals.h"
23 #include "../libcli/smb/smb_common.h"
25 extern enum protocol_types Protocol;
28 * this is the entry point if SMB2 is selected via
29 * the SMB negprot
31 void reply_smb2002(struct smb_request *req, uint16_t choice)
33 uint8_t *smb2_inbuf;
34 uint8_t *smb2_hdr;
35 uint8_t *smb2_body;
36 uint8_t *smb2_dyn;
37 size_t len = 4 + SMB2_HDR_BODY + 0x24 + 2;
39 smb2_inbuf = talloc_zero_array(talloc_tos(), uint8_t, len);
40 if (smb2_inbuf == NULL) {
41 DEBUG(0, ("Could not push spnego blob\n"));
42 reply_nterror(req, NT_STATUS_NO_MEMORY);
43 return;
45 smb2_hdr = smb2_inbuf + 4;
46 smb2_body = smb2_hdr + SMB2_HDR_BODY;
47 smb2_dyn = smb2_body + 0x24;
49 SIVAL(smb2_hdr, SMB2_HDR_PROTOCOL_ID, SMB2_MAGIC);
50 SIVAL(smb2_hdr, SMB2_HDR_LENGTH, SMB2_HDR_BODY);
52 SSVAL(smb2_body, 0x00, 0x0024); /* struct size */
53 SSVAL(smb2_body, 0x02, 0x0001); /* dialect count */
55 SSVAL(smb2_dyn, 0x00, 0x0202); /* dialect 2.002 */
57 req->outbuf = NULL;
59 smbd_smb2_first_negprot(smbd_server_conn, smb2_inbuf, len);
60 return;
63 NTSTATUS smbd_smb2_request_process_negprot(struct smbd_smb2_request *req)
65 const uint8_t *inbody;
66 const uint8_t *indyn = NULL;
67 int i = req->current_idx;
68 DATA_BLOB outbody;
69 DATA_BLOB outdyn;
70 DATA_BLOB negprot_spnego_blob;
71 uint16_t security_offset;
72 DATA_BLOB security_buffer;
73 size_t expected_body_size = 0x24;
74 size_t body_size;
75 size_t expected_dyn_size = 0;
76 size_t c;
77 uint16_t security_mode;
78 uint16_t dialect_count;
79 uint16_t dialect = 0;
80 uint32_t capabilities;
82 /* TODO: drop the connection with INVALI_PARAMETER */
84 if (req->in.vector[i+1].iov_len != (expected_body_size & 0xFFFFFFFE)) {
85 return smbd_smb2_request_error(req, NT_STATUS_INVALID_PARAMETER);
88 inbody = (const uint8_t *)req->in.vector[i+1].iov_base;
90 body_size = SVAL(inbody, 0x00);
91 if (body_size != expected_body_size) {
92 return smbd_smb2_request_error(req, NT_STATUS_INVALID_PARAMETER);
95 dialect_count = SVAL(inbody, 0x02);
96 if (dialect_count == 0) {
97 return smbd_smb2_request_error(req, NT_STATUS_INVALID_PARAMETER);
100 expected_dyn_size = dialect_count * 2;
101 if (req->in.vector[i+2].iov_len < expected_dyn_size) {
102 return smbd_smb2_request_error(req, NT_STATUS_INVALID_PARAMETER);
104 indyn = (const uint8_t *)req->in.vector[i+2].iov_base;
106 for (c=0; c < dialect_count; c++) {
107 dialect = SVAL(indyn, c*2);
108 if (dialect == SMB2_DIALECT_REVISION_202) {
109 break;
113 if (dialect != SMB2_DIALECT_REVISION_202) {
114 return smbd_smb2_request_error(req, NT_STATUS_INVALID_PARAMETER);
117 Protocol = PROTOCOL_SMB2;
119 if (get_remote_arch() != RA_SAMBA) {
120 set_remote_arch(RA_VISTA);
123 /* negprot_spnego() returns a the server guid in the first 16 bytes */
124 negprot_spnego_blob = negprot_spnego();
125 if (negprot_spnego_blob.data == NULL) {
126 return smbd_smb2_request_error(req, NT_STATUS_NO_MEMORY);
128 talloc_steal(req, negprot_spnego_blob.data);
130 if (negprot_spnego_blob.length < 16) {
131 return smbd_smb2_request_error(req, NT_STATUS_INTERNAL_ERROR);
134 security_mode = SMB2_NEGOTIATE_SIGNING_ENABLED;
135 if (lp_server_signing() == Required) {
136 security_mode |= SMB2_NEGOTIATE_SIGNING_REQUIRED;
139 capabilities = 0;
140 if (lp_host_msdfs()) {
141 capabilities |= SMB2_CAP_DFS;
144 security_offset = SMB2_HDR_BODY + 0x40;
146 #if 1
147 /* Try SPNEGO auth... */
148 security_buffer = data_blob_const(negprot_spnego_blob.data + 16,
149 negprot_spnego_blob.length - 16);
150 #else
151 /* for now we want raw NTLMSSP */
152 security_buffer = data_blob_const(NULL, 0);
153 #endif
155 outbody = data_blob_talloc(req->out.vector, NULL, 0x40);
156 if (outbody.data == NULL) {
157 return smbd_smb2_request_error(req, NT_STATUS_NO_MEMORY);
160 SSVAL(outbody.data, 0x00, 0x40 + 1); /* struct size */
161 SSVAL(outbody.data, 0x02,
162 security_mode); /* security mode */
163 SSVAL(outbody.data, 0x04, dialect); /* dialect revision */
164 SSVAL(outbody.data, 0x06, 0); /* reserved */
165 memcpy(outbody.data + 0x08,
166 negprot_spnego_blob.data, 16); /* server guid */
167 SIVAL(outbody.data, 0x18,
168 capabilities); /* capabilities */
169 SIVAL(outbody.data, 0x1C, 0x00010000); /* max transact size */
170 SIVAL(outbody.data, 0x20, 0x00010000); /* max read size */
171 SIVAL(outbody.data, 0x24, 0x00010000); /* max write size */
172 SBVAL(outbody.data, 0x28, 0); /* system time */
173 SBVAL(outbody.data, 0x30, 0); /* server start time */
174 SSVAL(outbody.data, 0x38,
175 security_offset); /* security buffer offset */
176 SSVAL(outbody.data, 0x3A,
177 security_buffer.length); /* security buffer length */
178 SIVAL(outbody.data, 0x3C, 0); /* reserved */
180 outdyn = security_buffer;
182 return smbd_smb2_request_done(req, outbody, &outdyn);