summaryrefslogtreecommitdiff
path: root/source4/libcli/composite/sesssetup.c
blob: 832f7e3d60c33cdc598106bde9743d4d64841b43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
/* 
   Unix SMB/CIFS implementation.

   Copyright (C) Andrew Tridgell 2005
   
   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   (at your option) any later version.
   
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
   
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/*
  a composite API for making handling a generic async session setup
*/

#include "includes.h"
#include "libcli/raw/libcliraw.h"
#include "libcli/composite/composite.h"
#include "auth/auth.h"
#include "version.h"

struct sesssetup_state {
	union smb_sesssetup setup;
	NTSTATUS session_key_err;
	struct smb_composite_sesssetup *io;
	struct smbcli_request *req;
};


/*
  form an encrypted lanman password from a plaintext password
  and the server supplied challenge
*/
static DATA_BLOB lanman_blob(TALLOC_CTX *mem_ctx, const char *pass, DATA_BLOB challenge)
{
	DATA_BLOB blob = data_blob_talloc(mem_ctx, NULL, 24);
	SMBencrypt(pass, challenge.data, blob.data);
	return blob;
}

/*
  form an encrypted NT password from a plaintext password
  and the server supplied challenge
*/
static DATA_BLOB nt_blob(TALLOC_CTX *mem_ctx, const struct samr_Password *nt_hash, DATA_BLOB challenge)
{
	DATA_BLOB blob = data_blob_talloc(mem_ctx, NULL, 24);
	SMBOWFencrypt(nt_hash->hash, challenge.data, blob.data);
	return blob;
}

/*
  store the user session key for a transport
*/
static void set_user_session_key(struct smbcli_session *session,
				 const DATA_BLOB *session_key)
{
	session->user_session_key = data_blob_talloc(session, 
						     session_key->data, 
						     session_key->length);
}

/*
  handler for completion of a smbcli_request sub-request
*/
static void request_handler(struct smbcli_request *req)
{
	struct composite_context *c = req->async.private;
	struct sesssetup_state *state = talloc_get_type(c->private, struct sesssetup_state);
	struct smbcli_session *session = req->session;
	DATA_BLOB session_key = data_blob(NULL, 0);
	DATA_BLOB null_data_blob = data_blob(NULL, 0);

	c->status = smb_raw_sesssetup_recv(req, state, &state->setup);

	switch (state->setup.old.level) {
	case RAW_SESSSETUP_OLD:
		state->io->out.vuid = state->setup.old.out.vuid;
		break;

	case RAW_SESSSETUP_NT1:
		state->io->out.vuid = state->setup.nt1.out.vuid;
		break;

	case RAW_SESSSETUP_SPNEGO:
		session->vuid = state->io->out.vuid = state->setup.spnego.out.vuid;
		if (!NT_STATUS_EQUAL(c->status, NT_STATUS_MORE_PROCESSING_REQUIRED) && 
		    !NT_STATUS_IS_OK(c->status)) {
			break;
		}
		c->status = gensec_update(session->gensec, state,
					  state->setup.spnego.out.secblob,
					  &state->setup.spnego.in.secblob);
		if (!NT_STATUS_EQUAL(c->status, NT_STATUS_MORE_PROCESSING_REQUIRED) && 
		    !NT_STATUS_IS_OK(c->status)) {
			break;
		}
		if (state->setup.spnego.in.secblob.length == 0) {
			break;
		}

		/* we need to do another round of session setup. We keep going until both sides
		   are happy */
		state->session_key_err = gensec_session_key(session->gensec, &session_key);
		if (NT_STATUS_IS_OK(state->session_key_err)) {
			set_user_session_key(session, &session_key);
			smbcli_transport_simple_set_signing(session->transport, session_key, null_data_blob);
		}

		state->req = smb_raw_sesssetup_send(session, &state->setup);
		state->req->async.fn = request_handler;
		state->req->async.private = c;
		return;
	}

	/* enforce the local signing required flag */
	if (NT_STATUS_IS_OK(c->status) && !cli_credentials_is_anonymous(state->io->in.credentials)) {
		if (!session->transport->negotiate.sign_info.doing_signing 
		    && session->transport->negotiate.sign_info.mandatory_signing) {
			DEBUG(0, ("SMB signing required, but server does not support it\n"));
			c->status = NT_STATUS_ACCESS_DENIED;
		}
	}

	if (NT_STATUS_IS_OK(c->status)) {
		c->state = SMBCLI_REQUEST_DONE;
	} else {
		c->state = SMBCLI_REQUEST_ERROR;
	}
	if (c->async.fn) {
		c->async.fn(c);
	}
}


