Home | History | Annotate | Line # | Download | only in netinet6
ip6_flow.c revision 1.23.4.2
      1  1.23.4.2     skrll /*	$NetBSD: ip6_flow.c,v 1.23.4.2 2016/07/09 20:25:22 skrll Exp $	*/
      2       1.1  liamjfoy 
      3       1.1  liamjfoy /*-
      4       1.1  liamjfoy  * Copyright (c) 2007 The NetBSD Foundation, Inc.
      5       1.1  liamjfoy  * All rights reserved.
      6       1.1  liamjfoy  *
      7       1.1  liamjfoy  * This code is derived from software contributed to The NetBSD Foundation
      8       1.1  liamjfoy  * by the 3am Software Foundry ("3am").  It was developed by Liam J. Foy
      9       1.1  liamjfoy  * <liamjfoy (at) netbsd.org> and Matt Thomas <matt (at) netbsd.org>.
     10       1.1  liamjfoy  *
     11       1.1  liamjfoy  * Redistribution and use in source and binary forms, with or without
     12       1.1  liamjfoy  * modification, are permitted provided that the following conditions
     13       1.1  liamjfoy  * are met:
     14       1.1  liamjfoy  * 1. Redistributions of source code must retain the above copyright
     15       1.1  liamjfoy  *    notice, this list of conditions and the following disclaimer.
     16       1.1  liamjfoy  * 2. Redistributions in binary form must reproduce the above copyright
     17       1.1  liamjfoy  *    notice, this list of conditions and the following disclaimer in the
     18       1.1  liamjfoy  *    documentation and/or other materials provided with the distribution.
     19       1.1  liamjfoy  *
     20       1.1  liamjfoy  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     21       1.1  liamjfoy  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     22       1.1  liamjfoy  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     23       1.1  liamjfoy  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     24       1.1  liamjfoy  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     25       1.1  liamjfoy  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     26       1.1  liamjfoy  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     27       1.1  liamjfoy  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     28       1.1  liamjfoy  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     29       1.1  liamjfoy  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     30       1.1  liamjfoy  * POSSIBILITY OF SUCH DAMAGE.
     31       1.1  liamjfoy  *
     32       1.1  liamjfoy  * IPv6 version was developed by Liam J. Foy. Original source existed in IPv4
     33       1.1  liamjfoy  * format developed by Matt Thomas. Thanks to Joerg Sonnenberger, Matt
     34       1.1  liamjfoy  * Thomas and Christos Zoulas.
     35       1.1  liamjfoy  *
     36       1.1  liamjfoy  * Thanks to Liverpool John Moores University, especially Dr. David Llewellyn-Jones
     37       1.1  liamjfoy  * for providing resources (to test) and Professor Madjid Merabti.
     38       1.1  liamjfoy  */
     39       1.1  liamjfoy 
     40       1.1  liamjfoy #include <sys/cdefs.h>
     41  1.23.4.2     skrll __KERNEL_RCSID(0, "$NetBSD: ip6_flow.c,v 1.23.4.2 2016/07/09 20:25:22 skrll Exp $");
     42       1.1  liamjfoy 
     43       1.1  liamjfoy #include <sys/param.h>
     44       1.1  liamjfoy #include <sys/systm.h>
     45       1.1  liamjfoy #include <sys/malloc.h>
     46       1.1  liamjfoy #include <sys/mbuf.h>
     47       1.1  liamjfoy #include <sys/domain.h>
     48       1.1  liamjfoy #include <sys/protosw.h>
     49       1.1  liamjfoy #include <sys/socket.h>
     50       1.1  liamjfoy #include <sys/socketvar.h>
     51       1.1  liamjfoy #include <sys/time.h>
     52       1.1  liamjfoy #include <sys/kernel.h>
     53       1.1  liamjfoy #include <sys/pool.h>
     54       1.1  liamjfoy #include <sys/sysctl.h>
     55       1.1  liamjfoy 
     56       1.1  liamjfoy #include <net/if.h>
     57       1.1  liamjfoy #include <net/if_dl.h>
     58       1.1  liamjfoy #include <net/route.h>
     59       1.1  liamjfoy #include <net/pfil.h>
     60       1.1  liamjfoy 
     61       1.1  liamjfoy #include <netinet/in.h>
     62       1.1  liamjfoy #include <netinet6/in6_var.h>
     63       1.1  liamjfoy #include <netinet/in_systm.h>
     64       1.1  liamjfoy #include <netinet/ip6.h>
     65       1.1  liamjfoy #include <netinet6/ip6_var.h>
     66      1.15   thorpej #include <netinet6/ip6_private.h>
     67       1.1  liamjfoy 
     68       1.1  liamjfoy /*
     69       1.1  liamjfoy  * IPv6 Fast Forward caches/hashes flows from one source to destination.
     70       1.1  liamjfoy  *
     71       1.1  liamjfoy  * Upon a successful forward IPv6FF caches and hashes details such as the
     72       1.1  liamjfoy  * route, source and destination. Once another packet is received matching
     73       1.1  liamjfoy  * the source and destination the packet is forwarded straight onto if_output
     74       1.1  liamjfoy  * using the cached details.
     75       1.1  liamjfoy  *
     76       1.1  liamjfoy  * Example:
     77      1.20  christos  * ether/fddi_input -> ip6flow_fastforward -> if_output
     78       1.1  liamjfoy  */
     79       1.1  liamjfoy 
     80      1.18  liamjfoy static struct pool ip6flow_pool;
     81       1.1  liamjfoy 
     82       1.1  liamjfoy LIST_HEAD(ip6flowhead, ip6flow);
     83       1.1  liamjfoy 
     84       1.1  liamjfoy /*
     85       1.1  liamjfoy  * We could use IPv4 defines (IPFLOW_HASHBITS) but we'll
     86       1.1  liamjfoy  * use our own (possibly for future expansion).
     87       1.1  liamjfoy  */
     88       1.1  liamjfoy #define	IP6FLOW_TIMER		(5 * PR_SLOWHZ)
     89       1.4  liamjfoy #define	IP6FLOW_DEFAULT_HASHSIZE	(1 << IP6FLOW_HASHBITS)
     90       1.1  liamjfoy 
     91  1.23.4.2     skrll /*
     92  1.23.4.2     skrll  * ip6_flow.c internal lock.
     93  1.23.4.2     skrll  * If we use softnet_lock, it would cause recursive lock.
     94  1.23.4.2     skrll  *
     95  1.23.4.2     skrll  * This is a tentative workaround.
     96  1.23.4.2     skrll  * We should make it scalable somehow in the future.
     97  1.23.4.2     skrll  */
     98  1.23.4.2     skrll static kmutex_t ip6flow_lock;
     99       1.4  liamjfoy static struct ip6flowhead *ip6flowtable = NULL;
    100       1.1  liamjfoy static struct ip6flowhead ip6flowlist;
    101       1.1  liamjfoy static int ip6flow_inuse;
    102       1.1  liamjfoy 
    103       1.1  liamjfoy /*
    104       1.1  liamjfoy  * Insert an ip6flow into the list.
    105       1.1  liamjfoy  */
    106       1.1  liamjfoy #define	IP6FLOW_INSERT(bucket, ip6f) \
    107       1.1  liamjfoy do { \
    108       1.1  liamjfoy 	LIST_INSERT_HEAD((bucket), (ip6f), ip6f_hash); \
    109       1.1  liamjfoy 	LIST_INSERT_HEAD(&ip6flowlist, (ip6f), ip6f_list); \
    110       1.1  liamjfoy } while (/*CONSTCOND*/ 0)
    111       1.1  liamjfoy 
    112       1.1  liamjfoy /*
    113       1.1  liamjfoy  * Remove an ip6flow from the list.
    114       1.1  liamjfoy  */
    115       1.1  liamjfoy #define	IP6FLOW_REMOVE(ip6f) \
    116       1.1  liamjfoy do { \
    117       1.1  liamjfoy 	LIST_REMOVE((ip6f), ip6f_hash); \
    118       1.1  liamjfoy 	LIST_REMOVE((ip6f), ip6f_list); \
    119       1.1  liamjfoy } while (/*CONSTCOND*/ 0)
    120       1.1  liamjfoy 
    121       1.1  liamjfoy #ifndef IP6FLOW_DEFAULT
    122       1.1  liamjfoy #define	IP6FLOW_DEFAULT		256
    123       1.1  liamjfoy #endif
    124       1.1  liamjfoy 
    125       1.1  liamjfoy int ip6_maxflows = IP6FLOW_DEFAULT;
    126       1.4  liamjfoy int ip6_hashsize = IP6FLOW_DEFAULT_HASHSIZE;
    127       1.1  liamjfoy 
    128       1.1  liamjfoy /*
    129       1.1  liamjfoy  * Calculate hash table position.
    130       1.1  liamjfoy  */
    131       1.1  liamjfoy static size_t
    132      1.13    dyoung ip6flow_hash(const struct ip6_hdr *ip6)
    133       1.1  liamjfoy {
    134       1.1  liamjfoy 	size_t hash;
    135       1.1  liamjfoy 	uint32_t dst_sum, src_sum;
    136       1.6  liamjfoy 	size_t idx;
    137       1.1  liamjfoy 
    138       1.1  liamjfoy 	src_sum = ip6->ip6_src.s6_addr32[0] + ip6->ip6_src.s6_addr32[1]
    139       1.1  liamjfoy 	    + ip6->ip6_src.s6_addr32[2] + ip6->ip6_src.s6_addr32[3];
    140       1.1  liamjfoy 	dst_sum = ip6->ip6_dst.s6_addr32[0] + ip6->ip6_dst.s6_addr32[1]
    141       1.1  liamjfoy 	    + ip6->ip6_dst.s6_addr32[2] + ip6->ip6_dst.s6_addr32[3];
    142       1.1  liamjfoy 
    143       1.1  liamjfoy 	hash = ip6->ip6_flow;
    144       1.1  liamjfoy 
    145       1.1  liamjfoy 	for (idx = 0; idx < 32; idx += IP6FLOW_HASHBITS)
    146       1.1  liamjfoy 		hash += (dst_sum >> (32 - idx)) + (src_sum >> idx);
    147       1.1  liamjfoy 
    148       1.4  liamjfoy 	return hash & (ip6_hashsize-1);
    149       1.1  liamjfoy }
    150       1.1  liamjfoy 
    151       1.1  liamjfoy /*
    152       1.1  liamjfoy  * Check to see if a flow already exists - if so return it.
    153       1.1  liamjfoy  */
    154       1.1  liamjfoy static struct ip6flow *
    155      1.13    dyoung ip6flow_lookup(const struct ip6_hdr *ip6)
    156       1.1  liamjfoy {
    157       1.1  liamjfoy 	size_t hash;
    158       1.1  liamjfoy 	struct ip6flow *ip6f;
    159       1.1  liamjfoy 
    160  1.23.4.2     skrll 	KASSERT(mutex_owned(&ip6flow_lock));
    161  1.23.4.2     skrll 
    162       1.1  liamjfoy 	hash = ip6flow_hash(ip6);
    163       1.1  liamjfoy 
    164       1.2  liamjfoy 	LIST_FOREACH(ip6f, &ip6flowtable[hash], ip6f_hash) {
    165       1.1  liamjfoy 		if (IN6_ARE_ADDR_EQUAL(&ip6->ip6_dst, &ip6f->ip6f_dst)
    166       1.1  liamjfoy 		    && IN6_ARE_ADDR_EQUAL(&ip6->ip6_src, &ip6f->ip6f_src)
    167       1.1  liamjfoy 		    && ip6f->ip6f_flow == ip6->ip6_flow) {
    168       1.1  liamjfoy 		    	/* A cached flow has been found. */
    169       1.1  liamjfoy 			return ip6f;
    170       1.1  liamjfoy 		}
    171       1.1  liamjfoy 	}
    172       1.1  liamjfoy 
    173       1.1  liamjfoy 	return NULL;
    174       1.1  liamjfoy }
    175       1.1  liamjfoy 
    176      1.18  liamjfoy void
    177      1.18  liamjfoy ip6flow_poolinit(void)
    178      1.18  liamjfoy {
    179      1.18  liamjfoy 
    180      1.18  liamjfoy 	pool_init(&ip6flow_pool, sizeof(struct ip6flow), 0, 0, 0, "ip6flowpl",
    181      1.18  liamjfoy 			NULL, IPL_NET);
    182      1.18  liamjfoy }
    183      1.18  liamjfoy 
    184       1.1  liamjfoy /*
    185       1.4  liamjfoy  * Allocate memory and initialise lists. This function is called
    186       1.4  liamjfoy  * from ip6_init and called there after to resize the hash table.
    187       1.4  liamjfoy  * If a newly sized table cannot be malloc'ed we just continue
    188       1.4  liamjfoy  * to use the old one.
    189       1.1  liamjfoy  */
    190  1.23.4.2     skrll static int
    191  1.23.4.2     skrll ip6flow_init_locked(int table_size)
    192       1.1  liamjfoy {
    193       1.4  liamjfoy 	struct ip6flowhead *new_table;
    194       1.1  liamjfoy 	size_t i;
    195       1.1  liamjfoy 
    196  1.23.4.2     skrll 	KASSERT(mutex_owned(&ip6flow_lock));
    197  1.23.4.2     skrll 
    198       1.4  liamjfoy 	new_table = (struct ip6flowhead *)malloc(sizeof(struct ip6flowhead) *
    199       1.4  liamjfoy 	    table_size, M_RTABLE, M_NOWAIT);
    200       1.4  liamjfoy 
    201       1.4  liamjfoy 	if (new_table == NULL)
    202       1.4  liamjfoy 		return 1;
    203       1.4  liamjfoy 
    204       1.4  liamjfoy 	if (ip6flowtable != NULL)
    205       1.4  liamjfoy 		free(ip6flowtable, M_RTABLE);
    206       1.4  liamjfoy 
    207       1.4  liamjfoy 	ip6flowtable = new_table;
    208       1.4  liamjfoy 	ip6_hashsize = table_size;
    209       1.4  liamjfoy 
    210       1.1  liamjfoy 	LIST_INIT(&ip6flowlist);
    211       1.4  liamjfoy 	for (i = 0; i < ip6_hashsize; i++)
    212       1.1  liamjfoy 		LIST_INIT(&ip6flowtable[i]);
    213       1.4  liamjfoy 
    214       1.4  liamjfoy 	return 0;
    215       1.1  liamjfoy }
    216       1.1  liamjfoy 
    217  1.23.4.2     skrll int
    218  1.23.4.2     skrll ip6flow_init(int table_size)
    219  1.23.4.2     skrll {
    220  1.23.4.2     skrll 	int ret;
    221  1.23.4.2     skrll 
    222  1.23.4.2     skrll 	mutex_init(&ip6flow_lock, MUTEX_DEFAULT, IPL_NONE);
    223  1.23.4.2     skrll 
    224  1.23.4.2     skrll 	mutex_enter(&ip6flow_lock);
    225  1.23.4.2     skrll 	ret = ip6flow_init_locked(table_size);
    226  1.23.4.2     skrll 	mutex_exit(&ip6flow_lock);
    227  1.23.4.2     skrll 
    228  1.23.4.2     skrll 	return ret;
    229  1.23.4.2     skrll }
    230  1.23.4.2     skrll 
    231       1.1  liamjfoy /*
    232       1.1  liamjfoy  * IPv6 Fast Forward routine. Attempt to forward the packet -
    233       1.1  liamjfoy  * if any problems are found return to the main IPv6 input
    234       1.1  liamjfoy  * routine to deal with.
    235       1.1  liamjfoy  */
    236       1.1  liamjfoy int
    237      1.20  christos ip6flow_fastforward(struct mbuf **mp)
    238       1.1  liamjfoy {
    239       1.1  liamjfoy 	struct ip6flow *ip6f;
    240       1.1  liamjfoy 	struct ip6_hdr *ip6;
    241       1.1  liamjfoy 	struct rtentry *rt;
    242      1.20  christos 	struct mbuf *m;
    243       1.7    dyoung 	const struct sockaddr *dst;
    244       1.1  liamjfoy 	int error;
    245  1.23.4.2     skrll 	int ret = 0;
    246  1.23.4.2     skrll 
    247  1.23.4.2     skrll 	mutex_enter(&ip6flow_lock);
    248       1.1  liamjfoy 
    249       1.1  liamjfoy 	/*
    250       1.1  liamjfoy 	 * Are we forwarding packets and have flows?
    251       1.1  liamjfoy 	 */
    252       1.1  liamjfoy 	if (!ip6_forwarding || ip6flow_inuse == 0)
    253  1.23.4.2     skrll 		goto out;
    254       1.1  liamjfoy 
    255      1.20  christos 	m = *mp;
    256       1.1  liamjfoy 	/*
    257       1.1  liamjfoy 	 * At least size of IPv6 Header?
    258       1.1  liamjfoy 	 */
    259       1.1  liamjfoy 	if (m->m_len < sizeof(struct ip6_hdr))
    260  1.23.4.2     skrll 		goto out;
    261       1.1  liamjfoy 	/*
    262       1.1  liamjfoy 	 * Was packet received as a link-level multicast or broadcast?
    263       1.1  liamjfoy 	 * If so, don't try to fast forward.
    264       1.1  liamjfoy 	 */
    265       1.1  liamjfoy 	if ((m->m_flags & (M_BCAST|M_MCAST)) != 0)
    266  1.23.4.2     skrll 		goto out;
    267       1.1  liamjfoy 
    268      1.13    dyoung 	if (IP6_HDR_ALIGNED_P(mtod(m, const void *)) == 0) {
    269       1.1  liamjfoy 		if ((m = m_copyup(m, sizeof(struct ip6_hdr),
    270       1.1  liamjfoy 				(max_linkhdr + 3) & ~3)) == NULL) {
    271  1.23.4.2     skrll 			goto out;
    272       1.1  liamjfoy 		}
    273      1.20  christos 		*mp = m;
    274       1.1  liamjfoy 	} else if (__predict_false(m->m_len < sizeof(struct ip6_hdr))) {
    275       1.1  liamjfoy 		if ((m = m_pullup(m, sizeof(struct ip6_hdr))) == NULL) {
    276  1.23.4.2     skrll 			goto out;
    277       1.1  liamjfoy 		}
    278      1.20  christos 		*mp = m;
    279       1.1  liamjfoy 	}
    280       1.1  liamjfoy 
    281       1.1  liamjfoy 	ip6 = mtod(m, struct ip6_hdr *);
    282       1.1  liamjfoy 
    283       1.1  liamjfoy 	if ((ip6->ip6_vfc & IPV6_VERSION_MASK) != IPV6_VERSION) {
    284       1.1  liamjfoy 		/* Bad version. */
    285  1.23.4.2     skrll 		goto out;
    286       1.1  liamjfoy 	}
    287       1.1  liamjfoy 
    288       1.1  liamjfoy 	/*
    289       1.1  liamjfoy 	 * If we have a hop-by-hop extension we must process it.
    290       1.1  liamjfoy 	 * We just leave this up to ip6_input to deal with.
    291       1.1  liamjfoy 	 */
    292       1.1  liamjfoy 	if (ip6->ip6_nxt == IPPROTO_HOPOPTS)
    293  1.23.4.2     skrll 		goto out;
    294       1.1  liamjfoy 
    295       1.1  liamjfoy 	/*
    296       1.1  liamjfoy 	 * Attempt to find a flow.
    297       1.1  liamjfoy 	 */
    298       1.1  liamjfoy 	if ((ip6f = ip6flow_lookup(ip6)) == NULL) {
    299       1.1  liamjfoy 		/* No flow found. */
    300  1.23.4.2     skrll 		goto out;
    301       1.1  liamjfoy 	}
    302       1.1  liamjfoy 
    303       1.1  liamjfoy 	/*
    304       1.1  liamjfoy 	 * Route and interface still up?
    305       1.1  liamjfoy 	 */
    306      1.12    dyoung 	if ((rt = rtcache_validate(&ip6f->ip6f_ro)) == NULL ||
    307  1.23.4.1     skrll 	    (rt->rt_ifp->if_flags & IFF_UP) == 0 ||
    308  1.23.4.1     skrll 	    (rt->rt_flags & RTF_BLACKHOLE) != 0)
    309  1.23.4.2     skrll 		goto out;
    310       1.1  liamjfoy 
    311       1.1  liamjfoy 	/*
    312       1.1  liamjfoy 	 * Packet size greater than MTU?
    313       1.1  liamjfoy 	 */
    314       1.1  liamjfoy 	if (m->m_pkthdr.len > rt->rt_ifp->if_mtu) {
    315       1.1  liamjfoy 		/* Return to main IPv6 input function. */
    316  1.23.4.2     skrll 		goto out;
    317       1.1  liamjfoy 	}
    318       1.1  liamjfoy 
    319      1.21   msaitoh 	/*
    320      1.21   msaitoh 	 * Clear any in-bound checksum flags for this packet.
    321      1.21   msaitoh 	 */
    322      1.21   msaitoh 	m->m_pkthdr.csum_flags = 0;
    323      1.21   msaitoh 
    324       1.1  liamjfoy 	if (ip6->ip6_hlim <= IPV6_HLIMDEC)
    325  1.23.4.2     skrll 		goto out;
    326       1.1  liamjfoy 
    327       1.1  liamjfoy 	/* Decrement hop limit (same as TTL) */
    328       1.1  liamjfoy 	ip6->ip6_hlim -= IPV6_HLIMDEC;
    329       1.1  liamjfoy 
    330       1.1  liamjfoy 	if (rt->rt_flags & RTF_GATEWAY)
    331       1.7    dyoung 		dst = rt->rt_gateway;
    332       1.1  liamjfoy 	else
    333       1.7    dyoung 		dst = rtcache_getdst(&ip6f->ip6f_ro);
    334       1.1  liamjfoy 
    335       1.1  liamjfoy 	PRT_SLOW_ARM(ip6f->ip6f_timer, IP6FLOW_TIMER);
    336       1.1  liamjfoy 
    337       1.1  liamjfoy 	ip6f->ip6f_uses++;
    338       1.1  liamjfoy 
    339       1.1  liamjfoy 	/* Send on its way - straight to the interface output routine. */
    340  1.23.4.2     skrll 	if ((error = if_output_lock(rt->rt_ifp, rt->rt_ifp, m, dst, rt)) != 0) {
    341       1.1  liamjfoy 		ip6f->ip6f_dropped++;
    342       1.1  liamjfoy 	} else {
    343       1.1  liamjfoy 		ip6f->ip6f_forwarded++;
    344       1.1  liamjfoy 	}
    345  1.23.4.2     skrll 	ret = 1;
    346  1.23.4.2     skrll  out:
    347  1.23.4.2     skrll 	mutex_exit(&ip6flow_lock);
    348  1.23.4.2     skrll 	return ret;
    349       1.1  liamjfoy }
    350       1.1  liamjfoy 
    351       1.1  liamjfoy /*
    352       1.1  liamjfoy  * Add the IPv6 flow statistics to the main IPv6 statistics.
    353       1.1  liamjfoy  */
    354       1.1  liamjfoy static void
    355      1.13    dyoung ip6flow_addstats(const struct ip6flow *ip6f)
    356       1.1  liamjfoy {
    357      1.11    dyoung 	struct rtentry *rt;
    358      1.15   thorpej 	uint64_t *ip6s;
    359      1.11    dyoung 
    360      1.12    dyoung 	if ((rt = rtcache_validate(&ip6f->ip6f_ro)) != NULL)
    361      1.11    dyoung 		rt->rt_use += ip6f->ip6f_uses;
    362      1.15   thorpej 	ip6s = IP6_STAT_GETREF();
    363      1.15   thorpej 	ip6s[IP6_STAT_FASTFORWARDFLOWS] = ip6flow_inuse;
    364      1.15   thorpej 	ip6s[IP6_STAT_CANTFORWARD] += ip6f->ip6f_dropped;
    365      1.15   thorpej 	ip6s[IP6_STAT_ODROPPED] += ip6f->ip6f_dropped;
    366      1.15   thorpej 	ip6s[IP6_STAT_TOTAL] += ip6f->ip6f_uses;
    367      1.15   thorpej 	ip6s[IP6_STAT_FORWARD] += ip6f->ip6f_forwarded;
    368      1.15   thorpej 	ip6s[IP6_STAT_FASTFORWARD] += ip6f->ip6f_forwarded;
    369      1.15   thorpej 	IP6_STAT_PUTREF();
    370       1.1  liamjfoy }
    371       1.1  liamjfoy 
    372       1.1  liamjfoy /*
    373       1.1  liamjfoy  * Add statistics and free the flow.
    374       1.1  liamjfoy  */
    375       1.1  liamjfoy static void
    376       1.1  liamjfoy ip6flow_free(struct ip6flow *ip6f)
    377       1.1  liamjfoy {
    378  1.23.4.2     skrll 
    379  1.23.4.2     skrll 	KASSERT(mutex_owned(&ip6flow_lock));
    380       1.1  liamjfoy 
    381       1.1  liamjfoy 	/*
    382       1.1  liamjfoy 	 * Remove the flow from the hash table (at elevated IPL).
    383       1.1  liamjfoy 	 * Once it's off the list, we can deal with it at normal
    384       1.1  liamjfoy 	 * network IPL.
    385       1.1  liamjfoy 	 */
    386       1.1  liamjfoy 	IP6FLOW_REMOVE(ip6f);
    387  1.23.4.2     skrll 
    388       1.1  liamjfoy 	ip6flow_inuse--;
    389       1.1  liamjfoy 	ip6flow_addstats(ip6f);
    390       1.7    dyoung 	rtcache_free(&ip6f->ip6f_ro);
    391       1.1  liamjfoy 	pool_put(&ip6flow_pool, ip6f);
    392       1.1  liamjfoy }
    393       1.1  liamjfoy 
    394  1.23.4.2     skrll static struct ip6flow *
    395  1.23.4.2     skrll ip6flow_reap_locked(int just_one)
    396       1.1  liamjfoy {
    397  1.23.4.2     skrll 
    398  1.23.4.2     skrll 	KASSERT(mutex_owned(&ip6flow_lock));
    399  1.23.4.2     skrll 
    400       1.1  liamjfoy 	while (just_one || ip6flow_inuse > ip6_maxflows) {
    401       1.1  liamjfoy 		struct ip6flow *ip6f, *maybe_ip6f = NULL;
    402       1.1  liamjfoy 
    403       1.1  liamjfoy 		ip6f = LIST_FIRST(&ip6flowlist);
    404       1.1  liamjfoy 		while (ip6f != NULL) {
    405       1.1  liamjfoy 			/*
    406       1.1  liamjfoy 			 * If this no longer points to a valid route -
    407       1.1  liamjfoy 			 * reclaim it.
    408       1.1  liamjfoy 			 */
    409      1.12    dyoung 			if (rtcache_validate(&ip6f->ip6f_ro) == NULL)
    410       1.1  liamjfoy 				goto done;
    411       1.1  liamjfoy 			/*
    412       1.1  liamjfoy 			 * choose the one that's been least recently
    413       1.1  liamjfoy 			 * used or has had the least uses in the
    414       1.1  liamjfoy 			 * last 1.5 intervals.
    415       1.1  liamjfoy 			 */
    416       1.1  liamjfoy 			if (maybe_ip6f == NULL ||
    417       1.1  liamjfoy 			    ip6f->ip6f_timer < maybe_ip6f->ip6f_timer ||
    418       1.1  liamjfoy 			    (ip6f->ip6f_timer == maybe_ip6f->ip6f_timer &&
    419       1.1  liamjfoy 			     ip6f->ip6f_last_uses + ip6f->ip6f_uses <
    420       1.1  liamjfoy 			         maybe_ip6f->ip6f_last_uses +
    421       1.1  liamjfoy 			         maybe_ip6f->ip6f_uses))
    422       1.1  liamjfoy 				maybe_ip6f = ip6f;
    423       1.1  liamjfoy 			ip6f = LIST_NEXT(ip6f, ip6f_list);
    424       1.1  liamjfoy 		}
    425       1.1  liamjfoy 		ip6f = maybe_ip6f;
    426       1.1  liamjfoy 	    done:
    427       1.1  liamjfoy 		/*
    428       1.1  liamjfoy 		 * Remove the entry from the flow table
    429       1.1  liamjfoy 		 */
    430       1.1  liamjfoy 		IP6FLOW_REMOVE(ip6f);
    431  1.23.4.2     skrll 
    432       1.7    dyoung 		rtcache_free(&ip6f->ip6f_ro);
    433       1.1  liamjfoy 		if (just_one) {
    434       1.1  liamjfoy 			ip6flow_addstats(ip6f);
    435       1.1  liamjfoy 			return ip6f;
    436       1.1  liamjfoy 		}
    437       1.1  liamjfoy 		ip6flow_inuse--;
    438       1.1  liamjfoy 		ip6flow_addstats(ip6f);
    439       1.1  liamjfoy 		pool_put(&ip6flow_pool, ip6f);
    440       1.1  liamjfoy 	}
    441       1.1  liamjfoy 	return NULL;
    442       1.1  liamjfoy }
    443       1.1  liamjfoy 
    444  1.23.4.2     skrll /*
    445  1.23.4.2     skrll  * Reap one or more flows - ip6flow_reap may remove
    446  1.23.4.2     skrll  * multiple flows if net.inet6.ip6.maxflows is reduced.
    447  1.23.4.2     skrll  */
    448  1.23.4.2     skrll struct ip6flow *
    449  1.23.4.2     skrll ip6flow_reap(int just_one)
    450  1.23.4.2     skrll {
    451  1.23.4.2     skrll 	struct ip6flow *ip6f;
    452  1.23.4.2     skrll 
    453  1.23.4.2     skrll 	mutex_enter(&ip6flow_lock);
    454  1.23.4.2     skrll 	ip6f = ip6flow_reap_locked(just_one);
    455  1.23.4.2     skrll 	mutex_exit(&ip6flow_lock);
    456  1.23.4.2     skrll 	return ip6f;
    457  1.23.4.2     skrll }
    458  1.23.4.2     skrll 
    459       1.1  liamjfoy void
    460       1.1  liamjfoy ip6flow_slowtimo(void)
    461       1.1  liamjfoy {
    462       1.1  liamjfoy 	struct ip6flow *ip6f, *next_ip6f;
    463       1.1  liamjfoy 
    464      1.16        ad 	mutex_enter(softnet_lock);
    465  1.23.4.2     skrll 	mutex_enter(&ip6flow_lock);
    466      1.16        ad 	KERNEL_LOCK(1, NULL);
    467      1.16        ad 
    468       1.1  liamjfoy 	for (ip6f = LIST_FIRST(&ip6flowlist); ip6f != NULL; ip6f = next_ip6f) {
    469       1.1  liamjfoy 		next_ip6f = LIST_NEXT(ip6f, ip6f_list);
    470       1.1  liamjfoy 		if (PRT_SLOW_ISEXPIRED(ip6f->ip6f_timer) ||
    471      1.12    dyoung 		    rtcache_validate(&ip6f->ip6f_ro) == NULL) {
    472       1.1  liamjfoy 			ip6flow_free(ip6f);
    473       1.1  liamjfoy 		} else {
    474       1.1  liamjfoy 			ip6f->ip6f_last_uses = ip6f->ip6f_uses;
    475       1.1  liamjfoy 			ip6flow_addstats(ip6f);
    476       1.1  liamjfoy 			ip6f->ip6f_uses = 0;
    477       1.1  liamjfoy 			ip6f->ip6f_dropped = 0;
    478       1.1  liamjfoy 			ip6f->ip6f_forwarded = 0;
    479       1.1  liamjfoy 		}
    480       1.1  liamjfoy 	}
    481      1.16        ad 
    482      1.16        ad 	KERNEL_UNLOCK_ONE(NULL);
    483  1.23.4.2     skrll 	mutex_exit(&ip6flow_lock);
    484      1.16        ad 	mutex_exit(softnet_lock);
    485       1.1  liamjfoy }
    486       1.1  liamjfoy 
    487       1.1  liamjfoy /*
    488       1.1  liamjfoy  * We have successfully forwarded a packet using the normal
    489       1.1  liamjfoy  * IPv6 stack. Now create/update a flow.
    490       1.1  liamjfoy  */
    491       1.1  liamjfoy void
    492       1.7    dyoung ip6flow_create(const struct route *ro, struct mbuf *m)
    493       1.1  liamjfoy {
    494      1.13    dyoung 	const struct ip6_hdr *ip6;
    495       1.1  liamjfoy 	struct ip6flow *ip6f;
    496       1.1  liamjfoy 	size_t hash;
    497  1.23.4.2     skrll 
    498  1.23.4.2     skrll 	mutex_enter(&ip6flow_lock);
    499       1.1  liamjfoy 
    500      1.13    dyoung 	ip6 = mtod(m, const struct ip6_hdr *);
    501       1.1  liamjfoy 
    502       1.1  liamjfoy 	/*
    503       1.1  liamjfoy 	 * If IPv6 Fast Forward is disabled, don't create a flow.
    504       1.1  liamjfoy 	 * It can be disabled by setting net.inet6.ip6.maxflows to 0.
    505       1.1  liamjfoy 	 *
    506       1.1  liamjfoy 	 * Don't create a flow for ICMPv6 messages.
    507       1.1  liamjfoy 	 */
    508  1.23.4.2     skrll 	if (ip6_maxflows == 0 || ip6->ip6_nxt == IPPROTO_IPV6_ICMP) {
    509  1.23.4.2     skrll 		mutex_exit(&ip6flow_lock);
    510       1.1  liamjfoy 		return;
    511  1.23.4.2     skrll 	}
    512       1.1  liamjfoy 
    513      1.22     pooka 	KERNEL_LOCK(1, NULL);
    514      1.22     pooka 
    515       1.1  liamjfoy 	/*
    516       1.1  liamjfoy 	 * See if an existing flow exists.  If so:
    517       1.1  liamjfoy 	 *	- Remove the flow
    518       1.1  liamjfoy 	 *	- Add flow statistics
    519       1.1  liamjfoy 	 *	- Free the route
    520       1.1  liamjfoy 	 *	- Reset statistics
    521       1.1  liamjfoy 	 *
    522       1.1  liamjfoy 	 * If a flow doesn't exist allocate a new one if
    523       1.1  liamjfoy 	 * ip6_maxflows hasn't reached its limit. If it has
    524       1.1  liamjfoy 	 * been reached, reap some flows.
    525       1.1  liamjfoy 	 */
    526       1.1  liamjfoy 	ip6f = ip6flow_lookup(ip6);
    527       1.1  liamjfoy 	if (ip6f == NULL) {
    528       1.1  liamjfoy 		if (ip6flow_inuse >= ip6_maxflows) {
    529  1.23.4.2     skrll 			ip6f = ip6flow_reap_locked(1);
    530       1.1  liamjfoy 		} else {
    531       1.1  liamjfoy 			ip6f = pool_get(&ip6flow_pool, PR_NOWAIT);
    532       1.1  liamjfoy 			if (ip6f == NULL)
    533      1.22     pooka 				goto out;
    534       1.1  liamjfoy 			ip6flow_inuse++;
    535       1.1  liamjfoy 		}
    536       1.1  liamjfoy 		memset(ip6f, 0, sizeof(*ip6f));
    537       1.1  liamjfoy 	} else {
    538       1.1  liamjfoy 		IP6FLOW_REMOVE(ip6f);
    539  1.23.4.2     skrll 
    540       1.1  liamjfoy 		ip6flow_addstats(ip6f);
    541       1.7    dyoung 		rtcache_free(&ip6f->ip6f_ro);
    542       1.1  liamjfoy 		ip6f->ip6f_uses = 0;
    543       1.1  liamjfoy 		ip6f->ip6f_last_uses = 0;
    544       1.1  liamjfoy 		ip6f->ip6f_dropped = 0;
    545       1.1  liamjfoy 		ip6f->ip6f_forwarded = 0;
    546       1.1  liamjfoy 	}
    547       1.1  liamjfoy 
    548       1.1  liamjfoy 	/*
    549       1.1  liamjfoy 	 * Fill in the updated/new details.
    550       1.1  liamjfoy 	 */
    551       1.7    dyoung 	rtcache_copy(&ip6f->ip6f_ro, ro);
    552       1.1  liamjfoy 	ip6f->ip6f_dst = ip6->ip6_dst;
    553       1.1  liamjfoy 	ip6f->ip6f_src = ip6->ip6_src;
    554       1.1  liamjfoy 	ip6f->ip6f_flow = ip6->ip6_flow;
    555       1.1  liamjfoy 	PRT_SLOW_ARM(ip6f->ip6f_timer, IP6FLOW_TIMER);
    556       1.1  liamjfoy 
    557       1.1  liamjfoy 	/*
    558       1.1  liamjfoy 	 * Insert into the approriate bucket of the flow table.
    559       1.1  liamjfoy 	 */
    560       1.1  liamjfoy 	hash = ip6flow_hash(ip6);
    561       1.1  liamjfoy 	IP6FLOW_INSERT(&ip6flowtable[hash], ip6f);
    562      1.22     pooka 
    563      1.22     pooka  out:
    564      1.22     pooka 	KERNEL_UNLOCK_ONE(NULL);
    565  1.23.4.2     skrll 	mutex_exit(&ip6flow_lock);
    566       1.1  liamjfoy }
    567       1.1  liamjfoy 
    568       1.1  liamjfoy /*
    569       1.4  liamjfoy  * Invalidate/remove all flows - if new_size is positive we
    570       1.4  liamjfoy  * resize the hash table.
    571       1.1  liamjfoy  */
    572       1.4  liamjfoy int
    573       1.4  liamjfoy ip6flow_invalidate_all(int new_size)
    574       1.1  liamjfoy {
    575       1.1  liamjfoy 	struct ip6flow *ip6f, *next_ip6f;
    576  1.23.4.2     skrll 	int error;
    577       1.1  liamjfoy 
    578       1.4  liamjfoy 	error = 0;
    579  1.23.4.2     skrll 
    580  1.23.4.2     skrll 	mutex_enter(&ip6flow_lock);
    581  1.23.4.2     skrll 
    582       1.1  liamjfoy 	for (ip6f = LIST_FIRST(&ip6flowlist); ip6f != NULL; ip6f = next_ip6f) {
    583       1.1  liamjfoy 		next_ip6f = LIST_NEXT(ip6f, ip6f_list);
    584       1.1  liamjfoy 		ip6flow_free(ip6f);
    585       1.1  liamjfoy 	}
    586       1.4  liamjfoy 
    587       1.4  liamjfoy 	if (new_size)
    588  1.23.4.2     skrll 		error = ip6flow_init_locked(new_size);
    589  1.23.4.2     skrll 
    590  1.23.4.2     skrll 	mutex_exit(&ip6flow_lock);
    591       1.4  liamjfoy 
    592       1.4  liamjfoy 	return error;
    593       1.1  liamjfoy }
    594