ip_input.c revision 1.346
1/*	$NetBSD: ip_input.c,v 1.346 2016/12/08 06:25:43 ozaki-r 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, 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_input.c	8.2 (Berkeley) 1/4/94
91 */
92
93#include <sys/cdefs.h>
94__KERNEL_RCSID(0, "$NetBSD: ip_input.c,v 1.346 2016/12/08 06:25:43 ozaki-r Exp $");
95
96#ifdef _KERNEL_OPT
97#include "opt_inet.h"
98#include "opt_compat_netbsd.h"
99#include "opt_gateway.h"
100#include "opt_ipsec.h"
101#include "opt_mrouting.h"
102#include "opt_mbuftrace.h"
103#include "opt_inet_csum.h"
104#include "opt_net_mpsafe.h"
105#endif
106
107#include "arp.h"
108
109#include <sys/param.h>
110#include <sys/systm.h>
111#include <sys/cpu.h>
112#include <sys/mbuf.h>
113#include <sys/domain.h>
114#include <sys/protosw.h>
115#include <sys/socket.h>
116#include <sys/socketvar.h>
117#include <sys/errno.h>
118#include <sys/time.h>
119#include <sys/kernel.h>
120#include <sys/pool.h>
121#include <sys/sysctl.h>
122#include <sys/kauth.h>
123
124#include <net/if.h>
125#include <net/if_dl.h>
126#include <net/route.h>
127#include <net/pktqueue.h>
128#include <net/pfil.h>
129
130#include <netinet/in.h>
131#include <netinet/in_systm.h>
132#include <netinet/ip.h>
133#include <netinet/in_pcb.h>
134#include <netinet/in_proto.h>
135#include <netinet/in_var.h>
136#include <netinet/ip_var.h>
137#include <netinet/ip_private.h>
138#include <netinet/ip_icmp.h>
139/* just for gif_ttl */
140#include <netinet/in_gif.h>
141#include "gif.h"
142#include <net/if_gre.h>
143#include "gre.h"
144
145#ifdef MROUTING
146#include <netinet/ip_mroute.h>
147#endif
148#include <netinet/portalgo.h>
149
150#ifdef IPSEC
151#include <netipsec/ipsec.h>
152#endif
153
154#ifndef	IPFORWARDING
155#ifdef GATEWAY
156#define	IPFORWARDING	1	/* forward IP packets not for us */
157#else /* GATEWAY */
158#define	IPFORWARDING	0	/* don't forward IP packets not for us */
159#endif /* GATEWAY */
160#endif /* IPFORWARDING */
161#ifndef	IPSENDREDIRECTS
162#define	IPSENDREDIRECTS	1
163#endif
164#ifndef IPFORWSRCRT
165#define	IPFORWSRCRT	1	/* forward source-routed packets */
166#endif
167#ifndef IPALLOWSRCRT
168#define	IPALLOWSRCRT	1	/* allow source-routed packets */
169#endif
170#ifndef IPMTUDISC
171#define IPMTUDISC	1
172#endif
173#ifndef IPMTUDISCTIMEOUT
174#define IPMTUDISCTIMEOUT (10 * 60)	/* as per RFC 1191 */
175#endif
176
177#ifdef COMPAT_50
178#include <compat/sys/time.h>
179#include <compat/sys/socket.h>
180#endif
181
182/*
183 * Note: DIRECTED_BROADCAST is handled this way so that previous
184 * configuration using this option will Just Work.
185 */
186#ifndef IPDIRECTEDBCAST
187#ifdef DIRECTED_BROADCAST
188#define IPDIRECTEDBCAST	1
189#else
190#define	IPDIRECTEDBCAST	0
191#endif /* DIRECTED_BROADCAST */
192#endif /* IPDIRECTEDBCAST */
193int	ipforwarding = IPFORWARDING;
194int	ipsendredirects = IPSENDREDIRECTS;
195int	ip_defttl = IPDEFTTL;
196int	ip_forwsrcrt = IPFORWSRCRT;
197int	ip_directedbcast = IPDIRECTEDBCAST;
198int	ip_allowsrcrt = IPALLOWSRCRT;
199int	ip_mtudisc = IPMTUDISC;
200int	ip_mtudisc_timeout = IPMTUDISCTIMEOUT;
201#ifdef DIAGNOSTIC
202int	ipprintfs = 0;
203#endif
204
205int	ip_do_randomid = 0;
206
207/*
208 * XXX - Setting ip_checkinterface mostly implements the receive side of
209 * the Strong ES model described in RFC 1122, but since the routing table
210 * and transmit implementation do not implement the Strong ES model,
211 * setting this to 1 results in an odd hybrid.
212 *
213 * XXX - ip_checkinterface currently must be disabled if you use ipnat
214 * to translate the destination address to another local interface.
215 *
216 * XXX - ip_checkinterface must be disabled if you add IP aliases
217 * to the loopback interface instead of the interface where the
218 * packets for those addresses are received.
219 */
220static int		ip_checkinterface	__read_mostly = 0;
221
222struct rttimer_queue *ip_mtudisc_timeout_q = NULL;
223
224pktqueue_t *		ip_pktq			__read_mostly;
225pfil_head_t *		inet_pfil_hook		__read_mostly;
226ipid_state_t *		ip_ids			__read_mostly;
227percpu_t *		ipstat_percpu		__read_mostly;
228
229static percpu_t		*ipforward_rt_percpu	__cacheline_aligned;
230
231uint16_t ip_id;
232
233#ifdef INET_CSUM_COUNTERS
234#include <sys/device.h>
235
236struct evcnt ip_hwcsum_bad = EVCNT_INITIALIZER(EVCNT_TYPE_MISC,
237    NULL, "inet", "hwcsum bad");
238struct evcnt ip_hwcsum_ok = EVCNT_INITIALIZER(EVCNT_TYPE_MISC,
239    NULL, "inet", "hwcsum ok");
240struct evcnt ip_swcsum = EVCNT_INITIALIZER(EVCNT_TYPE_MISC,
241    NULL, "inet", "swcsum");
242
243#define	INET_CSUM_COUNTER_INCR(ev)	(ev)->ev_count++
244
245EVCNT_ATTACH_STATIC(ip_hwcsum_bad);
246EVCNT_ATTACH_STATIC(ip_hwcsum_ok);
247EVCNT_ATTACH_STATIC(ip_swcsum);
248
249#else
250
251#define	INET_CSUM_COUNTER_INCR(ev)	/* nothing */
252
253#endif /* INET_CSUM_COUNTERS */
254
255/*
256 * We need to save the IP options in case a protocol wants to respond
257 * to an incoming packet over the same route if the packet got here
258 * using IP source routing.  This allows connection establishment and
259 * maintenance when the remote end is on a network that is not known
260 * to us.
261 */
262
263static int	ip_nhops = 0;
264
265static	struct ip_srcrt {
266	struct	in_addr dst;			/* final destination */
267	char	nop;				/* one NOP to align */
268	char	srcopt[IPOPT_OFFSET + 1];	/* OPTVAL, OLEN and OFFSET */
269	struct	in_addr route[MAX_IPOPTLEN/sizeof(struct in_addr)];
270} ip_srcrt;
271
272static int ip_drainwanted;
273
274struct	sockaddr_in ipaddr = {
275	.sin_len = sizeof(ipaddr),
276	.sin_family = AF_INET,
277};
278
279static void save_rte(u_char *, struct in_addr);
280
281#ifdef MBUFTRACE
282struct mowner ip_rx_mowner = MOWNER_INIT("internet", "rx");
283struct mowner ip_tx_mowner = MOWNER_INIT("internet", "tx");
284#endif
285
286static void		ipintr(void *);
287static void		ip_input(struct mbuf *);
288static void		ip_forward(struct mbuf *, int, struct ifnet *);
289static bool		ip_dooptions(struct mbuf *);
290static struct in_ifaddr *ip_rtaddr(struct in_addr, struct psref *);
291static void		sysctl_net_inet_ip_setup(struct sysctllog **);
292
293static struct in_ifaddr	*ip_match_our_address(struct ifnet *, struct ip *,
294			    int *);
295static struct in_ifaddr	*ip_match_our_address_broadcast(struct ifnet *,
296			    struct ip *);
297
298#ifdef NET_MPSAFE
299#define	SOFTNET_LOCK()		mutex_enter(softnet_lock)
300#define	SOFTNET_UNLOCK()	mutex_exit(softnet_lock)
301#else
302#define	SOFTNET_LOCK()		KASSERT(mutex_owned(softnet_lock))
303#define	SOFTNET_UNLOCK()	KASSERT(mutex_owned(softnet_lock))
304#endif
305
306/*
307 * IP initialization: fill in IP protocol switch table.
308 * All protocols not implemented in kernel go to raw IP protocol handler.
309 */
310void
311ip_init(void)
312{
313	const struct protosw *pr;
314
315	in_init();
316	sysctl_net_inet_ip_setup(NULL);
317
318	pr = pffindproto(PF_INET, IPPROTO_RAW, SOCK_RAW);
319	KASSERT(pr != NULL);
320
321	ip_pktq = pktq_create(IFQ_MAXLEN, ipintr, NULL);
322	KASSERT(ip_pktq != NULL);
323
324	for (u_int i = 0; i < IPPROTO_MAX; i++) {
325		ip_protox[i] = pr - inetsw;
326	}
327	for (pr = inetdomain.dom_protosw;
328	    pr < inetdomain.dom_protoswNPROTOSW; pr++)
329		if (pr->pr_domain->dom_family == PF_INET &&
330		    pr->pr_protocol && pr->pr_protocol != IPPROTO_RAW)
331			ip_protox[pr->pr_protocol] = pr - inetsw;
332
333	ip_reass_init();
334
335	ip_ids = ip_id_init();
336	ip_id = time_uptime & 0xfffff;
337
338	ip_mtudisc_timeout_q = rt_timer_queue_create(ip_mtudisc_timeout);
339#ifdef GATEWAY
340	ipflow_init();
341#endif
342
343	/* Register our Packet Filter hook. */
344	inet_pfil_hook = pfil_head_create(PFIL_TYPE_AF, (void *)AF_INET);
345	KASSERT(inet_pfil_hook != NULL);
346
347#ifdef MBUFTRACE
348	MOWNER_ATTACH(&ip_tx_mowner);
349	MOWNER_ATTACH(&ip_rx_mowner);
350#endif /* MBUFTRACE */
351
352	ipstat_percpu = percpu_alloc(sizeof(uint64_t) * IP_NSTATS);
353
354	ipforward_rt_percpu = percpu_alloc(sizeof(struct route));
355	if (ipforward_rt_percpu == NULL)
356		panic("failed to allocate ipforward_rt_percpu");
357}
358
359static struct in_ifaddr *
360ip_match_our_address(struct ifnet *ifp, struct ip *ip, int *downmatch)
361{
362	struct in_ifaddr *ia = NULL;
363	int checkif;
364
365	/*
366	 * Enable a consistency check between the destination address
367	 * and the arrival interface for a unicast packet (the RFC 1122
368	 * strong ES model) if IP forwarding is disabled and the packet
369	 * is not locally generated.
370	 *
371	 * XXX - Checking also should be disabled if the destination
372	 * address is ipnat'ed to a different interface.
373	 *
374	 * XXX - Checking is incompatible with IP aliases added
375	 * to the loopback interface instead of the interface where
376	 * the packets are received.
377	 *
378	 * XXX - We need to add a per ifaddr flag for this so that
379	 * we get finer grain control.
380	 */
381	checkif = ip_checkinterface && (ipforwarding == 0) &&
382	    (ifp->if_flags & IFF_LOOPBACK) == 0;
383
384	IN_ADDRHASH_READER_FOREACH(ia, ip->ip_dst.s_addr) {
385		if (in_hosteq(ia->ia_addr.sin_addr, ip->ip_dst)) {
386			if (ia->ia4_flags & IN_IFF_NOTREADY)
387				continue;
388			if (checkif && ia->ia_ifp != ifp)
389				continue;
390			if ((ia->ia_ifp->if_flags & IFF_UP) != 0 &&
391			    (ia->ia4_flags & IN_IFF_DETACHED) == 0)
392				break;
393			else
394				(*downmatch)++;
395		}
396	}
397
398	return ia;
399}
400
401static struct in_ifaddr *
402ip_match_our_address_broadcast(struct ifnet *ifp, struct ip *ip)
403{
404	struct in_ifaddr *ia = NULL;
405	struct ifaddr *ifa;
406
407	IFADDR_READER_FOREACH(ifa, ifp) {
408		if (ifa->ifa_addr->sa_family != AF_INET)
409			continue;
410		ia = ifatoia(ifa);
411		if (ia->ia4_flags & (IN_IFF_NOTREADY | IN_IFF_DETACHED))
412			continue;
413		if (in_hosteq(ip->ip_dst, ia->ia_broadaddr.sin_addr) ||
414		    in_hosteq(ip->ip_dst, ia->ia_netbroadcast) ||
415		    /*
416		     * Look for all-0's host part (old broadcast addr),
417		     * either for subnet or net.
418		     */
419		    ip->ip_dst.s_addr == ia->ia_subnet ||
420		    ip->ip_dst.s_addr == ia->ia_net)
421			goto matched;
422		/*
423		 * An interface with IP address zero accepts
424		 * all packets that arrive on that interface.
425		 */
426		if (in_nullhost(ia->ia_addr.sin_addr))
427			goto matched;
428	}
429	ia = NULL;
430
431matched:
432	return ia;
433}
434
435/*
436 * IP software interrupt routine.
437 */
438static void
439ipintr(void *arg __unused)
440{
441	struct mbuf *m;
442
443	KASSERT(cpu_softintr_p());
444
445#ifndef NET_MPSAFE
446	mutex_enter(softnet_lock);
447#endif
448	while ((m = pktq_dequeue(ip_pktq)) != NULL) {
449		ip_input(m);
450	}
451#ifndef NET_MPSAFE
452	mutex_exit(softnet_lock);
453#endif
454}
455
456/*
457 * IP input routine.  Checksum and byte swap header.  If fragmented
458 * try to reassemble.  Process options.  Pass to next level.
459 */
460static void
461ip_input(struct mbuf *m)
462{
463	struct ip *ip = NULL;
464	struct in_ifaddr *ia = NULL;
465	int hlen = 0, len;
466	int downmatch;
467	int srcrt = 0;
468	ifnet_t *ifp;
469	struct psref psref;
470	int s;
471
472	KASSERTMSG(cpu_softintr_p(), "ip_input: not in the software "
473	    "interrupt handler; synchronization assumptions violated");
474
475	MCLAIM(m, &ip_rx_mowner);
476	KASSERT((m->m_flags & M_PKTHDR) != 0);
477
478	ifp = m_get_rcvif_psref(m, &psref);
479	if (__predict_false(ifp == NULL))
480		goto out;
481
482	/*
483	 * If no IP addresses have been set yet but the interfaces
484	 * are receiving, can't do anything with incoming packets yet.
485	 * Note: we pre-check without locks held.
486	 */
487	if (IN_ADDRLIST_READER_EMPTY())
488		goto out;
489	IP_STATINC(IP_STAT_TOTAL);
490
491	/*
492	 * If the IP header is not aligned, slurp it up into a new
493	 * mbuf with space for link headers, in the event we forward
494	 * it.  Otherwise, if it is aligned, make sure the entire
495	 * base IP header is in the first mbuf of the chain.
496	 */
497	if (IP_HDR_ALIGNED_P(mtod(m, void *)) == 0) {
498		if ((m = m_copyup(m, sizeof(struct ip),
499				  (max_linkhdr + 3) & ~3)) == NULL) {
500			/* XXXJRT new stat, please */
501			IP_STATINC(IP_STAT_TOOSMALL);
502			goto out;
503		}
504	} else if (__predict_false(m->m_len < sizeof (struct ip))) {
505		if ((m = m_pullup(m, sizeof (struct ip))) == NULL) {
506			IP_STATINC(IP_STAT_TOOSMALL);
507			goto out;
508		}
509	}
510	ip = mtod(m, struct ip *);
511	if (ip->ip_v != IPVERSION) {
512		IP_STATINC(IP_STAT_BADVERS);
513		goto out;
514	}
515	hlen = ip->ip_hl << 2;
516	if (hlen < sizeof(struct ip)) {	/* minimum header length */
517		IP_STATINC(IP_STAT_BADHLEN);
518		goto out;
519	}
520	if (hlen > m->m_len) {
521		if ((m = m_pullup(m, hlen)) == NULL) {
522			IP_STATINC(IP_STAT_BADHLEN);
523			goto out;
524		}
525		ip = mtod(m, struct ip *);
526	}
527
528	/*
529	 * RFC1122: packets with a multicast source address are
530	 * not allowed.
531	 */
532	if (IN_MULTICAST(ip->ip_src.s_addr)) {
533		IP_STATINC(IP_STAT_BADADDR);
534		goto out;
535	}
536
537	/* 127/8 must not appear on wire - RFC1122 */
538	if ((ntohl(ip->ip_dst.s_addr) >> IN_CLASSA_NSHIFT) == IN_LOOPBACKNET ||
539	    (ntohl(ip->ip_src.s_addr) >> IN_CLASSA_NSHIFT) == IN_LOOPBACKNET) {
540		if ((ifp->if_flags & IFF_LOOPBACK) == 0) {
541			IP_STATINC(IP_STAT_BADADDR);
542			goto out;
543		}
544	}
545
546	switch (m->m_pkthdr.csum_flags &
547		((ifp->if_csum_flags_rx & M_CSUM_IPv4) |
548		 M_CSUM_IPv4_BAD)) {
549	case M_CSUM_IPv4|M_CSUM_IPv4_BAD:
550		INET_CSUM_COUNTER_INCR(&ip_hwcsum_bad);
551		IP_STATINC(IP_STAT_BADSUM);
552		goto out;
553
554	case M_CSUM_IPv4:
555		/* Checksum was okay. */
556		INET_CSUM_COUNTER_INCR(&ip_hwcsum_ok);
557		break;
558
559	default:
560		/*
561		 * Must compute it ourselves.  Maybe skip checksum on
562		 * loopback interfaces.
563		 */
564		if (__predict_true(!(ifp->if_flags & IFF_LOOPBACK) ||
565		    ip_do_loopback_cksum)) {
566			INET_CSUM_COUNTER_INCR(&ip_swcsum);
567			if (in_cksum(m, hlen) != 0) {
568				IP_STATINC(IP_STAT_BADSUM);
569				goto out;
570			}
571		}
572		break;
573	}
574
575	/* Retrieve the packet length. */
576	len = ntohs(ip->ip_len);
577
578	/*
579	 * Check for additional length bogosity
580	 */
581	if (len < hlen) {
582		IP_STATINC(IP_STAT_BADLEN);
583		goto out;
584	}
585
586	/*
587	 * Check that the amount of data in the buffers
588	 * is as at least much as the IP header would have us expect.
589	 * Trim mbufs if longer than we expect.
590	 * Drop packet if shorter than we expect.
591	 */
592	if (m->m_pkthdr.len < len) {
593		IP_STATINC(IP_STAT_TOOSHORT);
594		goto out;
595	}
596	if (m->m_pkthdr.len > len) {
597		if (m->m_len == m->m_pkthdr.len) {
598			m->m_len = len;
599			m->m_pkthdr.len = len;
600		} else
601			m_adj(m, len - m->m_pkthdr.len);
602	}
603
604	/*
605	 * Assume that we can create a fast-forward IP flow entry
606	 * based on this packet.
607	 */
608	m->m_flags |= M_CANFASTFWD;
609
610	/*
611	 * Run through list of hooks for input packets.  If there are any
612	 * filters which require that additional packets in the flow are
613	 * not fast-forwarded, they must clear the M_CANFASTFWD flag.
614	 * Note that filters must _never_ set this flag, as another filter
615	 * in the list may have previously cleared it.
616	 */
617#if defined(IPSEC)
618	if (!ipsec_used || !ipsec_indone(m))
619#else
620	if (1)
621#endif
622	{
623		struct in_addr odst = ip->ip_dst;
624		bool freed;
625
626		freed = pfil_run_hooks(inet_pfil_hook, &m, ifp, PFIL_IN) != 0;
627		if (freed || m == NULL) {
628			m = NULL;
629			goto out;
630		}
631		ip = mtod(m, struct ip *);
632		hlen = ip->ip_hl << 2;
633
634		/*
635		 * XXX The setting of "srcrt" here is to prevent ip_forward()
636		 * from generating ICMP redirects for packets that have
637		 * been redirected by a hook back out on to the same LAN that
638		 * they came from and is not an indication that the packet
639		 * is being inffluenced by source routing options.  This
640		 * allows things like
641		 * "rdr tlp0 0/0 port 80 -> 1.1.1.200 3128 tcp"
642		 * where tlp0 is both on the 1.1.1.0/24 network and is the
643		 * default route for hosts on 1.1.1.0/24.  Of course this
644		 * also requires a "map tlp0 ..." to complete the story.
645		 * One might argue whether or not this kind of network config.
646		 * should be supported in this manner...
647		 */
648		srcrt = (odst.s_addr != ip->ip_dst.s_addr);
649	}
650
651#ifdef ALTQ
652	/* XXX Temporary until ALTQ is changed to use a pfil hook */
653	if (altq_input) {
654		SOFTNET_LOCK();
655		if ((*altq_input)(m, AF_INET) == 0) {
656			/* Packet dropped by traffic conditioner. */
657			SOFTNET_UNLOCK();
658			m = NULL;
659			goto out;
660		}
661		SOFTNET_UNLOCK();
662	}
663#endif
664
665	/*
666	 * Process options and, if not destined for us,
667	 * ship it on.  ip_dooptions returns 1 when an
668	 * error was detected (causing an icmp message
669	 * to be sent and the original packet to be freed).
670	 */
671	ip_nhops = 0;		/* for source routed packets */
672	if (hlen > sizeof (struct ip) && ip_dooptions(m)) {
673		m = NULL;
674		goto out;
675	}
676
677	/*
678	 * Check our list of addresses, to see if the packet is for us.
679	 *
680	 * Traditional 4.4BSD did not consult IFF_UP at all.
681	 * The behavior here is to treat addresses on !IFF_UP interface
682	 * or IN_IFF_NOTREADY addresses as not mine.
683	 */
684	downmatch = 0;
685	s = pserialize_read_enter();
686	ia = ip_match_our_address(ifp, ip, &downmatch);
687	if (ia != NULL) {
688		pserialize_read_exit(s);
689		goto ours;
690	}
691
692	if (ifp->if_flags & IFF_BROADCAST) {
693		ia = ip_match_our_address_broadcast(ifp, ip);
694		if (ia != NULL) {
695			pserialize_read_exit(s);
696			goto ours;
697		}
698	}
699	pserialize_read_exit(s);
700
701	if (IN_MULTICAST(ip->ip_dst.s_addr)) {
702#ifdef MROUTING
703		extern struct socket *ip_mrouter;
704
705		if (ip_mrouter) {
706			/*
707			 * If we are acting as a multicast router, all
708			 * incoming multicast packets are passed to the
709			 * kernel-level multicast forwarding function.
710			 * The packet is returned (relatively) intact; if
711			 * ip_mforward() returns a non-zero value, the packet
712			 * must be discarded, else it may be accepted below.
713			 *
714			 * (The IP ident field is put in the same byte order
715			 * as expected when ip_mforward() is called from
716			 * ip_output().)
717			 */
718			SOFTNET_LOCK();
719			if (ip_mforward(m, ifp) != 0) {
720				SOFTNET_UNLOCK();
721				IP_STATINC(IP_STAT_CANTFORWARD);
722				goto out;
723			}
724			SOFTNET_UNLOCK();
725
726			/*
727			 * The process-level routing demon needs to receive
728			 * all multicast IGMP packets, whether or not this
729			 * host belongs to their destination groups.
730			 */
731			if (ip->ip_p == IPPROTO_IGMP) {
732				goto ours;
733			}
734			IP_STATINC(IP_STAT_CANTFORWARD);
735		}
736#endif
737		/*
738		 * See if we belong to the destination multicast group on the
739		 * arrival interface.
740		 */
741		if (!in_multi_group(ip->ip_dst, ifp, 0)) {
742			IP_STATINC(IP_STAT_CANTFORWARD);
743			goto out;
744		}
745		goto ours;
746	}
747	if (ip->ip_dst.s_addr == INADDR_BROADCAST ||
748	    in_nullhost(ip->ip_dst))
749		goto ours;
750
751	/*
752	 * Not for us; forward if possible and desirable.
753	 */
754	if (ipforwarding == 0) {
755		m_put_rcvif_psref(ifp, &psref);
756		IP_STATINC(IP_STAT_CANTFORWARD);
757		m_freem(m);
758	} else {
759		/*
760		 * If ip_dst matched any of my address on !IFF_UP interface,
761		 * and there's no IFF_UP interface that matches ip_dst,
762		 * send icmp unreach.  Forwarding it will result in in-kernel
763		 * forwarding loop till TTL goes to 0.
764		 */
765		if (downmatch) {
766			m_put_rcvif_psref(ifp, &psref);
767			icmp_error(m, ICMP_UNREACH, ICMP_UNREACH_HOST, 0, 0);
768			IP_STATINC(IP_STAT_CANTFORWARD);
769			return;
770		}
771#ifdef IPSEC
772		/* Perform IPsec, if any. */
773		if (ipsec_used) {
774			SOFTNET_LOCK();
775			if (ipsec4_input(m, IP_FORWARDING |
776			    (ip_directedbcast ? IP_ALLOWBROADCAST : 0)) != 0) {
777				SOFTNET_UNLOCK();
778				goto out;
779			}
780			SOFTNET_UNLOCK();
781		}
782#endif
783		ip_forward(m, srcrt, ifp);
784		m_put_rcvif_psref(ifp, &psref);
785	}
786	return;
787
788ours:
789	m_put_rcvif_psref(ifp, &psref);
790	ifp = NULL;
791
792	/*
793	 * If offset or IP_MF are set, must reassemble.
794	 */
795	if (ip->ip_off & ~htons(IP_DF|IP_RF)) {
796		/*
797		 * Pass to IP reassembly mechanism.
798		 */
799		if (ip_reass_packet(&m, ip) != 0) {
800			/* Failed; invalid fragment(s) or packet. */
801			goto out;
802		}
803		if (m == NULL) {
804			/* More fragments should come; silently return. */
805			goto out;
806		}
807		/*
808		 * Reassembly is done, we have the final packet.
809		 * Updated cached data in local variable(s).
810		 */
811		ip = mtod(m, struct ip *);
812		hlen = ip->ip_hl << 2;
813	}
814
815#ifdef IPSEC
816	/*
817	 * Enforce IPsec policy checking if we are seeing last header.
818	 * Note that we do not visit this with protocols with PCB layer
819	 * code - like UDP/TCP/raw IP.
820	 */
821	if (ipsec_used &&
822	    (inetsw[ip_protox[ip->ip_p]].pr_flags & PR_LASTHDR) != 0) {
823		SOFTNET_LOCK();
824		if (ipsec4_input(m, 0) != 0) {
825			SOFTNET_UNLOCK();
826			goto out;
827		}
828		SOFTNET_UNLOCK();
829	}
830#endif
831
832	/*
833	 * Switch out to protocol's input routine.
834	 */
835#if IFA_STATS
836	if (ia && ip) {
837		struct in_ifaddr *_ia;
838		/*
839		 * Keep a reference from ip_match_our_address with psref
840		 * is expensive, so explore ia here again.
841		 */
842		s = pserialize_read_enter();
843		_ia = in_get_ia(ip->ip_dst);
844		_ia->ia_ifa.ifa_data.ifad_inbytes += ntohs(ip->ip_len);
845		pserialize_read_exit(s);
846	}
847#endif
848	IP_STATINC(IP_STAT_DELIVERED);
849
850	const int off = hlen, nh = ip->ip_p;
851
852	SOFTNET_LOCK();
853	(*inetsw[ip_protox[nh]].pr_input)(m, off, nh);
854	SOFTNET_UNLOCK();
855	return;
856
857out:
858	m_put_rcvif_psref(ifp, &psref);
859	if (m != NULL)
860		m_freem(m);
861}
862
863/*
864 * IP timer processing.
865 */
866void
867ip_slowtimo(void)
868{
869
870	mutex_enter(softnet_lock);
871	KERNEL_LOCK(1, NULL);
872
873	ip_reass_slowtimo();
874
875	KERNEL_UNLOCK_ONE(NULL);
876	mutex_exit(softnet_lock);
877}
878
879/*
880 * IP drain processing.
881 */
882void
883ip_drain(void)
884{
885
886	KERNEL_LOCK(1, NULL);
887	ip_reass_drain();
888	KERNEL_UNLOCK_ONE(NULL);
889}
890
891/*
892 * ip_dooptions: perform option processing on a datagram, possibly discarding
893 * it if bad options are encountered, or forwarding it if source-routed.
894 *
895 * => Returns true if packet has been forwarded/freed.
896 * => Returns false if the packet should be processed further.
897 */
898static bool
899ip_dooptions(struct mbuf *m)
900{
901	struct ip *ip = mtod(m, struct ip *);
902	u_char *cp, *cp0;
903	struct ip_timestamp *ipt;
904	struct in_ifaddr *ia;
905	int opt, optlen, cnt, off, code, type = ICMP_PARAMPROB, forward = 0;
906	struct in_addr dst;
907	n_time ntime;
908	struct ifaddr *ifa;
909	int s;
910
911	dst = ip->ip_dst;
912	cp = (u_char *)(ip + 1);
913	cnt = (ip->ip_hl << 2) - sizeof (struct ip);
914	for (; cnt > 0; cnt -= optlen, cp += optlen) {
915		opt = cp[IPOPT_OPTVAL];
916		if (opt == IPOPT_EOL)
917			break;
918		if (opt == IPOPT_NOP)
919			optlen = 1;
920		else {
921			if (cnt < IPOPT_OLEN + sizeof(*cp)) {
922				code = &cp[IPOPT_OLEN] - (u_char *)ip;
923				goto bad;
924			}
925			optlen = cp[IPOPT_OLEN];
926			if (optlen < IPOPT_OLEN + sizeof(*cp) || optlen > cnt) {
927				code = &cp[IPOPT_OLEN] - (u_char *)ip;
928				goto bad;
929			}
930		}
931		switch (opt) {
932
933		default:
934			break;
935
936		/*
937		 * Source routing with record.
938		 * Find interface with current destination address.
939		 * If none on this machine then drop if strictly routed,
940		 * or do nothing if loosely routed.
941		 * Record interface address and bring up next address
942		 * component.  If strictly routed make sure next
943		 * address is on directly accessible net.
944		 */
945		case IPOPT_LSRR:
946		case IPOPT_SSRR: {
947			struct psref psref;
948			if (ip_allowsrcrt == 0) {
949				type = ICMP_UNREACH;
950				code = ICMP_UNREACH_NET_PROHIB;
951				goto bad;
952			}
953			if (optlen < IPOPT_OFFSET + sizeof(*cp)) {
954				code = &cp[IPOPT_OLEN] - (u_char *)ip;
955				goto bad;
956			}
957			if ((off = cp[IPOPT_OFFSET]) < IPOPT_MINOFF) {
958				code = &cp[IPOPT_OFFSET] - (u_char *)ip;
959				goto bad;
960			}
961			ipaddr.sin_addr = ip->ip_dst;
962
963			s = pserialize_read_enter();
964			ifa = ifa_ifwithaddr(sintosa(&ipaddr));
965			if (ifa == NULL) {
966				pserialize_read_exit(s);
967				if (opt == IPOPT_SSRR) {
968					type = ICMP_UNREACH;
969					code = ICMP_UNREACH_SRCFAIL;
970					goto bad;
971				}
972				/*
973				 * Loose routing, and not at next destination
974				 * yet; nothing to do except forward.
975				 */
976				break;
977			}
978			pserialize_read_exit(s);
979
980			off--;			/* 0 origin */
981			if ((off + sizeof(struct in_addr)) > optlen) {
982				/*
983				 * End of source route.  Should be for us.
984				 */
985				save_rte(cp, ip->ip_src);
986				break;
987			}
988			/*
989			 * locate outgoing interface
990			 */
991			memcpy((void *)&ipaddr.sin_addr, (void *)(cp + off),
992			    sizeof(ipaddr.sin_addr));
993			if (opt == IPOPT_SSRR) {
994				ifa = ifa_ifwithladdr_psref(sintosa(&ipaddr),
995				    &psref);
996				if (ifa != NULL)
997					ia = ifatoia(ifa);
998				else
999					ia = NULL;
1000			} else {
1001				ia = ip_rtaddr(ipaddr.sin_addr, &psref);
1002			}
1003			if (ia == NULL) {
1004				type = ICMP_UNREACH;
1005				code = ICMP_UNREACH_SRCFAIL;
1006				goto bad;
1007			}
1008			ip->ip_dst = ipaddr.sin_addr;
1009			bcopy((void *)&ia->ia_addr.sin_addr,
1010			    (void *)(cp + off), sizeof(struct in_addr));
1011			ia4_release(ia, &psref);
1012			cp[IPOPT_OFFSET] += sizeof(struct in_addr);
1013			/*
1014			 * Let ip_intr's mcast routing check handle mcast pkts
1015			 */
1016			forward = !IN_MULTICAST(ip->ip_dst.s_addr);
1017			break;
1018		    }
1019
1020		case IPOPT_RR: {
1021			struct psref psref;
1022			if (optlen < IPOPT_OFFSET + sizeof(*cp)) {
1023				code = &cp[IPOPT_OLEN] - (u_char *)ip;
1024				goto bad;
1025			}
1026			if ((off = cp[IPOPT_OFFSET]) < IPOPT_MINOFF) {
1027				code = &cp[IPOPT_OFFSET] - (u_char *)ip;
1028				goto bad;
1029			}
1030			/*
1031			 * If no space remains, ignore.
1032			 */
1033			off--;			/* 0 origin */
1034			if ((off + sizeof(struct in_addr)) > optlen)
1035				break;
1036			memcpy((void *)&ipaddr.sin_addr, (void *)(&ip->ip_dst),
1037			    sizeof(ipaddr.sin_addr));
1038			/*
1039			 * locate outgoing interface; if we're the destination,
1040			 * use the incoming interface (should be same).
1041			 */
1042			ifa = ifa_ifwithaddr_psref(sintosa(&ipaddr), &psref);
1043			if (ifa == NULL) {
1044				ia = ip_rtaddr(ipaddr.sin_addr, &psref);
1045				if (ia == NULL) {
1046					type = ICMP_UNREACH;
1047					code = ICMP_UNREACH_HOST;
1048					goto bad;
1049				}
1050			} else {
1051				ia = ifatoia(ifa);
1052			}
1053			bcopy((void *)&ia->ia_addr.sin_addr,
1054			    (void *)(cp + off), sizeof(struct in_addr));
1055			ia4_release(ia, &psref);
1056			cp[IPOPT_OFFSET] += sizeof(struct in_addr);
1057			break;
1058		    }
1059
1060		case IPOPT_TS:
1061			code = cp - (u_char *)ip;
1062			ipt = (struct ip_timestamp *)cp;
1063			if (ipt->ipt_len < 4 || ipt->ipt_len > 40) {
1064				code = (u_char *)&ipt->ipt_len - (u_char *)ip;
1065				goto bad;
1066			}
1067			if (ipt->ipt_ptr < 5) {
1068				code = (u_char *)&ipt->ipt_ptr - (u_char *)ip;
1069				goto bad;
1070			}
1071			if (ipt->ipt_ptr > ipt->ipt_len - sizeof (int32_t)) {
1072				if (++ipt->ipt_oflw == 0) {
1073					code = (u_char *)&ipt->ipt_ptr -
1074					    (u_char *)ip;
1075					goto bad;
1076				}
1077				break;
1078			}
1079			cp0 = (cp + ipt->ipt_ptr - 1);
1080			switch (ipt->ipt_flg) {
1081
1082			case IPOPT_TS_TSONLY:
1083				break;
1084
1085			case IPOPT_TS_TSANDADDR: {
1086				struct ifnet *rcvif;
1087				int _s, _ss;
1088
1089				if (ipt->ipt_ptr - 1 + sizeof(n_time) +
1090				    sizeof(struct in_addr) > ipt->ipt_len) {
1091					code = (u_char *)&ipt->ipt_ptr -
1092					    (u_char *)ip;
1093					goto bad;
1094				}
1095				ipaddr.sin_addr = dst;
1096				_ss = pserialize_read_enter();
1097				rcvif = m_get_rcvif(m, &_s);
1098				ifa = ifaof_ifpforaddr(sintosa(&ipaddr), rcvif);
1099				m_put_rcvif(rcvif, &_s);
1100				if (ifa == NULL) {
1101					pserialize_read_exit(_ss);
1102					break;
1103				}
1104				ia = ifatoia(ifa);
1105				bcopy(&ia->ia_addr.sin_addr,
1106				    cp0, sizeof(struct in_addr));
1107				pserialize_read_exit(_ss);
1108				ipt->ipt_ptr += sizeof(struct in_addr);
1109				break;
1110			}
1111
1112			case IPOPT_TS_PRESPEC:
1113				if (ipt->ipt_ptr - 1 + sizeof(n_time) +
1114				    sizeof(struct in_addr) > ipt->ipt_len) {
1115					code = (u_char *)&ipt->ipt_ptr -
1116					    (u_char *)ip;
1117					goto bad;
1118				}
1119				memcpy(&ipaddr.sin_addr, cp0,
1120				    sizeof(struct in_addr));
1121				s = pserialize_read_enter();
1122				ifa = ifa_ifwithaddr(sintosa(&ipaddr));
1123				if (ifa == NULL) {
1124					pserialize_read_exit(s);
1125					continue;
1126				}
1127				pserialize_read_exit(s);
1128				ipt->ipt_ptr += sizeof(struct in_addr);
1129				break;
1130
1131			default:
1132				/* XXX can't take &ipt->ipt_flg */
1133				code = (u_char *)&ipt->ipt_ptr -
1134				    (u_char *)ip + 1;
1135				goto bad;
1136			}
1137			ntime = iptime();
1138			cp0 = (u_char *) &ntime; /* XXX grumble, GCC... */
1139			memmove((char *)cp + ipt->ipt_ptr - 1, cp0,
1140			    sizeof(n_time));
1141			ipt->ipt_ptr += sizeof(n_time);
1142		}
1143	}
1144	if (forward) {
1145		struct ifnet *rcvif;
1146		struct psref _psref;
1147
1148		if (ip_forwsrcrt == 0) {
1149			type = ICMP_UNREACH;
1150			code = ICMP_UNREACH_SRCFAIL;
1151			goto bad;
1152		}
1153
1154		rcvif = m_get_rcvif_psref(m, &_psref);
1155		if (__predict_false(rcvif == NULL)) {
1156			type = ICMP_UNREACH;
1157			code = ICMP_UNREACH_HOST;
1158			goto bad;
1159		}
1160		ip_forward(m, 1, rcvif);
1161		m_put_rcvif_psref(rcvif, &_psref);
1162		return true;
1163	}
1164	return false;
1165bad:
1166	icmp_error(m, type, code, 0, 0);
1167	IP_STATINC(IP_STAT_BADOPTIONS);
1168	return true;
1169}
1170
1171/*
1172 * ip_rtaddr: given address of next destination (final or next hop),
1173 * return internet address info of interface to be used to get there.
1174 */
1175static struct in_ifaddr *
1176ip_rtaddr(struct in_addr dst, struct psref *psref)
1177{
1178	struct rtentry *rt;
1179	union {
1180		struct sockaddr		dst;
1181		struct sockaddr_in	dst4;
1182	} u;
1183	struct route *ro;
1184
1185	sockaddr_in_init(&u.dst4, &dst, 0);
1186
1187	ro = percpu_getref(ipforward_rt_percpu);
1188	rt = rtcache_lookup(ro, &u.dst);
1189	if (rt == NULL) {
1190		percpu_putref(ipforward_rt_percpu);
1191		return NULL;
1192	}
1193
1194	ia4_acquire(ifatoia(rt->rt_ifa), psref);
1195	rtcache_unref(rt, ro);
1196	percpu_putref(ipforward_rt_percpu);
1197
1198	return ifatoia(rt->rt_ifa);
1199}
1200
1201/*
1202 * save_rte: save incoming source route for use in replies, to be picked
1203 * up later by ip_srcroute if the receiver is interested.
1204 */
1205static void
1206save_rte(u_char *option, struct in_addr dst)
1207{
1208	unsigned olen;
1209
1210	olen = option[IPOPT_OLEN];
1211	if (olen > sizeof(ip_srcrt) - (1 + sizeof(dst)))
1212		return;
1213	memcpy((void *)ip_srcrt.srcopt, (void *)option, olen);
1214	ip_nhops = (olen - IPOPT_OFFSET - 1) / sizeof(struct in_addr);
1215	ip_srcrt.dst = dst;
1216}
1217
1218/*
1219 * Retrieve incoming source route for use in replies,
1220 * in the same form used by setsockopt.
1221 * The first hop is placed before the options, will be removed later.
1222 */
1223struct mbuf *
1224ip_srcroute(void)
1225{
1226	struct in_addr *p, *q;
1227	struct mbuf *m;
1228
1229	if (ip_nhops == 0)
1230		return NULL;
1231	m = m_get(M_DONTWAIT, MT_SOOPTS);
1232	if (m == 0)
1233		return NULL;
1234
1235	MCLAIM(m, &inetdomain.dom_mowner);
1236#define OPTSIZ	(sizeof(ip_srcrt.nop) + sizeof(ip_srcrt.srcopt))
1237
1238	/* length is (nhops+1)*sizeof(addr) + sizeof(nop + srcrt header) */
1239	m->m_len = ip_nhops * sizeof(struct in_addr) + sizeof(struct in_addr) +
1240	    OPTSIZ;
1241
1242	/*
1243	 * First save first hop for return route
1244	 */
1245	p = &ip_srcrt.route[ip_nhops - 1];
1246	*(mtod(m, struct in_addr *)) = *p--;
1247
1248	/*
1249	 * Copy option fields and padding (nop) to mbuf.
1250	 */
1251	ip_srcrt.nop = IPOPT_NOP;
1252	ip_srcrt.srcopt[IPOPT_OFFSET] = IPOPT_MINOFF;
1253	memmove(mtod(m, char *) + sizeof(struct in_addr), &ip_srcrt.nop,
1254	    OPTSIZ);
1255	q = (struct in_addr *)(mtod(m, char *) +
1256	    sizeof(struct in_addr) + OPTSIZ);
1257#undef OPTSIZ
1258	/*
1259	 * Record return path as an IP source route,
1260	 * reversing the path (pointers are now aligned).
1261	 */
1262	while (p >= ip_srcrt.route) {
1263		*q++ = *p--;
1264	}
1265	/*
1266	 * Last hop goes to final destination.
1267	 */
1268	*q = ip_srcrt.dst;
1269	return (m);
1270}
1271
1272const int inetctlerrmap[PRC_NCMDS] = {
1273	[PRC_MSGSIZE] = EMSGSIZE,
1274	[PRC_HOSTDEAD] = EHOSTDOWN,
1275	[PRC_HOSTUNREACH] = EHOSTUNREACH,
1276	[PRC_UNREACH_NET] = EHOSTUNREACH,
1277	[PRC_UNREACH_HOST] = EHOSTUNREACH,
1278	[PRC_UNREACH_PROTOCOL] = ECONNREFUSED,
1279	[PRC_UNREACH_PORT] = ECONNREFUSED,
1280	[PRC_UNREACH_SRCFAIL] = EHOSTUNREACH,
1281	[PRC_PARAMPROB] = ENOPROTOOPT,
1282};
1283
1284void
1285ip_fasttimo(void)
1286{
1287	if (ip_drainwanted) {
1288		ip_drain();
1289		ip_drainwanted = 0;
1290	}
1291}
1292
1293void
1294ip_drainstub(void)
1295{
1296	ip_drainwanted = 1;
1297}
1298
1299/*
1300 * Forward a packet.  If some error occurs return the sender
1301 * an icmp packet.  Note we can't always generate a meaningful
1302 * icmp message because icmp doesn't have a large enough repertoire
1303 * of codes and types.
1304 *
1305 * If not forwarding, just drop the packet.  This could be confusing
1306 * if ipforwarding was zero but some routing protocol was advancing
1307 * us as a gateway to somewhere.  However, we must let the routing
1308 * protocol deal with that.
1309 *
1310 * The srcrt parameter indicates whether the packet is being forwarded
1311 * via a source route.
1312 */
1313static void
1314ip_forward(struct mbuf *m, int srcrt, struct ifnet *rcvif)
1315{
1316	struct ip *ip = mtod(m, struct ip *);
1317	struct rtentry *rt;
1318	int error, type = 0, code = 0, destmtu = 0;
1319	struct mbuf *mcopy;
1320	n_long dest;
1321	union {
1322		struct sockaddr		dst;
1323		struct sockaddr_in	dst4;
1324	} u;
1325	uint64_t *ips;
1326	struct route *ro;
1327
1328	KASSERTMSG(cpu_softintr_p(), "ip_forward: not in the software "
1329	    "interrupt handler; synchronization assumptions violated");
1330
1331	/*
1332	 * We are now in the output path.
1333	 */
1334	MCLAIM(m, &ip_tx_mowner);
1335
1336	/*
1337	 * Clear any in-bound checksum flags for this packet.
1338	 */
1339	m->m_pkthdr.csum_flags = 0;
1340
1341	dest = 0;
1342	if (m->m_flags & (M_BCAST|M_MCAST) || in_canforward(ip->ip_dst) == 0) {
1343		IP_STATINC(IP_STAT_CANTFORWARD);
1344		m_freem(m);
1345		return;
1346	}
1347
1348	if (ip->ip_ttl <= IPTTLDEC) {
1349		icmp_error(m, ICMP_TIMXCEED, ICMP_TIMXCEED_INTRANS, dest, 0);
1350		return;
1351	}
1352
1353	sockaddr_in_init(&u.dst4, &ip->ip_dst, 0);
1354
1355	ro = percpu_getref(ipforward_rt_percpu);
1356	rt = rtcache_lookup(ro, &u.dst);
1357	if (rt == NULL) {
1358		percpu_putref(ipforward_rt_percpu);
1359		icmp_error(m, ICMP_UNREACH, ICMP_UNREACH_NET, dest, 0);
1360		return;
1361	}
1362
1363	/*
1364	 * Save at most 68 bytes of the packet in case
1365	 * we need to generate an ICMP message to the src.
1366	 * Pullup to avoid sharing mbuf cluster between m and mcopy.
1367	 */
1368	mcopy = m_copym(m, 0, imin(ntohs(ip->ip_len), 68), M_DONTWAIT);
1369	if (mcopy)
1370		mcopy = m_pullup(mcopy, ip->ip_hl << 2);
1371
1372	ip->ip_ttl -= IPTTLDEC;
1373
1374	/*
1375	 * If forwarding packet using same interface that it came in on,
1376	 * perhaps should send a redirect to sender to shortcut a hop.
1377	 * Only send redirect if source is sending directly to us,
1378	 * and if packet was not source routed (or has any options).
1379	 * Also, don't send redirect if forwarding using a default route
1380	 * or a route modified by a redirect.
1381	 */
1382	if (rt->rt_ifp == rcvif &&
1383	    (rt->rt_flags & (RTF_DYNAMIC|RTF_MODIFIED)) == 0 &&
1384	    !in_nullhost(satocsin(rt_getkey(rt))->sin_addr) &&
1385	    ipsendredirects && !srcrt) {
1386		if (rt->rt_ifa &&
1387		    (ip->ip_src.s_addr & ifatoia(rt->rt_ifa)->ia_subnetmask) ==
1388		    ifatoia(rt->rt_ifa)->ia_subnet) {
1389			if (rt->rt_flags & RTF_GATEWAY)
1390				dest = satosin(rt->rt_gateway)->sin_addr.s_addr;
1391			else
1392				dest = ip->ip_dst.s_addr;
1393			/*
1394			 * Router requirements says to only send host
1395			 * redirects.
1396			 */
1397			type = ICMP_REDIRECT;
1398			code = ICMP_REDIRECT_HOST;
1399		}
1400	}
1401	rtcache_unref(rt, ro);
1402
1403	error = ip_output(m, NULL, ro,
1404	    (IP_FORWARDING | (ip_directedbcast ? IP_ALLOWBROADCAST : 0)),
1405	    NULL, NULL);
1406
1407	if (error) {
1408		IP_STATINC(IP_STAT_CANTFORWARD);
1409		goto error;
1410	}
1411
1412	ips = IP_STAT_GETREF();
1413	ips[IP_STAT_FORWARD]++;
1414
1415	if (type) {
1416		ips[IP_STAT_REDIRECTSENT]++;
1417		IP_STAT_PUTREF();
1418		goto redirect;
1419	}
1420
1421	IP_STAT_PUTREF();
1422	if (mcopy) {
1423#ifdef GATEWAY
1424		if (mcopy->m_flags & M_CANFASTFWD)
1425			ipflow_create(ro, mcopy);
1426#endif
1427		m_freem(mcopy);
1428	}
1429
1430	percpu_putref(ipforward_rt_percpu);
1431	return;
1432
1433redirect:
1434error:
1435	if (mcopy == NULL) {
1436		percpu_putref(ipforward_rt_percpu);
1437		return;
1438	}
1439
1440	switch (error) {
1441
1442	case 0:				/* forwarded, but need redirect */
1443		/* type, code set above */
1444		break;
1445
1446	case ENETUNREACH:		/* shouldn't happen, checked above */
1447	case EHOSTUNREACH:
1448	case ENETDOWN:
1449	case EHOSTDOWN:
1450	default:
1451		type = ICMP_UNREACH;
1452		code = ICMP_UNREACH_HOST;
1453		break;
1454
1455	case EMSGSIZE:
1456		type = ICMP_UNREACH;
1457		code = ICMP_UNREACH_NEEDFRAG;
1458
1459		if ((rt = rtcache_validate(ro)) != NULL) {
1460			destmtu = rt->rt_ifp->if_mtu;
1461			rtcache_unref(rt, ro);
1462		}
1463#ifdef IPSEC
1464		if (ipsec_used)
1465			(void)ipsec4_forward(mcopy, &destmtu);
1466#endif
1467		IP_STATINC(IP_STAT_CANTFRAG);
1468		break;
1469
1470	case ENOBUFS:
1471		/*
1472		 * Do not generate ICMP_SOURCEQUENCH as required in RFC 1812,
1473		 * Requirements for IP Version 4 Routers.  Source quench can
1474		 * big problem under DoS attacks or if the underlying
1475		 * interface is rate-limited.
1476		 */
1477		if (mcopy)
1478			m_freem(mcopy);
1479		percpu_putref(ipforward_rt_percpu);
1480		return;
1481	}
1482	icmp_error(mcopy, type, code, dest, destmtu);
1483	percpu_putref(ipforward_rt_percpu);
1484}
1485
1486void
1487ip_savecontrol(struct inpcb *inp, struct mbuf **mp, struct ip *ip,
1488    struct mbuf *m)
1489{
1490	struct socket *so = inp->inp_socket;
1491	ifnet_t *ifp;
1492	int inpflags = inp->inp_flags;
1493	struct psref psref;
1494
1495	ifp = m_get_rcvif_psref(m, &psref);
1496	if (__predict_false(ifp == NULL))
1497		return; /* XXX should report error? */
1498
1499	if (so->so_options & SO_TIMESTAMP
1500#ifdef SO_OTIMESTAMP
1501	    || so->so_options & SO_OTIMESTAMP
1502#endif
1503	    ) {
1504		struct timeval tv;
1505
1506		microtime(&tv);
1507#ifdef SO_OTIMESTAMP
1508		if (so->so_options & SO_OTIMESTAMP) {
1509			struct timeval50 tv50;
1510			timeval_to_timeval50(&tv, &tv50);
1511			*mp = sbcreatecontrol((void *) &tv50, sizeof(tv50),
1512			    SCM_OTIMESTAMP, SOL_SOCKET);
1513		} else
1514#endif
1515		*mp = sbcreatecontrol((void *) &tv, sizeof(tv),
1516		    SCM_TIMESTAMP, SOL_SOCKET);
1517		if (*mp)
1518			mp = &(*mp)->m_next;
1519	}
1520	if (inpflags & INP_RECVDSTADDR) {
1521		*mp = sbcreatecontrol((void *) &ip->ip_dst,
1522		    sizeof(struct in_addr), IP_RECVDSTADDR, IPPROTO_IP);
1523		if (*mp)
1524			mp = &(*mp)->m_next;
1525	}
1526	if (inpflags & INP_RECVPKTINFO) {
1527		struct in_pktinfo ipi;
1528		ipi.ipi_addr = ip->ip_src;
1529		ipi.ipi_ifindex = ifp->if_index;
1530		*mp = sbcreatecontrol((void *) &ipi,
1531		    sizeof(ipi), IP_RECVPKTINFO, IPPROTO_IP);
1532		if (*mp)
1533			mp = &(*mp)->m_next;
1534	}
1535	if (inpflags & INP_PKTINFO) {
1536		struct in_pktinfo ipi;
1537		ipi.ipi_addr = ip->ip_dst;
1538		ipi.ipi_ifindex = ifp->if_index;
1539		*mp = sbcreatecontrol((void *) &ipi,
1540		    sizeof(ipi), IP_PKTINFO, IPPROTO_IP);
1541		if (*mp)
1542			mp = &(*mp)->m_next;
1543	}
1544	if (inpflags & INP_RECVIF) {
1545		struct sockaddr_dl sdl;
1546
1547		sockaddr_dl_init(&sdl, sizeof(sdl), ifp->if_index, 0, NULL, 0,
1548		    NULL, 0);
1549		*mp = sbcreatecontrol(&sdl, sdl.sdl_len, IP_RECVIF, IPPROTO_IP);
1550		if (*mp)
1551			mp = &(*mp)->m_next;
1552	}
1553	if (inpflags & INP_RECVTTL) {
1554		*mp = sbcreatecontrol((void *) &ip->ip_ttl,
1555		    sizeof(uint8_t), IP_RECVTTL, IPPROTO_IP);
1556		if (*mp)
1557			mp = &(*mp)->m_next;
1558	}
1559	m_put_rcvif_psref(ifp, &psref);
1560}
1561
1562/*
1563 * sysctl helper routine for net.inet.ip.forwsrcrt.
1564 */
1565static int
1566sysctl_net_inet_ip_forwsrcrt(SYSCTLFN_ARGS)
1567{
1568	int error, tmp;
1569	struct sysctlnode node;
1570
1571	node = *rnode;
1572	tmp = ip_forwsrcrt;
1573	node.sysctl_data = &tmp;
1574	error = sysctl_lookup(SYSCTLFN_CALL(&node));
1575	if (error || newp == NULL)
1576		return (error);
1577
1578	error = kauth_authorize_network(l->l_cred, KAUTH_NETWORK_FORWSRCRT,
1579	    0, NULL, NULL, NULL);
1580	if (error)
1581		return (error);
1582
1583	ip_forwsrcrt = tmp;
1584
1585	return (0);
1586}
1587
1588/*
1589 * sysctl helper routine for net.inet.ip.mtudisctimeout.  checks the
1590 * range of the new value and tweaks timers if it changes.
1591 */
1592static int
1593sysctl_net_inet_ip_pmtudto(SYSCTLFN_ARGS)
1594{
1595	int error, tmp;
1596	struct sysctlnode node;
1597
1598	node = *rnode;
1599	tmp = ip_mtudisc_timeout;
1600	node.sysctl_data = &tmp;
1601	error = sysctl_lookup(SYSCTLFN_CALL(&node));
1602	if (error || newp == NULL)
1603		return (error);
1604	if (tmp < 0)
1605		return (EINVAL);
1606
1607	mutex_enter(softnet_lock);
1608
1609	ip_mtudisc_timeout = tmp;
1610	rt_timer_queue_change(ip_mtudisc_timeout_q, ip_mtudisc_timeout);
1611
1612	mutex_exit(softnet_lock);
1613
1614	return (0);
1615}
1616
1617static int
1618sysctl_net_inet_ip_stats(SYSCTLFN_ARGS)
1619{
1620
1621	return (NETSTAT_SYSCTL(ipstat_percpu, IP_NSTATS));
1622}
1623
1624static void
1625sysctl_net_inet_ip_setup(struct sysctllog **clog)
1626{
1627	sysctl_createv(clog, 0, NULL, NULL,
1628		       CTLFLAG_PERMANENT,
1629		       CTLTYPE_NODE, "inet",
1630		       SYSCTL_DESCR("PF_INET related settings"),
1631		       NULL, 0, NULL, 0,
1632		       CTL_NET, PF_INET, CTL_EOL);
1633	sysctl_createv(clog, 0, NULL, NULL,
1634		       CTLFLAG_PERMANENT,
1635		       CTLTYPE_NODE, "ip",
1636		       SYSCTL_DESCR("IPv4 related settings"),
1637		       NULL, 0, NULL, 0,
1638		       CTL_NET, PF_INET, IPPROTO_IP, CTL_EOL);
1639
1640	sysctl_createv(clog, 0, NULL, NULL,
1641		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
1642		       CTLTYPE_INT, "forwarding",
1643		       SYSCTL_DESCR("Enable forwarding of INET datagrams"),
1644		       NULL, 0, &ipforwarding, 0,
1645		       CTL_NET, PF_INET, IPPROTO_IP,
1646		       IPCTL_FORWARDING, CTL_EOL);
1647	sysctl_createv(clog, 0, NULL, NULL,
1648		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
1649		       CTLTYPE_INT, "redirect",
1650		       SYSCTL_DESCR("Enable sending of ICMP redirect messages"),
1651		       NULL, 0, &ipsendredirects, 0,
1652		       CTL_NET, PF_INET, IPPROTO_IP,
1653		       IPCTL_SENDREDIRECTS, CTL_EOL);
1654	sysctl_createv(clog, 0, NULL, NULL,
1655		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
1656		       CTLTYPE_INT, "ttl",
1657		       SYSCTL_DESCR("Default TTL for an INET datagram"),
1658		       NULL, 0, &ip_defttl, 0,
1659		       CTL_NET, PF_INET, IPPROTO_IP,
1660		       IPCTL_DEFTTL, CTL_EOL);
1661#ifdef IPCTL_DEFMTU
1662	sysctl_createv(clog, 0, NULL, NULL,
1663		       CTLFLAG_PERMANENT /* |CTLFLAG_READWRITE? */,
1664		       CTLTYPE_INT, "mtu",
1665		       SYSCTL_DESCR("Default MTA for an INET route"),
1666		       NULL, 0, &ip_mtu, 0,
1667		       CTL_NET, PF_INET, IPPROTO_IP,
1668		       IPCTL_DEFMTU, CTL_EOL);
1669#endif /* IPCTL_DEFMTU */
1670	sysctl_createv(clog, 0, NULL, NULL,
1671		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
1672		       CTLTYPE_INT, "forwsrcrt",
1673		       SYSCTL_DESCR("Enable forwarding of source-routed "
1674				    "datagrams"),
1675		       sysctl_net_inet_ip_forwsrcrt, 0, &ip_forwsrcrt, 0,
1676		       CTL_NET, PF_INET, IPPROTO_IP,
1677		       IPCTL_FORWSRCRT, CTL_EOL);
1678	sysctl_createv(clog, 0, NULL, NULL,
1679		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
1680		       CTLTYPE_INT, "directed-broadcast",
1681		       SYSCTL_DESCR("Enable forwarding of broadcast datagrams"),
1682		       NULL, 0, &ip_directedbcast, 0,
1683		       CTL_NET, PF_INET, IPPROTO_IP,
1684		       IPCTL_DIRECTEDBCAST, CTL_EOL);
1685	sysctl_createv(clog, 0, NULL, NULL,
1686		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
1687		       CTLTYPE_INT, "allowsrcrt",
1688		       SYSCTL_DESCR("Accept source-routed datagrams"),
1689		       NULL, 0, &ip_allowsrcrt, 0,
1690		       CTL_NET, PF_INET, IPPROTO_IP,
1691		       IPCTL_ALLOWSRCRT, CTL_EOL);
1692
1693	sysctl_createv(clog, 0, NULL, NULL,
1694		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
1695		       CTLTYPE_INT, "mtudisc",
1696		       SYSCTL_DESCR("Use RFC1191 Path MTU Discovery"),
1697		       NULL, 0, &ip_mtudisc, 0,
1698		       CTL_NET, PF_INET, IPPROTO_IP,
1699		       IPCTL_MTUDISC, CTL_EOL);
1700	sysctl_createv(clog, 0, NULL, NULL,
1701		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
1702		       CTLTYPE_INT, "anonportmin",
1703		       SYSCTL_DESCR("Lowest ephemeral port number to assign"),
1704		       sysctl_net_inet_ip_ports, 0, &anonportmin, 0,
1705		       CTL_NET, PF_INET, IPPROTO_IP,
1706		       IPCTL_ANONPORTMIN, CTL_EOL);
1707	sysctl_createv(clog, 0, NULL, NULL,
1708		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
1709		       CTLTYPE_INT, "anonportmax",
1710		       SYSCTL_DESCR("Highest ephemeral port number to assign"),
1711		       sysctl_net_inet_ip_ports, 0, &anonportmax, 0,
1712		       CTL_NET, PF_INET, IPPROTO_IP,
1713		       IPCTL_ANONPORTMAX, CTL_EOL);
1714	sysctl_createv(clog, 0, NULL, NULL,
1715		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
1716		       CTLTYPE_INT, "mtudisctimeout",
1717		       SYSCTL_DESCR("Lifetime of a Path MTU Discovered route"),
1718		       sysctl_net_inet_ip_pmtudto, 0, (void *)&ip_mtudisc_timeout, 0,
1719		       CTL_NET, PF_INET, IPPROTO_IP,
1720		       IPCTL_MTUDISCTIMEOUT, CTL_EOL);
1721#ifndef IPNOPRIVPORTS
1722	sysctl_createv(clog, 0, NULL, NULL,
1723		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
1724		       CTLTYPE_INT, "lowportmin",
1725		       SYSCTL_DESCR("Lowest privileged ephemeral port number "
1726				    "to assign"),
1727		       sysctl_net_inet_ip_ports, 0, &lowportmin, 0,
1728		       CTL_NET, PF_INET, IPPROTO_IP,
1729		       IPCTL_LOWPORTMIN, CTL_EOL);
1730	sysctl_createv(clog, 0, NULL, NULL,
1731		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
1732		       CTLTYPE_INT, "lowportmax",
1733		       SYSCTL_DESCR("Highest privileged ephemeral port number "
1734				    "to assign"),
1735		       sysctl_net_inet_ip_ports, 0, &lowportmax, 0,
1736		       CTL_NET, PF_INET, IPPROTO_IP,
1737		       IPCTL_LOWPORTMAX, CTL_EOL);
1738#endif /* IPNOPRIVPORTS */
1739#if NGRE > 0
1740	sysctl_createv(clog, 0, NULL, NULL,
1741		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
1742		       CTLTYPE_INT, "grettl",
1743		       SYSCTL_DESCR("Default TTL for a gre tunnel datagram"),
1744		       NULL, 0, &ip_gre_ttl, 0,
1745		       CTL_NET, PF_INET, IPPROTO_IP,
1746		       IPCTL_GRE_TTL, CTL_EOL);
1747#endif /* NGRE */
1748	sysctl_createv(clog, 0, NULL, NULL,
1749		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
1750		       CTLTYPE_INT, "checkinterface",
1751		       SYSCTL_DESCR("Enable receive side of Strong ES model "
1752				    "from RFC1122"),
1753		       NULL, 0, &ip_checkinterface, 0,
1754		       CTL_NET, PF_INET, IPPROTO_IP,
1755		       IPCTL_CHECKINTERFACE, CTL_EOL);
1756	sysctl_createv(clog, 0, NULL, NULL,
1757		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
1758		       CTLTYPE_INT, "random_id",
1759		       SYSCTL_DESCR("Assign random ip_id values"),
1760		       NULL, 0, &ip_do_randomid, 0,
1761		       CTL_NET, PF_INET, IPPROTO_IP,
1762		       IPCTL_RANDOMID, CTL_EOL);
1763	sysctl_createv(clog, 0, NULL, NULL,
1764		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
1765		       CTLTYPE_INT, "do_loopback_cksum",
1766		       SYSCTL_DESCR("Perform IP checksum on loopback"),
1767		       NULL, 0, &ip_do_loopback_cksum, 0,
1768		       CTL_NET, PF_INET, IPPROTO_IP,
1769		       IPCTL_LOOPBACKCKSUM, CTL_EOL);
1770	sysctl_createv(clog, 0, NULL, NULL,
1771		       CTLFLAG_PERMANENT,
1772		       CTLTYPE_STRUCT, "stats",
1773		       SYSCTL_DESCR("IP statistics"),
1774		       sysctl_net_inet_ip_stats, 0, NULL, 0,
1775		       CTL_NET, PF_INET, IPPROTO_IP, IPCTL_STATS,
1776		       CTL_EOL);
1777#if NARP
1778	sysctl_createv(clog, 0, NULL, NULL,
1779		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
1780		       CTLTYPE_INT, "dad_count",
1781		       SYSCTL_DESCR("Number of Duplicate Address Detection "
1782				    "probes to send"),
1783		       NULL, 0, &ip_dad_count, 0,
1784		       CTL_NET, PF_INET, IPPROTO_IP,
1785		       IPCTL_DAD_COUNT, CTL_EOL);
1786#endif
1787
1788	/* anonportalgo RFC6056 subtree */
1789	const struct sysctlnode *portalgo_node;
1790	sysctl_createv(clog, 0, NULL, &portalgo_node,
1791		       CTLFLAG_PERMANENT,
1792		       CTLTYPE_NODE, "anonportalgo",
1793		       SYSCTL_DESCR("Anonymous Port Algorithm Selection (RFC 6056)"),
1794	    	       NULL, 0, NULL, 0,
1795		       CTL_NET, PF_INET, IPPROTO_IP, CTL_CREATE, CTL_EOL);
1796	sysctl_createv(clog, 0, &portalgo_node, NULL,
1797		       CTLFLAG_PERMANENT,
1798		       CTLTYPE_STRING, "available",
1799		       SYSCTL_DESCR("available algorithms"),
1800		       sysctl_portalgo_available, 0, NULL, PORTALGO_MAXLEN,
1801		       CTL_CREATE, CTL_EOL);
1802	sysctl_createv(clog, 0, &portalgo_node, NULL,
1803		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
1804		       CTLTYPE_STRING, "selected",
1805		       SYSCTL_DESCR("selected algorithm"),
1806		       sysctl_portalgo_selected4, 0, NULL, PORTALGO_MAXLEN,
1807		       CTL_CREATE, CTL_EOL);
1808	sysctl_createv(clog, 0, &portalgo_node, NULL,
1809		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
1810		       CTLTYPE_STRUCT, "reserve",
1811		       SYSCTL_DESCR("bitmap of reserved ports"),
1812		       sysctl_portalgo_reserve4, 0, NULL, 0,
1813		       CTL_CREATE, CTL_EOL);
1814}
1815
1816void
1817ip_statinc(u_int stat)
1818{
1819
1820	KASSERT(stat < IP_NSTATS);
1821	IP_STATINC(stat);
1822}
1823