2013-05-24 11:01:43 +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
|
|
|
|
* Common functionality of 802.15.4-compliant llsec_drivers.
|
|
|
|
* \author
|
|
|
|
* Konrad Krentz <konrad.krentz@gmail.com>
|
|
|
|
*/
|
|
|
|
|
2014-11-08 01:15:42 +01:00
|
|
|
/**
|
|
|
|
* \addtogroup llsec
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2015-02-15 17:09:10 +01:00
|
|
|
* \defgroup llsec802154 Link Layer Security Common Functionality
|
2014-11-08 01:15:42 +01:00
|
|
|
*
|
|
|
|
* Common functionality of 802.15.4-compliant llsec_drivers.
|
|
|
|
*
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2013-05-24 11:01:43 +02:00
|
|
|
#ifndef LLSEC802154_H_
|
|
|
|
#define LLSEC802154_H_
|
|
|
|
|
|
|
|
#include "net/mac/frame802154.h"
|
2013-06-21 19:34:31 +02:00
|
|
|
#include "net/ip/uip.h"
|
2013-05-24 11:01:43 +02:00
|
|
|
|
2015-12-17 12:13:32 +01:00
|
|
|
#ifdef LLSEC802154_CONF_ENABLED
|
|
|
|
#define LLSEC802154_ENABLED LLSEC802154_CONF_ENABLED
|
|
|
|
#else /* LLSEC802154_CONF_ENABLED */
|
|
|
|
#define LLSEC802154_ENABLED 0
|
|
|
|
#endif /* LLSEC802154_CONF_ENABLED */
|
2013-05-24 11:01:43 +02:00
|
|
|
|
2015-12-17 12:13:32 +01:00
|
|
|
#define LLSEC802154_MIC_LEN(sec_lvl) (2 << (sec_lvl & 3))
|
2013-05-24 11:01:43 +02:00
|
|
|
|
2013-06-24 08:49:11 +02:00
|
|
|
#ifdef LLSEC802154_CONF_USES_EXPLICIT_KEYS
|
|
|
|
#define LLSEC802154_USES_EXPLICIT_KEYS LLSEC802154_CONF_USES_EXPLICIT_KEYS
|
|
|
|
#else /* LLSEC802154_CONF_USES_EXPLICIT_KEYS */
|
|
|
|
#define LLSEC802154_USES_EXPLICIT_KEYS 0
|
|
|
|
#endif /* LLSEC802154_CONF_USES_EXPLICIT_KEYS */
|
|
|
|
|
2015-09-21 18:39:30 +02:00
|
|
|
#ifdef LLSEC802154_CONF_USES_FRAME_COUNTER
|
|
|
|
#define LLSEC802154_USES_FRAME_COUNTER LLSEC802154_CONF_USES_FRAME_COUNTER
|
|
|
|
#else /* LLSEC802154_CONF_USES_FRAME_COUNTER */
|
2015-12-17 12:13:32 +01:00
|
|
|
#define LLSEC802154_USES_FRAME_COUNTER LLSEC802154_ENABLED
|
2015-09-21 18:39:30 +02:00
|
|
|
#endif /* LLSEC802154_CONF_USES_FRAME_COUNTER */
|
|
|
|
|
2015-12-17 12:13:32 +01:00
|
|
|
#ifdef LLSEC802154_CONF_USES_AUX_HEADER
|
|
|
|
#define LLSEC802154_USES_AUX_HEADER LLSEC802154_CONF_USES_AUX_HEADER
|
|
|
|
#else /* LLSEC802154_CONF_USES_AUX_HEADER */
|
|
|
|
#define LLSEC802154_USES_AUX_HEADER LLSEC802154_ENABLED
|
|
|
|
#endif /* LLSEC802154_CONF_USES_AUX_HEADER */
|
|
|
|
|
2013-06-21 19:34:31 +02:00
|
|
|
#if UIP_BYTE_ORDER == UIP_LITTLE_ENDIAN
|
|
|
|
#define LLSEC802154_HTONS(n) (n)
|
|
|
|
#define LLSEC802154_HTONL(n) (n)
|
|
|
|
#else /* UIP_CONF_BYTE_ORDER == UIP_LITTLE_ENDIAN */
|
|
|
|
#define LLSEC802154_HTONS(n) (uint16_t)((((uint16_t) (n)) << 8) | (((uint16_t) (n)) >> 8))
|
|
|
|
#define LLSEC802154_HTONL(n) (((uint32_t)UIP_HTONS(n) << 16) | UIP_HTONS((uint32_t)(n) >> 16))
|
|
|
|
#endif /* UIP_CONF_BYTE_ORDER == UIP_LITTLE_ENDIAN */
|
|
|
|
|
2013-05-24 11:01:43 +02:00
|
|
|
#endif /* LLSEC802154_H_ */
|
|
|
|
|
|
|
|
/** @} */
|
|
|
|
/** @} */
|