s4:provision Clarify that we set, rather than modify, objectGUID values
[Samba.git] / source4 / smb_server / smb / sesssetup.c
blob37f69abc12bcaa3b21ea1bcfc8ce3dfe0aa27fb9
2 /*
3 Unix SMB/CIFS implementation.
4 handle SMBsessionsetup
5 Copyright (C) Andrew Tridgell 1998-2001
6 Copyright (C) Andrew Bartlett <abartlet@samba.org> 2001-2005
7 Copyright (C) Jim McDonough 2002
8 Copyright (C) Luke Howard 2003
9 Copyright (C) Stefan Metzmacher 2005
11 This program is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 3 of the License, or
14 (at your option) any later version.
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
21 You should have received a copy of the GNU General Public License
22 along with this program. If not, see <http://www.gnu.org/licenses/>.
25 #include "includes.h"
26 #include "version.h"
27 #include "auth/gensec/gensec.h"
28 #include "auth/auth.h"
29 #include "smb_server/smb_server.h"
30 #include "smbd/service_stream.h"
31 #include "param/param.h"
34 setup the OS, Lanman and domain portions of a session setup reply
36 static void sesssetup_common_strings(struct smbsrv_request *req,
37 char **os, char **lanman, char **domain)
39 (*os) = talloc_asprintf(req, "Unix");
40 (*lanman) = talloc_asprintf(req, "Samba %s", SAMBA_VERSION_STRING);
41 (*domain) = talloc_asprintf(req, "%s",
42 lp_workgroup(req->smb_conn->lp_ctx));
45 static void smbsrv_sesssetup_backend_send(struct smbsrv_request *req,
46 union smb_sesssetup *sess,
47 NTSTATUS status)
49 if (NT_STATUS_IS_OK(status)) {
50 req->smb_conn->negotiate.done_sesssetup = true;
51 /* we need to keep the session long term */
52 req->session = talloc_steal(req->smb_conn, req->session);
54 smbsrv_reply_sesssetup_send(req, sess, status);
57 static void sesssetup_old_send(struct auth_check_password_request *areq,
58 void *private_data)
60 struct smbsrv_request *req = talloc_get_type(private_data, struct smbsrv_request);
61 union smb_sesssetup *sess = talloc_get_type(req->io_ptr, union smb_sesssetup);
62 struct auth_serversupplied_info *server_info = NULL;
63 struct auth_session_info *session_info;
64 struct smbsrv_session *smb_sess;
65 NTSTATUS status;
67 status = auth_check_password_recv(areq, req, &server_info);
68 if (!NT_STATUS_IS_OK(status)) goto failed;
70 /* This references server_info into session_info */
71 status = auth_generate_session_info(req, req->smb_conn->connection->event.ctx, req->smb_conn->lp_ctx,
72 server_info, &session_info);
73 if (!NT_STATUS_IS_OK(status)) goto failed;
75 /* allocate a new session */
76 smb_sess = smbsrv_session_new(req->smb_conn, req, NULL);
77 if (!smb_sess) {
78 status = NT_STATUS_INSUFFICIENT_RESOURCES;
79 goto failed;
82 /* Ensure this is marked as a 'real' vuid, not one
83 * simply valid for the session setup leg */
84 status = smbsrv_session_sesssetup_finished(smb_sess, session_info);
85 if (!NT_STATUS_IS_OK(status)) goto failed;
87 /* To correctly process any AndX packet (like a tree connect)
88 * we need to fill in the session on the request here */
89 req->session = smb_sess;
90 sess->old.out.vuid = smb_sess->vuid;
92 failed:
93 status = auth_nt_status_squash(status);
94 smbsrv_sesssetup_backend_send(req, sess, status);
98 handler for old style session setup
100 static void sesssetup_old(struct smbsrv_request *req, union smb_sesssetup *sess)
102 struct auth_usersupplied_info *user_info = NULL;
103 struct socket_address *remote_address;
104 const char *remote_machine = NULL;
106 sess->old.out.vuid = 0;
107 sess->old.out.action = 0;
109 sesssetup_common_strings(req,
110 &sess->old.out.os,
111 &sess->old.out.lanman,
112 &sess->old.out.domain);
114 if (!req->smb_conn->negotiate.done_sesssetup) {
115 req->smb_conn->negotiate.max_send = sess->old.in.bufsize;
118 if (req->smb_conn->negotiate.calling_name) {
119 remote_machine = req->smb_conn->negotiate.calling_name->name;
122 remote_address = socket_get_peer_addr(req->smb_conn->connection->socket, req);
123 if (!remote_address) goto nomem;
125 if (!remote_machine) {
126 remote_machine = remote_address->addr;
129 user_info = talloc(req, struct auth_usersupplied_info);
130 if (!user_info) goto nomem;
132 user_info->mapped_state = false;
133 user_info->logon_parameters = 0;
134 user_info->flags = 0;
135 user_info->client.account_name = sess->old.in.user;
136 user_info->client.domain_name = sess->old.in.domain;
137 user_info->workstation_name = remote_machine;
138 user_info->remote_host = talloc_steal(user_info, remote_address);
140 user_info->password_state = AUTH_PASSWORD_RESPONSE;
141 user_info->password.response.lanman = sess->old.in.password;
142 user_info->password.response.lanman.data = talloc_steal(user_info, sess->old.in.password.data);
143 user_info->password.response.nt = data_blob(NULL, 0);
145 auth_check_password_send(req->smb_conn->negotiate.auth_context, user_info,
146 sesssetup_old_send, req);
147 return;
149 nomem:
150 smbsrv_sesssetup_backend_send(req, sess, NT_STATUS_NO_MEMORY);
153 static void sesssetup_nt1_send(struct auth_check_password_request *areq,
154 void *private_data)
156 struct smbsrv_request *req = talloc_get_type(private_data, struct smbsrv_request);
157 union smb_sesssetup *sess = talloc_get_type(req->io_ptr, union smb_sesssetup);
158 struct auth_serversupplied_info *server_info = NULL;
159 struct auth_session_info *session_info;
160 struct smbsrv_session *smb_sess;
161 NTSTATUS status;
163 status = auth_check_password_recv(areq, req, &server_info);
164 if (!NT_STATUS_IS_OK(status)) goto failed;
166 /* This references server_info into session_info */
167 status = auth_generate_session_info(req, req->smb_conn->connection->event.ctx,
168 req->smb_conn->lp_ctx,
169 server_info, &session_info);
170 if (!NT_STATUS_IS_OK(status)) goto failed;
172 /* allocate a new session */
173 smb_sess = smbsrv_session_new(req->smb_conn, req, NULL);
174 if (!smb_sess) {
175 status = NT_STATUS_INSUFFICIENT_RESOURCES;
176 goto failed;
179 /* Ensure this is marked as a 'real' vuid, not one
180 * simply valid for the session setup leg */
181 status = smbsrv_session_sesssetup_finished(smb_sess, session_info);
182 if (!NT_STATUS_IS_OK(status)) goto failed;
184 /* To correctly process any AndX packet (like a tree connect)
185 * we need to fill in the session on the request here */
186 req->session = smb_sess;
187 sess->nt1.out.vuid = smb_sess->vuid;
189 if (!smbsrv_setup_signing(req->smb_conn, &session_info->session_key, &sess->nt1.in.password2)) {
190 /* Already signing, or disabled */
191 goto done;
194 done:
195 status = NT_STATUS_OK;
196 failed:
197 status = auth_nt_status_squash(status);
198 smbsrv_sesssetup_backend_send(req, sess, status);
202 handler for NT1 style session setup
204 static void sesssetup_nt1(struct smbsrv_request *req, union smb_sesssetup *sess)
206 NTSTATUS status;
207 struct auth_context *auth_context;
208 struct auth_usersupplied_info *user_info = NULL;
209 struct socket_address *remote_address;
210 const char *remote_machine = NULL;
212 sess->nt1.out.vuid = 0;
213 sess->nt1.out.action = 0;
215 sesssetup_common_strings(req,
216 &sess->nt1.out.os,
217 &sess->nt1.out.lanman,
218 &sess->nt1.out.domain);
220 if (!req->smb_conn->negotiate.done_sesssetup) {
221 req->smb_conn->negotiate.max_send = sess->nt1.in.bufsize;
222 req->smb_conn->negotiate.client_caps = sess->nt1.in.capabilities;
225 if (req->smb_conn->negotiate.oid) {
226 if (sess->nt1.in.user && *sess->nt1.in.user) {
227 /* We can't accept a normal login, because we
228 * don't have a challenge */
229 status = NT_STATUS_LOGON_FAILURE;
230 goto failed;
233 /* TODO: should we use just "anonymous" here? */
234 status = auth_context_create(req,
235 req->smb_conn->connection->event.ctx,
236 req->smb_conn->connection->msg_ctx,
237 req->smb_conn->lp_ctx,
238 &auth_context);
239 if (!NT_STATUS_IS_OK(status)) goto failed;
240 } else {
241 auth_context = req->smb_conn->negotiate.auth_context;
244 if (req->smb_conn->negotiate.calling_name) {
245 remote_machine = req->smb_conn->negotiate.calling_name->name;
248 remote_address = socket_get_peer_addr(req->smb_conn->connection->socket, req);
249 if (!remote_address) goto nomem;
251 if (!remote_machine) {
252 remote_machine = remote_address->addr;
255 user_info = talloc(req, struct auth_usersupplied_info);
256 if (!user_info) goto nomem;
258 user_info->mapped_state = false;
259 user_info->logon_parameters = 0;
260 user_info->flags = 0;
261 user_info->client.account_name = sess->nt1.in.user;
262 user_info->client.domain_name = sess->nt1.in.domain;
263 user_info->workstation_name = remote_machine;
264 user_info->remote_host = talloc_steal(user_info, remote_address);
266 user_info->password_state = AUTH_PASSWORD_RESPONSE;
267 user_info->password.response.lanman = sess->nt1.in.password1;
268 user_info->password.response.lanman.data = talloc_steal(user_info, sess->nt1.in.password1.data);
269 user_info->password.response.nt = sess->nt1.in.password2;
270 user_info->password.response.nt.data = talloc_steal(user_info, sess->nt1.in.password2.data);
272 auth_check_password_send(auth_context, user_info,
273 sesssetup_nt1_send, req);
274 return;
276 nomem:
277 status = NT_STATUS_NO_MEMORY;
278 failed:
279 status = auth_nt_status_squash(status);
280 smbsrv_sesssetup_backend_send(req, sess, status);
283 struct sesssetup_spnego_state {
284 struct smbsrv_request *req;
285 union smb_sesssetup *sess;
286 struct smbsrv_session *smb_sess;
289 static void sesssetup_spnego_send(struct gensec_update_request *greq, void *private_data)
291 struct sesssetup_spnego_state *s = talloc_get_type(private_data,
292 struct sesssetup_spnego_state);
293 struct smbsrv_request *req = s->req;
294 union smb_sesssetup *sess = s->sess;
295 struct smbsrv_session *smb_sess = s->smb_sess;
296 struct auth_session_info *session_info = NULL;
297 NTSTATUS status;
298 NTSTATUS skey_status;
299 DATA_BLOB session_key;
301 status = gensec_update_recv(greq, req, &sess->spnego.out.secblob);
302 if (NT_STATUS_EQUAL(status, NT_STATUS_MORE_PROCESSING_REQUIRED)) {
303 goto done;
304 } else if (!NT_STATUS_IS_OK(status)) {
305 goto failed;
308 status = gensec_session_info(smb_sess->gensec_ctx, &session_info);
309 if (!NT_STATUS_IS_OK(status)) goto failed;
311 skey_status = gensec_session_key(smb_sess->gensec_ctx, &session_key);
312 if (NT_STATUS_IS_OK(skey_status)) {
313 smbsrv_setup_signing(req->smb_conn, &session_key, NULL);
316 /* Ensure this is marked as a 'real' vuid, not one
317 * simply valid for the session setup leg */
318 status = smbsrv_session_sesssetup_finished(smb_sess, session_info);
319 if (!NT_STATUS_IS_OK(status)) goto failed;
321 req->session = smb_sess;
323 done:
324 sess->spnego.out.vuid = smb_sess->vuid;
325 failed:
326 status = auth_nt_status_squash(status);
327 smbsrv_sesssetup_backend_send(req, sess, status);
328 if (!NT_STATUS_IS_OK(status) &&
329 !NT_STATUS_EQUAL(status, NT_STATUS_MORE_PROCESSING_REQUIRED)) {
330 talloc_free(smb_sess);
335 handler for SPNEGO style session setup
337 static void sesssetup_spnego(struct smbsrv_request *req, union smb_sesssetup *sess)
339 NTSTATUS status;
340 struct smbsrv_session *smb_sess = NULL;
341 struct sesssetup_spnego_state *s = NULL;
342 uint16_t vuid;
344 sess->spnego.out.vuid = 0;
345 sess->spnego.out.action = 0;
347 sesssetup_common_strings(req,
348 &sess->spnego.out.os,
349 &sess->spnego.out.lanman,
350 &sess->spnego.out.workgroup);
352 if (!req->smb_conn->negotiate.done_sesssetup) {
353 req->smb_conn->negotiate.max_send = sess->spnego.in.bufsize;
354 req->smb_conn->negotiate.client_caps = sess->spnego.in.capabilities;
357 vuid = SVAL(req->in.hdr,HDR_UID);
359 /* lookup an existing session */
360 smb_sess = smbsrv_session_find_sesssetup(req->smb_conn, vuid);
361 if (!smb_sess) {
362 struct gensec_security *gensec_ctx;
364 status = samba_server_gensec_start(req,
365 req->smb_conn->connection->event.ctx,
366 req->smb_conn->connection->msg_ctx,
367 req->smb_conn->lp_ctx,
368 req->smb_conn->negotiate.server_credentials,
369 "cifs",
370 &gensec_ctx);
371 if (!NT_STATUS_IS_OK(status)) {
372 DEBUG(1, ("Failed to start GENSEC server code: %s\n", nt_errstr(status)));
373 goto failed;
376 gensec_want_feature(gensec_ctx, GENSEC_FEATURE_SESSION_KEY);
378 status = gensec_start_mech_by_oid(gensec_ctx, req->smb_conn->negotiate.oid);
379 if (!NT_STATUS_IS_OK(status)) {
380 DEBUG(1, ("Failed to start GENSEC %s server code: %s\n",
381 gensec_get_name_by_oid(gensec_ctx, req->smb_conn->negotiate.oid), nt_errstr(status)));
382 goto failed;
385 /* allocate a new session */
386 smb_sess = smbsrv_session_new(req->smb_conn, req->smb_conn, gensec_ctx);
387 if (!smb_sess) {
388 status = NT_STATUS_INSUFFICIENT_RESOURCES;
389 goto failed;
393 if (!smb_sess) {
394 status = NT_STATUS_ACCESS_DENIED;
395 goto failed;
398 if (!smb_sess->gensec_ctx) {
399 status = NT_STATUS_INTERNAL_ERROR;
400 DEBUG(1, ("Internal ERROR: no gensec_ctx on session: %s\n", nt_errstr(status)));
401 goto failed;
404 s = talloc(req, struct sesssetup_spnego_state);
405 if (!s) goto nomem;
406 s->req = req;
407 s->sess = sess;
408 s->smb_sess = smb_sess;
410 gensec_update_send(smb_sess->gensec_ctx, sess->spnego.in.secblob,
411 sesssetup_spnego_send, s);
412 return;
414 nomem:
415 status = NT_STATUS_NO_MEMORY;
416 failed:
417 talloc_free(smb_sess);
418 status = auth_nt_status_squash(status);
419 smbsrv_sesssetup_backend_send(req, sess, status);
423 backend for sessionsetup call - this takes all 3 variants of the call
425 void smbsrv_sesssetup_backend(struct smbsrv_request *req,
426 union smb_sesssetup *sess)
428 switch (sess->old.level) {
429 case RAW_SESSSETUP_OLD:
430 sesssetup_old(req, sess);
431 return;
433 case RAW_SESSSETUP_NT1:
434 sesssetup_nt1(req, sess);
435 return;
437 case RAW_SESSSETUP_SPNEGO:
438 sesssetup_spnego(req, sess);
439 return;
441 case RAW_SESSSETUP_SMB2:
442 break;
445 smbsrv_sesssetup_backend_send(req, sess, NT_STATUS_INVALID_LEVEL);