1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/sys/shell/commands/sc_gnrc_rpl.c

367 lines
11 KiB
C
Raw Normal View History

2015-05-22 21:48:30 +02:00
/*
* Copyright (C) 2015 Cenk Gündoğan <cnkgndgn@gmail.com>
*
* This file is subject to the terms and conditions of the GNU Lesser General
* Public License v2.1. See the file LICENSE in the top level directory for
* more details.
*/
/**
* @ingroup sys_shell_commands.h
* @{
*
* @file
*
* @author Cenk Gündoğan <cnkgndgn@gmail.com>
*/
#include <string.h>
#include <stdio.h>
#include "net/gnrc/ipv6/netif.h"
#include "net/gnrc/rpl.h"
#include "net/gnrc/rpl/structs.h"
#include "net/gnrc/rpl/dodag.h"
2015-05-22 21:48:30 +02:00
#include "utlist.h"
#include "trickle.h"
int _gnrc_rpl_init(char *arg)
2015-05-22 21:48:30 +02:00
{
gnrc_ipv6_netif_t *entry = NULL;
2015-05-22 21:48:30 +02:00
kernel_pid_t iface_pid = (kernel_pid_t) atoi(arg);
entry = gnrc_ipv6_netif_get(iface_pid);
2015-05-22 21:48:30 +02:00
if (entry == NULL) {
puts("unknown interface specified");
return 1;
}
gnrc_rpl_init(iface_pid);
2015-05-22 21:48:30 +02:00
printf("successfully initialized RPL on interface %d\n", iface_pid);
return 0;
}
int _gnrc_rpl_dodag_root(char *arg1, char *arg2)
2015-05-22 21:48:30 +02:00
{
uint8_t instance_id = (uint8_t) atoi(arg1);
ipv6_addr_t dodag_id;
if (ipv6_addr_from_str(&dodag_id, arg2) == NULL) {
2015-09-08 09:20:20 +02:00
puts("error: <dodag_id> must be a valid IPv6 address");
2015-05-22 21:48:30 +02:00
return 1;
}
gnrc_rpl_dodag_t *dodag = NULL;
dodag = gnrc_rpl_root_init(instance_id, &dodag_id);
2015-05-22 21:48:30 +02:00
if (dodag == NULL) {
char addr_str[IPV6_ADDR_MAX_STR_LEN];
printf("error: could not add DODAG (%s) to instance (%d)\n",
ipv6_addr_to_str(addr_str, &dodag_id, sizeof(addr_str)), instance_id);
return 1;
}
printf("successfully added a new RPL DODAG\n");
return 0;
}
int _gnrc_rpl_instance_remove(char *arg1)
2015-05-22 21:48:30 +02:00
{
2015-09-08 09:20:20 +02:00
uint8_t instance_id = (uint8_t) atoi(arg1);
gnrc_rpl_instance_t *inst;
2015-05-22 21:48:30 +02:00
if ((inst = gnrc_rpl_instance_get(instance_id)) == NULL) {
2015-05-22 21:48:30 +02:00
printf("error: could not find the instance (%d)\n", instance_id);
return 1;
}
if (gnrc_rpl_instance_remove(inst) == false) {
2015-05-22 21:48:30 +02:00
printf("error: could not remove instance (%d)\n", instance_id);
return 1;
}
printf("success: removed instance (%d)\n", instance_id);
return 0;
}
int _gnrc_rpl_dodag_remove(char *arg1, char *arg2)
2015-05-22 21:48:30 +02:00
{
2015-09-08 09:20:20 +02:00
uint8_t instance_id = (uint8_t) atoi(arg1);
2015-05-22 21:48:30 +02:00
ipv6_addr_t dodag_id;
gnrc_rpl_instance_t *inst;
gnrc_rpl_dodag_t *dodag = NULL;
2015-05-22 21:48:30 +02:00
char addr_str[IPV6_ADDR_MAX_STR_LEN];
if (ipv6_addr_from_str(&dodag_id, arg2) == NULL) {
puts("error: <dodag_id> must be a valid IPv6 address");
return 1;
}
if ((inst = gnrc_rpl_instance_get(instance_id)) == NULL) {
2015-05-22 21:48:30 +02:00
puts("error: could not find the <instance_id>");
return 1;
}
if ((dodag = gnrc_rpl_dodag_get(inst, &dodag_id)) == NULL) {
2015-05-22 21:48:30 +02:00
puts("error: <dodag_id> does not exist for the given <instance_id>");
return 1;
}
if (gnrc_rpl_dodag_remove(dodag) == false) {
2015-05-22 21:48:30 +02:00
printf("error: could not remove DODAG (%s) from instance (%d)\n",
ipv6_addr_to_str(addr_str, &dodag_id, sizeof(addr_str)),
instance_id);
return 1;
}
printf("success: removed DODAG (%s) from instance (%d)\n",
ipv6_addr_to_str(addr_str, &dodag_id, sizeof(addr_str)),
instance_id);
return 0;
}
int _gnrc_rpl_trickle_reset(char *arg1, char *arg2)
2015-05-22 21:48:30 +02:00
{
2015-09-08 09:20:20 +02:00
uint8_t instance_id = (uint8_t) atoi(arg1);
2015-05-22 21:48:30 +02:00
ipv6_addr_t dodag_id;
gnrc_rpl_instance_t *inst;
gnrc_rpl_dodag_t *dodag = NULL;
2015-05-22 21:48:30 +02:00
char addr_str[IPV6_ADDR_MAX_STR_LEN];
if (ipv6_addr_from_str(&dodag_id, arg2) == NULL) {
puts("error: <dodag_id> must be a valid IPv6 address");
return 1;
}
if ((inst = gnrc_rpl_instance_get(instance_id)) == NULL) {
2015-05-22 21:48:30 +02:00
puts("error: could not find the <instance_id>");
return 1;
}
if ((dodag = gnrc_rpl_dodag_get(inst, &dodag_id)) == NULL) {
2015-05-22 21:48:30 +02:00
puts("error: <dodag_id> does not exist for the given <instance_id>");
return 1;
}
trickle_reset_timer(&dodag->trickle);
printf("success: resetted trickle timer of DODAG (%s) from instance (%d)\n",
ipv6_addr_to_str(addr_str, &dodag_id, sizeof(addr_str)),
instance_id);
return 0;
}
int _gnrc_rpl_trickle_stop(char *arg1, char *arg2)
2015-05-22 21:48:30 +02:00
{
2015-09-08 09:20:20 +02:00
uint8_t instance_id = (uint8_t) atoi(arg1);
2015-05-22 21:48:30 +02:00
ipv6_addr_t dodag_id;
gnrc_rpl_instance_t *inst;
gnrc_rpl_dodag_t *dodag = NULL;
2015-05-22 21:48:30 +02:00
char addr_str[IPV6_ADDR_MAX_STR_LEN];
if (ipv6_addr_from_str(&dodag_id, arg2) == NULL) {
puts("error: <dodag_id> must be a valid IPv6 address");
return 1;
}
if ((inst = gnrc_rpl_instance_get(instance_id)) == NULL) {
2015-05-22 21:48:30 +02:00
puts("error: could not find the <instance_id>");
return 1;
}
if ((dodag = gnrc_rpl_dodag_get(inst, &dodag_id)) == NULL) {
2015-05-22 21:48:30 +02:00
puts("error: <dodag_id> does not exist for the given <instance_id>");
return 1;
}
trickle_stop(&dodag->trickle);
printf("success: stopped trickle timer of DODAG (%s) from instance (%d)\n",
ipv6_addr_to_str(addr_str, &dodag_id, sizeof(addr_str)),
instance_id);
return 0;
}
int _gnrc_rpl_trickle_start(char *arg1, char *arg2)
2015-05-22 21:48:30 +02:00
{
2015-09-08 09:20:20 +02:00
uint8_t instance_id = (uint8_t) atoi(arg1);
2015-05-22 21:48:30 +02:00
ipv6_addr_t dodag_id;
gnrc_rpl_instance_t *inst;
gnrc_rpl_dodag_t *dodag = NULL;
2015-05-22 21:48:30 +02:00
char addr_str[IPV6_ADDR_MAX_STR_LEN];
if (ipv6_addr_from_str(&dodag_id, arg2) == NULL) {
puts("error: <dodag_id> must be a valid IPv6 address");
return 1;
}
if ((inst = gnrc_rpl_instance_get(instance_id)) == NULL) {
2015-05-22 21:48:30 +02:00
puts("error: could not find the <instance_id>");
return 1;
}
if ((dodag = gnrc_rpl_dodag_get(inst, &dodag_id)) == NULL) {
2015-05-22 21:48:30 +02:00
puts("error: <dodag_id> does not exist for the given <instance_id>");
return 1;
}
trickle_start(gnrc_rpl_pid, &dodag->trickle, GNRC_RPL_MSG_TYPE_TRICKLE_INTERVAL,
GNRC_RPL_MSG_TYPE_TRICKLE_CALLBACK, (1 << dodag->dio_min),
2015-05-22 21:48:30 +02:00
dodag->dio_interval_doubl, dodag->dio_redun);
printf("success: started trickle timer of DODAG (%s) from instance (%d)\n",
ipv6_addr_to_str(addr_str, &dodag_id, sizeof(addr_str)),
instance_id);
return 0;
}
int _gnrc_rpl_send_dis(void)
2015-05-22 21:48:30 +02:00
{
ipv6_addr_t all_RPL_nodes = GNRC_RPL_ALL_NODES_ADDR;
gnrc_rpl_send_DIS(NULL, &all_RPL_nodes);
2015-05-22 21:48:30 +02:00
puts("success: send a DIS\n");
return 0;
}
int _gnrc_rpl_dodag_show(void)
2015-05-22 21:48:30 +02:00
{
printf("instance table:\t");
for (uint8_t i = 0; i < GNRC_RPL_INSTANCES_NUMOF; ++i) {
if (gnrc_rpl_instances[i].state == 0) {
2015-05-22 21:48:30 +02:00
printf("[ ]");
}
else {
printf("[X]");
}
if (i < (GNRC_RPL_INSTANCES_NUMOF - 1)) {
2015-05-22 21:48:30 +02:00
printf("\t");
}
else {
printf("\n");
}
}
printf("dodag table:\t");
for (uint8_t i = 0; i < GNRC_RPL_DODAGS_NUMOF; ++i) {
if (gnrc_rpl_dodags[i].state == 0) {
2015-05-22 21:48:30 +02:00
printf("[ ]");
}
else {
printf("[X]");
}
if (i < (GNRC_RPL_DODAGS_NUMOF - 1)) {
2015-05-22 21:48:30 +02:00
putchar('\t');
}
else {
printf("\n");
}
}
printf("parent table:\t");
for (uint8_t i = 0; i < GNRC_RPL_PARENTS_NUMOF; ++i) {
if (gnrc_rpl_parents[i].state == 0) {
2015-05-22 21:48:30 +02:00
printf("[ ]");
}
else {
printf("[X]");
}
if (i < (GNRC_RPL_PARENTS_NUMOF - 1)) {
2015-05-22 21:48:30 +02:00
putchar('\t');
}
}
putchar('\n');
putchar('\n');
gnrc_rpl_dodag_t *dodag = NULL;
2015-05-22 21:48:30 +02:00
char addr_str[IPV6_ADDR_MAX_STR_LEN];
timex_t now, cleanup;
uint64_t tc, ti, xnow = xtimer_now64();
2015-05-22 21:48:30 +02:00
vtimer_now(&now);
for (uint8_t i = 0; i < GNRC_RPL_INSTANCES_NUMOF; ++i) {
if (gnrc_rpl_instances[i].state == 0) {
2015-05-22 21:48:30 +02:00
continue;
}
printf("instance [%d | mop: %d | ocp: %d | mhri: %d | mri %d]\n", gnrc_rpl_instances[i].id,
gnrc_rpl_instances[i].mop, gnrc_rpl_instances[i].of->ocp,
gnrc_rpl_instances[i].min_hop_rank_inc, gnrc_rpl_instances[i].max_rank_inc);
LL_FOREACH(gnrc_rpl_instances[i].dodags, dodag) {
tc = (((uint64_t) dodag->trickle.msg_callback_timer.long_target << 32)
| dodag->trickle.msg_callback_timer.target) - xnow;
tc = (int64_t) tc < 0 ? 0 : tc / SEC_IN_USEC;
ti = (((uint64_t) dodag->trickle.msg_interval_timer.long_target << 32)
| dodag->trickle.msg_interval_timer.target) - xnow;
ti = (int64_t) ti < 0 ? 0 : ti / SEC_IN_USEC;
2015-05-22 21:48:30 +02:00
cleanup = timex_sub(dodag->cleanup_timer.absolute, now);
timex_normalize(&cleanup);
printf("\tdodag [%s | R: %d | CL: %" PRIu32 "s | \
TR(I=[%d,%d], k=%d, c=%d, TC=%" PRIu64 "s, TI=%" PRIu64 "s)]\n",
2015-05-22 21:48:30 +02:00
ipv6_addr_to_str(addr_str, &dodag->dodag_id, sizeof(addr_str)),
dodag->my_rank, ((int32_t) cleanup.seconds) > 0 ? cleanup.seconds : 0,
(1 << dodag->dio_min), dodag->dio_interval_doubl,
dodag->trickle.k, dodag->trickle.c, tc, ti);
gnrc_rpl_parent_t *parent;
2015-05-22 21:48:30 +02:00
LL_FOREACH(dodag->parents, parent) {
printf("\t\tparent [addr: %s | rank: %d | lifetime: %" PRIu32 "s]\n",
ipv6_addr_to_str(addr_str, &parent->addr, sizeof(addr_str)),
parent->rank, (parent->lifetime.seconds - now.seconds));
}
}
}
return 0;
}
int _gnrc_rpl(int argc, char **argv)
2015-05-22 21:48:30 +02:00
{
if ((argc < 2) || (strcmp(argv[1], "show") == 0)) {
return _gnrc_rpl_dodag_show();
2015-05-22 21:48:30 +02:00
}
else if ((argc == 3) && strcmp(argv[1], "init") == 0) {
return _gnrc_rpl_init(argv[2]);
2015-05-22 21:48:30 +02:00
}
else if ((argc == 4) && strcmp(argv[1], "root") == 0) {
return _gnrc_rpl_dodag_root(argv[2], argv[3]);
2015-05-22 21:48:30 +02:00
}
else if (strcmp(argv[1], "rm") == 0) {
if (argc == 4) {
return _gnrc_rpl_dodag_remove(argv[2], argv[3]);
2015-05-22 21:48:30 +02:00
}
else if (argc == 3) {
return _gnrc_rpl_instance_remove(argv[2]);
2015-05-22 21:48:30 +02:00
}
}
else if (strcmp(argv[1], "trickle") == 0) {
if ((argc == 5) && (strcmp(argv[2], "reset") == 0)) {
return _gnrc_rpl_trickle_reset(argv[3], argv[4]);
2015-05-22 21:48:30 +02:00
}
else if ((argc == 5) && (strcmp(argv[2], "stop") == 0)) {
return _gnrc_rpl_trickle_stop(argv[3], argv[4]);
2015-05-22 21:48:30 +02:00
}
else if ((argc == 5) && (strcmp(argv[2], "start") == 0)) {
return _gnrc_rpl_trickle_start(argv[3], argv[4]);
2015-05-22 21:48:30 +02:00
}
}
else if (strcmp(argv[1], "send") == 0) {
if ((argc == 3) && (strcmp(argv[2], "dis") == 0)) {
return _gnrc_rpl_send_dis();
2015-05-22 21:48:30 +02:00
}
}
printf("usage: %s [help|init|rm|root|show]\n", argv[0]);
puts("* help\t\t\t\t\t\t- show usage");
puts("* init <if_id>\t\t\t\t\t- initialize RPL on the given interface");
puts("* trickle reset <instance_id> <dodag_id>\t- reset the trickle timer");
puts("* trickle start <instance_id> <dodag_id>\t- start the trickle timer");
puts("* trickle stop <instance_id> <dodag_id>\t\t- stop the trickle timer");
puts("* rm <instance_id>\t\t\t\t- delete the given instance and all related dodags");
puts("* rm <instance_id> <dodag_id>\t\t\t- delete the dodag in the given instance");
puts("* root <instance_id> <dodag_id>\t\t\t- add a dodag to a new or existing instance");
puts("* send dis\t\t\t\t\t- send a multicast DIS");
puts("* show\t\t\t\t\t\t- show instance and dodag tables");
return 0;
}
/**
* @}
*/