2011-03-18 20:46:25 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* apps/nshlib/nsh_netinit.c
|
|
|
|
*
|
2014-06-27 20:46:54 +02:00
|
|
|
* Copyright (C) 2010-2012, 2014 Gregory Nutt. All rights reserved.
|
2012-02-02 17:04:09 +01:00
|
|
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
2011-03-18 20:46:25 +01:00
|
|
|
*
|
|
|
|
* This is influenced by similar logic from uIP:
|
|
|
|
*
|
|
|
|
* Author: Adam Dunkels <adam@sics.se>
|
|
|
|
* Copyright (c) 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. Neither the name of the Institute 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 INSTITUTE 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 INSTITUTE 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>
|
|
|
|
|
|
|
|
#include <debug.h>
|
|
|
|
|
|
|
|
#include <net/if.h>
|
2014-07-05 03:13:08 +02:00
|
|
|
#include <arpa/inet.h>
|
|
|
|
#include <netinet/in.h>
|
2011-03-19 18:29:36 +01:00
|
|
|
|
2014-07-03 00:04:25 +02:00
|
|
|
#include <apps/netutils/netlib.h>
|
2012-11-03 01:00:56 +01:00
|
|
|
#if defined(CONFIG_NSH_DHCPC) || defined(CONFIG_NSH_DNS)
|
2014-04-11 20:41:13 +02:00
|
|
|
# include <apps/netutils/dnsclient.h>
|
2011-03-19 18:29:36 +01:00
|
|
|
# include <apps/netutils/dhcpc.h>
|
2011-03-18 20:46:25 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "nsh.h"
|
|
|
|
|
|
|
|
#ifdef CONFIG_NET
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Definitions
|
|
|
|
****************************************************************************/
|
|
|
|
|
2012-10-28 14:20:36 +01:00
|
|
|
#if defined(CONFIG_NSH_DRIPADDR) && !defined(CONFIG_NSH_DNSIPADDR)
|
|
|
|
# define CONFIG_NSH_DNSIPADDR CONFIG_NSH_DRIPADDR
|
|
|
|
#endif
|
|
|
|
|
2014-06-27 20:46:54 +02:00
|
|
|
/* SLIP-specific configuration
|
|
|
|
*
|
|
|
|
* REVISIT: How will we handle Ethernet and SLIP networks together? In the
|
|
|
|
* future, NSH will need to be extended to handle multiple networks with
|
|
|
|
* mixed transports.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef CONFIG_NET_SLIP
|
|
|
|
# define NET_DEVNAME "sl0"
|
|
|
|
# ifndef CONFIG_NSH_NOMAC
|
|
|
|
# error "CONFIG_NSH_NOMAC must be defined for SLIP"
|
|
|
|
# endif
|
|
|
|
#else
|
|
|
|
# define NET_DEVNAME "eth0"
|
|
|
|
#endif
|
|
|
|
|
2011-03-18 20:46:25 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* Private Types
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Function Prototypes
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: nsh_netinit
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Initialize the network per the selected NuttX configuration
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
int nsh_netinit(void)
|
|
|
|
{
|
|
|
|
struct in_addr addr;
|
2011-03-18 21:35:31 +01:00
|
|
|
#if defined(CONFIG_NSH_DHCPC)
|
2011-03-18 20:46:25 +01:00
|
|
|
FAR void *handle;
|
|
|
|
#endif
|
2014-06-27 20:46:54 +02:00
|
|
|
#if (defined(CONFIG_NSH_DHCPC) || defined(CONFIG_NSH_NOMAC)) && !defined(CONFIG_NET_SLIP)
|
2011-03-18 20:46:25 +01:00
|
|
|
uint8_t mac[IFHWADDRLEN];
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Many embedded network interfaces must have a software assigned MAC */
|
|
|
|
|
2014-06-27 20:46:54 +02:00
|
|
|
#if defined(CONFIG_NSH_NOMAC) && !defined(CONFIG_NET_SLIP)
|
2011-03-18 20:46:25 +01:00
|
|
|
mac[0] = 0x00;
|
|
|
|
mac[1] = 0xe0;
|
2012-07-20 00:32:19 +02:00
|
|
|
mac[2] = 0xde;
|
|
|
|
mac[3] = 0xad;
|
|
|
|
mac[4] = 0xbe;
|
|
|
|
mac[5] = 0xef;
|
2014-07-03 00:52:02 +02:00
|
|
|
netlib_setmacaddr(NET_DEVNAME, mac);
|
2011-03-18 20:46:25 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Set up our host address */
|
|
|
|
|
2011-03-18 21:35:31 +01:00
|
|
|
#if !defined(CONFIG_NSH_DHCPC)
|
|
|
|
addr.s_addr = HTONL(CONFIG_NSH_IPADDR);
|
2011-03-18 20:46:25 +01:00
|
|
|
#else
|
|
|
|
addr.s_addr = 0;
|
|
|
|
#endif
|
2014-07-03 00:52:02 +02:00
|
|
|
netlib_sethostaddr(NET_DEVNAME, &addr);
|
2011-03-18 20:46:25 +01:00
|
|
|
|
|
|
|
/* Set up the default router address */
|
|
|
|
|
2011-03-18 21:35:31 +01:00
|
|
|
addr.s_addr = HTONL(CONFIG_NSH_DRIPADDR);
|
2014-07-03 00:52:02 +02:00
|
|
|
netlib_setdraddr(NET_DEVNAME, &addr);
|
2011-03-18 20:46:25 +01:00
|
|
|
|
|
|
|
/* Setup the subnet mask */
|
|
|
|
|
2011-03-18 21:35:31 +01:00
|
|
|
addr.s_addr = HTONL(CONFIG_NSH_NETMASK);
|
2014-07-03 00:52:02 +02:00
|
|
|
netlib_setnetmask(NET_DEVNAME, &addr);
|
2011-03-18 20:46:25 +01:00
|
|
|
|
2012-10-28 14:20:36 +01:00
|
|
|
#if defined(CONFIG_NSH_DHCPC) || defined(CONFIG_NSH_DNS)
|
2011-03-18 20:46:25 +01:00
|
|
|
/* Set up the resolver */
|
|
|
|
|
2014-04-11 20:25:32 +02:00
|
|
|
dns_bind();
|
2012-10-28 14:20:36 +01:00
|
|
|
#if defined(CONFIG_NSH_DNS)
|
|
|
|
addr.s_addr = HTONL(CONFIG_NSH_DNSIPADDR);
|
2014-04-11 20:25:32 +02:00
|
|
|
dns_setserver(&addr);
|
2012-10-28 14:20:36 +01:00
|
|
|
#endif
|
2011-03-18 20:46:25 +01:00
|
|
|
#endif
|
|
|
|
|
2011-03-18 21:35:31 +01:00
|
|
|
#if defined(CONFIG_NSH_DHCPC)
|
2011-03-18 20:46:25 +01:00
|
|
|
/* Get the MAC address of the NIC */
|
|
|
|
|
2014-07-03 00:52:02 +02:00
|
|
|
netlib_getmacaddr(NET_DEVNAME, mac);
|
2011-03-18 20:46:25 +01:00
|
|
|
|
|
|
|
/* Set up the DHCPC modules */
|
|
|
|
|
|
|
|
handle = dhcpc_open(&mac, IFHWADDRLEN);
|
|
|
|
|
|
|
|
/* Get an IP address. Note that there is no logic for renewing the IP address in this
|
|
|
|
* example. The address should be renewed in ds.lease_time/2 seconds.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (handle)
|
|
|
|
{
|
|
|
|
struct dhcpc_state ds;
|
|
|
|
(void)dhcpc_request(handle, &ds);
|
2014-07-03 00:52:02 +02:00
|
|
|
netlib_sethostaddr(NET_DEVNAME, &ds.ipaddr);
|
2014-06-27 20:46:54 +02:00
|
|
|
|
2011-03-18 20:46:25 +01:00
|
|
|
if (ds.netmask.s_addr != 0)
|
|
|
|
{
|
2014-07-03 00:52:02 +02:00
|
|
|
netlib_setnetmask(NET_DEVNAME, &ds.netmask);
|
2011-03-18 20:46:25 +01:00
|
|
|
}
|
2014-06-27 20:46:54 +02:00
|
|
|
|
2011-03-18 20:46:25 +01:00
|
|
|
if (ds.default_router.s_addr != 0)
|
|
|
|
{
|
2014-07-03 00:52:02 +02:00
|
|
|
netlib_setdraddr(NET_DEVNAME, &ds.default_router);
|
2011-03-18 20:46:25 +01:00
|
|
|
}
|
2014-06-27 20:46:54 +02:00
|
|
|
|
2011-03-18 20:46:25 +01:00
|
|
|
if (ds.dnsaddr.s_addr != 0)
|
|
|
|
{
|
2014-04-11 20:25:32 +02:00
|
|
|
dns_setserver(&ds.dnsaddr);
|
2011-03-18 20:46:25 +01:00
|
|
|
}
|
2014-06-27 20:46:54 +02:00
|
|
|
|
2011-03-18 20:46:25 +01:00
|
|
|
dhcpc_close(handle);
|
|
|
|
}
|
|
|
|
#endif
|
2012-09-17 20:18:44 +02:00
|
|
|
|
2011-03-18 20:46:25 +01:00
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* CONFIG_NET */
|