1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /* linux/net/ipv4/arp.c
4 * Copyright (C) 1994 by Florian La Roche
6 * This module implements the Address Resolution Protocol ARP (RFC 826),
7 * which is used to convert IP addresses (or in the future maybe other
8 * high-level addresses) into a low-level hardware address (like an Ethernet
12 * Alan Cox : Removed the Ethernet assumptions in
14 * Alan Cox : Fixed some small errors in the ARP
16 * Alan Cox : Allow >4K in /proc
17 * Alan Cox : Make ARP add its own protocol entry
18 * Ross Martin : Rewrote arp_rcv() and arp_get_info()
19 * Stephen Henson : Add AX25 support to arp_get_info()
20 * Alan Cox : Drop data when a device is downed.
21 * Alan Cox : Use init_timer().
22 * Alan Cox : Double lock fixes.
23 * Martin Seine : Move the arphdr structure
24 * to if_arp.h for compatibility.
25 * with BSD based programs.
26 * Andrew Tridgell : Added ARP netmask code and
27 * re-arranged proxy handling.
28 * Alan Cox : Changed to use notifiers.
29 * Niibe Yutaka : Reply for this device or proxies only.
30 * Alan Cox : Don't proxy across hardware types!
31 * Jonathan Naylor : Added support for NET/ROM.
32 * Mike Shaver : RFC1122 checks.
33 * Jonathan Naylor : Only lookup the hardware address for
34 * the correct hardware type.
35 * Germano Caronni : Assorted subtle races.
36 * Craig Schlenter : Don't modify permanent entry
38 * Russ Nelson : Tidied up a few bits.
39 * Alexey Kuznetsov: Major changes to caching and behaviour,
40 * eg intelligent arp probing and
42 * of host down events.
43 * Alan Cox : Missing unlock in device events.
44 * Eckes : ARP ioctl control errors.
45 * Alexey Kuznetsov: Arp free fix.
46 * Manuel Rodriguez: Gratuitous ARP.
47 * Jonathan Layes : Added arpd support through kerneld
48 * message queue (960314)
49 * Mike Shaver : /proc/sys/net/ipv4/arp_* support
50 * Mike McLagan : Routing by source
51 * Stuart Cheshire : Metricom and grat arp fixes
52 * *** FOR 2.1 clean this up ***
53 * Lawrence V. Stefani: (08/12/96) Added FDDI support.
54 * Alan Cox : Took the AP1000 nasty FDDI hack and
55 * folded into the mainstream FDDI code.
56 * Ack spit, Linus how did you allow that
58 * Jes Sorensen : Make FDDI work again in 2.1.x and
59 * clean up the APFDDI & gen. FDDI bits.
60 * Alexey Kuznetsov: new arp state machine;
61 * now it is in net/core/neighbour.c.
62 * Krzysztof Halasa: Added Frame Relay ARP support.
63 * Arnaldo C. Melo : convert /proc/net/arp to seq_file
64 * Shmulik Hen: Split arp_send to arp_create and
65 * arp_xmit so intermediate drivers like
66 * bonding can change the skb before
67 * sending (e.g. insert 8021q tag).
68 * Harald Welte : convert to make use of jenkins hash
69 * Jesper D. Brouer: Proxy ARP PVLAN RFC 3069 support.
72 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
74 #include <linux/module.h>
75 #include <linux/types.h>
76 #include <linux/string.h>
77 #include <linux/kernel.h>
78 #include <linux/capability.h>
79 #include <linux/socket.h>
80 #include <linux/sockios.h>
81 #include <linux/errno.h>
84 #include <linux/inet.h>
85 #include <linux/inetdevice.h>
86 #include <linux/netdevice.h>
87 #include <linux/etherdevice.h>
88 #include <linux/fddidevice.h>
89 #include <linux/if_arp.h>
90 #include <linux/skbuff.h>
91 #include <linux/proc_fs.h>
92 #include <linux/seq_file.h>
93 #include <linux/stat.h>
94 #include <linux/init.h>
95 #include <linux/net.h>
96 #include <linux/rcupdate.h>
97 #include <linux/slab.h>
99 #include <linux/sysctl.h>
102 #include <net/net_namespace.h>
104 #include <net/icmp.h>
105 #include <net/route.h>
106 #include <net/protocol.h>
108 #include <net/sock.h>
110 #include <net/ax25.h>
111 #include <net/netrom.h>
112 #include <net/dst_metadata.h>
113 #include <net/ip_tunnels.h>
115 #include <linux/uaccess.h>
117 #include <linux/netfilter_arp.h>
120 * Interface to generic neighbour cache.
122 static u32 arp_hash(const void *pkey, const struct net_device *dev, __u32 *hash_rnd);
123 static bool arp_key_eq(const struct neighbour *n, const void *pkey);
124 static int arp_constructor(struct neighbour *neigh);
125 static void arp_solicit(struct neighbour *neigh, struct sk_buff *skb);
126 static void arp_error_report(struct neighbour *neigh, struct sk_buff *skb);
127 static void parp_redo(struct sk_buff *skb);
128 static int arp_is_multicast(const void *pkey);
130 static const struct neigh_ops arp_generic_ops = {
132 .solicit = arp_solicit,
133 .error_report = arp_error_report,
134 .output = neigh_resolve_output,
135 .connected_output = neigh_connected_output,
138 static const struct neigh_ops arp_hh_ops = {
140 .solicit = arp_solicit,
141 .error_report = arp_error_report,
142 .output = neigh_resolve_output,
143 .connected_output = neigh_resolve_output,
146 static const struct neigh_ops arp_direct_ops = {
148 .output = neigh_direct_output,
149 .connected_output = neigh_direct_output,
152 struct neigh_table arp_tbl = {
155 .protocol = cpu_to_be16(ETH_P_IP),
157 .key_eq = arp_key_eq,
158 .constructor = arp_constructor,
159 .proxy_redo = parp_redo,
160 .is_multicast = arp_is_multicast,
164 .reachable_time = 30 * HZ,
166 [NEIGH_VAR_MCAST_PROBES] = 3,
167 [NEIGH_VAR_UCAST_PROBES] = 3,
168 [NEIGH_VAR_RETRANS_TIME] = 1 * HZ,
169 [NEIGH_VAR_BASE_REACHABLE_TIME] = 30 * HZ,
170 [NEIGH_VAR_DELAY_PROBE_TIME] = 5 * HZ,
171 [NEIGH_VAR_INTERVAL_PROBE_TIME_MS] = 5 * HZ,
172 [NEIGH_VAR_GC_STALETIME] = 60 * HZ,
173 [NEIGH_VAR_QUEUE_LEN_BYTES] = SK_WMEM_MAX,
174 [NEIGH_VAR_PROXY_QLEN] = 64,
175 [NEIGH_VAR_ANYCAST_DELAY] = 1 * HZ,
176 [NEIGH_VAR_PROXY_DELAY] = (8 * HZ) / 10,
177 [NEIGH_VAR_LOCKTIME] = 1 * HZ,
180 .gc_interval = 30 * HZ,
185 EXPORT_SYMBOL(arp_tbl);
187 int arp_mc_map(__be32 addr, u8 *haddr, struct net_device *dev, int dir)
193 ip_eth_mc_map(addr, haddr);
195 case ARPHRD_INFINIBAND:
196 ip_ib_mc_map(addr, dev->broadcast, haddr);
199 ip_ipgre_mc_map(addr, dev->broadcast, haddr);
203 memcpy(haddr, dev->broadcast, dev->addr_len);
211 static u32 arp_hash(const void *pkey,
212 const struct net_device *dev,
215 return arp_hashfn(pkey, dev, hash_rnd);
218 static bool arp_key_eq(const struct neighbour *neigh, const void *pkey)
220 return neigh_key_eq32(neigh, pkey);
223 static int arp_constructor(struct neighbour *neigh)
226 struct net_device *dev = neigh->dev;
227 struct in_device *in_dev;
228 struct neigh_parms *parms;
229 u32 inaddr_any = INADDR_ANY;
231 if (dev->flags & (IFF_LOOPBACK | IFF_POINTOPOINT))
232 memcpy(neigh->primary_key, &inaddr_any, arp_tbl.key_len);
234 addr = *(__be32 *)neigh->primary_key;
236 in_dev = __in_dev_get_rcu(dev);
242 neigh->type = inet_addr_type_dev_table(dev_net(dev), dev, addr);
244 parms = in_dev->arp_parms;
245 __neigh_parms_put(neigh->parms);
246 neigh->parms = neigh_parms_clone(parms);
249 if (!dev->header_ops) {
250 neigh->nud_state = NUD_NOARP;
251 neigh->ops = &arp_direct_ops;
252 neigh->output = neigh_direct_output;
254 /* Good devices (checked by reading texts, but only Ethernet is
257 ARPHRD_ETHER: (ethernet, apfddi)
260 ARPHRD_METRICOM: (strip)
264 ARPHRD_IPDDP will also work, if author repairs it.
265 I did not it, because this driver does not work even
269 if (neigh->type == RTN_MULTICAST) {
270 neigh->nud_state = NUD_NOARP;
271 arp_mc_map(addr, neigh->ha, dev, 1);
272 } else if (dev->flags & (IFF_NOARP | IFF_LOOPBACK)) {
273 neigh->nud_state = NUD_NOARP;
274 memcpy(neigh->ha, dev->dev_addr, dev->addr_len);
275 } else if (neigh->type == RTN_BROADCAST ||
276 (dev->flags & IFF_POINTOPOINT)) {
277 neigh->nud_state = NUD_NOARP;
278 memcpy(neigh->ha, dev->broadcast, dev->addr_len);
281 if (dev->header_ops->cache)
282 neigh->ops = &arp_hh_ops;
284 neigh->ops = &arp_generic_ops;
286 if (neigh->nud_state & NUD_VALID)
287 neigh->output = neigh->ops->connected_output;
289 neigh->output = neigh->ops->output;
294 static void arp_error_report(struct neighbour *neigh, struct sk_buff *skb)
296 dst_link_failure(skb);
297 kfree_skb_reason(skb, SKB_DROP_REASON_NEIGH_FAILED);
300 /* Create and send an arp packet. */
301 static void arp_send_dst(int type, int ptype, __be32 dest_ip,
302 struct net_device *dev, __be32 src_ip,
303 const unsigned char *dest_hw,
304 const unsigned char *src_hw,
305 const unsigned char *target_hw,
306 struct dst_entry *dst)
310 /* arp on this interface. */
311 if (dev->flags & IFF_NOARP)
314 skb = arp_create(type, ptype, dest_ip, dev, src_ip,
315 dest_hw, src_hw, target_hw);
319 skb_dst_set(skb, dst_clone(dst));
323 void arp_send(int type, int ptype, __be32 dest_ip,
324 struct net_device *dev, __be32 src_ip,
325 const unsigned char *dest_hw, const unsigned char *src_hw,
326 const unsigned char *target_hw)
328 arp_send_dst(type, ptype, dest_ip, dev, src_ip, dest_hw, src_hw,
331 EXPORT_SYMBOL(arp_send);
333 static void arp_solicit(struct neighbour *neigh, struct sk_buff *skb)
336 u8 dst_ha[MAX_ADDR_LEN], *dst_hw = NULL;
337 struct net_device *dev = neigh->dev;
338 __be32 target = *(__be32 *)neigh->primary_key;
339 int probes = atomic_read(&neigh->probes);
340 struct in_device *in_dev;
341 struct dst_entry *dst = NULL;
344 in_dev = __in_dev_get_rcu(dev);
349 switch (IN_DEV_ARP_ANNOUNCE(in_dev)) {
351 case 0: /* By default announce any local IP */
352 if (skb && inet_addr_type_dev_table(dev_net(dev), dev,
353 ip_hdr(skb)->saddr) == RTN_LOCAL)
354 saddr = ip_hdr(skb)->saddr;
356 case 1: /* Restrict announcements of saddr in same subnet */
359 saddr = ip_hdr(skb)->saddr;
360 if (inet_addr_type_dev_table(dev_net(dev), dev,
361 saddr) == RTN_LOCAL) {
362 /* saddr should be known to target */
363 if (inet_addr_onlink(in_dev, target, saddr))
368 case 2: /* Avoid secondary IPs, get a primary/preferred one */
374 saddr = inet_select_addr(dev, target, RT_SCOPE_LINK);
376 probes -= NEIGH_VAR(neigh->parms, UCAST_PROBES);
378 if (!(READ_ONCE(neigh->nud_state) & NUD_VALID))
379 pr_debug("trying to ucast probe in NUD_INVALID\n");
380 neigh_ha_snapshot(dst_ha, neigh, dev);
383 probes -= NEIGH_VAR(neigh->parms, APP_PROBES);
390 if (skb && !(dev->priv_flags & IFF_XMIT_DST_RELEASE))
392 arp_send_dst(ARPOP_REQUEST, ETH_P_ARP, target, dev, saddr,
393 dst_hw, dev->dev_addr, NULL, dst);
396 static int arp_ignore(struct in_device *in_dev, __be32 sip, __be32 tip)
398 struct net *net = dev_net(in_dev->dev);
401 switch (IN_DEV_ARP_IGNORE(in_dev)) {
402 case 0: /* Reply, the tip is already validated */
404 case 1: /* Reply only if tip is configured on the incoming interface */
406 scope = RT_SCOPE_HOST;
409 * Reply only if tip is configured on the incoming interface
410 * and is in same subnet as sip
412 scope = RT_SCOPE_HOST;
414 case 3: /* Do not reply for scope host addresses */
416 scope = RT_SCOPE_LINK;
419 case 4: /* Reserved */
424 case 8: /* Do not reply */
429 return !inet_confirm_addr(net, in_dev, sip, tip, scope);
432 static int arp_accept(struct in_device *in_dev, __be32 sip)
434 struct net *net = dev_net(in_dev->dev);
435 int scope = RT_SCOPE_LINK;
437 switch (IN_DEV_ARP_ACCEPT(in_dev)) {
438 case 0: /* Don't create new entries from garp */
440 case 1: /* Create new entries from garp */
442 case 2: /* Create a neighbor in the arp table only if sip
443 * is in the same subnet as an address configured
444 * on the interface that received the garp message
446 return !!inet_confirm_addr(net, in_dev, sip, 0, scope);
452 static int arp_filter(__be32 sip, __be32 tip, struct net_device *dev)
456 /*unsigned long now; */
457 struct net *net = dev_net(dev);
459 rt = ip_route_output(net, sip, tip, 0, l3mdev_master_ifindex_rcu(dev));
462 if (rt->dst.dev != dev) {
463 __NET_INC_STATS(net, LINUX_MIB_ARPFILTER);
471 * Check if we can use proxy ARP for this path
473 static inline int arp_fwd_proxy(struct in_device *in_dev,
474 struct net_device *dev, struct rtable *rt)
476 struct in_device *out_dev;
479 if (rt->dst.dev == dev)
482 if (!IN_DEV_PROXY_ARP(in_dev))
484 imi = IN_DEV_MEDIUM_ID(in_dev);
490 /* place to check for proxy_arp for routes */
492 out_dev = __in_dev_get_rcu(rt->dst.dev);
494 omi = IN_DEV_MEDIUM_ID(out_dev);
496 return omi != imi && omi != -1;
500 * Check for RFC3069 proxy arp private VLAN (allow to send back to same dev)
502 * RFC3069 supports proxy arp replies back to the same interface. This
503 * is done to support (ethernet) switch features, like RFC 3069, where
504 * the individual ports are not allowed to communicate with each
505 * other, BUT they are allowed to talk to the upstream router. As
506 * described in RFC 3069, it is possible to allow these hosts to
507 * communicate through the upstream router, by proxy_arp'ing.
509 * RFC 3069: "VLAN Aggregation for Efficient IP Address Allocation"
511 * This technology is known by different names:
512 * In RFC 3069 it is called VLAN Aggregation.
513 * Cisco and Allied Telesyn call it Private VLAN.
514 * Hewlett-Packard call it Source-Port filtering or port-isolation.
515 * Ericsson call it MAC-Forced Forwarding (RFC Draft).
518 static inline int arp_fwd_pvlan(struct in_device *in_dev,
519 struct net_device *dev, struct rtable *rt,
520 __be32 sip, __be32 tip)
522 /* Private VLAN is only concerned about the same ethernet segment */
523 if (rt->dst.dev != dev)
526 /* Don't reply on self probes (often done by windowz boxes)*/
530 if (IN_DEV_PROXY_ARP_PVLAN(in_dev))
537 * Interface to link layer: send routine and receive handler.
541 * Create an arp packet. If dest_hw is not set, we create a broadcast
544 struct sk_buff *arp_create(int type, int ptype, __be32 dest_ip,
545 struct net_device *dev, __be32 src_ip,
546 const unsigned char *dest_hw,
547 const unsigned char *src_hw,
548 const unsigned char *target_hw)
552 unsigned char *arp_ptr;
553 int hlen = LL_RESERVED_SPACE(dev);
554 int tlen = dev->needed_tailroom;
560 skb = alloc_skb(arp_hdr_len(dev) + hlen + tlen, GFP_ATOMIC);
564 skb_reserve(skb, hlen);
565 skb_reset_network_header(skb);
566 arp = skb_put(skb, arp_hdr_len(dev));
568 skb->protocol = htons(ETH_P_ARP);
570 src_hw = dev->dev_addr;
572 dest_hw = dev->broadcast;
575 * Fill the device header for the ARP frame
577 if (dev_hard_header(skb, dev, ptype, dest_hw, src_hw, skb->len) < 0)
581 * Fill out the arp protocol part.
583 * The arp hardware type should match the device type, except for FDDI,
584 * which (according to RFC 1390) should always equal 1 (Ethernet).
587 * Exceptions everywhere. AX.25 uses the AX.25 PID value not the
588 * DIX code for the protocol. Make these device structure fields.
592 arp->ar_hrd = htons(dev->type);
593 arp->ar_pro = htons(ETH_P_IP);
596 #if IS_ENABLED(CONFIG_AX25)
598 arp->ar_hrd = htons(ARPHRD_AX25);
599 arp->ar_pro = htons(AX25_P_IP);
602 #if IS_ENABLED(CONFIG_NETROM)
604 arp->ar_hrd = htons(ARPHRD_NETROM);
605 arp->ar_pro = htons(AX25_P_IP);
610 #if IS_ENABLED(CONFIG_FDDI)
612 arp->ar_hrd = htons(ARPHRD_ETHER);
613 arp->ar_pro = htons(ETH_P_IP);
618 arp->ar_hln = dev->addr_len;
620 arp->ar_op = htons(type);
622 arp_ptr = (unsigned char *)(arp + 1);
624 memcpy(arp_ptr, src_hw, dev->addr_len);
625 arp_ptr += dev->addr_len;
626 memcpy(arp_ptr, &src_ip, 4);
630 #if IS_ENABLED(CONFIG_FIREWIRE_NET)
631 case ARPHRD_IEEE1394:
636 memcpy(arp_ptr, target_hw, dev->addr_len);
638 memset(arp_ptr, 0, dev->addr_len);
639 arp_ptr += dev->addr_len;
641 memcpy(arp_ptr, &dest_ip, 4);
649 EXPORT_SYMBOL(arp_create);
651 static int arp_xmit_finish(struct net *net, struct sock *sk, struct sk_buff *skb)
653 return dev_queue_xmit(skb);
657 * Send an arp packet.
659 void arp_xmit(struct sk_buff *skb)
661 /* Send it off, maybe filter it using firewalling first. */
662 NF_HOOK(NFPROTO_ARP, NF_ARP_OUT,
663 dev_net(skb->dev), NULL, skb, NULL, skb->dev,
666 EXPORT_SYMBOL(arp_xmit);
668 static bool arp_is_garp(struct net *net, struct net_device *dev,
669 int *addr_type, __be16 ar_op,
670 __be32 sip, __be32 tip,
671 unsigned char *sha, unsigned char *tha)
673 bool is_garp = tip == sip;
675 /* Gratuitous ARP _replies_ also require target hwaddr to be
676 * the same as source.
678 if (is_garp && ar_op == htons(ARPOP_REPLY))
680 /* IPv4 over IEEE 1394 doesn't provide target
681 * hardware address field in its ARP payload.
684 !memcmp(tha, sha, dev->addr_len);
687 *addr_type = inet_addr_type_dev_table(net, dev, sip);
688 if (*addr_type != RTN_UNICAST)
695 * Process an arp request.
698 static int arp_process(struct net *net, struct sock *sk, struct sk_buff *skb)
700 struct net_device *dev = skb->dev;
701 struct in_device *in_dev = __in_dev_get_rcu(dev);
703 unsigned char *arp_ptr;
706 unsigned char *tha = NULL;
708 u16 dev_type = dev->type;
711 struct dst_entry *reply_dst = NULL;
712 bool is_garp = false;
714 /* arp_rcv below verifies the ARP header and verifies the device
725 if (arp->ar_pro != htons(ETH_P_IP) ||
726 htons(dev_type) != arp->ar_hrd)
733 * ETHERNET, and Fibre Channel (which are IEEE 802
734 * devices, according to RFC 2625) devices will accept ARP
735 * hardware types of either 1 (Ethernet) or 6 (IEEE 802.2).
736 * This is the case also of FDDI, where the RFC 1390 says that
737 * FDDI devices should accept ARP hardware of (1) Ethernet,
738 * however, to be more robust, we'll accept both 1 (Ethernet)
741 if ((arp->ar_hrd != htons(ARPHRD_ETHER) &&
742 arp->ar_hrd != htons(ARPHRD_IEEE802)) ||
743 arp->ar_pro != htons(ETH_P_IP))
747 if (arp->ar_pro != htons(AX25_P_IP) ||
748 arp->ar_hrd != htons(ARPHRD_AX25))
752 if (arp->ar_pro != htons(AX25_P_IP) ||
753 arp->ar_hrd != htons(ARPHRD_NETROM))
758 /* Understand only these message types */
760 if (arp->ar_op != htons(ARPOP_REPLY) &&
761 arp->ar_op != htons(ARPOP_REQUEST))
767 arp_ptr = (unsigned char *)(arp + 1);
769 arp_ptr += dev->addr_len;
770 memcpy(&sip, arp_ptr, 4);
773 #if IS_ENABLED(CONFIG_FIREWIRE_NET)
774 case ARPHRD_IEEE1394:
779 arp_ptr += dev->addr_len;
781 memcpy(&tip, arp_ptr, 4);
783 * Check for bad requests for 127.x.x.x and requests for multicast
784 * addresses. If this is one such, delete it.
786 if (ipv4_is_multicast(tip) ||
787 (!IN_DEV_ROUTE_LOCALNET(in_dev) && ipv4_is_loopback(tip)))
791 * For some 802.11 wireless deployments (and possibly other networks),
792 * there will be an ARP proxy and gratuitous ARP frames are attacks
793 * and thus should not be accepted.
795 if (sip == tip && IN_DEV_ORCONF(in_dev, DROP_GRATUITOUS_ARP))
799 * Special case: We must set Frame Relay source Q.922 address
801 if (dev_type == ARPHRD_DLCI)
802 sha = dev->broadcast;
805 * Process entry. The idea here is we want to send a reply if it is a
806 * request for us or if it is a request for someone else that we hold
807 * a proxy for. We want to add an entry to our cache if it is a reply
808 * to us or if it is a request for our address.
809 * (The assumption for this last is that if someone is requesting our
810 * address, they are probably intending to talk to us, so it saves time
811 * if we cache their address. Their address is also probably not in
812 * our cache, since ours is not in their cache.)
814 * Putting this another way, we only care about replies if they are to
815 * us, in which case we add them to the cache. For requests, we care
816 * about those for us and those for our proxies. We reply to both,
817 * and in the case of requests for us we add the requester to the arp
821 if (arp->ar_op == htons(ARPOP_REQUEST) && skb_metadata_dst(skb))
822 reply_dst = (struct dst_entry *)
823 iptunnel_metadata_reply(skb_metadata_dst(skb),
826 /* Special case: IPv4 duplicate address detection packet (RFC2131) */
828 if (arp->ar_op == htons(ARPOP_REQUEST) &&
829 inet_addr_type_dev_table(net, dev, tip) == RTN_LOCAL &&
830 !arp_ignore(in_dev, sip, tip))
831 arp_send_dst(ARPOP_REPLY, ETH_P_ARP, sip, dev, tip,
832 sha, dev->dev_addr, sha, reply_dst);
833 goto out_consume_skb;
836 if (arp->ar_op == htons(ARPOP_REQUEST) &&
837 ip_route_input_noref(skb, tip, sip, 0, dev) == 0) {
839 rt = skb_rtable(skb);
840 addr_type = rt->rt_type;
842 if (addr_type == RTN_LOCAL) {
845 dont_send = arp_ignore(in_dev, sip, tip);
846 if (!dont_send && IN_DEV_ARPFILTER(in_dev))
847 dont_send = arp_filter(sip, tip, dev);
849 n = neigh_event_ns(&arp_tbl, sha, &sip, dev);
851 arp_send_dst(ARPOP_REPLY, ETH_P_ARP,
858 goto out_consume_skb;
859 } else if (IN_DEV_FORWARD(in_dev)) {
860 if (addr_type == RTN_UNICAST &&
861 (arp_fwd_proxy(in_dev, dev, rt) ||
862 arp_fwd_pvlan(in_dev, dev, rt, sip, tip) ||
863 (rt->dst.dev != dev &&
864 pneigh_lookup(&arp_tbl, net, &tip, dev, 0)))) {
865 n = neigh_event_ns(&arp_tbl, sha, &sip, dev);
869 if (NEIGH_CB(skb)->flags & LOCALLY_ENQUEUED ||
870 skb->pkt_type == PACKET_HOST ||
871 NEIGH_VAR(in_dev->arp_parms, PROXY_DELAY) == 0) {
872 arp_send_dst(ARPOP_REPLY, ETH_P_ARP,
877 pneigh_enqueue(&arp_tbl,
878 in_dev->arp_parms, skb);
881 goto out_consume_skb;
886 /* Update our ARP tables */
888 n = __neigh_lookup(&arp_tbl, &sip, dev, 0);
891 if (n || arp_accept(in_dev, sip)) {
892 is_garp = arp_is_garp(net, dev, &addr_type, arp->ar_op,
896 if (arp_accept(in_dev, sip)) {
897 /* Unsolicited ARP is not accepted by default.
898 It is possible, that this option should be enabled for some
899 devices (strip is candidate)
903 (arp->ar_op == htons(ARPOP_REPLY) &&
904 (addr_type == RTN_UNICAST ||
906 /* postpone calculation to as late as possible */
907 inet_addr_type_dev_table(net, dev, sip) ==
909 n = __neigh_lookup(&arp_tbl, &sip, dev, 1);
913 int state = NUD_REACHABLE;
916 /* If several different ARP replies follows back-to-back,
917 use the FIRST one. It is possible, if several proxy
918 agents are active. Taking the first reply prevents
919 arp trashing and chooses the fastest router.
921 override = time_after(jiffies,
923 NEIGH_VAR(n->parms, LOCKTIME)) ||
926 /* Broadcast replies and request packets
927 do not assert neighbour reachability.
929 if (arp->ar_op != htons(ARPOP_REPLY) ||
930 skb->pkt_type != PACKET_HOST)
932 neigh_update(n, sha, state,
933 override ? NEIGH_UPDATE_F_OVERRIDE : 0, 0);
941 dst_release(reply_dst);
942 return NET_RX_SUCCESS;
949 static void parp_redo(struct sk_buff *skb)
951 arp_process(dev_net(skb->dev), NULL, skb);
954 static int arp_is_multicast(const void *pkey)
956 return ipv4_is_multicast(*((__be32 *)pkey));
960 * Receive an arp request from the device layer.
963 static int arp_rcv(struct sk_buff *skb, struct net_device *dev,
964 struct packet_type *pt, struct net_device *orig_dev)
966 const struct arphdr *arp;
968 /* do not tweak dropwatch on an ARP we will ignore */
969 if (dev->flags & IFF_NOARP ||
970 skb->pkt_type == PACKET_OTHERHOST ||
971 skb->pkt_type == PACKET_LOOPBACK)
974 skb = skb_share_check(skb, GFP_ATOMIC);
978 /* ARP header, plus 2 device addresses, plus 2 IP addresses. */
979 if (!pskb_may_pull(skb, arp_hdr_len(dev)))
983 if (arp->ar_hln != dev->addr_len || arp->ar_pln != 4)
986 memset(NEIGH_CB(skb), 0, sizeof(struct neighbour_cb));
988 return NF_HOOK(NFPROTO_ARP, NF_ARP_IN,
989 dev_net(dev), NULL, skb, dev, NULL,
994 return NET_RX_SUCCESS;
1002 * User level interface (ioctl)
1006 * Set (create) an ARP cache entry.
1009 static int arp_req_set_proxy(struct net *net, struct net_device *dev, int on)
1012 IPV4_DEVCONF_ALL(net, PROXY_ARP) = on;
1015 if (__in_dev_get_rtnl(dev)) {
1016 IN_DEV_CONF_SET(__in_dev_get_rtnl(dev), PROXY_ARP, on);
1022 static int arp_req_set_public(struct net *net, struct arpreq *r,
1023 struct net_device *dev)
1025 __be32 ip = ((struct sockaddr_in *)&r->arp_pa)->sin_addr.s_addr;
1026 __be32 mask = ((struct sockaddr_in *)&r->arp_netmask)->sin_addr.s_addr;
1028 if (mask && mask != htonl(0xFFFFFFFF))
1030 if (!dev && (r->arp_flags & ATF_COM)) {
1031 dev = dev_getbyhwaddr_rcu(net, r->arp_ha.sa_family,
1037 if (!pneigh_lookup(&arp_tbl, net, &ip, dev, 1))
1042 return arp_req_set_proxy(net, dev, 1);
1045 static int arp_req_set(struct net *net, struct arpreq *r,
1046 struct net_device *dev)
1049 struct neighbour *neigh;
1052 if (r->arp_flags & ATF_PUBL)
1053 return arp_req_set_public(net, r, dev);
1055 ip = ((struct sockaddr_in *)&r->arp_pa)->sin_addr.s_addr;
1056 if (r->arp_flags & ATF_PERM)
1057 r->arp_flags |= ATF_COM;
1059 struct rtable *rt = ip_route_output(net, ip, 0, RTO_ONLINK, 0);
1068 switch (dev->type) {
1069 #if IS_ENABLED(CONFIG_FDDI)
1072 * According to RFC 1390, FDDI devices should accept ARP
1073 * hardware types of 1 (Ethernet). However, to be more
1074 * robust, we'll accept hardware types of either 1 (Ethernet)
1075 * or 6 (IEEE 802.2).
1077 if (r->arp_ha.sa_family != ARPHRD_FDDI &&
1078 r->arp_ha.sa_family != ARPHRD_ETHER &&
1079 r->arp_ha.sa_family != ARPHRD_IEEE802)
1084 if (r->arp_ha.sa_family != dev->type)
1089 neigh = __neigh_lookup_errno(&arp_tbl, &ip, dev);
1090 err = PTR_ERR(neigh);
1091 if (!IS_ERR(neigh)) {
1092 unsigned int state = NUD_STALE;
1093 if (r->arp_flags & ATF_PERM)
1094 state = NUD_PERMANENT;
1095 err = neigh_update(neigh, (r->arp_flags & ATF_COM) ?
1096 r->arp_ha.sa_data : NULL, state,
1097 NEIGH_UPDATE_F_OVERRIDE |
1098 NEIGH_UPDATE_F_ADMIN, 0);
1099 neigh_release(neigh);
1104 static unsigned int arp_state_to_flags(struct neighbour *neigh)
1106 if (neigh->nud_state&NUD_PERMANENT)
1107 return ATF_PERM | ATF_COM;
1108 else if (neigh->nud_state&NUD_VALID)
1115 * Get an ARP cache entry.
1118 static int arp_req_get(struct arpreq *r, struct net_device *dev)
1120 __be32 ip = ((struct sockaddr_in *) &r->arp_pa)->sin_addr.s_addr;
1121 struct neighbour *neigh;
1124 neigh = neigh_lookup(&arp_tbl, &ip, dev);
1126 if (!(READ_ONCE(neigh->nud_state) & NUD_NOARP)) {
1127 read_lock_bh(&neigh->lock);
1128 memcpy(r->arp_ha.sa_data, neigh->ha, dev->addr_len);
1129 r->arp_flags = arp_state_to_flags(neigh);
1130 read_unlock_bh(&neigh->lock);
1131 r->arp_ha.sa_family = dev->type;
1132 strscpy(r->arp_dev, dev->name, sizeof(r->arp_dev));
1135 neigh_release(neigh);
1140 int arp_invalidate(struct net_device *dev, __be32 ip, bool force)
1142 struct neighbour *neigh = neigh_lookup(&arp_tbl, &ip, dev);
1144 struct neigh_table *tbl = &arp_tbl;
1147 if ((READ_ONCE(neigh->nud_state) & NUD_VALID) && !force) {
1148 neigh_release(neigh);
1152 if (READ_ONCE(neigh->nud_state) & ~NUD_NOARP)
1153 err = neigh_update(neigh, NULL, NUD_FAILED,
1154 NEIGH_UPDATE_F_OVERRIDE|
1155 NEIGH_UPDATE_F_ADMIN, 0);
1156 write_lock_bh(&tbl->lock);
1157 neigh_release(neigh);
1158 neigh_remove_one(neigh, tbl);
1159 write_unlock_bh(&tbl->lock);
1165 static int arp_req_delete_public(struct net *net, struct arpreq *r,
1166 struct net_device *dev)
1168 __be32 ip = ((struct sockaddr_in *) &r->arp_pa)->sin_addr.s_addr;
1169 __be32 mask = ((struct sockaddr_in *)&r->arp_netmask)->sin_addr.s_addr;
1171 if (mask == htonl(0xFFFFFFFF))
1172 return pneigh_delete(&arp_tbl, net, &ip, dev);
1177 return arp_req_set_proxy(net, dev, 0);
1180 static int arp_req_delete(struct net *net, struct arpreq *r,
1181 struct net_device *dev)
1185 if (r->arp_flags & ATF_PUBL)
1186 return arp_req_delete_public(net, r, dev);
1188 ip = ((struct sockaddr_in *)&r->arp_pa)->sin_addr.s_addr;
1190 struct rtable *rt = ip_route_output(net, ip, 0, RTO_ONLINK, 0);
1198 return arp_invalidate(dev, ip, true);
1202 * Handle an ARP layer I/O control request.
1205 int arp_ioctl(struct net *net, unsigned int cmd, void __user *arg)
1209 struct net_device *dev = NULL;
1214 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
1218 err = copy_from_user(&r, arg, sizeof(struct arpreq));
1226 if (r.arp_pa.sa_family != AF_INET)
1227 return -EPFNOSUPPORT;
1229 if (!(r.arp_flags & ATF_PUBL) &&
1230 (r.arp_flags & (ATF_NETMASK | ATF_DONTPUB)))
1232 if (!(r.arp_flags & ATF_NETMASK))
1233 ((struct sockaddr_in *)&r.arp_netmask)->sin_addr.s_addr =
1234 htonl(0xFFFFFFFFUL);
1238 dev = __dev_get_by_name(net, r.arp_dev);
1242 /* Mmmm... It is wrong... ARPHRD_NETROM==0 */
1243 if (!r.arp_ha.sa_family)
1244 r.arp_ha.sa_family = dev->type;
1246 if ((r.arp_flags & ATF_COM) && r.arp_ha.sa_family != dev->type)
1248 } else if (cmd == SIOCGARP) {
1255 err = arp_req_delete(net, &r, dev);
1258 err = arp_req_set(net, &r, dev);
1261 err = arp_req_get(&r, dev);
1266 if (cmd == SIOCGARP && !err && copy_to_user(arg, &r, sizeof(r)))
1271 static int arp_netdev_event(struct notifier_block *this, unsigned long event,
1274 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
1275 struct netdev_notifier_change_info *change_info;
1276 struct in_device *in_dev;
1277 bool evict_nocarrier;
1280 case NETDEV_CHANGEADDR:
1281 neigh_changeaddr(&arp_tbl, dev);
1282 rt_cache_flush(dev_net(dev));
1286 if (change_info->flags_changed & IFF_NOARP)
1287 neigh_changeaddr(&arp_tbl, dev);
1289 in_dev = __in_dev_get_rtnl(dev);
1291 evict_nocarrier = true;
1293 evict_nocarrier = IN_DEV_ARP_EVICT_NOCARRIER(in_dev);
1295 if (evict_nocarrier && !netif_carrier_ok(dev))
1296 neigh_carrier_down(&arp_tbl, dev);
1305 static struct notifier_block arp_netdev_notifier = {
1306 .notifier_call = arp_netdev_event,
1309 /* Note, that it is not on notifier chain.
1310 It is necessary, that this routine was called after route cache will be
1313 void arp_ifdown(struct net_device *dev)
1315 neigh_ifdown(&arp_tbl, dev);
1320 * Called once on startup.
1323 static struct packet_type arp_packet_type __read_mostly = {
1324 .type = cpu_to_be16(ETH_P_ARP),
1328 #ifdef CONFIG_PROC_FS
1329 #if IS_ENABLED(CONFIG_AX25)
1332 * ax25 -> ASCII conversion
1334 static void ax2asc2(ax25_address *a, char *buf)
1339 for (n = 0, s = buf; n < 6; n++) {
1340 c = (a->ax25_call[n] >> 1) & 0x7F;
1347 n = (a->ax25_call[6] >> 1) & 0x0F;
1356 if (*buf == '\0' || *buf == '-') {
1361 #endif /* CONFIG_AX25 */
1363 #define HBUFFERLEN 30
1365 static void arp_format_neigh_entry(struct seq_file *seq,
1366 struct neighbour *n)
1368 char hbuffer[HBUFFERLEN];
1371 struct net_device *dev = n->dev;
1372 int hatype = dev->type;
1374 read_lock(&n->lock);
1375 /* Convert hardware address to XX:XX:XX:XX ... form. */
1376 #if IS_ENABLED(CONFIG_AX25)
1377 if (hatype == ARPHRD_AX25 || hatype == ARPHRD_NETROM)
1378 ax2asc2((ax25_address *)n->ha, hbuffer);
1381 for (k = 0, j = 0; k < HBUFFERLEN - 3 && j < dev->addr_len; j++) {
1382 hbuffer[k++] = hex_asc_hi(n->ha[j]);
1383 hbuffer[k++] = hex_asc_lo(n->ha[j]);
1389 #if IS_ENABLED(CONFIG_AX25)
1392 sprintf(tbuf, "%pI4", n->primary_key);
1393 seq_printf(seq, "%-16s 0x%-10x0x%-10x%-17s * %s\n",
1394 tbuf, hatype, arp_state_to_flags(n), hbuffer, dev->name);
1395 read_unlock(&n->lock);
1398 static void arp_format_pneigh_entry(struct seq_file *seq,
1399 struct pneigh_entry *n)
1401 struct net_device *dev = n->dev;
1402 int hatype = dev ? dev->type : 0;
1405 sprintf(tbuf, "%pI4", n->key);
1406 seq_printf(seq, "%-16s 0x%-10x0x%-10x%s * %s\n",
1407 tbuf, hatype, ATF_PUBL | ATF_PERM, "00:00:00:00:00:00",
1408 dev ? dev->name : "*");
1411 static int arp_seq_show(struct seq_file *seq, void *v)
1413 if (v == SEQ_START_TOKEN) {
1414 seq_puts(seq, "IP address HW type Flags "
1415 "HW address Mask Device\n");
1417 struct neigh_seq_state *state = seq->private;
1419 if (state->flags & NEIGH_SEQ_IS_PNEIGH)
1420 arp_format_pneigh_entry(seq, v);
1422 arp_format_neigh_entry(seq, v);
1428 static void *arp_seq_start(struct seq_file *seq, loff_t *pos)
1430 /* Don't want to confuse "arp -a" w/ magic entries,
1431 * so we tell the generic iterator to skip NUD_NOARP.
1433 return neigh_seq_start(seq, pos, &arp_tbl, NEIGH_SEQ_SKIP_NOARP);
1436 static const struct seq_operations arp_seq_ops = {
1437 .start = arp_seq_start,
1438 .next = neigh_seq_next,
1439 .stop = neigh_seq_stop,
1440 .show = arp_seq_show,
1442 #endif /* CONFIG_PROC_FS */
1444 static int __net_init arp_net_init(struct net *net)
1446 if (!proc_create_net("arp", 0444, net->proc_net, &arp_seq_ops,
1447 sizeof(struct neigh_seq_state)))
1452 static void __net_exit arp_net_exit(struct net *net)
1454 remove_proc_entry("arp", net->proc_net);
1457 static struct pernet_operations arp_net_ops = {
1458 .init = arp_net_init,
1459 .exit = arp_net_exit,
1462 void __init arp_init(void)
1464 neigh_table_init(NEIGH_ARP_TABLE, &arp_tbl);
1466 dev_add_pack(&arp_packet_type);
1467 register_pernet_subsys(&arp_net_ops);
1468 #ifdef CONFIG_SYSCTL
1469 neigh_sysctl_register(NULL, &arp_tbl.parms, NULL);
1471 register_netdevice_notifier(&arp_netdev_notifier);