2011-06-22 21:09:06 +02:00
|
|
|
#include <stdint.h>
|
2011-07-05 04:24:13 +02:00
|
|
|
#include <string.h>
|
|
|
|
#include <stdio.h>
|
2011-06-24 01:48:41 +02:00
|
|
|
#include <mutex.h>
|
2011-07-12 15:00:21 +02:00
|
|
|
#include <thread.h>
|
|
|
|
#include <msg.h>
|
2011-07-05 04:24:13 +02:00
|
|
|
|
|
|
|
#include <posix_io.h>
|
|
|
|
#include <board_uart0.h>
|
2011-07-25 17:00:18 +02:00
|
|
|
|
|
|
|
#include "bordermultiplex.h"
|
2011-06-22 21:09:06 +02:00
|
|
|
#include "ieee802154_frame.h"
|
2011-07-25 16:33:24 +02:00
|
|
|
#include "flowcontrol.h"
|
2011-07-25 15:06:40 +02:00
|
|
|
#include "sixlowborder.h"
|
2011-06-22 21:09:06 +02:00
|
|
|
#include "sixlowip.h"
|
2011-07-05 04:24:13 +02:00
|
|
|
#include "sixlownd.h"
|
2011-06-22 21:09:06 +02:00
|
|
|
#include "serialnumber.h"
|
|
|
|
#include "sixlowerror.h"
|
|
|
|
|
2011-07-12 15:00:21 +02:00
|
|
|
#define READER_STACK_SIZE 512
|
|
|
|
|
2011-07-23 22:17:52 +02:00
|
|
|
char serial_reader_stack[READER_STACK_SIZE];
|
|
|
|
uint16_t serial_reader_pid;
|
2011-07-12 15:00:21 +02:00
|
|
|
|
2011-07-23 22:17:52 +02:00
|
|
|
void serial_reader_f(void);
|
2011-07-12 15:00:21 +02:00
|
|
|
|
2011-07-23 22:17:52 +02:00
|
|
|
uint8_t border_initialize(transceiver_type_t trans,ipv6_addr_t *border_router_addr) {
|
2011-07-12 15:00:21 +02:00
|
|
|
ipv6_addr_t addr;
|
|
|
|
|
2011-07-23 22:17:52 +02:00
|
|
|
serial_reader_pid = thread_create(
|
|
|
|
serial_reader_stack, READER_STACK_SIZE,
|
2011-07-12 15:00:21 +02:00
|
|
|
PRIORITY_MAIN-1, CREATE_STACKTEST,
|
2011-07-23 22:17:52 +02:00
|
|
|
serial_reader_f, "serial_reader");
|
2011-07-12 15:00:21 +02:00
|
|
|
|
2011-07-23 22:17:52 +02:00
|
|
|
if (border_router_addr == NULL) {
|
|
|
|
border_router_addr = &addr;
|
2011-07-12 15:00:21 +02:00
|
|
|
|
2011-07-25 16:33:24 +02:00
|
|
|
addr = flowcontrol_init();
|
2011-07-12 15:00:21 +02:00
|
|
|
}
|
|
|
|
|
2011-06-22 21:09:06 +02:00
|
|
|
/* only allow addresses generated accoding to
|
|
|
|
* RFC 4944 (Section 6) & RFC 2464 (Section 4) from short address
|
|
|
|
* -- for now
|
|
|
|
*/
|
2011-07-23 22:17:52 +02:00
|
|
|
if ( border_router_addr->uint16[4] != HTONS(IEEE_802154_PAN_ID ^ 0x0200) ||
|
|
|
|
border_router_addr->uint16[5] != HTONS(0x00FF) ||
|
|
|
|
border_router_addr->uint16[6] != HTONS(0xFE00)
|
2011-06-22 21:09:06 +02:00
|
|
|
) {
|
|
|
|
return SIXLOWERROR_ADDRESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
// radio-address is 8-bit so this must be tested extra
|
2011-07-23 22:17:52 +02:00
|
|
|
if (border_router_addr->uint8[14] != 0) {
|
2011-06-22 21:09:06 +02:00
|
|
|
return SIXLOWERROR_ADDRESS;
|
|
|
|
}
|
|
|
|
|
2011-07-23 22:17:52 +02:00
|
|
|
sixlowpan_init(trans,border_router_addr->uint8[15],1);
|
2011-06-22 21:09:06 +02:00
|
|
|
|
|
|
|
ipv6_init_iface_as_router();
|
|
|
|
|
2011-07-11 18:26:12 +02:00
|
|
|
|
2011-06-22 21:09:06 +02:00
|
|
|
return SUCCESS;
|
|
|
|
}
|
|
|
|
|
2011-07-25 16:14:15 +02:00
|
|
|
uint16_t border_get_serial_reader() {
|
|
|
|
return serial_reader_pid;
|
|
|
|
}
|
|
|
|
|
2011-07-23 22:17:52 +02:00
|
|
|
void serial_reader_f(void) {
|
2011-07-12 15:00:21 +02:00
|
|
|
int main_pid = 0;
|
2011-07-11 18:26:12 +02:00
|
|
|
int bytes;
|
2011-07-12 15:00:21 +02:00
|
|
|
msg_t m;
|
2011-07-23 22:17:52 +02:00
|
|
|
border_packet_t *uart_buf;
|
2011-07-12 15:00:21 +02:00
|
|
|
|
|
|
|
posix_open(uart0_handler_pid, 0);
|
|
|
|
|
|
|
|
msg_receive(&m);
|
|
|
|
main_pid = m.sender_pid;
|
|
|
|
|
2011-07-05 04:24:13 +02:00
|
|
|
while(1) {
|
2011-07-12 15:00:21 +02:00
|
|
|
posix_open(uart0_handler_pid, 0);
|
2011-07-25 16:14:15 +02:00
|
|
|
bytes = readpacket(get_serial_in_buffer(0), BORDER_BUFFER_SIZE);
|
2011-07-11 18:26:12 +02:00
|
|
|
if (bytes < 0) {
|
|
|
|
switch (bytes) {
|
2011-07-05 04:24:13 +02:00
|
|
|
case (-SIXLOWERROR_ARRAYFULL):{
|
2011-07-11 18:26:12 +02:00
|
|
|
printf("ERROR: Array was full\n");
|
2011-07-05 04:24:13 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:{
|
|
|
|
printf("ERROR: unknown\n");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
2011-07-11 18:26:12 +02:00
|
|
|
|
2011-07-25 16:14:15 +02:00
|
|
|
uart_buf = (border_packet_t*)get_serial_in_buffer(0);
|
2011-07-05 04:24:13 +02:00
|
|
|
if (uart_buf->reserved == 0) {
|
2011-07-23 22:17:52 +02:00
|
|
|
if (uart_buf->type == BORDER_PACKET_CONF_TYPE) {
|
2011-07-25 16:14:15 +02:00
|
|
|
border_conf_header_t *conf_packet = (border_conf_header_t*)uart_buf;
|
2011-07-23 22:17:52 +02:00
|
|
|
if (conf_packet->conftype == BORDER_CONF_SYN) {
|
2011-07-12 15:00:21 +02:00
|
|
|
m.content.ptr = (char *)conf_packet;
|
|
|
|
msg_send(&m, main_pid, 1);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
2011-07-23 22:17:52 +02:00
|
|
|
flowcontrol_deliver_from_uart(uart_buf, bytes);
|
2011-07-11 18:26:12 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-07-23 22:17:52 +02:00
|
|
|
void border_send_ipv6_over_lowpan(struct ipv6_hdr_t *packet, uint8_t aro_flag, uint8_t sixco_flag) {
|
2011-07-09 19:06:28 +02:00
|
|
|
uint16_t offset = IPV6_HDR_LEN+HTONS(packet->length);
|
|
|
|
|
|
|
|
packet->flowlabel = HTONS(packet->flowlabel);
|
|
|
|
packet->length = HTONS(packet->length);
|
|
|
|
|
|
|
|
memset(buffer, 0, BUFFER_SIZE);
|
|
|
|
memcpy(buffer+LL_HDR_LEN, packet, offset);
|
|
|
|
|
2011-07-24 21:25:47 +02:00
|
|
|
if (packet->nextheader == PROTO_NUM_ICMPV6) {
|
|
|
|
struct icmpv6_hdr_t *icmp_buf = (struct icmpv6_hdr_t *)(packet + IPV6_HDR_LEN);
|
|
|
|
if (icmp_buf->type == ICMP_REDIRECT) {
|
|
|
|
return;
|
2011-07-09 19:06:28 +02:00
|
|
|
}
|
2011-07-24 21:25:47 +02:00
|
|
|
// Here, other ICMPv6 message types for ND may follow.
|
|
|
|
}
|
2011-07-09 19:06:28 +02:00
|
|
|
|
|
|
|
lowpan_init((ieee_802154_long_t*)&(packet->destaddr.uint16[4]), (uint8_t*)packet);
|
|
|
|
}
|
|
|
|
|
2011-07-23 22:17:52 +02:00
|
|
|
void border_process_lowpan(void) {
|
2011-07-10 22:49:41 +02:00
|
|
|
msg_t m;
|
2011-07-09 19:19:31 +02:00
|
|
|
struct ipv6_hdr_t *ipv6_buf;
|
|
|
|
|
|
|
|
while(1) {
|
|
|
|
msg_receive(&m);
|
|
|
|
ipv6_buf = (struct ipv6_hdr_t *)m.content.ptr;
|
|
|
|
// TODO: Bei ICMPv6-Paketen entsprechende LoWPAN-Optionen verarbeiten und entfernen
|
2011-07-23 22:17:52 +02:00
|
|
|
multiplex_send_ipv6_over_uart(ipv6_buf);
|
2011-07-09 19:19:31 +02:00
|
|
|
}
|
|
|
|
}
|