2003-03-25 12:59:42 +00:00
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* lwIP network interface abstraction
|
2007-08-09 22:21:44 +00:00
|
|
|
*
|
2003-03-25 12:59:42 +00:00
|
|
|
*/
|
|
|
|
|
2002-10-19 12:59:30 +00:00
|
|
|
/*
|
2004-02-07 00:30:03 +00:00
|
|
|
* Copyright (c) 2001-2004 Swedish Institute of Computer Science.
|
2003-06-09 21:08:55 +00:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without modification,
|
2002-10-19 12:59:30 +00:00
|
|
|
* 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
|
2003-06-09 21:08:55 +00:00
|
|
|
* derived from this software without specific prior written permission.
|
2002-10-19 12:59:30 +00:00
|
|
|
*
|
2003-06-09 21:08:55 +00:00
|
|
|
* 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
|
2002-10-19 12:59:30 +00:00
|
|
|
* OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* This file is part of the lwIP TCP/IP stack.
|
2003-06-09 21:08:55 +00:00
|
|
|
*
|
2002-10-19 12:59:30 +00:00
|
|
|
* Author: Adam Dunkels <adam@sics.se>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2003-02-21 16:43:46 +00:00
|
|
|
#include "lwip/opt.h"
|
2002-10-19 12:59:30 +00:00
|
|
|
|
|
|
|
#include "lwip/def.h"
|
2003-04-01 15:00:26 +00:00
|
|
|
#include "lwip/ip_addr.h"
|
2004-03-12 00:10:07 +00:00
|
|
|
#include "lwip/netif.h"
|
2003-04-09 15:17:57 +00:00
|
|
|
#include "lwip/tcp.h"
|
2006-07-14 09:58:02 +00:00
|
|
|
#include "lwip/snmp.h"
|
2007-08-29 21:12:32 +00:00
|
|
|
#include "lwip/igmp.h"
|
2007-03-28 09:23:35 +00:00
|
|
|
#include "netif/etharp.h"
|
|
|
|
|
2007-08-22 11:26:01 +00:00
|
|
|
#if LWIP_NETIF_STATUS_CALLBACK
|
2007-07-13 15:00:40 +00:00
|
|
|
#define NETIF_STATUS_CALLBACK(n) { if (n->status_callback) (n->status_callback)(n); }
|
|
|
|
#else
|
|
|
|
#define NETIF_STATUS_CALLBACK(n) { /* NOP */ }
|
2007-08-22 11:26:01 +00:00
|
|
|
#endif /* LWIP_NETIF_STATUS_CALLBACK */
|
2007-07-13 15:00:40 +00:00
|
|
|
|
|
|
|
#if LWIP_NETIF_LINK_CALLBACK
|
|
|
|
#define NETIF_LINK_CALLBACK(n) { if (n->link_callback) (n->link_callback)(n); }
|
|
|
|
#else
|
|
|
|
#define NETIF_LINK_CALLBACK(n) { /* NOP */ }
|
|
|
|
#endif /* LWIP_NETIF_LINK_CALLBACK */
|
2007-03-28 09:23:35 +00:00
|
|
|
|
2007-10-09 20:00:55 +00:00
|
|
|
struct netif *netif_list;
|
|
|
|
struct netif *netif_default;
|
2002-10-19 12:59:30 +00:00
|
|
|
|
2003-02-10 13:47:47 +00:00
|
|
|
/**
|
|
|
|
* Add a network interface to the list of lwIP netifs.
|
|
|
|
*
|
2004-03-04 16:19:53 +00:00
|
|
|
* @param netif a pre-allocated netif structure
|
2003-02-10 13:47:47 +00:00
|
|
|
* @param ipaddr IP address for the new netif
|
|
|
|
* @param netmask network mask for the new netif
|
|
|
|
* @param gw default gateway IP address for the new netif
|
2003-02-11 09:51:22 +00:00
|
|
|
* @param state opaque data passed to the new netif
|
|
|
|
* @param init callback function that initializes the interface
|
2004-03-04 16:19:53 +00:00
|
|
|
* @param input callback function that is called to pass
|
|
|
|
* ingress packets up in the protocol layer stack.
|
2003-02-10 13:47:47 +00:00
|
|
|
*
|
|
|
|
* @return netif, or NULL if failed.
|
|
|
|
*/
|
2002-10-19 12:59:30 +00:00
|
|
|
struct netif *
|
2003-12-28 02:38:51 +00:00
|
|
|
netif_add(struct netif *netif, struct ip_addr *ipaddr, struct ip_addr *netmask,
|
2003-04-15 14:32:13 +00:00
|
|
|
struct ip_addr *gw,
|
|
|
|
void *state,
|
|
|
|
err_t (* init)(struct netif *netif),
|
|
|
|
err_t (* input)(struct pbuf *p, struct netif *netif))
|
2002-10-19 12:59:30 +00:00
|
|
|
{
|
2007-03-26 17:19:12 +00:00
|
|
|
static u8_t netifnum = 0;
|
2006-11-28 13:12:15 +00:00
|
|
|
|
|
|
|
/* reset new interface configuration state */
|
|
|
|
netif->ip_addr.addr = 0;
|
|
|
|
netif->netmask.addr = 0;
|
|
|
|
netif->gw.addr = 0;
|
|
|
|
netif->flags = 0;
|
2003-03-24 14:30:18 +00:00
|
|
|
#if LWIP_DHCP
|
2003-03-24 13:06:16 +00:00
|
|
|
/* netif not under DHCP control by default */
|
|
|
|
netif->dhcp = NULL;
|
2007-06-09 16:57:04 +00:00
|
|
|
#endif /* LWIP_DHCP */
|
|
|
|
#if LWIP_AUTOIP
|
|
|
|
/* netif not under AutoIP control by default */
|
|
|
|
netif->autoip = NULL;
|
|
|
|
#endif /* LWIP_AUTOIP */
|
2007-08-22 11:26:01 +00:00
|
|
|
#if LWIP_NETIF_STATUS_CALLBACK
|
2007-03-21 13:24:20 +00:00
|
|
|
netif->status_callback = NULL;
|
2007-08-22 11:26:01 +00:00
|
|
|
#endif /* LWIP_NETIF_STATUS_CALLBACK */
|
2007-07-13 15:00:40 +00:00
|
|
|
#if LWIP_NETIF_LINK_CALLBACK
|
|
|
|
netif->link_callback = NULL;
|
|
|
|
#endif /* LWIP_NETIF_LINK_CALLBACK */
|
2007-09-03 14:53:18 +00:00
|
|
|
#if LWIP_IGMP
|
|
|
|
netif->igmp_mac_filter = NULL;
|
|
|
|
#endif /* LWIP_IGMP */
|
2007-03-21 13:24:20 +00:00
|
|
|
|
2003-03-13 08:50:04 +00:00
|
|
|
/* remember netif specific state information data */
|
2003-02-06 22:18:56 +00:00
|
|
|
netif->state = state;
|
2002-10-19 12:59:30 +00:00
|
|
|
netif->num = netifnum++;
|
|
|
|
netif->input = input;
|
2007-07-02 20:41:22 +00:00
|
|
|
#if LWIP_NETIF_HWADDRHINT
|
|
|
|
netif->addr_hint = NULL;
|
|
|
|
#endif /* LWIP_NETIF_HWADDRHINT*/
|
2002-10-19 12:59:30 +00:00
|
|
|
|
2003-03-07 10:55:58 +00:00
|
|
|
netif_set_addr(netif, ipaddr, netmask, gw);
|
2003-06-09 21:08:55 +00:00
|
|
|
|
2003-03-13 08:50:04 +00:00
|
|
|
/* call user specified initialization function for netif */
|
2003-02-20 11:51:53 +00:00
|
|
|
if (init(netif) != ERR_OK) {
|
2003-04-15 14:32:13 +00:00
|
|
|
return NULL;
|
2003-02-20 11:51:53 +00:00
|
|
|
}
|
2003-06-09 21:08:55 +00:00
|
|
|
|
2003-03-13 08:50:04 +00:00
|
|
|
/* add this netif to the list */
|
2002-10-19 12:59:30 +00:00
|
|
|
netif->next = netif_list;
|
|
|
|
netif_list = netif;
|
2006-09-01 07:14:50 +00:00
|
|
|
snmp_inc_iflist();
|
|
|
|
|
2007-08-29 21:12:32 +00:00
|
|
|
#if LWIP_IGMP
|
|
|
|
/* start IGMP processing */
|
2007-09-09 20:46:33 +00:00
|
|
|
if (netif->flags & NETIF_FLAG_IGMP) {
|
|
|
|
igmp_start( netif);
|
|
|
|
}
|
2007-08-29 21:12:32 +00:00
|
|
|
#endif /* LWIP_IGMP */
|
|
|
|
|
2003-06-10 10:45:29 +00:00
|
|
|
LWIP_DEBUGF(NETIF_DEBUG, ("netif: added interface %c%c IP addr ",
|
2003-04-15 14:32:13 +00:00
|
|
|
netif->name[0], netif->name[1]));
|
2003-06-11 22:11:42 +00:00
|
|
|
ip_addr_debug_print(NETIF_DEBUG, ipaddr);
|
2003-06-10 10:45:29 +00:00
|
|
|
LWIP_DEBUGF(NETIF_DEBUG, (" netmask "));
|
2003-06-11 22:11:42 +00:00
|
|
|
ip_addr_debug_print(NETIF_DEBUG, netmask);
|
|
|
|
LWIP_DEBUGF(NETIF_DEBUG, (" gw "));
|
|
|
|
ip_addr_debug_print(NETIF_DEBUG, gw);
|
2003-06-10 10:45:29 +00:00
|
|
|
LWIP_DEBUGF(NETIF_DEBUG, ("\n"));
|
2002-10-19 12:59:30 +00:00
|
|
|
return netif;
|
|
|
|
}
|
2003-03-07 10:55:58 +00:00
|
|
|
|
2007-06-07 21:29:44 +00:00
|
|
|
/**
|
|
|
|
* Change IP address configuration for a network interface (including netmask
|
|
|
|
* and default gateway).
|
|
|
|
*
|
|
|
|
* @param netif the network interface to change
|
|
|
|
* @param ipaddr the new IP address
|
|
|
|
* @param netmask the new netmask
|
|
|
|
* @param gw the new default gateway
|
|
|
|
*/
|
2003-03-07 10:55:58 +00:00
|
|
|
void
|
2007-06-07 21:29:44 +00:00
|
|
|
netif_set_addr(struct netif *netif, struct ip_addr *ipaddr, struct ip_addr *netmask,
|
2003-06-09 21:14:47 +00:00
|
|
|
struct ip_addr *gw)
|
2003-03-07 10:55:58 +00:00
|
|
|
{
|
|
|
|
netif_set_ipaddr(netif, ipaddr);
|
|
|
|
netif_set_netmask(netif, netmask);
|
|
|
|
netif_set_gw(netif, gw);
|
|
|
|
}
|
|
|
|
|
2007-06-07 21:29:44 +00:00
|
|
|
/**
|
|
|
|
* Remove a network interface from the list of lwIP netifs.
|
|
|
|
*
|
|
|
|
* @param netif the network interface to remove
|
|
|
|
*/
|
2003-02-06 22:18:56 +00:00
|
|
|
void netif_remove(struct netif * netif)
|
|
|
|
{
|
2003-06-09 21:08:55 +00:00
|
|
|
if ( netif == NULL ) return;
|
2003-04-15 14:32:13 +00:00
|
|
|
|
2007-09-09 20:46:33 +00:00
|
|
|
#if LWIP_IGMP
|
|
|
|
/* stop IGMP processing */
|
|
|
|
if (netif->flags & NETIF_FLAG_IGMP) {
|
|
|
|
igmp_stop( netif);
|
|
|
|
}
|
|
|
|
#endif /* LWIP_IGMP */
|
|
|
|
|
2006-09-01 07:14:50 +00:00
|
|
|
snmp_delete_ipaddridx_tree(netif);
|
|
|
|
|
2003-04-15 14:32:13 +00:00
|
|
|
/* is it the first netif? */
|
|
|
|
if (netif_list == netif) {
|
|
|
|
netif_list = netif->next;
|
2006-09-01 07:14:50 +00:00
|
|
|
snmp_dec_iflist();
|
2003-04-15 14:32:13 +00:00
|
|
|
}
|
2003-06-09 21:08:55 +00:00
|
|
|
else {
|
2003-04-15 14:32:13 +00:00
|
|
|
/* look for netif further down the list */
|
|
|
|
struct netif * tmpNetif;
|
|
|
|
for (tmpNetif = netif_list; tmpNetif != NULL; tmpNetif = tmpNetif->next) {
|
2003-06-09 21:14:47 +00:00
|
|
|
if (tmpNetif->next == netif) {
|
|
|
|
tmpNetif->next = netif->next;
|
2006-09-01 07:14:50 +00:00
|
|
|
snmp_dec_iflist();
|
2003-04-15 14:32:13 +00:00
|
|
|
break;
|
2006-07-14 09:58:02 +00:00
|
|
|
}
|
2003-06-09 21:14:47 +00:00
|
|
|
}
|
|
|
|
if (tmpNetif == NULL)
|
|
|
|
return; /* we didn't find any netif today */
|
2003-04-15 14:32:13 +00:00
|
|
|
}
|
2003-03-25 12:59:42 +00:00
|
|
|
/* this netif is default? */
|
2003-04-15 14:32:13 +00:00
|
|
|
if (netif_default == netif)
|
2003-03-25 12:59:42 +00:00
|
|
|
/* reset default netif */
|
2007-09-03 12:22:00 +00:00
|
|
|
netif_set_default(NULL);
|
2003-06-10 10:45:29 +00:00
|
|
|
LWIP_DEBUGF( NETIF_DEBUG, ("netif_remove: removed netif\n") );
|
2003-02-06 22:18:56 +00:00
|
|
|
}
|
|
|
|
|
2007-06-07 21:29:44 +00:00
|
|
|
/**
|
|
|
|
* Find a network interface by searching for its name
|
|
|
|
*
|
|
|
|
* @param name the name of the netif (like netif->name) plus concatenated number
|
|
|
|
* in ascii representation (e.g. 'en0')
|
|
|
|
*/
|
2002-10-19 12:59:30 +00:00
|
|
|
struct netif *
|
|
|
|
netif_find(char *name)
|
|
|
|
{
|
|
|
|
struct netif *netif;
|
|
|
|
u8_t num;
|
2003-06-09 21:08:55 +00:00
|
|
|
|
2003-05-01 13:24:01 +00:00
|
|
|
if (name == NULL) {
|
2002-10-19 12:59:30 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
num = name[2] - '0';
|
2003-06-09 21:08:55 +00:00
|
|
|
|
2002-10-19 12:59:30 +00:00
|
|
|
for(netif = netif_list; netif != NULL; netif = netif->next) {
|
2003-05-01 13:24:01 +00:00
|
|
|
if (num == netif->num &&
|
2002-10-19 12:59:30 +00:00
|
|
|
name[0] == netif->name[0] &&
|
|
|
|
name[1] == netif->name[1]) {
|
2003-06-10 10:45:29 +00:00
|
|
|
LWIP_DEBUGF(NETIF_DEBUG, ("netif_find: found %c%c\n", name[0], name[1]));
|
2002-10-19 12:59:30 +00:00
|
|
|
return netif;
|
2003-06-09 21:08:55 +00:00
|
|
|
}
|
2002-10-19 12:59:30 +00:00
|
|
|
}
|
2003-06-10 10:45:29 +00:00
|
|
|
LWIP_DEBUGF(NETIF_DEBUG, ("netif_find: didn't find %c%c\n", name[0], name[1]));
|
2002-10-19 12:59:30 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2003-11-14 13:17:23 +00:00
|
|
|
|
2007-06-07 21:29:44 +00:00
|
|
|
/**
|
|
|
|
* Change the IP address of a network interface
|
|
|
|
*
|
|
|
|
* @param netif the network interface to change
|
|
|
|
* @param ipaddr the new IP address
|
|
|
|
*
|
|
|
|
* @note call netif_set_addr() if you also want to change netmask and
|
|
|
|
* default gateway
|
|
|
|
*/
|
2002-10-19 12:59:30 +00:00
|
|
|
void
|
|
|
|
netif_set_ipaddr(struct netif *netif, struct ip_addr *ipaddr)
|
|
|
|
{
|
2003-04-08 12:19:02 +00:00
|
|
|
/* TODO: Handling of obsolete pcbs */
|
|
|
|
/* See: http://mail.gnu.org/archive/html/lwip-users/2003-03/msg00118.html */
|
2003-06-09 21:08:55 +00:00
|
|
|
#if LWIP_TCP
|
2003-04-08 12:19:02 +00:00
|
|
|
struct tcp_pcb *pcb;
|
|
|
|
struct tcp_pcb_listen *lpcb;
|
|
|
|
|
2003-06-09 21:08:55 +00:00
|
|
|
/* address is actually being changed? */
|
2003-04-09 15:17:57 +00:00
|
|
|
if ((ip_addr_cmp(ipaddr, &(netif->ip_addr))) == 0)
|
2003-04-08 12:19:02 +00:00
|
|
|
{
|
2004-02-20 00:51:49 +00:00
|
|
|
/* extern struct tcp_pcb *tcp_active_pcbs; defined by tcp.h */
|
2003-06-10 10:45:29 +00:00
|
|
|
LWIP_DEBUGF(NETIF_DEBUG | 1, ("netif_set_ipaddr: netif address being changed\n"));
|
2003-04-09 15:17:57 +00:00
|
|
|
pcb = tcp_active_pcbs;
|
|
|
|
while (pcb != NULL) {
|
2003-06-09 21:08:55 +00:00
|
|
|
/* PCB bound to current local interface address? */
|
2003-04-09 15:17:57 +00:00
|
|
|
if (ip_addr_cmp(&(pcb->local_ip), &(netif->ip_addr))) {
|
2003-06-09 21:08:55 +00:00
|
|
|
/* this connection must be aborted */
|
2003-04-09 15:17:57 +00:00
|
|
|
struct tcp_pcb *next = pcb->next;
|
2003-11-14 13:17:23 +00:00
|
|
|
LWIP_DEBUGF(NETIF_DEBUG | 1, ("netif_set_ipaddr: aborting TCP pcb %p\n", (void *)pcb));
|
2003-04-09 15:17:57 +00:00
|
|
|
tcp_abort(pcb);
|
|
|
|
pcb = next;
|
|
|
|
} else {
|
|
|
|
pcb = pcb->next;
|
|
|
|
}
|
2003-04-08 12:19:02 +00:00
|
|
|
}
|
2004-02-16 21:33:42 +00:00
|
|
|
for (lpcb = tcp_listen_pcbs.listen_pcbs; lpcb != NULL; lpcb = lpcb->next) {
|
2003-06-09 21:08:55 +00:00
|
|
|
/* PCB bound to current local interface address? */
|
2007-06-16 13:32:10 +00:00
|
|
|
if ((!(ip_addr_isany(&(lpcb->local_ip)))) &&
|
|
|
|
(ip_addr_cmp(&(lpcb->local_ip), &(netif->ip_addr)))) {
|
2003-04-09 15:17:57 +00:00
|
|
|
/* The PCB is listening to the old ipaddr and
|
2003-11-14 13:17:23 +00:00
|
|
|
* is set to listen to the new one instead */
|
2003-04-09 15:17:57 +00:00
|
|
|
ip_addr_set(&(lpcb->local_ip), ipaddr);
|
|
|
|
}
|
2003-04-08 12:19:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2006-09-01 07:14:50 +00:00
|
|
|
snmp_delete_ipaddridx_tree(netif);
|
|
|
|
snmp_delete_iprteidx_tree(0,netif);
|
|
|
|
/* set new IP address to netif */
|
2003-04-03 12:09:39 +00:00
|
|
|
ip_addr_set(&(netif->ip_addr), ipaddr);
|
2006-09-01 07:14:50 +00:00
|
|
|
snmp_insert_ipaddridx_tree(netif);
|
|
|
|
snmp_insert_iprteidx_tree(0,netif);
|
|
|
|
|
2007-03-30 08:47:04 +00:00
|
|
|
LWIP_DEBUGF(NETIF_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_STATE | 3, ("netif: IP address of interface %c%c set to %"U16_F".%"U16_F".%"U16_F".%"U16_F"\n",
|
2003-06-11 22:11:42 +00:00
|
|
|
netif->name[0], netif->name[1],
|
2004-07-21 09:23:11 +00:00
|
|
|
ip4_addr1(&netif->ip_addr),
|
|
|
|
ip4_addr2(&netif->ip_addr),
|
|
|
|
ip4_addr3(&netif->ip_addr),
|
|
|
|
ip4_addr4(&netif->ip_addr)));
|
2002-10-19 12:59:30 +00:00
|
|
|
}
|
2003-11-14 13:17:23 +00:00
|
|
|
|
2007-06-07 21:29:44 +00:00
|
|
|
/**
|
|
|
|
* Change the default gateway for a network interface
|
|
|
|
*
|
|
|
|
* @param netif the network interface to change
|
|
|
|
* @param gw the new default gateway
|
|
|
|
*
|
|
|
|
* @note call netif_set_addr() if you also want to change ip address and netmask
|
|
|
|
*/
|
2002-10-19 12:59:30 +00:00
|
|
|
void
|
|
|
|
netif_set_gw(struct netif *netif, struct ip_addr *gw)
|
|
|
|
{
|
2003-04-03 12:09:39 +00:00
|
|
|
ip_addr_set(&(netif->gw), gw);
|
2007-03-30 08:47:04 +00:00
|
|
|
LWIP_DEBUGF(NETIF_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_STATE | 3, ("netif: GW address of interface %c%c set to %"U16_F".%"U16_F".%"U16_F".%"U16_F"\n",
|
2004-07-21 09:23:11 +00:00
|
|
|
netif->name[0], netif->name[1],
|
|
|
|
ip4_addr1(&netif->gw),
|
|
|
|
ip4_addr2(&netif->gw),
|
|
|
|
ip4_addr3(&netif->gw),
|
|
|
|
ip4_addr4(&netif->gw)));
|
2002-10-19 12:59:30 +00:00
|
|
|
}
|
2003-11-14 13:17:23 +00:00
|
|
|
|
2007-06-07 21:29:44 +00:00
|
|
|
/**
|
|
|
|
* Change the netmask of a network interface
|
|
|
|
*
|
|
|
|
* @param netif the network interface to change
|
|
|
|
* @param netmask the new netmask
|
|
|
|
*
|
|
|
|
* @note call netif_set_addr() if you also want to change ip address and
|
|
|
|
* default gateway
|
|
|
|
*/
|
2002-10-19 12:59:30 +00:00
|
|
|
void
|
|
|
|
netif_set_netmask(struct netif *netif, struct ip_addr *netmask)
|
|
|
|
{
|
2006-09-01 07:14:50 +00:00
|
|
|
snmp_delete_iprteidx_tree(0, netif);
|
|
|
|
/* set new netmask to netif */
|
2003-04-03 12:09:39 +00:00
|
|
|
ip_addr_set(&(netif->netmask), netmask);
|
2006-09-01 07:14:50 +00:00
|
|
|
snmp_insert_iprteidx_tree(0, netif);
|
2007-03-30 08:47:04 +00:00
|
|
|
LWIP_DEBUGF(NETIF_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_STATE | 3, ("netif: netmask of interface %c%c set to %"U16_F".%"U16_F".%"U16_F".%"U16_F"\n",
|
2004-07-21 09:23:11 +00:00
|
|
|
netif->name[0], netif->name[1],
|
|
|
|
ip4_addr1(&netif->netmask),
|
|
|
|
ip4_addr2(&netif->netmask),
|
|
|
|
ip4_addr3(&netif->netmask),
|
|
|
|
ip4_addr4(&netif->netmask)));
|
2002-10-19 12:59:30 +00:00
|
|
|
}
|
2003-11-14 13:17:23 +00:00
|
|
|
|
2007-06-07 21:29:44 +00:00
|
|
|
/**
|
|
|
|
* Set a network interface as the default network interface
|
|
|
|
* (used to output all packets for which no specific route is found)
|
|
|
|
*
|
|
|
|
* @param netif the default network interface
|
|
|
|
*/
|
2002-10-19 12:59:30 +00:00
|
|
|
void
|
|
|
|
netif_set_default(struct netif *netif)
|
|
|
|
{
|
2006-09-01 07:14:50 +00:00
|
|
|
if (netif == NULL)
|
|
|
|
{
|
|
|
|
/* remove default route */
|
|
|
|
snmp_delete_iprteidx_tree(1, netif);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* install default route */
|
|
|
|
snmp_insert_iprteidx_tree(1, netif);
|
|
|
|
}
|
2002-10-19 12:59:30 +00:00
|
|
|
netif_default = netif;
|
2003-06-10 10:45:29 +00:00
|
|
|
LWIP_DEBUGF(NETIF_DEBUG, ("netif: setting default interface %c%c\n",
|
2003-06-09 21:14:47 +00:00
|
|
|
netif ? netif->name[0] : '\'', netif ? netif->name[1] : '\''));
|
2002-10-19 12:59:30 +00:00
|
|
|
}
|
2003-11-14 13:17:23 +00:00
|
|
|
|
2004-06-30 18:38:07 +00:00
|
|
|
/**
|
|
|
|
* Bring an interface up, available for processing
|
|
|
|
* traffic.
|
|
|
|
*
|
|
|
|
* @note: Enabling DHCP on a down interface will make it come
|
|
|
|
* up once configured.
|
|
|
|
*
|
|
|
|
* @see dhcp_start()
|
|
|
|
*/
|
|
|
|
void netif_set_up(struct netif *netif)
|
|
|
|
{
|
2007-03-21 13:24:20 +00:00
|
|
|
if ( !(netif->flags & NETIF_FLAG_UP )) {
|
|
|
|
netif->flags |= NETIF_FLAG_UP;
|
|
|
|
|
2006-07-14 09:58:02 +00:00
|
|
|
#if LWIP_SNMP
|
2007-03-21 13:24:20 +00:00
|
|
|
snmp_get_sysuptime(&netif->ts);
|
2007-03-28 09:23:35 +00:00
|
|
|
#endif /* LWIP_SNMP */
|
|
|
|
|
2007-07-13 15:00:40 +00:00
|
|
|
NETIF_LINK_CALLBACK(netif);
|
|
|
|
NETIF_STATUS_CALLBACK(netif);
|
2007-03-28 09:23:35 +00:00
|
|
|
|
|
|
|
#if LWIP_ARP
|
|
|
|
/** For Ethernet network interfaces, we would like to send a
|
|
|
|
* "gratuitous ARP"; this is an ARP packet sent by a node in order
|
|
|
|
* to spontaneously cause other nodes to update an entry in their
|
|
|
|
* ARP cache. From RFC 3220 "IP Mobility Support for IPv4" section 4.6.
|
|
|
|
*/
|
2007-03-30 09:25:41 +00:00
|
|
|
if (netif->flags & NETIF_FLAG_ETHARP) {
|
2007-03-28 09:23:35 +00:00
|
|
|
etharp_query(netif, &(netif->ip_addr), NULL);
|
|
|
|
}
|
|
|
|
#endif /* LWIP_ARP */
|
|
|
|
|
2007-03-21 13:24:20 +00:00
|
|
|
}
|
2004-06-30 18:38:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Bring an interface down, disabling any traffic processing.
|
|
|
|
*
|
|
|
|
* @note: Enabling DHCP on a down interface will make it come
|
|
|
|
* up once configured.
|
|
|
|
*
|
|
|
|
* @see dhcp_start()
|
|
|
|
*/
|
|
|
|
void netif_set_down(struct netif *netif)
|
|
|
|
{
|
2007-03-21 13:24:20 +00:00
|
|
|
if ( netif->flags & NETIF_FLAG_UP )
|
|
|
|
{
|
|
|
|
netif->flags &= ~NETIF_FLAG_UP;
|
2006-07-14 09:58:02 +00:00
|
|
|
#if LWIP_SNMP
|
2007-03-21 13:24:20 +00:00
|
|
|
snmp_get_sysuptime(&netif->ts);
|
2006-07-14 09:58:02 +00:00
|
|
|
#endif
|
2007-03-21 13:24:20 +00:00
|
|
|
|
2007-07-13 15:00:40 +00:00
|
|
|
NETIF_LINK_CALLBACK(netif);
|
|
|
|
NETIF_STATUS_CALLBACK(netif);
|
2007-03-21 13:24:20 +00:00
|
|
|
}
|
2004-06-30 18:38:07 +00:00
|
|
|
}
|
|
|
|
|
2007-08-25 10:43:19 +00:00
|
|
|
/**
|
|
|
|
* Ask if an interface is up
|
|
|
|
*/
|
|
|
|
u8_t netif_is_up(struct netif *netif)
|
|
|
|
{
|
|
|
|
return (netif->flags & NETIF_FLAG_UP)?1:0;
|
|
|
|
}
|
|
|
|
|
2007-08-22 11:26:01 +00:00
|
|
|
#if LWIP_NETIF_STATUS_CALLBACK
|
2007-03-21 13:24:20 +00:00
|
|
|
/**
|
|
|
|
* Set callback to be called when interface is brought up/down
|
|
|
|
*/
|
2007-08-25 10:43:19 +00:00
|
|
|
void netif_set_status_callback(struct netif *netif, void (* status_callback)(struct netif *netif ))
|
2007-03-21 13:24:20 +00:00
|
|
|
{
|
|
|
|
if ( netif )
|
|
|
|
netif->status_callback = status_callback;
|
|
|
|
}
|
2007-08-22 11:26:01 +00:00
|
|
|
#endif /* LWIP_NETIF_STATUS_CALLBACK */
|
2007-07-13 15:00:40 +00:00
|
|
|
|
|
|
|
#if LWIP_NETIF_LINK_CALLBACK
|
|
|
|
/**
|
|
|
|
* Called by a driver when its link goes up
|
|
|
|
*/
|
2007-08-25 10:43:19 +00:00
|
|
|
void netif_set_link_up(struct netif *netif )
|
2007-07-13 15:00:40 +00:00
|
|
|
{
|
|
|
|
netif->flags |= NETIF_FLAG_LINK_UP;
|
|
|
|
|
|
|
|
#if LWIP_ARP
|
|
|
|
/** For Ethernet network interfaces, we would like to send a
|
|
|
|
* "gratuitous ARP"; this is an ARP packet sent by a node in order
|
|
|
|
* to spontaneously cause other nodes to update an entry in their
|
|
|
|
* ARP cache. From RFC 3220 "IP Mobility Support for IPv4" section 4.6.
|
|
|
|
*/
|
|
|
|
if (netif->flags & NETIF_FLAG_ETHARP) {
|
|
|
|
etharp_query(netif, &(netif->ip_addr), NULL);
|
|
|
|
}
|
|
|
|
#endif /* LWIP_ARP */
|
2007-08-08 18:22:08 +00:00
|
|
|
|
2007-09-09 20:46:33 +00:00
|
|
|
#if LWIP_IGMP
|
|
|
|
/* resend IGMP memberships */
|
|
|
|
if (netif->flags & NETIF_FLAG_IGMP) {
|
|
|
|
igmp_report_groups( netif);
|
|
|
|
}
|
|
|
|
#endif /* LWIP_IGMP */
|
|
|
|
|
2007-08-08 18:22:08 +00:00
|
|
|
NETIF_LINK_CALLBACK(netif);
|
2007-07-13 15:00:40 +00:00
|
|
|
}
|
2007-08-25 10:43:19 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Called by a driver when its link goes down
|
|
|
|
*/
|
|
|
|
void netif_set_link_down(struct netif *netif )
|
|
|
|
{
|
|
|
|
netif->flags &= ~NETIF_FLAG_LINK_UP;
|
|
|
|
NETIF_LINK_CALLBACK(netif);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Ask if a link is up
|
|
|
|
*/
|
|
|
|
u8_t netif_is_link_up(struct netif *netif)
|
|
|
|
{
|
|
|
|
return (netif->flags & NETIF_FLAG_LINK_UP) ? 1 : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set callback to be called when link is brought up/down
|
|
|
|
*/
|
|
|
|
void netif_set_link_callback(struct netif *netif, void (* link_callback)(struct netif *netif ))
|
|
|
|
{
|
|
|
|
if ( netif )
|
|
|
|
netif->link_callback = link_callback;
|
|
|
|
}
|
2007-07-13 15:00:40 +00:00
|
|
|
#endif /* LWIP_NETIF_LINK_CALLBACK */
|