/*
  send a nt1 style session setup
*/
static struct smbcli_request *session_setup_nt1(struct composite_context *c,
						struct smbcli_session *session, 
						struct smb_composite_sesssetup *io) 
{
	struct sesssetup_state *state = talloc_get_type(c->private, struct sesssetup_state);
	const struct samr_Password *nt_hash = cli_credentials_get_nt_hash(io->in.credentials, state);
	const char *password = cli_credentials_get_password(io->in.credentials);

	state->setup.nt1.level           = RAW_SESSSETUP_NT1;
	state->setup.nt1.in.bufsize      = session->transport->options.max_xmit;
	state->setup.nt1.in.mpx_max      = session->transport->options.max_mux;
	state->setup.nt1.in.vc_num       = 1;
	state->setup.nt1.in.sesskey      = io->in.sesskey;
	state->setup.nt1.in.capabilities = io->in.capabilities;
	state->setup.nt1.in.os           = "Unix";
	state->setup.nt1.in.lanman       = talloc_asprintf(state, "Samba %s", SAMBA_VERSION_STRING);
	state->setup.nt1.in.user         = cli_credentials_get_username(io->in.credentials);
	state->setup.nt1.in.domain       = cli_credentials_get_domain(io->in.credentials);

	if (!password) {
		state->setup.nt1.in.password1 = data_blob(NULL, 0);
		state->setup.nt1.in.password2 = data_blob(NULL, 0);
	} else if (session->transport->negotiate.sec_mode & 
		   NEGOTIATE_SECURITY_CHALLENGE_RESPONSE) {
		DATA_BLOB session_key;
		if (lp_client_ntlmv2_auth()) {
			DATA_BLOB names_blob = NTLMv2_generate_names_blob(state, lp_netbios_name(), lp_workgroup());
			DATA_BLOB lmv2_response, ntlmv2_response, lmv2_session_key;
			
			if (!SMBNTLMv2encrypt_hash(state, 
						   state->setup.nt1.in.user, state->setup.nt1.in.domain, 
						   nt_hash->hash, &session->transport->negotiate.secblob,
						   &names_blob,
						   &lmv2_response, &ntlmv2_response, 
						   &lmv2_session_key, &session_key)) {
				data_blob_free(&names_blob);
				return NULL;
			}
			data_blob_free(&names_blob);
			state->setup.nt1.in.password1 = lmv2_response;
			state->setup.nt1.in.password2 = ntlmv2_response;
			
			smbcli_transport_simple_set_signing(session->transport, session_key, 
							    state->setup.nt1.in.password2);
			set_user_session_key(session, &session_key);
			
			data_blob_free(&lmv2_session_key);
			data_blob_free(&session_key);
		} else {

			state->setup.nt1.in.password2 = nt_blob(state, nt_hash,
								session->transport->negotiate.secblob);
			if (lp_client_lanman_auth()) {
				state->setup.nt1.in.password1 = lanman_blob(state, password, 
									    session->transport->negotiate.secblob);
			} else {
				/* if not sending the LM password, send the NT password twice */
				state->setup.nt1.in.password1 = state->setup.nt1.in.password2;
			}

			session_key = data_blob_talloc(session, NULL, 16);
			SMBsesskeygen_ntv1(nt_hash->hash, session_key.data);
			smbcli_transport_simple_set_signing(session->transport, session_key, 
							    state->setup.nt1.in.password2);
			set_user_session_key(session, &session_key);
			
			data_blob_free(&session_key);
		}

	} else if (lp_client_plaintext_auth()) {
		state->setup.nt1.in.password1 = data_blob_talloc(state, password, strlen(password));
		state->setup.nt1.in.password2 = data_blob(NULL, 0);
	} else {
		/* could match windows client and return 'cannot logon from this workstation', but it just confuses everybody */
		return NULL;
	}

