arp.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:30k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* linux/net/inet/arp.c
  2.  *
  3.  * Version: $Id: arp.c,v 1.99 2001/08/30 22:55:42 davem Exp $
  4.  *
  5.  * Copyright (C) 1994 by Florian  La Roche
  6.  *
  7.  * This module implements the Address Resolution Protocol ARP (RFC 826),
  8.  * which is used to convert IP addresses (or in the future maybe other
  9.  * high-level addresses) into a low-level hardware address (like an Ethernet
  10.  * address).
  11.  *
  12.  * This program is free software; you can redistribute it and/or
  13.  * modify it under the terms of the GNU General Public License
  14.  * as published by the Free Software Foundation; either version
  15.  * 2 of the License, or (at your option) any later version.
  16.  *
  17.  * Fixes:
  18.  * Alan Cox : Removed the Ethernet assumptions in 
  19.  * Florian's code
  20.  * Alan Cox : Fixed some small errors in the ARP 
  21.  * logic
  22.  * Alan Cox : Allow >4K in /proc
  23.  * Alan Cox : Make ARP add its own protocol entry
  24.  * Ross Martin     :       Rewrote arp_rcv() and arp_get_info()
  25.  * Stephen Henson : Add AX25 support to arp_get_info()
  26.  * Alan Cox : Drop data when a device is downed.
  27.  * Alan Cox : Use init_timer().
  28.  * Alan Cox : Double lock fixes.
  29.  * Martin Seine : Move the arphdr structure
  30.  * to if_arp.h for compatibility.
  31.  * with BSD based programs.
  32.  * Andrew Tridgell :       Added ARP netmask code and
  33.  * re-arranged proxy handling.
  34.  * Alan Cox : Changed to use notifiers.
  35.  * Niibe Yutaka : Reply for this device or proxies only.
  36.  * Alan Cox : Don't proxy across hardware types!
  37.  * Jonathan Naylor : Added support for NET/ROM.
  38.  * Mike Shaver     :       RFC1122 checks.
  39.  * Jonathan Naylor : Only lookup the hardware address for
  40.  * the correct hardware type.
  41.  * Germano Caronni : Assorted subtle races.
  42.  * Craig Schlenter : Don't modify permanent entry 
  43.  * during arp_rcv.
  44.  * Russ Nelson : Tidied up a few bits.
  45.  * Alexey Kuznetsov: Major changes to caching and behaviour,
  46.  * eg intelligent arp probing and 
  47.  * generation
  48.  * of host down events.
  49.  * Alan Cox : Missing unlock in device events.
  50.  * Eckes : ARP ioctl control errors.
  51.  * Alexey Kuznetsov: Arp free fix.
  52.  * Manuel Rodriguez: Gratuitous ARP.
  53.  *              Jonathan Layes  :       Added arpd support through kerneld 
  54.  *                                      message queue (960314)
  55.  * Mike Shaver : /proc/sys/net/ipv4/arp_* support
  56.  * Mike McLagan    : Routing by source
  57.  * Stuart Cheshire : Metricom and grat arp fixes
  58.  * *** FOR 2.1 clean this up ***
  59.  * Lawrence V. Stefani: (08/12/96) Added FDDI support.
  60.  * Alan Cox  : Took the AP1000 nasty FDDI hack and
  61.  * folded into the mainstream FDDI code.
  62.  * Ack spit, Linus how did you allow that
  63.  * one in...
  64.  * Jes Sorensen : Make FDDI work again in 2.1.x and
  65.  * clean up the APFDDI & gen. FDDI bits.
  66.  * Alexey Kuznetsov: new arp state machine;
  67.  * now it is in net/core/neighbour.c.
  68.  * Krzysztof Halasa: Added Frame Relay ARP support.
  69.  */
  70. #include <linux/types.h>
  71. #include <linux/string.h>
  72. #include <linux/kernel.h>
  73. #include <linux/sched.h>
  74. #include <linux/config.h>
  75. #include <linux/socket.h>
  76. #include <linux/sockios.h>
  77. #include <linux/errno.h>
  78. #include <linux/in.h>
  79. #include <linux/mm.h>
  80. #include <linux/inet.h>
  81. #include <linux/netdevice.h>
  82. #include <linux/etherdevice.h>
  83. #include <linux/fddidevice.h>
  84. #include <linux/if_arp.h>
  85. #include <linux/trdevice.h>
  86. #include <linux/skbuff.h>
  87. #include <linux/proc_fs.h>
  88. #include <linux/stat.h>
  89. #include <linux/init.h>
  90. #ifdef CONFIG_SYSCTL
  91. #include <linux/sysctl.h>
  92. #endif
  93. #include <net/ip.h>
  94. #include <net/icmp.h>
  95. #include <net/route.h>
  96. #include <net/protocol.h>
  97. #include <net/tcp.h>
  98. #include <net/sock.h>
  99. #include <net/arp.h>
  100. #if defined(CONFIG_AX25) || defined(CONFIG_AX25_MODULE)
  101. #include <net/ax25.h>
  102. #if defined(CONFIG_NETROM) || defined(CONFIG_NETROM_MODULE)
  103. #include <net/netrom.h>
  104. #endif
  105. #endif
  106. #ifdef CONFIG_ATM_CLIP
  107. #include <net/atmclip.h>
  108. #endif
  109. #include <asm/system.h>
  110. #include <asm/uaccess.h>
  111. #include <linux/netfilter_arp.h>
  112. /*
  113.  * Interface to generic neighbour cache.
  114.  */
  115. static u32 arp_hash(const void *pkey, const struct net_device *dev);
  116. static int arp_constructor(struct neighbour *neigh);
  117. static void arp_solicit(struct neighbour *neigh, struct sk_buff *skb);
  118. static void arp_error_report(struct neighbour *neigh, struct sk_buff *skb);
  119. static void parp_redo(struct sk_buff *skb);
  120. static struct neigh_ops arp_generic_ops = {
  121. family: AF_INET,
  122. solicit: arp_solicit,
  123. error_report: arp_error_report,
  124. output: neigh_resolve_output,
  125. connected_output: neigh_connected_output,
  126. hh_output: dev_queue_xmit,
  127. queue_xmit: dev_queue_xmit,
  128. };
  129. static struct neigh_ops arp_hh_ops = {
  130. family: AF_INET,
  131. solicit: arp_solicit,
  132. error_report: arp_error_report,
  133. output: neigh_resolve_output,
  134. connected_output: neigh_resolve_output,
  135. hh_output: dev_queue_xmit,
  136. queue_xmit: dev_queue_xmit,
  137. };
  138. static struct neigh_ops arp_direct_ops = {
  139. family: AF_INET,
  140. output: dev_queue_xmit,
  141. connected_output: dev_queue_xmit,
  142. hh_output: dev_queue_xmit,
  143. queue_xmit: dev_queue_xmit,
  144. };
  145. struct neigh_ops arp_broken_ops = {
  146. family: AF_INET,
  147. solicit: arp_solicit,
  148. error_report: arp_error_report,
  149. output: neigh_compat_output,
  150. connected_output: neigh_compat_output,
  151. hh_output: dev_queue_xmit,
  152. queue_xmit: dev_queue_xmit,
  153. };
  154. struct neigh_table arp_tbl = {
  155. family: AF_INET,
  156. entry_size: sizeof(struct neighbour) + 4,
  157. key_len: 4,
  158. hash: arp_hash,
  159. constructor: arp_constructor,
  160. proxy_redo: parp_redo,
  161. id: "arp_cache",
  162. parms: {
  163. tbl: &arp_tbl,
  164. base_reachable_time: 30 * HZ,
  165. retrans_time: 1 * HZ,
  166. gc_staletime: 60 * HZ,
  167. reachable_time: 30 * HZ,
  168. delay_probe_time: 5 * HZ,
  169. queue_len: 3,
  170. ucast_probes: 3,
  171. mcast_probes: 3,
  172. anycast_delay: 1 * HZ,
  173. proxy_delay: (8 * HZ) / 10,
  174. proxy_qlen: 64,
  175. locktime: 1 * HZ,
  176. },
  177. gc_interval: 30 * HZ,
  178. gc_thresh1: 128,
  179. gc_thresh2: 512,
  180. gc_thresh3: 1024,
  181. };
  182. int arp_mc_map(u32 addr, u8 *haddr, struct net_device *dev, int dir)
  183. {
  184. switch (dev->type) {
  185. case ARPHRD_ETHER:
  186. case ARPHRD_FDDI:
  187. case ARPHRD_IEEE802:
  188. ip_eth_mc_map(addr, haddr);
  189. return 0; 
  190. case ARPHRD_IEEE802_TR:
  191. ip_tr_mc_map(addr, haddr);
  192. return 0;
  193. default:
  194. if (dir) {
  195. memcpy(haddr, dev->broadcast, dev->addr_len);
  196. return 0;
  197. }
  198. }
  199. return -EINVAL;
  200. }
  201. static u32 arp_hash(const void *pkey, const struct net_device *dev)
  202. {
  203. u32 hash_val;
  204. hash_val = *(u32*)pkey;
  205. hash_val ^= (hash_val>>16);
  206. hash_val ^= hash_val>>8;
  207. hash_val ^= hash_val>>3;
  208. hash_val = (hash_val^dev->ifindex)&NEIGH_HASHMASK;
  209. return hash_val;
  210. }
  211. static int arp_constructor(struct neighbour *neigh)
  212. {
  213. u32 addr = *(u32*)neigh->primary_key;
  214. struct net_device *dev = neigh->dev;
  215. struct in_device *in_dev = in_dev_get(dev);
  216. if (in_dev == NULL)
  217. return -EINVAL;
  218. neigh->type = inet_addr_type(addr);
  219. if (in_dev->arp_parms)
  220. neigh->parms = in_dev->arp_parms;
  221. in_dev_put(in_dev);
  222. if (dev->hard_header == NULL) {
  223. neigh->nud_state = NUD_NOARP;
  224. neigh->ops = &arp_direct_ops;
  225. neigh->output = neigh->ops->queue_xmit;
  226. } else {
  227. /* Good devices (checked by reading texts, but only Ethernet is
  228.    tested)
  229.    ARPHRD_ETHER: (ethernet, apfddi)
  230.    ARPHRD_FDDI: (fddi)
  231.    ARPHRD_IEEE802: (tr)
  232.    ARPHRD_METRICOM: (strip)
  233.    ARPHRD_ARCNET:
  234.    etc. etc. etc.
  235.    ARPHRD_IPDDP will also work, if author repairs it.
  236.    I did not it, because this driver does not work even
  237.    in old paradigm.
  238.  */
  239. #if 1
  240. /* So... these "amateur" devices are hopeless.
  241.    The only thing, that I can say now:
  242.    It is very sad that we need to keep ugly obsolete
  243.    code to make them happy.
  244.    They should be moved to more reasonable state, now
  245.    they use rebuild_header INSTEAD OF hard_start_xmit!!!
  246.    Besides that, they are sort of out of date
  247.    (a lot of redundant clones/copies, useless in 2.1),
  248.    I wonder why people believe that they work.
  249.  */
  250. switch (dev->type) {
  251. default:
  252. break;
  253. case ARPHRD_ROSE:
  254. #if defined(CONFIG_AX25) || defined(CONFIG_AX25_MODULE)
  255. case ARPHRD_AX25:
  256. #if defined(CONFIG_NETROM) || defined(CONFIG_NETROM_MODULE)
  257. case ARPHRD_NETROM:
  258. #endif
  259. neigh->ops = &arp_broken_ops;
  260. neigh->output = neigh->ops->output;
  261. return 0;
  262. #endif
  263. ;}
  264. #endif
  265. if (neigh->type == RTN_MULTICAST) {
  266. neigh->nud_state = NUD_NOARP;
  267. arp_mc_map(addr, neigh->ha, dev, 1);
  268. } else if (dev->flags&(IFF_NOARP|IFF_LOOPBACK)) {
  269. neigh->nud_state = NUD_NOARP;
  270. memcpy(neigh->ha, dev->dev_addr, dev->addr_len);
  271. } else if (neigh->type == RTN_BROADCAST || dev->flags&IFF_POINTOPOINT) {
  272. neigh->nud_state = NUD_NOARP;
  273. memcpy(neigh->ha, dev->broadcast, dev->addr_len);
  274. }
  275. if (dev->hard_header_cache)
  276. neigh->ops = &arp_hh_ops;
  277. else
  278. neigh->ops = &arp_generic_ops;
  279. if (neigh->nud_state&NUD_VALID)
  280. neigh->output = neigh->ops->connected_output;
  281. else
  282. neigh->output = neigh->ops->output;
  283. }
  284. return 0;
  285. }
  286. static void arp_error_report(struct neighbour *neigh, struct sk_buff *skb)
  287. {
  288. dst_link_failure(skb);
  289. kfree_skb(skb);
  290. }
  291. static void arp_solicit(struct neighbour *neigh, struct sk_buff *skb)
  292. {
  293. u32 saddr;
  294. u8  *dst_ha = NULL;
  295. struct net_device *dev = neigh->dev;
  296. u32 target = *(u32*)neigh->primary_key;
  297. int probes = atomic_read(&neigh->probes);
  298. if (skb && inet_addr_type(skb->nh.iph->saddr) == RTN_LOCAL)
  299. saddr = skb->nh.iph->saddr;
  300. else
  301. saddr = inet_select_addr(dev, target, RT_SCOPE_LINK);
  302. if ((probes -= neigh->parms->ucast_probes) < 0) {
  303. if (!(neigh->nud_state&NUD_VALID))
  304. printk(KERN_DEBUG "trying to ucast probe in NUD_INVALIDn");
  305. dst_ha = neigh->ha;
  306. read_lock_bh(&neigh->lock);
  307. } else if ((probes -= neigh->parms->app_probes) < 0) {
  308. #ifdef CONFIG_ARPD
  309. neigh_app_ns(neigh);
  310. #endif
  311. return;
  312. }
  313. arp_send(ARPOP_REQUEST, ETH_P_ARP, target, dev, saddr,
  314.  dst_ha, dev->dev_addr, NULL);
  315. if (dst_ha)
  316. read_unlock_bh(&neigh->lock);
  317. }
  318. static int arp_filter(__u32 sip, __u32 tip, struct net_device *dev)
  319. {
  320. struct rtable *rt;
  321. int flag = 0; 
  322. /*unsigned long now; */
  323. if (ip_route_output(&rt, sip, tip, 0, 0) < 0) 
  324. return 1;
  325. if (rt->u.dst.dev != dev) { 
  326. NET_INC_STATS_BH(ArpFilter);
  327. flag = 1;
  328. ip_rt_put(rt); 
  329. return flag; 
  330. /* OBSOLETE FUNCTIONS */
  331. /*
  332.  * Find an arp mapping in the cache. If not found, post a request.
  333.  *
  334.  * It is very UGLY routine: it DOES NOT use skb->dst->neighbour,
  335.  * even if it exists. It is supposed that skb->dev was mangled
  336.  * by a virtual device (eql, shaper). Nobody but broken devices
  337.  * is allowed to use this function, it is scheduled to be removed. --ANK
  338.  */
  339. static int arp_set_predefined(int addr_hint, unsigned char * haddr, u32 paddr, struct net_device * dev)
  340. {
  341. switch (addr_hint) {
  342. case RTN_LOCAL:
  343. printk(KERN_DEBUG "ARP: arp called for own IP addressn");
  344. memcpy(haddr, dev->dev_addr, dev->addr_len);
  345. return 1;
  346. case RTN_MULTICAST:
  347. arp_mc_map(paddr, haddr, dev, 1);
  348. return 1;
  349. case RTN_BROADCAST:
  350. memcpy(haddr, dev->broadcast, dev->addr_len);
  351. return 1;
  352. }
  353. return 0;
  354. }
  355. int arp_find(unsigned char *haddr, struct sk_buff *skb)
  356. {
  357. struct net_device *dev = skb->dev;
  358. u32 paddr;
  359. struct neighbour *n;
  360. if (!skb->dst) {
  361. printk(KERN_DEBUG "arp_find is called with dst==NULLn");
  362. kfree_skb(skb);
  363. return 1;
  364. }
  365. paddr = ((struct rtable*)skb->dst)->rt_gateway;
  366. if (arp_set_predefined(inet_addr_type(paddr), haddr, paddr, dev))
  367. return 0;
  368. n = __neigh_lookup(&arp_tbl, &paddr, dev, 1);
  369. if (n) {
  370. n->used = jiffies;
  371. if (n->nud_state&NUD_VALID || neigh_event_send(n, skb) == 0) {
  372. read_lock_bh(&n->lock);
  373.   memcpy(haddr, n->ha, dev->addr_len);
  374. read_unlock_bh(&n->lock);
  375. neigh_release(n);
  376. return 0;
  377. }
  378. neigh_release(n);
  379. } else
  380. kfree_skb(skb);
  381. return 1;
  382. }
  383. /* END OF OBSOLETE FUNCTIONS */
  384. int arp_bind_neighbour(struct dst_entry *dst)
  385. {
  386. struct net_device *dev = dst->dev;
  387. struct neighbour *n = dst->neighbour;
  388. if (dev == NULL)
  389. return -EINVAL;
  390. if (n == NULL) {
  391. u32 nexthop = ((struct rtable*)dst)->rt_gateway;
  392. if (dev->flags&(IFF_LOOPBACK|IFF_POINTOPOINT))
  393. nexthop = 0;
  394. n = __neigh_lookup_errno(
  395. #ifdef CONFIG_ATM_CLIP
  396.     dev->type == ARPHRD_ATM ? &clip_tbl :
  397. #endif
  398.     &arp_tbl, &nexthop, dev);
  399. if (IS_ERR(n))
  400. return PTR_ERR(n);
  401. dst->neighbour = n;
  402. }
  403. return 0;
  404. }
  405. /*
  406.  * Check if we can use proxy ARP for this path
  407.  */
  408. static inline int arp_fwd_proxy(struct in_device *in_dev, struct rtable *rt)
  409. {
  410. struct in_device *out_dev;
  411. int imi, omi = -1;
  412. if (!IN_DEV_PROXY_ARP(in_dev))
  413. return 0;
  414. if ((imi = IN_DEV_MEDIUM_ID(in_dev)) == 0)
  415. return 1;
  416. if (imi == -1)
  417. return 0;
  418. /* place to check for proxy_arp for routes */
  419. if ((out_dev = in_dev_get(rt->u.dst.dev)) != NULL) {
  420. omi = IN_DEV_MEDIUM_ID(out_dev);
  421. in_dev_put(out_dev);
  422. }
  423. return (omi != imi && omi != -1);
  424. }
  425. /*
  426.  * Interface to link layer: send routine and receive handler.
  427.  */
  428. /*
  429.  * Create and send an arp packet. If (dest_hw == NULL), we create a broadcast
  430.  * message.
  431.  */
  432. void arp_send(int type, int ptype, u32 dest_ip, 
  433.       struct net_device *dev, u32 src_ip, 
  434.       unsigned char *dest_hw, unsigned char *src_hw,
  435.       unsigned char *target_hw)
  436. {
  437. struct sk_buff *skb;
  438. struct arphdr *arp;
  439. unsigned char *arp_ptr;
  440. /*
  441.  * No arp on this interface.
  442.  */
  443. if (dev->flags&IFF_NOARP)
  444. return;
  445. /*
  446.  * Allocate a buffer
  447.  */
  448. skb = alloc_skb(sizeof(struct arphdr)+ 2*(dev->addr_len+4)
  449. + dev->hard_header_len + 15, GFP_ATOMIC);
  450. if (skb == NULL)
  451. return;
  452. skb_reserve(skb, (dev->hard_header_len+15)&~15);
  453. skb->nh.raw = skb->data;
  454. arp = (struct arphdr *) skb_put(skb,sizeof(struct arphdr) + 2*(dev->addr_len+4));
  455. skb->dev = dev;
  456. skb->protocol = htons (ETH_P_ARP);
  457. if (src_hw == NULL)
  458. src_hw = dev->dev_addr;
  459. if (dest_hw == NULL)
  460. dest_hw = dev->broadcast;
  461. /*
  462.  * Fill the device header for the ARP frame
  463.  */
  464. if (dev->hard_header &&
  465.     dev->hard_header(skb,dev,ptype,dest_hw,src_hw,skb->len) < 0)
  466. goto out;
  467. /*
  468.  * Fill out the arp protocol part.
  469.  *
  470.  * The arp hardware type should match the device type, except for FDDI,
  471.  * which (according to RFC 1390) should always equal 1 (Ethernet).
  472.  */
  473. /*
  474.  * Exceptions everywhere. AX.25 uses the AX.25 PID value not the
  475.  * DIX code for the protocol. Make these device structure fields.
  476.  */
  477. switch (dev->type) {
  478. default:
  479. arp->ar_hrd = htons(dev->type);
  480. arp->ar_pro = htons(ETH_P_IP);
  481. break;
  482. #if defined(CONFIG_AX25) || defined(CONFIG_AX25_MODULE)
  483. case ARPHRD_AX25:
  484. arp->ar_hrd = htons(ARPHRD_AX25);
  485. arp->ar_pro = htons(AX25_P_IP);
  486. break;
  487. #if defined(CONFIG_NETROM) || defined(CONFIG_NETROM_MODULE)
  488. case ARPHRD_NETROM:
  489. arp->ar_hrd = htons(ARPHRD_NETROM);
  490. arp->ar_pro = htons(AX25_P_IP);
  491. break;
  492. #endif
  493. #endif
  494. #ifdef CONFIG_FDDI
  495. case ARPHRD_FDDI:
  496. arp->ar_hrd = htons(ARPHRD_ETHER);
  497. arp->ar_pro = htons(ETH_P_IP);
  498. break;
  499. #endif
  500. #ifdef CONFIG_TR
  501. case ARPHRD_IEEE802_TR:
  502. arp->ar_hrd = htons(ARPHRD_IEEE802);
  503. arp->ar_pro = htons(ETH_P_IP);
  504. break;
  505. #endif
  506. }
  507. arp->ar_hln = dev->addr_len;
  508. arp->ar_pln = 4;
  509. arp->ar_op = htons(type);
  510. arp_ptr=(unsigned char *)(arp+1);
  511. memcpy(arp_ptr, src_hw, dev->addr_len);
  512. arp_ptr+=dev->addr_len;
  513. memcpy(arp_ptr, &src_ip,4);
  514. arp_ptr+=4;
  515. if (target_hw != NULL)
  516. memcpy(arp_ptr, target_hw, dev->addr_len);
  517. else
  518. memset(arp_ptr, 0, dev->addr_len);
  519. arp_ptr+=dev->addr_len;
  520. memcpy(arp_ptr, &dest_ip, 4);
  521. /* Send it off, maybe filter it using firewalling first.  */
  522. NF_HOOK(NF_ARP, NF_ARP_OUT, skb, NULL, dev, dev_queue_xmit);
  523. return;
  524. out:
  525. kfree_skb(skb);
  526. }
  527. static void parp_redo(struct sk_buff *skb)
  528. {
  529. arp_rcv(skb, skb->dev, NULL);
  530. }
  531. /*
  532.  * Process an arp request.
  533.  */
  534. int arp_process(struct sk_buff *skb)
  535. {
  536. struct net_device *dev = skb->dev;
  537. struct in_device *in_dev = in_dev_get(dev);
  538. struct arphdr *arp;
  539. unsigned char *arp_ptr;
  540. struct rtable *rt;
  541. unsigned char *sha, *tha;
  542. u32 sip, tip;
  543. u16 dev_type = dev->type;
  544. int addr_type;
  545. struct neighbour *n;
  546. /* arp_rcv below verifies the ARP header, verifies the device
  547.  * is ARP'able, and linearizes the SKB (if needed).
  548.  */
  549. if (in_dev == NULL)
  550. goto out;
  551. arp = skb->nh.arph;
  552. arp_ptr= (unsigned char *)(arp+1);
  553. switch (dev_type) {
  554. default:
  555. if (arp->ar_pro != htons(ETH_P_IP))
  556. goto out;
  557. if (htons(dev_type) != arp->ar_hrd)
  558. goto out;
  559. break;
  560. #ifdef CONFIG_NET_ETHERNET
  561. case ARPHRD_ETHER:
  562. /*
  563.  * ETHERNET devices will accept ARP hardware types of either
  564.  * 1 (Ethernet) or 6 (IEEE 802.2).
  565.  */
  566. if (arp->ar_hrd != htons(ARPHRD_ETHER) &&
  567.     arp->ar_hrd != htons(ARPHRD_IEEE802))
  568. goto out;
  569. if (arp->ar_pro != htons(ETH_P_IP))
  570. goto out;
  571. break;
  572. #endif
  573. #ifdef CONFIG_TR
  574. case ARPHRD_IEEE802_TR:
  575. /*
  576.  * Token ring devices will accept ARP hardware types of either
  577.  * 1 (Ethernet) or 6 (IEEE 802.2).
  578.  */
  579. if (arp->ar_hrd != htons(ARPHRD_ETHER) &&
  580.     arp->ar_hrd != htons(ARPHRD_IEEE802))
  581. goto out;
  582. if (arp->ar_pro != htons(ETH_P_IP))
  583. goto out;
  584. break;
  585. #endif
  586. #ifdef CONFIG_FDDI
  587. case ARPHRD_FDDI:
  588. /*
  589.  * According to RFC 1390, FDDI devices should accept ARP hardware types
  590.  * of 1 (Ethernet).  However, to be more robust, we'll accept hardware
  591.  * types of either 1 (Ethernet) or 6 (IEEE 802.2).
  592.  */
  593. if (arp->ar_hrd != htons(ARPHRD_ETHER) &&
  594.     arp->ar_hrd != htons(ARPHRD_IEEE802))
  595. goto out;
  596. if (arp->ar_pro != htons(ETH_P_IP))
  597. goto out;
  598. break;
  599. #endif
  600. #ifdef CONFIG_NET_FC
  601. case ARPHRD_IEEE802:
  602. /*
  603.  * According to RFC 2625, Fibre Channel devices (which are IEEE
  604.  * 802 devices) should accept ARP hardware types of 6 (IEEE 802)
  605.  * and 1 (Ethernet).
  606.  */
  607. if (arp->ar_hrd != htons(ARPHRD_ETHER) &&
  608.     arp->ar_hrd != htons(ARPHRD_IEEE802))
  609. goto out;
  610. if (arp->ar_pro != htons(ETH_P_IP))
  611. goto out;
  612. break;
  613. #endif
  614. #if defined(CONFIG_AX25) || defined(CONFIG_AX25_MODULE)
  615. case ARPHRD_AX25:
  616. if (arp->ar_pro != htons(AX25_P_IP))
  617. goto out;
  618. if (arp->ar_hrd != htons(ARPHRD_AX25))
  619. goto out;
  620. break;
  621. #if defined(CONFIG_NETROM) || defined(CONFIG_NETROM_MODULE)
  622. case ARPHRD_NETROM:
  623. if (arp->ar_pro != htons(AX25_P_IP))
  624. goto out;
  625. if (arp->ar_hrd != htons(ARPHRD_NETROM))
  626. goto out;
  627. break;
  628. #endif
  629. #endif
  630. }
  631. /* Understand only these message types */
  632. if (arp->ar_op != htons(ARPOP_REPLY) &&
  633.     arp->ar_op != htons(ARPOP_REQUEST))
  634. goto out;
  635. /*
  636.  * Extract fields
  637.  */
  638. sha=arp_ptr;
  639. arp_ptr += dev->addr_len;
  640. memcpy(&sip, arp_ptr, 4);
  641. arp_ptr += 4;
  642. tha=arp_ptr;
  643. arp_ptr += dev->addr_len;
  644. memcpy(&tip, arp_ptr, 4);
  645. /* 
  646.  * Check for bad requests for 127.x.x.x and requests for multicast
  647.  * addresses.  If this is one such, delete it.
  648.  */
  649. if (LOOPBACK(tip) || MULTICAST(tip))
  650. goto out;
  651. /*
  652.  *     Special case: We must set Frame Relay source Q.922 address
  653.  */
  654. if (dev_type == ARPHRD_DLCI)
  655. sha = dev->broadcast;
  656. /*
  657.  *  Process entry.  The idea here is we want to send a reply if it is a
  658.  *  request for us or if it is a request for someone else that we hold
  659.  *  a proxy for.  We want to add an entry to our cache if it is a reply
  660.  *  to us or if it is a request for our address.  
  661.  *  (The assumption for this last is that if someone is requesting our 
  662.  *  address, they are probably intending to talk to us, so it saves time 
  663.  *  if we cache their address.  Their address is also probably not in 
  664.  *  our cache, since ours is not in their cache.)
  665.  * 
  666.  *  Putting this another way, we only care about replies if they are to
  667.  *  us, in which case we add them to the cache.  For requests, we care
  668.  *  about those for us and those for our proxies.  We reply to both,
  669.  *  and in the case of requests for us we add the requester to the arp 
  670.  *  cache.
  671.  */
  672. /* Special case: IPv4 duplicate address detection packet (RFC2131) */
  673. if (sip == 0) {
  674. if (arp->ar_op == htons(ARPOP_REQUEST) &&
  675.     inet_addr_type(tip) == RTN_LOCAL)
  676. arp_send(ARPOP_REPLY,ETH_P_ARP,tip,dev,tip,sha,dev->dev_addr,dev->dev_addr);
  677. goto out;
  678. }
  679. if (arp->ar_op == htons(ARPOP_REQUEST) &&
  680.     ip_route_input(skb, tip, sip, 0, dev) == 0) {
  681. rt = (struct rtable*)skb->dst;
  682. addr_type = rt->rt_type;
  683. if (addr_type == RTN_LOCAL) {
  684. n = neigh_event_ns(&arp_tbl, sha, &sip, dev);
  685. if (n) {
  686. int dont_send = 0;
  687. if (IN_DEV_ARPFILTER(in_dev))
  688. dont_send |= arp_filter(sip,tip,dev); 
  689. if (!dont_send)
  690. arp_send(ARPOP_REPLY,ETH_P_ARP,sip,dev,tip,sha,dev->dev_addr,sha);
  691. neigh_release(n);
  692. }
  693. goto out;
  694. } else if (IN_DEV_FORWARD(in_dev)) {
  695. if ((rt->rt_flags&RTCF_DNAT) ||
  696.     (addr_type == RTN_UNICAST  && rt->u.dst.dev != dev &&
  697.      (arp_fwd_proxy(in_dev, rt) || pneigh_lookup(&arp_tbl, &tip, dev, 0)))) {
  698. n = neigh_event_ns(&arp_tbl, sha, &sip, dev);
  699. if (n)
  700. neigh_release(n);
  701. if (skb->stamp.tv_sec == 0 ||
  702.     skb->pkt_type == PACKET_HOST ||
  703.     in_dev->arp_parms->proxy_delay == 0) {
  704. arp_send(ARPOP_REPLY,ETH_P_ARP,sip,dev,tip,sha,dev->dev_addr,sha);
  705. } else {
  706. pneigh_enqueue(&arp_tbl, in_dev->arp_parms, skb);
  707. in_dev_put(in_dev);
  708. return 0;
  709. }
  710. goto out;
  711. }
  712. }
  713. }
  714. /* Update our ARP tables */
  715. n = __neigh_lookup(&arp_tbl, &sip, dev, 0);
  716. #ifdef CONFIG_IP_ACCEPT_UNSOLICITED_ARP
  717. /* Unsolicited ARP is not accepted by default.
  718.    It is possible, that this option should be enabled for some
  719.    devices (strip is candidate)
  720.  */
  721. if (n == NULL &&
  722.     arp->ar_op == htons(ARPOP_REPLY) &&
  723.     inet_addr_type(sip) == RTN_UNICAST)
  724. n = __neigh_lookup(&arp_tbl, &sip, dev, -1);
  725. #endif
  726. if (n) {
  727. int state = NUD_REACHABLE;
  728. int override = 0;
  729. /* If several different ARP replies follows back-to-back,
  730.    use the FIRST one. It is possible, if several proxy
  731.    agents are active. Taking the first reply prevents
  732.    arp trashing and chooses the fastest router.
  733.  */
  734. if (jiffies - n->updated >= n->parms->locktime)
  735. override = 1;
  736. /* Broadcast replies and request packets
  737.    do not assert neighbour reachability.
  738.  */
  739. if (arp->ar_op != htons(ARPOP_REPLY) ||
  740.     skb->pkt_type != PACKET_HOST)
  741. state = NUD_STALE;
  742. neigh_update(n, sha, state, override, 1);
  743. neigh_release(n);
  744. }
  745. out:
  746. if (in_dev)
  747. in_dev_put(in_dev);
  748. kfree_skb(skb);
  749. return 0;
  750. }
  751. /*
  752.  * Receive an arp request from the device layer.
  753.  */
  754. int arp_rcv(struct sk_buff *skb, struct net_device *dev, struct packet_type *pt)
  755. {
  756. struct arphdr *arp = skb->nh.arph;
  757. if (arp->ar_hln != dev->addr_len ||
  758.     dev->flags & IFF_NOARP ||
  759.     skb->pkt_type == PACKET_OTHERHOST ||
  760.     skb->pkt_type == PACKET_LOOPBACK ||
  761.     arp->ar_pln != 4)
  762. goto freeskb;
  763. if ((skb = skb_share_check(skb, GFP_ATOMIC)) == NULL)
  764. goto out_of_mem;
  765. if (skb_is_nonlinear(skb)) {
  766. if (skb_linearize(skb, GFP_ATOMIC) != 0)
  767. goto freeskb;
  768. }
  769. return NF_HOOK(NF_ARP, NF_ARP_IN, skb, dev, NULL, arp_process);
  770. freeskb:
  771. kfree_skb(skb);
  772. out_of_mem:
  773. return 0;
  774. }
  775. /*
  776.  * User level interface (ioctl, /proc)
  777.  */
  778. /*
  779.  * Set (create) an ARP cache entry.
  780.  */
  781. int arp_req_set(struct arpreq *r, struct net_device * dev)
  782. {
  783. u32 ip = ((struct sockaddr_in *) &r->arp_pa)->sin_addr.s_addr;
  784. struct neighbour *neigh;
  785. int err;
  786. if (r->arp_flags&ATF_PUBL) {
  787. u32 mask = ((struct sockaddr_in *) &r->arp_netmask)->sin_addr.s_addr;
  788. if (mask && mask != 0xFFFFFFFF)
  789. return -EINVAL;
  790. if (!dev && (r->arp_flags & ATF_COM)) {
  791. dev = dev_getbyhwaddr(r->arp_ha.sa_family, r->arp_ha.sa_data);
  792. if (!dev)
  793. return -ENODEV;
  794. }
  795. if (mask) {
  796. if (pneigh_lookup(&arp_tbl, &ip, dev, 1) == NULL)
  797. return -ENOBUFS;
  798. return 0;
  799. }
  800. if (dev == NULL) {
  801. ipv4_devconf.proxy_arp = 1;
  802. return 0;
  803. }
  804. if (__in_dev_get(dev)) {
  805. __in_dev_get(dev)->cnf.proxy_arp = 1;
  806. return 0;
  807. }
  808. return -ENXIO;
  809. }
  810. if (r->arp_flags & ATF_PERM)
  811. r->arp_flags |= ATF_COM;
  812. if (dev == NULL) {
  813. struct rtable * rt;
  814. if ((err = ip_route_output(&rt, ip, 0, RTO_ONLINK, 0)) != 0)
  815. return err;
  816. dev = rt->u.dst.dev;
  817. ip_rt_put(rt);
  818. if (!dev)
  819. return -EINVAL;
  820. }
  821. if (r->arp_ha.sa_family != dev->type)
  822. return -EINVAL;
  823. neigh = __neigh_lookup_errno(&arp_tbl, &ip, dev);
  824. err = PTR_ERR(neigh);
  825. if (!IS_ERR(neigh)) {
  826. unsigned state = NUD_STALE;
  827. if (r->arp_flags & ATF_PERM)
  828. state = NUD_PERMANENT;
  829. err = neigh_update(neigh, (r->arp_flags&ATF_COM) ?
  830.    r->arp_ha.sa_data : NULL, state, 1, 0);
  831. neigh_release(neigh);
  832. }
  833. return err;
  834. }
  835. static unsigned arp_state_to_flags(struct neighbour *neigh)
  836. {
  837. unsigned flags = 0;
  838. if (neigh->nud_state&NUD_PERMANENT)
  839. flags = ATF_PERM|ATF_COM;
  840. else if (neigh->nud_state&NUD_VALID)
  841. flags = ATF_COM;
  842. return flags;
  843. }
  844. /*
  845.  * Get an ARP cache entry.
  846.  */
  847. static int arp_req_get(struct arpreq *r, struct net_device *dev)
  848. {
  849. u32 ip = ((struct sockaddr_in *) &r->arp_pa)->sin_addr.s_addr;
  850. struct neighbour *neigh;
  851. int err = -ENXIO;
  852. neigh = neigh_lookup(&arp_tbl, &ip, dev);
  853. if (neigh) {
  854. read_lock_bh(&neigh->lock);
  855. memcpy(r->arp_ha.sa_data, neigh->ha, dev->addr_len);
  856. r->arp_flags = arp_state_to_flags(neigh);
  857. read_unlock_bh(&neigh->lock);
  858. r->arp_ha.sa_family = dev->type;
  859. strncpy(r->arp_dev, dev->name, sizeof(r->arp_dev));
  860. neigh_release(neigh);
  861. err = 0;
  862. }
  863. return err;
  864. }
  865. int arp_req_delete(struct arpreq *r, struct net_device * dev)
  866. {
  867. int err;
  868. u32 ip = ((struct sockaddr_in *)&r->arp_pa)->sin_addr.s_addr;
  869. struct neighbour *neigh;
  870. if (r->arp_flags & ATF_PUBL) {
  871. u32 mask = ((struct sockaddr_in *) &r->arp_netmask)->sin_addr.s_addr;
  872. if (mask == 0xFFFFFFFF)
  873. return pneigh_delete(&arp_tbl, &ip, dev);
  874. if (mask == 0) {
  875. if (dev == NULL) {
  876. ipv4_devconf.proxy_arp = 0;
  877. return 0;
  878. }
  879. if (__in_dev_get(dev)) {
  880. __in_dev_get(dev)->cnf.proxy_arp = 0;
  881. return 0;
  882. }
  883. return -ENXIO;
  884. }
  885. return -EINVAL;
  886. }
  887. if (dev == NULL) {
  888. struct rtable * rt;
  889. if ((err = ip_route_output(&rt, ip, 0, RTO_ONLINK, 0)) != 0)
  890. return err;
  891. dev = rt->u.dst.dev;
  892. ip_rt_put(rt);
  893. if (!dev)
  894. return -EINVAL;
  895. }
  896. err = -ENXIO;
  897. neigh = neigh_lookup(&arp_tbl, &ip, dev);
  898. if (neigh) {
  899. if (neigh->nud_state&~NUD_NOARP)
  900. err = neigh_update(neigh, NULL, NUD_FAILED, 1, 0);
  901. neigh_release(neigh);
  902. }
  903. return err;
  904. }
  905. /*
  906.  * Handle an ARP layer I/O control request.
  907.  */
  908. int arp_ioctl(unsigned int cmd, void *arg)
  909. {
  910. int err;
  911. struct arpreq r;
  912. struct net_device * dev = NULL;
  913. switch(cmd) {
  914. case SIOCDARP:
  915. case SIOCSARP:
  916. if (!capable(CAP_NET_ADMIN))
  917. return -EPERM;
  918. case SIOCGARP:
  919. err = copy_from_user(&r, arg, sizeof(struct arpreq));
  920. if (err)
  921. return -EFAULT;
  922. break;
  923. default:
  924. return -EINVAL;
  925. }
  926. if (r.arp_pa.sa_family != AF_INET)
  927. return -EPFNOSUPPORT;
  928. if (!(r.arp_flags & ATF_PUBL) &&
  929.     (r.arp_flags & (ATF_NETMASK|ATF_DONTPUB)))
  930. return -EINVAL;
  931. if (!(r.arp_flags & ATF_NETMASK))
  932. ((struct sockaddr_in *)&r.arp_netmask)->sin_addr.s_addr=htonl(0xFFFFFFFFUL);
  933. rtnl_lock();
  934. if (r.arp_dev[0]) {
  935. err = -ENODEV;
  936. if ((dev = __dev_get_by_name(r.arp_dev)) == NULL)
  937. goto out;
  938. /* Mmmm... It is wrong... ARPHRD_NETROM==0 */
  939. if (!r.arp_ha.sa_family)
  940. r.arp_ha.sa_family = dev->type;
  941. err = -EINVAL;
  942. if ((r.arp_flags & ATF_COM) && r.arp_ha.sa_family != dev->type)
  943. goto out;
  944. } else if (cmd == SIOCGARP) {
  945. err = -ENODEV;
  946. goto out;
  947. }
  948. switch(cmd) {
  949. case SIOCDARP:
  950.         err = arp_req_delete(&r, dev);
  951. break;
  952. case SIOCSARP:
  953. err = arp_req_set(&r, dev);
  954. break;
  955. case SIOCGARP:
  956. err = arp_req_get(&r, dev);
  957. if (!err && copy_to_user(arg, &r, sizeof(r)))
  958. err = -EFAULT;
  959. break;
  960. }
  961. out:
  962. rtnl_unlock();
  963. return err;
  964. }
  965. /*
  966.  * Write the contents of the ARP cache to a PROCfs file.
  967.  */
  968. #ifndef CONFIG_PROC_FS
  969. static int arp_get_info(char *buffer, char **start, off_t offset, int length) { return 0; }
  970. #else
  971. #if defined(CONFIG_AX25) || defined(CONFIG_AX25_MODULE)
  972. static char *ax2asc2(ax25_address *a, char *buf);
  973. #endif
  974. #define HBUFFERLEN 30
  975. static int arp_get_info(char *buffer, char **start, off_t offset, int length)
  976. {
  977. int len=0;
  978. off_t pos=0;
  979. int size;
  980. char hbuffer[HBUFFERLEN];
  981. int i,j,k;
  982. const char hexbuf[] =  "0123456789ABCDEF";
  983. size = sprintf(buffer,"IP address       HW type     Flags       HW address            Mask     Devicen");
  984. pos+=size;
  985. len+=size;
  986. for(i=0; i<=NEIGH_HASHMASK; i++) {
  987. struct neighbour *n;
  988. read_lock_bh(&arp_tbl.lock);
  989. for (n=arp_tbl.hash_buckets[i]; n; n=n->next) {
  990. struct net_device *dev = n->dev;
  991. int hatype = dev->type;
  992. /* Do not confuse users "arp -a" with magic entries */
  993. if (!(n->nud_state&~NUD_NOARP))
  994. continue;
  995. read_lock(&n->lock);
  996. /*
  997.  * Convert hardware address to XX:XX:XX:XX ... form.
  998.  */
  999. #if defined(CONFIG_AX25) || defined(CONFIG_AX25_MODULE)
  1000. if (hatype == ARPHRD_AX25 || hatype == ARPHRD_NETROM)
  1001. ax2asc2((ax25_address *)n->ha, hbuffer);
  1002. else {
  1003. #endif
  1004. for (k=0,j=0;k<HBUFFERLEN-3 && j<dev->addr_len;j++) {
  1005. hbuffer[k++]=hexbuf[(n->ha[j]>>4)&15 ];
  1006. hbuffer[k++]=hexbuf[n->ha[j]&15     ];
  1007. hbuffer[k++]=':';
  1008. }
  1009. hbuffer[--k]=0;
  1010. #if defined(CONFIG_AX25) || defined(CONFIG_AX25_MODULE)
  1011. }
  1012. #endif
  1013. {
  1014. char tbuf[16];
  1015. sprintf(tbuf, "%u.%u.%u.%u", NIPQUAD(*(u32*)n->primary_key));
  1016. size = sprintf(buffer+len, "%-16s 0x%-10x0x%-10x%s"
  1017. "     *        %sn",
  1018. tbuf,
  1019. hatype,
  1020. arp_state_to_flags(n), 
  1021. hbuffer,
  1022. dev->name);
  1023. }
  1024. read_unlock(&n->lock);
  1025. len += size;
  1026. pos += size;
  1027.   
  1028. if (pos <= offset)
  1029. len=0;
  1030. if (pos >= offset+length) {
  1031. read_unlock_bh(&arp_tbl.lock);
  1032.   goto done;
  1033. }
  1034. }
  1035. read_unlock_bh(&arp_tbl.lock);
  1036. }
  1037. for (i=0; i<=PNEIGH_HASHMASK; i++) {
  1038. struct pneigh_entry *n;
  1039. for (n=arp_tbl.phash_buckets[i]; n; n=n->next) {
  1040. struct net_device *dev = n->dev;
  1041. int hatype = dev ? dev->type : 0;
  1042. {
  1043. char tbuf[16];
  1044. sprintf(tbuf, "%u.%u.%u.%u", NIPQUAD(*(u32*)n->key));
  1045. size = sprintf(buffer+len, "%-16s 0x%-10x0x%-10x%s"
  1046. "     *        %sn",
  1047. tbuf,
  1048. hatype,
  1049.   ATF_PUBL|ATF_PERM,
  1050. "00:00:00:00:00:00",
  1051. dev ? dev->name : "*");
  1052. }
  1053. len += size;
  1054. pos += size;
  1055.   
  1056. if (pos <= offset)
  1057. len=0;
  1058. if (pos >= offset+length)
  1059. goto done;
  1060. }
  1061. }
  1062. done:
  1063.   
  1064. *start = buffer+len-(pos-offset); /* Start of wanted data */
  1065. len = pos-offset; /* Start slop */
  1066. if (len>length)
  1067. len = length; /* Ending slop */
  1068. if (len<0)
  1069. len = 0;
  1070. return len;
  1071. }
  1072. #endif
  1073. /* Note, that it is not on notifier chain.
  1074.    It is necessary, that this routine was called after route cache will be
  1075.    flushed.
  1076.  */
  1077. void arp_ifdown(struct net_device *dev)
  1078. {
  1079. neigh_ifdown(&arp_tbl, dev);
  1080. }
  1081. /*
  1082.  * Called once on startup.
  1083.  */
  1084. static struct packet_type arp_packet_type = {
  1085. type: __constant_htons(ETH_P_ARP),
  1086. func: arp_rcv,
  1087. data: (void*) 1, /* understand shared skbs */
  1088. };
  1089. void __init arp_init (void)
  1090. {
  1091. neigh_table_init(&arp_tbl);
  1092. dev_add_pack(&arp_packet_type);
  1093. proc_net_create ("arp", 0, arp_get_info);
  1094. #ifdef CONFIG_SYSCTL
  1095. neigh_sysctl_register(NULL, &arp_tbl.parms, NET_IPV4, NET_IPV4_NEIGH, "ipv4");
  1096. #endif
  1097. }
  1098. #ifdef CONFIG_PROC_FS
  1099. #if defined(CONFIG_AX25) || defined(CONFIG_AX25_MODULE)
  1100. /*
  1101.  * ax25 -> ASCII conversion
  1102.  */
  1103. char *ax2asc2(ax25_address *a, char *buf)
  1104. {
  1105. char c, *s;
  1106. int n;
  1107. for (n = 0, s = buf; n < 6; n++) {
  1108. c = (a->ax25_call[n] >> 1) & 0x7F;
  1109. if (c != ' ') *s++ = c;
  1110. }
  1111. *s++ = '-';
  1112. if ((n = ((a->ax25_call[6] >> 1) & 0x0F)) > 9) {
  1113. *s++ = '1';
  1114. n -= 10;
  1115. }
  1116. *s++ = n + '0';
  1117. *s++ = '';
  1118. if (*buf == '' || *buf == '-')
  1119.    return "*";
  1120. return buf;
  1121. }
  1122. #endif
  1123. #endif