bc896aa9240869ee3112b38f4b6a39dda2d4c86a
[kai/samba.git] / source4 / smb_server / smb2 / negprot.c
1 /* 
2    Unix SMB2 implementation.
3    
4    Copyright (C) Andrew Bartlett        2001-2005
5    Copyright (C) Stefan Metzmacher      2005
6    
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.
11    
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.
16    
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/>.
19 */
20
21 #include "includes.h"
22 #include "auth/credentials/credentials.h"
23 #include "auth/auth.h"
24 #include "auth/gensec/gensec.h"
25 #include "libcli/raw/libcliraw.h"
26 #include "libcli/raw/raw_proto.h"
27 #include "libcli/smb2/smb2.h"
28 #include "libcli/smb2/smb2_calls.h"
29 #include "smb_server/smb_server.h"
30 #include "smb_server/smb2/smb2_server.h"
31 #include "smbd/service_stream.h"
32 #include "param/param.h"
33
34 static NTSTATUS smb2srv_negprot_secblob(struct smb2srv_request *req, DATA_BLOB *_blob)
35 {
36         struct gensec_security *gensec_security;
37         DATA_BLOB null_data_blob = data_blob(NULL, 0);
38         DATA_BLOB blob;
39         NTSTATUS nt_status;
40         struct cli_credentials *server_credentials;
41
42         server_credentials = cli_credentials_init(req);
43         if (!server_credentials) {
44                 smbsrv_terminate_connection(req->smb_conn, "Failed to init server credentials\n");
45                 return NT_STATUS_NO_MEMORY;
46         }
47
48         cli_credentials_set_conf(server_credentials, req->smb_conn->lp_ctx);
49         nt_status = cli_credentials_set_machine_account(server_credentials, req->smb_conn->lp_ctx);
50         if (!NT_STATUS_IS_OK(nt_status)) {
51                 DEBUG(10, ("Failed to obtain server credentials, perhaps a standalone server?: %s\n", nt_errstr(nt_status)));
52                 talloc_free(server_credentials);
53                 server_credentials = NULL;
54         }
55
56         req->smb_conn->negotiate.server_credentials = talloc_steal(req->smb_conn, server_credentials);
57
58         nt_status = samba_server_gensec_start(req,
59                                               req->smb_conn->connection->event.ctx,
60                                               req->smb_conn->connection->msg_ctx,
61                                               req->smb_conn->lp_ctx,
62                                               server_credentials,
63                                               "cifs",
64                                               &gensec_security);
65         if (!NT_STATUS_IS_OK(nt_status)) {
66                 DEBUG(0, ("Failed to start GENSEC: %s\n", nt_errstr(nt_status)));
67                 smbsrv_terminate_connection(req->smb_conn, "Failed to start GENSEC\n");
68                 return nt_status;
69         }
70
71         gensec_set_target_service(gensec_security, "cifs");
72
73         gensec_set_credentials(gensec_security, server_credentials);
74
75         nt_status = gensec_start_mech_by_oid(gensec_security, GENSEC_OID_SPNEGO);
76         if (!NT_STATUS_IS_OK(nt_status)) {
77                 DEBUG(0, ("Failed to start SPNEGO: %s\n", nt_errstr(nt_status)));
78                 smbsrv_terminate_connection(req->smb_conn, "Failed to start SPNEGO\n");
79                 return nt_status;
80         }
81
82         nt_status = gensec_update(gensec_security, req, null_data_blob, &blob);
83         if (!NT_STATUS_IS_OK(nt_status) && !NT_STATUS_EQUAL(nt_status, NT_STATUS_MORE_PROCESSING_REQUIRED)) {
84                 DEBUG(0, ("Failed to get SPNEGO to give us the first token: %s\n", nt_errstr(nt_status)));
85                 smbsrv_terminate_connection(req->smb_conn, "Failed to start SPNEGO - no first token\n");
86                 return nt_status;
87         }
88
89         *_blob = blob;
90         return NT_STATUS_OK;
91 }
92
93 static NTSTATUS smb2srv_negprot_backend(struct smb2srv_request *req, struct smb2_negprot *io)
94 {
95         NTSTATUS status;
96         struct timeval current_time;
97         struct timeval boot_time;
98         uint16_t i;
99         uint16_t dialect = 0;
100
101         /* we only do one dialect for now */
102         if (io->in.dialect_count < 1) {
103                 return NT_STATUS_NOT_SUPPORTED;
104         }
105         for (i=0; i < io->in.dialect_count; i++) {
106                 dialect = io->in.dialects[i];
107                 if (dialect == SMB2_DIALECT_REVISION_202) {
108                         break;
109                 }
110         }
111         if (dialect != SMB2_DIALECT_REVISION_202) {
112                 DEBUG(0,("Got unexpected SMB2 dialect %u\n", dialect));
113                 return NT_STATUS_NOT_SUPPORTED;
114         }
115
116         req->smb_conn->negotiate.protocol = PROTOCOL_SMB2_02;
117
118         current_time = timeval_current(); /* TODO: handle timezone?! */
119         boot_time = timeval_current(); /* TODO: fix me */
120
121         ZERO_STRUCT(io->out);
122         switch (lpcfg_server_signing(req->smb_conn->lp_ctx)) {
123         case SMB_SIGNING_OFF:
124                 io->out.security_mode = 0;
125                 break;
126         case SMB_SIGNING_SUPPORTED:
127         case SMB_SIGNING_AUTO:
128                 io->out.security_mode = SMB2_NEGOTIATE_SIGNING_ENABLED;
129                 break;
130         case SMB_SIGNING_REQUIRED:
131                 io->out.security_mode = SMB2_NEGOTIATE_SIGNING_ENABLED | SMB2_NEGOTIATE_SIGNING_REQUIRED;
132                 /* force signing on immediately */
133                 req->smb_conn->smb2_signing_required = true;
134                 break;
135         }
136         io->out.dialect_revision   = dialect;
137         io->out.capabilities       = 0;
138         io->out.max_transact_size  = lpcfg_parm_ulong(req->smb_conn->lp_ctx, NULL,
139                                                    "smb2", "max transaction size", 0x10000);
140         io->out.max_read_size      = lpcfg_parm_ulong(req->smb_conn->lp_ctx, NULL,
141                                                    "smb2", "max read size", 0x10000);
142         io->out.max_write_size     = lpcfg_parm_ulong(req->smb_conn->lp_ctx, NULL,
143                                                    "smb2", "max write size", 0x10000);
144         io->out.system_time        = timeval_to_nttime(&current_time);
145         io->out.server_start_time  = timeval_to_nttime(&boot_time);
146         io->out.reserved2          = 0;
147         status = smb2srv_negprot_secblob(req, &io->out.secblob);
148         NT_STATUS_NOT_OK_RETURN(status);
149
150         return NT_STATUS_OK;
151 }
152
153 static void smb2srv_negprot_send(struct smb2srv_request *req, struct smb2_negprot *io)
154 {
155         NTSTATUS status;
156
157         if (NT_STATUS_IS_ERR(req->status)) {
158                 smb2srv_send_error(req, req->status); /* TODO: is this correct? */
159                 return;
160         }
161
162         status = smb2srv_setup_reply(req, 0x40, true, io->out.secblob.length);
163         if (!NT_STATUS_IS_OK(status)) {
164                 smbsrv_terminate_connection(req->smb_conn, nt_errstr(status));
165                 talloc_free(req);
166                 return;
167         }
168
169         SSVAL(req->out.body, 0x02, io->out.security_mode);
170         SIVAL(req->out.body, 0x04, io->out.dialect_revision);
171         SIVAL(req->out.body, 0x06, io->out.reserved);
172         status = smbcli_push_guid(req->out.body, 0x08, &io->out.server_guid);
173         if (!NT_STATUS_IS_OK(status)) {
174                 smbsrv_terminate_connection(req->smb_conn, nt_errstr(status));
175                 talloc_free(req);
176                 return;
177         }
178         SIVAL(req->out.body, 0x18, io->out.capabilities);
179         SIVAL(req->out.body, 0x1C, io->out.max_transact_size);
180         SIVAL(req->out.body, 0x20, io->out.max_read_size);
181         SIVAL(req->out.body, 0x24, io->out.max_write_size);
182         push_nttime(req->out.body, 0x28, io->out.system_time);
183         push_nttime(req->out.body, 0x30, io->out.server_start_time);
184         SIVAL(req->out.body, 0x3C, io->out.reserved2);
185         status = smb2_push_o16s16_blob(&req->out, 0x38, io->out.secblob);
186         if (!NT_STATUS_IS_OK(status)) {
187                 smbsrv_terminate_connection(req->smb_conn, nt_errstr(status));
188                 talloc_free(req);
189                 return;
190         }
191
192         smb2srv_send_reply(req);
193 }
194
195 void smb2srv_negprot_recv(struct smb2srv_request *req)
196 {
197         struct smb2_negprot *io;
198         int i;
199
200         if (req->in.body_size < 0x26) {
201                 smbsrv_terminate_connection(req->smb_conn, "Bad body size in SMB2 negprot");
202                 return;
203         }
204
205         io = talloc(req, struct smb2_negprot);
206         if (!io) {
207                 smbsrv_terminate_connection(req->smb_conn, nt_errstr(NT_STATUS_NO_MEMORY));
208                 talloc_free(req);
209                 return;
210         }
211
212         io->in.dialect_count = SVAL(req->in.body, 0x02);
213         io->in.security_mode = SVAL(req->in.body, 0x04);
214         io->in.reserved      = SVAL(req->in.body, 0x06);
215         io->in.capabilities  = IVAL(req->in.body, 0x08);
216         req->status = smbcli_pull_guid(req->in.body, 0xC, &io->in.client_guid);
217         if (!NT_STATUS_IS_OK(req->status)) {
218                 smbsrv_terminate_connection(req->smb_conn, "Bad GUID in SMB2 negprot");
219                 talloc_free(req);
220                 return;
221         }
222         io->in.start_time = smbcli_pull_nttime(req->in.body, 0x1C);
223
224         io->in.dialects = talloc_array(req, uint16_t, io->in.dialect_count);
225         if (io->in.dialects == NULL) {
226                 smbsrv_terminate_connection(req->smb_conn, nt_errstr(NT_STATUS_NO_MEMORY));
227                 talloc_free(req);
228                 return;
229         }
230         for (i=0;i<io->in.dialect_count;i++) {
231                 io->in.dialects[i] = SVAL(req->in.body, 0x24+i*2);
232         }
233
234         req->status = smb2srv_negprot_backend(req, io);
235
236         if (req->control_flags & SMB2SRV_REQ_CTRL_FLAG_NOT_REPLY) {
237                 talloc_free(req);
238                 return;
239         }
240         smb2srv_negprot_send(req, io);
241 }
242
243 /*
244  * reply to a SMB negprot request with dialect "SMB 2.002"
245  */
246 void smb2srv_reply_smb_negprot(struct smbsrv_request *smb_req)
247 {
248         struct smb2srv_request *req;
249         uint32_t body_fixed_size = 0x26;
250
251         req = talloc_zero(smb_req->smb_conn, struct smb2srv_request);
252         if (!req) goto nomem;
253         req->smb_conn           = smb_req->smb_conn;
254         req->request_time       = smb_req->request_time;
255         talloc_steal(req, smb_req);
256
257         req->in.size      = NBT_HDR_SIZE+SMB2_HDR_BODY+body_fixed_size;
258         req->in.allocated = req->in.size;
259         req->in.buffer    = talloc_array(req, uint8_t, req->in.allocated);
260         if (!req->in.buffer) goto nomem;
261         req->in.hdr       = req->in.buffer + NBT_HDR_SIZE;
262         req->in.body      = req->in.hdr + SMB2_HDR_BODY;
263         req->in.body_size = body_fixed_size;
264         req->in.dynamic   = NULL;
265
266         smb2srv_setup_bufinfo(req);
267
268         SIVAL(req->in.hdr, 0,                           SMB2_MAGIC);
269         SSVAL(req->in.hdr, SMB2_HDR_LENGTH,             SMB2_HDR_BODY);
270         SSVAL(req->in.hdr, SMB2_HDR_EPOCH,              0);
271         SIVAL(req->in.hdr, SMB2_HDR_STATUS,             0);
272         SSVAL(req->in.hdr, SMB2_HDR_OPCODE,             SMB2_OP_NEGPROT);
273         SSVAL(req->in.hdr, SMB2_HDR_CREDIT,             0);
274         SIVAL(req->in.hdr, SMB2_HDR_FLAGS,              0);
275         SIVAL(req->in.hdr, SMB2_HDR_NEXT_COMMAND,       0);
276         SBVAL(req->in.hdr, SMB2_HDR_MESSAGE_ID,         0);
277         SIVAL(req->in.hdr, SMB2_HDR_PID,                0);
278         SIVAL(req->in.hdr, SMB2_HDR_TID,                0);
279         SBVAL(req->in.hdr, SMB2_HDR_SESSION_ID,         0);
280         memset(req->in.hdr+SMB2_HDR_SIGNATURE, 0, 16);
281
282         /* this seems to be a bug, they use 0x24 but the length is 0x26 */
283         SSVAL(req->in.body, 0x00, 0x24);
284
285         SSVAL(req->in.body, 0x02, 1);
286         memset(req->in.body+0x04, 0, 32);
287         SSVAL(req->in.body, 0x24, SMB2_DIALECT_REVISION_202);
288
289         smb2srv_negprot_recv(req);
290         return;
291 nomem:
292         smbsrv_terminate_connection(smb_req->smb_conn, nt_errstr(NT_STATUS_NO_MEMORY));
293         talloc_free(req);
294         return;
295 }