Add an entry for the "check" command to the tdbtool manpage.
[Samba/gebeck_regimport.git] / source3 / libsmb / smb_signing.c
blobea1eb05cfb1324d705e33b6e56ebc1b62ced3d91
1 /*
2 Unix SMB/CIFS implementation.
3 SMB Signing Code
4 Copyright (C) Jeremy Allison 2003.
5 Copyright (C) Andrew Bartlett <abartlet@samba.org> 2002-2003
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.
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.
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/>.
21 #include "includes.h"
23 /* Lookup a packet's MID (multiplex id) and figure out it's sequence number */
24 struct outstanding_packet_lookup {
25 struct outstanding_packet_lookup *prev, *next;
26 uint16 mid;
27 uint32 reply_seq_num;
28 bool can_delete; /* Set to False in trans state. */
31 struct smb_basic_signing_context {
32 DATA_BLOB mac_key;
33 uint32 send_seq_num;
34 struct outstanding_packet_lookup *outstanding_packet_list;
37 static bool store_sequence_for_reply(struct outstanding_packet_lookup **list,
38 uint16 mid, uint32 reply_seq_num)
40 struct outstanding_packet_lookup *t;
42 /* Ensure we only add a mid once. */
43 for (t = *list; t; t = t->next) {
44 if (t->mid == mid) {
45 return False;
49 t = SMB_XMALLOC_P(struct outstanding_packet_lookup);
50 ZERO_STRUCTP(t);
52 t->mid = mid;
53 t->reply_seq_num = reply_seq_num;
54 t->can_delete = True;
57 * Add to the *start* of the list not the end of the list.
58 * This ensures that the *last* send sequence with this mid
59 * is returned by preference.
60 * This can happen if the mid wraps and one of the early
61 * mid numbers didn't get a reply and is still lurking on
62 * the list. JRA. Found by Fran Fabrizio <fran@cis.uab.edu>.
65 DLIST_ADD(*list, t);
66 DEBUG(10,("store_sequence_for_reply: stored seq = %u mid = %u\n",
67 (unsigned int)reply_seq_num, (unsigned int)mid ));
68 return True;
71 static bool get_sequence_for_reply(struct outstanding_packet_lookup **list,
72 uint16 mid, uint32 *reply_seq_num)
74 struct outstanding_packet_lookup *t;
76 for (t = *list; t; t = t->next) {
77 if (t->mid == mid) {
78 *reply_seq_num = t->reply_seq_num;
79 DEBUG(10,("get_sequence_for_reply: found seq = %u mid = %u\n",
80 (unsigned int)t->reply_seq_num, (unsigned int)t->mid ));
81 if (t->can_delete) {
82 DLIST_REMOVE(*list, t);
83 SAFE_FREE(t);
85 return True;
88 return False;
91 static bool set_sequence_can_delete_flag(struct outstanding_packet_lookup **list, uint16 mid, bool can_delete_entry)
93 struct outstanding_packet_lookup *t;
95 for (t = *list; t; t = t->next) {
96 if (t->mid == mid) {
97 t->can_delete = can_delete_entry;
98 return True;
101 return False;
104 /***********************************************************
105 SMB signing - Common code before we set a new signing implementation
106 ************************************************************/
108 static bool cli_set_smb_signing_common(struct cli_state *cli)
110 if (!cli->sign_info.allow_smb_signing) {
111 return False;
114 if (!cli->sign_info.negotiated_smb_signing
115 && !cli->sign_info.mandatory_signing) {
116 return False;
119 if (cli->sign_info.doing_signing) {
120 return False;
123 if (cli->sign_info.free_signing_context)
124 cli->sign_info.free_signing_context(&cli->sign_info);
126 /* These calls are INCOMPATIBLE with SMB signing */
127 cli->readbraw_supported = False;
128 cli->writebraw_supported = False;
130 return True;
133 /***********************************************************
134 SMB signing - Common code for 'real' implementations
135 ************************************************************/
137 static bool set_smb_signing_real_common(struct smb_sign_info *si)
139 if (si->mandatory_signing) {
140 DEBUG(5, ("Mandatory SMB signing enabled!\n"));
143 si->doing_signing = True;
144 DEBUG(5, ("SMB signing enabled!\n"));
146 return True;
149 static void mark_packet_signed(char *outbuf)
151 uint16 flags2;
152 flags2 = SVAL(outbuf,smb_flg2);
153 flags2 |= FLAGS2_SMB_SECURITY_SIGNATURES;
154 SSVAL(outbuf,smb_flg2, flags2);
157 /***********************************************************
158 SMB signing - NULL implementation - calculate a MAC to send.
159 ************************************************************/
161 static void null_sign_outgoing_message(char *outbuf, struct smb_sign_info *si)
163 /* we can't zero out the sig, as we might be trying to send a
164 session request - which is NBT-level, not SMB level and doesn't
165 have the field */
166 return;
169 /***********************************************************
170 SMB signing - NULL implementation - check a MAC sent by server.
171 ************************************************************/
173 static bool null_check_incoming_message(const char *inbuf,
174 struct smb_sign_info *si,
175 bool must_be_ok)
177 return True;
180 /***********************************************************
181 SMB signing - NULL implementation - free signing context
182 ************************************************************/
184 static void null_free_signing_context(struct smb_sign_info *si)
186 return;
190 SMB signing - NULL implementation - setup the MAC key.
192 @note Used as an initialisation only - it will not correctly
193 shut down a real signing mechanism
196 static bool null_set_signing(struct smb_sign_info *si)
198 si->signing_context = NULL;
200 si->sign_outgoing_message = null_sign_outgoing_message;
201 si->check_incoming_message = null_check_incoming_message;
202 si->free_signing_context = null_free_signing_context;
204 return True;
208 * Free the signing context
211 static void free_signing_context(struct smb_sign_info *si)
213 if (si->free_signing_context) {
214 si->free_signing_context(si);
215 si->signing_context = NULL;
218 null_set_signing(si);
222 static bool signing_good(const char *inbuf, struct smb_sign_info *si,
223 bool good, uint32 seq, bool must_be_ok)
225 if (good) {
227 if (!si->doing_signing) {
228 si->doing_signing = True;
231 if (!si->seen_valid) {
232 si->seen_valid = True;
235 } else {
236 if (!si->mandatory_signing && !si->seen_valid) {
238 if (!must_be_ok) {
239 return True;
241 /* Non-mandatory signing - just turn off if this is the first bad packet.. */
242 DEBUG(5, ("srv_check_incoming_message: signing negotiated but not required and peer\n"
243 "isn't sending correct signatures. Turning off.\n"));
244 si->negotiated_smb_signing = False;
245 si->allow_smb_signing = False;
246 si->doing_signing = False;
247 free_signing_context(si);
248 return True;
249 } else if (!must_be_ok) {
250 /* This packet is known to be unsigned */
251 return True;
252 } else {
253 /* Mandatory signing or bad packet after signing started - fail and disconnect. */
254 if (seq)
255 DEBUG(0, ("signing_good: BAD SIG: seq %u\n", (unsigned int)seq));
256 return False;
259 return True;
262 /***********************************************************
263 SMB signing - Simple implementation - calculate a MAC on the packet
264 ************************************************************/
266 static void simple_packet_signature(struct smb_basic_signing_context *data,
267 const uchar *buf, uint32 seq_number,
268 unsigned char calc_md5_mac[16])
270 const size_t offset_end_of_sig = (smb_ss_field + 8);
271 unsigned char sequence_buf[8];
272 struct MD5Context md5_ctx;
273 #if 0
274 /* JRA - apparently this is incorrect. */
275 unsigned char key_buf[16];
276 #endif
279 * Firstly put the sequence number into the first 4 bytes.
280 * and zero out the next 4 bytes.
282 * We do this here, to avoid modifying the packet.
285 DEBUG(10,("simple_packet_signature: sequence number %u\n", seq_number ));
287 SIVAL(sequence_buf, 0, seq_number);
288 SIVAL(sequence_buf, 4, 0);
290 /* Calculate the 16 byte MAC - but don't alter the data in the
291 incoming packet.
293 This makes for a bit of fussing about, but it's not too bad.
295 MD5Init(&md5_ctx);
297 /* intialise with the key */
298 MD5Update(&md5_ctx, data->mac_key.data, data->mac_key.length);
299 #if 0
300 /* JRA - apparently this is incorrect. */
301 /* NB. When making and verifying SMB signatures, Windows apparently
302 zero-pads the key to 128 bits if it isn't long enough.
303 From Nalin Dahyabhai <nalin@redhat.com> */
304 if (data->mac_key.length < sizeof(key_buf)) {
305 memset(key_buf, 0, sizeof(key_buf));
306 MD5Update(&md5_ctx, key_buf, sizeof(key_buf) - data->mac_key.length);
308 #endif
310 /* copy in the first bit of the SMB header */
311 MD5Update(&md5_ctx, buf + 4, smb_ss_field - 4);
313 /* copy in the sequence number, instead of the signature */
314 MD5Update(&md5_ctx, sequence_buf, sizeof(sequence_buf));
316 /* copy in the rest of the packet in, skipping the signature */
317 MD5Update(&md5_ctx, buf + offset_end_of_sig,
318 smb_len(buf) - (offset_end_of_sig - 4));
320 /* calculate the MD5 sig */
321 MD5Final(calc_md5_mac, &md5_ctx);
325 /***********************************************************
326 SMB signing - Client implementation - send the MAC.
327 ************************************************************/
329 static void client_sign_outgoing_message(char *outbuf, struct smb_sign_info *si)
331 unsigned char calc_md5_mac[16];
332 struct smb_basic_signing_context *data =
333 (struct smb_basic_signing_context *)si->signing_context;
335 if (!si->doing_signing)
336 return;
338 /* JRA Paranioa test - we should be able to get rid of this... */
339 if (smb_len(outbuf) < (smb_ss_field + 8 - 4)) {
340 DEBUG(1, ("client_sign_outgoing_message: Logic error. Can't check signature on short packet! smb_len = %u\n",
341 smb_len(outbuf) ));
342 abort();
345 /* mark the packet as signed - BEFORE we sign it...*/
346 mark_packet_signed(outbuf);
348 simple_packet_signature(data, (const unsigned char *)outbuf,
349 data->send_seq_num, calc_md5_mac);
351 DEBUG(10, ("client_sign_outgoing_message: sent SMB signature of\n"));
352 dump_data(10, calc_md5_mac, 8);
354 memcpy(&outbuf[smb_ss_field], calc_md5_mac, 8);
356 /* cli->outbuf[smb_ss_field+2]=0;
357 Uncomment this to test if the remote server actually verifies signatures...*/
359 /* Instead of re-introducing the trans_info_conect we
360 used to have here, we use the fact that during a
361 SMBtrans/SMBtrans2/SMBnttrans send that the mid stays
362 constant. This means that calling store_sequence_for_reply()
363 will return False for all trans secondaries, as the mid is already
364 on the stored sequence list. As the send_seqence_number must
365 remain constant for all primary+secondary trans sends, we
366 only increment the send sequence number when we successfully
367 add a new entry to the outstanding sequence list. This means
368 I can isolate the fix here rather than re-adding the trans
369 signing on/off calls in libsmb/clitrans2.c JRA.
372 if (store_sequence_for_reply(&data->outstanding_packet_list, SVAL(outbuf,smb_mid), data->send_seq_num + 1)) {
373 data->send_seq_num += 2;
377 /***********************************************************
378 SMB signing - Client implementation - check a MAC sent by server.
379 ************************************************************/
381 static bool client_check_incoming_message(const char *inbuf,
382 struct smb_sign_info *si,
383 bool must_be_ok)
385 bool good;
386 uint32 reply_seq_number;
387 unsigned char calc_md5_mac[16];
388 unsigned char *server_sent_mac;
390 struct smb_basic_signing_context *data =
391 (struct smb_basic_signing_context *)si->signing_context;
393 if (!si->doing_signing)
394 return True;
396 if (smb_len(inbuf) < (smb_ss_field + 8 - 4)) {
397 DEBUG(1, ("client_check_incoming_message: Can't check signature on short packet! smb_len = %u\n", smb_len(inbuf)));
398 return False;
401 if (!get_sequence_for_reply(&data->outstanding_packet_list, SVAL(inbuf, smb_mid), &reply_seq_number)) {
402 DEBUG(1, ("client_check_incoming_message: received message "
403 "with mid %u with no matching send record.\n", (unsigned int)SVAL(inbuf, smb_mid) ));
404 return False;
407 simple_packet_signature(data, (const unsigned char *)inbuf,
408 reply_seq_number, calc_md5_mac);
410 server_sent_mac = (unsigned char *)&inbuf[smb_ss_field];
411 good = (memcmp(server_sent_mac, calc_md5_mac, 8) == 0);
413 if (!good) {
414 DEBUG(5, ("client_check_incoming_message: BAD SIG: wanted SMB signature of\n"));
415 dump_data(5, calc_md5_mac, 8);
417 DEBUG(5, ("client_check_incoming_message: BAD SIG: got SMB signature of\n"));
418 dump_data(5, server_sent_mac, 8);
419 #if 1 /* JRATEST */
421 int i;
422 for (i = -5; i < 5; i++) {
423 simple_packet_signature(data, (const unsigned char *)inbuf, reply_seq_number+i, calc_md5_mac);
424 if (memcmp(server_sent_mac, calc_md5_mac, 8) == 0) {
425 DEBUG(0,("client_check_incoming_message: out of seq. seq num %u matches. \
426 We were expecting seq %u\n", reply_seq_number+i, reply_seq_number ));
427 break;
431 #endif /* JRATEST */
433 } else {
434 DEBUG(10, ("client_check_incoming_message: seq %u: got good SMB signature of\n", (unsigned int)reply_seq_number));
435 dump_data(10, server_sent_mac, 8);
437 return signing_good(inbuf, si, good, reply_seq_number, must_be_ok);
440 /***********************************************************
441 SMB signing - Simple implementation - free signing context
442 ************************************************************/
444 static void simple_free_signing_context(struct smb_sign_info *si)
446 struct smb_basic_signing_context *data =
447 (struct smb_basic_signing_context *)si->signing_context;
448 struct outstanding_packet_lookup *list;
449 struct outstanding_packet_lookup *next;
451 for (list = data->outstanding_packet_list; list; list = next) {
452 next = list->next;
453 DLIST_REMOVE(data->outstanding_packet_list, list);
454 SAFE_FREE(list);
457 data_blob_free(&data->mac_key);
459 SAFE_FREE(si->signing_context);
461 return;
464 /***********************************************************
465 SMB signing - Simple implementation - setup the MAC key.
466 ************************************************************/
468 bool cli_simple_set_signing(struct cli_state *cli,
469 const DATA_BLOB user_session_key,
470 const DATA_BLOB response)
472 struct smb_basic_signing_context *data;
474 if (!user_session_key.length)
475 return False;
477 if (!cli_set_smb_signing_common(cli)) {
478 return False;
481 if (!set_smb_signing_real_common(&cli->sign_info)) {
482 return False;
485 data = SMB_XMALLOC_P(struct smb_basic_signing_context);
486 memset(data, '\0', sizeof(*data));
488 cli->sign_info.signing_context = data;
490 data->mac_key = data_blob(NULL, response.length + user_session_key.length);
492 memcpy(&data->mac_key.data[0], user_session_key.data, user_session_key.length);
494 DEBUG(10, ("cli_simple_set_signing: user_session_key\n"));
495 dump_data(10, user_session_key.data, user_session_key.length);
497 if (response.length) {
498 memcpy(&data->mac_key.data[user_session_key.length],response.data, response.length);
499 DEBUG(10, ("cli_simple_set_signing: response_data\n"));
500 dump_data(10, response.data, response.length);
501 } else {
502 DEBUG(10, ("cli_simple_set_signing: NULL response_data\n"));
505 dump_data_pw("MAC ssession key is:\n", data->mac_key.data, data->mac_key.length);
507 /* Initialise the sequence number */
508 data->send_seq_num = 0;
510 /* Initialise the list of outstanding packets */
511 data->outstanding_packet_list = NULL;
513 cli->sign_info.sign_outgoing_message = client_sign_outgoing_message;
514 cli->sign_info.check_incoming_message = client_check_incoming_message;
515 cli->sign_info.free_signing_context = simple_free_signing_context;
517 return True;
520 /***********************************************************
521 SMB signing - TEMP implementation - calculate a MAC to send.
522 ************************************************************/
524 static void temp_sign_outgoing_message(char *outbuf, struct smb_sign_info *si)
526 /* mark the packet as signed - BEFORE we sign it...*/
527 mark_packet_signed(outbuf);
529 /* I wonder what BSRSPYL stands for - but this is what MS
530 actually sends! */
531 memcpy(&outbuf[smb_ss_field], "BSRSPYL ", 8);
532 return;
535 /***********************************************************
536 SMB signing - TEMP implementation - check a MAC sent by server.
537 ************************************************************/
539 static bool temp_check_incoming_message(const char *inbuf,
540 struct smb_sign_info *si, bool foo)
542 return True;
545 /***********************************************************
546 SMB signing - TEMP implementation - free signing context
547 ************************************************************/
549 static void temp_free_signing_context(struct smb_sign_info *si)
551 return;
554 /***********************************************************
555 SMB signing - NULL implementation - setup the MAC key.
556 ************************************************************/
558 bool cli_null_set_signing(struct cli_state *cli)
560 return null_set_signing(&cli->sign_info);
563 /***********************************************************
564 SMB signing - temp implementation - setup the MAC key.
565 ************************************************************/
567 bool cli_temp_set_signing(struct cli_state *cli)
569 if (!cli_set_smb_signing_common(cli)) {
570 return False;
573 cli->sign_info.signing_context = NULL;
575 cli->sign_info.sign_outgoing_message = temp_sign_outgoing_message;
576 cli->sign_info.check_incoming_message = temp_check_incoming_message;
577 cli->sign_info.free_signing_context = temp_free_signing_context;
579 return True;
582 void cli_free_signing_context(struct cli_state *cli)
584 free_signing_context(&cli->sign_info);
588 * Sign a packet with the current mechanism
591 void cli_calculate_sign_mac(struct cli_state *cli, char *buf)
593 cli->sign_info.sign_outgoing_message(buf, &cli->sign_info);
597 * Check a packet with the current mechanism
598 * @return False if we had an established signing connection
599 * which had a bad checksum, True otherwise.
602 bool cli_check_sign_mac(struct cli_state *cli, char *buf)
604 if (!cli->sign_info.check_incoming_message(buf, &cli->sign_info, True)) {
605 free_signing_context(&cli->sign_info);
606 return False;
608 return True;
611 /***********************************************************
612 Enter trans/trans2/nttrans state.
613 ************************************************************/
615 bool client_set_trans_sign_state_on(struct cli_state *cli, uint16 mid)
617 struct smb_sign_info *si = &cli->sign_info;
618 struct smb_basic_signing_context *data = (struct smb_basic_signing_context *)si->signing_context;
620 if (!si->doing_signing) {
621 return True;
624 if (!data) {
625 return False;
628 if (!set_sequence_can_delete_flag(&data->outstanding_packet_list, mid, False)) {
629 return False;
632 return True;
635 /***********************************************************
636 Leave trans/trans2/nttrans state.
637 ************************************************************/
639 bool client_set_trans_sign_state_off(struct cli_state *cli, uint16 mid)
641 uint32 reply_seq_num;
642 struct smb_sign_info *si = &cli->sign_info;
643 struct smb_basic_signing_context *data = (struct smb_basic_signing_context *)si->signing_context;
645 if (!si->doing_signing) {
646 return True;
649 if (!data) {
650 return False;
653 if (!set_sequence_can_delete_flag(&data->outstanding_packet_list, mid, True)) {
654 return False;
657 /* Now delete the stored mid entry. */
658 if (!get_sequence_for_reply(&data->outstanding_packet_list, mid, &reply_seq_num)) {
659 return False;
662 return True;
665 /***********************************************************
666 Is client signing on ?
667 ************************************************************/
669 bool client_is_signing_on(struct cli_state *cli)
671 struct smb_sign_info *si = &cli->sign_info;
672 return si->doing_signing;
675 /***********************************************************
676 SMB signing - Server implementation - send the MAC.
677 ************************************************************/
679 static void srv_sign_outgoing_message(char *outbuf, struct smb_sign_info *si)
681 unsigned char calc_md5_mac[16];
682 struct smb_basic_signing_context *data =
683 (struct smb_basic_signing_context *)si->signing_context;
684 uint32 send_seq_number = data->send_seq_num-1;
685 uint16 mid;
687 if (!si->doing_signing) {
688 return;
691 /* JRA Paranioa test - we should be able to get rid of this... */
692 if (smb_len(outbuf) < (smb_ss_field + 8 - 4)) {
693 DEBUG(1, ("srv_sign_outgoing_message: Logic error. Can't send signature on short packet! smb_len = %u\n",
694 smb_len(outbuf) ));
695 abort();
698 /* mark the packet as signed - BEFORE we sign it...*/
699 mark_packet_signed(outbuf);
701 mid = SVAL(outbuf, smb_mid);
703 /* See if this is a reply for a deferred packet. */
704 get_sequence_for_reply(&data->outstanding_packet_list, mid, &send_seq_number);
706 simple_packet_signature(data, (const unsigned char *)outbuf, send_seq_number, calc_md5_mac);
708 DEBUG(10, ("srv_sign_outgoing_message: seq %u: sent SMB signature of\n", (unsigned int)send_seq_number));
709 dump_data(10, calc_md5_mac, 8);
711 memcpy(&outbuf[smb_ss_field], calc_md5_mac, 8);
713 /* cli->outbuf[smb_ss_field+2]=0;
714 Uncomment this to test if the remote client actually verifies signatures...*/
717 /***********************************************************
718 SMB signing - Server implementation - check a MAC sent by server.
719 ************************************************************/
721 static bool srv_check_incoming_message(const char *inbuf,
722 struct smb_sign_info *si,
723 bool must_be_ok)
725 bool good;
726 struct smb_basic_signing_context *data =
727 (struct smb_basic_signing_context *)si->signing_context;
728 uint32 reply_seq_number = data->send_seq_num;
729 uint32 saved_seq;
730 unsigned char calc_md5_mac[16];
731 unsigned char *server_sent_mac;
733 if (!si->doing_signing)
734 return True;
736 if (smb_len(inbuf) < (smb_ss_field + 8 - 4)) {
737 DEBUG(1, ("srv_check_incoming_message: Can't check signature on short packet! smb_len = %u\n", smb_len(inbuf)));
738 return False;
741 /* We always increment the sequence number. */
742 data->send_seq_num += 2;
744 saved_seq = reply_seq_number;
745 simple_packet_signature(data, (const unsigned char *)inbuf, reply_seq_number, calc_md5_mac);
747 server_sent_mac = (unsigned char *)&inbuf[smb_ss_field];
748 good = (memcmp(server_sent_mac, calc_md5_mac, 8) == 0);
750 if (!good) {
752 if (saved_seq) {
753 DEBUG(0, ("srv_check_incoming_message: BAD SIG: seq %u wanted SMB signature of\n",
754 (unsigned int)saved_seq));
755 dump_data(5, calc_md5_mac, 8);
757 DEBUG(0, ("srv_check_incoming_message: BAD SIG: seq %u got SMB signature of\n",
758 (unsigned int)reply_seq_number));
759 dump_data(5, server_sent_mac, 8);
762 #if 1 /* JRATEST */
764 int i;
765 reply_seq_number -= 5;
766 for (i = 0; i < 10; i++, reply_seq_number++) {
767 simple_packet_signature(data, (const unsigned char *)inbuf, reply_seq_number, calc_md5_mac);
768 if (memcmp(server_sent_mac, calc_md5_mac, 8) == 0) {
769 DEBUG(0,("srv_check_incoming_message: out of seq. seq num %u matches. \
770 We were expecting seq %u\n", reply_seq_number, saved_seq ));
771 break;
775 #endif /* JRATEST */
777 } else {
778 DEBUG(10, ("srv_check_incoming_message: seq %u: (current is %u) got good SMB signature of\n", (unsigned int)reply_seq_number, (unsigned int)data->send_seq_num));
779 dump_data(10, server_sent_mac, 8);
782 return (signing_good(inbuf, si, good, saved_seq, must_be_ok));
785 /***********************************************************
786 SMB signing - server API's.
787 ************************************************************/
789 static struct smb_sign_info srv_sign_info = {
790 null_sign_outgoing_message,
791 null_check_incoming_message,
792 null_free_signing_context,
793 NULL,
794 False,
795 False,
796 False,
797 False
800 /***********************************************************
801 Turn signing off or on for oplock break code.
802 ************************************************************/
804 bool srv_oplock_set_signing(bool onoff)
806 bool ret = srv_sign_info.doing_signing;
807 srv_sign_info.doing_signing = onoff;
808 return ret;
811 /***********************************************************
812 Called to validate an incoming packet from the client.
813 ************************************************************/
815 bool srv_check_sign_mac(const char *inbuf, bool must_be_ok)
817 /* Check if it's a non-session message. */
818 if(CVAL(inbuf,0)) {
819 return True;
822 return srv_sign_info.check_incoming_message(inbuf, &srv_sign_info, must_be_ok);
825 /***********************************************************
826 Called to sign an outgoing packet to the client.
827 ************************************************************/
829 void srv_calculate_sign_mac(char *outbuf)
831 /* Check if it's a non-session message. */
832 if(CVAL(outbuf,0)) {
833 return;
836 srv_sign_info.sign_outgoing_message(outbuf, &srv_sign_info);
839 /***********************************************************
840 Called by server to defer an outgoing packet.
841 ************************************************************/
843 void srv_defer_sign_response(uint16 mid)
845 struct smb_basic_signing_context *data;
847 if (!srv_sign_info.doing_signing)
848 return;
850 data = (struct smb_basic_signing_context *)srv_sign_info.signing_context;
852 if (!data)
853 return;
856 * Ensure we only store this mid reply once...
859 store_sequence_for_reply(&data->outstanding_packet_list, mid,
860 data->send_seq_num-1);
863 /***********************************************************
864 Called to remove sequence records when a deferred packet is
865 cancelled by mid. This should never find one....
866 ************************************************************/
868 void srv_cancel_sign_response(uint16 mid)
870 struct smb_basic_signing_context *data;
871 uint32 dummy_seq;
873 if (!srv_sign_info.doing_signing)
874 return;
876 data = (struct smb_basic_signing_context *)srv_sign_info.signing_context;
878 if (!data)
879 return;
881 DEBUG(10,("srv_cancel_sign_response: for mid %u\n", (unsigned int)mid ));
883 while (get_sequence_for_reply(&data->outstanding_packet_list, mid, &dummy_seq))
886 /* cancel doesn't send a reply so doesn't burn a sequence number. */
887 data->send_seq_num -= 1;
890 /***********************************************************
891 Called by server negprot when signing has been negotiated.
892 ************************************************************/
894 void srv_set_signing_negotiated(void)
896 srv_sign_info.allow_smb_signing = True;
897 srv_sign_info.negotiated_smb_signing = True;
898 if (lp_server_signing() == Required)
899 srv_sign_info.mandatory_signing = True;
901 srv_sign_info.sign_outgoing_message = temp_sign_outgoing_message;
902 srv_sign_info.check_incoming_message = temp_check_incoming_message;
903 srv_sign_info.free_signing_context = temp_free_signing_context;
906 /***********************************************************
907 Returns whether signing is active. We can't use sendfile or raw
908 reads/writes if it is.
909 ************************************************************/
911 bool srv_is_signing_active(void)
913 return srv_sign_info.doing_signing;
917 /***********************************************************
918 Returns whether signing is negotiated. We can't use it unless it was
919 in the negprot.
920 ************************************************************/
922 bool srv_is_signing_negotiated(void)
924 return srv_sign_info.negotiated_smb_signing;
927 /***********************************************************
928 Returns whether signing is actually happening
929 ************************************************************/
931 bool srv_signing_started(void)
933 struct smb_basic_signing_context *data;
935 if (!srv_sign_info.doing_signing) {
936 return False;
939 data = (struct smb_basic_signing_context *)srv_sign_info.signing_context;
940 if (!data)
941 return False;
943 if (data->send_seq_num == 0) {
944 return False;
947 return True;
950 /***********************************************************
951 Turn on signing from this packet onwards.
952 ************************************************************/
954 void srv_set_signing(const DATA_BLOB user_session_key, const DATA_BLOB response)
956 struct smb_basic_signing_context *data;
958 if (!user_session_key.length)
959 return;
961 if (!srv_sign_info.negotiated_smb_signing && !srv_sign_info.mandatory_signing) {
962 DEBUG(5,("srv_set_signing: signing negotiated = %u, mandatory_signing = %u. Not allowing smb signing.\n",
963 (unsigned int)srv_sign_info.negotiated_smb_signing,
964 (unsigned int)srv_sign_info.mandatory_signing ));
965 return;
968 /* Once we've turned on, ignore any more sessionsetups. */
969 if (srv_sign_info.doing_signing) {
970 return;
973 if (srv_sign_info.free_signing_context)
974 srv_sign_info.free_signing_context(&srv_sign_info);
976 srv_sign_info.doing_signing = True;
978 data = SMB_XMALLOC_P(struct smb_basic_signing_context);
979 memset(data, '\0', sizeof(*data));
981 srv_sign_info.signing_context = data;
983 data->mac_key = data_blob(NULL, response.length + user_session_key.length);
985 memcpy(&data->mac_key.data[0], user_session_key.data, user_session_key.length);
986 if (response.length)
987 memcpy(&data->mac_key.data[user_session_key.length],response.data, response.length);
989 dump_data_pw("MAC ssession key is:\n", data->mac_key.data, data->mac_key.length);
991 DEBUG(3,("srv_set_signing: turning on SMB signing: signing negotiated = %s, mandatory_signing = %s.\n",
992 BOOLSTR(srv_sign_info.negotiated_smb_signing),
993 BOOLSTR(srv_sign_info.mandatory_signing) ));
995 /* Initialise the sequence number */
996 data->send_seq_num = 0;
998 /* Initialise the list of outstanding packets */
999 data->outstanding_packet_list = NULL;
1001 srv_sign_info.sign_outgoing_message = srv_sign_outgoing_message;
1002 srv_sign_info.check_incoming_message = srv_check_incoming_message;
1003 srv_sign_info.free_signing_context = simple_free_signing_context;