IP_ICMP.C
上传用户:tjbfgc
上传日期:2013-03-31
资源大小:140k
文件大小:16k
源码类别:

网络编程

开发平台:

C/C++

  1. /*
  2.  * Copyright (c) 1982, 1986, 1988, 1993
  3.  * The Regents of the University of California.  All rights reserved.
  4.  *
  5.  * Redistribution and use in source and binary forms, with or without
  6.  * modification, are permitted provided that the following conditions
  7.  * are met:
  8.  * 1. Redistributions of source code must retain the above copyright
  9.  *    notice, this list of conditions and the following disclaimer.
  10.  * 2. Redistributions in binary form must reproduce the above copyright
  11.  *    notice, this list of conditions and the following disclaimer in the
  12.  *    documentation and/or other materials provided with the distribution.
  13.  * 3. All advertising materials mentioning features or use of this software
  14.  *    must display the following acknowledgement:
  15.  * This product includes software developed by the University of
  16.  * California, Berkeley and its contributors.
  17.  * 4. Neither the name of the University nor the names of its contributors
  18.  *    may be used to endorse or promote products derived from this software
  19.  *    without specific prior written permission.
  20.  *
  21.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  22.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  23.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  24.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  25.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  26.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  27.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  28.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  29.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  30.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  31.  * SUCH DAMAGE.
  32.  *
  33.  * @(#)ip_icmp.c 8.2 (Berkeley) 1/4/94
  34.  */
  35. #include <sys/param.h>
  36. #include <sys/systm.h>
  37. #include <sys/malloc.h>
  38. #include <sys/mbuf.h>
  39. #include <sys/protosw.h>
  40. #include <sys/socket.h>
  41. #include <sys/time.h>
  42. #include <sys/kernel.h>
  43. #include <net/if.h>
  44. #include <net/route.h>
  45. #include <netinet/in.h>
  46. #include <netinet/in_systm.h>
  47. #include <netinet/in_var.h>
  48. #include <netinet/ip.h>
  49. #include <netinet/ip_icmp.h>
  50. #include <netinet/icmp_var.h>
  51. /*
  52.  * ICMP routines: error generation, receive packet processing, and
  53.  * routines to turnaround packets back to the originator, and
  54.  * host table maintenance routines.
  55.  */
  56. int icmpmaskrepl = 0;
  57. #ifdef ICMPPRINTFS
  58. int icmpprintfs = 0;
  59. #endif
  60. extern struct protosw inetsw[];
  61. /*
  62.  * Generate an error packet of type error
  63.  * in response to bad packet ip.
  64.  */
  65. void
  66. icmp_error(n, type, code, dest, destifp)
  67. struct mbuf *n;
  68. int type, code;
  69. n_long dest;
  70. struct ifnet *destifp;
  71. {
  72. register struct ip *oip = mtod(n, struct ip *), *nip;
  73. register unsigned oiplen = oip->ip_hl << 2;
  74. register struct icmp *icp;
  75. register struct mbuf *m;
  76. unsigned icmplen;
  77. #ifdef ICMPPRINTFS
  78. if (icmpprintfs)
  79. printf("icmp_error(%x, %d, %d)n", oip, type, code);
  80. #endif
  81. if (type != ICMP_REDIRECT)
  82. icmpstat.icps_error++;
  83. /*
  84.  * Don't send error if not the first fragment of message.
  85.  * Don't error if the old packet protocol was ICMP
  86.  * error message, only known informational types.
  87.  */
  88. if (oip->ip_off &~ (IP_MF|IP_DF))
  89. goto freeit;
  90. if (oip->ip_p == IPPROTO_ICMP && type != ICMP_REDIRECT &&
  91.   n->m_len >= oiplen + ICMP_MINLEN &&
  92.   !ICMP_INFOTYPE(((struct icmp *)((caddr_t)oip + oiplen))->icmp_type)) {
  93. icmpstat.icps_oldicmp++;
  94. goto freeit;
  95. }
  96. /* Don't send error in response to a multicast or broadcast packet */
  97. if (n->m_flags & (M_BCAST|M_MCAST))
  98. goto freeit;
  99. /*
  100.  * First, formulate icmp message
  101.  */
  102. m = m_gethdr(M_DONTWAIT, MT_HEADER);
  103. if (m == NULL)
  104. goto freeit;
  105. icmplen = oiplen + min(8, oip->ip_len);
  106. m->m_len = icmplen + ICMP_MINLEN;
  107. MH_ALIGN(m, m->m_len);
  108. icp = mtod(m, struct icmp *);
  109. if ((u_int)type > ICMP_MAXTYPE)
  110. panic("icmp_error");
  111. icmpstat.icps_outhist[type]++;
  112. icp->icmp_type = type;
  113. if (type == ICMP_REDIRECT)
  114. icp->icmp_gwaddr.s_addr = dest;
  115. else {
  116. icp->icmp_void = 0;
  117. /* 
  118.  * The following assignments assume an overlay with the
  119.  * zeroed icmp_void field.
  120.  */
  121. if (type == ICMP_PARAMPROB) {
  122. icp->icmp_pptr = code;
  123. code = 0;
  124. } else if (type == ICMP_UNREACH &&
  125. code == ICMP_UNREACH_NEEDFRAG && destifp) {
  126. icp->icmp_nextmtu = htons(destifp->if_mtu);
  127. }
  128. }
  129. icp->icmp_code = code;
  130. bcopy((caddr_t)oip, (caddr_t)&icp->icmp_ip, icmplen);
  131. nip = &icp->icmp_ip;
  132. nip->ip_len = htons((u_short)(nip->ip_len + oiplen));
  133. /*
  134.  * Now, copy old ip header (without options)
  135.  * in front of icmp message.
  136.  */
  137. if (m->m_data - sizeof(struct ip) < m->m_pktdat)
  138. panic("icmp len");
  139. m->m_data -= sizeof(struct ip);
  140. m->m_len += sizeof(struct ip);
  141. m->m_pkthdr.len = m->m_len;
  142. m->m_pkthdr.rcvif = n->m_pkthdr.rcvif;
  143. nip = mtod(m, struct ip *);
  144. bcopy((caddr_t)oip, (caddr_t)nip, sizeof(struct ip));
  145. nip->ip_len = m->m_len;
  146. nip->ip_hl = sizeof(struct ip) >> 2;
  147. nip->ip_p = IPPROTO_ICMP;
  148. nip->ip_tos = 0;
  149. icmp_reflect(m);
  150. freeit:
  151. m_freem(n);
  152. }
  153. static struct sockaddr_in icmpsrc = { sizeof (struct sockaddr_in), AF_INET };
  154. static struct sockaddr_in icmpdst = { sizeof (struct sockaddr_in), AF_INET };
  155. static struct sockaddr_in icmpgw = { sizeof (struct sockaddr_in), AF_INET };
  156. struct sockaddr_in icmpmask = { 8, 0 };
  157. /*
  158.  * Process a received ICMP message.
  159.  */
  160. void
  161. icmp_input(m, hlen)
  162. register struct mbuf *m;
  163. int hlen;
  164. {
  165. register struct icmp *icp;
  166. register struct ip *ip = mtod(m, struct ip *);
  167. int icmplen = ip->ip_len;
  168. register int i;
  169. struct in_ifaddr *ia;
  170. void (*ctlfunc) __P((int, struct sockaddr *, struct ip *));
  171. int code;
  172. extern u_char ip_protox[];
  173. /*
  174.  * Locate icmp structure in mbuf, and check
  175.  * that not corrupted and of at least minimum length.
  176.  */
  177. #ifdef ICMPPRINTFS
  178. if (icmpprintfs)
  179. printf("icmp_input from %x to %x, len %dn",
  180. ntohl(ip->ip_src.s_addr), ntohl(ip->ip_dst.s_addr),
  181. icmplen);
  182. #endif
  183. if (icmplen < ICMP_MINLEN) {
  184. icmpstat.icps_tooshort++;
  185. goto freeit;
  186. }
  187. i = hlen + min(icmplen, ICMP_ADVLENMIN);
  188. if (m->m_len < i && (m = m_pullup(m, i)) == 0)  {
  189. icmpstat.icps_tooshort++;
  190. return;
  191. }
  192. ip = mtod(m, struct ip *);
  193. m->m_len -= hlen;
  194. m->m_data += hlen;
  195. icp = mtod(m, struct icmp *);
  196. if (in_cksum(m, icmplen)) {
  197. icmpstat.icps_checksum++;
  198. goto freeit;
  199. }
  200. m->m_len += hlen;
  201. m->m_data -= hlen;
  202. #ifdef ICMPPRINTFS
  203. /*
  204.  * Message type specific processing.
  205.  */
  206. if (icmpprintfs)
  207. printf("icmp_input, type %d code %dn", icp->icmp_type,
  208.     icp->icmp_code);
  209. #endif
  210. if (icp->icmp_type > ICMP_MAXTYPE)
  211. goto raw;
  212. icmpstat.icps_inhist[icp->icmp_type]++;
  213. code = icp->icmp_code;
  214. switch (icp->icmp_type) {
  215. case ICMP_UNREACH:
  216. switch (code) {
  217. case ICMP_UNREACH_NET:
  218. case ICMP_UNREACH_HOST:
  219. case ICMP_UNREACH_PROTOCOL:
  220. case ICMP_UNREACH_PORT:
  221. case ICMP_UNREACH_SRCFAIL:
  222. code += PRC_UNREACH_NET;
  223. break;
  224. case ICMP_UNREACH_NEEDFRAG:
  225. code = PRC_MSGSIZE;
  226. break;
  227. case ICMP_UNREACH_NET_UNKNOWN:
  228. case ICMP_UNREACH_NET_PROHIB:
  229. case ICMP_UNREACH_TOSNET:
  230. code = PRC_UNREACH_NET;
  231. break;
  232. case ICMP_UNREACH_HOST_UNKNOWN:
  233. case ICMP_UNREACH_ISOLATED:
  234. case ICMP_UNREACH_HOST_PROHIB:
  235. case ICMP_UNREACH_TOSHOST:
  236. code = PRC_UNREACH_HOST;
  237. break;
  238. default:
  239. goto badcode;
  240. }
  241. goto deliver;
  242. case ICMP_TIMXCEED:
  243. if (code > 1)
  244. goto badcode;
  245. code += PRC_TIMXCEED_INTRANS;
  246. goto deliver;
  247. case ICMP_PARAMPROB:
  248. if (code > 1)
  249. goto badcode;
  250. code = PRC_PARAMPROB;
  251. goto deliver;
  252. case ICMP_SOURCEQUENCH:
  253. if (code)
  254. goto badcode;
  255. code = PRC_QUENCH;
  256. deliver:
  257. /*
  258.  * Problem with datagram; advise higher level routines.
  259.  */
  260. if (icmplen < ICMP_ADVLENMIN || icmplen < ICMP_ADVLEN(icp) ||
  261.     icp->icmp_ip.ip_hl < (sizeof(struct ip) >> 2)) {
  262. icmpstat.icps_badlen++;
  263. goto freeit;
  264. }
  265. NTOHS(icp->icmp_ip.ip_len);
  266. #ifdef ICMPPRINTFS
  267. if (icmpprintfs)
  268. printf("deliver to protocol %dn", icp->icmp_ip.ip_p);
  269. #endif
  270. icmpsrc.sin_addr = icp->icmp_ip.ip_dst;
  271. if (ctlfunc = inetsw[ip_protox[icp->icmp_ip.ip_p]].pr_ctlinput)
  272. (*ctlfunc)(code, (struct sockaddr *)&icmpsrc,
  273.     &icp->icmp_ip);
  274. break;
  275. badcode:
  276. icmpstat.icps_badcode++;
  277. break;
  278. case ICMP_ECHO:
  279. icp->icmp_type = ICMP_ECHOREPLY;
  280. goto reflect;
  281. case ICMP_TSTAMP:
  282. if (icmplen < ICMP_TSLEN) {
  283. icmpstat.icps_badlen++;
  284. break;
  285. }
  286. icp->icmp_type = ICMP_TSTAMPREPLY;
  287. icp->icmp_rtime = iptime();
  288. icp->icmp_ttime = icp->icmp_rtime; /* bogus, do later! */
  289. goto reflect;
  290. case ICMP_MASKREQ:
  291. #define satosin(sa) ((struct sockaddr_in *)(sa))
  292. if (icmpmaskrepl == 0)
  293. break;
  294. /*
  295.  * We are not able to respond with all ones broadcast
  296.  * unless we receive it over a point-to-point interface.
  297.  */
  298. if (icmplen < ICMP_MASKLEN)
  299. break;
  300. switch (ip->ip_dst.s_addr) {
  301. case INADDR_BROADCAST:
  302. case INADDR_ANY:
  303. icmpdst.sin_addr = ip->ip_src;
  304. break;
  305. default:
  306. icmpdst.sin_addr = ip->ip_dst;
  307. }
  308. ia = (struct in_ifaddr *)ifaof_ifpforaddr(
  309.     (struct sockaddr *)&icmpdst, m->m_pkthdr.rcvif);
  310. if (ia == 0)
  311. break;
  312. icp->icmp_type = ICMP_MASKREPLY;
  313. icp->icmp_mask = ia->ia_sockmask.sin_addr.s_addr;
  314. if (ip->ip_src.s_addr == 0) {
  315. if (ia->ia_ifp->if_flags & IFF_BROADCAST)
  316.     ip->ip_src = satosin(&ia->ia_broadaddr)->sin_addr;
  317. else if (ia->ia_ifp->if_flags & IFF_POINTOPOINT)
  318.     ip->ip_src = satosin(&ia->ia_dstaddr)->sin_addr;
  319. }
  320. reflect:
  321. ip->ip_len += hlen; /* since ip_input deducts this */
  322. icmpstat.icps_reflect++;
  323. icmpstat.icps_outhist[icp->icmp_type]++;
  324. icmp_reflect(m);
  325. return;
  326. case ICMP_REDIRECT:
  327. if (code > 3)
  328. goto badcode;
  329. if (icmplen < ICMP_ADVLENMIN || icmplen < ICMP_ADVLEN(icp) ||
  330.     icp->icmp_ip.ip_hl < (sizeof(struct ip) >> 2)) {
  331. icmpstat.icps_badlen++;
  332. break;
  333. }
  334. /*
  335.  * Short circuit routing redirects to force
  336.  * immediate change in the kernel's routing
  337.  * tables.  The message is also handed to anyone
  338.  * listening on a raw socket (e.g. the routing
  339.  * daemon for use in updating its tables).
  340.  */
  341. icmpgw.sin_addr = ip->ip_src;
  342. icmpdst.sin_addr = icp->icmp_gwaddr;
  343. #ifdef ICMPPRINTFS
  344. if (icmpprintfs)
  345. printf("redirect dst %x to %xn", icp->icmp_ip.ip_dst,
  346. icp->icmp_gwaddr);
  347. #endif
  348. icmpsrc.sin_addr = icp->icmp_ip.ip_dst;
  349. rtredirect((struct sockaddr *)&icmpsrc,
  350.   (struct sockaddr *)&icmpdst,
  351.   (struct sockaddr *)0, RTF_GATEWAY | RTF_HOST,
  352.   (struct sockaddr *)&icmpgw, (struct rtentry **)0);
  353. pfctlinput(PRC_REDIRECT_HOST, (struct sockaddr *)&icmpsrc);
  354. break;
  355. /*
  356.  * No kernel processing for the following;
  357.  * just fall through to send to raw listener.
  358.  */
  359. case ICMP_ECHOREPLY:
  360. case ICMP_ROUTERADVERT:
  361. case ICMP_ROUTERSOLICIT:
  362. case ICMP_TSTAMPREPLY:
  363. case ICMP_IREQREPLY:
  364. case ICMP_MASKREPLY:
  365. default:
  366. break;
  367. }
  368. raw:
  369. rip_input(m);
  370. return;
  371. freeit:
  372. m_freem(m);
  373. }
  374. /*
  375.  * Reflect the ip packet back to the source
  376.  */
  377. void
  378. icmp_reflect(m)
  379. struct mbuf *m;
  380. {
  381. register struct ip *ip = mtod(m, struct ip *);
  382. register struct in_ifaddr *ia;
  383. struct in_addr t;
  384. struct mbuf *opts = 0, *ip_srcroute();
  385. int optlen = (ip->ip_hl << 2) - sizeof(struct ip);
  386. if (!in_canforward(ip->ip_src) &&
  387.     ((ntohl(ip->ip_src.s_addr) & IN_CLASSA_NET) !=
  388.      (IN_LOOPBACKNET << IN_CLASSA_NSHIFT))) {
  389. m_freem(m); /* Bad return address */
  390. goto done; /* Ip_output() will check for broadcast */
  391. }
  392. t = ip->ip_dst;
  393. ip->ip_dst = ip->ip_src;
  394. /*
  395.  * If the incoming packet was addressed directly to us,
  396.  * use dst as the src for the reply.  Otherwise (broadcast
  397.  * or anonymous), use the address which corresponds
  398.  * to the incoming interface.
  399.  */
  400. for (ia = in_ifaddr; ia; ia = ia->ia_next) {
  401. if (t.s_addr == IA_SIN(ia)->sin_addr.s_addr)
  402. break;
  403. if ((ia->ia_ifp->if_flags & IFF_BROADCAST) &&
  404.     t.s_addr == satosin(&ia->ia_broadaddr)->sin_addr.s_addr)
  405. break;
  406. }
  407. icmpdst.sin_addr = t;
  408. if (ia == (struct in_ifaddr *)0)
  409. ia = (struct in_ifaddr *)ifaof_ifpforaddr(
  410. (struct sockaddr *)&icmpdst, m->m_pkthdr.rcvif);
  411. /*
  412.  * The following happens if the packet was not addressed to us,
  413.  * and was received on an interface with no IP address.
  414.  */
  415. if (ia == (struct in_ifaddr *)0)
  416. ia = in_ifaddr;
  417. t = IA_SIN(ia)->sin_addr;
  418. ip->ip_src = t;
  419. ip->ip_ttl = MAXTTL;
  420. if (optlen > 0) {
  421. register u_char *cp;
  422. int opt, cnt;
  423. u_int len;
  424. /*
  425.  * Retrieve any source routing from the incoming packet;
  426.  * add on any record-route or timestamp options.
  427.  */
  428. cp = (u_char *) (ip + 1);
  429. if ((opts = ip_srcroute()) == 0 &&
  430.     (opts = m_gethdr(M_DONTWAIT, MT_HEADER))) {
  431. opts->m_len = sizeof(struct in_addr);
  432. mtod(opts, struct in_addr *)->s_addr = 0;
  433. }
  434. if (opts) {
  435. #ifdef ICMPPRINTFS
  436.     if (icmpprintfs)
  437.     printf("icmp_reflect optlen %d rt %d => ",
  438. optlen, opts->m_len);
  439. #endif
  440.     for (cnt = optlen; cnt > 0; cnt -= len, cp += len) {
  441.     opt = cp[IPOPT_OPTVAL];
  442.     if (opt == IPOPT_EOL)
  443.     break;
  444.     if (opt == IPOPT_NOP)
  445.     len = 1;
  446.     else {
  447.     len = cp[IPOPT_OLEN];
  448.     if (len <= 0 || len > cnt)
  449.     break;
  450.     }
  451.     /*
  452.      * Should check for overflow, but it "can't happen"
  453.      */
  454.     if (opt == IPOPT_RR || opt == IPOPT_TS || 
  455. opt == IPOPT_SECURITY) {
  456.     bcopy((caddr_t)cp,
  457. mtod(opts, caddr_t) + opts->m_len, len);
  458.     opts->m_len += len;
  459.     }
  460.     }
  461.     /* Terminate & pad, if necessary */
  462.     if (cnt = opts->m_len % 4) {
  463.     for (; cnt < 4; cnt++) {
  464.     *(mtod(opts, caddr_t) + opts->m_len) =
  465. IPOPT_EOL;
  466.     opts->m_len++;
  467.     }
  468.     }
  469. #ifdef ICMPPRINTFS
  470.     if (icmpprintfs)
  471.     printf("%dn", opts->m_len);
  472. #endif
  473. }
  474. /*
  475.  * Now strip out original options by copying rest of first
  476.  * mbuf's data back, and adjust the IP length.
  477.  */
  478. ip->ip_len -= optlen;
  479. ip->ip_hl = sizeof(struct ip) >> 2;
  480. m->m_len -= optlen;
  481. if (m->m_flags & M_PKTHDR)
  482. m->m_pkthdr.len -= optlen;
  483. optlen += sizeof(struct ip);
  484. bcopy((caddr_t)ip + optlen, (caddr_t)(ip + 1),
  485.  (unsigned)(m->m_len - sizeof(struct ip)));
  486. }
  487. m->m_flags &= ~(M_BCAST|M_MCAST);
  488. icmp_send(m, opts);
  489. done:
  490. if (opts)
  491. (void)m_free(opts);
  492. }
  493. /*
  494.  * Send an icmp packet back to the ip level,
  495.  * after supplying a checksum.
  496.  */
  497. void
  498. icmp_send(m, opts)
  499. register struct mbuf *m;
  500. struct mbuf *opts;
  501. {
  502. register struct ip *ip = mtod(m, struct ip *);
  503. register int hlen;
  504. register struct icmp *icp;
  505. hlen = ip->ip_hl << 2;
  506. m->m_data += hlen;
  507. m->m_len -= hlen;
  508. icp = mtod(m, struct icmp *);
  509. icp->icmp_cksum = 0;
  510. icp->icmp_cksum = in_cksum(m, ip->ip_len - hlen);
  511. m->m_data -= hlen;
  512. m->m_len += hlen;
  513. #ifdef ICMPPRINTFS
  514. if (icmpprintfs)
  515. printf("icmp_send dst %x src %xn", ip->ip_dst, ip->ip_src);
  516. #endif
  517. (void) ip_output(m, opts, NULL, 0, NULL);
  518. }
  519. n_time
  520. iptime()
  521. {
  522. struct timeval atv;
  523. u_long t;
  524. microtime(&atv);
  525. t = (atv.tv_sec % (24*60*60)) * 1000 + atv.tv_usec / 1000;
  526. return (htonl(t));
  527. }
  528. int
  529. icmp_sysctl(name, namelen, oldp, oldlenp, newp, newlen)
  530. int *name;
  531. u_int namelen;
  532. void *oldp;
  533. size_t *oldlenp;
  534. void *newp;
  535. size_t newlen;
  536. {
  537. /* All sysctl names at this level are terminal. */
  538. if (namelen != 1)
  539. return (ENOTDIR);
  540. switch (name[0]) {
  541. case ICMPCTL_MASKREPL:
  542. return (sysctl_int(oldp, oldlenp, newp, newlen, &icmpmaskrepl));
  543. default:
  544. return (ENOPROTOOPT);
  545. }
  546. /* NOTREACHED */
  547. }