180 lines
5.5 KiB
C
180 lines
5.5 KiB
C
|
/*
|
||
|
* Copyright (c) 2014, Fraunhofer Heinrich-Hertz-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.
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* \file
|
||
|
* Creates and parses the ContikiMAC header.
|
||
|
* \author
|
||
|
* Konrad Krentz <konrad.krentz@gmail.com>
|
||
|
*/
|
||
|
|
||
|
#include "net/mac/contikimac/contikimac-framer.h"
|
||
|
#include "net/packetbuf.h"
|
||
|
#include "net/netstack.h"
|
||
|
#include <string.h>
|
||
|
|
||
|
#define CONTIKIMAC_ID 0x00
|
||
|
|
||
|
/* SHORTEST_PACKET_SIZE is the shortest packet that ContikiMAC
|
||
|
allows. Packets have to be a certain size to be able to be detected
|
||
|
by two consecutive CCA checks, and here is where we define this
|
||
|
shortest size.
|
||
|
Padded packets will have the wrong ipv6 checksum unless CONTIKIMAC_HEADER
|
||
|
is used (on both sides) and the receiver will ignore them.
|
||
|
With no header, reduce to transmit a proper multicast RPL DIS. */
|
||
|
#ifdef CONTIKIMAC_FRAMER_CONF_SHORTEST_PACKET_SIZE
|
||
|
#define SHORTEST_PACKET_SIZE CONTIKIMAC_FRAMER_CONF_SHORTEST_PACKET_SIZE
|
||
|
#else /* CONTIKIMAC_FRAMER_CONF_SHORTEST_PACKET_SIZE */
|
||
|
#define SHORTEST_PACKET_SIZE 43
|
||
|
#endif /* CONTIKIMAC_FRAMER_CONF_SHORTEST_PACKET_SIZE */
|
||
|
|
||
|
#ifdef CONTIKIMAC_FRAMER_CONF_DECORATED_FRAMER
|
||
|
#define DECORATED_FRAMER CONTIKIMAC_FRAMER_CONF_DECORATED_FRAMER
|
||
|
#else /* CONTIKIMAC_FRAMER_CONF_DECORATED_FRAMER */
|
||
|
#define DECORATED_FRAMER framer_802154
|
||
|
#endif /* CONTIKIMAC_FRAMER_CONF_DECORATED_FRAMER */
|
||
|
|
||
|
extern const struct framer DECORATED_FRAMER;
|
||
|
|
||
|
#define DEBUG 0
|
||
|
#if DEBUG
|
||
|
#include <stdio.h>
|
||
|
#define PRINTF(...) printf(__VA_ARGS__)
|
||
|
#else
|
||
|
#define PRINTF(...)
|
||
|
#endif
|
||
|
|
||
|
/* 2-byte header for recovering padded packets.
|
||
|
Wireshark will not understand such packets at present. */
|
||
|
struct hdr {
|
||
|
uint8_t id;
|
||
|
uint8_t len;
|
||
|
};
|
||
|
|
||
|
/*---------------------------------------------------------------------------*/
|
||
|
static int
|
||
|
create(void)
|
||
|
{
|
||
|
struct hdr *chdr;
|
||
|
int hdr_len;
|
||
|
|
||
|
if(packetbuf_hdralloc(sizeof(struct hdr)) == 0) {
|
||
|
PRINTF("contikimac-framer: too large header\n");
|
||
|
return FRAMER_FAILED;
|
||
|
}
|
||
|
chdr = packetbuf_hdrptr();
|
||
|
chdr->id = CONTIKIMAC_ID;
|
||
|
chdr->len = 0;
|
||
|
|
||
|
hdr_len = DECORATED_FRAMER.create();
|
||
|
if(hdr_len < 0) {
|
||
|
PRINTF("contikimac-framer: decorated framer failed\n");
|
||
|
return FRAMER_FAILED;
|
||
|
}
|
||
|
|
||
|
return hdr_len + sizeof(struct hdr);
|
||
|
}
|
||
|
/*---------------------------------------------------------------------------*/
|
||
|
static void
|
||
|
pad(void)
|
||
|
{
|
||
|
int transmit_len;
|
||
|
uint8_t *ptr;
|
||
|
uint8_t zeroes_count;
|
||
|
|
||
|
transmit_len = packetbuf_totlen();
|
||
|
if(transmit_len < SHORTEST_PACKET_SIZE) {
|
||
|
/* Padding required */
|
||
|
zeroes_count = SHORTEST_PACKET_SIZE - transmit_len;
|
||
|
ptr = packetbuf_dataptr();
|
||
|
memset(ptr + packetbuf_datalen(), 0, zeroes_count);
|
||
|
packetbuf_set_datalen(packetbuf_datalen() + zeroes_count);
|
||
|
}
|
||
|
}
|
||
|
/*---------------------------------------------------------------------------*/
|
||
|
static int
|
||
|
create_and_secure(void)
|
||
|
{
|
||
|
struct hdr *chdr;
|
||
|
int hdr_len;
|
||
|
|
||
|
hdr_len = create();
|
||
|
if(hdr_len < 0) {
|
||
|
return FRAMER_FAILED;
|
||
|
}
|
||
|
|
||
|
packetbuf_compact();
|
||
|
if(!NETSTACK_LLSEC.on_frame_created()) {
|
||
|
PRINTF("contikimac-framer: securing failed\n");
|
||
|
return FRAMER_FAILED;
|
||
|
}
|
||
|
|
||
|
chdr = (struct hdr *)(((uint8_t *) packetbuf_dataptr()) - sizeof(struct hdr));
|
||
|
chdr->len = packetbuf_datalen();
|
||
|
pad();
|
||
|
|
||
|
return hdr_len;
|
||
|
}
|
||
|
/*---------------------------------------------------------------------------*/
|
||
|
static int
|
||
|
parse(void)
|
||
|
{
|
||
|
int hdr_len;
|
||
|
struct hdr *chdr;
|
||
|
|
||
|
hdr_len = DECORATED_FRAMER.parse();
|
||
|
if(hdr_len < 0) {
|
||
|
return FRAMER_FAILED;
|
||
|
}
|
||
|
|
||
|
chdr = packetbuf_dataptr();
|
||
|
if(chdr->id != CONTIKIMAC_ID) {
|
||
|
PRINTF("contikimac-framer: CONTIKIMAC_ID is missing\n");
|
||
|
return FRAMER_FAILED;
|
||
|
}
|
||
|
|
||
|
if(!packetbuf_hdrreduce(sizeof(struct hdr))) {
|
||
|
PRINTF("contikimac-framer: packetbuf_hdrreduce failed\n");
|
||
|
return FRAMER_FAILED;
|
||
|
}
|
||
|
|
||
|
packetbuf_set_datalen(chdr->len);
|
||
|
chdr->len = 0;
|
||
|
|
||
|
return hdr_len + sizeof(struct hdr);
|
||
|
}
|
||
|
/*---------------------------------------------------------------------------*/
|
||
|
const struct framer contikimac_framer = {
|
||
|
create,
|
||
|
create_and_secure,
|
||
|
parse
|
||
|
};
|
||
|
/*---------------------------------------------------------------------------*/
|