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 * 4. Neither the name of the University nor the names of its contributors 14 * may be used to endorse or promote products derived from this software 15 * without specific prior written permission. 16 * 17 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 20 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 27 * SUCH DAMAGE. 28 * 29 * @(#)ip_icmp.c 8.2 (Berkeley) 1/4/94 30 * $FreeBSD$ 31 */ 32 33 #include "opt_ipsec.h" 34 #include "opt_mac.h" 35 36 #include <sys/param.h> 37 #include <sys/systm.h> 38 #include <sys/mac.h> 39 #include <sys/mbuf.h> 40 #include <sys/protosw.h> 41 #include <sys/socket.h> 42 #include <sys/time.h> 43 #include <sys/kernel.h> 44 #include <sys/sysctl.h> 45 46 #include <net/if.h> 47 #include <net/if_types.h> 48 #include <net/route.h> 49 50 #include <netinet/in.h> 51 #include <netinet/in_pcb.h> 52 #include <netinet/in_systm.h> 53 #include <netinet/in_var.h> 54 #include <netinet/ip.h> 55 #include <netinet/ip_icmp.h> 56 #include <netinet/ip_var.h> 57 #include <netinet/tcp.h> 58 #include <netinet/tcp_var.h> 59 #include <netinet/tcpip.h> 60 #include <netinet/icmp_var.h> 61 62 #ifdef IPSEC 63 #include <netinet6/ipsec.h> 64 #include <netkey/key.h> 65 #endif 66 67 #ifdef FAST_IPSEC 68 #include <netipsec/ipsec.h> 69 #include <netipsec/key.h> 70 #define IPSEC 71 #endif 72 73 #include <machine/in_cksum.h> 74 75 /* 76 * ICMP routines: error generation, receive packet processing, and 77 * routines to turnaround packets back to the originator, and 78 * host table maintenance routines. 79 */ 80 81 struct icmpstat icmpstat; 82 SYSCTL_STRUCT(_net_inet_icmp, ICMPCTL_STATS, stats, CTLFLAG_RW, 83 &icmpstat, icmpstat, ""); 84 85 static int icmpmaskrepl = 0; 86 SYSCTL_INT(_net_inet_icmp, ICMPCTL_MASKREPL, maskrepl, CTLFLAG_RW, 87 &icmpmaskrepl, 0, "Reply to ICMP Address Mask Request packets."); 88 89 static u_int icmpmaskfake = 0; 90 SYSCTL_UINT(_net_inet_icmp, OID_AUTO, maskfake, CTLFLAG_RW, 91 &icmpmaskfake, 0, "Fake reply to ICMP Address Mask Request packets."); 92 93 static int drop_redirect = 0; 94 SYSCTL_INT(_net_inet_icmp, OID_AUTO, drop_redirect, CTLFLAG_RW, 95 &drop_redirect, 0, ""); 96 97 static int log_redirect = 0; 98 SYSCTL_INT(_net_inet_icmp, OID_AUTO, log_redirect, CTLFLAG_RW, 99 &log_redirect, 0, ""); 100 101 static int icmplim = 200; 102 SYSCTL_INT(_net_inet_icmp, ICMPCTL_ICMPLIM, icmplim, CTLFLAG_RW, 103 &icmplim, 0, ""); 104 105 static int icmplim_output = 1; 106 SYSCTL_INT(_net_inet_icmp, OID_AUTO, icmplim_output, CTLFLAG_RW, 107 &icmplim_output, 0, ""); 108 109 static char reply_src[IFNAMSIZ]; 110 SYSCTL_STRING(_net_inet_icmp, OID_AUTO, reply_src, CTLFLAG_RW, 111 &reply_src, IFNAMSIZ, "icmp reply source for non-local packets."); 112 113 /* 114 * ICMP broadcast echo sysctl 115 */ 116 117 static int icmpbmcastecho = 0; 118 SYSCTL_INT(_net_inet_icmp, OID_AUTO, bmcastecho, CTLFLAG_RW, 119 &icmpbmcastecho, 0, ""); 120 121 122 #ifdef ICMPPRINTFS 123 int icmpprintfs = 0; 124 #endif 125 126 static void icmp_reflect(struct mbuf *); 127 static void icmp_send(struct mbuf *, struct mbuf *); 128 static int ip_next_mtu(int, int); 129 130 extern struct protosw inetsw[]; 131 132 /* 133 * Generate an error packet of type error 134 * in response to bad packet ip. 135 */ 136 void 137 icmp_error(n, type, code, dest, destifp) 138 struct mbuf *n; 139 int type, code; 140 n_long dest; 141 struct ifnet *destifp; 142 { 143 register struct ip *oip = mtod(n, struct ip *), *nip; 144 register unsigned oiplen = oip->ip_hl << 2; 145 register struct icmp *icp; 146 register struct mbuf *m; 147 register struct m_tag *mtag; 148 unsigned icmplen; 149 150 #ifdef ICMPPRINTFS 151 if (icmpprintfs) 152 printf("icmp_error(%p, %x, %d)\n", oip, type, code); 153 #endif 154 if (type != ICMP_REDIRECT) 155 icmpstat.icps_error++; 156 /* 157 * Don't send error if the original packet was encrypted. 158 * Don't send error if not the first fragment of message. 159 * Don't error if the old packet protocol was ICMP 160 * error message, only known informational types. 161 */ 162 if (n->m_flags & M_DECRYPTED) 163 goto freeit; 164 if (oip->ip_off &~ (IP_MF|IP_DF)) 165 goto freeit; 166 if (oip->ip_p == IPPROTO_ICMP && type != ICMP_REDIRECT && 167 n->m_len >= oiplen + ICMP_MINLEN && 168 !ICMP_INFOTYPE(((struct icmp *)((caddr_t)oip + oiplen))->icmp_type)) { 169 icmpstat.icps_oldicmp++; 170 goto freeit; 171 } 172 /* Don't send error in response to a multicast or broadcast packet */ 173 if (n->m_flags & (M_BCAST|M_MCAST)) 174 goto freeit; 175 /* 176 * First, formulate icmp message 177 */ 178 m = m_gethdr(M_DONTWAIT, MT_HEADER); 179 if (m == NULL) 180 goto freeit; 181 #ifdef MAC 182 mac_create_mbuf_netlayer(n, m); 183 #endif 184 icmplen = min(oiplen + 8, oip->ip_len); 185 if (icmplen < sizeof(struct ip)) 186 panic("icmp_error: bad length"); 187 m->m_len = icmplen + ICMP_MINLEN; 188 MH_ALIGN(m, m->m_len); 189 icp = mtod(m, struct icmp *); 190 if ((u_int)type > ICMP_MAXTYPE) 191 panic("icmp_error"); 192 icmpstat.icps_outhist[type]++; 193 icp->icmp_type = type; 194 if (type == ICMP_REDIRECT) 195 icp->icmp_gwaddr.s_addr = dest; 196 else { 197 icp->icmp_void = 0; 198 /* 199 * The following assignments assume an overlay with the 200 * zeroed icmp_void field. 201 */ 202 if (type == ICMP_PARAMPROB) { 203 icp->icmp_pptr = code; 204 code = 0; 205 } else if (type == ICMP_UNREACH && 206 code == ICMP_UNREACH_NEEDFRAG && destifp) { 207 icp->icmp_nextmtu = htons(destifp->if_mtu); 208 } 209 } 210 211 icp->icmp_code = code; 212 m_copydata(n, 0, icmplen, (caddr_t)&icp->icmp_ip); 213 nip = &icp->icmp_ip; 214 215 /* 216 * Convert fields to network representation. 217 */ 218 nip->ip_len = htons(nip->ip_len); 219 nip->ip_off = htons(nip->ip_off); 220 221 /* 222 * Now, copy old ip header (without options) 223 * in front of icmp message. 224 */ 225 if (m->m_data - sizeof(struct ip) < m->m_pktdat) 226 panic("icmp len"); 227 m->m_data -= sizeof(struct ip); 228 m->m_len += sizeof(struct ip); 229 m->m_pkthdr.len = m->m_len; 230 m->m_pkthdr.rcvif = n->m_pkthdr.rcvif; 231 nip = mtod(m, struct ip *); 232 bcopy((caddr_t)oip, (caddr_t)nip, sizeof(struct ip)); 233 nip->ip_len = m->m_len; 234 nip->ip_v = IPVERSION; 235 nip->ip_hl = 5; 236 nip->ip_p = IPPROTO_ICMP; 237 nip->ip_tos = 0; 238 /* 239 * XXX: Move PF_GENERATED m_tag to new packet, if it exists. 240 * This should be replaced by unified flags/tags for 241 * pf/ipfw/ipf and future pfil_hook applications. 242 */ 243 mtag = m_tag_find(n, PACKET_TAG_PF_GENERATED, NULL); 244 if (mtag != NULL) { 245 m_tag_unlink(n, mtag); 246 m_tag_prepend(m, mtag); 247 } 248 icmp_reflect(m); 249 250 freeit: 251 m_freem(n); 252 } 253 254 /* 255 * Process a received ICMP message. 256 */ 257 void 258 icmp_input(m, off) 259 struct mbuf *m; 260 int off; 261 { 262 struct icmp *icp; 263 struct in_ifaddr *ia; 264 struct ip *ip = mtod(m, struct ip *); 265 struct sockaddr_in icmpsrc, icmpdst, icmpgw; 266 int hlen = off; 267 int icmplen = ip->ip_len; 268 int i, code; 269 void (*ctlfunc)(int, struct sockaddr *, void *); 270 271 /* 272 * Locate icmp structure in mbuf, and check 273 * that not corrupted and of at least minimum length. 274 */ 275 #ifdef ICMPPRINTFS 276 if (icmpprintfs) { 277 char buf[4 * sizeof "123"]; 278 strcpy(buf, inet_ntoa(ip->ip_src)); 279 printf("icmp_input from %s to %s, len %d\n", 280 buf, inet_ntoa(ip->ip_dst), icmplen); 281 } 282 #endif 283 if (icmplen < ICMP_MINLEN) { 284 icmpstat.icps_tooshort++; 285 goto freeit; 286 } 287 i = hlen + min(icmplen, ICMP_ADVLENMIN); 288 if (m->m_len < i && (m = m_pullup(m, i)) == 0) { 289 icmpstat.icps_tooshort++; 290 return; 291 } 292 ip = mtod(m, struct ip *); 293 m->m_len -= hlen; 294 m->m_data += hlen; 295 icp = mtod(m, struct icmp *); 296 if (in_cksum(m, icmplen)) { 297 icmpstat.icps_checksum++; 298 goto freeit; 299 } 300 m->m_len += hlen; 301 m->m_data -= hlen; 302 303 if (m->m_pkthdr.rcvif && m->m_pkthdr.rcvif->if_type == IFT_FAITH) { 304 /* 305 * Deliver very specific ICMP type only. 306 */ 307 switch (icp->icmp_type) { 308 case ICMP_UNREACH: 309 case ICMP_TIMXCEED: 310 break; 311 default: 312 goto freeit; 313 } 314 } 315 316 #ifdef ICMPPRINTFS 317 if (icmpprintfs) 318 printf("icmp_input, type %d code %d\n", icp->icmp_type, 319 icp->icmp_code); 320 #endif 321 322 /* 323 * Message type specific processing. 324 */ 325 if (icp->icmp_type > ICMP_MAXTYPE) 326 goto raw; 327 328 /* Initialize */ 329 bzero(&icmpsrc, sizeof(icmpsrc)); 330 icmpsrc.sin_len = sizeof(struct sockaddr_in); 331 icmpsrc.sin_family = AF_INET; 332 bzero(&icmpdst, sizeof(icmpdst)); 333 icmpdst.sin_len = sizeof(struct sockaddr_in); 334 icmpdst.sin_family = AF_INET; 335 bzero(&icmpgw, sizeof(icmpgw)); 336 icmpgw.sin_len = sizeof(struct sockaddr_in); 337 icmpgw.sin_family = AF_INET; 338 339 icmpstat.icps_inhist[icp->icmp_type]++; 340 code = icp->icmp_code; 341 switch (icp->icmp_type) { 342 343 case ICMP_UNREACH: 344 switch (code) { 345 case ICMP_UNREACH_NET: 346 case ICMP_UNREACH_HOST: 347 case ICMP_UNREACH_SRCFAIL: 348 case ICMP_UNREACH_NET_UNKNOWN: 349 case ICMP_UNREACH_HOST_UNKNOWN: 350 case ICMP_UNREACH_ISOLATED: 351 case ICMP_UNREACH_TOSNET: 352 case ICMP_UNREACH_TOSHOST: 353 case ICMP_UNREACH_HOST_PRECEDENCE: 354 case ICMP_UNREACH_PRECEDENCE_CUTOFF: 355 code = PRC_UNREACH_NET; 356 break; 357 358 case ICMP_UNREACH_NEEDFRAG: 359 code = PRC_MSGSIZE; 360 break; 361 362 /* 363 * RFC 1122, Sections 3.2.2.1 and 4.2.3.9. 364 * Treat subcodes 2,3 as immediate RST 365 */ 366 case ICMP_UNREACH_PROTOCOL: 367 case ICMP_UNREACH_PORT: 368 code = PRC_UNREACH_PORT; 369 break; 370 371 case ICMP_UNREACH_NET_PROHIB: 372 case ICMP_UNREACH_HOST_PROHIB: 373 case ICMP_UNREACH_FILTER_PROHIB: 374 code = PRC_UNREACH_ADMIN_PROHIB; 375 break; 376 377 default: 378 goto badcode; 379 } 380 goto deliver; 381 382 case ICMP_TIMXCEED: 383 if (code > 1) 384 goto badcode; 385 code += PRC_TIMXCEED_INTRANS; 386 goto deliver; 387 388 case ICMP_PARAMPROB: 389 if (code > 1) 390 goto badcode; 391 code = PRC_PARAMPROB; 392 goto deliver; 393 394 case ICMP_SOURCEQUENCH: 395 if (code) 396 goto badcode; 397 code = PRC_QUENCH; 398 deliver: 399 /* 400 * Problem with datagram; advise higher level routines. 401 */ 402 if (icmplen < ICMP_ADVLENMIN || icmplen < ICMP_ADVLEN(icp) || 403 icp->icmp_ip.ip_hl < (sizeof(struct ip) >> 2)) { 404 icmpstat.icps_badlen++; 405 goto freeit; 406 } 407 icp->icmp_ip.ip_len = ntohs(icp->icmp_ip.ip_len); 408 /* Discard ICMP's in response to multicast packets */ 409 if (IN_MULTICAST(ntohl(icp->icmp_ip.ip_dst.s_addr))) 410 goto badcode; 411 #ifdef ICMPPRINTFS 412 if (icmpprintfs) 413 printf("deliver to protocol %d\n", icp->icmp_ip.ip_p); 414 #endif 415 icmpsrc.sin_addr = icp->icmp_ip.ip_dst; 416 417 /* 418 * MTU discovery: 419 * If we got a needfrag and there is a host route to the 420 * original destination, and the MTU is not locked, then 421 * set the MTU in the route to the suggested new value 422 * (if given) and then notify as usual. The ULPs will 423 * notice that the MTU has changed and adapt accordingly. 424 * If no new MTU was suggested, then we guess a new one 425 * less than the current value. If the new MTU is 426 * unreasonably small (defined by sysctl tcp_minmss), then 427 * we don't update the MTU value. 428 * 429 * XXX: All this should be done in tcp_mtudisc() because 430 * the way we do it now, everyone can send us bogus ICMP 431 * MSGSIZE packets for any destination. By doing this far 432 * higher in the chain we have a matching tcp connection. 433 * Thus spoofing is much harder. However there is no easy 434 * non-hackish way to pass the new MTU up to tcp_mtudisc(). 435 * Also see next XXX regarding IPv4 AH TCP. 436 */ 437 if (code == PRC_MSGSIZE) { 438 int mtu; 439 struct in_conninfo inc; 440 441 bzero(&inc, sizeof(inc)); 442 inc.inc_flags = 0; /* IPv4 */ 443 inc.inc_faddr = icmpsrc.sin_addr; 444 445 mtu = ntohs(icp->icmp_nextmtu); 446 if (!mtu) 447 mtu = ip_next_mtu(mtu, 1); 448 449 if (mtu >= max(296, (tcp_minmss + 450 sizeof(struct tcpiphdr)))) 451 tcp_hc_updatemtu(&inc, mtu); 452 453 #ifdef DEBUG_MTUDISC 454 printf("MTU for %s reduced to %d\n", 455 inet_ntoa(icmpsrc.sin_addr), mtu); 456 #endif 457 } 458 459 /* 460 * XXX if the packet contains [IPv4 AH TCP], we can't make a 461 * notification to TCP layer. 462 */ 463 ctlfunc = inetsw[ip_protox[icp->icmp_ip.ip_p]].pr_ctlinput; 464 if (ctlfunc) 465 (*ctlfunc)(code, (struct sockaddr *)&icmpsrc, 466 (void *)&icp->icmp_ip); 467 break; 468 469 badcode: 470 icmpstat.icps_badcode++; 471 break; 472 473 case ICMP_ECHO: 474 if (!icmpbmcastecho 475 && (m->m_flags & (M_MCAST | M_BCAST)) != 0) { 476 icmpstat.icps_bmcastecho++; 477 break; 478 } 479 icp->icmp_type = ICMP_ECHOREPLY; 480 if (badport_bandlim(BANDLIM_ICMP_ECHO) < 0) 481 goto freeit; 482 else 483 goto reflect; 484 485 case ICMP_TSTAMP: 486 if (!icmpbmcastecho 487 && (m->m_flags & (M_MCAST | M_BCAST)) != 0) { 488 icmpstat.icps_bmcasttstamp++; 489 break; 490 } 491 if (icmplen < ICMP_TSLEN) { 492 icmpstat.icps_badlen++; 493 break; 494 } 495 icp->icmp_type = ICMP_TSTAMPREPLY; 496 icp->icmp_rtime = iptime(); 497 icp->icmp_ttime = icp->icmp_rtime; /* bogus, do later! */ 498 if (badport_bandlim(BANDLIM_ICMP_TSTAMP) < 0) 499 goto freeit; 500 else 501 goto reflect; 502 503 case ICMP_MASKREQ: 504 if (icmpmaskrepl == 0) 505 break; 506 /* 507 * We are not able to respond with all ones broadcast 508 * unless we receive it over a point-to-point interface. 509 */ 510 if (icmplen < ICMP_MASKLEN) 511 break; 512 switch (ip->ip_dst.s_addr) { 513 514 case INADDR_BROADCAST: 515 case INADDR_ANY: 516 icmpdst.sin_addr = ip->ip_src; 517 break; 518 519 default: 520 icmpdst.sin_addr = ip->ip_dst; 521 } 522 ia = (struct in_ifaddr *)ifaof_ifpforaddr( 523 (struct sockaddr *)&icmpdst, m->m_pkthdr.rcvif); 524 if (ia == 0) 525 break; 526 if (ia->ia_ifp == 0) 527 break; 528 icp->icmp_type = ICMP_MASKREPLY; 529 if (icmpmaskfake == 0) 530 icp->icmp_mask = ia->ia_sockmask.sin_addr.s_addr; 531 else 532 icp->icmp_mask = icmpmaskfake; 533 if (ip->ip_src.s_addr == 0) { 534 if (ia->ia_ifp->if_flags & IFF_BROADCAST) 535 ip->ip_src = satosin(&ia->ia_broadaddr)->sin_addr; 536 else if (ia->ia_ifp->if_flags & IFF_POINTOPOINT) 537 ip->ip_src = satosin(&ia->ia_dstaddr)->sin_addr; 538 } 539 reflect: 540 ip->ip_len += hlen; /* since ip_input deducts this */ 541 icmpstat.icps_reflect++; 542 icmpstat.icps_outhist[icp->icmp_type]++; 543 icmp_reflect(m); 544 return; 545 546 case ICMP_REDIRECT: 547 if (log_redirect) { 548 u_long src, dst, gw; 549 550 src = ntohl(ip->ip_src.s_addr); 551 dst = ntohl(icp->icmp_ip.ip_dst.s_addr); 552 gw = ntohl(icp->icmp_gwaddr.s_addr); 553 printf("icmp redirect from %d.%d.%d.%d: " 554 "%d.%d.%d.%d => %d.%d.%d.%d\n", 555 (int)(src >> 24), (int)((src >> 16) & 0xff), 556 (int)((src >> 8) & 0xff), (int)(src & 0xff), 557 (int)(dst >> 24), (int)((dst >> 16) & 0xff), 558 (int)((dst >> 8) & 0xff), (int)(dst & 0xff), 559 (int)(gw >> 24), (int)((gw >> 16) & 0xff), 560 (int)((gw >> 8) & 0xff), (int)(gw & 0xff)); 561 } 562 /* 563 * RFC1812 says we must ignore ICMP redirects if we 564 * are acting as router. 565 */ 566 if (drop_redirect || ipforwarding) 567 break; 568 if (code > 3) 569 goto badcode; 570 if (icmplen < ICMP_ADVLENMIN || icmplen < ICMP_ADVLEN(icp) || 571 icp->icmp_ip.ip_hl < (sizeof(struct ip) >> 2)) { 572 icmpstat.icps_badlen++; 573 break; 574 } 575 /* 576 * Short circuit routing redirects to force 577 * immediate change in the kernel's routing 578 * tables. The message is also handed to anyone 579 * listening on a raw socket (e.g. the routing 580 * daemon for use in updating its tables). 581 */ 582 icmpgw.sin_addr = ip->ip_src; 583 icmpdst.sin_addr = icp->icmp_gwaddr; 584 #ifdef ICMPPRINTFS 585 if (icmpprintfs) { 586 char buf[4 * sizeof "123"]; 587 strcpy(buf, inet_ntoa(icp->icmp_ip.ip_dst)); 588 589 printf("redirect dst %s to %s\n", 590 buf, inet_ntoa(icp->icmp_gwaddr)); 591 } 592 #endif 593 icmpsrc.sin_addr = icp->icmp_ip.ip_dst; 594 rtredirect((struct sockaddr *)&icmpsrc, 595 (struct sockaddr *)&icmpdst, 596 (struct sockaddr *)0, RTF_GATEWAY | RTF_HOST, 597 (struct sockaddr *)&icmpgw); 598 pfctlinput(PRC_REDIRECT_HOST, (struct sockaddr *)&icmpsrc); 599 #ifdef IPSEC 600 key_sa_routechange((struct sockaddr *)&icmpsrc); 601 #endif 602 break; 603 604 /* 605 * No kernel processing for the following; 606 * just fall through to send to raw listener. 607 */ 608 case ICMP_ECHOREPLY: 609 case ICMP_ROUTERADVERT: 610 case ICMP_ROUTERSOLICIT: 611 case ICMP_TSTAMPREPLY: 612 case ICMP_IREQREPLY: 613 case ICMP_MASKREPLY: 614 default: 615 break; 616 } 617 618 raw: 619 rip_input(m, off); 620 return; 621 622 freeit: 623 m_freem(m); 624 } 625 626 /* 627 * Reflect the ip packet back to the source 628 */ 629 static void 630 icmp_reflect(m) 631 struct mbuf *m; 632 { 633 struct ip *ip = mtod(m, struct ip *); 634 struct ifaddr *ifa; 635 struct ifnet *ifn; 636 struct in_ifaddr *ia; 637 struct in_addr t; 638 struct mbuf *opts = 0; 639 int optlen = (ip->ip_hl << 2) - sizeof(struct ip); 640 641 if (!in_canforward(ip->ip_src) && 642 ((ntohl(ip->ip_src.s_addr) & IN_CLASSA_NET) != 643 (IN_LOOPBACKNET << IN_CLASSA_NSHIFT))) { 644 m_freem(m); /* Bad return address */ 645 icmpstat.icps_badaddr++; 646 goto done; /* Ip_output() will check for broadcast */ 647 } 648 t = ip->ip_dst; 649 ip->ip_dst = ip->ip_src; 650 651 /* 652 * Source selection for ICMP replies: 653 * 654 * If the incoming packet was addressed directly to one of our 655 * own addresses, use dst as the src for the reply. 656 */ 657 LIST_FOREACH(ia, INADDR_HASH(t.s_addr), ia_hash) 658 if (t.s_addr == IA_SIN(ia)->sin_addr.s_addr) 659 goto match; 660 /* 661 * If the incoming packet was addressed to one of our broadcast 662 * addresses, use the first non-broadcast address which corresponds 663 * to the incoming interface. 664 */ 665 if (m->m_pkthdr.rcvif != NULL && 666 m->m_pkthdr.rcvif->if_flags & IFF_BROADCAST) { 667 TAILQ_FOREACH(ifa, &m->m_pkthdr.rcvif->if_addrhead, ifa_link) { 668 if (ifa->ifa_addr->sa_family != AF_INET) 669 continue; 670 ia = ifatoia(ifa); 671 if (satosin(&ia->ia_broadaddr)->sin_addr.s_addr == 672 t.s_addr) 673 goto match; 674 } 675 } 676 /* 677 * If the incoming packet was not addressed directly to us, use 678 * designated interface for icmp replies specified by sysctl 679 * net.inet.icmp.reply_src (default not set). Otherwise continue 680 * with normal source selection. 681 */ 682 if (reply_src[0] != '\0' && (ifn = ifunit(reply_src))) { 683 TAILQ_FOREACH(ifa, &ifn->if_addrhead, ifa_link) { 684 if (ifa->ifa_addr->sa_family != AF_INET) 685 continue; 686 ia = ifatoia(ifa); 687 goto match; 688 } 689 } 690 /* 691 * If the packet was transiting through us, use the address of 692 * the interface that is the closest to the packet source. 693 * When we don't have a route back to the packet source, stop here 694 * and drop the packet. 695 */ 696 ia = ip_rtaddr(ip->ip_dst); 697 if (ia == NULL) { 698 m_freem(m); 699 icmpstat.icps_noroute++; 700 goto done; 701 } 702 match: 703 #ifdef MAC 704 mac_reflect_mbuf_icmp(m); 705 #endif 706 t = IA_SIN(ia)->sin_addr; 707 ip->ip_src = t; 708 ip->ip_ttl = ip_defttl; 709 710 if (optlen > 0) { 711 register u_char *cp; 712 int opt, cnt; 713 u_int len; 714 715 /* 716 * Retrieve any source routing from the incoming packet; 717 * add on any record-route or timestamp options. 718 */ 719 cp = (u_char *) (ip + 1); 720 if ((opts = ip_srcroute()) == 0 && 721 (opts = m_gethdr(M_DONTWAIT, MT_HEADER))) { 722 opts->m_len = sizeof(struct in_addr); 723 mtod(opts, struct in_addr *)->s_addr = 0; 724 } 725 if (opts) { 726 #ifdef ICMPPRINTFS 727 if (icmpprintfs) 728 printf("icmp_reflect optlen %d rt %d => ", 729 optlen, opts->m_len); 730 #endif 731 for (cnt = optlen; cnt > 0; cnt -= len, cp += len) { 732 opt = cp[IPOPT_OPTVAL]; 733 if (opt == IPOPT_EOL) 734 break; 735 if (opt == IPOPT_NOP) 736 len = 1; 737 else { 738 if (cnt < IPOPT_OLEN + sizeof(*cp)) 739 break; 740 len = cp[IPOPT_OLEN]; 741 if (len < IPOPT_OLEN + sizeof(*cp) || 742 len > cnt) 743 break; 744 } 745 /* 746 * Should check for overflow, but it "can't happen" 747 */ 748 if (opt == IPOPT_RR || opt == IPOPT_TS || 749 opt == IPOPT_SECURITY) { 750 bcopy((caddr_t)cp, 751 mtod(opts, caddr_t) + opts->m_len, len); 752 opts->m_len += len; 753 } 754 } 755 /* Terminate & pad, if necessary */ 756 cnt = opts->m_len % 4; 757 if (cnt) { 758 for (; cnt < 4; cnt++) { 759 *(mtod(opts, caddr_t) + opts->m_len) = 760 IPOPT_EOL; 761 opts->m_len++; 762 } 763 } 764 #ifdef ICMPPRINTFS 765 if (icmpprintfs) 766 printf("%d\n", opts->m_len); 767 #endif 768 } 769 /* 770 * Now strip out original options by copying rest of first 771 * mbuf's data back, and adjust the IP length. 772 */ 773 ip->ip_len -= optlen; 774 ip->ip_v = IPVERSION; 775 ip->ip_hl = 5; 776 m->m_len -= optlen; 777 if (m->m_flags & M_PKTHDR) 778 m->m_pkthdr.len -= optlen; 779 optlen += sizeof(struct ip); 780 bcopy((caddr_t)ip + optlen, (caddr_t)(ip + 1), 781 (unsigned)(m->m_len - sizeof(struct ip))); 782 } 783 m_tag_delete_nonpersistent(m); 784 m->m_flags &= ~(M_BCAST|M_MCAST); 785 icmp_send(m, opts); 786 done: 787 if (opts) 788 (void)m_free(opts); 789 } 790 791 /* 792 * Send an icmp packet back to the ip level, 793 * after supplying a checksum. 794 */ 795 static void 796 icmp_send(m, opts) 797 register struct mbuf *m; 798 struct mbuf *opts; 799 { 800 register struct ip *ip = mtod(m, struct ip *); 801 register int hlen; 802 register struct icmp *icp; 803 804 hlen = ip->ip_hl << 2; 805 m->m_data += hlen; 806 m->m_len -= hlen; 807 icp = mtod(m, struct icmp *); 808 icp->icmp_cksum = 0; 809 icp->icmp_cksum = in_cksum(m, ip->ip_len - hlen); 810 m->m_data -= hlen; 811 m->m_len += hlen; 812 m->m_pkthdr.rcvif = (struct ifnet *)0; 813 #ifdef ICMPPRINTFS 814 if (icmpprintfs) { 815 char buf[4 * sizeof "123"]; 816 strcpy(buf, inet_ntoa(ip->ip_dst)); 817 printf("icmp_send dst %s src %s\n", 818 buf, inet_ntoa(ip->ip_src)); 819 } 820 #endif 821 (void) ip_output(m, opts, NULL, 0, NULL, NULL); 822 } 823 824 n_time 825 iptime() 826 { 827 struct timeval atv; 828 u_long t; 829 830 getmicrotime(&atv); 831 t = (atv.tv_sec % (24*60*60)) * 1000 + atv.tv_usec / 1000; 832 return (htonl(t)); 833 } 834 835 /* 836 * Return the next larger or smaller MTU plateau (table from RFC 1191) 837 * given current value MTU. If DIR is less than zero, a larger plateau 838 * is returned; otherwise, a smaller value is returned. 839 */ 840 static int 841 ip_next_mtu(mtu, dir) 842 int mtu; 843 int dir; 844 { 845 static int mtutab[] = { 846 65535, 32000, 17914, 8166, 4352, 2002, 1492, 1006, 508, 296, 847 68, 0 848 }; 849 int i; 850 851 for (i = 0; i < (sizeof mtutab) / (sizeof mtutab[0]); i++) { 852 if (mtu >= mtutab[i]) 853 break; 854 } 855 856 if (dir < 0) { 857 if (i == 0) { 858 return 0; 859 } else { 860 return mtutab[i - 1]; 861 } 862 } else { 863 if (mtutab[i] == 0) { 864 return 0; 865 } else if(mtu > mtutab[i]) { 866 return mtutab[i]; 867 } else { 868 return mtutab[i + 1]; 869 } 870 } 871 } 872 873 874 /* 875 * badport_bandlim() - check for ICMP bandwidth limit 876 * 877 * Return 0 if it is ok to send an ICMP error response, -1 if we have 878 * hit our bandwidth limit and it is not ok. 879 * 880 * If icmplim is <= 0, the feature is disabled and 0 is returned. 881 * 882 * For now we separate the TCP and UDP subsystems w/ different 'which' 883 * values. We may eventually remove this separation (and simplify the 884 * code further). 885 * 886 * Note that the printing of the error message is delayed so we can 887 * properly print the icmp error rate that the system was trying to do 888 * (i.e. 22000/100 pps, etc...). This can cause long delays in printing 889 * the 'final' error, but it doesn't make sense to solve the printing 890 * delay with more complex code. 891 */ 892 893 int 894 badport_bandlim(int which) 895 { 896 #define N(a) (sizeof (a) / sizeof (a[0])) 897 static struct rate { 898 const char *type; 899 struct timeval lasttime; 900 int curpps;; 901 } rates[BANDLIM_MAX+1] = { 902 { "icmp unreach response" }, 903 { "icmp ping response" }, 904 { "icmp tstamp response" }, 905 { "closed port RST response" }, 906 { "open port RST response" } 907 }; 908 909 /* 910 * Return ok status if feature disabled or argument out of range. 911 */ 912 if (icmplim > 0 && (u_int) which < N(rates)) { 913 struct rate *r = &rates[which]; 914 int opps = r->curpps; 915 916 if (!ppsratecheck(&r->lasttime, &r->curpps, icmplim)) 917 return -1; /* discard packet */ 918 /* 919 * If we've dropped below the threshold after having 920 * rate-limited traffic print the message. This preserves 921 * the previous behaviour at the expense of added complexity. 922 */ 923 if (icmplim_output && opps > icmplim) 924 printf("Limiting %s from %d to %d packets/sec\n", 925 r->type, opps, icmplim); 926 } 927 return 0; /* okay to send packet */ 928 #undef N 929 } 930