xref: /onnv-gate/usr/src/uts/common/inet/ip/ip_input.c (revision 13123:9efd3d43accd)
111042SErik.Nordmark@Sun.COM /*
211042SErik.Nordmark@Sun.COM  * CDDL HEADER START
311042SErik.Nordmark@Sun.COM  *
411042SErik.Nordmark@Sun.COM  * The contents of this file are subject to the terms of the
511042SErik.Nordmark@Sun.COM  * Common Development and Distribution License (the "License").
611042SErik.Nordmark@Sun.COM  * You may not use this file except in compliance with the License.
711042SErik.Nordmark@Sun.COM  *
811042SErik.Nordmark@Sun.COM  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
911042SErik.Nordmark@Sun.COM  * or http://www.opensolaris.org/os/licensing.
1011042SErik.Nordmark@Sun.COM  * See the License for the specific language governing permissions
1111042SErik.Nordmark@Sun.COM  * and limitations under the License.
1211042SErik.Nordmark@Sun.COM  *
1311042SErik.Nordmark@Sun.COM  * When distributing Covered Code, include this CDDL HEADER in each
1411042SErik.Nordmark@Sun.COM  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
1511042SErik.Nordmark@Sun.COM  * If applicable, add the following below this CDDL HEADER, with the
1611042SErik.Nordmark@Sun.COM  * fields enclosed by brackets "[]" replaced with your own identifying
1711042SErik.Nordmark@Sun.COM  * information: Portions Copyright [yyyy] [name of copyright owner]
1811042SErik.Nordmark@Sun.COM  *
1911042SErik.Nordmark@Sun.COM  * CDDL HEADER END
2011042SErik.Nordmark@Sun.COM  */
2111042SErik.Nordmark@Sun.COM 
2211042SErik.Nordmark@Sun.COM /*
23*13123SErik.Nordmark@Sun.COM  * Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved.
2411042SErik.Nordmark@Sun.COM  */
2511042SErik.Nordmark@Sun.COM /* Copyright (c) 1990 Mentat Inc. */
2611042SErik.Nordmark@Sun.COM 
2711042SErik.Nordmark@Sun.COM #include <sys/types.h>
2811042SErik.Nordmark@Sun.COM #include <sys/stream.h>
2911042SErik.Nordmark@Sun.COM #include <sys/dlpi.h>
3011042SErik.Nordmark@Sun.COM #include <sys/stropts.h>
3111042SErik.Nordmark@Sun.COM #include <sys/sysmacros.h>
3211042SErik.Nordmark@Sun.COM #include <sys/strsubr.h>
3311042SErik.Nordmark@Sun.COM #include <sys/strlog.h>
3411042SErik.Nordmark@Sun.COM #include <sys/strsun.h>
3511042SErik.Nordmark@Sun.COM #include <sys/zone.h>
3611042SErik.Nordmark@Sun.COM #define	_SUN_TPI_VERSION 2
3711042SErik.Nordmark@Sun.COM #include <sys/tihdr.h>
3811042SErik.Nordmark@Sun.COM #include <sys/xti_inet.h>
3911042SErik.Nordmark@Sun.COM #include <sys/ddi.h>
4011042SErik.Nordmark@Sun.COM #include <sys/sunddi.h>
4111042SErik.Nordmark@Sun.COM #include <sys/cmn_err.h>
4211042SErik.Nordmark@Sun.COM #include <sys/debug.h>
4311042SErik.Nordmark@Sun.COM #include <sys/kobj.h>
4411042SErik.Nordmark@Sun.COM #include <sys/modctl.h>
4511042SErik.Nordmark@Sun.COM #include <sys/atomic.h>
4611042SErik.Nordmark@Sun.COM #include <sys/policy.h>
4711042SErik.Nordmark@Sun.COM #include <sys/priv.h>
4811042SErik.Nordmark@Sun.COM 
4911042SErik.Nordmark@Sun.COM #include <sys/systm.h>
5011042SErik.Nordmark@Sun.COM #include <sys/param.h>
5111042SErik.Nordmark@Sun.COM #include <sys/kmem.h>
5211042SErik.Nordmark@Sun.COM #include <sys/sdt.h>
5311042SErik.Nordmark@Sun.COM #include <sys/socket.h>
5411042SErik.Nordmark@Sun.COM #include <sys/vtrace.h>
5511042SErik.Nordmark@Sun.COM #include <sys/isa_defs.h>
5611042SErik.Nordmark@Sun.COM #include <sys/mac.h>
5711042SErik.Nordmark@Sun.COM #include <net/if.h>
5811042SErik.Nordmark@Sun.COM #include <net/if_arp.h>
5911042SErik.Nordmark@Sun.COM #include <net/route.h>
6011042SErik.Nordmark@Sun.COM #include <sys/sockio.h>
6111042SErik.Nordmark@Sun.COM #include <netinet/in.h>
6211042SErik.Nordmark@Sun.COM #include <net/if_dl.h>
6311042SErik.Nordmark@Sun.COM 
6411042SErik.Nordmark@Sun.COM #include <inet/common.h>
6511042SErik.Nordmark@Sun.COM #include <inet/mi.h>
6611042SErik.Nordmark@Sun.COM #include <inet/mib2.h>
6711042SErik.Nordmark@Sun.COM #include <inet/nd.h>
6811042SErik.Nordmark@Sun.COM #include <inet/arp.h>
6911042SErik.Nordmark@Sun.COM #include <inet/snmpcom.h>
7011042SErik.Nordmark@Sun.COM #include <inet/kstatcom.h>
7111042SErik.Nordmark@Sun.COM 
7211042SErik.Nordmark@Sun.COM #include <netinet/igmp_var.h>
7311042SErik.Nordmark@Sun.COM #include <netinet/ip6.h>
7411042SErik.Nordmark@Sun.COM #include <netinet/icmp6.h>
7511042SErik.Nordmark@Sun.COM #include <netinet/sctp.h>
7611042SErik.Nordmark@Sun.COM 
7711042SErik.Nordmark@Sun.COM #include <inet/ip.h>
7811042SErik.Nordmark@Sun.COM #include <inet/ip_impl.h>
7911042SErik.Nordmark@Sun.COM #include <inet/ip6.h>
8011042SErik.Nordmark@Sun.COM #include <inet/ip6_asp.h>
8111042SErik.Nordmark@Sun.COM #include <inet/optcom.h>
8211042SErik.Nordmark@Sun.COM #include <inet/tcp.h>
8311042SErik.Nordmark@Sun.COM #include <inet/tcp_impl.h>
8411042SErik.Nordmark@Sun.COM #include <inet/ip_multi.h>
8511042SErik.Nordmark@Sun.COM #include <inet/ip_if.h>
8611042SErik.Nordmark@Sun.COM #include <inet/ip_ire.h>
8711042SErik.Nordmark@Sun.COM #include <inet/ip_ftable.h>
8811042SErik.Nordmark@Sun.COM #include <inet/ip_rts.h>
8911042SErik.Nordmark@Sun.COM #include <inet/ip_ndp.h>
9011042SErik.Nordmark@Sun.COM #include <inet/ip_listutils.h>
9111042SErik.Nordmark@Sun.COM #include <netinet/igmp.h>
9211042SErik.Nordmark@Sun.COM #include <netinet/ip_mroute.h>
9311042SErik.Nordmark@Sun.COM #include <inet/ipp_common.h>
9411042SErik.Nordmark@Sun.COM 
9511042SErik.Nordmark@Sun.COM #include <net/pfkeyv2.h>
9611042SErik.Nordmark@Sun.COM #include <inet/sadb.h>
9711042SErik.Nordmark@Sun.COM #include <inet/ipsec_impl.h>
9811042SErik.Nordmark@Sun.COM #include <inet/ipdrop.h>
9911042SErik.Nordmark@Sun.COM #include <inet/ip_netinfo.h>
10011042SErik.Nordmark@Sun.COM #include <inet/ilb_ip.h>
10111042SErik.Nordmark@Sun.COM #include <sys/squeue_impl.h>
10211042SErik.Nordmark@Sun.COM #include <sys/squeue.h>
10311042SErik.Nordmark@Sun.COM 
10411042SErik.Nordmark@Sun.COM #include <sys/ethernet.h>
10511042SErik.Nordmark@Sun.COM #include <net/if_types.h>
10611042SErik.Nordmark@Sun.COM #include <sys/cpuvar.h>
10711042SErik.Nordmark@Sun.COM 
10811042SErik.Nordmark@Sun.COM #include <ipp/ipp.h>
10911042SErik.Nordmark@Sun.COM #include <ipp/ipp_impl.h>
11011042SErik.Nordmark@Sun.COM #include <ipp/ipgpc/ipgpc.h>
11111042SErik.Nordmark@Sun.COM 
11211042SErik.Nordmark@Sun.COM #include <sys/pattr.h>
11311042SErik.Nordmark@Sun.COM #include <inet/ipclassifier.h>
11411042SErik.Nordmark@Sun.COM #include <inet/sctp_ip.h>
11511042SErik.Nordmark@Sun.COM #include <inet/sctp/sctp_impl.h>
11611042SErik.Nordmark@Sun.COM #include <inet/udp_impl.h>
11711042SErik.Nordmark@Sun.COM #include <sys/sunddi.h>
11811042SErik.Nordmark@Sun.COM 
11911042SErik.Nordmark@Sun.COM #include <sys/tsol/label.h>
12011042SErik.Nordmark@Sun.COM #include <sys/tsol/tnet.h>
12111042SErik.Nordmark@Sun.COM 
12211110SErik.Nordmark@Sun.COM #include <sys/clock_impl.h>	/* For LBOLT_FASTPATH{,64} */
12311042SErik.Nordmark@Sun.COM 
12411042SErik.Nordmark@Sun.COM #ifdef	DEBUG
12511042SErik.Nordmark@Sun.COM extern boolean_t skip_sctp_cksum;
12611042SErik.Nordmark@Sun.COM #endif
12711042SErik.Nordmark@Sun.COM 
12811042SErik.Nordmark@Sun.COM static void	ip_input_local_v4(ire_t *, mblk_t *, ipha_t *,
12911042SErik.Nordmark@Sun.COM     ip_recv_attr_t *);
13011042SErik.Nordmark@Sun.COM 
13111042SErik.Nordmark@Sun.COM static void	ip_input_broadcast_v4(ire_t *, mblk_t *, ipha_t *,
13211042SErik.Nordmark@Sun.COM     ip_recv_attr_t *);
13311042SErik.Nordmark@Sun.COM static void	ip_input_multicast_v4(ire_t *, mblk_t *, ipha_t *,
13411042SErik.Nordmark@Sun.COM     ip_recv_attr_t *);
13511042SErik.Nordmark@Sun.COM 
13611042SErik.Nordmark@Sun.COM #pragma inline(ip_input_common_v4, ip_input_local_v4, ip_forward_xmit_v4)
13711042SErik.Nordmark@Sun.COM 
13811042SErik.Nordmark@Sun.COM /*
13911042SErik.Nordmark@Sun.COM  * Direct read side procedure capable of dealing with chains. GLDv3 based
14011042SErik.Nordmark@Sun.COM  * drivers call this function directly with mblk chains while STREAMS
14111042SErik.Nordmark@Sun.COM  * read side procedure ip_rput() calls this for single packet with ip_ring
14211042SErik.Nordmark@Sun.COM  * set to NULL to process one packet at a time.
14311042SErik.Nordmark@Sun.COM  *
14411042SErik.Nordmark@Sun.COM  * The ill will always be valid if this function is called directly from
14511042SErik.Nordmark@Sun.COM  * the driver.
14611042SErik.Nordmark@Sun.COM  *
14711042SErik.Nordmark@Sun.COM  * If ip_input() is called from GLDv3:
14811042SErik.Nordmark@Sun.COM  *
14911042SErik.Nordmark@Sun.COM  *   - This must be a non-VLAN IP stream.
15011042SErik.Nordmark@Sun.COM  *   - 'mp' is either an untagged or a special priority-tagged packet.
15111042SErik.Nordmark@Sun.COM  *   - Any VLAN tag that was in the MAC header has been stripped.
15211042SErik.Nordmark@Sun.COM  *
15311042SErik.Nordmark@Sun.COM  * If the IP header in packet is not 32-bit aligned, every message in the
15411042SErik.Nordmark@Sun.COM  * chain will be aligned before further operations. This is required on SPARC
15511042SErik.Nordmark@Sun.COM  * platform.
15611042SErik.Nordmark@Sun.COM  */
15711042SErik.Nordmark@Sun.COM void
ip_input(ill_t * ill,ill_rx_ring_t * ip_ring,mblk_t * mp_chain,struct mac_header_info_s * mhip)15811042SErik.Nordmark@Sun.COM ip_input(ill_t *ill, ill_rx_ring_t *ip_ring, mblk_t *mp_chain,
15911042SErik.Nordmark@Sun.COM     struct mac_header_info_s *mhip)
16011042SErik.Nordmark@Sun.COM {
16111042SErik.Nordmark@Sun.COM 	(void) ip_input_common_v4(ill, ip_ring, mp_chain, mhip, NULL, NULL,
16211042SErik.Nordmark@Sun.COM 	    NULL);
16311042SErik.Nordmark@Sun.COM }
16411042SErik.Nordmark@Sun.COM 
16511042SErik.Nordmark@Sun.COM /*
16611042SErik.Nordmark@Sun.COM  * ip_accept_tcp() - This function is called by the squeue when it retrieves
16711042SErik.Nordmark@Sun.COM  * a chain of packets in the poll mode. The packets have gone through the
16811042SErik.Nordmark@Sun.COM  * data link processing but not IP processing. For performance and latency
16911042SErik.Nordmark@Sun.COM  * reasons, the squeue wants to process the chain in line instead of feeding
17011042SErik.Nordmark@Sun.COM  * it back via ip_input path.
17111042SErik.Nordmark@Sun.COM  *
17211042SErik.Nordmark@Sun.COM  * We set up the ip_recv_attr_t with IRAF_TARGET_SQP to that ip_fanout_v4
17311042SErik.Nordmark@Sun.COM  * will pass back any TCP packets matching the target sqp to
17411042SErik.Nordmark@Sun.COM  * ip_input_common_v4 using ira_target_sqp_mp. Other packets are handled by
17511042SErik.Nordmark@Sun.COM  * ip_input_v4 and ip_fanout_v4 as normal.
17611042SErik.Nordmark@Sun.COM  * The TCP packets that match the target squeue are returned to the caller
17711042SErik.Nordmark@Sun.COM  * as a b_next chain after each packet has been prepend with an mblk
17811042SErik.Nordmark@Sun.COM  * from ip_recv_attr_to_mblk.
17911042SErik.Nordmark@Sun.COM  */
18011042SErik.Nordmark@Sun.COM mblk_t *
ip_accept_tcp(ill_t * ill,ill_rx_ring_t * ip_ring,squeue_t * target_sqp,mblk_t * mp_chain,mblk_t ** last,uint_t * cnt)18111042SErik.Nordmark@Sun.COM ip_accept_tcp(ill_t *ill, ill_rx_ring_t *ip_ring, squeue_t *target_sqp,
18211042SErik.Nordmark@Sun.COM     mblk_t *mp_chain, mblk_t **last, uint_t *cnt)
18311042SErik.Nordmark@Sun.COM {
18411042SErik.Nordmark@Sun.COM 	return (ip_input_common_v4(ill, ip_ring, mp_chain, NULL, target_sqp,
18511042SErik.Nordmark@Sun.COM 	    last, cnt));
18611042SErik.Nordmark@Sun.COM }
18711042SErik.Nordmark@Sun.COM 
18811042SErik.Nordmark@Sun.COM /*
18911042SErik.Nordmark@Sun.COM  * Used by ip_input and ip_accept_tcp
19011042SErik.Nordmark@Sun.COM  * The last three arguments are only used by ip_accept_tcp, and mhip is
19111042SErik.Nordmark@Sun.COM  * only used by ip_input.
19211042SErik.Nordmark@Sun.COM  */
19311042SErik.Nordmark@Sun.COM mblk_t *
ip_input_common_v4(ill_t * ill,ill_rx_ring_t * ip_ring,mblk_t * mp_chain,struct mac_header_info_s * mhip,squeue_t * target_sqp,mblk_t ** last,uint_t * cnt)19411042SErik.Nordmark@Sun.COM ip_input_common_v4(ill_t *ill, ill_rx_ring_t *ip_ring, mblk_t *mp_chain,
19511042SErik.Nordmark@Sun.COM     struct mac_header_info_s *mhip, squeue_t *target_sqp,
19611042SErik.Nordmark@Sun.COM     mblk_t **last, uint_t *cnt)
19711042SErik.Nordmark@Sun.COM {
19811042SErik.Nordmark@Sun.COM 	mblk_t		*mp;
19911042SErik.Nordmark@Sun.COM 	ipha_t		*ipha;
20011042SErik.Nordmark@Sun.COM 	ip_recv_attr_t	iras;	/* Receive attributes */
20111042SErik.Nordmark@Sun.COM 	rtc_t		rtc;
20211042SErik.Nordmark@Sun.COM 	iaflags_t	chain_flags = 0;	/* Fixed for chain */
20311042SErik.Nordmark@Sun.COM 	mblk_t 		*ahead = NULL;	/* Accepted head */
20411042SErik.Nordmark@Sun.COM 	mblk_t		*atail = NULL;	/* Accepted tail */
20511042SErik.Nordmark@Sun.COM 	uint_t		acnt = 0;	/* Accepted count */
20611042SErik.Nordmark@Sun.COM 
20711042SErik.Nordmark@Sun.COM 	ASSERT(mp_chain != NULL);
20811042SErik.Nordmark@Sun.COM 	ASSERT(ill != NULL);
20911042SErik.Nordmark@Sun.COM 
21011042SErik.Nordmark@Sun.COM 	/* These ones do not change as we loop over packets */
21111042SErik.Nordmark@Sun.COM 	iras.ira_ill = iras.ira_rill = ill;
21211042SErik.Nordmark@Sun.COM 	iras.ira_ruifindex = ill->ill_phyint->phyint_ifindex;
21311042SErik.Nordmark@Sun.COM 	iras.ira_rifindex = iras.ira_ruifindex;
21411042SErik.Nordmark@Sun.COM 	iras.ira_sqp = NULL;
21511042SErik.Nordmark@Sun.COM 	iras.ira_ring = ip_ring;
21611042SErik.Nordmark@Sun.COM 	/* For ECMP and outbound transmit ring selection */
21711042SErik.Nordmark@Sun.COM 	iras.ira_xmit_hint = ILL_RING_TO_XMIT_HINT(ip_ring);
21811042SErik.Nordmark@Sun.COM 
21911042SErik.Nordmark@Sun.COM 	iras.ira_target_sqp = target_sqp;
22011042SErik.Nordmark@Sun.COM 	iras.ira_target_sqp_mp = NULL;
22111042SErik.Nordmark@Sun.COM 	if (target_sqp != NULL)
22211042SErik.Nordmark@Sun.COM 		chain_flags |= IRAF_TARGET_SQP;
22311042SErik.Nordmark@Sun.COM 
22411042SErik.Nordmark@Sun.COM 	/*
22511042SErik.Nordmark@Sun.COM 	 * We try to have a mhip pointer when possible, but
22611042SErik.Nordmark@Sun.COM 	 * it might be NULL in some cases. In those cases we
22711042SErik.Nordmark@Sun.COM 	 * have to assume unicast.
22811042SErik.Nordmark@Sun.COM 	 */
22911042SErik.Nordmark@Sun.COM 	iras.ira_mhip = mhip;
23011042SErik.Nordmark@Sun.COM 	iras.ira_flags = 0;
23111042SErik.Nordmark@Sun.COM 	if (mhip != NULL) {
23211042SErik.Nordmark@Sun.COM 		switch (mhip->mhi_dsttype) {
23311042SErik.Nordmark@Sun.COM 		case MAC_ADDRTYPE_MULTICAST :
23411042SErik.Nordmark@Sun.COM 			chain_flags |= IRAF_L2DST_MULTICAST;
23511042SErik.Nordmark@Sun.COM 			break;
23611042SErik.Nordmark@Sun.COM 		case MAC_ADDRTYPE_BROADCAST :
23711042SErik.Nordmark@Sun.COM 			chain_flags |= IRAF_L2DST_BROADCAST;
23811042SErik.Nordmark@Sun.COM 			break;
23911042SErik.Nordmark@Sun.COM 		}
24011042SErik.Nordmark@Sun.COM 	}
24111042SErik.Nordmark@Sun.COM 
24211042SErik.Nordmark@Sun.COM 	/*
24311042SErik.Nordmark@Sun.COM 	 * Initialize the one-element route cache.
24411042SErik.Nordmark@Sun.COM 	 *
24511042SErik.Nordmark@Sun.COM 	 * We do ire caching from one iteration to
24611042SErik.Nordmark@Sun.COM 	 * another. In the event the packet chain contains
24711042SErik.Nordmark@Sun.COM 	 * all packets from the same dst, this caching saves
24811042SErik.Nordmark@Sun.COM 	 * an ire_route_recursive for each of the succeeding
24911042SErik.Nordmark@Sun.COM 	 * packets in a packet chain.
25011042SErik.Nordmark@Sun.COM 	 */
25111042SErik.Nordmark@Sun.COM 	rtc.rtc_ire = NULL;
25211042SErik.Nordmark@Sun.COM 	rtc.rtc_ipaddr = INADDR_ANY;
25311042SErik.Nordmark@Sun.COM 
25411042SErik.Nordmark@Sun.COM 	/* Loop over b_next */
25511042SErik.Nordmark@Sun.COM 	for (mp = mp_chain; mp != NULL; mp = mp_chain) {
25611042SErik.Nordmark@Sun.COM 		mp_chain = mp->b_next;
25711042SErik.Nordmark@Sun.COM 		mp->b_next = NULL;
25811042SErik.Nordmark@Sun.COM 
25911042SErik.Nordmark@Sun.COM 		ASSERT(DB_TYPE(mp) == M_DATA);
26011042SErik.Nordmark@Sun.COM 
26111042SErik.Nordmark@Sun.COM 
26211042SErik.Nordmark@Sun.COM 		/*
26311042SErik.Nordmark@Sun.COM 		 * if db_ref > 1 then copymsg and free original. Packet
26411042SErik.Nordmark@Sun.COM 		 * may be changed and we do not want the other entity
26511042SErik.Nordmark@Sun.COM 		 * who has a reference to this message to trip over the
26611042SErik.Nordmark@Sun.COM 		 * changes. This is a blind change because trying to
26711042SErik.Nordmark@Sun.COM 		 * catch all places that might change the packet is too
26811042SErik.Nordmark@Sun.COM 		 * difficult.
26911042SErik.Nordmark@Sun.COM 		 *
27011042SErik.Nordmark@Sun.COM 		 * This corresponds to the fast path case, where we have
27111042SErik.Nordmark@Sun.COM 		 * a chain of M_DATA mblks.  We check the db_ref count
27211042SErik.Nordmark@Sun.COM 		 * of only the 1st data block in the mblk chain. There
27311042SErik.Nordmark@Sun.COM 		 * doesn't seem to be a reason why a device driver would
27411042SErik.Nordmark@Sun.COM 		 * send up data with varying db_ref counts in the mblk
27511042SErik.Nordmark@Sun.COM 		 * chain. In any case the Fast path is a private
27611042SErik.Nordmark@Sun.COM 		 * interface, and our drivers don't do such a thing.
27711042SErik.Nordmark@Sun.COM 		 * Given the above assumption, there is no need to walk
27811042SErik.Nordmark@Sun.COM 		 * down the entire mblk chain (which could have a
27911042SErik.Nordmark@Sun.COM 		 * potential performance problem)
28011042SErik.Nordmark@Sun.COM 		 *
28111042SErik.Nordmark@Sun.COM 		 * The "(DB_REF(mp) > 1)" check was moved from ip_rput()
28211042SErik.Nordmark@Sun.COM 		 * to here because of exclusive ip stacks and vnics.
28311042SErik.Nordmark@Sun.COM 		 * Packets transmitted from exclusive stack over vnic
28411042SErik.Nordmark@Sun.COM 		 * can have db_ref > 1 and when it gets looped back to
28511042SErik.Nordmark@Sun.COM 		 * another vnic in a different zone, you have ip_input()
28611042SErik.Nordmark@Sun.COM 		 * getting dblks with db_ref > 1. So if someone
28711042SErik.Nordmark@Sun.COM 		 * complains of TCP performance under this scenario,
28811042SErik.Nordmark@Sun.COM 		 * take a serious look here on the impact of copymsg().
28911042SErik.Nordmark@Sun.COM 		 */
29011042SErik.Nordmark@Sun.COM 		if (DB_REF(mp) > 1) {
29111042SErik.Nordmark@Sun.COM 			if ((mp = ip_fix_dbref(mp, &iras)) == NULL) {
29211042SErik.Nordmark@Sun.COM 				/* mhip might point into 1st packet in chain */
29311042SErik.Nordmark@Sun.COM 				iras.ira_mhip = NULL;
29411042SErik.Nordmark@Sun.COM 				continue;
29511042SErik.Nordmark@Sun.COM 			}
29611042SErik.Nordmark@Sun.COM 		}
29711042SErik.Nordmark@Sun.COM 
29811042SErik.Nordmark@Sun.COM 		/*
29911042SErik.Nordmark@Sun.COM 		 * IP header ptr not aligned?
30011042SErik.Nordmark@Sun.COM 		 * OR IP header not complete in first mblk
30111042SErik.Nordmark@Sun.COM 		 */
30211042SErik.Nordmark@Sun.COM 		ipha = (ipha_t *)mp->b_rptr;
30311042SErik.Nordmark@Sun.COM 		if (!OK_32PTR(ipha) || MBLKL(mp) < IP_SIMPLE_HDR_LENGTH) {
30411042SErik.Nordmark@Sun.COM 			mp = ip_check_and_align_header(mp, IP_SIMPLE_HDR_LENGTH,
30511042SErik.Nordmark@Sun.COM 			    &iras);
30611042SErik.Nordmark@Sun.COM 			if (mp == NULL) {
30711042SErik.Nordmark@Sun.COM 				/* mhip might point into 1st packet in chain */
30811042SErik.Nordmark@Sun.COM 				iras.ira_mhip = NULL;
30911042SErik.Nordmark@Sun.COM 				continue;
31011042SErik.Nordmark@Sun.COM 			}
31111042SErik.Nordmark@Sun.COM 			ipha = (ipha_t *)mp->b_rptr;
31211042SErik.Nordmark@Sun.COM 		}
31311042SErik.Nordmark@Sun.COM 
31411042SErik.Nordmark@Sun.COM 		/* Protect against a mix of Ethertypes and IP versions */
31511042SErik.Nordmark@Sun.COM 		if (IPH_HDR_VERSION(ipha) != IPV4_VERSION) {
31611042SErik.Nordmark@Sun.COM 			BUMP_MIB(ill->ill_ip_mib, ipIfStatsInHdrErrors);
31711042SErik.Nordmark@Sun.COM 			ip_drop_input("ipIfStatsInHdrErrors", mp, ill);
31811042SErik.Nordmark@Sun.COM 			freemsg(mp);
31911042SErik.Nordmark@Sun.COM 			/* mhip might point into 1st packet in the chain. */
32011042SErik.Nordmark@Sun.COM 			iras.ira_mhip = NULL;
32111042SErik.Nordmark@Sun.COM 			continue;
32211042SErik.Nordmark@Sun.COM 		}
32311042SErik.Nordmark@Sun.COM 
32411042SErik.Nordmark@Sun.COM 		/*
32511042SErik.Nordmark@Sun.COM 		 * Check for Martian addrs; we have to explicitly
32611042SErik.Nordmark@Sun.COM 		 * test for for zero dst since this is also used as
32711042SErik.Nordmark@Sun.COM 		 * an indication that the rtc is not used.
32811042SErik.Nordmark@Sun.COM 		 */
32911042SErik.Nordmark@Sun.COM 		if (ipha->ipha_dst == INADDR_ANY) {
33011042SErik.Nordmark@Sun.COM 			BUMP_MIB(ill->ill_ip_mib, ipIfStatsInAddrErrors);
33111042SErik.Nordmark@Sun.COM 			ip_drop_input("ipIfStatsInAddrErrors", mp, ill);
33211042SErik.Nordmark@Sun.COM 			freemsg(mp);
33311042SErik.Nordmark@Sun.COM 			/* mhip might point into 1st packet in the chain. */
33411042SErik.Nordmark@Sun.COM 			iras.ira_mhip = NULL;
33511042SErik.Nordmark@Sun.COM 			continue;
33611042SErik.Nordmark@Sun.COM 		}
33711042SErik.Nordmark@Sun.COM 
33811042SErik.Nordmark@Sun.COM 		/*
33911042SErik.Nordmark@Sun.COM 		 * Keep L2SRC from a previous packet in chain since mhip
34011042SErik.Nordmark@Sun.COM 		 * might point into an earlier packet in the chain.
34111042SErik.Nordmark@Sun.COM 		 * Keep IRAF_VERIFIED_SRC to avoid redoing broadcast
34211042SErik.Nordmark@Sun.COM 		 * source check in forwarding path.
34311042SErik.Nordmark@Sun.COM 		 */
34411042SErik.Nordmark@Sun.COM 		chain_flags |= (iras.ira_flags &
34511042SErik.Nordmark@Sun.COM 		    (IRAF_L2SRC_SET|IRAF_VERIFIED_SRC));
34611042SErik.Nordmark@Sun.COM 
34711042SErik.Nordmark@Sun.COM 		iras.ira_flags = IRAF_IS_IPV4 | IRAF_VERIFY_IP_CKSUM |
34811042SErik.Nordmark@Sun.COM 		    IRAF_VERIFY_ULP_CKSUM | chain_flags;
34911042SErik.Nordmark@Sun.COM 		iras.ira_free_flags = 0;
35011042SErik.Nordmark@Sun.COM 		iras.ira_cred = NULL;
35111042SErik.Nordmark@Sun.COM 		iras.ira_cpid = NOPID;
35211042SErik.Nordmark@Sun.COM 		iras.ira_tsl = NULL;
35311042SErik.Nordmark@Sun.COM 		iras.ira_zoneid = ALL_ZONES;	/* Default for forwarding */
35411042SErik.Nordmark@Sun.COM 
35511042SErik.Nordmark@Sun.COM 		/*
35611042SErik.Nordmark@Sun.COM 		 * We must count all incoming packets, even if they end
35711042SErik.Nordmark@Sun.COM 		 * up being dropped later on. Defer counting bytes until
35811042SErik.Nordmark@Sun.COM 		 * we have the whole IP header in first mblk.
35911042SErik.Nordmark@Sun.COM 		 */
36011042SErik.Nordmark@Sun.COM 		BUMP_MIB(ill->ill_ip_mib, ipIfStatsHCInReceives);
36111042SErik.Nordmark@Sun.COM 
36211042SErik.Nordmark@Sun.COM 		iras.ira_pktlen = ntohs(ipha->ipha_length);
36311042SErik.Nordmark@Sun.COM 		UPDATE_MIB(ill->ill_ip_mib, ipIfStatsHCInOctets,
36411042SErik.Nordmark@Sun.COM 		    iras.ira_pktlen);
36511042SErik.Nordmark@Sun.COM 
36611042SErik.Nordmark@Sun.COM 		/*
36711042SErik.Nordmark@Sun.COM 		 * Call one of:
36811042SErik.Nordmark@Sun.COM 		 * 	ill_input_full_v4
36911042SErik.Nordmark@Sun.COM 		 *	ill_input_short_v4
37011042SErik.Nordmark@Sun.COM 		 * The former is used in unusual cases. See ill_set_inputfn().
37111042SErik.Nordmark@Sun.COM 		 */
37211042SErik.Nordmark@Sun.COM 		(*ill->ill_inputfn)(mp, ipha, &ipha->ipha_dst, &iras, &rtc);
37311042SErik.Nordmark@Sun.COM 
37411042SErik.Nordmark@Sun.COM 		/* Any references to clean up? No hold on ira_ill */
37511042SErik.Nordmark@Sun.COM 		if (iras.ira_flags & (IRAF_IPSEC_SECURE|IRAF_SYSTEM_LABELED))
37611042SErik.Nordmark@Sun.COM 			ira_cleanup(&iras, B_FALSE);
37711042SErik.Nordmark@Sun.COM 
37811042SErik.Nordmark@Sun.COM 		if (iras.ira_target_sqp_mp != NULL) {
37911042SErik.Nordmark@Sun.COM 			/* Better be called from ip_accept_tcp */
38011042SErik.Nordmark@Sun.COM 			ASSERT(target_sqp != NULL);
38111042SErik.Nordmark@Sun.COM 
38211042SErik.Nordmark@Sun.COM 			/* Found one packet to accept */
38311042SErik.Nordmark@Sun.COM 			mp = iras.ira_target_sqp_mp;
38411042SErik.Nordmark@Sun.COM 			iras.ira_target_sqp_mp = NULL;
38511042SErik.Nordmark@Sun.COM 			ASSERT(ip_recv_attr_is_mblk(mp));
38611042SErik.Nordmark@Sun.COM 
38711042SErik.Nordmark@Sun.COM 			if (atail != NULL)
38811042SErik.Nordmark@Sun.COM 				atail->b_next = mp;
38911042SErik.Nordmark@Sun.COM 			else
39011042SErik.Nordmark@Sun.COM 				ahead = mp;
39111042SErik.Nordmark@Sun.COM 			atail = mp;
39211042SErik.Nordmark@Sun.COM 			acnt++;
39311042SErik.Nordmark@Sun.COM 			mp = NULL;
39411042SErik.Nordmark@Sun.COM 		}
39511042SErik.Nordmark@Sun.COM 		/* mhip might point into 1st packet in the chain. */
39611042SErik.Nordmark@Sun.COM 		iras.ira_mhip = NULL;
39711042SErik.Nordmark@Sun.COM 	}
39811042SErik.Nordmark@Sun.COM 	/* Any remaining references to the route cache? */
39911042SErik.Nordmark@Sun.COM 	if (rtc.rtc_ire != NULL) {
40011042SErik.Nordmark@Sun.COM 		ASSERT(rtc.rtc_ipaddr != INADDR_ANY);
40111042SErik.Nordmark@Sun.COM 		ire_refrele(rtc.rtc_ire);
40211042SErik.Nordmark@Sun.COM 	}
40311042SErik.Nordmark@Sun.COM 
40411042SErik.Nordmark@Sun.COM 	if (ahead != NULL) {
40511042SErik.Nordmark@Sun.COM 		/* Better be called from ip_accept_tcp */
40611042SErik.Nordmark@Sun.COM 		ASSERT(target_sqp != NULL);
40711042SErik.Nordmark@Sun.COM 		*last = atail;
40811042SErik.Nordmark@Sun.COM 		*cnt = acnt;
40911042SErik.Nordmark@Sun.COM 		return (ahead);
41011042SErik.Nordmark@Sun.COM 	}
41111042SErik.Nordmark@Sun.COM 
41211042SErik.Nordmark@Sun.COM 	return (NULL);
41311042SErik.Nordmark@Sun.COM }
41411042SErik.Nordmark@Sun.COM 
41511042SErik.Nordmark@Sun.COM /*
41611042SErik.Nordmark@Sun.COM  * This input function is used when
41711042SErik.Nordmark@Sun.COM  *  - is_system_labeled()
41811042SErik.Nordmark@Sun.COM  *  - CGTP filtering
41911042SErik.Nordmark@Sun.COM  *  - DHCP unicast before we have an IP address configured
42011042SErik.Nordmark@Sun.COM  *  - there is an listener for IPPROTO_RSVP
42111042SErik.Nordmark@Sun.COM  */
42211042SErik.Nordmark@Sun.COM void
ill_input_full_v4(mblk_t * mp,void * iph_arg,void * nexthop_arg,ip_recv_attr_t * ira,rtc_t * rtc)42311042SErik.Nordmark@Sun.COM ill_input_full_v4(mblk_t *mp, void *iph_arg, void *nexthop_arg,
42411042SErik.Nordmark@Sun.COM     ip_recv_attr_t *ira, rtc_t *rtc)
42511042SErik.Nordmark@Sun.COM {
42611042SErik.Nordmark@Sun.COM 	ipha_t		*ipha = (ipha_t *)iph_arg;
42711042SErik.Nordmark@Sun.COM 	ipaddr_t	nexthop = *(ipaddr_t *)nexthop_arg;
42811042SErik.Nordmark@Sun.COM 	ill_t		*ill = ira->ira_ill;
42911042SErik.Nordmark@Sun.COM 	ip_stack_t	*ipst = ill->ill_ipst;
43011042SErik.Nordmark@Sun.COM 	int		cgtp_flt_pkt;
43111042SErik.Nordmark@Sun.COM 
43211042SErik.Nordmark@Sun.COM 	ASSERT(ira->ira_tsl == NULL);
43311042SErik.Nordmark@Sun.COM 
43411042SErik.Nordmark@Sun.COM 	/*
43511042SErik.Nordmark@Sun.COM 	 * Attach any necessary label information to
43611042SErik.Nordmark@Sun.COM 	 * this packet
43711042SErik.Nordmark@Sun.COM 	 */
43811042SErik.Nordmark@Sun.COM 	if (is_system_labeled()) {
43911042SErik.Nordmark@Sun.COM 		ira->ira_flags |= IRAF_SYSTEM_LABELED;
44011042SErik.Nordmark@Sun.COM 
44111042SErik.Nordmark@Sun.COM 		/*
44211042SErik.Nordmark@Sun.COM 		 * This updates ira_cred, ira_tsl and ira_free_flags based
44311042SErik.Nordmark@Sun.COM 		 * on the label.
44411042SErik.Nordmark@Sun.COM 		 */
44511042SErik.Nordmark@Sun.COM 		if (!tsol_get_pkt_label(mp, IPV4_VERSION, ira)) {
44611042SErik.Nordmark@Sun.COM 			BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards);
44711042SErik.Nordmark@Sun.COM 			ip_drop_input("ipIfStatsInDiscards", mp, ill);
44811042SErik.Nordmark@Sun.COM 			freemsg(mp);
44911042SErik.Nordmark@Sun.COM 			return;
45011042SErik.Nordmark@Sun.COM 		}
45111042SErik.Nordmark@Sun.COM 		/* Note that ira_tsl can be NULL here. */
45211042SErik.Nordmark@Sun.COM 
45311042SErik.Nordmark@Sun.COM 		/* tsol_get_pkt_label sometimes does pullupmsg */
45411042SErik.Nordmark@Sun.COM 		ipha = (ipha_t *)mp->b_rptr;
45511042SErik.Nordmark@Sun.COM 	}
45611042SErik.Nordmark@Sun.COM 
45711042SErik.Nordmark@Sun.COM 	/*
45811042SErik.Nordmark@Sun.COM 	 * Invoke the CGTP (multirouting) filtering module to process
45911042SErik.Nordmark@Sun.COM 	 * the incoming packet. Packets identified as duplicates
46011042SErik.Nordmark@Sun.COM 	 * must be discarded. Filtering is active only if the
46111042SErik.Nordmark@Sun.COM 	 * the ip_cgtp_filter ndd variable is non-zero.
46211042SErik.Nordmark@Sun.COM 	 */
46311042SErik.Nordmark@Sun.COM 	cgtp_flt_pkt = CGTP_IP_PKT_NOT_CGTP;
46411042SErik.Nordmark@Sun.COM 	if (ipst->ips_ip_cgtp_filter &&
46511042SErik.Nordmark@Sun.COM 	    ipst->ips_ip_cgtp_filter_ops != NULL) {
46611042SErik.Nordmark@Sun.COM 		netstackid_t stackid;
46711042SErik.Nordmark@Sun.COM 
46811042SErik.Nordmark@Sun.COM 		stackid = ipst->ips_netstack->netstack_stackid;
46911042SErik.Nordmark@Sun.COM 		/*
47011042SErik.Nordmark@Sun.COM 		 * CGTP and IPMP are mutually exclusive so
47111042SErik.Nordmark@Sun.COM 		 * phyint_ifindex is fine here.
47211042SErik.Nordmark@Sun.COM 		 */
47311042SErik.Nordmark@Sun.COM 		cgtp_flt_pkt =
47411042SErik.Nordmark@Sun.COM 		    ipst->ips_ip_cgtp_filter_ops->cfo_filter(stackid,
47511042SErik.Nordmark@Sun.COM 		    ill->ill_phyint->phyint_ifindex, mp);
47611042SErik.Nordmark@Sun.COM 		if (cgtp_flt_pkt == CGTP_IP_PKT_DUPLICATE) {
47711042SErik.Nordmark@Sun.COM 			ip_drop_input("CGTP_IP_PKT_DUPLICATE", mp, ill);
47811042SErik.Nordmark@Sun.COM 			freemsg(mp);
47911042SErik.Nordmark@Sun.COM 			return;
48011042SErik.Nordmark@Sun.COM 		}
48111042SErik.Nordmark@Sun.COM 	}
48211042SErik.Nordmark@Sun.COM 
48311042SErik.Nordmark@Sun.COM 	/*
48411042SErik.Nordmark@Sun.COM 	 * Brutal hack for DHCPv4 unicast: RFC2131 allows a DHCP
48511042SErik.Nordmark@Sun.COM 	 * server to unicast DHCP packets to a DHCP client using the
48611042SErik.Nordmark@Sun.COM 	 * IP address it is offering to the client.  This can be
48711042SErik.Nordmark@Sun.COM 	 * disabled through the "broadcast bit", but not all DHCP
48811042SErik.Nordmark@Sun.COM 	 * servers honor that bit.  Therefore, to interoperate with as
48911042SErik.Nordmark@Sun.COM 	 * many DHCP servers as possible, the DHCP client allows the
49011042SErik.Nordmark@Sun.COM 	 * server to unicast, but we treat those packets as broadcast
49111042SErik.Nordmark@Sun.COM 	 * here.  Note that we don't rewrite the packet itself since
49211042SErik.Nordmark@Sun.COM 	 * (a) that would mess up the checksums and (b) the DHCP
49311042SErik.Nordmark@Sun.COM 	 * client conn is bound to INADDR_ANY so ip_fanout_udp() will
49411042SErik.Nordmark@Sun.COM 	 * hand it the packet regardless.
49511042SErik.Nordmark@Sun.COM 	 */
49611042SErik.Nordmark@Sun.COM 	if (ill->ill_dhcpinit != 0 &&
49711042SErik.Nordmark@Sun.COM 	    ipha->ipha_version_and_hdr_length == IP_SIMPLE_HDR_VERSION &&
49811042SErik.Nordmark@Sun.COM 	    ipha->ipha_protocol == IPPROTO_UDP) {
49911042SErik.Nordmark@Sun.COM 		udpha_t *udpha;
50011042SErik.Nordmark@Sun.COM 
50111042SErik.Nordmark@Sun.COM 		ipha = ip_pullup(mp, sizeof (ipha_t) + sizeof (udpha_t), ira);
50211042SErik.Nordmark@Sun.COM 		if (ipha == NULL) {
50311042SErik.Nordmark@Sun.COM 			BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards);
50411042SErik.Nordmark@Sun.COM 			ip_drop_input("ipIfStatsInDiscards - dhcp", mp, ill);
50511042SErik.Nordmark@Sun.COM 			freemsg(mp);
50611042SErik.Nordmark@Sun.COM 			return;
50711042SErik.Nordmark@Sun.COM 		}
50811042SErik.Nordmark@Sun.COM 		/* Reload since pullupmsg() can change b_rptr. */
50911042SErik.Nordmark@Sun.COM 		udpha = (udpha_t *)&ipha[1];
51011042SErik.Nordmark@Sun.COM 
51111042SErik.Nordmark@Sun.COM 		if (ntohs(udpha->uha_dst_port) == IPPORT_BOOTPC) {
51211042SErik.Nordmark@Sun.COM 			DTRACE_PROBE2(ip4__dhcpinit__pkt, ill_t *, ill,
51311042SErik.Nordmark@Sun.COM 			    mblk_t *, mp);
51411042SErik.Nordmark@Sun.COM 			/*
51511042SErik.Nordmark@Sun.COM 			 * This assumes that we deliver to all conns for
51611042SErik.Nordmark@Sun.COM 			 * multicast and broadcast packets.
51711042SErik.Nordmark@Sun.COM 			 */
51811042SErik.Nordmark@Sun.COM 			nexthop = INADDR_BROADCAST;
51911042SErik.Nordmark@Sun.COM 			ira->ira_flags |= IRAF_DHCP_UNICAST;
52011042SErik.Nordmark@Sun.COM 		}
52111042SErik.Nordmark@Sun.COM 	}
52211042SErik.Nordmark@Sun.COM 
52311042SErik.Nordmark@Sun.COM 	/*
52411042SErik.Nordmark@Sun.COM 	 * If rsvpd is running, let RSVP daemon handle its processing
52511042SErik.Nordmark@Sun.COM 	 * and forwarding of RSVP multicast/unicast packets.
52611042SErik.Nordmark@Sun.COM 	 * If rsvpd is not running but mrouted is running, RSVP
52711042SErik.Nordmark@Sun.COM 	 * multicast packets are forwarded as multicast traffic
52811042SErik.Nordmark@Sun.COM 	 * and RSVP unicast packets are forwarded by unicast router.
52911042SErik.Nordmark@Sun.COM 	 * If neither rsvpd nor mrouted is running, RSVP multicast
53011042SErik.Nordmark@Sun.COM 	 * packets are not forwarded, but the unicast packets are
53111042SErik.Nordmark@Sun.COM 	 * forwarded like unicast traffic.
53211042SErik.Nordmark@Sun.COM 	 */
53311042SErik.Nordmark@Sun.COM 	if (ipha->ipha_protocol == IPPROTO_RSVP &&
53411042SErik.Nordmark@Sun.COM 	    ipst->ips_ipcl_proto_fanout_v4[IPPROTO_RSVP].connf_head != NULL) {
53511042SErik.Nordmark@Sun.COM 		/* RSVP packet and rsvpd running. Treat as ours */
53611042SErik.Nordmark@Sun.COM 		ip2dbg(("ip_input: RSVP for us: 0x%x\n", ntohl(nexthop)));
53711042SErik.Nordmark@Sun.COM 		/*
53811042SErik.Nordmark@Sun.COM 		 * We use a multicast address to get the packet to
53911042SErik.Nordmark@Sun.COM 		 * ire_recv_multicast_v4. There will not be a membership
54011042SErik.Nordmark@Sun.COM 		 * check since we set IRAF_RSVP
54111042SErik.Nordmark@Sun.COM 		 */
54211042SErik.Nordmark@Sun.COM 		nexthop = htonl(INADDR_UNSPEC_GROUP);
54311042SErik.Nordmark@Sun.COM 		ira->ira_flags |= IRAF_RSVP;
54411042SErik.Nordmark@Sun.COM 	}
54511042SErik.Nordmark@Sun.COM 
54611042SErik.Nordmark@Sun.COM 	ill_input_short_v4(mp, ipha, &nexthop, ira, rtc);
54711042SErik.Nordmark@Sun.COM }
54811042SErik.Nordmark@Sun.COM 
54911042SErik.Nordmark@Sun.COM /*
55011042SErik.Nordmark@Sun.COM  * This is the tail-end of the full receive side packet handling.
55111042SErik.Nordmark@Sun.COM  * It can be used directly when the configuration is simple.
55211042SErik.Nordmark@Sun.COM  */
55311042SErik.Nordmark@Sun.COM void
ill_input_short_v4(mblk_t * mp,void * iph_arg,void * nexthop_arg,ip_recv_attr_t * ira,rtc_t * rtc)55411042SErik.Nordmark@Sun.COM ill_input_short_v4(mblk_t *mp, void *iph_arg, void *nexthop_arg,
55511042SErik.Nordmark@Sun.COM     ip_recv_attr_t *ira, rtc_t *rtc)
55611042SErik.Nordmark@Sun.COM {
55711042SErik.Nordmark@Sun.COM 	ire_t		*ire;
55811042SErik.Nordmark@Sun.COM 	uint_t		opt_len;
55911042SErik.Nordmark@Sun.COM 	ill_t		*ill = ira->ira_ill;
56011042SErik.Nordmark@Sun.COM 	ip_stack_t	*ipst = ill->ill_ipst;
56111042SErik.Nordmark@Sun.COM 	uint_t		pkt_len;
56211042SErik.Nordmark@Sun.COM 	ssize_t 	len;
56311042SErik.Nordmark@Sun.COM 	ipha_t		*ipha = (ipha_t *)iph_arg;
56411042SErik.Nordmark@Sun.COM 	ipaddr_t	nexthop = *(ipaddr_t *)nexthop_arg;
56511042SErik.Nordmark@Sun.COM 	ilb_stack_t	*ilbs = ipst->ips_netstack->netstack_ilb;
56611457SErik.Nordmark@Sun.COM 	uint_t		irr_flags;
56711042SErik.Nordmark@Sun.COM #define	rptr	((uchar_t *)ipha)
56811042SErik.Nordmark@Sun.COM 
56911042SErik.Nordmark@Sun.COM 	ASSERT(DB_TYPE(mp) == M_DATA);
57011042SErik.Nordmark@Sun.COM 
57111042SErik.Nordmark@Sun.COM 	/*
57211042SErik.Nordmark@Sun.COM 	 * The following test for loopback is faster than
57311042SErik.Nordmark@Sun.COM 	 * IP_LOOPBACK_ADDR(), because it avoids any bitwise
57411042SErik.Nordmark@Sun.COM 	 * operations.
57511042SErik.Nordmark@Sun.COM 	 * Note that these addresses are always in network byte order
57611042SErik.Nordmark@Sun.COM 	 */
57712038SSowmini.Varadhan@Sun.COM 	if (((*(uchar_t *)&ipha->ipha_dst) == IN_LOOPBACKNET) ||
57812038SSowmini.Varadhan@Sun.COM 	    ((*(uchar_t *)&ipha->ipha_src) == IN_LOOPBACKNET)) {
57911042SErik.Nordmark@Sun.COM 		BUMP_MIB(ill->ill_ip_mib, ipIfStatsInAddrErrors);
58011042SErik.Nordmark@Sun.COM 		ip_drop_input("ipIfStatsInAddrErrors", mp, ill);
58111042SErik.Nordmark@Sun.COM 		freemsg(mp);
58211042SErik.Nordmark@Sun.COM 		return;
58311042SErik.Nordmark@Sun.COM 	}
58411042SErik.Nordmark@Sun.COM 
58511042SErik.Nordmark@Sun.COM 	len = mp->b_wptr - rptr;
58611042SErik.Nordmark@Sun.COM 	pkt_len = ira->ira_pktlen;
58711042SErik.Nordmark@Sun.COM 
58811042SErik.Nordmark@Sun.COM 	/* multiple mblk or too short */
58911042SErik.Nordmark@Sun.COM 	len -= pkt_len;
59011042SErik.Nordmark@Sun.COM 	if (len != 0) {
59111042SErik.Nordmark@Sun.COM 		mp = ip_check_length(mp, rptr, len, pkt_len,
59211042SErik.Nordmark@Sun.COM 		    IP_SIMPLE_HDR_LENGTH, ira);
59311042SErik.Nordmark@Sun.COM 		if (mp == NULL)
59411042SErik.Nordmark@Sun.COM 			return;
59511042SErik.Nordmark@Sun.COM 		ipha = (ipha_t *)mp->b_rptr;
59611042SErik.Nordmark@Sun.COM 	}
59711042SErik.Nordmark@Sun.COM 
59811042SErik.Nordmark@Sun.COM 	DTRACE_IP7(receive, mblk_t *, mp, conn_t *, NULL, void_ip_t *,
59911042SErik.Nordmark@Sun.COM 	    ipha, __dtrace_ipsr_ill_t *, ill, ipha_t *, ipha, ip6_t *, NULL,
60011042SErik.Nordmark@Sun.COM 	    int, 0);
60111042SErik.Nordmark@Sun.COM 
60211042SErik.Nordmark@Sun.COM 	/*
60311042SErik.Nordmark@Sun.COM 	 * The event for packets being received from a 'physical'
60411042SErik.Nordmark@Sun.COM 	 * interface is placed after validation of the source and/or
60511042SErik.Nordmark@Sun.COM 	 * destination address as being local so that packets can be
60611042SErik.Nordmark@Sun.COM 	 * redirected to loopback addresses using ipnat.
60711042SErik.Nordmark@Sun.COM 	 */
60811042SErik.Nordmark@Sun.COM 	DTRACE_PROBE4(ip4__physical__in__start,
60911042SErik.Nordmark@Sun.COM 	    ill_t *, ill, ill_t *, NULL,
61011042SErik.Nordmark@Sun.COM 	    ipha_t *, ipha, mblk_t *, mp);
61111042SErik.Nordmark@Sun.COM 
61211042SErik.Nordmark@Sun.COM 	if (HOOKS4_INTERESTED_PHYSICAL_IN(ipst)) {
61311042SErik.Nordmark@Sun.COM 		int	ll_multicast = 0;
61411042SErik.Nordmark@Sun.COM 		int	error;
61511042SErik.Nordmark@Sun.COM 		ipaddr_t orig_dst = ipha->ipha_dst;
61611042SErik.Nordmark@Sun.COM 
61711042SErik.Nordmark@Sun.COM 		if (ira->ira_flags & IRAF_L2DST_MULTICAST)
61811042SErik.Nordmark@Sun.COM 			ll_multicast = HPE_MULTICAST;
61911042SErik.Nordmark@Sun.COM 		else if (ira->ira_flags & IRAF_L2DST_BROADCAST)
62011042SErik.Nordmark@Sun.COM 			ll_multicast = HPE_BROADCAST;
62111042SErik.Nordmark@Sun.COM 
62211042SErik.Nordmark@Sun.COM 		FW_HOOKS(ipst->ips_ip4_physical_in_event,
62311042SErik.Nordmark@Sun.COM 		    ipst->ips_ipv4firewall_physical_in,
62411042SErik.Nordmark@Sun.COM 		    ill, NULL, ipha, mp, mp, ll_multicast, ipst, error);
62511042SErik.Nordmark@Sun.COM 
62611042SErik.Nordmark@Sun.COM 		DTRACE_PROBE1(ip4__physical__in__end, mblk_t *, mp);
62711042SErik.Nordmark@Sun.COM 
62811042SErik.Nordmark@Sun.COM 		if (mp == NULL)
62911042SErik.Nordmark@Sun.COM 			return;
63011042SErik.Nordmark@Sun.COM 		/* The length could have changed */
63111042SErik.Nordmark@Sun.COM 		ipha = (ipha_t *)mp->b_rptr;
63211042SErik.Nordmark@Sun.COM 		ira->ira_pktlen = ntohs(ipha->ipha_length);
63311042SErik.Nordmark@Sun.COM 		pkt_len = ira->ira_pktlen;
63411042SErik.Nordmark@Sun.COM 
63511042SErik.Nordmark@Sun.COM 		/*
63611042SErik.Nordmark@Sun.COM 		 * In case the destination changed we override any previous
63711042SErik.Nordmark@Sun.COM 		 * change to nexthop.
63811042SErik.Nordmark@Sun.COM 		 */
63911042SErik.Nordmark@Sun.COM 		if (orig_dst != ipha->ipha_dst)
64011042SErik.Nordmark@Sun.COM 			nexthop = ipha->ipha_dst;
64111042SErik.Nordmark@Sun.COM 		if (nexthop == INADDR_ANY) {
64211042SErik.Nordmark@Sun.COM 			BUMP_MIB(ill->ill_ip_mib, ipIfStatsInAddrErrors);
64311042SErik.Nordmark@Sun.COM 			ip_drop_input("ipIfStatsInAddrErrors", mp, ill);
64411042SErik.Nordmark@Sun.COM 			freemsg(mp);
64511042SErik.Nordmark@Sun.COM 			return;
64611042SErik.Nordmark@Sun.COM 		}
64711042SErik.Nordmark@Sun.COM 	}
64811042SErik.Nordmark@Sun.COM 
64911042SErik.Nordmark@Sun.COM 	if (ipst->ips_ip4_observe.he_interested) {
65011042SErik.Nordmark@Sun.COM 		zoneid_t dzone;
65111042SErik.Nordmark@Sun.COM 
65211042SErik.Nordmark@Sun.COM 		/*
65311042SErik.Nordmark@Sun.COM 		 * On the inbound path the src zone will be unknown as
65411042SErik.Nordmark@Sun.COM 		 * this packet has come from the wire.
65511042SErik.Nordmark@Sun.COM 		 */
65611042SErik.Nordmark@Sun.COM 		dzone = ip_get_zoneid_v4(nexthop, mp, ira, ALL_ZONES);
65711042SErik.Nordmark@Sun.COM 		ipobs_hook(mp, IPOBS_HOOK_INBOUND, ALL_ZONES, dzone, ill, ipst);
65811042SErik.Nordmark@Sun.COM 	}
65911042SErik.Nordmark@Sun.COM 
66011042SErik.Nordmark@Sun.COM 	/*
66111042SErik.Nordmark@Sun.COM 	 * If there is a good HW IP header checksum we clear the need
66211042SErik.Nordmark@Sun.COM 	 * look at the IP header checksum.
66311042SErik.Nordmark@Sun.COM 	 */
66411042SErik.Nordmark@Sun.COM 	if ((DB_CKSUMFLAGS(mp) & HCK_IPV4_HDRCKSUM) &&
66511042SErik.Nordmark@Sun.COM 	    ILL_HCKSUM_CAPABLE(ill) && dohwcksum) {
66611042SErik.Nordmark@Sun.COM 		/* Header checksum was ok. Clear the flag */
66711042SErik.Nordmark@Sun.COM 		DB_CKSUMFLAGS(mp) &= ~HCK_IPV4_HDRCKSUM;
66811042SErik.Nordmark@Sun.COM 		ira->ira_flags &= ~IRAF_VERIFY_IP_CKSUM;
66911042SErik.Nordmark@Sun.COM 	}
67011042SErik.Nordmark@Sun.COM 
67111042SErik.Nordmark@Sun.COM 	/*
67211042SErik.Nordmark@Sun.COM 	 * Here we check to see if we machine is setup as
67311042SErik.Nordmark@Sun.COM 	 * L3 loadbalancer and if the incoming packet is for a VIP
67411042SErik.Nordmark@Sun.COM 	 *
67511042SErik.Nordmark@Sun.COM 	 * Check the following:
67611042SErik.Nordmark@Sun.COM 	 * - there is at least a rule
67711042SErik.Nordmark@Sun.COM 	 * - protocol of the packet is supported
67811042SErik.Nordmark@Sun.COM 	 */
67911042SErik.Nordmark@Sun.COM 	if (ilb_has_rules(ilbs) && ILB_SUPP_L4(ipha->ipha_protocol)) {
68011042SErik.Nordmark@Sun.COM 		ipaddr_t	lb_dst;
68111042SErik.Nordmark@Sun.COM 		int		lb_ret;
68211042SErik.Nordmark@Sun.COM 
68311042SErik.Nordmark@Sun.COM 		/* For convenience, we pull up the mblk. */
68411042SErik.Nordmark@Sun.COM 		if (mp->b_cont != NULL) {
68511042SErik.Nordmark@Sun.COM 			if (pullupmsg(mp, -1) == 0) {
68611042SErik.Nordmark@Sun.COM 				BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards);
68711042SErik.Nordmark@Sun.COM 				ip_drop_input("ipIfStatsInDiscards - pullupmsg",
68811042SErik.Nordmark@Sun.COM 				    mp, ill);
68911042SErik.Nordmark@Sun.COM 				freemsg(mp);
69011042SErik.Nordmark@Sun.COM 				return;
69111042SErik.Nordmark@Sun.COM 			}
69211042SErik.Nordmark@Sun.COM 			ipha = (ipha_t *)mp->b_rptr;
69311042SErik.Nordmark@Sun.COM 		}
69411042SErik.Nordmark@Sun.COM 
69511042SErik.Nordmark@Sun.COM 		/*
69611042SErik.Nordmark@Sun.COM 		 * We just drop all fragments going to any VIP, at
69711042SErik.Nordmark@Sun.COM 		 * least for now....
69811042SErik.Nordmark@Sun.COM 		 */
69911042SErik.Nordmark@Sun.COM 		if (ntohs(ipha->ipha_fragment_offset_and_flags) &
70011042SErik.Nordmark@Sun.COM 		    (IPH_MF | IPH_OFFSET)) {
70111042SErik.Nordmark@Sun.COM 			if (!ilb_rule_match_vip_v4(ilbs, nexthop, NULL)) {
70211042SErik.Nordmark@Sun.COM 				goto after_ilb;
70311042SErik.Nordmark@Sun.COM 			}
70411042SErik.Nordmark@Sun.COM 
70511042SErik.Nordmark@Sun.COM 			ILB_KSTAT_UPDATE(ilbs, ip_frag_in, 1);
70611042SErik.Nordmark@Sun.COM 			ILB_KSTAT_UPDATE(ilbs, ip_frag_dropped, 1);
70711042SErik.Nordmark@Sun.COM 			BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards);
70811042SErik.Nordmark@Sun.COM 			ip_drop_input("ILB fragment", mp, ill);
70911042SErik.Nordmark@Sun.COM 			freemsg(mp);
71011042SErik.Nordmark@Sun.COM 			return;
71111042SErik.Nordmark@Sun.COM 		}
71211042SErik.Nordmark@Sun.COM 		lb_ret = ilb_check_v4(ilbs, ill, mp, ipha, ipha->ipha_protocol,
71311042SErik.Nordmark@Sun.COM 		    (uint8_t *)ipha + IPH_HDR_LENGTH(ipha), &lb_dst);
71411042SErik.Nordmark@Sun.COM 
71511042SErik.Nordmark@Sun.COM 		if (lb_ret == ILB_DROPPED) {
71611042SErik.Nordmark@Sun.COM 			/* Is this the right counter to increase? */
71711042SErik.Nordmark@Sun.COM 			BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards);
71811042SErik.Nordmark@Sun.COM 			ip_drop_input("ILB_DROPPED", mp, ill);
71911042SErik.Nordmark@Sun.COM 			freemsg(mp);
72011042SErik.Nordmark@Sun.COM 			return;
72111042SErik.Nordmark@Sun.COM 		}
72211042SErik.Nordmark@Sun.COM 		if (lb_ret == ILB_BALANCED) {
72311042SErik.Nordmark@Sun.COM 			/* Set the dst to that of the chosen server */
72411042SErik.Nordmark@Sun.COM 			nexthop = lb_dst;
72511042SErik.Nordmark@Sun.COM 			DB_CKSUMFLAGS(mp) = 0;
72611042SErik.Nordmark@Sun.COM 		}
72711042SErik.Nordmark@Sun.COM 	}
72811042SErik.Nordmark@Sun.COM 
72911042SErik.Nordmark@Sun.COM after_ilb:
73011042SErik.Nordmark@Sun.COM 	opt_len = ipha->ipha_version_and_hdr_length - IP_SIMPLE_HDR_VERSION;
73111042SErik.Nordmark@Sun.COM 	ira->ira_ip_hdr_length = IP_SIMPLE_HDR_LENGTH;
73211042SErik.Nordmark@Sun.COM 	if (opt_len != 0) {
73311042SErik.Nordmark@Sun.COM 		int error = 0;
73411042SErik.Nordmark@Sun.COM 
73511042SErik.Nordmark@Sun.COM 		ira->ira_ip_hdr_length += (opt_len << 2);
73611042SErik.Nordmark@Sun.COM 		ira->ira_flags |= IRAF_IPV4_OPTIONS;
73711042SErik.Nordmark@Sun.COM 
73811042SErik.Nordmark@Sun.COM 		/* IP Options present!  Validate the length. */
73911042SErik.Nordmark@Sun.COM 		mp = ip_check_optlen(mp, ipha, opt_len, pkt_len, ira);
74011042SErik.Nordmark@Sun.COM 		if (mp == NULL)
74111042SErik.Nordmark@Sun.COM 			return;
74211042SErik.Nordmark@Sun.COM 
74311042SErik.Nordmark@Sun.COM 		/* Might have changed */
74411042SErik.Nordmark@Sun.COM 		ipha = (ipha_t *)mp->b_rptr;
74511042SErik.Nordmark@Sun.COM 
74611042SErik.Nordmark@Sun.COM 		/* Verify IP header checksum before parsing the options */
74711042SErik.Nordmark@Sun.COM 		if ((ira->ira_flags & IRAF_VERIFY_IP_CKSUM) &&
74811042SErik.Nordmark@Sun.COM 		    ip_csum_hdr(ipha)) {
74911042SErik.Nordmark@Sun.COM 			BUMP_MIB(ill->ill_ip_mib, ipIfStatsInCksumErrs);
75011042SErik.Nordmark@Sun.COM 			ip_drop_input("ipIfStatsInCksumErrs", mp, ill);
75111042SErik.Nordmark@Sun.COM 			freemsg(mp);
75211042SErik.Nordmark@Sun.COM 			return;
75311042SErik.Nordmark@Sun.COM 		}
75411042SErik.Nordmark@Sun.COM 		ira->ira_flags &= ~IRAF_VERIFY_IP_CKSUM;
75511042SErik.Nordmark@Sun.COM 
75611042SErik.Nordmark@Sun.COM 		/*
75711042SErik.Nordmark@Sun.COM 		 * Go off to ip_input_options which returns the next hop
75811042SErik.Nordmark@Sun.COM 		 * destination address, which may have been affected
75911042SErik.Nordmark@Sun.COM 		 * by source routing.
76011042SErik.Nordmark@Sun.COM 		 */
76111042SErik.Nordmark@Sun.COM 		IP_STAT(ipst, ip_opt);
76211042SErik.Nordmark@Sun.COM 
76311042SErik.Nordmark@Sun.COM 		nexthop = ip_input_options(ipha, nexthop, mp, ira, &error);
76411042SErik.Nordmark@Sun.COM 		if (error != 0) {
76511042SErik.Nordmark@Sun.COM 			/*
76611042SErik.Nordmark@Sun.COM 			 * An ICMP error has been sent and the packet has
76711042SErik.Nordmark@Sun.COM 			 * been dropped.
76811042SErik.Nordmark@Sun.COM 			 */
76911042SErik.Nordmark@Sun.COM 			return;
77011042SErik.Nordmark@Sun.COM 		}
77111042SErik.Nordmark@Sun.COM 	}
77211457SErik.Nordmark@Sun.COM 
77311457SErik.Nordmark@Sun.COM 	if (ill->ill_flags & ILLF_ROUTER)
77411457SErik.Nordmark@Sun.COM 		irr_flags = IRR_ALLOCATE;
77511457SErik.Nordmark@Sun.COM 	else
77611457SErik.Nordmark@Sun.COM 		irr_flags = IRR_NONE;
77711457SErik.Nordmark@Sun.COM 
77811042SErik.Nordmark@Sun.COM 	/* Can not use route cache with TX since the labels can differ */
77911042SErik.Nordmark@Sun.COM 	if (ira->ira_flags & IRAF_SYSTEM_LABELED) {
78011042SErik.Nordmark@Sun.COM 		if (CLASSD(nexthop)) {
78111042SErik.Nordmark@Sun.COM 			ire = ire_multicast(ill);
78211042SErik.Nordmark@Sun.COM 		} else {
78311042SErik.Nordmark@Sun.COM 			/* Match destination and label */
78411042SErik.Nordmark@Sun.COM 			ire = ire_route_recursive_v4(nexthop, 0, NULL,
78511042SErik.Nordmark@Sun.COM 			    ALL_ZONES, ira->ira_tsl, MATCH_IRE_SECATTR,
78611457SErik.Nordmark@Sun.COM 			    irr_flags, ira->ira_xmit_hint, ipst, NULL, NULL,
78711457SErik.Nordmark@Sun.COM 			    NULL);
78811042SErik.Nordmark@Sun.COM 		}
78911042SErik.Nordmark@Sun.COM 		/* Update the route cache so we do the ire_refrele */
79011042SErik.Nordmark@Sun.COM 		ASSERT(ire != NULL);
79111042SErik.Nordmark@Sun.COM 		if (rtc->rtc_ire != NULL)
79211042SErik.Nordmark@Sun.COM 			ire_refrele(rtc->rtc_ire);
79311042SErik.Nordmark@Sun.COM 		rtc->rtc_ire = ire;
79411042SErik.Nordmark@Sun.COM 		rtc->rtc_ipaddr = nexthop;
79511042SErik.Nordmark@Sun.COM 	} else if (nexthop == rtc->rtc_ipaddr) {
79611042SErik.Nordmark@Sun.COM 		/* Use the route cache */
79711042SErik.Nordmark@Sun.COM 		ASSERT(rtc->rtc_ire != NULL);
79811042SErik.Nordmark@Sun.COM 		ire = rtc->rtc_ire;
79911042SErik.Nordmark@Sun.COM 	} else {
80011042SErik.Nordmark@Sun.COM 		/* Update the route cache */
80111042SErik.Nordmark@Sun.COM 		if (CLASSD(nexthop)) {
80211042SErik.Nordmark@Sun.COM 			ire = ire_multicast(ill);
80311042SErik.Nordmark@Sun.COM 		} else {
80411042SErik.Nordmark@Sun.COM 			/* Just match the destination */
80511457SErik.Nordmark@Sun.COM 			ire = ire_route_recursive_dstonly_v4(nexthop, irr_flags,
80611457SErik.Nordmark@Sun.COM 			    ira->ira_xmit_hint, ipst);
80711042SErik.Nordmark@Sun.COM 		}
80811042SErik.Nordmark@Sun.COM 		ASSERT(ire != NULL);
80911042SErik.Nordmark@Sun.COM 		if (rtc->rtc_ire != NULL)
81011042SErik.Nordmark@Sun.COM 			ire_refrele(rtc->rtc_ire);
81111042SErik.Nordmark@Sun.COM 		rtc->rtc_ire = ire;
81211042SErik.Nordmark@Sun.COM 		rtc->rtc_ipaddr = nexthop;
81311042SErik.Nordmark@Sun.COM 	}
81411042SErik.Nordmark@Sun.COM 
81511042SErik.Nordmark@Sun.COM 	ire->ire_ib_pkt_count++;
81611042SErik.Nordmark@Sun.COM 
81711042SErik.Nordmark@Sun.COM 	/*
81811042SErik.Nordmark@Sun.COM 	 * Based on ire_type and ire_flags call one of:
81911042SErik.Nordmark@Sun.COM 	 *	ire_recv_local_v4 - for IRE_LOCAL
82011042SErik.Nordmark@Sun.COM 	 *	ire_recv_loopback_v4 - for IRE_LOOPBACK
82111042SErik.Nordmark@Sun.COM 	 *	ire_recv_multirt_v4 - if RTF_MULTIRT
82211042SErik.Nordmark@Sun.COM 	 *	ire_recv_noroute_v4 - if RTF_REJECT or RTF_BLACHOLE
82311042SErik.Nordmark@Sun.COM 	 *	ire_recv_multicast_v4 - for IRE_MULTICAST
82411042SErik.Nordmark@Sun.COM 	 *	ire_recv_broadcast_v4 - for IRE_BROADCAST
82511042SErik.Nordmark@Sun.COM 	 *	ire_recv_noaccept_v4 - for ire_noaccept ones
82611042SErik.Nordmark@Sun.COM 	 *	ire_recv_forward_v4 - for the rest.
82711042SErik.Nordmark@Sun.COM 	 */
82811042SErik.Nordmark@Sun.COM 	(*ire->ire_recvfn)(ire, mp, ipha, ira);
82911042SErik.Nordmark@Sun.COM }
83011042SErik.Nordmark@Sun.COM #undef rptr
83111042SErik.Nordmark@Sun.COM 
83211042SErik.Nordmark@Sun.COM /*
83311042SErik.Nordmark@Sun.COM  * ire_recvfn for IREs that need forwarding
83411042SErik.Nordmark@Sun.COM  */
83511042SErik.Nordmark@Sun.COM void
ire_recv_forward_v4(ire_t * ire,mblk_t * mp,void * iph_arg,ip_recv_attr_t * ira)83611042SErik.Nordmark@Sun.COM ire_recv_forward_v4(ire_t *ire, mblk_t *mp, void *iph_arg, ip_recv_attr_t *ira)
83711042SErik.Nordmark@Sun.COM {
83811042SErik.Nordmark@Sun.COM 	ipha_t		*ipha = (ipha_t *)iph_arg;
83911042SErik.Nordmark@Sun.COM 	ill_t		*ill = ira->ira_ill;
84011042SErik.Nordmark@Sun.COM 	ip_stack_t	*ipst = ill->ill_ipst;
84111042SErik.Nordmark@Sun.COM 	ill_t		*dst_ill;
84211042SErik.Nordmark@Sun.COM 	nce_t		*nce;
84311042SErik.Nordmark@Sun.COM 	ipaddr_t	src = ipha->ipha_src;
84411042SErik.Nordmark@Sun.COM 	uint32_t	added_tx_len;
84511042SErik.Nordmark@Sun.COM 	uint32_t	mtu, iremtu;
84611042SErik.Nordmark@Sun.COM 
84711042SErik.Nordmark@Sun.COM 	if (ira->ira_flags & (IRAF_L2DST_MULTICAST|IRAF_L2DST_BROADCAST)) {
84811042SErik.Nordmark@Sun.COM 		BUMP_MIB(ill->ill_ip_mib, ipIfStatsForwProhibits);
84911042SErik.Nordmark@Sun.COM 		ip_drop_input("l2 multicast not forwarded", mp, ill);
85011042SErik.Nordmark@Sun.COM 		freemsg(mp);
85111042SErik.Nordmark@Sun.COM 		return;
85211042SErik.Nordmark@Sun.COM 	}
85311042SErik.Nordmark@Sun.COM 
85411042SErik.Nordmark@Sun.COM 	if (!(ill->ill_flags & ILLF_ROUTER) && !ip_source_routed(ipha, ipst)) {
85511042SErik.Nordmark@Sun.COM 		BUMP_MIB(ill->ill_ip_mib, ipIfStatsForwProhibits);
85611042SErik.Nordmark@Sun.COM 		ip_drop_input("ipIfStatsForwProhibits", mp, ill);
85711042SErik.Nordmark@Sun.COM 		freemsg(mp);
85811042SErik.Nordmark@Sun.COM 		return;
85911042SErik.Nordmark@Sun.COM 	}
86011042SErik.Nordmark@Sun.COM 
86111042SErik.Nordmark@Sun.COM 	/*
86211042SErik.Nordmark@Sun.COM 	 * Either ire_nce_capable or ire_dep_parent would be set for the IRE
86311042SErik.Nordmark@Sun.COM 	 * when it is found by ire_route_recursive, but that some other thread
86411042SErik.Nordmark@Sun.COM 	 * could have changed the routes with the effect of clearing
86511042SErik.Nordmark@Sun.COM 	 * ire_dep_parent. In that case we'd end up dropping the packet, or
86611042SErik.Nordmark@Sun.COM 	 * finding a new nce below.
86711042SErik.Nordmark@Sun.COM 	 * Get, allocate, or update the nce.
86811042SErik.Nordmark@Sun.COM 	 * We get a refhold on ire_nce_cache as a result of this to avoid races
86911042SErik.Nordmark@Sun.COM 	 * where ire_nce_cache is deleted.
87011042SErik.Nordmark@Sun.COM 	 *
87111042SErik.Nordmark@Sun.COM 	 * This ensures that we don't forward if the interface is down since
87211042SErik.Nordmark@Sun.COM 	 * ipif_down removes all the nces.
87311042SErik.Nordmark@Sun.COM 	 */
87411042SErik.Nordmark@Sun.COM 	mutex_enter(&ire->ire_lock);
87511042SErik.Nordmark@Sun.COM 	nce = ire->ire_nce_cache;
87611042SErik.Nordmark@Sun.COM 	if (nce == NULL) {
87711042SErik.Nordmark@Sun.COM 		/* Not yet set up - try to set one up */
87811042SErik.Nordmark@Sun.COM 		mutex_exit(&ire->ire_lock);
87911042SErik.Nordmark@Sun.COM 		(void) ire_revalidate_nce(ire);
88011042SErik.Nordmark@Sun.COM 		mutex_enter(&ire->ire_lock);
88111042SErik.Nordmark@Sun.COM 		nce = ire->ire_nce_cache;
88211042SErik.Nordmark@Sun.COM 		if (nce == NULL) {
88311042SErik.Nordmark@Sun.COM 			mutex_exit(&ire->ire_lock);
88411042SErik.Nordmark@Sun.COM 			/* The ire_dep_parent chain went bad, or no memory */
88511042SErik.Nordmark@Sun.COM 			BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards);
88611042SErik.Nordmark@Sun.COM 			ip_drop_input("No ire_dep_parent", mp, ill);
88711042SErik.Nordmark@Sun.COM 			freemsg(mp);
88811042SErik.Nordmark@Sun.COM 			return;
88911042SErik.Nordmark@Sun.COM 		}
89011042SErik.Nordmark@Sun.COM 	}
89111042SErik.Nordmark@Sun.COM 	nce_refhold(nce);
89211042SErik.Nordmark@Sun.COM 	mutex_exit(&ire->ire_lock);
89311042SErik.Nordmark@Sun.COM 
89411042SErik.Nordmark@Sun.COM 	if (nce->nce_is_condemned) {
89511042SErik.Nordmark@Sun.COM 		nce_t *nce1;
89611042SErik.Nordmark@Sun.COM 
89711042SErik.Nordmark@Sun.COM 		nce1 = ire_handle_condemned_nce(nce, ire, ipha, NULL, B_FALSE);
89811042SErik.Nordmark@Sun.COM 		nce_refrele(nce);
89911042SErik.Nordmark@Sun.COM 		if (nce1 == NULL) {
90011042SErik.Nordmark@Sun.COM 			BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards);
90111042SErik.Nordmark@Sun.COM 			ip_drop_input("No nce", mp, ill);
90211042SErik.Nordmark@Sun.COM 			freemsg(mp);
90311042SErik.Nordmark@Sun.COM 			return;
90411042SErik.Nordmark@Sun.COM 		}
90511042SErik.Nordmark@Sun.COM 		nce = nce1;
90611042SErik.Nordmark@Sun.COM 	}
90711042SErik.Nordmark@Sun.COM 	dst_ill = nce->nce_ill;
90811042SErik.Nordmark@Sun.COM 
90911042SErik.Nordmark@Sun.COM 	/*
91011042SErik.Nordmark@Sun.COM 	 * Unless we are forwarding, drop the packet.
91111042SErik.Nordmark@Sun.COM 	 * We have to let source routed packets through if they go out
91211042SErik.Nordmark@Sun.COM 	 * the same interface i.e., they are 'ping -l' packets.
91311042SErik.Nordmark@Sun.COM 	 */
91411042SErik.Nordmark@Sun.COM 	if (!(dst_ill->ill_flags & ILLF_ROUTER) &&
91511042SErik.Nordmark@Sun.COM 	    !(ip_source_routed(ipha, ipst) && dst_ill == ill)) {
91611042SErik.Nordmark@Sun.COM 		if (ip_source_routed(ipha, ipst)) {
91711042SErik.Nordmark@Sun.COM 			ip_drop_input("ICMP_SOURCE_ROUTE_FAILED", mp, ill);
91811042SErik.Nordmark@Sun.COM 			icmp_unreachable(mp, ICMP_SOURCE_ROUTE_FAILED, ira);
91911042SErik.Nordmark@Sun.COM 			nce_refrele(nce);
92011042SErik.Nordmark@Sun.COM 			return;
92111042SErik.Nordmark@Sun.COM 		}
92211042SErik.Nordmark@Sun.COM 		BUMP_MIB(ill->ill_ip_mib, ipIfStatsForwProhibits);
92311042SErik.Nordmark@Sun.COM 		ip_drop_input("ipIfStatsForwProhibits", mp, ill);
92411042SErik.Nordmark@Sun.COM 		freemsg(mp);
92511042SErik.Nordmark@Sun.COM 		nce_refrele(nce);
92611042SErik.Nordmark@Sun.COM 		return;
92711042SErik.Nordmark@Sun.COM 	}
92811042SErik.Nordmark@Sun.COM 
92911042SErik.Nordmark@Sun.COM 	if (ire->ire_zoneid != GLOBAL_ZONEID && ire->ire_zoneid != ALL_ZONES) {
93011042SErik.Nordmark@Sun.COM 		ipaddr_t	dst = ipha->ipha_dst;
93111042SErik.Nordmark@Sun.COM 
93211042SErik.Nordmark@Sun.COM 		ire->ire_ib_pkt_count--;
93311042SErik.Nordmark@Sun.COM 		/*
93411042SErik.Nordmark@Sun.COM 		 * Should only use IREs that are visible from the
93511042SErik.Nordmark@Sun.COM 		 * global zone for forwarding.
93611042SErik.Nordmark@Sun.COM 		 * Take a source route into account the same way as ip_input
93711042SErik.Nordmark@Sun.COM 		 * did.
93811042SErik.Nordmark@Sun.COM 		 */
93911042SErik.Nordmark@Sun.COM 		if (ira->ira_flags & IRAF_IPV4_OPTIONS) {
94011042SErik.Nordmark@Sun.COM 			int		error = 0;
94111042SErik.Nordmark@Sun.COM 
94211042SErik.Nordmark@Sun.COM 			dst = ip_input_options(ipha, dst, mp, ira, &error);
94311042SErik.Nordmark@Sun.COM 			ASSERT(error == 0);	/* ip_input checked */
94411042SErik.Nordmark@Sun.COM 		}
94511042SErik.Nordmark@Sun.COM 		ire = ire_route_recursive_v4(dst, 0, NULL, GLOBAL_ZONEID,
94611042SErik.Nordmark@Sun.COM 		    ira->ira_tsl, MATCH_IRE_SECATTR,
94711457SErik.Nordmark@Sun.COM 		    (ill->ill_flags & ILLF_ROUTER) ? IRR_ALLOCATE : IRR_NONE,
94811457SErik.Nordmark@Sun.COM 		    ira->ira_xmit_hint, ipst, NULL, NULL, NULL);
94911042SErik.Nordmark@Sun.COM 		ire->ire_ib_pkt_count++;
95011042SErik.Nordmark@Sun.COM 		(*ire->ire_recvfn)(ire, mp, ipha, ira);
95111042SErik.Nordmark@Sun.COM 		ire_refrele(ire);
95211042SErik.Nordmark@Sun.COM 		nce_refrele(nce);
95311042SErik.Nordmark@Sun.COM 		return;
95411042SErik.Nordmark@Sun.COM 	}
95511042SErik.Nordmark@Sun.COM 
95611042SErik.Nordmark@Sun.COM 	/*
95711042SErik.Nordmark@Sun.COM 	 * ipIfStatsHCInForwDatagrams should only be increment if there
95811042SErik.Nordmark@Sun.COM 	 * will be an attempt to forward the packet, which is why we
95911042SErik.Nordmark@Sun.COM 	 * increment after the above condition has been checked.
96011042SErik.Nordmark@Sun.COM 	 */
96111042SErik.Nordmark@Sun.COM 	BUMP_MIB(ill->ill_ip_mib, ipIfStatsHCInForwDatagrams);
96211042SErik.Nordmark@Sun.COM 
96311042SErik.Nordmark@Sun.COM 	/* Initiate Read side IPPF processing */
96411042SErik.Nordmark@Sun.COM 	if (IPP_ENABLED(IPP_FWD_IN, ipst)) {
96511042SErik.Nordmark@Sun.COM 		/* ip_process translates an IS_UNDER_IPMP */
96611042SErik.Nordmark@Sun.COM 		mp = ip_process(IPP_FWD_IN, mp, ill, ill);
96711042SErik.Nordmark@Sun.COM 		if (mp == NULL) {
96811042SErik.Nordmark@Sun.COM 			/* ip_drop_packet and MIB done */
96911042SErik.Nordmark@Sun.COM 			ip2dbg(("ire_recv_forward_v4: pkt dropped/deferred "
97011042SErik.Nordmark@Sun.COM 			    "during IPPF processing\n"));
97111042SErik.Nordmark@Sun.COM 			nce_refrele(nce);
97211042SErik.Nordmark@Sun.COM 			return;
97311042SErik.Nordmark@Sun.COM 		}
97411042SErik.Nordmark@Sun.COM 	}
97511042SErik.Nordmark@Sun.COM 
97611042SErik.Nordmark@Sun.COM 	DTRACE_PROBE4(ip4__forwarding__start,
97711042SErik.Nordmark@Sun.COM 	    ill_t *, ill, ill_t *, dst_ill, ipha_t *, ipha, mblk_t *, mp);
97811042SErik.Nordmark@Sun.COM 
97911042SErik.Nordmark@Sun.COM 	if (HOOKS4_INTERESTED_FORWARDING(ipst)) {
98011042SErik.Nordmark@Sun.COM 		int error;
98111042SErik.Nordmark@Sun.COM 
98211042SErik.Nordmark@Sun.COM 		FW_HOOKS(ipst->ips_ip4_forwarding_event,
98311042SErik.Nordmark@Sun.COM 		    ipst->ips_ipv4firewall_forwarding,
98411042SErik.Nordmark@Sun.COM 		    ill, dst_ill, ipha, mp, mp, 0, ipst, error);
98511042SErik.Nordmark@Sun.COM 
98611042SErik.Nordmark@Sun.COM 		DTRACE_PROBE1(ip4__forwarding__end, mblk_t *, mp);
98711042SErik.Nordmark@Sun.COM 
98811042SErik.Nordmark@Sun.COM 		if (mp == NULL) {
98911042SErik.Nordmark@Sun.COM 			nce_refrele(nce);
99011042SErik.Nordmark@Sun.COM 			return;
99111042SErik.Nordmark@Sun.COM 		}
99211042SErik.Nordmark@Sun.COM 		/*
99311042SErik.Nordmark@Sun.COM 		 * Even if the destination was changed by the filter we use the
99411042SErik.Nordmark@Sun.COM 		 * forwarding decision that was made based on the address
99511042SErik.Nordmark@Sun.COM 		 * in ip_input.
99611042SErik.Nordmark@Sun.COM 		 */
99711042SErik.Nordmark@Sun.COM 
99811042SErik.Nordmark@Sun.COM 		/* Might have changed */
99911042SErik.Nordmark@Sun.COM 		ipha = (ipha_t *)mp->b_rptr;
100011042SErik.Nordmark@Sun.COM 		ira->ira_pktlen = ntohs(ipha->ipha_length);
100111042SErik.Nordmark@Sun.COM 	}
100211042SErik.Nordmark@Sun.COM 
100311042SErik.Nordmark@Sun.COM 	/* Packet is being forwarded. Turning off hwcksum flag. */
100411042SErik.Nordmark@Sun.COM 	DB_CKSUMFLAGS(mp) = 0;
100511042SErik.Nordmark@Sun.COM 
100611042SErik.Nordmark@Sun.COM 	/*
100711042SErik.Nordmark@Sun.COM 	 * Martian Address Filtering [RFC 1812, Section 5.3.7]
100811042SErik.Nordmark@Sun.COM 	 * The loopback address check for both src and dst has already
100911042SErik.Nordmark@Sun.COM 	 * been checked in ip_input
101011042SErik.Nordmark@Sun.COM 	 * In the future one can envision adding RPF checks using number 3.
101111042SErik.Nordmark@Sun.COM 	 * If we already checked the same source address we can skip this.
101211042SErik.Nordmark@Sun.COM 	 */
101311042SErik.Nordmark@Sun.COM 	if (!(ira->ira_flags & IRAF_VERIFIED_SRC) ||
101411042SErik.Nordmark@Sun.COM 	    src != ira->ira_verified_src) {
101511042SErik.Nordmark@Sun.COM 		switch (ipst->ips_src_check) {
101611042SErik.Nordmark@Sun.COM 		case 0:
101711042SErik.Nordmark@Sun.COM 			break;
101811042SErik.Nordmark@Sun.COM 		case 2:
101911042SErik.Nordmark@Sun.COM 			if (ip_type_v4(src, ipst) == IRE_BROADCAST) {
102011042SErik.Nordmark@Sun.COM 				BUMP_MIB(ill->ill_ip_mib,
102111042SErik.Nordmark@Sun.COM 				    ipIfStatsForwProhibits);
102211042SErik.Nordmark@Sun.COM 				BUMP_MIB(ill->ill_ip_mib,
102311042SErik.Nordmark@Sun.COM 				    ipIfStatsInAddrErrors);
102411042SErik.Nordmark@Sun.COM 				ip_drop_input("ipIfStatsInAddrErrors", mp, ill);
102511042SErik.Nordmark@Sun.COM 				freemsg(mp);
102611042SErik.Nordmark@Sun.COM 				nce_refrele(nce);
102711042SErik.Nordmark@Sun.COM 				return;
102811042SErik.Nordmark@Sun.COM 			}
102911042SErik.Nordmark@Sun.COM 			/* FALLTHRU */
103011042SErik.Nordmark@Sun.COM 
103111042SErik.Nordmark@Sun.COM 		case 1:
103211042SErik.Nordmark@Sun.COM 			if (CLASSD(src)) {
103311042SErik.Nordmark@Sun.COM 				BUMP_MIB(ill->ill_ip_mib,
103411042SErik.Nordmark@Sun.COM 				    ipIfStatsForwProhibits);
103511042SErik.Nordmark@Sun.COM 				BUMP_MIB(ill->ill_ip_mib,
103611042SErik.Nordmark@Sun.COM 				    ipIfStatsInAddrErrors);
103711042SErik.Nordmark@Sun.COM 				ip_drop_input("ipIfStatsInAddrErrors", mp, ill);
103811042SErik.Nordmark@Sun.COM 				freemsg(mp);
103911042SErik.Nordmark@Sun.COM 				nce_refrele(nce);
104011042SErik.Nordmark@Sun.COM 				return;
104111042SErik.Nordmark@Sun.COM 			}
104211042SErik.Nordmark@Sun.COM 			break;
104311042SErik.Nordmark@Sun.COM 		}
104411042SErik.Nordmark@Sun.COM 		/* Remember for next packet */
104511042SErik.Nordmark@Sun.COM 		ira->ira_flags |= IRAF_VERIFIED_SRC;
104611042SErik.Nordmark@Sun.COM 		ira->ira_verified_src = src;
104711042SErik.Nordmark@Sun.COM 	}
104811042SErik.Nordmark@Sun.COM 
104911042SErik.Nordmark@Sun.COM 	/*
105011042SErik.Nordmark@Sun.COM 	 * Check if packet is going out the same link on which it arrived.
105111042SErik.Nordmark@Sun.COM 	 * Means we might need to send a redirect.
105211042SErik.Nordmark@Sun.COM 	 */
105311042SErik.Nordmark@Sun.COM 	if (IS_ON_SAME_LAN(dst_ill, ill) && ipst->ips_ip_g_send_redirects) {
105411042SErik.Nordmark@Sun.COM 		ip_send_potential_redirect_v4(mp, ipha, ire, ira);
105511042SErik.Nordmark@Sun.COM 	}
105611042SErik.Nordmark@Sun.COM 
105711042SErik.Nordmark@Sun.COM 	added_tx_len = 0;
105811042SErik.Nordmark@Sun.COM 	if (ira->ira_flags & IRAF_SYSTEM_LABELED) {
105911042SErik.Nordmark@Sun.COM 		mblk_t		*mp1;
106011042SErik.Nordmark@Sun.COM 		uint32_t	old_pkt_len = ira->ira_pktlen;
106111042SErik.Nordmark@Sun.COM 
106211362SErik.Nordmark@Sun.COM 		/* Verify IP header checksum before adding/removing options */
106311362SErik.Nordmark@Sun.COM 		if ((ira->ira_flags & IRAF_VERIFY_IP_CKSUM) &&
106411362SErik.Nordmark@Sun.COM 		    ip_csum_hdr(ipha)) {
106511362SErik.Nordmark@Sun.COM 			BUMP_MIB(ill->ill_ip_mib, ipIfStatsInCksumErrs);
106611362SErik.Nordmark@Sun.COM 			ip_drop_input("ipIfStatsInCksumErrs", mp, ill);
106711362SErik.Nordmark@Sun.COM 			freemsg(mp);
106811362SErik.Nordmark@Sun.COM 			nce_refrele(nce);
106911362SErik.Nordmark@Sun.COM 			return;
107011362SErik.Nordmark@Sun.COM 		}
107111362SErik.Nordmark@Sun.COM 		ira->ira_flags &= ~IRAF_VERIFY_IP_CKSUM;
107211362SErik.Nordmark@Sun.COM 
107311042SErik.Nordmark@Sun.COM 		/*
107411042SErik.Nordmark@Sun.COM 		 * Check if it can be forwarded and add/remove
107511042SErik.Nordmark@Sun.COM 		 * CIPSO options as needed.
107611042SErik.Nordmark@Sun.COM 		 */
107711042SErik.Nordmark@Sun.COM 		if ((mp1 = tsol_ip_forward(ire, mp, ira)) == NULL) {
107811042SErik.Nordmark@Sun.COM 			BUMP_MIB(ill->ill_ip_mib, ipIfStatsForwProhibits);
107911042SErik.Nordmark@Sun.COM 			ip_drop_input("tsol_ip_forward", mp, ill);
108011042SErik.Nordmark@Sun.COM 			freemsg(mp);
108111042SErik.Nordmark@Sun.COM 			nce_refrele(nce);
108211042SErik.Nordmark@Sun.COM 			return;
108311042SErik.Nordmark@Sun.COM 		}
108411042SErik.Nordmark@Sun.COM 		/*
108511042SErik.Nordmark@Sun.COM 		 * Size may have changed. Remember amount added in case
108611042SErik.Nordmark@Sun.COM 		 * IP needs to send an ICMP too big.
108711042SErik.Nordmark@Sun.COM 		 */
108811042SErik.Nordmark@Sun.COM 		mp = mp1;
108911042SErik.Nordmark@Sun.COM 		ipha = (ipha_t *)mp->b_rptr;
109011042SErik.Nordmark@Sun.COM 		ira->ira_pktlen = ntohs(ipha->ipha_length);
109111042SErik.Nordmark@Sun.COM 		ira->ira_ip_hdr_length = IPH_HDR_LENGTH(ipha);
109211042SErik.Nordmark@Sun.COM 		if (ira->ira_pktlen > old_pkt_len)
109311042SErik.Nordmark@Sun.COM 			added_tx_len = ira->ira_pktlen - old_pkt_len;
109411042SErik.Nordmark@Sun.COM 
109511042SErik.Nordmark@Sun.COM 		/* Options can have been added or removed */
109611042SErik.Nordmark@Sun.COM 		if (ira->ira_ip_hdr_length != IP_SIMPLE_HDR_LENGTH)
109711042SErik.Nordmark@Sun.COM 			ira->ira_flags |= IRAF_IPV4_OPTIONS;
109811042SErik.Nordmark@Sun.COM 		else
109911042SErik.Nordmark@Sun.COM 			ira->ira_flags &= ~IRAF_IPV4_OPTIONS;
110011042SErik.Nordmark@Sun.COM 	}
110111042SErik.Nordmark@Sun.COM 
110211042SErik.Nordmark@Sun.COM 	mtu = dst_ill->ill_mtu;
110311042SErik.Nordmark@Sun.COM 	if ((iremtu = ire->ire_metrics.iulp_mtu) != 0 && iremtu < mtu)
110411042SErik.Nordmark@Sun.COM 		mtu = iremtu;
110511042SErik.Nordmark@Sun.COM 	ip_forward_xmit_v4(nce, ill, mp, ipha, ira, mtu, added_tx_len);
110611042SErik.Nordmark@Sun.COM 	nce_refrele(nce);
110711042SErik.Nordmark@Sun.COM }
110811042SErik.Nordmark@Sun.COM 
110911042SErik.Nordmark@Sun.COM /*
111011042SErik.Nordmark@Sun.COM  * Used for sending out unicast and multicast packets that are
111111042SErik.Nordmark@Sun.COM  * forwarded.
111211042SErik.Nordmark@Sun.COM  */
111311042SErik.Nordmark@Sun.COM void
ip_forward_xmit_v4(nce_t * nce,ill_t * ill,mblk_t * mp,ipha_t * ipha,ip_recv_attr_t * ira,uint32_t mtu,uint32_t added_tx_len)111411042SErik.Nordmark@Sun.COM ip_forward_xmit_v4(nce_t *nce, ill_t *ill, mblk_t *mp, ipha_t *ipha,
111511042SErik.Nordmark@Sun.COM     ip_recv_attr_t *ira, uint32_t mtu, uint32_t added_tx_len)
111611042SErik.Nordmark@Sun.COM {
111711042SErik.Nordmark@Sun.COM 	ill_t		*dst_ill = nce->nce_ill;
111811042SErik.Nordmark@Sun.COM 	uint32_t	pkt_len;
111911042SErik.Nordmark@Sun.COM 	uint32_t	sum;
112011042SErik.Nordmark@Sun.COM 	iaflags_t	iraflags = ira->ira_flags;
112111042SErik.Nordmark@Sun.COM 	ip_stack_t	*ipst = ill->ill_ipst;
112211042SErik.Nordmark@Sun.COM 	iaflags_t	ixaflags;
112311042SErik.Nordmark@Sun.COM 
112411042SErik.Nordmark@Sun.COM 	if (ipha->ipha_ttl <= 1) {
112511042SErik.Nordmark@Sun.COM 		/* Perhaps the checksum was bad */
112611042SErik.Nordmark@Sun.COM 		if ((iraflags & IRAF_VERIFY_IP_CKSUM) && ip_csum_hdr(ipha)) {
112711042SErik.Nordmark@Sun.COM 			BUMP_MIB(ill->ill_ip_mib, ipIfStatsInCksumErrs);
112811042SErik.Nordmark@Sun.COM 			ip_drop_input("ipIfStatsInCksumErrs", mp, ill);
112911042SErik.Nordmark@Sun.COM 			freemsg(mp);
113011042SErik.Nordmark@Sun.COM 			return;
113111042SErik.Nordmark@Sun.COM 		}
113211042SErik.Nordmark@Sun.COM 		BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards);
113311042SErik.Nordmark@Sun.COM 		ip_drop_input("ICMP_TTL_EXCEEDED", mp, ill);
113411042SErik.Nordmark@Sun.COM 		icmp_time_exceeded(mp, ICMP_TTL_EXCEEDED, ira);
113511042SErik.Nordmark@Sun.COM 		return;
113611042SErik.Nordmark@Sun.COM 	}
113711042SErik.Nordmark@Sun.COM 	ipha->ipha_ttl--;
113811042SErik.Nordmark@Sun.COM 	/* Adjust the checksum to reflect the ttl decrement. */
113911042SErik.Nordmark@Sun.COM 	sum = (int)ipha->ipha_hdr_checksum + IP_HDR_CSUM_TTL_ADJUST;
114011042SErik.Nordmark@Sun.COM 	ipha->ipha_hdr_checksum = (uint16_t)(sum + (sum >> 16));
114111042SErik.Nordmark@Sun.COM 
114211042SErik.Nordmark@Sun.COM 	/* Check if there are options to update */
114311042SErik.Nordmark@Sun.COM 	if (iraflags & IRAF_IPV4_OPTIONS) {
114411042SErik.Nordmark@Sun.COM 		ASSERT(ipha->ipha_version_and_hdr_length !=
114511042SErik.Nordmark@Sun.COM 		    IP_SIMPLE_HDR_VERSION);
114611042SErik.Nordmark@Sun.COM 		ASSERT(!(iraflags & IRAF_VERIFY_IP_CKSUM));
114711042SErik.Nordmark@Sun.COM 
114811042SErik.Nordmark@Sun.COM 		if (!ip_forward_options(mp, ipha, dst_ill, ira)) {
114911042SErik.Nordmark@Sun.COM 			/* ipIfStatsForwProhibits and ip_drop_input done */
115011042SErik.Nordmark@Sun.COM 			return;
115111042SErik.Nordmark@Sun.COM 		}
115211042SErik.Nordmark@Sun.COM 
115311042SErik.Nordmark@Sun.COM 		ipha->ipha_hdr_checksum = 0;
115411042SErik.Nordmark@Sun.COM 		ipha->ipha_hdr_checksum = ip_csum_hdr(ipha);
115511042SErik.Nordmark@Sun.COM 	}
115611042SErik.Nordmark@Sun.COM 
115711042SErik.Nordmark@Sun.COM 	/* Initiate Write side IPPF processing before any fragmentation */
115811042SErik.Nordmark@Sun.COM 	if (IPP_ENABLED(IPP_FWD_OUT, ipst)) {
115911042SErik.Nordmark@Sun.COM 		/* ip_process translates an IS_UNDER_IPMP */
116011042SErik.Nordmark@Sun.COM 		mp = ip_process(IPP_FWD_OUT, mp, dst_ill, dst_ill);
116111042SErik.Nordmark@Sun.COM 		if (mp == NULL) {
116211042SErik.Nordmark@Sun.COM 			/* ip_drop_packet and MIB done */
116311042SErik.Nordmark@Sun.COM 			ip2dbg(("ire_recv_forward_v4: pkt dropped/deferred" \
116411042SErik.Nordmark@Sun.COM 			    " during IPPF processing\n"));
116511042SErik.Nordmark@Sun.COM 			return;
116611042SErik.Nordmark@Sun.COM 		}
116711042SErik.Nordmark@Sun.COM 	}
116811042SErik.Nordmark@Sun.COM 
116911042SErik.Nordmark@Sun.COM 	pkt_len = ira->ira_pktlen;
117011042SErik.Nordmark@Sun.COM 
117111042SErik.Nordmark@Sun.COM 	BUMP_MIB(dst_ill->ill_ip_mib, ipIfStatsHCOutForwDatagrams);
117211042SErik.Nordmark@Sun.COM 
117311042SErik.Nordmark@Sun.COM 	ixaflags = IXAF_IS_IPV4 | IXAF_NO_DEV_FLOW_CTL;
117411042SErik.Nordmark@Sun.COM 
117511042SErik.Nordmark@Sun.COM 	if (pkt_len > mtu) {
117611042SErik.Nordmark@Sun.COM 		/*
117711042SErik.Nordmark@Sun.COM 		 * It needs fragging on its way out.  If we haven't
117811042SErik.Nordmark@Sun.COM 		 * verified the header checksum yet we do it now since
117911042SErik.Nordmark@Sun.COM 		 * are going to put a surely good checksum in the
118011042SErik.Nordmark@Sun.COM 		 * outgoing header, we have to make sure that it
118111042SErik.Nordmark@Sun.COM 		 * was good coming in.
118211042SErik.Nordmark@Sun.COM 		 */
118311042SErik.Nordmark@Sun.COM 		if ((iraflags & IRAF_VERIFY_IP_CKSUM) && ip_csum_hdr(ipha)) {
118411042SErik.Nordmark@Sun.COM 			BUMP_MIB(ill->ill_ip_mib, ipIfStatsInCksumErrs);
118511042SErik.Nordmark@Sun.COM 			ip_drop_input("ipIfStatsInCksumErrs", mp, ill);
118611042SErik.Nordmark@Sun.COM 			freemsg(mp);
118711042SErik.Nordmark@Sun.COM 			return;
118811042SErik.Nordmark@Sun.COM 		}
118911042SErik.Nordmark@Sun.COM 		if (ipha->ipha_fragment_offset_and_flags & IPH_DF_HTONS) {
119011042SErik.Nordmark@Sun.COM 			BUMP_MIB(dst_ill->ill_ip_mib, ipIfStatsOutFragFails);
119111042SErik.Nordmark@Sun.COM 			ip_drop_output("ipIfStatsOutFragFails", mp, dst_ill);
119211042SErik.Nordmark@Sun.COM 			if (iraflags & IRAF_SYSTEM_LABELED) {
119311042SErik.Nordmark@Sun.COM 				/*
119411042SErik.Nordmark@Sun.COM 				 * Remove any CIPSO option added by
119511042SErik.Nordmark@Sun.COM 				 * tsol_ip_forward, and make sure we report
119611042SErik.Nordmark@Sun.COM 				 * a path MTU so that there
119711042SErik.Nordmark@Sun.COM 				 * is room to add such a CIPSO option for future
119811042SErik.Nordmark@Sun.COM 				 * packets.
119911042SErik.Nordmark@Sun.COM 				 */
120011042SErik.Nordmark@Sun.COM 				mtu = tsol_pmtu_adjust(mp, mtu, added_tx_len,
120111042SErik.Nordmark@Sun.COM 				    AF_INET);
120211042SErik.Nordmark@Sun.COM 			}
120311042SErik.Nordmark@Sun.COM 
120411042SErik.Nordmark@Sun.COM 			icmp_frag_needed(mp, mtu, ira);
120511042SErik.Nordmark@Sun.COM 			return;
120611042SErik.Nordmark@Sun.COM 		}
120711042SErik.Nordmark@Sun.COM 
120811042SErik.Nordmark@Sun.COM 		(void) ip_fragment_v4(mp, nce, ixaflags, pkt_len, mtu,
120911042SErik.Nordmark@Sun.COM 		    ira->ira_xmit_hint, GLOBAL_ZONEID, 0, ip_xmit, NULL);
121011042SErik.Nordmark@Sun.COM 		return;
121111042SErik.Nordmark@Sun.COM 	}
121211042SErik.Nordmark@Sun.COM 
121311042SErik.Nordmark@Sun.COM 	ASSERT(pkt_len == ntohs(((ipha_t *)mp->b_rptr)->ipha_length));
121411042SErik.Nordmark@Sun.COM 	if (iraflags & IRAF_LOOPBACK_COPY) {
121511042SErik.Nordmark@Sun.COM 		/*
121611042SErik.Nordmark@Sun.COM 		 * IXAF_NO_LOOP_ZONEID is not set hence 7th arg
121711042SErik.Nordmark@Sun.COM 		 * is don't care
121811042SErik.Nordmark@Sun.COM 		 */
121911042SErik.Nordmark@Sun.COM 		(void) ip_postfrag_loopcheck(mp, nce,
122011042SErik.Nordmark@Sun.COM 		    ixaflags | IXAF_LOOPBACK_COPY,
122111042SErik.Nordmark@Sun.COM 		    pkt_len, ira->ira_xmit_hint, GLOBAL_ZONEID, 0, NULL);
122211042SErik.Nordmark@Sun.COM 	} else {
122311042SErik.Nordmark@Sun.COM 		(void) ip_xmit(mp, nce, ixaflags, pkt_len, ira->ira_xmit_hint,
122411042SErik.Nordmark@Sun.COM 		    GLOBAL_ZONEID, 0, NULL);
122511042SErik.Nordmark@Sun.COM 	}
122611042SErik.Nordmark@Sun.COM }
122711042SErik.Nordmark@Sun.COM 
122811042SErik.Nordmark@Sun.COM /*
122911042SErik.Nordmark@Sun.COM  * ire_recvfn for RTF_REJECT and RTF_BLACKHOLE routes, including IRE_NOROUTE,
123011042SErik.Nordmark@Sun.COM  * which is what ire_route_recursive returns when there is no matching ire.
123111042SErik.Nordmark@Sun.COM  * Send ICMP unreachable unless blackhole.
123211042SErik.Nordmark@Sun.COM  */
123311042SErik.Nordmark@Sun.COM void
ire_recv_noroute_v4(ire_t * ire,mblk_t * mp,void * iph_arg,ip_recv_attr_t * ira)123411042SErik.Nordmark@Sun.COM ire_recv_noroute_v4(ire_t *ire, mblk_t *mp, void *iph_arg, ip_recv_attr_t *ira)
123511042SErik.Nordmark@Sun.COM {
123611042SErik.Nordmark@Sun.COM 	ipha_t		*ipha = (ipha_t *)iph_arg;
123711042SErik.Nordmark@Sun.COM 	ill_t		*ill = ira->ira_ill;
123811042SErik.Nordmark@Sun.COM 	ip_stack_t	*ipst = ill->ill_ipst;
123911042SErik.Nordmark@Sun.COM 
124011042SErik.Nordmark@Sun.COM 	/* Would we have forwarded this packet if we had a route? */
124111042SErik.Nordmark@Sun.COM 	if (ira->ira_flags & (IRAF_L2DST_MULTICAST|IRAF_L2DST_BROADCAST)) {
124211042SErik.Nordmark@Sun.COM 		BUMP_MIB(ill->ill_ip_mib, ipIfStatsForwProhibits);
124311042SErik.Nordmark@Sun.COM 		ip_drop_input("l2 multicast not forwarded", mp, ill);
124411042SErik.Nordmark@Sun.COM 		freemsg(mp);
124511042SErik.Nordmark@Sun.COM 		return;
124611042SErik.Nordmark@Sun.COM 	}
124711042SErik.Nordmark@Sun.COM 
124811042SErik.Nordmark@Sun.COM 	if (!(ill->ill_flags & ILLF_ROUTER)) {
124911042SErik.Nordmark@Sun.COM 		BUMP_MIB(ill->ill_ip_mib, ipIfStatsForwProhibits);
125011042SErik.Nordmark@Sun.COM 		ip_drop_input("ipIfStatsForwProhibits", mp, ill);
125111042SErik.Nordmark@Sun.COM 		freemsg(mp);
125211042SErik.Nordmark@Sun.COM 		return;
125311042SErik.Nordmark@Sun.COM 	}
125411042SErik.Nordmark@Sun.COM 	/*
125511042SErik.Nordmark@Sun.COM 	 * If we had a route this could have been forwarded. Count as such.
125611042SErik.Nordmark@Sun.COM 	 *
125711042SErik.Nordmark@Sun.COM 	 * ipIfStatsHCInForwDatagrams should only be increment if there
125811042SErik.Nordmark@Sun.COM 	 * will be an attempt to forward the packet, which is why we
125911042SErik.Nordmark@Sun.COM 	 * increment after the above condition has been checked.
126011042SErik.Nordmark@Sun.COM 	 */
126111042SErik.Nordmark@Sun.COM 	BUMP_MIB(ill->ill_ip_mib, ipIfStatsHCInForwDatagrams);
126211042SErik.Nordmark@Sun.COM 
126311042SErik.Nordmark@Sun.COM 	BUMP_MIB(ill->ill_ip_mib, ipIfStatsInNoRoutes);
126411042SErik.Nordmark@Sun.COM 
126511042SErik.Nordmark@Sun.COM 	ip_rts_change(RTM_MISS, ipha->ipha_dst, 0, 0, 0, 0, 0, 0, RTA_DST,
126611042SErik.Nordmark@Sun.COM 	    ipst);
126711042SErik.Nordmark@Sun.COM 
126811042SErik.Nordmark@Sun.COM 	if (ire->ire_flags & RTF_BLACKHOLE) {
126911042SErik.Nordmark@Sun.COM 		ip_drop_input("ipIfStatsInNoRoutes RTF_BLACKHOLE", mp, ill);
127011042SErik.Nordmark@Sun.COM 		freemsg(mp);
127111042SErik.Nordmark@Sun.COM 	} else {
127211042SErik.Nordmark@Sun.COM 		ip_drop_input("ipIfStatsInNoRoutes RTF_REJECT", mp, ill);
127311042SErik.Nordmark@Sun.COM 
127411042SErik.Nordmark@Sun.COM 		if (ip_source_routed(ipha, ipst)) {
127511042SErik.Nordmark@Sun.COM 			icmp_unreachable(mp, ICMP_SOURCE_ROUTE_FAILED, ira);
127611042SErik.Nordmark@Sun.COM 		} else {
127711042SErik.Nordmark@Sun.COM 			icmp_unreachable(mp, ICMP_HOST_UNREACHABLE, ira);
127811042SErik.Nordmark@Sun.COM 		}
127911042SErik.Nordmark@Sun.COM 	}
128011042SErik.Nordmark@Sun.COM }
128111042SErik.Nordmark@Sun.COM 
128211042SErik.Nordmark@Sun.COM /*
128311042SErik.Nordmark@Sun.COM  * ire_recvfn for IRE_LOCALs marked with ire_noaccept. Such IREs are used for
128411042SErik.Nordmark@Sun.COM  * VRRP when in noaccept mode.
128511042SErik.Nordmark@Sun.COM  * We silently drop the packet. ARP handles packets even if noaccept is set.
128611042SErik.Nordmark@Sun.COM  */
128711042SErik.Nordmark@Sun.COM /* ARGSUSED */
128811042SErik.Nordmark@Sun.COM void
ire_recv_noaccept_v4(ire_t * ire,mblk_t * mp,void * iph_arg,ip_recv_attr_t * ira)128911042SErik.Nordmark@Sun.COM ire_recv_noaccept_v4(ire_t *ire, mblk_t *mp, void *iph_arg,
129011042SErik.Nordmark@Sun.COM     ip_recv_attr_t *ira)
129111042SErik.Nordmark@Sun.COM {
129211042SErik.Nordmark@Sun.COM 	ill_t		*ill = ira->ira_ill;
129311042SErik.Nordmark@Sun.COM 
129411042SErik.Nordmark@Sun.COM 	BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards);
129511042SErik.Nordmark@Sun.COM 	ip_drop_input("ipIfStatsInDiscards - noaccept", mp, ill);
129611042SErik.Nordmark@Sun.COM 	freemsg(mp);
129711042SErik.Nordmark@Sun.COM }
129811042SErik.Nordmark@Sun.COM 
129911042SErik.Nordmark@Sun.COM /*
130011042SErik.Nordmark@Sun.COM  * ire_recvfn for IRE_BROADCAST.
130111042SErik.Nordmark@Sun.COM  */
130211042SErik.Nordmark@Sun.COM void
ire_recv_broadcast_v4(ire_t * ire,mblk_t * mp,void * iph_arg,ip_recv_attr_t * ira)130311042SErik.Nordmark@Sun.COM ire_recv_broadcast_v4(ire_t *ire, mblk_t *mp, void *iph_arg,
130411042SErik.Nordmark@Sun.COM     ip_recv_attr_t *ira)
130511042SErik.Nordmark@Sun.COM {
130611042SErik.Nordmark@Sun.COM 	ipha_t		*ipha = (ipha_t *)iph_arg;
130711042SErik.Nordmark@Sun.COM 	ill_t		*ill = ira->ira_ill;
130811042SErik.Nordmark@Sun.COM 	ill_t		*dst_ill = ire->ire_ill;
130911042SErik.Nordmark@Sun.COM 	ip_stack_t	*ipst = ill->ill_ipst;
131011042SErik.Nordmark@Sun.COM 	ire_t		*alt_ire;
131111042SErik.Nordmark@Sun.COM 	nce_t		*nce;
131211042SErik.Nordmark@Sun.COM 	ipaddr_t	ipha_dst;
131311042SErik.Nordmark@Sun.COM 
131411042SErik.Nordmark@Sun.COM 	BUMP_MIB(ill->ill_ip_mib, ipIfStatsHCInBcastPkts);
131511042SErik.Nordmark@Sun.COM 
131611042SErik.Nordmark@Sun.COM 	/* Tag for higher-level protocols */
131711042SErik.Nordmark@Sun.COM 	ira->ira_flags |= IRAF_BROADCAST;
131811042SErik.Nordmark@Sun.COM 
131911042SErik.Nordmark@Sun.COM 	/*
132011042SErik.Nordmark@Sun.COM 	 * Whether local or directed broadcast forwarding: don't allow
132111042SErik.Nordmark@Sun.COM 	 * for TCP.
132211042SErik.Nordmark@Sun.COM 	 */
132311042SErik.Nordmark@Sun.COM 	if (ipha->ipha_protocol == IPPROTO_TCP) {
132411042SErik.Nordmark@Sun.COM 		BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards);
132511042SErik.Nordmark@Sun.COM 		ip_drop_input("ipIfStatsInDiscards", mp, ill);
132611042SErik.Nordmark@Sun.COM 		freemsg(mp);
132711042SErik.Nordmark@Sun.COM 		return;
132811042SErik.Nordmark@Sun.COM 	}
132911042SErik.Nordmark@Sun.COM 
133011042SErik.Nordmark@Sun.COM 	/*
133111042SErik.Nordmark@Sun.COM 	 * So that we don't end up with dups, only one ill an IPMP group is
133211042SErik.Nordmark@Sun.COM 	 * nominated to receive broadcast traffic.
133311042SErik.Nordmark@Sun.COM 	 * If we have no cast_ill we are liberal and accept everything.
133411042SErik.Nordmark@Sun.COM 	 */
133511042SErik.Nordmark@Sun.COM 	if (IS_UNDER_IPMP(ill)) {
133611042SErik.Nordmark@Sun.COM 		/* For an under ill_grp can change under lock */
133711042SErik.Nordmark@Sun.COM 		rw_enter(&ipst->ips_ill_g_lock, RW_READER);
133811042SErik.Nordmark@Sun.COM 		if (!ill->ill_nom_cast && ill->ill_grp != NULL &&
133911042SErik.Nordmark@Sun.COM 		    ill->ill_grp->ig_cast_ill != NULL) {
134011042SErik.Nordmark@Sun.COM 			rw_exit(&ipst->ips_ill_g_lock);
134111042SErik.Nordmark@Sun.COM 			/* No MIB since this is normal operation */
134211042SErik.Nordmark@Sun.COM 			ip_drop_input("not nom_cast", mp, ill);
134311042SErik.Nordmark@Sun.COM 			freemsg(mp);
134411042SErik.Nordmark@Sun.COM 			return;
134511042SErik.Nordmark@Sun.COM 		}
134611042SErik.Nordmark@Sun.COM 		rw_exit(&ipst->ips_ill_g_lock);
134711042SErik.Nordmark@Sun.COM 
134811042SErik.Nordmark@Sun.COM 		ira->ira_ruifindex = ill_get_upper_ifindex(ill);
134911042SErik.Nordmark@Sun.COM 	}
135011042SErik.Nordmark@Sun.COM 
135111042SErik.Nordmark@Sun.COM 	/*
135211042SErik.Nordmark@Sun.COM 	 * After reassembly and IPsec we will need to duplicate the
135311042SErik.Nordmark@Sun.COM 	 * broadcast packet for all matching zones on the ill.
135411042SErik.Nordmark@Sun.COM 	 */
135511042SErik.Nordmark@Sun.COM 	ira->ira_zoneid = ALL_ZONES;
135611042SErik.Nordmark@Sun.COM 
135711042SErik.Nordmark@Sun.COM 	/*
135811042SErik.Nordmark@Sun.COM 	 * Check for directed broadcast i.e. ire->ire_ill is different than
135911042SErik.Nordmark@Sun.COM 	 * the incoming ill.
136011042SErik.Nordmark@Sun.COM 	 * The same broadcast address can be assigned to multiple interfaces
136111042SErik.Nordmark@Sun.COM 	 * so have to check explicitly for that case by looking up the alt_ire
136211042SErik.Nordmark@Sun.COM 	 */
136311042SErik.Nordmark@Sun.COM 	if (dst_ill == ill && !(ire->ire_flags & RTF_MULTIRT)) {
136411042SErik.Nordmark@Sun.COM 		/* Reassemble on the ill on which the packet arrived */
136511042SErik.Nordmark@Sun.COM 		ip_input_local_v4(ire, mp, ipha, ira);
136611042SErik.Nordmark@Sun.COM 		/* Restore */
136711042SErik.Nordmark@Sun.COM 		ira->ira_ruifindex = ill->ill_phyint->phyint_ifindex;
136811042SErik.Nordmark@Sun.COM 		return;
136911042SErik.Nordmark@Sun.COM 	}
137011042SErik.Nordmark@Sun.COM 
137111042SErik.Nordmark@Sun.COM 	/* Is there an IRE_BROADCAST on the incoming ill? */
137211042SErik.Nordmark@Sun.COM 	ipha_dst = ((ira->ira_flags & IRAF_DHCP_UNICAST) ? INADDR_BROADCAST :
137311042SErik.Nordmark@Sun.COM 	    ipha->ipha_dst);
137411042SErik.Nordmark@Sun.COM 	alt_ire = ire_ftable_lookup_v4(ipha_dst, 0, 0, IRE_BROADCAST, ill,
137511042SErik.Nordmark@Sun.COM 	    ALL_ZONES, ira->ira_tsl,
137611042SErik.Nordmark@Sun.COM 	    MATCH_IRE_TYPE|MATCH_IRE_ILL|MATCH_IRE_SECATTR, 0, ipst, NULL);
137711042SErik.Nordmark@Sun.COM 	if (alt_ire != NULL) {
137811042SErik.Nordmark@Sun.COM 		/* Not a directed broadcast */
137911042SErik.Nordmark@Sun.COM 		/*
138011042SErik.Nordmark@Sun.COM 		 * In the special case of multirouted broadcast
138111042SErik.Nordmark@Sun.COM 		 * packets, we unconditionally need to "gateway"
138211042SErik.Nordmark@Sun.COM 		 * them to the appropriate interface here so that reassembly
138311042SErik.Nordmark@Sun.COM 		 * works. We know that the IRE_BROADCAST on cgtp0 doesn't
138411042SErik.Nordmark@Sun.COM 		 * have RTF_MULTIRT set so we look for such an IRE in the
138511042SErik.Nordmark@Sun.COM 		 * bucket.
138611042SErik.Nordmark@Sun.COM 		 */
138711042SErik.Nordmark@Sun.COM 		if (alt_ire->ire_flags & RTF_MULTIRT) {
138811042SErik.Nordmark@Sun.COM 			irb_t		*irb;
138911042SErik.Nordmark@Sun.COM 			ire_t		*ire1;
139011042SErik.Nordmark@Sun.COM 
139111042SErik.Nordmark@Sun.COM 			irb = ire->ire_bucket;
139211042SErik.Nordmark@Sun.COM 			irb_refhold(irb);
139311042SErik.Nordmark@Sun.COM 			for (ire1 = irb->irb_ire; ire1 != NULL;
139411042SErik.Nordmark@Sun.COM 			    ire1 = ire1->ire_next) {
139511042SErik.Nordmark@Sun.COM 				if (IRE_IS_CONDEMNED(ire1))
139611042SErik.Nordmark@Sun.COM 					continue;
139711042SErik.Nordmark@Sun.COM 				if (!(ire1->ire_type & IRE_BROADCAST) ||
139811042SErik.Nordmark@Sun.COM 				    (ire1->ire_flags & RTF_MULTIRT))
139911042SErik.Nordmark@Sun.COM 					continue;
140011042SErik.Nordmark@Sun.COM 				ill = ire1->ire_ill;
140111042SErik.Nordmark@Sun.COM 				ill_refhold(ill);
140211042SErik.Nordmark@Sun.COM 				break;
140311042SErik.Nordmark@Sun.COM 			}
140411042SErik.Nordmark@Sun.COM 			irb_refrele(irb);
140511042SErik.Nordmark@Sun.COM 			if (ire1 != NULL) {
140611042SErik.Nordmark@Sun.COM 				ill_t *orig_ill = ira->ira_ill;
140711042SErik.Nordmark@Sun.COM 
140811042SErik.Nordmark@Sun.COM 				ire_refrele(alt_ire);
140911042SErik.Nordmark@Sun.COM 				/* Reassemble on the new ill */
141011042SErik.Nordmark@Sun.COM 				ira->ira_ill = ill;
141111042SErik.Nordmark@Sun.COM 				ip_input_local_v4(ire, mp, ipha, ira);
141211042SErik.Nordmark@Sun.COM 				ill_refrele(ill);
141311042SErik.Nordmark@Sun.COM 				/* Restore */
141411042SErik.Nordmark@Sun.COM 				ira->ira_ill = orig_ill;
141511042SErik.Nordmark@Sun.COM 				ira->ira_ruifindex =
141611042SErik.Nordmark@Sun.COM 				    orig_ill->ill_phyint->phyint_ifindex;
141711042SErik.Nordmark@Sun.COM 				return;
141811042SErik.Nordmark@Sun.COM 			}
141911042SErik.Nordmark@Sun.COM 		}
142011042SErik.Nordmark@Sun.COM 		ire_refrele(alt_ire);
142111042SErik.Nordmark@Sun.COM 		/* Reassemble on the ill on which the packet arrived */
142211042SErik.Nordmark@Sun.COM 		ip_input_local_v4(ire, mp, ipha, ira);
142311042SErik.Nordmark@Sun.COM 		goto done;
142411042SErik.Nordmark@Sun.COM 	}
142511042SErik.Nordmark@Sun.COM 
142611042SErik.Nordmark@Sun.COM 	/*
142711042SErik.Nordmark@Sun.COM 	 * This is a directed broadcast
142811042SErik.Nordmark@Sun.COM 	 *
142911042SErik.Nordmark@Sun.COM 	 * If directed broadcast is allowed, then forward the packet out
143011042SErik.Nordmark@Sun.COM 	 * the destination interface with IXAF_LOOPBACK_COPY set. That will
143111042SErik.Nordmark@Sun.COM 	 * result in ip_input() receiving a copy of the packet on the
143211042SErik.Nordmark@Sun.COM 	 * appropriate ill. (We could optimize this to avoid the extra trip
143311042SErik.Nordmark@Sun.COM 	 * via ip_input(), but since directed broadcasts are normally disabled
143411042SErik.Nordmark@Sun.COM 	 * it doesn't make sense to optimize it.)
143511042SErik.Nordmark@Sun.COM 	 */
143611042SErik.Nordmark@Sun.COM 	if (!ipst->ips_ip_g_forward_directed_bcast ||
143711042SErik.Nordmark@Sun.COM 	    (ira->ira_flags & (IRAF_L2DST_MULTICAST|IRAF_L2DST_BROADCAST))) {
143811042SErik.Nordmark@Sun.COM 		ip_drop_input("directed broadcast not allowed", mp, ill);
143911042SErik.Nordmark@Sun.COM 		freemsg(mp);
144011042SErik.Nordmark@Sun.COM 		goto done;
144111042SErik.Nordmark@Sun.COM 	}
144211042SErik.Nordmark@Sun.COM 	if ((ira->ira_flags & IRAF_VERIFY_IP_CKSUM) && ip_csum_hdr(ipha)) {
144311042SErik.Nordmark@Sun.COM 		BUMP_MIB(ill->ill_ip_mib, ipIfStatsInCksumErrs);
144411042SErik.Nordmark@Sun.COM 		ip_drop_input("ipIfStatsInCksumErrs", mp, ill);
144511042SErik.Nordmark@Sun.COM 		freemsg(mp);
144611042SErik.Nordmark@Sun.COM 		goto done;
144711042SErik.Nordmark@Sun.COM 	}
144811042SErik.Nordmark@Sun.COM 
144911042SErik.Nordmark@Sun.COM 	/*
145011042SErik.Nordmark@Sun.COM 	 * Clear the indication that this may have hardware
145111042SErik.Nordmark@Sun.COM 	 * checksum as we are not using it for forwarding.
145211042SErik.Nordmark@Sun.COM 	 */
145311042SErik.Nordmark@Sun.COM 	DB_CKSUMFLAGS(mp) = 0;
145411042SErik.Nordmark@Sun.COM 
145511042SErik.Nordmark@Sun.COM 	/*
145611042SErik.Nordmark@Sun.COM 	 * Adjust ttl to 2 (1+1 - the forward engine will decrement it by one.
145711042SErik.Nordmark@Sun.COM 	 */
145811042SErik.Nordmark@Sun.COM 	ipha->ipha_ttl = ipst->ips_ip_broadcast_ttl + 1;
145911042SErik.Nordmark@Sun.COM 	ipha->ipha_hdr_checksum = 0;
146011042SErik.Nordmark@Sun.COM 	ipha->ipha_hdr_checksum = ip_csum_hdr(ipha);
146111042SErik.Nordmark@Sun.COM 
146211042SErik.Nordmark@Sun.COM 	/*
146311042SErik.Nordmark@Sun.COM 	 * We use ip_forward_xmit to do any fragmentation.
146411042SErik.Nordmark@Sun.COM 	 * and loopback copy on the outbound interface.
146511042SErik.Nordmark@Sun.COM 	 *
146611042SErik.Nordmark@Sun.COM 	 * Make it so that IXAF_LOOPBACK_COPY to be set on transmit side.
146711042SErik.Nordmark@Sun.COM 	 */
146811042SErik.Nordmark@Sun.COM 	ira->ira_flags |= IRAF_LOOPBACK_COPY;
146911042SErik.Nordmark@Sun.COM 
147011042SErik.Nordmark@Sun.COM 	nce = arp_nce_init(dst_ill, ipha->ipha_dst, IRE_BROADCAST);
147111042SErik.Nordmark@Sun.COM 	if (nce == NULL) {
147211042SErik.Nordmark@Sun.COM 		BUMP_MIB(dst_ill->ill_ip_mib, ipIfStatsOutDiscards);
147311042SErik.Nordmark@Sun.COM 		ip_drop_output("No nce", mp, dst_ill);
147411042SErik.Nordmark@Sun.COM 		freemsg(mp);
147511042SErik.Nordmark@Sun.COM 		goto done;
147611042SErik.Nordmark@Sun.COM 	}
147711042SErik.Nordmark@Sun.COM 
1478*13123SErik.Nordmark@Sun.COM 	ip_forward_xmit_v4(nce, ill, mp, ipha, ira, dst_ill->ill_mc_mtu, 0);
147911042SErik.Nordmark@Sun.COM 	nce_refrele(nce);
148011042SErik.Nordmark@Sun.COM done:
148111042SErik.Nordmark@Sun.COM 	/* Restore */
148211042SErik.Nordmark@Sun.COM 	ira->ira_ruifindex = ill->ill_phyint->phyint_ifindex;
148311042SErik.Nordmark@Sun.COM }
148411042SErik.Nordmark@Sun.COM 
148511042SErik.Nordmark@Sun.COM /*
148611042SErik.Nordmark@Sun.COM  * ire_recvfn for IRE_MULTICAST.
148711042SErik.Nordmark@Sun.COM  */
148811042SErik.Nordmark@Sun.COM void
ire_recv_multicast_v4(ire_t * ire,mblk_t * mp,void * iph_arg,ip_recv_attr_t * ira)148911042SErik.Nordmark@Sun.COM ire_recv_multicast_v4(ire_t *ire, mblk_t *mp, void *iph_arg,
149011042SErik.Nordmark@Sun.COM     ip_recv_attr_t *ira)
149111042SErik.Nordmark@Sun.COM {
149211042SErik.Nordmark@Sun.COM 	ipha_t		*ipha = (ipha_t *)iph_arg;
149311042SErik.Nordmark@Sun.COM 	ill_t		*ill = ira->ira_ill;
149411042SErik.Nordmark@Sun.COM 	ip_stack_t	*ipst = ill->ill_ipst;
149511042SErik.Nordmark@Sun.COM 
149611042SErik.Nordmark@Sun.COM 	ASSERT(ire->ire_ill == ira->ira_ill);
149711042SErik.Nordmark@Sun.COM 
149811042SErik.Nordmark@Sun.COM 	BUMP_MIB(ill->ill_ip_mib, ipIfStatsHCInMcastPkts);
149911042SErik.Nordmark@Sun.COM 	UPDATE_MIB(ill->ill_ip_mib, ipIfStatsHCInMcastOctets, ira->ira_pktlen);
150011042SErik.Nordmark@Sun.COM 
150111042SErik.Nordmark@Sun.COM 	/* RSVP hook */
150211042SErik.Nordmark@Sun.COM 	if (ira->ira_flags & IRAF_RSVP)
150311042SErik.Nordmark@Sun.COM 		goto forus;
150411042SErik.Nordmark@Sun.COM 
150511042SErik.Nordmark@Sun.COM 	/* Tag for higher-level protocols */
150611042SErik.Nordmark@Sun.COM 	ira->ira_flags |= IRAF_MULTICAST;
150711042SErik.Nordmark@Sun.COM 
150811042SErik.Nordmark@Sun.COM 	/*
150911042SErik.Nordmark@Sun.COM 	 * So that we don't end up with dups, only one ill an IPMP group is
151011042SErik.Nordmark@Sun.COM 	 * nominated to receive multicast traffic.
151111042SErik.Nordmark@Sun.COM 	 * If we have no cast_ill we are liberal and accept everything.
151211042SErik.Nordmark@Sun.COM 	 */
151311042SErik.Nordmark@Sun.COM 	if (IS_UNDER_IPMP(ill)) {
151411042SErik.Nordmark@Sun.COM 		ip_stack_t	*ipst = ill->ill_ipst;
151511042SErik.Nordmark@Sun.COM 
151611042SErik.Nordmark@Sun.COM 		/* For an under ill_grp can change under lock */
151711042SErik.Nordmark@Sun.COM 		rw_enter(&ipst->ips_ill_g_lock, RW_READER);
151811042SErik.Nordmark@Sun.COM 		if (!ill->ill_nom_cast && ill->ill_grp != NULL &&
151911042SErik.Nordmark@Sun.COM 		    ill->ill_grp->ig_cast_ill != NULL) {
152011042SErik.Nordmark@Sun.COM 			rw_exit(&ipst->ips_ill_g_lock);
152111042SErik.Nordmark@Sun.COM 			ip_drop_input("not on cast ill", mp, ill);
152211042SErik.Nordmark@Sun.COM 			freemsg(mp);
152311042SErik.Nordmark@Sun.COM 			return;
152411042SErik.Nordmark@Sun.COM 		}
152511042SErik.Nordmark@Sun.COM 		rw_exit(&ipst->ips_ill_g_lock);
152611042SErik.Nordmark@Sun.COM 		/*
152711042SErik.Nordmark@Sun.COM 		 * We switch to the upper ill so that mrouter and hasmembers
152811042SErik.Nordmark@Sun.COM 		 * can operate on upper here and in ip_input_multicast.
152911042SErik.Nordmark@Sun.COM 		 */
153011042SErik.Nordmark@Sun.COM 		ill = ipmp_ill_hold_ipmp_ill(ill);
153111042SErik.Nordmark@Sun.COM 		if (ill != NULL) {
153211042SErik.Nordmark@Sun.COM 			ASSERT(ill != ira->ira_ill);
153311042SErik.Nordmark@Sun.COM 			ASSERT(ire->ire_ill == ira->ira_ill);
153411042SErik.Nordmark@Sun.COM 			ira->ira_ill = ill;
153511042SErik.Nordmark@Sun.COM 			ira->ira_ruifindex = ill->ill_phyint->phyint_ifindex;
153611042SErik.Nordmark@Sun.COM 		} else {
153711042SErik.Nordmark@Sun.COM 			ill = ira->ira_ill;
153811042SErik.Nordmark@Sun.COM 		}
153911042SErik.Nordmark@Sun.COM 	}
154011042SErik.Nordmark@Sun.COM 
154111042SErik.Nordmark@Sun.COM 	/*
154211042SErik.Nordmark@Sun.COM 	 * Check if we are a multicast router - send ip_mforward a copy of
154311042SErik.Nordmark@Sun.COM 	 * the packet.
154411042SErik.Nordmark@Sun.COM 	 * Due to mroute_decap tunnels we consider forwarding packets even if
154511042SErik.Nordmark@Sun.COM 	 * mrouted has not joined the allmulti group on this interface.
154611042SErik.Nordmark@Sun.COM 	 */
154711042SErik.Nordmark@Sun.COM 	if (ipst->ips_ip_g_mrouter) {
154811042SErik.Nordmark@Sun.COM 		int retval;
154911042SErik.Nordmark@Sun.COM 
155011042SErik.Nordmark@Sun.COM 		/*
155111042SErik.Nordmark@Sun.COM 		 * Clear the indication that this may have hardware
155211042SErik.Nordmark@Sun.COM 		 * checksum as we are not using it for forwarding.
155311042SErik.Nordmark@Sun.COM 		 */
155411042SErik.Nordmark@Sun.COM 		DB_CKSUMFLAGS(mp) = 0;
155511042SErik.Nordmark@Sun.COM 
155611042SErik.Nordmark@Sun.COM 		/*
155711042SErik.Nordmark@Sun.COM 		 * ip_mforward helps us make these distinctions: If received
155811042SErik.Nordmark@Sun.COM 		 * on tunnel and not IGMP, then drop.
155911042SErik.Nordmark@Sun.COM 		 * If IGMP packet, then don't check membership
156011042SErik.Nordmark@Sun.COM 		 * If received on a phyint and IGMP or PIM, then
156111042SErik.Nordmark@Sun.COM 		 * don't check membership
156211042SErik.Nordmark@Sun.COM 		 */
156311042SErik.Nordmark@Sun.COM 		retval = ip_mforward(mp, ira);
156411042SErik.Nordmark@Sun.COM 		/* ip_mforward updates mib variables if needed */
156511042SErik.Nordmark@Sun.COM 
156611042SErik.Nordmark@Sun.COM 		switch (retval) {
156711042SErik.Nordmark@Sun.COM 		case 0:
156811042SErik.Nordmark@Sun.COM 			/*
156911042SErik.Nordmark@Sun.COM 			 * pkt is okay and arrived on phyint.
157011042SErik.Nordmark@Sun.COM 			 *
157111042SErik.Nordmark@Sun.COM 			 * If we are running as a multicast router
157211042SErik.Nordmark@Sun.COM 			 * we need to see all IGMP and/or PIM packets.
157311042SErik.Nordmark@Sun.COM 			 */
157411042SErik.Nordmark@Sun.COM 			if ((ipha->ipha_protocol == IPPROTO_IGMP) ||
157511042SErik.Nordmark@Sun.COM 			    (ipha->ipha_protocol == IPPROTO_PIM)) {
157611042SErik.Nordmark@Sun.COM 				goto forus;
157711042SErik.Nordmark@Sun.COM 			}
157811042SErik.Nordmark@Sun.COM 			break;
157911042SErik.Nordmark@Sun.COM 		case -1:
158011042SErik.Nordmark@Sun.COM 			/* pkt is mal-formed, toss it */
158111042SErik.Nordmark@Sun.COM 			freemsg(mp);
158211042SErik.Nordmark@Sun.COM 			goto done;
158311042SErik.Nordmark@Sun.COM 		case 1:
158411042SErik.Nordmark@Sun.COM 			/*
158511042SErik.Nordmark@Sun.COM 			 * pkt is okay and arrived on a tunnel
158611042SErik.Nordmark@Sun.COM 			 *
158711042SErik.Nordmark@Sun.COM 			 * If we are running a multicast router
158811042SErik.Nordmark@Sun.COM 			 * we need to see all igmp packets.
158911042SErik.Nordmark@Sun.COM 			 */
159011042SErik.Nordmark@Sun.COM 			if (ipha->ipha_protocol == IPPROTO_IGMP) {
159111042SErik.Nordmark@Sun.COM 				goto forus;
159211042SErik.Nordmark@Sun.COM 			}
159311042SErik.Nordmark@Sun.COM 			ip_drop_input("Multicast on tunnel ignored", mp, ill);
159411042SErik.Nordmark@Sun.COM 			freemsg(mp);
159511042SErik.Nordmark@Sun.COM 			goto done;
159611042SErik.Nordmark@Sun.COM 		}
159711042SErik.Nordmark@Sun.COM 	}
159811042SErik.Nordmark@Sun.COM 
159911042SErik.Nordmark@Sun.COM 	/*
160011042SErik.Nordmark@Sun.COM 	 * Check if we have members on this ill. This is not necessary for
160111042SErik.Nordmark@Sun.COM 	 * correctness because even if the NIC/GLD had a leaky filter, we
160211042SErik.Nordmark@Sun.COM 	 * filter before passing to each conn_t.
160311042SErik.Nordmark@Sun.COM 	 */
160411042SErik.Nordmark@Sun.COM 	if (!ill_hasmembers_v4(ill, ipha->ipha_dst)) {
160511042SErik.Nordmark@Sun.COM 		/*
160611042SErik.Nordmark@Sun.COM 		 * Nobody interested
160711042SErik.Nordmark@Sun.COM 		 *
160811042SErik.Nordmark@Sun.COM 		 * This might just be caused by the fact that
160911042SErik.Nordmark@Sun.COM 		 * multiple IP Multicast addresses map to the same
161011042SErik.Nordmark@Sun.COM 		 * link layer multicast - no need to increment counter!
161111042SErik.Nordmark@Sun.COM 		 */
161211042SErik.Nordmark@Sun.COM 		ip_drop_input("Multicast with no members", mp, ill);
161311042SErik.Nordmark@Sun.COM 		freemsg(mp);
161411042SErik.Nordmark@Sun.COM 		goto done;
161511042SErik.Nordmark@Sun.COM 	}
161611042SErik.Nordmark@Sun.COM forus:
161711042SErik.Nordmark@Sun.COM 	ip2dbg(("ire_recv_multicast_v4: multicast for us: 0x%x\n",
161811042SErik.Nordmark@Sun.COM 	    ntohl(ipha->ipha_dst)));
161911042SErik.Nordmark@Sun.COM 
162011042SErik.Nordmark@Sun.COM 	/*
162111042SErik.Nordmark@Sun.COM 	 * After reassembly and IPsec we will need to duplicate the
162211042SErik.Nordmark@Sun.COM 	 * multicast packet for all matching zones on the ill.
162311042SErik.Nordmark@Sun.COM 	 */
162411042SErik.Nordmark@Sun.COM 	ira->ira_zoneid = ALL_ZONES;
162511042SErik.Nordmark@Sun.COM 
162611042SErik.Nordmark@Sun.COM 	/* Reassemble on the ill on which the packet arrived */
162711042SErik.Nordmark@Sun.COM 	ip_input_local_v4(ire, mp, ipha, ira);
162811042SErik.Nordmark@Sun.COM done:
162911042SErik.Nordmark@Sun.COM 	if (ill != ire->ire_ill) {
163011042SErik.Nordmark@Sun.COM 		ill_refrele(ill);
163111042SErik.Nordmark@Sun.COM 		ira->ira_ill = ire->ire_ill;
163211042SErik.Nordmark@Sun.COM 		ira->ira_ruifindex = ira->ira_ill->ill_phyint->phyint_ifindex;
163311042SErik.Nordmark@Sun.COM 	}
163411042SErik.Nordmark@Sun.COM }
163511042SErik.Nordmark@Sun.COM 
163611042SErik.Nordmark@Sun.COM /*
163711042SErik.Nordmark@Sun.COM  * ire_recvfn for IRE_OFFLINK with RTF_MULTIRT.
163811042SErik.Nordmark@Sun.COM  * Drop packets since we don't forward out multirt routes.
163911042SErik.Nordmark@Sun.COM  */
164011042SErik.Nordmark@Sun.COM /* ARGSUSED */
164111042SErik.Nordmark@Sun.COM void
ire_recv_multirt_v4(ire_t * ire,mblk_t * mp,void * iph_arg,ip_recv_attr_t * ira)164211042SErik.Nordmark@Sun.COM ire_recv_multirt_v4(ire_t *ire, mblk_t *mp, void *iph_arg, ip_recv_attr_t *ira)
164311042SErik.Nordmark@Sun.COM {
164411042SErik.Nordmark@Sun.COM 	ill_t		*ill = ira->ira_ill;
164511042SErik.Nordmark@Sun.COM 
164611042SErik.Nordmark@Sun.COM 	BUMP_MIB(ill->ill_ip_mib, ipIfStatsInNoRoutes);
164711042SErik.Nordmark@Sun.COM 	ip_drop_input("Not forwarding out MULTIRT", mp, ill);
164811042SErik.Nordmark@Sun.COM 	freemsg(mp);
164911042SErik.Nordmark@Sun.COM }
165011042SErik.Nordmark@Sun.COM 
165111042SErik.Nordmark@Sun.COM /*
165211042SErik.Nordmark@Sun.COM  * ire_recvfn for IRE_LOOPBACK. This is only used when a FW_HOOK
165311042SErik.Nordmark@Sun.COM  * has rewritten the packet to have a loopback destination address (We
165411042SErik.Nordmark@Sun.COM  * filter out packet with a loopback destination from arriving over the wire).
165511042SErik.Nordmark@Sun.COM  * We don't know what zone to use, thus we always use the GLOBAL_ZONEID.
165611042SErik.Nordmark@Sun.COM  */
165711042SErik.Nordmark@Sun.COM void
ire_recv_loopback_v4(ire_t * ire,mblk_t * mp,void * iph_arg,ip_recv_attr_t * ira)165811042SErik.Nordmark@Sun.COM ire_recv_loopback_v4(ire_t *ire, mblk_t *mp, void *iph_arg, ip_recv_attr_t *ira)
165911042SErik.Nordmark@Sun.COM {
166011042SErik.Nordmark@Sun.COM 	ipha_t		*ipha = (ipha_t *)iph_arg;
166111042SErik.Nordmark@Sun.COM 	ill_t		*ill = ira->ira_ill;
166211042SErik.Nordmark@Sun.COM 	ill_t		*ire_ill = ire->ire_ill;
166311042SErik.Nordmark@Sun.COM 
166411042SErik.Nordmark@Sun.COM 	ira->ira_zoneid = GLOBAL_ZONEID;
166511042SErik.Nordmark@Sun.COM 
166611042SErik.Nordmark@Sun.COM 	/* Switch to the lo0 ill for further processing  */
166711042SErik.Nordmark@Sun.COM 	if (ire_ill != ill) {
166811042SErik.Nordmark@Sun.COM 		/*
166911042SErik.Nordmark@Sun.COM 		 * Update ira_ill to be the ILL on which the IP address
167011042SErik.Nordmark@Sun.COM 		 * is hosted.
167111042SErik.Nordmark@Sun.COM 		 * No need to hold the ill since we have a hold on the ire
167211042SErik.Nordmark@Sun.COM 		 */
167311042SErik.Nordmark@Sun.COM 		ASSERT(ira->ira_ill == ira->ira_rill);
167411042SErik.Nordmark@Sun.COM 		ira->ira_ill = ire_ill;
167511042SErik.Nordmark@Sun.COM 
167611042SErik.Nordmark@Sun.COM 		ip_input_local_v4(ire, mp, ipha, ira);
167711042SErik.Nordmark@Sun.COM 
167811042SErik.Nordmark@Sun.COM 		/* Restore */
167911042SErik.Nordmark@Sun.COM 		ASSERT(ira->ira_ill == ire_ill);
168011042SErik.Nordmark@Sun.COM 		ira->ira_ill = ill;
168111042SErik.Nordmark@Sun.COM 		return;
168211042SErik.Nordmark@Sun.COM 
168311042SErik.Nordmark@Sun.COM 	}
168411042SErik.Nordmark@Sun.COM 	ip_input_local_v4(ire, mp, ipha, ira);
168511042SErik.Nordmark@Sun.COM }
168611042SErik.Nordmark@Sun.COM 
168711042SErik.Nordmark@Sun.COM /*
168811042SErik.Nordmark@Sun.COM  * ire_recvfn for IRE_LOCAL.
168911042SErik.Nordmark@Sun.COM  */
169011042SErik.Nordmark@Sun.COM void
ire_recv_local_v4(ire_t * ire,mblk_t * mp,void * iph_arg,ip_recv_attr_t * ira)169111042SErik.Nordmark@Sun.COM ire_recv_local_v4(ire_t *ire, mblk_t *mp, void *iph_arg, ip_recv_attr_t *ira)
169211042SErik.Nordmark@Sun.COM {
169311042SErik.Nordmark@Sun.COM 	ipha_t		*ipha = (ipha_t *)iph_arg;
169411042SErik.Nordmark@Sun.COM 	ill_t		*ill = ira->ira_ill;
169511042SErik.Nordmark@Sun.COM 	ill_t		*ire_ill = ire->ire_ill;
169611042SErik.Nordmark@Sun.COM 
169711042SErik.Nordmark@Sun.COM 	/* Make a note for DAD that this address is in use */
169811110SErik.Nordmark@Sun.COM 	ire->ire_last_used_time = LBOLT_FASTPATH;
169911042SErik.Nordmark@Sun.COM 
170011042SErik.Nordmark@Sun.COM 	/* Only target the IRE_LOCAL with the right zoneid. */
170111042SErik.Nordmark@Sun.COM 	ira->ira_zoneid = ire->ire_zoneid;
170211042SErik.Nordmark@Sun.COM 
170311042SErik.Nordmark@Sun.COM 	/*
170411042SErik.Nordmark@Sun.COM 	 * If the packet arrived on the wrong ill, we check that
170511042SErik.Nordmark@Sun.COM 	 * this is ok.
170611042SErik.Nordmark@Sun.COM 	 * If it is, then we ensure that we do the reassembly on
170711042SErik.Nordmark@Sun.COM 	 * the ill on which the address is hosted. We keep ira_rill as
170811042SErik.Nordmark@Sun.COM 	 * the one on which the packet arrived, so that IP_PKTINFO and
170911042SErik.Nordmark@Sun.COM 	 * friends can report this.
171011042SErik.Nordmark@Sun.COM 	 */
171111042SErik.Nordmark@Sun.COM 	if (ire_ill != ill) {
171211042SErik.Nordmark@Sun.COM 		ire_t *new_ire;
171311042SErik.Nordmark@Sun.COM 
171411042SErik.Nordmark@Sun.COM 		new_ire = ip_check_multihome(&ipha->ipha_dst, ire, ill);
171511042SErik.Nordmark@Sun.COM 		if (new_ire == NULL) {
171611042SErik.Nordmark@Sun.COM 			/* Drop packet */
171711042SErik.Nordmark@Sun.COM 			BUMP_MIB(ill->ill_ip_mib, ipIfStatsForwProhibits);
171811042SErik.Nordmark@Sun.COM 			ip_drop_input("ipIfStatsInForwProhibits", mp, ill);
171911042SErik.Nordmark@Sun.COM 			freemsg(mp);
172011042SErik.Nordmark@Sun.COM 			return;
172111042SErik.Nordmark@Sun.COM 		}
172211042SErik.Nordmark@Sun.COM 		/*
172311042SErik.Nordmark@Sun.COM 		 * Update ira_ill to be the ILL on which the IP address
172411042SErik.Nordmark@Sun.COM 		 * is hosted. No need to hold the ill since we have a
172511042SErik.Nordmark@Sun.COM 		 * hold on the ire. Note that we do the switch even if
172611042SErik.Nordmark@Sun.COM 		 * new_ire == ire (for IPMP, ire would be the one corresponding
172711042SErik.Nordmark@Sun.COM 		 * to the IPMP ill).
172811042SErik.Nordmark@Sun.COM 		 */
172911042SErik.Nordmark@Sun.COM 		ASSERT(ira->ira_ill == ira->ira_rill);
173011042SErik.Nordmark@Sun.COM 		ira->ira_ill = new_ire->ire_ill;
173111042SErik.Nordmark@Sun.COM 
173211042SErik.Nordmark@Sun.COM 		/* ira_ruifindex tracks the upper for ira_rill */
173311042SErik.Nordmark@Sun.COM 		if (IS_UNDER_IPMP(ill))
173411042SErik.Nordmark@Sun.COM 			ira->ira_ruifindex = ill_get_upper_ifindex(ill);
173511042SErik.Nordmark@Sun.COM 
173611042SErik.Nordmark@Sun.COM 		ip_input_local_v4(new_ire, mp, ipha, ira);
173711042SErik.Nordmark@Sun.COM 
173811042SErik.Nordmark@Sun.COM 		/* Restore */
173911042SErik.Nordmark@Sun.COM 		ASSERT(ira->ira_ill == new_ire->ire_ill);
174011042SErik.Nordmark@Sun.COM 		ira->ira_ill = ill;
174111042SErik.Nordmark@Sun.COM 		ira->ira_ruifindex = ill->ill_phyint->phyint_ifindex;
174211042SErik.Nordmark@Sun.COM 
174311042SErik.Nordmark@Sun.COM 		if (new_ire != ire)
174411042SErik.Nordmark@Sun.COM 			ire_refrele(new_ire);
174511042SErik.Nordmark@Sun.COM 		return;
174611042SErik.Nordmark@Sun.COM 	}
174711042SErik.Nordmark@Sun.COM 
174811042SErik.Nordmark@Sun.COM 	ip_input_local_v4(ire, mp, ipha, ira);
174911042SErik.Nordmark@Sun.COM }
175011042SErik.Nordmark@Sun.COM 
175111042SErik.Nordmark@Sun.COM /*
175211042SErik.Nordmark@Sun.COM  * Common function for packets arriving for the host. Handles
175311042SErik.Nordmark@Sun.COM  * checksum verification, reassembly checks, etc.
175411042SErik.Nordmark@Sun.COM  */
175511042SErik.Nordmark@Sun.COM static void
ip_input_local_v4(ire_t * ire,mblk_t * mp,ipha_t * ipha,ip_recv_attr_t * ira)175611042SErik.Nordmark@Sun.COM ip_input_local_v4(ire_t *ire, mblk_t *mp, ipha_t *ipha, ip_recv_attr_t *ira)
175711042SErik.Nordmark@Sun.COM {
175811042SErik.Nordmark@Sun.COM 	ill_t		*ill = ira->ira_ill;
175911042SErik.Nordmark@Sun.COM 	iaflags_t	iraflags = ira->ira_flags;
176011042SErik.Nordmark@Sun.COM 
176111042SErik.Nordmark@Sun.COM 	/*
176211042SErik.Nordmark@Sun.COM 	 * Verify IP header checksum. If the packet was AH or ESP then
176311042SErik.Nordmark@Sun.COM 	 * this flag has already been cleared. Likewise if the packet
176411042SErik.Nordmark@Sun.COM 	 * had a hardware checksum.
176511042SErik.Nordmark@Sun.COM 	 */
176611042SErik.Nordmark@Sun.COM 	if ((iraflags & IRAF_VERIFY_IP_CKSUM) && ip_csum_hdr(ipha)) {
176711042SErik.Nordmark@Sun.COM 		BUMP_MIB(ill->ill_ip_mib, ipIfStatsInCksumErrs);
176811042SErik.Nordmark@Sun.COM 		ip_drop_input("ipIfStatsInCksumErrs", mp, ill);
176911042SErik.Nordmark@Sun.COM 		freemsg(mp);
177011042SErik.Nordmark@Sun.COM 		return;
177111042SErik.Nordmark@Sun.COM 	}
177211042SErik.Nordmark@Sun.COM 
177311042SErik.Nordmark@Sun.COM 	if (iraflags & IRAF_IPV4_OPTIONS) {
177411042SErik.Nordmark@Sun.COM 		if (!ip_input_local_options(mp, ipha, ira)) {
177511042SErik.Nordmark@Sun.COM 			/* Error has been sent and mp consumed */
177611042SErik.Nordmark@Sun.COM 			return;
177711042SErik.Nordmark@Sun.COM 		}
177811145SRoamer@Sun.COM 		/*
177911145SRoamer@Sun.COM 		 * Some old hardware does partial checksum by including the
178011145SRoamer@Sun.COM 		 * whole IP header, so the partial checksum value might have
178111145SRoamer@Sun.COM 		 * become invalid if any option in the packet have been
178211145SRoamer@Sun.COM 		 * updated. Always clear partial checksum flag here.
178311145SRoamer@Sun.COM 		 */
178411145SRoamer@Sun.COM 		DB_CKSUMFLAGS(mp) &= ~HCK_PARTIALCKSUM;
178511042SErik.Nordmark@Sun.COM 	}
178611042SErik.Nordmark@Sun.COM 
178711042SErik.Nordmark@Sun.COM 	/*
178811042SErik.Nordmark@Sun.COM 	 * Is packet part of fragmented IP packet?
178911042SErik.Nordmark@Sun.COM 	 * We compare against defined values in network byte order
179011042SErik.Nordmark@Sun.COM 	 */
179111042SErik.Nordmark@Sun.COM 	if (ipha->ipha_fragment_offset_and_flags &
179211042SErik.Nordmark@Sun.COM 	    (IPH_MF_HTONS | IPH_OFFSET_HTONS)) {
179311042SErik.Nordmark@Sun.COM 		/*
179411042SErik.Nordmark@Sun.COM 		 * Make sure we have ira_l2src before we loose the original
179511042SErik.Nordmark@Sun.COM 		 * mblk
179611042SErik.Nordmark@Sun.COM 		 */
179711042SErik.Nordmark@Sun.COM 		if (!(ira->ira_flags & IRAF_L2SRC_SET))
179811042SErik.Nordmark@Sun.COM 			ip_setl2src(mp, ira, ira->ira_rill);
179911042SErik.Nordmark@Sun.COM 
180011042SErik.Nordmark@Sun.COM 		mp = ip_input_fragment(mp, ipha, ira);
180111042SErik.Nordmark@Sun.COM 		if (mp == NULL)
180211042SErik.Nordmark@Sun.COM 			return;
180311042SErik.Nordmark@Sun.COM 		/* Completed reassembly */
180411042SErik.Nordmark@Sun.COM 		ipha = (ipha_t *)mp->b_rptr;
180511042SErik.Nordmark@Sun.COM 	}
180611042SErik.Nordmark@Sun.COM 
180711042SErik.Nordmark@Sun.COM 	/*
180811042SErik.Nordmark@Sun.COM 	 * For broadcast and multicast we need some extra work before
180911042SErik.Nordmark@Sun.COM 	 * we call ip_fanout_v4(), since in the case of shared-IP zones
181011042SErik.Nordmark@Sun.COM 	 * we need to pretend that a packet arrived for each zoneid.
181111042SErik.Nordmark@Sun.COM 	 */
181211042SErik.Nordmark@Sun.COM 	if (iraflags & IRAF_MULTIBROADCAST) {
181311042SErik.Nordmark@Sun.COM 		if (iraflags & IRAF_BROADCAST)
181411042SErik.Nordmark@Sun.COM 			ip_input_broadcast_v4(ire, mp, ipha, ira);
181511042SErik.Nordmark@Sun.COM 		else
181611042SErik.Nordmark@Sun.COM 			ip_input_multicast_v4(ire, mp, ipha, ira);
181711042SErik.Nordmark@Sun.COM 		return;
181811042SErik.Nordmark@Sun.COM 	}
181911042SErik.Nordmark@Sun.COM 	ip_fanout_v4(mp, ipha, ira);
182011042SErik.Nordmark@Sun.COM }
182111042SErik.Nordmark@Sun.COM 
182211042SErik.Nordmark@Sun.COM 
182311042SErik.Nordmark@Sun.COM /*
182411042SErik.Nordmark@Sun.COM  * Handle multiple zones which match the same broadcast address
182511042SErik.Nordmark@Sun.COM  * and ill by delivering a packet to each of them.
182611042SErik.Nordmark@Sun.COM  * Walk the bucket and look for different ire_zoneid but otherwise
182711042SErik.Nordmark@Sun.COM  * the same IRE (same ill/addr/mask/type).
182811042SErik.Nordmark@Sun.COM  * Note that ire_add() tracks IREs that are identical in all
182911042SErik.Nordmark@Sun.COM  * fields (addr/mask/type/gw/ill/zoneid) within a single IRE by
183011042SErik.Nordmark@Sun.COM  * increasing ire_identical_cnt. Thus we don't need to be concerned
183111042SErik.Nordmark@Sun.COM  * about those.
183211042SErik.Nordmark@Sun.COM  */
183311042SErik.Nordmark@Sun.COM static void
ip_input_broadcast_v4(ire_t * ire,mblk_t * mp,ipha_t * ipha,ip_recv_attr_t * ira)183411042SErik.Nordmark@Sun.COM ip_input_broadcast_v4(ire_t *ire, mblk_t *mp, ipha_t *ipha, ip_recv_attr_t *ira)
183511042SErik.Nordmark@Sun.COM {
183611042SErik.Nordmark@Sun.COM 	ill_t		*ill = ira->ira_ill;
183711042SErik.Nordmark@Sun.COM 	ip_stack_t	*ipst = ill->ill_ipst;
183811042SErik.Nordmark@Sun.COM 	netstack_t	*ns = ipst->ips_netstack;
183911042SErik.Nordmark@Sun.COM 	irb_t		*irb;
184011042SErik.Nordmark@Sun.COM 	ire_t		*ire1;
184111042SErik.Nordmark@Sun.COM 	mblk_t		*mp1;
184211042SErik.Nordmark@Sun.COM 	ipha_t		*ipha1;
184311681SSowmini.Varadhan@Sun.COM 	uint_t		ira_pktlen = ira->ira_pktlen;
184411681SSowmini.Varadhan@Sun.COM 	uint16_t	ira_ip_hdr_length = ira->ira_ip_hdr_length;
184511042SErik.Nordmark@Sun.COM 
184611042SErik.Nordmark@Sun.COM 	irb = ire->ire_bucket;
184711042SErik.Nordmark@Sun.COM 
184811042SErik.Nordmark@Sun.COM 	/*
184911042SErik.Nordmark@Sun.COM 	 * If we don't have more than one shared-IP zone, or if
185011042SErik.Nordmark@Sun.COM 	 * there can't be more than one IRE_BROADCAST for this
185111042SErik.Nordmark@Sun.COM 	 * IP address, then just set the zoneid and proceed.
185211042SErik.Nordmark@Sun.COM 	 */
185311042SErik.Nordmark@Sun.COM 	if (ns->netstack_numzones == 1 || irb->irb_ire_cnt == 1) {
185411042SErik.Nordmark@Sun.COM 		ira->ira_zoneid = ire->ire_zoneid;
185511042SErik.Nordmark@Sun.COM 
185611042SErik.Nordmark@Sun.COM 		ip_fanout_v4(mp, ipha, ira);
185711042SErik.Nordmark@Sun.COM 		return;
185811042SErik.Nordmark@Sun.COM 	}
185911042SErik.Nordmark@Sun.COM 	irb_refhold(irb);
186011042SErik.Nordmark@Sun.COM 	for (ire1 = irb->irb_ire; ire1 != NULL; ire1 = ire1->ire_next) {
186111042SErik.Nordmark@Sun.COM 		/* We do the main IRE after the end of the loop */
186211042SErik.Nordmark@Sun.COM 		if (ire1 == ire)
186311042SErik.Nordmark@Sun.COM 			continue;
186411042SErik.Nordmark@Sun.COM 
186511042SErik.Nordmark@Sun.COM 		/*
186611042SErik.Nordmark@Sun.COM 		 * Only IREs for the same IP address should be in the same
186711042SErik.Nordmark@Sun.COM 		 * bucket.
186811042SErik.Nordmark@Sun.COM 		 * But could have IRE_HOSTs in the case of CGTP.
186911042SErik.Nordmark@Sun.COM 		 */
187011042SErik.Nordmark@Sun.COM 		ASSERT(ire1->ire_addr == ire->ire_addr);
187111042SErik.Nordmark@Sun.COM 		if (!(ire1->ire_type & IRE_BROADCAST))
187211042SErik.Nordmark@Sun.COM 			continue;
187311042SErik.Nordmark@Sun.COM 
187411042SErik.Nordmark@Sun.COM 		if (IRE_IS_CONDEMNED(ire1))
187511042SErik.Nordmark@Sun.COM 			continue;
187611042SErik.Nordmark@Sun.COM 
187711042SErik.Nordmark@Sun.COM 		mp1 = copymsg(mp);
187811042SErik.Nordmark@Sun.COM 		if (mp1 == NULL) {
187911042SErik.Nordmark@Sun.COM 			/* Failed to deliver to one zone */
188011042SErik.Nordmark@Sun.COM 			BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards);
188111042SErik.Nordmark@Sun.COM 			ip_drop_input("ipIfStatsInDiscards", mp, ill);
188211042SErik.Nordmark@Sun.COM 			continue;
188311042SErik.Nordmark@Sun.COM 		}
188411042SErik.Nordmark@Sun.COM 		ira->ira_zoneid = ire1->ire_zoneid;
188511042SErik.Nordmark@Sun.COM 		ipha1 = (ipha_t *)mp1->b_rptr;
188611042SErik.Nordmark@Sun.COM 		ip_fanout_v4(mp1, ipha1, ira);
188711681SSowmini.Varadhan@Sun.COM 		/*
188811681SSowmini.Varadhan@Sun.COM 		 * IPsec might have modified ira_pktlen and ira_ip_hdr_length
188911681SSowmini.Varadhan@Sun.COM 		 * so we restore them for a potential next iteration
189011681SSowmini.Varadhan@Sun.COM 		 */
189111681SSowmini.Varadhan@Sun.COM 		ira->ira_pktlen = ira_pktlen;
189211681SSowmini.Varadhan@Sun.COM 		ira->ira_ip_hdr_length = ira_ip_hdr_length;
189311042SErik.Nordmark@Sun.COM 	}
189411042SErik.Nordmark@Sun.COM 	irb_refrele(irb);
189511042SErik.Nordmark@Sun.COM 	/* Do the main ire */
189611042SErik.Nordmark@Sun.COM 	ira->ira_zoneid = ire->ire_zoneid;
189711042SErik.Nordmark@Sun.COM 	ip_fanout_v4(mp, ipha, ira);
189811042SErik.Nordmark@Sun.COM }
189911042SErik.Nordmark@Sun.COM 
190011042SErik.Nordmark@Sun.COM /*
190111042SErik.Nordmark@Sun.COM  * Handle multiple zones which want to receive the same multicast packets
190211042SErik.Nordmark@Sun.COM  * on this ill by delivering a packet to each of them.
190311042SErik.Nordmark@Sun.COM  *
190411042SErik.Nordmark@Sun.COM  * Note that for packets delivered to transports we could instead do this
190511042SErik.Nordmark@Sun.COM  * as part of the fanout code, but since we need to handle icmp_inbound
190611042SErik.Nordmark@Sun.COM  * it is simpler to have multicast work the same as broadcast.
190711042SErik.Nordmark@Sun.COM  *
190811042SErik.Nordmark@Sun.COM  * The ip_fanout matching for multicast matches based on ilm independent of
190911042SErik.Nordmark@Sun.COM  * zoneid since the zoneid restriction is applied when joining a multicast
191011042SErik.Nordmark@Sun.COM  * group.
191111042SErik.Nordmark@Sun.COM  */
191211042SErik.Nordmark@Sun.COM /* ARGSUSED */
191311042SErik.Nordmark@Sun.COM static void
ip_input_multicast_v4(ire_t * ire,mblk_t * mp,ipha_t * ipha,ip_recv_attr_t * ira)191411042SErik.Nordmark@Sun.COM ip_input_multicast_v4(ire_t *ire, mblk_t *mp, ipha_t *ipha, ip_recv_attr_t *ira)
191511042SErik.Nordmark@Sun.COM {
191611042SErik.Nordmark@Sun.COM 	ill_t		*ill = ira->ira_ill;
191711042SErik.Nordmark@Sun.COM 	iaflags_t	iraflags = ira->ira_flags;
191811042SErik.Nordmark@Sun.COM 	ip_stack_t	*ipst = ill->ill_ipst;
191911042SErik.Nordmark@Sun.COM 	netstack_t	*ns = ipst->ips_netstack;
192011042SErik.Nordmark@Sun.COM 	zoneid_t	zoneid;
192111042SErik.Nordmark@Sun.COM 	mblk_t		*mp1;
192211042SErik.Nordmark@Sun.COM 	ipha_t		*ipha1;
192311681SSowmini.Varadhan@Sun.COM 	uint_t		ira_pktlen = ira->ira_pktlen;
192411681SSowmini.Varadhan@Sun.COM 	uint16_t	ira_ip_hdr_length = ira->ira_ip_hdr_length;
192511042SErik.Nordmark@Sun.COM 
192611042SErik.Nordmark@Sun.COM 	/* ire_recv_multicast has switched to the upper ill for IPMP */
192711042SErik.Nordmark@Sun.COM 	ASSERT(!IS_UNDER_IPMP(ill));
192811042SErik.Nordmark@Sun.COM 
192911042SErik.Nordmark@Sun.COM 	/*
193011042SErik.Nordmark@Sun.COM 	 * If we don't have more than one shared-IP zone, or if
193111042SErik.Nordmark@Sun.COM 	 * there are no members in anything but the global zone,
193211042SErik.Nordmark@Sun.COM 	 * then just set the zoneid and proceed.
193311042SErik.Nordmark@Sun.COM 	 */
193411042SErik.Nordmark@Sun.COM 	if (ns->netstack_numzones == 1 ||
193511042SErik.Nordmark@Sun.COM 	    !ill_hasmembers_otherzones_v4(ill, ipha->ipha_dst,
193611042SErik.Nordmark@Sun.COM 	    GLOBAL_ZONEID)) {
193711042SErik.Nordmark@Sun.COM 		ira->ira_zoneid = GLOBAL_ZONEID;
193811042SErik.Nordmark@Sun.COM 
193911042SErik.Nordmark@Sun.COM 		/* If sender didn't want this zone to receive it, drop */
194011042SErik.Nordmark@Sun.COM 		if ((iraflags & IRAF_NO_LOOP_ZONEID_SET) &&
194111042SErik.Nordmark@Sun.COM 		    ira->ira_no_loop_zoneid == ira->ira_zoneid) {
194211042SErik.Nordmark@Sun.COM 			ip_drop_input("Multicast but wrong zoneid", mp, ill);
194311042SErik.Nordmark@Sun.COM 			freemsg(mp);
194411042SErik.Nordmark@Sun.COM 			return;
194511042SErik.Nordmark@Sun.COM 		}
194611042SErik.Nordmark@Sun.COM 		ip_fanout_v4(mp, ipha, ira);
194711042SErik.Nordmark@Sun.COM 		return;
194811042SErik.Nordmark@Sun.COM 	}
194911042SErik.Nordmark@Sun.COM 
195011042SErik.Nordmark@Sun.COM 	/*
195111042SErik.Nordmark@Sun.COM 	 * Here we loop over all zoneids that have members in the group
195211042SErik.Nordmark@Sun.COM 	 * and deliver a packet to ip_fanout for each zoneid.
195311042SErik.Nordmark@Sun.COM 	 *
195411042SErik.Nordmark@Sun.COM 	 * First find any members in the lowest numeric zoneid by looking for
195511042SErik.Nordmark@Sun.COM 	 * first zoneid larger than -1 (ALL_ZONES).
195611042SErik.Nordmark@Sun.COM 	 * We terminate the loop when we receive -1 (ALL_ZONES).
195711042SErik.Nordmark@Sun.COM 	 */
195811042SErik.Nordmark@Sun.COM 	zoneid = ill_hasmembers_nextzone_v4(ill, ipha->ipha_dst, ALL_ZONES);
195911042SErik.Nordmark@Sun.COM 	for (; zoneid != ALL_ZONES;
196011042SErik.Nordmark@Sun.COM 	    zoneid = ill_hasmembers_nextzone_v4(ill, ipha->ipha_dst, zoneid)) {
196111042SErik.Nordmark@Sun.COM 		/*
196211042SErik.Nordmark@Sun.COM 		 * Avoid an extra copymsg/freemsg by skipping global zone here
196311042SErik.Nordmark@Sun.COM 		 * and doing that at the end.
196411042SErik.Nordmark@Sun.COM 		 */
196511042SErik.Nordmark@Sun.COM 		if (zoneid == GLOBAL_ZONEID)
196611042SErik.Nordmark@Sun.COM 			continue;
196711042SErik.Nordmark@Sun.COM 
196811042SErik.Nordmark@Sun.COM 		ira->ira_zoneid = zoneid;
196911042SErik.Nordmark@Sun.COM 
197011042SErik.Nordmark@Sun.COM 		/* If sender didn't want this zone to receive it, skip */
197111042SErik.Nordmark@Sun.COM 		if ((iraflags & IRAF_NO_LOOP_ZONEID_SET) &&
197211042SErik.Nordmark@Sun.COM 		    ira->ira_no_loop_zoneid == ira->ira_zoneid)
197311042SErik.Nordmark@Sun.COM 			continue;
197411042SErik.Nordmark@Sun.COM 
197511042SErik.Nordmark@Sun.COM 		mp1 = copymsg(mp);
197611042SErik.Nordmark@Sun.COM 		if (mp1 == NULL) {
197711042SErik.Nordmark@Sun.COM 			/* Failed to deliver to one zone */
197811042SErik.Nordmark@Sun.COM 			BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards);
197911042SErik.Nordmark@Sun.COM 			ip_drop_input("ipIfStatsInDiscards", mp, ill);
198011042SErik.Nordmark@Sun.COM 			continue;
198111042SErik.Nordmark@Sun.COM 		}
198211042SErik.Nordmark@Sun.COM 		ipha1 = (ipha_t *)mp1->b_rptr;
198311042SErik.Nordmark@Sun.COM 		ip_fanout_v4(mp1, ipha1, ira);
198411681SSowmini.Varadhan@Sun.COM 		/*
198511681SSowmini.Varadhan@Sun.COM 		 * IPsec might have modified ira_pktlen and ira_ip_hdr_length
198611681SSowmini.Varadhan@Sun.COM 		 * so we restore them for a potential next iteration
198711681SSowmini.Varadhan@Sun.COM 		 */
198811681SSowmini.Varadhan@Sun.COM 		ira->ira_pktlen = ira_pktlen;
198911681SSowmini.Varadhan@Sun.COM 		ira->ira_ip_hdr_length = ira_ip_hdr_length;
199011042SErik.Nordmark@Sun.COM 	}
199111042SErik.Nordmark@Sun.COM 
199211042SErik.Nordmark@Sun.COM 	/* Do the main ire */
199311042SErik.Nordmark@Sun.COM 	ira->ira_zoneid = GLOBAL_ZONEID;
199411042SErik.Nordmark@Sun.COM 	/* If sender didn't want this zone to receive it, drop */
199511042SErik.Nordmark@Sun.COM 	if ((iraflags & IRAF_NO_LOOP_ZONEID_SET) &&
199611042SErik.Nordmark@Sun.COM 	    ira->ira_no_loop_zoneid == ira->ira_zoneid) {
199711042SErik.Nordmark@Sun.COM 		ip_drop_input("Multicast but wrong zoneid", mp, ill);
199811042SErik.Nordmark@Sun.COM 		freemsg(mp);
199911042SErik.Nordmark@Sun.COM 	} else {
200011042SErik.Nordmark@Sun.COM 		ip_fanout_v4(mp, ipha, ira);
200111042SErik.Nordmark@Sun.COM 	}
200211042SErik.Nordmark@Sun.COM }
200311042SErik.Nordmark@Sun.COM 
200411042SErik.Nordmark@Sun.COM 
200511042SErik.Nordmark@Sun.COM /*
200611042SErik.Nordmark@Sun.COM  * Determine the zoneid and IRAF_TX_* flags if trusted extensions
200711042SErik.Nordmark@Sun.COM  * is in use. Updates ira_zoneid and ira_flags as a result.
200811042SErik.Nordmark@Sun.COM  */
200911042SErik.Nordmark@Sun.COM static void
ip_fanout_tx_v4(mblk_t * mp,ipha_t * ipha,uint8_t protocol,uint_t ip_hdr_length,ip_recv_attr_t * ira)201011042SErik.Nordmark@Sun.COM ip_fanout_tx_v4(mblk_t *mp, ipha_t *ipha, uint8_t protocol,
201111042SErik.Nordmark@Sun.COM     uint_t ip_hdr_length, ip_recv_attr_t *ira)
201211042SErik.Nordmark@Sun.COM {
201311042SErik.Nordmark@Sun.COM 	uint16_t	*up;
201411042SErik.Nordmark@Sun.COM 	uint16_t	lport;
201511042SErik.Nordmark@Sun.COM 	zoneid_t	zoneid;
201611042SErik.Nordmark@Sun.COM 
201711042SErik.Nordmark@Sun.COM 	ASSERT(ira->ira_flags & IRAF_SYSTEM_LABELED);
201811042SErik.Nordmark@Sun.COM 
201911042SErik.Nordmark@Sun.COM 	/*
202011042SErik.Nordmark@Sun.COM 	 * If the packet is unlabeled we might allow read-down
202111042SErik.Nordmark@Sun.COM 	 * for MAC_EXEMPT. Below we clear this if it is a multi-level
202211042SErik.Nordmark@Sun.COM 	 * port (MLP).
202311042SErik.Nordmark@Sun.COM 	 * Note that ira_tsl can be NULL here.
202411042SErik.Nordmark@Sun.COM 	 */
202511042SErik.Nordmark@Sun.COM 	if (ira->ira_tsl != NULL && ira->ira_tsl->tsl_flags & TSLF_UNLABELED)
202611042SErik.Nordmark@Sun.COM 		ira->ira_flags |= IRAF_TX_MAC_EXEMPTABLE;
202711042SErik.Nordmark@Sun.COM 
202811042SErik.Nordmark@Sun.COM 	if (ira->ira_zoneid != ALL_ZONES)
202911042SErik.Nordmark@Sun.COM 		return;
203011042SErik.Nordmark@Sun.COM 
203111042SErik.Nordmark@Sun.COM 	ira->ira_flags |= IRAF_TX_SHARED_ADDR;
203211042SErik.Nordmark@Sun.COM 
203311042SErik.Nordmark@Sun.COM 	up = (uint16_t *)((uchar_t *)ipha + ip_hdr_length);
203411042SErik.Nordmark@Sun.COM 	switch (protocol) {
203511042SErik.Nordmark@Sun.COM 	case IPPROTO_TCP:
203611042SErik.Nordmark@Sun.COM 	case IPPROTO_SCTP:
203711042SErik.Nordmark@Sun.COM 	case IPPROTO_UDP:
203811042SErik.Nordmark@Sun.COM 		/* Caller ensures this */
203911042SErik.Nordmark@Sun.COM 		ASSERT(((uchar_t *)ipha) + ip_hdr_length +4 <= mp->b_wptr);
204011042SErik.Nordmark@Sun.COM 
204111042SErik.Nordmark@Sun.COM 		/*
204211042SErik.Nordmark@Sun.COM 		 * Only these transports support MLP.
204311042SErik.Nordmark@Sun.COM 		 * We know their destination port numbers is in
204411042SErik.Nordmark@Sun.COM 		 * the same place in the header.
204511042SErik.Nordmark@Sun.COM 		 */
204611042SErik.Nordmark@Sun.COM 		lport = up[1];
204711042SErik.Nordmark@Sun.COM 
204811042SErik.Nordmark@Sun.COM 		/*
204911042SErik.Nordmark@Sun.COM 		 * No need to handle exclusive-stack zones
205011042SErik.Nordmark@Sun.COM 		 * since ALL_ZONES only applies to the shared IP instance.
205111042SErik.Nordmark@Sun.COM 		 */
205211042SErik.Nordmark@Sun.COM 		zoneid = tsol_mlp_findzone(protocol, lport);
205311042SErik.Nordmark@Sun.COM 		/*
205411042SErik.Nordmark@Sun.COM 		 * If no shared MLP is found, tsol_mlp_findzone returns
205511042SErik.Nordmark@Sun.COM 		 * ALL_ZONES.  In that case, we assume it's SLP, and
205611042SErik.Nordmark@Sun.COM 		 * search for the zone based on the packet label.
205711042SErik.Nordmark@Sun.COM 		 *
205811042SErik.Nordmark@Sun.COM 		 * If there is such a zone, we prefer to find a
205911042SErik.Nordmark@Sun.COM 		 * connection in it.  Otherwise, we look for a
206011042SErik.Nordmark@Sun.COM 		 * MAC-exempt connection in any zone whose label
206111042SErik.Nordmark@Sun.COM 		 * dominates the default label on the packet.
206211042SErik.Nordmark@Sun.COM 		 */
206311042SErik.Nordmark@Sun.COM 		if (zoneid == ALL_ZONES)
206411042SErik.Nordmark@Sun.COM 			zoneid = tsol_attr_to_zoneid(ira);
206511042SErik.Nordmark@Sun.COM 		else
206611042SErik.Nordmark@Sun.COM 			ira->ira_flags &= ~IRAF_TX_MAC_EXEMPTABLE;
206711042SErik.Nordmark@Sun.COM 		break;
206811042SErik.Nordmark@Sun.COM 	default:
206911042SErik.Nordmark@Sun.COM 		/* Handle shared address for other protocols */
207011042SErik.Nordmark@Sun.COM 		zoneid = tsol_attr_to_zoneid(ira);
207111042SErik.Nordmark@Sun.COM 		break;
207211042SErik.Nordmark@Sun.COM 	}
207311042SErik.Nordmark@Sun.COM 	ira->ira_zoneid = zoneid;
207411042SErik.Nordmark@Sun.COM }
207511042SErik.Nordmark@Sun.COM 
207611042SErik.Nordmark@Sun.COM /*
207711042SErik.Nordmark@Sun.COM  * Increment checksum failure statistics
207811042SErik.Nordmark@Sun.COM  */
207911042SErik.Nordmark@Sun.COM static void
ip_input_cksum_err_v4(uint8_t protocol,uint16_t hck_flags,ill_t * ill)208011042SErik.Nordmark@Sun.COM ip_input_cksum_err_v4(uint8_t protocol, uint16_t hck_flags, ill_t *ill)
208111042SErik.Nordmark@Sun.COM {
208211042SErik.Nordmark@Sun.COM 	ip_stack_t	*ipst = ill->ill_ipst;
208311042SErik.Nordmark@Sun.COM 
208411042SErik.Nordmark@Sun.COM 	switch (protocol) {
208511042SErik.Nordmark@Sun.COM 	case IPPROTO_TCP:
208611042SErik.Nordmark@Sun.COM 		BUMP_MIB(ill->ill_ip_mib, tcpIfStatsInErrs);
208711042SErik.Nordmark@Sun.COM 
208811042SErik.Nordmark@Sun.COM 		if (hck_flags & HCK_FULLCKSUM)
208911042SErik.Nordmark@Sun.COM 			IP_STAT(ipst, ip_tcp_in_full_hw_cksum_err);
209011042SErik.Nordmark@Sun.COM 		else if (hck_flags & HCK_PARTIALCKSUM)
209111042SErik.Nordmark@Sun.COM 			IP_STAT(ipst, ip_tcp_in_part_hw_cksum_err);
209211042SErik.Nordmark@Sun.COM 		else
209311042SErik.Nordmark@Sun.COM 			IP_STAT(ipst, ip_tcp_in_sw_cksum_err);
209411042SErik.Nordmark@Sun.COM 		break;
209511042SErik.Nordmark@Sun.COM 	case IPPROTO_UDP:
209611042SErik.Nordmark@Sun.COM 		BUMP_MIB(ill->ill_ip_mib, udpIfStatsInCksumErrs);
209711042SErik.Nordmark@Sun.COM 		if (hck_flags & HCK_FULLCKSUM)
209811042SErik.Nordmark@Sun.COM 			IP_STAT(ipst, ip_udp_in_full_hw_cksum_err);
209911042SErik.Nordmark@Sun.COM 		else if (hck_flags & HCK_PARTIALCKSUM)
210011042SErik.Nordmark@Sun.COM 			IP_STAT(ipst, ip_udp_in_part_hw_cksum_err);
210111042SErik.Nordmark@Sun.COM 		else
210211042SErik.Nordmark@Sun.COM 			IP_STAT(ipst, ip_udp_in_sw_cksum_err);
210311042SErik.Nordmark@Sun.COM 		break;
210411042SErik.Nordmark@Sun.COM 	case IPPROTO_ICMP:
210511042SErik.Nordmark@Sun.COM 		BUMP_MIB(&ipst->ips_icmp_mib, icmpInCksumErrs);
210611042SErik.Nordmark@Sun.COM 		break;
210711042SErik.Nordmark@Sun.COM 	default:
210811042SErik.Nordmark@Sun.COM 		ASSERT(0);
210911042SErik.Nordmark@Sun.COM 		break;
211011042SErik.Nordmark@Sun.COM 	}
211111042SErik.Nordmark@Sun.COM }
211211042SErik.Nordmark@Sun.COM 
211311042SErik.Nordmark@Sun.COM /* Calculate the IPv4 pseudo-header checksum */
211411042SErik.Nordmark@Sun.COM uint32_t
ip_input_cksum_pseudo_v4(ipha_t * ipha,ip_recv_attr_t * ira)211511042SErik.Nordmark@Sun.COM ip_input_cksum_pseudo_v4(ipha_t *ipha, ip_recv_attr_t *ira)
211611042SErik.Nordmark@Sun.COM {
211711042SErik.Nordmark@Sun.COM 	uint_t		ulp_len;
211811042SErik.Nordmark@Sun.COM 	uint32_t	cksum;
211911042SErik.Nordmark@Sun.COM 	uint8_t		protocol = ira->ira_protocol;
212011042SErik.Nordmark@Sun.COM 	uint16_t	ip_hdr_length = ira->ira_ip_hdr_length;
212111042SErik.Nordmark@Sun.COM 
212211042SErik.Nordmark@Sun.COM #define	iphs    ((uint16_t *)ipha)
212311042SErik.Nordmark@Sun.COM 
212411042SErik.Nordmark@Sun.COM 	switch (protocol) {
212511042SErik.Nordmark@Sun.COM 	case IPPROTO_TCP:
212611042SErik.Nordmark@Sun.COM 		ulp_len = ira->ira_pktlen - ip_hdr_length;
212711042SErik.Nordmark@Sun.COM 
212811042SErik.Nordmark@Sun.COM 		/* Protocol and length */
212911042SErik.Nordmark@Sun.COM 		cksum = htons(ulp_len) + IP_TCP_CSUM_COMP;
213011042SErik.Nordmark@Sun.COM 		/* IP addresses */
213111042SErik.Nordmark@Sun.COM 		cksum += iphs[6] + iphs[7] + iphs[8] + iphs[9];
213211042SErik.Nordmark@Sun.COM 		break;
213311042SErik.Nordmark@Sun.COM 
213411042SErik.Nordmark@Sun.COM 	case IPPROTO_UDP: {
213511042SErik.Nordmark@Sun.COM 		udpha_t		*udpha;
213611042SErik.Nordmark@Sun.COM 
213711042SErik.Nordmark@Sun.COM 		udpha = (udpha_t  *)((uchar_t *)ipha + ip_hdr_length);
213811042SErik.Nordmark@Sun.COM 
213911042SErik.Nordmark@Sun.COM 		/* Protocol and length */
214011042SErik.Nordmark@Sun.COM 		cksum = udpha->uha_length + IP_UDP_CSUM_COMP;
214111042SErik.Nordmark@Sun.COM 		/* IP addresses */
214211042SErik.Nordmark@Sun.COM 		cksum += iphs[6] + iphs[7] + iphs[8] + iphs[9];
214311042SErik.Nordmark@Sun.COM 		break;
214411042SErik.Nordmark@Sun.COM 	}
214511042SErik.Nordmark@Sun.COM 
214611042SErik.Nordmark@Sun.COM 	default:
214711042SErik.Nordmark@Sun.COM 		cksum = 0;
214811042SErik.Nordmark@Sun.COM 		break;
214911042SErik.Nordmark@Sun.COM 	}
215011042SErik.Nordmark@Sun.COM #undef	iphs
215111042SErik.Nordmark@Sun.COM 	return (cksum);
215211042SErik.Nordmark@Sun.COM }
215311042SErik.Nordmark@Sun.COM 
215411042SErik.Nordmark@Sun.COM 
215511042SErik.Nordmark@Sun.COM /*
215611042SErik.Nordmark@Sun.COM  * Software verification of the ULP checksums.
215711042SErik.Nordmark@Sun.COM  * Returns B_TRUE if ok.
215811042SErik.Nordmark@Sun.COM  * Increments statistics of failed.
215911042SErik.Nordmark@Sun.COM  */
216011042SErik.Nordmark@Sun.COM static boolean_t
ip_input_sw_cksum_v4(mblk_t * mp,ipha_t * ipha,ip_recv_attr_t * ira)216111042SErik.Nordmark@Sun.COM ip_input_sw_cksum_v4(mblk_t *mp, ipha_t *ipha, ip_recv_attr_t *ira)
216211042SErik.Nordmark@Sun.COM {
216311042SErik.Nordmark@Sun.COM 	ip_stack_t	*ipst = ira->ira_ill->ill_ipst;
216411042SErik.Nordmark@Sun.COM 	uint32_t	cksum;
216511042SErik.Nordmark@Sun.COM 	uint8_t		protocol = ira->ira_protocol;
216611042SErik.Nordmark@Sun.COM 	uint16_t	ip_hdr_length = ira->ira_ip_hdr_length;
216711042SErik.Nordmark@Sun.COM 
216811042SErik.Nordmark@Sun.COM 	IP_STAT(ipst, ip_in_sw_cksum);
216911042SErik.Nordmark@Sun.COM 
217011042SErik.Nordmark@Sun.COM 	ASSERT(protocol == IPPROTO_TCP || protocol == IPPROTO_UDP);
217111042SErik.Nordmark@Sun.COM 
217211042SErik.Nordmark@Sun.COM 	cksum = ip_input_cksum_pseudo_v4(ipha, ira);
217311042SErik.Nordmark@Sun.COM 	cksum = IP_CSUM(mp, ip_hdr_length, cksum);
217411042SErik.Nordmark@Sun.COM 	if (cksum == 0)
217511042SErik.Nordmark@Sun.COM 		return (B_TRUE);
217611042SErik.Nordmark@Sun.COM 
217711042SErik.Nordmark@Sun.COM 	ip_input_cksum_err_v4(protocol, 0, ira->ira_ill);
217811042SErik.Nordmark@Sun.COM 	return (B_FALSE);
217911042SErik.Nordmark@Sun.COM }
218011042SErik.Nordmark@Sun.COM 
218111042SErik.Nordmark@Sun.COM /*
218211042SErik.Nordmark@Sun.COM  * Verify the ULP checksums.
218311042SErik.Nordmark@Sun.COM  * Returns B_TRUE if ok, or if the ULP doesn't have a well-defined checksum
218411042SErik.Nordmark@Sun.COM  * algorithm.
218511042SErik.Nordmark@Sun.COM  * Increments statistics if failed.
218611042SErik.Nordmark@Sun.COM  */
218711042SErik.Nordmark@Sun.COM static boolean_t
ip_input_cksum_v4(iaflags_t iraflags,mblk_t * mp,ipha_t * ipha,ip_recv_attr_t * ira)218811042SErik.Nordmark@Sun.COM ip_input_cksum_v4(iaflags_t iraflags, mblk_t *mp, ipha_t *ipha,
218911042SErik.Nordmark@Sun.COM     ip_recv_attr_t *ira)
219011042SErik.Nordmark@Sun.COM {
219111042SErik.Nordmark@Sun.COM 	ill_t		*ill = ira->ira_rill;
219211042SErik.Nordmark@Sun.COM 	uint16_t	hck_flags;
219311042SErik.Nordmark@Sun.COM 	uint32_t	cksum;
219411042SErik.Nordmark@Sun.COM 	mblk_t		*mp1;
219511042SErik.Nordmark@Sun.COM 	int32_t		len;
219611042SErik.Nordmark@Sun.COM 	uint8_t		protocol = ira->ira_protocol;
219711042SErik.Nordmark@Sun.COM 	uint16_t	ip_hdr_length = ira->ira_ip_hdr_length;
219811042SErik.Nordmark@Sun.COM 
219911042SErik.Nordmark@Sun.COM 
220011042SErik.Nordmark@Sun.COM 	switch (protocol) {
220111042SErik.Nordmark@Sun.COM 	case IPPROTO_TCP:
220211042SErik.Nordmark@Sun.COM 		break;
220311042SErik.Nordmark@Sun.COM 
220411042SErik.Nordmark@Sun.COM 	case IPPROTO_UDP: {
220511042SErik.Nordmark@Sun.COM 		udpha_t		*udpha;
220611042SErik.Nordmark@Sun.COM 
220711042SErik.Nordmark@Sun.COM 		udpha = (udpha_t  *)((uchar_t *)ipha + ip_hdr_length);
220811042SErik.Nordmark@Sun.COM 		if (udpha->uha_checksum == 0) {
220911042SErik.Nordmark@Sun.COM 			/* Packet doesn't have a UDP checksum */
221011042SErik.Nordmark@Sun.COM 			return (B_TRUE);
221111042SErik.Nordmark@Sun.COM 		}
221211042SErik.Nordmark@Sun.COM 		break;
221311042SErik.Nordmark@Sun.COM 	}
221411042SErik.Nordmark@Sun.COM 	case IPPROTO_SCTP: {
221511042SErik.Nordmark@Sun.COM 		sctp_hdr_t	*sctph;
221611042SErik.Nordmark@Sun.COM 		uint32_t	pktsum;
221711042SErik.Nordmark@Sun.COM 
221811042SErik.Nordmark@Sun.COM 		sctph = (sctp_hdr_t *)((uchar_t *)ipha + ip_hdr_length);
221911042SErik.Nordmark@Sun.COM #ifdef	DEBUG
222011042SErik.Nordmark@Sun.COM 		if (skip_sctp_cksum)
222111042SErik.Nordmark@Sun.COM 			return (B_TRUE);
222211042SErik.Nordmark@Sun.COM #endif
222311042SErik.Nordmark@Sun.COM 		pktsum = sctph->sh_chksum;
222411042SErik.Nordmark@Sun.COM 		sctph->sh_chksum = 0;
222511042SErik.Nordmark@Sun.COM 		cksum = sctp_cksum(mp, ip_hdr_length);
222611042SErik.Nordmark@Sun.COM 		sctph->sh_chksum = pktsum;
222711042SErik.Nordmark@Sun.COM 		if (cksum == pktsum)
222811042SErik.Nordmark@Sun.COM 			return (B_TRUE);
222911042SErik.Nordmark@Sun.COM 
223011042SErik.Nordmark@Sun.COM 		/*
223111042SErik.Nordmark@Sun.COM 		 * Defer until later whether a bad checksum is ok
223211042SErik.Nordmark@Sun.COM 		 * in order to allow RAW sockets to use Adler checksum
223311042SErik.Nordmark@Sun.COM 		 * with SCTP.
223411042SErik.Nordmark@Sun.COM 		 */
223511042SErik.Nordmark@Sun.COM 		ira->ira_flags |= IRAF_SCTP_CSUM_ERR;
223611042SErik.Nordmark@Sun.COM 		return (B_TRUE);
223711042SErik.Nordmark@Sun.COM 	}
223811042SErik.Nordmark@Sun.COM 
223911042SErik.Nordmark@Sun.COM 	default:
224011042SErik.Nordmark@Sun.COM 		/* No ULP checksum to verify. */
224111042SErik.Nordmark@Sun.COM 		return (B_TRUE);
224211042SErik.Nordmark@Sun.COM 	}
224311042SErik.Nordmark@Sun.COM 	/*
224411042SErik.Nordmark@Sun.COM 	 * Revert to software checksum calculation if the interface
224511042SErik.Nordmark@Sun.COM 	 * isn't capable of checksum offload.
224611042SErik.Nordmark@Sun.COM 	 * We clear DB_CKSUMFLAGS when going through IPsec in ip_fanout.
224711042SErik.Nordmark@Sun.COM 	 * Note: IRAF_NO_HW_CKSUM is not currently used.
224811042SErik.Nordmark@Sun.COM 	 */
224911042SErik.Nordmark@Sun.COM 	ASSERT(!IS_IPMP(ill));
225011042SErik.Nordmark@Sun.COM 	if ((iraflags & IRAF_NO_HW_CKSUM) || !ILL_HCKSUM_CAPABLE(ill) ||
225111042SErik.Nordmark@Sun.COM 	    !dohwcksum) {
225211042SErik.Nordmark@Sun.COM 		return (ip_input_sw_cksum_v4(mp, ipha, ira));
225311042SErik.Nordmark@Sun.COM 	}
225411042SErik.Nordmark@Sun.COM 
225511042SErik.Nordmark@Sun.COM 	/*
225611042SErik.Nordmark@Sun.COM 	 * We apply this for all ULP protocols. Does the HW know to
225711042SErik.Nordmark@Sun.COM 	 * not set the flags for SCTP and other protocols.
225811042SErik.Nordmark@Sun.COM 	 */
225911042SErik.Nordmark@Sun.COM 
226011042SErik.Nordmark@Sun.COM 	hck_flags = DB_CKSUMFLAGS(mp);
226111042SErik.Nordmark@Sun.COM 
226211878SVenu.Iyer@Sun.COM 	if (hck_flags & HCK_FULLCKSUM_OK) {
226311878SVenu.Iyer@Sun.COM 		/*
226411878SVenu.Iyer@Sun.COM 		 * Hardware has already verified the checksum.
226511878SVenu.Iyer@Sun.COM 		 */
226611878SVenu.Iyer@Sun.COM 		return (B_TRUE);
226711878SVenu.Iyer@Sun.COM 	}
226811878SVenu.Iyer@Sun.COM 
226911042SErik.Nordmark@Sun.COM 	if (hck_flags & HCK_FULLCKSUM) {
227011042SErik.Nordmark@Sun.COM 		/*
227111042SErik.Nordmark@Sun.COM 		 * Full checksum has been computed by the hardware
227211042SErik.Nordmark@Sun.COM 		 * and has been attached.  If the driver wants us to
227311042SErik.Nordmark@Sun.COM 		 * verify the correctness of the attached value, in
227411042SErik.Nordmark@Sun.COM 		 * order to protect against faulty hardware, compare
227511042SErik.Nordmark@Sun.COM 		 * it against -0 (0xFFFF) to see if it's valid.
227611042SErik.Nordmark@Sun.COM 		 */
227711042SErik.Nordmark@Sun.COM 		cksum = DB_CKSUM16(mp);
227811042SErik.Nordmark@Sun.COM 		if (cksum == 0xFFFF)
227911042SErik.Nordmark@Sun.COM 			return (B_TRUE);
228011042SErik.Nordmark@Sun.COM 		ip_input_cksum_err_v4(protocol, hck_flags, ira->ira_ill);
228111042SErik.Nordmark@Sun.COM 		return (B_FALSE);
228211042SErik.Nordmark@Sun.COM 	}
228311042SErik.Nordmark@Sun.COM 
228411042SErik.Nordmark@Sun.COM 	mp1 = mp->b_cont;
228511042SErik.Nordmark@Sun.COM 	if ((hck_flags & HCK_PARTIALCKSUM) &&
228611042SErik.Nordmark@Sun.COM 	    (mp1 == NULL || mp1->b_cont == NULL) &&
228711042SErik.Nordmark@Sun.COM 	    ip_hdr_length >= DB_CKSUMSTART(mp) &&
228811042SErik.Nordmark@Sun.COM 	    ((len = ip_hdr_length - DB_CKSUMSTART(mp)) & 1) == 0) {
228911042SErik.Nordmark@Sun.COM 		uint32_t	adj;
229011042SErik.Nordmark@Sun.COM 		uchar_t		*cksum_start;
229111042SErik.Nordmark@Sun.COM 
229211042SErik.Nordmark@Sun.COM 		cksum = ip_input_cksum_pseudo_v4(ipha, ira);
229311042SErik.Nordmark@Sun.COM 
229411042SErik.Nordmark@Sun.COM 		cksum_start = ((uchar_t *)ipha + DB_CKSUMSTART(mp));
229511042SErik.Nordmark@Sun.COM 
229611042SErik.Nordmark@Sun.COM 		/*
229711042SErik.Nordmark@Sun.COM 		 * Partial checksum has been calculated by hardware
229811042SErik.Nordmark@Sun.COM 		 * and attached to the packet; in addition, any
229911042SErik.Nordmark@Sun.COM 		 * prepended extraneous data is even byte aligned,
230011042SErik.Nordmark@Sun.COM 		 * and there are at most two mblks associated with
230111042SErik.Nordmark@Sun.COM 		 * the packet.  If any such data exists, we adjust
230211042SErik.Nordmark@Sun.COM 		 * the checksum; also take care any postpended data.
230311042SErik.Nordmark@Sun.COM 		 */
230411042SErik.Nordmark@Sun.COM 		IP_ADJCKSUM_PARTIAL(cksum_start, mp, mp1, len, adj);
230511042SErik.Nordmark@Sun.COM 		/*
230611042SErik.Nordmark@Sun.COM 		 * One's complement subtract extraneous checksum
230711042SErik.Nordmark@Sun.COM 		 */
230811042SErik.Nordmark@Sun.COM 		cksum += DB_CKSUM16(mp);
230911042SErik.Nordmark@Sun.COM 		if (adj >= cksum)
231011042SErik.Nordmark@Sun.COM 			cksum = ~(adj - cksum) & 0xFFFF;
231111042SErik.Nordmark@Sun.COM 		else
231211042SErik.Nordmark@Sun.COM 			cksum -= adj;
231311042SErik.Nordmark@Sun.COM 		cksum = (cksum & 0xFFFF) + ((int)cksum >> 16);
231411042SErik.Nordmark@Sun.COM 		cksum = (cksum & 0xFFFF) + ((int)cksum >> 16);
231511042SErik.Nordmark@Sun.COM 		if (!(~cksum & 0xFFFF))
231611042SErik.Nordmark@Sun.COM 			return (B_TRUE);
231711042SErik.Nordmark@Sun.COM 
231811042SErik.Nordmark@Sun.COM 		ip_input_cksum_err_v4(protocol, hck_flags, ira->ira_ill);
231911042SErik.Nordmark@Sun.COM 		return (B_FALSE);
232011042SErik.Nordmark@Sun.COM 	}
232111042SErik.Nordmark@Sun.COM 	return (ip_input_sw_cksum_v4(mp, ipha, ira));
232211042SErik.Nordmark@Sun.COM }
232311042SErik.Nordmark@Sun.COM 
232411042SErik.Nordmark@Sun.COM 
232511042SErik.Nordmark@Sun.COM /*
232611042SErik.Nordmark@Sun.COM  * Handle fanout of received packets.
232711042SErik.Nordmark@Sun.COM  * Unicast packets that are looped back (from ire_send_local_v4) and packets
232811042SErik.Nordmark@Sun.COM  * from the wire are differentiated by checking IRAF_VERIFY_ULP_CKSUM.
232911042SErik.Nordmark@Sun.COM  *
233011042SErik.Nordmark@Sun.COM  * IPQoS Notes
233111042SErik.Nordmark@Sun.COM  * Before sending it to the client, invoke IPPF processing. Policy processing
233211042SErik.Nordmark@Sun.COM  * takes place only if the callout_position, IPP_LOCAL_IN, is enabled.
233311042SErik.Nordmark@Sun.COM  */
233411042SErik.Nordmark@Sun.COM void
ip_fanout_v4(mblk_t * mp,ipha_t * ipha,ip_recv_attr_t * ira)233511042SErik.Nordmark@Sun.COM ip_fanout_v4(mblk_t *mp, ipha_t *ipha, ip_recv_attr_t *ira)
233611042SErik.Nordmark@Sun.COM {
233711042SErik.Nordmark@Sun.COM 	ill_t		*ill = ira->ira_ill;
233811042SErik.Nordmark@Sun.COM 	iaflags_t	iraflags = ira->ira_flags;
233911042SErik.Nordmark@Sun.COM 	ip_stack_t	*ipst = ill->ill_ipst;
234011042SErik.Nordmark@Sun.COM 	uint8_t		protocol = ipha->ipha_protocol;
234111042SErik.Nordmark@Sun.COM 	conn_t		*connp;
234211042SErik.Nordmark@Sun.COM #define	rptr	((uchar_t *)ipha)
234311042SErik.Nordmark@Sun.COM 	uint_t		ip_hdr_length;
234411042SErik.Nordmark@Sun.COM 	uint_t		min_ulp_header_length;
234511042SErik.Nordmark@Sun.COM 	int		offset;
234611042SErik.Nordmark@Sun.COM 	ssize_t		len;
234711042SErik.Nordmark@Sun.COM 	netstack_t	*ns = ipst->ips_netstack;
234811042SErik.Nordmark@Sun.COM 	ipsec_stack_t	*ipss = ns->netstack_ipsec;
234911042SErik.Nordmark@Sun.COM 	ill_t		*rill = ira->ira_rill;
235011042SErik.Nordmark@Sun.COM 
235111042SErik.Nordmark@Sun.COM 	ASSERT(ira->ira_pktlen == ntohs(ipha->ipha_length));
235211042SErik.Nordmark@Sun.COM 
235311042SErik.Nordmark@Sun.COM 	ip_hdr_length = ira->ira_ip_hdr_length;
235411042SErik.Nordmark@Sun.COM 	ira->ira_protocol = protocol;
235511042SErik.Nordmark@Sun.COM 
235611042SErik.Nordmark@Sun.COM 	/*
235711042SErik.Nordmark@Sun.COM 	 * Time for IPP once we've done reassembly and IPsec.
235811042SErik.Nordmark@Sun.COM 	 * We skip this for loopback packets since we don't do IPQoS
235911042SErik.Nordmark@Sun.COM 	 * on loopback.
236011042SErik.Nordmark@Sun.COM 	 */
236111042SErik.Nordmark@Sun.COM 	if (IPP_ENABLED(IPP_LOCAL_IN, ipst) &&
236211042SErik.Nordmark@Sun.COM 	    !(iraflags & IRAF_LOOPBACK) &&
236311042SErik.Nordmark@Sun.COM 	    (protocol != IPPROTO_ESP || protocol != IPPROTO_AH)) {
236411042SErik.Nordmark@Sun.COM 		/*
236511042SErik.Nordmark@Sun.COM 		 * Use the interface on which the packet arrived - not where
236611042SErik.Nordmark@Sun.COM 		 * the IP address is hosted.
236711042SErik.Nordmark@Sun.COM 		 */
236811042SErik.Nordmark@Sun.COM 		/* ip_process translates an IS_UNDER_IPMP */
236911042SErik.Nordmark@Sun.COM 		mp = ip_process(IPP_LOCAL_IN, mp, rill, ill);
237011042SErik.Nordmark@Sun.COM 		if (mp == NULL) {
237111042SErik.Nordmark@Sun.COM 			/* ip_drop_packet and MIB done */
237211042SErik.Nordmark@Sun.COM 			return;
237311042SErik.Nordmark@Sun.COM 		}
237411042SErik.Nordmark@Sun.COM 	}
237511042SErik.Nordmark@Sun.COM 
237611042SErik.Nordmark@Sun.COM 	/* Determine the minimum required size of the upper-layer header */
237711042SErik.Nordmark@Sun.COM 	/* Need to do this for at least the set of ULPs that TX handles. */
237811042SErik.Nordmark@Sun.COM 	switch (protocol) {
237911042SErik.Nordmark@Sun.COM 	case IPPROTO_TCP:
238011042SErik.Nordmark@Sun.COM 		min_ulp_header_length = TCP_MIN_HEADER_LENGTH;
238111042SErik.Nordmark@Sun.COM 		break;
238211042SErik.Nordmark@Sun.COM 	case IPPROTO_SCTP:
238311042SErik.Nordmark@Sun.COM 		min_ulp_header_length = SCTP_COMMON_HDR_LENGTH;
238411042SErik.Nordmark@Sun.COM 		break;
238511042SErik.Nordmark@Sun.COM 	case IPPROTO_UDP:
238611042SErik.Nordmark@Sun.COM 		min_ulp_header_length = UDPH_SIZE;
238711042SErik.Nordmark@Sun.COM 		break;
238811042SErik.Nordmark@Sun.COM 	case IPPROTO_ICMP:
238911042SErik.Nordmark@Sun.COM 		min_ulp_header_length = ICMPH_SIZE;
239011042SErik.Nordmark@Sun.COM 		break;
239111042SErik.Nordmark@Sun.COM 	default:
239211042SErik.Nordmark@Sun.COM 		min_ulp_header_length = 0;
239311042SErik.Nordmark@Sun.COM 		break;
239411042SErik.Nordmark@Sun.COM 	}
239511042SErik.Nordmark@Sun.COM 	/* Make sure we have the min ULP header length */
239611042SErik.Nordmark@Sun.COM 	len = mp->b_wptr - rptr;
239711042SErik.Nordmark@Sun.COM 	if (len < ip_hdr_length + min_ulp_header_length) {
239811042SErik.Nordmark@Sun.COM 		if (ira->ira_pktlen < ip_hdr_length + min_ulp_header_length) {
239911042SErik.Nordmark@Sun.COM 			BUMP_MIB(ill->ill_ip_mib, ipIfStatsInTruncatedPkts);
240011042SErik.Nordmark@Sun.COM 			ip_drop_input("ipIfStatsInTruncatedPkts", mp, ill);
240111042SErik.Nordmark@Sun.COM 			freemsg(mp);
240211042SErik.Nordmark@Sun.COM 			return;
240311042SErik.Nordmark@Sun.COM 		}
240411042SErik.Nordmark@Sun.COM 		IP_STAT(ipst, ip_recv_pullup);
240511042SErik.Nordmark@Sun.COM 		ipha = ip_pullup(mp, ip_hdr_length + min_ulp_header_length,
240611042SErik.Nordmark@Sun.COM 		    ira);
240711042SErik.Nordmark@Sun.COM 		if (ipha == NULL)
240811042SErik.Nordmark@Sun.COM 			goto discard;
240911042SErik.Nordmark@Sun.COM 		len = mp->b_wptr - rptr;
241011042SErik.Nordmark@Sun.COM 	}
241111042SErik.Nordmark@Sun.COM 
241211042SErik.Nordmark@Sun.COM 	/*
241311042SErik.Nordmark@Sun.COM 	 * If trusted extensions then determine the zoneid and TX specific
241411042SErik.Nordmark@Sun.COM 	 * ira_flags.
241511042SErik.Nordmark@Sun.COM 	 */
241611042SErik.Nordmark@Sun.COM 	if (iraflags & IRAF_SYSTEM_LABELED) {
241711042SErik.Nordmark@Sun.COM 		/* This can update ira->ira_flags and ira->ira_zoneid */
241811042SErik.Nordmark@Sun.COM 		ip_fanout_tx_v4(mp, ipha, protocol, ip_hdr_length, ira);
241911042SErik.Nordmark@Sun.COM 		iraflags = ira->ira_flags;
242011042SErik.Nordmark@Sun.COM 	}
242111042SErik.Nordmark@Sun.COM 
242211042SErik.Nordmark@Sun.COM 
242311042SErik.Nordmark@Sun.COM 	/* Verify ULP checksum. Handles TCP, UDP, and SCTP */
242411042SErik.Nordmark@Sun.COM 	if (iraflags & IRAF_VERIFY_ULP_CKSUM) {
242511042SErik.Nordmark@Sun.COM 		if (!ip_input_cksum_v4(iraflags, mp, ipha, ira)) {
242611042SErik.Nordmark@Sun.COM 			/* Bad checksum. Stats are already incremented */
242711042SErik.Nordmark@Sun.COM 			ip_drop_input("Bad ULP checksum", mp, ill);
242811042SErik.Nordmark@Sun.COM 			freemsg(mp);
242911042SErik.Nordmark@Sun.COM 			return;
243011042SErik.Nordmark@Sun.COM 		}
243111042SErik.Nordmark@Sun.COM 		/* IRAF_SCTP_CSUM_ERR could have been set */
243211042SErik.Nordmark@Sun.COM 		iraflags = ira->ira_flags;
243311042SErik.Nordmark@Sun.COM 	}
243411042SErik.Nordmark@Sun.COM 	switch (protocol) {
243511042SErik.Nordmark@Sun.COM 	case IPPROTO_TCP:
243611042SErik.Nordmark@Sun.COM 		/* For TCP, discard broadcast and multicast packets. */
243711042SErik.Nordmark@Sun.COM 		if (iraflags & IRAF_MULTIBROADCAST)
243811042SErik.Nordmark@Sun.COM 			goto discard;
243911042SErik.Nordmark@Sun.COM 
244011042SErik.Nordmark@Sun.COM 		/* First mblk contains IP+TCP headers per above check */
244111042SErik.Nordmark@Sun.COM 		ASSERT(len >= ip_hdr_length + TCP_MIN_HEADER_LENGTH);
244211042SErik.Nordmark@Sun.COM 
244311042SErik.Nordmark@Sun.COM 		/* TCP options present? */
244411042SErik.Nordmark@Sun.COM 		offset = ((uchar_t *)ipha)[ip_hdr_length + 12] >> 4;
244511042SErik.Nordmark@Sun.COM 		if (offset != 5) {
244611042SErik.Nordmark@Sun.COM 			if (offset < 5)
244711042SErik.Nordmark@Sun.COM 				goto discard;
244811042SErik.Nordmark@Sun.COM 
244911042SErik.Nordmark@Sun.COM 			/*
245011042SErik.Nordmark@Sun.COM 			 * There must be TCP options.
245111042SErik.Nordmark@Sun.COM 			 * Make sure we can grab them.
245211042SErik.Nordmark@Sun.COM 			 */
245311042SErik.Nordmark@Sun.COM 			offset <<= 2;
245411042SErik.Nordmark@Sun.COM 			offset += ip_hdr_length;
245511042SErik.Nordmark@Sun.COM 			if (len < offset) {
245611042SErik.Nordmark@Sun.COM 				if (ira->ira_pktlen < offset) {
245711042SErik.Nordmark@Sun.COM 					BUMP_MIB(ill->ill_ip_mib,
245811042SErik.Nordmark@Sun.COM 					    ipIfStatsInTruncatedPkts);
245911042SErik.Nordmark@Sun.COM 					ip_drop_input(
246011042SErik.Nordmark@Sun.COM 					    "ipIfStatsInTruncatedPkts",
246111042SErik.Nordmark@Sun.COM 					    mp, ill);
246211042SErik.Nordmark@Sun.COM 					freemsg(mp);
246311042SErik.Nordmark@Sun.COM 					return;
246411042SErik.Nordmark@Sun.COM 				}
246511042SErik.Nordmark@Sun.COM 				IP_STAT(ipst, ip_recv_pullup);
246611042SErik.Nordmark@Sun.COM 				ipha = ip_pullup(mp, offset, ira);
246711042SErik.Nordmark@Sun.COM 				if (ipha == NULL)
246811042SErik.Nordmark@Sun.COM 					goto discard;
246911042SErik.Nordmark@Sun.COM 				len = mp->b_wptr - rptr;
247011042SErik.Nordmark@Sun.COM 			}
247111042SErik.Nordmark@Sun.COM 		}
247211042SErik.Nordmark@Sun.COM 
247311042SErik.Nordmark@Sun.COM 		/*
247411042SErik.Nordmark@Sun.COM 		 * Pass up a squeue hint to tcp.
247511042SErik.Nordmark@Sun.COM 		 * If ira_sqp is already set (this is loopback) we leave it
247611042SErik.Nordmark@Sun.COM 		 * alone.
247711042SErik.Nordmark@Sun.COM 		 */
247811042SErik.Nordmark@Sun.COM 		if (ira->ira_sqp == NULL) {
247911042SErik.Nordmark@Sun.COM 			ira->ira_sqp = ip_squeue_get(ira->ira_ring);
248011042SErik.Nordmark@Sun.COM 		}
248111042SErik.Nordmark@Sun.COM 
248211042SErik.Nordmark@Sun.COM 		/* Look for AF_INET or AF_INET6 that matches */
248311042SErik.Nordmark@Sun.COM 		connp = ipcl_classify_v4(mp, IPPROTO_TCP, ip_hdr_length,
248411042SErik.Nordmark@Sun.COM 		    ira, ipst);
248511042SErik.Nordmark@Sun.COM 		if (connp == NULL) {
248611042SErik.Nordmark@Sun.COM 			/* Send the TH_RST */
248711042SErik.Nordmark@Sun.COM 			BUMP_MIB(ill->ill_ip_mib, ipIfStatsHCInDelivers);
248811042SErik.Nordmark@Sun.COM 			tcp_xmit_listeners_reset(mp, ira, ipst, NULL);
248911042SErik.Nordmark@Sun.COM 			return;
249011042SErik.Nordmark@Sun.COM 		}
249111042SErik.Nordmark@Sun.COM 		if (connp->conn_incoming_ifindex != 0 &&
249211042SErik.Nordmark@Sun.COM 		    connp->conn_incoming_ifindex != ira->ira_ruifindex) {
249311042SErik.Nordmark@Sun.COM 			CONN_DEC_REF(connp);
249411042SErik.Nordmark@Sun.COM 
249511042SErik.Nordmark@Sun.COM 			/* Send the TH_RST */
249611042SErik.Nordmark@Sun.COM 			BUMP_MIB(ill->ill_ip_mib, ipIfStatsHCInDelivers);
249711042SErik.Nordmark@Sun.COM 			tcp_xmit_listeners_reset(mp, ira, ipst, NULL);
249811042SErik.Nordmark@Sun.COM 			return;
249911042SErik.Nordmark@Sun.COM 		}
250011042SErik.Nordmark@Sun.COM 		if (CONN_INBOUND_POLICY_PRESENT(connp, ipss) ||
250111042SErik.Nordmark@Sun.COM 		    (iraflags & IRAF_IPSEC_SECURE)) {
250211042SErik.Nordmark@Sun.COM 			mp = ipsec_check_inbound_policy(mp, connp,
250311042SErik.Nordmark@Sun.COM 			    ipha, NULL, ira);
250411042SErik.Nordmark@Sun.COM 			if (mp == NULL) {
250511042SErik.Nordmark@Sun.COM 				BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards);
250611042SErik.Nordmark@Sun.COM 				/* Note that mp is NULL */
250711042SErik.Nordmark@Sun.COM 				ip_drop_input("ipIfStatsInDiscards", mp, ill);
250811042SErik.Nordmark@Sun.COM 				CONN_DEC_REF(connp);
250911042SErik.Nordmark@Sun.COM 				return;
251011042SErik.Nordmark@Sun.COM 			}
251111042SErik.Nordmark@Sun.COM 		}
251211042SErik.Nordmark@Sun.COM 		/* Found a client; up it goes */
251311042SErik.Nordmark@Sun.COM 		BUMP_MIB(ill->ill_ip_mib, ipIfStatsHCInDelivers);
251411042SErik.Nordmark@Sun.COM 		ira->ira_ill = ira->ira_rill = NULL;
251511042SErik.Nordmark@Sun.COM 		if (!IPCL_IS_TCP(connp)) {
251611042SErik.Nordmark@Sun.COM 			/* Not TCP; must be SOCK_RAW, IPPROTO_TCP */
251711042SErik.Nordmark@Sun.COM 			(connp->conn_recv)(connp, mp, NULL, ira);
251811042SErik.Nordmark@Sun.COM 			CONN_DEC_REF(connp);
251911042SErik.Nordmark@Sun.COM 			ira->ira_ill = ill;
252011042SErik.Nordmark@Sun.COM 			ira->ira_rill = rill;
252111042SErik.Nordmark@Sun.COM 			return;
252211042SErik.Nordmark@Sun.COM 		}
252311042SErik.Nordmark@Sun.COM 
252411042SErik.Nordmark@Sun.COM 		/*
252511042SErik.Nordmark@Sun.COM 		 * We do different processing whether called from
252611042SErik.Nordmark@Sun.COM 		 * ip_accept_tcp and we match the target, don't match
252711042SErik.Nordmark@Sun.COM 		 * the target, and when we are called by ip_input.
252811042SErik.Nordmark@Sun.COM 		 */
252911042SErik.Nordmark@Sun.COM 		if (iraflags & IRAF_TARGET_SQP) {
253011042SErik.Nordmark@Sun.COM 			if (ira->ira_target_sqp == connp->conn_sqp) {
253111042SErik.Nordmark@Sun.COM 				mblk_t	*attrmp;
253211042SErik.Nordmark@Sun.COM 
253311042SErik.Nordmark@Sun.COM 				attrmp = ip_recv_attr_to_mblk(ira);
253411042SErik.Nordmark@Sun.COM 				if (attrmp == NULL) {
253511042SErik.Nordmark@Sun.COM 					BUMP_MIB(ill->ill_ip_mib,
253611042SErik.Nordmark@Sun.COM 					    ipIfStatsInDiscards);
253711042SErik.Nordmark@Sun.COM 					ip_drop_input("ipIfStatsInDiscards",
253811042SErik.Nordmark@Sun.COM 					    mp, ill);
253911042SErik.Nordmark@Sun.COM 					freemsg(mp);
254011042SErik.Nordmark@Sun.COM 					CONN_DEC_REF(connp);
254111042SErik.Nordmark@Sun.COM 				} else {
254211042SErik.Nordmark@Sun.COM 					SET_SQUEUE(attrmp, connp->conn_recv,
254311042SErik.Nordmark@Sun.COM 					    connp);
254411042SErik.Nordmark@Sun.COM 					attrmp->b_cont = mp;
254511042SErik.Nordmark@Sun.COM 					ASSERT(ira->ira_target_sqp_mp == NULL);
254611042SErik.Nordmark@Sun.COM 					ira->ira_target_sqp_mp = attrmp;
254711042SErik.Nordmark@Sun.COM 					/*
254811042SErik.Nordmark@Sun.COM 					 * Conn ref release when drained from
254911042SErik.Nordmark@Sun.COM 					 * the squeue.
255011042SErik.Nordmark@Sun.COM 					 */
255111042SErik.Nordmark@Sun.COM 				}
255211042SErik.Nordmark@Sun.COM 			} else {
255311042SErik.Nordmark@Sun.COM 				SQUEUE_ENTER_ONE(connp->conn_sqp, mp,
255411042SErik.Nordmark@Sun.COM 				    connp->conn_recv, connp, ira, SQ_FILL,
255511042SErik.Nordmark@Sun.COM 				    SQTAG_IP_TCP_INPUT);
255611042SErik.Nordmark@Sun.COM 			}
255711042SErik.Nordmark@Sun.COM 		} else {
255811042SErik.Nordmark@Sun.COM 			SQUEUE_ENTER_ONE(connp->conn_sqp, mp, connp->conn_recv,
255911042SErik.Nordmark@Sun.COM 			    connp, ira, ip_squeue_flag, SQTAG_IP_TCP_INPUT);
256011042SErik.Nordmark@Sun.COM 		}
256111042SErik.Nordmark@Sun.COM 		ira->ira_ill = ill;
256211042SErik.Nordmark@Sun.COM 		ira->ira_rill = rill;
256311042SErik.Nordmark@Sun.COM 		return;
256411042SErik.Nordmark@Sun.COM 
256511042SErik.Nordmark@Sun.COM 	case IPPROTO_SCTP: {
256611042SErik.Nordmark@Sun.COM 		sctp_hdr_t	*sctph;
256711042SErik.Nordmark@Sun.COM 		in6_addr_t	map_src, map_dst;
256811042SErik.Nordmark@Sun.COM 		uint32_t	ports;	/* Source and destination ports */
256911042SErik.Nordmark@Sun.COM 		sctp_stack_t	*sctps = ipst->ips_netstack->netstack_sctp;
257011042SErik.Nordmark@Sun.COM 
257111042SErik.Nordmark@Sun.COM 		/* For SCTP, discard broadcast and multicast packets. */
257211042SErik.Nordmark@Sun.COM 		if (iraflags & IRAF_MULTIBROADCAST)
257311042SErik.Nordmark@Sun.COM 			goto discard;
257411042SErik.Nordmark@Sun.COM 
257511042SErik.Nordmark@Sun.COM 		/*
257611042SErik.Nordmark@Sun.COM 		 * Since there is no SCTP h/w cksum support yet, just
257711042SErik.Nordmark@Sun.COM 		 * clear the flag.
257811042SErik.Nordmark@Sun.COM 		 */
257911042SErik.Nordmark@Sun.COM 		DB_CKSUMFLAGS(mp) = 0;
258011042SErik.Nordmark@Sun.COM 
258111042SErik.Nordmark@Sun.COM 		/* Length ensured above */
258211042SErik.Nordmark@Sun.COM 		ASSERT(MBLKL(mp) >= ip_hdr_length + SCTP_COMMON_HDR_LENGTH);
258311042SErik.Nordmark@Sun.COM 		sctph = (sctp_hdr_t *)(rptr + ip_hdr_length);
258411042SErik.Nordmark@Sun.COM 
258511042SErik.Nordmark@Sun.COM 		/* get the ports */
258611042SErik.Nordmark@Sun.COM 		ports = *(uint32_t *)&sctph->sh_sport;
258711042SErik.Nordmark@Sun.COM 
258811042SErik.Nordmark@Sun.COM 		IN6_IPADDR_TO_V4MAPPED(ipha->ipha_dst, &map_dst);
258911042SErik.Nordmark@Sun.COM 		IN6_IPADDR_TO_V4MAPPED(ipha->ipha_src, &map_src);
259011042SErik.Nordmark@Sun.COM 		if (iraflags & IRAF_SCTP_CSUM_ERR) {
259111042SErik.Nordmark@Sun.COM 			/*
259211042SErik.Nordmark@Sun.COM 			 * No potential sctp checksum errors go to the Sun
259311042SErik.Nordmark@Sun.COM 			 * sctp stack however they might be Adler-32 summed
259411042SErik.Nordmark@Sun.COM 			 * packets a userland stack bound to a raw IP socket
259511042SErik.Nordmark@Sun.COM 			 * could reasonably use. Note though that Adler-32 is
259611042SErik.Nordmark@Sun.COM 			 * a long deprecated algorithm and customer sctp
259711042SErik.Nordmark@Sun.COM 			 * networks should eventually migrate to CRC-32 at
259811042SErik.Nordmark@Sun.COM 			 * which time this facility should be removed.
259911042SErik.Nordmark@Sun.COM 			 */
260011042SErik.Nordmark@Sun.COM 			ip_fanout_sctp_raw(mp, ipha, NULL, ports, ira);
260111042SErik.Nordmark@Sun.COM 			return;
260211042SErik.Nordmark@Sun.COM 		}
260312339Sanil.udupa@sun.com 		connp = sctp_fanout(&map_src, &map_dst, ports, ira, mp,
260412339Sanil.udupa@sun.com 		    sctps, sctph);
260511042SErik.Nordmark@Sun.COM 		if (connp == NULL) {
260611042SErik.Nordmark@Sun.COM 			/* Check for raw socket or OOTB handling */
260711042SErik.Nordmark@Sun.COM 			ip_fanout_sctp_raw(mp, ipha, NULL, ports, ira);
260811042SErik.Nordmark@Sun.COM 			return;
260911042SErik.Nordmark@Sun.COM 		}
261011042SErik.Nordmark@Sun.COM 		if (connp->conn_incoming_ifindex != 0 &&
261111042SErik.Nordmark@Sun.COM 		    connp->conn_incoming_ifindex != ira->ira_ruifindex) {
261211042SErik.Nordmark@Sun.COM 			CONN_DEC_REF(connp);
261311042SErik.Nordmark@Sun.COM 			/* Check for raw socket or OOTB handling */
261411042SErik.Nordmark@Sun.COM 			ip_fanout_sctp_raw(mp, ipha, NULL, ports, ira);
261511042SErik.Nordmark@Sun.COM 			return;
261611042SErik.Nordmark@Sun.COM 		}
261711042SErik.Nordmark@Sun.COM 
261811042SErik.Nordmark@Sun.COM 		/* Found a client; up it goes */
261911042SErik.Nordmark@Sun.COM 		BUMP_MIB(ill->ill_ip_mib, ipIfStatsHCInDelivers);
262011042SErik.Nordmark@Sun.COM 		sctp_input(connp, ipha, NULL, mp, ira);
262111042SErik.Nordmark@Sun.COM 		/* sctp_input does a rele of the sctp_t */
262211042SErik.Nordmark@Sun.COM 		return;
262311042SErik.Nordmark@Sun.COM 	}
262411042SErik.Nordmark@Sun.COM 
262511042SErik.Nordmark@Sun.COM 	case IPPROTO_UDP:
262611042SErik.Nordmark@Sun.COM 		/* First mblk contains IP+UDP headers as checked above */
262711042SErik.Nordmark@Sun.COM 		ASSERT(MBLKL(mp) >= ip_hdr_length + UDPH_SIZE);
262811042SErik.Nordmark@Sun.COM 
262911042SErik.Nordmark@Sun.COM 		if (iraflags & IRAF_MULTIBROADCAST) {
263011042SErik.Nordmark@Sun.COM 			uint16_t *up;	/* Pointer to ports in ULP header */
263111042SErik.Nordmark@Sun.COM 
263211042SErik.Nordmark@Sun.COM 			up = (uint16_t *)((uchar_t *)ipha + ip_hdr_length);
263311042SErik.Nordmark@Sun.COM 			ip_fanout_udp_multi_v4(mp, ipha, up[1], up[0], ira);
263411042SErik.Nordmark@Sun.COM 			return;
263511042SErik.Nordmark@Sun.COM 		}
263611042SErik.Nordmark@Sun.COM 
263711042SErik.Nordmark@Sun.COM 		/* Look for AF_INET or AF_INET6 that matches */
263811042SErik.Nordmark@Sun.COM 		connp = ipcl_classify_v4(mp, IPPROTO_UDP, ip_hdr_length,
263911042SErik.Nordmark@Sun.COM 		    ira, ipst);
264011042SErik.Nordmark@Sun.COM 		if (connp == NULL) {
264111042SErik.Nordmark@Sun.COM 	no_udp_match:
264211042SErik.Nordmark@Sun.COM 			if (ipst->ips_ipcl_proto_fanout_v4[IPPROTO_UDP].
264311042SErik.Nordmark@Sun.COM 			    connf_head != NULL) {
264411042SErik.Nordmark@Sun.COM 				ASSERT(ira->ira_protocol == IPPROTO_UDP);
264511042SErik.Nordmark@Sun.COM 				ip_fanout_proto_v4(mp, ipha, ira);
264611042SErik.Nordmark@Sun.COM 			} else {
264711042SErik.Nordmark@Sun.COM 				ip_fanout_send_icmp_v4(mp,
264811042SErik.Nordmark@Sun.COM 				    ICMP_DEST_UNREACHABLE,
264911042SErik.Nordmark@Sun.COM 				    ICMP_PORT_UNREACHABLE, ira);
265011042SErik.Nordmark@Sun.COM 			}
265111042SErik.Nordmark@Sun.COM 			return;
265211042SErik.Nordmark@Sun.COM 
265311042SErik.Nordmark@Sun.COM 		}
265411042SErik.Nordmark@Sun.COM 		if (connp->conn_incoming_ifindex != 0 &&
265511042SErik.Nordmark@Sun.COM 		    connp->conn_incoming_ifindex != ira->ira_ruifindex) {
265611042SErik.Nordmark@Sun.COM 			CONN_DEC_REF(connp);
265711042SErik.Nordmark@Sun.COM 			goto no_udp_match;
265811042SErik.Nordmark@Sun.COM 		}
265911042SErik.Nordmark@Sun.COM 		if (IPCL_IS_NONSTR(connp) ? connp->conn_flow_cntrld :
266011042SErik.Nordmark@Sun.COM 		    !canputnext(connp->conn_rq)) {
266111042SErik.Nordmark@Sun.COM 			CONN_DEC_REF(connp);
266211042SErik.Nordmark@Sun.COM 			BUMP_MIB(ill->ill_ip_mib, udpIfStatsInOverflows);
266311042SErik.Nordmark@Sun.COM 			ip_drop_input("udpIfStatsInOverflows", mp, ill);
266411042SErik.Nordmark@Sun.COM 			freemsg(mp);
266511042SErik.Nordmark@Sun.COM 			return;
266611042SErik.Nordmark@Sun.COM 		}
266711042SErik.Nordmark@Sun.COM 		if (CONN_INBOUND_POLICY_PRESENT(connp, ipss) ||
266811042SErik.Nordmark@Sun.COM 		    (iraflags & IRAF_IPSEC_SECURE)) {
266911042SErik.Nordmark@Sun.COM 			mp = ipsec_check_inbound_policy(mp, connp,
267011042SErik.Nordmark@Sun.COM 			    ipha, NULL, ira);
267111042SErik.Nordmark@Sun.COM 			if (mp == NULL) {
267211042SErik.Nordmark@Sun.COM 				BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards);
267311042SErik.Nordmark@Sun.COM 				/* Note that mp is NULL */
267411042SErik.Nordmark@Sun.COM 				ip_drop_input("ipIfStatsInDiscards", mp, ill);
267511042SErik.Nordmark@Sun.COM 				CONN_DEC_REF(connp);
267611042SErik.Nordmark@Sun.COM 				return;
267711042SErik.Nordmark@Sun.COM 			}
267811042SErik.Nordmark@Sun.COM 		}
267911042SErik.Nordmark@Sun.COM 		/*
268011042SErik.Nordmark@Sun.COM 		 * Remove 0-spi if it's 0, or move everything behind
268111042SErik.Nordmark@Sun.COM 		 * the UDP header over it and forward to ESP via
268211042SErik.Nordmark@Sun.COM 		 * ip_fanout_v4().
268311042SErik.Nordmark@Sun.COM 		 */
268411042SErik.Nordmark@Sun.COM 		if (connp->conn_udp->udp_nat_t_endpoint) {
268511042SErik.Nordmark@Sun.COM 			if (iraflags & IRAF_IPSEC_SECURE) {
268611042SErik.Nordmark@Sun.COM 				ip_drop_packet(mp, B_TRUE, ira->ira_ill,
268711042SErik.Nordmark@Sun.COM 				    DROPPER(ipss, ipds_esp_nat_t_ipsec),
268811042SErik.Nordmark@Sun.COM 				    &ipss->ipsec_dropper);
268911042SErik.Nordmark@Sun.COM 				CONN_DEC_REF(connp);
269011042SErik.Nordmark@Sun.COM 				return;
269111042SErik.Nordmark@Sun.COM 			}
269211042SErik.Nordmark@Sun.COM 
269311042SErik.Nordmark@Sun.COM 			mp = zero_spi_check(mp, ira);
269411042SErik.Nordmark@Sun.COM 			if (mp == NULL) {
269511042SErik.Nordmark@Sun.COM 				/*
269611042SErik.Nordmark@Sun.COM 				 * Packet was consumed - probably sent to
269711042SErik.Nordmark@Sun.COM 				 * ip_fanout_v4.
269811042SErik.Nordmark@Sun.COM 				 */
269911042SErik.Nordmark@Sun.COM 				CONN_DEC_REF(connp);
270011042SErik.Nordmark@Sun.COM 				return;
270111042SErik.Nordmark@Sun.COM 			}
270211042SErik.Nordmark@Sun.COM 			/* Else continue like a normal UDP packet. */
270311042SErik.Nordmark@Sun.COM 			ipha = (ipha_t *)mp->b_rptr;
270411042SErik.Nordmark@Sun.COM 			protocol = ipha->ipha_protocol;
270511042SErik.Nordmark@Sun.COM 			ira->ira_protocol = protocol;
270611042SErik.Nordmark@Sun.COM 		}
270711042SErik.Nordmark@Sun.COM 		/* Found a client; up it goes */
270811042SErik.Nordmark@Sun.COM 		IP_STAT(ipst, ip_udp_fannorm);
270911042SErik.Nordmark@Sun.COM 		BUMP_MIB(ill->ill_ip_mib, ipIfStatsHCInDelivers);
271011042SErik.Nordmark@Sun.COM 		ira->ira_ill = ira->ira_rill = NULL;
271111042SErik.Nordmark@Sun.COM 		(connp->conn_recv)(connp, mp, NULL, ira);
271211042SErik.Nordmark@Sun.COM 		CONN_DEC_REF(connp);
271311042SErik.Nordmark@Sun.COM 		ira->ira_ill = ill;
271411042SErik.Nordmark@Sun.COM 		ira->ira_rill = rill;
271511042SErik.Nordmark@Sun.COM 		return;
271611042SErik.Nordmark@Sun.COM 	default:
271711042SErik.Nordmark@Sun.COM 		break;
271811042SErik.Nordmark@Sun.COM 	}
271911042SErik.Nordmark@Sun.COM 
272011042SErik.Nordmark@Sun.COM 	/*
272111042SErik.Nordmark@Sun.COM 	 * Clear hardware checksumming flag as it is currently only
272211042SErik.Nordmark@Sun.COM 	 * used by TCP and UDP.
272311042SErik.Nordmark@Sun.COM 	 */
272411042SErik.Nordmark@Sun.COM 	DB_CKSUMFLAGS(mp) = 0;
272511042SErik.Nordmark@Sun.COM 
272611042SErik.Nordmark@Sun.COM 	switch (protocol) {
272711042SErik.Nordmark@Sun.COM 	case IPPROTO_ICMP:
272811042SErik.Nordmark@Sun.COM 		/*
272911042SErik.Nordmark@Sun.COM 		 * We need to accomodate icmp messages coming in clear
273011042SErik.Nordmark@Sun.COM 		 * until we get everything secure from the wire. If
273111042SErik.Nordmark@Sun.COM 		 * icmp_accept_clear_messages is zero we check with
273211042SErik.Nordmark@Sun.COM 		 * the global policy and act accordingly. If it is
273311042SErik.Nordmark@Sun.COM 		 * non-zero, we accept the message without any checks.
273411042SErik.Nordmark@Sun.COM 		 * But *this does not mean* that this will be delivered
273511042SErik.Nordmark@Sun.COM 		 * to RAW socket clients. By accepting we might send
273611042SErik.Nordmark@Sun.COM 		 * replies back, change our MTU value etc.,
273711042SErik.Nordmark@Sun.COM 		 * but delivery to the ULP/clients depends on their
273811042SErik.Nordmark@Sun.COM 		 * policy dispositions.
273911042SErik.Nordmark@Sun.COM 		 */
274011042SErik.Nordmark@Sun.COM 		if (ipst->ips_icmp_accept_clear_messages == 0) {
274111042SErik.Nordmark@Sun.COM 			mp = ipsec_check_global_policy(mp, NULL,
274211042SErik.Nordmark@Sun.COM 			    ipha, NULL, ira, ns);
274311042SErik.Nordmark@Sun.COM 			if (mp == NULL)
274411042SErik.Nordmark@Sun.COM 				return;
274511042SErik.Nordmark@Sun.COM 		}
274611042SErik.Nordmark@Sun.COM 
274711042SErik.Nordmark@Sun.COM 		/*
274811042SErik.Nordmark@Sun.COM 		 * On a labeled system, we have to check whether the zone
274911042SErik.Nordmark@Sun.COM 		 * itself is permitted to receive raw traffic.
275011042SErik.Nordmark@Sun.COM 		 */
275111042SErik.Nordmark@Sun.COM 		if (ira->ira_flags & IRAF_SYSTEM_LABELED) {
275211042SErik.Nordmark@Sun.COM 			if (!tsol_can_accept_raw(mp, ira, B_FALSE)) {
275311042SErik.Nordmark@Sun.COM 				BUMP_MIB(&ipst->ips_icmp_mib, icmpInErrors);
275411042SErik.Nordmark@Sun.COM 				ip_drop_input("tsol_can_accept_raw", mp, ill);
275511042SErik.Nordmark@Sun.COM 				freemsg(mp);
275611042SErik.Nordmark@Sun.COM 				return;
275711042SErik.Nordmark@Sun.COM 			}
275811042SErik.Nordmark@Sun.COM 		}
275911042SErik.Nordmark@Sun.COM 
276011042SErik.Nordmark@Sun.COM 		/*
276111042SErik.Nordmark@Sun.COM 		 * ICMP header checksum, including checksum field,
276211042SErik.Nordmark@Sun.COM 		 * should be zero.
276311042SErik.Nordmark@Sun.COM 		 */
276411042SErik.Nordmark@Sun.COM 		if (IP_CSUM(mp, ip_hdr_length, 0)) {
276511042SErik.Nordmark@Sun.COM 			BUMP_MIB(&ipst->ips_icmp_mib, icmpInCksumErrs);
276611042SErik.Nordmark@Sun.COM 			ip_drop_input("icmpInCksumErrs", mp, ill);
276711042SErik.Nordmark@Sun.COM 			freemsg(mp);
276811042SErik.Nordmark@Sun.COM 			return;
276911042SErik.Nordmark@Sun.COM 		}
277011042SErik.Nordmark@Sun.COM 		BUMP_MIB(ill->ill_ip_mib, ipIfStatsHCInDelivers);
277111042SErik.Nordmark@Sun.COM 		mp = icmp_inbound_v4(mp, ira);
277211042SErik.Nordmark@Sun.COM 		if (mp == NULL) {
277311042SErik.Nordmark@Sun.COM 			/* No need to pass to RAW sockets */
277411042SErik.Nordmark@Sun.COM 			return;
277511042SErik.Nordmark@Sun.COM 		}
277611042SErik.Nordmark@Sun.COM 		break;
277711042SErik.Nordmark@Sun.COM 
277811042SErik.Nordmark@Sun.COM 	case IPPROTO_IGMP:
277911042SErik.Nordmark@Sun.COM 		/*
278011042SErik.Nordmark@Sun.COM 		 * If we are not willing to accept IGMP packets in clear,
278111042SErik.Nordmark@Sun.COM 		 * then check with global policy.
278211042SErik.Nordmark@Sun.COM 		 */
278311042SErik.Nordmark@Sun.COM 		if (ipst->ips_igmp_accept_clear_messages == 0) {
278411042SErik.Nordmark@Sun.COM 			mp = ipsec_check_global_policy(mp, NULL,
278511042SErik.Nordmark@Sun.COM 			    ipha, NULL, ira, ns);
278611042SErik.Nordmark@Sun.COM 			if (mp == NULL)
278711042SErik.Nordmark@Sun.COM 				return;
278811042SErik.Nordmark@Sun.COM 		}
278911042SErik.Nordmark@Sun.COM 		if ((ira->ira_flags & IRAF_SYSTEM_LABELED) &&
279011042SErik.Nordmark@Sun.COM 		    !tsol_can_accept_raw(mp, ira, B_TRUE)) {
279111042SErik.Nordmark@Sun.COM 			BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards);
279211042SErik.Nordmark@Sun.COM 			ip_drop_input("ipIfStatsInDiscards", mp, ill);
279311042SErik.Nordmark@Sun.COM 			freemsg(mp);
279411042SErik.Nordmark@Sun.COM 			return;
279511042SErik.Nordmark@Sun.COM 		}
279611042SErik.Nordmark@Sun.COM 		/*
279711042SErik.Nordmark@Sun.COM 		 * Validate checksum
279811042SErik.Nordmark@Sun.COM 		 */
279911042SErik.Nordmark@Sun.COM 		if (IP_CSUM(mp, ip_hdr_length, 0)) {
280011042SErik.Nordmark@Sun.COM 			++ipst->ips_igmpstat.igps_rcv_badsum;
280111042SErik.Nordmark@Sun.COM 			ip_drop_input("igps_rcv_badsum", mp, ill);
280211042SErik.Nordmark@Sun.COM 			freemsg(mp);
280311042SErik.Nordmark@Sun.COM 			return;
280411042SErik.Nordmark@Sun.COM 		}
280511042SErik.Nordmark@Sun.COM 
280611042SErik.Nordmark@Sun.COM 		BUMP_MIB(ill->ill_ip_mib, ipIfStatsHCInDelivers);
280711042SErik.Nordmark@Sun.COM 		mp = igmp_input(mp, ira);
280811042SErik.Nordmark@Sun.COM 		if (mp == NULL) {
280911042SErik.Nordmark@Sun.COM 			/* Bad packet - discarded by igmp_input */
281011042SErik.Nordmark@Sun.COM 			return;
281111042SErik.Nordmark@Sun.COM 		}
281211042SErik.Nordmark@Sun.COM 		break;
281311042SErik.Nordmark@Sun.COM 	case IPPROTO_PIM:
281411042SErik.Nordmark@Sun.COM 		/*
281511042SErik.Nordmark@Sun.COM 		 * If we are not willing to accept PIM packets in clear,
281611042SErik.Nordmark@Sun.COM 		 * then check with global policy.
281711042SErik.Nordmark@Sun.COM 		 */
281811042SErik.Nordmark@Sun.COM 		if (ipst->ips_pim_accept_clear_messages == 0) {
281911042SErik.Nordmark@Sun.COM 			mp = ipsec_check_global_policy(mp, NULL,
282011042SErik.Nordmark@Sun.COM 			    ipha, NULL, ira, ns);
282111042SErik.Nordmark@Sun.COM 			if (mp == NULL)
282211042SErik.Nordmark@Sun.COM 				return;
282311042SErik.Nordmark@Sun.COM 		}
282411042SErik.Nordmark@Sun.COM 		if ((ira->ira_flags & IRAF_SYSTEM_LABELED) &&
282511042SErik.Nordmark@Sun.COM 		    !tsol_can_accept_raw(mp, ira, B_TRUE)) {
282611042SErik.Nordmark@Sun.COM 			BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards);
282711042SErik.Nordmark@Sun.COM 			ip_drop_input("ipIfStatsInDiscards", mp, ill);
282811042SErik.Nordmark@Sun.COM 			freemsg(mp);
282911042SErik.Nordmark@Sun.COM 			return;
283011042SErik.Nordmark@Sun.COM 		}
283111042SErik.Nordmark@Sun.COM 		BUMP_MIB(ill->ill_ip_mib, ipIfStatsHCInDelivers);
283211042SErik.Nordmark@Sun.COM 
283311042SErik.Nordmark@Sun.COM 		/* Checksum is verified in pim_input */
283411042SErik.Nordmark@Sun.COM 		mp = pim_input(mp, ira);
283511042SErik.Nordmark@Sun.COM 		if (mp == NULL) {
283611042SErik.Nordmark@Sun.COM 			/* Bad packet - discarded by pim_input */
283711042SErik.Nordmark@Sun.COM 			return;
283811042SErik.Nordmark@Sun.COM 		}
283911042SErik.Nordmark@Sun.COM 		break;
284011042SErik.Nordmark@Sun.COM 	case IPPROTO_AH:
284111042SErik.Nordmark@Sun.COM 	case IPPROTO_ESP: {
284211042SErik.Nordmark@Sun.COM 		/*
284311042SErik.Nordmark@Sun.COM 		 * Fast path for AH/ESP.
284411042SErik.Nordmark@Sun.COM 		 */
284511042SErik.Nordmark@Sun.COM 		netstack_t *ns = ipst->ips_netstack;
284611042SErik.Nordmark@Sun.COM 		ipsec_stack_t *ipss = ns->netstack_ipsec;
284711042SErik.Nordmark@Sun.COM 
284811042SErik.Nordmark@Sun.COM 		IP_STAT(ipst, ipsec_proto_ahesp);
284911042SErik.Nordmark@Sun.COM 
285011042SErik.Nordmark@Sun.COM 		if (!ipsec_loaded(ipss)) {
285111042SErik.Nordmark@Sun.COM 			ip_proto_not_sup(mp, ira);
285211042SErik.Nordmark@Sun.COM 			return;
285311042SErik.Nordmark@Sun.COM 		}
285411042SErik.Nordmark@Sun.COM 
285511042SErik.Nordmark@Sun.COM 		BUMP_MIB(ill->ill_ip_mib, ipIfStatsHCInDelivers);
285611042SErik.Nordmark@Sun.COM 		/* select inbound SA and have IPsec process the pkt */
285711042SErik.Nordmark@Sun.COM 		if (protocol == IPPROTO_ESP) {
285811042SErik.Nordmark@Sun.COM 			esph_t *esph;
285911042SErik.Nordmark@Sun.COM 			boolean_t esp_in_udp_sa;
286011042SErik.Nordmark@Sun.COM 			boolean_t esp_in_udp_packet;
286111042SErik.Nordmark@Sun.COM 
286211042SErik.Nordmark@Sun.COM 			mp = ipsec_inbound_esp_sa(mp, ira, &esph);
286311042SErik.Nordmark@Sun.COM 			if (mp == NULL)
286411042SErik.Nordmark@Sun.COM 				return;
286511042SErik.Nordmark@Sun.COM 
286611042SErik.Nordmark@Sun.COM 			ASSERT(esph != NULL);
286711042SErik.Nordmark@Sun.COM 			ASSERT(ira->ira_flags & IRAF_IPSEC_SECURE);
286811042SErik.Nordmark@Sun.COM 			ASSERT(ira->ira_ipsec_esp_sa != NULL);
286911042SErik.Nordmark@Sun.COM 			ASSERT(ira->ira_ipsec_esp_sa->ipsa_input_func != NULL);
287011042SErik.Nordmark@Sun.COM 
287111042SErik.Nordmark@Sun.COM 			esp_in_udp_sa = ((ira->ira_ipsec_esp_sa->ipsa_flags &
287211042SErik.Nordmark@Sun.COM 			    IPSA_F_NATT) != 0);
287311042SErik.Nordmark@Sun.COM 			esp_in_udp_packet =
287411042SErik.Nordmark@Sun.COM 			    (ira->ira_flags & IRAF_ESP_UDP_PORTS) != 0;
287511042SErik.Nordmark@Sun.COM 
287611042SErik.Nordmark@Sun.COM 			/*
287711042SErik.Nordmark@Sun.COM 			 * The following is a fancy, but quick, way of saying:
287811042SErik.Nordmark@Sun.COM 			 * ESP-in-UDP SA and Raw ESP packet --> drop
287911042SErik.Nordmark@Sun.COM 			 *    OR
288011042SErik.Nordmark@Sun.COM 			 * ESP SA and ESP-in-UDP packet --> drop
288111042SErik.Nordmark@Sun.COM 			 */
288211042SErik.Nordmark@Sun.COM 			if (esp_in_udp_sa != esp_in_udp_packet) {
288311042SErik.Nordmark@Sun.COM 				BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards);
288411042SErik.Nordmark@Sun.COM 				ip_drop_packet(mp, B_TRUE, ira->ira_ill,
288511042SErik.Nordmark@Sun.COM 				    DROPPER(ipss, ipds_esp_no_sa),
288611042SErik.Nordmark@Sun.COM 				    &ipss->ipsec_dropper);
288711042SErik.Nordmark@Sun.COM 				return;
288811042SErik.Nordmark@Sun.COM 			}
288911042SErik.Nordmark@Sun.COM 			mp = ira->ira_ipsec_esp_sa->ipsa_input_func(mp, esph,
289011042SErik.Nordmark@Sun.COM 			    ira);
289111042SErik.Nordmark@Sun.COM 		} else {
289211042SErik.Nordmark@Sun.COM 			ah_t *ah;
289311042SErik.Nordmark@Sun.COM 
289411042SErik.Nordmark@Sun.COM 			mp = ipsec_inbound_ah_sa(mp, ira, &ah);
289511042SErik.Nordmark@Sun.COM 			if (mp == NULL)
289611042SErik.Nordmark@Sun.COM 				return;
289711042SErik.Nordmark@Sun.COM 
289811042SErik.Nordmark@Sun.COM 			ASSERT(ah != NULL);
289911042SErik.Nordmark@Sun.COM 			ASSERT(ira->ira_flags & IRAF_IPSEC_SECURE);
290011042SErik.Nordmark@Sun.COM 			ASSERT(ira->ira_ipsec_ah_sa != NULL);
290111042SErik.Nordmark@Sun.COM 			ASSERT(ira->ira_ipsec_ah_sa->ipsa_input_func != NULL);
290211042SErik.Nordmark@Sun.COM 			mp = ira->ira_ipsec_ah_sa->ipsa_input_func(mp, ah,
290311042SErik.Nordmark@Sun.COM 			    ira);
290411042SErik.Nordmark@Sun.COM 		}
290511042SErik.Nordmark@Sun.COM 
290611042SErik.Nordmark@Sun.COM 		if (mp == NULL) {
290711042SErik.Nordmark@Sun.COM 			/*
290811042SErik.Nordmark@Sun.COM 			 * Either it failed or is pending. In the former case
290911042SErik.Nordmark@Sun.COM 			 * ipIfStatsInDiscards was increased.
291011042SErik.Nordmark@Sun.COM 			 */
291111042SErik.Nordmark@Sun.COM 			return;
291211042SErik.Nordmark@Sun.COM 		}
291311042SErik.Nordmark@Sun.COM 		/* we're done with IPsec processing, send it up */
291411042SErik.Nordmark@Sun.COM 		ip_input_post_ipsec(mp, ira);
291511042SErik.Nordmark@Sun.COM 		return;
291611042SErik.Nordmark@Sun.COM 	}
291711042SErik.Nordmark@Sun.COM 	case IPPROTO_ENCAP: {
291811042SErik.Nordmark@Sun.COM 		ipha_t		*inner_ipha;
291911042SErik.Nordmark@Sun.COM 
292011042SErik.Nordmark@Sun.COM 		/*
292111042SErik.Nordmark@Sun.COM 		 * Handle self-encapsulated packets (IP-in-IP where
292211042SErik.Nordmark@Sun.COM 		 * the inner addresses == the outer addresses).
292311042SErik.Nordmark@Sun.COM 		 */
292411042SErik.Nordmark@Sun.COM 		if ((uchar_t *)ipha + ip_hdr_length + sizeof (ipha_t) >
292511042SErik.Nordmark@Sun.COM 		    mp->b_wptr) {
292611042SErik.Nordmark@Sun.COM 			if (ira->ira_pktlen <
292711042SErik.Nordmark@Sun.COM 			    ip_hdr_length + sizeof (ipha_t)) {
292811042SErik.Nordmark@Sun.COM 				BUMP_MIB(ill->ill_ip_mib,
292911042SErik.Nordmark@Sun.COM 				    ipIfStatsInTruncatedPkts);
293011042SErik.Nordmark@Sun.COM 				ip_drop_input("ipIfStatsInTruncatedPkts",
293111042SErik.Nordmark@Sun.COM 				    mp, ill);
293211042SErik.Nordmark@Sun.COM 				freemsg(mp);
293311042SErik.Nordmark@Sun.COM 				return;
293411042SErik.Nordmark@Sun.COM 			}
293511042SErik.Nordmark@Sun.COM 			ipha = ip_pullup(mp, (uchar_t *)ipha + ip_hdr_length +
293611042SErik.Nordmark@Sun.COM 			    sizeof (ipha_t) - mp->b_rptr, ira);
293711042SErik.Nordmark@Sun.COM 			if (ipha == NULL) {
293811042SErik.Nordmark@Sun.COM 				BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards);
293911042SErik.Nordmark@Sun.COM 				ip_drop_input("ipIfStatsInDiscards", mp, ill);
294011042SErik.Nordmark@Sun.COM 				freemsg(mp);
294111042SErik.Nordmark@Sun.COM 				return;
294211042SErik.Nordmark@Sun.COM 			}
294311042SErik.Nordmark@Sun.COM 		}
294411042SErik.Nordmark@Sun.COM 		inner_ipha = (ipha_t *)((uchar_t *)ipha + ip_hdr_length);
294511042SErik.Nordmark@Sun.COM 		/*
294611042SErik.Nordmark@Sun.COM 		 * Check the sanity of the inner IP header.
294711042SErik.Nordmark@Sun.COM 		 */
294811042SErik.Nordmark@Sun.COM 		if ((IPH_HDR_VERSION(inner_ipha) != IPV4_VERSION)) {
294911042SErik.Nordmark@Sun.COM 			BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards);
295011042SErik.Nordmark@Sun.COM 			ip_drop_input("ipIfStatsInDiscards", mp, ill);
295111042SErik.Nordmark@Sun.COM 			freemsg(mp);
295211042SErik.Nordmark@Sun.COM 			return;
295311042SErik.Nordmark@Sun.COM 		}
295411042SErik.Nordmark@Sun.COM 		if (IPH_HDR_LENGTH(inner_ipha) < sizeof (ipha_t)) {
295511042SErik.Nordmark@Sun.COM 			BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards);
295611042SErik.Nordmark@Sun.COM 			ip_drop_input("ipIfStatsInDiscards", mp, ill);
295711042SErik.Nordmark@Sun.COM 			freemsg(mp);
295811042SErik.Nordmark@Sun.COM 			return;
295911042SErik.Nordmark@Sun.COM 		}
296011042SErik.Nordmark@Sun.COM 		if (inner_ipha->ipha_src != ipha->ipha_src ||
296111042SErik.Nordmark@Sun.COM 		    inner_ipha->ipha_dst != ipha->ipha_dst) {
296211042SErik.Nordmark@Sun.COM 			/* We fallthru to iptun fanout below */
296311042SErik.Nordmark@Sun.COM 			goto iptun;
296411042SErik.Nordmark@Sun.COM 		}
296511042SErik.Nordmark@Sun.COM 
296611042SErik.Nordmark@Sun.COM 		/*
296711042SErik.Nordmark@Sun.COM 		 * Self-encapsulated tunnel packet. Remove
296811042SErik.Nordmark@Sun.COM 		 * the outer IP header and fanout again.
296911042SErik.Nordmark@Sun.COM 		 * We also need to make sure that the inner
297011042SErik.Nordmark@Sun.COM 		 * header is pulled up until options.
297111042SErik.Nordmark@Sun.COM 		 */
297211042SErik.Nordmark@Sun.COM 		mp->b_rptr = (uchar_t *)inner_ipha;
297311042SErik.Nordmark@Sun.COM 		ipha = inner_ipha;
297411042SErik.Nordmark@Sun.COM 		ip_hdr_length = IPH_HDR_LENGTH(ipha);
297511042SErik.Nordmark@Sun.COM 		if ((uchar_t *)ipha + ip_hdr_length > mp->b_wptr) {
297611042SErik.Nordmark@Sun.COM 			if (ira->ira_pktlen <
297711042SErik.Nordmark@Sun.COM 			    (uchar_t *)ipha + ip_hdr_length - mp->b_rptr) {
297811042SErik.Nordmark@Sun.COM 				BUMP_MIB(ill->ill_ip_mib,
297911042SErik.Nordmark@Sun.COM 				    ipIfStatsInTruncatedPkts);
298011042SErik.Nordmark@Sun.COM 				ip_drop_input("ipIfStatsInTruncatedPkts",
298111042SErik.Nordmark@Sun.COM 				    mp, ill);
298211042SErik.Nordmark@Sun.COM 				freemsg(mp);
298311042SErik.Nordmark@Sun.COM 				return;
298411042SErik.Nordmark@Sun.COM 			}
298511042SErik.Nordmark@Sun.COM 			ipha = ip_pullup(mp,
298611042SErik.Nordmark@Sun.COM 			    (uchar_t *)ipha + ip_hdr_length - mp->b_rptr, ira);
298711042SErik.Nordmark@Sun.COM 			if (ipha == NULL) {
298811042SErik.Nordmark@Sun.COM 				BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards);
298911042SErik.Nordmark@Sun.COM 				ip_drop_input("ipIfStatsInDiscards", mp, ill);
299011042SErik.Nordmark@Sun.COM 				freemsg(mp);
299111042SErik.Nordmark@Sun.COM 				return;
299211042SErik.Nordmark@Sun.COM 			}
299311042SErik.Nordmark@Sun.COM 		}
299411042SErik.Nordmark@Sun.COM 		if (ip_hdr_length > sizeof (ipha_t)) {
299511042SErik.Nordmark@Sun.COM 			/* We got options on the inner packet. */
299611042SErik.Nordmark@Sun.COM 			ipaddr_t	dst = ipha->ipha_dst;
299711042SErik.Nordmark@Sun.COM 			int		error = 0;
299811042SErik.Nordmark@Sun.COM 
299911042SErik.Nordmark@Sun.COM 			dst = ip_input_options(ipha, dst, mp, ira, &error);
300011042SErik.Nordmark@Sun.COM 			if (error != 0) {
300111042SErik.Nordmark@Sun.COM 				/*
300211042SErik.Nordmark@Sun.COM 				 * An ICMP error has been sent and the packet
300311042SErik.Nordmark@Sun.COM 				 * has been dropped.
300411042SErik.Nordmark@Sun.COM 				 */
300511042SErik.Nordmark@Sun.COM 				return;
300611042SErik.Nordmark@Sun.COM 			}
300711042SErik.Nordmark@Sun.COM 			if (dst != ipha->ipha_dst) {
300811042SErik.Nordmark@Sun.COM 				/*
300911042SErik.Nordmark@Sun.COM 				 * Someone put a source-route in
301011042SErik.Nordmark@Sun.COM 				 * the inside header of a self-
301111042SErik.Nordmark@Sun.COM 				 * encapsulated packet.  Drop it
301211042SErik.Nordmark@Sun.COM 				 * with extreme prejudice and let
301311042SErik.Nordmark@Sun.COM 				 * the sender know.
301411042SErik.Nordmark@Sun.COM 				 */
301511042SErik.Nordmark@Sun.COM 				ip_drop_input("ICMP_SOURCE_ROUTE_FAILED",
301611042SErik.Nordmark@Sun.COM 				    mp, ill);
301711042SErik.Nordmark@Sun.COM 				icmp_unreachable(mp, ICMP_SOURCE_ROUTE_FAILED,
301811042SErik.Nordmark@Sun.COM 				    ira);
301911042SErik.Nordmark@Sun.COM 				return;
302011042SErik.Nordmark@Sun.COM 			}
302111042SErik.Nordmark@Sun.COM 		}
302211042SErik.Nordmark@Sun.COM 		if (!(ira->ira_flags & IRAF_IPSEC_SECURE)) {
302311042SErik.Nordmark@Sun.COM 			/*
302411042SErik.Nordmark@Sun.COM 			 * This means that somebody is sending
302511042SErik.Nordmark@Sun.COM 			 * Self-encapsualted packets without AH/ESP.
302611042SErik.Nordmark@Sun.COM 			 *
302711042SErik.Nordmark@Sun.COM 			 * Send this packet to find a tunnel endpoint.
302811042SErik.Nordmark@Sun.COM 			 * if I can't find one, an ICMP
302911042SErik.Nordmark@Sun.COM 			 * PROTOCOL_UNREACHABLE will get sent.
303011042SErik.Nordmark@Sun.COM 			 */
303111042SErik.Nordmark@Sun.COM 			protocol = ipha->ipha_protocol;
303211042SErik.Nordmark@Sun.COM 			ira->ira_protocol = protocol;
303311042SErik.Nordmark@Sun.COM 			goto iptun;
303411042SErik.Nordmark@Sun.COM 		}
303511042SErik.Nordmark@Sun.COM 
303611042SErik.Nordmark@Sun.COM 		/* Update based on removed IP header */
303711042SErik.Nordmark@Sun.COM 		ira->ira_ip_hdr_length = ip_hdr_length;
303811042SErik.Nordmark@Sun.COM 		ira->ira_pktlen = ntohs(ipha->ipha_length);
303911042SErik.Nordmark@Sun.COM 
304011042SErik.Nordmark@Sun.COM 		if (ira->ira_flags & IRAF_IPSEC_DECAPS) {
304111042SErik.Nordmark@Sun.COM 			/*
304211042SErik.Nordmark@Sun.COM 			 * This packet is self-encapsulated multiple
304311042SErik.Nordmark@Sun.COM 			 * times. We don't want to recurse infinitely.
304411042SErik.Nordmark@Sun.COM 			 * To keep it simple, drop the packet.
304511042SErik.Nordmark@Sun.COM 			 */
304611042SErik.Nordmark@Sun.COM 			BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards);
304711042SErik.Nordmark@Sun.COM 			ip_drop_input("ipIfStatsInDiscards", mp, ill);
304811042SErik.Nordmark@Sun.COM 			freemsg(mp);
304911042SErik.Nordmark@Sun.COM 			return;
305011042SErik.Nordmark@Sun.COM 		}
305111042SErik.Nordmark@Sun.COM 		ASSERT(ira->ira_flags & IRAF_IPSEC_SECURE);
305211042SErik.Nordmark@Sun.COM 		ira->ira_flags |= IRAF_IPSEC_DECAPS;
305311042SErik.Nordmark@Sun.COM 
305411042SErik.Nordmark@Sun.COM 		ip_input_post_ipsec(mp, ira);
305511042SErik.Nordmark@Sun.COM 		return;
305611042SErik.Nordmark@Sun.COM 	}
305711042SErik.Nordmark@Sun.COM 
305811042SErik.Nordmark@Sun.COM 	iptun:	/* IPPROTO_ENCAPS that is not self-encapsulated */
305911042SErik.Nordmark@Sun.COM 	case IPPROTO_IPV6:
306011042SErik.Nordmark@Sun.COM 		/* iptun will verify trusted label */
306111042SErik.Nordmark@Sun.COM 		connp = ipcl_classify_v4(mp, protocol, ip_hdr_length,
306211042SErik.Nordmark@Sun.COM 		    ira, ipst);
306311042SErik.Nordmark@Sun.COM 		if (connp != NULL) {
306411042SErik.Nordmark@Sun.COM 			BUMP_MIB(ill->ill_ip_mib, ipIfStatsHCInDelivers);
306511042SErik.Nordmark@Sun.COM 			ira->ira_ill = ira->ira_rill = NULL;
306611042SErik.Nordmark@Sun.COM 			(connp->conn_recv)(connp, mp, NULL, ira);
306711042SErik.Nordmark@Sun.COM 			CONN_DEC_REF(connp);
306811042SErik.Nordmark@Sun.COM 			ira->ira_ill = ill;
306911042SErik.Nordmark@Sun.COM 			ira->ira_rill = rill;
307011042SErik.Nordmark@Sun.COM 			return;
307111042SErik.Nordmark@Sun.COM 		}
307211042SErik.Nordmark@Sun.COM 		/* FALLTHRU */
307311042SErik.Nordmark@Sun.COM 	default:
307411042SErik.Nordmark@Sun.COM 		/*
307511042SErik.Nordmark@Sun.COM 		 * On a labeled system, we have to check whether the zone
307611042SErik.Nordmark@Sun.COM 		 * itself is permitted to receive raw traffic.
307711042SErik.Nordmark@Sun.COM 		 */
307811042SErik.Nordmark@Sun.COM 		if (ira->ira_flags & IRAF_SYSTEM_LABELED) {
307911042SErik.Nordmark@Sun.COM 			if (!tsol_can_accept_raw(mp, ira, B_FALSE)) {
308011042SErik.Nordmark@Sun.COM 				BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards);
308111042SErik.Nordmark@Sun.COM 				ip_drop_input("ipIfStatsInDiscards", mp, ill);
308211042SErik.Nordmark@Sun.COM 				freemsg(mp);
308311042SErik.Nordmark@Sun.COM 				return;
308411042SErik.Nordmark@Sun.COM 			}
308511042SErik.Nordmark@Sun.COM 		}
308611042SErik.Nordmark@Sun.COM 		break;
308711042SErik.Nordmark@Sun.COM 	}
308811042SErik.Nordmark@Sun.COM 
308911042SErik.Nordmark@Sun.COM 	/*
309011042SErik.Nordmark@Sun.COM 	 * The above input functions may have returned the pulled up message.
309111042SErik.Nordmark@Sun.COM 	 * So ipha need to be reinitialized.
309211042SErik.Nordmark@Sun.COM 	 */
309311042SErik.Nordmark@Sun.COM 	ipha = (ipha_t *)mp->b_rptr;
309411042SErik.Nordmark@Sun.COM 	ira->ira_protocol = protocol = ipha->ipha_protocol;
309511042SErik.Nordmark@Sun.COM 	if (ipst->ips_ipcl_proto_fanout_v4[protocol].connf_head == NULL) {
309611042SErik.Nordmark@Sun.COM 		/*
309711042SErik.Nordmark@Sun.COM 		 * No user-level listener for these packets packets.
309811042SErik.Nordmark@Sun.COM 		 * Check for IPPROTO_ENCAP...
309911042SErik.Nordmark@Sun.COM 		 */
310011042SErik.Nordmark@Sun.COM 		if (protocol == IPPROTO_ENCAP && ipst->ips_ip_g_mrouter) {
310111042SErik.Nordmark@Sun.COM 			/*
310211042SErik.Nordmark@Sun.COM 			 * Check policy here,
310311042SErik.Nordmark@Sun.COM 			 * THEN ship off to ip_mroute_decap().
310411042SErik.Nordmark@Sun.COM 			 *
310511042SErik.Nordmark@Sun.COM 			 * BTW,  If I match a configured IP-in-IP
310611042SErik.Nordmark@Sun.COM 			 * tunnel above, this path will not be reached, and
310711042SErik.Nordmark@Sun.COM 			 * ip_mroute_decap will never be called.
310811042SErik.Nordmark@Sun.COM 			 */
310911042SErik.Nordmark@Sun.COM 			mp = ipsec_check_global_policy(mp, connp,
311011042SErik.Nordmark@Sun.COM 			    ipha, NULL, ira, ns);
311111042SErik.Nordmark@Sun.COM 			if (mp != NULL) {
311211042SErik.Nordmark@Sun.COM 				ip_mroute_decap(mp, ira);
311311042SErik.Nordmark@Sun.COM 			} /* Else we already freed everything! */
311411042SErik.Nordmark@Sun.COM 		} else {
311511042SErik.Nordmark@Sun.COM 			ip_proto_not_sup(mp, ira);
311611042SErik.Nordmark@Sun.COM 		}
311711042SErik.Nordmark@Sun.COM 		return;
311811042SErik.Nordmark@Sun.COM 	}
311911042SErik.Nordmark@Sun.COM 
312011042SErik.Nordmark@Sun.COM 	/*
312111042SErik.Nordmark@Sun.COM 	 * Handle fanout to raw sockets.  There
312211042SErik.Nordmark@Sun.COM 	 * can be more than one stream bound to a particular
312311042SErik.Nordmark@Sun.COM 	 * protocol.  When this is the case, each one gets a copy
312411042SErik.Nordmark@Sun.COM 	 * of any incoming packets.
312511042SErik.Nordmark@Sun.COM 	 */
312611042SErik.Nordmark@Sun.COM 	ASSERT(ira->ira_protocol == ipha->ipha_protocol);
312711042SErik.Nordmark@Sun.COM 	ip_fanout_proto_v4(mp, ipha, ira);
312811042SErik.Nordmark@Sun.COM 	return;
312911042SErik.Nordmark@Sun.COM 
313011042SErik.Nordmark@Sun.COM discard:
313111042SErik.Nordmark@Sun.COM 	BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards);
313211042SErik.Nordmark@Sun.COM 	ip_drop_input("ipIfStatsInDiscards", mp, ill);
313311042SErik.Nordmark@Sun.COM 	freemsg(mp);
313411042SErik.Nordmark@Sun.COM #undef rptr
313511042SErik.Nordmark@Sun.COM }
3136