Modified version of NetServices. Fixes an issue where connections failed should the HTTP response status line be received in a packet on its own prior to any further headers. Changes are made to the HTTPClient.cpp file's readHeaders method.

Committer:
andrewbonney
Date:
Fri Apr 08 14:39:41 2011 +0000
Revision:
0:ec559500a63f

        

Who changed what in which revision?

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