4 * lwIP network interface abstraction
8 * Copyright (c) 2001-2003 Swedish Institute of Computer Science.
11 * Redistribution and use in source and binary forms, with or without modification,
12 * are permitted provided that the following conditions are met:
14 * 1. Redistributions of source code must retain the above copyright notice,
15 * this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright notice,
17 * this list of conditions and the following disclaimer in the documentation
18 * and/or other materials provided with the distribution.
19 * 3. The name of the author may not be used to endorse or promote products
20 * derived from this software without specific prior written permission.
22 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
23 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
24 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
25 * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
26 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
27 * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
30 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
33 * This file is part of the lwIP TCP/IP stack.
35 * Author: Adam Dunkels <adam@sics.se>
42 #include "lwip/netif.h"
43 #include "lwip/ip_addr.h"
47 struct netif
*netif_list
= NULL
;
48 struct netif
*netif_default
= NULL
;
51 * Add a network interface to the list of lwIP netifs.
53 * @param ipaddr IP address for the new netif
54 * @param netmask network mask for the new netif
55 * @param gw default gateway IP address for the new netif
56 * @param state opaque data passed to the new netif
57 * @param init callback function that initializes the interface
58 * @param input callback function that...
60 * @return netif, or NULL if failed.
63 netif_add(struct netif
*netif
, struct ip_addr
*ipaddr
, struct ip_addr
*netmask
,
66 err_t (* init
)(struct netif
*netif
),
67 err_t (* input
)(struct pbuf
*p
, struct netif
*netif
))
69 static int netifnum
= 0;
73 /* netif not under DHCP control by default */
76 /* remember netif specific state information data */
78 netif
->num
= netifnum
++;
81 netif_set_addr(netif
, ipaddr
, netmask
, gw
);
83 /* call user specified initialization function for netif */
84 if (init(netif
) != ERR_OK
) {
88 /* add this netif to the list */
89 netif
->next
= netif_list
;
91 LWIP_DEBUGF(NETIF_DEBUG
, ("netif: added interface %c%c IP addr ",
92 netif
->name
[0], netif
->name
[1]));
93 ip_addr_debug_print(NETIF_DEBUG
, ipaddr
);
94 LWIP_DEBUGF(NETIF_DEBUG
, (" netmask "));
95 ip_addr_debug_print(NETIF_DEBUG
, netmask
);
96 LWIP_DEBUGF(NETIF_DEBUG
, (" gw "));
97 ip_addr_debug_print(NETIF_DEBUG
, gw
);
98 LWIP_DEBUGF(NETIF_DEBUG
, ("\n"));
103 netif_set_addr(struct netif
*netif
,struct ip_addr
*ipaddr
, struct ip_addr
*netmask
,
106 netif_set_ipaddr(netif
, ipaddr
);
107 netif_set_netmask(netif
, netmask
);
108 netif_set_gw(netif
, gw
);
111 void netif_remove(struct netif
* netif
)
113 if ( netif
== NULL
) return;
115 /* is it the first netif? */
116 if (netif_list
== netif
) {
117 netif_list
= netif
->next
;
120 /* look for netif further down the list */
121 struct netif
* tmpNetif
;
122 for (tmpNetif
= netif_list
; tmpNetif
!= NULL
; tmpNetif
= tmpNetif
->next
) {
123 if (tmpNetif
->next
== netif
) {
124 tmpNetif
->next
= netif
->next
;
128 if (tmpNetif
== NULL
)
129 return; /* we didn't find any netif today */
131 /* this netif is default? */
132 if (netif_default
== netif
)
133 /* reset default netif */
134 netif_default
= NULL
;
135 LWIP_DEBUGF( NETIF_DEBUG
, ("netif_remove: removed netif\n") );
139 netif_find(char *name
)
150 for(netif
= netif_list
; netif
!= NULL
; netif
= netif
->next
) {
151 if (num
== netif
->num
&&
152 name
[0] == netif
->name
[0] &&
153 name
[1] == netif
->name
[1]) {
154 LWIP_DEBUGF(NETIF_DEBUG
, ("netif_find: found %c%c\n", name
[0], name
[1]));
158 LWIP_DEBUGF(NETIF_DEBUG
, ("netif_find: didn't find %c%c\n", name
[0], name
[1]));
163 netif_set_ipaddr(struct netif
*netif
, struct ip_addr
*ipaddr
)
165 /* TODO: Handling of obsolete pcbs */
166 /* See: http://mail.gnu.org/archive/html/lwip-users/2003-03/msg00118.html */
169 struct tcp_pcb_listen
*lpcb
;
171 /* address is actually being changed? */
172 if ((ip_addr_cmp(ipaddr
, &(netif
->ip_addr
))) == 0)
174 extern struct tcp_pcb
*tcp_active_pcbs
;
175 LWIP_DEBUGF(NETIF_DEBUG
| 1, ("netif_set_ipaddr: netif address being changed\n"));
176 pcb
= tcp_active_pcbs
;
177 while (pcb
!= NULL
) {
178 /* PCB bound to current local interface address? */
179 if (ip_addr_cmp(&(pcb
->local_ip
), &(netif
->ip_addr
))) {
180 /* this connection must be aborted */
181 struct tcp_pcb
*next
= pcb
->next
;
182 LWIP_DEBUGF(NETIF_DEBUG
| 1, ("netif_set_ipaddr: aborting TCP pcb %p\n", (void *)pcb
));
189 for (lpcb
= tcp_listen_pcbs
; lpcb
!= NULL
; lpcb
= lpcb
->next
) {
190 /* PCB bound to current local interface address? */
191 if (ip_addr_cmp(&(lpcb
->local_ip
), &(netif
->ip_addr
))) {
192 /* The PCB is listening to the old ipaddr and
193 * is set to listen to the new one instead */
194 ip_addr_set(&(lpcb
->local_ip
), ipaddr
);
199 ip_addr_set(&(netif
->ip_addr
), ipaddr
);
200 LWIP_DEBUGF(NETIF_DEBUG
| DBG_TRACE
| DBG_STATE
| 3, ("netif: IP address of interface %c%c set to %u.%u.%u.%u\n",
201 netif
->name
[0], netif
->name
[1],
202 (unsigned int)(ntohl(netif
->ip_addr
.addr
) >> 24 & 0xff),
203 (unsigned int)(ntohl(netif
->ip_addr
.addr
) >> 16 & 0xff),
204 (unsigned int)(ntohl(netif
->ip_addr
.addr
) >> 8 & 0xff),
205 (unsigned int)(ntohl(netif
->ip_addr
.addr
) & 0xff)));
209 netif_set_gw(struct netif
*netif
, struct ip_addr
*gw
)
211 ip_addr_set(&(netif
->gw
), gw
);
212 LWIP_DEBUGF(NETIF_DEBUG
| DBG_TRACE
| DBG_STATE
| 3, ("netif: GW address of interface %c%c set to %u.%u.%u.%u\n",
213 netif
->name
[0], netif
->name
[1],
214 (unsigned int)(ntohl(netif
->gw
.addr
) >> 24 & 0xff),
215 (unsigned int)(ntohl(netif
->gw
.addr
) >> 16 & 0xff),
216 (unsigned int)(ntohl(netif
->gw
.addr
) >> 8 & 0xff),
217 (unsigned int)(ntohl(netif
->gw
.addr
) & 0xff)));
221 netif_set_netmask(struct netif
*netif
, struct ip_addr
*netmask
)
223 ip_addr_set(&(netif
->netmask
), netmask
);
224 LWIP_DEBUGF(NETIF_DEBUG
| DBG_TRACE
| DBG_STATE
| 3, ("netif: netmask of interface %c%c set to %u.%u.%u.%u\n",
225 netif
->name
[0], netif
->name
[1],
226 (unsigned int)(ntohl(netif
->netmask
.addr
) >> 24 & 0xff),
227 (unsigned int)(ntohl(netif
->netmask
.addr
) >> 16 & 0xff),
228 (unsigned int)(ntohl(netif
->netmask
.addr
) >> 8 & 0xff),
229 (unsigned int)(ntohl(netif
->netmask
.addr
) & 0xff)));
233 netif_set_default(struct netif
*netif
)
235 netif_default
= netif
;
236 LWIP_DEBUGF(NETIF_DEBUG
, ("netif: setting default interface %c%c\n",
237 netif
? netif
->name
[0] : '\'', netif
? netif
->name
[1] : '\''));
243 netif_list
= netif_default
= NULL
;