]> rtime.felk.cvut.cz Git - pes-rpp/rpp-lwip.git/blob - src/core/netif.c
factor out netif_set_addr so address of netif can be changed
[pes-rpp/rpp-lwip.git] / src / core / netif.c
1 /*
2  * Copyright (c) 2001-2003 Swedish Institute of Computer Science.
3  * All rights reserved. 
4  * 
5  * Redistribution and use in source and binary forms, with or without modification, 
6  * are permitted provided that the following conditions are met:
7  *
8  * 1. Redistributions of source code must retain the above copyright notice,
9  *    this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright notice,
11  *    this list of conditions and the following disclaimer in the documentation
12  *    and/or other materials provided with the distribution.
13  * 3. The name of the author may not be used to endorse or promote products
14  *    derived from this software without specific prior written permission. 
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED 
17  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 
18  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT 
19  * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 
20  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT 
21  * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 
22  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 
23  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING 
24  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY 
25  * OF SUCH DAMAGE.
26  *
27  * This file is part of the lwIP TCP/IP stack.
28  * 
29  * Author: Adam Dunkels <adam@sics.se>
30  *
31  */
32
33 #include "lwip/opt.h"
34
35 #include "lwip/def.h"
36 #include "lwip/mem.h"
37 #include "lwip/netif.h"
38
39 struct netif *netif_list = NULL;
40 struct netif *netif_default = NULL;
41
42 /**
43  * Add a network interface to the list of lwIP netifs.
44  *
45  * @param ipaddr IP address for the new netif
46  * @param netmask network mask for the new netif
47  * @param gw default gateway IP address for the new netif
48  * @param state opaque data passed to the new netif
49  * @param init callback function that initializes the interface
50  * @param input callback function that...
51  *
52  * @return netif, or NULL if failed.
53  */
54 struct netif *
55 netif_add(struct ip_addr *ipaddr, struct ip_addr *netmask,
56           struct ip_addr *gw,
57           void *state,
58           err_t (* init)(struct netif *netif),
59           err_t (* input)(struct pbuf *p, struct netif *netif))
60 {
61   struct netif *netif;
62   static int netifnum = 0;
63   
64   netif = mem_malloc(sizeof(struct netif));
65
66   if(netif == NULL) {
67     return NULL;
68   }
69   
70   netif->state = state;
71   netif->num = netifnum++;
72   netif->input = input;
73
74   netif_set_addr(netif, ipaddr, netmask, gw);
75   
76   if (init(netif) != ERR_OK) {
77       mem_free(netif);
78       return NULL;
79   }
80  
81   netif->next = netif_list;
82   netif_list = netif;
83 #if NETIF_DEBUG
84   DEBUGF(NETIF_DEBUG, ("netif: added interface %c%c IP addr ",
85                        netif->name[0], netif->name[1]));
86   ip_addr_debug_print(ipaddr);
87   DEBUGF(NETIF_DEBUG, (" netmask "));
88   ip_addr_debug_print(netmask);
89   DEBUGF(NETIF_DEBUG, (" gw "));  
90   ip_addr_debug_print(gw);
91   DEBUGF(NETIF_DEBUG, ("\n"));
92 #endif /* NETIF_DEBUG */
93   return netif;
94 }
95
96 void
97 netif_set_addr(struct netif *netif,struct ip_addr *ipaddr, struct ip_addr *netmask,
98           struct ip_addr *gw)
99 {
100   netif_set_ipaddr(netif, ipaddr);
101   netif_set_netmask(netif, netmask);
102   netif_set_gw(netif, gw);
103 }
104
105 /*-----------------------------------------------------------------------------------*/
106 void netif_remove(struct netif * netif)
107 {
108         if ( netif == NULL ) return;  
109  
110         /*  is it the first netif? */
111         if(netif_list == netif) {
112                 netif_list = netif->next;
113         }    
114         else
115         {       
116                 /*  look for netif further down the list */
117                 struct netif * tmpNetif;
118                 for(tmpNetif = netif_list; tmpNetif != NULL; tmpNetif = tmpNetif->next) {
119                         if(tmpNetif->next == netif) {
120                                 tmpNetif->next = netif->next;
121                                 break;
122                         }    
123                 }
124                 if(tmpNetif == NULL)
125                         return; /*  we didn't find any netif today */
126         }
127
128         if(netif_default == netif)
129                 netif_default = NULL;
130
131         DEBUGF(NETIF_DEBUG, ("netif_remove: removed netif"));
132         mem_free( netif );
133 }
134
135 /*-----------------------------------------------------------------------------------*/
136 struct netif *
137 netif_find(char *name)
138 {
139   struct netif *netif;
140   u8_t num;
141   
142   if(name == NULL) {
143     return NULL;
144   }
145
146   num = name[2] - '0';
147  
148   for(netif = netif_list; netif != NULL; netif = netif->next) {
149     if(num == netif->num &&
150        name[0] == netif->name[0] &&
151        name[1] == netif->name[1]) {
152       DEBUGF(NETIF_DEBUG, ("netif_find: found %s\n", name));
153       return netif;
154     }    
155   }
156   DEBUGF(NETIF_DEBUG, ("netif_find: didn't find %s\n", name));
157   return NULL;
158 }
159 /*-----------------------------------------------------------------------------------*/
160 void
161 netif_set_ipaddr(struct netif *netif, struct ip_addr *ipaddr)
162 {
163   ip_addr_set(&(netif->ip_addr), ipaddr);
164   DEBUGF(NETIF_DEBUG, ("netif: setting IP address of interface %c%c to %d.%d.%d.%d\n",
165                        netif->name[0], netif->name[1],
166                        (u8_t)(ntohl(ipaddr->addr) >> 24 & 0xff),
167                        (u8_t)(ntohl(ipaddr->addr) >> 16 & 0xff),
168                        (u8_t)(ntohl(ipaddr->addr) >> 8 & 0xff),
169                        (u8_t)(ntohl(ipaddr->addr) & 0xff)));
170 }
171 /*-----------------------------------------------------------------------------------*/
172 void
173 netif_set_gw(struct netif *netif, struct ip_addr *gw)
174 {
175   ip_addr_set(&(netif->gw), gw);
176 }
177 /*-----------------------------------------------------------------------------------*/
178 void
179 netif_set_netmask(struct netif *netif, struct ip_addr *netmask)
180 {
181   ip_addr_set(&(netif->netmask), netmask);
182 }
183 /*-----------------------------------------------------------------------------------*/
184 void
185 netif_set_default(struct netif *netif)
186 {
187   netif_default = netif;
188   DEBUGF(NETIF_DEBUG, ("netif: setting default interface %c%c\n",
189                        netif ? netif->name[0] : '\'', netif ? netif->name[1] : '\''));
190 }
191 /*-----------------------------------------------------------------------------------*/
192 void
193 netif_init(void)
194 {
195   netif_list = netif_default = NULL;
196 }
197 /*-----------------------------------------------------------------------------------*/