summaryrefslogtreecommitdiff
path: root/source4/libcli/raw/smb_signing.c
blob: c1fad1eaf8d1fcb5b12324bb24b8aebfbe771754 (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
/* 
   Unix SMB/CIFS implementation.
   SMB Signing Code
   Copyright (C) Jeremy Allison 2002.
   Copyright (C) Andrew Bartlett <abartlet@samba.org> 2002-2003
   Copyright (C) James J Myers <myersjj@samba.org> 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"

/***********************************************************
 SMB signing - Common code before we set a new signing implementation
************************************************************/
static BOOL set_smb_signing_common(struct smbcli_transport *transport)
{
	if (!(transport->negotiate.sec_mode & 
	      (NEGOTIATE_SECURITY_SIGNATURES_REQUIRED|NEGOTIATE_SECURITY_SIGNATURES_ENABLED))) {
		return False;
	}

	if (transport->negotiate.sign_info.doing_signing) {
		return False;
	}

	if (!transport->negotiate.sign_info.allow_smb_signing) {
		return False;
	}

	if (transport->negotiate.sign_info.free_signing_context)
		transport->negotiate.sign_info
			.free_signing_context(&transport->negotiate.sign_info);

	/* These calls are INCOMPATIBLE with SMB signing */
	transport->negotiate.readbraw_supported = False;
	transport->negotiate.writebraw_supported = False;

	return True;
}

static void mark_packet_signed(struct request_buffer *out) 
{
	uint16_t flags2;
	flags2 = SVAL(out->hdr, HDR_FLG2);
	flags2 |= FLAGS2_SMB_SECURITY_SIGNATURES;
	SSVAL(out->hdr, HDR_FLG2, flags2);
}

static BOOL signing_good(struct smb_signing_context *sign_info, 
			 unsigned int seq, BOOL good) 
{
	if (good) {
		if (!sign_info->doing_signing) {
			sign_info->doing_signing = True;
		}
		if (!sign_info->seen_valid) {
			sign_info->seen_valid = True;
		}
	} else {
		if (!sign_info->seen_valid) {
			/* If we have never seen a good packet, just turn it off */
			DEBUG(5, ("signing_good: signing negotiated but not required and peer\n"
				  "isn't sending correct signatures. Turning off.\n"));
			sign_info->negotiated_smb_signing = False;
			sign_info->allow_smb_signing = False;
			sign_info->doing_signing = False;
			if (sign_info->free_signing_context)
				sign_info->free_signing_context(sign_info);
			smbcli_null_set_signing(sign_info);
			return True;
		} else {
			/* bad packet after signing started - fail and disconnect. */
			DEBUG(0, ("signing_good: BAD SIG: seq %u\n", seq));
			return False;
		}
	}
	return True;
}

void sign_outgoing_message(struct request_buffer *out, DATA_BLOB *mac_key, uint_t seq_num) 
{
	uint8_t calc_md5_mac[16];
	struct MD5Context md5_ctx;
	/*
	 * Firstly put the sequence number into the first 4 bytes.
	 * and zero out the next 4 bytes.
	 */
	SIVAL(out->hdr, HDR_SS_FIELD, seq_num);
	SIVAL(out->hdr, HDR_SS_FIELD + 4, 0);

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

	/* Calculate the 16 byte MAC and place first 8 bytes into the field. */
	MD5Init(&md5_ctx);
	MD5Update(&md5_ctx, mac_key->data, 
		  mac_key->length); 
	MD5Update(&md5_ctx, 
		  out->buffer + NBT_HDR_SIZE, 
		  out->size - NBT_HDR_SIZE);
	MD5Final(calc_md5_mac, &md5_ctx);

	memcpy(&out->hdr[HDR_SS_FIELD], calc_md5_mac, 8);

	DEBUG(5, ("sign_outgoing_message: SENT SIG (seq: %d): sent SMB signature of\n", 
		  seq_num));
	dump_data(5, calc_md5_mac, 8);
/*	req->out.hdr[HDR_SS_FIELD+2]=0; 
	Uncomment this to test if the remote server actually verifies signitures...*/
}

BOOL check_signed_incoming_message(struct request_buffer *in, DATA_BLOB *mac_key, uint_t seq_num) 
{
	BOOL good;
	uint8_t calc_md5_mac[16];
	uint8_t *server_sent_mac;
	uint8_t sequence_buf[8];
	struct MD5Context md5_ctx;
	const size_t offset_end_of_sig = (HDR_SS_FIELD + 8);
	int i;
	const int sign_range = 0;

	/* room enough for the signature? */
	if (in->size < NBT_HDR_SIZE + HDR_SS_FIELD + 8) {
		return False;
	}

	/* its quite bogus to be guessing sequence numbers, but very useful
	   when debugging signing implementations */
	for (i = 0-sign_range; i <= 0+sign_range; i++) {
		/*
		 * Firstly put the sequence number into the first 4 bytes.
		 * and zero out the next 4 bytes.
		 */
		SIVAL(sequence_buf, 0, seq_num + i);
		SIVAL(sequence_buf, 4, 0);
		
		/* get a copy of the server-sent mac */
	        server_sent_mac = &in->hdr[HDR_SS_FIELD];
		
		/* Calculate the 16 byte MAC and place first 8 bytes into the field. */
		MD5Init(&md5_ctx);
		MD5Update(&md5_ctx, mac_key->data, 
			  mac_key->length); 
		MD5Update(&md5_ctx, in->hdr, HDR_SS_FIELD);
		MD5Update(&md5_ctx, sequence_buf, sizeof(sequence_buf));
		
		MD5Update(&md5_ctx, in->hdr + offset_end_of_sig, 
			  in->size - NBT_HDR_SIZE - (offset_end_of_sig));
		MD5Final(calc_md5_mac, &md5_ctx);
		
		good = (memcmp(server_sent_mac, calc_md5_mac, 8) == 0);

		if (i == 0) {
			if (!good) {
				DEBUG(5, ("check_signed_incoming_message: BAD SIG (seq: %d): wanted SMB signature of\n", seq_num + i));
				dump_data(5, calc_md5_mac, 8);
				
				DEBUG(5, ("check_signed_incoming_message: BAD SIG (seq: %d): got SMB signature of\n", seq_num + i));
				dump_data(5, server_sent_mac, 8);
			} else {
				DEBUG(15, ("check_signed_incoming_message: GOOD SIG (seq: %d): got SMB signature of\n", seq_num + i));
				dump_data(5, server_sent_mac, 8);
			}
		}

		if (good) break;
	}

	if (good && i != 0) {
		DEBUG(0,("SIGNING OFFSET %d (should be %d)\n", i, seq_num));
	}
	return good;
}

/***********************************************************
 SMB signing - Simple implementation - calculate a MAC to send.
************************************************************/
static void smbcli_request_simple_sign_outgoing_message(struct smbcli_request *req)
{
	struct smb_basic_signing_context *data = req->transport->negotiate.sign_info.signing_context;

#if 0
	/* enable this when packet signing is preventing you working out why valgrind 
	   says that data is uninitialised */
	file_save("pkt.dat", req->out.buffer, req->out.size);
#endif

	req->seq_num = data->next_seq_num;
	
	/* some requests (eg. NTcancel) are one way, and the sequence number
	   should be increased by 1 not 2 */
	if (req->sign_single_increment) {
		data->next_seq_num += 1;
	} else {
		data->next_seq_num += 2;
	}
	
	sign_outgoing_message(&req->out, &data->mac_key, req->seq_num);
}


/***********************************************************
 SMB signing - Simple implementation - check a MAC sent by server.
************************************************************/
static BOOL smbcli_request_simple_check_incoming_message(struct smbcli_request *req)
{
	struct smb_basic_signing_context *data 
		= req->transport->negotiate.sign_info.signing_context;

	BOOL good = check_signed_incoming_message(&req->in, 
						  &data->mac_key, 
						  req->seq_num+1);
						  
	return signing_good(&req->transport->negotiate.sign_info, 
			    req->seq_num+1, good);
}


/***********************************************************
 SMB signing - Simple implementation - free signing context
************************************************************/
static void smbcli_transport_simple_free_signing_context(struct smb_signing_context *sign_info)
{
	struct smb_basic_signing_context *data = sign_info->signing_context;

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

	return;
}

/***********************************************************
 SMB signing - Simple implementation - setup the MAC key.
************************************************************/
BOOL smbcli_simple_set_signing(struct smb_signing_context *sign_info,
			       const DATA_BLOB user_session_key, 
			       const DATA_BLOB response)
{
	struct smb_basic_signing_context *data;

	if (sign_info->mandatory_signing) {
		DEBUG(5, ("Mandatory SMB signing enabled!\n"));
	}

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

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

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

	if (response.length) {
		memcpy(&data->mac_key.data[user_session_key.length],response.data, response.length);
	}

	dump_data_pw("Started Signing with key:\n", data->mac_key.data, data->mac_key.length);

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

	sign_info->sign_outgoing_message = smbcli_request_simple_sign_outgoing_message;
	sign_info->check_incoming_message = smbcli_request_simple_check_incoming_message;
	sign_info->free_signing_context = smbcli_transport_simple_free_signing_context;

	return True;
}


/***********************************************************
 SMB signing - Simple implementation - setup the MAC key.
************************************************************/
BOOL smbcli_transport_simple_set_signing(struct smbcli_transport *transport,
				      const DATA_BLOB user_session_key, 
				      const DATA_BLOB response)
{
	if (!set_smb_signing_common(transport)) {
		return False;
	}

	return smbcli_simple_set_signing(&transport->negotiate.sign_info,
					 user_session_key,
					 response);
}


/***********************************************************
 SMB signing - NULL implementation - calculate a MAC to send.
************************************************************/
static void smbcli_request_null_sign_outgoing_message(struct smbcli_request *req)
{
	/* we can't zero out the sig, as we might be trying to send a
	   transport request - which is NBT-level, not SMB level and doesn't
	   have the field */
}


/***********************************************************
 SMB signing - NULL implementation - check a MAC sent by server.
************************************************************/
static BOOL smbcli_request_null_check_incoming_message(struct smbcli_request *req)
{
	return True;
}


/***********************************************************
 SMB signing - NULL implementation - free signing context
************************************************************/
static void smbcli_null_free_signing_context(struct smb_signing_context *sign_info)
{
}

/**
 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 smbcli_null_set_signing(struct smb_signing_context *sign_info)
{
	sign_info->signing_context = NULL;
	
	sign_info->sign_outgoing_message = smbcli_request_null_sign_outgoing_message;
	sign_info->check_incoming_message = smbcli_request_null_check_incoming_message;
	sign_info->free_signing_context = smbcli_null_free_signing_context;

	return True;
}

/***********************************************************
 SMB signing - TEMP implementation - calculate a MAC to send.
************************************************************/
static void smbcli_request_temp_sign_outgoing_message(struct smbcli_request *req)
{
	/* mark the packet as signed - BEFORE we sign it...*/
	mark_packet_signed(&req->out);

	/* I wonder what BSRSPYL stands for - but this is what MS 
	   actually sends! */
	memcpy((req->out.hdr + HDR_SS_FIELD), "BSRSPYL ", 8);

	return;
}

/***********************************************************
 SMB signing - TEMP implementation - check a MAC sent by server.
************************************************************/
static BOOL smbcli_request_temp_check_incoming_message(struct smbcli_request *req)
{
	return True;
}

/***********************************************************
 SMB signing - NULL implementation - free signing context
************************************************************/
static void smbcli_temp_free_signing_context(struct smb_signing_context *sign_info)
{
	return;
}

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

 @note Used as an initialisation only - it will not correctly
       shut down a real signing mechanism
*/
BOOL smbcli_temp_set_signing(struct smbcli_transport *transport)
{
	if (!set_smb_signing_common(transport)) {
		return False;
	}

	transport->negotiate.sign_info.signing_context = NULL;
	
	transport->negotiate.sign_info.sign_outgoing_message = smbcli_request_temp_sign_outgoing_message;
	transport->negotiate.sign_info.check_incoming_message = smbcli_request_temp_check_incoming_message;
	transport->negotiate.sign_info.free_signing_context = smbcli_temp_free_signing_context;

	return True;
}

/**
 * Free the signing context
 */
void smbcli_transport_free_signing_context(struct smb_signing_context *sign_info) 
{
	if (sign_info->free_signing_context) {
		sign_info->free_signing_context(sign_info);
	}

	smbcli_null_set_signing(sign_info);
}


/**
 * Sign a packet with the current mechanism
 */
void smbcli_request_calculate_sign_mac(struct smbcli_request *req)
{
	req->transport->negotiate.sign_info.sign_outgoing_message(req);
}


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

	if (req->in.size < (HDR_SS_FIELD + 8)) {
		good = False;
	} else {
		good = req->transport->negotiate.sign_info.check_incoming_message(req);
	}

	if (!good && req->transport->negotiate.sign_info.doing_signing) {
		return False;
	}

	return True;
}


BOOL smbcli_init_signing(struct smbcli_transport *transport) 
{
	if (!smbcli_null_set_signing(&transport->negotiate.sign_info)) {
		return False;
	}
	
	switch (lp_client_signing()) {
	case SMB_SIGNING_OFF:
	transport->negotiate.sign_info.allow_smb_signing = False;
		break;
	case SMB_SIGNING_SUPPORTED:
		transport->negotiate.sign_info.allow_smb_signing = True;
		break;
	case SMB_SIGNING_REQUIRED:
		transport->negotiate.sign_info.allow_smb_signing = True;
		transport->negotiate.sign_info.mandatory_signing = True;
		break;
	}
	return True;
}