2010-05-29 22:23:21 +00:00
|
|
|
/**
|
|
|
|
* \addtogroup uip6
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* \file
|
2011-02-04 14:45:24 +00:00
|
|
|
* The minrank-hysteresis objective function (OCP 1).
|
|
|
|
*
|
|
|
|
* This implementation uses the estimated number of
|
|
|
|
* transmissions (ETX) as the additive routing metric.
|
2010-05-29 22:23:21 +00:00
|
|
|
*
|
|
|
|
* \author Joakim Eriksson <joakime@sics.se>, Nicolas Tsiftes <nvt@sics.se>
|
|
|
|
*/
|
|
|
|
|
2011-02-11 15:21:17 +00:00
|
|
|
#include "net/rpl/rpl-private.h"
|
2010-10-28 20:39:06 +00:00
|
|
|
#include "net/neighbor-info.h"
|
2010-05-29 22:23:21 +00:00
|
|
|
|
2010-11-03 15:41:23 +00:00
|
|
|
#define DEBUG DEBUG_NONE
|
2010-05-29 22:23:21 +00:00
|
|
|
#include "net/uip-debug.h"
|
|
|
|
|
2011-02-11 15:21:17 +00:00
|
|
|
static void reset(rpl_dag_t *);
|
2010-05-29 22:23:21 +00:00
|
|
|
static void parent_state_callback(rpl_parent_t *, int, int);
|
|
|
|
static rpl_parent_t *best_parent(rpl_parent_t *, rpl_parent_t *);
|
2010-06-14 12:44:37 +00:00
|
|
|
static rpl_rank_t calculate_rank(rpl_parent_t *, rpl_rank_t);
|
2011-02-15 00:13:30 +00:00
|
|
|
static void update_metric_container(rpl_dag_t *);
|
2010-05-29 22:23:21 +00:00
|
|
|
|
|
|
|
rpl_of_t rpl_of_etx = {
|
2010-05-31 14:22:00 +00:00
|
|
|
reset,
|
2010-05-29 22:23:21 +00:00
|
|
|
parent_state_callback,
|
|
|
|
best_parent,
|
2010-06-14 12:44:37 +00:00
|
|
|
calculate_rank,
|
2011-02-15 00:13:30 +00:00
|
|
|
update_metric_container,
|
2010-05-29 22:23:21 +00:00
|
|
|
1
|
|
|
|
};
|
|
|
|
|
2011-02-15 00:13:30 +00:00
|
|
|
#define NI_ETX_TO_RPL_ETX(etx) \
|
|
|
|
((etx) * (RPL_DAG_MC_ETX_DIVISOR / NEIGHBOR_INFO_ETX_DIVISOR))
|
2011-03-16 12:29:01 +00:00
|
|
|
#define RPL_ETX_TO_NI_ETX(etx) \
|
2011-02-15 00:13:30 +00:00
|
|
|
((etx) / (RPL_DAG_MC_ETX_DIVISOR / NEIGHBOR_INFO_ETX_DIVISOR))
|
|
|
|
|
2011-02-04 14:45:24 +00:00
|
|
|
/* Reject parents that have a higher link metric than the following. */
|
|
|
|
#define MAX_LINK_METRIC 10
|
|
|
|
|
|
|
|
/* Reject parents that have a higher path cost than the following. */
|
|
|
|
#define MAX_PATH_COST 100
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The rank must differ more than 1/PARENT_SWITCH_THRESHOLD_DIV in order
|
|
|
|
* to switch preferred parent.
|
|
|
|
*/
|
|
|
|
#define PARENT_SWITCH_THRESHOLD_DIV 2
|
2010-05-29 22:23:21 +00:00
|
|
|
|
2011-03-15 00:16:20 +00:00
|
|
|
typedef uint16_t rpl_path_metric_t;
|
2011-02-15 00:13:30 +00:00
|
|
|
|
2011-04-25 20:37:25 +00:00
|
|
|
static rpl_path_metric_t
|
2011-03-15 00:16:20 +00:00
|
|
|
calculate_path_metric(rpl_parent_t *p)
|
2011-02-15 00:13:30 +00:00
|
|
|
{
|
2011-04-25 20:37:25 +00:00
|
|
|
if(p == NULL || (p->mc.obj.etx == 0 && p->rank > ROOT_RANK(p->dag))) {
|
2011-03-16 12:29:01 +00:00
|
|
|
return MAX_PATH_COST * RPL_DAG_MC_ETX_DIVISOR;
|
|
|
|
}
|
|
|
|
return p->mc.obj.etx + NI_ETX_TO_RPL_ETX(p->link_metric);
|
2011-02-15 00:13:30 +00:00
|
|
|
}
|
2010-05-29 22:23:21 +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
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-05-29 22:23:21 +00:00
|
|
|
static void
|
|
|
|
parent_state_callback(rpl_parent_t *parent, int known, int etx)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static rpl_rank_t
|
2010-06-14 12:44:37 +00:00
|
|
|
calculate_rank(rpl_parent_t *p, rpl_rank_t base_rank)
|
2010-05-29 22:23:21 +00:00
|
|
|
{
|
|
|
|
rpl_rank_t new_rank;
|
2010-06-14 12:44:37 +00:00
|
|
|
rpl_rank_t rank_increase;
|
|
|
|
|
2010-09-15 13:22:22 +00:00
|
|
|
if(p == NULL) {
|
|
|
|
if(base_rank == 0) {
|
2010-06-14 12:44:37 +00:00
|
|
|
return INFINITE_RANK;
|
|
|
|
}
|
2011-03-16 12:29:01 +00:00
|
|
|
rank_increase = NEIGHBOR_INFO_FIX2ETX(INITIAL_LINK_METRIC) * DEFAULT_MIN_HOPRANKINC;
|
2010-09-15 13:22:22 +00:00
|
|
|
} else {
|
2011-03-16 12:29:01 +00:00
|
|
|
rank_increase = NEIGHBOR_INFO_FIX2ETX(p->link_metric) * p->dag->min_hoprankinc;
|
2010-09-15 13:22:22 +00:00
|
|
|
if(base_rank == 0) {
|
|
|
|
base_rank = p->rank;
|
|
|
|
}
|
2010-06-14 12:44:37 +00:00
|
|
|
}
|
2010-05-29 22:23:21 +00:00
|
|
|
|
2010-06-14 12:44:37 +00:00
|
|
|
if(INFINITE_RANK - base_rank < rank_increase) {
|
2010-06-03 12:12:20 +00:00
|
|
|
/* Reached the maximum rank. */
|
|
|
|
new_rank = INFINITE_RANK;
|
|
|
|
} else {
|
|
|
|
/* Calculate the rank based on the new rank information from DIO or
|
|
|
|
stored otherwise. */
|
2010-06-14 12:44:37 +00:00
|
|
|
new_rank = base_rank + rank_increase;
|
2010-06-03 12:12:20 +00:00
|
|
|
}
|
2010-05-29 22:23:21 +00:00
|
|
|
|
|
|
|
return new_rank;
|
|
|
|
}
|
|
|
|
|
|
|
|
static rpl_parent_t *
|
|
|
|
best_parent(rpl_parent_t *p1, rpl_parent_t *p2)
|
|
|
|
{
|
2010-06-14 12:44:37 +00:00
|
|
|
rpl_dag_t *dag;
|
2011-03-15 00:16:20 +00:00
|
|
|
rpl_path_metric_t min_diff;
|
|
|
|
rpl_path_metric_t p1_metric;
|
|
|
|
rpl_path_metric_t p2_metric;
|
2010-06-14 12:44:37 +00:00
|
|
|
|
2011-02-15 00:13:30 +00:00
|
|
|
dag = p1->dag; /* Both parents must be in the same DAG. */
|
2010-09-15 13:22:22 +00:00
|
|
|
|
2011-02-15 00:13:30 +00:00
|
|
|
min_diff = RPL_DAG_MC_ETX_DIVISOR /
|
2011-02-20 19:15:40 +00:00
|
|
|
PARENT_SWITCH_THRESHOLD_DIV;
|
2011-02-15 00:13:30 +00:00
|
|
|
|
2011-03-15 00:16:20 +00:00
|
|
|
p1_metric = calculate_path_metric(p1);
|
|
|
|
p2_metric = calculate_path_metric(p2);
|
2010-06-14 12:44:37 +00:00
|
|
|
|
|
|
|
/* Maintain stability of the preferred parent in case of similar ranks. */
|
2011-03-04 15:40:40 +00:00
|
|
|
if(p1 == dag->preferred_parent || p2 == dag->preferred_parent) {
|
2011-03-15 00:16:20 +00:00
|
|
|
if(p1_metric < p2_metric + min_diff &&
|
|
|
|
p1_metric > p2_metric - min_diff) {
|
2011-03-04 15:40:40 +00:00
|
|
|
PRINTF("RPL: MRHOF hysteresis: %u <= %u <= %u\n",
|
2011-03-15 00:16:20 +00:00
|
|
|
p2_metric - min_diff,
|
|
|
|
p1_metric,
|
|
|
|
p2_metric + min_diff);
|
2011-03-04 15:40:40 +00:00
|
|
|
return dag->preferred_parent;
|
|
|
|
}
|
2010-06-14 12:44:37 +00:00
|
|
|
}
|
|
|
|
|
2011-03-15 00:16:20 +00:00
|
|
|
return p1_metric < p2_metric ? p1 : p2;
|
2010-05-29 22:23:21 +00:00
|
|
|
}
|
2011-02-15 00:13:30 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
update_metric_container(rpl_dag_t *dag)
|
|
|
|
{
|
2011-04-25 20:37:25 +00:00
|
|
|
rpl_path_metric_t path_metric;
|
|
|
|
#if RPL_DAG_MC == RPL_DAG_MC_ENERGY
|
|
|
|
uint8_t type;
|
|
|
|
#endif
|
|
|
|
|
2011-02-15 00:13:30 +00:00
|
|
|
dag->mc.flags = RPL_DAG_MC_FLAG_P;
|
|
|
|
dag->mc.aggr = RPL_DAG_MC_AGGR_ADDITIVE;
|
|
|
|
dag->mc.prec = 0;
|
2011-04-25 20:37:25 +00:00
|
|
|
|
2011-02-20 19:15:40 +00:00
|
|
|
if(dag->rank == ROOT_RANK(dag)) {
|
2011-04-25 20:37:25 +00:00
|
|
|
path_metric = 0;
|
2011-02-15 00:13:30 +00:00
|
|
|
} else {
|
2011-04-25 20:37:25 +00:00
|
|
|
path_metric = calculate_path_metric(dag->preferred_parent);
|
2011-02-15 00:13:30 +00:00
|
|
|
}
|
2011-03-16 12:29:01 +00:00
|
|
|
|
2011-04-25 20:37:25 +00:00
|
|
|
#if RPL_DAG_MC == RPL_DAG_MC_ETX
|
|
|
|
|
|
|
|
dag->mc.type = RPL_DAG_MC_ETX;
|
|
|
|
dag->mc.length = sizeof(dag->mc.obj.etx);
|
|
|
|
dag->mc.obj.etx = path_metric;
|
|
|
|
|
2011-03-16 12:29:01 +00:00
|
|
|
PRINTF("RPL: My path ETX to the root is %u.%u\n",
|
|
|
|
dag->mc.obj.etx / RPL_DAG_MC_ETX_DIVISOR,
|
|
|
|
(dag->mc.obj.etx % RPL_DAG_MC_ETX_DIVISOR * 100) / RPL_DAG_MC_ETX_DIVISOR);
|
2011-04-25 20:37:25 +00:00
|
|
|
|
2011-03-15 00:16:20 +00:00
|
|
|
#elif RPL_DAG_MC == RPL_DAG_MC_ENERGY
|
2011-04-25 20:37:25 +00:00
|
|
|
|
2011-03-15 00:16:20 +00:00
|
|
|
dag->mc.type = RPL_DAG_MC_ENERGY;
|
|
|
|
dag->mc.length = sizeof(dag->mc.obj.energy);
|
2011-04-25 20:37:25 +00:00
|
|
|
|
2011-03-15 00:16:20 +00:00
|
|
|
if(dag->rank == ROOT_RANK(dag)) {
|
2011-04-25 20:37:25 +00:00
|
|
|
type = RPL_DAG_MC_ENERGY_TYPE_MAINS;
|
2011-03-15 00:16:20 +00:00
|
|
|
} else {
|
2011-04-25 20:37:25 +00:00
|
|
|
type = RPL_DAG_MC_ENERGY_TYPE_BATTERY;
|
2011-03-15 00:16:20 +00:00
|
|
|
}
|
2011-04-25 20:37:25 +00:00
|
|
|
|
|
|
|
dag->mc.obj.energy.flags = type << RPL_DAG_MC_ENERGY_TYPE;
|
|
|
|
dag->mc.obj.energy.energy_est = path_metric;
|
|
|
|
|
2011-03-15 00:16:20 +00:00
|
|
|
#else
|
2011-04-25 20:37:25 +00:00
|
|
|
|
2011-03-15 00:16:20 +00:00
|
|
|
#error "Unsupported RPL_DAG_MC configured. See rpl.h."
|
2011-04-25 20:37:25 +00:00
|
|
|
|
2011-03-15 00:16:20 +00:00
|
|
|
#endif /* RPL_DAG_MC */
|
2011-02-15 00:13:30 +00:00
|
|
|
}
|