2007-11-07 07:38:14 +08:00
|
|
|
/****************************************************************************
|
2008-12-13 02:57:05 +08:00
|
|
|
* net/uip/uip_initialize.c
|
2007-11-07 07:38:14 +08:00
|
|
|
*
|
2014-01-14 03:55:51 +08:00
|
|
|
* Copyright (C) 2007-2011, 2014 Gregory Nutt. All rights reserved.
|
2012-09-14 02:32:24 +08:00
|
|
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
2007-11-07 07:38:14 +08:00
|
|
|
*
|
|
|
|
* Adapted for NuttX from logic in uIP which also has a BSD-like license:
|
|
|
|
*
|
|
|
|
* Original author Adam Dunkels <adam@dunkels.com>
|
|
|
|
* Copyright () 2001-2003, Adam Dunkels.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* 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. The name of the author may not be used to endorse or promote
|
|
|
|
* products derived from this software without specific prior
|
|
|
|
* written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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
|
|
|
|
|
2009-12-15 22:53:45 +08:00
|
|
|
#include <stdint.h>
|
2014-06-25 00:14:15 +08:00
|
|
|
#include <nuttx/net/uip.h>
|
2007-11-07 07:38:14 +08:00
|
|
|
|
2014-06-25 08:55:01 +08:00
|
|
|
#include "uip/uip.h"
|
2014-06-22 05:23:39 +08:00
|
|
|
#include "tcp/tcp.h"
|
2014-06-25 08:55:01 +08:00
|
|
|
#include "udp/udp.h"
|
2014-06-26 00:34:52 +08:00
|
|
|
#include "pkt/pkt.h"
|
2014-06-25 23:52:36 +08:00
|
|
|
#include "igmp/igmp.h"
|
2007-11-07 07:38:14 +08:00
|
|
|
|
|
|
|
/****************************************************************************
|
2009-12-15 22:53:45 +08:00
|
|
|
* Pre-processor Definitions
|
2007-11-07 07:38:14 +08:00
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Variables
|
|
|
|
****************************************************************************/
|
|
|
|
|
2007-11-22 22:42:52 +08:00
|
|
|
/* IP/TCP/UDP/ICMP statistics for all network interfaces */
|
2007-11-08 02:54:35 +08:00
|
|
|
|
|
|
|
#ifdef CONFIG_NET_STATISTICS
|
|
|
|
struct uip_stats uip_stat;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Increasing number used for the IP ID field. */
|
|
|
|
|
2009-12-15 22:53:45 +08:00
|
|
|
uint16_t g_ipid;
|
2007-11-08 02:54:35 +08:00
|
|
|
|
2007-11-22 22:42:52 +08:00
|
|
|
const uip_ipaddr_t g_alloneaddr =
|
2007-11-08 02:54:35 +08:00
|
|
|
#ifdef CONFIG_NET_IPv6
|
2007-11-22 22:42:52 +08:00
|
|
|
{0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff};
|
|
|
|
#else
|
2007-12-01 07:15:06 +08:00
|
|
|
0xffffffff;
|
2007-11-22 22:42:52 +08:00
|
|
|
#endif
|
2007-11-08 02:54:35 +08:00
|
|
|
|
2007-11-22 22:42:52 +08:00
|
|
|
const uip_ipaddr_t g_allzeroaddr =
|
2007-11-08 02:54:35 +08:00
|
|
|
#ifdef CONFIG_NET_IPv6
|
2007-11-22 22:42:52 +08:00
|
|
|
{0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000};
|
2007-11-08 02:54:35 +08:00
|
|
|
#else
|
2007-12-01 07:15:06 +08:00
|
|
|
0x00000000;
|
2007-11-08 02:54:35 +08:00
|
|
|
#endif
|
|
|
|
|
2007-11-08 06:54:51 +08:00
|
|
|
/* Reassembly timer (units: deci-seconds) */
|
|
|
|
|
2007-11-08 02:54:35 +08:00
|
|
|
#if UIP_REASSEMBLY && !defined(CONFIG_NET_IPv6)
|
2009-12-15 22:53:45 +08:00
|
|
|
uint8_t uip_reasstmr;
|
2007-11-08 02:54:35 +08:00
|
|
|
#endif
|
|
|
|
|
2007-11-07 07:38:14 +08:00
|
|
|
/****************************************************************************
|
|
|
|
* Private Variables
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: uip_initialize
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Perform initialization of the uIP layer
|
|
|
|
*
|
|
|
|
* Parameters:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Return:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
void uip_initialize(void)
|
|
|
|
{
|
2011-03-16 04:26:34 +08:00
|
|
|
/* Initialize the locking facility */
|
|
|
|
|
|
|
|
uip_lockinit();
|
|
|
|
|
2008-09-01 21:59:54 +08:00
|
|
|
/* Initialize callback support */
|
|
|
|
|
|
|
|
uip_callbackinit();
|
|
|
|
|
2014-06-13 01:52:06 +08:00
|
|
|
/* Initialize packet socket suport */
|
|
|
|
|
|
|
|
#ifdef CONFIG_NET_PKT
|
2014-06-26 00:34:52 +08:00
|
|
|
pkt_initialize();
|
2014-06-13 01:52:06 +08:00
|
|
|
#endif
|
|
|
|
|
2007-11-07 07:38:14 +08:00
|
|
|
/* Initialize the listening port structures */
|
|
|
|
|
2007-11-23 02:36:46 +08:00
|
|
|
#ifdef CONFIG_NET_TCP
|
2014-06-25 08:12:49 +08:00
|
|
|
tcp_listeninit();
|
2007-11-07 07:38:14 +08:00
|
|
|
|
|
|
|
/* Initialize the TCP/IP connection structures */
|
|
|
|
|
2014-06-25 08:12:49 +08:00
|
|
|
tcp_initialize();
|
2007-11-07 07:38:14 +08:00
|
|
|
|
2014-01-14 07:11:01 +08:00
|
|
|
/* Initialize the TCP/IP write buffering */
|
|
|
|
|
|
|
|
#ifdef CONFIG_NET_TCP_WRITE_BUFFERS
|
2014-06-22 05:23:39 +08:00
|
|
|
tcp_wrbuffer_initialize();
|
2014-01-14 07:11:01 +08:00
|
|
|
#endif
|
2014-06-25 05:38:00 +08:00
|
|
|
#endif /* CONFIG_NET_TCP */
|
2014-01-14 07:11:01 +08:00
|
|
|
|
2007-11-07 07:38:14 +08:00
|
|
|
/* Initialize the UDP connection structures */
|
|
|
|
|
|
|
|
#ifdef CONFIG_NET_UDP
|
2014-06-25 08:55:01 +08:00
|
|
|
udp_initialize();
|
2007-11-07 07:38:14 +08:00
|
|
|
#endif
|
2010-07-08 08:59:51 +08:00
|
|
|
|
|
|
|
/* Initialize IGMP support */
|
|
|
|
|
|
|
|
#ifdef CONFIG_NET_IGMP
|
2014-06-25 23:52:36 +08:00
|
|
|
igmp_initialize();
|
2010-07-08 08:59:51 +08:00
|
|
|
#endif
|
2007-11-07 07:38:14 +08:00
|
|
|
}
|
|
|
|
#endif /* CONFIG_NET */
|