33 #include "contiki-net.h" 35 #include "net/routing/rpl-classic/rpl.h" 36 #include "net/routing/rpl-classic/rpl-private.h" 41 #define DEBUG DEBUG_NONE 46 set_global_address(uip_ipaddr_t *prefix, uip_ipaddr_t *iid)
48 static uip_ipaddr_t root_ipaddr;
55 uip_ip6addr(&root_ipaddr, UIP_DS6_DEFAULT_PREFIX, 0, 0, 0, 0, 0, 0, 0);
57 memcpy(&root_ipaddr, prefix, 8);
62 memcpy(((uint8_t*)&root_ipaddr) + 8, ((uint8_t*)iid) + 8, 8);
67 printf(
"IPv6 addresses: ");
68 for(i = 0; i < UIP_DS6_ADDR_NB; i++) {
72 uip_debug_ipaddr_print(&
uip_ds6_if.addr_list[i].ipaddr);
81 static uint8_t initialized = 0;
84 set_global_address(prefix, iid);
95 uip_ipaddr_t *
ipaddr = NULL;
99 for(i = 0; i < UIP_DS6_ADDR_NB; i++) {
102 state == ADDR_PREFERRED &&
109 root_if = uip_ds6_addr_lookup(ipaddr);
110 if(root_if != NULL) {
114 rpl_set_root(RPL_DEFAULT_INSTANCE, ipaddr);
119 if(RPL_IS_STORING(dag->instance)) {
120 rpl_remove_routes(dag);
122 if(dag->instance != NULL && dag->instance->def_route != NULL) {
123 uip_ds6_defrt_rm(dag->instance->def_route);
124 dag->instance->def_route = NULL;
127 uip_ip6addr(&prefix, UIP_DS6_DEFAULT_PREFIX, 0, 0, 0, 0, 0, 0, 0);
128 rpl_set_prefix(dag, &prefix, 64);
129 PRINTF(
"rpl_dag_root_set_prefix_dag: created a new RPL dag\n");
132 PRINTF(
"rpl_dag_root_set_prefix_dag: failed to create a new RPL DAG\n");
136 PRINTF(
"rpl_dag_root_set_prefix_dag: failed to create a new RPL DAG, no preferred IP address found\n");
148 if(instance == NULL) {
152 if(instance->current_dag &&
153 instance->current_dag->rank ==
ROOT_RANK(instance)) {
static uip_ipaddr_t ipaddr
Pointer to prefix information option in uip_buf.
#define uip_ip6addr(addr, addr0, addr1, addr2, addr3, addr4, addr5, addr6, addr7)
Construct an IPv6 address from eight 16-bit words.
uip_lladdr_t uip_lladdr
Host L2 address.
int rpl_dag_root_start(void)
Set the node as root and start a DAG.
#define ROOT_RANK
Rank of a root node.
A set of debugging macros for the IP stack
void uip_ds6_set_addr_iid(uip_ipaddr_t *ipaddr, uip_lladdr_t *lladdr)
set the last 64 bits of an IP address based on the MAC address
int rpl_dag_root_is_root(void)
Tells whether we are DAG root or not.
void rpl_dag_root_set_prefix(uip_ipaddr_t *prefix, uip_ipaddr_t *iid)
Set a prefix in case the node is later set as dag root.
Unicast address structure.
rpl_dag_t * rpl_get_any_dag(void)
Returns pointer to any DAG (for compatibility with legagy RPL code)
#define ADDR_TENTATIVE
Possible states for the an address (RFC 4862)
uip_ds6_addr_t * uip_ds6_addr_add(uip_ipaddr_t *ipaddr, unsigned long vlifetime, uint8_t type)
Add a unicast address to the interface.
uip_ds6_netif_t uip_ds6_if
The single interface.
Header file for routing table manipulation.
#define uip_is_addr_linklocal(a)
is addr (a) a link local unicast address, see RFC 4291 i.e.
rpl_instance_t * rpl_get_default_instance(void)
Returns pointer to the default instance (for compatibility with legagy RPL code)