2013-07-03 19:12:23 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2013, Swedish Institute of Computer Science
|
|
|
|
* Copyright (c) 2010, Vrije Universiteit Brussel
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Authors: Simon Duquennoy <simonduq@sics.se>
|
|
|
|
* Joris Borms <joris.borms@vub.ac.be>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "contiki.h"
|
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include "lib/memb.h"
|
|
|
|
#include "lib/list.h"
|
2013-07-29 18:49:21 +02:00
|
|
|
#include "net/nbr-table.h"
|
2013-07-03 19:12:23 +02:00
|
|
|
|
2015-08-26 18:17:29 +02:00
|
|
|
#define DEBUG 0
|
|
|
|
#if DEBUG
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "sys/ctimer.h"
|
|
|
|
static void handle_periodic_timer(void *ptr);
|
|
|
|
static struct ctimer periodic_timer;
|
|
|
|
static uint8_t initialized = 0;
|
2015-09-20 21:02:30 +02:00
|
|
|
static void print_table();
|
2015-08-26 18:17:29 +02:00
|
|
|
#define PRINTF(...) printf(__VA_ARGS__)
|
|
|
|
#else
|
|
|
|
#define PRINTF(...)
|
|
|
|
#endif
|
|
|
|
|
2015-09-20 21:02:30 +02:00
|
|
|
/* This is the callback function that will be called when there is a
|
|
|
|
* nbr-policy active
|
|
|
|
**/
|
|
|
|
#ifdef NBR_TABLE_FIND_REMOVABLE
|
|
|
|
const linkaddr_t *NBR_TABLE_FIND_REMOVABLE(nbr_table_reason_t reason, void *data);
|
|
|
|
#endif /* NBR_TABLE_FIND_REMOVABLE */
|
|
|
|
|
|
|
|
|
2013-07-03 19:12:23 +02:00
|
|
|
/* List of link-layer addresses of the neighbors, used as key in the tables */
|
|
|
|
typedef struct nbr_table_key {
|
|
|
|
struct nbr_table_key *next;
|
2013-12-12 23:58:52 +01:00
|
|
|
linkaddr_t lladdr;
|
2013-07-03 19:12:23 +02:00
|
|
|
} nbr_table_key_t;
|
|
|
|
|
|
|
|
/* For each neighbor, a map of the tables that use the neighbor.
|
|
|
|
* As we are using uint8_t, we have a maximum of 8 tables in the system */
|
2013-07-29 18:49:21 +02:00
|
|
|
static uint8_t used_map[NBR_TABLE_MAX_NEIGHBORS];
|
2013-07-03 19:12:23 +02:00
|
|
|
/* For each neighbor, a map of the tables that lock the neighbor */
|
2013-07-29 18:49:21 +02:00
|
|
|
static uint8_t locked_map[NBR_TABLE_MAX_NEIGHBORS];
|
2013-07-03 19:12:23 +02:00
|
|
|
/* The maximum number of tables */
|
|
|
|
#define MAX_NUM_TABLES 8
|
|
|
|
/* A list of pointers to tables in use */
|
|
|
|
static struct nbr_table *all_tables[MAX_NUM_TABLES];
|
|
|
|
/* The current number of tables */
|
|
|
|
static unsigned num_tables;
|
|
|
|
|
|
|
|
/* The neighbor address table */
|
2013-07-29 18:49:21 +02:00
|
|
|
MEMB(neighbor_addr_mem, nbr_table_key_t, NBR_TABLE_MAX_NEIGHBORS);
|
2013-07-03 19:12:23 +02:00
|
|
|
LIST(nbr_table_keys);
|
|
|
|
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
/* Get a key from a neighbor index */
|
|
|
|
static nbr_table_key_t *
|
|
|
|
key_from_index(int index)
|
|
|
|
{
|
|
|
|
return index != -1 ? &((nbr_table_key_t *)neighbor_addr_mem.mem)[index] : NULL;
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
/* Get an item from its neighbor index */
|
2013-07-29 18:49:21 +02:00
|
|
|
static nbr_table_item_t *
|
2013-07-03 19:12:23 +02:00
|
|
|
item_from_index(nbr_table_t *table, int index)
|
|
|
|
{
|
|
|
|
return table != NULL && index != -1 ? (char *)table->data + index * table->item_size : NULL;
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
/* Get the neighbor index of an item */
|
|
|
|
static int
|
|
|
|
index_from_key(nbr_table_key_t *key)
|
|
|
|
{
|
|
|
|
return key != NULL ? key - (nbr_table_key_t *)neighbor_addr_mem.mem : -1;
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
/* Get the neighbor index of an item */
|
|
|
|
static int
|
2013-11-16 14:42:57 +01:00
|
|
|
index_from_item(nbr_table_t *table, const nbr_table_item_t *item)
|
2013-07-03 19:12:23 +02:00
|
|
|
{
|
|
|
|
return table != NULL && item != NULL ? ((int)((char *)item - (char *)table->data)) / table->item_size : -1;
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
/* Get an item from its key */
|
2013-07-29 18:49:21 +02:00
|
|
|
static nbr_table_item_t *
|
2013-07-03 19:12:23 +02:00
|
|
|
item_from_key(nbr_table_t *table, nbr_table_key_t *key)
|
|
|
|
{
|
|
|
|
return item_from_index(table, index_from_key(key));
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
/* Get the key af an item */
|
|
|
|
static nbr_table_key_t *
|
2013-11-16 14:42:57 +01:00
|
|
|
key_from_item(nbr_table_t *table, const nbr_table_item_t *item)
|
2013-07-03 19:12:23 +02:00
|
|
|
{
|
|
|
|
return key_from_index(index_from_item(table, item));
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
/* Get the index of a neighbor from its link-layer address */
|
|
|
|
static int
|
2013-12-12 23:58:52 +01:00
|
|
|
index_from_lladdr(const linkaddr_t *lladdr)
|
2013-07-03 19:12:23 +02:00
|
|
|
{
|
|
|
|
nbr_table_key_t *key;
|
|
|
|
/* Allow lladdr-free insertion, useful e.g. for IPv6 ND.
|
2013-12-12 23:58:52 +01:00
|
|
|
* Only one such entry is possible at a time, indexed by linkaddr_null. */
|
2013-07-03 19:12:23 +02:00
|
|
|
if(lladdr == NULL) {
|
2013-12-12 23:58:52 +01:00
|
|
|
lladdr = &linkaddr_null;
|
2013-07-03 19:12:23 +02:00
|
|
|
}
|
|
|
|
key = list_head(nbr_table_keys);
|
|
|
|
while(key != NULL) {
|
2013-12-12 23:58:52 +01:00
|
|
|
if(lladdr && linkaddr_cmp(lladdr, &key->lladdr)) {
|
2013-07-03 19:12:23 +02:00
|
|
|
return index_from_key(key);
|
|
|
|
}
|
|
|
|
key = list_item_next(key);
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
/* Get bit from "used" or "locked" bitmap */
|
|
|
|
static int
|
2013-07-29 18:49:21 +02:00
|
|
|
nbr_get_bit(uint8_t *bitmap, nbr_table_t *table, nbr_table_item_t *item)
|
2013-07-03 19:12:23 +02:00
|
|
|
{
|
|
|
|
int item_index = index_from_item(table, item);
|
|
|
|
if(table != NULL && item_index != -1) {
|
|
|
|
return (bitmap[item_index] & (1 << table->index)) != 0;
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
/* Set bit in "used" or "locked" bitmap */
|
|
|
|
static int
|
2013-07-29 18:49:21 +02:00
|
|
|
nbr_set_bit(uint8_t *bitmap, nbr_table_t *table, nbr_table_item_t *item, int value)
|
2013-07-03 19:12:23 +02:00
|
|
|
{
|
|
|
|
int item_index = index_from_item(table, item);
|
2015-08-26 18:17:29 +02:00
|
|
|
|
2013-07-03 19:12:23 +02:00
|
|
|
if(table != NULL && item_index != -1) {
|
|
|
|
if(value) {
|
|
|
|
bitmap[item_index] |= 1 << table->index;
|
|
|
|
} else {
|
|
|
|
bitmap[item_index] &= ~(1 << table->index);
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
2015-11-26 20:26:10 +01:00
|
|
|
static void
|
|
|
|
remove_key(nbr_table_key_t *least_used_key)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for(i = 0; i < MAX_NUM_TABLES; i++) {
|
|
|
|
if(all_tables[i] != NULL && all_tables[i]->callback != NULL) {
|
|
|
|
/* Call table callback for each table that uses this item */
|
|
|
|
nbr_table_item_t *removed_item = item_from_key(all_tables[i], least_used_key);
|
|
|
|
if(nbr_get_bit(used_map, all_tables[i], removed_item) == 1) {
|
|
|
|
all_tables[i]->callback(removed_item);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* Empty used map */
|
|
|
|
used_map[index_from_key(least_used_key)] = 0;
|
|
|
|
/* Remove neighbor from list */
|
|
|
|
list_remove(nbr_table_keys, least_used_key);
|
|
|
|
}
|
2016-03-04 14:20:23 +01:00
|
|
|
/*---------------------------------------------------------------------------*/
|
2013-07-03 19:12:23 +02:00
|
|
|
static nbr_table_key_t *
|
2015-09-20 21:02:30 +02:00
|
|
|
nbr_table_allocate(nbr_table_reason_t reason, void *data)
|
2013-07-03 19:12:23 +02:00
|
|
|
{
|
|
|
|
nbr_table_key_t *key;
|
|
|
|
int least_used_count = 0;
|
|
|
|
nbr_table_key_t *least_used_key = NULL;
|
|
|
|
|
|
|
|
key = memb_alloc(&neighbor_addr_mem);
|
|
|
|
if(key != NULL) {
|
|
|
|
return key;
|
2015-09-20 21:02:30 +02:00
|
|
|
} else {
|
|
|
|
#ifdef NBR_TABLE_FIND_REMOVABLE
|
|
|
|
const linkaddr_t *lladdr;
|
|
|
|
lladdr = NBR_TABLE_FIND_REMOVABLE(reason, data);
|
|
|
|
if(lladdr == NULL) {
|
|
|
|
/* Nothing found that can be deleted - return NULL to indicate failure */
|
|
|
|
PRINTF("*** Not removing entry to allocate new\n");
|
|
|
|
return NULL;
|
|
|
|
} else {
|
|
|
|
/* used least_used_key to indicate what is the least useful entry */
|
|
|
|
int index;
|
2016-02-18 15:19:32 +01:00
|
|
|
int locked = 0;
|
2015-09-20 21:02:30 +02:00
|
|
|
if((index = index_from_lladdr(lladdr)) != -1) {
|
|
|
|
least_used_key = key_from_index(index);
|
|
|
|
locked = locked_map[index];
|
|
|
|
}
|
|
|
|
/* Allow delete of locked item? */
|
|
|
|
if(least_used_key != NULL && locked) {
|
|
|
|
PRINTF("Deleting locked item!\n");
|
|
|
|
locked_map[index] = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* NBR_TABLE_FIND_REMOVABLE */
|
|
|
|
|
|
|
|
if(least_used_key == NULL) {
|
|
|
|
/* No more space, try to free a neighbor.
|
|
|
|
* The replacement policy is the following: remove neighbor that is:
|
|
|
|
* (1) not locked
|
|
|
|
* (2) used by fewest tables
|
|
|
|
* (3) oldest (the list is ordered by insertion time)
|
|
|
|
* */
|
|
|
|
/* Get item from first key */
|
|
|
|
key = list_head(nbr_table_keys);
|
|
|
|
while(key != NULL) {
|
|
|
|
int item_index = index_from_key(key);
|
|
|
|
int locked = locked_map[item_index];
|
|
|
|
/* Never delete a locked item */
|
|
|
|
if(!locked) {
|
|
|
|
int used = used_map[item_index];
|
|
|
|
int used_count = 0;
|
|
|
|
/* Count how many tables are using this item */
|
|
|
|
while(used != 0) {
|
|
|
|
if((used & 1) == 1) {
|
|
|
|
used_count++;
|
|
|
|
}
|
2013-07-03 19:12:23 +02:00
|
|
|
used >>= 1;
|
2015-09-20 21:02:30 +02:00
|
|
|
}
|
|
|
|
/* Find least used item */
|
|
|
|
if(least_used_key == NULL || used_count < least_used_count) {
|
|
|
|
least_used_key = key;
|
|
|
|
least_used_count = used_count;
|
|
|
|
if(used_count == 0) { /* We won't find any least used item */
|
|
|
|
break;
|
|
|
|
}
|
2013-07-03 19:12:23 +02:00
|
|
|
}
|
|
|
|
}
|
2015-09-20 21:02:30 +02:00
|
|
|
key = list_item_next(key);
|
2013-07-03 19:12:23 +02:00
|
|
|
}
|
|
|
|
}
|
2015-09-20 21:02:30 +02:00
|
|
|
|
2013-07-03 19:12:23 +02:00
|
|
|
if(least_used_key == NULL) {
|
|
|
|
/* We haven't found any unlocked item, allocation fails */
|
|
|
|
return NULL;
|
|
|
|
} else {
|
|
|
|
/* Reuse least used item */
|
2015-11-26 20:26:10 +01:00
|
|
|
remove_key(least_used_key);
|
2013-07-03 19:12:23 +02:00
|
|
|
return least_used_key;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
/* Register a new neighbor table. To be used at initialization by modules
|
|
|
|
* using a neighbor table */
|
|
|
|
int
|
2013-07-29 18:49:21 +02:00
|
|
|
nbr_table_register(nbr_table_t *table, nbr_table_callback *callback)
|
2013-07-03 19:12:23 +02:00
|
|
|
{
|
2015-08-26 18:17:29 +02:00
|
|
|
#if DEBUG
|
|
|
|
if(!initialized) {
|
|
|
|
initialized = 1;
|
|
|
|
/* schedule a debug printout per minute */
|
|
|
|
ctimer_set(&periodic_timer, CLOCK_SECOND * 60, handle_periodic_timer, NULL);
|
|
|
|
}
|
|
|
|
#endif
|
2013-07-03 19:12:23 +02:00
|
|
|
if(num_tables < MAX_NUM_TABLES) {
|
|
|
|
table->index = num_tables++;
|
|
|
|
table->callback = callback;
|
|
|
|
all_tables[table->index] = table;
|
|
|
|
return 1;
|
|
|
|
} else {
|
|
|
|
/* Maximum number of tables exceeded */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
/* Returns the first item of the current table */
|
2013-07-29 18:49:21 +02:00
|
|
|
nbr_table_item_t *
|
2013-07-03 19:12:23 +02:00
|
|
|
nbr_table_head(nbr_table_t *table)
|
|
|
|
{
|
|
|
|
/* Get item from first key */
|
2013-07-29 18:49:21 +02:00
|
|
|
nbr_table_item_t *item = item_from_key(table, list_head(nbr_table_keys));
|
2013-07-03 19:12:23 +02:00
|
|
|
/* Item is the first neighbor, now check is it is in the current table */
|
|
|
|
if(nbr_get_bit(used_map, table, item)) {
|
|
|
|
return item;
|
|
|
|
} else {
|
|
|
|
return nbr_table_next(table, item);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
/* Iterates over the current table */
|
2013-07-29 18:49:21 +02:00
|
|
|
nbr_table_item_t *
|
|
|
|
nbr_table_next(nbr_table_t *table, nbr_table_item_t *item)
|
2013-07-03 19:12:23 +02:00
|
|
|
{
|
|
|
|
do {
|
|
|
|
void *key = key_from_item(table, item);
|
|
|
|
key = list_item_next(key);
|
|
|
|
/* Loop until the next item is in the current table */
|
|
|
|
item = item_from_key(table, key);
|
|
|
|
} while(item && !nbr_get_bit(used_map, table, item));
|
|
|
|
return item;
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
/* Add a neighbor indexed with its link-layer address */
|
2013-07-29 18:49:21 +02:00
|
|
|
nbr_table_item_t *
|
2015-09-20 21:02:30 +02:00
|
|
|
nbr_table_add_lladdr(nbr_table_t *table, const linkaddr_t *lladdr, nbr_table_reason_t reason, void *data)
|
2013-07-03 19:12:23 +02:00
|
|
|
{
|
|
|
|
int index;
|
2013-07-29 18:49:21 +02:00
|
|
|
nbr_table_item_t *item;
|
2013-07-03 19:12:23 +02:00
|
|
|
nbr_table_key_t *key;
|
|
|
|
|
|
|
|
/* Allow lladdr-free insertion, useful e.g. for IPv6 ND.
|
2013-12-12 23:58:52 +01:00
|
|
|
* Only one such entry is possible at a time, indexed by linkaddr_null. */
|
2013-07-03 19:12:23 +02:00
|
|
|
if(lladdr == NULL) {
|
2013-12-12 23:58:52 +01:00
|
|
|
lladdr = &linkaddr_null;
|
2013-07-03 19:12:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if((index = index_from_lladdr(lladdr)) == -1) {
|
|
|
|
/* Neighbor not yet in table, let's try to allocate one */
|
2015-09-20 21:02:30 +02:00
|
|
|
key = nbr_table_allocate(reason, data);
|
2013-07-03 19:12:23 +02:00
|
|
|
|
|
|
|
/* No space available for new entry */
|
|
|
|
if(key == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Add neighbor to list */
|
|
|
|
list_add(nbr_table_keys, key);
|
|
|
|
|
|
|
|
/* Get index from newly allocated neighbor */
|
|
|
|
index = index_from_key(key);
|
|
|
|
|
|
|
|
/* Set link-layer address */
|
2013-12-12 23:58:52 +01:00
|
|
|
linkaddr_copy(&key->lladdr, lladdr);
|
2013-07-03 19:12:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Get item in the current table */
|
|
|
|
item = item_from_index(table, index);
|
|
|
|
|
|
|
|
/* Initialize item data and set "used" bit */
|
|
|
|
memset(item, 0, table->item_size);
|
|
|
|
nbr_set_bit(used_map, table, item, 1);
|
|
|
|
|
2015-09-20 21:02:30 +02:00
|
|
|
#if DEBUG
|
|
|
|
print_table();
|
|
|
|
#endif
|
2013-07-03 19:12:23 +02:00
|
|
|
return item;
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
/* Get an item from its link-layer address */
|
|
|
|
void *
|
2013-12-12 23:58:52 +01:00
|
|
|
nbr_table_get_from_lladdr(nbr_table_t *table, const linkaddr_t *lladdr)
|
2013-07-03 19:12:23 +02:00
|
|
|
{
|
|
|
|
void *item = item_from_index(table, index_from_lladdr(lladdr));
|
|
|
|
return nbr_get_bit(used_map, table, item) ? item : NULL;
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
/* Removes a neighbor from the current table (unset "used" bit) */
|
|
|
|
int
|
|
|
|
nbr_table_remove(nbr_table_t *table, void *item)
|
|
|
|
{
|
|
|
|
int ret = nbr_set_bit(used_map, table, item, 0);
|
|
|
|
nbr_set_bit(locked_map, table, item, 0);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
/* Lock a neighbor for the current table (set "locked" bit) */
|
|
|
|
int
|
|
|
|
nbr_table_lock(nbr_table_t *table, void *item)
|
|
|
|
{
|
2015-08-26 18:17:29 +02:00
|
|
|
#if DEBUG
|
|
|
|
int i = index_from_item(table, item);
|
|
|
|
PRINTF("*** Lock %d\n", i);
|
|
|
|
#endif
|
2013-07-03 19:12:23 +02:00
|
|
|
return nbr_set_bit(locked_map, table, item, 1);
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
/* Release the lock on a neighbor for the current table (unset "locked" bit) */
|
|
|
|
int
|
|
|
|
nbr_table_unlock(nbr_table_t *table, void *item)
|
|
|
|
{
|
2015-08-26 18:17:29 +02:00
|
|
|
#if DEBUG
|
|
|
|
int i = index_from_item(table, item);
|
|
|
|
PRINTF("*** Unlock %d\n", i);
|
|
|
|
#endif
|
2013-07-03 19:12:23 +02:00
|
|
|
return nbr_set_bit(locked_map, table, item, 0);
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
/* Get link-layer address of an item */
|
2013-12-12 23:58:52 +01:00
|
|
|
linkaddr_t *
|
2013-11-16 14:42:57 +01:00
|
|
|
nbr_table_get_lladdr(nbr_table_t *table, const void *item)
|
2013-07-03 19:12:23 +02:00
|
|
|
{
|
|
|
|
nbr_table_key_t *key = key_from_item(table, item);
|
|
|
|
return key != NULL ? &key->lladdr : NULL;
|
|
|
|
}
|
2015-08-26 18:17:29 +02:00
|
|
|
/*---------------------------------------------------------------------------*/
|
2015-11-26 20:26:10 +01:00
|
|
|
/* Update link-layer address of an item */
|
|
|
|
int
|
|
|
|
nbr_table_update_lladdr(const linkaddr_t *old_addr, const linkaddr_t *new_addr,
|
|
|
|
int remove_if_duplicate)
|
|
|
|
{
|
|
|
|
int index;
|
|
|
|
int new_index;
|
|
|
|
nbr_table_key_t *key;
|
|
|
|
index = index_from_lladdr(old_addr);
|
|
|
|
if(index == -1) {
|
|
|
|
/* Failure to change since there is nothing to change. */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if((new_index = index_from_lladdr(new_addr)) != -1) {
|
|
|
|
/* check if it is a change or not - do not remove / fail if same */
|
|
|
|
if(new_index == index) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
/* This new entry already exists - failure! - remove if requested. */
|
|
|
|
if(remove_if_duplicate) {
|
|
|
|
remove_key(key_from_index(index));
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
key = key_from_index(index);
|
|
|
|
/**
|
|
|
|
* Copy the new lladdr into the key - since we know that there is no
|
|
|
|
* conflicting entry.
|
|
|
|
*/
|
|
|
|
memcpy(&key->lladdr, new_addr, sizeof(linkaddr_t));
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
2015-08-26 18:17:29 +02:00
|
|
|
#if DEBUG
|
|
|
|
static void
|
2015-09-20 21:02:30 +02:00
|
|
|
print_table()
|
2015-08-26 18:17:29 +02:00
|
|
|
{
|
|
|
|
int i, j;
|
|
|
|
/* Printout all neighbors and which tables they are used in */
|
|
|
|
PRINTF("NBR TABLE:\n");
|
|
|
|
for(i = 0; i < NBR_TABLE_MAX_NEIGHBORS; i++) {
|
|
|
|
if(used_map[i] > 0) {
|
|
|
|
PRINTF(" %02d %02d",i , key_from_index(i)->lladdr.u8[LINKADDR_SIZE - 1]);
|
|
|
|
for(j = 0; j < num_tables; j++) {
|
|
|
|
PRINTF(" [%d:%d]", (used_map[i] & (1 << j)) != 0,
|
|
|
|
(locked_map[i] & (1 << j)) != 0);
|
|
|
|
}
|
|
|
|
PRINTF("\n");
|
|
|
|
}
|
|
|
|
}
|
2015-09-20 21:02:30 +02:00
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
static void
|
|
|
|
handle_periodic_timer(void *ptr)
|
|
|
|
{
|
|
|
|
print_table();
|
2015-08-26 18:17:29 +02:00
|
|
|
ctimer_reset(&periodic_timer);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|