	return smb_raw_sesssetup_send(session, &state->setup);
}


/*
  old style session setup (pre NT1 protocol level)
*/
static struct smbcli_request *session_setup_old(struct composite_context *c,
						struct smbcli_session *session,
						struct smb_composite_sesssetup *io)
{
	struct sesssetup_state *state = talloc_get_type(c->private, struct sesssetup_state);
	const char *password = cli_credentials_get_password(io->in.credentials);

	state->setup.old.level      = RAW_SESSSETUP_OLD;
	state->setup.old.in.bufsize = session->transport->options.max_xmit;
	state->setup.old.in.mpx_max = session->transport->options.max_mux;
	state->setup.old.in.vc_num  = 1;
	state->setup.old.in.sesskey = io->in.sesskey;
	state->setup.old.in.domain  = cli_credentials_get_domain(io->in.credentials);
	state->setup.old.in.user    = cli_credentials_get_username(io->in.credentials);
	state->setup.old.in.os      = "Unix";
	state->setup.old.in.lanman  = talloc_asprintf(state, "Samba %s", SAMBA_VERSION_STRING);
	
	if (!password) {
		state->setup.old.in.password = data_blob(NULL, 0);
	} else if (session->transport->negotiate.sec_mode & NEGOTIATE_SECURITY_CHALLENGE_RESPONSE) {
		state->setup.old.in.password = lanman_blob(state, password, 
							   session->transport->negotiate.secblob);
	} else {
		state->setup.old.in.password = data_blob_talloc(state,
								password, 
								strlen(password));
	}
	
	return smb_raw_sesssetup_send(session, &state->setup);
}


/*
  old style session setup (pre NT1 protocol level)
*/
static struct smbcli_request *session_setup_spnego(struct composite_context *c, 
						   struct smbcli_session *session,
						   struct smb_composite_sesssetup *io)
{
	struct sesssetup_state *state = talloc_get_type(c->private, struct sesssetup_state);
	NTSTATUS status;
	DATA_BLOB session_key = data_blob(NULL, 0);
	DATA_BLOB null_data_blob = data_blob(NULL, 0);
	const char *chosen_oid = NULL;

	state->setup.spnego.level           = RAW_SESSSETUP_SPNEGO;
	state->setup.spnego.in.bufsize      = session->transport->options.max_xmit;
	state->setup.spnego.in.mpx_max      = session->transport->options.max_mux;
	state->setup.spnego.in.vc_num       = 1;
	state->setup.spnego.in.sesskey      = io->in.sesskey;
	state->setup.spnego.in.capabilities = io->in.capabilities;
	state->setup.spnego.in.os           = "Unix";
	state->setup.spnego.in.lanman       = talloc_asprintf(state, "Samba %s", SAMBA_VERSION_STRING);
	state->setup.spnego.in.workgroup    = io->in.workgroup;

	state->setup.spnego.out.vuid        = session->vuid;

	smbcli_temp_set_signing(session->transport);

	status = gensec_client_start(session, &session->gensec, c->event_ctx);
	if (!NT_STATUS_IS_OK(status)) {
		DEBUG(1, ("Failed to start GENSEC client mode: %s\n", nt_errstr(status)));
		return NULL;
	}

	gensec_want_feature(session->gensec, GENSEC_FEATURE_SESSION_KEY);

	status = gensec_set_credentials(session->gensec, io->in.credentials);
	if (!NT_STATUS_IS_OK(status)) {
		DEBUG(1, ("Failed to start set GENSEC client credentails: %s\n", 
			  nt_errstr(status)));
		return NULL;
	}

