2013-06-22 22:28:03 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2013, Hasso-Plattner-Institut.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. Neither the name of the Institute nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* This file is part of the Contiki operating system.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \file
|
|
|
|
* Testing CTR
|
|
|
|
* \author
|
|
|
|
* Konrad Krentz <konrad.krentz@gmail.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "contiki.h"
|
|
|
|
#include "net/packetbuf.h"
|
|
|
|
#include "net/netstack.h"
|
|
|
|
#include "net/llsec/llsec802154.h"
|
2015-06-08 20:06:40 +02:00
|
|
|
#include "lib/ccm-star.h"
|
|
|
|
#include "net/llsec/ccm-star-packetbuf.h"
|
2013-06-22 22:28:03 +02:00
|
|
|
#include "net/mac/frame802154.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2015-12-17 12:13:32 +01:00
|
|
|
#define SEC_LVL 6
|
|
|
|
#define MIC_LEN LLSEC802154_MIC_LEN(6)
|
|
|
|
|
2013-06-22 22:28:03 +02:00
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
/* Test vector C.2.1.2 from IEEE 802.15.4-2006 */
|
|
|
|
static void
|
|
|
|
test_sec_lvl_6()
|
|
|
|
{
|
|
|
|
uint8_t key[16] = { 0xC0 , 0xC1 , 0xC2 , 0xC3 ,
|
|
|
|
0xC4 , 0xC5 , 0xC6 , 0xC7 ,
|
|
|
|
0xC8 , 0xC9 , 0xCA , 0xCB ,
|
|
|
|
0xCC , 0xCD , 0xCE , 0xCF };
|
2015-07-01 16:00:14 +02:00
|
|
|
linkaddr_t source_address = {{ 0xAC , 0xDE , 0x48 , 0x00 ,
|
|
|
|
0x00 , 0x00 , 0x00 , 0x01 }};
|
2013-06-22 22:28:03 +02:00
|
|
|
uint8_t data[30] = { 0x2B , 0xDC , 0x84 , 0x21 , 0x43 ,
|
|
|
|
/* Destination Address */
|
|
|
|
0x02 , 0x00 , 0x00 , 0x00 , 0x00 , 0x48 , 0xDE , 0xAC ,
|
|
|
|
/* PAN-ID */
|
|
|
|
0xFF , 0xFF ,
|
|
|
|
/* Source Address */
|
|
|
|
0x01 , 0x00 , 0x00 , 0x00 , 0x00 , 0x48 , 0xDE , 0xAC ,
|
|
|
|
/* Security Level */
|
|
|
|
0x06 ,
|
|
|
|
/* Frame Counter */
|
|
|
|
0x05 , 0x00 , 0x00 , 0x00 ,
|
|
|
|
0x01 , 0xCE };
|
2015-12-17 12:13:32 +01:00
|
|
|
uint8_t oracle[MIC_LEN] = { 0x4F , 0xDE , 0x52 , 0x90 ,
|
|
|
|
0x61 , 0xF9 , 0xC6 , 0xF1 };
|
2015-07-15 15:11:42 +02:00
|
|
|
uint8_t nonce[13];
|
2013-06-22 22:28:03 +02:00
|
|
|
frame802154_frame_counter_t counter;
|
|
|
|
|
|
|
|
printf("Testing verification ... ");
|
|
|
|
|
2015-07-15 15:11:42 +02:00
|
|
|
linkaddr_copy(&linkaddr_node_addr, &source_address);
|
2013-06-22 22:28:03 +02:00
|
|
|
packetbuf_clear();
|
|
|
|
packetbuf_set_datalen(30);
|
|
|
|
memcpy(packetbuf_hdrptr(), data, 30);
|
|
|
|
counter.u32 = 5;
|
|
|
|
packetbuf_set_attr(PACKETBUF_ATTR_FRAME_COUNTER_BYTES_0_1, counter.u16[0]);
|
|
|
|
packetbuf_set_attr(PACKETBUF_ATTR_FRAME_COUNTER_BYTES_2_3, counter.u16[1]);
|
2015-12-17 12:13:32 +01:00
|
|
|
packetbuf_set_attr(PACKETBUF_ATTR_SECURITY_LEVEL, SEC_LVL);
|
2013-06-22 22:28:03 +02:00
|
|
|
packetbuf_hdrreduce(29);
|
|
|
|
|
2015-06-08 20:06:40 +02:00
|
|
|
CCM_STAR.set_key(key);
|
2015-07-15 15:11:42 +02:00
|
|
|
ccm_star_packetbuf_set_nonce(nonce, 1);
|
|
|
|
CCM_STAR.aead(nonce,
|
|
|
|
packetbuf_dataptr(), packetbuf_datalen(),
|
|
|
|
packetbuf_hdrptr(), packetbuf_hdrlen(),
|
2015-12-17 12:13:32 +01:00
|
|
|
((uint8_t *) packetbuf_hdrptr()) + 30, MIC_LEN,
|
2015-07-15 15:11:42 +02:00
|
|
|
1);
|
2013-06-22 22:28:03 +02:00
|
|
|
|
2015-12-17 12:13:32 +01:00
|
|
|
if(memcmp(((uint8_t *) packetbuf_hdrptr()) + 30, oracle, MIC_LEN) == 0) {
|
2013-06-22 22:28:03 +02:00
|
|
|
printf("Success\n");
|
|
|
|
} else {
|
|
|
|
printf("Failure\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("Testing encryption ... ");
|
|
|
|
|
|
|
|
if(((uint8_t *) packetbuf_hdrptr())[29] == 0xD8) {
|
|
|
|
printf("Success\n");
|
|
|
|
} else {
|
|
|
|
printf("Failure\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("Testing decryption ... ");
|
2015-07-15 15:11:42 +02:00
|
|
|
packetbuf_set_addr(PACKETBUF_ADDR_SENDER, &source_address);
|
|
|
|
ccm_star_packetbuf_set_nonce(nonce, 0);
|
|
|
|
CCM_STAR.aead(nonce,
|
|
|
|
packetbuf_dataptr(), packetbuf_datalen(),
|
|
|
|
packetbuf_hdrptr(), packetbuf_hdrlen(),
|
2015-12-17 12:13:32 +01:00
|
|
|
((uint8_t *) packetbuf_hdrptr()) + 30, MIC_LEN,
|
2015-07-15 15:11:42 +02:00
|
|
|
0);
|
2013-06-22 22:28:03 +02:00
|
|
|
if(((uint8_t *) packetbuf_hdrptr())[29] == 0xCE) {
|
|
|
|
printf("Success\n");
|
|
|
|
} else {
|
|
|
|
printf("Failure\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
2014-10-09 11:34:51 +02:00
|
|
|
PROCESS(ccm_star_tests_process, "CCM* tests process");
|
|
|
|
AUTOSTART_PROCESSES(&ccm_star_tests_process);
|
2013-06-22 22:28:03 +02:00
|
|
|
/*---------------------------------------------------------------------------*/
|
2014-10-09 11:34:51 +02:00
|
|
|
PROCESS_THREAD(ccm_star_tests_process, ev, data)
|
2013-06-22 22:28:03 +02:00
|
|
|
{
|
|
|
|
PROCESS_BEGIN();
|
|
|
|
|
|
|
|
test_sec_lvl_6();
|
|
|
|
|
|
|
|
PROCESS_END();
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|