2014-06-26 22:36:24 +02:00
|
|
|
/****************************************************************************
|
2017-03-28 17:32:52 +02:00
|
|
|
* net/net_initialize.c
|
2014-06-26 22:36:24 +02:00
|
|
|
*
|
2018-03-31 22:55:03 +02:00
|
|
|
* Copyright (C) 2007-2009, 2011-2015, 2017-2018 Gregory Nutt. All rights
|
|
|
|
* reserved.
|
2014-06-26 22:36:24 +02:00
|
|
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
|
|
|
*
|
|
|
|
* 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 NuttX 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 COPYRIGHT HOLDERS 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
|
|
|
|
* COPYRIGHT OWNER 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.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
#ifdef CONFIG_NET
|
|
|
|
|
|
|
|
#include <debug.h>
|
|
|
|
|
|
|
|
#include <nuttx/net/net.h>
|
|
|
|
|
2014-06-29 01:25:18 +02:00
|
|
|
#include "socket/socket.h"
|
2014-06-29 02:07:02 +02:00
|
|
|
#include "devif/devif.h"
|
2014-06-27 17:56:45 +02:00
|
|
|
#include "netdev/netdev.h"
|
2017-07-08 02:45:58 +02:00
|
|
|
#include "ipforward/ipforward.h"
|
2017-03-28 17:32:52 +02:00
|
|
|
#include "sixlowpan/sixlowpan.h"
|
2017-10-23 16:45:12 +02:00
|
|
|
#include "icmp/icmp.h"
|
2017-10-24 19:23:08 +02:00
|
|
|
#include "icmpv6/icmpv6.h"
|
2018-10-31 21:10:19 +01:00
|
|
|
#include "mld/mld.h"
|
2014-06-26 22:36:24 +02:00
|
|
|
#include "tcp/tcp.h"
|
|
|
|
#include "udp/udp.h"
|
|
|
|
#include "pkt/pkt.h"
|
2018-03-31 22:55:03 +02:00
|
|
|
#include "bluetooth/bluetooth.h"
|
2017-08-19 16:48:52 +02:00
|
|
|
#include "ieee802154/ieee802154.h"
|
2015-01-24 22:19:50 +01:00
|
|
|
#include "local/local.h"
|
2018-08-03 21:22:36 +02:00
|
|
|
#include "netlink/netlink.h"
|
2014-06-26 22:36:24 +02:00
|
|
|
#include "igmp/igmp.h"
|
|
|
|
#include "route/route.h"
|
2017-03-31 16:58:14 +02:00
|
|
|
#include "usrsock/usrsock.h"
|
2014-07-05 00:38:51 +02:00
|
|
|
#include "utils/utils.h"
|
2014-06-26 22:36:24 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
2014-08-16 18:24:06 +02:00
|
|
|
/****************************************************************************
|
2018-11-09 20:54:55 +01:00
|
|
|
* Name: net_initialize
|
2014-08-16 18:24:06 +02:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* This is called from the OS initialization logic at power-up reset in
|
2015-02-14 13:36:53 +01:00
|
|
|
* order to configure networking data structures. This is called prior
|
|
|
|
* to platform-specific driver initialization so that the networking
|
|
|
|
* subsystem is prepared to deal with network driver initialization
|
|
|
|
* actions.
|
|
|
|
*
|
|
|
|
* Actions performed in this initialization phase assume that base OS
|
|
|
|
* facilities such as semaphores are available but this logic cannot
|
|
|
|
* depend upon OS resources such as interrupts or timers which are not
|
|
|
|
* yet available.
|
2014-08-16 18:24:06 +02:00
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
2014-06-26 22:36:24 +02:00
|
|
|
|
2018-11-09 20:54:55 +01:00
|
|
|
void net_initialize(void)
|
2014-06-26 22:36:24 +02:00
|
|
|
{
|
|
|
|
/* Initialize the locking facility */
|
|
|
|
|
|
|
|
net_lockinitialize();
|
|
|
|
|
2015-01-20 19:31:56 +01:00
|
|
|
#ifdef CONFIG_NET_IPv6
|
2018-10-31 21:10:19 +01:00
|
|
|
#ifdef CONFIG_NET_MLD
|
|
|
|
/* Initialize ICMPv6 Multicast Listener Discovery (MLD) logic */
|
|
|
|
|
|
|
|
mld_initialize();
|
|
|
|
#endif
|
|
|
|
|
2017-03-28 17:32:52 +02:00
|
|
|
#ifdef CONFIG_NET_6LOWPAN
|
2017-06-19 00:00:08 +02:00
|
|
|
/* Initialize 6LoWPAN data structures */
|
2017-03-28 17:32:52 +02:00
|
|
|
|
|
|
|
sixlowpan_initialize();
|
2015-01-20 19:31:56 +01:00
|
|
|
#endif
|
2017-03-28 17:32:52 +02:00
|
|
|
#endif /* CONFIG_NET_IPv6 */
|
2014-06-26 22:36:24 +02:00
|
|
|
|
|
|
|
/* Initialize the device interface layer */
|
|
|
|
|
2014-06-29 02:07:02 +02:00
|
|
|
devif_initialize();
|
2014-06-26 22:36:24 +02:00
|
|
|
|
2017-07-08 02:33:06 +02:00
|
|
|
#ifdef HAVE_FWDALLOC
|
|
|
|
/* Initialize IP forwarding support */
|
|
|
|
|
2017-07-08 02:45:58 +02:00
|
|
|
ipfwd_initialize();
|
2017-07-08 02:33:06 +02:00
|
|
|
#endif
|
|
|
|
|
2014-06-26 22:36:24 +02:00
|
|
|
#ifdef CONFIG_NET_PKT
|
|
|
|
/* Initialize packet socket support */
|
|
|
|
|
|
|
|
pkt_initialize();
|
|
|
|
#endif
|
|
|
|
|
2017-10-23 16:45:12 +02:00
|
|
|
#ifdef CONFIG_NET_ICMP_SOCKET
|
|
|
|
/* Initialize IPPPROTO_ICMP socket support */
|
|
|
|
|
|
|
|
icmp_sock_initialize();
|
|
|
|
#endif
|
|
|
|
|
2017-10-24 19:23:08 +02:00
|
|
|
#ifdef CONFIG_NET_ICMPv6_SOCKET
|
|
|
|
/* Initialize IPPPROTO_ICMP6 socket support */
|
|
|
|
|
|
|
|
icmpv6_sock_initialize();
|
|
|
|
#endif
|
|
|
|
|
2018-03-31 22:55:03 +02:00
|
|
|
#ifdef CONFIG_NET_BLUETOOTH
|
|
|
|
/* Initialize Bluetooth socket support */
|
|
|
|
|
|
|
|
bluetooth_initialize();
|
|
|
|
#endif
|
|
|
|
|
2017-08-19 16:48:52 +02:00
|
|
|
#ifdef CONFIG_NET_IEEE802154
|
|
|
|
/* Initialize IEEE 802.15.4 socket support */
|
|
|
|
|
|
|
|
ieee802154_initialize();
|
|
|
|
#endif
|
|
|
|
|
2015-01-28 18:48:23 +01:00
|
|
|
#ifdef CONFIG_NET_LOCAL
|
2015-01-24 22:19:50 +01:00
|
|
|
/* Initialize the local, "Unix domain" socket support */
|
|
|
|
|
|
|
|
local_initialize();
|
|
|
|
#endif
|
|
|
|
|
2018-08-03 21:22:36 +02:00
|
|
|
#ifdef CONFIG_NET_NETLINK
|
|
|
|
/* Initialize the Netlink IPC support */
|
|
|
|
|
|
|
|
netlink_initialize();
|
|
|
|
#endif
|
|
|
|
|
2017-03-31 16:58:14 +02:00
|
|
|
#ifdef NET_TCP_HAVE_STACK
|
2014-06-26 22:36:24 +02:00
|
|
|
/* Initialize the listening port structures */
|
|
|
|
|
2014-07-06 20:34:27 +02:00
|
|
|
tcp_listen_initialize();
|
2014-06-26 22:36:24 +02:00
|
|
|
|
|
|
|
/* Initialize the TCP/IP connection structures */
|
|
|
|
|
|
|
|
tcp_initialize();
|
|
|
|
|
|
|
|
/* Initialize the TCP/IP write buffering */
|
|
|
|
|
|
|
|
#ifdef CONFIG_NET_TCP_WRITE_BUFFERS
|
|
|
|
tcp_wrbuffer_initialize();
|
|
|
|
#endif
|
|
|
|
#endif /* CONFIG_NET_TCP */
|
|
|
|
|
2017-03-31 16:58:14 +02:00
|
|
|
#ifdef NET_UDP_HAVE_STACK
|
2014-06-26 22:36:24 +02:00
|
|
|
/* Initialize the UDP connection structures */
|
|
|
|
|
|
|
|
udp_initialize();
|
2018-01-23 01:32:02 +01:00
|
|
|
|
|
|
|
#ifdef CONFIG_NET_UDP_WRITE_BUFFERS
|
|
|
|
udp_wrbuffer_initialize();
|
|
|
|
#endif
|
2014-06-26 22:36:24 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_NET_IGMP
|
|
|
|
/* Initialize IGMP support */
|
|
|
|
|
|
|
|
igmp_initialize();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_NET_ROUTE
|
|
|
|
/* Initialize the routing table */
|
|
|
|
|
Addes support for read-only routing tables. Prior to this change, routing tables were only support in RAM and had to be initialized with explicit logic to add the necessary routes to the routing table. With this change, routes may be defined in the pre-initialized, read-only routing table provided by the board-specific logic
This would be particularly useful, for example, in the case where there is only a single network adaptor and you want all output packets to go to the single adaptor in all cases. So for that behavior you could add a read-only routing table to the board-specific long that contains a single entry, the default route: 0.0.0.0/0.
Squashed commit of the following:
net/route: RAM and ROM routing tables build correctly in all IPv4 and IPv6 configurations.
net/route: Verify IPv6 ROM route build; Make number of ROM routes a variable, not a configuration item.
net/route: Add initial support for ROM-base, read-only routing tables.
net/route: Adjust and generalize some structures, rename some functions, and add configuration and build support that will eventually support read-only routing tables.
net/route: Some initial though experiments on use of a fixe, read-only routing table
2017-09-28 17:04:31 +02:00
|
|
|
net_init_route();
|
2014-06-26 22:36:24 +02:00
|
|
|
#endif
|
2017-03-31 16:58:14 +02:00
|
|
|
|
|
|
|
#ifdef CONFIG_NET_USRSOCK
|
|
|
|
/* Initialize the user-space socket API */
|
|
|
|
|
|
|
|
usrsock_initialize();
|
|
|
|
#endif
|
2015-02-14 13:36:53 +01:00
|
|
|
}
|
|
|
|
|
2014-06-26 22:36:24 +02:00
|
|
|
#endif /* CONFIG_NET */
|