icmp.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:27k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * NET3: Implementation of the ICMP protocol layer. 
  3.  *
  4.  * Alan Cox, <alan@redhat.com>
  5.  *
  6.  * Version: $Id: icmp.c,v 1.82.2.1 2001/12/13 08:59:27 davem Exp $
  7.  *
  8.  * This program is free software; you can redistribute it and/or
  9.  * modify it under the terms of the GNU General Public License
  10.  * as published by the Free Software Foundation; either version
  11.  * 2 of the License, or (at your option) any later version.
  12.  *
  13.  * Some of the function names and the icmp unreach table for this
  14.  * module were derived from [icmp.c 1.0.11 06/02/93] by
  15.  * Ross Biro, Fred N. van Kempen, Mark Evans, Alan Cox, Gerhard Koerting.
  16.  * Other than that this module is a complete rewrite.
  17.  *
  18.  * Fixes:
  19.  * Clemens Fruhwirth : introduce global icmp rate limiting
  20.  * with icmp type masking ability instead
  21.  * of broken per type icmp timeouts.
  22.  * Mike Shaver : RFC1122 checks.
  23.  * Alan Cox : Multicast ping reply as self.
  24.  * Alan Cox : Fix atomicity lockup in ip_build_xmit 
  25.  * call.
  26.  * Alan Cox : Added 216,128 byte paths to the MTU 
  27.  * code.
  28.  * Martin Mares : RFC1812 checks.
  29.  * Martin Mares : Can be configured to follow redirects 
  30.  * if acting as a router _without_ a
  31.  * routing protocol (RFC 1812).
  32.  * Martin Mares : Echo requests may be configured to 
  33.  * be ignored (RFC 1812).
  34.  * Martin Mares : Limitation of ICMP error message 
  35.  * transmit rate (RFC 1812).
  36.  * Martin Mares : TOS and Precedence set correctly 
  37.  * (RFC 1812).
  38.  * Martin Mares : Now copying as much data from the 
  39.  * original packet as we can without
  40.  * exceeding 576 bytes (RFC 1812).
  41.  * Willy Konynenberg : Transparent proxying support.
  42.  * Keith Owens : RFC1191 correction for 4.2BSD based 
  43.  * path MTU bug.
  44.  * Thomas Quinot : ICMP Dest Unreach codes up to 15 are
  45.  * valid (RFC 1812).
  46.  * Andi Kleen : Check all packet lengths properly
  47.  * and moved all kfree_skb() up to
  48.  * icmp_rcv.
  49.  * Andi Kleen : Move the rate limit bookkeeping
  50.  * into the dest entry and use a token
  51.  * bucket filter (thanks to ANK). Make
  52.  * the rates sysctl configurable.
  53.  * Yu Tianli : Fixed two ugly bugs in icmp_send
  54.  * - IP option length was accounted wrongly
  55.  * - ICMP header length was not accounted at all.
  56.  *              Tristan Greaves :       Added sysctl option to ignore bogus broadcast
  57.  *                                      responses from broken routers.
  58.  *
  59.  * To Fix:
  60.  *
  61.  * - Should use skb_pull() instead of all the manual checking.
  62.  *   This would also greatly simply some upper layer error handlers. --AK
  63.  *
  64.  */
  65. #include <linux/config.h>
  66. #include <linux/types.h>
  67. #include <linux/sched.h>
  68. #include <linux/kernel.h>
  69. #include <linux/fcntl.h>
  70. #include <linux/socket.h>
  71. #include <linux/in.h>
  72. #include <linux/inet.h>
  73. #include <linux/netdevice.h>
  74. #include <linux/string.h>
  75. #include <linux/netfilter_ipv4.h>
  76. #include <net/snmp.h>
  77. #include <net/ip.h>
  78. #include <net/route.h>
  79. #include <net/protocol.h>
  80. #include <net/icmp.h>
  81. #include <net/tcp.h>
  82. #include <net/udp.h>
  83. #include <net/raw.h>
  84. #include <linux/skbuff.h>
  85. #include <net/sock.h>
  86. #include <linux/errno.h>
  87. #include <linux/timer.h>
  88. #include <linux/init.h>
  89. #include <asm/system.h>
  90. #include <asm/uaccess.h>
  91. #include <net/checksum.h>
  92. /*
  93.  * Build xmit assembly blocks
  94.  */
  95. struct icmp_bxm
  96. {
  97. struct sk_buff *skb;
  98. int offset;
  99. int data_len;
  100. unsigned int csum;
  101. struct {
  102. struct icmphdr icmph;
  103. __u32        times[3];
  104. } data;
  105. int head_len;
  106. struct ip_options replyopts;
  107. unsigned char  optbuf[40];
  108. };
  109. /*
  110.  * Statistics
  111.  */
  112.  
  113. struct icmp_mib icmp_statistics[NR_CPUS*2];
  114. /* An array of errno for error messages from dest unreach. */
  115. /* RFC 1122: 3.2.2.1 States that NET_UNREACH, HOS_UNREACH and SR_FAIELD MUST be considered 'transient errs'. */
  116. struct icmp_err icmp_err_convert[] = {
  117.   { ENETUNREACH, 0 }, /* ICMP_NET_UNREACH */
  118.   { EHOSTUNREACH, 0 }, /* ICMP_HOST_UNREACH */
  119.   { ENOPROTOOPT, 1 }, /* ICMP_PROT_UNREACH */
  120.   { ECONNREFUSED, 1 }, /* ICMP_PORT_UNREACH */
  121.   { EMSGSIZE, 0 }, /* ICMP_FRAG_NEEDED */
  122.   { EOPNOTSUPP, 0 }, /* ICMP_SR_FAILED */
  123.   { ENETUNREACH, 1 }, /*  ICMP_NET_UNKNOWN */
  124.   { EHOSTDOWN, 1 }, /* ICMP_HOST_UNKNOWN */
  125.   { ENONET, 1 }, /* ICMP_HOST_ISOLATED */
  126.   { ENETUNREACH, 1 }, /* ICMP_NET_ANO */
  127.   { EHOSTUNREACH, 1 }, /* ICMP_HOST_ANO */
  128.   { ENETUNREACH, 0 }, /* ICMP_NET_UNR_TOS */
  129.   { EHOSTUNREACH, 0 }, /* ICMP_HOST_UNR_TOS */
  130.   { EHOSTUNREACH, 1 }, /* ICMP_PKT_FILTERED */
  131.   { EHOSTUNREACH, 1 }, /* ICMP_PREC_VIOLATION */
  132.   { EHOSTUNREACH, 1 } /* ICMP_PREC_CUTOFF */
  133. };
  134. /* Control parameters for ECHO replies. */
  135. int sysctl_icmp_echo_ignore_all;
  136. int sysctl_icmp_echo_ignore_broadcasts;
  137. /* Control parameter - ignore bogus broadcast responses? */
  138. int sysctl_icmp_ignore_bogus_error_responses;
  139. /* 
  140.  *  Configurable global rate limit.
  141.  *
  142.  * ratelimit defines tokens/packet consumed for dst->rate_token bucket
  143.  * ratemask defines which icmp types are ratelimited by setting
  144.  *  it's bit position.
  145.  *
  146.  * default: 
  147.  * dest unreachable (3), source quench (4),
  148.  * time exceeded (11), parameter problem (12)
  149.  */
  150. int sysctl_icmp_ratelimit = 1*HZ;
  151. int sysctl_icmp_ratemask = 0x1818;
  152. /*
  153.  * ICMP control array. This specifies what to do with each ICMP.
  154.  */
  155. struct icmp_control
  156. {
  157. unsigned long *output; /* Address to increment on output */
  158. unsigned long *input; /* Address to increment on input */
  159. void (*handler)(struct sk_buff *skb);
  160. short error; /* This ICMP is classed as an error message */
  161. };
  162. static struct icmp_control icmp_pointers[NR_ICMP_TYPES+1];
  163. /*
  164.  * The ICMP socket. This is the most convenient way to flow control
  165.  * our ICMP output as well as maintain a clean interface throughout
  166.  * all layers. All Socketless IP sends will soon be gone.
  167.  */
  168. struct inode icmp_inode;
  169. struct socket *icmp_socket = &icmp_inode.u.socket_i;
  170. /* ICMPv4 socket is only a bit non-reenterable (unlike ICMPv6,
  171.    which is strongly non-reenterable). A bit later it will be made
  172.    reenterable and the lock may be removed then.
  173.  */
  174. static int icmp_xmit_holder = -1;
  175. static int icmp_xmit_lock_bh(void)
  176. {
  177. if (!spin_trylock(&icmp_socket->sk->lock.slock)) {
  178. if (icmp_xmit_holder == smp_processor_id())
  179. return -EAGAIN;
  180. spin_lock(&icmp_socket->sk->lock.slock);
  181. }
  182. icmp_xmit_holder = smp_processor_id();
  183. return 0;
  184. }
  185. static __inline__ int icmp_xmit_lock(void)
  186. {
  187. int ret;
  188. local_bh_disable();
  189. ret = icmp_xmit_lock_bh();
  190. if (ret)
  191. local_bh_enable();
  192. return ret;
  193. }
  194. static void icmp_xmit_unlock_bh(void)
  195. {
  196. icmp_xmit_holder = -1;
  197. spin_unlock(&icmp_socket->sk->lock.slock);
  198. }
  199. static __inline__ void icmp_xmit_unlock(void)
  200. {
  201. icmp_xmit_unlock_bh();
  202. local_bh_enable();
  203. }
  204. /*
  205.  * Send an ICMP frame.
  206.  */
  207. /*
  208.  * Check transmit rate limitation for given message.
  209.  * The rate information is held in the destination cache now.
  210.  * This function is generic and could be used for other purposes
  211.  * too. It uses a Token bucket filter as suggested by Alexey Kuznetsov.
  212.  *
  213.  * Note that the same dst_entry fields are modified by functions in 
  214.  * route.c too, but these work for packet destinations while xrlim_allow
  215.  * works for icmp destinations. This means the rate limiting information
  216.  * for one "ip object" is shared - and these ICMPs are twice limited:
  217.  * by source and by destination.
  218.  *
  219.  * RFC 1812: 4.3.2.8 SHOULD be able to limit error message rate
  220.  *   SHOULD allow setting of rate limits 
  221.  *
  222.  *  Shared between ICMPv4 and ICMPv6.
  223.  */
  224. #define XRLIM_BURST_FACTOR 6
  225. int xrlim_allow(struct dst_entry *dst, int timeout)
  226. {
  227. unsigned long now;
  228. now = jiffies;
  229. dst->rate_tokens += now - dst->rate_last;
  230. dst->rate_last = now;
  231. if (dst->rate_tokens > XRLIM_BURST_FACTOR*timeout)
  232.          dst->rate_tokens = XRLIM_BURST_FACTOR*timeout;
  233. if (dst->rate_tokens >= timeout) {
  234. dst->rate_tokens -= timeout;
  235. return 1;
  236. }
  237. return 0; 
  238. }
  239. static inline int icmpv4_xrlim_allow(struct rtable *rt, int type, int code)
  240. {
  241. struct dst_entry *dst = &rt->u.dst; 
  242. if (type > NR_ICMP_TYPES)
  243. return 1;
  244. /* Don't limit PMTU discovery. */
  245. if (type == ICMP_DEST_UNREACH && code == ICMP_FRAG_NEEDED)
  246. return 1;
  247. /* No rate limit on loopback */
  248. if (dst->dev && (dst->dev->flags&IFF_LOOPBACK))
  249.   return 1;
  250. /* Limit if icmp type is enabled in ratemask. */
  251. if((1 << type) & sysctl_icmp_ratemask)
  252. return xrlim_allow(dst, sysctl_icmp_ratelimit);
  253. else
  254. return 1;
  255. }
  256. /*
  257.  * Maintain the counters used in the SNMP statistics for outgoing ICMP
  258.  */
  259.  
  260. static void icmp_out_count(int type)
  261. {
  262. if (type>NR_ICMP_TYPES)
  263. return;
  264. (icmp_pointers[type].output)[(smp_processor_id()*2+!in_softirq())*sizeof(struct icmp_mib)/sizeof(unsigned long)]++;
  265. ICMP_INC_STATS(IcmpOutMsgs);
  266. }
  267.  
  268. /*
  269.  * Checksum each fragment, and on the first include the headers and final checksum.
  270.  */
  271.  
  272. static int icmp_glue_bits(const void *p, char *to, unsigned int offset, unsigned int fraglen)
  273. {
  274. struct icmp_bxm *icmp_param = (struct icmp_bxm *)p;
  275. struct icmphdr *icmph;
  276. unsigned int csum;
  277. if (offset) {
  278. icmp_param->csum=skb_copy_and_csum_bits(icmp_param->skb,
  279. icmp_param->offset+(offset-icmp_param->head_len), 
  280. to, fraglen,icmp_param->csum);
  281. return 0;
  282. }
  283. /*
  284.  * First fragment includes header. Note that we've done
  285.  * the other fragments first, so that we get the checksum
  286.  * for the whole packet here.
  287.  */
  288. csum = csum_partial_copy_nocheck((void *)&icmp_param->data,
  289. to, icmp_param->head_len,
  290. icmp_param->csum);
  291. csum=skb_copy_and_csum_bits(icmp_param->skb,
  292.     icmp_param->offset, 
  293.     to+icmp_param->head_len,
  294.     fraglen-icmp_param->head_len,
  295.     csum);
  296. icmph=(struct icmphdr *)to;
  297. icmph->checksum = csum_fold(csum);
  298. return 0;
  299. }
  300. /*
  301.  * Driving logic for building and sending ICMP messages.
  302.  */
  303. static void icmp_reply(struct icmp_bxm *icmp_param, struct sk_buff *skb)
  304. {
  305. struct sock *sk=icmp_socket->sk;
  306. struct ipcm_cookie ipc;
  307. struct rtable *rt = (struct rtable*)skb->dst;
  308. u32 daddr;
  309. if (ip_options_echo(&icmp_param->replyopts, skb))
  310. return;
  311. if (icmp_xmit_lock_bh())
  312. return;
  313. icmp_param->data.icmph.checksum=0;
  314. icmp_param->csum=0;
  315. icmp_out_count(icmp_param->data.icmph.type);
  316. sk->protinfo.af_inet.tos = skb->nh.iph->tos;
  317. daddr = ipc.addr = rt->rt_src;
  318. ipc.opt = NULL;
  319. if (icmp_param->replyopts.optlen) {
  320. ipc.opt = &icmp_param->replyopts;
  321. if (ipc.opt->srr)
  322. daddr = icmp_param->replyopts.faddr;
  323. }
  324. if (ip_route_output(&rt, daddr, rt->rt_spec_dst, RT_TOS(skb->nh.iph->tos), 0))
  325. goto out;
  326. if (icmpv4_xrlim_allow(rt, icmp_param->data.icmph.type, 
  327.        icmp_param->data.icmph.code)) { 
  328. ip_build_xmit(sk, icmp_glue_bits, icmp_param, 
  329.       icmp_param->data_len+icmp_param->head_len,
  330.       &ipc, rt, MSG_DONTWAIT);
  331. }
  332. ip_rt_put(rt);
  333. out:
  334. icmp_xmit_unlock_bh();
  335. }
  336. /*
  337.  * Send an ICMP message in response to a situation
  338.  *
  339.  * RFC 1122: 3.2.2 MUST send at least the IP header and 8 bytes of header. MAY send more (we do).
  340.  * MUST NOT change this header information.
  341.  * MUST NOT reply to a multicast/broadcast IP address.
  342.  * MUST NOT reply to a multicast/broadcast MAC address.
  343.  * MUST reply to only the first fragment.
  344.  */
  345. void icmp_send(struct sk_buff *skb_in, int type, int code, u32 info)
  346. {
  347. struct iphdr *iph;
  348. int room;
  349. struct icmp_bxm icmp_param;
  350. struct rtable *rt = (struct rtable*)skb_in->dst;
  351. struct ipcm_cookie ipc;
  352. u32 saddr;
  353. u8  tos;
  354. if (!rt)
  355. return;
  356. /*
  357.  * Find the original header. It is expected to be valid, of course.
  358.  * Check this, icmp_send is called from the most obscure devices
  359.  * sometimes.
  360.  */
  361. iph = skb_in->nh.iph;
  362. if ((u8*)iph < skb_in->head || (u8*)(iph+1) > skb_in->tail)
  363. return;
  364. /*
  365.  * No replies to physical multicast/broadcast
  366.  */
  367. if (skb_in->pkt_type!=PACKET_HOST)
  368. return;
  369. /*
  370.  * Now check at the protocol level
  371.  */
  372. if (rt->rt_flags&(RTCF_BROADCAST|RTCF_MULTICAST))
  373. return;
  374. /*
  375.  * Only reply to fragment 0. We byte re-order the constant
  376.  * mask for efficiency.
  377.  */
  378. if (iph->frag_off&htons(IP_OFFSET))
  379. return;
  380. /* 
  381.  * If we send an ICMP error to an ICMP error a mess would result..
  382.  */
  383. if (icmp_pointers[type].error) {
  384. /*
  385.  * We are an error, check if we are replying to an ICMP error
  386.  */
  387. if (iph->protocol==IPPROTO_ICMP) {
  388. u8 inner_type;
  389. if (skb_copy_bits(skb_in,
  390.   skb_in->nh.raw + (iph->ihl<<2)
  391.   + offsetof(struct icmphdr, type)
  392.   - skb_in->data,
  393.   &inner_type, 1))
  394. return;
  395. /*
  396.  * Assume any unknown ICMP type is an error. This isn't
  397.  * specified by the RFC, but think about it..
  398.  */
  399. if (inner_type>NR_ICMP_TYPES || icmp_pointers[inner_type].error)
  400. return;
  401. }
  402. }
  403. if (icmp_xmit_lock())
  404. return;
  405. /*
  406.  * Construct source address and options.
  407.  */
  408. #ifdef CONFIG_IP_ROUTE_NAT
  409. /*
  410.  * Restore original addresses if packet has been translated.
  411.  */
  412. if (rt->rt_flags&RTCF_NAT && IPCB(skb_in)->flags&IPSKB_TRANSLATED) {
  413. iph->daddr = rt->key.dst;
  414. iph->saddr = rt->key.src;
  415. }
  416. #endif
  417. saddr = iph->daddr;
  418. if (!(rt->rt_flags & RTCF_LOCAL))
  419. saddr = 0;
  420. tos = icmp_pointers[type].error ?
  421. ((iph->tos & IPTOS_TOS_MASK) | IPTOS_PREC_INTERNETCONTROL) :
  422. iph->tos;
  423. if (ip_route_output(&rt, iph->saddr, saddr, RT_TOS(tos), 0))
  424. goto out;
  425. if (ip_options_echo(&icmp_param.replyopts, skb_in)) 
  426. goto ende;
  427. /*
  428.  * Prepare data for ICMP header.
  429.  */
  430. icmp_param.data.icmph.type=type;
  431. icmp_param.data.icmph.code=code;
  432. icmp_param.data.icmph.un.gateway = info;
  433. icmp_param.data.icmph.checksum=0;
  434. icmp_param.csum=0;
  435. icmp_param.skb=skb_in;
  436. icmp_param.offset=skb_in->nh.raw - skb_in->data;
  437. icmp_out_count(icmp_param.data.icmph.type);
  438. icmp_socket->sk->protinfo.af_inet.tos = tos;
  439. ipc.addr = iph->saddr;
  440. ipc.opt = &icmp_param.replyopts;
  441. if (icmp_param.replyopts.srr) {
  442. ip_rt_put(rt);
  443. if (ip_route_output(&rt, icmp_param.replyopts.faddr, saddr, RT_TOS(tos), 0))
  444. goto out;
  445. }
  446. if (!icmpv4_xrlim_allow(rt, type, code))
  447. goto ende;
  448. /* RFC says return as much as we can without exceeding 576 bytes. */
  449. room = rt->u.dst.pmtu;
  450. if (room > 576)
  451. room = 576;
  452. room -= sizeof(struct iphdr) + icmp_param.replyopts.optlen;
  453. room -= sizeof(struct icmphdr);
  454. icmp_param.data_len=skb_in->len-icmp_param.offset;
  455. if (icmp_param.data_len > room)
  456. icmp_param.data_len = room;
  457. icmp_param.head_len = sizeof(struct icmphdr);
  458. ip_build_xmit(icmp_socket->sk, icmp_glue_bits, &icmp_param, 
  459. icmp_param.data_len+sizeof(struct icmphdr),
  460. &ipc, rt, MSG_DONTWAIT);
  461. ende:
  462. ip_rt_put(rt);
  463. out:
  464. icmp_xmit_unlock();
  465. }
  466. /* 
  467.  * Handle ICMP_DEST_UNREACH, ICMP_TIME_EXCEED, and ICMP_QUENCH. 
  468.  */
  469. static void icmp_unreach(struct sk_buff *skb)
  470. {
  471. struct iphdr *iph;
  472. struct icmphdr *icmph;
  473. int hash, protocol;
  474. struct inet_protocol *ipprot;
  475. struct sock *raw_sk;
  476. u32 info = 0;
  477. /*
  478.  * Incomplete header ?
  479.  *  Only checks for the IP header, there should be an
  480.  * additional check for longer headers in upper levels.
  481.  */
  482. if (!pskb_may_pull(skb, sizeof(struct iphdr))) {
  483. ICMP_INC_STATS_BH(IcmpInErrors);
  484. return;
  485. }
  486. icmph = skb->h.icmph;
  487. iph = (struct iphdr *) skb->data;
  488. if (iph->ihl<5) {
  489. /* Mangled header, drop. */
  490. ICMP_INC_STATS_BH(IcmpInErrors);
  491. return;
  492. }
  493. if(icmph->type==ICMP_DEST_UNREACH) {
  494. switch(icmph->code & 15) {
  495. case ICMP_NET_UNREACH:
  496. break;
  497. case ICMP_HOST_UNREACH:
  498. break;
  499. case ICMP_PROT_UNREACH:
  500. break;
  501. case ICMP_PORT_UNREACH:
  502. break;
  503. case ICMP_FRAG_NEEDED:
  504. if (ipv4_config.no_pmtu_disc) {
  505. if (net_ratelimit())
  506. printk(KERN_INFO "ICMP: %u.%u.%u.%u: fragmentation needed and DF set.n",
  507.        NIPQUAD(iph->daddr));
  508. } else {
  509. info = ip_rt_frag_needed(iph, ntohs(icmph->un.frag.mtu));
  510. if (!info) 
  511. goto out;
  512. }
  513. break;
  514. case ICMP_SR_FAILED:
  515. if (net_ratelimit())
  516. printk(KERN_INFO "ICMP: %u.%u.%u.%u: Source Route Failed.n", NIPQUAD(iph->daddr));
  517. break;
  518. default:
  519. break;
  520. }
  521. if (icmph->code>NR_ICMP_UNREACH)
  522. goto out;
  523. } else if (icmph->type == ICMP_PARAMETERPROB) {
  524. info = ntohl(icmph->un.gateway)>>24;
  525. }
  526. /*
  527.  * Throw it at our lower layers
  528.  *
  529.  * RFC 1122: 3.2.2 MUST extract the protocol ID from the passed header.
  530.  * RFC 1122: 3.2.2.1 MUST pass ICMP unreach messages to the transport layer.
  531.  * RFC 1122: 3.2.2.2 MUST pass ICMP time expired messages to transport layer.
  532.  */
  533. /*
  534.  * Check the other end isnt violating RFC 1122. Some routers send
  535.  * bogus responses to broadcast frames. If you see this message
  536.  * first check your netmask matches at both ends, if it does then
  537.  * get the other vendor to fix their kit.
  538.  */
  539. if (!sysctl_icmp_ignore_bogus_error_responses)
  540. {
  541. if (inet_addr_type(iph->daddr) == RTN_BROADCAST)
  542. {
  543. if (net_ratelimit())
  544. printk(KERN_WARNING "%u.%u.%u.%u sent an invalid ICMP error to a broadcast.n",
  545.         NIPQUAD(skb->nh.iph->saddr));
  546. goto out;
  547. }
  548. }
  549. /* Checkin full IP header plus 8 bytes of protocol to
  550.  * avoid additional coding at protocol handlers.
  551.  */
  552. if (!pskb_may_pull(skb, iph->ihl*4+8))
  553. goto out;
  554. iph = (struct iphdr *) skb->data;
  555. protocol = iph->protocol;
  556. /*
  557.  * Deliver ICMP message to raw sockets. Pretty useless feature?
  558.  */
  559. /* Note: See raw.c and net/raw.h, RAWV4_HTABLE_SIZE==MAX_INET_PROTOS */
  560. hash = protocol & (MAX_INET_PROTOS - 1);
  561. read_lock(&raw_v4_lock);
  562. if ((raw_sk = raw_v4_htable[hash]) != NULL) 
  563. {
  564. while ((raw_sk = __raw_v4_lookup(raw_sk, protocol, iph->daddr,
  565.  iph->saddr, skb->dev->ifindex)) != NULL) {
  566. raw_err(raw_sk, skb, info);
  567. raw_sk = raw_sk->next;
  568. iph = (struct iphdr *)skb->data;
  569. }
  570. }
  571. read_unlock(&raw_v4_lock);
  572. /*
  573.  * This can't change while we are doing it. 
  574.  * Callers have obtained BR_NETPROTO_LOCK so
  575.  * we are OK.
  576.  */
  577. ipprot = (struct inet_protocol *) inet_protos[hash];
  578. while (ipprot) {
  579. struct inet_protocol *nextip;
  580. nextip = (struct inet_protocol *) ipprot->next;
  581. /* 
  582.  * Pass it off to everyone who wants it. 
  583.  */
  584. /* RFC1122: OK. Passes appropriate ICMP errors to the */
  585. /* appropriate protocol layer (MUST), as per 3.2.2. */
  586. if (protocol == ipprot->protocol && ipprot->err_handler)
  587.   ipprot->err_handler(skb, info);
  588. ipprot = nextip;
  589.    }
  590. out:;
  591. }
  592. /*
  593.  * Handle ICMP_REDIRECT. 
  594.  */
  595. static void icmp_redirect(struct sk_buff *skb)
  596. {
  597. struct iphdr *iph;
  598. unsigned long ip;
  599. if (skb->len < sizeof(struct iphdr)) {
  600. ICMP_INC_STATS_BH(IcmpInErrors);
  601. return; 
  602. }
  603. /*
  604.  * Get the copied header of the packet that caused the redirect
  605.  */
  606. if (!pskb_may_pull(skb, sizeof(struct iphdr)))
  607. return;
  608. iph = (struct iphdr *) skb->data;
  609. ip = iph->daddr;
  610. switch (skb->h.icmph->code & 7) {
  611. case ICMP_REDIR_NET:
  612. case ICMP_REDIR_NETTOS:
  613. /*
  614.  * As per RFC recommendations now handle it as
  615.  * a host redirect.
  616.  */
  617.  
  618. case ICMP_REDIR_HOST:
  619. case ICMP_REDIR_HOSTTOS:
  620. ip_rt_redirect(skb->nh.iph->saddr, ip, skb->h.icmph->un.gateway, iph->saddr, iph->tos, skb->dev);
  621. break;
  622. default:
  623. break;
  624.    }
  625. }
  626. /*
  627.  * Handle ICMP_ECHO ("ping") requests. 
  628.  *
  629.  * RFC 1122: 3.2.2.6 MUST have an echo server that answers ICMP echo requests.
  630.  * RFC 1122: 3.2.2.6 Data received in the ICMP_ECHO request MUST be included in the reply.
  631.  * RFC 1812: 4.3.3.6 SHOULD have a config option for silently ignoring echo requests, MUST have default=NOT.
  632.  * See also WRT handling of options once they are done and working.
  633.  */
  634. static void icmp_echo(struct sk_buff *skb)
  635. {
  636. if (!sysctl_icmp_echo_ignore_all) {
  637. struct icmp_bxm icmp_param;
  638. icmp_param.data.icmph=*skb->h.icmph;
  639. icmp_param.data.icmph.type=ICMP_ECHOREPLY;
  640. icmp_param.skb=skb;
  641. icmp_param.offset=0;
  642. icmp_param.data_len=skb->len;
  643. icmp_param.head_len=sizeof(struct icmphdr);
  644. icmp_reply(&icmp_param, skb);
  645. }
  646. }
  647. /*
  648.  * Handle ICMP Timestamp requests. 
  649.  * RFC 1122: 3.2.2.8 MAY implement ICMP timestamp requests.
  650.  *   SHOULD be in the kernel for minimum random latency.
  651.  *   MUST be accurate to a few minutes.
  652.  *   MUST be updated at least at 15Hz.
  653.  */
  654.  
  655. static void icmp_timestamp(struct sk_buff *skb)
  656. {
  657. struct timeval tv;
  658. struct icmp_bxm icmp_param;
  659. /*
  660.  * Too short.
  661.  */
  662.  
  663. if (skb->len < 4) {
  664. ICMP_INC_STATS_BH(IcmpInErrors);
  665. return;
  666. }
  667. /*
  668.  * Fill in the current time as ms since midnight UT: 
  669.  */
  670. do_gettimeofday(&tv);
  671. icmp_param.data.times[1] = htonl((tv.tv_sec % 86400) * 1000 + tv.tv_usec / 1000);
  672. icmp_param.data.times[2] = icmp_param.data.times[1];
  673. if (skb_copy_bits(skb, 0, &icmp_param.data.times[0], 4))
  674. BUG();
  675. icmp_param.data.icmph=*skb->h.icmph;
  676. icmp_param.data.icmph.type=ICMP_TIMESTAMPREPLY;
  677. icmp_param.data.icmph.code=0;
  678. icmp_param.skb=skb;
  679. icmp_param.offset=0;
  680. icmp_param.data_len=0;
  681. icmp_param.head_len=sizeof(struct icmphdr)+12;
  682. icmp_reply(&icmp_param, skb);
  683. }
  684. /* 
  685.  * Handle ICMP_ADDRESS_MASK requests.  (RFC950)
  686.  *
  687.  * RFC1122 (3.2.2.9).  A host MUST only send replies to 
  688.  * ADDRESS_MASK requests if it's been configured as an address mask 
  689.  * agent.  Receiving a request doesn't constitute implicit permission to 
  690.  * act as one. Of course, implementing this correctly requires (SHOULD) 
  691.  * a way to turn the functionality on and off.  Another one for sysctl(), 
  692.  * I guess. -- MS
  693.  *
  694.  * RFC1812 (4.3.3.9). A router MUST implement it.
  695.  * A router SHOULD have switch turning it on/off.
  696.  *        This switch MUST be ON by default.
  697.  *
  698.  * Gratuitous replies, zero-source replies are not implemented,
  699.  * that complies with RFC. DO NOT implement them!!! All the idea
  700.  * of broadcast addrmask replies as specified in RFC950 is broken.
  701.  * The problem is that it is not uncommon to have several prefixes
  702.  * on one physical interface. Moreover, addrmask agent can even be
  703.  * not aware of existing another prefixes.
  704.  * If source is zero, addrmask agent cannot choose correct prefix.
  705.  * Gratuitous mask announcements suffer from the same problem.
  706.  * RFC1812 explains it, but still allows to use ADDRMASK,
  707.  * that is pretty silly. --ANK
  708.  *
  709.  * All these rules are so bizarre, that I removed kernel addrmask
  710.  * support at all. It is wrong, it is obsolete, nobody uses it in
  711.  * any case. --ANK
  712.  *
  713.  * Furthermore you can do it with a usermode address agent program
  714.  * anyway...
  715.  */
  716. static void icmp_address(struct sk_buff *skb)
  717. {
  718. #if 0
  719. if (net_ratelimit())
  720. printk(KERN_DEBUG "a guy asks for address mask. Who is it?n");
  721. #endif
  722. }
  723. /*
  724.  * RFC1812 (4.3.3.9). A router SHOULD listen all replies, and complain
  725.  * loudly if an inconsistency is found.
  726.  */
  727. static void icmp_address_reply(struct sk_buff *skb)
  728. {
  729. struct rtable *rt = (struct rtable*)skb->dst;
  730. struct net_device *dev = skb->dev;
  731. struct in_device *in_dev;
  732. struct in_ifaddr *ifa;
  733. u32 mask;
  734. if (skb->len < 4 || !(rt->rt_flags&RTCF_DIRECTSRC))
  735. return;
  736. in_dev = in_dev_get(dev);
  737. if (!in_dev)
  738. return;
  739. read_lock(&in_dev->lock);
  740. if (in_dev->ifa_list &&
  741.     IN_DEV_LOG_MARTIANS(in_dev) &&
  742.     IN_DEV_FORWARD(in_dev)) {
  743. if (skb_copy_bits(skb, 0, &mask, 4))
  744. BUG();
  745. for (ifa=in_dev->ifa_list; ifa; ifa = ifa->ifa_next) {
  746. if (mask == ifa->ifa_mask && inet_ifa_match(rt->rt_src, ifa))
  747. break;
  748. }
  749. if (!ifa && net_ratelimit()) {
  750. printk(KERN_INFO "Wrong address mask %u.%u.%u.%u from %s/%u.%u.%u.%un",
  751.        NIPQUAD(mask), dev->name, NIPQUAD(rt->rt_src));
  752. }
  753. }
  754. read_unlock(&in_dev->lock);
  755. in_dev_put(in_dev);
  756. }
  757. static void icmp_discard(struct sk_buff *skb)
  758. {
  759. }
  760. /* 
  761.  * Deal with incoming ICMP packets.
  762.  */
  763.  
  764. int icmp_rcv(struct sk_buff *skb)
  765. {
  766. struct icmphdr *icmph = skb->h.icmph;
  767. struct rtable *rt = (struct rtable*)skb->dst;
  768. ICMP_INC_STATS_BH(IcmpInMsgs);
  769. switch (skb->ip_summed) {
  770. case CHECKSUM_HW:
  771. if ((u16)csum_fold(skb->csum) == 0)
  772. break;
  773. NETDEBUG(if (net_ratelimit()) printk(KERN_DEBUG "icmp v4 hw csum failuren"));
  774. case CHECKSUM_NONE:
  775. if ((u16)csum_fold(skb_checksum(skb, 0, skb->len, 0)))
  776. goto error;
  777. default:;
  778. }
  779. if (!pskb_pull(skb, sizeof(struct icmphdr)))
  780. goto error;
  781. /*
  782.  * 18 is the highest 'known' ICMP type. Anything else is a mystery
  783.  *
  784.  * RFC 1122: 3.2.2  Unknown ICMP messages types MUST be silently discarded.
  785.  */
  786. if (icmph->type > NR_ICMP_TYPES)
  787. goto error;
  788. /*
  789.  * Parse the ICMP message 
  790.  */
  791.   if (rt->rt_flags&(RTCF_BROADCAST|RTCF_MULTICAST)) {
  792. /*
  793.  * RFC 1122: 3.2.2.6 An ICMP_ECHO to broadcast MAY be
  794.  *   silently ignored (we let user decide with a sysctl).
  795.  * RFC 1122: 3.2.2.8 An ICMP_TIMESTAMP MAY be silently
  796.  *   discarded if to broadcast/multicast.
  797.  */
  798. if (icmph->type == ICMP_ECHO &&
  799.     sysctl_icmp_echo_ignore_broadcasts) {
  800. goto error;
  801. }
  802. if (icmph->type != ICMP_ECHO &&
  803.     icmph->type != ICMP_TIMESTAMP &&
  804.     icmph->type != ICMP_ADDRESS &&
  805.     icmph->type != ICMP_ADDRESSREPLY) {
  806. goto error;
  807.    }
  808. }
  809. icmp_pointers[icmph->type].input[smp_processor_id()*2*sizeof(struct icmp_mib)/sizeof(unsigned long)]++;
  810. (icmp_pointers[icmph->type].handler)(skb);
  811. drop:
  812. kfree_skb(skb);
  813. return 0;
  814. error:
  815. ICMP_INC_STATS_BH(IcmpInErrors);
  816. goto drop;
  817. }
  818. /*
  819.  * This table is the definition of how we handle ICMP.
  820.  */
  821.  
  822. static struct icmp_control icmp_pointers[NR_ICMP_TYPES+1] = {
  823. /* ECHO REPLY (0) */
  824.  { &icmp_statistics[0].IcmpOutEchoReps, &icmp_statistics[0].IcmpInEchoReps, icmp_discard, 0 },
  825.  { &icmp_statistics[0].dummy, &icmp_statistics[0].IcmpInErrors, icmp_discard, 1 },
  826.  { &icmp_statistics[0].dummy, &icmp_statistics[0].IcmpInErrors, icmp_discard, 1 },
  827. /* DEST UNREACH (3) */
  828.  { &icmp_statistics[0].IcmpOutDestUnreachs, &icmp_statistics[0].IcmpInDestUnreachs, icmp_unreach, 1 },
  829. /* SOURCE QUENCH (4) */
  830.  { &icmp_statistics[0].IcmpOutSrcQuenchs, &icmp_statistics[0].IcmpInSrcQuenchs, icmp_unreach, 1 },
  831. /* REDIRECT (5) */
  832.  { &icmp_statistics[0].IcmpOutRedirects, &icmp_statistics[0].IcmpInRedirects, icmp_redirect, 1 },
  833.  { &icmp_statistics[0].dummy, &icmp_statistics[0].IcmpInErrors, icmp_discard, 1 },
  834.  { &icmp_statistics[0].dummy, &icmp_statistics[0].IcmpInErrors, icmp_discard, 1 },
  835. /* ECHO (8) */
  836.  { &icmp_statistics[0].IcmpOutEchos, &icmp_statistics[0].IcmpInEchos, icmp_echo, 0 },
  837.  { &icmp_statistics[0].dummy, &icmp_statistics[0].IcmpInErrors, icmp_discard, 1 },
  838.  { &icmp_statistics[0].dummy, &icmp_statistics[0].IcmpInErrors, icmp_discard, 1 },
  839. /* TIME EXCEEDED (11) */
  840.  { &icmp_statistics[0].IcmpOutTimeExcds, &icmp_statistics[0].IcmpInTimeExcds, icmp_unreach, 1 },
  841. /* PARAMETER PROBLEM (12) */
  842.  { &icmp_statistics[0].IcmpOutParmProbs, &icmp_statistics[0].IcmpInParmProbs, icmp_unreach, 1 },
  843. /* TIMESTAMP (13) */
  844.  { &icmp_statistics[0].IcmpOutTimestamps, &icmp_statistics[0].IcmpInTimestamps, icmp_timestamp, 0  },
  845. /* TIMESTAMP REPLY (14) */
  846.  { &icmp_statistics[0].IcmpOutTimestampReps, &icmp_statistics[0].IcmpInTimestampReps, icmp_discard, 0 },
  847. /* INFO (15) */
  848.  { &icmp_statistics[0].dummy, &icmp_statistics[0].dummy, icmp_discard, 0 },
  849. /* INFO REPLY (16) */
  850.  { &icmp_statistics[0].dummy, &icmp_statistics[0].dummy, icmp_discard, 0 },
  851. /* ADDR MASK (17) */
  852.  { &icmp_statistics[0].IcmpOutAddrMasks, &icmp_statistics[0].IcmpInAddrMasks, icmp_address, 0  },
  853. /* ADDR MASK REPLY (18) */
  854.  { &icmp_statistics[0].IcmpOutAddrMaskReps, &icmp_statistics[0].IcmpInAddrMaskReps, icmp_address_reply, 0 }
  855. };
  856. void __init icmp_init(struct net_proto_family *ops)
  857. {
  858. int err;
  859. icmp_inode.i_mode = S_IFSOCK;
  860. icmp_inode.i_sock = 1;
  861. icmp_inode.i_uid = 0;
  862. icmp_inode.i_gid = 0;
  863. init_waitqueue_head(&icmp_inode.i_wait);
  864. init_waitqueue_head(&icmp_inode.u.socket_i.wait);
  865. icmp_socket->inode = &icmp_inode;
  866. icmp_socket->state = SS_UNCONNECTED;
  867. icmp_socket->type=SOCK_RAW;
  868. if ((err=ops->create(icmp_socket, IPPROTO_ICMP))<0)
  869. panic("Failed to create the ICMP control socket.n");
  870. icmp_socket->sk->allocation=GFP_ATOMIC;
  871. icmp_socket->sk->sndbuf = SK_WMEM_MAX*2;
  872. icmp_socket->sk->protinfo.af_inet.ttl = MAXTTL;
  873. icmp_socket->sk->protinfo.af_inet.pmtudisc = IP_PMTUDISC_DONT;
  874. /* Unhash it so that IP input processing does not even
  875.  * see it, we do not wish this socket to see incoming
  876.  * packets.
  877.  */
  878. icmp_socket->sk->prot->unhash(icmp_socket->sk);
  879. }