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