ip_output.c revision 1.293 1 /* $NetBSD: ip_output.c,v 1.293 2018/02/06 17:08:18 maxv Exp $ */
2
3 /*
4 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. Neither the name of the project nor the names of its contributors
16 * may be used to endorse or promote products derived from this software
17 * without specific prior written permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * SUCH DAMAGE.
30 */
31
32 /*
33 * Copyright (c) 1998 The NetBSD Foundation, Inc.
34 * All rights reserved.
35 *
36 * This code is derived from software contributed to The NetBSD Foundation
37 * by Public Access Networks Corporation ("Panix"). It was developed under
38 * contract to Panix by Eric Haszlakiewicz and Thor Lancelot Simon.
39 *
40 * Redistribution and use in source and binary forms, with or without
41 * modification, are permitted provided that the following conditions
42 * are met:
43 * 1. Redistributions of source code must retain the above copyright
44 * notice, this list of conditions and the following disclaimer.
45 * 2. Redistributions in binary form must reproduce the above copyright
46 * notice, this list of conditions and the following disclaimer in the
47 * documentation and/or other materials provided with the distribution.
48 *
49 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
50 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
51 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
52 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
53 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
54 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
55 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
56 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
57 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
58 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
59 * POSSIBILITY OF SUCH DAMAGE.
60 */
61
62 /*
63 * Copyright (c) 1982, 1986, 1988, 1990, 1993
64 * The Regents of the University of California. All rights reserved.
65 *
66 * Redistribution and use in source and binary forms, with or without
67 * modification, are permitted provided that the following conditions
68 * are met:
69 * 1. Redistributions of source code must retain the above copyright
70 * notice, this list of conditions and the following disclaimer.
71 * 2. Redistributions in binary form must reproduce the above copyright
72 * notice, this list of conditions and the following disclaimer in the
73 * documentation and/or other materials provided with the distribution.
74 * 3. Neither the name of the University nor the names of its contributors
75 * may be used to endorse or promote products derived from this software
76 * without specific prior written permission.
77 *
78 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
79 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
80 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
81 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
82 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
83 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
84 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
85 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
86 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
87 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
88 * SUCH DAMAGE.
89 *
90 * @(#)ip_output.c 8.3 (Berkeley) 1/21/94
91 */
92
93 #include <sys/cdefs.h>
94 __KERNEL_RCSID(0, "$NetBSD: ip_output.c,v 1.293 2018/02/06 17:08:18 maxv Exp $");
95
96 #ifdef _KERNEL_OPT
97 #include "opt_inet.h"
98 #include "opt_ipsec.h"
99 #include "opt_mrouting.h"
100 #include "opt_net_mpsafe.h"
101 #include "opt_mpls.h"
102 #endif
103
104 #include "arp.h"
105
106 #include <sys/param.h>
107 #include <sys/kmem.h>
108 #include <sys/mbuf.h>
109 #include <sys/socket.h>
110 #include <sys/socketvar.h>
111 #include <sys/kauth.h>
112 #include <sys/systm.h>
113 #include <sys/syslog.h>
114
115 #include <net/if.h>
116 #include <net/if_types.h>
117 #include <net/route.h>
118 #include <net/pfil.h>
119
120 #include <netinet/in.h>
121 #include <netinet/in_systm.h>
122 #include <netinet/ip.h>
123 #include <netinet/in_pcb.h>
124 #include <netinet/in_var.h>
125 #include <netinet/ip_var.h>
126 #include <netinet/ip_private.h>
127 #include <netinet/in_offload.h>
128 #include <netinet/portalgo.h>
129 #include <netinet/udp.h>
130 #include <netinet/udp_var.h>
131
132 #ifdef INET6
133 #include <netinet6/ip6_var.h>
134 #endif
135
136 #ifdef MROUTING
137 #include <netinet/ip_mroute.h>
138 #endif
139
140 #ifdef IPSEC
141 #include <netipsec/ipsec.h>
142 #include <netipsec/key.h>
143 #endif
144
145 #ifdef MPLS
146 #include <netmpls/mpls.h>
147 #include <netmpls/mpls_var.h>
148 #endif
149
150 static int ip_pcbopts(struct inpcb *, const struct sockopt *);
151 static struct mbuf *ip_insertoptions(struct mbuf *, struct mbuf *, int *);
152 static struct ifnet *ip_multicast_if(struct in_addr *, int *);
153 static void ip_mloopback(struct ifnet *, struct mbuf *,
154 const struct sockaddr_in *);
155 static int ip_ifaddrvalid(const struct in_ifaddr *);
156
157 extern pfil_head_t *inet_pfil_hook; /* XXX */
158
159 int ip_do_loopback_cksum = 0;
160
161 static int
162 ip_mark_mpls(struct ifnet * const ifp, struct mbuf * const m,
163 const struct rtentry *rt)
164 {
165 int error = 0;
166 #ifdef MPLS
167 union mpls_shim msh;
168
169 if (rt == NULL || rt_gettag(rt) == NULL ||
170 rt_gettag(rt)->sa_family != AF_MPLS ||
171 (m->m_flags & (M_MCAST | M_BCAST)) != 0 ||
172 ifp->if_type != IFT_ETHER)
173 return 0;
174
175 msh.s_addr = MPLS_GETSADDR(rt);
176 if (msh.shim.label != MPLS_LABEL_IMPLNULL) {
177 struct m_tag *mtag;
178 /*
179 * XXX tentative solution to tell ether_output
180 * it's MPLS. Need some more efficient solution.
181 */
182 mtag = m_tag_get(PACKET_TAG_MPLS,
183 sizeof(int) /* dummy */,
184 M_NOWAIT);
185 if (mtag == NULL)
186 return ENOMEM;
187 m_tag_prepend(m, mtag);
188 }
189 #endif
190 return error;
191 }
192
193 /*
194 * Send an IP packet to a host.
195 */
196 int
197 ip_if_output(struct ifnet * const ifp, struct mbuf * const m,
198 const struct sockaddr * const dst, const struct rtentry *rt)
199 {
200 int error = 0;
201
202 if (rt != NULL) {
203 error = rt_check_reject_route(rt, ifp);
204 if (error != 0) {
205 m_freem(m);
206 return error;
207 }
208 }
209
210 error = ip_mark_mpls(ifp, m, rt);
211 if (error != 0) {
212 m_freem(m);
213 return error;
214 }
215
216 error = if_output_lock(ifp, ifp, m, dst, rt);
217
218 return error;
219 }
220
221 /*
222 * IP output. The packet in mbuf chain m contains a skeletal IP
223 * header (with len, off, ttl, proto, tos, src, dst).
224 * The mbuf chain containing the packet will be freed.
225 * The mbuf opt, if present, will not be freed.
226 */
227 int
228 ip_output(struct mbuf *m0, struct mbuf *opt, struct route *ro, int flags,
229 struct ip_moptions *imo, struct inpcb *inp)
230 {
231 struct rtentry *rt;
232 struct ip *ip;
233 struct ifnet *ifp, *mifp = NULL;
234 struct mbuf *m = m0;
235 int len, hlen, error = 0;
236 struct route iproute;
237 const struct sockaddr_in *dst;
238 struct in_ifaddr *ia = NULL;
239 struct ifaddr *ifa;
240 int isbroadcast;
241 int sw_csum;
242 u_long mtu;
243 bool natt_frag = false;
244 bool rtmtu_nolock;
245 union {
246 struct sockaddr sa;
247 struct sockaddr_in sin;
248 } udst, usrc;
249 struct sockaddr *rdst = &udst.sa; /* real IP destination, as
250 * opposed to the nexthop
251 */
252 struct psref psref, psref_ia;
253 int bound;
254 bool bind_need_restore = false;
255
256 len = 0;
257
258 MCLAIM(m, &ip_tx_mowner);
259
260 KASSERT((m->m_flags & M_PKTHDR) != 0);
261 KASSERT((m->m_pkthdr.csum_flags & (M_CSUM_TCPv6|M_CSUM_UDPv6)) == 0);
262 KASSERT((m->m_pkthdr.csum_flags & (M_CSUM_TCPv4|M_CSUM_UDPv4)) !=
263 (M_CSUM_TCPv4|M_CSUM_UDPv4));
264 KASSERT(m->m_len >= sizeof(struct ip));
265
266 hlen = sizeof(struct ip);
267 if (opt) {
268 m = ip_insertoptions(m, opt, &len);
269 hlen = len;
270 }
271 ip = mtod(m, struct ip *);
272
273 /*
274 * Fill in IP header.
275 */
276 if ((flags & (IP_FORWARDING|IP_RAWOUTPUT)) == 0) {
277 ip->ip_v = IPVERSION;
278 ip->ip_off = htons(0);
279 /* ip->ip_id filled in after we find out source ia */
280 ip->ip_hl = hlen >> 2;
281 IP_STATINC(IP_STAT_LOCALOUT);
282 } else {
283 hlen = ip->ip_hl << 2;
284 }
285
286 /*
287 * Route packet.
288 */
289 if (ro == NULL) {
290 memset(&iproute, 0, sizeof(iproute));
291 ro = &iproute;
292 }
293 sockaddr_in_init(&udst.sin, &ip->ip_dst, 0);
294 dst = satocsin(rtcache_getdst(ro));
295
296 /*
297 * If there is a cached route, check that it is to the same
298 * destination and is still up. If not, free it and try again.
299 * The address family should also be checked in case of sharing
300 * the cache with IPv6.
301 */
302 if (dst && (dst->sin_family != AF_INET ||
303 !in_hosteq(dst->sin_addr, ip->ip_dst)))
304 rtcache_free(ro);
305
306 /* XXX must be before rtcache operations */
307 bound = curlwp_bind();
308 bind_need_restore = true;
309
310 if ((rt = rtcache_validate(ro)) == NULL &&
311 (rt = rtcache_update(ro, 1)) == NULL) {
312 dst = &udst.sin;
313 error = rtcache_setdst(ro, &udst.sa);
314 if (error != 0)
315 goto bad;
316 }
317
318 /*
319 * If routing to interface only, short circuit routing lookup.
320 */
321 if (flags & IP_ROUTETOIF) {
322 ifa = ifa_ifwithladdr_psref(sintocsa(dst), &psref_ia);
323 if (ifa == NULL) {
324 IP_STATINC(IP_STAT_NOROUTE);
325 error = ENETUNREACH;
326 goto bad;
327 }
328 /* ia is already referenced by psref_ia */
329 ia = ifatoia(ifa);
330
331 ifp = ia->ia_ifp;
332 mtu = ifp->if_mtu;
333 ip->ip_ttl = 1;
334 isbroadcast = in_broadcast(dst->sin_addr, ifp);
335 } else if (((IN_MULTICAST(ip->ip_dst.s_addr) ||
336 ip->ip_dst.s_addr == INADDR_BROADCAST) ||
337 (flags & IP_ROUTETOIFINDEX)) &&
338 imo != NULL && imo->imo_multicast_if_index != 0) {
339 ifp = mifp = if_get_byindex(imo->imo_multicast_if_index, &psref);
340 if (ifp == NULL) {
341 IP_STATINC(IP_STAT_NOROUTE);
342 error = ENETUNREACH;
343 goto bad;
344 }
345 mtu = ifp->if_mtu;
346 ia = in_get_ia_from_ifp_psref(ifp, &psref_ia);
347 if (ia == NULL) {
348 error = EADDRNOTAVAIL;
349 goto bad;
350 }
351 if (IN_MULTICAST(ip->ip_dst.s_addr) ||
352 ip->ip_dst.s_addr == INADDR_BROADCAST) {
353 isbroadcast = 0;
354 } else {
355 /* IP_ROUTETOIFINDEX */
356 isbroadcast = in_broadcast(dst->sin_addr, ifp);
357 if ((isbroadcast == 0) && ((ifp->if_flags &
358 (IFF_LOOPBACK | IFF_POINTOPOINT)) == 0) &&
359 (in_direct(dst->sin_addr, ifp) == 0)) {
360 /* gateway address required */
361 if (rt == NULL)
362 rt = rtcache_init(ro);
363 if (rt == NULL || rt->rt_ifp != ifp) {
364 IP_STATINC(IP_STAT_NOROUTE);
365 error = EHOSTUNREACH;
366 goto bad;
367 }
368 rt->rt_use++;
369 if (rt->rt_flags & RTF_GATEWAY)
370 dst = satosin(rt->rt_gateway);
371 if (rt->rt_flags & RTF_HOST)
372 isbroadcast =
373 rt->rt_flags & RTF_BROADCAST;
374 }
375 }
376 } else {
377 if (rt == NULL)
378 rt = rtcache_init(ro);
379 if (rt == NULL) {
380 IP_STATINC(IP_STAT_NOROUTE);
381 error = EHOSTUNREACH;
382 goto bad;
383 }
384 if (ifa_is_destroying(rt->rt_ifa)) {
385 rtcache_unref(rt, ro);
386 rt = NULL;
387 IP_STATINC(IP_STAT_NOROUTE);
388 error = EHOSTUNREACH;
389 goto bad;
390 }
391 ifa_acquire(rt->rt_ifa, &psref_ia);
392 ia = ifatoia(rt->rt_ifa);
393 ifp = rt->rt_ifp;
394 if ((mtu = rt->rt_rmx.rmx_mtu) == 0)
395 mtu = ifp->if_mtu;
396 rt->rt_use++;
397 if (rt->rt_flags & RTF_GATEWAY)
398 dst = satosin(rt->rt_gateway);
399 if (rt->rt_flags & RTF_HOST)
400 isbroadcast = rt->rt_flags & RTF_BROADCAST;
401 else
402 isbroadcast = in_broadcast(dst->sin_addr, ifp);
403 }
404 rtmtu_nolock = rt && (rt->rt_rmx.rmx_locks & RTV_MTU) == 0;
405
406 if (IN_MULTICAST(ip->ip_dst.s_addr) ||
407 (ip->ip_dst.s_addr == INADDR_BROADCAST)) {
408 bool inmgroup;
409
410 m->m_flags |= (ip->ip_dst.s_addr == INADDR_BROADCAST) ?
411 M_BCAST : M_MCAST;
412 /*
413 * See if the caller provided any multicast options
414 */
415 if (imo != NULL)
416 ip->ip_ttl = imo->imo_multicast_ttl;
417 else
418 ip->ip_ttl = IP_DEFAULT_MULTICAST_TTL;
419
420 /*
421 * if we don't know the outgoing ifp yet, we can't generate
422 * output
423 */
424 if (!ifp) {
425 IP_STATINC(IP_STAT_NOROUTE);
426 error = ENETUNREACH;
427 goto bad;
428 }
429
430 /*
431 * If the packet is multicast or broadcast, confirm that
432 * the outgoing interface can transmit it.
433 */
434 if (((m->m_flags & M_MCAST) &&
435 (ifp->if_flags & IFF_MULTICAST) == 0) ||
436 ((m->m_flags & M_BCAST) &&
437 (ifp->if_flags & (IFF_BROADCAST|IFF_POINTOPOINT)) == 0)) {
438 IP_STATINC(IP_STAT_NOROUTE);
439 error = ENETUNREACH;
440 goto bad;
441 }
442 /*
443 * If source address not specified yet, use an address
444 * of outgoing interface.
445 */
446 if (in_nullhost(ip->ip_src)) {
447 struct in_ifaddr *xia;
448 struct ifaddr *xifa;
449 struct psref _psref;
450
451 xia = in_get_ia_from_ifp_psref(ifp, &_psref);
452 if (!xia) {
453 error = EADDRNOTAVAIL;
454 goto bad;
455 }
456 xifa = &xia->ia_ifa;
457 if (xifa->ifa_getifa != NULL) {
458 ia4_release(xia, &_psref);
459 /* FIXME ifa_getifa is NOMPSAFE */
460 xia = ifatoia((*xifa->ifa_getifa)(xifa, rdst));
461 if (xia == NULL) {
462 error = EADDRNOTAVAIL;
463 goto bad;
464 }
465 ia4_acquire(xia, &_psref);
466 }
467 ip->ip_src = xia->ia_addr.sin_addr;
468 ia4_release(xia, &_psref);
469 }
470
471 inmgroup = in_multi_group(ip->ip_dst, ifp, flags);
472 if (inmgroup && (imo == NULL || imo->imo_multicast_loop)) {
473 /*
474 * If we belong to the destination multicast group
475 * on the outgoing interface, and the caller did not
476 * forbid loopback, loop back a copy.
477 */
478 ip_mloopback(ifp, m, &udst.sin);
479 }
480 #ifdef MROUTING
481 else {
482 /*
483 * If we are acting as a multicast router, perform
484 * multicast forwarding as if the packet had just
485 * arrived on the interface to which we are about
486 * to send. The multicast forwarding function
487 * recursively calls this function, using the
488 * IP_FORWARDING flag to prevent infinite recursion.
489 *
490 * Multicasts that are looped back by ip_mloopback(),
491 * above, will be forwarded by the ip_input() routine,
492 * if necessary.
493 */
494 extern struct socket *ip_mrouter;
495
496 if (ip_mrouter && (flags & IP_FORWARDING) == 0) {
497 if (ip_mforward(m, ifp) != 0) {
498 m_freem(m);
499 goto done;
500 }
501 }
502 }
503 #endif
504 /*
505 * Multicasts with a time-to-live of zero may be looped-
506 * back, above, but must not be transmitted on a network.
507 * Also, multicasts addressed to the loopback interface
508 * are not sent -- the above call to ip_mloopback() will
509 * loop back a copy if this host actually belongs to the
510 * destination group on the loopback interface.
511 */
512 if (ip->ip_ttl == 0 || (ifp->if_flags & IFF_LOOPBACK) != 0) {
513 m_freem(m);
514 goto done;
515 }
516 goto sendit;
517 }
518
519 /*
520 * If source address not specified yet, use address
521 * of outgoing interface.
522 */
523 if (in_nullhost(ip->ip_src)) {
524 struct ifaddr *xifa;
525
526 xifa = &ia->ia_ifa;
527 if (xifa->ifa_getifa != NULL) {
528 ia4_release(ia, &psref_ia);
529 /* FIXME ifa_getifa is NOMPSAFE */
530 ia = ifatoia((*xifa->ifa_getifa)(xifa, rdst));
531 if (ia == NULL) {
532 error = EADDRNOTAVAIL;
533 goto bad;
534 }
535 ia4_acquire(ia, &psref_ia);
536 }
537 ip->ip_src = ia->ia_addr.sin_addr;
538 }
539
540 /*
541 * Packets with Class-D address as source are not valid per
542 * RFC1112.
543 */
544 if (IN_MULTICAST(ip->ip_src.s_addr)) {
545 IP_STATINC(IP_STAT_ODROPPED);
546 error = EADDRNOTAVAIL;
547 goto bad;
548 }
549
550 /*
551 * Look for broadcast address and and verify user is allowed to
552 * send such a packet.
553 */
554 if (isbroadcast) {
555 if ((ifp->if_flags & IFF_BROADCAST) == 0) {
556 error = EADDRNOTAVAIL;
557 goto bad;
558 }
559 if ((flags & IP_ALLOWBROADCAST) == 0) {
560 error = EACCES;
561 goto bad;
562 }
563 /* don't allow broadcast messages to be fragmented */
564 if (ntohs(ip->ip_len) > ifp->if_mtu) {
565 error = EMSGSIZE;
566 goto bad;
567 }
568 m->m_flags |= M_BCAST;
569 } else
570 m->m_flags &= ~M_BCAST;
571
572 sendit:
573 if ((flags & (IP_FORWARDING|IP_NOIPNEWID)) == 0) {
574 if (m->m_pkthdr.len < IP_MINFRAGSIZE) {
575 ip->ip_id = 0;
576 } else if ((m->m_pkthdr.csum_flags & M_CSUM_TSOv4) == 0) {
577 ip->ip_id = ip_newid(ia);
578 } else {
579 /*
580 * TSO capable interfaces (typically?) increment
581 * ip_id for each segment.
582 * "allocate" enough ids here to increase the chance
583 * for them to be unique.
584 *
585 * note that the following calculation is not
586 * needed to be precise. wasting some ip_id is fine.
587 */
588
589 unsigned int segsz = m->m_pkthdr.segsz;
590 unsigned int datasz = ntohs(ip->ip_len) - hlen;
591 unsigned int num = howmany(datasz, segsz);
592
593 ip->ip_id = ip_newid_range(ia, num);
594 }
595 }
596 if (ia != NULL) {
597 ia4_release(ia, &psref_ia);
598 ia = NULL;
599 }
600
601 /*
602 * If we're doing Path MTU Discovery, we need to set DF unless
603 * the route's MTU is locked.
604 */
605 if ((flags & IP_MTUDISC) != 0 && rtmtu_nolock) {
606 ip->ip_off |= htons(IP_DF);
607 }
608
609 #ifdef IPSEC
610 if (ipsec_used) {
611 bool ipsec_done = false;
612
613 /* Perform IPsec processing, if any. */
614 error = ipsec4_output(m, inp, flags, &mtu, &natt_frag,
615 &ipsec_done);
616 if (error || ipsec_done)
617 goto done;
618 }
619 #endif
620
621 /*
622 * Run through list of hooks for output packets.
623 */
624 error = pfil_run_hooks(inet_pfil_hook, &m, ifp, PFIL_OUT);
625 if (error)
626 goto done;
627 if (m == NULL)
628 goto done;
629
630 ip = mtod(m, struct ip *);
631 hlen = ip->ip_hl << 2;
632
633 m->m_pkthdr.csum_data |= hlen << 16;
634
635 /*
636 * search for the source address structure to
637 * maintain output statistics, and verify address
638 * validity
639 */
640 KASSERT(ia == NULL);
641 sockaddr_in_init(&usrc.sin, &ip->ip_src, 0);
642 ifa = ifaof_ifpforaddr_psref(&usrc.sa, ifp, &psref_ia);
643 if (ifa != NULL)
644 ia = ifatoia(ifa);
645
646 /*
647 * Ensure we only send from a valid address.
648 * A NULL address is valid because the packet could be
649 * generated from a packet filter.
650 */
651 if (ia != NULL && (flags & IP_FORWARDING) == 0 &&
652 (error = ip_ifaddrvalid(ia)) != 0)
653 {
654 ARPLOG(LOG_ERR,
655 "refusing to send from invalid address %s (pid %d)\n",
656 ARPLOGADDR(&ip->ip_src), curproc->p_pid);
657 IP_STATINC(IP_STAT_ODROPPED);
658 if (error == 1)
659 /*
660 * Address exists, but is tentative or detached.
661 * We can't send from it because it's invalid,
662 * so we drop the packet.
663 */
664 error = 0;
665 else
666 error = EADDRNOTAVAIL;
667 goto bad;
668 }
669
670 /* Maybe skip checksums on loopback interfaces. */
671 if (IN_NEED_CHECKSUM(ifp, M_CSUM_IPv4)) {
672 m->m_pkthdr.csum_flags |= M_CSUM_IPv4;
673 }
674 sw_csum = m->m_pkthdr.csum_flags & ~ifp->if_csum_flags_tx;
675
676 /*
677 * If small enough for mtu of path, or if using TCP segmentation
678 * offload, can just send directly.
679 */
680 if (ntohs(ip->ip_len) <= mtu ||
681 (m->m_pkthdr.csum_flags & M_CSUM_TSOv4) != 0) {
682 const struct sockaddr *sa;
683
684 #if IFA_STATS
685 if (ia)
686 ia->ia_ifa.ifa_data.ifad_outbytes += ntohs(ip->ip_len);
687 #endif
688 /*
689 * Always initialize the sum to 0! Some HW assisted
690 * checksumming requires this.
691 */
692 ip->ip_sum = 0;
693
694 if ((m->m_pkthdr.csum_flags & M_CSUM_TSOv4) == 0) {
695 /*
696 * Perform any checksums that the hardware can't do
697 * for us.
698 *
699 * XXX Does any hardware require the {th,uh}_sum
700 * XXX fields to be 0?
701 */
702 if (sw_csum & M_CSUM_IPv4) {
703 KASSERT(IN_NEED_CHECKSUM(ifp, M_CSUM_IPv4));
704 ip->ip_sum = in_cksum(m, hlen);
705 m->m_pkthdr.csum_flags &= ~M_CSUM_IPv4;
706 }
707 if (sw_csum & (M_CSUM_TCPv4|M_CSUM_UDPv4)) {
708 if (IN_NEED_CHECKSUM(ifp,
709 sw_csum & (M_CSUM_TCPv4|M_CSUM_UDPv4))) {
710 in_delayed_cksum(m);
711 }
712 m->m_pkthdr.csum_flags &=
713 ~(M_CSUM_TCPv4|M_CSUM_UDPv4);
714 }
715 }
716
717 sa = (m->m_flags & M_MCAST) ? sintocsa(rdst) : sintocsa(dst);
718 if (__predict_true(
719 (m->m_pkthdr.csum_flags & M_CSUM_TSOv4) == 0 ||
720 (ifp->if_capenable & IFCAP_TSOv4) != 0)) {
721 error = ip_if_output(ifp, m, sa, rt);
722 } else {
723 error = ip_tso_output(ifp, m, sa, rt);
724 }
725 goto done;
726 }
727
728 /*
729 * We can't use HW checksumming if we're about to fragment the packet.
730 *
731 * XXX Some hardware can do this.
732 */
733 if (m->m_pkthdr.csum_flags & (M_CSUM_TCPv4|M_CSUM_UDPv4)) {
734 if (IN_NEED_CHECKSUM(ifp,
735 m->m_pkthdr.csum_flags & (M_CSUM_TCPv4|M_CSUM_UDPv4))) {
736 in_delayed_cksum(m);
737 }
738 m->m_pkthdr.csum_flags &= ~(M_CSUM_TCPv4|M_CSUM_UDPv4);
739 }
740
741 /*
742 * Too large for interface; fragment if possible.
743 * Must be able to put at least 8 bytes per fragment.
744 */
745 if (ntohs(ip->ip_off) & IP_DF) {
746 if (flags & IP_RETURNMTU) {
747 KASSERT(inp != NULL);
748 inp->inp_errormtu = mtu;
749 }
750 error = EMSGSIZE;
751 IP_STATINC(IP_STAT_CANTFRAG);
752 goto bad;
753 }
754
755 error = ip_fragment(m, ifp, mtu);
756 if (error) {
757 m = NULL;
758 goto bad;
759 }
760
761 for (; m; m = m0) {
762 m0 = m->m_nextpkt;
763 m->m_nextpkt = 0;
764 if (error) {
765 m_freem(m);
766 continue;
767 }
768 #if IFA_STATS
769 if (ia)
770 ia->ia_ifa.ifa_data.ifad_outbytes += ntohs(ip->ip_len);
771 #endif
772 /*
773 * If we get there, the packet has not been handled by
774 * IPsec whereas it should have. Now that it has been
775 * fragmented, re-inject it in ip_output so that IPsec
776 * processing can occur.
777 */
778 if (natt_frag) {
779 error = ip_output(m, opt, ro,
780 flags | IP_RAWOUTPUT | IP_NOIPNEWID,
781 imo, inp);
782 } else {
783 KASSERT((m->m_pkthdr.csum_flags &
784 (M_CSUM_UDPv4 | M_CSUM_TCPv4)) == 0);
785 error = ip_if_output(ifp, m,
786 (m->m_flags & M_MCAST) ?
787 sintocsa(rdst) : sintocsa(dst), rt);
788 }
789 }
790 if (error == 0) {
791 IP_STATINC(IP_STAT_FRAGMENTED);
792 }
793
794 done:
795 ia4_release(ia, &psref_ia);
796 rtcache_unref(rt, ro);
797 if (ro == &iproute) {
798 rtcache_free(&iproute);
799 }
800 if (mifp != NULL) {
801 if_put(mifp, &psref);
802 }
803 if (bind_need_restore)
804 curlwp_bindx(bound);
805 return error;
806
807 bad:
808 m_freem(m);
809 goto done;
810 }
811
812 int
813 ip_fragment(struct mbuf *m, struct ifnet *ifp, u_long mtu)
814 {
815 struct ip *ip, *mhip;
816 struct mbuf *m0;
817 int len, hlen, off;
818 int mhlen, firstlen;
819 struct mbuf **mnext;
820 int sw_csum = m->m_pkthdr.csum_flags;
821 int fragments = 0;
822 int error = 0;
823 int ipoff;
824 bool mff;
825
826 ip = mtod(m, struct ip *);
827 hlen = ip->ip_hl << 2;
828
829 /* XXX: Why don't we remove IP_RF? */
830 ipoff = ntohs(ip->ip_off) & ~IP_MF;
831
832 mff = (ip->ip_off & htons(IP_MF)) != 0;
833
834 if (ifp != NULL)
835 sw_csum &= ~ifp->if_csum_flags_tx;
836
837 len = (mtu - hlen) &~ 7;
838 if (len < 8) {
839 m_freem(m);
840 return EMSGSIZE;
841 }
842
843 firstlen = len;
844 mnext = &m->m_nextpkt;
845
846 /*
847 * Loop through length of segment after first fragment,
848 * make new header and copy data of each part and link onto chain.
849 */
850 m0 = m;
851 mhlen = sizeof(struct ip);
852 for (off = hlen + len; off < ntohs(ip->ip_len); off += len) {
853 MGETHDR(m, M_DONTWAIT, MT_HEADER);
854 if (m == NULL) {
855 error = ENOBUFS;
856 IP_STATINC(IP_STAT_ODROPPED);
857 goto sendorfree;
858 }
859 MCLAIM(m, m0->m_owner);
860
861 *mnext = m;
862 mnext = &m->m_nextpkt;
863
864 m->m_data += max_linkhdr;
865 mhip = mtod(m, struct ip *);
866 *mhip = *ip;
867
868 /* we must inherit MCAST and BCAST flags */
869 m->m_flags |= m0->m_flags & (M_MCAST|M_BCAST);
870
871 if (hlen > sizeof(struct ip)) {
872 mhlen = ip_optcopy(ip, mhip) + sizeof(struct ip);
873 mhip->ip_hl = mhlen >> 2;
874 }
875 m->m_len = mhlen;
876
877 mhip->ip_off = ((off - hlen) >> 3) + ipoff;
878 if (mff)
879 mhip->ip_off |= IP_MF;
880 if (off + len >= ntohs(ip->ip_len))
881 len = ntohs(ip->ip_len) - off;
882 else
883 mhip->ip_off |= IP_MF;
884 HTONS(mhip->ip_off);
885
886 mhip->ip_len = htons((u_int16_t)(len + mhlen));
887 m->m_next = m_copym(m0, off, len, M_DONTWAIT);
888 if (m->m_next == NULL) {
889 error = ENOBUFS;
890 IP_STATINC(IP_STAT_ODROPPED);
891 goto sendorfree;
892 }
893
894 m->m_pkthdr.len = mhlen + len;
895 m_reset_rcvif(m);
896
897 mhip->ip_sum = 0;
898 KASSERT((m->m_pkthdr.csum_flags & M_CSUM_IPv4) == 0);
899 if (sw_csum & M_CSUM_IPv4) {
900 mhip->ip_sum = in_cksum(m, mhlen);
901 } else {
902 /*
903 * checksum is hw-offloaded or not necessary.
904 */
905 m->m_pkthdr.csum_flags |=
906 m0->m_pkthdr.csum_flags & M_CSUM_IPv4;
907 m->m_pkthdr.csum_data |= mhlen << 16;
908 KASSERT(!(ifp != NULL &&
909 IN_NEED_CHECKSUM(ifp, M_CSUM_IPv4)) ||
910 (m->m_pkthdr.csum_flags & M_CSUM_IPv4) != 0);
911 }
912 IP_STATINC(IP_STAT_OFRAGMENTS);
913 fragments++;
914 }
915
916 /*
917 * Update first fragment by trimming what's been copied out
918 * and updating header, then send each fragment (in order).
919 */
920 m = m0;
921 m_adj(m, hlen + firstlen - ntohs(ip->ip_len));
922 m->m_pkthdr.len = hlen + firstlen;
923 ip->ip_len = htons((u_int16_t)m->m_pkthdr.len);
924 ip->ip_off |= htons(IP_MF);
925 ip->ip_sum = 0;
926 if (sw_csum & M_CSUM_IPv4) {
927 ip->ip_sum = in_cksum(m, hlen);
928 m->m_pkthdr.csum_flags &= ~M_CSUM_IPv4;
929 } else {
930 /*
931 * checksum is hw-offloaded or not necessary.
932 */
933 KASSERT(!(ifp != NULL && IN_NEED_CHECKSUM(ifp, M_CSUM_IPv4)) ||
934 (m->m_pkthdr.csum_flags & M_CSUM_IPv4) != 0);
935 KASSERT(M_CSUM_DATA_IPv4_IPHL(m->m_pkthdr.csum_data) >=
936 sizeof(struct ip));
937 }
938
939 sendorfree:
940 /*
941 * If there is no room for all the fragments, don't queue
942 * any of them.
943 */
944 if (ifp != NULL) {
945 IFQ_LOCK(&ifp->if_snd);
946 if (ifp->if_snd.ifq_maxlen - ifp->if_snd.ifq_len < fragments &&
947 error == 0) {
948 error = ENOBUFS;
949 IP_STATINC(IP_STAT_ODROPPED);
950 IFQ_INC_DROPS(&ifp->if_snd);
951 }
952 IFQ_UNLOCK(&ifp->if_snd);
953 }
954 if (error) {
955 for (m = m0; m; m = m0) {
956 m0 = m->m_nextpkt;
957 m->m_nextpkt = NULL;
958 m_freem(m);
959 }
960 }
961
962 return error;
963 }
964
965 /*
966 * Process a delayed payload checksum calculation.
967 */
968 void
969 in_delayed_cksum(struct mbuf *m)
970 {
971 struct ip *ip;
972 u_int16_t csum, offset;
973
974 ip = mtod(m, struct ip *);
975 offset = ip->ip_hl << 2;
976 csum = in4_cksum(m, 0, offset, ntohs(ip->ip_len) - offset);
977 if (csum == 0 && (m->m_pkthdr.csum_flags & M_CSUM_UDPv4) != 0)
978 csum = 0xffff;
979
980 offset += M_CSUM_DATA_IPv4_OFFSET(m->m_pkthdr.csum_data);
981
982 if ((offset + sizeof(u_int16_t)) > m->m_len) {
983 /* This happen when ip options were inserted
984 printf("in_delayed_cksum: pullup len %d off %d proto %d\n",
985 m->m_len, offset, ip->ip_p);
986 */
987 m_copyback(m, offset, sizeof(csum), (void *) &csum);
988 } else
989 *(u_int16_t *)(mtod(m, char *) + offset) = csum;
990 }
991
992 /*
993 * Determine the maximum length of the options to be inserted;
994 * we would far rather allocate too much space rather than too little.
995 */
996 u_int
997 ip_optlen(struct inpcb *inp)
998 {
999 struct mbuf *m = inp->inp_options;
1000
1001 if (m && m->m_len > offsetof(struct ipoption, ipopt_dst)) {
1002 return (m->m_len - offsetof(struct ipoption, ipopt_dst));
1003 }
1004 return 0;
1005 }
1006
1007 /*
1008 * Insert IP options into preformed packet.
1009 * Adjust IP destination as required for IP source routing,
1010 * as indicated by a non-zero in_addr at the start of the options.
1011 */
1012 static struct mbuf *
1013 ip_insertoptions(struct mbuf *m, struct mbuf *opt, int *phlen)
1014 {
1015 struct ipoption *p = mtod(opt, struct ipoption *);
1016 struct mbuf *n;
1017 struct ip *ip = mtod(m, struct ip *);
1018 unsigned optlen;
1019
1020 optlen = opt->m_len - sizeof(p->ipopt_dst);
1021 if (optlen + ntohs(ip->ip_len) > IP_MAXPACKET)
1022 return m; /* XXX should fail */
1023 if (!in_nullhost(p->ipopt_dst))
1024 ip->ip_dst = p->ipopt_dst;
1025 if (M_READONLY(m) || M_LEADINGSPACE(m) < optlen) {
1026 MGETHDR(n, M_DONTWAIT, MT_HEADER);
1027 if (n == NULL)
1028 return m;
1029 MCLAIM(n, m->m_owner);
1030 M_MOVE_PKTHDR(n, m);
1031 m->m_len -= sizeof(struct ip);
1032 m->m_data += sizeof(struct ip);
1033 n->m_next = m;
1034 m = n;
1035 m->m_len = optlen + sizeof(struct ip);
1036 m->m_data += max_linkhdr;
1037 bcopy((void *)ip, mtod(m, void *), sizeof(struct ip));
1038 } else {
1039 m->m_data -= optlen;
1040 m->m_len += optlen;
1041 memmove(mtod(m, void *), ip, sizeof(struct ip));
1042 }
1043 m->m_pkthdr.len += optlen;
1044 ip = mtod(m, struct ip *);
1045 bcopy((void *)p->ipopt_list, (void *)(ip + 1), (unsigned)optlen);
1046 *phlen = sizeof(struct ip) + optlen;
1047 ip->ip_len = htons(ntohs(ip->ip_len) + optlen);
1048 return m;
1049 }
1050
1051 /*
1052 * Copy options from ipsrc to ipdst, omitting those not copied during
1053 * fragmentation.
1054 */
1055 int
1056 ip_optcopy(struct ip *ipsrc, struct ip *ipdst)
1057 {
1058 u_char *cp, *dp;
1059 int opt, optlen, cnt;
1060
1061 cp = (u_char *)(ipsrc + 1);
1062 dp = (u_char *)(ipdst + 1);
1063 cnt = (ipsrc->ip_hl << 2) - sizeof(struct ip);
1064 for (; cnt > 0; cnt -= optlen, cp += optlen) {
1065 opt = cp[0];
1066 if (opt == IPOPT_EOL)
1067 break;
1068 if (opt == IPOPT_NOP) {
1069 /* Preserve for IP mcast tunnel's LSRR alignment. */
1070 *dp++ = IPOPT_NOP;
1071 optlen = 1;
1072 continue;
1073 }
1074
1075 KASSERT(cnt >= IPOPT_OLEN + sizeof(*cp));
1076 optlen = cp[IPOPT_OLEN];
1077 KASSERT(optlen >= IPOPT_OLEN + sizeof(*cp) && optlen < cnt);
1078
1079 /* Invalid lengths should have been caught by ip_dooptions. */
1080 if (optlen > cnt)
1081 optlen = cnt;
1082 if (IPOPT_COPIED(opt)) {
1083 bcopy((void *)cp, (void *)dp, (unsigned)optlen);
1084 dp += optlen;
1085 }
1086 }
1087
1088 for (optlen = dp - (u_char *)(ipdst+1); optlen & 0x3; optlen++) {
1089 *dp++ = IPOPT_EOL;
1090 }
1091
1092 return optlen;
1093 }
1094
1095 /*
1096 * IP socket option processing.
1097 */
1098 int
1099 ip_ctloutput(int op, struct socket *so, struct sockopt *sopt)
1100 {
1101 struct inpcb *inp = sotoinpcb(so);
1102 struct ip *ip = &inp->inp_ip;
1103 int inpflags = inp->inp_flags;
1104 int optval = 0, error = 0;
1105 struct in_pktinfo pktinfo;
1106
1107 KASSERT(solocked(so));
1108
1109 if (sopt->sopt_level != IPPROTO_IP) {
1110 if (sopt->sopt_level == SOL_SOCKET && sopt->sopt_name == SO_NOHEADER)
1111 return 0;
1112 return ENOPROTOOPT;
1113 }
1114
1115 switch (op) {
1116 case PRCO_SETOPT:
1117 switch (sopt->sopt_name) {
1118 case IP_OPTIONS:
1119 #ifdef notyet
1120 case IP_RETOPTS:
1121 #endif
1122 error = ip_pcbopts(inp, sopt);
1123 break;
1124
1125 case IP_TOS:
1126 case IP_TTL:
1127 case IP_MINTTL:
1128 case IP_RECVOPTS:
1129 case IP_RECVRETOPTS:
1130 case IP_RECVDSTADDR:
1131 case IP_RECVIF:
1132 case IP_RECVPKTINFO:
1133 case IP_RECVTTL:
1134 error = sockopt_getint(sopt, &optval);
1135 if (error)
1136 break;
1137
1138 switch (sopt->sopt_name) {
1139 case IP_TOS:
1140 ip->ip_tos = optval;
1141 break;
1142
1143 case IP_TTL:
1144 ip->ip_ttl = optval;
1145 break;
1146
1147 case IP_MINTTL:
1148 if (optval > 0 && optval <= MAXTTL)
1149 inp->inp_ip_minttl = optval;
1150 else
1151 error = EINVAL;
1152 break;
1153 #define OPTSET(bit) \
1154 if (optval) \
1155 inpflags |= bit; \
1156 else \
1157 inpflags &= ~bit;
1158
1159 case IP_RECVOPTS:
1160 OPTSET(INP_RECVOPTS);
1161 break;
1162
1163 case IP_RECVPKTINFO:
1164 OPTSET(INP_RECVPKTINFO);
1165 break;
1166
1167 case IP_RECVRETOPTS:
1168 OPTSET(INP_RECVRETOPTS);
1169 break;
1170
1171 case IP_RECVDSTADDR:
1172 OPTSET(INP_RECVDSTADDR);
1173 break;
1174
1175 case IP_RECVIF:
1176 OPTSET(INP_RECVIF);
1177 break;
1178
1179 case IP_RECVTTL:
1180 OPTSET(INP_RECVTTL);
1181 break;
1182 }
1183 break;
1184 case IP_PKTINFO:
1185 error = sockopt_getint(sopt, &optval);
1186 if (!error) {
1187 /* Linux compatibility */
1188 OPTSET(INP_RECVPKTINFO);
1189 break;
1190 }
1191 error = sockopt_get(sopt, &pktinfo, sizeof(pktinfo));
1192 if (error)
1193 break;
1194
1195 if (pktinfo.ipi_ifindex == 0) {
1196 inp->inp_prefsrcip = pktinfo.ipi_addr;
1197 break;
1198 }
1199
1200 /* Solaris compatibility */
1201 struct ifnet *ifp;
1202 struct in_ifaddr *ia;
1203 int s;
1204
1205 /* pick up primary address */
1206 s = pserialize_read_enter();
1207 ifp = if_byindex(pktinfo.ipi_ifindex);
1208 if (ifp == NULL) {
1209 pserialize_read_exit(s);
1210 error = EADDRNOTAVAIL;
1211 break;
1212 }
1213 ia = in_get_ia_from_ifp(ifp);
1214 if (ia == NULL) {
1215 pserialize_read_exit(s);
1216 error = EADDRNOTAVAIL;
1217 break;
1218 }
1219 inp->inp_prefsrcip = IA_SIN(ia)->sin_addr;
1220 pserialize_read_exit(s);
1221 break;
1222 break;
1223 #undef OPTSET
1224
1225 case IP_MULTICAST_IF:
1226 case IP_MULTICAST_TTL:
1227 case IP_MULTICAST_LOOP:
1228 case IP_ADD_MEMBERSHIP:
1229 case IP_DROP_MEMBERSHIP:
1230 error = ip_setmoptions(&inp->inp_moptions, sopt);
1231 break;
1232
1233 case IP_PORTRANGE:
1234 error = sockopt_getint(sopt, &optval);
1235 if (error)
1236 break;
1237
1238 switch (optval) {
1239 case IP_PORTRANGE_DEFAULT:
1240 case IP_PORTRANGE_HIGH:
1241 inpflags &= ~(INP_LOWPORT);
1242 break;
1243
1244 case IP_PORTRANGE_LOW:
1245 inpflags |= INP_LOWPORT;
1246 break;
1247
1248 default:
1249 error = EINVAL;
1250 break;
1251 }
1252 break;
1253
1254 case IP_PORTALGO:
1255 error = sockopt_getint(sopt, &optval);
1256 if (error)
1257 break;
1258
1259 error = portalgo_algo_index_select(
1260 (struct inpcb_hdr *)inp, optval);
1261 break;
1262
1263 #if defined(IPSEC)
1264 case IP_IPSEC_POLICY:
1265 if (ipsec_enabled) {
1266 error = ipsec4_set_policy(inp, sopt->sopt_name,
1267 sopt->sopt_data, sopt->sopt_size,
1268 curlwp->l_cred);
1269 break;
1270 }
1271 /*FALLTHROUGH*/
1272 #endif /* IPSEC */
1273
1274 default:
1275 error = ENOPROTOOPT;
1276 break;
1277 }
1278 break;
1279
1280 case PRCO_GETOPT:
1281 switch (sopt->sopt_name) {
1282 case IP_OPTIONS:
1283 case IP_RETOPTS: {
1284 struct mbuf *mopts = inp->inp_options;
1285
1286 if (mopts) {
1287 struct mbuf *m;
1288
1289 m = m_copym(mopts, 0, M_COPYALL, M_DONTWAIT);
1290 if (m == NULL) {
1291 error = ENOBUFS;
1292 break;
1293 }
1294 error = sockopt_setmbuf(sopt, m);
1295 }
1296 break;
1297 }
1298 case IP_TOS:
1299 case IP_TTL:
1300 case IP_MINTTL:
1301 case IP_RECVOPTS:
1302 case IP_RECVRETOPTS:
1303 case IP_RECVDSTADDR:
1304 case IP_RECVIF:
1305 case IP_RECVPKTINFO:
1306 case IP_RECVTTL:
1307 case IP_ERRORMTU:
1308 switch (sopt->sopt_name) {
1309 case IP_TOS:
1310 optval = ip->ip_tos;
1311 break;
1312
1313 case IP_TTL:
1314 optval = ip->ip_ttl;
1315 break;
1316
1317 case IP_MINTTL:
1318 optval = inp->inp_ip_minttl;
1319 break;
1320
1321 case IP_ERRORMTU:
1322 optval = inp->inp_errormtu;
1323 break;
1324
1325 #define OPTBIT(bit) (inpflags & bit ? 1 : 0)
1326
1327 case IP_RECVOPTS:
1328 optval = OPTBIT(INP_RECVOPTS);
1329 break;
1330
1331 case IP_RECVPKTINFO:
1332 optval = OPTBIT(INP_RECVPKTINFO);
1333 break;
1334
1335 case IP_RECVRETOPTS:
1336 optval = OPTBIT(INP_RECVRETOPTS);
1337 break;
1338
1339 case IP_RECVDSTADDR:
1340 optval = OPTBIT(INP_RECVDSTADDR);
1341 break;
1342
1343 case IP_RECVIF:
1344 optval = OPTBIT(INP_RECVIF);
1345 break;
1346
1347 case IP_RECVTTL:
1348 optval = OPTBIT(INP_RECVTTL);
1349 break;
1350 }
1351 error = sockopt_setint(sopt, optval);
1352 break;
1353
1354 case IP_PKTINFO:
1355 switch (sopt->sopt_size) {
1356 case sizeof(int):
1357 /* Linux compatibility */
1358 optval = OPTBIT(INP_RECVPKTINFO);
1359 error = sockopt_setint(sopt, optval);
1360 break;
1361 case sizeof(struct in_pktinfo):
1362 /* Solaris compatibility */
1363 pktinfo.ipi_ifindex = 0;
1364 pktinfo.ipi_addr = inp->inp_prefsrcip;
1365 error = sockopt_set(sopt, &pktinfo,
1366 sizeof(pktinfo));
1367 break;
1368 default:
1369 /*
1370 * While size is stuck at 0, and, later, if
1371 * the caller doesn't use an exactly sized
1372 * recipient for the data, default to Linux
1373 * compatibility
1374 */
1375 optval = OPTBIT(INP_RECVPKTINFO);
1376 error = sockopt_setint(sopt, optval);
1377 break;
1378 }
1379 break;
1380
1381 #if 0 /* defined(IPSEC) */
1382 case IP_IPSEC_POLICY:
1383 {
1384 struct mbuf *m = NULL;
1385
1386 /* XXX this will return EINVAL as sopt is empty */
1387 error = ipsec4_get_policy(inp, sopt->sopt_data,
1388 sopt->sopt_size, &m);
1389 if (error == 0)
1390 error = sockopt_setmbuf(sopt, m);
1391 break;
1392 }
1393 #endif /*IPSEC*/
1394
1395 case IP_MULTICAST_IF:
1396 case IP_MULTICAST_TTL:
1397 case IP_MULTICAST_LOOP:
1398 case IP_ADD_MEMBERSHIP:
1399 case IP_DROP_MEMBERSHIP:
1400 error = ip_getmoptions(inp->inp_moptions, sopt);
1401 break;
1402
1403 case IP_PORTRANGE:
1404 if (inpflags & INP_LOWPORT)
1405 optval = IP_PORTRANGE_LOW;
1406 else
1407 optval = IP_PORTRANGE_DEFAULT;
1408 error = sockopt_setint(sopt, optval);
1409 break;
1410
1411 case IP_PORTALGO:
1412 optval = inp->inp_portalgo;
1413 error = sockopt_setint(sopt, optval);
1414 break;
1415
1416 default:
1417 error = ENOPROTOOPT;
1418 break;
1419 }
1420 break;
1421 }
1422
1423 if (!error) {
1424 inp->inp_flags = inpflags;
1425 }
1426 return error;
1427 }
1428
1429 static int
1430 ip_pktinfo_prepare(const struct in_pktinfo *pktinfo, struct ip_pktopts *pktopts,
1431 int *flags, kauth_cred_t cred)
1432 {
1433 struct ip_moptions *imo;
1434 int error = 0;
1435 bool addrset = false;
1436
1437 if (!in_nullhost(pktinfo->ipi_addr)) {
1438 pktopts->ippo_laddr.sin_addr = pktinfo->ipi_addr;
1439 /* EADDRNOTAVAIL? */
1440 error = in_pcbbindableaddr(&pktopts->ippo_laddr, cred);
1441 if (error != 0)
1442 return error;
1443 addrset = true;
1444 }
1445
1446 if (pktinfo->ipi_ifindex != 0) {
1447 if (!addrset) {
1448 struct ifnet *ifp;
1449 struct in_ifaddr *ia;
1450 int s;
1451
1452 /* pick up primary address */
1453 s = pserialize_read_enter();
1454 ifp = if_byindex(pktinfo->ipi_ifindex);
1455 if (ifp == NULL) {
1456 pserialize_read_exit(s);
1457 return EADDRNOTAVAIL;
1458 }
1459 ia = in_get_ia_from_ifp(ifp);
1460 if (ia == NULL) {
1461 pserialize_read_exit(s);
1462 return EADDRNOTAVAIL;
1463 }
1464 pktopts->ippo_laddr.sin_addr = IA_SIN(ia)->sin_addr;
1465 pserialize_read_exit(s);
1466 }
1467
1468 /*
1469 * If specified ipi_ifindex,
1470 * use copied or locally initialized ip_moptions.
1471 * Original ip_moptions must not be modified.
1472 */
1473 imo = &pktopts->ippo_imobuf; /* local buf in pktopts */
1474 if (pktopts->ippo_imo != NULL) {
1475 memcpy(imo, pktopts->ippo_imo, sizeof(*imo));
1476 } else {
1477 memset(imo, 0, sizeof(*imo));
1478 imo->imo_multicast_ttl = IP_DEFAULT_MULTICAST_TTL;
1479 imo->imo_multicast_loop = IP_DEFAULT_MULTICAST_LOOP;
1480 }
1481 imo->imo_multicast_if_index = pktinfo->ipi_ifindex;
1482 pktopts->ippo_imo = imo;
1483 *flags |= IP_ROUTETOIFINDEX;
1484 }
1485 return error;
1486 }
1487
1488 /*
1489 * Set up IP outgoing packet options. Even if control is NULL,
1490 * pktopts->ippo_laddr and pktopts->ippo_imo are set and used.
1491 */
1492 int
1493 ip_setpktopts(struct mbuf *control, struct ip_pktopts *pktopts, int *flags,
1494 struct inpcb *inp, kauth_cred_t cred)
1495 {
1496 struct cmsghdr *cm;
1497 struct in_pktinfo pktinfo;
1498 int error;
1499
1500 pktopts->ippo_imo = inp->inp_moptions;
1501
1502 struct in_addr *ia = in_nullhost(inp->inp_prefsrcip) ? &inp->inp_laddr :
1503 &inp->inp_prefsrcip;
1504 sockaddr_in_init(&pktopts->ippo_laddr, ia, 0);
1505
1506 if (control == NULL)
1507 return 0;
1508
1509 /*
1510 * XXX: Currently, we assume all the optional information is
1511 * stored in a single mbuf.
1512 */
1513 if (control->m_next)
1514 return EINVAL;
1515
1516 for (; control->m_len > 0;
1517 control->m_data += CMSG_ALIGN(cm->cmsg_len),
1518 control->m_len -= CMSG_ALIGN(cm->cmsg_len)) {
1519 cm = mtod(control, struct cmsghdr *);
1520 if ((control->m_len < sizeof(*cm)) ||
1521 (cm->cmsg_len == 0) ||
1522 (cm->cmsg_len > control->m_len)) {
1523 return EINVAL;
1524 }
1525 if (cm->cmsg_level != IPPROTO_IP)
1526 continue;
1527
1528 switch (cm->cmsg_type) {
1529 case IP_PKTINFO:
1530 if (cm->cmsg_len != CMSG_LEN(sizeof(pktinfo)))
1531 return EINVAL;
1532 memcpy(&pktinfo, CMSG_DATA(cm), sizeof(pktinfo));
1533 error = ip_pktinfo_prepare(&pktinfo, pktopts, flags,
1534 cred);
1535 if (error)
1536 return error;
1537 break;
1538 case IP_SENDSRCADDR: /* FreeBSD compatibility */
1539 if (cm->cmsg_len != CMSG_LEN(sizeof(struct in_addr)))
1540 return EINVAL;
1541 pktinfo.ipi_ifindex = 0;
1542 pktinfo.ipi_addr =
1543 ((struct in_pktinfo *)CMSG_DATA(cm))->ipi_addr;
1544 error = ip_pktinfo_prepare(&pktinfo, pktopts, flags,
1545 cred);
1546 if (error)
1547 return error;
1548 break;
1549 default:
1550 return ENOPROTOOPT;
1551 }
1552 }
1553 return 0;
1554 }
1555
1556 /*
1557 * Set up IP options in pcb for insertion in output packets.
1558 * Store in mbuf with pointer in pcbopt, adding pseudo-option
1559 * with destination address if source routed.
1560 */
1561 static int
1562 ip_pcbopts(struct inpcb *inp, const struct sockopt *sopt)
1563 {
1564 struct mbuf *m;
1565 const u_char *cp;
1566 u_char *dp;
1567 int cnt;
1568
1569 KASSERT(inp_locked(inp));
1570
1571 /* Turn off any old options. */
1572 if (inp->inp_options) {
1573 m_free(inp->inp_options);
1574 }
1575 inp->inp_options = NULL;
1576 if ((cnt = sopt->sopt_size) == 0) {
1577 /* Only turning off any previous options. */
1578 return 0;
1579 }
1580 cp = sopt->sopt_data;
1581
1582 #ifndef __vax__
1583 if (cnt % sizeof(int32_t))
1584 return EINVAL;
1585 #endif
1586
1587 m = m_get(M_DONTWAIT, MT_SOOPTS);
1588 if (m == NULL)
1589 return ENOBUFS;
1590
1591 dp = mtod(m, u_char *);
1592 memset(dp, 0, sizeof(struct in_addr));
1593 dp += sizeof(struct in_addr);
1594 m->m_len = sizeof(struct in_addr);
1595
1596 /*
1597 * IP option list according to RFC791. Each option is of the form
1598 *
1599 * [optval] [olen] [(olen - 2) data bytes]
1600 *
1601 * We validate the list and copy options to an mbuf for prepending
1602 * to data packets. The IP first-hop destination address will be
1603 * stored before actual options and is zero if unset.
1604 */
1605 while (cnt > 0) {
1606 uint8_t optval, olen, offset;
1607
1608 optval = cp[IPOPT_OPTVAL];
1609
1610 if (optval == IPOPT_EOL || optval == IPOPT_NOP) {
1611 olen = 1;
1612 } else {
1613 if (cnt < IPOPT_OLEN + 1)
1614 goto bad;
1615
1616 olen = cp[IPOPT_OLEN];
1617 if (olen < IPOPT_OLEN + 1 || olen > cnt)
1618 goto bad;
1619 }
1620
1621 if (optval == IPOPT_LSRR || optval == IPOPT_SSRR) {
1622 /*
1623 * user process specifies route as:
1624 * ->A->B->C->D
1625 * D must be our final destination (but we can't
1626 * check that since we may not have connected yet).
1627 * A is first hop destination, which doesn't appear in
1628 * actual IP option, but is stored before the options.
1629 */
1630 if (olen < IPOPT_OFFSET + 1 + sizeof(struct in_addr))
1631 goto bad;
1632
1633 offset = cp[IPOPT_OFFSET];
1634 memcpy(mtod(m, u_char *), cp + IPOPT_OFFSET + 1,
1635 sizeof(struct in_addr));
1636
1637 cp += sizeof(struct in_addr);
1638 cnt -= sizeof(struct in_addr);
1639 olen -= sizeof(struct in_addr);
1640
1641 if (m->m_len + olen > MAX_IPOPTLEN + sizeof(struct in_addr))
1642 goto bad;
1643
1644 memcpy(dp, cp, olen);
1645 dp[IPOPT_OPTVAL] = optval;
1646 dp[IPOPT_OLEN] = olen;
1647 dp[IPOPT_OFFSET] = offset;
1648 break;
1649 } else {
1650 if (m->m_len + olen > MAX_IPOPTLEN + sizeof(struct in_addr))
1651 goto bad;
1652
1653 memcpy(dp, cp, olen);
1654 break;
1655 }
1656
1657 dp += olen;
1658 m->m_len += olen;
1659
1660 if (optval == IPOPT_EOL)
1661 break;
1662
1663 cp += olen;
1664 cnt -= olen;
1665 }
1666
1667 inp->inp_options = m;
1668 return 0;
1669
1670 bad:
1671 (void)m_free(m);
1672 return EINVAL;
1673 }
1674
1675 /*
1676 * following RFC1724 section 3.3, 0.0.0.0/8 is interpreted as interface index.
1677 * Must be called in a pserialize critical section.
1678 */
1679 static struct ifnet *
1680 ip_multicast_if(struct in_addr *a, int *ifindexp)
1681 {
1682 int ifindex;
1683 struct ifnet *ifp = NULL;
1684 struct in_ifaddr *ia;
1685
1686 if (ifindexp)
1687 *ifindexp = 0;
1688 if (ntohl(a->s_addr) >> 24 == 0) {
1689 ifindex = ntohl(a->s_addr) & 0xffffff;
1690 ifp = if_byindex(ifindex);
1691 if (!ifp)
1692 return NULL;
1693 if (ifindexp)
1694 *ifindexp = ifindex;
1695 } else {
1696 IN_ADDRHASH_READER_FOREACH(ia, a->s_addr) {
1697 if (in_hosteq(ia->ia_addr.sin_addr, *a) &&
1698 (ia->ia_ifp->if_flags & IFF_MULTICAST) != 0) {
1699 ifp = ia->ia_ifp;
1700 if (if_is_deactivated(ifp))
1701 ifp = NULL;
1702 break;
1703 }
1704 }
1705 }
1706 return ifp;
1707 }
1708
1709 static int
1710 ip_getoptval(const struct sockopt *sopt, u_int8_t *val, u_int maxval)
1711 {
1712 u_int tval;
1713 u_char cval;
1714 int error;
1715
1716 if (sopt == NULL)
1717 return EINVAL;
1718
1719 switch (sopt->sopt_size) {
1720 case sizeof(u_char):
1721 error = sockopt_get(sopt, &cval, sizeof(u_char));
1722 tval = cval;
1723 break;
1724
1725 case sizeof(u_int):
1726 error = sockopt_get(sopt, &tval, sizeof(u_int));
1727 break;
1728
1729 default:
1730 error = EINVAL;
1731 }
1732
1733 if (error)
1734 return error;
1735
1736 if (tval > maxval)
1737 return EINVAL;
1738
1739 *val = tval;
1740 return 0;
1741 }
1742
1743 static int
1744 ip_get_membership(const struct sockopt *sopt, struct ifnet **ifp,
1745 struct psref *psref, struct in_addr *ia, bool add)
1746 {
1747 int error;
1748 struct ip_mreq mreq;
1749
1750 error = sockopt_get(sopt, &mreq, sizeof(mreq));
1751 if (error)
1752 return error;
1753
1754 if (!IN_MULTICAST(mreq.imr_multiaddr.s_addr))
1755 return EINVAL;
1756
1757 memcpy(ia, &mreq.imr_multiaddr, sizeof(*ia));
1758
1759 if (in_nullhost(mreq.imr_interface)) {
1760 union {
1761 struct sockaddr dst;
1762 struct sockaddr_in dst4;
1763 } u;
1764 struct route ro;
1765
1766 if (!add) {
1767 *ifp = NULL;
1768 return 0;
1769 }
1770 /*
1771 * If no interface address was provided, use the interface of
1772 * the route to the given multicast address.
1773 */
1774 struct rtentry *rt;
1775 memset(&ro, 0, sizeof(ro));
1776
1777 sockaddr_in_init(&u.dst4, ia, 0);
1778 error = rtcache_setdst(&ro, &u.dst);
1779 if (error != 0)
1780 return error;
1781 *ifp = (rt = rtcache_init(&ro)) != NULL ? rt->rt_ifp : NULL;
1782 if (*ifp != NULL) {
1783 if (if_is_deactivated(*ifp))
1784 *ifp = NULL;
1785 else
1786 if_acquire(*ifp, psref);
1787 }
1788 rtcache_unref(rt, &ro);
1789 rtcache_free(&ro);
1790 } else {
1791 int s = pserialize_read_enter();
1792 *ifp = ip_multicast_if(&mreq.imr_interface, NULL);
1793 if (!add && *ifp == NULL) {
1794 pserialize_read_exit(s);
1795 return EADDRNOTAVAIL;
1796 }
1797 if (*ifp != NULL) {
1798 if (if_is_deactivated(*ifp))
1799 *ifp = NULL;
1800 else
1801 if_acquire(*ifp, psref);
1802 }
1803 pserialize_read_exit(s);
1804 }
1805 return 0;
1806 }
1807
1808 /*
1809 * Add a multicast group membership.
1810 * Group must be a valid IP multicast address.
1811 */
1812 static int
1813 ip_add_membership(struct ip_moptions *imo, const struct sockopt *sopt)
1814 {
1815 struct ifnet *ifp = NULL; // XXX: gcc [ppc]
1816 struct in_addr ia;
1817 int i, error, bound;
1818 struct psref psref;
1819
1820 /* imo is protected by solock or referenced only by the caller */
1821
1822 bound = curlwp_bind();
1823 if (sopt->sopt_size == sizeof(struct ip_mreq))
1824 error = ip_get_membership(sopt, &ifp, &psref, &ia, true);
1825 else
1826 #ifdef INET6
1827 error = ip6_get_membership(sopt, &ifp, &psref, &ia, sizeof(ia));
1828 #else
1829 error = EINVAL;
1830 goto out;
1831 #endif
1832
1833 if (error)
1834 goto out;
1835
1836 /*
1837 * See if we found an interface, and confirm that it
1838 * supports multicast.
1839 */
1840 if (ifp == NULL || (ifp->if_flags & IFF_MULTICAST) == 0) {
1841 error = EADDRNOTAVAIL;
1842 goto out;
1843 }
1844
1845 /*
1846 * See if the membership already exists or if all the
1847 * membership slots are full.
1848 */
1849 for (i = 0; i < imo->imo_num_memberships; ++i) {
1850 if (imo->imo_membership[i]->inm_ifp == ifp &&
1851 in_hosteq(imo->imo_membership[i]->inm_addr, ia))
1852 break;
1853 }
1854 if (i < imo->imo_num_memberships) {
1855 error = EADDRINUSE;
1856 goto out;
1857 }
1858
1859 if (i == IP_MAX_MEMBERSHIPS) {
1860 error = ETOOMANYREFS;
1861 goto out;
1862 }
1863
1864 /*
1865 * Everything looks good; add a new record to the multicast
1866 * address list for the given interface.
1867 */
1868 IFNET_LOCK(ifp);
1869 imo->imo_membership[i] = in_addmulti(&ia, ifp);
1870 IFNET_UNLOCK(ifp);
1871 if (imo->imo_membership[i] == NULL) {
1872 error = ENOBUFS;
1873 goto out;
1874 }
1875
1876 ++imo->imo_num_memberships;
1877 error = 0;
1878 out:
1879 if_put(ifp, &psref);
1880 curlwp_bindx(bound);
1881 return error;
1882 }
1883
1884 /*
1885 * Drop a multicast group membership.
1886 * Group must be a valid IP multicast address.
1887 */
1888 static int
1889 ip_drop_membership(struct ip_moptions *imo, const struct sockopt *sopt)
1890 {
1891 struct in_addr ia = { .s_addr = 0 }; // XXX: gcc [ppc]
1892 struct ifnet *ifp = NULL; // XXX: gcc [ppc]
1893 int i, error, bound;
1894 struct psref psref;
1895
1896 /* imo is protected by solock or referenced only by the caller */
1897
1898 bound = curlwp_bind();
1899 if (sopt->sopt_size == sizeof(struct ip_mreq))
1900 error = ip_get_membership(sopt, &ifp, &psref, &ia, false);
1901 else {
1902 #ifdef INET6
1903 error = ip6_get_membership(sopt, &ifp, &psref, &ia, sizeof(ia));
1904 #else
1905 error = EINVAL;
1906 goto out;
1907 #endif
1908 }
1909
1910 if (error)
1911 goto out;
1912
1913 /*
1914 * Find the membership in the membership array.
1915 */
1916 for (i = 0; i < imo->imo_num_memberships; ++i) {
1917 if ((ifp == NULL ||
1918 imo->imo_membership[i]->inm_ifp == ifp) &&
1919 in_hosteq(imo->imo_membership[i]->inm_addr, ia))
1920 break;
1921 }
1922 if (i == imo->imo_num_memberships) {
1923 error = EADDRNOTAVAIL;
1924 goto out;
1925 }
1926
1927 /*
1928 * Give up the multicast address record to which the
1929 * membership points.
1930 */
1931 IFNET_LOCK(imo->imo_membership[i]->inm_ifp);
1932 in_delmulti(imo->imo_membership[i]);
1933 IFNET_UNLOCK(imo->imo_membership[i]->inm_ifp);
1934
1935 /*
1936 * Remove the gap in the membership array.
1937 */
1938 for (++i; i < imo->imo_num_memberships; ++i)
1939 imo->imo_membership[i-1] = imo->imo_membership[i];
1940 --imo->imo_num_memberships;
1941 error = 0;
1942 out:
1943 if_put(ifp, &psref);
1944 curlwp_bindx(bound);
1945 return error;
1946 }
1947
1948 /*
1949 * Set the IP multicast options in response to user setsockopt().
1950 */
1951 int
1952 ip_setmoptions(struct ip_moptions **pimo, const struct sockopt *sopt)
1953 {
1954 struct ip_moptions *imo = *pimo;
1955 struct in_addr addr;
1956 struct ifnet *ifp;
1957 int ifindex, error = 0;
1958
1959 /* The passed imo isn't NULL, it should be protected by solock */
1960
1961 if (!imo) {
1962 /*
1963 * No multicast option buffer attached to the pcb;
1964 * allocate one and initialize to default values.
1965 */
1966 imo = kmem_intr_alloc(sizeof(*imo), KM_NOSLEEP);
1967 if (imo == NULL)
1968 return ENOBUFS;
1969
1970 imo->imo_multicast_if_index = 0;
1971 imo->imo_multicast_addr.s_addr = INADDR_ANY;
1972 imo->imo_multicast_ttl = IP_DEFAULT_MULTICAST_TTL;
1973 imo->imo_multicast_loop = IP_DEFAULT_MULTICAST_LOOP;
1974 imo->imo_num_memberships = 0;
1975 *pimo = imo;
1976 }
1977
1978 switch (sopt->sopt_name) {
1979 case IP_MULTICAST_IF: {
1980 int s;
1981 /*
1982 * Select the interface for outgoing multicast packets.
1983 */
1984 error = sockopt_get(sopt, &addr, sizeof(addr));
1985 if (error)
1986 break;
1987
1988 /*
1989 * INADDR_ANY is used to remove a previous selection.
1990 * When no interface is selected, a default one is
1991 * chosen every time a multicast packet is sent.
1992 */
1993 if (in_nullhost(addr)) {
1994 imo->imo_multicast_if_index = 0;
1995 break;
1996 }
1997 /*
1998 * The selected interface is identified by its local
1999 * IP address. Find the interface and confirm that
2000 * it supports multicasting.
2001 */
2002 s = pserialize_read_enter();
2003 ifp = ip_multicast_if(&addr, &ifindex);
2004 if (ifp == NULL || (ifp->if_flags & IFF_MULTICAST) == 0) {
2005 pserialize_read_exit(s);
2006 error = EADDRNOTAVAIL;
2007 break;
2008 }
2009 imo->imo_multicast_if_index = ifp->if_index;
2010 pserialize_read_exit(s);
2011 if (ifindex)
2012 imo->imo_multicast_addr = addr;
2013 else
2014 imo->imo_multicast_addr.s_addr = INADDR_ANY;
2015 break;
2016 }
2017
2018 case IP_MULTICAST_TTL:
2019 /*
2020 * Set the IP time-to-live for outgoing multicast packets.
2021 */
2022 error = ip_getoptval(sopt, &imo->imo_multicast_ttl, MAXTTL);
2023 break;
2024
2025 case IP_MULTICAST_LOOP:
2026 /*
2027 * Set the loopback flag for outgoing multicast packets.
2028 * Must be zero or one.
2029 */
2030 error = ip_getoptval(sopt, &imo->imo_multicast_loop, 1);
2031 break;
2032
2033 case IP_ADD_MEMBERSHIP: /* IPV6_JOIN_GROUP */
2034 error = ip_add_membership(imo, sopt);
2035 break;
2036
2037 case IP_DROP_MEMBERSHIP: /* IPV6_LEAVE_GROUP */
2038 error = ip_drop_membership(imo, sopt);
2039 break;
2040
2041 default:
2042 error = EOPNOTSUPP;
2043 break;
2044 }
2045
2046 /*
2047 * If all options have default values, no need to keep the mbuf.
2048 */
2049 if (imo->imo_multicast_if_index == 0 &&
2050 imo->imo_multicast_ttl == IP_DEFAULT_MULTICAST_TTL &&
2051 imo->imo_multicast_loop == IP_DEFAULT_MULTICAST_LOOP &&
2052 imo->imo_num_memberships == 0) {
2053 kmem_intr_free(imo, sizeof(*imo));
2054 *pimo = NULL;
2055 }
2056
2057 return error;
2058 }
2059
2060 /*
2061 * Return the IP multicast options in response to user getsockopt().
2062 */
2063 int
2064 ip_getmoptions(struct ip_moptions *imo, struct sockopt *sopt)
2065 {
2066 struct in_addr addr;
2067 uint8_t optval;
2068 int error = 0;
2069
2070 /* imo is protected by solock or refereced only by the caller */
2071
2072 switch (sopt->sopt_name) {
2073 case IP_MULTICAST_IF:
2074 if (imo == NULL || imo->imo_multicast_if_index == 0)
2075 addr = zeroin_addr;
2076 else if (imo->imo_multicast_addr.s_addr) {
2077 /* return the value user has set */
2078 addr = imo->imo_multicast_addr;
2079 } else {
2080 struct ifnet *ifp;
2081 struct in_ifaddr *ia = NULL;
2082 int s = pserialize_read_enter();
2083
2084 ifp = if_byindex(imo->imo_multicast_if_index);
2085 if (ifp != NULL) {
2086 ia = in_get_ia_from_ifp(ifp);
2087 }
2088 addr = ia ? ia->ia_addr.sin_addr : zeroin_addr;
2089 pserialize_read_exit(s);
2090 }
2091 error = sockopt_set(sopt, &addr, sizeof(addr));
2092 break;
2093
2094 case IP_MULTICAST_TTL:
2095 optval = imo ? imo->imo_multicast_ttl
2096 : IP_DEFAULT_MULTICAST_TTL;
2097
2098 error = sockopt_set(sopt, &optval, sizeof(optval));
2099 break;
2100
2101 case IP_MULTICAST_LOOP:
2102 optval = imo ? imo->imo_multicast_loop
2103 : IP_DEFAULT_MULTICAST_LOOP;
2104
2105 error = sockopt_set(sopt, &optval, sizeof(optval));
2106 break;
2107
2108 default:
2109 error = EOPNOTSUPP;
2110 }
2111
2112 return error;
2113 }
2114
2115 /*
2116 * Discard the IP multicast options.
2117 */
2118 void
2119 ip_freemoptions(struct ip_moptions *imo)
2120 {
2121 int i;
2122
2123 /* The owner of imo (inp) should be protected by solock */
2124
2125 if (imo != NULL) {
2126 for (i = 0; i < imo->imo_num_memberships; ++i) {
2127 struct in_multi *inm = imo->imo_membership[i];
2128 struct ifnet *ifp = inm->inm_ifp;
2129 IFNET_LOCK(ifp);
2130 in_delmulti(inm);
2131 /* ifp should not leave thanks to solock */
2132 IFNET_UNLOCK(ifp);
2133 }
2134
2135 kmem_intr_free(imo, sizeof(*imo));
2136 }
2137 }
2138
2139 /*
2140 * Routine called from ip_output() to loop back a copy of an IP multicast
2141 * packet to the input queue of a specified interface. Note that this
2142 * calls the output routine of the loopback "driver", but with an interface
2143 * pointer that might NOT be lo0ifp -- easier than replicating that code here.
2144 */
2145 static void
2146 ip_mloopback(struct ifnet *ifp, struct mbuf *m, const struct sockaddr_in *dst)
2147 {
2148 struct ip *ip;
2149 struct mbuf *copym;
2150
2151 copym = m_copypacket(m, M_DONTWAIT);
2152 if (copym != NULL &&
2153 (copym->m_flags & M_EXT || copym->m_len < sizeof(struct ip)))
2154 copym = m_pullup(copym, sizeof(struct ip));
2155 if (copym == NULL)
2156 return;
2157 /*
2158 * We don't bother to fragment if the IP length is greater
2159 * than the interface's MTU. Can this possibly matter?
2160 */
2161 ip = mtod(copym, struct ip *);
2162
2163 if (copym->m_pkthdr.csum_flags & (M_CSUM_TCPv4|M_CSUM_UDPv4)) {
2164 in_delayed_cksum(copym);
2165 copym->m_pkthdr.csum_flags &=
2166 ~(M_CSUM_TCPv4|M_CSUM_UDPv4);
2167 }
2168
2169 ip->ip_sum = 0;
2170 ip->ip_sum = in_cksum(copym, ip->ip_hl << 2);
2171 KERNEL_LOCK_UNLESS_NET_MPSAFE();
2172 (void)looutput(ifp, copym, sintocsa(dst), NULL);
2173 KERNEL_UNLOCK_UNLESS_NET_MPSAFE();
2174 }
2175
2176 /*
2177 * Ensure sending address is valid.
2178 * Returns 0 on success, -1 if an error should be sent back or 1
2179 * if the packet could be dropped without error (protocol dependent).
2180 */
2181 static int
2182 ip_ifaddrvalid(const struct in_ifaddr *ia)
2183 {
2184
2185 if (ia->ia_addr.sin_addr.s_addr == INADDR_ANY)
2186 return 0;
2187
2188 if (ia->ia4_flags & IN_IFF_DUPLICATED)
2189 return -1;
2190 else if (ia->ia4_flags & (IN_IFF_TENTATIVE | IN_IFF_DETACHED))
2191 return 1;
2192
2193 return 0;
2194 }
2195