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

Linux/Unix编程

开发平台:

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