2010-05-05 19:44:30 +00:00
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
* border-router
|
|
|
|
* \author
|
|
|
|
* Niclas Finne <nfi@sics.se>
|
|
|
|
* Joakim Eriksson <joakime@sics.se>
|
|
|
|
* Nicolas Tsiftes <nvt@sics.se>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "contiki.h"
|
2017-12-09 08:53:48 +00:00
|
|
|
#include "net/routing/routing.h"
|
2010-05-05 19:44:30 +00:00
|
|
|
#include "dev/button-sensor.h"
|
2010-05-25 20:34:51 +00:00
|
|
|
#include "dev/slip.h"
|
2017-12-19 17:02:21 +00:00
|
|
|
#include "rpl-border-router.h"
|
2017-11-01 15:02:41 +00:00
|
|
|
|
2017-10-29 03:08:07 +00:00
|
|
|
/*---------------------------------------------------------------------------*/
|
2017-10-29 03:08:30 +00:00
|
|
|
/* Log configuration */
|
|
|
|
#include "sys/log.h"
|
|
|
|
#define LOG_MODULE "BR"
|
2017-10-31 22:10:37 +00:00
|
|
|
#define LOG_LEVEL LOG_LEVEL_INFO
|
2012-03-02 21:01:12 +00:00
|
|
|
|
2017-11-01 15:02:41 +00:00
|
|
|
void request_prefix(void);
|
2010-05-05 19:44:30 +00:00
|
|
|
|
2010-05-25 20:34:51 +00:00
|
|
|
/*---------------------------------------------------------------------------*/
|
2017-11-01 15:02:41 +00:00
|
|
|
PROCESS(border_router_process, "Border router process");
|
2010-05-25 20:34:51 +00:00
|
|
|
/*---------------------------------------------------------------------------*/
|
2010-05-05 19:44:30 +00:00
|
|
|
PROCESS_THREAD(border_router_process, ev, data)
|
|
|
|
{
|
2010-05-25 20:34:51 +00:00
|
|
|
static struct etimer et;
|
2010-05-05 19:44:30 +00:00
|
|
|
|
|
|
|
PROCESS_BEGIN();
|
2012-02-11 20:15:00 +00:00
|
|
|
|
2012-03-02 21:01:12 +00:00
|
|
|
/* While waiting for the prefix to be sent through the SLIP connection, the future
|
2014-10-04 16:05:38 +00:00
|
|
|
* border router can join an existing DAG as a parent or child, or acquire a default
|
2012-03-02 21:01:12 +00:00
|
|
|
* router that will later take precedence over the SLIP fallback interface.
|
|
|
|
* Prevent that by turning the radio off until we are initialized as a DAG root.
|
|
|
|
*/
|
2010-05-25 20:34:51 +00:00
|
|
|
prefix_set = 0;
|
2017-05-17 13:09:19 +00:00
|
|
|
NETSTACK_MAC.off();
|
2010-05-05 19:44:30 +00:00
|
|
|
|
|
|
|
PROCESS_PAUSE();
|
2011-03-13 15:59:17 +00:00
|
|
|
|
2010-05-05 19:44:30 +00:00
|
|
|
SENSORS_ACTIVATE(button_sensor);
|
|
|
|
|
2017-10-31 22:10:37 +00:00
|
|
|
LOG_INFO("RPL-Border router started\n");
|
2014-10-04 16:05:38 +00:00
|
|
|
|
2010-05-25 20:34:51 +00:00
|
|
|
/* Request prefix until it has been received */
|
|
|
|
while(!prefix_set) {
|
|
|
|
etimer_set(&et, CLOCK_SECOND);
|
|
|
|
request_prefix();
|
|
|
|
PROCESS_WAIT_EVENT_UNTIL(etimer_expired(&et));
|
2017-10-29 03:08:30 +00:00
|
|
|
LOG_INFO("Waiting for prefix\n");
|
2010-05-05 19:44:30 +00:00
|
|
|
}
|
|
|
|
|
2017-10-29 23:46:28 +00:00
|
|
|
NETSTACK_MAC.on();
|
|
|
|
|
2010-05-05 19:44:30 +00:00
|
|
|
print_local_addresses();
|
|
|
|
|
|
|
|
while(1) {
|
|
|
|
PROCESS_YIELD();
|
2017-11-02 00:07:54 +00:00
|
|
|
if(ev == sensors_event && data == &button_sensor) {
|
2017-10-29 03:08:30 +00:00
|
|
|
LOG_INFO("Initiating global repair\n");
|
2017-12-09 16:45:10 +00:00
|
|
|
NETSTACK_ROUTING.global_repair("Button press");
|
2010-05-05 19:44:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
PROCESS_END();
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|