1 /*- 2 * Copyright (c) 1982, 1986, 1988, 1990, 1993, 1995 3 * The Regents of the University of California. 4 * All rights reserved. 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions 8 * are met: 9 * 1. Redistributions of source code must retain the above copyright 10 * notice, this list of conditions and the following disclaimer. 11 * 2. Redistributions in binary form must reproduce the above copyright 12 * notice, this list of conditions and the following disclaimer in the 13 * documentation and/or other materials provided with the distribution. 14 * 4. Neither the name of the University nor the names of its contributors 15 * may be used to endorse or promote products derived from this software 16 * without specific prior written permission. 17 * 18 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 19 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 21 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 22 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 23 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 24 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 25 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 26 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 27 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 28 * SUCH DAMAGE. 29 * 30 * @(#)udp_usrreq.c 8.6 (Berkeley) 5/23/95 31 */ 32 33 #include <sys/cdefs.h> 34 __FBSDID("$FreeBSD$"); 35 36 #include "opt_ipfw.h" 37 #include "opt_inet6.h" 38 #include "opt_ipsec.h" 39 #include "opt_mac.h" 40 41 #include <sys/param.h> 42 #include <sys/domain.h> 43 #include <sys/eventhandler.h> 44 #include <sys/jail.h> 45 #include <sys/kernel.h> 46 #include <sys/lock.h> 47 #include <sys/malloc.h> 48 #include <sys/mbuf.h> 49 #include <sys/priv.h> 50 #include <sys/proc.h> 51 #include <sys/protosw.h> 52 #include <sys/signalvar.h> 53 #include <sys/socket.h> 54 #include <sys/socketvar.h> 55 #include <sys/sx.h> 56 #include <sys/sysctl.h> 57 #include <sys/syslog.h> 58 #include <sys/systm.h> 59 60 #include <vm/uma.h> 61 62 #include <net/if.h> 63 #include <net/route.h> 64 65 #include <netinet/in.h> 66 #include <netinet/in_pcb.h> 67 #include <netinet/in_systm.h> 68 #include <netinet/in_var.h> 69 #include <netinet/ip.h> 70 #ifdef INET6 71 #include <netinet/ip6.h> 72 #endif 73 #include <netinet/ip_icmp.h> 74 #include <netinet/icmp_var.h> 75 #include <netinet/ip_var.h> 76 #include <netinet/ip_options.h> 77 #ifdef INET6 78 #include <netinet6/ip6_var.h> 79 #endif 80 #include <netinet/udp.h> 81 #include <netinet/udp_var.h> 82 83 #ifdef IPSEC 84 #include <netipsec/ipsec.h> 85 #endif 86 87 #include <machine/in_cksum.h> 88 89 #include <security/mac/mac_framework.h> 90 91 /* 92 * UDP protocol implementation. 93 * Per RFC 768, August, 1980. 94 */ 95 96 /* 97 * BSD 4.2 defaulted the udp checksum to be off. Turning off udp checksums 98 * removes the only data integrity mechanism for packets and malformed 99 * packets that would otherwise be discarded due to bad checksums, and may 100 * cause problems (especially for NFS data blocks). 101 */ 102 static int udp_cksum = 1; 103 SYSCTL_INT(_net_inet_udp, UDPCTL_CHECKSUM, checksum, CTLFLAG_RW, &udp_cksum, 104 0, ""); 105 106 int udp_log_in_vain = 0; 107 SYSCTL_INT(_net_inet_udp, OID_AUTO, log_in_vain, CTLFLAG_RW, 108 &udp_log_in_vain, 0, "Log all incoming UDP packets"); 109 110 int udp_blackhole = 0; 111 SYSCTL_INT(_net_inet_udp, OID_AUTO, blackhole, CTLFLAG_RW, &udp_blackhole, 0, 112 "Do not send port unreachables for refused connects"); 113 114 u_long udp_sendspace = 9216; /* really max datagram size */ 115 /* 40 1K datagrams */ 116 SYSCTL_ULONG(_net_inet_udp, UDPCTL_MAXDGRAM, maxdgram, CTLFLAG_RW, 117 &udp_sendspace, 0, "Maximum outgoing UDP datagram size"); 118 119 u_long udp_recvspace = 40 * (1024 + 120 #ifdef INET6 121 sizeof(struct sockaddr_in6) 122 #else 123 sizeof(struct sockaddr_in) 124 #endif 125 ); 126 127 SYSCTL_ULONG(_net_inet_udp, UDPCTL_RECVSPACE, recvspace, CTLFLAG_RW, 128 &udp_recvspace, 0, "Maximum space for incoming UDP datagrams"); 129 130 struct inpcbhead udb; /* from udp_var.h */ 131 struct inpcbinfo udbinfo; 132 133 #ifndef UDBHASHSIZE 134 #define UDBHASHSIZE 16 135 #endif 136 137 struct udpstat udpstat; /* from udp_var.h */ 138 SYSCTL_STRUCT(_net_inet_udp, UDPCTL_STATS, stats, CTLFLAG_RW, &udpstat, 139 udpstat, "UDP statistics (struct udpstat, netinet/udp_var.h)"); 140 141 static void udp_detach(struct socket *so); 142 static int udp_output(struct inpcb *, struct mbuf *, struct sockaddr *, 143 struct mbuf *, struct thread *); 144 145 static void 146 udp_zone_change(void *tag) 147 { 148 149 uma_zone_set_max(udbinfo.ipi_zone, maxsockets); 150 } 151 152 static int 153 udp_inpcb_init(void *mem, int size, int flags) 154 { 155 struct inpcb *inp; 156 157 inp = mem; 158 INP_LOCK_INIT(inp, "inp", "udpinp"); 159 return (0); 160 } 161 162 void 163 udp_init(void) 164 { 165 166 INP_INFO_LOCK_INIT(&udbinfo, "udp"); 167 LIST_INIT(&udb); 168 udbinfo.ipi_listhead = &udb; 169 udbinfo.ipi_hashbase = hashinit(UDBHASHSIZE, M_PCB, 170 &udbinfo.ipi_hashmask); 171 udbinfo.ipi_porthashbase = hashinit(UDBHASHSIZE, M_PCB, 172 &udbinfo.ipi_porthashmask); 173 udbinfo.ipi_zone = uma_zcreate("udpcb", sizeof(struct inpcb), NULL, 174 NULL, udp_inpcb_init, NULL, UMA_ALIGN_PTR, UMA_ZONE_NOFREE); 175 uma_zone_set_max(udbinfo.ipi_zone, maxsockets); 176 EVENTHANDLER_REGISTER(maxsockets_change, udp_zone_change, NULL, 177 EVENTHANDLER_PRI_ANY); 178 } 179 180 /* 181 * Subroutine of udp_input(), which appends the provided mbuf chain to the 182 * passed pcb/socket. The caller must provide a sockaddr_in via udp_in that 183 * contains the source address. If the socket ends up being an IPv6 socket, 184 * udp_append() will convert to a sockaddr_in6 before passing the address 185 * into the socket code. 186 */ 187 static void 188 udp_append(struct inpcb *inp, struct ip *ip, struct mbuf *n, int off, 189 struct sockaddr_in *udp_in) 190 { 191 struct sockaddr *append_sa; 192 struct socket *so; 193 struct mbuf *opts = 0; 194 #ifdef INET6 195 struct sockaddr_in6 udp_in6; 196 #endif 197 198 INP_WLOCK_ASSERT(inp); 199 200 #ifdef IPSEC 201 /* Check AH/ESP integrity. */ 202 if (ipsec4_in_reject(n, inp)) { 203 m_freem(n); 204 ipsec4stat.in_polvio++; 205 return; 206 } 207 #endif /* IPSEC */ 208 #ifdef MAC 209 if (mac_inpcb_check_deliver(inp, n) != 0) { 210 m_freem(n); 211 return; 212 } 213 #endif 214 if (inp->inp_flags & INP_CONTROLOPTS || 215 inp->inp_socket->so_options & (SO_TIMESTAMP | SO_BINTIME)) { 216 #ifdef INET6 217 if (inp->inp_vflag & INP_IPV6) 218 ip6_savecontrol_v4(inp, n, &opts); 219 else 220 #endif 221 ip_savecontrol(inp, &opts, ip, n); 222 } 223 #ifdef INET6 224 if (inp->inp_vflag & INP_IPV6) { 225 bzero(&udp_in6, sizeof(udp_in6)); 226 udp_in6.sin6_len = sizeof(udp_in6); 227 udp_in6.sin6_family = AF_INET6; 228 in6_sin_2_v4mapsin6(udp_in, &udp_in6); 229 append_sa = (struct sockaddr *)&udp_in6; 230 } else 231 #endif 232 append_sa = (struct sockaddr *)udp_in; 233 m_adj(n, off); 234 235 so = inp->inp_socket; 236 SOCKBUF_LOCK(&so->so_rcv); 237 if (sbappendaddr_locked(&so->so_rcv, append_sa, n, opts) == 0) { 238 SOCKBUF_UNLOCK(&so->so_rcv); 239 m_freem(n); 240 if (opts) 241 m_freem(opts); 242 udpstat.udps_fullsock++; 243 } else 244 sorwakeup_locked(so); 245 } 246 247 void 248 udp_input(struct mbuf *m, int off) 249 { 250 int iphlen = off; 251 struct ip *ip; 252 struct udphdr *uh; 253 struct ifnet *ifp; 254 struct inpcb *inp; 255 int len; 256 struct ip save_ip; 257 struct sockaddr_in udp_in; 258 #ifdef IPFIREWALL_FORWARD 259 struct m_tag *fwd_tag; 260 #endif 261 262 ifp = m->m_pkthdr.rcvif; 263 udpstat.udps_ipackets++; 264 265 /* 266 * Strip IP options, if any; should skip this, make available to 267 * user, and use on returned packets, but we don't yet have a way to 268 * check the checksum with options still present. 269 */ 270 if (iphlen > sizeof (struct ip)) { 271 ip_stripoptions(m, (struct mbuf *)0); 272 iphlen = sizeof(struct ip); 273 } 274 275 /* 276 * Get IP and UDP header together in first mbuf. 277 */ 278 ip = mtod(m, struct ip *); 279 if (m->m_len < iphlen + sizeof(struct udphdr)) { 280 if ((m = m_pullup(m, iphlen + sizeof(struct udphdr))) == 0) { 281 udpstat.udps_hdrops++; 282 return; 283 } 284 ip = mtod(m, struct ip *); 285 } 286 uh = (struct udphdr *)((caddr_t)ip + iphlen); 287 288 /* 289 * Destination port of 0 is illegal, based on RFC768. 290 */ 291 if (uh->uh_dport == 0) 292 goto badunlocked; 293 294 /* 295 * Construct sockaddr format source address. Stuff source address 296 * and datagram in user buffer. 297 */ 298 bzero(&udp_in, sizeof(udp_in)); 299 udp_in.sin_len = sizeof(udp_in); 300 udp_in.sin_family = AF_INET; 301 udp_in.sin_port = uh->uh_sport; 302 udp_in.sin_addr = ip->ip_src; 303 304 /* 305 * Make mbuf data length reflect UDP length. If not enough data to 306 * reflect UDP length, drop. 307 */ 308 len = ntohs((u_short)uh->uh_ulen); 309 if (ip->ip_len != len) { 310 if (len > ip->ip_len || len < sizeof(struct udphdr)) { 311 udpstat.udps_badlen++; 312 goto badunlocked; 313 } 314 m_adj(m, len - ip->ip_len); 315 /* ip->ip_len = len; */ 316 } 317 318 /* 319 * Save a copy of the IP header in case we want restore it for 320 * sending an ICMP error message in response. 321 */ 322 if (!udp_blackhole) 323 save_ip = *ip; 324 else 325 memset(&save_ip, 0, sizeof(save_ip)); 326 327 /* 328 * Checksum extended UDP header and data. 329 */ 330 if (uh->uh_sum) { 331 u_short uh_sum; 332 333 if (m->m_pkthdr.csum_flags & CSUM_DATA_VALID) { 334 if (m->m_pkthdr.csum_flags & CSUM_PSEUDO_HDR) 335 uh_sum = m->m_pkthdr.csum_data; 336 else 337 uh_sum = in_pseudo(ip->ip_src.s_addr, 338 ip->ip_dst.s_addr, htonl((u_short)len + 339 m->m_pkthdr.csum_data + IPPROTO_UDP)); 340 uh_sum ^= 0xffff; 341 } else { 342 char b[9]; 343 344 bcopy(((struct ipovly *)ip)->ih_x1, b, 9); 345 bzero(((struct ipovly *)ip)->ih_x1, 9); 346 ((struct ipovly *)ip)->ih_len = uh->uh_ulen; 347 uh_sum = in_cksum(m, len + sizeof (struct ip)); 348 bcopy(b, ((struct ipovly *)ip)->ih_x1, 9); 349 } 350 if (uh_sum) { 351 udpstat.udps_badsum++; 352 m_freem(m); 353 return; 354 } 355 } else 356 udpstat.udps_nosum++; 357 358 #ifdef IPFIREWALL_FORWARD 359 /* 360 * Grab info from PACKET_TAG_IPFORWARD tag prepended to the chain. 361 */ 362 fwd_tag = m_tag_find(m, PACKET_TAG_IPFORWARD, NULL); 363 if (fwd_tag != NULL) { 364 struct sockaddr_in *next_hop; 365 366 /* 367 * Do the hack. 368 */ 369 next_hop = (struct sockaddr_in *)(fwd_tag + 1); 370 ip->ip_dst = next_hop->sin_addr; 371 uh->uh_dport = ntohs(next_hop->sin_port); 372 373 /* 374 * Remove the tag from the packet. We don't need it anymore. 375 */ 376 m_tag_delete(m, fwd_tag); 377 } 378 #endif 379 380 INP_INFO_RLOCK(&udbinfo); 381 if (IN_MULTICAST(ntohl(ip->ip_dst.s_addr)) || 382 in_broadcast(ip->ip_dst, ifp)) { 383 struct inpcb *last; 384 struct ip_moptions *imo; 385 386 last = NULL; 387 LIST_FOREACH(inp, &udb, inp_list) { 388 if (inp->inp_lport != uh->uh_dport) 389 continue; 390 #ifdef INET6 391 if ((inp->inp_vflag & INP_IPV4) == 0) 392 continue; 393 #endif 394 if (inp->inp_laddr.s_addr != INADDR_ANY && 395 inp->inp_laddr.s_addr != ip->ip_dst.s_addr) 396 continue; 397 if (inp->inp_faddr.s_addr != INADDR_ANY && 398 inp->inp_faddr.s_addr != ip->ip_src.s_addr) 399 continue; 400 /* 401 * XXX: Do not check source port of incoming datagram 402 * unless inp_connect() has been called to bind the 403 * fport part of the 4-tuple; the source could be 404 * trying to talk to us with an ephemeral port. 405 */ 406 if (inp->inp_fport != 0 && 407 inp->inp_fport != uh->uh_sport) 408 continue; 409 410 INP_WLOCK(inp); 411 412 /* 413 * Handle socket delivery policy for any-source 414 * and source-specific multicast. [RFC3678] 415 */ 416 imo = inp->inp_moptions; 417 if (IN_MULTICAST(ntohl(ip->ip_dst.s_addr)) && 418 imo != NULL) { 419 struct sockaddr_in sin; 420 struct in_msource *ims; 421 int blocked, mode; 422 size_t idx; 423 424 bzero(&sin, sizeof(struct sockaddr_in)); 425 sin.sin_len = sizeof(struct sockaddr_in); 426 sin.sin_family = AF_INET; 427 sin.sin_addr = ip->ip_dst; 428 429 blocked = 0; 430 idx = imo_match_group(imo, ifp, 431 (struct sockaddr *)&sin); 432 if (idx == -1) { 433 /* 434 * No group membership for this socket. 435 * Do not bump udps_noportbcast, as 436 * this will happen further down. 437 */ 438 blocked++; 439 } else { 440 /* 441 * Check for a multicast source filter 442 * entry on this socket for this group. 443 * MCAST_EXCLUDE is the default 444 * behaviour. It means default accept; 445 * entries, if present, denote sources 446 * to be excluded from delivery. 447 */ 448 ims = imo_match_source(imo, idx, 449 (struct sockaddr *)&udp_in); 450 mode = imo->imo_mfilters[idx].imf_fmode; 451 if ((ims != NULL && 452 mode == MCAST_EXCLUDE) || 453 (ims == NULL && 454 mode == MCAST_INCLUDE)) { 455 #ifdef DIAGNOSTIC 456 if (bootverbose) { 457 printf("%s: blocked by" 458 " source filter\n", 459 __func__); 460 } 461 #endif 462 udpstat.udps_filtermcast++; 463 blocked++; 464 } 465 } 466 if (blocked != 0) { 467 INP_WUNLOCK(inp); 468 continue; 469 } 470 } 471 if (last != NULL) { 472 struct mbuf *n; 473 474 n = m_copy(m, 0, M_COPYALL); 475 if (n != NULL) 476 udp_append(last, ip, n, iphlen + 477 sizeof(struct udphdr), &udp_in); 478 INP_WUNLOCK(last); 479 } 480 last = inp; 481 /* 482 * Don't look for additional matches if this one does 483 * not have either the SO_REUSEPORT or SO_REUSEADDR 484 * socket options set. This heuristic avoids 485 * searching through all pcbs in the common case of a 486 * non-shared port. It assumes that an application 487 * will never clear these options after setting them. 488 */ 489 if ((last->inp_socket->so_options & 490 (SO_REUSEPORT|SO_REUSEADDR)) == 0) 491 break; 492 } 493 494 if (last == NULL) { 495 /* 496 * No matching pcb found; discard datagram. (No need 497 * to send an ICMP Port Unreachable for a broadcast 498 * or multicast datgram.) 499 */ 500 udpstat.udps_noportbcast++; 501 goto badheadlocked; 502 } 503 udp_append(last, ip, m, iphlen + sizeof(struct udphdr), 504 &udp_in); 505 INP_WUNLOCK(last); 506 INP_INFO_RUNLOCK(&udbinfo); 507 return; 508 } 509 510 /* 511 * Locate pcb for datagram. 512 */ 513 inp = in_pcblookup_hash(&udbinfo, ip->ip_src, uh->uh_sport, 514 ip->ip_dst, uh->uh_dport, 1, ifp); 515 if (inp == NULL) { 516 if (udp_log_in_vain) { 517 char buf[4*sizeof "123"]; 518 519 strcpy(buf, inet_ntoa(ip->ip_dst)); 520 log(LOG_INFO, 521 "Connection attempt to UDP %s:%d from %s:%d\n", 522 buf, ntohs(uh->uh_dport), inet_ntoa(ip->ip_src), 523 ntohs(uh->uh_sport)); 524 } 525 udpstat.udps_noport++; 526 if (m->m_flags & (M_BCAST | M_MCAST)) { 527 udpstat.udps_noportbcast++; 528 goto badheadlocked; 529 } 530 if (udp_blackhole) 531 goto badheadlocked; 532 if (badport_bandlim(BANDLIM_ICMP_UNREACH) < 0) 533 goto badheadlocked; 534 *ip = save_ip; 535 ip->ip_len += iphlen; 536 icmp_error(m, ICMP_UNREACH, ICMP_UNREACH_PORT, 0, 0); 537 INP_INFO_RUNLOCK(&udbinfo); 538 return; 539 } 540 541 /* 542 * Check the minimum TTL for socket. 543 */ 544 INP_WLOCK(inp); 545 if (inp->inp_ip_minttl && inp->inp_ip_minttl > ip->ip_ttl) 546 goto badheadlocked; 547 udp_append(inp, ip, m, iphlen + sizeof(struct udphdr), &udp_in); 548 INP_WUNLOCK(inp); 549 INP_INFO_RUNLOCK(&udbinfo); 550 return; 551 552 badheadlocked: 553 if (inp) 554 INP_WUNLOCK(inp); 555 INP_INFO_RUNLOCK(&udbinfo); 556 badunlocked: 557 m_freem(m); 558 } 559 560 /* 561 * Notify a udp user of an asynchronous error; just wake up so that they can 562 * collect error status. 563 */ 564 struct inpcb * 565 udp_notify(struct inpcb *inp, int errno) 566 { 567 568 INP_WLOCK_ASSERT(inp); 569 570 inp->inp_socket->so_error = errno; 571 sorwakeup(inp->inp_socket); 572 sowwakeup(inp->inp_socket); 573 return (inp); 574 } 575 576 void 577 udp_ctlinput(int cmd, struct sockaddr *sa, void *vip) 578 { 579 struct ip *ip = vip; 580 struct udphdr *uh; 581 struct in_addr faddr; 582 struct inpcb *inp; 583 584 faddr = ((struct sockaddr_in *)sa)->sin_addr; 585 if (sa->sa_family != AF_INET || faddr.s_addr == INADDR_ANY) 586 return; 587 588 /* 589 * Redirects don't need to be handled up here. 590 */ 591 if (PRC_IS_REDIRECT(cmd)) 592 return; 593 594 /* 595 * Hostdead is ugly because it goes linearly through all PCBs. 596 * 597 * XXX: We never get this from ICMP, otherwise it makes an excellent 598 * DoS attack on machines with many connections. 599 */ 600 if (cmd == PRC_HOSTDEAD) 601 ip = NULL; 602 else if ((unsigned)cmd >= PRC_NCMDS || inetctlerrmap[cmd] == 0) 603 return; 604 if (ip != NULL) { 605 uh = (struct udphdr *)((caddr_t)ip + (ip->ip_hl << 2)); 606 INP_INFO_RLOCK(&udbinfo); 607 inp = in_pcblookup_hash(&udbinfo, faddr, uh->uh_dport, 608 ip->ip_src, uh->uh_sport, 0, NULL); 609 if (inp != NULL) { 610 INP_WLOCK(inp); 611 if (inp->inp_socket != NULL) { 612 udp_notify(inp, inetctlerrmap[cmd]); 613 } 614 INP_WUNLOCK(inp); 615 } 616 INP_INFO_RUNLOCK(&udbinfo); 617 } else 618 in_pcbnotifyall(&udbinfo, faddr, inetctlerrmap[cmd], 619 udp_notify); 620 } 621 622 static int 623 udp_pcblist(SYSCTL_HANDLER_ARGS) 624 { 625 int error, i, n; 626 struct inpcb *inp, **inp_list; 627 inp_gen_t gencnt; 628 struct xinpgen xig; 629 630 /* 631 * The process of preparing the PCB list is too time-consuming and 632 * resource-intensive to repeat twice on every request. 633 */ 634 if (req->oldptr == 0) { 635 n = udbinfo.ipi_count; 636 req->oldidx = 2 * (sizeof xig) 637 + (n + n/8) * sizeof(struct xinpcb); 638 return (0); 639 } 640 641 if (req->newptr != 0) 642 return (EPERM); 643 644 /* 645 * OK, now we're committed to doing something. 646 */ 647 INP_INFO_RLOCK(&udbinfo); 648 gencnt = udbinfo.ipi_gencnt; 649 n = udbinfo.ipi_count; 650 INP_INFO_RUNLOCK(&udbinfo); 651 652 error = sysctl_wire_old_buffer(req, 2 * (sizeof xig) 653 + n * sizeof(struct xinpcb)); 654 if (error != 0) 655 return (error); 656 657 xig.xig_len = sizeof xig; 658 xig.xig_count = n; 659 xig.xig_gen = gencnt; 660 xig.xig_sogen = so_gencnt; 661 error = SYSCTL_OUT(req, &xig, sizeof xig); 662 if (error) 663 return (error); 664 665 inp_list = malloc(n * sizeof *inp_list, M_TEMP, M_WAITOK); 666 if (inp_list == 0) 667 return (ENOMEM); 668 669 INP_INFO_RLOCK(&udbinfo); 670 for (inp = LIST_FIRST(udbinfo.ipi_listhead), i = 0; inp && i < n; 671 inp = LIST_NEXT(inp, inp_list)) { 672 INP_RLOCK(inp); 673 if (inp->inp_gencnt <= gencnt && 674 cr_canseesocket(req->td->td_ucred, inp->inp_socket) == 0) 675 inp_list[i++] = inp; 676 INP_RUNLOCK(inp); 677 } 678 INP_INFO_RUNLOCK(&udbinfo); 679 n = i; 680 681 error = 0; 682 for (i = 0; i < n; i++) { 683 inp = inp_list[i]; 684 INP_RLOCK(inp); 685 if (inp->inp_gencnt <= gencnt) { 686 struct xinpcb xi; 687 bzero(&xi, sizeof(xi)); 688 xi.xi_len = sizeof xi; 689 /* XXX should avoid extra copy */ 690 bcopy(inp, &xi.xi_inp, sizeof *inp); 691 if (inp->inp_socket) 692 sotoxsocket(inp->inp_socket, &xi.xi_socket); 693 xi.xi_inp.inp_gencnt = inp->inp_gencnt; 694 INP_RUNLOCK(inp); 695 error = SYSCTL_OUT(req, &xi, sizeof xi); 696 } else 697 INP_RUNLOCK(inp); 698 } 699 if (!error) { 700 /* 701 * Give the user an updated idea of our state. If the 702 * generation differs from what we told her before, she knows 703 * that something happened while we were processing this 704 * request, and it might be necessary to retry. 705 */ 706 INP_INFO_RLOCK(&udbinfo); 707 xig.xig_gen = udbinfo.ipi_gencnt; 708 xig.xig_sogen = so_gencnt; 709 xig.xig_count = udbinfo.ipi_count; 710 INP_INFO_RUNLOCK(&udbinfo); 711 error = SYSCTL_OUT(req, &xig, sizeof xig); 712 } 713 free(inp_list, M_TEMP); 714 return (error); 715 } 716 717 SYSCTL_PROC(_net_inet_udp, UDPCTL_PCBLIST, pcblist, CTLFLAG_RD, 0, 0, 718 udp_pcblist, "S,xinpcb", "List of active UDP sockets"); 719 720 static int 721 udp_getcred(SYSCTL_HANDLER_ARGS) 722 { 723 struct xucred xuc; 724 struct sockaddr_in addrs[2]; 725 struct inpcb *inp; 726 int error; 727 728 error = priv_check(req->td, PRIV_NETINET_GETCRED); 729 if (error) 730 return (error); 731 error = SYSCTL_IN(req, addrs, sizeof(addrs)); 732 if (error) 733 return (error); 734 INP_INFO_RLOCK(&udbinfo); 735 inp = in_pcblookup_hash(&udbinfo, addrs[1].sin_addr, addrs[1].sin_port, 736 addrs[0].sin_addr, addrs[0].sin_port, 1, NULL); 737 if (inp != NULL) { 738 INP_RLOCK(inp); 739 INP_INFO_RUNLOCK(&udbinfo); 740 if (inp->inp_socket == NULL) 741 error = ENOENT; 742 if (error == 0) 743 error = cr_canseesocket(req->td->td_ucred, 744 inp->inp_socket); 745 if (error == 0) 746 cru2x(inp->inp_socket->so_cred, &xuc); 747 INP_RUNLOCK(inp); 748 } else { 749 INP_INFO_RUNLOCK(&udbinfo); 750 error = ENOENT; 751 } 752 if (error == 0) 753 error = SYSCTL_OUT(req, &xuc, sizeof(struct xucred)); 754 return (error); 755 } 756 757 SYSCTL_PROC(_net_inet_udp, OID_AUTO, getcred, 758 CTLTYPE_OPAQUE|CTLFLAG_RW|CTLFLAG_PRISON, 0, 0, 759 udp_getcred, "S,xucred", "Get the xucred of a UDP connection"); 760 761 static int 762 udp_output(struct inpcb *inp, struct mbuf *m, struct sockaddr *addr, 763 struct mbuf *control, struct thread *td) 764 { 765 struct udpiphdr *ui; 766 int len = m->m_pkthdr.len; 767 struct in_addr faddr, laddr; 768 struct cmsghdr *cm; 769 struct sockaddr_in *sin, src; 770 int error = 0; 771 int ipflags; 772 u_short fport, lport; 773 int unlock_udbinfo; 774 775 /* 776 * udp_output() may need to temporarily bind or connect the current 777 * inpcb. As such, we don't know up front whether we will need the 778 * pcbinfo lock or not. Do any work to decide what is needed up 779 * front before acquiring any locks. 780 */ 781 if (len + sizeof(struct udpiphdr) > IP_MAXPACKET) { 782 if (control) 783 m_freem(control); 784 m_freem(m); 785 return (EMSGSIZE); 786 } 787 788 src.sin_family = 0; 789 if (control != NULL) { 790 /* 791 * XXX: Currently, we assume all the optional information is 792 * stored in a single mbuf. 793 */ 794 if (control->m_next) { 795 m_freem(control); 796 m_freem(m); 797 return (EINVAL); 798 } 799 for (; control->m_len > 0; 800 control->m_data += CMSG_ALIGN(cm->cmsg_len), 801 control->m_len -= CMSG_ALIGN(cm->cmsg_len)) { 802 cm = mtod(control, struct cmsghdr *); 803 if (control->m_len < sizeof(*cm) || cm->cmsg_len == 0 804 || cm->cmsg_len > control->m_len) { 805 error = EINVAL; 806 break; 807 } 808 if (cm->cmsg_level != IPPROTO_IP) 809 continue; 810 811 switch (cm->cmsg_type) { 812 case IP_SENDSRCADDR: 813 if (cm->cmsg_len != 814 CMSG_LEN(sizeof(struct in_addr))) { 815 error = EINVAL; 816 break; 817 } 818 bzero(&src, sizeof(src)); 819 src.sin_family = AF_INET; 820 src.sin_len = sizeof(src); 821 src.sin_port = inp->inp_lport; 822 src.sin_addr = 823 *(struct in_addr *)CMSG_DATA(cm); 824 break; 825 826 default: 827 error = ENOPROTOOPT; 828 break; 829 } 830 if (error) 831 break; 832 } 833 m_freem(control); 834 } 835 if (error) { 836 m_freem(m); 837 return (error); 838 } 839 840 if (src.sin_family == AF_INET || addr != NULL) { 841 INP_INFO_WLOCK(&udbinfo); 842 unlock_udbinfo = 1; 843 } else 844 unlock_udbinfo = 0; 845 INP_WLOCK(inp); 846 847 #ifdef MAC 848 mac_inpcb_create_mbuf(inp, m); 849 #endif 850 851 /* 852 * If the IP_SENDSRCADDR control message was specified, override the 853 * source address for this datagram. Its use is invalidated if the 854 * address thus specified is incomplete or clobbers other inpcbs. 855 */ 856 laddr = inp->inp_laddr; 857 lport = inp->inp_lport; 858 if (src.sin_family == AF_INET) { 859 if ((lport == 0) || 860 (laddr.s_addr == INADDR_ANY && 861 src.sin_addr.s_addr == INADDR_ANY)) { 862 error = EINVAL; 863 goto release; 864 } 865 error = in_pcbbind_setup(inp, (struct sockaddr *)&src, 866 &laddr.s_addr, &lport, td->td_ucred); 867 if (error) 868 goto release; 869 } 870 871 if (addr) { 872 sin = (struct sockaddr_in *)addr; 873 if (jailed(td->td_ucred)) 874 prison_remote_ip(td->td_ucred, 0, 875 &sin->sin_addr.s_addr); 876 if (inp->inp_faddr.s_addr != INADDR_ANY) { 877 error = EISCONN; 878 goto release; 879 } 880 error = in_pcbconnect_setup(inp, addr, &laddr.s_addr, &lport, 881 &faddr.s_addr, &fport, NULL, td->td_ucred); 882 if (error) 883 goto release; 884 885 /* Commit the local port if newly assigned. */ 886 if (inp->inp_laddr.s_addr == INADDR_ANY && 887 inp->inp_lport == 0) { 888 /* 889 * Remember addr if jailed, to prevent rebinding. 890 */ 891 if (jailed(td->td_ucred)) 892 inp->inp_laddr = laddr; 893 inp->inp_lport = lport; 894 if (in_pcbinshash(inp) != 0) { 895 inp->inp_lport = 0; 896 error = EAGAIN; 897 goto release; 898 } 899 inp->inp_flags |= INP_ANONPORT; 900 } 901 } else { 902 faddr = inp->inp_faddr; 903 fport = inp->inp_fport; 904 if (faddr.s_addr == INADDR_ANY) { 905 error = ENOTCONN; 906 goto release; 907 } 908 } 909 910 /* 911 * Calculate data length and get a mbuf for UDP, IP, and possible 912 * link-layer headers. Immediate slide the data pointer back forward 913 * since we won't use that space at this layer. 914 */ 915 M_PREPEND(m, sizeof(struct udpiphdr) + max_linkhdr, M_DONTWAIT); 916 if (m == NULL) { 917 error = ENOBUFS; 918 goto release; 919 } 920 m->m_data += max_linkhdr; 921 m->m_len -= max_linkhdr; 922 m->m_pkthdr.len -= max_linkhdr; 923 924 /* 925 * Fill in mbuf with extended UDP header and addresses and length put 926 * into network format. 927 */ 928 ui = mtod(m, struct udpiphdr *); 929 bzero(ui->ui_x1, sizeof(ui->ui_x1)); /* XXX still needed? */ 930 ui->ui_pr = IPPROTO_UDP; 931 ui->ui_src = laddr; 932 ui->ui_dst = faddr; 933 ui->ui_sport = lport; 934 ui->ui_dport = fport; 935 ui->ui_ulen = htons((u_short)len + sizeof(struct udphdr)); 936 937 /* 938 * Set the Don't Fragment bit in the IP header. 939 */ 940 if (inp->inp_flags & INP_DONTFRAG) { 941 struct ip *ip; 942 943 ip = (struct ip *)&ui->ui_i; 944 ip->ip_off |= IP_DF; 945 } 946 947 ipflags = 0; 948 if (inp->inp_socket->so_options & SO_DONTROUTE) 949 ipflags |= IP_ROUTETOIF; 950 if (inp->inp_socket->so_options & SO_BROADCAST) 951 ipflags |= IP_ALLOWBROADCAST; 952 if (inp->inp_flags & INP_ONESBCAST) 953 ipflags |= IP_SENDONES; 954 955 /* 956 * Set up checksum and output datagram. 957 */ 958 if (udp_cksum) { 959 if (inp->inp_flags & INP_ONESBCAST) 960 faddr.s_addr = INADDR_BROADCAST; 961 ui->ui_sum = in_pseudo(ui->ui_src.s_addr, faddr.s_addr, 962 htons((u_short)len + sizeof(struct udphdr) + IPPROTO_UDP)); 963 m->m_pkthdr.csum_flags = CSUM_UDP; 964 m->m_pkthdr.csum_data = offsetof(struct udphdr, uh_sum); 965 } else 966 ui->ui_sum = 0; 967 ((struct ip *)ui)->ip_len = sizeof (struct udpiphdr) + len; 968 ((struct ip *)ui)->ip_ttl = inp->inp_ip_ttl; /* XXX */ 969 ((struct ip *)ui)->ip_tos = inp->inp_ip_tos; /* XXX */ 970 udpstat.udps_opackets++; 971 972 if (unlock_udbinfo) 973 INP_INFO_WUNLOCK(&udbinfo); 974 error = ip_output(m, inp->inp_options, NULL, ipflags, 975 inp->inp_moptions, inp); 976 INP_WUNLOCK(inp); 977 return (error); 978 979 release: 980 INP_WUNLOCK(inp); 981 if (unlock_udbinfo) 982 INP_INFO_WUNLOCK(&udbinfo); 983 m_freem(m); 984 return (error); 985 } 986 987 static void 988 udp_abort(struct socket *so) 989 { 990 struct inpcb *inp; 991 992 inp = sotoinpcb(so); 993 KASSERT(inp != NULL, ("udp_abort: inp == NULL")); 994 INP_INFO_WLOCK(&udbinfo); 995 INP_WLOCK(inp); 996 if (inp->inp_faddr.s_addr != INADDR_ANY) { 997 in_pcbdisconnect(inp); 998 inp->inp_laddr.s_addr = INADDR_ANY; 999 soisdisconnected(so); 1000 } 1001 INP_WUNLOCK(inp); 1002 INP_INFO_WUNLOCK(&udbinfo); 1003 } 1004 1005 static int 1006 udp_attach(struct socket *so, int proto, struct thread *td) 1007 { 1008 struct inpcb *inp; 1009 int error; 1010 1011 inp = sotoinpcb(so); 1012 KASSERT(inp == NULL, ("udp_attach: inp != NULL")); 1013 error = soreserve(so, udp_sendspace, udp_recvspace); 1014 if (error) 1015 return (error); 1016 INP_INFO_WLOCK(&udbinfo); 1017 error = in_pcballoc(so, &udbinfo); 1018 if (error) { 1019 INP_INFO_WUNLOCK(&udbinfo); 1020 return (error); 1021 } 1022 1023 inp = (struct inpcb *)so->so_pcb; 1024 INP_INFO_WUNLOCK(&udbinfo); 1025 inp->inp_vflag |= INP_IPV4; 1026 inp->inp_ip_ttl = ip_defttl; 1027 INP_WUNLOCK(inp); 1028 return (0); 1029 } 1030 1031 static int 1032 udp_bind(struct socket *so, struct sockaddr *nam, struct thread *td) 1033 { 1034 struct inpcb *inp; 1035 int error; 1036 1037 inp = sotoinpcb(so); 1038 KASSERT(inp != NULL, ("udp_bind: inp == NULL")); 1039 INP_INFO_WLOCK(&udbinfo); 1040 INP_WLOCK(inp); 1041 error = in_pcbbind(inp, nam, td->td_ucred); 1042 INP_WUNLOCK(inp); 1043 INP_INFO_WUNLOCK(&udbinfo); 1044 return (error); 1045 } 1046 1047 static void 1048 udp_close(struct socket *so) 1049 { 1050 struct inpcb *inp; 1051 1052 inp = sotoinpcb(so); 1053 KASSERT(inp != NULL, ("udp_close: inp == NULL")); 1054 INP_INFO_WLOCK(&udbinfo); 1055 INP_WLOCK(inp); 1056 if (inp->inp_faddr.s_addr != INADDR_ANY) { 1057 in_pcbdisconnect(inp); 1058 inp->inp_laddr.s_addr = INADDR_ANY; 1059 soisdisconnected(so); 1060 } 1061 INP_WUNLOCK(inp); 1062 INP_INFO_WUNLOCK(&udbinfo); 1063 } 1064 1065 static int 1066 udp_connect(struct socket *so, struct sockaddr *nam, struct thread *td) 1067 { 1068 struct inpcb *inp; 1069 int error; 1070 struct sockaddr_in *sin; 1071 1072 inp = sotoinpcb(so); 1073 KASSERT(inp != NULL, ("udp_connect: inp == NULL")); 1074 INP_INFO_WLOCK(&udbinfo); 1075 INP_WLOCK(inp); 1076 if (inp->inp_faddr.s_addr != INADDR_ANY) { 1077 INP_WUNLOCK(inp); 1078 INP_INFO_WUNLOCK(&udbinfo); 1079 return (EISCONN); 1080 } 1081 sin = (struct sockaddr_in *)nam; 1082 if (jailed(td->td_ucred)) 1083 prison_remote_ip(td->td_ucred, 0, &sin->sin_addr.s_addr); 1084 error = in_pcbconnect(inp, nam, td->td_ucred); 1085 if (error == 0) 1086 soisconnected(so); 1087 INP_WUNLOCK(inp); 1088 INP_INFO_WUNLOCK(&udbinfo); 1089 return (error); 1090 } 1091 1092 static void 1093 udp_detach(struct socket *so) 1094 { 1095 struct inpcb *inp; 1096 1097 inp = sotoinpcb(so); 1098 KASSERT(inp != NULL, ("udp_detach: inp == NULL")); 1099 KASSERT(inp->inp_faddr.s_addr == INADDR_ANY, 1100 ("udp_detach: not disconnected")); 1101 INP_INFO_WLOCK(&udbinfo); 1102 INP_WLOCK(inp); 1103 in_pcbdetach(inp); 1104 in_pcbfree(inp); 1105 INP_INFO_WUNLOCK(&udbinfo); 1106 } 1107 1108 static int 1109 udp_disconnect(struct socket *so) 1110 { 1111 struct inpcb *inp; 1112 1113 inp = sotoinpcb(so); 1114 KASSERT(inp != NULL, ("udp_disconnect: inp == NULL")); 1115 INP_INFO_WLOCK(&udbinfo); 1116 INP_WLOCK(inp); 1117 if (inp->inp_faddr.s_addr == INADDR_ANY) { 1118 INP_WUNLOCK(inp); 1119 INP_INFO_WUNLOCK(&udbinfo); 1120 return (ENOTCONN); 1121 } 1122 1123 in_pcbdisconnect(inp); 1124 inp->inp_laddr.s_addr = INADDR_ANY; 1125 SOCK_LOCK(so); 1126 so->so_state &= ~SS_ISCONNECTED; /* XXX */ 1127 SOCK_UNLOCK(so); 1128 INP_WUNLOCK(inp); 1129 INP_INFO_WUNLOCK(&udbinfo); 1130 return (0); 1131 } 1132 1133 static int 1134 udp_send(struct socket *so, int flags, struct mbuf *m, struct sockaddr *addr, 1135 struct mbuf *control, struct thread *td) 1136 { 1137 struct inpcb *inp; 1138 1139 inp = sotoinpcb(so); 1140 KASSERT(inp != NULL, ("udp_send: inp == NULL")); 1141 return (udp_output(inp, m, addr, control, td)); 1142 } 1143 1144 int 1145 udp_shutdown(struct socket *so) 1146 { 1147 struct inpcb *inp; 1148 1149 inp = sotoinpcb(so); 1150 KASSERT(inp != NULL, ("udp_shutdown: inp == NULL")); 1151 INP_WLOCK(inp); 1152 socantsendmore(so); 1153 INP_WUNLOCK(inp); 1154 return (0); 1155 } 1156 1157 struct pr_usrreqs udp_usrreqs = { 1158 .pru_abort = udp_abort, 1159 .pru_attach = udp_attach, 1160 .pru_bind = udp_bind, 1161 .pru_connect = udp_connect, 1162 .pru_control = in_control, 1163 .pru_detach = udp_detach, 1164 .pru_disconnect = udp_disconnect, 1165 .pru_peeraddr = in_getpeeraddr, 1166 .pru_send = udp_send, 1167 .pru_sosend = sosend_dgram, 1168 .pru_shutdown = udp_shutdown, 1169 .pru_sockaddr = in_getsockaddr, 1170 .pru_sosetlabel = in_pcbsosetlabel, 1171 .pru_close = udp_close, 1172 }; 1173