Contiki-NG
Loading...
Searching...
No Matches
shell-commands.c
Go to the documentation of this file.
1/*
2 * Copyright (c) 2017, Inria.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. Neither the name of the Institute nor the names of its contributors
14 * may be used to endorse or promote products derived from this software
15 * without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * This file is part of the Contiki operating system.
30 *
31 */
32
33/**
34 * \file
35 * The Contiki shell commands
36 * \author
37 * Simon Duquennoy <simon.duquennoy@inria.fr>
38 */
39
40/**
41 * \addtogroup shell
42 * @{
43 */
44
45#include "contiki.h"
46#include "shell.h"
47#include "shell-commands.h"
48#include "lib/list.h"
49#include "sys/log.h"
50#include "dev/watchdog.h"
51#include "net/ipv6/uip.h"
52#include "net/ipv6/uiplib.h"
53#include "net/ipv6/uip-icmp6.h"
54#include "net/ipv6/uip-ds6.h"
55#if BUILD_WITH_RESOLV
56#include "resolv.h"
57#endif /* BUILD_WITH_RESOLV */
58#if BUILD_WITH_HTTP_SOCKET
59#include "http-socket.h"
60#endif /* BUILD_WITH_HTTP_SOCKET */
61#if MAC_CONF_WITH_TSCH
62#include "net/mac/tsch/tsch.h"
63#endif /* MAC_CONF_WITH_TSCH */
64#if MAC_CONF_WITH_CSMA
65#include "net/mac/csma/csma.h"
66#endif
67#include "net/routing/routing.h"
68#include "net/mac/llsec802154.h"
69
70/* For RPL-specific commands */
71#if ROUTING_CONF_RPL_LITE
72#include "net/routing/rpl-lite/rpl.h"
73#elif ROUTING_CONF_RPL_CLASSIC
74#include "net/routing/rpl-classic/rpl.h"
75#endif
76
77#include <stdlib.h>
78
79#define PING_TIMEOUT (5 * CLOCK_SECOND)
80
81#if NETSTACK_CONF_WITH_IPV6
82static struct uip_icmp6_echo_reply_notification echo_reply_notification;
83static shell_output_func *curr_ping_output_func = NULL;
84static struct process *curr_ping_process;
85static uint8_t curr_ping_ttl;
86static uint16_t curr_ping_datalen;
87#endif /* NETSTACK_CONF_WITH_IPV6 */
88#if TSCH_WITH_SIXTOP
89static shell_command_6top_sub_cmd_t sixtop_sub_cmd = NULL;
90#endif /* TSCH_WITH_SIXTOP */
91static struct shell_command_set_t builtin_shell_command_set;
92LIST(shell_command_sets);
93#if NETSTACK_CONF_WITH_IPV6
94/*---------------------------------------------------------------------------*/
95static const char *
96ds6_nbr_state_to_str(uint8_t state)
97{
98 switch(state) {
99 case NBR_INCOMPLETE:
100 return "Incomplete";
101 case NBR_REACHABLE:
102 return "Reachable";
103 case NBR_STALE:
104 return "Stale";
105 case NBR_DELAY:
106 return "Delay";
107 case NBR_PROBE:
108 return "Probe";
109 default:
110 return "Unknown";
111 }
112}
113/*---------------------------------------------------------------------------*/
114static void
115echo_reply_handler(uip_ipaddr_t *source, uint8_t ttl, uint8_t *data, uint16_t datalen)
116{
117 if(curr_ping_output_func != NULL) {
118 curr_ping_output_func = NULL;
119 curr_ping_ttl = ttl;
120 curr_ping_datalen = datalen;
121 process_poll(curr_ping_process);
122 }
123}
124/*---------------------------------------------------------------------------*/
125static
126PT_THREAD(cmd_ping(struct pt *pt, shell_output_func output, char *args))
127{
128 static uip_ipaddr_t remote_addr;
129 static struct etimer timeout_timer;
130 char *next_args;
131
132 PT_BEGIN(pt);
133
134 SHELL_ARGS_INIT(args, next_args);
135
136 /* Get argument (remote IPv6) */
137 SHELL_ARGS_NEXT(args, next_args);
138 if(args == NULL) {
139 SHELL_OUTPUT(output, "Destination IPv6 address is not specified\n");
140 PT_EXIT(pt);
141 } else if(uiplib_ipaddrconv(args, &remote_addr) == 0) {
142 SHELL_OUTPUT(output, "Invalid IPv6 address: %s\n", args);
143 PT_EXIT(pt);
144 }
145
146 SHELL_OUTPUT(output, "Pinging ");
147 shell_output_6addr(output, &remote_addr);
148 SHELL_OUTPUT(output, "\n");
149
150 /* Send ping request */
151 curr_ping_process = PROCESS_CURRENT();
152 curr_ping_output_func = output;
153 etimer_set(&timeout_timer, PING_TIMEOUT);
154 uip_icmp6_send(&remote_addr, ICMP6_ECHO_REQUEST, 0, 4);
155 PT_WAIT_UNTIL(pt, curr_ping_output_func == NULL || etimer_expired(&timeout_timer));
156
157 if(curr_ping_output_func != NULL) {
158 SHELL_OUTPUT(output, "Timeout\n");
159 curr_ping_output_func = NULL;
160 } else {
161 SHELL_OUTPUT(output, "Received ping reply from ");
162 shell_output_6addr(output, &remote_addr);
163 SHELL_OUTPUT(output, ", len %u, ttl %u, delay %lu ms\n",
164 curr_ping_datalen, curr_ping_ttl,
165 (unsigned long)((1000 * (clock_time() - timeout_timer.timer.start)) / CLOCK_SECOND));
166 }
167
168 PT_END(pt);
169}
170#endif /* NETSTACK_CONF_WITH_IPV6 */
171
172#if ROUTING_CONF_RPL_LITE
173/*---------------------------------------------------------------------------*/
174static const char *
175rpl_state_to_str(enum rpl_dag_state state)
176{
177 switch(state) {
178 case DAG_INITIALIZED:
179 return "Initialized";
180 case DAG_JOINED:
181 return "Joined";
182 case DAG_REACHABLE:
183 return "Reachable";
184 case DAG_POISONING:
185 return "Poisoning";
186 default:
187 return "Unknown";
188 }
189}
190/*---------------------------------------------------------------------------*/
191static const char *
192rpl_mop_to_str(int mop)
193{
194 switch(mop) {
195 case RPL_MOP_NO_DOWNWARD_ROUTES:
196 return "No downward routes";
197 case RPL_MOP_NON_STORING:
198 return "Non-storing";
199 case RPL_MOP_STORING_NO_MULTICAST:
200 return "Storing";
201 case RPL_MOP_STORING_MULTICAST:
202 return "Storing+multicast";
203 default:
204 return "Unknown";
205 }
206}
207/*---------------------------------------------------------------------------*/
208static const char *
209rpl_ocp_to_str(int ocp)
210{
211 switch(ocp) {
212 case RPL_OCP_OF0:
213 return "OF0";
214 case RPL_OCP_MRHOF:
215 return "MRHOF";
216 default:
217 return "Unknown";
218 }
219}
220/*---------------------------------------------------------------------------*/
221static
222PT_THREAD(cmd_rpl_nbr(struct pt *pt, shell_output_func output, char *args))
223{
224 PT_BEGIN(pt);
225
226 if(!curr_instance.used || rpl_neighbor_count() == 0) {
227 SHELL_OUTPUT(output, "RPL neighbors: none\n");
228 } else {
229 rpl_nbr_t *nbr = nbr_table_head(rpl_neighbors);
230 SHELL_OUTPUT(output, "RPL neighbors:\n");
231 while(nbr != NULL) {
232 char buf[120];
233 rpl_neighbor_snprint(buf, sizeof(buf), nbr);
234 SHELL_OUTPUT(output, "%s\n", buf);
235 nbr = nbr_table_next(rpl_neighbors, nbr);
236 }
237 }
238
239 PT_END(pt);
240}
241/*---------------------------------------------------------------------------*/
242static
243PT_THREAD(cmd_rpl_status(struct pt *pt, shell_output_func output, char *args))
244{
245 PT_BEGIN(pt);
246
247 SHELL_OUTPUT(output, "RPL status:\n");
248 if(!curr_instance.used) {
249 SHELL_OUTPUT(output, "-- Instance: None\n");
250 } else {
251 SHELL_OUTPUT(output, "-- Instance: %u\n", curr_instance.instance_id);
252 if(NETSTACK_ROUTING.node_is_root()) {
253 SHELL_OUTPUT(output, "-- DAG root\n");
254 } else {
255 SHELL_OUTPUT(output, "-- DAG node\n");
256 }
257 SHELL_OUTPUT(output, "-- DAG: ");
258 shell_output_6addr(output, &curr_instance.dag.dag_id);
259 SHELL_OUTPUT(output, ", version %u\n", curr_instance.dag.version);
260 SHELL_OUTPUT(output, "-- Prefix: ");
261 shell_output_6addr(output, &curr_instance.dag.prefix_info.prefix);
262 SHELL_OUTPUT(output, "/%u\n", curr_instance.dag.prefix_info.length);
263 SHELL_OUTPUT(output, "-- MOP: %s\n", rpl_mop_to_str(curr_instance.mop));
264 SHELL_OUTPUT(output, "-- OF: %s\n", rpl_ocp_to_str(curr_instance.of->ocp));
265 SHELL_OUTPUT(output, "-- Hop rank increment: %u\n", curr_instance.min_hoprankinc);
266 SHELL_OUTPUT(output, "-- Default lifetime: %lu seconds\n", RPL_LIFETIME(curr_instance.default_lifetime));
267
268 SHELL_OUTPUT(output, "-- State: %s\n", rpl_state_to_str(curr_instance.dag.state));
269 SHELL_OUTPUT(output, "-- Preferred parent: ");
270 if(curr_instance.dag.preferred_parent) {
271 shell_output_6addr(output, rpl_neighbor_get_ipaddr(curr_instance.dag.preferred_parent));
272 SHELL_OUTPUT(output, " (last DTSN: %u)\n", curr_instance.dag.preferred_parent->dtsn);
273 } else {
274 SHELL_OUTPUT(output, "None\n");
275 }
276 SHELL_OUTPUT(output, "-- Rank: %u\n", curr_instance.dag.rank);
277 SHELL_OUTPUT(output, "-- Lowest rank: %u (%u)\n", curr_instance.dag.lowest_rank, curr_instance.max_rankinc);
278 SHELL_OUTPUT(output, "-- DTSN out: %u\n", curr_instance.dtsn_out);
279 SHELL_OUTPUT(output, "-- DAO sequence: last sent %u, last acked %u\n",
280 curr_instance.dag.dao_last_seqno, curr_instance.dag.dao_last_acked_seqno);
281 SHELL_OUTPUT(output, "-- Trickle timer: current %u, min %u, max %u, redundancy %u\n",
282 curr_instance.dag.dio_intcurrent, curr_instance.dio_intmin,
283 curr_instance.dio_intmin + curr_instance.dio_intdoubl, curr_instance.dio_redundancy);
284
285 }
286
287 PT_END(pt);
288}
289/*---------------------------------------------------------------------------*/
290static
291PT_THREAD(cmd_rpl_refresh_routes(struct pt *pt, shell_output_func output, char *args))
292{
293 PT_BEGIN(pt);
294
295 SHELL_OUTPUT(output, "Triggering routes refresh\n");
296 rpl_refresh_routes("Shell");
297
298 PT_END(pt);
299}
300#endif /* ROUTING_CONF_RPL_LITE */
301/*---------------------------------------------------------------------------*/
302static void
303shell_output_log_levels(shell_output_func output)
304{
305 int i = 0;
306 SHELL_OUTPUT(output, "Log levels:\n");
307 while(all_modules[i].name != NULL) {
308 SHELL_OUTPUT(output, "-- %-10s: %u (%s)\n",
309 all_modules[i].name,
310 *all_modules[i].curr_log_level,
311 log_level_to_str(*all_modules[i].curr_log_level));
312 i++;
313 }
314}
315/*---------------------------------------------------------------------------*/
316static
317PT_THREAD(cmd_log(struct pt *pt, shell_output_func output, char *args))
318{
319 static int prev_level;
320 static int level;
321 char *next_args;
322 char *ptr;
323 char *module;
324
325 PT_BEGIN(pt);
326
327 SHELL_ARGS_INIT(args, next_args);
328
329 /* Get and parse argument: module name */
330 SHELL_ARGS_NEXT(args, next_args);
331 module = args;
332 if(module == NULL) {
333 SHELL_OUTPUT(output, "Module is not specified\n");
334 PT_EXIT(pt);
335 }
336 prev_level = log_get_level(module);
337 if(module == NULL || (strcmp("all", module) && prev_level == -1)) {
338 SHELL_OUTPUT(output, "Invalid first argument: %s\n", module)
339 shell_output_log_levels(output);
340 PT_EXIT(pt);
341 }
342
343 /* Get and parse argument: log level */
344 SHELL_ARGS_NEXT(args, next_args);
345 if(args == NULL) {
346 level = -1;
347 } else {
348 level = (int)strtol(args, &ptr, 10);
349 }
350 if((level == 0 && args == ptr)
351 || level < LOG_LEVEL_NONE || level > LOG_LEVEL_DBG) {
352 SHELL_OUTPUT(output, "Invalid second argument: %s\n", args);
353 PT_EXIT(pt);
354 }
355
356 /* Set log level */
357 if(level != prev_level) {
358 log_set_level(module, level);
359#if MAC_CONF_WITH_TSCH && TSCH_LOG_PER_SLOT
360 if(!strcmp(module, "mac") || !strcmp(module, "all")) {
361 if(level >= LOG_LEVEL_DBG) {
363 SHELL_OUTPUT(output, "TSCH logging started\n");
364 } else {
366 SHELL_OUTPUT(output, "TSCH logging stopped\n");
367 }
368 }
369#endif /* MAC_CONF_WITH_TSCH && TSCH_LOG_PER_SLOT */
370 }
371
372 shell_output_log_levels(output);
373
374 PT_END(pt);
375}
376/*---------------------------------------------------------------------------*/
377static
378PT_THREAD(cmd_help(struct pt *pt, shell_output_func output, char *args))
379{
380 struct shell_command_set_t *set;
381 const struct shell_command_t *cmd;
382 PT_BEGIN(pt);
383
384 SHELL_OUTPUT(output, "Available commands:\n");
385 /* Note: we explicitly don't expend any code space to deal with shadowing */
386 for(set = list_head(shell_command_sets); set != NULL; set = list_item_next(set)) {
387 for(cmd = set->commands; cmd->name != NULL; ++cmd) {
388 SHELL_OUTPUT(output, "%s\n", cmd->help);
389 }
390 }
391
392 PT_END(pt);
393}
394#if UIP_CONF_IPV6_RPL
395/*---------------------------------------------------------------------------*/
396static
397PT_THREAD(cmd_rpl_set_root(struct pt *pt, shell_output_func output, char *args))
398{
399 static int is_on;
400 static uip_ipaddr_t prefix;
401 char *next_args;
402
403 PT_BEGIN(pt);
404
405 SHELL_ARGS_INIT(args, next_args);
406
407 /* Get first arg (0/1) */
408 SHELL_ARGS_NEXT(args, next_args);
409 if(args == NULL) {
410 SHELL_OUTPUT(output, "On-flag (0 or 1) is not specified\n");
411 PT_EXIT(pt);
412 }
413
414 if(!strcmp(args, "1")) {
415 is_on = 1;
416 } else if(!strcmp(args, "0")) {
417 is_on = 0;
418 } else {
419 SHELL_OUTPUT(output, "Invalid argument: %s\n", args);
420 PT_EXIT(pt);
421 }
422
423 /* Get first second arg (prefix) */
424 SHELL_ARGS_NEXT(args, next_args);
425 if(args != NULL) {
426 if(uiplib_ipaddrconv(args, &prefix) == 0) {
427 SHELL_OUTPUT(output, "Invalid Prefix: %s\n", args);
428 PT_EXIT(pt);
429 }
430 } else {
431 const uip_ipaddr_t *default_prefix = uip_ds6_default_prefix();
432 uip_ip6addr_copy(&prefix, default_prefix);
433 }
434
435 if(is_on) {
436 if(!NETSTACK_ROUTING.node_is_root()) {
437 SHELL_OUTPUT(output, "Setting as DAG root with prefix ");
438 shell_output_6addr(output, &prefix);
439 SHELL_OUTPUT(output, "/64\n");
440 NETSTACK_ROUTING.root_set_prefix(&prefix, NULL);
441 NETSTACK_ROUTING.root_start();
442 } else {
443 SHELL_OUTPUT(output, "Node is already a DAG root\n");
444 }
445 } else {
446 if(NETSTACK_ROUTING.node_is_root()) {
447 SHELL_OUTPUT(output, "Setting as non-root node: leaving DAG\n");
448 NETSTACK_ROUTING.leave_network();
449 } else {
450 SHELL_OUTPUT(output, "Node is not a DAG root\n");
451 }
452 }
453
454 PT_END(pt);
455}
456/*---------------------------------------------------------------------------*/
457static
458PT_THREAD(cmd_rpl_global_repair(struct pt *pt, shell_output_func output, char *args))
459{
460 PT_BEGIN(pt);
461
462 SHELL_OUTPUT(output, "Triggering routing global repair\n");
463 NETSTACK_ROUTING.global_repair("Shell");
464
465 PT_END(pt);
466}
467/*---------------------------------------------------------------------------*/
468static
469PT_THREAD(cmd_rpl_local_repair(struct pt *pt, shell_output_func output, char *args))
470{
471 PT_BEGIN(pt);
472
473 SHELL_OUTPUT(output, "Triggering routing local repair\n");
474 NETSTACK_ROUTING.local_repair("Shell");
475
476 PT_END(pt);
477}
478#endif /* UIP_CONF_IPV6_RPL */
479/*---------------------------------------------------------------------------*/
480static
481PT_THREAD(cmd_macaddr(struct pt *pt, shell_output_func output, char *args))
482{
483 PT_BEGIN(pt);
484
485 SHELL_OUTPUT(output, "Node MAC address: ");
486 shell_output_lladdr(output, &linkaddr_node_addr);
487 SHELL_OUTPUT(output, "\n");
488
489 PT_END(pt);
490}
491#if NETSTACK_CONF_WITH_IPV6
492/*---------------------------------------------------------------------------*/
493static
494PT_THREAD(cmd_ipaddr(struct pt *pt, shell_output_func output, char *args))
495{
496 int i;
497 uint8_t state;
498
499 PT_BEGIN(pt);
500
501 SHELL_OUTPUT(output, "Node IPv6 addresses:\n");
502 for(i = 0; i < UIP_DS6_ADDR_NB; i++) {
503 state = uip_ds6_if.addr_list[i].state;
504 if(uip_ds6_if.addr_list[i].isused &&
505 (state == ADDR_TENTATIVE || state == ADDR_PREFERRED)) {
506 SHELL_OUTPUT(output, "-- ");
507 shell_output_6addr(output, &uip_ds6_if.addr_list[i].ipaddr);
508 SHELL_OUTPUT(output, "\n");
509 }
510 }
511
512 PT_END(pt);
513}
514/*---------------------------------------------------------------------------*/
515static
516PT_THREAD(cmd_ip_neighbors(struct pt *pt, shell_output_func output, char *args))
517{
519
520 PT_BEGIN(pt);
521
523 if(nbr == NULL) {
524 SHELL_OUTPUT(output, "Node IPv6 neighbors: none\n");
525 PT_EXIT(pt);
526 }
527
528 SHELL_OUTPUT(output, "Node IPv6 neighbors:\n");
529 while(nbr != NULL) {
530 SHELL_OUTPUT(output, "-- ");
531 shell_output_6addr(output, uip_ds6_nbr_get_ipaddr(nbr));
532 SHELL_OUTPUT(output, " <-> ");
533 shell_output_lladdr(output, (linkaddr_t *)uip_ds6_nbr_get_ll(nbr));
534 SHELL_OUTPUT(output, ", router %u, state %s ",
535 nbr->isrouter, ds6_nbr_state_to_str(nbr->state));
536 SHELL_OUTPUT(output, "\n");
538 }
539
540 PT_END(pt);
541
542}
543#endif /* NETSTACK_CONF_WITH_IPV6 */
544#if MAC_CONF_WITH_TSCH
545/*---------------------------------------------------------------------------*/
546static
547PT_THREAD(cmd_tsch_set_coordinator(struct pt *pt, shell_output_func output, char *args))
548{
549 static int is_on;
550 static int is_secured;
551 char *next_args;
552
553 PT_BEGIN(pt);
554
555 SHELL_ARGS_INIT(args, next_args);
556
557 /* Get first arg (0/1) */
558 SHELL_ARGS_NEXT(args, next_args);
559 if(args == NULL) {
560 SHELL_OUTPUT(output, "On-flag (0 or 1) is not specified\n");
561 PT_EXIT(pt);
562 }
563
564 if(!strcmp(args, "1")) {
565 is_on = 1;
566 } else if(!strcmp(args, "0")) {
567 is_on = 0;
568 } else {
569 SHELL_OUTPUT(output, "Invalid first argument: %s\n", args);
570 PT_EXIT(pt);
571 }
572
573 /* Get first second arg (prefix) */
574 SHELL_ARGS_NEXT(args, next_args);
575 if(args != NULL) {
576 if(!strcmp(args, "1")) {
577#if LLSEC802154_ENABLED
578 is_secured = 1;
579#else /* LLSEC802154_ENABLED */
580 SHELL_OUTPUT(output, "Security is not compiled in.\n");
581 is_secured = 0;
582#endif /* LLSEC802154_ENABLED */
583 } else if(!strcmp(args, "0")) {
584 is_secured = 0;
585 } else {
586 SHELL_OUTPUT(output, "Invalid second argument: %s\n", args);
587 PT_EXIT(pt);
588 }
589 } else {
590 is_secured = 0;
591 }
592
593 SHELL_OUTPUT(output, "Setting as TSCH %s (%s)\n",
594 is_on ? "coordinator" : "non-coordinator", is_secured ? "secured" : "non-secured");
595
596 tsch_set_pan_secured(is_secured);
598
599 PT_END(pt);
600}
601/*---------------------------------------------------------------------------*/
602static
603PT_THREAD(cmd_tsch_status(struct pt *pt, shell_output_func output, char *args))
604{
605 PT_BEGIN(pt);
606
607 SHELL_OUTPUT(output, "TSCH status:\n");
608
609 SHELL_OUTPUT(output, "-- Is coordinator: %u\n", tsch_is_coordinator);
610 SHELL_OUTPUT(output, "-- Is associated: %u\n", tsch_is_associated);
611 if(tsch_is_associated) {
613 SHELL_OUTPUT(output, "-- PAN ID: 0x%x\n", frame802154_get_pan_id());
614 SHELL_OUTPUT(output, "-- Is PAN secured: %u\n", tsch_is_pan_secured);
615 SHELL_OUTPUT(output, "-- Join priority: %u\n", tsch_join_priority);
616 SHELL_OUTPUT(output, "-- Time source: ");
617 if(n != NULL) {
618 shell_output_lladdr(output, tsch_queue_get_nbr_address(n));
619 SHELL_OUTPUT(output, "\n");
620 } else {
621 SHELL_OUTPUT(output, "none\n");
622 }
623 SHELL_OUTPUT(output, "-- Last synchronized: %lu seconds ago\n",
624 (unsigned long)((clock_time() - tsch_last_sync_time) / CLOCK_SECOND));
625 SHELL_OUTPUT(output, "-- Drift w.r.t. coordinator: %ld ppm\n",
627 SHELL_OUTPUT(output, "-- Network uptime: %lu seconds\n",
628 (unsigned long)(tsch_get_network_uptime_ticks() / CLOCK_SECOND));
629 }
630
631 PT_END(pt);
632}
633#endif /* MAC_CONF_WITH_TSCH */
634#if NETSTACK_CONF_WITH_IPV6
635/*---------------------------------------------------------------------------*/
636static
637PT_THREAD(cmd_routes(struct pt *pt, shell_output_func output, char *args))
638{
639 uip_ds6_defrt_t *default_route;
640
641 PT_BEGIN(pt);
642
643 /* Our default route */
644 SHELL_OUTPUT(output, "Default route:\n");
645 default_route = uip_ds6_defrt_lookup(uip_ds6_defrt_choose());
646 if(default_route != NULL) {
647 SHELL_OUTPUT(output, "-- ");
648 shell_output_6addr(output, &default_route->ipaddr);
649 if(default_route->lifetime.interval != 0) {
650 SHELL_OUTPUT(output, " (lifetime: %lu seconds)\n", (unsigned long)default_route->lifetime.interval);
651 } else {
652 SHELL_OUTPUT(output, " (lifetime: infinite)\n");
653 }
654 } else {
655 SHELL_OUTPUT(output, "-- None\n");
656 }
657
658#if UIP_CONF_IPV6_RPL
659 if(uip_sr_num_nodes() > 0) {
660 uip_sr_node_t *link;
661 /* Our routing links */
662 SHELL_OUTPUT(output, "Routing links (%u in total):\n", uip_sr_num_nodes());
663 link = uip_sr_node_head();
664 while(link != NULL) {
665 char buf[100];
666 uip_sr_link_snprint(buf, sizeof(buf), link);
667 SHELL_OUTPUT(output, "-- %s\n", buf);
668 link = uip_sr_node_next(link);
669 }
670 } else {
671 SHELL_OUTPUT(output, "No routing links\n");
672 }
673#endif /* UIP_CONF_IPV6_RPL */
674
675#if (UIP_MAX_ROUTES != 0)
676 if(uip_ds6_route_num_routes() > 0) {
677 uip_ds6_route_t *route;
678 /* Our routing entries */
679 SHELL_OUTPUT(output, "Routing entries (%u in total):\n", uip_ds6_route_num_routes());
680 route = uip_ds6_route_head();
681 while(route != NULL) {
682 SHELL_OUTPUT(output, "-- ");
683 shell_output_6addr(output, &route->ipaddr);
684 SHELL_OUTPUT(output, " via ");
685 shell_output_6addr(output, uip_ds6_route_nexthop(route));
686 if((unsigned long)route->state.lifetime != 0xFFFFFFFF) {
687 SHELL_OUTPUT(output, " (lifetime: %lu seconds)\n", (unsigned long)route->state.lifetime);
688 } else {
689 SHELL_OUTPUT(output, " (lifetime: infinite)\n");
690 }
691 route = uip_ds6_route_next(route);
692 }
693 } else {
694 SHELL_OUTPUT(output, "No routing entries\n");
695 }
696#endif /* (UIP_MAX_ROUTES != 0) */
697
698 PT_END(pt);
699}
700/*---------------------------------------------------------------------------*/
701#if BUILD_WITH_RESOLV
702static
703PT_THREAD(cmd_resolv(struct pt *pt, shell_output_func output, char *args))
704{
705 PT_BEGIN(pt);
706 static struct etimer timeout_timer;
707 static int count, ret;
708 char *next_args;
709 static uip_ipaddr_t *remote_addr = NULL;
710 SHELL_ARGS_INIT(args, next_args);
711
712 /* Get argument (remote hostname) */
713 SHELL_ARGS_NEXT(args, next_args);
714 if(args == NULL) {
715 SHELL_OUTPUT(output, "Destination host is not specified\n");
716 PT_EXIT(pt);
717 } else {
718 ret = resolv_lookup(args, &remote_addr);
720 SHELL_OUTPUT(output, "Looking up IPv6 address for host: %s\n", args);
721 if(ret != RESOLV_STATUS_RESOLVING) {
722 resolv_query(args);
723 }
724 /* Poll 10 times for resolve results (5 seconds max)*/
725 for(count = 0; count < 10; count++) {
726 etimer_set(&timeout_timer, CLOCK_SECOND / 2);
727 PT_WAIT_UNTIL(pt, etimer_expired(&timeout_timer));
728 printf("resoliving again...\n");
729 if((ret = resolv_lookup(args, &remote_addr)) != RESOLV_STATUS_RESOLVING) {
730 break;
731 }
732 }
733 }
734 if(ret == RESOLV_STATUS_NOT_FOUND) {
735 SHELL_OUTPUT(output, "Did not find IPv6 address for host: %s\n", args);
736 } else if(ret == RESOLV_STATUS_CACHED) {
737 SHELL_OUTPUT(output, "Found IPv6 address for host: %s => ", args);
738 shell_output_6addr(output, remote_addr);
739 SHELL_OUTPUT(output, "\n");
740 }
741 }
742 PT_END(pt);
743}
744#endif /* BUILD_WITH_RESOLV */
745/*---------------------------------------------------------------------------*/
746#if BUILD_WITH_HTTP_SOCKET
747static struct http_socket s;
748static int bytes_received = 0;
749
750static void
751http_callback(struct http_socket *s, void *ptr,
752 http_socket_event_t e,
753 const uint8_t *data, uint16_t datalen)
754{
755 if(e == HTTP_SOCKET_ERR) {
756 printf("HTTP socket error\n");
757 } else if(e == HTTP_SOCKET_TIMEDOUT) {
758 printf("HTTP socket error: timed out\n");
759 } else if(e == HTTP_SOCKET_ABORTED) {
760 printf("HTTP socket error: aborted\n");
761 } else if(e == HTTP_SOCKET_HOSTNAME_NOT_FOUND) {
762 printf("HTTP socket error: hostname not found\n");
763 } else if(e == HTTP_SOCKET_CLOSED) {
764 printf("HTTP socket closed, %d bytes received\n", bytes_received);
765 } else if(e == HTTP_SOCKET_DATA) {
766 int i;
767 if(bytes_received == 0) {
768 printf("HTTP socket received data, total expects:%d\n", (int) s->header.content_length);
769 }
770
771 bytes_received += datalen;
772 for(i = 0; i < datalen; i++) {
773 printf("%c", data[i]);
774 }
775 }
776}
777/*---------------------------------------------------------------------------*/
778static
779PT_THREAD(cmd_wget(struct pt *pt, shell_output_func output, char *args))
780{
781 PT_BEGIN(pt);
782 char *next_args;
783 SHELL_ARGS_INIT(args, next_args);
784
785 /* Get argument (remote hostname and url (http://host/url) */
786 SHELL_ARGS_NEXT(args, next_args);
787 if(args == NULL) {
788 SHELL_OUTPUT(output, "URL is not specified\n");
789 PT_EXIT(pt);
790 } else {
791 bytes_received = 0;
792 SHELL_OUTPUT(output, "Fetching web page at %s\n", args);
793 http_socket_init(&s);
794 http_socket_get(&s, args, 0, 0,
795 http_callback, NULL);
796 }
797
798 PT_END(pt);
799}
800#endif /* BUILD_WITH_HTTP_SOCKET */
801/*---------------------------------------------------------------------------*/
802#endif /* NETSTACK_CONF_WITH_IPV6 */
803/*---------------------------------------------------------------------------*/
804static
805PT_THREAD(cmd_reboot(struct pt *pt, shell_output_func output, char *args))
806{
807 PT_BEGIN(pt);
808 SHELL_OUTPUT(output, "rebooting\n");
810 PT_END(pt);
811}
812#if MAC_CONF_WITH_TSCH
813/*---------------------------------------------------------------------------*/
814static
815PT_THREAD(cmd_tsch_schedule(struct pt *pt, shell_output_func output, char *args))
816{
817 struct tsch_slotframe *sf;
818
819 PT_BEGIN(pt);
820
821 if(tsch_is_locked()) {
822 PT_EXIT(pt);
823 }
824
826
827 if(sf == NULL) {
828 SHELL_OUTPUT(output, "TSCH schedule: no slotframe\n");
829 } else {
830 SHELL_OUTPUT(output, "TSCH schedule:\n");
831 while(sf != NULL) {
832 struct tsch_link *l = list_head(sf->links_list);
833
834 SHELL_OUTPUT(output, "-- Slotframe: handle %u, size %u, links:\n", sf->handle, sf->size.val);
835
836 while(l != NULL) {
837 SHELL_OUTPUT(output, "---- Options %02x, type %u, timeslot %u, channel offset %u, address ",
838 l->link_options, l->link_type, l->timeslot, l->channel_offset);
839 shell_output_lladdr(output, &l->addr);
840 SHELL_OUTPUT(output, "\n");
841 l = list_item_next(l);
842 }
843
845 }
846 }
847 PT_END(pt);
848}
849#endif /* MAC_CONF_WITH_TSCH */
850/*---------------------------------------------------------------------------*/
851#if TSCH_WITH_SIXTOP
852void
853shell_commands_set_6top_sub_cmd(shell_command_6top_sub_cmd_t sub_cmd)
854{
855 sixtop_sub_cmd = sub_cmd;
856}
857/*---------------------------------------------------------------------------*/
858static
859PT_THREAD(cmd_6top(struct pt *pt, shell_output_func output, char *args))
860{
861 char *next_args;
862
863 PT_BEGIN(pt);
864
865 SHELL_ARGS_INIT(args, next_args);
866
867 if(sixtop_sub_cmd == NULL) {
868 SHELL_OUTPUT(output, "6top command is unavailable:\n");
869 } else {
870 SHELL_OUTPUT(output, "6top: ");
871 sixtop_sub_cmd(output, args);
872 }
873 SHELL_ARGS_NEXT(args, next_args);
874
875 PT_END(pt);
876}
877#endif /* TSCH_WITH_SIXTOP */
878/*---------------------------------------------------------------------------*/
879#if LLSEC802154_ENABLED
880static
881PT_THREAD(cmd_llsec_setlv(struct pt *pt, shell_output_func output, char *args))
882{
883
884 PT_BEGIN(pt);
885
886 if(args == NULL) {
887 SHELL_OUTPUT(output, "Default LLSEC level is %d\n",
888 uipbuf_get_attr(UIPBUF_ATTR_LLSEC_LEVEL));
889 PT_EXIT(pt);
890 } else {
891 int lv = atoi(args);
892 if(lv < 0 || lv > 7) {
893 SHELL_OUTPUT(output, "Illegal LLSEC Level %d\n", lv);
894 PT_EXIT(pt);
895 } else {
896 uipbuf_set_default_attr(UIPBUF_ATTR_LLSEC_LEVEL, lv);
897 uipbuf_clear_attr();
898 SHELL_OUTPUT(output, "LLSEC default level set %d\n", lv);
899 }
900 }
901
902 PT_END(pt);
903}
904/*---------------------------------------------------------------------------*/
905static
906PT_THREAD(cmd_llsec_setkey(struct pt *pt, shell_output_func output, char *args))
907{
908 char *next_args;
909
910 PT_BEGIN(pt);
911
912 SHELL_ARGS_INIT(args, next_args);
913
914 if(args == NULL) {
915 SHELL_OUTPUT(output, "Provide an index and a 16-char string for the key\n");
916 PT_EXIT(pt);
917 } else {
918 int key;
919 SHELL_ARGS_NEXT(args, next_args);
920 if(args == NULL) {
921 SHELL_OUTPUT(output, "Key index is not specified\n");
922 PT_EXIT(pt);
923 }
924 key = atoi(args);
925 if(key < 0) {
926 SHELL_OUTPUT(output, "Illegal LLSEC Key index %d\n", key);
927 PT_EXIT(pt);
928 } else {
929#if MAC_CONF_WITH_CSMA
930 /* Get next arg (key-string) */
931 SHELL_ARGS_NEXT(args, next_args);
932 if(args == NULL) {
933 SHELL_OUTPUT(output, "Provide both an index and a key\n");
934 } else if(strlen(args) == 16) {
935 csma_security_set_key(key, (const uint8_t *) args);
936 SHELL_OUTPUT(output, "Set key for index %d\n", key);
937 } else {
938 SHELL_OUTPUT(output, "Wrong length of key: '%s' (%d)\n", args, strlen(args));
939 }
940#else
941 SHELL_OUTPUT(output, "Set key not supported.\n");
942 PT_EXIT(pt);
943#endif
944 }
945 }
946 PT_END(pt);
947}
948#endif /* LLSEC802154_ENABLED */
949/*---------------------------------------------------------------------------*/
950void
952{
953 list_init(shell_command_sets);
954 list_add(shell_command_sets, &builtin_shell_command_set);
955#if NETSTACK_CONF_WITH_IPV6
956 /* Set up Ping Reply callback */
957 uip_icmp6_echo_reply_callback_add(&echo_reply_notification,
958 echo_reply_handler);
959#endif /* NETSTACK_CONF_WITH_IPV6 */
960}
961/*---------------------------------------------------------------------------*/
962void
963shell_command_set_register(struct shell_command_set_t *set)
964{
965 list_push(shell_command_sets, set);
966}
967/*---------------------------------------------------------------------------*/
968int
969shell_command_set_deregister(struct shell_command_set_t *set)
970{
971 if(!list_contains(shell_command_sets, set)) {
972 return !0;
973 }
974 list_remove(shell_command_sets, set);
975 return 0;
976}
977/*---------------------------------------------------------------------------*/
978const struct shell_command_t *
979shell_command_lookup(const char *name)
980{
981 struct shell_command_set_t *set;
982 const struct shell_command_t *cmd;
983
984 for(set = list_head(shell_command_sets);
985 set != NULL;
986 set = list_item_next(set)) {
987 for(cmd = set->commands; cmd->name != NULL; ++cmd) {
988 if(!strcmp(cmd->name, name)) {
989 return cmd;
990 }
991 }
992 }
993 return NULL;
994}
995/*---------------------------------------------------------------------------*/
996const struct shell_command_t builtin_shell_commands[] = {
997 { "help", cmd_help, "'> help': Shows this help" },
998 { "reboot", cmd_reboot, "'> reboot': Reboot the board by watchdog_reboot()" },
999 { "log", cmd_log, "'> log module level': Sets log level (0--4) for a given module (or \"all\"). For module \"mac\", level 4 also enables per-slot logging." },
1000 { "mac-addr", cmd_macaddr, "'> mac-addr': Shows the node's MAC address" },
1001#if NETSTACK_CONF_WITH_IPV6
1002 { "ip-addr", cmd_ipaddr, "'> ip-addr': Shows all IPv6 addresses" },
1003 { "ip-nbr", cmd_ip_neighbors, "'> ip-nbr': Shows all IPv6 neighbors" },
1004 { "ping", cmd_ping, "'> ping addr': Pings the IPv6 address 'addr'" },
1005 { "routes", cmd_routes, "'> routes': Shows the route entries" },
1006#if BUILD_WITH_RESOLV
1007 { "nslookup", cmd_resolv, "'> nslookup': Lookup IPv6 address of host" },
1008#endif /* BUILD_WITH_RESOLV */
1009#if BUILD_WITH_HTTP_SOCKET
1010 { "wget", cmd_wget, "'> wget url': get content of URL (only http)." },
1011#endif /* BUILD_WITH_HTTP_SOCKET */
1012#endif /* NETSTACK_CONF_WITH_IPV6 */
1013#if UIP_CONF_IPV6_RPL
1014 { "rpl-set-root", cmd_rpl_set_root, "'> rpl-set-root 0/1 [prefix]': Sets node as root (1) or not (0). A /64 prefix can be optionally specified." },
1015 { "rpl-local-repair", cmd_rpl_local_repair, "'> rpl-local-repair': Triggers a RPL local repair" },
1016#if ROUTING_CONF_RPL_LITE
1017 { "rpl-refresh-routes", cmd_rpl_refresh_routes, "'> rpl-refresh-routes': Refreshes all routes through a DTSN increment" },
1018 { "rpl-status", cmd_rpl_status, "'> rpl-status': Shows a summary of the current RPL state" },
1019 { "rpl-nbr", cmd_rpl_nbr, "'> rpl-nbr': Shows the RPL neighbor table" },
1020#endif /* ROUTING_CONF_RPL_LITE */
1021 { "rpl-global-repair", cmd_rpl_global_repair, "'> rpl-global-repair': Triggers a RPL global repair" },
1022#endif /* UIP_CONF_IPV6_RPL */
1023#if MAC_CONF_WITH_TSCH
1024 { "tsch-set-coordinator", cmd_tsch_set_coordinator, "'> tsch-set-coordinator 0/1 [0/1]': Sets node as coordinator (1) or not (0). Second, optional parameter: enable (1) or disable (0) security." },
1025 { "tsch-schedule", cmd_tsch_schedule, "'> tsch-schedule': Shows the current TSCH schedule" },
1026 { "tsch-status", cmd_tsch_status, "'> tsch-status': Shows a summary of the current TSCH state" },
1027#endif /* MAC_CONF_WITH_TSCH */
1028#if TSCH_WITH_SIXTOP
1029 { "6top", cmd_6top, "'> 6top help': Shows 6top command usage" },
1030#endif /* TSCH_WITH_SIXTOP */
1031#if LLSEC802154_ENABLED
1032 { "llsec-set-level", cmd_llsec_setlv, "'> llsec-set-level <lv>': Set the level of link layer security (show if no lv argument)"},
1033 { "llsec-set-key", cmd_llsec_setkey, "'> llsec-set-key <id> <key>': Set the key of link layer security"},
1034#endif /* LLSEC802154_ENABLED */
1035 { NULL, NULL, NULL },
1036};
1037
1038static struct shell_command_set_t builtin_shell_command_set = {
1039 .next = NULL,
1040 .commands = builtin_shell_commands,
1041};
1042/** @} */
The 802.15.4 standard CSMA protocol (nonbeacon-enabled)
clock_time_t clock_time(void)
Get the current clock time.
Definition clock.c:118
static volatile uint64_t count
Num.
Definition clock.c:50
#define CLOCK_SECOND
A second, measured in system clock time.
Definition clock.h:103
static bool etimer_expired(struct etimer *et)
Check if an event timer has expired.
Definition etimer.h:201
void etimer_set(struct etimer *et, clock_time_t interval)
Set an event timer.
Definition etimer.c:177
linkaddr_t linkaddr_node_addr
The link-layer address of the node.
Definition linkaddr.c:48
static void list_init(list_t list)
Initialize a list.
Definition list.h:152
#define LIST(name)
Declare a linked list.
Definition list.h:90
static void * list_item_next(const void *item)
Get the next item following this item.
Definition list.h:294
void list_add(list_t list, void *item)
Add an item at the end of a list.
Definition list.c:71
void list_remove(list_t list, const void *item)
Remove a specific element from a list.
Definition list.c:134
void list_push(list_t list, void *item)
Add an item to the start of the list.
Definition list.c:90
bool list_contains(const_list_t list, const void *item)
Check if the list contains an item.
Definition list.c:185
static void * list_head(const_list_t list)
Get a pointer to the first element of a list.
Definition list.h:169
void log_set_level(const char *module, int level)
Sets a log level at run-time.
Definition log.c:175
const char * log_level_to_str(int level)
Returns a textual description of a log level.
Definition log.c:206
int log_get_level(const char *module)
Returns the current log level.
Definition log.c:190
#define PROCESS_CURRENT()
Get a pointer to the currently running process.
Definition process.h:404
void process_poll(struct process *p)
Request a process to be polled.
Definition process.c:366
#define PT_BEGIN(pt)
Declare the start of a protothread inside the C function implementing the protothread.
Definition pt.h:280
#define PT_THREAD(name_args)
Declaration of a protothread.
Definition pt.h:265
#define PT_END(pt)
Declare the end of a protothread.
Definition pt.h:292
#define PT_EXIT(pt)
Exit the protothread.
Definition pt.h:411
#define PT_WAIT_UNTIL(pt, condition)
Block and wait until condition is true.
Definition pt.h:313
int rpl_neighbor_snprint(char *buf, int buflen, rpl_nbr_t *nbr)
Print a textual description of RPL neighbor into a string.
rpl_dag_state
RPL DAG states.
Definition rpl-types.h:177
uip_ipaddr_t * rpl_neighbor_get_ipaddr(rpl_nbr_t *nbr)
Returns a neighbor's (link-local) IPv6 address.
void rpl_refresh_routes(const char *str)
Triggers a route fresh via DTSN increment.
Definition rpl-dag.c:189
int rpl_neighbor_count(void)
Returns the number of nodes in the RPL neighbor table.
watchdog_reboot()
Keeps control until the WDT throws a reset signal.
Definition watchdog.c:94
void shell_commands_init(void)
Initializes Shell-commands module.
struct tsch_neighbor * tsch_queue_get_time_source(void)
Get the TSCH time source (we currently assume there is only one)
Definition tsch-queue.c:120
uint64_t tsch_get_network_uptime_ticks(void)
Get the time, in clock ticks, since the TSCH network was started.
struct tsch_slotframe * tsch_schedule_slotframe_head(void)
Access the first item in the list of slotframes.
void tsch_log_init(void)
Initialize log module.
int tsch_is_locked(void)
Checks if the TSCH lock is set.
void tsch_set_coordinator(int enable)
Set the node as PAN coordinator.
Definition tsch.c:167
linkaddr_t * tsch_queue_get_nbr_address(const struct tsch_neighbor *n)
Get the address of a neighbor.
Definition tsch-queue.c:135
void tsch_set_pan_secured(int enable)
Enable/disable security.
Definition tsch.c:178
long int tsch_adaptive_timesync_get_drift_ppm(void)
Gives the estimated clock drift w.r.t.
void tsch_log_stop(void)
Stop logging module.
struct tsch_slotframe * tsch_schedule_slotframe_next(struct tsch_slotframe *sf)
Access the next item in the list of slotframes.
#define uiplib_ipaddrconv
Convert a textual representation of an IP address to a numerical representation.
Definition uiplib.h:71
const uip_lladdr_t * uip_ds6_nbr_get_ll(const uip_ds6_nbr_t *nbr)
Get the link-layer address associated with a specified nbr cache.
uip_ds6_nbr_t * uip_ds6_nbr_head(void)
Get the first neighbor cache in nbr_table.
void uip_icmp6_send(const uip_ipaddr_t *dest, int type, int code, int payload_len)
Send an icmpv6 message.
Definition uip-icmp6.c:230
const uip_ip6addr_t * uip_ds6_default_prefix()
Retrieve the Default IPv6 prefix.
Definition uip-ds6.c:104
#define NBR_INCOMPLETE
Possible states for the nbr cache entries.
Definition uip-ds6-nbr.h:64
uip_sr_node_t * uip_sr_node_head(void)
Returns the head of the non-storing node list.
Definition uip-sr.c:199
int uip_sr_link_snprint(char *buf, int buflen, const uip_sr_node_t *link)
Print a textual description of a source routing link.
Definition uip-sr.c:261
const uip_ipaddr_t * uip_ds6_nbr_get_ipaddr(const uip_ds6_nbr_t *nbr)
Get an IPv6 address of a neighbor cache.
int uip_sr_num_nodes(void)
Tells how many nodes are currently stored in the graph.
Definition uip-sr.c:63
#define ADDR_TENTATIVE
Possible states for the an address (RFC 4862)
Definition uip-ds6.h:156
uip_ds6_netif_t uip_ds6_if
The single interface.
Definition uip-ds6.c:75
uip_sr_node_t * uip_sr_node_next(const uip_sr_node_t *item)
Returns the next element of the non-storing node list.
Definition uip-sr.c:205
void uip_icmp6_echo_reply_callback_add(struct uip_icmp6_echo_reply_notification *n, uip_icmp6_echo_reply_callback_t c)
Add a callback function for ping replies.
Definition uip-icmp6.c:302
#define ICMP6_ECHO_REQUEST
Echo request.
Definition uip-icmp6.h:57
uip_ds6_nbr_t * uip_ds6_nbr_next(uip_ds6_nbr_t *nbr)
Get the next neighbor cache of a specified one.
void resolv_query(const char *name)
Queues a name so that a question for the name will be sent out.
Definition resolv.c:1189
resolv_status_t resolv_lookup(const char *name, uip_ipaddr_t **ipaddr)
Look up a hostname in the array of known hostnames.
Definition resolv.c:1263
Linked list manipulation routines.
Common functionality of 802.15.4-compliant llsec_drivers.
Header file for the logging system.
uIP DNS resolver code header file.
@ RESOLV_STATUS_RESOLVING
This hostname is in the process of being resolved.
Definition resolv.h:73
@ RESOLV_STATUS_NOT_FOUND
The server has returned a not-found response for this domain name.
Definition resolv.h:70
@ RESOLV_STATUS_CACHED
Hostname is fresh and usable.
Definition resolv.h:54
@ RESOLV_STATUS_UNCACHED
Hostname was not found in the cache.
Definition resolv.h:57
Routing driver header file.
Main header file for the Contiki shell.
Main header file for the Contiki shell.
A timer.
Definition etimer.h:79
int(* root_start)(void)
Set the node as root and start a network.
Definition routing.h:76
void(* leave_network)(void)
Leave the network the node is part of.
Definition routing.h:102
void(* root_set_prefix)(uip_ipaddr_t *prefix, uip_ipaddr_t *iid)
Set the prefix, for nodes that will operate as root.
Definition routing.h:70
void(* global_repair)(const char *str)
Triggers a global topology repair.
Definition routing.h:120
void(* local_repair)(const char *str)
Triggers a RPL local topology repair.
Definition routing.h:126
int(* node_is_root)(void)
Tells whether the node is a network root or not.
Definition routing.h:82
All information related to a RPL neighbor.
Definition rpl-types.h:136
TSCH neighbor information.
Definition tsch-types.h:109
802.15.4e slotframe (contains links)
Definition tsch-types.h:84
An entry in the default router list.
The default nbr_table entry (when UIP_DS6_NBR_MULTI_IPV6_ADDRS is disabled), that implements nbr cach...
An entry in the routing table.
A node in a source routing graph, stored at the root and representing all child-parent relationship.
Definition uip-sr.h:92
Main API declarations for TSCH.
Header file for IPv6-related data structures.
Header file for ICMPv6 message and error handing (RFC 4443)
static uip_ds6_nbr_t * nbr
Pointer to llao option in uip_buf.
Definition uip-nd6.c:106
Header file for the uIP TCP/IP stack.
Header file for the IP address manipulation library.