2010-04-30 15:43:53 +02: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
|
|
|
|
* An implementation of RPL's objective function 0.
|
|
|
|
*
|
|
|
|
* \author Joakim Eriksson <joakime@sics.se>, Nicolas Tsiftes <nvt@sics.se>
|
|
|
|
*/
|
|
|
|
|
2011-02-11 16:21:17 +01:00
|
|
|
#include "net/rpl/rpl-private.h"
|
2010-04-30 15:43:53 +02:00
|
|
|
|
2011-02-15 01:13:30 +01:00
|
|
|
#define DEBUG DEBUG_NONE
|
2010-04-30 15:43:53 +02:00
|
|
|
#include "net/uip-debug.h"
|
|
|
|
|
2011-02-11 14:17:26 +01:00
|
|
|
#include "net/neighbor-info.h"
|
|
|
|
|
2011-02-11 16:21:17 +01:00
|
|
|
static void reset(rpl_dag_t *);
|
2010-05-25 23:58:54 +02:00
|
|
|
static rpl_parent_t *best_parent(rpl_parent_t *, rpl_parent_t *);
|
2010-06-14 14:44:37 +02:00
|
|
|
static rpl_rank_t calculate_rank(rpl_parent_t *, rpl_rank_t);
|
2011-02-15 01:13:30 +01:00
|
|
|
static void update_metric_container(rpl_dag_t *);
|
2010-04-30 15:43:53 +02:00
|
|
|
|
|
|
|
rpl_of_t rpl_of0 = {
|
2010-05-31 16:22:00 +02:00
|
|
|
reset,
|
2010-05-30 00:23:21 +02:00
|
|
|
NULL,
|
2010-04-30 15:43:53 +02:00
|
|
|
best_parent,
|
2010-06-14 14:44:37 +02:00
|
|
|
calculate_rank,
|
2011-02-15 01:13:30 +01:00
|
|
|
update_metric_container,
|
2010-04-30 15:43:53 +02:00
|
|
|
0
|
|
|
|
};
|
|
|
|
|
2011-01-04 21:43:28 +01:00
|
|
|
#define DEFAULT_RANK_INCREMENT DEFAULT_MIN_HOPRANKINC
|
2010-04-30 15:43:53 +02:00
|
|
|
|
2011-02-13 21:29:59 +01:00
|
|
|
#define MIN_DIFFERENCE (NEIGHBOR_INFO_ETX_DIVISOR + NEIGHBOR_INFO_ETX_DIVISOR / 2)
|
2011-02-13 14:14:16 +01:00
|
|
|
|
2010-05-31 16:22:00 +02:00
|
|
|
static void
|
2011-02-11 16:21:17 +01:00
|
|
|
reset(rpl_dag_t *dag)
|
2010-05-31 16:22:00 +02:00
|
|
|
{
|
|
|
|
PRINTF("RPL: Resetting OF0\n");
|
|
|
|
}
|
|
|
|
|
2010-04-30 15:43:53 +02:00
|
|
|
static rpl_rank_t
|
2010-06-14 14:44:37 +02:00
|
|
|
calculate_rank(rpl_parent_t *p, rpl_rank_t base_rank)
|
2010-04-30 15:43:53 +02:00
|
|
|
{
|
2011-02-13 11:25:53 +01:00
|
|
|
rpl_rank_t increment;
|
2010-06-14 14:44:37 +02:00
|
|
|
if(base_rank == 0) {
|
|
|
|
if(p == NULL) {
|
|
|
|
return INFINITE_RANK;
|
|
|
|
}
|
|
|
|
base_rank = p->rank;
|
|
|
|
}
|
|
|
|
|
2011-02-13 11:25:53 +01:00
|
|
|
increment = p != NULL ? p->dag->min_hoprankinc : DEFAULT_RANK_INCREMENT;
|
|
|
|
|
|
|
|
if((rpl_rank_t)(base_rank + increment) < base_rank) {
|
2010-04-30 15:43:53 +02:00
|
|
|
PRINTF("RPL: OF0 rank %d incremented to infinite rank due to wrapping\n",
|
2010-06-14 14:44:37 +02:00
|
|
|
base_rank);
|
2010-04-30 15:43:53 +02:00
|
|
|
return INFINITE_RANK;
|
|
|
|
}
|
2011-02-13 11:25:53 +01:00
|
|
|
return base_rank + increment;
|
2011-02-11 14:17:26 +01:00
|
|
|
|
2010-04-30 15:43:53 +02:00
|
|
|
}
|
|
|
|
|
2010-05-25 23:58:54 +02:00
|
|
|
static rpl_parent_t *
|
|
|
|
best_parent(rpl_parent_t *p1, rpl_parent_t *p2)
|
2010-04-30 15:43:53 +02:00
|
|
|
{
|
2011-02-13 14:14:16 +01:00
|
|
|
rpl_rank_t r1, r2;
|
|
|
|
rpl_dag_t *dag;
|
|
|
|
|
2010-04-30 15:43:53 +02:00
|
|
|
PRINTF("RPL: Comparing parent ");
|
|
|
|
PRINT6ADDR(&p1->addr);
|
|
|
|
PRINTF(" (confidence %d, rank %d) with parent ",
|
2011-02-11 14:17:26 +01:00
|
|
|
p1->etx, p1->rank);
|
2010-04-30 15:43:53 +02:00
|
|
|
PRINT6ADDR(&p2->addr);
|
|
|
|
PRINTF(" (confidence %d, rank %d)\n",
|
2011-02-11 14:17:26 +01:00
|
|
|
p2->etx, p2->rank);
|
|
|
|
|
|
|
|
|
2011-02-13 21:29:59 +01:00
|
|
|
r1 = DAG_RANK(p1->rank, (rpl_dag_t *)p1->dag) * NEIGHBOR_INFO_ETX_DIVISOR +
|
|
|
|
p1->etx;
|
|
|
|
r2 = DAG_RANK(p2->rank, (rpl_dag_t *)p1->dag) * NEIGHBOR_INFO_ETX_DIVISOR +
|
|
|
|
p2->etx;
|
2011-02-11 14:17:26 +01: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 14:14:16 +01:00
|
|
|
|
|
|
|
dag = (rpl_dag_t *)p1->dag; /* Both parents must be in the same DAG. */
|
|
|
|
if(r1 < r2 + MIN_DIFFERENCE &&
|
|
|
|
r1 > r2 - MIN_DIFFERENCE) {
|
|
|
|
return dag->preferred_parent;
|
|
|
|
} else if(r1 < r2) {
|
2011-02-11 14:17:26 +01:00
|
|
|
return p1;
|
|
|
|
} else {
|
|
|
|
return p2;
|
|
|
|
}
|
2010-04-30 15:43:53 +02:00
|
|
|
}
|
2011-02-15 01:13:30 +01:00
|
|
|
|
|
|
|
static void
|
|
|
|
update_metric_container(rpl_dag_t *dag)
|
|
|
|
{
|
|
|
|
dag->mc.type = RPL_DAG_MC_NONE;
|
|
|
|
}
|