2017-08-08 20:40:48 +08:00
|
|
|
/****************************************************************************
|
|
|
|
* net/inet/inet_globals.c
|
|
|
|
*
|
2021-02-19 19:45:37 +08:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the
|
|
|
|
* License. You may obtain a copy of the License at
|
2017-08-08 20:40:48 +08:00
|
|
|
*
|
2021-02-19 19:45:37 +08:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2017-08-08 20:40:48 +08:00
|
|
|
*
|
2021-02-19 19:45:37 +08:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
2017-08-08 20:40:48 +08:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
|
|
|
|
#include <nuttx/net/ip.h>
|
|
|
|
|
2017-08-10 08:08:28 +08:00
|
|
|
#ifdef CONFIG_NET_ETHERNET
|
|
|
|
# include <net/ethernet.h>
|
|
|
|
#endif
|
|
|
|
|
2017-08-08 20:40:48 +08:00
|
|
|
#include "inet/inet.h"
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Data
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifdef CONFIG_NET_IPv4
|
|
|
|
/* Increasing number used for the IP ID field. */
|
|
|
|
|
|
|
|
uint16_t g_ipid;
|
|
|
|
#endif /* CONFIG_NET_IPv4 */
|
|
|
|
|
|
|
|
#ifdef CONFIG_NET_IPv6
|
|
|
|
|
2018-06-24 02:53:27 +08:00
|
|
|
/* Unspecified address (all zero). See RFC 4291 (replaces 3513) */
|
|
|
|
|
|
|
|
const net_ipv6addr_t g_ipv6_unspecaddr = /* An address of all zeroes */
|
2017-08-08 20:40:48 +08:00
|
|
|
{
|
|
|
|
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000
|
|
|
|
};
|
|
|
|
|
2018-06-24 02:53:27 +08:00
|
|
|
/* IPv6 Multi-cast IP addresses. See RFC 2375 */
|
2017-08-08 20:40:48 +08:00
|
|
|
|
|
|
|
const net_ipv6addr_t g_ipv6_allnodes = /* All link local nodes */
|
|
|
|
{
|
|
|
|
HTONS(0xff02),
|
|
|
|
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
|
|
|
HTONS(0x0001)
|
|
|
|
};
|
|
|
|
|
Squashed commit of the following:
net/mld: The MLD logic now compiles and is much less toxic. It still is not a proper MLD implementation: (1) It is basically a port of IGMP, tweaked to work with IPv6 and ICMPv6 MLD messages, (2) it needs a proper analysis and comparison with RFC 3810, and (3) it is completely untested. For this reason, it will remain EXPERIMENTAL for some time.
net/mld: Add some missing macros, more fixes related to IPv6 vs IPv4 types,
net/mld: More compilation cleaning. Most fixups for IPv6 vs IPv4 types.
net/mld: Hook crudely converted .c files into build system and resolve a few of the many, many compilation/design problems.
net/mld: Add support for MLD statistics.
net/mld: Hook in MLD poll and packet transmission logic.
net/mld: Change references to IPv4 definitions to IPv6 definitions; Remove mld_input() since MLD piggybacks on ICMPv6 input. Add functions to catch MLD messages dispatched by ICMPv6 input logic.
net/mld: As a starting point, copy all net/igmp/*.c files to net/mld/. and change all occurrences of igmp (or IGMP) to mld (or MLD).
net/mld: More compilation cleaning. Most fixups for IPv6 vs IPv4 types.
net/mld: Hook crudely converted .c files into build system and resolve a few of the many, many compilation/design problems.
net/mld: Add support for MLD statistics.
net/mld: Hook in MLD poll and packet transmission logic.
net/mld: Change references to IPv4 definitions to IPv6 definitions; Remove mld_input() since MLD piggybacks on ICMPv6 input. Add functions to catch MLD messages dispatched by ICMPv6 input logic.
net/mld: As a starting point, copy all net/igmp/*.c files to net/mld/. and change all occurrences of igmp (or IGMP) to mld (or MLD).
2018-11-02 05:18:40 +08:00
|
|
|
#if defined(CONFIG_NET_ICMPv6_AUTOCONF) || defined(CONFIG_NET_ICMPv6_ROUTER) || \
|
|
|
|
defined(CONFIG_NET_MLD)
|
2017-08-08 20:40:48 +08:00
|
|
|
const net_ipv6addr_t g_ipv6_allrouters = /* All link local routers */
|
|
|
|
{
|
|
|
|
HTONS(0xff02),
|
|
|
|
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
|
|
|
HTONS(0x0002)
|
|
|
|
};
|
|
|
|
|
|
|
|
#ifdef CONFIG_NET_ICMPv6_AUTOCONF
|
|
|
|
/* Link-Local Address: Link-local addresses have "1111 1110 10" for the
|
|
|
|
* first ten bits followed by 54 zeroes and then the 64 bit interface
|
2018-10-20 20:35:39 +08:00
|
|
|
* identifier (typically derived from the link layer MAC address).
|
2017-08-08 20:40:48 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
const net_ipv6addr_t g_ipv6_llnetmask = /* Netmask for local link address */
|
|
|
|
{
|
|
|
|
0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000
|
|
|
|
};
|
|
|
|
#endif /* CONFIG_NET_ICMPv6_AUTOCONF */
|
|
|
|
|
2018-11-05 04:07:27 +08:00
|
|
|
#ifdef CONFIG_NET_MLD
|
|
|
|
/* Version 2 Multicast Listener Reports are sent with an IP destination
|
2018-11-10 23:43:44 +08:00
|
|
|
* address of FF02:0:0:0:0:0:0:16 on which all MLDv2-capable multicast
|
2018-11-05 04:07:27 +08:00
|
|
|
* routers listen (RFC 3810)
|
|
|
|
*/
|
|
|
|
|
|
|
|
const net_ipv6addr_t g_ipv6_allmldv2routers = /* All MLDv2 link local routers */
|
|
|
|
{
|
|
|
|
HTONS(0xff02),
|
|
|
|
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
|
|
|
HTONS(0x0016)
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2017-08-08 20:40:48 +08:00
|
|
|
#ifdef CONFIG_NET_ETHERNET
|
|
|
|
|
|
|
|
/* IPv6 Multi-cast Ethernet addresses. Formed from the 16-bit prefix:
|
|
|
|
*
|
|
|
|
* 0x33:0x33:xx:xx:xx:xx:
|
|
|
|
*
|
|
|
|
* and the last 32-bits of the IPv6 IP address
|
|
|
|
*/
|
|
|
|
|
|
|
|
const struct ether_addr g_ipv6_ethallnodes = /* All link local nodes */
|
|
|
|
{
|
|
|
|
{ 0x33, 0x33, 0x00, 0x00, 0x00, 0x01 }
|
|
|
|
};
|
|
|
|
|
|
|
|
const struct ether_addr g_ipv6_ethallrouters = /* All link local routers */
|
|
|
|
{
|
|
|
|
{ 0x33, 0x33, 0x00, 0x00, 0x00, 0x02 }
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* CONFIG_NET_ETHERNET */
|
Squashed commit of the following:
net/mld: The MLD logic now compiles and is much less toxic. It still is not a proper MLD implementation: (1) It is basically a port of IGMP, tweaked to work with IPv6 and ICMPv6 MLD messages, (2) it needs a proper analysis and comparison with RFC 3810, and (3) it is completely untested. For this reason, it will remain EXPERIMENTAL for some time.
net/mld: Add some missing macros, more fixes related to IPv6 vs IPv4 types,
net/mld: More compilation cleaning. Most fixups for IPv6 vs IPv4 types.
net/mld: Hook crudely converted .c files into build system and resolve a few of the many, many compilation/design problems.
net/mld: Add support for MLD statistics.
net/mld: Hook in MLD poll and packet transmission logic.
net/mld: Change references to IPv4 definitions to IPv6 definitions; Remove mld_input() since MLD piggybacks on ICMPv6 input. Add functions to catch MLD messages dispatched by ICMPv6 input logic.
net/mld: As a starting point, copy all net/igmp/*.c files to net/mld/. and change all occurrences of igmp (or IGMP) to mld (or MLD).
net/mld: More compilation cleaning. Most fixups for IPv6 vs IPv4 types.
net/mld: Hook crudely converted .c files into build system and resolve a few of the many, many compilation/design problems.
net/mld: Add support for MLD statistics.
net/mld: Hook in MLD poll and packet transmission logic.
net/mld: Change references to IPv4 definitions to IPv6 definitions; Remove mld_input() since MLD piggybacks on ICMPv6 input. Add functions to catch MLD messages dispatched by ICMPv6 input logic.
net/mld: As a starting point, copy all net/igmp/*.c files to net/mld/. and change all occurrences of igmp (or IGMP) to mld (or MLD).
2018-11-02 05:18:40 +08:00
|
|
|
#endif /* CONFIG_NET_ICMPv6_AUTOCONF || CONFIG_NET_ICMPv6_ROUTER || CONFIG_NET_MLD */
|
2017-08-08 20:40:48 +08:00
|
|
|
#endif /* CONFIG_NET_IPv6 */
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|