Disabling auto-refresh of game list by default, as it is causing bugs sometimes
[open-ps2-loader.git] / modules / network / SMSTCPIP / netif.c
blob9be937212634aedf722024fe7479cd7ee3aa74b1
1 /**
2 * @file
4 * lwIP network interface abstraction
5 */
7 /*
8 * Copyright (c) 2001-2003 Swedish Institute of Computer Science.
9 * All rights reserved.
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
31 * OF SUCH DAMAGE.
33 * This file is part of the lwIP TCP/IP stack.
35 * Author: Adam Dunkels <adam@sics.se>
39 #include "lwip/opt.h"
41 #include "lwip/def.h"
42 #include "lwip/netif.h"
43 #include "lwip/ip_addr.h"
44 #include "lwip/tcp.h"
47 struct netif *netif_list = NULL;
48 struct netif *netif_default = NULL;
50 /**
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.
62 struct netif *
63 netif_add(struct netif *netif, struct ip_addr *ipaddr, struct ip_addr *netmask,
64 struct ip_addr *gw,
65 void *state,
66 err_t (* init)(struct netif *netif),
67 err_t (* input)(struct pbuf *p, struct netif *netif))
69 static int netifnum = 0;
72 #if LWIP_DHCP
73 /* netif not under DHCP control by default */
74 netif->dhcp = NULL;
75 #endif
76 /* remember netif specific state information data */
77 netif->state = state;
78 netif->num = netifnum++;
79 netif->input = input;
81 netif_set_addr(netif, ipaddr, netmask, gw);
83 /* call user specified initialization function for netif */
84 if (init(netif) != ERR_OK) {
85 return NULL;
88 /* add this netif to the list */
89 netif->next = netif_list;
90 netif_list = netif;
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"));
99 return netif;
102 void
103 netif_set_addr(struct netif *netif,struct ip_addr *ipaddr, struct ip_addr *netmask,
104 struct ip_addr *gw)
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;
119 else {
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;
125 break;
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") );
138 struct netif *
139 netif_find(char *name)
141 struct netif *netif;
142 u8_t num;
144 if (name == NULL) {
145 return NULL;
148 num = name[2] - '0';
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]));
155 return netif;
158 LWIP_DEBUGF(NETIF_DEBUG, ("netif_find: didn't find %c%c\n", name[0], name[1]));
159 return NULL;
162 void
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 */
167 #if LWIP_TCP
168 struct tcp_pcb *pcb;
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));
183 tcp_abort(pcb);
184 pcb = next;
185 } else {
186 pcb = pcb->next;
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);
198 #endif
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)));
208 void
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)));
220 void
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)));
232 void
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] : '\''));
240 void
241 netif_init(void)
243 netif_list = netif_default = NULL;