__aeabi_ldivmod: fix sign logic
[minix.git] / lib / liblwip / netif / etharp.c
blobedd9958fffcb208eeb81b5595ec5d782b74aeee6
1 /**
2 * @file
3 * Address Resolution Protocol module for IP over Ethernet
5 * Functionally, ARP is divided into two parts. The first maps an IP address
6 * to a physical address when sending a packet, and the second part answers
7 * requests from other machines for our physical address.
9 * This implementation complies with RFC 826 (Ethernet ARP). It supports
10 * Gratuitious ARP from RFC3220 (IP Mobility Support for IPv4) section 4.6
11 * if an interface calls etharp_gratuitous(our_netif) upon address change.
15 * Copyright (c) 2001-2003 Swedish Institute of Computer Science.
16 * Copyright (c) 2003-2004 Leon Woestenberg <leon.woestenberg@axon.tv>
17 * Copyright (c) 2003-2004 Axon Digital Design B.V., The Netherlands.
18 * All rights reserved.
20 * Redistribution and use in source and binary forms, with or without modification,
21 * are permitted provided that the following conditions are met:
23 * 1. Redistributions of source code must retain the above copyright notice,
24 * this list of conditions and the following disclaimer.
25 * 2. Redistributions in binary form must reproduce the above copyright notice,
26 * this list of conditions and the following disclaimer in the documentation
27 * and/or other materials provided with the distribution.
28 * 3. The name of the author may not be used to endorse or promote products
29 * derived from this software without specific prior written permission.
31 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
32 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
33 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
34 * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
35 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
36 * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
37 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
38 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
39 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
40 * OF SUCH DAMAGE.
42 * This file is part of the lwIP TCP/IP stack.
46 #include "lwip/opt.h"
48 #if LWIP_ARP || LWIP_ETHERNET
50 #include "lwip/ip_addr.h"
51 #include "lwip/def.h"
52 #include "lwip/ip.h"
53 #include "lwip/stats.h"
54 #include "lwip/snmp.h"
55 #include "lwip/dhcp.h"
56 #include "lwip/autoip.h"
57 #include "netif/etharp.h"
59 #if PPPOE_SUPPORT
60 #include "netif/ppp_oe.h"
61 #endif /* PPPOE_SUPPORT */
63 #include <string.h>
65 const struct eth_addr ethbroadcast = {{0xff,0xff,0xff,0xff,0xff,0xff}};
66 const struct eth_addr ethzero = {{0,0,0,0,0,0}};
68 #if LWIP_ARP /* don't build if not configured for use in lwipopts.h */
70 /** the time an ARP entry stays valid after its last update,
71 * for ARP_TMR_INTERVAL = 5000, this is
72 * (240 * 5) seconds = 20 minutes.
74 #define ARP_MAXAGE 240
75 /** the time an ARP entry stays pending after first request,
76 * for ARP_TMR_INTERVAL = 5000, this is
77 * (2 * 5) seconds = 10 seconds.
79 * @internal Keep this number at least 2, otherwise it might
80 * run out instantly if the timeout occurs directly after a request.
82 #define ARP_MAXPENDING 2
84 #define HWTYPE_ETHERNET 1
86 enum etharp_state {
87 ETHARP_STATE_EMPTY = 0,
88 ETHARP_STATE_PENDING,
89 ETHARP_STATE_STABLE
92 struct etharp_entry {
93 #if ARP_QUEUEING
94 /** Pointer to queue of pending outgoing packets on this ARP entry. */
95 struct etharp_q_entry *q;
96 #endif /* ARP_QUEUEING */
97 ip_addr_t ipaddr;
98 struct eth_addr ethaddr;
99 #if LWIP_SNMP
100 struct netif *netif;
101 #endif /* LWIP_SNMP */
102 u8_t state;
103 u8_t ctime;
104 #if ETHARP_SUPPORT_STATIC_ENTRIES
105 u8_t static_entry;
106 #endif /* ETHARP_SUPPORT_STATIC_ENTRIES */
109 static struct etharp_entry arp_table[ARP_TABLE_SIZE];
111 #if !LWIP_NETIF_HWADDRHINT
112 static u8_t etharp_cached_entry;
113 #endif /* !LWIP_NETIF_HWADDRHINT */
115 /** Try hard to create a new entry - we want the IP address to appear in
116 the cache (even if this means removing an active entry or so). */
117 #define ETHARP_FLAG_TRY_HARD 1
118 #define ETHARP_FLAG_FIND_ONLY 2
119 #define ETHARP_FLAG_STATIC_ENTRY 4
121 #if LWIP_NETIF_HWADDRHINT
122 #define ETHARP_SET_HINT(netif, hint) if (((netif) != NULL) && ((netif)->addr_hint != NULL)) \
123 *((netif)->addr_hint) = (hint);
124 #else /* LWIP_NETIF_HWADDRHINT */
125 #define ETHARP_SET_HINT(netif, hint) (etharp_cached_entry = (hint))
126 #endif /* LWIP_NETIF_HWADDRHINT */
128 static err_t update_arp_entry(struct netif *netif, ip_addr_t *ipaddr, struct eth_addr *ethaddr, u8_t flags);
131 /* Some checks, instead of etharp_init(): */
132 #if (LWIP_ARP && (ARP_TABLE_SIZE > 0x7f))
133 #error "ARP_TABLE_SIZE must fit in an s8_t, you have to reduce it in your lwipopts.h"
134 #endif
137 #if ARP_QUEUEING
139 * Free a complete queue of etharp entries
141 * @param q a qeueue of etharp_q_entry's to free
143 static void
144 free_etharp_q(struct etharp_q_entry *q)
146 struct etharp_q_entry *r;
147 LWIP_ASSERT("q != NULL", q != NULL);
148 LWIP_ASSERT("q->p != NULL", q->p != NULL);
149 while (q) {
150 r = q;
151 q = q->next;
152 LWIP_ASSERT("r->p != NULL", (r->p != NULL));
153 pbuf_free(r->p);
154 memp_free(MEMP_ARP_QUEUE, r);
157 #endif /* ARP_QUEUEING */
159 /** Clean up ARP table entries */
160 static void
161 free_entry(int i)
163 /* remove from SNMP ARP index tree */
164 snmp_delete_arpidx_tree(arp_table[i].netif, &arp_table[i].ipaddr);
165 #if ARP_QUEUEING
166 /* and empty packet queue */
167 if (arp_table[i].q != NULL) {
168 /* remove all queued packets */
169 LWIP_DEBUGF(ETHARP_DEBUG, ("etharp_timer: freeing entry %"U16_F", packet queue %p.\n", (u16_t)i, (void *)(arp_table[i].q)));
170 free_etharp_q(arp_table[i].q);
171 arp_table[i].q = NULL;
173 #endif /* ARP_QUEUEING */
174 /* recycle entry for re-use */
175 arp_table[i].state = ETHARP_STATE_EMPTY;
176 #if ETHARP_SUPPORT_STATIC_ENTRIES
177 arp_table[i].static_entry = 0;
178 #endif /* ETHARP_SUPPORT_STATIC_ENTRIES */
179 #ifdef LWIP_DEBUG
180 /* for debugging, clean out the complete entry */
181 arp_table[i].ctime = 0;
182 #if LWIP_SNMP
183 arp_table[i].netif = NULL;
184 #endif /* LWIP_SNMP */
185 ip_addr_set_zero(&arp_table[i].ipaddr);
186 arp_table[i].ethaddr = ethzero;
187 #endif /* LWIP_DEBUG */
191 * Clears expired entries in the ARP table.
193 * This function should be called every ETHARP_TMR_INTERVAL milliseconds (5 seconds),
194 * in order to expire entries in the ARP table.
196 void
197 etharp_tmr(void)
199 u8_t i;
201 LWIP_DEBUGF(ETHARP_DEBUG, ("etharp_timer\n"));
202 /* remove expired entries from the ARP table */
203 for (i = 0; i < ARP_TABLE_SIZE; ++i) {
204 u8_t state = arp_table[i].state;
205 if (state != ETHARP_STATE_EMPTY
206 #if ETHARP_SUPPORT_STATIC_ENTRIES
207 && (arp_table[i].static_entry == 0)
208 #endif /* ETHARP_SUPPORT_STATIC_ENTRIES */
210 arp_table[i].ctime++;
211 if ((arp_table[i].ctime >= ARP_MAXAGE) ||
212 ((arp_table[i].state == ETHARP_STATE_PENDING) &&
213 (arp_table[i].ctime >= ARP_MAXPENDING))) {
214 /* pending or stable entry has become old! */
215 LWIP_DEBUGF(ETHARP_DEBUG, ("etharp_timer: expired %s entry %"U16_F".\n",
216 arp_table[i].state == ETHARP_STATE_STABLE ? "stable" : "pending", (u16_t)i));
217 /* clean up entries that have just been expired */
218 free_entry(i);
220 #if ARP_QUEUEING
221 /* still pending entry? (not expired) */
222 if (arp_table[i].state == ETHARP_STATE_PENDING) {
223 /* resend an ARP query here? */
225 #endif /* ARP_QUEUEING */
231 * Search the ARP table for a matching or new entry.
233 * If an IP address is given, return a pending or stable ARP entry that matches
234 * the address. If no match is found, create a new entry with this address set,
235 * but in state ETHARP_EMPTY. The caller must check and possibly change the
236 * state of the returned entry.
238 * If ipaddr is NULL, return a initialized new entry in state ETHARP_EMPTY.
240 * In all cases, attempt to create new entries from an empty entry. If no
241 * empty entries are available and ETHARP_FLAG_TRY_HARD flag is set, recycle
242 * old entries. Heuristic choose the least important entry for recycling.
244 * @param ipaddr IP address to find in ARP cache, or to add if not found.
245 * @param flags @see definition of ETHARP_FLAG_*
246 * @param netif netif related to this address (used for NETIF_HWADDRHINT)
248 * @return The ARP entry index that matched or is created, ERR_MEM if no
249 * entry is found or could be recycled.
251 static s8_t
252 find_entry(ip_addr_t *ipaddr, u8_t flags)
254 s8_t old_pending = ARP_TABLE_SIZE, old_stable = ARP_TABLE_SIZE;
255 s8_t empty = ARP_TABLE_SIZE;
256 u8_t i = 0, age_pending = 0, age_stable = 0;
257 #if ARP_QUEUEING
258 /* oldest entry with packets on queue */
259 s8_t old_queue = ARP_TABLE_SIZE;
260 /* its age */
261 u8_t age_queue = 0;
262 #endif /* ARP_QUEUEING */
265 * a) do a search through the cache, remember candidates
266 * b) select candidate entry
267 * c) create new entry
270 /* a) in a single search sweep, do all of this
271 * 1) remember the first empty entry (if any)
272 * 2) remember the oldest stable entry (if any)
273 * 3) remember the oldest pending entry without queued packets (if any)
274 * 4) remember the oldest pending entry with queued packets (if any)
275 * 5) search for a matching IP entry, either pending or stable
276 * until 5 matches, or all entries are searched for.
279 for (i = 0; i < ARP_TABLE_SIZE; ++i) {
280 u8_t state = arp_table[i].state;
281 /* no empty entry found yet and now we do find one? */
282 if ((empty == ARP_TABLE_SIZE) && (state == ETHARP_STATE_EMPTY)) {
283 LWIP_DEBUGF(ETHARP_DEBUG, ("find_entry: found empty entry %"U16_F"\n", (u16_t)i));
284 /* remember first empty entry */
285 empty = i;
286 } else if (state != ETHARP_STATE_EMPTY) {
287 LWIP_ASSERT("state == ETHARP_STATE_PENDING || state == ETHARP_STATE_STABLE",
288 state == ETHARP_STATE_PENDING || state == ETHARP_STATE_STABLE);
289 /* if given, does IP address match IP address in ARP entry? */
290 if (ipaddr && ip_addr_cmp(ipaddr, &arp_table[i].ipaddr)) {
291 LWIP_DEBUGF(ETHARP_DEBUG | LWIP_DBG_TRACE, ("find_entry: found matching entry %"U16_F"\n", (u16_t)i));
292 /* found exact IP address match, simply bail out */
293 return i;
295 /* pending entry? */
296 if (state == ETHARP_STATE_PENDING) {
297 /* pending with queued packets? */
298 #if ARP_QUEUEING
299 if (arp_table[i].q != NULL) {
300 if (arp_table[i].ctime >= age_queue) {
301 old_queue = i;
302 age_queue = arp_table[i].ctime;
304 } else
305 #endif /* ARP_QUEUEING */
306 /* pending without queued packets? */
308 if (arp_table[i].ctime >= age_pending) {
309 old_pending = i;
310 age_pending = arp_table[i].ctime;
313 /* stable entry? */
314 } else if (state == ETHARP_STATE_STABLE) {
315 #if ETHARP_SUPPORT_STATIC_ENTRIES
316 /* don't record old_stable for static entries since they never expire */
317 if (arp_table[i].static_entry == 0)
318 #endif /* ETHARP_SUPPORT_STATIC_ENTRIES */
320 /* remember entry with oldest stable entry in oldest, its age in maxtime */
321 if (arp_table[i].ctime >= age_stable) {
322 old_stable = i;
323 age_stable = arp_table[i].ctime;
329 /* { we have no match } => try to create a new entry */
331 /* don't create new entry, only search? */
332 if (((flags & ETHARP_FLAG_FIND_ONLY) != 0) ||
333 /* or no empty entry found and not allowed to recycle? */
334 ((empty == ARP_TABLE_SIZE) && ((flags & ETHARP_FLAG_TRY_HARD) == 0))) {
335 LWIP_DEBUGF(ETHARP_DEBUG | LWIP_DBG_TRACE, ("find_entry: no empty entry found and not allowed to recycle\n"));
336 return (s8_t)ERR_MEM;
339 /* b) choose the least destructive entry to recycle:
340 * 1) empty entry
341 * 2) oldest stable entry
342 * 3) oldest pending entry without queued packets
343 * 4) oldest pending entry with queued packets
345 * { ETHARP_FLAG_TRY_HARD is set at this point }
348 /* 1) empty entry available? */
349 if (empty < ARP_TABLE_SIZE) {
350 i = empty;
351 LWIP_DEBUGF(ETHARP_DEBUG | LWIP_DBG_TRACE, ("find_entry: selecting empty entry %"U16_F"\n", (u16_t)i));
352 } else {
353 /* 2) found recyclable stable entry? */
354 if (old_stable < ARP_TABLE_SIZE) {
355 /* recycle oldest stable*/
356 i = old_stable;
357 LWIP_DEBUGF(ETHARP_DEBUG | LWIP_DBG_TRACE, ("find_entry: selecting oldest stable entry %"U16_F"\n", (u16_t)i));
358 #if ARP_QUEUEING
359 /* no queued packets should exist on stable entries */
360 LWIP_ASSERT("arp_table[i].q == NULL", arp_table[i].q == NULL);
361 #endif /* ARP_QUEUEING */
362 /* 3) found recyclable pending entry without queued packets? */
363 } else if (old_pending < ARP_TABLE_SIZE) {
364 /* recycle oldest pending */
365 i = old_pending;
366 LWIP_DEBUGF(ETHARP_DEBUG | LWIP_DBG_TRACE, ("find_entry: selecting oldest pending entry %"U16_F" (without queue)\n", (u16_t)i));
367 #if ARP_QUEUEING
368 /* 4) found recyclable pending entry with queued packets? */
369 } else if (old_queue < ARP_TABLE_SIZE) {
370 /* recycle oldest pending (queued packets are free in free_entry) */
371 i = old_queue;
372 LWIP_DEBUGF(ETHARP_DEBUG | LWIP_DBG_TRACE, ("find_entry: selecting oldest pending entry %"U16_F", freeing packet queue %p\n", (u16_t)i, (void *)(arp_table[i].q)));
373 #endif /* ARP_QUEUEING */
374 /* no empty or recyclable entries found */
375 } else {
376 LWIP_DEBUGF(ETHARP_DEBUG | LWIP_DBG_TRACE, ("find_entry: no empty or recyclable entries found\n"));
377 return (s8_t)ERR_MEM;
380 /* { empty or recyclable entry found } */
381 LWIP_ASSERT("i < ARP_TABLE_SIZE", i < ARP_TABLE_SIZE);
382 free_entry(i);
385 LWIP_ASSERT("i < ARP_TABLE_SIZE", i < ARP_TABLE_SIZE);
386 LWIP_ASSERT("arp_table[i].state == ETHARP_STATE_EMPTY",
387 arp_table[i].state == ETHARP_STATE_EMPTY);
389 /* IP address given? */
390 if (ipaddr != NULL) {
391 /* set IP address */
392 ip_addr_copy(arp_table[i].ipaddr, *ipaddr);
394 arp_table[i].ctime = 0;
395 #if ETHARP_SUPPORT_STATIC_ENTRIES
396 arp_table[i].static_entry = 0;
397 #endif /* ETHARP_SUPPORT_STATIC_ENTRIES */
398 return (err_t)i;
402 * Send an IP packet on the network using netif->linkoutput
403 * The ethernet header is filled in before sending.
405 * @params netif the lwIP network interface on which to send the packet
406 * @params p the packet to send, p->payload pointing to the (uninitialized) ethernet header
407 * @params src the source MAC address to be copied into the ethernet header
408 * @params dst the destination MAC address to be copied into the ethernet header
409 * @return ERR_OK if the packet was sent, any other err_t on failure
411 static err_t
412 etharp_send_ip(struct netif *netif, struct pbuf *p, struct eth_addr *src, struct eth_addr *dst)
414 struct eth_hdr *ethhdr = (struct eth_hdr *)p->payload;
416 LWIP_ASSERT("netif->hwaddr_len must be the same as ETHARP_HWADDR_LEN for etharp!",
417 (netif->hwaddr_len == ETHARP_HWADDR_LEN));
418 ETHADDR32_COPY(&ethhdr->dest, dst);
419 ETHADDR16_COPY(&ethhdr->src, src);
420 ethhdr->type = PP_HTONS(ETHTYPE_IP);
421 LWIP_DEBUGF(ETHARP_DEBUG | LWIP_DBG_TRACE, ("etharp_send_ip: sending packet %p\n", (void *)p));
422 /* send the packet */
423 return netif->linkoutput(netif, p);
427 * Update (or insert) a IP/MAC address pair in the ARP cache.
429 * If a pending entry is resolved, any queued packets will be sent
430 * at this point.
432 * @param netif netif related to this entry (used for NETIF_ADDRHINT)
433 * @param ipaddr IP address of the inserted ARP entry.
434 * @param ethaddr Ethernet address of the inserted ARP entry.
435 * @param flags @see definition of ETHARP_FLAG_*
437 * @return
438 * - ERR_OK Succesfully updated ARP cache.
439 * - ERR_MEM If we could not add a new ARP entry when ETHARP_FLAG_TRY_HARD was set.
440 * - ERR_ARG Non-unicast address given, those will not appear in ARP cache.
442 * @see pbuf_free()
444 static err_t
445 update_arp_entry(struct netif *netif, ip_addr_t *ipaddr, struct eth_addr *ethaddr, u8_t flags)
447 s8_t i;
448 LWIP_ASSERT("netif->hwaddr_len == ETHARP_HWADDR_LEN", netif->hwaddr_len == ETHARP_HWADDR_LEN);
449 LWIP_DEBUGF(ETHARP_DEBUG | LWIP_DBG_TRACE, ("update_arp_entry: %"U16_F".%"U16_F".%"U16_F".%"U16_F" - %02"X16_F":%02"X16_F":%02"X16_F":%02"X16_F":%02"X16_F":%02"X16_F"\n",
450 ip4_addr1_16(ipaddr), ip4_addr2_16(ipaddr), ip4_addr3_16(ipaddr), ip4_addr4_16(ipaddr),
451 ethaddr->addr[0], ethaddr->addr[1], ethaddr->addr[2],
452 ethaddr->addr[3], ethaddr->addr[4], ethaddr->addr[5]));
453 /* non-unicast address? */
454 if (ip_addr_isany(ipaddr) ||
455 ip_addr_isbroadcast(ipaddr, netif) ||
456 ip_addr_ismulticast(ipaddr)) {
457 LWIP_DEBUGF(ETHARP_DEBUG | LWIP_DBG_TRACE, ("update_arp_entry: will not add non-unicast IP address to ARP cache\n"));
458 return ERR_ARG;
460 /* find or create ARP entry */
461 i = find_entry(ipaddr, flags);
462 /* bail out if no entry could be found */
463 if (i < 0) {
464 return (err_t)i;
467 #if ETHARP_SUPPORT_STATIC_ENTRIES
468 if (flags & ETHARP_FLAG_STATIC_ENTRY) {
469 /* record static type */
470 arp_table[i].static_entry = 1;
472 #endif /* ETHARP_SUPPORT_STATIC_ENTRIES */
474 /* mark it stable */
475 arp_table[i].state = ETHARP_STATE_STABLE;
477 #if LWIP_SNMP
478 /* record network interface */
479 arp_table[i].netif = netif;
480 #endif /* LWIP_SNMP */
481 /* insert in SNMP ARP index tree */
482 snmp_insert_arpidx_tree(netif, &arp_table[i].ipaddr);
484 LWIP_DEBUGF(ETHARP_DEBUG | LWIP_DBG_TRACE, ("update_arp_entry: updating stable entry %"S16_F"\n", (s16_t)i));
485 /* update address */
486 ETHADDR32_COPY(&arp_table[i].ethaddr, ethaddr);
487 /* reset time stamp */
488 arp_table[i].ctime = 0;
489 #if ARP_QUEUEING
490 /* this is where we will send out queued packets! */
491 while (arp_table[i].q != NULL) {
492 struct pbuf *p;
493 /* remember remainder of queue */
494 struct etharp_q_entry *q = arp_table[i].q;
495 /* pop first item off the queue */
496 arp_table[i].q = q->next;
497 /* get the packet pointer */
498 p = q->p;
499 /* now queue entry can be freed */
500 memp_free(MEMP_ARP_QUEUE, q);
501 /* send the queued IP packet */
502 etharp_send_ip(netif, p, (struct eth_addr*)(netif->hwaddr), ethaddr);
503 /* free the queued IP packet */
504 pbuf_free(p);
506 #endif /* ARP_QUEUEING */
507 return ERR_OK;
510 #if ETHARP_SUPPORT_STATIC_ENTRIES
511 /** Add a new static entry to the ARP table. If an entry exists for the
512 * specified IP address, this entry is overwritten.
513 * If packets are queued for the specified IP address, they are sent out.
515 * @param ipaddr IP address for the new static entry
516 * @param ethaddr ethernet address for the new static entry
517 * @return @see return values of etharp_add_static_entry
519 err_t
520 etharp_add_static_entry(ip_addr_t *ipaddr, struct eth_addr *ethaddr)
522 struct netif *netif;
523 LWIP_DEBUGF(ETHARP_DEBUG | LWIP_DBG_TRACE, ("etharp_add_static_entry: %"U16_F".%"U16_F".%"U16_F".%"U16_F" - %02"X16_F":%02"X16_F":%02"X16_F":%02"X16_F":%02"X16_F":%02"X16_F"\n",
524 ip4_addr1_16(ipaddr), ip4_addr2_16(ipaddr), ip4_addr3_16(ipaddr), ip4_addr4_16(ipaddr),
525 ethaddr->addr[0], ethaddr->addr[1], ethaddr->addr[2],
526 ethaddr->addr[3], ethaddr->addr[4], ethaddr->addr[5]));
528 netif = ip_route(ipaddr);
529 if (netif == NULL) {
530 return ERR_RTE;
533 return update_arp_entry(netif, ipaddr, ethaddr, ETHARP_FLAG_TRY_HARD | ETHARP_FLAG_STATIC_ENTRY);
536 /** Remove a static entry from the ARP table previously added with a call to
537 * etharp_add_static_entry.
539 * @param ipaddr IP address of the static entry to remove
540 * @return ERR_OK: entry removed
541 * ERR_MEM: entry wasn't found
542 * ERR_ARG: entry wasn't a static entry but a dynamic one
544 err_t
545 etharp_remove_static_entry(ip_addr_t *ipaddr)
547 s8_t i;
548 LWIP_DEBUGF(ETHARP_DEBUG | LWIP_DBG_TRACE, ("etharp_remove_static_entry: %"U16_F".%"U16_F".%"U16_F".%"U16_F"\n",
549 ip4_addr1_16(ipaddr), ip4_addr2_16(ipaddr), ip4_addr3_16(ipaddr), ip4_addr4_16(ipaddr)));
551 /* find or create ARP entry */
552 i = find_entry(ipaddr, ETHARP_FLAG_FIND_ONLY);
553 /* bail out if no entry could be found */
554 if (i < 0) {
555 return (err_t)i;
558 if ((arp_table[i].state != ETHARP_STATE_STABLE) ||
559 (arp_table[i].static_entry == 0)) {
560 /* entry wasn't a static entry, cannot remove it */
561 return ERR_ARG;
563 /* entry found, free it */
564 free_entry(i);
565 return ERR_OK;
567 #endif /* ETHARP_SUPPORT_STATIC_ENTRIES */
570 * Finds (stable) ethernet/IP address pair from ARP table
571 * using interface and IP address index.
572 * @note the addresses in the ARP table are in network order!
574 * @param netif points to interface index
575 * @param ipaddr points to the (network order) IP address index
576 * @param eth_ret points to return pointer
577 * @param ip_ret points to return pointer
578 * @return table index if found, -1 otherwise
580 s8_t
581 etharp_find_addr(struct netif *netif, ip_addr_t *ipaddr,
582 struct eth_addr **eth_ret, ip_addr_t **ip_ret)
584 s8_t i;
586 LWIP_ASSERT("eth_ret != NULL && ip_ret != NULL",
587 eth_ret != NULL && ip_ret != NULL);
589 LWIP_UNUSED_ARG(netif);
591 i = find_entry(ipaddr, ETHARP_FLAG_FIND_ONLY);
592 if((i >= 0) && arp_table[i].state == ETHARP_STATE_STABLE) {
593 *eth_ret = &arp_table[i].ethaddr;
594 *ip_ret = &arp_table[i].ipaddr;
595 return i;
597 return -1;
600 #if ETHARP_TRUST_IP_MAC
602 * Updates the ARP table using the given IP packet.
604 * Uses the incoming IP packet's source address to update the
605 * ARP cache for the local network. The function does not alter
606 * or free the packet. This function must be called before the
607 * packet p is passed to the IP layer.
609 * @param netif The lwIP network interface on which the IP packet pbuf arrived.
610 * @param p The IP packet that arrived on netif.
612 * @return NULL
614 * @see pbuf_free()
616 static void
617 etharp_ip_input(struct netif *netif, struct pbuf *p)
619 struct eth_hdr *ethhdr;
620 struct ip_hdr *iphdr;
621 ip_addr_t iphdr_src;
622 LWIP_ERROR("netif != NULL", (netif != NULL), return;);
624 /* Only insert an entry if the source IP address of the
625 incoming IP packet comes from a host on the local network. */
626 ethhdr = (struct eth_hdr *)p->payload;
627 iphdr = (struct ip_hdr *)((u8_t*)ethhdr + SIZEOF_ETH_HDR);
628 #if ETHARP_SUPPORT_VLAN
629 if (ethhdr->type == ETHTYPE_VLAN) {
630 iphdr = (struct ip_hdr *)((u8_t*)ethhdr + SIZEOF_ETH_HDR + SIZEOF_VLAN_HDR);
632 #endif /* ETHARP_SUPPORT_VLAN */
634 ip_addr_copy(iphdr_src, iphdr->src);
636 /* source is not on the local network? */
637 if (!ip_addr_netcmp(&iphdr_src, &(netif->ip_addr), &(netif->netmask))) {
638 /* do nothing */
639 return;
642 LWIP_DEBUGF(ETHARP_DEBUG | LWIP_DBG_TRACE, ("etharp_ip_input: updating ETHARP table.\n"));
643 /* update the source IP address in the cache, if present */
644 /* @todo We could use ETHARP_FLAG_TRY_HARD if we think we are going to talk
645 * back soon (for example, if the destination IP address is ours. */
646 update_arp_entry(netif, &iphdr_src, &(ethhdr->src), ETHARP_FLAG_FIND_ONLY);
648 #endif /* ETHARP_TRUST_IP_MAC */
651 * Responds to ARP requests to us. Upon ARP replies to us, add entry to cache
652 * send out queued IP packets. Updates cache with snooped address pairs.
654 * Should be called for incoming ARP packets. The pbuf in the argument
655 * is freed by this function.
657 * @param netif The lwIP network interface on which the ARP packet pbuf arrived.
658 * @param ethaddr Ethernet address of netif.
659 * @param p The ARP packet that arrived on netif. Is freed by this function.
661 * @return NULL
663 * @see pbuf_free()
665 static void
666 etharp_arp_input(struct netif *netif, struct eth_addr *ethaddr, struct pbuf *p)
668 struct etharp_hdr *hdr;
669 struct eth_hdr *ethhdr;
670 /* these are aligned properly, whereas the ARP header fields might not be */
671 ip_addr_t sipaddr, dipaddr;
672 u8_t for_us;
673 #if LWIP_AUTOIP
674 const u8_t * ethdst_hwaddr;
675 #endif /* LWIP_AUTOIP */
677 LWIP_ERROR("netif != NULL", (netif != NULL), return;);
679 /* drop short ARP packets: we have to check for p->len instead of p->tot_len here
680 since a struct etharp_hdr is pointed to p->payload, so it musn't be chained! */
681 if (p->len < SIZEOF_ETHARP_PACKET) {
682 LWIP_DEBUGF(ETHARP_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_LEVEL_WARNING,
683 ("etharp_arp_input: packet dropped, too short (%"S16_F"/%"S16_F")\n", p->tot_len,
684 (s16_t)SIZEOF_ETHARP_PACKET));
685 ETHARP_STATS_INC(etharp.lenerr);
686 ETHARP_STATS_INC(etharp.drop);
687 pbuf_free(p);
688 return;
691 ethhdr = (struct eth_hdr *)p->payload;
692 hdr = (struct etharp_hdr *)((u8_t*)ethhdr + SIZEOF_ETH_HDR);
693 #if ETHARP_SUPPORT_VLAN
694 if (ethhdr->type == ETHTYPE_VLAN) {
695 hdr = (struct etharp_hdr *)(((u8_t*)ethhdr) + SIZEOF_ETH_HDR + SIZEOF_VLAN_HDR);
697 #endif /* ETHARP_SUPPORT_VLAN */
699 /* RFC 826 "Packet Reception": */
700 if ((hdr->hwtype != PP_HTONS(HWTYPE_ETHERNET)) ||
701 (hdr->hwlen != ETHARP_HWADDR_LEN) ||
702 (hdr->protolen != sizeof(ip_addr_t)) ||
703 (hdr->proto != PP_HTONS(ETHTYPE_IP)) ||
704 (ethhdr->type != PP_HTONS(ETHTYPE_ARP))) {
705 LWIP_DEBUGF(ETHARP_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_LEVEL_WARNING,
706 ("etharp_arp_input: packet dropped, wrong hw type, hwlen, proto, protolen or ethernet type (%"U16_F"/%"U16_F"/%"U16_F"/%"U16_F"/%"U16_F")\n",
707 hdr->hwtype, hdr->hwlen, hdr->proto, hdr->protolen, ethhdr->type));
708 ETHARP_STATS_INC(etharp.proterr);
709 ETHARP_STATS_INC(etharp.drop);
710 pbuf_free(p);
711 return;
713 ETHARP_STATS_INC(etharp.recv);
715 #if LWIP_AUTOIP
716 /* We have to check if a host already has configured our random
717 * created link local address and continously check if there is
718 * a host with this IP-address so we can detect collisions */
719 autoip_arp_reply(netif, hdr);
720 #endif /* LWIP_AUTOIP */
722 /* Copy struct ip_addr2 to aligned ip_addr, to support compilers without
723 * structure packing (not using structure copy which breaks strict-aliasing rules). */
724 IPADDR2_COPY(&sipaddr, &hdr->sipaddr);
725 IPADDR2_COPY(&dipaddr, &hdr->dipaddr);
727 /* this interface is not configured? */
728 if (ip_addr_isany(&netif->ip_addr)) {
729 for_us = 0;
730 } else {
731 /* ARP packet directed to us? */
732 for_us = (u8_t)ip_addr_cmp(&dipaddr, &(netif->ip_addr));
735 /* ARP message directed to us?
736 -> add IP address in ARP cache; assume requester wants to talk to us,
737 can result in directly sending the queued packets for this host.
738 ARP message not directed to us?
739 -> update the source IP address in the cache, if present */
740 update_arp_entry(netif, &sipaddr, &(hdr->shwaddr),
741 for_us ? ETHARP_FLAG_TRY_HARD : ETHARP_FLAG_FIND_ONLY);
743 /* now act on the message itself */
744 switch (hdr->opcode) {
745 /* ARP request? */
746 case PP_HTONS(ARP_REQUEST):
747 /* ARP request. If it asked for our address, we send out a
748 * reply. In any case, we time-stamp any existing ARP entry,
749 * and possiby send out an IP packet that was queued on it. */
751 LWIP_DEBUGF (ETHARP_DEBUG | LWIP_DBG_TRACE, ("etharp_arp_input: incoming ARP request\n"));
752 /* ARP request for our address? */
753 if (for_us) {
755 LWIP_DEBUGF(ETHARP_DEBUG | LWIP_DBG_TRACE, ("etharp_arp_input: replying to ARP request for our IP address\n"));
756 /* Re-use pbuf to send ARP reply.
757 Since we are re-using an existing pbuf, we can't call etharp_raw since
758 that would allocate a new pbuf. */
759 hdr->opcode = htons(ARP_REPLY);
761 IPADDR2_COPY(&hdr->dipaddr, &hdr->sipaddr);
762 IPADDR2_COPY(&hdr->sipaddr, &netif->ip_addr);
764 LWIP_ASSERT("netif->hwaddr_len must be the same as ETHARP_HWADDR_LEN for etharp!",
765 (netif->hwaddr_len == ETHARP_HWADDR_LEN));
766 #if LWIP_AUTOIP
767 /* If we are using Link-Local, all ARP packets that contain a Link-Local
768 * 'sender IP address' MUST be sent using link-layer broadcast instead of
769 * link-layer unicast. (See RFC3927 Section 2.5, last paragraph) */
770 ethdst_hwaddr = ip_addr_islinklocal(&netif->ip_addr) ? (u8_t*)(ethbroadcast.addr) : hdr->shwaddr.addr;
771 #endif /* LWIP_AUTOIP */
773 ETHADDR16_COPY(&hdr->dhwaddr, &hdr->shwaddr);
774 #if LWIP_AUTOIP
775 ETHADDR16_COPY(&ethhdr->dest, ethdst_hwaddr);
776 #else /* LWIP_AUTOIP */
777 ETHADDR16_COPY(&ethhdr->dest, &hdr->shwaddr);
778 #endif /* LWIP_AUTOIP */
779 ETHADDR16_COPY(&hdr->shwaddr, ethaddr);
780 ETHADDR16_COPY(&ethhdr->src, ethaddr);
782 /* hwtype, hwaddr_len, proto, protolen and the type in the ethernet header
783 are already correct, we tested that before */
785 /* return ARP reply */
786 netif->linkoutput(netif, p);
787 /* we are not configured? */
788 } else if (ip_addr_isany(&netif->ip_addr)) {
789 /* { for_us == 0 and netif->ip_addr.addr == 0 } */
790 LWIP_DEBUGF(ETHARP_DEBUG | LWIP_DBG_TRACE, ("etharp_arp_input: we are unconfigured, ARP request ignored.\n"));
791 /* request was not directed to us */
792 } else {
793 /* { for_us == 0 and netif->ip_addr.addr != 0 } */
794 LWIP_DEBUGF(ETHARP_DEBUG | LWIP_DBG_TRACE, ("etharp_arp_input: ARP request was not for us.\n"));
796 break;
797 case PP_HTONS(ARP_REPLY):
798 /* ARP reply. We already updated the ARP cache earlier. */
799 LWIP_DEBUGF(ETHARP_DEBUG | LWIP_DBG_TRACE, ("etharp_arp_input: incoming ARP reply\n"));
800 #if (LWIP_DHCP && DHCP_DOES_ARP_CHECK)
801 /* DHCP wants to know about ARP replies from any host with an
802 * IP address also offered to us by the DHCP server. We do not
803 * want to take a duplicate IP address on a single network.
804 * @todo How should we handle redundant (fail-over) interfaces? */
805 dhcp_arp_reply(netif, &sipaddr);
806 #endif /* (LWIP_DHCP && DHCP_DOES_ARP_CHECK) */
807 break;
808 default:
809 LWIP_DEBUGF(ETHARP_DEBUG | LWIP_DBG_TRACE, ("etharp_arp_input: ARP unknown opcode type %"S16_F"\n", htons(hdr->opcode)));
810 ETHARP_STATS_INC(etharp.err);
811 break;
813 /* free ARP packet */
814 pbuf_free(p);
818 * Resolve and fill-in Ethernet address header for outgoing IP packet.
820 * For IP multicast and broadcast, corresponding Ethernet addresses
821 * are selected and the packet is transmitted on the link.
823 * For unicast addresses, the packet is submitted to etharp_query(). In
824 * case the IP address is outside the local network, the IP address of
825 * the gateway is used.
827 * @param netif The lwIP network interface which the IP packet will be sent on.
828 * @param q The pbuf(s) containing the IP packet to be sent.
829 * @param ipaddr The IP address of the packet destination.
831 * @return
832 * - ERR_RTE No route to destination (no gateway to external networks),
833 * or the return type of either etharp_query() or etharp_send_ip().
835 err_t
836 etharp_output(struct netif *netif, struct pbuf *q, ip_addr_t *ipaddr)
838 struct eth_addr *dest, mcastaddr;
840 /* make room for Ethernet header - should not fail */
841 if (pbuf_header(q, sizeof(struct eth_hdr)) != 0) {
842 /* bail out */
843 LWIP_DEBUGF(ETHARP_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_LEVEL_SERIOUS,
844 ("etharp_output: could not allocate room for header.\n"));
845 LINK_STATS_INC(link.lenerr);
846 return ERR_BUF;
849 /* assume unresolved Ethernet address */
850 dest = NULL;
851 /* Determine on destination hardware address. Broadcasts and multicasts
852 * are special, other IP addresses are looked up in the ARP table. */
854 /* broadcast destination IP address? */
855 if (ip_addr_isbroadcast(ipaddr, netif)) {
856 /* broadcast on Ethernet also */
857 dest = (struct eth_addr *)&ethbroadcast;
858 /* multicast destination IP address? */
859 } else if (ip_addr_ismulticast(ipaddr)) {
860 /* Hash IP multicast address to MAC address.*/
861 mcastaddr.addr[0] = 0x01;
862 mcastaddr.addr[1] = 0x00;
863 mcastaddr.addr[2] = 0x5e;
864 mcastaddr.addr[3] = ip4_addr2(ipaddr) & 0x7f;
865 mcastaddr.addr[4] = ip4_addr3(ipaddr);
866 mcastaddr.addr[5] = ip4_addr4(ipaddr);
867 /* destination Ethernet address is multicast */
868 dest = &mcastaddr;
869 /* unicast destination IP address? */
870 } else {
871 /* outside local network? */
872 if (!ip_addr_netcmp(ipaddr, &(netif->ip_addr), &(netif->netmask)) &&
873 !ip_addr_islinklocal(ipaddr)) {
874 /* interface has default gateway? */
875 if (!ip_addr_isany(&netif->gw)) {
876 /* send to hardware address of default gateway IP address */
877 ipaddr = &(netif->gw);
878 /* no default gateway available */
879 } else {
880 /* no route to destination error (default gateway missing) */
881 return ERR_RTE;
884 #if LWIP_NETIF_HWADDRHINT
885 if (netif->addr_hint != NULL) {
886 /* per-pcb cached entry was given */
887 u8_t etharp_cached_entry = *(netif->addr_hint);
888 if (etharp_cached_entry < ARP_TABLE_SIZE) {
889 #endif /* LWIP_NETIF_HWADDRHINT */
890 if ((arp_table[etharp_cached_entry].state == ETHARP_STATE_STABLE) &&
891 (ip_addr_cmp(ipaddr, &arp_table[etharp_cached_entry].ipaddr))) {
892 /* the per-pcb-cached entry is stable and the right one! */
893 ETHARP_STATS_INC(etharp.cachehit);
894 return etharp_send_ip(netif, q, (struct eth_addr*)(netif->hwaddr),
895 &arp_table[etharp_cached_entry].ethaddr);
897 #if LWIP_NETIF_HWADDRHINT
900 #endif /* LWIP_NETIF_HWADDRHINT */
901 /* queue on destination Ethernet address belonging to ipaddr */
902 return etharp_query(netif, ipaddr, q);
905 /* continuation for multicast/broadcast destinations */
906 /* obtain source Ethernet address of the given interface */
907 /* send packet directly on the link */
908 return etharp_send_ip(netif, q, (struct eth_addr*)(netif->hwaddr), dest);
912 * Send an ARP request for the given IP address and/or queue a packet.
914 * If the IP address was not yet in the cache, a pending ARP cache entry
915 * is added and an ARP request is sent for the given address. The packet
916 * is queued on this entry.
918 * If the IP address was already pending in the cache, a new ARP request
919 * is sent for the given address. The packet is queued on this entry.
921 * If the IP address was already stable in the cache, and a packet is
922 * given, it is directly sent and no ARP request is sent out.
924 * If the IP address was already stable in the cache, and no packet is
925 * given, an ARP request is sent out.
927 * @param netif The lwIP network interface on which ipaddr
928 * must be queried for.
929 * @param ipaddr The IP address to be resolved.
930 * @param q If non-NULL, a pbuf that must be delivered to the IP address.
931 * q is not freed by this function.
933 * @note q must only be ONE packet, not a packet queue!
935 * @return
936 * - ERR_BUF Could not make room for Ethernet header.
937 * - ERR_MEM Hardware address unknown, and no more ARP entries available
938 * to query for address or queue the packet.
939 * - ERR_MEM Could not queue packet due to memory shortage.
940 * - ERR_RTE No route to destination (no gateway to external networks).
941 * - ERR_ARG Non-unicast address given, those will not appear in ARP cache.
944 err_t
945 etharp_query(struct netif *netif, ip_addr_t *ipaddr, struct pbuf *q)
947 struct eth_addr * srcaddr = (struct eth_addr *)netif->hwaddr;
948 err_t result = ERR_MEM;
949 s8_t i; /* ARP entry index */
951 /* non-unicast address? */
952 if (ip_addr_isbroadcast(ipaddr, netif) ||
953 ip_addr_ismulticast(ipaddr) ||
954 ip_addr_isany(ipaddr)) {
955 LWIP_DEBUGF(ETHARP_DEBUG | LWIP_DBG_TRACE, ("etharp_query: will not add non-unicast IP address to ARP cache\n"));
956 return ERR_ARG;
959 /* find entry in ARP cache, ask to create entry if queueing packet */
960 i = find_entry(ipaddr, ETHARP_FLAG_TRY_HARD);
962 /* could not find or create entry? */
963 if (i < 0) {
964 LWIP_DEBUGF(ETHARP_DEBUG | LWIP_DBG_TRACE, ("etharp_query: could not create ARP entry\n"));
965 if (q) {
966 LWIP_DEBUGF(ETHARP_DEBUG | LWIP_DBG_TRACE, ("etharp_query: packet dropped\n"));
967 ETHARP_STATS_INC(etharp.memerr);
969 return (err_t)i;
972 /* mark a fresh entry as pending (we just sent a request) */
973 if (arp_table[i].state == ETHARP_STATE_EMPTY) {
974 arp_table[i].state = ETHARP_STATE_PENDING;
977 /* { i is either a STABLE or (new or existing) PENDING entry } */
978 LWIP_ASSERT("arp_table[i].state == PENDING or STABLE",
979 ((arp_table[i].state == ETHARP_STATE_PENDING) ||
980 (arp_table[i].state == ETHARP_STATE_STABLE)));
982 /* do we have a pending entry? or an implicit query request? */
983 if ((arp_table[i].state == ETHARP_STATE_PENDING) || (q == NULL)) {
984 /* try to resolve it; send out ARP request */
985 result = etharp_request(netif, ipaddr);
986 if (result != ERR_OK) {
987 /* ARP request couldn't be sent */
988 /* We don't re-send arp request in etharp_tmr, but we still queue packets,
989 since this failure could be temporary, and the next packet calling
990 etharp_query again could lead to sending the queued packets. */
992 if (q == NULL) {
993 return result;
997 /* packet given? */
998 LWIP_ASSERT("q != NULL", q != NULL);
999 /* stable entry? */
1000 if (arp_table[i].state == ETHARP_STATE_STABLE) {
1001 /* we have a valid IP->Ethernet address mapping */
1002 ETHARP_SET_HINT(netif, i);
1003 /* send the packet */
1004 result = etharp_send_ip(netif, q, srcaddr, &(arp_table[i].ethaddr));
1005 /* pending entry? (either just created or already pending */
1006 } else if (arp_table[i].state == ETHARP_STATE_PENDING) {
1007 #if ARP_QUEUEING /* queue the given q packet */
1008 struct pbuf *p;
1009 int copy_needed = 0;
1010 /* IF q includes a PBUF_REF, PBUF_POOL or PBUF_RAM, we have no choice but
1011 * to copy the whole queue into a new PBUF_RAM (see bug #11400)
1012 * PBUF_ROMs can be left as they are, since ROM must not get changed. */
1013 p = q;
1014 while (p) {
1015 LWIP_ASSERT("no packet queues allowed!", (p->len != p->tot_len) || (p->next == 0));
1016 if(p->type != PBUF_ROM) {
1017 copy_needed = 1;
1018 break;
1020 p = p->next;
1022 if(copy_needed) {
1023 /* copy the whole packet into new pbufs */
1024 p = pbuf_alloc(PBUF_RAW, p->tot_len, PBUF_RAM);
1025 if(p != NULL) {
1026 if (pbuf_copy(p, q) != ERR_OK) {
1027 pbuf_free(p);
1028 p = NULL;
1031 } else {
1032 /* referencing the old pbuf is enough */
1033 p = q;
1034 pbuf_ref(p);
1036 /* packet could be taken over? */
1037 if (p != NULL) {
1038 /* queue packet ... */
1039 struct etharp_q_entry *new_entry;
1040 /* allocate a new arp queue entry */
1041 new_entry = (struct etharp_q_entry *)memp_malloc(MEMP_ARP_QUEUE);
1042 if (new_entry != NULL) {
1043 new_entry->next = 0;
1044 new_entry->p = p;
1045 if(arp_table[i].q != NULL) {
1046 /* queue was already existent, append the new entry to the end */
1047 struct etharp_q_entry *r;
1048 r = arp_table[i].q;
1049 while (r->next != NULL) {
1050 r = r->next;
1052 r->next = new_entry;
1053 } else {
1054 /* queue did not exist, first item in queue */
1055 arp_table[i].q = new_entry;
1057 LWIP_DEBUGF(ETHARP_DEBUG | LWIP_DBG_TRACE, ("etharp_query: queued packet %p on ARP entry %"S16_F"\n", (void *)q, (s16_t)i));
1058 result = ERR_OK;
1059 } else {
1060 /* the pool MEMP_ARP_QUEUE is empty */
1061 pbuf_free(p);
1062 LWIP_DEBUGF(ETHARP_DEBUG | LWIP_DBG_TRACE, ("etharp_query: could not queue a copy of PBUF_REF packet %p (out of memory)\n", (void *)q));
1063 /* { result == ERR_MEM } through initialization */
1065 } else {
1066 ETHARP_STATS_INC(etharp.memerr);
1067 LWIP_DEBUGF(ETHARP_DEBUG | LWIP_DBG_TRACE, ("etharp_query: could not queue a copy of PBUF_REF packet %p (out of memory)\n", (void *)q));
1068 /* { result == ERR_MEM } through initialization */
1070 #else /* ARP_QUEUEING */
1071 /* q && state == PENDING && ARP_QUEUEING == 0 => result = ERR_MEM */
1072 /* { result == ERR_MEM } through initialization */
1073 LWIP_DEBUGF(ETHARP_DEBUG | LWIP_DBG_TRACE, ("etharp_query: Ethernet destination address unknown, queueing disabled, packet %p dropped\n", (void *)q));
1074 #endif /* ARP_QUEUEING */
1076 return result;
1080 * Send a raw ARP packet (opcode and all addresses can be modified)
1082 * @param netif the lwip network interface on which to send the ARP packet
1083 * @param ethsrc_addr the source MAC address for the ethernet header
1084 * @param ethdst_addr the destination MAC address for the ethernet header
1085 * @param hwsrc_addr the source MAC address for the ARP protocol header
1086 * @param ipsrc_addr the source IP address for the ARP protocol header
1087 * @param hwdst_addr the destination MAC address for the ARP protocol header
1088 * @param ipdst_addr the destination IP address for the ARP protocol header
1089 * @param opcode the type of the ARP packet
1090 * @return ERR_OK if the ARP packet has been sent
1091 * ERR_MEM if the ARP packet couldn't be allocated
1092 * any other err_t on failure
1094 #if !LWIP_AUTOIP
1095 static
1096 #endif /* LWIP_AUTOIP */
1097 err_t
1098 etharp_raw(struct netif *netif, const struct eth_addr *ethsrc_addr,
1099 const struct eth_addr *ethdst_addr,
1100 const struct eth_addr *hwsrc_addr, const ip_addr_t *ipsrc_addr,
1101 const struct eth_addr *hwdst_addr, const ip_addr_t *ipdst_addr,
1102 const u16_t opcode)
1104 struct pbuf *p;
1105 err_t result = ERR_OK;
1106 struct eth_hdr *ethhdr;
1107 struct etharp_hdr *hdr;
1108 #if LWIP_AUTOIP
1109 const u8_t * ethdst_hwaddr;
1110 #endif /* LWIP_AUTOIP */
1112 /* allocate a pbuf for the outgoing ARP request packet */
1113 p = pbuf_alloc(PBUF_RAW, SIZEOF_ETHARP_PACKET, PBUF_RAM);
1114 /* could allocate a pbuf for an ARP request? */
1115 if (p == NULL) {
1116 LWIP_DEBUGF(ETHARP_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_LEVEL_SERIOUS,
1117 ("etharp_raw: could not allocate pbuf for ARP request.\n"));
1118 ETHARP_STATS_INC(etharp.memerr);
1119 return ERR_MEM;
1121 LWIP_ASSERT("check that first pbuf can hold struct etharp_hdr",
1122 (p->len >= SIZEOF_ETHARP_PACKET));
1124 ethhdr = (struct eth_hdr *)p->payload;
1125 hdr = (struct etharp_hdr *)((u8_t*)ethhdr + SIZEOF_ETH_HDR);
1126 LWIP_DEBUGF(ETHARP_DEBUG | LWIP_DBG_TRACE, ("etharp_raw: sending raw ARP packet.\n"));
1127 hdr->opcode = htons(opcode);
1129 LWIP_ASSERT("netif->hwaddr_len must be the same as ETHARP_HWADDR_LEN for etharp!",
1130 (netif->hwaddr_len == ETHARP_HWADDR_LEN));
1131 #if LWIP_AUTOIP
1132 /* If we are using Link-Local, all ARP packets that contain a Link-Local
1133 * 'sender IP address' MUST be sent using link-layer broadcast instead of
1134 * link-layer unicast. (See RFC3927 Section 2.5, last paragraph) */
1135 ethdst_hwaddr = ip_addr_islinklocal(ipsrc_addr) ? (u8_t*)(ethbroadcast.addr) : ethdst_addr->addr;
1136 #endif /* LWIP_AUTOIP */
1137 /* Write the ARP MAC-Addresses */
1138 ETHADDR16_COPY(&hdr->shwaddr, hwsrc_addr);
1139 ETHADDR16_COPY(&hdr->dhwaddr, hwdst_addr);
1140 /* Write the Ethernet MAC-Addresses */
1141 #if LWIP_AUTOIP
1142 ETHADDR16_COPY(&ethhdr->dest, ethdst_hwaddr);
1143 #else /* LWIP_AUTOIP */
1144 ETHADDR16_COPY(&ethhdr->dest, ethdst_addr);
1145 #endif /* LWIP_AUTOIP */
1146 ETHADDR16_COPY(&ethhdr->src, ethsrc_addr);
1147 /* Copy struct ip_addr2 to aligned ip_addr, to support compilers without
1148 * structure packing. */
1149 IPADDR2_COPY(&hdr->sipaddr, ipsrc_addr);
1150 IPADDR2_COPY(&hdr->dipaddr, ipdst_addr);
1152 hdr->hwtype = PP_HTONS(HWTYPE_ETHERNET);
1153 hdr->proto = PP_HTONS(ETHTYPE_IP);
1154 /* set hwlen and protolen */
1155 hdr->hwlen = ETHARP_HWADDR_LEN;
1156 hdr->protolen = sizeof(ip_addr_t);
1158 ethhdr->type = PP_HTONS(ETHTYPE_ARP);
1159 /* send ARP query */
1160 result = netif->linkoutput(netif, p);
1161 ETHARP_STATS_INC(etharp.xmit);
1162 /* free ARP query packet */
1163 pbuf_free(p);
1164 p = NULL;
1165 /* could not allocate pbuf for ARP request */
1167 return result;
1171 * Send an ARP request packet asking for ipaddr.
1173 * @param netif the lwip network interface on which to send the request
1174 * @param ipaddr the IP address for which to ask
1175 * @return ERR_OK if the request has been sent
1176 * ERR_MEM if the ARP packet couldn't be allocated
1177 * any other err_t on failure
1179 err_t
1180 etharp_request(struct netif *netif, ip_addr_t *ipaddr)
1182 LWIP_DEBUGF(ETHARP_DEBUG | LWIP_DBG_TRACE, ("etharp_request: sending ARP request.\n"));
1183 return etharp_raw(netif, (struct eth_addr *)netif->hwaddr, &ethbroadcast,
1184 (struct eth_addr *)netif->hwaddr, &netif->ip_addr, &ethzero,
1185 ipaddr, ARP_REQUEST);
1187 #endif /* LWIP_ARP */
1190 * Process received ethernet frames. Using this function instead of directly
1191 * calling ip_input and passing ARP frames through etharp in ethernetif_input,
1192 * the ARP cache is protected from concurrent access.
1194 * @param p the recevied packet, p->payload pointing to the ethernet header
1195 * @param netif the network interface on which the packet was received
1197 err_t
1198 ethernet_input(struct pbuf *p, struct netif *netif)
1200 struct eth_hdr* ethhdr;
1201 u16_t type;
1203 /* points to packet payload, which starts with an Ethernet header */
1204 ethhdr = (struct eth_hdr *)p->payload;
1205 LWIP_DEBUGF(ETHARP_DEBUG | LWIP_DBG_TRACE,
1206 ("ethernet_input: dest:%"X8_F":%"X8_F":%"X8_F":%"X8_F":%"X8_F":%"X8_F", src:%"X8_F":%"X8_F":%"X8_F":%"X8_F":%"X8_F":%"X8_F", type:%"X16_F"\n",
1207 (unsigned)ethhdr->dest.addr[0], (unsigned)ethhdr->dest.addr[1], (unsigned)ethhdr->dest.addr[2],
1208 (unsigned)ethhdr->dest.addr[3], (unsigned)ethhdr->dest.addr[4], (unsigned)ethhdr->dest.addr[5],
1209 (unsigned)ethhdr->src.addr[0], (unsigned)ethhdr->src.addr[1], (unsigned)ethhdr->src.addr[2],
1210 (unsigned)ethhdr->src.addr[3], (unsigned)ethhdr->src.addr[4], (unsigned)ethhdr->src.addr[5],
1211 (unsigned)htons(ethhdr->type)));
1213 type = ethhdr->type;
1214 #if ETHARP_SUPPORT_VLAN
1215 if (type == PP_HTONS(ETHTYPE_VLAN)) {
1216 struct eth_vlan_hdr *vlan = (struct eth_vlan_hdr*)(((char*)ethhdr) + SIZEOF_ETH_HDR);
1217 #ifdef ETHARP_VLAN_CHECK /* if not, allow all VLANs */
1218 if (VLAN_ID(vlan) != ETHARP_VLAN_CHECK) {
1219 /* silently ignore this packet: not for our VLAN */
1220 pbuf_free(p);
1221 return ERR_OK;
1223 #endif /* ETHARP_VLAN_CHECK */
1224 type = vlan->tpid;
1226 #endif /* ETHARP_SUPPORT_VLAN */
1228 #if LWIP_ARP_FILTER_NETIF
1229 netif = LWIP_ARP_FILTER_NETIF_FN(p, netif, htons(type));
1230 #endif /* LWIP_ARP_FILTER_NETIF*/
1232 switch (type) {
1233 #if LWIP_ARP
1234 /* IP packet? */
1235 case PP_HTONS(ETHTYPE_IP):
1236 if (!(netif->flags & NETIF_FLAG_ETHARP)) {
1237 goto free_and_return;
1239 #if ETHARP_TRUST_IP_MAC
1240 /* update ARP table */
1241 etharp_ip_input(netif, p);
1242 #endif /* ETHARP_TRUST_IP_MAC */
1243 /* skip Ethernet header */
1244 if(pbuf_header(p, -(s16_t)SIZEOF_ETH_HDR)) {
1245 LWIP_ASSERT("Can't move over header in packet", 0);
1246 goto free_and_return;
1247 } else {
1248 /* pass to IP layer */
1249 ip_input(p, netif);
1251 break;
1253 case PP_HTONS(ETHTYPE_ARP):
1254 if (!(netif->flags & NETIF_FLAG_ETHARP)) {
1255 goto free_and_return;
1257 /* pass p to ARP module */
1258 etharp_arp_input(netif, (struct eth_addr*)(netif->hwaddr), p);
1259 break;
1260 #endif /* LWIP_ARP */
1261 #if PPPOE_SUPPORT
1262 case PP_HTONS(ETHTYPE_PPPOEDISC): /* PPP Over Ethernet Discovery Stage */
1263 pppoe_disc_input(netif, p);
1264 break;
1266 case PP_HTONS(ETHTYPE_PPPOE): /* PPP Over Ethernet Session Stage */
1267 pppoe_data_input(netif, p);
1268 break;
1269 #endif /* PPPOE_SUPPORT */
1271 default:
1272 ETHARP_STATS_INC(etharp.proterr);
1273 ETHARP_STATS_INC(etharp.drop);
1274 goto free_and_return;
1277 /* This means the pbuf is freed or consumed,
1278 so the caller doesn't have to free it again */
1279 return ERR_OK;
1281 free_and_return:
1282 pbuf_free(p);
1283 return ERR_OK;
1285 #endif /* LWIP_ARP || LWIP_ETHERNET */