GNU Linux-libre 4.4.288-gnu1
[releases.git] / net / ipv4 / arp.c
1 /* linux/net/ipv4/arp.c
2  *
3  * Copyright (C) 1994 by Florian  La Roche
4  *
5  * This module implements the Address Resolution Protocol ARP (RFC 826),
6  * which is used to convert IP addresses (or in the future maybe other
7  * high-level addresses) into a low-level hardware address (like an Ethernet
8  * address).
9  *
10  * This program is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU General Public License
12  * as published by the Free Software Foundation; either version
13  * 2 of the License, or (at your option) any later version.
14  *
15  * Fixes:
16  *              Alan Cox        :       Removed the Ethernet assumptions in
17  *                                      Florian's code
18  *              Alan Cox        :       Fixed some small errors in the ARP
19  *                                      logic
20  *              Alan Cox        :       Allow >4K in /proc
21  *              Alan Cox        :       Make ARP add its own protocol entry
22  *              Ross Martin     :       Rewrote arp_rcv() and arp_get_info()
23  *              Stephen Henson  :       Add AX25 support to arp_get_info()
24  *              Alan Cox        :       Drop data when a device is downed.
25  *              Alan Cox        :       Use init_timer().
26  *              Alan Cox        :       Double lock fixes.
27  *              Martin Seine    :       Move the arphdr structure
28  *                                      to if_arp.h for compatibility.
29  *                                      with BSD based programs.
30  *              Andrew Tridgell :       Added ARP netmask code and
31  *                                      re-arranged proxy handling.
32  *              Alan Cox        :       Changed to use notifiers.
33  *              Niibe Yutaka    :       Reply for this device or proxies only.
34  *              Alan Cox        :       Don't proxy across hardware types!
35  *              Jonathan Naylor :       Added support for NET/ROM.
36  *              Mike Shaver     :       RFC1122 checks.
37  *              Jonathan Naylor :       Only lookup the hardware address for
38  *                                      the correct hardware type.
39  *              Germano Caronni :       Assorted subtle races.
40  *              Craig Schlenter :       Don't modify permanent entry
41  *                                      during arp_rcv.
42  *              Russ Nelson     :       Tidied up a few bits.
43  *              Alexey Kuznetsov:       Major changes to caching and behaviour,
44  *                                      eg intelligent arp probing and
45  *                                      generation
46  *                                      of host down events.
47  *              Alan Cox        :       Missing unlock in device events.
48  *              Eckes           :       ARP ioctl control errors.
49  *              Alexey Kuznetsov:       Arp free fix.
50  *              Manuel Rodriguez:       Gratuitous ARP.
51  *              Jonathan Layes  :       Added arpd support through kerneld
52  *                                      message queue (960314)
53  *              Mike Shaver     :       /proc/sys/net/ipv4/arp_* support
54  *              Mike McLagan    :       Routing by source
55  *              Stuart Cheshire :       Metricom and grat arp fixes
56  *                                      *** FOR 2.1 clean this up ***
57  *              Lawrence V. Stefani: (08/12/96) Added FDDI support.
58  *              Alan Cox        :       Took the AP1000 nasty FDDI hack and
59  *                                      folded into the mainstream FDDI code.
60  *                                      Ack spit, Linus how did you allow that
61  *                                      one in...
62  *              Jes Sorensen    :       Make FDDI work again in 2.1.x and
63  *                                      clean up the APFDDI & gen. FDDI bits.
64  *              Alexey Kuznetsov:       new arp state machine;
65  *                                      now it is in net/core/neighbour.c.
66  *              Krzysztof Halasa:       Added Frame Relay ARP support.
67  *              Arnaldo C. Melo :       convert /proc/net/arp to seq_file
68  *              Shmulik Hen:            Split arp_send to arp_create and
69  *                                      arp_xmit so intermediate drivers like
70  *                                      bonding can change the skb before
71  *                                      sending (e.g. insert 8021q tag).
72  *              Harald Welte    :       convert to make use of jenkins hash
73  *              Jesper D. Brouer:       Proxy ARP PVLAN RFC 3069 support.
74  */
75
76 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
77
78 #include <linux/module.h>
79 #include <linux/types.h>
80 #include <linux/string.h>
81 #include <linux/kernel.h>
82 #include <linux/capability.h>
83 #include <linux/socket.h>
84 #include <linux/sockios.h>
85 #include <linux/errno.h>
86 #include <linux/in.h>
87 #include <linux/mm.h>
88 #include <linux/inet.h>
89 #include <linux/inetdevice.h>
90 #include <linux/netdevice.h>
91 #include <linux/etherdevice.h>
92 #include <linux/fddidevice.h>
93 #include <linux/if_arp.h>
94 #include <linux/skbuff.h>
95 #include <linux/proc_fs.h>
96 #include <linux/seq_file.h>
97 #include <linux/stat.h>
98 #include <linux/init.h>
99 #include <linux/net.h>
100 #include <linux/rcupdate.h>
101 #include <linux/slab.h>
102 #ifdef CONFIG_SYSCTL
103 #include <linux/sysctl.h>
104 #endif
105
106 #include <net/net_namespace.h>
107 #include <net/ip.h>
108 #include <net/icmp.h>
109 #include <net/route.h>
110 #include <net/protocol.h>
111 #include <net/tcp.h>
112 #include <net/sock.h>
113 #include <net/arp.h>
114 #include <net/ax25.h>
115 #include <net/netrom.h>
116 #include <net/dst_metadata.h>
117 #include <net/ip_tunnels.h>
118
119 #include <linux/uaccess.h>
120
121 #include <linux/netfilter_arp.h>
122
123 /*
124  *      Interface to generic neighbour cache.
125  */
126 static u32 arp_hash(const void *pkey, const struct net_device *dev, __u32 *hash_rnd);
127 static bool arp_key_eq(const struct neighbour *n, const void *pkey);
128 static int arp_constructor(struct neighbour *neigh);
129 static void arp_solicit(struct neighbour *neigh, struct sk_buff *skb);
130 static void arp_error_report(struct neighbour *neigh, struct sk_buff *skb);
131 static void parp_redo(struct sk_buff *skb);
132
133 static const struct neigh_ops arp_generic_ops = {
134         .family =               AF_INET,
135         .solicit =              arp_solicit,
136         .error_report =         arp_error_report,
137         .output =               neigh_resolve_output,
138         .connected_output =     neigh_connected_output,
139 };
140
141 static const struct neigh_ops arp_hh_ops = {
142         .family =               AF_INET,
143         .solicit =              arp_solicit,
144         .error_report =         arp_error_report,
145         .output =               neigh_resolve_output,
146         .connected_output =     neigh_resolve_output,
147 };
148
149 static const struct neigh_ops arp_direct_ops = {
150         .family =               AF_INET,
151         .output =               neigh_direct_output,
152         .connected_output =     neigh_direct_output,
153 };
154
155 struct neigh_table arp_tbl = {
156         .family         = AF_INET,
157         .key_len        = 4,
158         .protocol       = cpu_to_be16(ETH_P_IP),
159         .hash           = arp_hash,
160         .key_eq         = arp_key_eq,
161         .constructor    = arp_constructor,
162         .proxy_redo     = parp_redo,
163         .id             = "arp_cache",
164         .parms          = {
165                 .tbl                    = &arp_tbl,
166                 .reachable_time         = 30 * HZ,
167                 .data   = {
168                         [NEIGH_VAR_MCAST_PROBES] = 3,
169                         [NEIGH_VAR_UCAST_PROBES] = 3,
170                         [NEIGH_VAR_RETRANS_TIME] = 1 * HZ,
171                         [NEIGH_VAR_BASE_REACHABLE_TIME] = 30 * HZ,
172                         [NEIGH_VAR_DELAY_PROBE_TIME] = 5 * HZ,
173                         [NEIGH_VAR_GC_STALETIME] = 60 * HZ,
174                         [NEIGH_VAR_QUEUE_LEN_BYTES] = 64 * 1024,
175                         [NEIGH_VAR_PROXY_QLEN] = 64,
176                         [NEIGH_VAR_ANYCAST_DELAY] = 1 * HZ,
177                         [NEIGH_VAR_PROXY_DELAY] = (8 * HZ) / 10,
178                         [NEIGH_VAR_LOCKTIME] = 1 * HZ,
179                 },
180         },
181         .gc_interval    = 30 * HZ,
182         .gc_thresh1     = 128,
183         .gc_thresh2     = 512,
184         .gc_thresh3     = 1024,
185 };
186 EXPORT_SYMBOL(arp_tbl);
187
188 int arp_mc_map(__be32 addr, u8 *haddr, struct net_device *dev, int dir)
189 {
190         switch (dev->type) {
191         case ARPHRD_ETHER:
192         case ARPHRD_FDDI:
193         case ARPHRD_IEEE802:
194                 ip_eth_mc_map(addr, haddr);
195                 return 0;
196         case ARPHRD_INFINIBAND:
197                 ip_ib_mc_map(addr, dev->broadcast, haddr);
198                 return 0;
199         case ARPHRD_IPGRE:
200                 ip_ipgre_mc_map(addr, dev->broadcast, haddr);
201                 return 0;
202         default:
203                 if (dir) {
204                         memcpy(haddr, dev->broadcast, dev->addr_len);
205                         return 0;
206                 }
207         }
208         return -EINVAL;
209 }
210
211
212 static u32 arp_hash(const void *pkey,
213                     const struct net_device *dev,
214                     __u32 *hash_rnd)
215 {
216         return arp_hashfn(pkey, dev, hash_rnd);
217 }
218
219 static bool arp_key_eq(const struct neighbour *neigh, const void *pkey)
220 {
221         return neigh_key_eq32(neigh, pkey);
222 }
223
224 static int arp_constructor(struct neighbour *neigh)
225 {
226         __be32 addr;
227         struct net_device *dev = neigh->dev;
228         struct in_device *in_dev;
229         struct neigh_parms *parms;
230         u32 inaddr_any = INADDR_ANY;
231
232         if (dev->flags & (IFF_LOOPBACK | IFF_POINTOPOINT))
233                 memcpy(neigh->primary_key, &inaddr_any, arp_tbl.key_len);
234
235         addr = *(__be32 *)neigh->primary_key;
236         rcu_read_lock();
237         in_dev = __in_dev_get_rcu(dev);
238         if (!in_dev) {
239                 rcu_read_unlock();
240                 return -EINVAL;
241         }
242
243         neigh->type = inet_addr_type_dev_table(dev_net(dev), dev, addr);
244
245         parms = in_dev->arp_parms;
246         __neigh_parms_put(neigh->parms);
247         neigh->parms = neigh_parms_clone(parms);
248         rcu_read_unlock();
249
250         if (!dev->header_ops) {
251                 neigh->nud_state = NUD_NOARP;
252                 neigh->ops = &arp_direct_ops;
253                 neigh->output = neigh_direct_output;
254         } else {
255                 /* Good devices (checked by reading texts, but only Ethernet is
256                    tested)
257
258                    ARPHRD_ETHER: (ethernet, apfddi)
259                    ARPHRD_FDDI: (fddi)
260                    ARPHRD_IEEE802: (tr)
261                    ARPHRD_METRICOM: (strip)
262                    ARPHRD_ARCNET:
263                    etc. etc. etc.
264
265                    ARPHRD_IPDDP will also work, if author repairs it.
266                    I did not it, because this driver does not work even
267                    in old paradigm.
268                  */
269
270                 if (neigh->type == RTN_MULTICAST) {
271                         neigh->nud_state = NUD_NOARP;
272                         arp_mc_map(addr, neigh->ha, dev, 1);
273                 } else if (dev->flags & (IFF_NOARP | IFF_LOOPBACK)) {
274                         neigh->nud_state = NUD_NOARP;
275                         memcpy(neigh->ha, dev->dev_addr, dev->addr_len);
276                 } else if (neigh->type == RTN_BROADCAST ||
277                            (dev->flags & IFF_POINTOPOINT)) {
278                         neigh->nud_state = NUD_NOARP;
279                         memcpy(neigh->ha, dev->broadcast, dev->addr_len);
280                 }
281
282                 if (dev->header_ops->cache)
283                         neigh->ops = &arp_hh_ops;
284                 else
285                         neigh->ops = &arp_generic_ops;
286
287                 if (neigh->nud_state & NUD_VALID)
288                         neigh->output = neigh->ops->connected_output;
289                 else
290                         neigh->output = neigh->ops->output;
291         }
292         return 0;
293 }
294
295 static void arp_error_report(struct neighbour *neigh, struct sk_buff *skb)
296 {
297         dst_link_failure(skb);
298         kfree_skb(skb);
299 }
300
301 /* Create and send an arp packet. */
302 static void arp_send_dst(int type, int ptype, __be32 dest_ip,
303                          struct net_device *dev, __be32 src_ip,
304                          const unsigned char *dest_hw,
305                          const unsigned char *src_hw,
306                          const unsigned char *target_hw,
307                          struct dst_entry *dst)
308 {
309         struct sk_buff *skb;
310
311         /* arp on this interface. */
312         if (dev->flags & IFF_NOARP)
313                 return;
314
315         skb = arp_create(type, ptype, dest_ip, dev, src_ip,
316                          dest_hw, src_hw, target_hw);
317         if (!skb)
318                 return;
319
320         skb_dst_set(skb, dst_clone(dst));
321         arp_xmit(skb);
322 }
323
324 void arp_send(int type, int ptype, __be32 dest_ip,
325               struct net_device *dev, __be32 src_ip,
326               const unsigned char *dest_hw, const unsigned char *src_hw,
327               const unsigned char *target_hw)
328 {
329         arp_send_dst(type, ptype, dest_ip, dev, src_ip, dest_hw, src_hw,
330                      target_hw, NULL);
331 }
332 EXPORT_SYMBOL(arp_send);
333
334 static void arp_solicit(struct neighbour *neigh, struct sk_buff *skb)
335 {
336         __be32 saddr = 0;
337         u8 dst_ha[MAX_ADDR_LEN], *dst_hw = NULL;
338         struct net_device *dev = neigh->dev;
339         __be32 target = *(__be32 *)neigh->primary_key;
340         int probes = atomic_read(&neigh->probes);
341         struct in_device *in_dev;
342         struct dst_entry *dst = NULL;
343
344         rcu_read_lock();
345         in_dev = __in_dev_get_rcu(dev);
346         if (!in_dev) {
347                 rcu_read_unlock();
348                 return;
349         }
350         switch (IN_DEV_ARP_ANNOUNCE(in_dev)) {
351         default:
352         case 0:         /* By default announce any local IP */
353                 if (skb && inet_addr_type_dev_table(dev_net(dev), dev,
354                                           ip_hdr(skb)->saddr) == RTN_LOCAL)
355                         saddr = ip_hdr(skb)->saddr;
356                 break;
357         case 1:         /* Restrict announcements of saddr in same subnet */
358                 if (!skb)
359                         break;
360                 saddr = ip_hdr(skb)->saddr;
361                 if (inet_addr_type_dev_table(dev_net(dev), dev,
362                                              saddr) == RTN_LOCAL) {
363                         /* saddr should be known to target */
364                         if (inet_addr_onlink(in_dev, target, saddr))
365                                 break;
366                 }
367                 saddr = 0;
368                 break;
369         case 2:         /* Avoid secondary IPs, get a primary/preferred one */
370                 break;
371         }
372         rcu_read_unlock();
373
374         if (!saddr)
375                 saddr = inet_select_addr(dev, target, RT_SCOPE_LINK);
376
377         probes -= NEIGH_VAR(neigh->parms, UCAST_PROBES);
378         if (probes < 0) {
379                 if (!(neigh->nud_state & NUD_VALID))
380                         pr_debug("trying to ucast probe in NUD_INVALID\n");
381                 neigh_ha_snapshot(dst_ha, neigh, dev);
382                 dst_hw = dst_ha;
383         } else {
384                 probes -= NEIGH_VAR(neigh->parms, APP_PROBES);
385                 if (probes < 0) {
386                         neigh_app_ns(neigh);
387                         return;
388                 }
389         }
390
391         if (skb && !(dev->priv_flags & IFF_XMIT_DST_RELEASE))
392                 dst = skb_dst(skb);
393         arp_send_dst(ARPOP_REQUEST, ETH_P_ARP, target, dev, saddr,
394                      dst_hw, dev->dev_addr, NULL, dst);
395 }
396
397 static int arp_ignore(struct in_device *in_dev, __be32 sip, __be32 tip)
398 {
399         struct net *net = dev_net(in_dev->dev);
400         int scope;
401
402         switch (IN_DEV_ARP_IGNORE(in_dev)) {
403         case 0: /* Reply, the tip is already validated */
404                 return 0;
405         case 1: /* Reply only if tip is configured on the incoming interface */
406                 sip = 0;
407                 scope = RT_SCOPE_HOST;
408                 break;
409         case 2: /*
410                  * Reply only if tip is configured on the incoming interface
411                  * and is in same subnet as sip
412                  */
413                 scope = RT_SCOPE_HOST;
414                 break;
415         case 3: /* Do not reply for scope host addresses */
416                 sip = 0;
417                 scope = RT_SCOPE_LINK;
418                 in_dev = NULL;
419                 break;
420         case 4: /* Reserved */
421         case 5:
422         case 6:
423         case 7:
424                 return 0;
425         case 8: /* Do not reply */
426                 return 1;
427         default:
428                 return 0;
429         }
430         return !inet_confirm_addr(net, in_dev, sip, tip, scope);
431 }
432
433 static int arp_filter(__be32 sip, __be32 tip, struct net_device *dev)
434 {
435         struct rtable *rt;
436         int flag = 0;
437         /*unsigned long now; */
438         struct net *net = dev_net(dev);
439
440         rt = ip_route_output(net, sip, tip, 0, l3mdev_master_ifindex_rcu(dev));
441         if (IS_ERR(rt))
442                 return 1;
443         if (rt->dst.dev != dev) {
444                 NET_INC_STATS_BH(net, LINUX_MIB_ARPFILTER);
445                 flag = 1;
446         }
447         ip_rt_put(rt);
448         return flag;
449 }
450
451 /*
452  * Check if we can use proxy ARP for this path
453  */
454 static inline int arp_fwd_proxy(struct in_device *in_dev,
455                                 struct net_device *dev, struct rtable *rt)
456 {
457         struct in_device *out_dev;
458         int imi, omi = -1;
459
460         if (rt->dst.dev == dev)
461                 return 0;
462
463         if (!IN_DEV_PROXY_ARP(in_dev))
464                 return 0;
465         imi = IN_DEV_MEDIUM_ID(in_dev);
466         if (imi == 0)
467                 return 1;
468         if (imi == -1)
469                 return 0;
470
471         /* place to check for proxy_arp for routes */
472
473         out_dev = __in_dev_get_rcu(rt->dst.dev);
474         if (out_dev)
475                 omi = IN_DEV_MEDIUM_ID(out_dev);
476
477         return omi != imi && omi != -1;
478 }
479
480 /*
481  * Check for RFC3069 proxy arp private VLAN (allow to send back to same dev)
482  *
483  * RFC3069 supports proxy arp replies back to the same interface.  This
484  * is done to support (ethernet) switch features, like RFC 3069, where
485  * the individual ports are not allowed to communicate with each
486  * other, BUT they are allowed to talk to the upstream router.  As
487  * described in RFC 3069, it is possible to allow these hosts to
488  * communicate through the upstream router, by proxy_arp'ing.
489  *
490  * RFC 3069: "VLAN Aggregation for Efficient IP Address Allocation"
491  *
492  *  This technology is known by different names:
493  *    In RFC 3069 it is called VLAN Aggregation.
494  *    Cisco and Allied Telesyn call it Private VLAN.
495  *    Hewlett-Packard call it Source-Port filtering or port-isolation.
496  *    Ericsson call it MAC-Forced Forwarding (RFC Draft).
497  *
498  */
499 static inline int arp_fwd_pvlan(struct in_device *in_dev,
500                                 struct net_device *dev, struct rtable *rt,
501                                 __be32 sip, __be32 tip)
502 {
503         /* Private VLAN is only concerned about the same ethernet segment */
504         if (rt->dst.dev != dev)
505                 return 0;
506
507         /* Don't reply on self probes (often done by windowz boxes)*/
508         if (sip == tip)
509                 return 0;
510
511         if (IN_DEV_PROXY_ARP_PVLAN(in_dev))
512                 return 1;
513         else
514                 return 0;
515 }
516
517 /*
518  *      Interface to link layer: send routine and receive handler.
519  */
520
521 /*
522  *      Create an arp packet. If dest_hw is not set, we create a broadcast
523  *      message.
524  */
525 struct sk_buff *arp_create(int type, int ptype, __be32 dest_ip,
526                            struct net_device *dev, __be32 src_ip,
527                            const unsigned char *dest_hw,
528                            const unsigned char *src_hw,
529                            const unsigned char *target_hw)
530 {
531         struct sk_buff *skb;
532         struct arphdr *arp;
533         unsigned char *arp_ptr;
534         int hlen = LL_RESERVED_SPACE(dev);
535         int tlen = dev->needed_tailroom;
536
537         /*
538          *      Allocate a buffer
539          */
540
541         skb = alloc_skb(arp_hdr_len(dev) + hlen + tlen, GFP_ATOMIC);
542         if (!skb)
543                 return NULL;
544
545         skb_reserve(skb, hlen);
546         skb_reset_network_header(skb);
547         arp = (struct arphdr *) skb_put(skb, arp_hdr_len(dev));
548         skb->dev = dev;
549         skb->protocol = htons(ETH_P_ARP);
550         if (!src_hw)
551                 src_hw = dev->dev_addr;
552         if (!dest_hw)
553                 dest_hw = dev->broadcast;
554
555         /*
556          *      Fill the device header for the ARP frame
557          */
558         if (dev_hard_header(skb, dev, ptype, dest_hw, src_hw, skb->len) < 0)
559                 goto out;
560
561         /*
562          * Fill out the arp protocol part.
563          *
564          * The arp hardware type should match the device type, except for FDDI,
565          * which (according to RFC 1390) should always equal 1 (Ethernet).
566          */
567         /*
568          *      Exceptions everywhere. AX.25 uses the AX.25 PID value not the
569          *      DIX code for the protocol. Make these device structure fields.
570          */
571         switch (dev->type) {
572         default:
573                 arp->ar_hrd = htons(dev->type);
574                 arp->ar_pro = htons(ETH_P_IP);
575                 break;
576
577 #if IS_ENABLED(CONFIG_AX25)
578         case ARPHRD_AX25:
579                 arp->ar_hrd = htons(ARPHRD_AX25);
580                 arp->ar_pro = htons(AX25_P_IP);
581                 break;
582
583 #if IS_ENABLED(CONFIG_NETROM)
584         case ARPHRD_NETROM:
585                 arp->ar_hrd = htons(ARPHRD_NETROM);
586                 arp->ar_pro = htons(AX25_P_IP);
587                 break;
588 #endif
589 #endif
590
591 #if IS_ENABLED(CONFIG_FDDI)
592         case ARPHRD_FDDI:
593                 arp->ar_hrd = htons(ARPHRD_ETHER);
594                 arp->ar_pro = htons(ETH_P_IP);
595                 break;
596 #endif
597         }
598
599         arp->ar_hln = dev->addr_len;
600         arp->ar_pln = 4;
601         arp->ar_op = htons(type);
602
603         arp_ptr = (unsigned char *)(arp + 1);
604
605         memcpy(arp_ptr, src_hw, dev->addr_len);
606         arp_ptr += dev->addr_len;
607         memcpy(arp_ptr, &src_ip, 4);
608         arp_ptr += 4;
609
610         switch (dev->type) {
611 #if IS_ENABLED(CONFIG_FIREWIRE_NET)
612         case ARPHRD_IEEE1394:
613                 break;
614 #endif
615         default:
616                 if (target_hw)
617                         memcpy(arp_ptr, target_hw, dev->addr_len);
618                 else
619                         memset(arp_ptr, 0, dev->addr_len);
620                 arp_ptr += dev->addr_len;
621         }
622         memcpy(arp_ptr, &dest_ip, 4);
623
624         return skb;
625
626 out:
627         kfree_skb(skb);
628         return NULL;
629 }
630 EXPORT_SYMBOL(arp_create);
631
632 static int arp_xmit_finish(struct net *net, struct sock *sk, struct sk_buff *skb)
633 {
634         return dev_queue_xmit(skb);
635 }
636
637 /*
638  *      Send an arp packet.
639  */
640 void arp_xmit(struct sk_buff *skb)
641 {
642         /* Send it off, maybe filter it using firewalling first.  */
643         NF_HOOK(NFPROTO_ARP, NF_ARP_OUT,
644                 dev_net(skb->dev), NULL, skb, NULL, skb->dev,
645                 arp_xmit_finish);
646 }
647 EXPORT_SYMBOL(arp_xmit);
648
649 /*
650  *      Process an arp request.
651  */
652
653 static int arp_process(struct net *net, struct sock *sk, struct sk_buff *skb)
654 {
655         struct net_device *dev = skb->dev;
656         struct in_device *in_dev = __in_dev_get_rcu(dev);
657         struct arphdr *arp;
658         unsigned char *arp_ptr;
659         struct rtable *rt;
660         unsigned char *sha;
661         unsigned char *tha = NULL;
662         __be32 sip, tip;
663         u16 dev_type = dev->type;
664         int addr_type;
665         struct neighbour *n;
666         struct dst_entry *reply_dst = NULL;
667         bool is_garp = false;
668
669         /* arp_rcv below verifies the ARP header and verifies the device
670          * is ARP'able.
671          */
672
673         if (!in_dev)
674                 goto out;
675
676         arp = arp_hdr(skb);
677
678         switch (dev_type) {
679         default:
680                 if (arp->ar_pro != htons(ETH_P_IP) ||
681                     htons(dev_type) != arp->ar_hrd)
682                         goto out;
683                 break;
684         case ARPHRD_ETHER:
685         case ARPHRD_FDDI:
686         case ARPHRD_IEEE802:
687                 /*
688                  * ETHERNET, and Fibre Channel (which are IEEE 802
689                  * devices, according to RFC 2625) devices will accept ARP
690                  * hardware types of either 1 (Ethernet) or 6 (IEEE 802.2).
691                  * This is the case also of FDDI, where the RFC 1390 says that
692                  * FDDI devices should accept ARP hardware of (1) Ethernet,
693                  * however, to be more robust, we'll accept both 1 (Ethernet)
694                  * or 6 (IEEE 802.2)
695                  */
696                 if ((arp->ar_hrd != htons(ARPHRD_ETHER) &&
697                      arp->ar_hrd != htons(ARPHRD_IEEE802)) ||
698                     arp->ar_pro != htons(ETH_P_IP))
699                         goto out;
700                 break;
701         case ARPHRD_AX25:
702                 if (arp->ar_pro != htons(AX25_P_IP) ||
703                     arp->ar_hrd != htons(ARPHRD_AX25))
704                         goto out;
705                 break;
706         case ARPHRD_NETROM:
707                 if (arp->ar_pro != htons(AX25_P_IP) ||
708                     arp->ar_hrd != htons(ARPHRD_NETROM))
709                         goto out;
710                 break;
711         }
712
713         /* Understand only these message types */
714
715         if (arp->ar_op != htons(ARPOP_REPLY) &&
716             arp->ar_op != htons(ARPOP_REQUEST))
717                 goto out;
718
719 /*
720  *      Extract fields
721  */
722         arp_ptr = (unsigned char *)(arp + 1);
723         sha     = arp_ptr;
724         arp_ptr += dev->addr_len;
725         memcpy(&sip, arp_ptr, 4);
726         arp_ptr += 4;
727         switch (dev_type) {
728 #if IS_ENABLED(CONFIG_FIREWIRE_NET)
729         case ARPHRD_IEEE1394:
730                 break;
731 #endif
732         default:
733                 tha = arp_ptr;
734                 arp_ptr += dev->addr_len;
735         }
736         memcpy(&tip, arp_ptr, 4);
737 /*
738  *      Check for bad requests for 127.x.x.x and requests for multicast
739  *      addresses.  If this is one such, delete it.
740  */
741         if (ipv4_is_multicast(tip) ||
742             (!IN_DEV_ROUTE_LOCALNET(in_dev) && ipv4_is_loopback(tip)))
743                 goto out;
744
745 /*
746  *     Special case: We must set Frame Relay source Q.922 address
747  */
748         if (dev_type == ARPHRD_DLCI)
749                 sha = dev->broadcast;
750
751 /*
752  *  Process entry.  The idea here is we want to send a reply if it is a
753  *  request for us or if it is a request for someone else that we hold
754  *  a proxy for.  We want to add an entry to our cache if it is a reply
755  *  to us or if it is a request for our address.
756  *  (The assumption for this last is that if someone is requesting our
757  *  address, they are probably intending to talk to us, so it saves time
758  *  if we cache their address.  Their address is also probably not in
759  *  our cache, since ours is not in their cache.)
760  *
761  *  Putting this another way, we only care about replies if they are to
762  *  us, in which case we add them to the cache.  For requests, we care
763  *  about those for us and those for our proxies.  We reply to both,
764  *  and in the case of requests for us we add the requester to the arp
765  *  cache.
766  */
767
768         if (arp->ar_op == htons(ARPOP_REQUEST) && skb_metadata_dst(skb))
769                 reply_dst = (struct dst_entry *)
770                             iptunnel_metadata_reply(skb_metadata_dst(skb),
771                                                     GFP_ATOMIC);
772
773         /* Special case: IPv4 duplicate address detection packet (RFC2131) */
774         if (sip == 0) {
775                 if (arp->ar_op == htons(ARPOP_REQUEST) &&
776                     inet_addr_type_dev_table(net, dev, tip) == RTN_LOCAL &&
777                     !arp_ignore(in_dev, sip, tip))
778                         arp_send_dst(ARPOP_REPLY, ETH_P_ARP, sip, dev, tip,
779                                      sha, dev->dev_addr, sha, reply_dst);
780                 goto out;
781         }
782
783         if (arp->ar_op == htons(ARPOP_REQUEST) &&
784             ip_route_input_noref(skb, tip, sip, 0, dev) == 0) {
785
786                 rt = skb_rtable(skb);
787                 addr_type = rt->rt_type;
788
789                 if (addr_type == RTN_LOCAL) {
790                         int dont_send;
791
792                         dont_send = arp_ignore(in_dev, sip, tip);
793                         if (!dont_send && IN_DEV_ARPFILTER(in_dev))
794                                 dont_send = arp_filter(sip, tip, dev);
795                         if (!dont_send) {
796                                 n = neigh_event_ns(&arp_tbl, sha, &sip, dev);
797                                 if (n) {
798                                         arp_send_dst(ARPOP_REPLY, ETH_P_ARP,
799                                                      sip, dev, tip, sha,
800                                                      dev->dev_addr, sha,
801                                                      reply_dst);
802                                         neigh_release(n);
803                                 }
804                         }
805                         goto out;
806                 } else if (IN_DEV_FORWARD(in_dev)) {
807                         if (addr_type == RTN_UNICAST  &&
808                             (arp_fwd_proxy(in_dev, dev, rt) ||
809                              arp_fwd_pvlan(in_dev, dev, rt, sip, tip) ||
810                              (rt->dst.dev != dev &&
811                               pneigh_lookup(&arp_tbl, net, &tip, dev, 0)))) {
812                                 n = neigh_event_ns(&arp_tbl, sha, &sip, dev);
813                                 if (n)
814                                         neigh_release(n);
815
816                                 if (NEIGH_CB(skb)->flags & LOCALLY_ENQUEUED ||
817                                     skb->pkt_type == PACKET_HOST ||
818                                     NEIGH_VAR(in_dev->arp_parms, PROXY_DELAY) == 0) {
819                                         arp_send_dst(ARPOP_REPLY, ETH_P_ARP,
820                                                      sip, dev, tip, sha,
821                                                      dev->dev_addr, sha,
822                                                      reply_dst);
823                                 } else {
824                                         pneigh_enqueue(&arp_tbl,
825                                                        in_dev->arp_parms, skb);
826                                         goto out_free_dst;
827                                 }
828                                 goto out;
829                         }
830                 }
831         }
832
833         /* Update our ARP tables */
834
835         n = __neigh_lookup(&arp_tbl, &sip, dev, 0);
836
837         if (IN_DEV_ARP_ACCEPT(in_dev)) {
838                 unsigned int addr_type = inet_addr_type_dev_table(net, dev, sip);
839
840                 /* Unsolicited ARP is not accepted by default.
841                    It is possible, that this option should be enabled for some
842                    devices (strip is candidate)
843                  */
844                 is_garp = tip == sip && addr_type == RTN_UNICAST;
845
846                 /* Unsolicited ARP _replies_ also require target hwaddr to be
847                  * the same as source.
848                  */
849                 if (is_garp && arp->ar_op == htons(ARPOP_REPLY))
850                         is_garp =
851                                 /* IPv4 over IEEE 1394 doesn't provide target
852                                  * hardware address field in its ARP payload.
853                                  */
854                                 tha &&
855                                 !memcmp(tha, sha, dev->addr_len);
856
857                 if (!n &&
858                     ((arp->ar_op == htons(ARPOP_REPLY)  &&
859                                 addr_type == RTN_UNICAST) || is_garp))
860                         n = __neigh_lookup(&arp_tbl, &sip, dev, 1);
861         }
862
863         if (n) {
864                 int state = NUD_REACHABLE;
865                 int override;
866
867                 /* If several different ARP replies follows back-to-back,
868                    use the FIRST one. It is possible, if several proxy
869                    agents are active. Taking the first reply prevents
870                    arp trashing and chooses the fastest router.
871                  */
872                 override = time_after(jiffies,
873                                       n->updated +
874                                       NEIGH_VAR(n->parms, LOCKTIME)) ||
875                            is_garp;
876
877                 /* Broadcast replies and request packets
878                    do not assert neighbour reachability.
879                  */
880                 if (arp->ar_op != htons(ARPOP_REPLY) ||
881                     skb->pkt_type != PACKET_HOST)
882                         state = NUD_STALE;
883                 neigh_update(n, sha, state,
884                              override ? NEIGH_UPDATE_F_OVERRIDE : 0);
885                 neigh_release(n);
886         }
887
888 out:
889         consume_skb(skb);
890 out_free_dst:
891         dst_release(reply_dst);
892         return 0;
893 }
894
895 static void parp_redo(struct sk_buff *skb)
896 {
897         arp_process(dev_net(skb->dev), NULL, skb);
898 }
899
900
901 /*
902  *      Receive an arp request from the device layer.
903  */
904
905 static int arp_rcv(struct sk_buff *skb, struct net_device *dev,
906                    struct packet_type *pt, struct net_device *orig_dev)
907 {
908         const struct arphdr *arp;
909
910         /* do not tweak dropwatch on an ARP we will ignore */
911         if (dev->flags & IFF_NOARP ||
912             skb->pkt_type == PACKET_OTHERHOST ||
913             skb->pkt_type == PACKET_LOOPBACK)
914                 goto consumeskb;
915
916         skb = skb_share_check(skb, GFP_ATOMIC);
917         if (!skb)
918                 goto out_of_mem;
919
920         /* ARP header, plus 2 device addresses, plus 2 IP addresses.  */
921         if (!pskb_may_pull(skb, arp_hdr_len(dev)))
922                 goto freeskb;
923
924         arp = arp_hdr(skb);
925         if (arp->ar_hln != dev->addr_len || arp->ar_pln != 4)
926                 goto freeskb;
927
928         memset(NEIGH_CB(skb), 0, sizeof(struct neighbour_cb));
929
930         return NF_HOOK(NFPROTO_ARP, NF_ARP_IN,
931                        dev_net(dev), NULL, skb, dev, NULL,
932                        arp_process);
933
934 consumeskb:
935         consume_skb(skb);
936         return 0;
937 freeskb:
938         kfree_skb(skb);
939 out_of_mem:
940         return 0;
941 }
942
943 /*
944  *      User level interface (ioctl)
945  */
946
947 /*
948  *      Set (create) an ARP cache entry.
949  */
950
951 static int arp_req_set_proxy(struct net *net, struct net_device *dev, int on)
952 {
953         if (!dev) {
954                 IPV4_DEVCONF_ALL(net, PROXY_ARP) = on;
955                 return 0;
956         }
957         if (__in_dev_get_rtnl(dev)) {
958                 IN_DEV_CONF_SET(__in_dev_get_rtnl(dev), PROXY_ARP, on);
959                 return 0;
960         }
961         return -ENXIO;
962 }
963
964 static int arp_req_set_public(struct net *net, struct arpreq *r,
965                 struct net_device *dev)
966 {
967         __be32 ip = ((struct sockaddr_in *)&r->arp_pa)->sin_addr.s_addr;
968         __be32 mask = ((struct sockaddr_in *)&r->arp_netmask)->sin_addr.s_addr;
969
970         if (mask && mask != htonl(0xFFFFFFFF))
971                 return -EINVAL;
972         if (!dev && (r->arp_flags & ATF_COM)) {
973                 dev = dev_getbyhwaddr_rcu(net, r->arp_ha.sa_family,
974                                       r->arp_ha.sa_data);
975                 if (!dev)
976                         return -ENODEV;
977         }
978         if (mask) {
979                 if (!pneigh_lookup(&arp_tbl, net, &ip, dev, 1))
980                         return -ENOBUFS;
981                 return 0;
982         }
983
984         return arp_req_set_proxy(net, dev, 1);
985 }
986
987 static int arp_req_set(struct net *net, struct arpreq *r,
988                        struct net_device *dev)
989 {
990         __be32 ip;
991         struct neighbour *neigh;
992         int err;
993
994         if (r->arp_flags & ATF_PUBL)
995                 return arp_req_set_public(net, r, dev);
996
997         ip = ((struct sockaddr_in *)&r->arp_pa)->sin_addr.s_addr;
998         if (r->arp_flags & ATF_PERM)
999                 r->arp_flags |= ATF_COM;
1000         if (!dev) {
1001                 struct rtable *rt = ip_route_output(net, ip, 0, RTO_ONLINK, 0);
1002
1003                 if (IS_ERR(rt))
1004                         return PTR_ERR(rt);
1005                 dev = rt->dst.dev;
1006                 ip_rt_put(rt);
1007                 if (!dev)
1008                         return -EINVAL;
1009         }
1010         switch (dev->type) {
1011 #if IS_ENABLED(CONFIG_FDDI)
1012         case ARPHRD_FDDI:
1013                 /*
1014                  * According to RFC 1390, FDDI devices should accept ARP
1015                  * hardware types of 1 (Ethernet).  However, to be more
1016                  * robust, we'll accept hardware types of either 1 (Ethernet)
1017                  * or 6 (IEEE 802.2).
1018                  */
1019                 if (r->arp_ha.sa_family != ARPHRD_FDDI &&
1020                     r->arp_ha.sa_family != ARPHRD_ETHER &&
1021                     r->arp_ha.sa_family != ARPHRD_IEEE802)
1022                         return -EINVAL;
1023                 break;
1024 #endif
1025         default:
1026                 if (r->arp_ha.sa_family != dev->type)
1027                         return -EINVAL;
1028                 break;
1029         }
1030
1031         neigh = __neigh_lookup_errno(&arp_tbl, &ip, dev);
1032         err = PTR_ERR(neigh);
1033         if (!IS_ERR(neigh)) {
1034                 unsigned int state = NUD_STALE;
1035                 if (r->arp_flags & ATF_PERM)
1036                         state = NUD_PERMANENT;
1037                 err = neigh_update(neigh, (r->arp_flags & ATF_COM) ?
1038                                    r->arp_ha.sa_data : NULL, state,
1039                                    NEIGH_UPDATE_F_OVERRIDE |
1040                                    NEIGH_UPDATE_F_ADMIN);
1041                 neigh_release(neigh);
1042         }
1043         return err;
1044 }
1045
1046 static unsigned int arp_state_to_flags(struct neighbour *neigh)
1047 {
1048         if (neigh->nud_state&NUD_PERMANENT)
1049                 return ATF_PERM | ATF_COM;
1050         else if (neigh->nud_state&NUD_VALID)
1051                 return ATF_COM;
1052         else
1053                 return 0;
1054 }
1055
1056 /*
1057  *      Get an ARP cache entry.
1058  */
1059
1060 static int arp_req_get(struct arpreq *r, struct net_device *dev)
1061 {
1062         __be32 ip = ((struct sockaddr_in *) &r->arp_pa)->sin_addr.s_addr;
1063         struct neighbour *neigh;
1064         int err = -ENXIO;
1065
1066         neigh = neigh_lookup(&arp_tbl, &ip, dev);
1067         if (neigh) {
1068                 if (!(neigh->nud_state & NUD_NOARP)) {
1069                         read_lock_bh(&neigh->lock);
1070                         memcpy(r->arp_ha.sa_data, neigh->ha, dev->addr_len);
1071                         r->arp_flags = arp_state_to_flags(neigh);
1072                         read_unlock_bh(&neigh->lock);
1073                         r->arp_ha.sa_family = dev->type;
1074                         strlcpy(r->arp_dev, dev->name, sizeof(r->arp_dev));
1075                         err = 0;
1076                 }
1077                 neigh_release(neigh);
1078         }
1079         return err;
1080 }
1081
1082 static int arp_invalidate(struct net_device *dev, __be32 ip)
1083 {
1084         struct neighbour *neigh = neigh_lookup(&arp_tbl, &ip, dev);
1085         int err = -ENXIO;
1086
1087         if (neigh) {
1088                 if (neigh->nud_state & ~NUD_NOARP)
1089                         err = neigh_update(neigh, NULL, NUD_FAILED,
1090                                            NEIGH_UPDATE_F_OVERRIDE|
1091                                            NEIGH_UPDATE_F_ADMIN);
1092                 neigh_release(neigh);
1093         }
1094
1095         return err;
1096 }
1097
1098 static int arp_req_delete_public(struct net *net, struct arpreq *r,
1099                 struct net_device *dev)
1100 {
1101         __be32 ip = ((struct sockaddr_in *) &r->arp_pa)->sin_addr.s_addr;
1102         __be32 mask = ((struct sockaddr_in *)&r->arp_netmask)->sin_addr.s_addr;
1103
1104         if (mask == htonl(0xFFFFFFFF))
1105                 return pneigh_delete(&arp_tbl, net, &ip, dev);
1106
1107         if (mask)
1108                 return -EINVAL;
1109
1110         return arp_req_set_proxy(net, dev, 0);
1111 }
1112
1113 static int arp_req_delete(struct net *net, struct arpreq *r,
1114                           struct net_device *dev)
1115 {
1116         __be32 ip;
1117
1118         if (r->arp_flags & ATF_PUBL)
1119                 return arp_req_delete_public(net, r, dev);
1120
1121         ip = ((struct sockaddr_in *)&r->arp_pa)->sin_addr.s_addr;
1122         if (!dev) {
1123                 struct rtable *rt = ip_route_output(net, ip, 0, RTO_ONLINK, 0);
1124                 if (IS_ERR(rt))
1125                         return PTR_ERR(rt);
1126                 dev = rt->dst.dev;
1127                 ip_rt_put(rt);
1128                 if (!dev)
1129                         return -EINVAL;
1130         }
1131         return arp_invalidate(dev, ip);
1132 }
1133
1134 /*
1135  *      Handle an ARP layer I/O control request.
1136  */
1137
1138 int arp_ioctl(struct net *net, unsigned int cmd, void __user *arg)
1139 {
1140         int err;
1141         struct arpreq r;
1142         struct net_device *dev = NULL;
1143
1144         switch (cmd) {
1145         case SIOCDARP:
1146         case SIOCSARP:
1147                 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
1148                         return -EPERM;
1149         case SIOCGARP:
1150                 err = copy_from_user(&r, arg, sizeof(struct arpreq));
1151                 if (err)
1152                         return -EFAULT;
1153                 break;
1154         default:
1155                 return -EINVAL;
1156         }
1157
1158         if (r.arp_pa.sa_family != AF_INET)
1159                 return -EPFNOSUPPORT;
1160
1161         if (!(r.arp_flags & ATF_PUBL) &&
1162             (r.arp_flags & (ATF_NETMASK | ATF_DONTPUB)))
1163                 return -EINVAL;
1164         if (!(r.arp_flags & ATF_NETMASK))
1165                 ((struct sockaddr_in *)&r.arp_netmask)->sin_addr.s_addr =
1166                                                            htonl(0xFFFFFFFFUL);
1167         rtnl_lock();
1168         if (r.arp_dev[0]) {
1169                 err = -ENODEV;
1170                 dev = __dev_get_by_name(net, r.arp_dev);
1171                 if (!dev)
1172                         goto out;
1173
1174                 /* Mmmm... It is wrong... ARPHRD_NETROM==0 */
1175                 if (!r.arp_ha.sa_family)
1176                         r.arp_ha.sa_family = dev->type;
1177                 err = -EINVAL;
1178                 if ((r.arp_flags & ATF_COM) && r.arp_ha.sa_family != dev->type)
1179                         goto out;
1180         } else if (cmd == SIOCGARP) {
1181                 err = -ENODEV;
1182                 goto out;
1183         }
1184
1185         switch (cmd) {
1186         case SIOCDARP:
1187                 err = arp_req_delete(net, &r, dev);
1188                 break;
1189         case SIOCSARP:
1190                 err = arp_req_set(net, &r, dev);
1191                 break;
1192         case SIOCGARP:
1193                 err = arp_req_get(&r, dev);
1194                 break;
1195         }
1196 out:
1197         rtnl_unlock();
1198         if (cmd == SIOCGARP && !err && copy_to_user(arg, &r, sizeof(r)))
1199                 err = -EFAULT;
1200         return err;
1201 }
1202
1203 static int arp_netdev_event(struct notifier_block *this, unsigned long event,
1204                             void *ptr)
1205 {
1206         struct net_device *dev = netdev_notifier_info_to_dev(ptr);
1207         struct netdev_notifier_change_info *change_info;
1208
1209         switch (event) {
1210         case NETDEV_CHANGEADDR:
1211                 neigh_changeaddr(&arp_tbl, dev);
1212                 rt_cache_flush(dev_net(dev));
1213                 break;
1214         case NETDEV_CHANGE:
1215                 change_info = ptr;
1216                 if (change_info->flags_changed & IFF_NOARP)
1217                         neigh_changeaddr(&arp_tbl, dev);
1218                 break;
1219         default:
1220                 break;
1221         }
1222
1223         return NOTIFY_DONE;
1224 }
1225
1226 static struct notifier_block arp_netdev_notifier = {
1227         .notifier_call = arp_netdev_event,
1228 };
1229
1230 /* Note, that it is not on notifier chain.
1231    It is necessary, that this routine was called after route cache will be
1232    flushed.
1233  */
1234 void arp_ifdown(struct net_device *dev)
1235 {
1236         neigh_ifdown(&arp_tbl, dev);
1237 }
1238
1239
1240 /*
1241  *      Called once on startup.
1242  */
1243
1244 static struct packet_type arp_packet_type __read_mostly = {
1245         .type = cpu_to_be16(ETH_P_ARP),
1246         .func = arp_rcv,
1247 };
1248
1249 static int arp_proc_init(void);
1250
1251 void __init arp_init(void)
1252 {
1253         neigh_table_init(NEIGH_ARP_TABLE, &arp_tbl);
1254
1255         dev_add_pack(&arp_packet_type);
1256         arp_proc_init();
1257 #ifdef CONFIG_SYSCTL
1258         neigh_sysctl_register(NULL, &arp_tbl.parms, NULL);
1259 #endif
1260         register_netdevice_notifier(&arp_netdev_notifier);
1261 }
1262
1263 #ifdef CONFIG_PROC_FS
1264 #if IS_ENABLED(CONFIG_AX25)
1265
1266 /* ------------------------------------------------------------------------ */
1267 /*
1268  *      ax25 -> ASCII conversion
1269  */
1270 static void ax2asc2(ax25_address *a, char *buf)
1271 {
1272         char c, *s;
1273         int n;
1274
1275         for (n = 0, s = buf; n < 6; n++) {
1276                 c = (a->ax25_call[n] >> 1) & 0x7F;
1277
1278                 if (c != ' ')
1279                         *s++ = c;
1280         }
1281
1282         *s++ = '-';
1283         n = (a->ax25_call[6] >> 1) & 0x0F;
1284         if (n > 9) {
1285                 *s++ = '1';
1286                 n -= 10;
1287         }
1288
1289         *s++ = n + '0';
1290         *s++ = '\0';
1291
1292         if (*buf == '\0' || *buf == '-') {
1293                 buf[0] = '*';
1294                 buf[1] = '\0';
1295         }
1296 }
1297 #endif /* CONFIG_AX25 */
1298
1299 #define HBUFFERLEN 30
1300
1301 static void arp_format_neigh_entry(struct seq_file *seq,
1302                                    struct neighbour *n)
1303 {
1304         char hbuffer[HBUFFERLEN];
1305         int k, j;
1306         char tbuf[16];
1307         struct net_device *dev = n->dev;
1308         int hatype = dev->type;
1309
1310         read_lock(&n->lock);
1311         /* Convert hardware address to XX:XX:XX:XX ... form. */
1312 #if IS_ENABLED(CONFIG_AX25)
1313         if (hatype == ARPHRD_AX25 || hatype == ARPHRD_NETROM)
1314                 ax2asc2((ax25_address *)n->ha, hbuffer);
1315         else {
1316 #endif
1317         for (k = 0, j = 0; k < HBUFFERLEN - 3 && j < dev->addr_len; j++) {
1318                 hbuffer[k++] = hex_asc_hi(n->ha[j]);
1319                 hbuffer[k++] = hex_asc_lo(n->ha[j]);
1320                 hbuffer[k++] = ':';
1321         }
1322         if (k != 0)
1323                 --k;
1324         hbuffer[k] = 0;
1325 #if IS_ENABLED(CONFIG_AX25)
1326         }
1327 #endif
1328         sprintf(tbuf, "%pI4", n->primary_key);
1329         seq_printf(seq, "%-16s 0x%-10x0x%-10x%-17s     *        %s\n",
1330                    tbuf, hatype, arp_state_to_flags(n), hbuffer, dev->name);
1331         read_unlock(&n->lock);
1332 }
1333
1334 static void arp_format_pneigh_entry(struct seq_file *seq,
1335                                     struct pneigh_entry *n)
1336 {
1337         struct net_device *dev = n->dev;
1338         int hatype = dev ? dev->type : 0;
1339         char tbuf[16];
1340
1341         sprintf(tbuf, "%pI4", n->key);
1342         seq_printf(seq, "%-16s 0x%-10x0x%-10x%s     *        %s\n",
1343                    tbuf, hatype, ATF_PUBL | ATF_PERM, "00:00:00:00:00:00",
1344                    dev ? dev->name : "*");
1345 }
1346
1347 static int arp_seq_show(struct seq_file *seq, void *v)
1348 {
1349         if (v == SEQ_START_TOKEN) {
1350                 seq_puts(seq, "IP address       HW type     Flags       "
1351                               "HW address            Mask     Device\n");
1352         } else {
1353                 struct neigh_seq_state *state = seq->private;
1354
1355                 if (state->flags & NEIGH_SEQ_IS_PNEIGH)
1356                         arp_format_pneigh_entry(seq, v);
1357                 else
1358                         arp_format_neigh_entry(seq, v);
1359         }
1360
1361         return 0;
1362 }
1363
1364 static void *arp_seq_start(struct seq_file *seq, loff_t *pos)
1365 {
1366         /* Don't want to confuse "arp -a" w/ magic entries,
1367          * so we tell the generic iterator to skip NUD_NOARP.
1368          */
1369         return neigh_seq_start(seq, pos, &arp_tbl, NEIGH_SEQ_SKIP_NOARP);
1370 }
1371
1372 /* ------------------------------------------------------------------------ */
1373
1374 static const struct seq_operations arp_seq_ops = {
1375         .start  = arp_seq_start,
1376         .next   = neigh_seq_next,
1377         .stop   = neigh_seq_stop,
1378         .show   = arp_seq_show,
1379 };
1380
1381 static int arp_seq_open(struct inode *inode, struct file *file)
1382 {
1383         return seq_open_net(inode, file, &arp_seq_ops,
1384                             sizeof(struct neigh_seq_state));
1385 }
1386
1387 static const struct file_operations arp_seq_fops = {
1388         .owner          = THIS_MODULE,
1389         .open           = arp_seq_open,
1390         .read           = seq_read,
1391         .llseek         = seq_lseek,
1392         .release        = seq_release_net,
1393 };
1394
1395
1396 static int __net_init arp_net_init(struct net *net)
1397 {
1398         if (!proc_create("arp", S_IRUGO, net->proc_net, &arp_seq_fops))
1399                 return -ENOMEM;
1400         return 0;
1401 }
1402
1403 static void __net_exit arp_net_exit(struct net *net)
1404 {
1405         remove_proc_entry("arp", net->proc_net);
1406 }
1407
1408 static struct pernet_operations arp_net_ops = {
1409         .init = arp_net_init,
1410         .exit = arp_net_exit,
1411 };
1412
1413 static int __init arp_proc_init(void)
1414 {
1415         return register_pernet_subsys(&arp_net_ops);
1416 }
1417
1418 #else /* CONFIG_PROC_FS */
1419
1420 static int __init arp_proc_init(void)
1421 {
1422         return 0;
1423 }
1424
1425 #endif /* CONFIG_PROC_FS */