summaryrefslogtreecommitdiff
path: root/source/libsmb/smb_signing.c
blob: eedf7f401f95e72d5a9bbe22db82462a8004d480 (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
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
/* 
   Unix SMB/CIFS implementation.
   SMB Signing Code
   Copyright (C) Jeremy Allison 2002.
   Copyright (C) Andrew Bartlett <abartlet@samba.org> 2002-2003
   
   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.
*/

#include "includes.h"

struct smb_basic_signing_context {
	DATA_BLOB mac_key;
	uint32 send_seq_num;
	uint32 reply_seq_num;
};

/***********************************************************
 SMB signing - Common code before we set a new signing implementation
************************************************************/

static BOOL set_smb_signing_common(struct cli_state *cli) 
{
	if (!cli->sign_info.negotiated_smb_signing 
	    && !cli->sign_info.mandetory_signing) {
		return False;
	}

	if (cli->sign_info.doing_signing) {
		return False;
	}
	
	if (cli->sign_info.free_signing_context)
		cli->sign_info.free_signing_context(cli);

	/* These calls are INCOMPATIBLE with SMB signing */
	cli->readbraw_supported = False;
	cli->writebraw_supported = False;
	
	return True;
}

/***********************************************************
 SMB signing - Common code for 'real' implementations
************************************************************/

static BOOL set_smb_signing_real_common(struct cli_state *cli) 
{
	if (cli->sign_info.mandetory_signing) {
		DEBUG(5, ("Mandatory SMB signing enabled!\n"));
		cli->sign_info.doing_signing = True;
	}

	DEBUG(5, ("SMB signing enabled!\n"));

	return True;
}

static void mark_packet_signed(struct cli_state *cli) 
{
	uint16 flags2;
	flags2 = SVAL(cli->outbuf,smb_flg2);
	flags2 |= FLAGS2_SMB_SECURITY_SIGNATURES;
	SSVAL(cli->outbuf,smb_flg2, flags2);
}

static BOOL signing_good(struct cli_state *cli, BOOL good) 
{
	DEBUG(10, ("got SMB signature of\n"));
	dump_data(10,&cli->inbuf[smb_ss_field] , 8);

	if (good && !cli->sign_info.doing_signing) {
		cli->sign_info.doing_signing = True;
	}

	if (!good) {
		if (cli->sign_info.doing_signing) {
			DEBUG(1, ("SMB signature check failed!\n"));
			return False;
		} else {
			DEBUG(3, ("Server did not sign reply correctly\n"));
			cli_free_signing_context(cli);
			return False;
		}
	}
	return True;
}	

/***********************************************************
 SMB signing - Simple implementation - calculate a MAC to send.
************************************************************/

static void cli_simple_sign_outgoing_message(struct cli_state *cli)
{
	unsigned char calc_md5_mac[16];
	struct MD5Context md5_ctx;
	struct smb_basic_signing_context *data = cli->sign_info.signing_context;

	/*
	 * Firstly put the sequence number into the first 4 bytes.
	 * and zero out the next 4 bytes.
	 *
	 * We put the sequence into the packet, because we are going
	 * to copy over it anyway.
	 */
	SIVAL(cli->outbuf, smb_ss_field, 
	      data->send_seq_num);
	SIVAL(cli->outbuf, smb_ss_field + 4, 0);

	/* mark the packet as signed - BEFORE we sign it...*/
	mark_packet_signed(cli);

	/* Calculate the 16 byte MAC and place first 8 bytes into the field. */
	MD5Init(&md5_ctx);
	MD5Update(&md5_ctx, data->mac_key.data, 
		  data->mac_key.length); 
	MD5Update(&md5_ctx, cli->outbuf + 4, smb_len(cli->outbuf));
	MD5Final(calc_md5_mac, &md5_ctx);

	DEBUG(10, ("sent SMB signature of\n"));
	dump_data(10, calc_md5_mac, 8);

	memcpy(&cli->outbuf[smb_ss_field], calc_md5_mac, 8);

/*	cli->outbuf[smb_ss_field+2]=0; 
	Uncomment this to test if the remote server actually verifies signatures...*/
	data->send_seq_num++;
	data->reply_seq_num = data->send_seq_num;
	data->send_seq_num++;
}

/***********************************************************
 SMB signing - Simple implementation - check a MAC sent by server.
************************************************************/

static BOOL cli_simple_check_incoming_message(struct cli_state *cli)
{
	BOOL good;
	unsigned char calc_md5_mac[16];
	unsigned char server_sent_mac[8];
	unsigned char sequence_buf[8];
	struct MD5Context md5_ctx;
	struct smb_basic_signing_context *data = cli->sign_info.signing_context;
	const size_t offset_end_of_sig = (smb_ss_field + 8);

	/*
	 * Firstly put the sequence number into the first 4 bytes.
	 * and zero out the next 4 bytes.
	 *
	 * We do this here, to avoid modifying the packet.
	 */

	SIVAL(sequence_buf, 0, data->reply_seq_num);
	SIVAL(sequence_buf, 4, 0);

	/* get a copy of the server-sent mac */
	memcpy(server_sent_mac, &cli->inbuf[smb_ss_field], sizeof(server_sent_mac));
	
	/* Calculate the 16 byte MAC - but don't alter the data in the
	   incoming packet.
	   
	   This makes for a bit for fussing about, but it's not too bad.
	*/
	MD5Init(&md5_ctx);

	/* intialise with the key */
	MD5Update(&md5_ctx, data->mac_key.data, 
		  data->mac_key.length); 

	/* copy in the first bit of the SMB header */
	MD5Update(&md5_ctx, cli->inbuf + 4, smb_ss_field - 4);

	/* copy in the sequence number, instead of the signature */
	MD5Update(&md5_ctx, sequence_buf, sizeof(sequence_buf));

	/* copy in the rest of the packet in, skipping the signature */
	MD5Update(&md5_ctx, cli->inbuf + offset_end_of_sig, 
		  smb_len(cli->inbuf) - (offset_end_of_sig - 4));

	/* caclulate the MD5 sig */ 
	MD5Final(calc_md5_mac, &md5_ctx);

	good = (memcmp(server_sent_mac, calc_md5_mac, 8) == 0);
	
	if (!good) {
		DEBUG(5, ("BAD SIG: wanted SMB signature of\n"));
		dump_data(5, calc_md5_mac, 8);
		
		DEBUG(5, ("BAD SIG: got SMB signature of\n"));
		dump_data(5, server_sent_mac, 8);
	}
	return signing_good(cli, good);
}

/***********************************************************
 SMB signing - Simple implementation - free signing context
************************************************************/

static void cli_simple_free_signing_context(struct cli_state *cli)
{
	struct smb_basic_signing_context *data = cli->sign_info.signing_context;

	data_blob_free(&data->mac_key);
	SAFE_FREE(cli->sign_info.signing_context);

	return;
}

/***********************************************************
 SMB signing - Simple implementation - setup the MAC key.
************************************************************/

BOOL cli_simple_set_signing(struct cli_state *cli, const uchar user_session_key[16], const DATA_BLOB response)
{
	struct smb_basic_signing_context *data;

	if (!set_smb_signing_common(cli)) {
		return False;
	}

	if (!set_smb_signing_real_common(cli)) {
		return False;
	}

	data = smb_xmalloc(sizeof(*data));
	cli->sign_info.signing_context = data;
	
	data->mac_key = data_blob(NULL, response.length + 16);

	memcpy(&data->mac_key.data[0], user_session_key, 16);
	memcpy(&data->mac_key.data[16],response.data, response.length);

	/* Initialise the sequence number */
	data->send_seq_num = 0;

	cli->sign_info.sign_outgoing_message = cli_simple_sign_outgoing_message;
	cli->sign_info.check_incoming_message = cli_simple_check_incoming_message;
	cli->sign_info.free_signing_context = cli_simple_free_signing_context;

	return True;
}

/***********************************************************
 SMB signing - NTLMSSP implementation - calculate a MAC to send.
************************************************************/

static void cli_ntlmssp_sign_outgoing_message(struct cli_state *cli)
{
	NTSTATUS nt_status;
	DATA_BLOB sig;
	NTLMSSP_CLIENT_STATE *ntlmssp_state = cli->sign_info.signing_context;

	/* mark the packet as signed - BEFORE we sign it...*/
	mark_packet_signed(cli);
	
	nt_status = ntlmssp_client_sign_packet(ntlmssp_state, cli->outbuf + 4, 
					       smb_len(cli->outbuf), &sig);
	
	if (!NT_STATUS_IS_OK(nt_status)) {
		DEBUG(0, ("NTLMSSP signing failed with %s\n", nt_errstr(nt_status)));
		return;
	}

	DEBUG(10, ("sent SMB signature of\n"));
	dump_data(10, sig.data, MIN(sig.length, 8));
	memcpy(&cli->outbuf[smb_ss_field], sig.data, MIN(sig.length, 8));
	
	data_blob_free(&sig);
}

/***********************************************************
 SMB signing - NTLMSSP implementation - check a MAC sent by server.
************************************************************/

static BOOL cli_ntlmssp_check_incoming_message(struct cli_state *cli)
{
	BOOL good;
	NTSTATUS nt_status;
	DATA_BLOB sig = data_blob(&cli->inbuf[smb_ss_field], 8);

	NTLMSSP_CLIENT_STATE *ntlmssp_state = cli->sign_info.signing_context;

	nt_status = ntlmssp_client_check_packet(ntlmssp_state, cli->outbuf + 4, 
						smb_len(cli->outbuf), &sig);
	
	data_blob_free(&sig);
	
	good = NT_STATUS_IS_OK(nt_status);
	if (!NT_STATUS_IS_OK(nt_status)) {
		DEBUG(5, ("NTLMSSP signing failed with %s\n", nt_errstr(nt_status)));
	}

	return signing_good(cli, good);
}

/***********************************************************
 SMB signing - NTLMSSP implementation - free signing context
************************************************************/

static void cli_ntlmssp_free_signing_context(struct cli_state *cli)
{
	ntlmssp_client_end((NTLMSSP_CLIENT_STATE **)&cli->sign_info.signing_context);
}

/***********************************************************
 SMB signing - NTLMSSP implementation - setup the MAC key.
************************************************************/

BOOL cli_ntlmssp_set_signing(struct cli_state *cli,
			     NTLMSSP_CLIENT_STATE *ntlmssp_state)
{
	if (!set_smb_signing_common(cli)) {
		return False;
	}

	if (!NT_STATUS_IS_OK(ntlmssp_client_sign_init(ntlmssp_state))) {
		return False;
	}

	if (!set_smb_signing_real_common(cli)) {
		return False;
	}

	cli->sign_info.signing_context = ntlmssp_state;
	ntlmssp_state->ref_count++;

	cli->sign_info.sign_outgoing_message = cli_ntlmssp_sign_outgoing_message;
	cli->sign_info.check_incoming_message = cli_ntlmssp_check_incoming_message;
	cli->sign_info.free_signing_context = cli_ntlmssp_free_signing_context;

	return True;
}

/***********************************************************
 SMB signing - NULL implementation - calculate a MAC to send.
************************************************************/

static void cli_null_sign_outgoing_message(struct cli_state *cli)
{
	/* we can't zero out the sig, as we might be trying to send a
	   session request - which is NBT-level, not SMB level and doesn't
	   have the field */
	return;
}

/***********************************************************
 SMB signing - NULL implementation - check a MAC sent by server.
************************************************************/

static BOOL cli_null_check_incoming_message(struct cli_state *cli)
{
	return True;
}

/***********************************************************
 SMB signing - NULL implementation - free signing context
************************************************************/

static void cli_null_free_signing_context(struct cli_state *cli)
{
	return;
}

/**
 SMB signing - NULL implementation - setup the MAC key.

 @note Used as an initialisation only - it will not correctly
       shut down a real signing mechanism
*/

BOOL cli_null_set_signing(struct cli_state *cli)
{
	cli->sign_info.signing_context = NULL;
	
	cli->sign_info.sign_outgoing_message = cli_null_sign_outgoing_message;
	cli->sign_info.check_incoming_message = cli_null_check_incoming_message;
	cli->sign_info.free_signing_context = cli_null_free_signing_context;

	return True;
}

/***********************************************************
 SMB signing - TEMP implementation - calculate a MAC to send.
************************************************************/

static void cli_temp_sign_outgoing_message(struct cli_state *cli)
{
	/* mark the packet as signed - BEFORE we sign it...*/
	mark_packet_signed(cli);

	/* I wonder what BSRSPYL stands for - but this is what MS 
	   actually sends! */
	memcpy(&cli->outbuf[smb_ss_field], "BSRSPYL ", 8);
	return;
}

/***********************************************************
 SMB signing - TEMP implementation - check a MAC sent by server.
************************************************************/

static BOOL cli_temp_check_incoming_message(struct cli_state *cli)
{
	return True;
}

/***********************************************************
 SMB signing - TEMP implementation - free signing context
************************************************************/

static void cli_temp_free_signing_context(struct cli_state *cli)
{
	return;
}

/***********************************************************
 SMB signing - NULL implementation - setup the MAC key.
************************************************************/

BOOL cli_temp_set_signing(struct cli_state *cli)
{
	if (!set_smb_signing_common(cli)) {
		return False;
	}

	cli->sign_info.signing_context = NULL;
	
	cli->sign_info.sign_outgoing_message = cli_temp_sign_outgoing_message;
	cli->sign_info.check_incoming_message = cli_temp_check_incoming_message;
	cli->sign_info.free_signing_context = cli_temp_free_signing_context;

	return True;
}

/**
 * Free the signing context
 */
 
void cli_free_signing_context(struct cli_state *cli) 
{
	if (cli->sign_info.free_signing_context) 
		cli->sign_info.free_signing_context(cli);

	cli_null_set_signing(cli);
}

/**
 * Sign a packet with the current mechanism
 */
 
void cli_caclulate_sign_mac(struct cli_state *cli)
{
	cli->sign_info.sign_outgoing_message(cli);
}

/**
 * Check a packet with the current mechanism
 * @return False if we had an established signing connection
 *         which had a back checksum, True otherwise
 */
 
BOOL cli_check_sign_mac(struct cli_state *cli) 
{
	BOOL good;

	if (smb_len(cli->inbuf) < (smb_ss_field + 8 - 4)) {
		DEBUG(cli->sign_info.doing_signing ? 1 : 10, ("Can't check signature on short packet! smb_len = %u\n", smb_len(cli->inbuf)));
		good = False;
	} else {
		good = cli->sign_info.check_incoming_message(cli);
	}

	if (!good) {
		if (cli->sign_info.doing_signing) {
			return False;
		} else {
			cli_free_signing_context(cli);	
		}
	}

	return True;
}