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 */ 31 32 #include <sys/cdefs.h> 33 __FBSDID("$FreeBSD$"); 34 35 #include "opt_inet.h" 36 #include "opt_ipsec.h" 37 38 #include <sys/param.h> 39 #include <sys/systm.h> 40 #include <sys/mbuf.h> 41 #include <sys/protosw.h> 42 #include <sys/socket.h> 43 #include <sys/time.h> 44 #include <sys/kernel.h> 45 #include <sys/sysctl.h> 46 #include <sys/syslog.h> 47 48 #include <net/if.h> 49 #include <net/if_var.h> 50 #include <net/if_types.h> 51 #include <net/route.h> 52 #include <net/vnet.h> 53 54 #include <netinet/in.h> 55 #include <netinet/in_pcb.h> 56 #include <netinet/in_systm.h> 57 #include <netinet/in_var.h> 58 #include <netinet/ip.h> 59 #include <netinet/ip_icmp.h> 60 #include <netinet/ip_var.h> 61 #include <netinet/ip_options.h> 62 #include <netinet/tcp.h> 63 #include <netinet/tcp_var.h> 64 #include <netinet/tcpip.h> 65 #include <netinet/icmp_var.h> 66 67 #ifdef INET 68 #ifdef IPSEC 69 #include <netipsec/ipsec.h> 70 #include <netipsec/key.h> 71 #endif 72 73 #include <machine/in_cksum.h> 74 75 #include <security/mac/mac_framework.h> 76 #endif /* INET */ 77 78 /* 79 * ICMP routines: error generation, receive packet processing, and 80 * routines to turnaround packets back to the originator, and 81 * host table maintenance routines. 82 */ 83 static VNET_DEFINE(int, icmplim) = 200; 84 #define V_icmplim VNET(icmplim) 85 SYSCTL_VNET_INT(_net_inet_icmp, ICMPCTL_ICMPLIM, icmplim, CTLFLAG_RW, 86 &VNET_NAME(icmplim), 0, 87 "Maximum number of ICMP responses per second"); 88 89 static VNET_DEFINE(int, icmplim_output) = 1; 90 #define V_icmplim_output VNET(icmplim_output) 91 SYSCTL_VNET_INT(_net_inet_icmp, OID_AUTO, icmplim_output, CTLFLAG_RW, 92 &VNET_NAME(icmplim_output), 0, 93 "Enable logging of ICMP response rate limiting"); 94 95 #ifdef INET 96 VNET_PCPUSTAT_DEFINE(struct icmpstat, icmpstat); 97 VNET_PCPUSTAT_SYSINIT(icmpstat); 98 SYSCTL_VNET_PCPUSTAT(_net_inet_icmp, ICMPCTL_STATS, stats, struct icmpstat, 99 icmpstat, "ICMP statistics (struct icmpstat, netinet/icmp_var.h)"); 100 101 #ifdef VIMAGE 102 VNET_PCPUSTAT_SYSUNINIT(icmpstat); 103 #endif /* VIMAGE */ 104 105 static VNET_DEFINE(int, icmpmaskrepl) = 0; 106 #define V_icmpmaskrepl VNET(icmpmaskrepl) 107 SYSCTL_VNET_INT(_net_inet_icmp, ICMPCTL_MASKREPL, maskrepl, CTLFLAG_RW, 108 &VNET_NAME(icmpmaskrepl), 0, 109 "Reply to ICMP Address Mask Request packets."); 110 111 static VNET_DEFINE(u_int, icmpmaskfake) = 0; 112 #define V_icmpmaskfake VNET(icmpmaskfake) 113 SYSCTL_VNET_UINT(_net_inet_icmp, OID_AUTO, maskfake, CTLFLAG_RW, 114 &VNET_NAME(icmpmaskfake), 0, 115 "Fake reply to ICMP Address Mask Request packets."); 116 117 VNET_DEFINE(int, drop_redirect) = 0; 118 119 static VNET_DEFINE(int, log_redirect) = 0; 120 #define V_log_redirect VNET(log_redirect) 121 SYSCTL_VNET_INT(_net_inet_icmp, OID_AUTO, log_redirect, CTLFLAG_RW, 122 &VNET_NAME(log_redirect), 0, 123 "Log ICMP redirects to the console"); 124 125 static VNET_DEFINE(char, reply_src[IFNAMSIZ]); 126 #define V_reply_src VNET(reply_src) 127 SYSCTL_VNET_STRING(_net_inet_icmp, OID_AUTO, reply_src, CTLFLAG_RW, 128 &VNET_NAME(reply_src), IFNAMSIZ, 129 "icmp reply source for non-local packets."); 130 131 static VNET_DEFINE(int, icmp_rfi) = 0; 132 #define V_icmp_rfi VNET(icmp_rfi) 133 SYSCTL_VNET_INT(_net_inet_icmp, OID_AUTO, reply_from_interface, CTLFLAG_RW, 134 &VNET_NAME(icmp_rfi), 0, 135 "ICMP reply from incoming interface for non-local packets"); 136 137 static VNET_DEFINE(int, icmp_quotelen) = 8; 138 #define V_icmp_quotelen VNET(icmp_quotelen) 139 SYSCTL_VNET_INT(_net_inet_icmp, OID_AUTO, quotelen, CTLFLAG_RW, 140 &VNET_NAME(icmp_quotelen), 0, 141 "Number of bytes from original packet to quote in ICMP reply"); 142 143 /* 144 * ICMP broadcast echo sysctl 145 */ 146 static VNET_DEFINE(int, icmpbmcastecho) = 0; 147 #define V_icmpbmcastecho VNET(icmpbmcastecho) 148 SYSCTL_VNET_INT(_net_inet_icmp, OID_AUTO, bmcastecho, CTLFLAG_RW, 149 &VNET_NAME(icmpbmcastecho), 0, 150 ""); 151 152 static VNET_DEFINE(int, icmptstamprepl) = 1; 153 #define V_icmptstamprepl VNET(icmptstamprepl) 154 SYSCTL_INT(_net_inet_icmp, OID_AUTO, tstamprepl, CTLFLAG_RW, 155 &VNET_NAME(icmptstamprepl), 0, "Respond to ICMP Timestamp packets"); 156 157 #ifdef ICMPPRINTFS 158 int icmpprintfs = 0; 159 #endif 160 161 static void icmp_reflect(struct mbuf *); 162 static void icmp_send(struct mbuf *, struct mbuf *); 163 164 extern struct protosw inetsw[]; 165 166 static int 167 sysctl_net_icmp_drop_redir(SYSCTL_HANDLER_ARGS) 168 { 169 int error, new; 170 int i; 171 struct radix_node_head *rnh; 172 173 new = V_drop_redirect; 174 error = sysctl_handle_int(oidp, &new, 0, req); 175 if (error == 0 && req->newptr) { 176 new = (new != 0) ? 1 : 0; 177 178 if (new == V_drop_redirect) 179 return (0); 180 181 for (i = 0; i < rt_numfibs; i++) { 182 if ((rnh = rt_tables_get_rnh(i, AF_INET)) == NULL) 183 continue; 184 RADIX_NODE_HEAD_LOCK(rnh); 185 in_setmatchfunc(rnh, new); 186 RADIX_NODE_HEAD_UNLOCK(rnh); 187 } 188 189 V_drop_redirect = new; 190 } 191 192 return (error); 193 } 194 195 SYSCTL_VNET_PROC(_net_inet_icmp, OID_AUTO, drop_redirect, 196 CTLTYPE_INT|CTLFLAG_RW, 0, 0, 197 sysctl_net_icmp_drop_redir, "I", "Ignore ICMP redirects"); 198 199 /* 200 * Kernel module interface for updating icmpstat. The argument is an index 201 * into icmpstat treated as an array of u_long. While this encodes the 202 * general layout of icmpstat into the caller, it doesn't encode its 203 * location, so that future changes to add, for example, per-CPU stats 204 * support won't cause binary compatibility problems for kernel modules. 205 */ 206 void 207 kmod_icmpstat_inc(int statnum) 208 { 209 210 counter_u64_add(VNET(icmpstat)[statnum], 1); 211 } 212 213 /* 214 * Generate an error packet of type error 215 * in response to bad packet ip. 216 */ 217 void 218 icmp_error(struct mbuf *n, int type, int code, uint32_t dest, int mtu) 219 { 220 register struct ip *oip = mtod(n, struct ip *), *nip; 221 register unsigned oiphlen = oip->ip_hl << 2; 222 register struct icmp *icp; 223 register struct mbuf *m; 224 unsigned icmplen, icmpelen, nlen; 225 226 KASSERT((u_int)type <= ICMP_MAXTYPE, ("%s: illegal ICMP type", __func__)); 227 #ifdef ICMPPRINTFS 228 if (icmpprintfs) 229 printf("icmp_error(%p, %x, %d)\n", oip, type, code); 230 #endif 231 if (type != ICMP_REDIRECT) 232 ICMPSTAT_INC(icps_error); 233 /* 234 * Don't send error: 235 * if the original packet was encrypted. 236 * if not the first fragment of message. 237 * in response to a multicast or broadcast packet. 238 * if the old packet protocol was an ICMP error message. 239 */ 240 if (n->m_flags & M_DECRYPTED) 241 goto freeit; 242 if (oip->ip_off & htons(~(IP_MF|IP_DF))) 243 goto freeit; 244 if (n->m_flags & (M_BCAST|M_MCAST)) 245 goto freeit; 246 if (oip->ip_p == IPPROTO_ICMP && type != ICMP_REDIRECT && 247 n->m_len >= oiphlen + ICMP_MINLEN && 248 !ICMP_INFOTYPE(((struct icmp *)((caddr_t)oip + oiphlen))->icmp_type)) { 249 ICMPSTAT_INC(icps_oldicmp); 250 goto freeit; 251 } 252 /* Drop if IP header plus 8 bytes is not contignous in first mbuf. */ 253 if (oiphlen + 8 > n->m_len) 254 goto freeit; 255 /* 256 * Calculate length to quote from original packet and 257 * prevent the ICMP mbuf from overflowing. 258 * Unfortunatly this is non-trivial since ip_forward() 259 * sends us truncated packets. 260 */ 261 nlen = m_length(n, NULL); 262 if (oip->ip_p == IPPROTO_TCP) { 263 struct tcphdr *th; 264 int tcphlen; 265 266 if (oiphlen + sizeof(struct tcphdr) > n->m_len && 267 n->m_next == NULL) 268 goto stdreply; 269 if (n->m_len < oiphlen + sizeof(struct tcphdr) && 270 ((n = m_pullup(n, oiphlen + sizeof(struct tcphdr))) == NULL)) 271 goto freeit; 272 th = (struct tcphdr *)((caddr_t)oip + oiphlen); 273 tcphlen = th->th_off << 2; 274 if (tcphlen < sizeof(struct tcphdr)) 275 goto freeit; 276 if (ntohs(oip->ip_len) < oiphlen + tcphlen) 277 goto freeit; 278 if (oiphlen + tcphlen > n->m_len && n->m_next == NULL) 279 goto stdreply; 280 if (n->m_len < oiphlen + tcphlen && 281 ((n = m_pullup(n, oiphlen + tcphlen)) == NULL)) 282 goto freeit; 283 icmpelen = max(tcphlen, min(V_icmp_quotelen, 284 ntohs(oip->ip_len) - oiphlen)); 285 } else 286 stdreply: icmpelen = max(8, min(V_icmp_quotelen, ntohs(oip->ip_len) - oiphlen)); 287 288 icmplen = min(oiphlen + icmpelen, nlen); 289 if (icmplen < sizeof(struct ip)) 290 goto freeit; 291 292 if (MHLEN > sizeof(struct ip) + ICMP_MINLEN + icmplen) 293 m = m_gethdr(M_NOWAIT, MT_DATA); 294 else 295 m = m_getcl(M_NOWAIT, MT_DATA, M_PKTHDR); 296 if (m == NULL) 297 goto freeit; 298 #ifdef MAC 299 mac_netinet_icmp_reply(n, m); 300 #endif 301 icmplen = min(icmplen, M_TRAILINGSPACE(m) - sizeof(struct ip) - ICMP_MINLEN); 302 m_align(m, ICMP_MINLEN + icmplen); 303 m->m_len = ICMP_MINLEN + icmplen; 304 305 /* XXX MRT make the outgoing packet use the same FIB 306 * that was associated with the incoming packet 307 */ 308 M_SETFIB(m, M_GETFIB(n)); 309 icp = mtod(m, struct icmp *); 310 ICMPSTAT_INC(icps_outhist[type]); 311 icp->icmp_type = type; 312 if (type == ICMP_REDIRECT) 313 icp->icmp_gwaddr.s_addr = dest; 314 else { 315 icp->icmp_void = 0; 316 /* 317 * The following assignments assume an overlay with the 318 * just zeroed icmp_void field. 319 */ 320 if (type == ICMP_PARAMPROB) { 321 icp->icmp_pptr = code; 322 code = 0; 323 } else if (type == ICMP_UNREACH && 324 code == ICMP_UNREACH_NEEDFRAG && mtu) { 325 icp->icmp_nextmtu = htons(mtu); 326 } 327 } 328 icp->icmp_code = code; 329 330 /* 331 * Copy the quotation into ICMP message and 332 * convert quoted IP header back to network representation. 333 */ 334 m_copydata(n, 0, icmplen, (caddr_t)&icp->icmp_ip); 335 nip = &icp->icmp_ip; 336 337 /* 338 * Set up ICMP message mbuf and copy old IP header (without options 339 * in front of ICMP message. 340 * If the original mbuf was meant to bypass the firewall, the error 341 * reply should bypass as well. 342 */ 343 m->m_flags |= n->m_flags & M_SKIP_FIREWALL; 344 m->m_data -= sizeof(struct ip); 345 m->m_len += sizeof(struct ip); 346 m->m_pkthdr.len = m->m_len; 347 m->m_pkthdr.rcvif = n->m_pkthdr.rcvif; 348 nip = mtod(m, struct ip *); 349 bcopy((caddr_t)oip, (caddr_t)nip, sizeof(struct ip)); 350 nip->ip_len = htons(m->m_len); 351 nip->ip_v = IPVERSION; 352 nip->ip_hl = 5; 353 nip->ip_p = IPPROTO_ICMP; 354 nip->ip_tos = 0; 355 nip->ip_off = 0; 356 icmp_reflect(m); 357 358 freeit: 359 m_freem(n); 360 } 361 362 /* 363 * Process a received ICMP message. 364 */ 365 int 366 icmp_input(struct mbuf **mp, int *offp, int proto) 367 { 368 struct icmp *icp; 369 struct in_ifaddr *ia; 370 struct mbuf *m = *mp; 371 struct ip *ip = mtod(m, struct ip *); 372 struct sockaddr_in icmpsrc, icmpdst, icmpgw; 373 int hlen = *offp; 374 int icmplen = ntohs(ip->ip_len) - *offp; 375 int i, code; 376 void (*ctlfunc)(int, struct sockaddr *, void *); 377 int fibnum; 378 379 *mp = NULL; 380 381 /* 382 * Locate icmp structure in mbuf, and check 383 * that not corrupted and of at least minimum length. 384 */ 385 #ifdef ICMPPRINTFS 386 if (icmpprintfs) { 387 char buf[4 * sizeof "123"]; 388 strcpy(buf, inet_ntoa(ip->ip_src)); 389 printf("icmp_input from %s to %s, len %d\n", 390 buf, inet_ntoa(ip->ip_dst), icmplen); 391 } 392 #endif 393 if (icmplen < ICMP_MINLEN) { 394 ICMPSTAT_INC(icps_tooshort); 395 goto freeit; 396 } 397 i = hlen + min(icmplen, ICMP_ADVLENMIN); 398 if (m->m_len < i && (m = m_pullup(m, i)) == NULL) { 399 ICMPSTAT_INC(icps_tooshort); 400 return (IPPROTO_DONE); 401 } 402 ip = mtod(m, struct ip *); 403 m->m_len -= hlen; 404 m->m_data += hlen; 405 icp = mtod(m, struct icmp *); 406 if (in_cksum(m, icmplen)) { 407 ICMPSTAT_INC(icps_checksum); 408 goto freeit; 409 } 410 m->m_len += hlen; 411 m->m_data -= hlen; 412 413 if (m->m_pkthdr.rcvif && m->m_pkthdr.rcvif->if_type == IFT_FAITH) { 414 /* 415 * Deliver very specific ICMP type only. 416 */ 417 switch (icp->icmp_type) { 418 case ICMP_UNREACH: 419 case ICMP_TIMXCEED: 420 break; 421 default: 422 goto freeit; 423 } 424 } 425 426 #ifdef ICMPPRINTFS 427 if (icmpprintfs) 428 printf("icmp_input, type %d code %d\n", icp->icmp_type, 429 icp->icmp_code); 430 #endif 431 432 /* 433 * Message type specific processing. 434 */ 435 if (icp->icmp_type > ICMP_MAXTYPE) 436 goto raw; 437 438 /* Initialize */ 439 bzero(&icmpsrc, sizeof(icmpsrc)); 440 icmpsrc.sin_len = sizeof(struct sockaddr_in); 441 icmpsrc.sin_family = AF_INET; 442 bzero(&icmpdst, sizeof(icmpdst)); 443 icmpdst.sin_len = sizeof(struct sockaddr_in); 444 icmpdst.sin_family = AF_INET; 445 bzero(&icmpgw, sizeof(icmpgw)); 446 icmpgw.sin_len = sizeof(struct sockaddr_in); 447 icmpgw.sin_family = AF_INET; 448 449 ICMPSTAT_INC(icps_inhist[icp->icmp_type]); 450 code = icp->icmp_code; 451 switch (icp->icmp_type) { 452 453 case ICMP_UNREACH: 454 switch (code) { 455 case ICMP_UNREACH_NET: 456 case ICMP_UNREACH_HOST: 457 case ICMP_UNREACH_SRCFAIL: 458 case ICMP_UNREACH_NET_UNKNOWN: 459 case ICMP_UNREACH_HOST_UNKNOWN: 460 case ICMP_UNREACH_ISOLATED: 461 case ICMP_UNREACH_TOSNET: 462 case ICMP_UNREACH_TOSHOST: 463 case ICMP_UNREACH_HOST_PRECEDENCE: 464 case ICMP_UNREACH_PRECEDENCE_CUTOFF: 465 code = PRC_UNREACH_NET; 466 break; 467 468 case ICMP_UNREACH_NEEDFRAG: 469 code = PRC_MSGSIZE; 470 break; 471 472 /* 473 * RFC 1122, Sections 3.2.2.1 and 4.2.3.9. 474 * Treat subcodes 2,3 as immediate RST 475 */ 476 case ICMP_UNREACH_PROTOCOL: 477 case ICMP_UNREACH_PORT: 478 code = PRC_UNREACH_PORT; 479 break; 480 481 case ICMP_UNREACH_NET_PROHIB: 482 case ICMP_UNREACH_HOST_PROHIB: 483 case ICMP_UNREACH_FILTER_PROHIB: 484 code = PRC_UNREACH_ADMIN_PROHIB; 485 break; 486 487 default: 488 goto badcode; 489 } 490 goto deliver; 491 492 case ICMP_TIMXCEED: 493 if (code > 1) 494 goto badcode; 495 code += PRC_TIMXCEED_INTRANS; 496 goto deliver; 497 498 case ICMP_PARAMPROB: 499 if (code > 1) 500 goto badcode; 501 code = PRC_PARAMPROB; 502 goto deliver; 503 504 case ICMP_SOURCEQUENCH: 505 if (code) 506 goto badcode; 507 code = PRC_QUENCH; 508 deliver: 509 /* 510 * Problem with datagram; advise higher level routines. 511 */ 512 if (icmplen < ICMP_ADVLENMIN || icmplen < ICMP_ADVLEN(icp) || 513 icp->icmp_ip.ip_hl < (sizeof(struct ip) >> 2)) { 514 ICMPSTAT_INC(icps_badlen); 515 goto freeit; 516 } 517 /* Discard ICMP's in response to multicast packets */ 518 if (IN_MULTICAST(ntohl(icp->icmp_ip.ip_dst.s_addr))) 519 goto badcode; 520 #ifdef ICMPPRINTFS 521 if (icmpprintfs) 522 printf("deliver to protocol %d\n", icp->icmp_ip.ip_p); 523 #endif 524 icmpsrc.sin_addr = icp->icmp_ip.ip_dst; 525 /* 526 * XXX if the packet contains [IPv4 AH TCP], we can't make a 527 * notification to TCP layer. 528 */ 529 ctlfunc = inetsw[ip_protox[icp->icmp_ip.ip_p]].pr_ctlinput; 530 if (ctlfunc) 531 (*ctlfunc)(code, (struct sockaddr *)&icmpsrc, 532 (void *)&icp->icmp_ip); 533 break; 534 535 badcode: 536 ICMPSTAT_INC(icps_badcode); 537 break; 538 539 case ICMP_ECHO: 540 if (!V_icmpbmcastecho 541 && (m->m_flags & (M_MCAST | M_BCAST)) != 0) { 542 ICMPSTAT_INC(icps_bmcastecho); 543 break; 544 } 545 icp->icmp_type = ICMP_ECHOREPLY; 546 if (badport_bandlim(BANDLIM_ICMP_ECHO) < 0) 547 goto freeit; 548 else 549 goto reflect; 550 551 case ICMP_TSTAMP: 552 if (V_icmptstamprepl == 0) 553 break; 554 if (!V_icmpbmcastecho 555 && (m->m_flags & (M_MCAST | M_BCAST)) != 0) { 556 ICMPSTAT_INC(icps_bmcasttstamp); 557 break; 558 } 559 if (icmplen < ICMP_TSLEN) { 560 ICMPSTAT_INC(icps_badlen); 561 break; 562 } 563 icp->icmp_type = ICMP_TSTAMPREPLY; 564 icp->icmp_rtime = iptime(); 565 icp->icmp_ttime = icp->icmp_rtime; /* bogus, do later! */ 566 if (badport_bandlim(BANDLIM_ICMP_TSTAMP) < 0) 567 goto freeit; 568 else 569 goto reflect; 570 571 case ICMP_MASKREQ: 572 if (V_icmpmaskrepl == 0) 573 break; 574 /* 575 * We are not able to respond with all ones broadcast 576 * unless we receive it over a point-to-point interface. 577 */ 578 if (icmplen < ICMP_MASKLEN) 579 break; 580 switch (ip->ip_dst.s_addr) { 581 582 case INADDR_BROADCAST: 583 case INADDR_ANY: 584 icmpdst.sin_addr = ip->ip_src; 585 break; 586 587 default: 588 icmpdst.sin_addr = ip->ip_dst; 589 } 590 ia = (struct in_ifaddr *)ifaof_ifpforaddr( 591 (struct sockaddr *)&icmpdst, m->m_pkthdr.rcvif); 592 if (ia == NULL) 593 break; 594 if (ia->ia_ifp == NULL) { 595 ifa_free(&ia->ia_ifa); 596 break; 597 } 598 icp->icmp_type = ICMP_MASKREPLY; 599 if (V_icmpmaskfake == 0) 600 icp->icmp_mask = ia->ia_sockmask.sin_addr.s_addr; 601 else 602 icp->icmp_mask = V_icmpmaskfake; 603 if (ip->ip_src.s_addr == 0) { 604 if (ia->ia_ifp->if_flags & IFF_BROADCAST) 605 ip->ip_src = satosin(&ia->ia_broadaddr)->sin_addr; 606 else if (ia->ia_ifp->if_flags & IFF_POINTOPOINT) 607 ip->ip_src = satosin(&ia->ia_dstaddr)->sin_addr; 608 } 609 ifa_free(&ia->ia_ifa); 610 reflect: 611 ICMPSTAT_INC(icps_reflect); 612 ICMPSTAT_INC(icps_outhist[icp->icmp_type]); 613 icmp_reflect(m); 614 return (IPPROTO_DONE); 615 616 case ICMP_REDIRECT: 617 if (V_log_redirect) { 618 u_long src, dst, gw; 619 620 src = ntohl(ip->ip_src.s_addr); 621 dst = ntohl(icp->icmp_ip.ip_dst.s_addr); 622 gw = ntohl(icp->icmp_gwaddr.s_addr); 623 printf("icmp redirect from %d.%d.%d.%d: " 624 "%d.%d.%d.%d => %d.%d.%d.%d\n", 625 (int)(src >> 24), (int)((src >> 16) & 0xff), 626 (int)((src >> 8) & 0xff), (int)(src & 0xff), 627 (int)(dst >> 24), (int)((dst >> 16) & 0xff), 628 (int)((dst >> 8) & 0xff), (int)(dst & 0xff), 629 (int)(gw >> 24), (int)((gw >> 16) & 0xff), 630 (int)((gw >> 8) & 0xff), (int)(gw & 0xff)); 631 } 632 /* 633 * RFC1812 says we must ignore ICMP redirects if we 634 * are acting as router. 635 */ 636 if (V_drop_redirect || V_ipforwarding) 637 break; 638 if (code > 3) 639 goto badcode; 640 if (icmplen < ICMP_ADVLENMIN || icmplen < ICMP_ADVLEN(icp) || 641 icp->icmp_ip.ip_hl < (sizeof(struct ip) >> 2)) { 642 ICMPSTAT_INC(icps_badlen); 643 break; 644 } 645 /* 646 * Short circuit routing redirects to force 647 * immediate change in the kernel's routing 648 * tables. The message is also handed to anyone 649 * listening on a raw socket (e.g. the routing 650 * daemon for use in updating its tables). 651 */ 652 icmpgw.sin_addr = ip->ip_src; 653 icmpdst.sin_addr = icp->icmp_gwaddr; 654 #ifdef ICMPPRINTFS 655 if (icmpprintfs) { 656 char buf[4 * sizeof "123"]; 657 strcpy(buf, inet_ntoa(icp->icmp_ip.ip_dst)); 658 659 printf("redirect dst %s to %s\n", 660 buf, inet_ntoa(icp->icmp_gwaddr)); 661 } 662 #endif 663 icmpsrc.sin_addr = icp->icmp_ip.ip_dst; 664 for ( fibnum = 0; fibnum < rt_numfibs; fibnum++) { 665 in_rtredirect((struct sockaddr *)&icmpsrc, 666 (struct sockaddr *)&icmpdst, 667 (struct sockaddr *)0, RTF_GATEWAY | RTF_HOST, 668 (struct sockaddr *)&icmpgw, fibnum); 669 } 670 pfctlinput(PRC_REDIRECT_HOST, (struct sockaddr *)&icmpsrc); 671 #ifdef IPSEC 672 key_sa_routechange((struct sockaddr *)&icmpsrc); 673 #endif 674 break; 675 676 /* 677 * No kernel processing for the following; 678 * just fall through to send to raw listener. 679 */ 680 case ICMP_ECHOREPLY: 681 case ICMP_ROUTERADVERT: 682 case ICMP_ROUTERSOLICIT: 683 case ICMP_TSTAMPREPLY: 684 case ICMP_IREQREPLY: 685 case ICMP_MASKREPLY: 686 default: 687 break; 688 } 689 690 raw: 691 *mp = m; 692 rip_input(mp, offp, proto); 693 return (IPPROTO_DONE); 694 695 freeit: 696 m_freem(m); 697 return (IPPROTO_DONE); 698 } 699 700 /* 701 * Reflect the ip packet back to the source 702 */ 703 static void 704 icmp_reflect(struct mbuf *m) 705 { 706 struct ip *ip = mtod(m, struct ip *); 707 struct ifaddr *ifa; 708 struct ifnet *ifp; 709 struct in_ifaddr *ia; 710 struct in_addr t; 711 struct mbuf *opts = 0; 712 int optlen = (ip->ip_hl << 2) - sizeof(struct ip); 713 714 if (IN_MULTICAST(ntohl(ip->ip_src.s_addr)) || 715 IN_EXPERIMENTAL(ntohl(ip->ip_src.s_addr)) || 716 IN_ZERONET(ntohl(ip->ip_src.s_addr)) ) { 717 m_freem(m); /* Bad return address */ 718 ICMPSTAT_INC(icps_badaddr); 719 goto done; /* Ip_output() will check for broadcast */ 720 } 721 722 t = ip->ip_dst; 723 ip->ip_dst = ip->ip_src; 724 725 /* 726 * Source selection for ICMP replies: 727 * 728 * If the incoming packet was addressed directly to one of our 729 * own addresses, use dst as the src for the reply. 730 */ 731 IN_IFADDR_RLOCK(); 732 LIST_FOREACH(ia, INADDR_HASH(t.s_addr), ia_hash) { 733 if (t.s_addr == IA_SIN(ia)->sin_addr.s_addr) { 734 t = IA_SIN(ia)->sin_addr; 735 IN_IFADDR_RUNLOCK(); 736 goto match; 737 } 738 } 739 IN_IFADDR_RUNLOCK(); 740 741 /* 742 * If the incoming packet was addressed to one of our broadcast 743 * addresses, use the first non-broadcast address which corresponds 744 * to the incoming interface. 745 */ 746 ifp = m->m_pkthdr.rcvif; 747 if (ifp != NULL && ifp->if_flags & IFF_BROADCAST) { 748 IF_ADDR_RLOCK(ifp); 749 TAILQ_FOREACH(ifa, &ifp->if_addrhead, ifa_link) { 750 if (ifa->ifa_addr->sa_family != AF_INET) 751 continue; 752 ia = ifatoia(ifa); 753 if (satosin(&ia->ia_broadaddr)->sin_addr.s_addr == 754 t.s_addr) { 755 t = IA_SIN(ia)->sin_addr; 756 IF_ADDR_RUNLOCK(ifp); 757 goto match; 758 } 759 } 760 IF_ADDR_RUNLOCK(ifp); 761 } 762 /* 763 * If the packet was transiting through us, use the address of 764 * the interface the packet came through in. If that interface 765 * doesn't have a suitable IP address, the normal selection 766 * criteria apply. 767 */ 768 if (V_icmp_rfi && ifp != NULL) { 769 IF_ADDR_RLOCK(ifp); 770 TAILQ_FOREACH(ifa, &ifp->if_addrhead, ifa_link) { 771 if (ifa->ifa_addr->sa_family != AF_INET) 772 continue; 773 ia = ifatoia(ifa); 774 t = IA_SIN(ia)->sin_addr; 775 IF_ADDR_RUNLOCK(ifp); 776 goto match; 777 } 778 IF_ADDR_RUNLOCK(ifp); 779 } 780 /* 781 * If the incoming packet was not addressed directly to us, use 782 * designated interface for icmp replies specified by sysctl 783 * net.inet.icmp.reply_src (default not set). Otherwise continue 784 * with normal source selection. 785 */ 786 if (V_reply_src[0] != '\0' && (ifp = ifunit(V_reply_src))) { 787 IF_ADDR_RLOCK(ifp); 788 TAILQ_FOREACH(ifa, &ifp->if_addrhead, ifa_link) { 789 if (ifa->ifa_addr->sa_family != AF_INET) 790 continue; 791 ia = ifatoia(ifa); 792 t = IA_SIN(ia)->sin_addr; 793 IF_ADDR_RUNLOCK(ifp); 794 goto match; 795 } 796 IF_ADDR_RUNLOCK(ifp); 797 } 798 /* 799 * If the packet was transiting through us, use the address of 800 * the interface that is the closest to the packet source. 801 * When we don't have a route back to the packet source, stop here 802 * and drop the packet. 803 */ 804 ia = ip_rtaddr(ip->ip_dst, M_GETFIB(m)); 805 if (ia == NULL) { 806 m_freem(m); 807 ICMPSTAT_INC(icps_noroute); 808 goto done; 809 } 810 t = IA_SIN(ia)->sin_addr; 811 ifa_free(&ia->ia_ifa); 812 match: 813 #ifdef MAC 814 mac_netinet_icmp_replyinplace(m); 815 #endif 816 ip->ip_src = t; 817 ip->ip_ttl = V_ip_defttl; 818 819 if (optlen > 0) { 820 register u_char *cp; 821 int opt, cnt; 822 u_int len; 823 824 /* 825 * Retrieve any source routing from the incoming packet; 826 * add on any record-route or timestamp options. 827 */ 828 cp = (u_char *) (ip + 1); 829 if ((opts = ip_srcroute(m)) == 0 && 830 (opts = m_gethdr(M_NOWAIT, MT_DATA))) { 831 opts->m_len = sizeof(struct in_addr); 832 mtod(opts, struct in_addr *)->s_addr = 0; 833 } 834 if (opts) { 835 #ifdef ICMPPRINTFS 836 if (icmpprintfs) 837 printf("icmp_reflect optlen %d rt %d => ", 838 optlen, opts->m_len); 839 #endif 840 for (cnt = optlen; cnt > 0; cnt -= len, cp += len) { 841 opt = cp[IPOPT_OPTVAL]; 842 if (opt == IPOPT_EOL) 843 break; 844 if (opt == IPOPT_NOP) 845 len = 1; 846 else { 847 if (cnt < IPOPT_OLEN + sizeof(*cp)) 848 break; 849 len = cp[IPOPT_OLEN]; 850 if (len < IPOPT_OLEN + sizeof(*cp) || 851 len > cnt) 852 break; 853 } 854 /* 855 * Should check for overflow, but it "can't happen" 856 */ 857 if (opt == IPOPT_RR || opt == IPOPT_TS || 858 opt == IPOPT_SECURITY) { 859 bcopy((caddr_t)cp, 860 mtod(opts, caddr_t) + opts->m_len, len); 861 opts->m_len += len; 862 } 863 } 864 /* Terminate & pad, if necessary */ 865 cnt = opts->m_len % 4; 866 if (cnt) { 867 for (; cnt < 4; cnt++) { 868 *(mtod(opts, caddr_t) + opts->m_len) = 869 IPOPT_EOL; 870 opts->m_len++; 871 } 872 } 873 #ifdef ICMPPRINTFS 874 if (icmpprintfs) 875 printf("%d\n", opts->m_len); 876 #endif 877 } 878 ip_stripoptions(m); 879 } 880 m_tag_delete_nonpersistent(m); 881 m->m_flags &= ~(M_BCAST|M_MCAST); 882 icmp_send(m, opts); 883 done: 884 if (opts) 885 (void)m_free(opts); 886 } 887 888 /* 889 * Send an icmp packet back to the ip level, 890 * after supplying a checksum. 891 */ 892 static void 893 icmp_send(struct mbuf *m, struct mbuf *opts) 894 { 895 register struct ip *ip = mtod(m, struct ip *); 896 register int hlen; 897 register struct icmp *icp; 898 899 hlen = ip->ip_hl << 2; 900 m->m_data += hlen; 901 m->m_len -= hlen; 902 icp = mtod(m, struct icmp *); 903 icp->icmp_cksum = 0; 904 icp->icmp_cksum = in_cksum(m, ntohs(ip->ip_len) - hlen); 905 m->m_data -= hlen; 906 m->m_len += hlen; 907 m->m_pkthdr.rcvif = (struct ifnet *)0; 908 #ifdef ICMPPRINTFS 909 if (icmpprintfs) { 910 char buf[4 * sizeof "123"]; 911 strcpy(buf, inet_ntoa(ip->ip_dst)); 912 printf("icmp_send dst %s src %s\n", 913 buf, inet_ntoa(ip->ip_src)); 914 } 915 #endif 916 (void) ip_output(m, opts, NULL, 0, NULL, NULL); 917 } 918 919 /* 920 * Return milliseconds since 00:00 GMT in network format. 921 */ 922 uint32_t 923 iptime(void) 924 { 925 struct timeval atv; 926 u_long t; 927 928 getmicrotime(&atv); 929 t = (atv.tv_sec % (24*60*60)) * 1000 + atv.tv_usec / 1000; 930 return (htonl(t)); 931 } 932 933 /* 934 * Return the next larger or smaller MTU plateau (table from RFC 1191) 935 * given current value MTU. If DIR is less than zero, a larger plateau 936 * is returned; otherwise, a smaller value is returned. 937 */ 938 int 939 ip_next_mtu(int mtu, int dir) 940 { 941 static int mtutab[] = { 942 65535, 32000, 17914, 8166, 4352, 2002, 1492, 1280, 1006, 508, 943 296, 68, 0 944 }; 945 int i, size; 946 947 size = (sizeof mtutab) / (sizeof mtutab[0]); 948 if (dir >= 0) { 949 for (i = 0; i < size; i++) 950 if (mtu > mtutab[i]) 951 return mtutab[i]; 952 } else { 953 for (i = size - 1; i >= 0; i--) 954 if (mtu < mtutab[i]) 955 return mtutab[i]; 956 if (mtu == mtutab[0]) 957 return mtutab[0]; 958 } 959 return 0; 960 } 961 #endif /* INET */ 962 963 964 /* 965 * badport_bandlim() - check for ICMP bandwidth limit 966 * 967 * Return 0 if it is ok to send an ICMP error response, -1 if we have 968 * hit our bandwidth limit and it is not ok. 969 * 970 * If icmplim is <= 0, the feature is disabled and 0 is returned. 971 * 972 * For now we separate the TCP and UDP subsystems w/ different 'which' 973 * values. We may eventually remove this separation (and simplify the 974 * code further). 975 * 976 * Note that the printing of the error message is delayed so we can 977 * properly print the icmp error rate that the system was trying to do 978 * (i.e. 22000/100 pps, etc...). This can cause long delays in printing 979 * the 'final' error, but it doesn't make sense to solve the printing 980 * delay with more complex code. 981 */ 982 983 int 984 badport_bandlim(int which) 985 { 986 987 #define N(a) (sizeof (a) / sizeof (a[0])) 988 static struct rate { 989 const char *type; 990 struct timeval lasttime; 991 int curpps; 992 } rates[BANDLIM_MAX+1] = { 993 { "icmp unreach response" }, 994 { "icmp ping response" }, 995 { "icmp tstamp response" }, 996 { "closed port RST response" }, 997 { "open port RST response" }, 998 { "icmp6 unreach response" }, 999 { "sctp ootb response" } 1000 }; 1001 1002 /* 1003 * Return ok status if feature disabled or argument out of range. 1004 */ 1005 if (V_icmplim > 0 && (u_int) which < N(rates)) { 1006 struct rate *r = &rates[which]; 1007 int opps = r->curpps; 1008 1009 if (!ppsratecheck(&r->lasttime, &r->curpps, V_icmplim)) 1010 return -1; /* discard packet */ 1011 /* 1012 * If we've dropped below the threshold after having 1013 * rate-limited traffic print the message. This preserves 1014 * the previous behaviour at the expense of added complexity. 1015 */ 1016 if (V_icmplim_output && opps > V_icmplim) 1017 log(LOG_NOTICE, "Limiting %s from %d to %d packets/sec\n", 1018 r->type, opps, V_icmplim); 1019 } 1020 return 0; /* okay to send packet */ 1021 #undef N 1022 } 1023