77 #include "lib/random.h" 81 #define LOG_MODULE "IPv6 NDP" 82 #define LOG_LEVEL LOG_LEVEL_IPV6 90 #define UIP_ND6_RS_BUF ((uip_nd6_rs *)UIP_ICMP_PAYLOAD) 91 #define UIP_ND6_RA_BUF ((uip_nd6_ra *)UIP_ICMP_PAYLOAD) 92 #define UIP_ND6_NS_BUF ((uip_nd6_ns *)UIP_ICMP_PAYLOAD) 93 #define UIP_ND6_NA_BUF ((uip_nd6_na *)UIP_ICMP_PAYLOAD) 96 #define ND6_OPT(opt) ((unsigned char *)(UIP_ICMP_PAYLOAD + (opt))) 97 #define ND6_OPT_HDR_BUF(opt) ((uip_nd6_opt_hdr *)ND6_OPT(opt)) 98 #define ND6_OPT_PREFIX_BUF(opt) ((uip_nd6_opt_prefix_info *)ND6_OPT(opt)) 99 #define ND6_OPT_MTU_BUF(opt) ((uip_nd6_opt_mtu *)ND6_OPT(opt)) 100 #define ND6_OPT_RDNSS_BUF(opt) ((uip_nd6_opt_dns *)ND6_OPT(opt)) 103 #if UIP_ND6_SEND_NS || UIP_ND6_SEND_NA || UIP_ND6_SEND_RA || !UIP_CONF_ROUTER 104 static uint16_t nd6_opt_offset;
110 #if UIP_ND6_SEND_NS || UIP_ND6_SEND_RA || !UIP_CONF_ROUTER 114 #if !UIP_CONF_ROUTER // TBD see if we move it to ra_input 118 #if (!UIP_CONF_ROUTER || UIP_ND6_SEND_RA) 122 #if UIP_ND6_SEND_NA || UIP_ND6_SEND_RA || !UIP_CONF_ROUTER 139 create_llao(uint8_t *llao, uint8_t type)
141 llao[UIP_ND6_OPT_TYPE_OFFSET] = type;
177 LOG_INFO(
"Received NS from ");
181 LOG_INFO_(
" with target address ");
182 LOG_INFO_6ADDR((uip_ipaddr_t *) (&UIP_ND6_NS_BUF->tgtipaddr));
186 #if UIP_CONF_IPV6_CHECKS 190 LOG_ERR(
"NS received is bad\n");
197 nd6_opt_offset = UIP_ND6_NS_LEN;
198 while(uip_l3_icmp_hdr_len + nd6_opt_offset + UIP_ND6_OPT_HDR_LEN <
uip_len) {
199 #if UIP_CONF_IPV6_CHECKS 200 if(ND6_OPT_HDR_BUF(nd6_opt_offset)->len == 0) {
201 LOG_ERR(
"NS received is bad\n");
205 switch (ND6_OPT_HDR_BUF(nd6_opt_offset)->type) {
206 case UIP_ND6_OPT_SLLAO:
207 if(uip_l3_icmp_hdr_len + nd6_opt_offset +
209 LOG_ERR(
"Insufficient data for NS SLLAO option\n");
213 #if UIP_CONF_IPV6_CHECKS 216 LOG_ERR(
"NS received is bad\n");
220 uip_lladdr_t lladdr_aligned;
225 0, NBR_STALE, NBR_TABLE_REASON_IPV6_ND, NULL);
234 (
const uip_lladdr_t *)&lladdr_aligned)
239 nbr->state = NBR_STALE;
242 nbr->state = NBR_STALE;
246 #if UIP_CONF_IPV6_CHECKS 251 LOG_WARN(
"ND option not supported in NS");
254 nd6_opt_offset += (ND6_OPT_HDR_BUF(nd6_opt_offset)->len << 3);
257 addr = uip_ds6_addr_lookup(&UIP_ND6_NS_BUF->tgtipaddr);
261 #if UIP_ND6_DEF_MAXDADNS > 0 262 #if UIP_CONF_IPV6_CHECKS 264 LOG_ERR(
"NS received is bad\n");
271 flags = UIP_ND6_NA_FLAG_OVERRIDE;
282 #if UIP_CONF_IPV6_CHECKS 283 if(uip_ds6_is_my_addr(&
UIP_IP_BUF->srcipaddr)) {
290 LOG_ERR(
"NS received is bad\n");
299 flags = UIP_ND6_NA_FLAG_SOLICITED | UIP_ND6_NA_FLAG_OVERRIDE;
304 if(uip_ds6_addr_lookup(&
UIP_IP_BUF->destipaddr) == addr) {
307 flags = UIP_ND6_NA_FLAG_SOLICITED | UIP_ND6_NA_FLAG_OVERRIDE;
310 #if UIP_CONF_IPV6_CHECKS 311 LOG_ERR(
"NS received is bad\n");
323 flags = flags | UIP_ND6_NA_FLAG_ROUTER;
336 UIP_ND6_NA_BUF->flagsreserved = flags;
337 memcpy(&UIP_ND6_NA_BUF->tgtipaddr, &addr->ipaddr,
sizeof(uip_ipaddr_t));
339 create_llao(&
uip_buf[uip_l3_icmp_hdr_len + UIP_ND6_NA_LEN],
348 LOG_INFO(
"Sending NA to ");
352 LOG_INFO_(
" with target address ");
353 LOG_INFO_6ADDR(&UIP_ND6_NA_BUF->tgtipaddr);
384 UIP_ND6_NS_BUF->reserved = 0;
390 if(!(uip_ds6_is_my_addr(tgt))) {
397 LOG_ERR(
"Dropping NS due to no suitable source address\n");
403 create_llao(&
uip_buf[uip_l3_icmp_hdr_len + UIP_ND6_NS_LEN],
410 UIP_IP_BUF->len[1] = UIP_ICMPH_LEN + UIP_ND6_NS_LEN;
411 uip_len = UIP_IPH_LEN + UIP_ICMPH_LEN + UIP_ND6_NS_LEN;
418 LOG_INFO(
"Sending NS to ");
422 LOG_INFO_(
" with target address ");
453 uint8_t is_solicited;
455 uip_lladdr_t lladdr_aligned;
457 LOG_INFO(
"Received NA from ");
461 LOG_INFO_(
" with target address ");
462 LOG_INFO_6ADDR((uip_ipaddr_t *) (&UIP_ND6_NA_BUF->tgtipaddr));
471 is_router = ((UIP_ND6_NA_BUF->flagsreserved & UIP_ND6_NA_FLAG_ROUTER));
473 ((UIP_ND6_NA_BUF->flagsreserved & UIP_ND6_NA_FLAG_SOLICITED));
475 ((UIP_ND6_NA_BUF->flagsreserved & UIP_ND6_NA_FLAG_OVERRIDE));
477 #if UIP_CONF_IPV6_CHECKS 482 LOG_ERR(
"NA received is bad\n");
488 nd6_opt_offset = UIP_ND6_NA_LEN;
490 while(uip_l3_icmp_hdr_len + nd6_opt_offset <
uip_len) {
491 #if UIP_CONF_IPV6_CHECKS 492 if(ND6_OPT_HDR_BUF(nd6_opt_offset)->len == 0) {
493 LOG_ERR(
"NA received is bad\n");
497 switch (ND6_OPT_HDR_BUF(nd6_opt_offset)->type) {
498 case UIP_ND6_OPT_TLLAO:
499 nd6_opt_llao = (uint8_t *)ND6_OPT_HDR_BUF(nd6_opt_offset);
502 LOG_WARN(
"ND option not supported in NA\n");
505 nd6_opt_offset += (ND6_OPT_HDR_BUF(nd6_opt_offset)->len << 3);
507 addr = uip_ds6_addr_lookup(&UIP_ND6_NA_BUF->tgtipaddr);
510 #if UIP_ND6_DEF_MAXDADNS > 0 515 LOG_ERR(
"NA received is bad\n");
518 const uip_lladdr_t *lladdr;
537 (
const uip_lladdr_t *)&lladdr_aligned) < 0) {
547 nbr->state = NBR_STALE;
549 nbr->isrouter = is_router;
551 if(!is_override && is_llchange) {
552 if(nbr->state == NBR_REACHABLE) {
553 nbr->state = NBR_STALE;
561 if(is_override || !is_llchange ||
nd6_opt_llao == NULL) {
565 (
const uip_lladdr_t *)&lladdr_aligned)
577 if(nbr->isrouter && !is_router) {
578 defrt = uip_ds6_defrt_lookup(&
UIP_IP_BUF->srcipaddr);
580 uip_ds6_defrt_rm(defrt);
583 nbr->isrouter = is_router;
586 #if UIP_CONF_IPV6_QUEUE_PKT 594 if(uip_packetqueue_buflen(&nbr->packethandle) != 0) {
595 uip_len = uip_packetqueue_buflen(&nbr->packethandle);
597 uip_packetqueue_free(&nbr->packethandle);
616 LOG_INFO(
"Received RS from ");
624 #if UIP_CONF_IPV6_CHECKS 631 LOG_ERR(
"RS received is bad\n");
638 nd6_opt_offset = UIP_ND6_RS_LEN;
641 while(uip_l3_icmp_hdr_len + nd6_opt_offset <
uip_len) {
642 #if UIP_CONF_IPV6_CHECKS 643 if(ND6_OPT_HDR_BUF(nd6_opt_offset)->len == 0) {
644 LOG_ERR(
"RS received is bad\n");
648 switch (ND6_OPT_HDR_BUF(nd6_opt_offset)->type) {
649 case UIP_ND6_OPT_SLLAO:
650 nd6_opt_llao = (uint8_t *)ND6_OPT_HDR_BUF(nd6_opt_offset);
653 LOG_WARN(
"ND option not supported in RS\n");
656 nd6_opt_offset += (ND6_OPT_HDR_BUF(nd6_opt_offset)->len << 3);
660 #if UIP_CONF_IPV6_CHECKS 662 LOG_ERR(
"RS received is bad\n");
666 uip_lladdr_t lladdr_aligned;
671 0, NBR_STALE, NBR_TABLE_REASON_IPV6_ND, NULL);
684 0, NBR_STALE, NBR_TABLE_REASON_IPV6_ND, NULL);
685 nbr->reachable = nbr_data.reachable;
686 nbr->sendns = nbr_data.sendns;
687 nbr->nscount = nbr_data.nscount;
691 #if UIP_CONF_IPV6_CHECKS 697 uip_ds6_send_ra_sollicited();
706 uip_nd6_ra_output(
const uip_ipaddr_t * dest)
726 UIP_ND6_RA_BUF->cur_ttl =
uip_ds6_if.cur_hop_limit;
728 UIP_ND6_RA_BUF->flags_reserved =
729 (UIP_ND6_M_FLAG << 7) | (UIP_ND6_O_FLAG << 6);
731 UIP_ND6_RA_BUF->router_lifetime =
uip_htons(UIP_ND6_ROUTER_LIFETIME);
734 UIP_ND6_RA_BUF->reachable_time = 0;
735 UIP_ND6_RA_BUF->retrans_timer = 0;
737 uip_len = UIP_IPH_LEN + UIP_ICMPH_LEN + UIP_ND6_RA_LEN;
738 nd6_opt_offset = UIP_ND6_RA_LEN;
744 if((prefix->isused) && (prefix->advertise)) {
745 ND6_OPT_PREFIX_BUF(nd6_opt_offset)->type = UIP_ND6_OPT_PREFIX_INFO;
746 ND6_OPT_PREFIX_BUF(nd6_opt_offset)->len = UIP_ND6_OPT_PREFIX_INFO_LEN / 8;
747 ND6_OPT_PREFIX_BUF(nd6_opt_offset)->preflen = prefix->length;
748 ND6_OPT_PREFIX_BUF(nd6_opt_offset)->flagsreserved1 = prefix->l_a_reserved;
749 ND6_OPT_PREFIX_BUF(nd6_opt_offset)->validlt = uip_htonl(prefix->vlifetime);
750 ND6_OPT_PREFIX_BUF(nd6_opt_offset)->preferredlt = uip_htonl(prefix->plifetime);
751 ND6_OPT_PREFIX_BUF(nd6_opt_offset)->reserved2 = 0;
752 uip_ipaddr_copy(&(ND6_OPT_PREFIX_BUF(nd6_opt_offset)->prefix), &(prefix->ipaddr));
753 nd6_opt_offset += UIP_ND6_OPT_PREFIX_INFO_LEN;
754 uip_len += UIP_ND6_OPT_PREFIX_INFO_LEN;
759 create_llao((uint8_t *)ND6_OPT_HDR_BUF(nd6_opt_offset), UIP_ND6_OPT_SLLAO);
765 ND6_OPT_MTU_BUF(nd6_opt_offset)->type = UIP_ND6_OPT_MTU;
766 ND6_OPT_MTU_BUF(nd6_opt_offset)->len = UIP_ND6_OPT_MTU_LEN >> 3;
767 ND6_OPT_MTU_BUF(nd6_opt_offset)->reserved = 0;
769 ND6_OPT_MTU_BUF(nd6_opt_offset)->mtu = uip_htonl(1500);
771 uip_len += UIP_ND6_OPT_MTU_LEN;
772 nd6_opt_offset += UIP_ND6_OPT_MTU_LEN;
777 uip_ipaddr_t *ip = &ND6_OPT_RDNSS_BUF(nd6_opt_offset)->ip;
778 uip_ipaddr_t *dns = NULL;
779 ND6_OPT_RDNSS_BUF(nd6_opt_offset)->type = UIP_ND6_OPT_RDNSS;
780 ND6_OPT_RDNSS_BUF(nd6_opt_offset)->reserved = 0;
783 ND6_OPT_RDNSS_BUF(nd6_opt_offset)->lifetime -=
clock_seconds();
789 ND6_OPT_RDNSS_BUF(nd6_opt_offset)->len = UIP_ND6_OPT_RDNSS_LEN + (i << 1);
790 LOG_INFO(
"%d nameservers reported\n", i);
791 uip_len += ND6_OPT_RDNSS_BUF(nd6_opt_offset)->len << 3;
792 nd6_opt_offset += ND6_OPT_RDNSS_BUF(nd6_opt_offset)->len << 3;
803 LOG_INFO(
"Sending RA to ");
829 UIP_IP_BUF->len[1] = UIP_ICMPH_LEN + UIP_ND6_RS_LEN;
830 uip_len = uip_l3_icmp_hdr_len + UIP_ND6_RS_LEN;
833 uipbuf_set_len_field(
UIP_IP_BUF, UIP_ICMPH_LEN + UIP_ND6_RS_LEN + UIP_ND6_OPT_LLAO_LEN);
835 create_llao(&
uip_buf[uip_l3_icmp_hdr_len + UIP_ND6_RS_LEN],
843 LOG_INFO(
"Sending RS to ");
863 uip_lladdr_t lladdr_aligned;
865 LOG_INFO(
"Received RA from ");
872 #if UIP_CONF_IPV6_CHECKS 876 LOG_ERR(
"RA received is bad");
881 if(UIP_ND6_RA_BUF->cur_ttl != 0) {
882 uip_ds6_if.cur_hop_limit = UIP_ND6_RA_BUF->cur_ttl;
883 LOG_INFO(
"uip_ds6_if.cur_hop_limit %u\n",
uip_ds6_if.cur_hop_limit);
886 if(UIP_ND6_RA_BUF->reachable_time != 0) {
888 uip_ntohl(UIP_ND6_RA_BUF->reachable_time)) {
889 uip_ds6_if.base_reachable_time = uip_ntohl(UIP_ND6_RA_BUF->reachable_time);
893 if(UIP_ND6_RA_BUF->retrans_timer != 0) {
894 uip_ds6_if.retrans_timer = uip_ntohl(UIP_ND6_RA_BUF->retrans_timer);
898 nd6_opt_offset = UIP_ND6_RA_LEN;
899 while(uip_l3_icmp_hdr_len + nd6_opt_offset <
uip_len) {
900 if(ND6_OPT_HDR_BUF(nd6_opt_offset)->len == 0) {
901 LOG_ERR(
"RA received is bad");
904 switch (ND6_OPT_HDR_BUF(nd6_opt_offset)->type) {
905 case UIP_ND6_OPT_SLLAO:
906 LOG_DBG(
"Processing SLLAO option in RA\n");
907 nd6_opt_llao = (uint8_t *) ND6_OPT_HDR_BUF(nd6_opt_offset);
915 1, NBR_STALE, NBR_TABLE_REASON_IPV6_ND, NULL);
922 nbr->state = NBR_STALE;
928 (
const uip_lladdr_t *)&lladdr_aligned) < 0) {
932 nbr->state = NBR_STALE;
937 case UIP_ND6_OPT_MTU:
938 LOG_DBG(
"Processing MTU option in RA\n");
942 case UIP_ND6_OPT_PREFIX_INFO:
943 LOG_DBG(
"Processing PREFIX option in RA\n");
945 if((uip_ntohl(nd6_opt_prefix_info->validlt) >=
946 uip_ntohl(nd6_opt_prefix_info->preferredlt))
949 if(nd6_opt_prefix_info->flagsreserved1 & UIP_ND6_RA_FLAG_ONLINK) {
951 uip_ds6_prefix_lookup(&nd6_opt_prefix_info->prefix,
952 nd6_opt_prefix_info->preflen);
954 if(nd6_opt_prefix_info->validlt != 0) {
956 prefix = uip_ds6_prefix_add(&nd6_opt_prefix_info->prefix,
957 nd6_opt_prefix_info->preflen,
958 uip_ntohl(nd6_opt_prefix_info->
961 prefix = uip_ds6_prefix_add(&nd6_opt_prefix_info->prefix,
962 nd6_opt_prefix_info->preflen, 0);
966 switch (nd6_opt_prefix_info->validlt) {
968 uip_ds6_prefix_rm(prefix);
971 prefix->isinfinite = 1;
974 LOG_DBG(
"Updating timer of prefix ");
975 LOG_DBG_6ADDR(&prefix->ipaddr);
976 LOG_DBG_(
" new value %"PRIu32
"\n", uip_ntohl(nd6_opt_prefix_info->validlt));
978 uip_ntohl(nd6_opt_prefix_info->validlt));
979 prefix->isinfinite = 0;
986 if((nd6_opt_prefix_info->flagsreserved1 & UIP_ND6_RA_FLAG_AUTONOMOUS)
987 && (nd6_opt_prefix_info->validlt != 0)
988 && (nd6_opt_prefix_info->preflen == UIP_DEFAULT_PREFIX_LEN)) {
992 addr = uip_ds6_addr_lookup(&
ipaddr);
993 if((addr != NULL) && (addr->type == ADDR_AUTOCONF)) {
996 if((uip_ntohl(nd6_opt_prefix_info->validlt) > 2 * 60 * 60) ||
997 (uip_ntohl(nd6_opt_prefix_info->validlt) >
999 LOG_DBG(
"Updating timer of address ");
1000 LOG_DBG_6ADDR(&addr->ipaddr);
1001 LOG_DBG_(
" new value %lu\n",
1002 (
unsigned long)uip_ntohl(nd6_opt_prefix_info->validlt));
1004 uip_ntohl(nd6_opt_prefix_info->validlt));
1007 LOG_DBG(
"Updating timer of address ");
1008 LOG_DBG_6ADDR(&addr->ipaddr);
1009 LOG_DBG_(
" new value %lu\n", (
unsigned long)(2 * 60 * 60));
1011 addr->isinfinite = 0;
1013 addr->isinfinite = 1;
1016 if(uip_ntohl(nd6_opt_prefix_info->validlt) ==
1028 #if UIP_ND6_RA_RDNSS 1029 case UIP_ND6_OPT_RDNSS:
1030 LOG_DBG(
"Processing RDNSS option\n");
1031 uint8_t naddr = (ND6_OPT_RDNSS_BUF(nd6_opt_offset)->len - 1) / 2;
1032 uip_ipaddr_t *ip = (uip_ipaddr_t *)(&ND6_OPT_RDNSS_BUF(nd6_opt_offset)->ip);
1033 LOG_DBG(
"got %d nameservers\n", naddr);
1034 while(naddr-- > 0) {
1035 LOG_DBG(
"nameserver: ");
1037 LOG_DBG_(
" lifetime: %"PRIx32
"\n", uip_ntohl(ND6_OPT_RDNSS_BUF(nd6_opt_offset)->lifetime));
1044 LOG_ERR(
"ND option not supported in RA\n");
1047 nd6_opt_offset += (ND6_OPT_HDR_BUF(nd6_opt_offset)->len << 3);
1050 defrt = uip_ds6_defrt_lookup(&
UIP_IP_BUF->srcipaddr);
1051 if(UIP_ND6_RA_BUF->router_lifetime != 0) {
1058 long)(uip_ntohs(UIP_ND6_RA_BUF->router_lifetime)));
1061 (
unsigned long)(uip_ntohs(UIP_ND6_RA_BUF->router_lifetime)));
1065 uip_ds6_defrt_rm(defrt);
1069 #if UIP_CONF_IPV6_QUEUE_PKT 1078 if(nbr != NULL && uip_packetqueue_buflen(&nbr->packethandle) != 0) {
1079 uip_len = uip_packetqueue_buflen(&nbr->packethandle);
1081 uip_packetqueue_free(&nbr->packethandle);
1095 UIP_ICMP6_HANDLER(ns_input_handler,
ICMP6_NS, UIP_ICMP6_HANDLER_CODE_ANY,
1099 UIP_ICMP6_HANDLER(na_input_handler,
ICMP6_NA, UIP_ICMP6_HANDLER_CODE_ANY,
1103 #if UIP_CONF_ROUTER && UIP_ND6_SEND_RA 1104 UIP_ICMP6_HANDLER(rs_input_handler,
ICMP6_RS, UIP_ICMP6_HANDLER_CODE_ANY,
1108 #if !UIP_CONF_ROUTER 1109 UIP_ICMP6_HANDLER(ra_input_handler,
ICMP6_RA, UIP_ICMP6_HANDLER_CODE_ANY,
1127 #if UIP_CONF_ROUTER && UIP_ND6_SEND_RA 1132 #if !UIP_CONF_ROUTER static uip_ipaddr_t ipaddr
Pointer to prefix information option in uip_buf.
#define UIP_IP_BUF
Direct access to IPv6 header.
An entry in the default router list.
uip_lladdr_t uip_lladdr
Host L2 address.
Header file for ICMPv6 message and error handing (RFC 4443)
#define UIP_ND6_OPT_LLAO_LEN
length of a ND6 LLAO option for default L2 type (e.g.
static uip_ds6_nbr_t * nbr
Pointer to llao option in uip_buf.
unsigned long stimer_remaining(struct stimer *t)
The time until the timer expires.
uint16_t uip_len
The length of the packet in the uip_buf buffer.
static uip_ds6_addr_t * addr
Pointer to a nbr cache entry.
void ra_input(void)
Process a Router Advertisement.
#define UIP_ICMP_BUF
Direct access to ICMP, UDP, and TCP headers and payload, with implicit ext header offset (global uip_...
uint32_t uip_nameserver_next_expiration(void)
Get next expiration time.
#define UIP_NAMESERVER_INFINITE_LIFETIME
Infinite Lifetime indicator.
void uip_nd6_init()
Initialise the uIP ND core.
void uip_ds6_set_addr_iid(uip_ipaddr_t *ipaddr, uip_lladdr_t *lladdr)
set the last 64 bits of an IP address based on the MAC address
static int extract_lladdr_from_llao_aligned(uip_lladdr_t *dest)
Pointer to a prefix list entry.
unsigned long clock_seconds(void)
Get the current value of the platform seconds.
uip_ds6_prefix_t uip_ds6_prefix_list[UIP_DS6_PREFIX_NB]
Prefix list.
uint16_t uip_htons(uint16_t val)
Convert a 16-bit quantity from host byte order to network byte order.
Header file for IPv6-related data structures.
int uip_ds6_dad_failed(uip_ds6_addr_t *addr)
Callback when DAD failed.
#define ICMP6_RA
Router Advertisement.
#define UIP_LLADDR_LEN
802.15.4 address
void uip_nd6_ns_output(const uip_ipaddr_t *src, const uip_ipaddr_t *dest, uip_ipaddr_t *tgt)
Send a neighbor solicitation, send a Neighbor Advertisement.
void stimer_set(struct stimer *t, unsigned long interval)
Set a timer.
void uip_nameserver_update(const uip_ipaddr_t *nameserver, uint32_t lifetime)
Initialize the module variables.
static uint8_t * nd6_opt_llao
Offset from the end of the icmpv6 header to the option in uip_buf.
#define uip_create_linklocal_allnodes_mcast(a)
set IP address a to the link local all-nodes multicast address
uip_ds6_nbr_t * uip_ds6_nbr_lookup(const uip_ipaddr_t *ipaddr)
Get the neighbor cache associated with a specified IPv6 address.
#define UIP_ND6_INFINITE_LIFETIME
INFINITE lifetime.
uIP Name Server interface
#define uip_is_addr_unspecified(a)
Is IPv6 address a the unspecified address a is of type uip_ipaddr_t.
#define uip_buf
Macro to access uip_aligned_buf as an array of bytes.
Unicast address structure.
#define uip_ipaddr_copy(dest, src)
Copy an IP address from one place to another.
#define uip_is_addr_solicited_node(a)
is addr (a) a solicited node multicast address, see RFC 4291 a is of type uip_ipaddr_t* ...
#define ICMP6_NS
Neighbor Solicitation.
#define UIP_STAT(s)
The uIP TCP/IP statistics.
#define uip_create_linklocal_allrouters_mcast(a)
set IP address a to the link local all-routers multicast address
#define ADDR_TENTATIVE
Possible states for the an address (RFC 4862)
ND option prefix information.
uip_ds6_addr_t * uip_ds6_addr_add(uip_ipaddr_t *ipaddr, unsigned long vlifetime, uint8_t type)
Add a unicast address to the interface.
#define NBR_INCOMPLETE
Possible states for the nbr cache entries.
#define uip_is_addr_mcast(a)
is address a multicast address, see RFC 4291 a is of type uip_ipaddr_t*
static uip_nd6_opt_prefix_info * nd6_opt_prefix_info
Pointer to a router list entry.
#define ICMP6_RS
Router Solicitation.
#define uip_create_unspecified(a)
set IP address a to unspecified
#define ICMP6_NA
Neighbor advertisement.
uip_ds6_nbr_t * uip_ds6_nbr_add(const uip_ipaddr_t *ipaddr, const uip_lladdr_t *lladdr, uint8_t isrouter, uint8_t state, nbr_table_reason_t reason, void *data)
Add a neighbor cache for a specified IPv6 address, which is associated with a specified link-layer ad...
Header file for IPv6 Neighbor discovery (RFC 4861)
uip_ds6_netif_t uip_ds6_if
The single interface.
uint16_t uip_icmp6chksum(void)
Calculate the ICMP checksum of the packet in uip_buf.
#define UIP_ND6_HOP_LIMIT
HOP LIMIT to be used when sending ND messages (255)
int uip_ds6_nbr_update_ll(uip_ds6_nbr_t **nbr_pp, const uip_lladdr_t *new_ll_addr)
Update the link-layer address associated with an IPv6 address.
int uip_ds6_nbr_rm(uip_ds6_nbr_t *nbr)
Remove a neighbor cache.
void uip_icmp6_register_input_handler(uip_icmp6_input_handler_t *handler)
Register a handler which can handle a specific ICMPv6 message type.
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.
#define uip_is_addr_linklocal(a)
is addr (a) a link local unicast address, see RFC 4291 i.e.
static uip_ds6_defrt_t * defrt
Pointer to an interface address.
Header file for the logging system
uint16_t uip_nameserver_count(void)
Get the number of recorded name servers.
void uip_nd6_rs_output(void)
Neighbor Solicitation Processing.
uip_ipaddr_t * uip_nameserver_get(uint8_t num)
Get a Nameserver ip address given in RA.
#define uip_create_solicited_node(a, b)
put in b the solicited node address corresponding to address a both a and b are of type uip_ipaddr_t*...
void uip_ds6_select_src(uip_ipaddr_t *src, uip_ipaddr_t *dst)
Source address selection, see RFC 3484.
uint32_t uip_ds6_compute_reachable_time(void)
Compute the reachable time based on base reachable time, see RFC 4861.
The default nbr_table entry (when UIP_DS6_NBR_MULTI_IPV6_ADDRS is disabled), that implements nbr cach...