	status = gensec_set_target_hostname(session->gensec, session->transport->socket->hostname);
	if (!NT_STATUS_IS_OK(status)) {
		DEBUG(1, ("Failed to start set GENSEC target hostname: %s\n", 
			  nt_errstr(status)));
		return NULL;
	}

	status = gensec_set_target_service(session->gensec, "cifs");
	if (!NT_STATUS_IS_OK(status)) {
		DEBUG(1, ("Failed to start set GENSEC target service: %s\n", 
			  nt_errstr(status)));
		return NULL;
	}

	if (session->transport->negotiate.secblob.length) {
		chosen_oid = GENSEC_OID_SPNEGO;
	} else {
		/* without a sec blob, means raw NTLMSSP */
		chosen_oid = GENSEC_OID_NTLMSSP;
	}

	status = gensec_start_mech_by_oid(session->gensec, chosen_oid);
	if (!NT_STATUS_IS_OK(status)) {
		DEBUG(1, ("Failed to start set GENSEC client SPNEGO mechanism %s: %s\n",
			  gensec_get_name_by_oid(chosen_oid), nt_errstr(status)));
		return NULL;
	}
	
	status = gensec_update(session->gensec, state,
			       session->transport->negotiate.secblob,
			       &state->setup.spnego.in.secblob);
	if (!NT_STATUS_EQUAL(status, NT_STATUS_MORE_PROCESSING_REQUIRED)) {
		DEBUG(1, ("Failed initial gensec_update with mechanism %s: %s\n",
			  gensec_get_name_by_oid(chosen_oid), nt_errstr(status)));
		return NULL;
	}

	state->session_key_err = gensec_session_key(session->gensec, &session_key);
	if (NT_STATUS_IS_OK(state->session_key_err)) {
		smbcli_transport_simple_set_signing(session->transport, session_key, null_data_blob);
	}

	return smb_raw_sesssetup_send(session, &state->setup);
}


/*
  composite session setup function that hides the details of all the
  different session setup varients, including the multi-pass nature of
  the spnego varient
*/
struct composite_context *smb_composite_sesssetup_send(struct smbcli_session *session, 
						       struct smb_composite_sesssetup *io)
{
	struct composite_context *c;
	struct sesssetup_state *state;

	c = talloc_zero(session, struct composite_context);
	if (c == NULL) goto failed;

	state = talloc(c, struct sesssetup_state);
	if (state == NULL) goto failed;

	state->io = io;

	c->state = SMBCLI_REQUEST_SEND;
	c->private = state;
	c->event_ctx = session->transport->socket->event.ctx;

	/* no session setup at all in earliest protocol varients */
	if (session->transport->negotiate.protocol < PROTOCOL_LANMAN1) {
		ZERO_STRUCT(io->out);
		c->state = SMBCLI_REQUEST_DONE;
		return c;
	}

	/* see what session setup interface we will use */
	if (session->transport->negotiate.protocol < PROTOCOL_NT1) {
		state->req = session_setup_old(c, session, io);
	} else if (!session->transport->options.use_spnego ||
		   !(io->in.capabilities & CAP_EXTENDED_SECURITY)) {
		state->req = session_setup_nt1(c, session, io);
	} else {
		state->req = session_setup_spnego(c, session, io);
	}

	if (state->req == NULL) goto failed;

	state->req->async.fn = request_handler;
	state->req->async.private = c;

	return c;

failed:
	talloc_free(c);
	return NULL;
}


/*
  receive a composite session setup reply
*/
NTSTATUS smb_composite_sesssetup_recv(struct composite_context *c)
{
	NTSTATUS status;
	status = composite_wait(c);
	talloc_free(c);
	return status;
}

/*
  sync version of smb_composite_sesssetup 
*/
NTSTATUS smb_composite_sesssetup(struct smbcli_session *session, struct smb_composite_sesssetup *io)
{
	struct composite_context *c = smb_composite_sesssetup_send(session, io);
	return smb_composite_sesssetup_recv(c);
}