2010-04-30 13:43:53 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2010, Swedish Institute of Computer Science.
|
|
|
|
* 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.
|
|
|
|
*/
|
2014-11-08 00:15:42 +00:00
|
|
|
|
2010-04-30 13:43:53 +00:00
|
|
|
/**
|
|
|
|
* \file
|
|
|
|
* An implementation of RPL's objective function 0.
|
|
|
|
*
|
|
|
|
* \author Joakim Eriksson <joakime@sics.se>, Nicolas Tsiftes <nvt@sics.se>
|
|
|
|
*/
|
|
|
|
|
2014-11-08 00:15:42 +00:00
|
|
|
/**
|
|
|
|
* \addtogroup uip6
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2011-02-11 15:21:17 +00:00
|
|
|
#include "net/rpl/rpl-private.h"
|
2010-04-30 13:43:53 +00:00
|
|
|
|
2011-02-15 00:13:30 +00:00
|
|
|
#define DEBUG DEBUG_NONE
|
2013-11-22 08:17:54 +00:00
|
|
|
#include "net/ip/uip-debug.h"
|
2010-04-30 13:43:53 +00:00
|
|
|
|
2011-02-11 15:21:17 +00:00
|
|
|
static void reset(rpl_dag_t *);
|
2010-05-25 21:58:54 +00:00
|
|
|
static rpl_parent_t *best_parent(rpl_parent_t *, rpl_parent_t *);
|
2011-07-11 13:50:51 +00:00
|
|
|
static rpl_dag_t *best_dag(rpl_dag_t *, rpl_dag_t *);
|
2010-06-14 12:44:37 +00:00
|
|
|
static rpl_rank_t calculate_rank(rpl_parent_t *, rpl_rank_t);
|
2012-02-27 22:03:52 +00:00
|
|
|
static void update_metric_container(rpl_instance_t *);
|
2010-04-30 13:43:53 +00:00
|
|
|
|
|
|
|
rpl_of_t rpl_of0 = {
|
2010-05-31 14:22:00 +00:00
|
|
|
reset,
|
2010-05-29 22:23:21 +00:00
|
|
|
NULL,
|
2016-03-26 19:12:52 +00:00
|
|
|
#if RPL_WITH_DAO_ACK
|
2015-08-19 13:50:20 +00:00
|
|
|
NULL,
|
2016-03-26 19:12:52 +00:00
|
|
|
#endif
|
2010-04-30 13:43:53 +00:00
|
|
|
best_parent,
|
2011-07-11 13:50:51 +00:00
|
|
|
best_dag,
|
2010-06-14 12:44:37 +00:00
|
|
|
calculate_rank,
|
2011-02-15 00:13:30 +00:00
|
|
|
update_metric_container,
|
2010-04-30 13:43:53 +00:00
|
|
|
0
|
|
|
|
};
|
|
|
|
|
2012-02-29 20:59:50 +00:00
|
|
|
#define DEFAULT_RANK_INCREMENT RPL_MIN_HOPRANKINC
|
2010-04-30 13:43:53 +00:00
|
|
|
|
2013-07-29 19:50:33 +00:00
|
|
|
#define MIN_DIFFERENCE (RPL_MIN_HOPRANKINC + RPL_MIN_HOPRANKINC / 2)
|
2011-02-13 13:14:16 +00:00
|
|
|
|
2010-05-31 14:22:00 +00:00
|
|
|
static void
|
2011-02-11 15:21:17 +00:00
|
|
|
reset(rpl_dag_t *dag)
|
2010-05-31 14:22:00 +00:00
|
|
|
{
|
|
|
|
PRINTF("RPL: Resetting OF0\n");
|
|
|
|
}
|
|
|
|
|
2010-04-30 13:43:53 +00:00
|
|
|
static rpl_rank_t
|
2010-06-14 12:44:37 +00:00
|
|
|
calculate_rank(rpl_parent_t *p, rpl_rank_t base_rank)
|
2010-04-30 13:43:53 +00:00
|
|
|
{
|
2011-02-13 10:25:53 +00:00
|
|
|
rpl_rank_t increment;
|
2010-06-14 12:44:37 +00:00
|
|
|
if(base_rank == 0) {
|
|
|
|
if(p == NULL) {
|
|
|
|
return INFINITE_RANK;
|
|
|
|
}
|
|
|
|
base_rank = p->rank;
|
|
|
|
}
|
|
|
|
|
2012-02-27 22:03:52 +00:00
|
|
|
increment = p != NULL ?
|
|
|
|
p->dag->instance->min_hoprankinc :
|
|
|
|
DEFAULT_RANK_INCREMENT;
|
2011-02-13 10:25:53 +00:00
|
|
|
|
|
|
|
if((rpl_rank_t)(base_rank + increment) < base_rank) {
|
2010-04-30 13:43:53 +00:00
|
|
|
PRINTF("RPL: OF0 rank %d incremented to infinite rank due to wrapping\n",
|
2010-06-14 12:44:37 +00:00
|
|
|
base_rank);
|
2010-04-30 13:43:53 +00:00
|
|
|
return INFINITE_RANK;
|
|
|
|
}
|
2011-02-13 10:25:53 +00:00
|
|
|
return base_rank + increment;
|
2011-02-11 13:17:26 +00:00
|
|
|
|
2010-04-30 13:43:53 +00:00
|
|
|
}
|
|
|
|
|
2011-07-11 13:50:51 +00:00
|
|
|
static rpl_dag_t *
|
|
|
|
best_dag(rpl_dag_t *d1, rpl_dag_t *d2)
|
|
|
|
{
|
|
|
|
if(d1->grounded) {
|
|
|
|
if (!d2->grounded) {
|
|
|
|
return d1;
|
|
|
|
}
|
|
|
|
} else if(d2->grounded) {
|
|
|
|
return d2;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(d1->preference < d2->preference) {
|
|
|
|
return d2;
|
|
|
|
} else {
|
|
|
|
if(d1->preference > d2->preference) {
|
|
|
|
return d1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(d2->rank < d1->rank) {
|
|
|
|
return d2;
|
|
|
|
} else {
|
|
|
|
return d1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-25 21:58:54 +00:00
|
|
|
static rpl_parent_t *
|
|
|
|
best_parent(rpl_parent_t *p1, rpl_parent_t *p2)
|
2010-04-30 13:43:53 +00:00
|
|
|
{
|
2011-02-13 13:14:16 +00:00
|
|
|
rpl_rank_t r1, r2;
|
2014-10-20 14:15:20 +00:00
|
|
|
rpl_dag_t *dag;
|
|
|
|
uip_ds6_nbr_t *nbr1, *nbr2;
|
|
|
|
nbr1 = rpl_get_nbr(p1);
|
|
|
|
nbr2 = rpl_get_nbr(p2);
|
|
|
|
|
|
|
|
dag = (rpl_dag_t *)p1->dag; /* Both parents must be in the same DAG. */
|
|
|
|
|
|
|
|
if(nbr1 == NULL || nbr2 == NULL) {
|
|
|
|
return dag->preferred_parent;
|
|
|
|
}
|
2014-05-30 09:01:20 +00:00
|
|
|
|
2010-04-30 13:43:53 +00:00
|
|
|
PRINTF("RPL: Comparing parent ");
|
2013-10-08 12:46:55 +00:00
|
|
|
PRINT6ADDR(rpl_get_parent_ipaddr(p1));
|
2010-04-30 13:43:53 +00:00
|
|
|
PRINTF(" (confidence %d, rank %d) with parent ",
|
2014-10-20 14:15:20 +00:00
|
|
|
nbr1->link_metric, p1->rank);
|
2013-10-08 12:46:55 +00:00
|
|
|
PRINT6ADDR(rpl_get_parent_ipaddr(p2));
|
2010-04-30 13:43:53 +00:00
|
|
|
PRINTF(" (confidence %d, rank %d)\n",
|
2014-10-20 14:15:20 +00:00
|
|
|
nbr2->link_metric, p2->rank);
|
2011-02-11 13:17:26 +00:00
|
|
|
|
|
|
|
|
2013-07-29 19:50:33 +00:00
|
|
|
r1 = DAG_RANK(p1->rank, p1->dag->instance) * RPL_MIN_HOPRANKINC +
|
2014-10-20 14:15:20 +00:00
|
|
|
nbr1->link_metric;
|
2013-07-29 19:50:33 +00:00
|
|
|
r2 = DAG_RANK(p2->rank, p1->dag->instance) * RPL_MIN_HOPRANKINC +
|
2014-10-20 14:15:20 +00:00
|
|
|
nbr2->link_metric;
|
2011-02-11 13:17:26 +00:00
|
|
|
/* Compare two parents by looking both and their rank and at the ETX
|
|
|
|
for that parent. We choose the parent that has the most
|
|
|
|
favourable combination. */
|
2011-02-13 13:14:16 +00:00
|
|
|
|
|
|
|
if(r1 < r2 + MIN_DIFFERENCE &&
|
|
|
|
r1 > r2 - MIN_DIFFERENCE) {
|
|
|
|
return dag->preferred_parent;
|
|
|
|
} else if(r1 < r2) {
|
2011-02-11 13:17:26 +00:00
|
|
|
return p1;
|
|
|
|
} else {
|
|
|
|
return p2;
|
|
|
|
}
|
2010-04-30 13:43:53 +00:00
|
|
|
}
|
2011-02-15 00:13:30 +00:00
|
|
|
|
|
|
|
static void
|
2011-07-11 13:50:51 +00:00
|
|
|
update_metric_container(rpl_instance_t *instance)
|
2011-02-15 00:13:30 +00:00
|
|
|
{
|
2011-07-11 13:50:51 +00:00
|
|
|
instance->mc.type = RPL_DAG_MC_NONE;
|
2011-02-15 00:13:30 +00:00
|
|
|
}
|
2014-05-30 09:01:20 +00:00
|
|
|
|
|
|
|
/** @}*/
|