xref: /illumos-gate/usr/src/uts/common/inet/ip/ip_ire.c (revision 1cb875ae88fb9463b368e725c2444776595895cb)
17c478bd9Sstevel@tonic-gate /*
27c478bd9Sstevel@tonic-gate  * CDDL HEADER START
37c478bd9Sstevel@tonic-gate  *
47c478bd9Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
545916cd2Sjpk  * Common Development and Distribution License (the "License").
645916cd2Sjpk  * You may not use this file except in compliance with the License.
77c478bd9Sstevel@tonic-gate  *
87c478bd9Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
97c478bd9Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
107c478bd9Sstevel@tonic-gate  * See the License for the specific language governing permissions
117c478bd9Sstevel@tonic-gate  * and limitations under the License.
127c478bd9Sstevel@tonic-gate  *
137c478bd9Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
147c478bd9Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
157c478bd9Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
167c478bd9Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
177c478bd9Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
187c478bd9Sstevel@tonic-gate  *
197c478bd9Sstevel@tonic-gate  * CDDL HEADER END
207c478bd9Sstevel@tonic-gate  */
217c478bd9Sstevel@tonic-gate /*
22e11c3f44Smeem  * Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
237c478bd9Sstevel@tonic-gate  * Use is subject to license terms.
247c478bd9Sstevel@tonic-gate  */
257c478bd9Sstevel@tonic-gate /* Copyright (c) 1990 Mentat Inc. */
267c478bd9Sstevel@tonic-gate 
277c478bd9Sstevel@tonic-gate /*
287c478bd9Sstevel@tonic-gate  * This file contains routines that manipulate Internet Routing Entries (IREs).
297c478bd9Sstevel@tonic-gate  */
307c478bd9Sstevel@tonic-gate 
317c478bd9Sstevel@tonic-gate #include <sys/types.h>
327c478bd9Sstevel@tonic-gate #include <sys/stream.h>
337c478bd9Sstevel@tonic-gate #include <sys/stropts.h>
34e11c3f44Smeem #include <sys/strsun.h>
35de8c4a14SErik Nordmark #include <sys/strsubr.h>
367c478bd9Sstevel@tonic-gate #include <sys/ddi.h>
377c478bd9Sstevel@tonic-gate #include <sys/cmn_err.h>
387c478bd9Sstevel@tonic-gate #include <sys/policy.h>
397c478bd9Sstevel@tonic-gate 
407c478bd9Sstevel@tonic-gate #include <sys/systm.h>
417c478bd9Sstevel@tonic-gate #include <sys/kmem.h>
427c478bd9Sstevel@tonic-gate #include <sys/param.h>
437c478bd9Sstevel@tonic-gate #include <sys/socket.h>
447c478bd9Sstevel@tonic-gate #include <net/if.h>
457c478bd9Sstevel@tonic-gate #include <net/route.h>
467c478bd9Sstevel@tonic-gate #include <netinet/in.h>
477c478bd9Sstevel@tonic-gate #include <net/if_dl.h>
487c478bd9Sstevel@tonic-gate #include <netinet/ip6.h>
497c478bd9Sstevel@tonic-gate #include <netinet/icmp6.h>
507c478bd9Sstevel@tonic-gate 
517c478bd9Sstevel@tonic-gate #include <inet/common.h>
527c478bd9Sstevel@tonic-gate #include <inet/mi.h>
537c478bd9Sstevel@tonic-gate #include <inet/ip.h>
547c478bd9Sstevel@tonic-gate #include <inet/ip6.h>
557c478bd9Sstevel@tonic-gate #include <inet/ip_ndp.h>
56c793af95Ssangeeta #include <inet/arp.h>
577c478bd9Sstevel@tonic-gate #include <inet/ip_if.h>
587c478bd9Sstevel@tonic-gate #include <inet/ip_ire.h>
59c793af95Ssangeeta #include <inet/ip_ftable.h>
607c478bd9Sstevel@tonic-gate #include <inet/ip_rts.h>
617c478bd9Sstevel@tonic-gate #include <inet/nd.h>
627c478bd9Sstevel@tonic-gate 
637c478bd9Sstevel@tonic-gate #include <inet/tcp.h>
647c478bd9Sstevel@tonic-gate #include <inet/ipclassifier.h>
657c478bd9Sstevel@tonic-gate #include <sys/zone.h>
66f4b3ec61Sdh155122 #include <sys/cpuvar.h>
67f4b3ec61Sdh155122 
6845916cd2Sjpk #include <sys/tsol/label.h>
6945916cd2Sjpk #include <sys/tsol/tnet.h>
7045916cd2Sjpk 
71c793af95Ssangeeta struct kmem_cache *rt_entry_cache;
72c793af95Ssangeeta 
73bd670b35SErik Nordmark typedef struct nce_clookup_s {
74bd670b35SErik Nordmark 	ipaddr_t ncecl_addr;
75bd670b35SErik Nordmark 	boolean_t ncecl_found;
76bd670b35SErik Nordmark } nce_clookup_t;
77bd670b35SErik Nordmark 
787c478bd9Sstevel@tonic-gate /*
797c478bd9Sstevel@tonic-gate  * Synchronization notes:
807c478bd9Sstevel@tonic-gate  *
817c478bd9Sstevel@tonic-gate  * The fields of the ire_t struct are protected in the following way :
827c478bd9Sstevel@tonic-gate  *
837c478bd9Sstevel@tonic-gate  * ire_next/ire_ptpn
847c478bd9Sstevel@tonic-gate  *
85bd670b35SErik Nordmark  *	- bucket lock of the forwarding table in which is ire stored.
867c478bd9Sstevel@tonic-gate  *
87bd670b35SErik Nordmark  * ire_ill, ire_u *except* ire_gateway_addr[v6], ire_mask,
88bd670b35SErik Nordmark  * ire_type, ire_create_time, ire_masklen, ire_ipversion, ire_flags,
89bd670b35SErik Nordmark  * ire_bucket
907c478bd9Sstevel@tonic-gate  *
917c478bd9Sstevel@tonic-gate  *	- Set in ire_create_v4/v6 and never changes after that. Thus,
927c478bd9Sstevel@tonic-gate  *	  we don't need a lock whenever these fields are accessed.
937c478bd9Sstevel@tonic-gate  *
947c478bd9Sstevel@tonic-gate  *	- ire_bucket and ire_masklen (also set in ire_create) is set in
95bd670b35SErik Nordmark  *        ire_add before inserting in the bucket and never
967c478bd9Sstevel@tonic-gate  *        changes after that. Thus we don't need a lock whenever these
977c478bd9Sstevel@tonic-gate  *	  fields are accessed.
987c478bd9Sstevel@tonic-gate  *
997c478bd9Sstevel@tonic-gate  * ire_gateway_addr_v4[v6]
1007c478bd9Sstevel@tonic-gate  *
1017c478bd9Sstevel@tonic-gate  *	- ire_gateway_addr_v4[v6] is set during ire_create and later modified
1027c478bd9Sstevel@tonic-gate  *	  by rts_setgwr[v6]. As ire_gateway_addr is a uint32_t, updates to
1037c478bd9Sstevel@tonic-gate  *	  it assumed to be atomic and hence the other parts of the code
1047c478bd9Sstevel@tonic-gate  *	  does not use any locks. ire_gateway_addr_v6 updates are not atomic
1057c478bd9Sstevel@tonic-gate  *	  and hence any access to it uses ire_lock to get/set the right value.
1067c478bd9Sstevel@tonic-gate  *
107bd670b35SErik Nordmark  * ire_refcnt, ire_identical_ref
1087c478bd9Sstevel@tonic-gate  *
1097c478bd9Sstevel@tonic-gate  *	- Updated atomically using atomic_add_32
1107c478bd9Sstevel@tonic-gate  *
1117c478bd9Sstevel@tonic-gate  * ire_ssthresh, ire_rtt_sd, ire_rtt, ire_ib_pkt_count, ire_ob_pkt_count
1127c478bd9Sstevel@tonic-gate  *
1137c478bd9Sstevel@tonic-gate  *	- Assumes that 32 bit writes are atomic. No locks. ire_lock is
1147c478bd9Sstevel@tonic-gate  *	  used to serialize updates to ire_ssthresh, ire_rtt_sd, ire_rtt.
1157c478bd9Sstevel@tonic-gate  *
116bd670b35SErik Nordmark  * ire_generation
117bd670b35SErik Nordmark  *	- Under ire_lock
1187c478bd9Sstevel@tonic-gate  *
119bd670b35SErik Nordmark  * ire_nce_cache
120bd670b35SErik Nordmark  *	- Under ire_lock
1217c478bd9Sstevel@tonic-gate  *
122bd670b35SErik Nordmark  * ire_dep_parent (To next IRE in recursive lookup chain)
123bd670b35SErik Nordmark  *	- Under ips_ire_dep_lock. Write held when modifying. Read held when
124bd670b35SErik Nordmark  *	  walking. We also hold ire_lock when modifying to allow the data path
125bd670b35SErik Nordmark  *	  to only acquire ire_lock.
1267c478bd9Sstevel@tonic-gate  *
127bd670b35SErik Nordmark  * ire_dep_parent_generation (Generation number from ire_dep_parent)
128bd670b35SErik Nordmark  *	- Under ips_ire_dep_lock and/or ire_lock. (A read claim on the dep_lock
129bd670b35SErik Nordmark  *	  and ire_lock held when modifying)
1307c478bd9Sstevel@tonic-gate  *
131bd670b35SErik Nordmark  * ire_dep_children (From parent to first child)
132bd670b35SErik Nordmark  * ire_dep_sib_next (linked list of siblings)
133bd670b35SErik Nordmark  * ire_dep_sib_ptpn (linked list of siblings)
134bd670b35SErik Nordmark  *	- Under ips_ire_dep_lock. Write held when modifying. Read held when
135bd670b35SErik Nordmark  *	  walking.
1367c478bd9Sstevel@tonic-gate  *
1377c478bd9Sstevel@tonic-gate  * As we always hold the bucket locks in all the places while accessing
1387c478bd9Sstevel@tonic-gate  * the above values, it is natural to use them for protecting them.
1397c478bd9Sstevel@tonic-gate  *
140bd670b35SErik Nordmark  * We have a forwarding table for IPv4 and IPv6. The IPv6 forwarding table
141219e6466Ssowmini  * (ip_forwarding_table_v6) is an array of pointers to arrays of irb_t
142bd670b35SErik Nordmark  * structures. ip_forwarding_table_v6 is allocated dynamically in
143f4b3ec61Sdh155122  * ire_add_v6. ire_ft_init_lock is used to serialize multiple threads
1447c478bd9Sstevel@tonic-gate  * initializing the same bucket. Once a bucket is initialized, it is never
145f4b3ec61Sdh155122  * de-alloacted. This assumption enables us to access
146f4b3ec61Sdh155122  * ip_forwarding_table_v6[i] without any locks.
1477c478bd9Sstevel@tonic-gate  *
148219e6466Ssowmini  * The forwarding table for IPv4 is a radix tree whose leaves
149219e6466Ssowmini  * are rt_entry structures containing the irb_t for the rt_dst. The irb_t
150219e6466Ssowmini  * for IPv4 is dynamically allocated and freed.
151219e6466Ssowmini  *
1527c478bd9Sstevel@tonic-gate  * Each irb_t - ire bucket structure has a lock to protect
1537c478bd9Sstevel@tonic-gate  * a bucket and the ires residing in the bucket have a back pointer to
1547c478bd9Sstevel@tonic-gate  * the bucket structure. It also has a reference count for the number
1557c478bd9Sstevel@tonic-gate  * of threads walking the bucket - irb_refcnt which is bumped up
156bd670b35SErik Nordmark  * using the irb_refhold function. The flags irb_marks can be
157bd670b35SErik Nordmark  * set to IRB_MARK_CONDEMNED indicating that there are some ires
158bd670b35SErik Nordmark  * in this bucket that are IRE_IS_CONDEMNED and the
1597c478bd9Sstevel@tonic-gate  * last thread to leave the bucket should delete the ires. Usually
160bd670b35SErik Nordmark  * this is done by the irb_refrele function which is used to decrement
161219e6466Ssowmini  * the reference count on a bucket. See comments above irb_t structure
162219e6466Ssowmini  * definition in ip.h for further details.
1637c478bd9Sstevel@tonic-gate  *
164bd670b35SErik Nordmark  * The ire_refhold/ire_refrele functions operate on the ire which increments/
1657c478bd9Sstevel@tonic-gate  * decrements the reference count, ire_refcnt, atomically on the ire.
166bd670b35SErik Nordmark  * ire_refcnt is modified only using those functions. Operations on the IRE
1677c478bd9Sstevel@tonic-gate  * could be described as follows :
1687c478bd9Sstevel@tonic-gate  *
1697c478bd9Sstevel@tonic-gate  * CREATE an ire with reference count initialized to 1.
1707c478bd9Sstevel@tonic-gate  *
1717c478bd9Sstevel@tonic-gate  * ADDITION of an ire holds the bucket lock, checks for duplicates
172bd670b35SErik Nordmark  * and then adds the ire. ire_add returns the ire after
1737c478bd9Sstevel@tonic-gate  * bumping up once more i.e the reference count is 2. This is to avoid
1747c478bd9Sstevel@tonic-gate  * an extra lookup in the functions calling ire_add which wants to
1757c478bd9Sstevel@tonic-gate  * work with the ire after adding.
1767c478bd9Sstevel@tonic-gate  *
177bd670b35SErik Nordmark  * LOOKUP of an ire bumps up the reference count using ire_refhold
178bd670b35SErik Nordmark  * function. It is valid to bump up the referece count of the IRE,
1797c478bd9Sstevel@tonic-gate  * after the lookup has returned an ire. Following are the lookup
1807c478bd9Sstevel@tonic-gate  * functions that return an HELD ire :
1817c478bd9Sstevel@tonic-gate  *
182bd670b35SErik Nordmark  * ire_ftable_lookup[_v6], ire_lookup_multi_ill[_v6]
1837c478bd9Sstevel@tonic-gate  *
1847c478bd9Sstevel@tonic-gate  * DELETION of an ire holds the bucket lock, removes it from the list
1857c478bd9Sstevel@tonic-gate  * and then decrements the reference count for having removed from the list
186bd670b35SErik Nordmark  * by using the ire_refrele function. If some other thread has looked up
1877c478bd9Sstevel@tonic-gate  * the ire, the reference count would have been bumped up and hence
1887c478bd9Sstevel@tonic-gate  * this ire will not be freed once deleted. It will be freed once the
1897c478bd9Sstevel@tonic-gate  * reference count drops to zero.
1907c478bd9Sstevel@tonic-gate  *
1917c478bd9Sstevel@tonic-gate  * Add and Delete acquires the bucket lock as RW_WRITER, while all the
1927c478bd9Sstevel@tonic-gate  * lookups acquire the bucket lock as RW_READER.
1937c478bd9Sstevel@tonic-gate  *
194bd670b35SErik Nordmark  * The general rule is to do the ire_refrele in the function
1957c478bd9Sstevel@tonic-gate  * that is passing the ire as an argument.
1967c478bd9Sstevel@tonic-gate  *
1977c478bd9Sstevel@tonic-gate  * In trying to locate ires the following points are to be noted.
1987c478bd9Sstevel@tonic-gate  *
199bd670b35SErik Nordmark  * IRE_IS_CONDEMNED signifies that the ire has been logically deleted and is
2007c478bd9Sstevel@tonic-gate  * to be ignored when walking the ires using ire_next.
2017c478bd9Sstevel@tonic-gate  *
2027c478bd9Sstevel@tonic-gate  * Zones note:
2037c478bd9Sstevel@tonic-gate  *	Walking IREs within a given zone also walks certain ires in other
2047c478bd9Sstevel@tonic-gate  *	zones.  This is done intentionally.  IRE walks with a specified
2057c478bd9Sstevel@tonic-gate  *	zoneid are used only when doing informational reports, and
2067c478bd9Sstevel@tonic-gate  *	zone users want to see things that they can access. See block
2077c478bd9Sstevel@tonic-gate  *	comment in ire_walk_ill_match().
2087c478bd9Sstevel@tonic-gate  */
2097c478bd9Sstevel@tonic-gate 
2107c478bd9Sstevel@tonic-gate /*
2117c478bd9Sstevel@tonic-gate  * The size of the forwarding table.  We will make sure that it is a
2127c478bd9Sstevel@tonic-gate  * power of 2 in ip_ire_init().
213f4b3ec61Sdh155122  * Setable in /etc/system
2147c478bd9Sstevel@tonic-gate  */
2157c478bd9Sstevel@tonic-gate uint32_t ip6_ftable_hash_size = IP6_FTABLE_HASH_SIZE;
2167c478bd9Sstevel@tonic-gate 
2177c478bd9Sstevel@tonic-gate struct	kmem_cache	*ire_cache;
218bd670b35SErik Nordmark struct	kmem_cache	*ncec_cache;
219bd670b35SErik Nordmark struct	kmem_cache	*nce_cache;
220bd670b35SErik Nordmark 
2217c478bd9Sstevel@tonic-gate static ire_t	ire_null;
2227c478bd9Sstevel@tonic-gate 
223bd670b35SErik Nordmark static ire_t	*ire_add_v4(ire_t *ire);
2247c478bd9Sstevel@tonic-gate static void	ire_delete_v4(ire_t *ire);
225bd670b35SErik Nordmark static void	ire_dep_invalidate_children(ire_t *child);
22645916cd2Sjpk static void	ire_walk_ipvers(pfv_t func, void *arg, uchar_t vers,
227f4b3ec61Sdh155122     zoneid_t zoneid, ip_stack_t *);
2287c478bd9Sstevel@tonic-gate static void	ire_walk_ill_ipvers(uint_t match_flags, uint_t ire_type,
22945916cd2Sjpk     pfv_t func, void *arg, uchar_t vers, ill_t *ill);
2306a8288c7Scarlsonj #ifdef DEBUG
2316a8288c7Scarlsonj static void	ire_trace_cleanup(const ire_t *);
2327c478bd9Sstevel@tonic-gate #endif
2337c478bd9Sstevel@tonic-gate 
2347c478bd9Sstevel@tonic-gate /*
235bd670b35SErik Nordmark  * Following are the functions to increment/decrement the reference
236bd670b35SErik Nordmark  * count of the IREs and IRBs (ire bucket).
237bd670b35SErik Nordmark  *
238bd670b35SErik Nordmark  * 1) We bump up the reference count of an IRE to make sure that
239bd670b35SErik Nordmark  *    it does not get deleted and freed while we are using it.
240bd670b35SErik Nordmark  *    Typically all the lookup functions hold the bucket lock,
241bd670b35SErik Nordmark  *    and look for the IRE. If it finds an IRE, it bumps up the
242bd670b35SErik Nordmark  *    reference count before dropping the lock. Sometimes we *may* want
243bd670b35SErik Nordmark  *    to bump up the reference count after we *looked* up i.e without
244bd670b35SErik Nordmark  *    holding the bucket lock. So, the ire_refhold function does not assert
245bd670b35SErik Nordmark  *    on the bucket lock being held. Any thread trying to delete from
246bd670b35SErik Nordmark  *    the hash bucket can still do so but cannot free the IRE if
247bd670b35SErik Nordmark  *    ire_refcnt is not 0.
248bd670b35SErik Nordmark  *
249bd670b35SErik Nordmark  * 2) We bump up the reference count on the bucket where the IRE resides
250bd670b35SErik Nordmark  *    (IRB), when we want to prevent the IREs getting deleted from a given
251bd670b35SErik Nordmark  *    hash bucket. This makes life easier for ire_walk type functions which
252bd670b35SErik Nordmark  *    wants to walk the IRE list, call a function, but needs to drop
253bd670b35SErik Nordmark  *    the bucket lock to prevent recursive rw_enters. While the
254bd670b35SErik Nordmark  *    lock is dropped, the list could be changed by other threads or
255bd670b35SErik Nordmark  *    the same thread could end up deleting the ire or the ire pointed by
256bd670b35SErik Nordmark  *    ire_next. ire_refholding the ire or ire_next is not sufficient as
257bd670b35SErik Nordmark  *    a delete will still remove the ire from the bucket while we have
258bd670b35SErik Nordmark  *    dropped the lock and hence the ire_next would be NULL. Thus, we
259bd670b35SErik Nordmark  *    need a mechanism to prevent deletions from a given bucket.
260bd670b35SErik Nordmark  *
261bd670b35SErik Nordmark  *    To prevent deletions, we bump up the reference count on the
262bd670b35SErik Nordmark  *    bucket. If the bucket is held, ire_delete just marks both
263bd670b35SErik Nordmark  *    the ire and irb as CONDEMNED. When the
264bd670b35SErik Nordmark  *    reference count on the bucket drops to zero, all the CONDEMNED ires
265bd670b35SErik Nordmark  *    are deleted. We don't have to bump up the reference count on the
266bd670b35SErik Nordmark  *    bucket if we are walking the bucket and never have to drop the bucket
267bd670b35SErik Nordmark  *    lock. Note that irb_refhold does not prevent addition of new ires
268bd670b35SErik Nordmark  *    in the list. It is okay because addition of new ires will not cause
269bd670b35SErik Nordmark  *    ire_next to point to freed memory. We do irb_refhold only when
270bd670b35SErik Nordmark  *    all of the 3 conditions are true :
271bd670b35SErik Nordmark  *
272bd670b35SErik Nordmark  *    1) The code needs to walk the IRE bucket from start to end.
273bd670b35SErik Nordmark  *    2) It may have to drop the bucket lock sometimes while doing (1)
274bd670b35SErik Nordmark  *    3) It does not want any ires to be deleted meanwhile.
275bd670b35SErik Nordmark  */
276bd670b35SErik Nordmark 
277bd670b35SErik Nordmark /*
278bd670b35SErik Nordmark  * Bump up the reference count on the hash bucket - IRB to
279bd670b35SErik Nordmark  * prevent ires from being deleted in this bucket.
280bd670b35SErik Nordmark  */
281bd670b35SErik Nordmark void
282bd670b35SErik Nordmark irb_refhold(irb_t *irb)
283bd670b35SErik Nordmark {
284bd670b35SErik Nordmark 	rw_enter(&irb->irb_lock, RW_WRITER);
285bd670b35SErik Nordmark 	irb->irb_refcnt++;
286bd670b35SErik Nordmark 	ASSERT(irb->irb_refcnt != 0);
287bd670b35SErik Nordmark 	rw_exit(&irb->irb_lock);
288bd670b35SErik Nordmark }
289bd670b35SErik Nordmark 
290bd670b35SErik Nordmark void
291bd670b35SErik Nordmark irb_refhold_locked(irb_t *irb)
292bd670b35SErik Nordmark {
293bd670b35SErik Nordmark 	ASSERT(RW_WRITE_HELD(&irb->irb_lock));
294bd670b35SErik Nordmark 	irb->irb_refcnt++;
295bd670b35SErik Nordmark 	ASSERT(irb->irb_refcnt != 0);
296bd670b35SErik Nordmark }
297bd670b35SErik Nordmark 
298bd670b35SErik Nordmark /*
299bd670b35SErik Nordmark  * Note: when IRB_MARK_DYNAMIC is not set the irb_t
300bd670b35SErik Nordmark  * is statically allocated, so that when the irb_refcnt goes to 0,
301bd670b35SErik Nordmark  * we simply clean up the ire list and continue.
302bd670b35SErik Nordmark  */
303bd670b35SErik Nordmark void
304bd670b35SErik Nordmark irb_refrele(irb_t *irb)
305bd670b35SErik Nordmark {
306bd670b35SErik Nordmark 	if (irb->irb_marks & IRB_MARK_DYNAMIC) {
307bd670b35SErik Nordmark 		irb_refrele_ftable(irb);
308bd670b35SErik Nordmark 	} else {
309bd670b35SErik Nordmark 		rw_enter(&irb->irb_lock, RW_WRITER);
310bd670b35SErik Nordmark 		ASSERT(irb->irb_refcnt != 0);
311bd670b35SErik Nordmark 		if (--irb->irb_refcnt	== 0 &&
312bd670b35SErik Nordmark 		    (irb->irb_marks & IRB_MARK_CONDEMNED)) {
313bd670b35SErik Nordmark 			ire_t *ire_list;
314bd670b35SErik Nordmark 
315bd670b35SErik Nordmark 			ire_list = ire_unlink(irb);
316bd670b35SErik Nordmark 			rw_exit(&irb->irb_lock);
317bd670b35SErik Nordmark 			ASSERT(ire_list != NULL);
318bd670b35SErik Nordmark 			ire_cleanup(ire_list);
319bd670b35SErik Nordmark 		} else {
320bd670b35SErik Nordmark 			rw_exit(&irb->irb_lock);
321bd670b35SErik Nordmark 		}
322bd670b35SErik Nordmark 	}
323bd670b35SErik Nordmark }
324bd670b35SErik Nordmark 
325bd670b35SErik Nordmark 
326bd670b35SErik Nordmark /*
327bd670b35SErik Nordmark  * Bump up the reference count on the IRE. We cannot assert that the
328bd670b35SErik Nordmark  * bucket lock is being held as it is legal to bump up the reference
329bd670b35SErik Nordmark  * count after the first lookup has returned the IRE without
330bd670b35SErik Nordmark  * holding the lock.
331bd670b35SErik Nordmark  */
332bd670b35SErik Nordmark void
333bd670b35SErik Nordmark ire_refhold(ire_t *ire)
334bd670b35SErik Nordmark {
335bd670b35SErik Nordmark 	atomic_add_32(&(ire)->ire_refcnt, 1);
336bd670b35SErik Nordmark 	ASSERT((ire)->ire_refcnt != 0);
337bd670b35SErik Nordmark #ifdef DEBUG
338bd670b35SErik Nordmark 	ire_trace_ref(ire);
339bd670b35SErik Nordmark #endif
340bd670b35SErik Nordmark }
341bd670b35SErik Nordmark 
342bd670b35SErik Nordmark void
343bd670b35SErik Nordmark ire_refhold_notr(ire_t *ire)
344bd670b35SErik Nordmark {
345bd670b35SErik Nordmark 	atomic_add_32(&(ire)->ire_refcnt, 1);
346bd670b35SErik Nordmark 	ASSERT((ire)->ire_refcnt != 0);
347bd670b35SErik Nordmark }
348bd670b35SErik Nordmark 
349bd670b35SErik Nordmark void
350bd670b35SErik Nordmark ire_refhold_locked(ire_t *ire)
351bd670b35SErik Nordmark {
352bd670b35SErik Nordmark #ifdef DEBUG
353bd670b35SErik Nordmark 	ire_trace_ref(ire);
354bd670b35SErik Nordmark #endif
355bd670b35SErik Nordmark 	ire->ire_refcnt++;
356bd670b35SErik Nordmark }
357bd670b35SErik Nordmark 
358bd670b35SErik Nordmark /*
359bd670b35SErik Nordmark  * Release a ref on an IRE.
3607c478bd9Sstevel@tonic-gate  *
3617c478bd9Sstevel@tonic-gate  * Must not be called while holding any locks. Otherwise if this is
3627c478bd9Sstevel@tonic-gate  * the last reference to be released there is a chance of recursive mutex
3637c478bd9Sstevel@tonic-gate  * panic due to ire_refrele -> ipif_ill_refrele_tail -> qwriter_ip trying
3647c478bd9Sstevel@tonic-gate  * to restart an ioctl. The one exception is when the caller is sure that
3657c478bd9Sstevel@tonic-gate  * this is not the last reference to be released. Eg. if the caller is
3667c478bd9Sstevel@tonic-gate  * sure that the ire has not been deleted and won't be deleted.
367bd670b35SErik Nordmark  *
368bd670b35SErik Nordmark  * In architectures e.g sun4u, where atomic_add_32_nv is just
369bd670b35SErik Nordmark  * a cas, we need to maintain the right memory barrier semantics
370bd670b35SErik Nordmark  * as that of mutex_exit i.e all the loads and stores should complete
371bd670b35SErik Nordmark  * before the cas is executed. membar_exit() does that here.
3727c478bd9Sstevel@tonic-gate  */
3737c478bd9Sstevel@tonic-gate void
3747c478bd9Sstevel@tonic-gate ire_refrele(ire_t *ire)
3757c478bd9Sstevel@tonic-gate {
376bd670b35SErik Nordmark #ifdef DEBUG
377bd670b35SErik Nordmark 	ire_untrace_ref(ire);
378bd670b35SErik Nordmark #endif
379bd670b35SErik Nordmark 	ASSERT((ire)->ire_refcnt != 0);
380bd670b35SErik Nordmark 	membar_exit();
381bd670b35SErik Nordmark 	if (atomic_add_32_nv(&(ire)->ire_refcnt, -1) == 0)
382bd670b35SErik Nordmark 		ire_inactive(ire);
3837c478bd9Sstevel@tonic-gate }
3847c478bd9Sstevel@tonic-gate 
3857c478bd9Sstevel@tonic-gate void
3867c478bd9Sstevel@tonic-gate ire_refrele_notr(ire_t *ire)
3877c478bd9Sstevel@tonic-gate {
388bd670b35SErik Nordmark 	ASSERT((ire)->ire_refcnt != 0);
389bd670b35SErik Nordmark 	membar_exit();
390bd670b35SErik Nordmark 	if (atomic_add_32_nv(&(ire)->ire_refcnt, -1) == 0)
391bd670b35SErik Nordmark 		ire_inactive(ire);
3927c478bd9Sstevel@tonic-gate }
3937c478bd9Sstevel@tonic-gate 
3947c478bd9Sstevel@tonic-gate /*
3957c478bd9Sstevel@tonic-gate  * This function is associated with the IP_IOC_IRE_DELETE[_NO_REPLY]
396bd670b35SErik Nordmark  * IOCTL[s].  The NO_REPLY form is used by TCP to tell IP that it is
397bd670b35SErik Nordmark  * having problems reaching a particular destination.
398bd670b35SErik Nordmark  * This will make IP consider alternate routes (e.g., when there are
399bd670b35SErik Nordmark  * muliple default routes), and it will also make IP discard any (potentially)
400bd670b35SErik Nordmark  * stale redirect.
401bd670b35SErik Nordmark  * Management processes may want to use the version that generates a reply.
4027c478bd9Sstevel@tonic-gate  *
403bd670b35SErik Nordmark  * With the use of NUD like behavior for IPv4/ARP in addition to IPv6
404bd670b35SErik Nordmark  * this function shouldn't be necessary for IP to recover from a bad redirect,
405bd670b35SErik Nordmark  * a bad default router (when there are multiple default routers), or
406bd670b35SErik Nordmark  * a stale ND/ARP entry. But we retain it in any case.
407bd670b35SErik Nordmark  * For instance, this is helpful when TCP suspects a failure before NUD does.
4087c478bd9Sstevel@tonic-gate  */
4097c478bd9Sstevel@tonic-gate int
4107c478bd9Sstevel@tonic-gate ip_ire_delete(queue_t *q, mblk_t *mp, cred_t *ioc_cr)
4117c478bd9Sstevel@tonic-gate {
4127c478bd9Sstevel@tonic-gate 	uchar_t		*addr_ucp;
413bd670b35SErik Nordmark 	uint_t		ipversion;
414bd670b35SErik Nordmark 	sin_t		*sin;
415bd670b35SErik Nordmark 	sin6_t		*sin6;
416bd670b35SErik Nordmark 	ipaddr_t	v4addr;
417bd670b35SErik Nordmark 	in6_addr_t	v6addr;
4187c478bd9Sstevel@tonic-gate 	ire_t		*ire;
4197c478bd9Sstevel@tonic-gate 	ipid_t		*ipid;
4207c478bd9Sstevel@tonic-gate 	zoneid_t	zoneid;
421f4b3ec61Sdh155122 	ip_stack_t	*ipst;
4227c478bd9Sstevel@tonic-gate 
4237c478bd9Sstevel@tonic-gate 	ASSERT(q->q_next == NULL);
424bd670b35SErik Nordmark 	zoneid = IPCL_ZONEID(Q_TO_CONN(q));
425f4b3ec61Sdh155122 	ipst = CONNQ_TO_IPST(q);
4267c478bd9Sstevel@tonic-gate 
4277c478bd9Sstevel@tonic-gate 	/*
4287c478bd9Sstevel@tonic-gate 	 * Check privilege using the ioctl credential; if it is NULL
4297c478bd9Sstevel@tonic-gate 	 * then this is a kernel message and therefor privileged.
4307c478bd9Sstevel@tonic-gate 	 */
431f4b3ec61Sdh155122 	if (ioc_cr != NULL && secpolicy_ip_config(ioc_cr, B_FALSE) != 0)
4327c478bd9Sstevel@tonic-gate 		return (EPERM);
4337c478bd9Sstevel@tonic-gate 
4347c478bd9Sstevel@tonic-gate 	ipid = (ipid_t *)mp->b_rptr;
4357c478bd9Sstevel@tonic-gate 
4367c478bd9Sstevel@tonic-gate 	addr_ucp = mi_offset_param(mp, ipid->ipid_addr_offset,
4377c478bd9Sstevel@tonic-gate 	    ipid->ipid_addr_length);
4387c478bd9Sstevel@tonic-gate 	if (addr_ucp == NULL || !OK_32PTR(addr_ucp))
4397c478bd9Sstevel@tonic-gate 		return (EINVAL);
4407c478bd9Sstevel@tonic-gate 	switch (ipid->ipid_addr_length) {
441bd670b35SErik Nordmark 	case sizeof (sin_t):
4427c478bd9Sstevel@tonic-gate 		/*
4437c478bd9Sstevel@tonic-gate 		 * got complete (sockaddr) address - increment addr_ucp to point
4447c478bd9Sstevel@tonic-gate 		 * at the ip_addr field.
4457c478bd9Sstevel@tonic-gate 		 */
4467c478bd9Sstevel@tonic-gate 		sin = (sin_t *)addr_ucp;
4477c478bd9Sstevel@tonic-gate 		addr_ucp = (uchar_t *)&sin->sin_addr.s_addr;
448bd670b35SErik Nordmark 		ipversion = IPV4_VERSION;
4497c478bd9Sstevel@tonic-gate 		break;
450bd670b35SErik Nordmark 	case sizeof (sin6_t):
451bd670b35SErik Nordmark 		/*
452bd670b35SErik Nordmark 		 * got complete (sockaddr) address - increment addr_ucp to point
453bd670b35SErik Nordmark 		 * at the ip_addr field.
454bd670b35SErik Nordmark 		 */
455bd670b35SErik Nordmark 		sin6 = (sin6_t *)addr_ucp;
456bd670b35SErik Nordmark 		addr_ucp = (uchar_t *)&sin6->sin6_addr;
457bd670b35SErik Nordmark 		ipversion = IPV6_VERSION;
458bd670b35SErik Nordmark 		break;
4597c478bd9Sstevel@tonic-gate 	default:
4607c478bd9Sstevel@tonic-gate 		return (EINVAL);
4617c478bd9Sstevel@tonic-gate 	}
462bd670b35SErik Nordmark 	if (ipversion == IPV4_VERSION) {
4637c478bd9Sstevel@tonic-gate 		/* Extract the destination address. */
464bd670b35SErik Nordmark 		bcopy(addr_ucp, &v4addr, IP_ADDR_LEN);
4657c478bd9Sstevel@tonic-gate 
466bd670b35SErik Nordmark 		ire = ire_ftable_lookup_v4(v4addr, 0, 0, 0, NULL,
467bd670b35SErik Nordmark 		    zoneid, NULL, MATCH_IRE_DSTONLY, 0, ipst, NULL);
468bd670b35SErik Nordmark 	} else {
469bd670b35SErik Nordmark 		/* Extract the destination address. */
470bd670b35SErik Nordmark 		bcopy(addr_ucp, &v6addr, IPV6_ADDR_LEN);
4717c478bd9Sstevel@tonic-gate 
472bd670b35SErik Nordmark 		ire = ire_ftable_lookup_v6(&v6addr, NULL, NULL, 0, NULL,
473bd670b35SErik Nordmark 		    zoneid, NULL, MATCH_IRE_DSTONLY, 0, ipst, NULL);
4747c478bd9Sstevel@tonic-gate 	}
4756bdb8e66Sdd193516 	if (ire != NULL) {
476bd670b35SErik Nordmark 		if (ipversion == IPV4_VERSION) {
4777c478bd9Sstevel@tonic-gate 			ip_rts_change(RTM_LOSING, ire->ire_addr,
4787c478bd9Sstevel@tonic-gate 			    ire->ire_gateway_addr, ire->ire_mask,
479bd670b35SErik Nordmark 			    (Q_TO_CONN(q))->conn_laddr_v4,  0, 0, 0,
480bd670b35SErik Nordmark 			    (RTA_DST | RTA_GATEWAY | RTA_NETMASK | RTA_IFA),
481bd670b35SErik Nordmark 			    ire->ire_ipst);
4827c478bd9Sstevel@tonic-gate 		}
483bd670b35SErik Nordmark 		(void) ire_no_good(ire);
4847c478bd9Sstevel@tonic-gate 		ire_refrele(ire);
4857c478bd9Sstevel@tonic-gate 	}
4867c478bd9Sstevel@tonic-gate 	return (0);
4877c478bd9Sstevel@tonic-gate }
4887c478bd9Sstevel@tonic-gate 
4897c478bd9Sstevel@tonic-gate /*
4907c478bd9Sstevel@tonic-gate  * Initialize the ire that is specific to IPv4 part and call
4917c478bd9Sstevel@tonic-gate  * ire_init_common to finish it.
492bd670b35SErik Nordmark  * Returns zero or errno.
4937c478bd9Sstevel@tonic-gate  */
494bd670b35SErik Nordmark int
495bd670b35SErik Nordmark ire_init_v4(ire_t *ire, uchar_t *addr, uchar_t *mask, uchar_t *gateway,
496bd670b35SErik Nordmark     ushort_t type, ill_t *ill, zoneid_t zoneid, uint_t flags,
497bd670b35SErik Nordmark     tsol_gc_t *gc, ip_stack_t *ipst)
4987c478bd9Sstevel@tonic-gate {
499bd670b35SErik Nordmark 	int error;
500bd670b35SErik Nordmark 
50145916cd2Sjpk 	/*
50245916cd2Sjpk 	 * Reject IRE security attribute creation/initialization
50345916cd2Sjpk 	 * if system is not running in Trusted mode.
50445916cd2Sjpk 	 */
505bd670b35SErik Nordmark 	if (gc != NULL && !is_system_labeled())
506bd670b35SErik Nordmark 		return (EINVAL);
50745916cd2Sjpk 
508f4b3ec61Sdh155122 	BUMP_IRE_STATS(ipst->ips_ire_stats_v4, ire_stats_alloced);
5097c478bd9Sstevel@tonic-gate 
5107c478bd9Sstevel@tonic-gate 	if (addr != NULL)
5117c478bd9Sstevel@tonic-gate 		bcopy(addr, &ire->ire_addr, IP_ADDR_LEN);
512bd670b35SErik Nordmark 	if (gateway != NULL)
513bd670b35SErik Nordmark 		bcopy(gateway, &ire->ire_gateway_addr, IP_ADDR_LEN);
514bd670b35SErik Nordmark 
515bd670b35SErik Nordmark 	/* Make sure we don't have stray values in some fields */
516bd670b35SErik Nordmark 	switch (type) {
517bd670b35SErik Nordmark 	case IRE_LOOPBACK:
518bd670b35SErik Nordmark 		bcopy(&ire->ire_addr, &ire->ire_gateway_addr, IP_ADDR_LEN);
519bd670b35SErik Nordmark 		/* FALLTHRU */
520bd670b35SErik Nordmark 	case IRE_HOST:
521bd670b35SErik Nordmark 	case IRE_BROADCAST:
522bd670b35SErik Nordmark 	case IRE_LOCAL:
523bd670b35SErik Nordmark 	case IRE_IF_CLONE:
524bd670b35SErik Nordmark 		ire->ire_mask = IP_HOST_MASK;
525bd670b35SErik Nordmark 		ire->ire_masklen = IPV4_ABITS;
526bd670b35SErik Nordmark 		break;
527bd670b35SErik Nordmark 	case IRE_PREFIX:
528bd670b35SErik Nordmark 	case IRE_DEFAULT:
529bd670b35SErik Nordmark 	case IRE_IF_RESOLVER:
530bd670b35SErik Nordmark 	case IRE_IF_NORESOLVER:
5317c478bd9Sstevel@tonic-gate 		if (mask != NULL) {
5327c478bd9Sstevel@tonic-gate 			bcopy(mask, &ire->ire_mask, IP_ADDR_LEN);
5337c478bd9Sstevel@tonic-gate 			ire->ire_masklen = ip_mask_to_plen(ire->ire_mask);
5347c478bd9Sstevel@tonic-gate 		}
535bd670b35SErik Nordmark 		break;
536bd670b35SErik Nordmark 	case IRE_MULTICAST:
537bd670b35SErik Nordmark 	case IRE_NOROUTE:
538bd670b35SErik Nordmark 		ASSERT(mask == NULL);
539bd670b35SErik Nordmark 		break;
540bd670b35SErik Nordmark 	default:
541bd670b35SErik Nordmark 		ASSERT(0);
542bd670b35SErik Nordmark 		return (EINVAL);
5437c478bd9Sstevel@tonic-gate 	}
5447c478bd9Sstevel@tonic-gate 
545bd670b35SErik Nordmark 	error = ire_init_common(ire, type, ill, zoneid, flags, IPV4_VERSION,
546bd670b35SErik Nordmark 	    gc, ipst);
547bd670b35SErik Nordmark 	if (error != NULL)
548bd670b35SErik Nordmark 		return (error);
5497c478bd9Sstevel@tonic-gate 
550bd670b35SErik Nordmark 	/* Determine which function pointers to use */
551bd670b35SErik Nordmark 	ire->ire_postfragfn = ip_xmit;		/* Common case */
5527c478bd9Sstevel@tonic-gate 
553bd670b35SErik Nordmark 	switch (ire->ire_type) {
554bd670b35SErik Nordmark 	case IRE_LOCAL:
555bd670b35SErik Nordmark 		ire->ire_sendfn = ire_send_local_v4;
556bd670b35SErik Nordmark 		ire->ire_recvfn = ire_recv_local_v4;
557bd670b35SErik Nordmark 		ASSERT(ire->ire_ill != NULL);
558*1cb875aeSCathy Zhou 		if (ire->ire_ill->ill_flags & ILLF_NOACCEPT)
559bd670b35SErik Nordmark 			ire->ire_recvfn = ire_recv_noaccept_v6;
560bd670b35SErik Nordmark 		break;
561bd670b35SErik Nordmark 	case IRE_LOOPBACK:
562bd670b35SErik Nordmark 		ire->ire_sendfn = ire_send_local_v4;
563bd670b35SErik Nordmark 		ire->ire_recvfn = ire_recv_loopback_v4;
564bd670b35SErik Nordmark 		break;
565bd670b35SErik Nordmark 	case IRE_BROADCAST:
566bd670b35SErik Nordmark 		ire->ire_postfragfn = ip_postfrag_loopcheck;
567bd670b35SErik Nordmark 		ire->ire_sendfn = ire_send_broadcast_v4;
568bd670b35SErik Nordmark 		ire->ire_recvfn = ire_recv_broadcast_v4;
569bd670b35SErik Nordmark 		break;
570bd670b35SErik Nordmark 	case IRE_MULTICAST:
571bd670b35SErik Nordmark 		ire->ire_postfragfn = ip_postfrag_loopcheck;
572bd670b35SErik Nordmark 		ire->ire_sendfn = ire_send_multicast_v4;
573bd670b35SErik Nordmark 		ire->ire_recvfn = ire_recv_multicast_v4;
574bd670b35SErik Nordmark 		break;
575bd670b35SErik Nordmark 	default:
576bd670b35SErik Nordmark 		/*
577bd670b35SErik Nordmark 		 * For IRE_IF_ALL and IRE_OFFLINK we forward received
578bd670b35SErik Nordmark 		 * packets by default.
579bd670b35SErik Nordmark 		 */
580bd670b35SErik Nordmark 		ire->ire_sendfn = ire_send_wire_v4;
581bd670b35SErik Nordmark 		ire->ire_recvfn = ire_recv_forward_v4;
582bd670b35SErik Nordmark 		break;
583bd670b35SErik Nordmark 	}
584bd670b35SErik Nordmark 	if (ire->ire_flags & (RTF_REJECT|RTF_BLACKHOLE)) {
585bd670b35SErik Nordmark 		ire->ire_sendfn = ire_send_noroute_v4;
586bd670b35SErik Nordmark 		ire->ire_recvfn = ire_recv_noroute_v4;
587bd670b35SErik Nordmark 	} else if (ire->ire_flags & RTF_MULTIRT) {
588bd670b35SErik Nordmark 		ire->ire_postfragfn = ip_postfrag_multirt_v4;
589bd670b35SErik Nordmark 		ire->ire_sendfn = ire_send_multirt_v4;
590bd670b35SErik Nordmark 		/* Multirt receive of broadcast uses ire_recv_broadcast_v4 */
591bd670b35SErik Nordmark 		if (ire->ire_type != IRE_BROADCAST)
592bd670b35SErik Nordmark 			ire->ire_recvfn = ire_recv_multirt_v4;
593bd670b35SErik Nordmark 	}
594bd670b35SErik Nordmark 	ire->ire_nce_capable = ire_determine_nce_capable(ire);
595bd670b35SErik Nordmark 	return (0);
5967c478bd9Sstevel@tonic-gate }
5977c478bd9Sstevel@tonic-gate 
5987c478bd9Sstevel@tonic-gate /*
599bd670b35SErik Nordmark  * Determine ire_nce_capable
6007c478bd9Sstevel@tonic-gate  */
601bd670b35SErik Nordmark boolean_t
602bd670b35SErik Nordmark ire_determine_nce_capable(ire_t *ire)
6037c478bd9Sstevel@tonic-gate {
604bd670b35SErik Nordmark 	int max_masklen;
6057c478bd9Sstevel@tonic-gate 
606bd670b35SErik Nordmark 	if ((ire->ire_flags & (RTF_REJECT|RTF_BLACKHOLE)) ||
607bd670b35SErik Nordmark 	    (ire->ire_type & IRE_MULTICAST))
608bd670b35SErik Nordmark 		return (B_TRUE);
6097c478bd9Sstevel@tonic-gate 
610bd670b35SErik Nordmark 	if (ire->ire_ipversion == IPV4_VERSION)
611bd670b35SErik Nordmark 		max_masklen = IPV4_ABITS;
612bd670b35SErik Nordmark 	else
613bd670b35SErik Nordmark 		max_masklen = IPV6_ABITS;
6147c478bd9Sstevel@tonic-gate 
615bd670b35SErik Nordmark 	if ((ire->ire_type & IRE_ONLINK) && ire->ire_masklen == max_masklen)
616bd670b35SErik Nordmark 		return (B_TRUE);
617bd670b35SErik Nordmark 	return (B_FALSE);
6187c478bd9Sstevel@tonic-gate }
6197c478bd9Sstevel@tonic-gate 
6207c478bd9Sstevel@tonic-gate /*
6217c478bd9Sstevel@tonic-gate  * ire_create is called to allocate and initialize a new IRE.
6227c478bd9Sstevel@tonic-gate  *
6237c478bd9Sstevel@tonic-gate  * NOTE : This is called as writer sometimes though not required
6247c478bd9Sstevel@tonic-gate  * by this function.
6257c478bd9Sstevel@tonic-gate  */
6267c478bd9Sstevel@tonic-gate ire_t *
627bd670b35SErik Nordmark ire_create(uchar_t *addr, uchar_t *mask, uchar_t *gateway,
628bd670b35SErik Nordmark     ushort_t type, ill_t *ill, zoneid_t zoneid, uint_t flags, tsol_gc_t *gc,
629bd670b35SErik Nordmark     ip_stack_t *ipst)
6307c478bd9Sstevel@tonic-gate {
6317c478bd9Sstevel@tonic-gate 	ire_t	*ire;
632bd670b35SErik Nordmark 	int	error;
6337c478bd9Sstevel@tonic-gate 
6347c478bd9Sstevel@tonic-gate 	ire = kmem_cache_alloc(ire_cache, KM_NOSLEEP);
6357c478bd9Sstevel@tonic-gate 	if (ire == NULL) {
636bd670b35SErik Nordmark 		DTRACE_PROBE(kmem__cache__alloc);
6377c478bd9Sstevel@tonic-gate 		return (NULL);
6387c478bd9Sstevel@tonic-gate 	}
6397c478bd9Sstevel@tonic-gate 	*ire = ire_null;
6407c478bd9Sstevel@tonic-gate 
641bd670b35SErik Nordmark 	error = ire_init_v4(ire, addr, mask, gateway, type, ill, zoneid, flags,
642bd670b35SErik Nordmark 	    gc, ipst);
643bd670b35SErik Nordmark 	if (error != 0) {
644bd670b35SErik Nordmark 		DTRACE_PROBE2(ire__init, ire_t *, ire, int, error);
6457c478bd9Sstevel@tonic-gate 		kmem_cache_free(ire_cache, ire);
6467c478bd9Sstevel@tonic-gate 		return (NULL);
6477c478bd9Sstevel@tonic-gate 	}
6487c478bd9Sstevel@tonic-gate 	return (ire);
6497c478bd9Sstevel@tonic-gate }
6507c478bd9Sstevel@tonic-gate 
6517c478bd9Sstevel@tonic-gate /*
6527c478bd9Sstevel@tonic-gate  * Common to IPv4 and IPv6
653bd670b35SErik Nordmark  * Returns zero or errno.
6547c478bd9Sstevel@tonic-gate  */
655bd670b35SErik Nordmark int
656bd670b35SErik Nordmark ire_init_common(ire_t *ire, ushort_t type, ill_t *ill, zoneid_t zoneid,
657bd670b35SErik Nordmark     uint_t flags, uchar_t ipversion, tsol_gc_t *gc, ip_stack_t *ipst)
6587c478bd9Sstevel@tonic-gate {
659bd670b35SErik Nordmark 	int error;
6607c478bd9Sstevel@tonic-gate 
66145916cd2Sjpk #ifdef DEBUG
662bd670b35SErik Nordmark 	if (ill != NULL) {
663bd670b35SErik Nordmark 		if (ill->ill_isv6)
6647c478bd9Sstevel@tonic-gate 			ASSERT(ipversion == IPV6_VERSION);
6657c478bd9Sstevel@tonic-gate 		else
6667c478bd9Sstevel@tonic-gate 			ASSERT(ipversion == IPV4_VERSION);
6677c478bd9Sstevel@tonic-gate 	}
66845916cd2Sjpk #endif /* DEBUG */
66945916cd2Sjpk 
67045916cd2Sjpk 	/*
67145916cd2Sjpk 	 * Create/initialize IRE security attribute only in Trusted mode;
672bd670b35SErik Nordmark 	 * if the passed in gc is non-NULL, we expect that the caller
67345916cd2Sjpk 	 * has held a reference to it and will release it when this routine
67445916cd2Sjpk 	 * returns a failure, otherwise we own the reference.  We do this
67545916cd2Sjpk 	 * prior to initializing the rest IRE fields.
67645916cd2Sjpk 	 */
67745916cd2Sjpk 	if (is_system_labeled()) {
67845916cd2Sjpk 		if ((type & (IRE_LOCAL | IRE_LOOPBACK | IRE_BROADCAST |
679bd670b35SErik Nordmark 		    IRE_IF_ALL | IRE_MULTICAST | IRE_NOROUTE)) != 0) {
68045916cd2Sjpk 			/* release references on behalf of caller */
68145916cd2Sjpk 			if (gc != NULL)
68245916cd2Sjpk 				GC_REFRELE(gc);
683bd670b35SErik Nordmark 		} else {
684bd670b35SErik Nordmark 			error = tsol_ire_init_gwattr(ire, ipversion, gc);
685bd670b35SErik Nordmark 			if (error != 0)
686bd670b35SErik Nordmark 				return (error);
68745916cd2Sjpk 		}
68845916cd2Sjpk 	}
6897c478bd9Sstevel@tonic-gate 
6907c478bd9Sstevel@tonic-gate 	ire->ire_type = type;
6917c478bd9Sstevel@tonic-gate 	ire->ire_flags = RTF_UP | flags;
6927c478bd9Sstevel@tonic-gate 	ire->ire_create_time = (uint32_t)gethrestime_sec();
693bd670b35SErik Nordmark 	ire->ire_generation = IRE_GENERATION_INITIAL;
6947c478bd9Sstevel@tonic-gate 
6957c478bd9Sstevel@tonic-gate 	/*
696bd670b35SErik Nordmark 	 * The ill_ire_cnt isn't increased until
697bd670b35SErik Nordmark 	 * the IRE is added to ensure that a walker will find
698bd670b35SErik Nordmark 	 * all IREs that hold a reference on an ill.
6997c478bd9Sstevel@tonic-gate 	 *
700bd670b35SErik Nordmark 	 * Note that ill_ire_multicast doesn't hold a ref on the ill since
701bd670b35SErik Nordmark 	 * ire_add() is not called for the IRE_MULTICAST.
7027c478bd9Sstevel@tonic-gate 	 */
703bd670b35SErik Nordmark 	ire->ire_ill = ill;
704bd670b35SErik Nordmark 	ire->ire_zoneid = zoneid;
7057c478bd9Sstevel@tonic-gate 	ire->ire_ipversion = ipversion;
706bd670b35SErik Nordmark 
7077c478bd9Sstevel@tonic-gate 	mutex_init(&ire->ire_lock, NULL, MUTEX_DEFAULT, NULL);
708c793af95Ssangeeta 	ire->ire_refcnt = 1;
709bd670b35SErik Nordmark 	ire->ire_identical_ref = 1;	/* Number of ire_delete's needed */
710f4b3ec61Sdh155122 	ire->ire_ipst = ipst;	/* No netstack_hold */
7116a8288c7Scarlsonj 	ire->ire_trace_disable = B_FALSE;
71245916cd2Sjpk 
713bd670b35SErik Nordmark 	return (0);
7147c478bd9Sstevel@tonic-gate }
7157c478bd9Sstevel@tonic-gate 
7167c478bd9Sstevel@tonic-gate /*
717bd670b35SErik Nordmark  * This creates an IRE_BROADCAST based on the arguments.
718bd670b35SErik Nordmark  * A mirror is ire_lookup_bcast().
7197c478bd9Sstevel@tonic-gate  *
720bd670b35SErik Nordmark  * Any supression of unneeded ones is done in ire_add_v4.
721bd670b35SErik Nordmark  * We add one IRE_BROADCAST per address. ire_send_broadcast_v4()
722bd670b35SErik Nordmark  * takes care of generating a loopback copy of the packet.
7237c478bd9Sstevel@tonic-gate  */
7247c478bd9Sstevel@tonic-gate ire_t **
725bd670b35SErik Nordmark ire_create_bcast(ill_t *ill, ipaddr_t addr, zoneid_t zoneid, ire_t **irep)
7267c478bd9Sstevel@tonic-gate {
727e11c3f44Smeem 	ip_stack_t	*ipst = ill->ill_ipst;
7287c478bd9Sstevel@tonic-gate 
729bd670b35SErik Nordmark 	ASSERT(IAM_WRITER_ILL(ill));
730f4b3ec61Sdh155122 
7317c478bd9Sstevel@tonic-gate 	*irep++ = ire_create(
7327c478bd9Sstevel@tonic-gate 	    (uchar_t *)&addr,			/* dest addr */
7337c478bd9Sstevel@tonic-gate 	    (uchar_t *)&ip_g_all_ones,		/* mask */
7347c478bd9Sstevel@tonic-gate 	    NULL,				/* no gateway */
7357c478bd9Sstevel@tonic-gate 	    IRE_BROADCAST,
736bd670b35SErik Nordmark 	    ill,
737bd670b35SErik Nordmark 	    zoneid,
738bd670b35SErik Nordmark 	    RTF_KERNEL,
739f4b3ec61Sdh155122 	    NULL,
740f4b3ec61Sdh155122 	    ipst);
7417c478bd9Sstevel@tonic-gate 
7427c478bd9Sstevel@tonic-gate 	return (irep);
7437c478bd9Sstevel@tonic-gate }
7447c478bd9Sstevel@tonic-gate 
7457c478bd9Sstevel@tonic-gate /*
746bd670b35SErik Nordmark  * This looks up an IRE_BROADCAST based on the arguments.
747bd670b35SErik Nordmark  * Mirrors ire_create_bcast().
7487c478bd9Sstevel@tonic-gate  */
7497c478bd9Sstevel@tonic-gate ire_t *
750bd670b35SErik Nordmark ire_lookup_bcast(ill_t *ill, ipaddr_t addr, zoneid_t zoneid)
7517c478bd9Sstevel@tonic-gate {
7527c478bd9Sstevel@tonic-gate 	ire_t		*ire;
753bd670b35SErik Nordmark 	int		match_args;
7547c478bd9Sstevel@tonic-gate 
755bd670b35SErik Nordmark 	match_args = MATCH_IRE_TYPE | MATCH_IRE_ILL | MATCH_IRE_GW |
756bd670b35SErik Nordmark 	    MATCH_IRE_MASK | MATCH_IRE_ZONEONLY;
757bd670b35SErik Nordmark 
758bd670b35SErik Nordmark 	if (IS_UNDER_IPMP(ill))
759bd670b35SErik Nordmark 		match_args |= MATCH_IRE_TESTHIDDEN;
760bd670b35SErik Nordmark 
761bd670b35SErik Nordmark 	ire = ire_ftable_lookup_v4(
762bd670b35SErik Nordmark 	    addr,				/* dest addr */
763bd670b35SErik Nordmark 	    ip_g_all_ones,			/* mask */
764bd670b35SErik Nordmark 	    0,					/* no gateway */
765bd670b35SErik Nordmark 	    IRE_BROADCAST,
766bd670b35SErik Nordmark 	    ill,
767bd670b35SErik Nordmark 	    zoneid,
768bd670b35SErik Nordmark 	    NULL,
769bd670b35SErik Nordmark 	    match_args,
770bd670b35SErik Nordmark 	    0,
771bd670b35SErik Nordmark 	    ill->ill_ipst,
772bd670b35SErik Nordmark 	    NULL);
7737c478bd9Sstevel@tonic-gate 	return (ire);
7747c478bd9Sstevel@tonic-gate }
7757c478bd9Sstevel@tonic-gate 
7767c478bd9Sstevel@tonic-gate /* Arrange to call the specified function for every IRE in the world. */
7777c478bd9Sstevel@tonic-gate void
778f4b3ec61Sdh155122 ire_walk(pfv_t func, void *arg, ip_stack_t *ipst)
7797c478bd9Sstevel@tonic-gate {
780f4b3ec61Sdh155122 	ire_walk_ipvers(func, arg, 0, ALL_ZONES, ipst);
7817c478bd9Sstevel@tonic-gate }
7827c478bd9Sstevel@tonic-gate 
7837c478bd9Sstevel@tonic-gate void
784f4b3ec61Sdh155122 ire_walk_v4(pfv_t func, void *arg, zoneid_t zoneid, ip_stack_t *ipst)
7857c478bd9Sstevel@tonic-gate {
786f4b3ec61Sdh155122 	ire_walk_ipvers(func, arg, IPV4_VERSION, zoneid, ipst);
7877c478bd9Sstevel@tonic-gate }
7887c478bd9Sstevel@tonic-gate 
7897c478bd9Sstevel@tonic-gate void
790f4b3ec61Sdh155122 ire_walk_v6(pfv_t func, void *arg, zoneid_t zoneid, ip_stack_t *ipst)
7917c478bd9Sstevel@tonic-gate {
792f4b3ec61Sdh155122 	ire_walk_ipvers(func, arg, IPV6_VERSION, zoneid, ipst);
7937c478bd9Sstevel@tonic-gate }
7947c478bd9Sstevel@tonic-gate 
7957c478bd9Sstevel@tonic-gate /*
7967c478bd9Sstevel@tonic-gate  * Walk a particular version. version == 0 means both v4 and v6.
7977c478bd9Sstevel@tonic-gate  */
7987c478bd9Sstevel@tonic-gate static void
799f4b3ec61Sdh155122 ire_walk_ipvers(pfv_t func, void *arg, uchar_t vers, zoneid_t zoneid,
800f4b3ec61Sdh155122     ip_stack_t *ipst)
8017c478bd9Sstevel@tonic-gate {
8027c478bd9Sstevel@tonic-gate 	if (vers != IPV6_VERSION) {
803c793af95Ssangeeta 		/*
804c793af95Ssangeeta 		 * ip_forwarding_table variable doesn't matter for IPv4 since
805f4b3ec61Sdh155122 		 * ire_walk_ill_tables uses ips_ip_ftable for IPv4.
806c793af95Ssangeeta 		 */
8077c478bd9Sstevel@tonic-gate 		ire_walk_ill_tables(0, 0, func, arg, IP_MASK_TABLE_SIZE,
808c793af95Ssangeeta 		    0, NULL,
809f4b3ec61Sdh155122 		    NULL, zoneid, ipst);
8107c478bd9Sstevel@tonic-gate 	}
8117c478bd9Sstevel@tonic-gate 	if (vers != IPV4_VERSION) {
8127c478bd9Sstevel@tonic-gate 		ire_walk_ill_tables(0, 0, func, arg, IP6_MASK_TABLE_SIZE,
813f4b3ec61Sdh155122 		    ipst->ips_ip6_ftable_hash_size,
814f4b3ec61Sdh155122 		    ipst->ips_ip_forwarding_table_v6,
815bd670b35SErik Nordmark 		    NULL, zoneid, ipst);
8167c478bd9Sstevel@tonic-gate 	}
8177c478bd9Sstevel@tonic-gate }
8187c478bd9Sstevel@tonic-gate 
8197c478bd9Sstevel@tonic-gate /*
8207924222fSmeem  * Arrange to call the specified function for every IRE that matches the ill.
8217c478bd9Sstevel@tonic-gate  */
8227c478bd9Sstevel@tonic-gate void
82345916cd2Sjpk ire_walk_ill(uint_t match_flags, uint_t ire_type, pfv_t func, void *arg,
8247c478bd9Sstevel@tonic-gate     ill_t *ill)
8257c478bd9Sstevel@tonic-gate {
8267924222fSmeem 	uchar_t vers = (ill->ill_isv6 ? IPV6_VERSION : IPV4_VERSION);
8277924222fSmeem 
8287924222fSmeem 	ire_walk_ill_ipvers(match_flags, ire_type, func, arg, vers, ill);
8297c478bd9Sstevel@tonic-gate }
8307c478bd9Sstevel@tonic-gate 
8317c478bd9Sstevel@tonic-gate /*
8327924222fSmeem  * Walk a particular ill and version.
8337c478bd9Sstevel@tonic-gate  */
8347c478bd9Sstevel@tonic-gate static void
8357c478bd9Sstevel@tonic-gate ire_walk_ill_ipvers(uint_t match_flags, uint_t ire_type, pfv_t func,
83645916cd2Sjpk     void *arg, uchar_t vers, ill_t *ill)
8377c478bd9Sstevel@tonic-gate {
838f4b3ec61Sdh155122 	ip_stack_t	*ipst = ill->ill_ipst;
839f4b3ec61Sdh155122 
8407924222fSmeem 	if (vers == IPV4_VERSION) {
8417c478bd9Sstevel@tonic-gate 		ire_walk_ill_tables(match_flags, ire_type, func, arg,
842bd670b35SErik Nordmark 		    IP_MASK_TABLE_SIZE,
843bd670b35SErik Nordmark 		    0, NULL,
844bd670b35SErik Nordmark 		    ill, ALL_ZONES, ipst);
845bd670b35SErik Nordmark 	}
846bd670b35SErik Nordmark 	if (vers != IPV4_VERSION) {
8477c478bd9Sstevel@tonic-gate 		ire_walk_ill_tables(match_flags, ire_type, func, arg,
848f4b3ec61Sdh155122 		    IP6_MASK_TABLE_SIZE, ipst->ips_ip6_ftable_hash_size,
849f4b3ec61Sdh155122 		    ipst->ips_ip_forwarding_table_v6,
850bd670b35SErik Nordmark 		    ill, ALL_ZONES, ipst);
8517c478bd9Sstevel@tonic-gate 	}
8527c478bd9Sstevel@tonic-gate }
8537c478bd9Sstevel@tonic-gate 
854bd670b35SErik Nordmark /*
855bd670b35SErik Nordmark  * Do the specific matching of IREs to shared-IP zones.
856bd670b35SErik Nordmark  *
857bd670b35SErik Nordmark  * We have the same logic as in ire_match_args but implemented slightly
858bd670b35SErik Nordmark  * differently.
859bd670b35SErik Nordmark  */
860c793af95Ssangeeta boolean_t
8617c478bd9Sstevel@tonic-gate ire_walk_ill_match(uint_t match_flags, uint_t ire_type, ire_t *ire,
862f4b3ec61Sdh155122     ill_t *ill, zoneid_t zoneid, ip_stack_t *ipst)
8637c478bd9Sstevel@tonic-gate {
864bd670b35SErik Nordmark 	ill_t *dst_ill = NULL;
8657c478bd9Sstevel@tonic-gate 
8667c478bd9Sstevel@tonic-gate 	ASSERT(match_flags != 0 || zoneid != ALL_ZONES);
867e11c3f44Smeem 	if (match_flags & MATCH_IRE_ILL) {
868bd670b35SErik Nordmark 		dst_ill = ire->ire_ill;
8697c478bd9Sstevel@tonic-gate 	}
8707c478bd9Sstevel@tonic-gate 
871bd670b35SErik Nordmark 	if (zoneid != ALL_ZONES && zoneid != ire->ire_zoneid &&
872bd670b35SErik Nordmark 	    ire->ire_zoneid != ALL_ZONES) {
8737c478bd9Sstevel@tonic-gate 		/*
8747c478bd9Sstevel@tonic-gate 		 * We're walking the IREs for a specific zone. The only relevant
8757c478bd9Sstevel@tonic-gate 		 * IREs are:
8767c478bd9Sstevel@tonic-gate 		 * - all IREs with a matching ire_zoneid
877bd670b35SErik Nordmark 		 * - IRE_IF_ALL IREs for interfaces with a usable source addr
8787c478bd9Sstevel@tonic-gate 		 *   with a matching zone
879bd670b35SErik Nordmark 		 * - IRE_OFFLINK with a gateway reachable from the zone
880bd670b35SErik Nordmark 		 * Note that ealier we only did the IRE_OFFLINK check for
881bd670b35SErik Nordmark 		 * IRE_DEFAULT (and only when we had multiple IRE_DEFAULTs).
8827c478bd9Sstevel@tonic-gate 		 */
883bd670b35SErik Nordmark 		dst_ill = ire->ire_ill;
884bd670b35SErik Nordmark 
885bd670b35SErik Nordmark 		if (ire->ire_type & IRE_ONLINK) {
886bd670b35SErik Nordmark 			uint_t	ifindex;
887bd670b35SErik Nordmark 
8887c478bd9Sstevel@tonic-gate 			/*
889bd670b35SErik Nordmark 			 * Note there is no IRE_INTERFACE on vniN thus
890bd670b35SErik Nordmark 			 * can't do an IRE lookup for a matching route.
8917c478bd9Sstevel@tonic-gate 			 */
892bd670b35SErik Nordmark 			ifindex = dst_ill->ill_usesrc_ifindex;
893bd670b35SErik Nordmark 			if (ifindex == 0)
8947c478bd9Sstevel@tonic-gate 				return (B_FALSE);
895bd670b35SErik Nordmark 
8967c478bd9Sstevel@tonic-gate 			/*
897bd670b35SErik Nordmark 			 * If there is a usable source address in the
898bd670b35SErik Nordmark 			 * zone, then it's ok to return an
899bd670b35SErik Nordmark 			 * IRE_INTERFACE
9007c478bd9Sstevel@tonic-gate 			 */
901bd670b35SErik Nordmark 			if (!ipif_zone_avail(ifindex, dst_ill->ill_isv6,
902bd670b35SErik Nordmark 			    zoneid, ipst)) {
9037c478bd9Sstevel@tonic-gate 				return (B_FALSE);
9047c478bd9Sstevel@tonic-gate 			}
9057c478bd9Sstevel@tonic-gate 		}
9067c478bd9Sstevel@tonic-gate 
907bd670b35SErik Nordmark 		if (dst_ill != NULL && (ire->ire_type & IRE_OFFLINK)) {
908bd670b35SErik Nordmark 			ipif_t	*tipif;
909bd670b35SErik Nordmark 
910bd670b35SErik Nordmark 			mutex_enter(&dst_ill->ill_lock);
911bd670b35SErik Nordmark 			for (tipif = dst_ill->ill_ipif;
912bd670b35SErik Nordmark 			    tipif != NULL; tipif = tipif->ipif_next) {
913bd670b35SErik Nordmark 				if (!IPIF_IS_CONDEMNED(tipif) &&
914bd670b35SErik Nordmark 				    (tipif->ipif_flags & IPIF_UP) &&
915bd670b35SErik Nordmark 				    (tipif->ipif_zoneid == zoneid ||
916bd670b35SErik Nordmark 				    tipif->ipif_zoneid == ALL_ZONES))
917bd670b35SErik Nordmark 					break;
918bd670b35SErik Nordmark 			}
919bd670b35SErik Nordmark 			mutex_exit(&dst_ill->ill_lock);
920bd670b35SErik Nordmark 			if (tipif == NULL) {
9217c478bd9Sstevel@tonic-gate 				return (B_FALSE);
9227c478bd9Sstevel@tonic-gate 			}
9237c478bd9Sstevel@tonic-gate 		}
9247c478bd9Sstevel@tonic-gate 
9257c478bd9Sstevel@tonic-gate 		/*
926bd670b35SErik Nordmark 		 * Match all offlink routes from the global zone, irrespective
9275597b60aSnordmark 		 * of reachability. For a non-global zone only match those
928bd670b35SErik Nordmark 		 * where ire_gateway_addr has an IRE_INTERFACE for the zoneid.
9297c478bd9Sstevel@tonic-gate 		 */
930bd670b35SErik Nordmark 		if ((ire->ire_type & IRE_OFFLINK) && zoneid != GLOBAL_ZONEID &&
931bd670b35SErik Nordmark 		    zoneid != ALL_ZONES) {
9327c478bd9Sstevel@tonic-gate 			in6_addr_t gw_addr_v6;
933e11c3f44Smeem 
9347c478bd9Sstevel@tonic-gate 			if (ire->ire_ipversion == IPV4_VERSION) {
935bd670b35SErik Nordmark 				if (!ire_gateway_ok_zone_v4(
936bd670b35SErik Nordmark 				    ire->ire_gateway_addr, zoneid,
937bd670b35SErik Nordmark 				    dst_ill, NULL, ipst, B_FALSE))
938bd670b35SErik Nordmark 					return (B_FALSE);
9397c478bd9Sstevel@tonic-gate 			} else {
9407c478bd9Sstevel@tonic-gate 				ASSERT(ire->ire_ipversion == IPV6_VERSION);
9417c478bd9Sstevel@tonic-gate 				mutex_enter(&ire->ire_lock);
9427c478bd9Sstevel@tonic-gate 				gw_addr_v6 = ire->ire_gateway_addr_v6;
9437c478bd9Sstevel@tonic-gate 				mutex_exit(&ire->ire_lock);
944bd670b35SErik Nordmark 
945bd670b35SErik Nordmark 				if (!ire_gateway_ok_zone_v6(&gw_addr_v6, zoneid,
946bd670b35SErik Nordmark 				    dst_ill, NULL, ipst, B_FALSE))
9477c478bd9Sstevel@tonic-gate 					return (B_FALSE);
9487c478bd9Sstevel@tonic-gate 			}
9497c478bd9Sstevel@tonic-gate 		}
9507c478bd9Sstevel@tonic-gate 	}
9517c478bd9Sstevel@tonic-gate 
9527c478bd9Sstevel@tonic-gate 	if (((!(match_flags & MATCH_IRE_TYPE)) ||
9537c478bd9Sstevel@tonic-gate 	    (ire->ire_type & ire_type)) &&
9547c478bd9Sstevel@tonic-gate 	    ((!(match_flags & MATCH_IRE_ILL)) ||
955bd670b35SErik Nordmark 	    (dst_ill == ill ||
956bd670b35SErik Nordmark 	    dst_ill != NULL && IS_IN_SAME_ILLGRP(dst_ill, ill)))) {
9577c478bd9Sstevel@tonic-gate 		return (B_TRUE);
9587c478bd9Sstevel@tonic-gate 	}
9597c478bd9Sstevel@tonic-gate 	return (B_FALSE);
9607c478bd9Sstevel@tonic-gate }
9617c478bd9Sstevel@tonic-gate 
962c793af95Ssangeeta int
963c793af95Ssangeeta rtfunc(struct radix_node *rn, void *arg)
964c793af95Ssangeeta {
965c793af95Ssangeeta 	struct rtfuncarg *rtf = arg;
966c793af95Ssangeeta 	struct rt_entry *rt;
967c793af95Ssangeeta 	irb_t *irb;
968c793af95Ssangeeta 	ire_t *ire;
969c793af95Ssangeeta 	boolean_t ret;
970c793af95Ssangeeta 
971c793af95Ssangeeta 	rt = (struct rt_entry *)rn;
972c793af95Ssangeeta 	ASSERT(rt != NULL);
973c793af95Ssangeeta 	irb = &rt->rt_irb;
974c793af95Ssangeeta 	for (ire = irb->irb_ire; ire != NULL; ire = ire->ire_next) {
975c793af95Ssangeeta 		if ((rtf->rt_match_flags != 0) ||
976c793af95Ssangeeta 		    (rtf->rt_zoneid != ALL_ZONES)) {
977c793af95Ssangeeta 			ret = ire_walk_ill_match(rtf->rt_match_flags,
978c793af95Ssangeeta 			    rtf->rt_ire_type, ire,
979f4b3ec61Sdh155122 			    rtf->rt_ill, rtf->rt_zoneid, rtf->rt_ipst);
980bd670b35SErik Nordmark 		} else {
981c793af95Ssangeeta 			ret = B_TRUE;
982bd670b35SErik Nordmark 		}
983c793af95Ssangeeta 		if (ret)
984c793af95Ssangeeta 			(*rtf->rt_func)(ire, rtf->rt_arg);
985c793af95Ssangeeta 	}
986c793af95Ssangeeta 	return (0);
987c793af95Ssangeeta }
988c793af95Ssangeeta 
9897c478bd9Sstevel@tonic-gate /*
990bd670b35SErik Nordmark  * Walk the ftable entries that match the ill.
9917c478bd9Sstevel@tonic-gate  */
992c793af95Ssangeeta void
9937c478bd9Sstevel@tonic-gate ire_walk_ill_tables(uint_t match_flags, uint_t ire_type, pfv_t func,
99445916cd2Sjpk     void *arg, size_t ftbl_sz, size_t htbl_sz, irb_t **ipftbl,
995bd670b35SErik Nordmark     ill_t *ill, zoneid_t zoneid,
996f4b3ec61Sdh155122     ip_stack_t *ipst)
9977c478bd9Sstevel@tonic-gate {
9987c478bd9Sstevel@tonic-gate 	irb_t	*irb_ptr;
9997c478bd9Sstevel@tonic-gate 	irb_t	*irb;
10007c478bd9Sstevel@tonic-gate 	ire_t	*ire;
10017c478bd9Sstevel@tonic-gate 	int i, j;
10027c478bd9Sstevel@tonic-gate 	boolean_t ret;
1003c793af95Ssangeeta 	struct rtfuncarg rtfarg;
10047c478bd9Sstevel@tonic-gate 
1005e11c3f44Smeem 	ASSERT((!(match_flags & MATCH_IRE_ILL)) || (ill != NULL));
10067c478bd9Sstevel@tonic-gate 	ASSERT(!(match_flags & MATCH_IRE_TYPE) || (ire_type != 0));
1007bd670b35SErik Nordmark 
1008c793af95Ssangeeta 	/* knobs such that routine is called only for v6 case */
1009f4b3ec61Sdh155122 	if (ipftbl == ipst->ips_ip_forwarding_table_v6) {
10107c478bd9Sstevel@tonic-gate 		for (i = (ftbl_sz - 1);  i >= 0; i--) {
10117c478bd9Sstevel@tonic-gate 			if ((irb_ptr = ipftbl[i]) == NULL)
10127c478bd9Sstevel@tonic-gate 				continue;
10137c478bd9Sstevel@tonic-gate 			for (j = 0; j < htbl_sz; j++) {
10147c478bd9Sstevel@tonic-gate 				irb = &irb_ptr[j];
10157c478bd9Sstevel@tonic-gate 				if (irb->irb_ire == NULL)
10167c478bd9Sstevel@tonic-gate 					continue;
1017c793af95Ssangeeta 
1018bd670b35SErik Nordmark 				irb_refhold(irb);
10197c478bd9Sstevel@tonic-gate 				for (ire = irb->irb_ire; ire != NULL;
10207c478bd9Sstevel@tonic-gate 				    ire = ire->ire_next) {
10217c478bd9Sstevel@tonic-gate 					if (match_flags == 0 &&
10227c478bd9Sstevel@tonic-gate 					    zoneid == ALL_ZONES) {
10237c478bd9Sstevel@tonic-gate 						ret = B_TRUE;
10247c478bd9Sstevel@tonic-gate 					} else {
1025c793af95Ssangeeta 						ret =
1026c793af95Ssangeeta 						    ire_walk_ill_match(
1027c793af95Ssangeeta 						    match_flags,
1028c793af95Ssangeeta 						    ire_type, ire, ill,
1029f4b3ec61Sdh155122 						    zoneid, ipst);
10307c478bd9Sstevel@tonic-gate 					}
10317c478bd9Sstevel@tonic-gate 					if (ret)
10327c478bd9Sstevel@tonic-gate 						(*func)(ire, arg);
10337c478bd9Sstevel@tonic-gate 				}
1034bd670b35SErik Nordmark 				irb_refrele(irb);
10357c478bd9Sstevel@tonic-gate 			}
10367c478bd9Sstevel@tonic-gate 		}
1037c793af95Ssangeeta 	} else {
1038c793af95Ssangeeta 		(void) memset(&rtfarg, 0, sizeof (rtfarg));
1039c793af95Ssangeeta 		rtfarg.rt_func = func;
1040c793af95Ssangeeta 		rtfarg.rt_arg = arg;
1041c793af95Ssangeeta 		if (match_flags != 0) {
1042c793af95Ssangeeta 			rtfarg.rt_match_flags = match_flags;
1043c793af95Ssangeeta 		}
1044c793af95Ssangeeta 		rtfarg.rt_ire_type = ire_type;
1045c793af95Ssangeeta 		rtfarg.rt_ill = ill;
1046c793af95Ssangeeta 		rtfarg.rt_zoneid = zoneid;
1047f4b3ec61Sdh155122 		rtfarg.rt_ipst = ipst;	/* No netstack_hold */
1048f4b3ec61Sdh155122 		(void) ipst->ips_ip_ftable->rnh_walktree_mt(
1049f4b3ec61Sdh155122 		    ipst->ips_ip_ftable,
1050f4b3ec61Sdh155122 		    rtfunc, &rtfarg, irb_refhold_rn, irb_refrele_rn);
1051c793af95Ssangeeta 	}
10527c478bd9Sstevel@tonic-gate }
10537c478bd9Sstevel@tonic-gate 
10547c478bd9Sstevel@tonic-gate /*
10557c478bd9Sstevel@tonic-gate  * This function takes a mask and returns
10567c478bd9Sstevel@tonic-gate  * number of bits set in the mask. If no
10577c478bd9Sstevel@tonic-gate  * bit is set it returns 0.
10587c478bd9Sstevel@tonic-gate  * Assumes a contiguous mask.
10597c478bd9Sstevel@tonic-gate  */
10607c478bd9Sstevel@tonic-gate int
10617c478bd9Sstevel@tonic-gate ip_mask_to_plen(ipaddr_t mask)
10627c478bd9Sstevel@tonic-gate {
10637c478bd9Sstevel@tonic-gate 	return (mask == 0 ? 0 : IP_ABITS - (ffs(ntohl(mask)) -1));
10647c478bd9Sstevel@tonic-gate }
10657c478bd9Sstevel@tonic-gate 
10667c478bd9Sstevel@tonic-gate /*
10677c478bd9Sstevel@tonic-gate  * Convert length for a mask to the mask.
10687c478bd9Sstevel@tonic-gate  */
10697c478bd9Sstevel@tonic-gate ipaddr_t
10707c478bd9Sstevel@tonic-gate ip_plen_to_mask(uint_t masklen)
10717c478bd9Sstevel@tonic-gate {
1072bd670b35SErik Nordmark 	if (masklen == 0)
1073bd670b35SErik Nordmark 		return (0);
1074bd670b35SErik Nordmark 
10757c478bd9Sstevel@tonic-gate 	return (htonl(IP_HOST_MASK << (IP_ABITS - masklen)));
10767c478bd9Sstevel@tonic-gate }
10777c478bd9Sstevel@tonic-gate 
10787c478bd9Sstevel@tonic-gate void
10797c478bd9Sstevel@tonic-gate ire_atomic_end(irb_t *irb_ptr, ire_t *ire)
10807c478bd9Sstevel@tonic-gate {
10817c478bd9Sstevel@tonic-gate 	ill_t		*ill;
10827c478bd9Sstevel@tonic-gate 
1083bd670b35SErik Nordmark 	ill = ire->ire_ill;
1084bd670b35SErik Nordmark 	if (ill != NULL)
1085bd670b35SErik Nordmark 		mutex_exit(&ill->ill_lock);
1086bd670b35SErik Nordmark 	rw_exit(&irb_ptr->irb_lock);
10877c478bd9Sstevel@tonic-gate }
10887c478bd9Sstevel@tonic-gate 
1089bd670b35SErik Nordmark /*
1090bd670b35SErik Nordmark  * ire_add_v[46] atomically make sure that the ill associated
1091bd670b35SErik Nordmark  * with the new ire is not going away i.e., we check ILL_CONDEMNED.
1092bd670b35SErik Nordmark  */
1093bd670b35SErik Nordmark int
1094bd670b35SErik Nordmark ire_atomic_start(irb_t *irb_ptr, ire_t *ire)
1095bd670b35SErik Nordmark {
1096bd670b35SErik Nordmark 	ill_t		*ill;
1097bd670b35SErik Nordmark 
1098bd670b35SErik Nordmark 	ill = ire->ire_ill;
1099bd670b35SErik Nordmark 
1100bd670b35SErik Nordmark 	rw_enter(&irb_ptr->irb_lock, RW_WRITER);
1101bd670b35SErik Nordmark 	if (ill != NULL) {
11027c478bd9Sstevel@tonic-gate 		mutex_enter(&ill->ill_lock);
1103bd670b35SErik Nordmark 
1104bd670b35SErik Nordmark 		/*
1105bd670b35SErik Nordmark 		 * Don't allow IRE's to be created on dying ills.
1106bd670b35SErik Nordmark 		 */
11077c478bd9Sstevel@tonic-gate 		if (ill->ill_state_flags & ILL_CONDEMNED) {
1108bd670b35SErik Nordmark 			ire_atomic_end(irb_ptr, ire);
1109bd670b35SErik Nordmark 			return (ENXIO);
11107c478bd9Sstevel@tonic-gate 		}
11117c478bd9Sstevel@tonic-gate 
1112bd670b35SErik Nordmark 		if (IS_UNDER_IPMP(ill)) {
1113bd670b35SErik Nordmark 			int	error = 0;
1114bd670b35SErik Nordmark 			mutex_enter(&ill->ill_phyint->phyint_lock);
1115bd670b35SErik Nordmark 			if (!ipmp_ill_is_active(ill) &&
1116bd670b35SErik Nordmark 			    IRE_HIDDEN_TYPE(ire->ire_type) &&
1117bd670b35SErik Nordmark 			    !ire->ire_testhidden) {
1118bd670b35SErik Nordmark 				error = EINVAL;
1119dc3879f9Sjarrett 			}
1120bd670b35SErik Nordmark 			mutex_exit(&ill->ill_phyint->phyint_lock);
1121dc3879f9Sjarrett 			if (error != 0) {
1122bd670b35SErik Nordmark 				ire_atomic_end(irb_ptr, ire);
1123dc3879f9Sjarrett 				return (error);
1124dc3879f9Sjarrett 			}
1125dc3879f9Sjarrett 		}
1126bd670b35SErik Nordmark 
1127bd670b35SErik Nordmark 	}
1128bd670b35SErik Nordmark 	return (0);
11297c478bd9Sstevel@tonic-gate }
11307c478bd9Sstevel@tonic-gate 
11317c478bd9Sstevel@tonic-gate /*
1132bd670b35SErik Nordmark  * Add a fully initialized IRE to the forwarding table.
1133bd670b35SErik Nordmark  * This returns NULL on failure, or a held IRE on success.
1134bd670b35SErik Nordmark  * Normally the returned IRE is the same as the argument. But a different
1135bd670b35SErik Nordmark  * IRE will be returned if the added IRE is deemed identical to an existing
1136bd670b35SErik Nordmark  * one. In that case ire_identical_ref will be increased.
1137bd670b35SErik Nordmark  * The caller always needs to do an ire_refrele() on the returned IRE.
11387c478bd9Sstevel@tonic-gate  */
1139bd670b35SErik Nordmark ire_t *
1140bd670b35SErik Nordmark ire_add(ire_t *ire)
1141bd670b35SErik Nordmark {
1142bd670b35SErik Nordmark 	if (IRE_HIDDEN_TYPE(ire->ire_type) &&
1143bd670b35SErik Nordmark 	    ire->ire_ill != NULL && IS_UNDER_IPMP(ire->ire_ill)) {
1144bd670b35SErik Nordmark 		/*
1145bd670b35SErik Nordmark 		 * IREs hosted on interfaces that are under IPMP
1146bd670b35SErik Nordmark 		 * should be hidden so that applications don't
1147bd670b35SErik Nordmark 		 * accidentally end up sending packets with test
1148bd670b35SErik Nordmark 		 * addresses as their source addresses, or
1149bd670b35SErik Nordmark 		 * sending out interfaces that are e.g. IFF_INACTIVE.
1150bd670b35SErik Nordmark 		 * Hide them here.
1151bd670b35SErik Nordmark 		 */
1152bd670b35SErik Nordmark 		ire->ire_testhidden = B_TRUE;
1153bd670b35SErik Nordmark 	}
1154bd670b35SErik Nordmark 
11555c0b7edeSseb 	if (ire->ire_ipversion == IPV6_VERSION)
1156bd670b35SErik Nordmark 		return (ire_add_v6(ire));
11577c478bd9Sstevel@tonic-gate 	else
1158bd670b35SErik Nordmark 		return (ire_add_v4(ire));
11597c478bd9Sstevel@tonic-gate }
11607c478bd9Sstevel@tonic-gate 
11617c478bd9Sstevel@tonic-gate /*
1162bd670b35SErik Nordmark  * Add a fully initialized IPv4 IRE to the forwarding table.
1163bd670b35SErik Nordmark  * This returns NULL on failure, or a held IRE on success.
1164bd670b35SErik Nordmark  * Normally the returned IRE is the same as the argument. But a different
1165bd670b35SErik Nordmark  * IRE will be returned if the added IRE is deemed identical to an existing
1166bd670b35SErik Nordmark  * one. In that case ire_identical_ref will be increased.
1167bd670b35SErik Nordmark  * The caller always needs to do an ire_refrele() on the returned IRE.
11687c478bd9Sstevel@tonic-gate  */
1169bd670b35SErik Nordmark static ire_t *
1170bd670b35SErik Nordmark ire_add_v4(ire_t *ire)
11717c478bd9Sstevel@tonic-gate {
11727c478bd9Sstevel@tonic-gate 	ire_t	*ire1;
11737c478bd9Sstevel@tonic-gate 	irb_t	*irb_ptr;
11747c478bd9Sstevel@tonic-gate 	ire_t	**irep;
1175bd670b35SErik Nordmark 	int	match_flags;
11767c478bd9Sstevel@tonic-gate 	int	error;
1177f4b3ec61Sdh155122 	ip_stack_t	*ipst = ire->ire_ipst;
1178e11c3f44Smeem 
1179bd670b35SErik Nordmark 	if (ire->ire_ill != NULL)
1180bd670b35SErik Nordmark 		ASSERT(!MUTEX_HELD(&ire->ire_ill->ill_lock));
11817c478bd9Sstevel@tonic-gate 	ASSERT(ire->ire_ipversion == IPV4_VERSION);
11827c478bd9Sstevel@tonic-gate 
11837c478bd9Sstevel@tonic-gate 	/* Make sure the address is properly masked. */
11847c478bd9Sstevel@tonic-gate 	ire->ire_addr &= ire->ire_mask;
11857c478bd9Sstevel@tonic-gate 
1186bd670b35SErik Nordmark 	match_flags = (MATCH_IRE_MASK | MATCH_IRE_TYPE | MATCH_IRE_GW);
1187c793af95Ssangeeta 
1188bd670b35SErik Nordmark 	if (ire->ire_ill != NULL) {
1189bd670b35SErik Nordmark 		match_flags |= MATCH_IRE_ILL;
1190bd670b35SErik Nordmark 	}
1191bd670b35SErik Nordmark 	irb_ptr = ire_get_bucket(ire);
1192bd670b35SErik Nordmark 	if (irb_ptr == NULL) {
1193bd670b35SErik Nordmark 		printf("no bucket for %p\n", (void *)ire);
11947c478bd9Sstevel@tonic-gate 		ire_delete(ire);
1195bd670b35SErik Nordmark 		return (NULL);
11967c478bd9Sstevel@tonic-gate 	}
11977c478bd9Sstevel@tonic-gate 
11987c478bd9Sstevel@tonic-gate 	/*
1199bd670b35SErik Nordmark 	 * Start the atomic add of the ire. Grab the ill lock,
1200bd670b35SErik Nordmark 	 * the bucket lock. Check for condemned.
12017c478bd9Sstevel@tonic-gate 	 */
1202bd670b35SErik Nordmark 	error = ire_atomic_start(irb_ptr, ire);
1203bd670b35SErik Nordmark 	if (error != 0) {
1204bd670b35SErik Nordmark 		printf("no ire_atomic_start for %p\n", (void *)ire);
1205bd670b35SErik Nordmark 		ire_delete(ire);
1206bd670b35SErik Nordmark 		irb_refrele(irb_ptr);
1207bd670b35SErik Nordmark 		return (NULL);
1208bd670b35SErik Nordmark 	}
12097c478bd9Sstevel@tonic-gate 	/*
1210e11c3f44Smeem 	 * If we are creating a hidden IRE, make sure we search for
1211e11c3f44Smeem 	 * hidden IREs when searching for duplicates below.
1212e11c3f44Smeem 	 * Otherwise, we might find an IRE on some other interface
1213e11c3f44Smeem 	 * that's not marked hidden.
12147c478bd9Sstevel@tonic-gate 	 */
1215bd670b35SErik Nordmark 	if (ire->ire_testhidden)
1216bd670b35SErik Nordmark 		match_flags |= MATCH_IRE_TESTHIDDEN;
12177c478bd9Sstevel@tonic-gate 
12187c478bd9Sstevel@tonic-gate 	/*
12197c478bd9Sstevel@tonic-gate 	 * Atomically check for duplicate and insert in the table.
12207c478bd9Sstevel@tonic-gate 	 */
12217c478bd9Sstevel@tonic-gate 	for (ire1 = irb_ptr->irb_ire; ire1 != NULL; ire1 = ire1->ire_next) {
1222bd670b35SErik Nordmark 		if (IRE_IS_CONDEMNED(ire1))
12237c478bd9Sstevel@tonic-gate 			continue;
12247c478bd9Sstevel@tonic-gate 		/*
1225bd670b35SErik Nordmark 		 * Here we need an exact match on zoneid, i.e.,
1226bd670b35SErik Nordmark 		 * ire_match_args doesn't fit.
12277c478bd9Sstevel@tonic-gate 		 */
12287c478bd9Sstevel@tonic-gate 		if (ire1->ire_zoneid != ire->ire_zoneid)
12297c478bd9Sstevel@tonic-gate 			continue;
1230bd670b35SErik Nordmark 
1231bd670b35SErik Nordmark 		if (ire1->ire_type != ire->ire_type)
1232bd670b35SErik Nordmark 			continue;
1233bd670b35SErik Nordmark 
1234bd670b35SErik Nordmark 		/*
1235bd670b35SErik Nordmark 		 * Note: We do not allow multiple routes that differ only
1236bd670b35SErik Nordmark 		 * in the gateway security attributes; such routes are
1237bd670b35SErik Nordmark 		 * considered duplicates.
1238bd670b35SErik Nordmark 		 * To change that we explicitly have to treat them as
1239bd670b35SErik Nordmark 		 * different here.
1240bd670b35SErik Nordmark 		 */
12417c478bd9Sstevel@tonic-gate 		if (ire_match_args(ire1, ire->ire_addr, ire->ire_mask,
1242bd670b35SErik Nordmark 		    ire->ire_gateway_addr, ire->ire_type, ire->ire_ill,
1243bd670b35SErik Nordmark 		    ire->ire_zoneid, NULL, match_flags)) {
12447c478bd9Sstevel@tonic-gate 			/*
12457c478bd9Sstevel@tonic-gate 			 * Return the old ire after doing a REFHOLD.
12467c478bd9Sstevel@tonic-gate 			 * As most of the callers continue to use the IRE
12477c478bd9Sstevel@tonic-gate 			 * after adding, we return a held ire. This will
12487c478bd9Sstevel@tonic-gate 			 * avoid a lookup in the caller again. If the callers
12497c478bd9Sstevel@tonic-gate 			 * don't want to use it, they need to do a REFRELE.
12507c478bd9Sstevel@tonic-gate 			 */
1251bd670b35SErik Nordmark 			atomic_add_32(&ire1->ire_identical_ref, 1);
1252bd670b35SErik Nordmark 			DTRACE_PROBE2(ire__add__exist, ire_t *, ire1,
1253bd670b35SErik Nordmark 			    ire_t *, ire);
1254bd670b35SErik Nordmark 			ire_refhold(ire1);
12557c478bd9Sstevel@tonic-gate 			ire_atomic_end(irb_ptr, ire);
12567c478bd9Sstevel@tonic-gate 			ire_delete(ire);
1257bd670b35SErik Nordmark 			irb_refrele(irb_ptr);
1258bd670b35SErik Nordmark 			return (ire1);
12597c478bd9Sstevel@tonic-gate 		}
12607c478bd9Sstevel@tonic-gate 	}
1261e11c3f44Smeem 
1262c793af95Ssangeeta 	/*
1263bd670b35SErik Nordmark 	 * Normally we do head insertion since most things do not care about
1264bd670b35SErik Nordmark 	 * the order of the IREs in the bucket. Note that ip_cgtp_bcast_add
1265bd670b35SErik Nordmark 	 * assumes we at least do head insertion so that its IRE_BROADCAST
1266bd670b35SErik Nordmark 	 * arrive ahead of existing IRE_HOST for the same address.
1267bd670b35SErik Nordmark 	 * However, due to shared-IP zones (and restrict_interzone_loopback)
1268bd670b35SErik Nordmark 	 * we can have an IRE_LOCAL as well as IRE_IF_CLONE for the same
1269bd670b35SErik Nordmark 	 * address. For that reason we do tail insertion for IRE_IF_CLONE.
1270bd670b35SErik Nordmark 	 * Due to the IRE_BROADCAST on cgtp0, which must be last in the bucket,
1271bd670b35SErik Nordmark 	 * we do tail insertion of IRE_BROADCASTs that do not have RTF_MULTIRT
1272bd670b35SErik Nordmark 	 * set.
12737c478bd9Sstevel@tonic-gate 	 */
12747c478bd9Sstevel@tonic-gate 	irep = (ire_t **)irb_ptr;
1275bd670b35SErik Nordmark 	if ((ire->ire_type & IRE_IF_CLONE) ||
1276bd670b35SErik Nordmark 	    ((ire->ire_type & IRE_BROADCAST) &&
1277bd670b35SErik Nordmark 	    !(ire->ire_flags & RTF_MULTIRT))) {
1278bd670b35SErik Nordmark 		while ((ire1 = *irep) != NULL)
12797c478bd9Sstevel@tonic-gate 			irep = &ire1->ire_next;
12807c478bd9Sstevel@tonic-gate 	}
12817c478bd9Sstevel@tonic-gate 	/* Insert at *irep */
12827c478bd9Sstevel@tonic-gate 	ire1 = *irep;
12837c478bd9Sstevel@tonic-gate 	if (ire1 != NULL)
12847c478bd9Sstevel@tonic-gate 		ire1->ire_ptpn = &ire->ire_next;
12857c478bd9Sstevel@tonic-gate 	ire->ire_next = ire1;
12867c478bd9Sstevel@tonic-gate 	/* Link the new one in. */
12877c478bd9Sstevel@tonic-gate 	ire->ire_ptpn = irep;
12887c478bd9Sstevel@tonic-gate 
12897c478bd9Sstevel@tonic-gate 	/*
12907c478bd9Sstevel@tonic-gate 	 * ire_walk routines de-reference ire_next without holding
12917c478bd9Sstevel@tonic-gate 	 * a lock. Before we point to the new ire, we want to make
12927c478bd9Sstevel@tonic-gate 	 * sure the store that sets the ire_next of the new ire
12937c478bd9Sstevel@tonic-gate 	 * reaches global visibility, so that ire_walk routines
12947c478bd9Sstevel@tonic-gate 	 * don't see a truncated list of ires i.e if the ire_next
12957c478bd9Sstevel@tonic-gate 	 * of the new ire gets set after we do "*irep = ire" due
12967c478bd9Sstevel@tonic-gate 	 * to re-ordering, the ire_walk thread will see a NULL
12977c478bd9Sstevel@tonic-gate 	 * once it accesses the ire_next of the new ire.
12987c478bd9Sstevel@tonic-gate 	 * membar_producer() makes sure that the following store
12997c478bd9Sstevel@tonic-gate 	 * happens *after* all of the above stores.
13007c478bd9Sstevel@tonic-gate 	 */
13017c478bd9Sstevel@tonic-gate 	membar_producer();
13027c478bd9Sstevel@tonic-gate 	*irep = ire;
13037c478bd9Sstevel@tonic-gate 	ire->ire_bucket = irb_ptr;
13047c478bd9Sstevel@tonic-gate 	/*
13057c478bd9Sstevel@tonic-gate 	 * We return a bumped up IRE above. Keep it symmetrical
13067c478bd9Sstevel@tonic-gate 	 * so that the callers will always have to release. This
13077c478bd9Sstevel@tonic-gate 	 * helps the callers of this function because they continue
13087c478bd9Sstevel@tonic-gate 	 * to use the IRE after adding and hence they don't have to
13097c478bd9Sstevel@tonic-gate 	 * lookup again after we return the IRE.
13107c478bd9Sstevel@tonic-gate 	 *
13117c478bd9Sstevel@tonic-gate 	 * NOTE : We don't have to use atomics as this is appearing
13127c478bd9Sstevel@tonic-gate 	 * in the list for the first time and no one else can bump
13137c478bd9Sstevel@tonic-gate 	 * up the reference count on this yet.
13147c478bd9Sstevel@tonic-gate 	 */
1315bd670b35SErik Nordmark 	ire_refhold_locked(ire);
1316f4b3ec61Sdh155122 	BUMP_IRE_STATS(ipst->ips_ire_stats_v4, ire_stats_inserted);
1317c793af95Ssangeeta 
13187c478bd9Sstevel@tonic-gate 	irb_ptr->irb_ire_cnt++;
1319bd670b35SErik Nordmark 	if (irb_ptr->irb_marks & IRB_MARK_DYNAMIC)
1320c793af95Ssangeeta 		irb_ptr->irb_nire++;
1321c793af95Ssangeeta 
1322bd670b35SErik Nordmark 	if (ire->ire_ill != NULL) {
1323bd670b35SErik Nordmark 		ire->ire_ill->ill_ire_cnt++;
1324bd670b35SErik Nordmark 		ASSERT(ire->ire_ill->ill_ire_cnt != 0);	/* Wraparound */
13257c478bd9Sstevel@tonic-gate 	}
13267c478bd9Sstevel@tonic-gate 
13277c478bd9Sstevel@tonic-gate 	ire_atomic_end(irb_ptr, ire);
13287c478bd9Sstevel@tonic-gate 
1329bd670b35SErik Nordmark 	/* Make any caching of the IREs be notified or updated */
13307c478bd9Sstevel@tonic-gate 	ire_flush_cache_v4(ire, IRE_FLUSH_ADD);
1331bd670b35SErik Nordmark 
1332bd670b35SErik Nordmark 	if (ire->ire_ill != NULL)
1333bd670b35SErik Nordmark 		ASSERT(!MUTEX_HELD(&ire->ire_ill->ill_lock));
1334bd670b35SErik Nordmark 	irb_refrele(irb_ptr);
1335bd670b35SErik Nordmark 	return (ire);
13367c478bd9Sstevel@tonic-gate }
13377c478bd9Sstevel@tonic-gate 
13387c478bd9Sstevel@tonic-gate /*
1339bd670b35SErik Nordmark  * irb_refrele is the only caller of the function. ire_unlink calls to
13407c478bd9Sstevel@tonic-gate  * do the final cleanup for this ire.
13417c478bd9Sstevel@tonic-gate  */
13427c478bd9Sstevel@tonic-gate void
13437c478bd9Sstevel@tonic-gate ire_cleanup(ire_t *ire)
13447c478bd9Sstevel@tonic-gate {
13457c478bd9Sstevel@tonic-gate 	ire_t *ire_next;
1346f4b3ec61Sdh155122 	ip_stack_t *ipst = ire->ire_ipst;
13477c478bd9Sstevel@tonic-gate 
13487c478bd9Sstevel@tonic-gate 	ASSERT(ire != NULL);
13497c478bd9Sstevel@tonic-gate 
13507c478bd9Sstevel@tonic-gate 	while (ire != NULL) {
13517c478bd9Sstevel@tonic-gate 		ire_next = ire->ire_next;
13527c478bd9Sstevel@tonic-gate 		if (ire->ire_ipversion == IPV4_VERSION) {
13537c478bd9Sstevel@tonic-gate 			ire_delete_v4(ire);
1354f4b3ec61Sdh155122 			BUMP_IRE_STATS(ipst->ips_ire_stats_v4,
1355f4b3ec61Sdh155122 			    ire_stats_deleted);
13567c478bd9Sstevel@tonic-gate 		} else {
13577c478bd9Sstevel@tonic-gate 			ASSERT(ire->ire_ipversion == IPV6_VERSION);
13587c478bd9Sstevel@tonic-gate 			ire_delete_v6(ire);
1359f4b3ec61Sdh155122 			BUMP_IRE_STATS(ipst->ips_ire_stats_v6,
1360f4b3ec61Sdh155122 			    ire_stats_deleted);
13617c478bd9Sstevel@tonic-gate 		}
13627c478bd9Sstevel@tonic-gate 		/*
13637c478bd9Sstevel@tonic-gate 		 * Now it's really out of the list. Before doing the
13647c478bd9Sstevel@tonic-gate 		 * REFRELE, set ire_next to NULL as ire_inactive asserts
13657c478bd9Sstevel@tonic-gate 		 * so.
13667c478bd9Sstevel@tonic-gate 		 */
13677c478bd9Sstevel@tonic-gate 		ire->ire_next = NULL;
1368bd670b35SErik Nordmark 		ire_refrele_notr(ire);
13697c478bd9Sstevel@tonic-gate 		ire = ire_next;
13707c478bd9Sstevel@tonic-gate 	}
13717c478bd9Sstevel@tonic-gate }
13727c478bd9Sstevel@tonic-gate 
13737c478bd9Sstevel@tonic-gate /*
1374bd670b35SErik Nordmark  * irb_refrele is the only caller of the function. It calls to unlink
13757c478bd9Sstevel@tonic-gate  * all the CONDEMNED ires from this bucket.
13767c478bd9Sstevel@tonic-gate  */
13777c478bd9Sstevel@tonic-gate ire_t *
13787c478bd9Sstevel@tonic-gate ire_unlink(irb_t *irb)
13797c478bd9Sstevel@tonic-gate {
13807c478bd9Sstevel@tonic-gate 	ire_t *ire;
13817c478bd9Sstevel@tonic-gate 	ire_t *ire1;
13827c478bd9Sstevel@tonic-gate 	ire_t **ptpn;
13837c478bd9Sstevel@tonic-gate 	ire_t *ire_list = NULL;
13847c478bd9Sstevel@tonic-gate 
13857c478bd9Sstevel@tonic-gate 	ASSERT(RW_WRITE_HELD(&irb->irb_lock));
1386bd670b35SErik Nordmark 	ASSERT(((irb->irb_marks & IRB_MARK_DYNAMIC) && irb->irb_refcnt == 1) ||
1387c793af95Ssangeeta 	    (irb->irb_refcnt == 0));
1388c793af95Ssangeeta 	ASSERT(irb->irb_marks & IRB_MARK_CONDEMNED);
13897c478bd9Sstevel@tonic-gate 	ASSERT(irb->irb_ire != NULL);
13907c478bd9Sstevel@tonic-gate 
13917c478bd9Sstevel@tonic-gate 	for (ire = irb->irb_ire; ire != NULL; ire = ire1) {
13927c478bd9Sstevel@tonic-gate 		ire1 = ire->ire_next;
1393bd670b35SErik Nordmark 		if (IRE_IS_CONDEMNED(ire)) {
13947c478bd9Sstevel@tonic-gate 			ptpn = ire->ire_ptpn;
13957c478bd9Sstevel@tonic-gate 			ire1 = ire->ire_next;
13967c478bd9Sstevel@tonic-gate 			if (ire1)
13977c478bd9Sstevel@tonic-gate 				ire1->ire_ptpn = ptpn;
13987c478bd9Sstevel@tonic-gate 			*ptpn = ire1;
13997c478bd9Sstevel@tonic-gate 			ire->ire_ptpn = NULL;
14007c478bd9Sstevel@tonic-gate 			ire->ire_next = NULL;
1401bd670b35SErik Nordmark 
14027c478bd9Sstevel@tonic-gate 			/*
1403bd670b35SErik Nordmark 			 * We need to call ire_delete_v4 or ire_delete_v6 to
1404bd670b35SErik Nordmark 			 * clean up dependents and the redirects pointing at
14057c478bd9Sstevel@tonic-gate 			 * the default gateway. We need to drop the lock
14067c478bd9Sstevel@tonic-gate 			 * as ire_flush_cache/ire_delete_host_redircts require
14077c478bd9Sstevel@tonic-gate 			 * so. But we can't drop the lock, as ire_unlink needs
14087c478bd9Sstevel@tonic-gate 			 * to atomically remove the ires from the list.
14097c478bd9Sstevel@tonic-gate 			 * So, create a temporary list of CONDEMNED ires
14107c478bd9Sstevel@tonic-gate 			 * for doing ire_delete_v4/ire_delete_v6 operations
14117c478bd9Sstevel@tonic-gate 			 * later on.
14127c478bd9Sstevel@tonic-gate 			 */
14137c478bd9Sstevel@tonic-gate 			ire->ire_next = ire_list;
14147c478bd9Sstevel@tonic-gate 			ire_list = ire;
14157c478bd9Sstevel@tonic-gate 		}
14167c478bd9Sstevel@tonic-gate 	}
1417c793af95Ssangeeta 	irb->irb_marks &= ~IRB_MARK_CONDEMNED;
14187c478bd9Sstevel@tonic-gate 	return (ire_list);
14197c478bd9Sstevel@tonic-gate }
14207c478bd9Sstevel@tonic-gate 
14217c478bd9Sstevel@tonic-gate /*
1422bd670b35SErik Nordmark  * Clean up the radix node for this ire. Must be called by irb_refrele
1423c793af95Ssangeeta  * when there are no ire's left in the bucket. Returns TRUE if the bucket
1424c793af95Ssangeeta  * is deleted and freed.
1425c793af95Ssangeeta  */
1426c793af95Ssangeeta boolean_t
1427c793af95Ssangeeta irb_inactive(irb_t *irb)
1428c793af95Ssangeeta {
1429c793af95Ssangeeta 	struct rt_entry *rt;
1430c793af95Ssangeeta 	struct radix_node *rn;
1431f4b3ec61Sdh155122 	ip_stack_t *ipst = irb->irb_ipst;
1432f4b3ec61Sdh155122 
1433f4b3ec61Sdh155122 	ASSERT(irb->irb_ipst != NULL);
1434c793af95Ssangeeta 
1435c793af95Ssangeeta 	rt = IRB2RT(irb);
1436c793af95Ssangeeta 	rn = (struct radix_node *)rt;
1437c793af95Ssangeeta 
1438c793af95Ssangeeta 	/* first remove it from the radix tree. */
1439f4b3ec61Sdh155122 	RADIX_NODE_HEAD_WLOCK(ipst->ips_ip_ftable);
1440c793af95Ssangeeta 	rw_enter(&irb->irb_lock, RW_WRITER);
1441c793af95Ssangeeta 	if (irb->irb_refcnt == 1 && irb->irb_nire == 0) {
1442f4b3ec61Sdh155122 		rn = ipst->ips_ip_ftable->rnh_deladdr(rn->rn_key, rn->rn_mask,
1443f4b3ec61Sdh155122 		    ipst->ips_ip_ftable);
1444c793af95Ssangeeta 		DTRACE_PROBE1(irb__free, rt_t *,  rt);
1445c793af95Ssangeeta 		ASSERT((void *)rn == (void *)rt);
1446c793af95Ssangeeta 		Free(rt, rt_entry_cache);
1447c793af95Ssangeeta 		/* irb_lock is freed */
1448f4b3ec61Sdh155122 		RADIX_NODE_HEAD_UNLOCK(ipst->ips_ip_ftable);
1449c793af95Ssangeeta 		return (B_TRUE);
1450c793af95Ssangeeta 	}
1451c793af95Ssangeeta 	rw_exit(&irb->irb_lock);
1452f4b3ec61Sdh155122 	RADIX_NODE_HEAD_UNLOCK(ipst->ips_ip_ftable);
1453c793af95Ssangeeta 	return (B_FALSE);
14547c478bd9Sstevel@tonic-gate }
14557c478bd9Sstevel@tonic-gate 
14567c478bd9Sstevel@tonic-gate /*
14577c478bd9Sstevel@tonic-gate  * Delete the specified IRE.
1458bd670b35SErik Nordmark  * We assume that if ire_bucket is not set then ire_ill->ill_ire_cnt was
1459bd670b35SErik Nordmark  * not incremented i.e., that the insertion in the bucket and the increment
1460bd670b35SErik Nordmark  * of that counter is done atomically.
14617c478bd9Sstevel@tonic-gate  */
14627c478bd9Sstevel@tonic-gate void
14637c478bd9Sstevel@tonic-gate ire_delete(ire_t *ire)
14647c478bd9Sstevel@tonic-gate {
14657c478bd9Sstevel@tonic-gate 	ire_t	*ire1;
14667c478bd9Sstevel@tonic-gate 	ire_t	**ptpn;
14677c478bd9Sstevel@tonic-gate 	irb_t	*irb;
1468bd670b35SErik Nordmark 	nce_t	*nce;
1469f4b3ec61Sdh155122 	ip_stack_t	*ipst = ire->ire_ipst;
14707c478bd9Sstevel@tonic-gate 
1471bd670b35SErik Nordmark 	/* We can clear ire_nce_cache under ire_lock even if the IRE is used */
1472bd670b35SErik Nordmark 	mutex_enter(&ire->ire_lock);
1473bd670b35SErik Nordmark 	nce = ire->ire_nce_cache;
1474bd670b35SErik Nordmark 	ire->ire_nce_cache = NULL;
1475bd670b35SErik Nordmark 	mutex_exit(&ire->ire_lock);
1476bd670b35SErik Nordmark 	if (nce != NULL)
1477bd670b35SErik Nordmark 		nce_refrele(nce);
1478bd670b35SErik Nordmark 
1479c793af95Ssangeeta 	if ((irb = ire->ire_bucket) == NULL) {
14807c478bd9Sstevel@tonic-gate 		/*
14817c478bd9Sstevel@tonic-gate 		 * It was never inserted in the list. Should call REFRELE
14827c478bd9Sstevel@tonic-gate 		 * to free this IRE.
14837c478bd9Sstevel@tonic-gate 		 */
1484bd670b35SErik Nordmark 		ire_refrele_notr(ire);
14857c478bd9Sstevel@tonic-gate 		return;
14867c478bd9Sstevel@tonic-gate 	}
14877c478bd9Sstevel@tonic-gate 
14887c478bd9Sstevel@tonic-gate 	/*
1489bd670b35SErik Nordmark 	 * Move the use counts from an IRE_IF_CLONE to its parent
1490bd670b35SErik Nordmark 	 * IRE_INTERFACE.
1491bd670b35SErik Nordmark 	 * We need to do this before acquiring irb_lock.
14927c478bd9Sstevel@tonic-gate 	 */
1493bd670b35SErik Nordmark 	if (ire->ire_type & IRE_IF_CLONE) {
1494bd670b35SErik Nordmark 		ire_t *parent;
1495bd670b35SErik Nordmark 
1496bd670b35SErik Nordmark 		rw_enter(&ipst->ips_ire_dep_lock, RW_READER);
1497bd670b35SErik Nordmark 		if ((parent = ire->ire_dep_parent) != NULL) {
1498bd670b35SErik Nordmark 			parent->ire_ob_pkt_count += ire->ire_ob_pkt_count;
1499bd670b35SErik Nordmark 			parent->ire_ib_pkt_count += ire->ire_ib_pkt_count;
1500bd670b35SErik Nordmark 			ire->ire_ob_pkt_count = 0;
1501bd670b35SErik Nordmark 			ire->ire_ib_pkt_count = 0;
1502bd670b35SErik Nordmark 		}
1503bd670b35SErik Nordmark 		rw_exit(&ipst->ips_ire_dep_lock);
15047c478bd9Sstevel@tonic-gate 	}
15057c478bd9Sstevel@tonic-gate 
1506bd670b35SErik Nordmark 	rw_enter(&irb->irb_lock, RW_WRITER);
15077c478bd9Sstevel@tonic-gate 	if (ire->ire_ptpn == NULL) {
15087c478bd9Sstevel@tonic-gate 		/*
15097c478bd9Sstevel@tonic-gate 		 * Some other thread has removed us from the list.
15107c478bd9Sstevel@tonic-gate 		 * It should have done the REFRELE for us.
15117c478bd9Sstevel@tonic-gate 		 */
15127c478bd9Sstevel@tonic-gate 		rw_exit(&irb->irb_lock);
15137c478bd9Sstevel@tonic-gate 		return;
15147c478bd9Sstevel@tonic-gate 	}
15157c478bd9Sstevel@tonic-gate 
1516bd670b35SErik Nordmark 	if (!IRE_IS_CONDEMNED(ire)) {
1517bd670b35SErik Nordmark 		/* Is this an IRE representing multiple duplicate entries? */
1518bd670b35SErik Nordmark 		ASSERT(ire->ire_identical_ref >= 1);
1519bd670b35SErik Nordmark 		if (atomic_add_32_nv(&ire->ire_identical_ref, -1) != 0) {
1520bd670b35SErik Nordmark 			/* Removed one of the identical parties */
1521bd670b35SErik Nordmark 			rw_exit(&irb->irb_lock);
1522bd670b35SErik Nordmark 			return;
15239a09d68dSja97890 		}
1524bd670b35SErik Nordmark 
1525bd670b35SErik Nordmark 		irb->irb_ire_cnt--;
1526bd670b35SErik Nordmark 		ire_make_condemned(ire);
15279a09d68dSja97890 	}
15289a09d68dSja97890 
15297c478bd9Sstevel@tonic-gate 	if (irb->irb_refcnt != 0) {
15307c478bd9Sstevel@tonic-gate 		/*
15317c478bd9Sstevel@tonic-gate 		 * The last thread to leave this bucket will
15327c478bd9Sstevel@tonic-gate 		 * delete this ire.
15337c478bd9Sstevel@tonic-gate 		 */
1534c793af95Ssangeeta 		irb->irb_marks |= IRB_MARK_CONDEMNED;
15357c478bd9Sstevel@tonic-gate 		rw_exit(&irb->irb_lock);
15367c478bd9Sstevel@tonic-gate 		return;
15377c478bd9Sstevel@tonic-gate 	}
15387c478bd9Sstevel@tonic-gate 
15397c478bd9Sstevel@tonic-gate 	/*
15407c478bd9Sstevel@tonic-gate 	 * Normally to delete an ire, we walk the bucket. While we
15417c478bd9Sstevel@tonic-gate 	 * walk the bucket, we normally bump up irb_refcnt and hence
15427c478bd9Sstevel@tonic-gate 	 * we return from above where we mark CONDEMNED and the ire
15437c478bd9Sstevel@tonic-gate 	 * gets deleted from ire_unlink. This case is where somebody
15447c478bd9Sstevel@tonic-gate 	 * knows the ire e.g by doing a lookup, and wants to delete the
15457c478bd9Sstevel@tonic-gate 	 * IRE. irb_refcnt would be 0 in this case if nobody is walking
15467c478bd9Sstevel@tonic-gate 	 * the bucket.
15477c478bd9Sstevel@tonic-gate 	 */
15487c478bd9Sstevel@tonic-gate 	ptpn = ire->ire_ptpn;
15497c478bd9Sstevel@tonic-gate 	ire1 = ire->ire_next;
15507c478bd9Sstevel@tonic-gate 	if (ire1 != NULL)
15517c478bd9Sstevel@tonic-gate 		ire1->ire_ptpn = ptpn;
15527c478bd9Sstevel@tonic-gate 	ASSERT(ptpn != NULL);
15537c478bd9Sstevel@tonic-gate 	*ptpn = ire1;
15547c478bd9Sstevel@tonic-gate 	ire->ire_ptpn = NULL;
15557c478bd9Sstevel@tonic-gate 	ire->ire_next = NULL;
15567c478bd9Sstevel@tonic-gate 	if (ire->ire_ipversion == IPV6_VERSION) {
1557f4b3ec61Sdh155122 		BUMP_IRE_STATS(ipst->ips_ire_stats_v6, ire_stats_deleted);
15587c478bd9Sstevel@tonic-gate 	} else {
1559f4b3ec61Sdh155122 		BUMP_IRE_STATS(ipst->ips_ire_stats_v4, ire_stats_deleted);
15607c478bd9Sstevel@tonic-gate 	}
15617c478bd9Sstevel@tonic-gate 	rw_exit(&irb->irb_lock);
15627c478bd9Sstevel@tonic-gate 
1563bd670b35SErik Nordmark 	/* Cleanup dependents and related stuff */
15647c478bd9Sstevel@tonic-gate 	if (ire->ire_ipversion == IPV6_VERSION) {
15657c478bd9Sstevel@tonic-gate 		ire_delete_v6(ire);
15667c478bd9Sstevel@tonic-gate 	} else {
15677c478bd9Sstevel@tonic-gate 		ire_delete_v4(ire);
15687c478bd9Sstevel@tonic-gate 	}
15697c478bd9Sstevel@tonic-gate 	/*
15707c478bd9Sstevel@tonic-gate 	 * We removed it from the list. Decrement the
15717c478bd9Sstevel@tonic-gate 	 * reference count.
15727c478bd9Sstevel@tonic-gate 	 */
1573bd670b35SErik Nordmark 	ire_refrele_notr(ire);
15747c478bd9Sstevel@tonic-gate }
15757c478bd9Sstevel@tonic-gate 
15767c478bd9Sstevel@tonic-gate /*
15777c478bd9Sstevel@tonic-gate  * Delete the specified IRE.
15787c478bd9Sstevel@tonic-gate  * All calls should use ire_delete().
15797c478bd9Sstevel@tonic-gate  * Sometimes called as writer though not required by this function.
15807c478bd9Sstevel@tonic-gate  *
15817c478bd9Sstevel@tonic-gate  * NOTE : This function is called only if the ire was added
15827c478bd9Sstevel@tonic-gate  * in the list.
15837c478bd9Sstevel@tonic-gate  */
15847c478bd9Sstevel@tonic-gate static void
15857c478bd9Sstevel@tonic-gate ire_delete_v4(ire_t *ire)
15867c478bd9Sstevel@tonic-gate {
1587f4b3ec61Sdh155122 	ip_stack_t	*ipst = ire->ire_ipst;
1588f4b3ec61Sdh155122 
15897c478bd9Sstevel@tonic-gate 	ASSERT(ire->ire_refcnt >= 1);
15907c478bd9Sstevel@tonic-gate 	ASSERT(ire->ire_ipversion == IPV4_VERSION);
15917c478bd9Sstevel@tonic-gate 
15927c478bd9Sstevel@tonic-gate 	ire_flush_cache_v4(ire, IRE_FLUSH_DELETE);
15937c478bd9Sstevel@tonic-gate 	if (ire->ire_type == IRE_DEFAULT) {
15947c478bd9Sstevel@tonic-gate 		/*
15957c478bd9Sstevel@tonic-gate 		 * when a default gateway is going away
15967c478bd9Sstevel@tonic-gate 		 * delete all the host redirects pointing at that
15977c478bd9Sstevel@tonic-gate 		 * gateway.
15987c478bd9Sstevel@tonic-gate 		 */
1599f4b3ec61Sdh155122 		ire_delete_host_redirects(ire->ire_gateway_addr, ipst);
16007c478bd9Sstevel@tonic-gate 	}
1601bd670b35SErik Nordmark 
1602bd670b35SErik Nordmark 	/*
1603bd670b35SErik Nordmark 	 * If we are deleting an IRE_INTERFACE then we make sure we also
1604bd670b35SErik Nordmark 	 * delete any IRE_IF_CLONE that has been created from it.
1605bd670b35SErik Nordmark 	 * Those are always in ire_dep_children.
1606bd670b35SErik Nordmark 	 */
1607bd670b35SErik Nordmark 	if ((ire->ire_type & IRE_INTERFACE) && ire->ire_dep_children != NULL)
1608bd670b35SErik Nordmark 		ire_dep_delete_if_clone(ire);
1609bd670b35SErik Nordmark 
1610bd670b35SErik Nordmark 	/* Remove from parent dependencies and child */
1611bd670b35SErik Nordmark 	rw_enter(&ipst->ips_ire_dep_lock, RW_WRITER);
1612bd670b35SErik Nordmark 	if (ire->ire_dep_parent != NULL)
1613bd670b35SErik Nordmark 		ire_dep_remove(ire);
1614bd670b35SErik Nordmark 
1615bd670b35SErik Nordmark 	while (ire->ire_dep_children != NULL)
1616bd670b35SErik Nordmark 		ire_dep_remove(ire->ire_dep_children);
1617bd670b35SErik Nordmark 	rw_exit(&ipst->ips_ire_dep_lock);
16187c478bd9Sstevel@tonic-gate }
16197c478bd9Sstevel@tonic-gate 
16207c478bd9Sstevel@tonic-gate /*
1621bd670b35SErik Nordmark  * ire_refrele is the only caller of the function. It calls
16227c478bd9Sstevel@tonic-gate  * to free the ire when the reference count goes to zero.
16237c478bd9Sstevel@tonic-gate  */
16247c478bd9Sstevel@tonic-gate void
16257c478bd9Sstevel@tonic-gate ire_inactive(ire_t *ire)
16267c478bd9Sstevel@tonic-gate {
1627bd670b35SErik Nordmark 	ill_t	*ill;
1628c793af95Ssangeeta 	irb_t 	*irb;
1629f4b3ec61Sdh155122 	ip_stack_t	*ipst = ire->ire_ipst;
16307c478bd9Sstevel@tonic-gate 
16317c478bd9Sstevel@tonic-gate 	ASSERT(ire->ire_refcnt == 0);
16327c478bd9Sstevel@tonic-gate 	ASSERT(ire->ire_ptpn == NULL);
16337c478bd9Sstevel@tonic-gate 	ASSERT(ire->ire_next == NULL);
16347c478bd9Sstevel@tonic-gate 
1635bd670b35SErik Nordmark 	/* Count how many condemned ires for kmem_cache callback */
1636bd670b35SErik Nordmark 	if (IRE_IS_CONDEMNED(ire))
1637bd670b35SErik Nordmark 		atomic_add_32(&ipst->ips_num_ire_condemned, -1);
1638bd670b35SErik Nordmark 
1639c793af95Ssangeeta 	if (ire->ire_gw_secattr != NULL) {
1640c793af95Ssangeeta 		ire_gw_secattr_free(ire->ire_gw_secattr);
1641c793af95Ssangeeta 		ire->ire_gw_secattr = NULL;
1642c793af95Ssangeeta 	}
1643c793af95Ssangeeta 
1644bd670b35SErik Nordmark 	/*
1645bd670b35SErik Nordmark 	 * ire_nce_cache is cleared in ire_delete, and we make sure we don't
1646bd670b35SErik Nordmark 	 * set it once the ire is marked condemned.
1647bd670b35SErik Nordmark 	 */
1648bd670b35SErik Nordmark 	ASSERT(ire->ire_nce_cache == NULL);
16497c478bd9Sstevel@tonic-gate 
16507c478bd9Sstevel@tonic-gate 	/*
1651bd670b35SErik Nordmark 	 * Since any parent would have a refhold on us they would already
1652bd670b35SErik Nordmark 	 * have been removed.
16537c478bd9Sstevel@tonic-gate 	 */
1654bd670b35SErik Nordmark 	ASSERT(ire->ire_dep_parent == NULL);
1655bd670b35SErik Nordmark 	ASSERT(ire->ire_dep_sib_next == NULL);
1656bd670b35SErik Nordmark 	ASSERT(ire->ire_dep_sib_ptpn == NULL);
16577c478bd9Sstevel@tonic-gate 
1658bd670b35SErik Nordmark 	/*
1659bd670b35SErik Nordmark 	 * Since any children would have a refhold on us they should have
1660bd670b35SErik Nordmark 	 * already been removed.
1661bd670b35SErik Nordmark 	 */
1662bd670b35SErik Nordmark 	ASSERT(ire->ire_dep_children == NULL);
1663bd670b35SErik Nordmark 
1664bd670b35SErik Nordmark 	/*
1665bd670b35SErik Nordmark 	 * ill_ire_ref is increased when the IRE is inserted in the
1666bd670b35SErik Nordmark 	 * bucket - not when the IRE is created.
1667bd670b35SErik Nordmark 	 */
1668bd670b35SErik Nordmark 	irb = ire->ire_bucket;
1669bd670b35SErik Nordmark 	ill = ire->ire_ill;
1670bd670b35SErik Nordmark 	if (irb != NULL && ill != NULL) {
16717c478bd9Sstevel@tonic-gate 		mutex_enter(&ill->ill_lock);
1672bd670b35SErik Nordmark 		ASSERT(ill->ill_ire_cnt != 0);
1673bd670b35SErik Nordmark 		DTRACE_PROBE3(ill__decr__cnt, (ill_t *), ill,
1674968d2fd1Ssowmini 		    (char *), "ire", (void *), ire);
1675bd670b35SErik Nordmark 		ill->ill_ire_cnt--;
1676bd670b35SErik Nordmark 		if (ILL_DOWN_OK(ill)) {
16777c478bd9Sstevel@tonic-gate 			/* Drops the ill lock */
16787c478bd9Sstevel@tonic-gate 			ipif_ill_refrele_tail(ill);
16797c478bd9Sstevel@tonic-gate 		} else {
16807c478bd9Sstevel@tonic-gate 			mutex_exit(&ill->ill_lock);
16817c478bd9Sstevel@tonic-gate 		}
16827c478bd9Sstevel@tonic-gate 	}
1683bd670b35SErik Nordmark 	ire->ire_ill = NULL;
1684bd670b35SErik Nordmark 
16857c478bd9Sstevel@tonic-gate 	/* This should be true for both V4 and V6 */
1686bd670b35SErik Nordmark 	if (irb != NULL && (irb->irb_marks & IRB_MARK_DYNAMIC)) {
1687c793af95Ssangeeta 		rw_enter(&irb->irb_lock, RW_WRITER);
1688c793af95Ssangeeta 		irb->irb_nire--;
1689c793af95Ssangeeta 		/*
1690c793af95Ssangeeta 		 * Instead of examining the conditions for freeing
1691c793af95Ssangeeta 		 * the radix node here, we do it by calling
1692bd670b35SErik Nordmark 		 * irb_refrele which is a single point in the code
1693c793af95Ssangeeta 		 * that embeds that logic. Bump up the refcnt to
1694bd670b35SErik Nordmark 		 * be able to call irb_refrele
1695c793af95Ssangeeta 		 */
1696bd670b35SErik Nordmark 		irb_refhold_locked(irb);
1697c793af95Ssangeeta 		rw_exit(&irb->irb_lock);
1698bd670b35SErik Nordmark 		irb_refrele(irb);
1699c793af95Ssangeeta 	}
17007c478bd9Sstevel@tonic-gate 
17016a8288c7Scarlsonj #ifdef DEBUG
17026a8288c7Scarlsonj 	ire_trace_cleanup(ire);
17037c478bd9Sstevel@tonic-gate #endif
17047c478bd9Sstevel@tonic-gate 	mutex_destroy(&ire->ire_lock);
17057c478bd9Sstevel@tonic-gate 	if (ire->ire_ipversion == IPV6_VERSION) {
1706f4b3ec61Sdh155122 		BUMP_IRE_STATS(ipst->ips_ire_stats_v6, ire_stats_freed);
17077c478bd9Sstevel@tonic-gate 	} else {
1708f4b3ec61Sdh155122 		BUMP_IRE_STATS(ipst->ips_ire_stats_v4, ire_stats_freed);
17097c478bd9Sstevel@tonic-gate 	}
17107c478bd9Sstevel@tonic-gate 	kmem_cache_free(ire_cache, ire);
17117c478bd9Sstevel@tonic-gate }
17127c478bd9Sstevel@tonic-gate 
17137c478bd9Sstevel@tonic-gate /*
1714bd670b35SErik Nordmark  * ire_update_generation is the callback function provided by
1715bd670b35SErik Nordmark  * ire_get_bucket() to update the generation number of any
1716bd670b35SErik Nordmark  * matching shorter route when a new route is added.
1717bd670b35SErik Nordmark  *
1718bd670b35SErik Nordmark  * This fucntion always returns a failure return (B_FALSE)
1719bd670b35SErik Nordmark  * to force the caller (rn_matchaddr_args)
1720bd670b35SErik Nordmark  * to back-track up the tree looking for shorter matches.
17217c478bd9Sstevel@tonic-gate  */
1722bd670b35SErik Nordmark /* ARGSUSED */
1723bd670b35SErik Nordmark static boolean_t
1724bd670b35SErik Nordmark ire_update_generation(struct radix_node *rn, void *arg)
17257c478bd9Sstevel@tonic-gate {
1726bd670b35SErik Nordmark 	struct rt_entry *rt = (struct rt_entry *)rn;
17277c478bd9Sstevel@tonic-gate 
1728bd670b35SErik Nordmark 	/* We need to handle all in the same bucket */
1729bd670b35SErik Nordmark 	irb_increment_generation(&rt->rt_irb);
1730bd670b35SErik Nordmark 	return (B_FALSE);
17317c478bd9Sstevel@tonic-gate }
17327c478bd9Sstevel@tonic-gate 
17337c478bd9Sstevel@tonic-gate /*
1734bd670b35SErik Nordmark  * Take care of all the generation numbers in the bucket.
1735bd670b35SErik Nordmark  */
1736bd670b35SErik Nordmark void
1737bd670b35SErik Nordmark irb_increment_generation(irb_t *irb)
1738bd670b35SErik Nordmark {
1739bd670b35SErik Nordmark 	ire_t *ire;
1740bd670b35SErik Nordmark 
1741bd670b35SErik Nordmark 	if (irb == NULL || irb->irb_ire_cnt == 0)
1742bd670b35SErik Nordmark 		return;
1743bd670b35SErik Nordmark 
1744bd670b35SErik Nordmark 	irb_refhold(irb);
1745bd670b35SErik Nordmark 	for (ire = irb->irb_ire; ire != NULL; ire = ire->ire_next) {
1746bd670b35SErik Nordmark 		if (!IRE_IS_CONDEMNED(ire))
1747bd670b35SErik Nordmark 			ire_increment_generation(ire);	/* Ourselves */
1748bd670b35SErik Nordmark 		ire_dep_incr_generation(ire);	/* Dependants */
1749bd670b35SErik Nordmark 	}
1750bd670b35SErik Nordmark 	irb_refrele(irb);
1751bd670b35SErik Nordmark }
1752bd670b35SErik Nordmark 
1753bd670b35SErik Nordmark /*
1754bd670b35SErik Nordmark  * When an IRE is added or deleted this routine is called to make sure
1755bd670b35SErik Nordmark  * any caching of IRE information is notified or updated.
17567c478bd9Sstevel@tonic-gate  *
17577c478bd9Sstevel@tonic-gate  * The flag argument indicates if the flush request is due to addition
1758bd670b35SErik Nordmark  * of new route (IRE_FLUSH_ADD), deletion of old route (IRE_FLUSH_DELETE),
1759bd670b35SErik Nordmark  * or a change to ire_gateway_addr (IRE_FLUSH_GWCHANGE).
17607c478bd9Sstevel@tonic-gate  */
17617c478bd9Sstevel@tonic-gate void
17627c478bd9Sstevel@tonic-gate ire_flush_cache_v4(ire_t *ire, int flag)
17637c478bd9Sstevel@tonic-gate {
1764bd670b35SErik Nordmark 	irb_t *irb = ire->ire_bucket;
1765bd670b35SErik Nordmark 	struct rt_entry *rt = IRB2RT(irb);
1766f4b3ec61Sdh155122 	ip_stack_t *ipst = ire->ire_ipst;
17677c478bd9Sstevel@tonic-gate 
1768bd670b35SErik Nordmark 	/*
1769bd670b35SErik Nordmark 	 * IRE_IF_CLONE ire's don't provide any new information
1770bd670b35SErik Nordmark 	 * than the parent from which they are cloned, so don't
1771bd670b35SErik Nordmark 	 * perturb the generation numbers.
1772bd670b35SErik Nordmark 	 */
1773bd670b35SErik Nordmark 	if (ire->ire_type & IRE_IF_CLONE)
17747c478bd9Sstevel@tonic-gate 		return;
17757c478bd9Sstevel@tonic-gate 
17767c478bd9Sstevel@tonic-gate 	/*
1777bd670b35SErik Nordmark 	 * Ensure that an ire_add during a lookup serializes the updates of the
1778bd670b35SErik Nordmark 	 * generation numbers under the radix head lock so that the lookup gets
1779bd670b35SErik Nordmark 	 * either the old ire and old generation number, or a new ire and new
1780bd670b35SErik Nordmark 	 * generation number.
17817c478bd9Sstevel@tonic-gate 	 */
1782bd670b35SErik Nordmark 	RADIX_NODE_HEAD_WLOCK(ipst->ips_ip_ftable);
1783bd670b35SErik Nordmark 
1784bd670b35SErik Nordmark 	/*
1785bd670b35SErik Nordmark 	 * If a route was just added, we need to notify everybody that
1786bd670b35SErik Nordmark 	 * has cached an IRE_NOROUTE since there might now be a better
1787bd670b35SErik Nordmark 	 * route for them.
1788bd670b35SErik Nordmark 	 */
17897c478bd9Sstevel@tonic-gate 	if (flag == IRE_FLUSH_ADD) {
1790bd670b35SErik Nordmark 		ire_increment_generation(ipst->ips_ire_reject_v4);
1791bd670b35SErik Nordmark 		ire_increment_generation(ipst->ips_ire_blackhole_v4);
1792bd670b35SErik Nordmark 	}
1793bd670b35SErik Nordmark 
1794bd670b35SErik Nordmark 	/* Adding a default can't otherwise provide a better route */
1795bd670b35SErik Nordmark 	if (ire->ire_type == IRE_DEFAULT && flag == IRE_FLUSH_ADD) {
1796bd670b35SErik Nordmark 		RADIX_NODE_HEAD_UNLOCK(ipst->ips_ip_ftable);
1797bd670b35SErik Nordmark 		return;
1798bd670b35SErik Nordmark 	}
1799bd670b35SErik Nordmark 
1800bd670b35SErik Nordmark 	switch (flag) {
1801bd670b35SErik Nordmark 	case IRE_FLUSH_DELETE:
1802bd670b35SErik Nordmark 	case IRE_FLUSH_GWCHANGE:
18037c478bd9Sstevel@tonic-gate 		/*
1804bd670b35SErik Nordmark 		 * Update ire_generation for all ire_dep_children chains
1805bd670b35SErik Nordmark 		 * starting with this IRE
18067c478bd9Sstevel@tonic-gate 		 */
1807bd670b35SErik Nordmark 		ire_dep_incr_generation(ire);
1808bd670b35SErik Nordmark 		break;
1809bd670b35SErik Nordmark 	case IRE_FLUSH_ADD:
18107c478bd9Sstevel@tonic-gate 		/*
1811bd670b35SErik Nordmark 		 * Update the generation numbers of all shorter matching routes.
1812bd670b35SErik Nordmark 		 * ire_update_generation takes care of the dependants by
1813bd670b35SErik Nordmark 		 * using ire_dep_incr_generation.
18147c478bd9Sstevel@tonic-gate 		 */
1815bd670b35SErik Nordmark 		(void) ipst->ips_ip_ftable->rnh_matchaddr_args(&rt->rt_dst,
1816bd670b35SErik Nordmark 		    ipst->ips_ip_ftable, ire_update_generation, NULL);
1817bd670b35SErik Nordmark 		break;
18187c478bd9Sstevel@tonic-gate 	}
1819bd670b35SErik Nordmark 	RADIX_NODE_HEAD_UNLOCK(ipst->ips_ip_ftable);
18207c478bd9Sstevel@tonic-gate }
18217c478bd9Sstevel@tonic-gate 
18227c478bd9Sstevel@tonic-gate /*
18237c478bd9Sstevel@tonic-gate  * Matches the arguments passed with the values in the ire.
18247c478bd9Sstevel@tonic-gate  *
1825bd670b35SErik Nordmark  * Note: for match types that match using "ill" passed in, ill
18267c478bd9Sstevel@tonic-gate  * must be checked for non-NULL before calling this routine.
18277c478bd9Sstevel@tonic-gate  */
1828c793af95Ssangeeta boolean_t
18297c478bd9Sstevel@tonic-gate ire_match_args(ire_t *ire, ipaddr_t addr, ipaddr_t mask, ipaddr_t gateway,
1830bd670b35SErik Nordmark     int type, const ill_t *ill, zoneid_t zoneid,
1831bd670b35SErik Nordmark     const ts_label_t *tsl, int match_flags)
18327c478bd9Sstevel@tonic-gate {
18337c478bd9Sstevel@tonic-gate 	ill_t *ire_ill = NULL, *dst_ill;
1834bd670b35SErik Nordmark 	ip_stack_t *ipst = ire->ire_ipst;
18357c478bd9Sstevel@tonic-gate 
18367c478bd9Sstevel@tonic-gate 	ASSERT(ire->ire_ipversion == IPV4_VERSION);
18377c478bd9Sstevel@tonic-gate 	ASSERT((ire->ire_addr & ~ire->ire_mask) == 0);
1838e11c3f44Smeem 	ASSERT((!(match_flags & MATCH_IRE_ILL)) ||
1839bd670b35SErik Nordmark 	    (ill != NULL && !ill->ill_isv6));
18407c478bd9Sstevel@tonic-gate 
18417c478bd9Sstevel@tonic-gate 	/*
1842bd670b35SErik Nordmark 	 * If MATCH_IRE_TESTHIDDEN is set, then only return the IRE if it is
1843bd670b35SErik Nordmark 	 * in fact hidden, to ensure the caller gets the right one.
18447c478bd9Sstevel@tonic-gate 	 */
1845bd670b35SErik Nordmark 	if (ire->ire_testhidden) {
1846bd670b35SErik Nordmark 		if (!(match_flags & MATCH_IRE_TESTHIDDEN))
18477c478bd9Sstevel@tonic-gate 			return (B_FALSE);
1848e11c3f44Smeem 	}
18497c478bd9Sstevel@tonic-gate 
185045916cd2Sjpk 	if (zoneid != ALL_ZONES && zoneid != ire->ire_zoneid &&
185145916cd2Sjpk 	    ire->ire_zoneid != ALL_ZONES) {
18527c478bd9Sstevel@tonic-gate 		/*
1853bd670b35SErik Nordmark 		 * If MATCH_IRE_ZONEONLY has been set and the supplied zoneid
1854bd670b35SErik Nordmark 		 * does not match that of ire_zoneid, a failure to
18557c478bd9Sstevel@tonic-gate 		 * match is reported at this point. Otherwise, since some IREs
18567c478bd9Sstevel@tonic-gate 		 * that are available in the global zone can be used in local
18577c478bd9Sstevel@tonic-gate 		 * zones, additional checks need to be performed:
18587c478bd9Sstevel@tonic-gate 		 *
1859bd670b35SErik Nordmark 		 * IRE_LOOPBACK
18607c478bd9Sstevel@tonic-gate 		 *	entries should never be matched in this situation.
1861bd670b35SErik Nordmark 		 *	Each zone has its own IRE_LOOPBACK.
18627c478bd9Sstevel@tonic-gate 		 *
1863bd670b35SErik Nordmark 		 * IRE_LOCAL
1864bd670b35SErik Nordmark 		 *	We allow them for any zoneid. ire_route_recursive
1865bd670b35SErik Nordmark 		 *	does additional checks when
1866bd670b35SErik Nordmark 		 *	ip_restrict_interzone_loopback is set.
18677c478bd9Sstevel@tonic-gate 		 *
1868bd670b35SErik Nordmark 		 * If ill_usesrc_ifindex is set
1869bd670b35SErik Nordmark 		 *	Then we check if the zone has a valid source address
1870bd670b35SErik Nordmark 		 *	on the usesrc ill.
18717c478bd9Sstevel@tonic-gate 		 *
1872bd670b35SErik Nordmark 		 * If ire_ill is set, then check that the zone has an ipif
1873bd670b35SErik Nordmark 		 *	on that ill.
1874bd670b35SErik Nordmark 		 *
1875bd670b35SErik Nordmark 		 * Outside of this function (in ire_round_robin) we check
1876bd670b35SErik Nordmark 		 * that any IRE_OFFLINK has a gateway that reachable from the
1877bd670b35SErik Nordmark 		 * zone when we have multiple choices (ECMP).
18787c478bd9Sstevel@tonic-gate 		 */
18797c478bd9Sstevel@tonic-gate 		if (match_flags & MATCH_IRE_ZONEONLY)
18807c478bd9Sstevel@tonic-gate 			return (B_FALSE);
1881bd670b35SErik Nordmark 		if (ire->ire_type & IRE_LOOPBACK)
18827c478bd9Sstevel@tonic-gate 			return (B_FALSE);
1883bd670b35SErik Nordmark 
1884bd670b35SErik Nordmark 		if (ire->ire_type & IRE_LOCAL)
1885bd670b35SErik Nordmark 			goto matchit;
1886bd670b35SErik Nordmark 
18877c478bd9Sstevel@tonic-gate 		/*
1888bd670b35SErik Nordmark 		 * The normal case of IRE_ONLINK has a matching zoneid.
1889bd670b35SErik Nordmark 		 * Here we handle the case when shared-IP zones have been
1890bd670b35SErik Nordmark 		 * configured with IP addresses on vniN. In that case it
1891bd670b35SErik Nordmark 		 * is ok for traffic from a zone to use IRE_ONLINK routes
1892bd670b35SErik Nordmark 		 * if the ill has a usesrc pointing at vniN
18937c478bd9Sstevel@tonic-gate 		 */
1894bd670b35SErik Nordmark 		dst_ill = ire->ire_ill;
1895bd670b35SErik Nordmark 		if (ire->ire_type & IRE_ONLINK) {
1896bd670b35SErik Nordmark 			uint_t	ifindex;
1897bd670b35SErik Nordmark 
1898bd670b35SErik Nordmark 			/*
1899bd670b35SErik Nordmark 			 * Note there is no IRE_INTERFACE on vniN thus
1900bd670b35SErik Nordmark 			 * can't do an IRE lookup for a matching route.
1901bd670b35SErik Nordmark 			 */
1902bd670b35SErik Nordmark 			ifindex = dst_ill->ill_usesrc_ifindex;
1903bd670b35SErik Nordmark 			if (ifindex == 0)
1904bd670b35SErik Nordmark 				return (B_FALSE);
1905bd670b35SErik Nordmark 
19067c478bd9Sstevel@tonic-gate 			/*
19077c478bd9Sstevel@tonic-gate 			 * If there is a usable source address in the
1908bd670b35SErik Nordmark 			 * zone, then it's ok to return this IRE_INTERFACE
19097c478bd9Sstevel@tonic-gate 			 */
1910bd670b35SErik Nordmark 			if (!ipif_zone_avail(ifindex, dst_ill->ill_isv6,
1911bd670b35SErik Nordmark 			    zoneid, ipst)) {
1912bd670b35SErik Nordmark 				ip3dbg(("ire_match_args: no usrsrc for zone"
19137c478bd9Sstevel@tonic-gate 				    " dst_ill %p\n", (void *)dst_ill));
19147c478bd9Sstevel@tonic-gate 				return (B_FALSE);
19157c478bd9Sstevel@tonic-gate 			}
19167c478bd9Sstevel@tonic-gate 		}
1917bd670b35SErik Nordmark 		/*
1918bd670b35SErik Nordmark 		 * For exampe, with
1919bd670b35SErik Nordmark 		 * route add 11.0.0.0 gw1 -ifp bge0
1920bd670b35SErik Nordmark 		 * route add 11.0.0.0 gw2 -ifp bge1
1921bd670b35SErik Nordmark 		 * this code would differentiate based on
1922bd670b35SErik Nordmark 		 * where the sending zone has addresses.
1923bd670b35SErik Nordmark 		 * Only if the zone has an address on bge0 can it use the first
1924bd670b35SErik Nordmark 		 * route. It isn't clear if this behavior is documented
1925bd670b35SErik Nordmark 		 * anywhere.
1926bd670b35SErik Nordmark 		 */
1927bd670b35SErik Nordmark 		if (dst_ill != NULL && (ire->ire_type & IRE_OFFLINK)) {
19287c478bd9Sstevel@tonic-gate 			ipif_t	*tipif;
19297c478bd9Sstevel@tonic-gate 
1930bd670b35SErik Nordmark 			mutex_enter(&dst_ill->ill_lock);
1931bd670b35SErik Nordmark 			for (tipif = dst_ill->ill_ipif;
19327c478bd9Sstevel@tonic-gate 			    tipif != NULL; tipif = tipif->ipif_next) {
1933bd670b35SErik Nordmark 				if (!IPIF_IS_CONDEMNED(tipif) &&
19347c478bd9Sstevel@tonic-gate 				    (tipif->ipif_flags & IPIF_UP) &&
193545916cd2Sjpk 				    (tipif->ipif_zoneid == zoneid ||
193645916cd2Sjpk 				    tipif->ipif_zoneid == ALL_ZONES))
19377c478bd9Sstevel@tonic-gate 					break;
19387c478bd9Sstevel@tonic-gate 			}
1939bd670b35SErik Nordmark 			mutex_exit(&dst_ill->ill_lock);
19407c478bd9Sstevel@tonic-gate 			if (tipif == NULL) {
19417c478bd9Sstevel@tonic-gate 				return (B_FALSE);
19427c478bd9Sstevel@tonic-gate 			}
19437c478bd9Sstevel@tonic-gate 		}
19447c478bd9Sstevel@tonic-gate 	}
19457c478bd9Sstevel@tonic-gate 
1946bd670b35SErik Nordmark matchit:
1947e11c3f44Smeem 	if (match_flags & MATCH_IRE_ILL) {
1948bd670b35SErik Nordmark 		ire_ill = ire->ire_ill;
1949bd670b35SErik Nordmark 
1950bd670b35SErik Nordmark 		/*
1951bd670b35SErik Nordmark 		 * If asked to match an ill, we *must* match
1952bd670b35SErik Nordmark 		 * on the ire_ill for ipmp test addresses, or
1953bd670b35SErik Nordmark 		 * any of the ill in the group for data addresses.
1954bd670b35SErik Nordmark 		 * If we don't, we may as well fail.
1955bd670b35SErik Nordmark 		 * However, we need an exception for IRE_LOCALs to ensure
1956bd670b35SErik Nordmark 		 * we loopback packets even sent to test addresses on different
1957bd670b35SErik Nordmark 		 * interfaces in the group.
1958bd670b35SErik Nordmark 		 */
1959bd670b35SErik Nordmark 		if ((match_flags & MATCH_IRE_TESTHIDDEN) &&
1960bd670b35SErik Nordmark 		    !(ire->ire_type & IRE_LOCAL)) {
1961bd670b35SErik Nordmark 			if (ire->ire_ill != ill)
1962bd670b35SErik Nordmark 				return (B_FALSE);
1963bd670b35SErik Nordmark 		} else  {
1964bd670b35SErik Nordmark 			match_flags &= ~MATCH_IRE_TESTHIDDEN;
1965bd670b35SErik Nordmark 			/*
1966bd670b35SErik Nordmark 			 * We know that ill is not NULL, but ire_ill could be
1967bd670b35SErik Nordmark 			 * NULL
1968bd670b35SErik Nordmark 			 */
1969bd670b35SErik Nordmark 			if (ire_ill == NULL || !IS_ON_SAME_LAN(ill, ire_ill))
1970bd670b35SErik Nordmark 				return (B_FALSE);
1971bd670b35SErik Nordmark 		}
19727c478bd9Sstevel@tonic-gate 	}
19737c478bd9Sstevel@tonic-gate 
19747c478bd9Sstevel@tonic-gate 	if ((ire->ire_addr == (addr & mask)) &&
19757c478bd9Sstevel@tonic-gate 	    ((!(match_flags & MATCH_IRE_GW)) ||
19767c478bd9Sstevel@tonic-gate 	    (ire->ire_gateway_addr == gateway)) &&
1977bd670b35SErik Nordmark 	    ((!(match_flags & MATCH_IRE_TYPE)) || (ire->ire_type & type)) &&
1978bd670b35SErik Nordmark 	    ((!(match_flags & MATCH_IRE_TESTHIDDEN)) || ire->ire_testhidden) &&
1979bd670b35SErik Nordmark 	    ((!(match_flags & MATCH_IRE_MASK)) || (ire->ire_mask == mask)) &&
198045916cd2Sjpk 	    ((!(match_flags & MATCH_IRE_SECATTR)) ||
198145916cd2Sjpk 	    (!is_system_labeled()) ||
198245916cd2Sjpk 	    (tsol_ire_match_gwattr(ire, tsl) == 0))) {
19837c478bd9Sstevel@tonic-gate 		/* We found the matched IRE */
19847c478bd9Sstevel@tonic-gate 		return (B_TRUE);
19857c478bd9Sstevel@tonic-gate 	}
19867c478bd9Sstevel@tonic-gate 	return (B_FALSE);
19877c478bd9Sstevel@tonic-gate }
19887c478bd9Sstevel@tonic-gate 
19897c478bd9Sstevel@tonic-gate /*
1990e11c3f44Smeem  * Check if the IRE_LOCAL uses the same ill as another route would use.
1991aa2eaee6Snordmark  * If there is no alternate route, or the alternate is a REJECT or BLACKHOLE,
1992aa2eaee6Snordmark  * then we don't allow this IRE_LOCAL to be used.
1993bd670b35SErik Nordmark  * We always return an IRE; will be RTF_REJECT if no route available.
1994bd670b35SErik Nordmark  */
1995bd670b35SErik Nordmark ire_t *
1996bd670b35SErik Nordmark ire_alt_local(ire_t *ire, zoneid_t zoneid, const ts_label_t *tsl,
1997bd670b35SErik Nordmark     const ill_t *ill, uint_t *generationp)
1998bd670b35SErik Nordmark {
1999bd670b35SErik Nordmark 	ip_stack_t	*ipst = ire->ire_ipst;
2000bd670b35SErik Nordmark 	ire_t		*alt_ire;
2001bd670b35SErik Nordmark 	uint_t		ire_type;
2002bd670b35SErik Nordmark 	uint_t		generation;
2003bd670b35SErik Nordmark 	uint_t		match_flags;
2004bd670b35SErik Nordmark 
2005bd670b35SErik Nordmark 	ASSERT(ire->ire_type & IRE_LOCAL);
2006bd670b35SErik Nordmark 	ASSERT(ire->ire_ill != NULL);
2007bd670b35SErik Nordmark 
2008bd670b35SErik Nordmark 	/*
2009bd670b35SErik Nordmark 	 * Need to match on everything but local.
2010bd670b35SErik Nordmark 	 * This might result in the creation of a IRE_IF_CLONE for the
2011bd670b35SErik Nordmark 	 * same address as the IRE_LOCAL when restrict_interzone_loopback is
2012bd670b35SErik Nordmark 	 * set. ire_add_*() ensures that the IRE_IF_CLONE are tail inserted
2013bd670b35SErik Nordmark 	 * to make sure the IRE_LOCAL is always found first.
2014bd670b35SErik Nordmark 	 */
2015bd670b35SErik Nordmark 	ire_type = (IRE_ONLINK | IRE_OFFLINK) & ~(IRE_LOCAL|IRE_LOOPBACK);
2016bd670b35SErik Nordmark 	match_flags = MATCH_IRE_TYPE | MATCH_IRE_SECATTR;
2017bd670b35SErik Nordmark 	if (ill != NULL)
2018bd670b35SErik Nordmark 		match_flags |= MATCH_IRE_ILL;
2019bd670b35SErik Nordmark 
2020bd670b35SErik Nordmark 	if (ire->ire_ipversion == IPV4_VERSION) {
2021bd670b35SErik Nordmark 		alt_ire = ire_route_recursive_v4(ire->ire_addr, ire_type,
2022bd670b35SErik Nordmark 		    ill, zoneid, tsl, match_flags, B_TRUE, 0, ipst, NULL, NULL,
2023bd670b35SErik Nordmark 		    &generation);
2024bd670b35SErik Nordmark 	} else {
2025bd670b35SErik Nordmark 		alt_ire = ire_route_recursive_v6(&ire->ire_addr_v6, ire_type,
2026bd670b35SErik Nordmark 		    ill, zoneid, tsl, match_flags, B_TRUE, 0, ipst, NULL, NULL,
2027bd670b35SErik Nordmark 		    &generation);
2028bd670b35SErik Nordmark 	}
2029bd670b35SErik Nordmark 	ASSERT(alt_ire != NULL);
2030bd670b35SErik Nordmark 
2031bd670b35SErik Nordmark 	if (alt_ire->ire_ill == ire->ire_ill) {
2032bd670b35SErik Nordmark 		/* Going out the same ILL - ok to send to IRE_LOCAL */
2033bd670b35SErik Nordmark 		ire_refrele(alt_ire);
2034bd670b35SErik Nordmark 	} else {
2035bd670b35SErik Nordmark 		/* Different ill - ignore IRE_LOCAL */
2036bd670b35SErik Nordmark 		ire_refrele(ire);
2037bd670b35SErik Nordmark 		ire = alt_ire;
2038bd670b35SErik Nordmark 		if (generationp != NULL)
2039bd670b35SErik Nordmark 			*generationp = generation;
2040bd670b35SErik Nordmark 	}
2041bd670b35SErik Nordmark 	return (ire);
2042bd670b35SErik Nordmark }
2043bd670b35SErik Nordmark 
2044bd670b35SErik Nordmark boolean_t
2045bd670b35SErik Nordmark ire_find_zoneid(struct radix_node *rn, void *arg)
2046bd670b35SErik Nordmark {
2047bd670b35SErik Nordmark 	struct rt_entry *rt = (struct rt_entry *)rn;
2048bd670b35SErik Nordmark 	irb_t *irb;
2049bd670b35SErik Nordmark 	ire_t *ire;
2050bd670b35SErik Nordmark 	ire_ftable_args_t *margs = arg;
2051bd670b35SErik Nordmark 
2052bd670b35SErik Nordmark 	ASSERT(rt != NULL);
2053bd670b35SErik Nordmark 
2054bd670b35SErik Nordmark 	irb = &rt->rt_irb;
2055bd670b35SErik Nordmark 
2056bd670b35SErik Nordmark 	if (irb->irb_ire_cnt == 0)
2057bd670b35SErik Nordmark 		return (B_FALSE);
2058bd670b35SErik Nordmark 
2059bd670b35SErik Nordmark 	rw_enter(&irb->irb_lock, RW_READER);
2060bd670b35SErik Nordmark 	for (ire = irb->irb_ire; ire != NULL; ire = ire->ire_next) {
2061bd670b35SErik Nordmark 		if (IRE_IS_CONDEMNED(ire))
2062bd670b35SErik Nordmark 			continue;
2063bd670b35SErik Nordmark 
2064bd670b35SErik Nordmark 		if (ire->ire_zoneid != ALL_ZONES &&
2065bd670b35SErik Nordmark 		    ire->ire_zoneid != margs->ift_zoneid)
2066bd670b35SErik Nordmark 			continue;
2067bd670b35SErik Nordmark 
2068bd670b35SErik Nordmark 		if (margs->ift_ill != NULL && margs->ift_ill != ire->ire_ill)
2069bd670b35SErik Nordmark 			continue;
2070bd670b35SErik Nordmark 
2071bd670b35SErik Nordmark 		if (is_system_labeled() &&
2072bd670b35SErik Nordmark 		    tsol_ire_match_gwattr(ire, margs->ift_tsl) != 0)
2073bd670b35SErik Nordmark 			continue;
2074bd670b35SErik Nordmark 
2075bd670b35SErik Nordmark 		rw_exit(&irb->irb_lock);
2076bd670b35SErik Nordmark 		return (B_TRUE);
2077bd670b35SErik Nordmark 	}
2078bd670b35SErik Nordmark 	rw_exit(&irb->irb_lock);
2079bd670b35SErik Nordmark 	return (B_FALSE);
2080bd670b35SErik Nordmark }
2081bd670b35SErik Nordmark 
2082bd670b35SErik Nordmark /*
2083bd670b35SErik Nordmark  * Check if the zoneid (not ALL_ZONES) has an IRE_INTERFACE for the specified
2084bd670b35SErik Nordmark  * gateway address. If ill is non-NULL we also match on it.
2085bd670b35SErik Nordmark  * The caller must hold a read lock on RADIX_NODE_HEAD if lock_held is set.
20865597b60aSnordmark  */
20875597b60aSnordmark boolean_t
2088bd670b35SErik Nordmark ire_gateway_ok_zone_v4(ipaddr_t gateway, zoneid_t zoneid, ill_t *ill,
2089bd670b35SErik Nordmark     const ts_label_t *tsl, ip_stack_t *ipst, boolean_t lock_held)
20905597b60aSnordmark {
2091bd670b35SErik Nordmark 	struct rt_sockaddr rdst;
2092bd670b35SErik Nordmark 	struct rt_entry *rt;
2093bd670b35SErik Nordmark 	ire_ftable_args_t margs;
2094e11c3f44Smeem 
2095bd670b35SErik Nordmark 	ASSERT(ill == NULL || !ill->ill_isv6);
2096bd670b35SErik Nordmark 	if (lock_held)
2097bd670b35SErik Nordmark 		ASSERT(RW_READ_HELD(&ipst->ips_ip_ftable->rnh_lock));
20987c478bd9Sstevel@tonic-gate 	else
2099bd670b35SErik Nordmark 		RADIX_NODE_HEAD_RLOCK(ipst->ips_ip_ftable);
2100bd670b35SErik Nordmark 
2101bd670b35SErik Nordmark 	rdst.rt_sin_len = sizeof (rdst);
2102bd670b35SErik Nordmark 	rdst.rt_sin_family = AF_INET;
2103bd670b35SErik Nordmark 	rdst.rt_sin_addr.s_addr = gateway;
2104bd670b35SErik Nordmark 
2105bd670b35SErik Nordmark 	/*
2106bd670b35SErik Nordmark 	 * We only use margs for ill, zoneid, and tsl matching in
2107bd670b35SErik Nordmark 	 * ire_find_zoneid
2108bd670b35SErik Nordmark 	 */
2109bd670b35SErik Nordmark 	(void) memset(&margs, 0, sizeof (margs));
2110bd670b35SErik Nordmark 	margs.ift_ill = ill;
2111bd670b35SErik Nordmark 	margs.ift_zoneid = zoneid;
2112bd670b35SErik Nordmark 	margs.ift_tsl = tsl;
2113bd670b35SErik Nordmark 	rt = (struct rt_entry *)ipst->ips_ip_ftable->rnh_matchaddr_args(&rdst,
2114bd670b35SErik Nordmark 	    ipst->ips_ip_ftable, ire_find_zoneid, (void *)&margs);
2115bd670b35SErik Nordmark 
2116bd670b35SErik Nordmark 	if (!lock_held)
2117bd670b35SErik Nordmark 		RADIX_NODE_HEAD_UNLOCK(ipst->ips_ip_ftable);
2118bd670b35SErik Nordmark 
2119bd670b35SErik Nordmark 	return (rt != NULL);
21207c478bd9Sstevel@tonic-gate }
21217c478bd9Sstevel@tonic-gate 
21227c478bd9Sstevel@tonic-gate /*
2123bd670b35SErik Nordmark  * ire_walk routine to delete a fraction of redirect IREs and IRE_CLONE_IF IREs.
2124bd670b35SErik Nordmark  * The fraction argument tells us what fraction of the IREs to delete.
2125bd670b35SErik Nordmark  * Common for IPv4 and IPv6.
2126bd670b35SErik Nordmark  * Used when memory backpressure.
21277c478bd9Sstevel@tonic-gate  */
2128bd670b35SErik Nordmark static void
2129bd670b35SErik Nordmark ire_delete_reclaim(ire_t *ire, char *arg)
21307c478bd9Sstevel@tonic-gate {
2131bd670b35SErik Nordmark 	ip_stack_t	*ipst = ire->ire_ipst;
2132bd670b35SErik Nordmark 	uint_t		fraction = *(uint_t *)arg;
21337c478bd9Sstevel@tonic-gate 	uint_t		rand;
21347c478bd9Sstevel@tonic-gate 
2135bd670b35SErik Nordmark 	if ((ire->ire_flags & RTF_DYNAMIC) ||
2136bd670b35SErik Nordmark 	    (ire->ire_type & IRE_IF_CLONE)) {
21377c478bd9Sstevel@tonic-gate 
2138bd670b35SErik Nordmark 		/* Pick a random number */
2139d3d50737SRafael Vanoni 		rand = (uint_t)ddi_get_lbolt() +
2140bd670b35SErik Nordmark 		    IRE_ADDR_HASH_V6(ire->ire_addr_v6, 256);
2141bd670b35SErik Nordmark 
2142bd670b35SErik Nordmark 		/* Use truncation */
2143bd670b35SErik Nordmark 		if ((rand/fraction)*fraction == rand) {
2144bd670b35SErik Nordmark 			IP_STAT(ipst, ip_ire_reclaim_deleted);
21457c478bd9Sstevel@tonic-gate 			ire_delete(ire);
21467c478bd9Sstevel@tonic-gate 		}
21477c478bd9Sstevel@tonic-gate 	}
2148bd670b35SErik Nordmark 
21497c478bd9Sstevel@tonic-gate }
2150bd670b35SErik Nordmark 
21517c478bd9Sstevel@tonic-gate /*
2152bd670b35SErik Nordmark  * kmem_cache callback to free up memory.
2153bd670b35SErik Nordmark  *
2154bd670b35SErik Nordmark  * Free a fraction (ips_ip_ire_reclaim_fraction) of things IP added dynamically
2155bd670b35SErik Nordmark  * (RTF_DYNAMIC and IRE_IF_CLONE).
21567c478bd9Sstevel@tonic-gate  */
2157bd670b35SErik Nordmark static void
2158bd670b35SErik Nordmark ip_ire_reclaim_stack(ip_stack_t *ipst)
2159bd670b35SErik Nordmark {
2160bd670b35SErik Nordmark 	uint_t	fraction = ipst->ips_ip_ire_reclaim_fraction;
2161bd670b35SErik Nordmark 
2162bd670b35SErik Nordmark 	IP_STAT(ipst, ip_ire_reclaim_calls);
2163bd670b35SErik Nordmark 
2164bd670b35SErik Nordmark 	ire_walk(ire_delete_reclaim, &fraction, ipst);
2165bd670b35SErik Nordmark 
2166bd670b35SErik Nordmark 	/*
2167bd670b35SErik Nordmark 	 * Walk all CONNs that can have a reference on an ire, nce or dce.
2168bd670b35SErik Nordmark 	 * Get them to update any stale references to drop any refholds they
2169bd670b35SErik Nordmark 	 * have.
2170bd670b35SErik Nordmark 	 */
2171bd670b35SErik Nordmark 	ipcl_walk(conn_ixa_cleanup, (void *)B_FALSE, ipst);
2172bd670b35SErik Nordmark }
2173bd670b35SErik Nordmark 
2174bd670b35SErik Nordmark /*
2175bd670b35SErik Nordmark  * Called by the memory allocator subsystem directly, when the system
2176bd670b35SErik Nordmark  * is running low on memory.
2177bd670b35SErik Nordmark  */
2178bd670b35SErik Nordmark /* ARGSUSED */
2179bd670b35SErik Nordmark void
2180bd670b35SErik Nordmark ip_ire_reclaim(void *args)
2181bd670b35SErik Nordmark {
2182bd670b35SErik Nordmark 	netstack_handle_t nh;
2183bd670b35SErik Nordmark 	netstack_t *ns;
2184bd670b35SErik Nordmark 
2185bd670b35SErik Nordmark 	netstack_next_init(&nh);
2186bd670b35SErik Nordmark 	while ((ns = netstack_next(&nh)) != NULL) {
2187bd670b35SErik Nordmark 		ip_ire_reclaim_stack(ns->netstack_ip);
2188bd670b35SErik Nordmark 		netstack_rele(ns);
2189bd670b35SErik Nordmark 	}
2190bd670b35SErik Nordmark 	netstack_next_fini(&nh);
21917c478bd9Sstevel@tonic-gate }
21927c478bd9Sstevel@tonic-gate 
21937c478bd9Sstevel@tonic-gate static void
21947c478bd9Sstevel@tonic-gate power2_roundup(uint32_t *value)
21957c478bd9Sstevel@tonic-gate {
21967c478bd9Sstevel@tonic-gate 	int i;
21977c478bd9Sstevel@tonic-gate 
21987c478bd9Sstevel@tonic-gate 	for (i = 1; i < 31; i++) {
21997c478bd9Sstevel@tonic-gate 		if (*value <= (1 << i))
22007c478bd9Sstevel@tonic-gate 			break;
22017c478bd9Sstevel@tonic-gate 	}
22027c478bd9Sstevel@tonic-gate 	*value = (1 << i);
22037c478bd9Sstevel@tonic-gate }
22047c478bd9Sstevel@tonic-gate 
2205f4b3ec61Sdh155122 /* Global init for all zones */
22067c478bd9Sstevel@tonic-gate void
2207f4b3ec61Sdh155122 ip_ire_g_init()
22087c478bd9Sstevel@tonic-gate {
22097c478bd9Sstevel@tonic-gate 	/*
2210bd670b35SErik Nordmark 	 * Create kmem_caches.  ip_ire_reclaim() and ip_nce_reclaim()
2211bd670b35SErik Nordmark 	 * will give disposable IREs back to system when needed.
22127c478bd9Sstevel@tonic-gate 	 * This needs to be done here before anything else, since
22137c478bd9Sstevel@tonic-gate 	 * ire_add() expects the cache to be created.
22147c478bd9Sstevel@tonic-gate 	 */
22157c478bd9Sstevel@tonic-gate 	ire_cache = kmem_cache_create("ire_cache",
2216bd670b35SErik Nordmark 	    sizeof (ire_t), 0, NULL, NULL,
2217bd670b35SErik Nordmark 	    ip_ire_reclaim, NULL, NULL, 0);
2218bd670b35SErik Nordmark 
2219bd670b35SErik Nordmark 	ncec_cache = kmem_cache_create("ncec_cache",
2220bd670b35SErik Nordmark 	    sizeof (ncec_t), 0, NULL, NULL,
2221bd670b35SErik Nordmark 	    ip_nce_reclaim, NULL, NULL, 0);
2222bd670b35SErik Nordmark 	nce_cache = kmem_cache_create("nce_cache",
2223bd670b35SErik Nordmark 	    sizeof (nce_t), 0, NULL, NULL,
2224bd670b35SErik Nordmark 	    NULL, NULL, NULL, 0);
22257c478bd9Sstevel@tonic-gate 
2226f4b3ec61Sdh155122 	rt_entry_cache = kmem_cache_create("rt_entry",
2227f4b3ec61Sdh155122 	    sizeof (struct rt_entry), 0, NULL, NULL, NULL, NULL, NULL, 0);
2228f4b3ec61Sdh155122 
2229f4b3ec61Sdh155122 	/*
2230f4b3ec61Sdh155122 	 * Have radix code setup kmem caches etc.
2231f4b3ec61Sdh155122 	 */
2232f4b3ec61Sdh155122 	rn_init();
2233f4b3ec61Sdh155122 }
2234f4b3ec61Sdh155122 
2235f4b3ec61Sdh155122 void
2236f4b3ec61Sdh155122 ip_ire_init(ip_stack_t *ipst)
2237f4b3ec61Sdh155122 {
2238bd670b35SErik Nordmark 	ire_t	*ire;
2239bd670b35SErik Nordmark 	int	error;
2240f4b3ec61Sdh155122 
2241f4b3ec61Sdh155122 	mutex_init(&ipst->ips_ire_ft_init_lock, NULL, MUTEX_DEFAULT, 0);
2242f4b3ec61Sdh155122 
2243f4b3ec61Sdh155122 	(void) rn_inithead((void **)&ipst->ips_ip_ftable, 32);
2244f4b3ec61Sdh155122 
22457c478bd9Sstevel@tonic-gate 	/*
22467c478bd9Sstevel@tonic-gate 	 * Make sure that the forwarding table size is a power of 2.
22477c478bd9Sstevel@tonic-gate 	 * The IRE*_ADDR_HASH() macroes depend on that.
22487c478bd9Sstevel@tonic-gate 	 */
2249f4b3ec61Sdh155122 	ipst->ips_ip6_ftable_hash_size = ip6_ftable_hash_size;
2250f4b3ec61Sdh155122 	power2_roundup(&ipst->ips_ip6_ftable_hash_size);
2251f4b3ec61Sdh155122 
2252bd670b35SErik Nordmark 	/*
2253bd670b35SErik Nordmark 	 * Allocate/initialize a pair of IRE_NOROUTEs for each of IPv4 and IPv6.
2254bd670b35SErik Nordmark 	 * The ire_reject_v* has RTF_REJECT set, and the ire_blackhole_v* has
2255bd670b35SErik Nordmark 	 * RTF_BLACKHOLE set. We use the latter for transient errors such
2256bd670b35SErik Nordmark 	 * as memory allocation failures and tripping on IRE_IS_CONDEMNED
2257bd670b35SErik Nordmark 	 * entries.
2258bd670b35SErik Nordmark 	 */
2259bd670b35SErik Nordmark 	ire = kmem_cache_alloc(ire_cache, KM_SLEEP);
2260bd670b35SErik Nordmark 	*ire = ire_null;
2261bd670b35SErik Nordmark 	error = ire_init_v4(ire, 0, 0, 0, IRE_NOROUTE, NULL, ALL_ZONES,
2262bd670b35SErik Nordmark 	    RTF_REJECT|RTF_UP, NULL, ipst);
2263bd670b35SErik Nordmark 	ASSERT(error == 0);
2264bd670b35SErik Nordmark 	ipst->ips_ire_reject_v4 = ire;
2265bd670b35SErik Nordmark 
2266bd670b35SErik Nordmark 	ire = kmem_cache_alloc(ire_cache, KM_SLEEP);
2267bd670b35SErik Nordmark 	*ire = ire_null;
2268bd670b35SErik Nordmark 	error = ire_init_v6(ire, 0, 0, 0, IRE_NOROUTE, NULL, ALL_ZONES,
2269bd670b35SErik Nordmark 	    RTF_REJECT|RTF_UP, NULL, ipst);
2270bd670b35SErik Nordmark 	ASSERT(error == 0);
2271bd670b35SErik Nordmark 	ipst->ips_ire_reject_v6 = ire;
2272bd670b35SErik Nordmark 
2273bd670b35SErik Nordmark 	ire = kmem_cache_alloc(ire_cache, KM_SLEEP);
2274bd670b35SErik Nordmark 	*ire = ire_null;
2275bd670b35SErik Nordmark 	error = ire_init_v4(ire, 0, 0, 0, IRE_NOROUTE, NULL, ALL_ZONES,
2276bd670b35SErik Nordmark 	    RTF_BLACKHOLE|RTF_UP, NULL, ipst);
2277bd670b35SErik Nordmark 	ASSERT(error == 0);
2278bd670b35SErik Nordmark 	ipst->ips_ire_blackhole_v4 = ire;
2279bd670b35SErik Nordmark 
2280bd670b35SErik Nordmark 	ire = kmem_cache_alloc(ire_cache, KM_SLEEP);
2281bd670b35SErik Nordmark 	*ire = ire_null;
2282bd670b35SErik Nordmark 	error = ire_init_v6(ire, 0, 0, 0, IRE_NOROUTE, NULL, ALL_ZONES,
2283bd670b35SErik Nordmark 	    RTF_BLACKHOLE|RTF_UP, NULL, ipst);
2284bd670b35SErik Nordmark 	ASSERT(error == 0);
2285bd670b35SErik Nordmark 	ipst->ips_ire_blackhole_v6 = ire;
2286bd670b35SErik Nordmark 
2287bd670b35SErik Nordmark 	rw_init(&ipst->ips_ip6_ire_head_lock, NULL, RW_DEFAULT, NULL);
2288bd670b35SErik Nordmark 	rw_init(&ipst->ips_ire_dep_lock, NULL, RW_DEFAULT, NULL);
22897c478bd9Sstevel@tonic-gate }
22907c478bd9Sstevel@tonic-gate 
22917c478bd9Sstevel@tonic-gate void
2292f4b3ec61Sdh155122 ip_ire_g_fini(void)
2293f4b3ec61Sdh155122 {
2294f4b3ec61Sdh155122 	kmem_cache_destroy(ire_cache);
2295bd670b35SErik Nordmark 	kmem_cache_destroy(ncec_cache);
2296bd670b35SErik Nordmark 	kmem_cache_destroy(nce_cache);
2297f4b3ec61Sdh155122 	kmem_cache_destroy(rt_entry_cache);
2298f4b3ec61Sdh155122 
2299f4b3ec61Sdh155122 	rn_fini();
2300f4b3ec61Sdh155122 }
2301f4b3ec61Sdh155122 
2302f4b3ec61Sdh155122 void
2303f4b3ec61Sdh155122 ip_ire_fini(ip_stack_t *ipst)
23047c478bd9Sstevel@tonic-gate {
23057c478bd9Sstevel@tonic-gate 	int i;
23067c478bd9Sstevel@tonic-gate 
2307bd670b35SErik Nordmark 	rw_destroy(&ipst->ips_ire_dep_lock);
2308bd670b35SErik Nordmark 	rw_destroy(&ipst->ips_ip6_ire_head_lock);
2309bd670b35SErik Nordmark 
2310bd670b35SErik Nordmark 	ire_refrele_notr(ipst->ips_ire_reject_v6);
2311bd670b35SErik Nordmark 	ipst->ips_ire_reject_v6 = NULL;
2312bd670b35SErik Nordmark 	ire_refrele_notr(ipst->ips_ire_reject_v4);
2313bd670b35SErik Nordmark 	ipst->ips_ire_reject_v4 = NULL;
2314bd670b35SErik Nordmark 	ire_refrele_notr(ipst->ips_ire_blackhole_v6);
2315bd670b35SErik Nordmark 	ipst->ips_ire_blackhole_v6 = NULL;
2316bd670b35SErik Nordmark 	ire_refrele_notr(ipst->ips_ire_blackhole_v4);
2317bd670b35SErik Nordmark 	ipst->ips_ire_blackhole_v4 = NULL;
2318bd670b35SErik Nordmark 
2319f4b3ec61Sdh155122 	/*
2320f4b3ec61Sdh155122 	 * Delete all IREs - assumes that the ill/ipifs have
2321bd670b35SErik Nordmark 	 * been removed so what remains are just the ftable to handle.
2322f4b3ec61Sdh155122 	 */
2323f4b3ec61Sdh155122 	ire_walk(ire_delete, NULL, ipst);
2324c793af95Ssangeeta 
2325f4b3ec61Sdh155122 	rn_freehead(ipst->ips_ip_ftable);
2326f4b3ec61Sdh155122 	ipst->ips_ip_ftable = NULL;
23277c478bd9Sstevel@tonic-gate 
2328f4b3ec61Sdh155122 	mutex_destroy(&ipst->ips_ire_ft_init_lock);
23297c478bd9Sstevel@tonic-gate 
2330f4b3ec61Sdh155122 	for (i = 0; i < IP6_MASK_TABLE_SIZE; i++) {
2331f4b3ec61Sdh155122 		irb_t *ptr;
2332f4b3ec61Sdh155122 		int j;
2333f4b3ec61Sdh155122 
2334f4b3ec61Sdh155122 		if ((ptr = ipst->ips_ip_forwarding_table_v6[i]) == NULL)
2335f4b3ec61Sdh155122 			continue;
2336f4b3ec61Sdh155122 
2337f4b3ec61Sdh155122 		for (j = 0; j < ipst->ips_ip6_ftable_hash_size; j++) {
2338f4b3ec61Sdh155122 			ASSERT(ptr[j].irb_ire == NULL);
2339f4b3ec61Sdh155122 			rw_destroy(&ptr[j].irb_lock);
2340f4b3ec61Sdh155122 		}
2341f4b3ec61Sdh155122 		mi_free(ptr);
2342f4b3ec61Sdh155122 		ipst->ips_ip_forwarding_table_v6[i] = NULL;
2343f4b3ec61Sdh155122 	}
23447c478bd9Sstevel@tonic-gate }
23457c478bd9Sstevel@tonic-gate 
23466a8288c7Scarlsonj #ifdef DEBUG
23477c478bd9Sstevel@tonic-gate void
23487c478bd9Sstevel@tonic-gate ire_trace_ref(ire_t *ire)
23497c478bd9Sstevel@tonic-gate {
23507c478bd9Sstevel@tonic-gate 	mutex_enter(&ire->ire_lock);
23516a8288c7Scarlsonj 	if (ire->ire_trace_disable) {
23527c478bd9Sstevel@tonic-gate 		mutex_exit(&ire->ire_lock);
23537c478bd9Sstevel@tonic-gate 		return;
23547c478bd9Sstevel@tonic-gate 	}
23556a8288c7Scarlsonj 
23566a8288c7Scarlsonj 	if (th_trace_ref(ire, ire->ire_ipst)) {
23576a8288c7Scarlsonj 		mutex_exit(&ire->ire_lock);
23586a8288c7Scarlsonj 	} else {
23597c478bd9Sstevel@tonic-gate 		ire->ire_trace_disable = B_TRUE;
23607c478bd9Sstevel@tonic-gate 		mutex_exit(&ire->ire_lock);
23616a8288c7Scarlsonj 		ire_trace_cleanup(ire);
23627c478bd9Sstevel@tonic-gate 	}
23637c478bd9Sstevel@tonic-gate }
23647c478bd9Sstevel@tonic-gate 
23657c478bd9Sstevel@tonic-gate void
23667c478bd9Sstevel@tonic-gate ire_untrace_ref(ire_t *ire)
23677c478bd9Sstevel@tonic-gate {
23687c478bd9Sstevel@tonic-gate 	mutex_enter(&ire->ire_lock);
23696a8288c7Scarlsonj 	if (!ire->ire_trace_disable)
23706a8288c7Scarlsonj 		th_trace_unref(ire);
23717c478bd9Sstevel@tonic-gate 	mutex_exit(&ire->ire_lock);
23727c478bd9Sstevel@tonic-gate }
23737c478bd9Sstevel@tonic-gate 
23747c478bd9Sstevel@tonic-gate static void
23756a8288c7Scarlsonj ire_trace_cleanup(const ire_t *ire)
23767c478bd9Sstevel@tonic-gate {
23776a8288c7Scarlsonj 	th_trace_cleanup(ire, ire->ire_trace_disable);
23787c478bd9Sstevel@tonic-gate }
23796a8288c7Scarlsonj #endif /* DEBUG */
2380c793af95Ssangeeta 
2381c793af95Ssangeeta /*
2382bd670b35SErik Nordmark  * Find, or create if needed, the nce_t pointer to the neighbor cache
2383bd670b35SErik Nordmark  * entry ncec_t for an IPv4 address. The nce_t will be created on the ill_t
2384bd670b35SErik Nordmark  * in the non-IPMP case, or on the cast-ill in the IPMP bcast/mcast case, or
2385bd670b35SErik Nordmark  * on the next available under-ill (selected by the IPMP rotor) in the
2386bd670b35SErik Nordmark  * unicast IPMP case.
238754da8755Ssowmini  *
238854da8755Ssowmini  * If a neighbor-cache entry has to be created (i.e., one does not already
2389bd670b35SErik Nordmark  * exist in the nce list) the ncec_lladdr and ncec_state of the neighbor cache
2390bd670b35SErik Nordmark  * entry are initialized in nce_add_v4(). The broadcast, multicast, and
2391bd670b35SErik Nordmark  * link-layer type determine the contents of {ncec_state, ncec_lladdr} of
2392bd670b35SErik Nordmark  * the ncec_t created. The ncec_lladdr is non-null for all link types with
2393bd670b35SErik Nordmark  * non-zero ill_phys_addr_length, though the contents may be zero in cases
2394bd670b35SErik Nordmark  * where the link-layer type is not known at the time of creation
2395bd670b35SErik Nordmark  * (e.g., IRE_IFRESOLVER links)
2396bd670b35SErik Nordmark  *
2397bd670b35SErik Nordmark  * All IRE_BROADCAST entries have ncec_state = ND_REACHABLE, and the nce_lladr
2398bd670b35SErik Nordmark  * has the physical broadcast address of the outgoing interface.
2399bd670b35SErik Nordmark  * For unicast ire entries,
240054da8755Ssowmini  *   - if the outgoing interface is of type IRE_IF_RESOLVER, a newly created
2401bd670b35SErik Nordmark  *     ncec_t with 0 nce_lladr contents, and will be in the ND_INITIAL state.
240254da8755Ssowmini  *   - if the outgoing interface is a IRE_IF_NORESOLVER interface, no link
2403bd670b35SErik Nordmark  *     layer resolution is necessary, so that the ncec_t will be in the
2404bd670b35SErik Nordmark  *     ND_REACHABLE state
240554da8755Ssowmini  *
240654da8755Ssowmini  * The link layer information needed for broadcast addresses, and for
240754da8755Ssowmini  * packets sent on IRE_IF_NORESOLVER interfaces is a constant mapping that
2408bd670b35SErik Nordmark  * never needs re-verification for the lifetime of the ncec_t. These are
2409bd670b35SErik Nordmark  * therefore marked NCE_F_NONUD.
241054da8755Ssowmini  *
2411bd670b35SErik Nordmark  * The nce returned will be created such that the nce_ill == ill that
2412bd670b35SErik Nordmark  * is passed in. Note that the nce itself may not have ncec_ill == ill
2413bd670b35SErik Nordmark  * where IPMP links are involved.
2414c793af95Ssangeeta  */
2415bd670b35SErik Nordmark static nce_t *
2416bd670b35SErik Nordmark ire_nce_init(ill_t *ill, const void *addr, int ire_type)
2417c793af95Ssangeeta {
2418c793af95Ssangeeta 	int		err;
241954da8755Ssowmini 	nce_t		*nce = NULL;
2420bd670b35SErik Nordmark 	uint16_t	ncec_flags;
2421bd670b35SErik Nordmark 	uchar_t		*hwaddr;
2422bd670b35SErik Nordmark 	boolean_t	need_refrele = B_FALSE;
2423bd670b35SErik Nordmark 	ill_t		*in_ill = ill;
2424bd670b35SErik Nordmark 	boolean_t	is_unicast;
2425bd670b35SErik Nordmark 	uint_t		hwaddr_len;
2426c793af95Ssangeeta 
2427bd670b35SErik Nordmark 	is_unicast = ((ire_type & (IRE_MULTICAST|IRE_BROADCAST)) == 0);
2428bd670b35SErik Nordmark 	if (IS_IPMP(ill) ||
2429bd670b35SErik Nordmark 	    ((ire_type & IRE_BROADCAST) && IS_UNDER_IPMP(ill))) {
2430bd670b35SErik Nordmark 		if ((ill = ipmp_ill_get_xmit_ill(ill, is_unicast)) == NULL)
2431bd670b35SErik Nordmark 			return (NULL);
2432bd670b35SErik Nordmark 		need_refrele = B_TRUE;
2433bd670b35SErik Nordmark 	}
2434bd670b35SErik Nordmark 	ncec_flags = (ill->ill_flags & ILLF_NONUD) ? NCE_F_NONUD : 0;
2435c793af95Ssangeeta 
2436bd670b35SErik Nordmark 	switch (ire_type) {
2437c793af95Ssangeeta 	case IRE_BROADCAST:
2438bd670b35SErik Nordmark 		ASSERT(!ill->ill_isv6);
2439bd670b35SErik Nordmark 		ncec_flags |= (NCE_F_BCAST|NCE_F_NONUD);
2440c793af95Ssangeeta 		break;
2441bd670b35SErik Nordmark 	case IRE_MULTICAST:
2442bd670b35SErik Nordmark 		ncec_flags |= (NCE_F_MCAST|NCE_F_NONUD);
2443bd670b35SErik Nordmark 		break;
2444c793af95Ssangeeta 	}
2445c793af95Ssangeeta 
2446bd670b35SErik Nordmark 	if (ill->ill_net_type == IRE_IF_NORESOLVER && is_unicast) {
2447bd670b35SErik Nordmark 		hwaddr = ill->ill_dest_addr;
2448bd670b35SErik Nordmark 	} else {
2449bd670b35SErik Nordmark 		hwaddr = NULL;
2450b9c344b3Ssowmini 	}
2451bd670b35SErik Nordmark 	hwaddr_len = ill->ill_phys_addr_length;
2452b9c344b3Ssowmini 
2453bd670b35SErik Nordmark retry:
2454bd670b35SErik Nordmark 	/* nce_state will be computed by nce_add_common() */
2455bd670b35SErik Nordmark 	if (!ill->ill_isv6) {
2456bd670b35SErik Nordmark 		err = nce_lookup_then_add_v4(ill, hwaddr, hwaddr_len, addr,
2457bd670b35SErik Nordmark 		    ncec_flags, ND_UNCHANGED, &nce);
2458bd670b35SErik Nordmark 	} else {
2459bd670b35SErik Nordmark 		err = nce_lookup_then_add_v6(ill, hwaddr, hwaddr_len, addr,
2460bd670b35SErik Nordmark 		    ncec_flags, ND_UNCHANGED, &nce);
2461bd670b35SErik Nordmark 	}
2462c793af95Ssangeeta 
2463c793af95Ssangeeta 	switch (err) {
2464c793af95Ssangeeta 	case 0:
2465bd670b35SErik Nordmark 		break;
2466c793af95Ssangeeta 	case EEXIST:
2467c793af95Ssangeeta 		/*
2468bd670b35SErik Nordmark 		 * When subnets change or partially overlap what was once
2469bd670b35SErik Nordmark 		 * a broadcast address could now be a unicast, or vice versa.
2470c793af95Ssangeeta 		 */
2471bd670b35SErik Nordmark 		if (((ncec_flags ^ nce->nce_common->ncec_flags) &
2472bd670b35SErik Nordmark 		    NCE_F_BCAST) != 0) {
2473bd670b35SErik Nordmark 			ASSERT(!ill->ill_isv6);
2474bd670b35SErik Nordmark 			ncec_delete(nce->nce_common);
2475bd670b35SErik Nordmark 			nce_refrele(nce);
2476bd670b35SErik Nordmark 			goto retry;
2477bd670b35SErik Nordmark 		}
2478c793af95Ssangeeta 		break;
2479c793af95Ssangeeta 	default:
2480bd670b35SErik Nordmark 		DTRACE_PROBE2(nce__init__fail, ill_t *, ill, int, err);
2481bd670b35SErik Nordmark 		if (need_refrele)
2482bd670b35SErik Nordmark 			ill_refrele(ill);
2483bd670b35SErik Nordmark 		return (NULL);
2484c793af95Ssangeeta 	}
24859294ad19SSowmini Varadhan 	/*
2486bd670b35SErik Nordmark 	 * If the ill was an under-ill of an IPMP group, we need to verify
2487bd670b35SErik Nordmark 	 * that it is still active so that we select an active interface in
2488bd670b35SErik Nordmark 	 * the group. However, since ipmp_ill_is_active ASSERTs for
2489bd670b35SErik Nordmark 	 * IS_UNDER_IPMP(), we first need to verify that the ill is an
2490bd670b35SErik Nordmark 	 * under-ill, and since this is being done in the data path, the
2491bd670b35SErik Nordmark 	 * only way to ascertain this is by holding the ill_g_lock.
24929294ad19SSowmini Varadhan 	 */
2493bd670b35SErik Nordmark 	rw_enter(&ill->ill_ipst->ips_ill_g_lock, RW_READER);
2494bd670b35SErik Nordmark 	mutex_enter(&ill->ill_lock);
2495bd670b35SErik Nordmark 	mutex_enter(&ill->ill_phyint->phyint_lock);
2496bd670b35SErik Nordmark 	if (need_refrele && IS_UNDER_IPMP(ill) && !ipmp_ill_is_active(ill)) {
2497c793af95Ssangeeta 		/*
2498bd670b35SErik Nordmark 		 * need_refrele implies that the under ill was selected by
2499bd670b35SErik Nordmark 		 * ipmp_ill_get_xmit_ill() because either the in_ill was an
2500bd670b35SErik Nordmark 		 * ipmp_ill, or we are sending a non-unicast packet on
2501bd670b35SErik Nordmark 		 * an under_ill. However, when we get here, the ill selected by
2502bd670b35SErik Nordmark 		 * ipmp_ill_get_xmit_ill  was pulled out of the active set
2503bd670b35SErik Nordmark 		 * (for unicast)  or cast_ill nomination (for
2504bd670b35SErik Nordmark 		 * !unicast) after it was  picked as the outgoing ill.
2505bd670b35SErik Nordmark 		 * We have to pick an active interface and/or cast_ill in the
2506bd670b35SErik Nordmark 		 * group.
2507c793af95Ssangeeta 		 */
2508bd670b35SErik Nordmark 		mutex_exit(&ill->ill_phyint->phyint_lock);
2509bd670b35SErik Nordmark 		nce_delete(nce);
2510bd670b35SErik Nordmark 		mutex_exit(&ill->ill_lock);
2511bd670b35SErik Nordmark 		rw_exit(&ill->ill_ipst->ips_ill_g_lock);
2512bd670b35SErik Nordmark 		nce_refrele(nce);
2513bd670b35SErik Nordmark 		ill_refrele(ill);
2514bd670b35SErik Nordmark 		if ((ill = ipmp_ill_get_xmit_ill(in_ill, is_unicast)) == NULL)
2515bd670b35SErik Nordmark 			return (NULL);
2516bd670b35SErik Nordmark 		goto retry;
2517c793af95Ssangeeta 	} else {
2518bd670b35SErik Nordmark 		mutex_exit(&ill->ill_phyint->phyint_lock);
2519bd670b35SErik Nordmark 		mutex_exit(&ill->ill_lock);
2520bd670b35SErik Nordmark 		rw_exit(&ill->ill_ipst->ips_ill_g_lock);
2521bd670b35SErik Nordmark 	}
2522bd670b35SErik Nordmark done:
2523bd670b35SErik Nordmark 	ASSERT(nce->nce_ill == ill);
2524bd670b35SErik Nordmark 	if (need_refrele)
2525bd670b35SErik Nordmark 		ill_refrele(ill);
2526bd670b35SErik Nordmark 	return (nce);
2527bd670b35SErik Nordmark }
2528bd670b35SErik Nordmark 
2529bd670b35SErik Nordmark nce_t *
2530bd670b35SErik Nordmark arp_nce_init(ill_t *ill, in_addr_t addr4, int ire_type)
2531bd670b35SErik Nordmark {
2532bd670b35SErik Nordmark 	return (ire_nce_init(ill, &addr4, ire_type));
2533bd670b35SErik Nordmark }
2534bd670b35SErik Nordmark 
2535bd670b35SErik Nordmark nce_t *
2536bd670b35SErik Nordmark ndp_nce_init(ill_t *ill, const in6_addr_t *addr6, int ire_type)
2537bd670b35SErik Nordmark {
2538bd670b35SErik Nordmark 	ASSERT((ire_type & IRE_BROADCAST) == 0);
2539bd670b35SErik Nordmark 	return (ire_nce_init(ill, addr6, ire_type));
2540bd670b35SErik Nordmark }
2541bd670b35SErik Nordmark 
2542bd670b35SErik Nordmark /*
2543bd670b35SErik Nordmark  * The caller should hold irb_lock as a writer if the ire is in a bucket.
2544bd670b35SErik Nordmark  */
2545bd670b35SErik Nordmark void
2546bd670b35SErik Nordmark ire_make_condemned(ire_t *ire)
2547bd670b35SErik Nordmark {
2548bd670b35SErik Nordmark 	ip_stack_t	*ipst = ire->ire_ipst;
2549bd670b35SErik Nordmark 
2550bd670b35SErik Nordmark 	mutex_enter(&ire->ire_lock);
2551bd670b35SErik Nordmark 	ASSERT(ire->ire_bucket == NULL ||
2552bd670b35SErik Nordmark 	    RW_WRITE_HELD(&ire->ire_bucket->irb_lock));
2553bd670b35SErik Nordmark 	ASSERT(!IRE_IS_CONDEMNED(ire));
2554bd670b35SErik Nordmark 	ire->ire_generation = IRE_GENERATION_CONDEMNED;
2555bd670b35SErik Nordmark 	/* Count how many condemned ires for kmem_cache callback */
2556bd670b35SErik Nordmark 	atomic_add_32(&ipst->ips_num_ire_condemned, 1);
2557bd670b35SErik Nordmark 	mutex_exit(&ire->ire_lock);
2558bd670b35SErik Nordmark }
2559bd670b35SErik Nordmark 
2560bd670b35SErik Nordmark /*
2561bd670b35SErik Nordmark  * Increment the generation avoiding the special condemned value
2562bd670b35SErik Nordmark  */
2563bd670b35SErik Nordmark void
2564bd670b35SErik Nordmark ire_increment_generation(ire_t *ire)
2565bd670b35SErik Nordmark {
2566bd670b35SErik Nordmark 	uint_t generation;
2567bd670b35SErik Nordmark 
2568bd670b35SErik Nordmark 	mutex_enter(&ire->ire_lock);
2569bd670b35SErik Nordmark 	/*
2570bd670b35SErik Nordmark 	 * Even though the caller has a hold it can't prevent a concurrent
2571bd670b35SErik Nordmark 	 * ire_delete marking the IRE condemned
2572bd670b35SErik Nordmark 	 */
2573bd670b35SErik Nordmark 	if (!IRE_IS_CONDEMNED(ire)) {
2574bd670b35SErik Nordmark 		generation = ire->ire_generation + 1;
2575bd670b35SErik Nordmark 		if (generation == IRE_GENERATION_CONDEMNED)
2576bd670b35SErik Nordmark 			generation = IRE_GENERATION_INITIAL;
2577bd670b35SErik Nordmark 		ASSERT(generation != IRE_GENERATION_VERIFY);
2578bd670b35SErik Nordmark 		ire->ire_generation = generation;
2579bd670b35SErik Nordmark 	}
2580bd670b35SErik Nordmark 	mutex_exit(&ire->ire_lock);
2581bd670b35SErik Nordmark }
2582bd670b35SErik Nordmark 
2583bd670b35SErik Nordmark /*
2584bd670b35SErik Nordmark  * Increment ire_generation on all the IRE_MULTICASTs
2585bd670b35SErik Nordmark  * Used when the default multicast interface (as determined by
2586bd670b35SErik Nordmark  * ill_lookup_multicast) might have changed.
2587bd670b35SErik Nordmark  *
2588bd670b35SErik Nordmark  * That includes the zoneid, IFF_ flags, the IPv6 scope of the address, and
2589bd670b35SErik Nordmark  * ill unplumb.
2590bd670b35SErik Nordmark  */
2591bd670b35SErik Nordmark void
2592bd670b35SErik Nordmark ire_increment_multicast_generation(ip_stack_t *ipst, boolean_t isv6)
2593bd670b35SErik Nordmark {
2594bd670b35SErik Nordmark 	ill_t	*ill;
2595bd670b35SErik Nordmark 	ill_walk_context_t ctx;
2596bd670b35SErik Nordmark 
2597bd670b35SErik Nordmark 	rw_enter(&ipst->ips_ill_g_lock, RW_READER);
2598bd670b35SErik Nordmark 	if (isv6)
2599bd670b35SErik Nordmark 		ill = ILL_START_WALK_V6(&ctx, ipst);
2600bd670b35SErik Nordmark 	else
2601bd670b35SErik Nordmark 		ill = ILL_START_WALK_V4(&ctx, ipst);
2602bd670b35SErik Nordmark 	for (; ill != NULL; ill = ill_next(&ctx, ill)) {
2603bd670b35SErik Nordmark 		if (ILL_IS_CONDEMNED(ill))
2604bd670b35SErik Nordmark 			continue;
2605bd670b35SErik Nordmark 		if (ill->ill_ire_multicast != NULL)
2606bd670b35SErik Nordmark 			ire_increment_generation(ill->ill_ire_multicast);
2607bd670b35SErik Nordmark 	}
2608bd670b35SErik Nordmark 	rw_exit(&ipst->ips_ill_g_lock);
2609bd670b35SErik Nordmark }
2610bd670b35SErik Nordmark 
2611bd670b35SErik Nordmark /*
2612bd670b35SErik Nordmark  * Return a held IRE_NOROUTE with RTF_REJECT set
2613bd670b35SErik Nordmark  */
2614bd670b35SErik Nordmark ire_t *
2615bd670b35SErik Nordmark ire_reject(ip_stack_t *ipst, boolean_t isv6)
2616bd670b35SErik Nordmark {
2617bd670b35SErik Nordmark 	ire_t *ire;
2618bd670b35SErik Nordmark 
2619bd670b35SErik Nordmark 	if (isv6)
2620bd670b35SErik Nordmark 		ire = ipst->ips_ire_reject_v6;
2621bd670b35SErik Nordmark 	else
2622bd670b35SErik Nordmark 		ire = ipst->ips_ire_reject_v4;
2623bd670b35SErik Nordmark 
2624bd670b35SErik Nordmark 	ASSERT(ire->ire_generation != IRE_GENERATION_CONDEMNED);
2625bd670b35SErik Nordmark 	ire_refhold(ire);
2626bd670b35SErik Nordmark 	return (ire);
2627bd670b35SErik Nordmark }
2628bd670b35SErik Nordmark 
2629bd670b35SErik Nordmark /*
2630bd670b35SErik Nordmark  * Return a held IRE_NOROUTE with RTF_BLACKHOLE set
2631bd670b35SErik Nordmark  */
2632bd670b35SErik Nordmark ire_t *
2633bd670b35SErik Nordmark ire_blackhole(ip_stack_t *ipst, boolean_t isv6)
2634bd670b35SErik Nordmark {
2635bd670b35SErik Nordmark 	ire_t *ire;
2636bd670b35SErik Nordmark 
2637bd670b35SErik Nordmark 	if (isv6)
2638bd670b35SErik Nordmark 		ire = ipst->ips_ire_blackhole_v6;
2639bd670b35SErik Nordmark 	else
2640bd670b35SErik Nordmark 		ire = ipst->ips_ire_blackhole_v4;
2641bd670b35SErik Nordmark 
2642bd670b35SErik Nordmark 	ASSERT(ire->ire_generation != IRE_GENERATION_CONDEMNED);
2643bd670b35SErik Nordmark 	ire_refhold(ire);
2644bd670b35SErik Nordmark 	return (ire);
2645bd670b35SErik Nordmark }
2646bd670b35SErik Nordmark 
2647bd670b35SErik Nordmark /*
2648bd670b35SErik Nordmark  * Return a held IRE_MULTICAST.
2649bd670b35SErik Nordmark  */
2650bd670b35SErik Nordmark ire_t *
2651bd670b35SErik Nordmark ire_multicast(ill_t *ill)
2652bd670b35SErik Nordmark {
2653bd670b35SErik Nordmark 	ire_t *ire = ill->ill_ire_multicast;
2654bd670b35SErik Nordmark 
2655bd670b35SErik Nordmark 	ASSERT(ire == NULL || ire->ire_generation != IRE_GENERATION_CONDEMNED);
2656bd670b35SErik Nordmark 	if (ire == NULL)
2657bd670b35SErik Nordmark 		ire = ire_blackhole(ill->ill_ipst, ill->ill_isv6);
2658bd670b35SErik Nordmark 	else
2659bd670b35SErik Nordmark 		ire_refhold(ire);
2660bd670b35SErik Nordmark 	return (ire);
2661bd670b35SErik Nordmark }
2662bd670b35SErik Nordmark 
2663bd670b35SErik Nordmark /*
2664bd670b35SErik Nordmark  * Given an IRE return its nexthop IRE. The nexthop IRE is an IRE_ONLINK
2665bd670b35SErik Nordmark  * that is an exact match (i.e., a /32 for IPv4 and /128 for IPv6).
2666bd670b35SErik Nordmark  * This can return an RTF_REJECT|RTF_BLACKHOLE.
2667bd670b35SErik Nordmark  * The returned IRE is held.
2668bd670b35SErik Nordmark  * The assumption is that ip_select_route() has been called and returned the
2669bd670b35SErik Nordmark  * IRE (thus ip_select_route would have set up the ire_dep* information.)
2670bd670b35SErik Nordmark  * If some IRE is deleteted then ire_dep_remove() will have been called and
2671bd670b35SErik Nordmark  * we might not find a nexthop IRE, in which case we return NULL.
2672bd670b35SErik Nordmark  */
2673bd670b35SErik Nordmark ire_t *
2674bd670b35SErik Nordmark ire_nexthop(ire_t *ire)
2675bd670b35SErik Nordmark {
2676bd670b35SErik Nordmark 	ip_stack_t	*ipst = ire->ire_ipst;
2677bd670b35SErik Nordmark 
2678bd670b35SErik Nordmark 	/* Acquire lock to walk ire_dep_parent */
2679bd670b35SErik Nordmark 	rw_enter(&ipst->ips_ire_dep_lock, RW_READER);
2680bd670b35SErik Nordmark 	while (ire != NULL) {
2681bd670b35SErik Nordmark 		if (ire->ire_flags & (RTF_REJECT|RTF_BLACKHOLE)) {
2682bd670b35SErik Nordmark 			goto done;
26839294ad19SSowmini Varadhan 		}
2684c793af95Ssangeeta 		/*
2685bd670b35SErik Nordmark 		 * If we find an IRE_ONLINK we are done. This includes
2686bd670b35SErik Nordmark 		 * the case of IRE_MULTICAST.
2687bd670b35SErik Nordmark 		 * Note that in order to send packets we need a host-specific
2688bd670b35SErik Nordmark 		 * IRE_IF_ALL first in the ire_dep_parent chain. Normally this
2689bd670b35SErik Nordmark 		 * is done by inserting an IRE_IF_CLONE if the IRE_INTERFACE
2690bd670b35SErik Nordmark 		 * was not host specific.
2691bd670b35SErik Nordmark 		 * However, ip_rts_request doesn't want to send packets
2692bd670b35SErik Nordmark 		 * hence doesn't want to allocate an IRE_IF_CLONE. Yet
2693bd670b35SErik Nordmark 		 * it needs an IRE_IF_ALL to get to the ill. Thus
2694bd670b35SErik Nordmark 		 * we return IRE_IF_ALL that are not host specific here.
2695c793af95Ssangeeta 		 */
2696bd670b35SErik Nordmark 		if (ire->ire_type & IRE_ONLINK)
2697bd670b35SErik Nordmark 			goto done;
2698bd670b35SErik Nordmark 		ire = ire->ire_dep_parent;
2699c793af95Ssangeeta 	}
2700bd670b35SErik Nordmark 	rw_exit(&ipst->ips_ire_dep_lock);
2701bd670b35SErik Nordmark 	return (NULL);
2702bd670b35SErik Nordmark 
2703bd670b35SErik Nordmark done:
2704bd670b35SErik Nordmark 	ire_refhold(ire);
2705bd670b35SErik Nordmark 	rw_exit(&ipst->ips_ire_dep_lock);
2706bd670b35SErik Nordmark 	return (ire);
2707bd670b35SErik Nordmark }
2708bd670b35SErik Nordmark 
2709bd670b35SErik Nordmark /*
2710bd670b35SErik Nordmark  * Find the ill used to send packets. This will be NULL in case
2711bd670b35SErik Nordmark  * of a reject or blackhole.
2712bd670b35SErik Nordmark  * The returned ill is held; caller needs to do ill_refrele when done.
2713bd670b35SErik Nordmark  */
2714bd670b35SErik Nordmark ill_t *
2715bd670b35SErik Nordmark ire_nexthop_ill(ire_t *ire)
2716bd670b35SErik Nordmark {
2717bd670b35SErik Nordmark 	ill_t		*ill;
2718bd670b35SErik Nordmark 
2719bd670b35SErik Nordmark 	ire = ire_nexthop(ire);
2720bd670b35SErik Nordmark 	if (ire == NULL)
2721bd670b35SErik Nordmark 		return (NULL);
2722bd670b35SErik Nordmark 
2723bd670b35SErik Nordmark 	/* ire_ill can not change for an existing ire */
2724bd670b35SErik Nordmark 	ill = ire->ire_ill;
2725bd670b35SErik Nordmark 	if (ill != NULL)
2726bd670b35SErik Nordmark 		ill_refhold(ill);
2727bd670b35SErik Nordmark 	ire_refrele(ire);
2728bd670b35SErik Nordmark 	return (ill);
2729bd670b35SErik Nordmark }
2730bd670b35SErik Nordmark 
2731bd670b35SErik Nordmark #ifdef DEBUG
2732bd670b35SErik Nordmark static boolean_t
2733bd670b35SErik Nordmark parent_has_child(ire_t *parent, ire_t *child)
2734bd670b35SErik Nordmark {
2735bd670b35SErik Nordmark 	ire_t	*ire;
2736bd670b35SErik Nordmark 	ire_t	*prev;
2737bd670b35SErik Nordmark 
2738bd670b35SErik Nordmark 	ire = parent->ire_dep_children;
2739bd670b35SErik Nordmark 	prev = NULL;
2740bd670b35SErik Nordmark 	while (ire != NULL) {
2741bd670b35SErik Nordmark 		if (prev == NULL) {
2742bd670b35SErik Nordmark 			ASSERT(ire->ire_dep_sib_ptpn ==
2743bd670b35SErik Nordmark 			    &(parent->ire_dep_children));
2744bd670b35SErik Nordmark 		} else {
2745bd670b35SErik Nordmark 			ASSERT(ire->ire_dep_sib_ptpn ==
2746bd670b35SErik Nordmark 			    &(prev->ire_dep_sib_next));
2747bd670b35SErik Nordmark 		}
2748bd670b35SErik Nordmark 		if (ire == child)
2749bd670b35SErik Nordmark 			return (B_TRUE);
2750bd670b35SErik Nordmark 		prev = ire;
2751bd670b35SErik Nordmark 		ire = ire->ire_dep_sib_next;
2752bd670b35SErik Nordmark 	}
2753bd670b35SErik Nordmark 	return (B_FALSE);
2754bd670b35SErik Nordmark }
2755bd670b35SErik Nordmark 
2756bd670b35SErik Nordmark static void
2757bd670b35SErik Nordmark ire_dep_verify(ire_t *ire)
2758bd670b35SErik Nordmark {
2759bd670b35SErik Nordmark 	ire_t		*parent = ire->ire_dep_parent;
2760bd670b35SErik Nordmark 	ire_t		*child = ire->ire_dep_children;
2761bd670b35SErik Nordmark 
2762bd670b35SErik Nordmark 	ASSERT(ire->ire_ipversion == IPV4_VERSION ||
2763bd670b35SErik Nordmark 	    ire->ire_ipversion == IPV6_VERSION);
2764bd670b35SErik Nordmark 	if (parent != NULL) {
2765bd670b35SErik Nordmark 		ASSERT(parent->ire_ipversion == IPV4_VERSION ||
2766bd670b35SErik Nordmark 		    parent->ire_ipversion == IPV6_VERSION);
2767bd670b35SErik Nordmark 		ASSERT(parent->ire_refcnt >= 1);
2768bd670b35SErik Nordmark 		ASSERT(parent_has_child(parent, ire));
2769bd670b35SErik Nordmark 	}
2770bd670b35SErik Nordmark 	if (child != NULL) {
2771bd670b35SErik Nordmark 		ASSERT(child->ire_ipversion == IPV4_VERSION ||
2772bd670b35SErik Nordmark 		    child->ire_ipversion == IPV6_VERSION);
2773bd670b35SErik Nordmark 		ASSERT(child->ire_dep_parent == ire);
2774bd670b35SErik Nordmark 		ASSERT(child->ire_dep_sib_ptpn != NULL);
2775bd670b35SErik Nordmark 		ASSERT(parent_has_child(ire, child));
2776bd670b35SErik Nordmark 	}
2777bd670b35SErik Nordmark }
2778bd670b35SErik Nordmark #endif /* DEBUG */
2779bd670b35SErik Nordmark 
2780bd670b35SErik Nordmark /*
2781bd670b35SErik Nordmark  * Assumes ire_dep_parent is set. Remove this child from its parent's linkage.
2782bd670b35SErik Nordmark  */
2783bd670b35SErik Nordmark void
2784bd670b35SErik Nordmark ire_dep_remove(ire_t *ire)
2785bd670b35SErik Nordmark {
2786bd670b35SErik Nordmark 	ip_stack_t	*ipst = ire->ire_ipst;
2787bd670b35SErik Nordmark 	ire_t		*parent = ire->ire_dep_parent;
2788bd670b35SErik Nordmark 	ire_t		*next;
2789bd670b35SErik Nordmark 	nce_t		*nce;
2790bd670b35SErik Nordmark 
2791bd670b35SErik Nordmark 	ASSERT(RW_WRITE_HELD(&ipst->ips_ire_dep_lock));
2792bd670b35SErik Nordmark 	ASSERT(ire->ire_dep_parent != NULL);
2793bd670b35SErik Nordmark 	ASSERT(ire->ire_dep_sib_ptpn != NULL);
2794bd670b35SErik Nordmark 
2795bd670b35SErik Nordmark #ifdef DEBUG
2796bd670b35SErik Nordmark 	ire_dep_verify(ire);
2797bd670b35SErik Nordmark 	ire_dep_verify(parent);
2798bd670b35SErik Nordmark #endif
2799bd670b35SErik Nordmark 
2800bd670b35SErik Nordmark 	next = ire->ire_dep_sib_next;
2801bd670b35SErik Nordmark 	if (next != NULL)
2802bd670b35SErik Nordmark 		next->ire_dep_sib_ptpn = ire->ire_dep_sib_ptpn;
2803bd670b35SErik Nordmark 
2804bd670b35SErik Nordmark 	ASSERT(*(ire->ire_dep_sib_ptpn) == ire);
2805bd670b35SErik Nordmark 	*(ire->ire_dep_sib_ptpn) = ire->ire_dep_sib_next;
2806bd670b35SErik Nordmark 
2807bd670b35SErik Nordmark 	ire->ire_dep_sib_ptpn = NULL;
2808bd670b35SErik Nordmark 	ire->ire_dep_sib_next = NULL;
2809bd670b35SErik Nordmark 
2810bd670b35SErik Nordmark 	mutex_enter(&ire->ire_lock);
2811bd670b35SErik Nordmark 	parent = ire->ire_dep_parent;
2812bd670b35SErik Nordmark 	ire->ire_dep_parent = NULL;
2813bd670b35SErik Nordmark 	mutex_exit(&ire->ire_lock);
2814bd670b35SErik Nordmark 
2815bd670b35SErik Nordmark 	/*
2816bd670b35SErik Nordmark 	 * Make sure all our children, grandchildren, etc set
2817bd670b35SErik Nordmark 	 * ire_dep_parent_generation to IRE_GENERATION_VERIFY since
2818bd670b35SErik Nordmark 	 * we can no longer guarantee than the children have a current
2819bd670b35SErik Nordmark 	 * ire_nce_cache and ire_nexthop_ill().
2820bd670b35SErik Nordmark 	 */
2821bd670b35SErik Nordmark 	if (ire->ire_dep_children != NULL)
2822bd670b35SErik Nordmark 		ire_dep_invalidate_children(ire->ire_dep_children);
2823bd670b35SErik Nordmark 
2824bd670b35SErik Nordmark 	/*
2825bd670b35SErik Nordmark 	 * Since the parent is gone we make sure we clear ire_nce_cache.
2826bd670b35SErik Nordmark 	 * We can clear it under ire_lock even if the IRE is used
2827bd670b35SErik Nordmark 	 */
2828bd670b35SErik Nordmark 	mutex_enter(&ire->ire_lock);
2829bd670b35SErik Nordmark 	nce = ire->ire_nce_cache;
2830bd670b35SErik Nordmark 	ire->ire_nce_cache = NULL;
2831bd670b35SErik Nordmark 	mutex_exit(&ire->ire_lock);
2832bd670b35SErik Nordmark 	if (nce != NULL)
2833bd670b35SErik Nordmark 		nce_refrele(nce);
2834bd670b35SErik Nordmark 
2835bd670b35SErik Nordmark #ifdef DEBUG
2836bd670b35SErik Nordmark 	ire_dep_verify(ire);
2837bd670b35SErik Nordmark 	ire_dep_verify(parent);
2838bd670b35SErik Nordmark #endif
2839bd670b35SErik Nordmark 
2840bd670b35SErik Nordmark 	ire_refrele_notr(parent);
2841bd670b35SErik Nordmark 	ire_refrele_notr(ire);
2842bd670b35SErik Nordmark }
2843bd670b35SErik Nordmark 
2844bd670b35SErik Nordmark /*
2845bd670b35SErik Nordmark  * Insert the child in the linkage of the parent
2846bd670b35SErik Nordmark  */
2847bd670b35SErik Nordmark static void
2848bd670b35SErik Nordmark ire_dep_parent_insert(ire_t *child, ire_t *parent)
2849bd670b35SErik Nordmark {
2850bd670b35SErik Nordmark 	ip_stack_t	*ipst = child->ire_ipst;
2851bd670b35SErik Nordmark 	ire_t		*next;
2852bd670b35SErik Nordmark 
2853bd670b35SErik Nordmark 	ASSERT(RW_WRITE_HELD(&ipst->ips_ire_dep_lock));
2854bd670b35SErik Nordmark 	ASSERT(child->ire_dep_parent == NULL);
2855bd670b35SErik Nordmark 
2856bd670b35SErik Nordmark #ifdef DEBUG
2857bd670b35SErik Nordmark 	ire_dep_verify(child);
2858bd670b35SErik Nordmark 	ire_dep_verify(parent);
2859bd670b35SErik Nordmark #endif
2860bd670b35SErik Nordmark 	/* No parents => no siblings */
2861bd670b35SErik Nordmark 	ASSERT(child->ire_dep_sib_ptpn == NULL);
2862bd670b35SErik Nordmark 	ASSERT(child->ire_dep_sib_next == NULL);
2863bd670b35SErik Nordmark 
2864bd670b35SErik Nordmark 	ire_refhold_notr(parent);
2865bd670b35SErik Nordmark 	ire_refhold_notr(child);
2866bd670b35SErik Nordmark 
2867bd670b35SErik Nordmark 	/* Head insertion */
2868bd670b35SErik Nordmark 	next = parent->ire_dep_children;
2869bd670b35SErik Nordmark 	if (next != NULL) {
2870bd670b35SErik Nordmark 		ASSERT(next->ire_dep_sib_ptpn == &(parent->ire_dep_children));
2871bd670b35SErik Nordmark 		child->ire_dep_sib_next = next;
2872bd670b35SErik Nordmark 		next->ire_dep_sib_ptpn = &(child->ire_dep_sib_next);
2873bd670b35SErik Nordmark 	}
2874bd670b35SErik Nordmark 	parent->ire_dep_children = child;
2875bd670b35SErik Nordmark 	child->ire_dep_sib_ptpn = &(parent->ire_dep_children);
2876bd670b35SErik Nordmark 
2877bd670b35SErik Nordmark 	mutex_enter(&child->ire_lock);
2878bd670b35SErik Nordmark 	child->ire_dep_parent = parent;
2879bd670b35SErik Nordmark 	mutex_exit(&child->ire_lock);
2880bd670b35SErik Nordmark 
2881bd670b35SErik Nordmark #ifdef DEBUG
2882bd670b35SErik Nordmark 	ire_dep_verify(child);
2883bd670b35SErik Nordmark 	ire_dep_verify(parent);
2884bd670b35SErik Nordmark #endif
2885bd670b35SErik Nordmark }
2886bd670b35SErik Nordmark 
2887bd670b35SErik Nordmark 
2888bd670b35SErik Nordmark /*
2889bd670b35SErik Nordmark  * Given count worth of ires and generations, build ire_dep_* relationships
2890bd670b35SErik Nordmark  * from ires[0] to ires[count-1]. Record generations[i+1] in
2891bd670b35SErik Nordmark  * ire_dep_parent_generation for ires[i].
2892bd670b35SErik Nordmark  * We graft onto an existing parent chain by making sure that we don't
2893bd670b35SErik Nordmark  * touch ire_dep_parent for ires[count-1].
2894bd670b35SErik Nordmark  *
2895bd670b35SErik Nordmark  * We check for any condemned ire_generation count and return B_FALSE in
2896bd670b35SErik Nordmark  * that case so that the caller can tear it apart.
2897bd670b35SErik Nordmark  *
2898bd670b35SErik Nordmark  * Note that generations[0] is not used. Caller handles that.
2899bd670b35SErik Nordmark  */
2900bd670b35SErik Nordmark boolean_t
2901bd670b35SErik Nordmark ire_dep_build(ire_t *ires[], uint_t generations[], uint_t count)
2902bd670b35SErik Nordmark {
2903bd670b35SErik Nordmark 	ire_t		*ire = ires[0];
2904bd670b35SErik Nordmark 	ip_stack_t	*ipst;
2905bd670b35SErik Nordmark 	uint_t		i;
2906bd670b35SErik Nordmark 
2907bd670b35SErik Nordmark 	ASSERT(count > 0);
2908bd670b35SErik Nordmark 	if (count == 1) {
2909bd670b35SErik Nordmark 		/* No work to do */
2910bd670b35SErik Nordmark 		return (B_TRUE);
2911bd670b35SErik Nordmark 	}
2912bd670b35SErik Nordmark 	ipst = ire->ire_ipst;
2913bd670b35SErik Nordmark 	rw_enter(&ipst->ips_ire_dep_lock, RW_WRITER);
2914bd670b35SErik Nordmark 	/*
2915bd670b35SErik Nordmark 	 * Do not remove the linkage for any existing parent chain i.e.,
2916bd670b35SErik Nordmark 	 * ires[count-1] is left alone.
2917bd670b35SErik Nordmark 	 */
2918bd670b35SErik Nordmark 	for (i = 0; i < count-1; i++) {
2919bd670b35SErik Nordmark 		/* Remove existing parent if we need to change it */
2920bd670b35SErik Nordmark 		if (ires[i]->ire_dep_parent != NULL &&
2921bd670b35SErik Nordmark 		    ires[i]->ire_dep_parent != ires[i+1])
2922bd670b35SErik Nordmark 			ire_dep_remove(ires[i]);
2923bd670b35SErik Nordmark 	}
2924bd670b35SErik Nordmark 
2925bd670b35SErik Nordmark 	for (i = 0; i < count - 1; i++) {
2926bd670b35SErik Nordmark 		ASSERT(ires[i]->ire_ipversion == IPV4_VERSION ||
2927bd670b35SErik Nordmark 		    ires[i]->ire_ipversion == IPV6_VERSION);
2928bd670b35SErik Nordmark 		/* Does it need to change? */
2929bd670b35SErik Nordmark 		if (ires[i]->ire_dep_parent != ires[i+1])
2930bd670b35SErik Nordmark 			ire_dep_parent_insert(ires[i], ires[i+1]);
2931bd670b35SErik Nordmark 
2932bd670b35SErik Nordmark 		mutex_enter(&ires[i+1]->ire_lock);
2933bd670b35SErik Nordmark 		if (IRE_IS_CONDEMNED(ires[i+1])) {
2934bd670b35SErik Nordmark 			mutex_exit(&ires[i+1]->ire_lock);
2935bd670b35SErik Nordmark 			rw_exit(&ipst->ips_ire_dep_lock);
2936bd670b35SErik Nordmark 			return (B_FALSE);
2937bd670b35SErik Nordmark 		}
2938bd670b35SErik Nordmark 		mutex_exit(&ires[i+1]->ire_lock);
2939bd670b35SErik Nordmark 
2940bd670b35SErik Nordmark 		mutex_enter(&ires[i]->ire_lock);
2941bd670b35SErik Nordmark 		ires[i]->ire_dep_parent_generation = generations[i+1];
2942bd670b35SErik Nordmark 		mutex_exit(&ires[i]->ire_lock);
2943bd670b35SErik Nordmark 	}
2944bd670b35SErik Nordmark 	rw_exit(&ipst->ips_ire_dep_lock);
2945bd670b35SErik Nordmark 	return (B_TRUE);
2946bd670b35SErik Nordmark }
2947bd670b35SErik Nordmark 
2948bd670b35SErik Nordmark /*
2949bd670b35SErik Nordmark  * Given count worth of ires, unbuild ire_dep_* relationships
2950bd670b35SErik Nordmark  * from ires[0] to ires[count-1].
2951bd670b35SErik Nordmark  */
2952bd670b35SErik Nordmark void
2953bd670b35SErik Nordmark ire_dep_unbuild(ire_t *ires[], uint_t count)
2954bd670b35SErik Nordmark {
2955bd670b35SErik Nordmark 	ip_stack_t	*ipst;
2956bd670b35SErik Nordmark 	uint_t		i;
2957bd670b35SErik Nordmark 
2958bd670b35SErik Nordmark 	if (count == 0) {
2959bd670b35SErik Nordmark 		/* No work to do */
2960bd670b35SErik Nordmark 		return;
2961bd670b35SErik Nordmark 	}
2962bd670b35SErik Nordmark 	ipst = ires[0]->ire_ipst;
2963bd670b35SErik Nordmark 	rw_enter(&ipst->ips_ire_dep_lock, RW_WRITER);
2964bd670b35SErik Nordmark 	for (i = 0; i < count; i++) {
2965bd670b35SErik Nordmark 		ASSERT(ires[i]->ire_ipversion == IPV4_VERSION ||
2966bd670b35SErik Nordmark 		    ires[i]->ire_ipversion == IPV6_VERSION);
2967bd670b35SErik Nordmark 		if (ires[i]->ire_dep_parent != NULL)
2968bd670b35SErik Nordmark 			ire_dep_remove(ires[i]);
2969bd670b35SErik Nordmark 		mutex_enter(&ires[i]->ire_lock);
2970bd670b35SErik Nordmark 		ires[i]->ire_dep_parent_generation = IRE_GENERATION_VERIFY;
2971bd670b35SErik Nordmark 		mutex_exit(&ires[i]->ire_lock);
2972bd670b35SErik Nordmark 	}
2973bd670b35SErik Nordmark 	rw_exit(&ipst->ips_ire_dep_lock);
2974bd670b35SErik Nordmark }
2975bd670b35SErik Nordmark 
2976bd670b35SErik Nordmark /*
2977bd670b35SErik Nordmark  * Both the forwarding and the outbound code paths can trip on
2978bd670b35SErik Nordmark  * a condemned NCE, in which case we call this function.
2979bd670b35SErik Nordmark  * We have two different behaviors: if the NCE was UNREACHABLE
2980bd670b35SErik Nordmark  * it is an indication that something failed. In that case
2981bd670b35SErik Nordmark  * we see if we should look for a different IRE (for example,
2982bd670b35SErik Nordmark  * delete any matching redirect IRE, or try a different
2983bd670b35SErik Nordmark  * IRE_DEFAULT (ECMP)). We mark the ire as bad so a hopefully
2984bd670b35SErik Nordmark  * different IRE will be picked next time we send/forward.
2985bd670b35SErik Nordmark  *
2986bd670b35SErik Nordmark  * If we are called by the output path then fail_if_better is set
2987bd670b35SErik Nordmark  * and we return NULL if there could be a better IRE. This is because the
2988bd670b35SErik Nordmark  * output path retries the IRE lookup. (The input/forward path can not retry.)
2989bd670b35SErik Nordmark  *
2990bd670b35SErik Nordmark  * If the NCE was not unreachable then we pick/allocate a
2991bd670b35SErik Nordmark  * new (most likely ND_INITIAL) NCE and proceed with it.
2992bd670b35SErik Nordmark  *
2993bd670b35SErik Nordmark  * ipha/ip6h are needed for multicast packets; ipha needs to be
2994bd670b35SErik Nordmark  * set for IPv4 and ip6h needs to be set for IPv6 packets.
2995bd670b35SErik Nordmark  */
2996bd670b35SErik Nordmark nce_t *
2997bd670b35SErik Nordmark ire_handle_condemned_nce(nce_t *nce, ire_t *ire, ipha_t *ipha, ip6_t *ip6h,
2998bd670b35SErik Nordmark     boolean_t fail_if_better)
2999bd670b35SErik Nordmark {
3000bd670b35SErik Nordmark 	if (nce->nce_common->ncec_state == ND_UNREACHABLE) {
3001bd670b35SErik Nordmark 		if (ire_no_good(ire) && fail_if_better) {
3002bd670b35SErik Nordmark 			/*
3003bd670b35SErik Nordmark 			 * Did some changes, or ECMP likely to exist.
3004bd670b35SErik Nordmark 			 * Make ip_output look for a different IRE
3005bd670b35SErik Nordmark 			 */
3006bd670b35SErik Nordmark 			return (NULL);
3007bd670b35SErik Nordmark 		}
3008bd670b35SErik Nordmark 	}
3009bd670b35SErik Nordmark 	if (ire_revalidate_nce(ire) == ENETUNREACH) {
3010bd670b35SErik Nordmark 		/* The ire_dep_parent chain went bad, or no memory? */
3011bd670b35SErik Nordmark 		(void) ire_no_good(ire);
3012bd670b35SErik Nordmark 		return (NULL);
3013bd670b35SErik Nordmark 	}
3014bd670b35SErik Nordmark 	if (ire->ire_ipversion == IPV4_VERSION) {
3015bd670b35SErik Nordmark 		ASSERT(ipha != NULL);
3016bd670b35SErik Nordmark 		nce = ire_to_nce(ire, ipha->ipha_dst, NULL);
3017bd670b35SErik Nordmark 	} else {
3018bd670b35SErik Nordmark 		ASSERT(ip6h != NULL);
3019bd670b35SErik Nordmark 		nce = ire_to_nce(ire, INADDR_ANY, &ip6h->ip6_dst);
3020bd670b35SErik Nordmark 	}
3021bd670b35SErik Nordmark 
3022bd670b35SErik Nordmark 	if (nce == NULL)
3023bd670b35SErik Nordmark 		return (NULL);
3024bd670b35SErik Nordmark 	if (nce->nce_is_condemned) {
3025bd670b35SErik Nordmark 		nce_refrele(nce);
3026bd670b35SErik Nordmark 		return (NULL);
3027bd670b35SErik Nordmark 	}
3028bd670b35SErik Nordmark 	return (nce);
3029bd670b35SErik Nordmark }
3030bd670b35SErik Nordmark 
3031bd670b35SErik Nordmark /*
3032bd670b35SErik Nordmark  * The caller has found that the ire is bad, either due to a reference to an NCE
3033bd670b35SErik Nordmark  * in ND_UNREACHABLE state, or a MULTIRT route whose gateway can't be resolved.
3034bd670b35SErik Nordmark  * We update things so a subsequent attempt to send to the destination
3035bd670b35SErik Nordmark  * is likely to find different IRE, or that a new NCE would be created.
3036bd670b35SErik Nordmark  *
3037bd670b35SErik Nordmark  * Returns B_TRUE if it is likely that a subsequent ire_ftable_lookup would
3038bd670b35SErik Nordmark  * find a different route (either due to having deleted a redirect, or there
3039bd670b35SErik Nordmark  * being ECMP routes.)
3040bd670b35SErik Nordmark  *
3041bd670b35SErik Nordmark  * If we have a redirect (RTF_DYNAMIC) we delete it.
3042bd670b35SErik Nordmark  * Otherwise we increment ire_badcnt and increment the generation number so
3043bd670b35SErik Nordmark  * that a cached ixa_ire will redo the route selection. ire_badcnt is taken
3044bd670b35SErik Nordmark  * into account in the route selection when we have multiple choices (multiple
3045bd670b35SErik Nordmark  * default routes or ECMP in general).
3046bd670b35SErik Nordmark  * Any time ip_select_route find an ire with a condemned ire_nce_cache
3047bd670b35SErik Nordmark  * (e.g., if no equal cost route to the bad one) ip_select_route will make
3048bd670b35SErik Nordmark  * sure the NCE is revalidated to avoid getting stuck on a
3049bd670b35SErik Nordmark  * NCE_F_CONDMNED ncec that caused ire_no_good to be called.
3050bd670b35SErik Nordmark  */
3051bd670b35SErik Nordmark boolean_t
3052bd670b35SErik Nordmark ire_no_good(ire_t *ire)
3053bd670b35SErik Nordmark {
3054bd670b35SErik Nordmark 	ip_stack_t	*ipst = ire->ire_ipst;
3055bd670b35SErik Nordmark 	ire_t		*ire2;
3056bd670b35SErik Nordmark 	nce_t		*nce;
3057bd670b35SErik Nordmark 
3058bd670b35SErik Nordmark 	if (ire->ire_flags & RTF_DYNAMIC) {
3059bd670b35SErik Nordmark 		ire_delete(ire);
3060bd670b35SErik Nordmark 		return (B_TRUE);
3061bd670b35SErik Nordmark 	}
3062bd670b35SErik Nordmark 	if (ire->ire_flags & RTF_INDIRECT) {
3063bd670b35SErik Nordmark 		/* Check if next IRE is a redirect */
3064bd670b35SErik Nordmark 		rw_enter(&ipst->ips_ire_dep_lock, RW_READER);
3065bd670b35SErik Nordmark 		if (ire->ire_dep_parent != NULL &&
3066bd670b35SErik Nordmark 		    (ire->ire_dep_parent->ire_flags & RTF_DYNAMIC)) {
3067bd670b35SErik Nordmark 			ire2 = ire->ire_dep_parent;
3068bd670b35SErik Nordmark 			ire_refhold(ire2);
3069bd670b35SErik Nordmark 		} else {
3070bd670b35SErik Nordmark 			ire2 = NULL;
3071bd670b35SErik Nordmark 		}
3072bd670b35SErik Nordmark 		rw_exit(&ipst->ips_ire_dep_lock);
3073bd670b35SErik Nordmark 		if (ire2 != NULL) {
3074bd670b35SErik Nordmark 			ire_delete(ire2);
3075bd670b35SErik Nordmark 			ire_refrele(ire2);
3076bd670b35SErik Nordmark 			return (B_TRUE);
3077bd670b35SErik Nordmark 		}
3078bd670b35SErik Nordmark 	}
3079bd670b35SErik Nordmark 	/*
3080bd670b35SErik Nordmark 	 * No redirect involved. Increment badcnt so that if we have ECMP
3081bd670b35SErik Nordmark 	 * routes we are likely to pick a different one for the next packet.
3082bd670b35SErik Nordmark 	 *
3083bd670b35SErik Nordmark 	 * If the NCE is unreachable and condemned we should drop the reference
3084bd670b35SErik Nordmark 	 * to it so that a new NCE can be created.
3085bd670b35SErik Nordmark 	 *
3086bd670b35SErik Nordmark 	 * Finally we increment the generation number so that any ixa_ire
3087bd670b35SErik Nordmark 	 * cache will be revalidated.
3088bd670b35SErik Nordmark 	 */
3089bd670b35SErik Nordmark 	mutex_enter(&ire->ire_lock);
3090bd670b35SErik Nordmark 	ire->ire_badcnt++;
3091d3d50737SRafael Vanoni 	ire->ire_last_badcnt = TICK_TO_SEC(ddi_get_lbolt64());
3092bd670b35SErik Nordmark 	nce = ire->ire_nce_cache;
3093bd670b35SErik Nordmark 	if (nce != NULL && nce->nce_is_condemned &&
3094bd670b35SErik Nordmark 	    nce->nce_common->ncec_state == ND_UNREACHABLE)
3095bd670b35SErik Nordmark 		ire->ire_nce_cache = NULL;
3096bd670b35SErik Nordmark 	else
3097bd670b35SErik Nordmark 		nce = NULL;
3098bd670b35SErik Nordmark 	mutex_exit(&ire->ire_lock);
3099bd670b35SErik Nordmark 	if (nce != NULL)
3100bd670b35SErik Nordmark 		nce_refrele(nce);
3101bd670b35SErik Nordmark 
3102bd670b35SErik Nordmark 	ire_increment_generation(ire);
3103bd670b35SErik Nordmark 	ire_dep_incr_generation(ire);
3104bd670b35SErik Nordmark 
3105bd670b35SErik Nordmark 	return (ire->ire_bucket->irb_ire_cnt > 1);
3106bd670b35SErik Nordmark }
3107bd670b35SErik Nordmark 
3108bd670b35SErik Nordmark /*
3109bd670b35SErik Nordmark  * Walk ire_dep_parent chain and validate that ire_dep_parent->ire_generation ==
3110bd670b35SErik Nordmark  * ire_dep_parent_generation.
3111bd670b35SErik Nordmark  * If they all match we just return ire_generation from the topmost IRE.
3112bd670b35SErik Nordmark  * Otherwise we propagate the mismatch by setting all ire_dep_parent_generation
3113bd670b35SErik Nordmark  * above the mismatch to IRE_GENERATION_VERIFY and also returning
3114bd670b35SErik Nordmark  * IRE_GENERATION_VERIFY.
3115bd670b35SErik Nordmark  */
3116bd670b35SErik Nordmark uint_t
3117bd670b35SErik Nordmark ire_dep_validate_generations(ire_t *ire)
3118bd670b35SErik Nordmark {
3119bd670b35SErik Nordmark 	ip_stack_t	*ipst = ire->ire_ipst;
3120bd670b35SErik Nordmark 	uint_t		generation;
3121bd670b35SErik Nordmark 	ire_t		*ire1;
3122bd670b35SErik Nordmark 
3123bd670b35SErik Nordmark 	rw_enter(&ipst->ips_ire_dep_lock, RW_READER);
3124bd670b35SErik Nordmark 	generation = ire->ire_generation;	/* Assuming things match */
3125bd670b35SErik Nordmark 	for (ire1 = ire; ire1 != NULL; ire1 = ire1->ire_dep_parent) {
3126bd670b35SErik Nordmark 		ASSERT(ire1->ire_ipversion == IPV4_VERSION ||
3127bd670b35SErik Nordmark 		    ire1->ire_ipversion == IPV6_VERSION);
3128bd670b35SErik Nordmark 		if (ire1->ire_dep_parent == NULL)
3129bd670b35SErik Nordmark 			break;
3130bd670b35SErik Nordmark 		if (ire1->ire_dep_parent_generation !=
3131bd670b35SErik Nordmark 		    ire1->ire_dep_parent->ire_generation)
3132bd670b35SErik Nordmark 			goto mismatch;
3133bd670b35SErik Nordmark 	}
3134bd670b35SErik Nordmark 	rw_exit(&ipst->ips_ire_dep_lock);
3135bd670b35SErik Nordmark 	return (generation);
3136bd670b35SErik Nordmark 
3137bd670b35SErik Nordmark mismatch:
3138bd670b35SErik Nordmark 	generation = IRE_GENERATION_VERIFY;
3139bd670b35SErik Nordmark 	/* Fill from top down to the mismatch with _VERIFY */
3140bd670b35SErik Nordmark 	while (ire != ire1) {
3141bd670b35SErik Nordmark 		ASSERT(ire->ire_ipversion == IPV4_VERSION ||
3142bd670b35SErik Nordmark 		    ire->ire_ipversion == IPV6_VERSION);
3143bd670b35SErik Nordmark 		mutex_enter(&ire->ire_lock);
3144bd670b35SErik Nordmark 		ire->ire_dep_parent_generation = IRE_GENERATION_VERIFY;
3145bd670b35SErik Nordmark 		mutex_exit(&ire->ire_lock);
3146bd670b35SErik Nordmark 		ire = ire->ire_dep_parent;
3147bd670b35SErik Nordmark 	}
3148bd670b35SErik Nordmark 	rw_exit(&ipst->ips_ire_dep_lock);
3149bd670b35SErik Nordmark 	return (generation);
3150bd670b35SErik Nordmark }
3151bd670b35SErik Nordmark 
3152bd670b35SErik Nordmark /*
3153bd670b35SErik Nordmark  * Used when we need to return an ire with ire_dep_parent, but we
3154bd670b35SErik Nordmark  * know the chain is invalid for instance we didn't create an IRE_IF_CLONE
3155bd670b35SErik Nordmark  * Using IRE_GENERATION_VERIFY means that next time we'll redo the
3156bd670b35SErik Nordmark  * recursive lookup.
3157bd670b35SErik Nordmark  */
3158bd670b35SErik Nordmark void
3159bd670b35SErik Nordmark ire_dep_invalidate_generations(ire_t *ire)
3160bd670b35SErik Nordmark {
3161bd670b35SErik Nordmark 	ip_stack_t	*ipst = ire->ire_ipst;
3162bd670b35SErik Nordmark 
3163bd670b35SErik Nordmark 	rw_enter(&ipst->ips_ire_dep_lock, RW_READER);
3164bd670b35SErik Nordmark 	while (ire != NULL) {
3165bd670b35SErik Nordmark 		ASSERT(ire->ire_ipversion == IPV4_VERSION ||
3166bd670b35SErik Nordmark 		    ire->ire_ipversion == IPV6_VERSION);
3167bd670b35SErik Nordmark 		mutex_enter(&ire->ire_lock);
3168bd670b35SErik Nordmark 		ire->ire_dep_parent_generation = IRE_GENERATION_VERIFY;
3169bd670b35SErik Nordmark 		mutex_exit(&ire->ire_lock);
3170bd670b35SErik Nordmark 		ire = ire->ire_dep_parent;
3171bd670b35SErik Nordmark 	}
3172bd670b35SErik Nordmark 	rw_exit(&ipst->ips_ire_dep_lock);
3173bd670b35SErik Nordmark }
3174bd670b35SErik Nordmark 
3175bd670b35SErik Nordmark /* Set _VERIFY ire_dep_parent_generation for all children recursively */
3176bd670b35SErik Nordmark static void
3177bd670b35SErik Nordmark ire_dep_invalidate_children(ire_t *child)
3178bd670b35SErik Nordmark {
3179bd670b35SErik Nordmark 	ip_stack_t	*ipst = child->ire_ipst;
3180bd670b35SErik Nordmark 
3181bd670b35SErik Nordmark 	ASSERT(RW_WRITE_HELD(&ipst->ips_ire_dep_lock));
3182bd670b35SErik Nordmark 	/* Depth first */
3183bd670b35SErik Nordmark 	if (child->ire_dep_children != NULL)
3184bd670b35SErik Nordmark 		ire_dep_invalidate_children(child->ire_dep_children);
3185bd670b35SErik Nordmark 
3186bd670b35SErik Nordmark 	while (child != NULL) {
3187bd670b35SErik Nordmark 		mutex_enter(&child->ire_lock);
3188bd670b35SErik Nordmark 		child->ire_dep_parent_generation = IRE_GENERATION_VERIFY;
3189bd670b35SErik Nordmark 		mutex_exit(&child->ire_lock);
3190bd670b35SErik Nordmark 		child = child->ire_dep_sib_next;
3191bd670b35SErik Nordmark 	}
3192bd670b35SErik Nordmark }
3193bd670b35SErik Nordmark 
3194bd670b35SErik Nordmark static void
3195bd670b35SErik Nordmark ire_dep_increment_children(ire_t *child)
3196bd670b35SErik Nordmark {
3197bd670b35SErik Nordmark 	ip_stack_t	*ipst = child->ire_ipst;
3198bd670b35SErik Nordmark 
3199bd670b35SErik Nordmark 	ASSERT(RW_READ_HELD(&ipst->ips_ire_dep_lock));
3200bd670b35SErik Nordmark 	/* Depth first */
3201bd670b35SErik Nordmark 	if (child->ire_dep_children != NULL)
3202bd670b35SErik Nordmark 		ire_dep_increment_children(child->ire_dep_children);
3203bd670b35SErik Nordmark 
3204bd670b35SErik Nordmark 	while (child != NULL) {
3205bd670b35SErik Nordmark 		if (!IRE_IS_CONDEMNED(child))
3206bd670b35SErik Nordmark 			ire_increment_generation(child);
3207bd670b35SErik Nordmark 		child = child->ire_dep_sib_next;
3208bd670b35SErik Nordmark 	}
3209bd670b35SErik Nordmark }
3210bd670b35SErik Nordmark 
3211bd670b35SErik Nordmark /*
3212bd670b35SErik Nordmark  * Walk all the children of this ire recursively and increment their
3213bd670b35SErik Nordmark  * generation number.
3214bd670b35SErik Nordmark  */
3215bd670b35SErik Nordmark void
3216bd670b35SErik Nordmark ire_dep_incr_generation(ire_t *parent)
3217bd670b35SErik Nordmark {
3218bd670b35SErik Nordmark 	ip_stack_t	*ipst = parent->ire_ipst;
3219bd670b35SErik Nordmark 
3220bd670b35SErik Nordmark 	rw_enter(&ipst->ips_ire_dep_lock, RW_READER);
3221bd670b35SErik Nordmark 	if (parent->ire_dep_children != NULL)
3222bd670b35SErik Nordmark 		ire_dep_increment_children(parent->ire_dep_children);
3223bd670b35SErik Nordmark 	rw_exit(&ipst->ips_ire_dep_lock);
3224bd670b35SErik Nordmark }
3225bd670b35SErik Nordmark 
3226bd670b35SErik Nordmark /*
3227bd670b35SErik Nordmark  * Get a new ire_nce_cache for this IRE as well as its nexthop.
3228bd670b35SErik Nordmark  * Returns zero if it succeeds. Can fail due to lack of memory or when
3229bd670b35SErik Nordmark  * the route has become unreachable. Returns ENOMEM and ENETUNREACH in those
3230bd670b35SErik Nordmark  * cases.
3231bd670b35SErik Nordmark  *
3232bd670b35SErik Nordmark  * In the in.mpathd case, the ire will have ire_testhidden
3233bd670b35SErik Nordmark  * set; so we should create the ncec for the underlying ill.
3234bd670b35SErik Nordmark  *
3235bd670b35SErik Nordmark  * Note that the error returned by ire_revalidate_nce() is ignored by most
3236bd670b35SErik Nordmark  * callers except ire_handle_condemned_nce(), which handles the ENETUNREACH
3237bd670b35SErik Nordmark  * error to mark potentially bad ire's. For all the other callers, an
3238bd670b35SErik Nordmark  * error return could indicate a transient condition like ENOMEM, or could
3239bd670b35SErik Nordmark  * be the result of an interface that is going down/unplumbing. In the former
3240bd670b35SErik Nordmark  * case (transient error), we would leave the old stale ire/ire_nce_cache
3241bd670b35SErik Nordmark  * in place, and possibly use incorrect link-layer information to send packets
3242bd670b35SErik Nordmark  * but would eventually recover. In the latter case (ill down/replumb),
3243bd670b35SErik Nordmark  * ire_revalidate_nce() might return a condemned nce back, but we would then
3244bd670b35SErik Nordmark  * recover in the packet output path.
3245bd670b35SErik Nordmark  */
3246bd670b35SErik Nordmark int
3247bd670b35SErik Nordmark ire_revalidate_nce(ire_t *ire)
3248bd670b35SErik Nordmark {
3249bd670b35SErik Nordmark 	nce_t		*nce, *old_nce;
3250bd670b35SErik Nordmark 	ire_t		*nexthop;
3251bd670b35SErik Nordmark 
3252bd670b35SErik Nordmark 	/*
3253bd670b35SErik Nordmark 	 * For multicast we conceptually have an NCE but we don't store it
3254bd670b35SErik Nordmark 	 * in ire_nce_cache; when ire_to_nce is called we allocate the nce.
3255bd670b35SErik Nordmark 	 */
3256bd670b35SErik Nordmark 	if (ire->ire_type & IRE_MULTICAST)
3257bd670b35SErik Nordmark 		return (0);
3258bd670b35SErik Nordmark 
3259bd670b35SErik Nordmark 	/* ire_testhidden should only be set on under-interfaces */
3260bd670b35SErik Nordmark 	ASSERT(!ire->ire_testhidden || !IS_IPMP(ire->ire_ill));
3261bd670b35SErik Nordmark 
3262bd670b35SErik Nordmark 	nexthop = ire_nexthop(ire);
3263bd670b35SErik Nordmark 	if (nexthop == NULL) {
3264bd670b35SErik Nordmark 		/* The route is potentially bad */
3265bd670b35SErik Nordmark 		(void) ire_no_good(ire);
3266bd670b35SErik Nordmark 		return (ENETUNREACH);
3267bd670b35SErik Nordmark 	}
3268bd670b35SErik Nordmark 	if (ire->ire_type & (IRE_LOCAL|IRE_LOOPBACK)) {
3269bd670b35SErik Nordmark 		ASSERT(ire->ire_ill != NULL);
3270bd670b35SErik Nordmark 
3271bd670b35SErik Nordmark 		if (ire->ire_ipversion == IPV4_VERSION)
3272bd670b35SErik Nordmark 			nce = nce_lookup_v4(ire->ire_ill, &ire->ire_addr);
3273bd670b35SErik Nordmark 		else
3274bd670b35SErik Nordmark 			nce = nce_lookup_v6(ire->ire_ill, &ire->ire_addr_v6);
3275bd670b35SErik Nordmark 	} else {
3276bd670b35SErik Nordmark 		ASSERT(nexthop->ire_type & IRE_ONLINK);
3277bd670b35SErik Nordmark 		if (ire->ire_ipversion == IPV4_VERSION) {
3278bd670b35SErik Nordmark 			nce = arp_nce_init(nexthop->ire_ill, nexthop->ire_addr,
3279bd670b35SErik Nordmark 			    nexthop->ire_type);
3280bd670b35SErik Nordmark 		} else {
3281bd670b35SErik Nordmark 			nce = ndp_nce_init(nexthop->ire_ill,
3282bd670b35SErik Nordmark 			    &nexthop->ire_addr_v6, nexthop->ire_type);
3283bd670b35SErik Nordmark 		}
3284bd670b35SErik Nordmark 	}
3285bd670b35SErik Nordmark 	if (nce == NULL) {
3286bd670b35SErik Nordmark 		/*
3287bd670b35SErik Nordmark 		 * Leave the old stale one in place to avoid a NULL
3288bd670b35SErik Nordmark 		 * ire_nce_cache.
3289bd670b35SErik Nordmark 		 */
3290bd670b35SErik Nordmark 		ire_refrele(nexthop);
3291bd670b35SErik Nordmark 		return (ENOMEM);
3292bd670b35SErik Nordmark 	}
3293bd670b35SErik Nordmark 
3294bd670b35SErik Nordmark 	if (nexthop != ire) {
3295bd670b35SErik Nordmark 		/* Update the nexthop ire */
3296bd670b35SErik Nordmark 		mutex_enter(&nexthop->ire_lock);
3297bd670b35SErik Nordmark 		old_nce = nexthop->ire_nce_cache;
3298bd670b35SErik Nordmark 		if (!IRE_IS_CONDEMNED(nexthop)) {
3299bd670b35SErik Nordmark 			nce_refhold(nce);
3300bd670b35SErik Nordmark 			nexthop->ire_nce_cache = nce;
3301bd670b35SErik Nordmark 		} else {
3302bd670b35SErik Nordmark 			nexthop->ire_nce_cache = NULL;
3303bd670b35SErik Nordmark 		}
3304bd670b35SErik Nordmark 		mutex_exit(&nexthop->ire_lock);
3305bd670b35SErik Nordmark 		if (old_nce != NULL)
3306bd670b35SErik Nordmark 			nce_refrele(old_nce);
3307bd670b35SErik Nordmark 	}
3308bd670b35SErik Nordmark 	ire_refrele(nexthop);
3309bd670b35SErik Nordmark 
3310bd670b35SErik Nordmark 	mutex_enter(&ire->ire_lock);
3311bd670b35SErik Nordmark 	old_nce = ire->ire_nce_cache;
3312bd670b35SErik Nordmark 	if (!IRE_IS_CONDEMNED(ire)) {
3313bd670b35SErik Nordmark 		nce_refhold(nce);
3314bd670b35SErik Nordmark 		ire->ire_nce_cache = nce;
3315bd670b35SErik Nordmark 	} else {
3316bd670b35SErik Nordmark 		ire->ire_nce_cache = NULL;
3317bd670b35SErik Nordmark 	}
3318bd670b35SErik Nordmark 	mutex_exit(&ire->ire_lock);
3319bd670b35SErik Nordmark 	if (old_nce != NULL)
3320bd670b35SErik Nordmark 		nce_refrele(old_nce);
3321bd670b35SErik Nordmark 
3322bd670b35SErik Nordmark 	nce_refrele(nce);
3323c793af95Ssangeeta 	return (0);
3324c793af95Ssangeeta }
33255b17e9bdSJon Anderson 
33265b17e9bdSJon Anderson /*
3327bd670b35SErik Nordmark  * Get a held nce for a given ire.
3328bd670b35SErik Nordmark  * In the common case this is just from ire_nce_cache.
3329bd670b35SErik Nordmark  * For IRE_MULTICAST this needs to do an explicit lookup since we do not
3330bd670b35SErik Nordmark  * have an IRE_MULTICAST per address.
3331bd670b35SErik Nordmark  * Note that this explicitly returns CONDEMNED NCEs. The caller needs those
3332bd670b35SErik Nordmark  * so they can check whether the NCE went unreachable (as opposed to was
3333bd670b35SErik Nordmark  * condemned for some other reason).
33345b17e9bdSJon Anderson  */
3335bd670b35SErik Nordmark nce_t *
3336bd670b35SErik Nordmark ire_to_nce(ire_t *ire, ipaddr_t v4nexthop, const in6_addr_t *v6nexthop)
33375b17e9bdSJon Anderson {
3338bd670b35SErik Nordmark 	nce_t	*nce;
33395b17e9bdSJon Anderson 
3340bd670b35SErik Nordmark 	if (ire->ire_flags & (RTF_REJECT|RTF_BLACKHOLE))
3341bd670b35SErik Nordmark 		return (NULL);
3342bd670b35SErik Nordmark 
3343bd670b35SErik Nordmark 	/* ire_testhidden should only be set on under-interfaces */
3344bd670b35SErik Nordmark 	ASSERT(!ire->ire_testhidden || !IS_IPMP(ire->ire_ill));
3345bd670b35SErik Nordmark 
3346bd670b35SErik Nordmark 	mutex_enter(&ire->ire_lock);
3347bd670b35SErik Nordmark 	nce = ire->ire_nce_cache;
3348bd670b35SErik Nordmark 	if (nce != NULL) {
3349bd670b35SErik Nordmark 		nce_refhold(nce);
3350bd670b35SErik Nordmark 		mutex_exit(&ire->ire_lock);
3351bd670b35SErik Nordmark 		return (nce);
3352bd670b35SErik Nordmark 	}
3353bd670b35SErik Nordmark 	mutex_exit(&ire->ire_lock);
3354bd670b35SErik Nordmark 
3355bd670b35SErik Nordmark 	if (ire->ire_type & IRE_MULTICAST) {
3356bd670b35SErik Nordmark 		ASSERT(ire->ire_ill != NULL);
3357bd670b35SErik Nordmark 
3358bd670b35SErik Nordmark 		if (ire->ire_ipversion == IPV4_VERSION) {
3359bd670b35SErik Nordmark 			ASSERT(v6nexthop == NULL);
3360bd670b35SErik Nordmark 
3361bd670b35SErik Nordmark 			nce = arp_nce_init(ire->ire_ill, v4nexthop,
3362bd670b35SErik Nordmark 			    ire->ire_type);
3363bd670b35SErik Nordmark 		} else {
3364bd670b35SErik Nordmark 			ASSERT(v6nexthop != NULL);
3365bd670b35SErik Nordmark 			ASSERT(v4nexthop == 0);
3366bd670b35SErik Nordmark 			nce = ndp_nce_init(ire->ire_ill, v6nexthop,
3367bd670b35SErik Nordmark 			    ire->ire_type);
3368bd670b35SErik Nordmark 		}
3369bd670b35SErik Nordmark 		return (nce);
3370bd670b35SErik Nordmark 	}
33715b17e9bdSJon Anderson 	return (NULL);
33725b17e9bdSJon Anderson }
33735b17e9bdSJon Anderson 
3374bd670b35SErik Nordmark nce_t *
3375bd670b35SErik Nordmark ire_to_nce_pkt(ire_t *ire, mblk_t *mp)
3376bd670b35SErik Nordmark {
3377bd670b35SErik Nordmark 	ipha_t		*ipha;
3378bd670b35SErik Nordmark 	ip6_t		*ip6h;
33795b17e9bdSJon Anderson 
3380bd670b35SErik Nordmark 	if (IPH_HDR_VERSION(mp->b_rptr) == IPV4_VERSION) {
3381bd670b35SErik Nordmark 		ipha = (ipha_t *)mp->b_rptr;
3382bd670b35SErik Nordmark 		return (ire_to_nce(ire, ipha->ipha_dst, NULL));
3383bd670b35SErik Nordmark 	} else {
3384bd670b35SErik Nordmark 		ip6h = (ip6_t *)mp->b_rptr;
3385bd670b35SErik Nordmark 		return (ire_to_nce(ire, INADDR_ANY, &ip6h->ip6_dst));
3386bd670b35SErik Nordmark 	}
33875b17e9bdSJon Anderson }
33885b17e9bdSJon Anderson 
33895b17e9bdSJon Anderson /*
3390bd670b35SErik Nordmark  * Given an IRE_INTERFACE (that matches more than one address) create
3391bd670b35SErik Nordmark  * and return an IRE_IF_CLONE for the specific address.
3392bd670b35SErik Nordmark  * Return the generation number.
3393bd670b35SErik Nordmark  * Returns NULL is no memory for the IRE.
3394bd670b35SErik Nordmark  * Handles both IPv4 and IPv6.
33955b17e9bdSJon Anderson  */
33965b17e9bdSJon Anderson ire_t *
3397bd670b35SErik Nordmark ire_create_if_clone(ire_t *ire_if, const in6_addr_t *addr, uint_t *generationp)
33985b17e9bdSJon Anderson {
3399bd670b35SErik Nordmark 	ire_t		*ire;
3400bd670b35SErik Nordmark 	ire_t		*nire;
34015b17e9bdSJon Anderson 
3402bd670b35SErik Nordmark 	if (ire_if->ire_ipversion == IPV4_VERSION) {
3403bd670b35SErik Nordmark 		ipaddr_t	v4addr;
3404bd670b35SErik Nordmark 		ipaddr_t	mask = IP_HOST_MASK;
34055b17e9bdSJon Anderson 
3406bd670b35SErik Nordmark 		ASSERT(IN6_IS_ADDR_V4MAPPED(addr));
3407bd670b35SErik Nordmark 		IN6_V4MAPPED_TO_IPADDR(addr, v4addr);
3408bd670b35SErik Nordmark 
3409bd670b35SErik Nordmark 		ire = ire_create(
3410bd670b35SErik Nordmark 		    (uchar_t *)&v4addr,			/* dest address */
3411bd670b35SErik Nordmark 		    (uchar_t *)&mask,			/* mask */
3412bd670b35SErik Nordmark 		    (uchar_t *)&ire_if->ire_gateway_addr,
3413bd670b35SErik Nordmark 		    IRE_IF_CLONE,			/* IRE type */
3414bd670b35SErik Nordmark 		    ire_if->ire_ill,
3415bd670b35SErik Nordmark 		    ire_if->ire_zoneid,
3416bd670b35SErik Nordmark 		    ire_if->ire_flags | RTF_HOST,
3417bd670b35SErik Nordmark 		    NULL,		/* No security attr for IRE_IF_ALL */
3418bd670b35SErik Nordmark 		    ire_if->ire_ipst);
3419bd670b35SErik Nordmark 	} else {
3420bd670b35SErik Nordmark 		ASSERT(!IN6_IS_ADDR_V4MAPPED(addr));
3421bd670b35SErik Nordmark 		ire = ire_create_v6(
3422bd670b35SErik Nordmark 		    addr,				/* dest address */
3423bd670b35SErik Nordmark 		    &ipv6_all_ones,			/* mask */
3424bd670b35SErik Nordmark 		    &ire_if->ire_gateway_addr_v6,	/* gateway addr */
3425bd670b35SErik Nordmark 		    IRE_IF_CLONE,			/* IRE type */
3426bd670b35SErik Nordmark 		    ire_if->ire_ill,
3427bd670b35SErik Nordmark 		    ire_if->ire_zoneid,
3428bd670b35SErik Nordmark 		    ire_if->ire_flags | RTF_HOST,
3429bd670b35SErik Nordmark 		    NULL,		/* No security attr for IRE_IF_ALL */
3430bd670b35SErik Nordmark 		    ire_if->ire_ipst);
3431bd670b35SErik Nordmark 	}
3432bd670b35SErik Nordmark 	if (ire == NULL)
3433bd670b35SErik Nordmark 		return (NULL);
3434bd670b35SErik Nordmark 
3435bd670b35SErik Nordmark 	/* Take the metrics, in particular the mtu, from the IRE_IF */
3436bd670b35SErik Nordmark 	ire->ire_metrics = ire_if->ire_metrics;
3437bd670b35SErik Nordmark 
3438bd670b35SErik Nordmark 	nire = ire_add(ire);
3439bd670b35SErik Nordmark 	if (nire == NULL) /* Some failure */
3440bd670b35SErik Nordmark 		return (NULL);
3441bd670b35SErik Nordmark 
3442bd670b35SErik Nordmark 	if (generationp != NULL)
3443bd670b35SErik Nordmark 		*generationp = nire->ire_generation;
3444bd670b35SErik Nordmark 
3445bd670b35SErik Nordmark 	/*
3446bd670b35SErik Nordmark 	 * Make sure races don't add a duplicate by
3447bd670b35SErik Nordmark 	 * catching the case when an identical was returned.
3448bd670b35SErik Nordmark 	 */
3449bd670b35SErik Nordmark 	if (nire != ire) {
3450bd670b35SErik Nordmark 		ASSERT(nire->ire_identical_ref > 1);
3451bd670b35SErik Nordmark 		ire_delete(nire);
3452bd670b35SErik Nordmark 	}
3453bd670b35SErik Nordmark 	return (nire);
3454bd670b35SErik Nordmark }
3455bd670b35SErik Nordmark 
3456bd670b35SErik Nordmark /*
3457bd670b35SErik Nordmark  * The argument is an IRE_INTERFACE. Delete all of IRE_IF_CLONE in the
3458bd670b35SErik Nordmark  * ire_dep_children (just walk the ire_dep_sib_next since they are all
3459bd670b35SErik Nordmark  * immediate children.)
3460bd670b35SErik Nordmark  * Since we hold a lock while we remove them we need to defer the actual
3461bd670b35SErik Nordmark  * calls to ire_delete() until we have dropped the lock. This makes things
3462bd670b35SErik Nordmark  * less efficient since we restart at the top after dropping the lock. But
3463bd670b35SErik Nordmark  * we only run when an IRE_INTERFACE is deleted which is infrquent.
3464bd670b35SErik Nordmark  *
3465bd670b35SErik Nordmark  * Note that ire_dep_children can be any mixture of offlink routes and
3466bd670b35SErik Nordmark  * IRE_IF_CLONE entries.
3467bd670b35SErik Nordmark  */
3468bd670b35SErik Nordmark void
3469bd670b35SErik Nordmark ire_dep_delete_if_clone(ire_t *parent)
3470bd670b35SErik Nordmark {
3471bd670b35SErik Nordmark 	ip_stack_t	*ipst = parent->ire_ipst;
3472bd670b35SErik Nordmark 	ire_t		*child, *next;
3473bd670b35SErik Nordmark 
3474bd670b35SErik Nordmark restart:
3475bd670b35SErik Nordmark 	rw_enter(&ipst->ips_ire_dep_lock, RW_READER);
3476bd670b35SErik Nordmark 	if (parent->ire_dep_children == NULL) {
3477bd670b35SErik Nordmark 		rw_exit(&ipst->ips_ire_dep_lock);
3478bd670b35SErik Nordmark 		return;
3479bd670b35SErik Nordmark 	}
3480bd670b35SErik Nordmark 	child = parent->ire_dep_children;
3481bd670b35SErik Nordmark 	while (child != NULL) {
3482bd670b35SErik Nordmark 		next = child->ire_dep_sib_next;
3483bd670b35SErik Nordmark 		if ((child->ire_type & IRE_IF_CLONE) &&
3484bd670b35SErik Nordmark 		    !IRE_IS_CONDEMNED(child)) {
3485bd670b35SErik Nordmark 			ire_refhold(child);
3486bd670b35SErik Nordmark 			rw_exit(&ipst->ips_ire_dep_lock);
3487bd670b35SErik Nordmark 			ire_delete(child);
3488bd670b35SErik Nordmark 			ASSERT(IRE_IS_CONDEMNED(child));
3489bd670b35SErik Nordmark 			ire_refrele(child);
3490bd670b35SErik Nordmark 			goto restart;
3491bd670b35SErik Nordmark 		}
3492bd670b35SErik Nordmark 		child = next;
3493bd670b35SErik Nordmark 	}
3494bd670b35SErik Nordmark 	rw_exit(&ipst->ips_ire_dep_lock);
3495bd670b35SErik Nordmark }
3496bd670b35SErik Nordmark 
3497bd670b35SErik Nordmark /*
3498bd670b35SErik Nordmark  * ire_pref() is used in recursive route-resolution for a destination to
3499bd670b35SErik Nordmark  * determine the preference of an ire, where "preference" is determined
3500bd670b35SErik Nordmark  * based on the level of indirection to the destination of the ire.
3501bd670b35SErik Nordmark  * A higher preference indicates that fewer lookups are needed to complete
3502bd670b35SErik Nordmark  * recursive route lookup. Thus
3503bd670b35SErik Nordmark  * ire_pref(RTF_INDIRECT) < ire_pref(IRE_IF_RESOLVER) < ire_pref(IRE_PREF_CLONE)
3504bd670b35SErik Nordmark  */
3505bd670b35SErik Nordmark int
3506bd670b35SErik Nordmark ire_pref(ire_t *ire)
3507bd670b35SErik Nordmark {
3508bd670b35SErik Nordmark 	if (ire->ire_flags & RTF_INDIRECT)
3509bd670b35SErik Nordmark 		return (1);
3510bd670b35SErik Nordmark 	if (ire->ire_type & IRE_OFFLINK)
3511bd670b35SErik Nordmark 		return (2);
3512bd670b35SErik Nordmark 	if (ire->ire_type & (IRE_IF_RESOLVER|IRE_IF_NORESOLVER))
3513bd670b35SErik Nordmark 		return (3);
3514bd670b35SErik Nordmark 	if (ire->ire_type & IRE_IF_CLONE)
3515bd670b35SErik Nordmark 		return (4);
3516bd670b35SErik Nordmark 	if (ire->ire_type & (IRE_LOCAL|IRE_LOOPBACK|IRE_BROADCAST))
3517bd670b35SErik Nordmark 		return (5);
3518bd670b35SErik Nordmark 	return (-1); /* unknown ire_type */
35195b17e9bdSJon Anderson }
3520