Home | History | Annotate | Line # | Download | only in altq
altq_red.c revision 1.4
      1  1.4   toshii /*	$NetBSD: altq_red.c,v 1.4 2001/07/05 08:38:24 toshii Exp $	*/
      2  1.1  thorpej /*	$KAME: altq_red.c,v 1.8 2000/12/14 08:12:46 thorpej Exp $	*/
      3  1.1  thorpej 
      4  1.1  thorpej /*
      5  1.1  thorpej  * Copyright (C) 1997-2000
      6  1.1  thorpej  *	Sony Computer Science Laboratories Inc.  All rights reserved.
      7  1.1  thorpej  *
      8  1.1  thorpej  * Redistribution and use in source and binary forms, with or without
      9  1.1  thorpej  * modification, are permitted provided that the following conditions
     10  1.1  thorpej  * are met:
     11  1.1  thorpej  * 1. Redistributions of source code must retain the above copyright
     12  1.1  thorpej  *    notice, this list of conditions and the following disclaimer.
     13  1.1  thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     14  1.1  thorpej  *    notice, this list of conditions and the following disclaimer in the
     15  1.1  thorpej  *    documentation and/or other materials provided with the distribution.
     16  1.1  thorpej  *
     17  1.1  thorpej  * THIS SOFTWARE IS PROVIDED BY SONY CSL AND CONTRIBUTORS ``AS IS'' AND
     18  1.1  thorpej  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     19  1.1  thorpej  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     20  1.1  thorpej  * ARE DISCLAIMED.  IN NO EVENT SHALL SONY CSL OR CONTRIBUTORS BE LIABLE
     21  1.1  thorpej  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     22  1.1  thorpej  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     23  1.1  thorpej  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     24  1.1  thorpej  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     25  1.1  thorpej  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     26  1.1  thorpej  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     27  1.1  thorpej  * SUCH DAMAGE.
     28  1.1  thorpej  *
     29  1.1  thorpej  */
     30  1.1  thorpej /*
     31  1.1  thorpej  * Copyright (c) 1990-1994 Regents of the University of California.
     32  1.1  thorpej  * All rights reserved.
     33  1.1  thorpej  *
     34  1.1  thorpej  * Redistribution and use in source and binary forms, with or without
     35  1.1  thorpej  * modification, are permitted provided that the following conditions
     36  1.1  thorpej  * are met:
     37  1.1  thorpej  * 1. Redistributions of source code must retain the above copyright
     38  1.1  thorpej  *    notice, this list of conditions and the following disclaimer.
     39  1.1  thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     40  1.1  thorpej  *    notice, this list of conditions and the following disclaimer in the
     41  1.1  thorpej  *    documentation and/or other materials provided with the distribution.
     42  1.1  thorpej  * 3. All advertising materials mentioning features or use of this software
     43  1.1  thorpej  *    must display the following acknowledgement:
     44  1.1  thorpej  *	This product includes software developed by the Computer Systems
     45  1.1  thorpej  *	Engineering Group at Lawrence Berkeley Laboratory.
     46  1.1  thorpej  * 4. Neither the name of the University nor of the Laboratory may be used
     47  1.1  thorpej  *    to endorse or promote products derived from this software without
     48  1.1  thorpej  *    specific prior written permission.
     49  1.1  thorpej  *
     50  1.1  thorpej  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     51  1.1  thorpej  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     52  1.1  thorpej  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     53  1.1  thorpej  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     54  1.1  thorpej  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     55  1.1  thorpej  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     56  1.1  thorpej  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     57  1.1  thorpej  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     58  1.1  thorpej  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     59  1.1  thorpej  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     60  1.1  thorpej  * SUCH DAMAGE.
     61  1.1  thorpej  */
     62  1.1  thorpej 
     63  1.1  thorpej #if defined(__FreeBSD__) || defined(__NetBSD__)
     64  1.1  thorpej #include "opt_altq.h"
     65  1.1  thorpej #if (__FreeBSD__ != 2)
     66  1.1  thorpej #include "opt_inet.h"
     67  1.1  thorpej #ifdef __FreeBSD__
     68  1.1  thorpej #include "opt_inet6.h"
     69  1.1  thorpej #endif
     70  1.1  thorpej #endif
     71  1.1  thorpej #endif /* __FreeBSD__ || __NetBSD__ */
     72  1.1  thorpej #ifdef ALTQ_RED	/* red is enabled by ALTQ_RED option in opt_altq.h */
     73  1.1  thorpej 
     74  1.1  thorpej #include <sys/param.h>
     75  1.1  thorpej #include <sys/malloc.h>
     76  1.1  thorpej #include <sys/mbuf.h>
     77  1.1  thorpej #include <sys/socket.h>
     78  1.1  thorpej #include <sys/sockio.h>
     79  1.1  thorpej #include <sys/systm.h>
     80  1.1  thorpej #include <sys/proc.h>
     81  1.1  thorpej #include <sys/errno.h>
     82  1.1  thorpej #include <sys/kernel.h>
     83  1.1  thorpej #ifdef ALTQ_FLOWVALVE
     84  1.1  thorpej #include <sys/queue.h>
     85  1.1  thorpej #include <sys/time.h>
     86  1.1  thorpej #endif
     87  1.1  thorpej 
     88  1.1  thorpej #include <net/if.h>
     89  1.1  thorpej #include <net/if_types.h>
     90  1.1  thorpej 
     91  1.1  thorpej #include <netinet/in.h>
     92  1.1  thorpej #include <netinet/in_systm.h>
     93  1.1  thorpej #include <netinet/ip.h>
     94  1.1  thorpej #ifdef INET6
     95  1.1  thorpej #include <netinet/ip6.h>
     96  1.1  thorpej #endif
     97  1.1  thorpej 
     98  1.1  thorpej #include <altq/altq.h>
     99  1.1  thorpej #include <altq/altq_conf.h>
    100  1.1  thorpej #include <altq/altq_red.h>
    101  1.1  thorpej #ifdef ALTQ_FLOWVALVE
    102  1.1  thorpej #include <altq/altq_flowvalve.h>
    103  1.1  thorpej #endif
    104  1.1  thorpej 
    105  1.1  thorpej /*
    106  1.1  thorpej  * ALTQ/RED (Random Early Detection) implementation using 32-bit
    107  1.1  thorpej  * fixed-point calculation.
    108  1.1  thorpej  *
    109  1.1  thorpej  * written by kjc using the ns code as a reference.
    110  1.1  thorpej  * you can learn more about red and ns from Sally's home page at
    111  1.1  thorpej  * http://www-nrg.ee.lbl.gov/floyd/
    112  1.1  thorpej  *
    113  1.1  thorpej  * most of the red parameter values are fixed in this implementation
    114  1.1  thorpej  * to prevent fixed-point overflow/underflow.
    115  1.1  thorpej  * if you change the parameters, watch out for overflow/underflow!
    116  1.1  thorpej  *
    117  1.1  thorpej  * the parameters used are recommended values by Sally.
    118  1.1  thorpej  * the corresponding ns config looks:
    119  1.1  thorpej  *	q_weight=0.00195
    120  1.1  thorpej  *	minthresh=5 maxthresh=15 queue-size=60
    121  1.1  thorpej  *	linterm=30
    122  1.1  thorpej  *	dropmech=drop-tail
    123  1.1  thorpej  *	bytes=false (can't be handled by 32-bit fixed-point)
    124  1.1  thorpej  *	doubleq=false dqthresh=false
    125  1.1  thorpej  *	wait=true
    126  1.1  thorpej  */
    127  1.1  thorpej /*
    128  1.1  thorpej  * alternative red parameters for a slow link.
    129  1.1  thorpej  *
    130  1.1  thorpej  * assume the queue length becomes from zero to L and keeps L, it takes
    131  1.1  thorpej  * N packets for q_avg to reach 63% of L.
    132  1.1  thorpej  * when q_weight is 0.002, N is about 500 packets.
    133  1.1  thorpej  * for a slow link like dial-up, 500 packets takes more than 1 minute!
    134  1.1  thorpej  * when q_weight is 0.008, N is about 127 packets.
    135  1.1  thorpej  * when q_weight is 0.016, N is about 63 packets.
    136  1.1  thorpej  * bursts of 50 packets are allowd for 0.002, bursts of 25 packets
    137  1.1  thorpej  * are allowed for 0.016.
    138  1.1  thorpej  * see Sally's paper for more details.
    139  1.1  thorpej  */
    140  1.1  thorpej /* normal red parameters */
    141  1.1  thorpej #define	W_WEIGHT	512	/* inverse of weight of EWMA (511/512) */
    142  1.1  thorpej 				/* q_weight = 0.00195 */
    143  1.1  thorpej 
    144  1.1  thorpej /* red parameters for a slow link */
    145  1.1  thorpej #define	W_WEIGHT_1	128	/* inverse of weight of EWMA (127/128) */
    146  1.1  thorpej 				/* q_weight = 0.0078125 */
    147  1.1  thorpej 
    148  1.1  thorpej /* red parameters for a very slow link (e.g., dialup) */
    149  1.1  thorpej #define	W_WEIGHT_2	64	/* inverse of weight of EWMA (63/64) */
    150  1.1  thorpej 				/* q_weight = 0.015625 */
    151  1.1  thorpej 
    152  1.1  thorpej /* fixed-point uses 12-bit decimal places */
    153  1.1  thorpej #define	FP_SHIFT	12	/* fixed-point shift */
    154  1.1  thorpej 
    155  1.1  thorpej /* red parameters for drop probability */
    156  1.1  thorpej #define	INV_P_MAX	10	/* inverse of max drop probability */
    157  1.1  thorpej #define	TH_MIN		5	/* min threshold */
    158  1.1  thorpej #define	TH_MAX		15	/* max threshold */
    159  1.1  thorpej 
    160  1.1  thorpej #define	RED_LIMIT	60	/* default max queue lenght */
    161  1.1  thorpej #define	RED_STATS		/* collect statistics */
    162  1.1  thorpej 
    163  1.1  thorpej /*
    164  1.1  thorpej  * our default policy for forced-drop is drop-tail.
    165  1.1  thorpej  * (in altq-1.1.2 or earlier, the default was random-drop.
    166  1.1  thorpej  * but it makes more sense to punish the cause of the surge.)
    167  1.1  thorpej  * to switch to the random-drop policy, define "RED_RANDOM_DROP".
    168  1.1  thorpej  */
    169  1.1  thorpej 
    170  1.1  thorpej #ifdef ALTQ_FLOWVALVE
    171  1.1  thorpej /*
    172  1.4   toshii  * flow-valve is an extension to protect red from unresponsive flows
    173  1.1  thorpej  * and to promote end-to-end congestion control.
    174  1.1  thorpej  * flow-valve observes the average drop rates of the flows that have
    175  1.1  thorpej  * experienced packet drops in the recent past.
    176  1.1  thorpej  * when the average drop rate exceeds the threshold, the flow is
    177  1.1  thorpej  * blocked by the flow-valve.  the trapped flow should back off
    178  1.1  thorpej  * exponentially to escape from the flow-valve.
    179  1.1  thorpej  */
    180  1.1  thorpej #ifdef RED_RANDOM_DROP
    181  1.1  thorpej #error "random-drop can't be used with flow-valve!"
    182  1.1  thorpej #endif
    183  1.1  thorpej #endif /* ALTQ_FLOWVALVE */
    184  1.1  thorpej 
    185  1.1  thorpej /* red_list keeps all red_queue_t's allocated. */
    186  1.1  thorpej static red_queue_t *red_list = NULL;
    187  1.1  thorpej 
    188  1.1  thorpej /* default red parameter values */
    189  1.1  thorpej static int default_th_min = TH_MIN;
    190  1.1  thorpej static int default_th_max = TH_MAX;
    191  1.1  thorpej static int default_inv_pmax = INV_P_MAX;
    192  1.1  thorpej 
    193  1.1  thorpej /* internal function prototypes */
    194  1.1  thorpej static int red_enqueue __P((struct ifaltq *, struct mbuf *,
    195  1.1  thorpej 			    struct altq_pktattr *));
    196  1.1  thorpej static struct mbuf *red_dequeue __P((struct ifaltq *, int));
    197  1.1  thorpej static int red_request __P((struct ifaltq *, int, void *));
    198  1.1  thorpej static void red_purgeq __P((red_queue_t *));
    199  1.1  thorpej static int red_detach __P((red_queue_t *));
    200  1.1  thorpej #ifdef ALTQ_FLOWVALVE
    201  1.1  thorpej static __inline struct fve *flowlist_lookup __P((struct flowvalve *,
    202  1.1  thorpej 			 struct altq_pktattr *, struct timeval *));
    203  1.1  thorpej static __inline struct fve *flowlist_reclaim __P((struct flowvalve *,
    204  1.1  thorpej 						  struct altq_pktattr *));
    205  1.1  thorpej static __inline void flowlist_move_to_head __P((struct flowvalve *,
    206  1.1  thorpej 						struct fve *));
    207  1.1  thorpej static __inline int fv_p2f __P((struct flowvalve *, int));
    208  1.1  thorpej static struct flowvalve *fv_alloc __P((struct red *));
    209  1.1  thorpej static void fv_destroy __P((struct flowvalve *));
    210  1.1  thorpej static int fv_checkflow __P((struct flowvalve *, struct altq_pktattr *,
    211  1.1  thorpej 			     struct fve **));
    212  1.1  thorpej static void fv_dropbyred __P((struct flowvalve *fv, struct altq_pktattr *,
    213  1.1  thorpej 			      struct fve *));
    214  1.1  thorpej #endif
    215  1.1  thorpej 
    216  1.1  thorpej /*
    217  1.1  thorpej  * red device interface
    218  1.1  thorpej  */
    219  1.1  thorpej altqdev_decl(red);
    220  1.1  thorpej 
    221  1.1  thorpej int
    222  1.1  thorpej redopen(dev, flag, fmt, p)
    223  1.1  thorpej 	dev_t dev;
    224  1.1  thorpej 	int flag, fmt;
    225  1.1  thorpej 	struct proc *p;
    226  1.1  thorpej {
    227  1.1  thorpej 	/* everything will be done when the queueing scheme is attached. */
    228  1.1  thorpej 	return 0;
    229  1.1  thorpej }
    230  1.1  thorpej 
    231  1.1  thorpej int
    232  1.1  thorpej redclose(dev, flag, fmt, p)
    233  1.1  thorpej 	dev_t dev;
    234  1.1  thorpej 	int flag, fmt;
    235  1.1  thorpej 	struct proc *p;
    236  1.1  thorpej {
    237  1.1  thorpej 	red_queue_t *rqp;
    238  1.1  thorpej 	int err, error = 0;
    239  1.1  thorpej 
    240  1.1  thorpej 	while ((rqp = red_list) != NULL) {
    241  1.1  thorpej 		/* destroy all */
    242  1.1  thorpej 		err = red_detach(rqp);
    243  1.1  thorpej 		if (err != 0 && error == 0)
    244  1.1  thorpej 			error = err;
    245  1.1  thorpej 	}
    246  1.1  thorpej 
    247  1.1  thorpej 	return error;
    248  1.1  thorpej }
    249  1.1  thorpej 
    250  1.1  thorpej int
    251  1.1  thorpej redioctl(dev, cmd, addr, flag, p)
    252  1.1  thorpej 	dev_t dev;
    253  1.1  thorpej 	ioctlcmd_t cmd;
    254  1.1  thorpej 	caddr_t addr;
    255  1.1  thorpej 	int flag;
    256  1.1  thorpej 	struct proc *p;
    257  1.1  thorpej {
    258  1.1  thorpej 	red_queue_t *rqp;
    259  1.1  thorpej 	struct red_interface *ifacep;
    260  1.1  thorpej 	struct ifnet *ifp;
    261  1.1  thorpej 	int	error = 0;
    262  1.1  thorpej 
    263  1.1  thorpej 	/* check super-user privilege */
    264  1.1  thorpej 	switch (cmd) {
    265  1.1  thorpej 	case RED_GETSTATS:
    266  1.1  thorpej 		break;
    267  1.1  thorpej 	default:
    268  1.1  thorpej #if (__FreeBSD_version > 400000)
    269  1.1  thorpej 		if ((error = suser(p)) != 0)
    270  1.1  thorpej #else
    271  1.1  thorpej 		if ((error = suser(p->p_ucred, &p->p_acflag)) != 0)
    272  1.1  thorpej #endif
    273  1.1  thorpej 			return (error);
    274  1.1  thorpej 		break;
    275  1.1  thorpej 	}
    276  1.1  thorpej 
    277  1.1  thorpej 	switch (cmd) {
    278  1.1  thorpej 
    279  1.1  thorpej 	case RED_ENABLE:
    280  1.1  thorpej 		ifacep = (struct red_interface *)addr;
    281  1.1  thorpej 		if ((rqp = altq_lookup(ifacep->red_ifname, ALTQT_RED)) == NULL) {
    282  1.1  thorpej 			error = EBADF;
    283  1.1  thorpej 			break;
    284  1.1  thorpej 		}
    285  1.1  thorpej 		error = altq_enable(rqp->rq_ifq);
    286  1.1  thorpej 		break;
    287  1.1  thorpej 
    288  1.1  thorpej 	case RED_DISABLE:
    289  1.1  thorpej 		ifacep = (struct red_interface *)addr;
    290  1.1  thorpej 		if ((rqp = altq_lookup(ifacep->red_ifname, ALTQT_RED)) == NULL) {
    291  1.1  thorpej 			error = EBADF;
    292  1.1  thorpej 			break;
    293  1.1  thorpej 		}
    294  1.1  thorpej 		error = altq_disable(rqp->rq_ifq);
    295  1.1  thorpej 		break;
    296  1.1  thorpej 
    297  1.1  thorpej 	case RED_IF_ATTACH:
    298  1.1  thorpej 		ifp = ifunit(((struct red_interface *)addr)->red_ifname);
    299  1.1  thorpej 		if (ifp == NULL) {
    300  1.1  thorpej 			error = ENXIO;
    301  1.1  thorpej 			break;
    302  1.1  thorpej 		}
    303  1.1  thorpej 
    304  1.1  thorpej 		/* allocate and initialize red_queue_t */
    305  1.1  thorpej 		MALLOC(rqp, red_queue_t *, sizeof(red_queue_t), M_DEVBUF, M_WAITOK);
    306  1.1  thorpej 		if (rqp == NULL) {
    307  1.1  thorpej 			error = ENOMEM;
    308  1.1  thorpej 			break;
    309  1.1  thorpej 		}
    310  1.1  thorpej 		bzero(rqp, sizeof(red_queue_t));
    311  1.1  thorpej 
    312  1.1  thorpej 		MALLOC(rqp->rq_q, class_queue_t *, sizeof(class_queue_t),
    313  1.1  thorpej 		       M_DEVBUF, M_WAITOK);
    314  1.1  thorpej 		if (rqp->rq_q == NULL) {
    315  1.1  thorpej 			FREE(rqp, M_DEVBUF);
    316  1.1  thorpej 			error = ENOMEM;
    317  1.1  thorpej 			break;
    318  1.1  thorpej 		}
    319  1.1  thorpej 		bzero(rqp->rq_q, sizeof(class_queue_t));
    320  1.1  thorpej 
    321  1.1  thorpej 		rqp->rq_red = red_alloc(0, 0, 0, 0, 0, 0);
    322  1.1  thorpej 		if (rqp->rq_red == NULL) {
    323  1.1  thorpej 			FREE(rqp->rq_q, M_DEVBUF);
    324  1.1  thorpej 			FREE(rqp, M_DEVBUF);
    325  1.1  thorpej 			error = ENOMEM;
    326  1.1  thorpej 			break;
    327  1.1  thorpej 		}
    328  1.1  thorpej 
    329  1.1  thorpej 		rqp->rq_ifq = &ifp->if_snd;
    330  1.1  thorpej 		qtail(rqp->rq_q) = NULL;
    331  1.1  thorpej 		qlen(rqp->rq_q) = 0;
    332  1.1  thorpej 		qlimit(rqp->rq_q) = RED_LIMIT;
    333  1.1  thorpej 		qtype(rqp->rq_q) = Q_RED;
    334  1.1  thorpej 
    335  1.1  thorpej 		/*
    336  1.1  thorpej 		 * set RED to this ifnet structure.
    337  1.1  thorpej 		 */
    338  1.1  thorpej 		error = altq_attach(rqp->rq_ifq, ALTQT_RED, rqp,
    339  1.1  thorpej 				    red_enqueue, red_dequeue, red_request,
    340  1.1  thorpej 				    NULL, NULL);
    341  1.1  thorpej 		if (error) {
    342  1.1  thorpej 			red_destroy(rqp->rq_red);
    343  1.1  thorpej 			FREE(rqp->rq_q, M_DEVBUF);
    344  1.1  thorpej 			FREE(rqp, M_DEVBUF);
    345  1.1  thorpej 			break;
    346  1.1  thorpej 		}
    347  1.1  thorpej 
    348  1.1  thorpej 		/* add this state to the red list */
    349  1.1  thorpej 		rqp->rq_next = red_list;
    350  1.1  thorpej 		red_list = rqp;
    351  1.1  thorpej 		break;
    352  1.1  thorpej 
    353  1.1  thorpej 	case RED_IF_DETACH:
    354  1.1  thorpej 		ifacep = (struct red_interface *)addr;
    355  1.1  thorpej 		if ((rqp = altq_lookup(ifacep->red_ifname, ALTQT_RED)) == NULL) {
    356  1.1  thorpej 			error = EBADF;
    357  1.1  thorpej 			break;
    358  1.1  thorpej 		}
    359  1.1  thorpej 		error = red_detach(rqp);
    360  1.1  thorpej 		break;
    361  1.1  thorpej 
    362  1.1  thorpej 	case RED_GETSTATS:
    363  1.1  thorpej 		do {
    364  1.1  thorpej 			struct red_stats *q_stats;
    365  1.1  thorpej 			red_t *rp;
    366  1.1  thorpej 
    367  1.1  thorpej 			q_stats = (struct red_stats *)addr;
    368  1.1  thorpej 			if ((rqp = altq_lookup(q_stats->iface.red_ifname,
    369  1.1  thorpej 					     ALTQT_RED)) == NULL) {
    370  1.1  thorpej 				error = EBADF;
    371  1.1  thorpej 				break;
    372  1.1  thorpej 			}
    373  1.1  thorpej 
    374  1.1  thorpej 			q_stats->q_len 	   = qlen(rqp->rq_q);
    375  1.1  thorpej 			q_stats->q_limit   = qlimit(rqp->rq_q);
    376  1.1  thorpej 
    377  1.1  thorpej 			rp = rqp->rq_red;
    378  1.1  thorpej 			q_stats->q_avg 	   = rp->red_avg >> rp->red_wshift;
    379  1.1  thorpej 			q_stats->xmit_cnt  = rp->red_stats.xmit_cnt;
    380  1.1  thorpej 			q_stats->drop_cnt  = rp->red_stats.drop_cnt;
    381  1.1  thorpej 			q_stats->drop_forced   = rp->red_stats.drop_forced;
    382  1.1  thorpej 			q_stats->drop_unforced = rp->red_stats.drop_unforced;
    383  1.1  thorpej 			q_stats->marked_packets = rp->red_stats.marked_packets;
    384  1.1  thorpej 
    385  1.1  thorpej 			q_stats->weight		= rp->red_weight;
    386  1.1  thorpej 			q_stats->inv_pmax	= rp->red_inv_pmax;
    387  1.1  thorpej 			q_stats->th_min		= rp->red_thmin;
    388  1.1  thorpej 			q_stats->th_max		= rp->red_thmax;
    389  1.1  thorpej 
    390  1.1  thorpej #ifdef ALTQ_FLOWVALVE
    391  1.1  thorpej 			if (rp->red_flowvalve != NULL) {
    392  1.1  thorpej 				struct flowvalve *fv = rp->red_flowvalve;
    393  1.1  thorpej 				q_stats->fv_flows    = fv->fv_flows;
    394  1.1  thorpej 				q_stats->fv_pass     = fv->fv_stats.pass;
    395  1.1  thorpej 				q_stats->fv_predrop  = fv->fv_stats.predrop;
    396  1.1  thorpej 				q_stats->fv_alloc    = fv->fv_stats.alloc;
    397  1.1  thorpej 				q_stats->fv_escape   = fv->fv_stats.escape;
    398  1.1  thorpej 			} else {
    399  1.1  thorpej #endif /* ALTQ_FLOWVALVE */
    400  1.1  thorpej 				q_stats->fv_flows    = 0;
    401  1.1  thorpej 				q_stats->fv_pass     = 0;
    402  1.1  thorpej 				q_stats->fv_predrop  = 0;
    403  1.1  thorpej 				q_stats->fv_alloc    = 0;
    404  1.1  thorpej 				q_stats->fv_escape   = 0;
    405  1.1  thorpej #ifdef ALTQ_FLOWVALVE
    406  1.1  thorpej 			}
    407  1.1  thorpej #endif /* ALTQ_FLOWVALVE */
    408  1.1  thorpej 		} while (0);
    409  1.1  thorpej 		break;
    410  1.1  thorpej 
    411  1.1  thorpej 	case RED_CONFIG:
    412  1.1  thorpej 		do {
    413  1.1  thorpej 			struct red_conf *fc;
    414  1.1  thorpej 			red_t *new;
    415  1.1  thorpej 			int s, limit;
    416  1.1  thorpej 
    417  1.1  thorpej 			fc = (struct red_conf *)addr;
    418  1.1  thorpej 			if ((rqp = altq_lookup(fc->iface.red_ifname,
    419  1.1  thorpej 					       ALTQT_RED)) == NULL) {
    420  1.1  thorpej 				error = EBADF;
    421  1.1  thorpej 				break;
    422  1.1  thorpej 			}
    423  1.1  thorpej 			new = red_alloc(fc->red_weight,
    424  1.1  thorpej 					fc->red_inv_pmax,
    425  1.1  thorpej 					fc->red_thmin,
    426  1.1  thorpej 					fc->red_thmax,
    427  1.1  thorpej 					fc->red_flags,
    428  1.1  thorpej 					fc->red_pkttime);
    429  1.1  thorpej 			if (new == NULL) {
    430  1.1  thorpej 				error = ENOMEM;
    431  1.1  thorpej 				break;
    432  1.1  thorpej 			}
    433  1.1  thorpej 
    434  1.3  thorpej 			s = splnet();
    435  1.1  thorpej 			red_purgeq(rqp);
    436  1.1  thorpej 			limit = fc->red_limit;
    437  1.1  thorpej 			if (limit < fc->red_thmax)
    438  1.1  thorpej 				limit = fc->red_thmax;
    439  1.1  thorpej 			qlimit(rqp->rq_q) = limit;
    440  1.1  thorpej 			fc->red_limit = limit;	/* write back the new value */
    441  1.1  thorpej 
    442  1.1  thorpej 			red_destroy(rqp->rq_red);
    443  1.1  thorpej 			rqp->rq_red = new;
    444  1.1  thorpej 
    445  1.1  thorpej 			splx(s);
    446  1.1  thorpej 
    447  1.1  thorpej 			/* write back new values */
    448  1.1  thorpej 			fc->red_limit = limit;
    449  1.1  thorpej 			fc->red_inv_pmax = rqp->rq_red->red_inv_pmax;
    450  1.1  thorpej 			fc->red_thmin = rqp->rq_red->red_thmin;
    451  1.1  thorpej 			fc->red_thmax = rqp->rq_red->red_thmax;
    452  1.1  thorpej 
    453  1.1  thorpej 		} while (0);
    454  1.1  thorpej 		break;
    455  1.1  thorpej 
    456  1.1  thorpej 	case RED_SETDEFAULTS:
    457  1.1  thorpej 		do {
    458  1.1  thorpej 			struct redparams *rp;
    459  1.1  thorpej 
    460  1.1  thorpej 			rp = (struct redparams *)addr;
    461  1.1  thorpej 
    462  1.1  thorpej 			default_th_min = rp->th_min;
    463  1.1  thorpej 			default_th_max = rp->th_max;
    464  1.1  thorpej 			default_inv_pmax = rp->inv_pmax;
    465  1.1  thorpej 		} while (0);
    466  1.1  thorpej 		break;
    467  1.1  thorpej 
    468  1.1  thorpej 	default:
    469  1.1  thorpej 		error = EINVAL;
    470  1.1  thorpej 		break;
    471  1.1  thorpej 	}
    472  1.1  thorpej 	return error;
    473  1.1  thorpej }
    474  1.1  thorpej 
    475  1.1  thorpej static int
    476  1.1  thorpej red_detach(rqp)
    477  1.1  thorpej 	red_queue_t *rqp;
    478  1.1  thorpej {
    479  1.1  thorpej 	red_queue_t *tmp;
    480  1.1  thorpej 	int error = 0;
    481  1.1  thorpej 
    482  1.1  thorpej 	if (ALTQ_IS_ENABLED(rqp->rq_ifq))
    483  1.1  thorpej 		altq_disable(rqp->rq_ifq);
    484  1.1  thorpej 
    485  1.1  thorpej 	if ((error = altq_detach(rqp->rq_ifq)))
    486  1.1  thorpej 		return (error);
    487  1.1  thorpej 
    488  1.1  thorpej 	if (red_list == rqp)
    489  1.1  thorpej 		red_list = rqp->rq_next;
    490  1.1  thorpej 	else {
    491  1.1  thorpej 		for (tmp = red_list; tmp != NULL; tmp = tmp->rq_next)
    492  1.1  thorpej 			if (tmp->rq_next == rqp) {
    493  1.1  thorpej 				tmp->rq_next = rqp->rq_next;
    494  1.1  thorpej 				break;
    495  1.1  thorpej 			}
    496  1.1  thorpej 		if (tmp == NULL)
    497  1.1  thorpej 			printf("red_detach: no state found in red_list!\n");
    498  1.1  thorpej 	}
    499  1.1  thorpej 
    500  1.1  thorpej 	red_destroy(rqp->rq_red);
    501  1.1  thorpej 	FREE(rqp->rq_q, M_DEVBUF);
    502  1.1  thorpej 	FREE(rqp, M_DEVBUF);
    503  1.1  thorpej 	return (error);
    504  1.1  thorpej }
    505  1.1  thorpej 
    506  1.1  thorpej /*
    507  1.1  thorpej  * red support routines
    508  1.1  thorpej  */
    509  1.1  thorpej 
    510  1.1  thorpej red_t *
    511  1.1  thorpej red_alloc(weight, inv_pmax, th_min, th_max, flags, pkttime)
    512  1.1  thorpej 	int	weight, inv_pmax, th_min, th_max;
    513  1.1  thorpej 	int	flags, pkttime;
    514  1.1  thorpej {
    515  1.1  thorpej 	red_t 	*rp;
    516  1.1  thorpej 	int	w, i;
    517  1.1  thorpej 	int	npkts_per_sec;
    518  1.1  thorpej 
    519  1.1  thorpej 	MALLOC(rp, red_t *, sizeof(red_t), M_DEVBUF, M_WAITOK);
    520  1.1  thorpej 	if (rp == NULL)
    521  1.1  thorpej 		return (NULL);
    522  1.1  thorpej 	bzero(rp, sizeof(red_t));
    523  1.1  thorpej 
    524  1.1  thorpej 	rp->red_avg = 0;
    525  1.1  thorpej 	rp->red_idle = 1;
    526  1.1  thorpej 
    527  1.1  thorpej 	if (weight == 0)
    528  1.1  thorpej 		rp->red_weight = W_WEIGHT;
    529  1.1  thorpej 	else
    530  1.1  thorpej 		rp->red_weight = weight;
    531  1.1  thorpej 	if (inv_pmax == 0)
    532  1.1  thorpej 		rp->red_inv_pmax = default_inv_pmax;
    533  1.1  thorpej 	else
    534  1.1  thorpej 		rp->red_inv_pmax = inv_pmax;
    535  1.1  thorpej 	if (th_min == 0)
    536  1.1  thorpej 		rp->red_thmin = default_th_min;
    537  1.1  thorpej 	else
    538  1.1  thorpej 		rp->red_thmin = th_min;
    539  1.1  thorpej 	if (th_max == 0)
    540  1.1  thorpej 		rp->red_thmax = default_th_max;
    541  1.1  thorpej 	else
    542  1.1  thorpej 		rp->red_thmax = th_max;
    543  1.1  thorpej 
    544  1.1  thorpej 	rp->red_flags = flags;
    545  1.1  thorpej 
    546  1.1  thorpej 	if (pkttime == 0)
    547  1.1  thorpej 		/* default packet time: 1000 bytes / 10Mbps * 8 * 1000000 */
    548  1.1  thorpej 		rp->red_pkttime = 800;
    549  1.1  thorpej 	else
    550  1.1  thorpej 		rp->red_pkttime = pkttime;
    551  1.1  thorpej 
    552  1.1  thorpej 	if (weight == 0) {
    553  1.1  thorpej 		/* when the link is very slow, adjust red parameters */
    554  1.1  thorpej 		npkts_per_sec = 1000000 / rp->red_pkttime;
    555  1.1  thorpej 		if (npkts_per_sec < 50) {
    556  1.1  thorpej 			/* up to about 400Kbps */
    557  1.1  thorpej 			rp->red_weight = W_WEIGHT_2;
    558  1.1  thorpej 		} else if (npkts_per_sec < 300) {
    559  1.1  thorpej 			/* up to about 2.4Mbps */
    560  1.1  thorpej 			rp->red_weight = W_WEIGHT_1;
    561  1.1  thorpej 		}
    562  1.1  thorpej 	}
    563  1.1  thorpej 
    564  1.1  thorpej 	/* calculate wshift.  weight must be power of 2 */
    565  1.1  thorpej 	w = rp->red_weight;
    566  1.1  thorpej 	for (i = 0; w > 1; i++)
    567  1.1  thorpej 		w = w >> 1;
    568  1.1  thorpej 	rp->red_wshift = i;
    569  1.1  thorpej 	w = 1 << rp->red_wshift;
    570  1.1  thorpej 	if (w != rp->red_weight) {
    571  1.1  thorpej 		printf("invalid weight value %d for red! use %d\n",
    572  1.1  thorpej 		       rp->red_weight, w);
    573  1.1  thorpej 		rp->red_weight = w;
    574  1.1  thorpej 	}
    575  1.1  thorpej 
    576  1.1  thorpej 	/*
    577  1.1  thorpej 	 * thmin_s and thmax_s are scaled versions of th_min and th_max
    578  1.1  thorpej 	 * to be compared with avg.
    579  1.1  thorpej 	 */
    580  1.1  thorpej 	rp->red_thmin_s = rp->red_thmin << (rp->red_wshift + FP_SHIFT);
    581  1.1  thorpej 	rp->red_thmax_s = rp->red_thmax << (rp->red_wshift + FP_SHIFT);
    582  1.1  thorpej 
    583  1.1  thorpej 	/*
    584  1.1  thorpej 	 * precompute probability denominator
    585  1.1  thorpej 	 *  probd = (2 * (TH_MAX-TH_MIN) / pmax) in fixed-point
    586  1.1  thorpej 	 */
    587  1.1  thorpej 	rp->red_probd = (2 * (rp->red_thmax - rp->red_thmin)
    588  1.1  thorpej 			 * rp->red_inv_pmax) << FP_SHIFT;
    589  1.1  thorpej 
    590  1.1  thorpej 	/* allocate weight table */
    591  1.1  thorpej 	rp->red_wtab = wtab_alloc(rp->red_weight);
    592  1.1  thorpej 
    593  1.1  thorpej 	microtime(&rp->red_last);
    594  1.1  thorpej #ifdef ALTQ_FLOWVALVE
    595  1.1  thorpej 	if (flags & REDF_FLOWVALVE)
    596  1.1  thorpej 		rp->red_flowvalve = fv_alloc(rp);
    597  1.1  thorpej 	/* if fv_alloc failes, flowvalve is just disabled */
    598  1.1  thorpej #endif
    599  1.1  thorpej 	return (rp);
    600  1.1  thorpej }
    601  1.1  thorpej 
    602  1.1  thorpej void
    603  1.1  thorpej red_destroy(rp)
    604  1.1  thorpej 	red_t *rp;
    605  1.1  thorpej {
    606  1.1  thorpej #ifdef ALTQ_FLOWVALVE
    607  1.1  thorpej 	if (rp->red_flowvalve != NULL)
    608  1.1  thorpej 		fv_destroy(rp->red_flowvalve);
    609  1.1  thorpej #endif
    610  1.1  thorpej 	wtab_destroy(rp->red_wtab);
    611  1.1  thorpej 	FREE(rp, M_DEVBUF);
    612  1.1  thorpej }
    613  1.1  thorpej 
    614  1.1  thorpej void
    615  1.1  thorpej red_getstats(rp, sp)
    616  1.1  thorpej 	red_t *rp;
    617  1.1  thorpej 	struct redstats *sp;
    618  1.1  thorpej {
    619  1.1  thorpej 	sp->q_avg 		= rp->red_avg >> rp->red_wshift;
    620  1.1  thorpej 	sp->xmit_cnt		= rp->red_stats.xmit_cnt;
    621  1.1  thorpej 	sp->drop_cnt		= rp->red_stats.drop_cnt;
    622  1.1  thorpej 	sp->drop_forced		= rp->red_stats.drop_forced;
    623  1.1  thorpej 	sp->drop_unforced	= rp->red_stats.drop_unforced;
    624  1.1  thorpej 	sp->marked_packets	= rp->red_stats.marked_packets;
    625  1.1  thorpej }
    626  1.1  thorpej 
    627  1.1  thorpej /*
    628  1.1  thorpej  * enqueue routine:
    629  1.1  thorpej  *
    630  1.1  thorpej  *	returns: 0 when successfully queued.
    631  1.1  thorpej  *		 ENOBUFS when drop occurs.
    632  1.1  thorpej  */
    633  1.1  thorpej static int
    634  1.1  thorpej red_enqueue(ifq, m, pktattr)
    635  1.1  thorpej 	struct ifaltq *ifq;
    636  1.1  thorpej 	struct mbuf *m;
    637  1.1  thorpej 	struct altq_pktattr *pktattr;
    638  1.1  thorpej {
    639  1.1  thorpej 	red_queue_t *rqp = (red_queue_t *)ifq->altq_disc;
    640  1.1  thorpej 
    641  1.1  thorpej 	if (red_addq(rqp->rq_red, rqp->rq_q, m, pktattr) < 0)
    642  1.1  thorpej 		return ENOBUFS;
    643  1.1  thorpej 	ifq->ifq_len++;
    644  1.1  thorpej 	return 0;
    645  1.1  thorpej }
    646  1.1  thorpej 
    647  1.1  thorpej int
    648  1.1  thorpej red_addq(rp, q, m, pktattr)
    649  1.1  thorpej 	red_t *rp;
    650  1.1  thorpej 	class_queue_t *q;
    651  1.1  thorpej 	struct mbuf *m;
    652  1.1  thorpej 	struct altq_pktattr *pktattr;
    653  1.1  thorpej {
    654  1.1  thorpej 	int avg, droptype;
    655  1.1  thorpej 	int n;
    656  1.1  thorpej #ifdef ALTQ_FLOWVALVE
    657  1.1  thorpej 	struct fve *fve = NULL;
    658  1.1  thorpej 
    659  1.1  thorpej 	if (rp->red_flowvalve != NULL && rp->red_flowvalve->fv_flows > 0)
    660  1.1  thorpej 		if (fv_checkflow(rp->red_flowvalve, pktattr, &fve)) {
    661  1.1  thorpej 			m_freem(m);
    662  1.1  thorpej 			return (-1);
    663  1.1  thorpej 		}
    664  1.1  thorpej #endif
    665  1.1  thorpej 
    666  1.1  thorpej 	avg = rp->red_avg;
    667  1.1  thorpej 
    668  1.1  thorpej 	/*
    669  1.1  thorpej 	 * if we were idle, we pretend that n packets arrived during
    670  1.1  thorpej 	 * the idle period.
    671  1.1  thorpej 	 */
    672  1.1  thorpej 	if (rp->red_idle) {
    673  1.1  thorpej 		struct timeval now;
    674  1.1  thorpej 		int t;
    675  1.1  thorpej 
    676  1.1  thorpej 		rp->red_idle = 0;
    677  1.1  thorpej 		microtime(&now);
    678  1.1  thorpej 		t = (now.tv_sec - rp->red_last.tv_sec);
    679  1.1  thorpej 		if (t > 60) {
    680  1.1  thorpej 			/*
    681  1.1  thorpej 			 * being idle for more than 1 minute, set avg to zero.
    682  1.1  thorpej 			 * this prevents t from overflow.
    683  1.1  thorpej 			 */
    684  1.1  thorpej 			avg = 0;
    685  1.1  thorpej 		} else {
    686  1.1  thorpej 			t = t * 1000000 + (now.tv_usec - rp->red_last.tv_usec);
    687  1.1  thorpej 			n = t / rp->red_pkttime - 1;
    688  1.1  thorpej 
    689  1.1  thorpej 			/* the following line does (avg = (1 - Wq)^n * avg) */
    690  1.1  thorpej 			if (n > 0)
    691  1.1  thorpej 				avg = (avg >> FP_SHIFT) *
    692  1.1  thorpej 				    pow_w(rp->red_wtab, n);
    693  1.1  thorpej 		}
    694  1.1  thorpej 	}
    695  1.1  thorpej 
    696  1.1  thorpej 	/* run estimator. (note: avg is scaled by WEIGHT in fixed-point) */
    697  1.1  thorpej 	avg += (qlen(q) << FP_SHIFT) - (avg >> rp->red_wshift);
    698  1.1  thorpej 	rp->red_avg = avg;		/* save the new value */
    699  1.1  thorpej 
    700  1.1  thorpej 	/*
    701  1.1  thorpej 	 * red_count keeps a tally of arriving traffic that has not
    702  1.1  thorpej 	 * been dropped.
    703  1.1  thorpej 	 */
    704  1.1  thorpej 	rp->red_count++;
    705  1.1  thorpej 
    706  1.1  thorpej 	/* see if we drop early */
    707  1.1  thorpej 	droptype = DTYPE_NODROP;
    708  1.1  thorpej 	if (avg >= rp->red_thmin_s && qlen(q) > 1) {
    709  1.1  thorpej 		if (avg >= rp->red_thmax_s) {
    710  1.1  thorpej 			/* avg >= th_max: forced drop */
    711  1.1  thorpej 			droptype = DTYPE_FORCED;
    712  1.1  thorpej 		} else if (rp->red_old == 0) {
    713  1.1  thorpej 			/* first exceeds th_min */
    714  1.1  thorpej 			rp->red_count = 1;
    715  1.1  thorpej 			rp->red_old = 1;
    716  1.1  thorpej 		} else if (drop_early((avg - rp->red_thmin_s) >> rp->red_wshift,
    717  1.1  thorpej 				      rp->red_probd, rp->red_count)) {
    718  1.1  thorpej 			/* mark or drop by red */
    719  1.1  thorpej 			if ((rp->red_flags & REDF_ECN) &&
    720  1.1  thorpej 			    mark_ecn(m, pktattr, rp->red_flags)) {
    721  1.1  thorpej 				/* successfully marked.  do not drop. */
    722  1.1  thorpej 				rp->red_count = 0;
    723  1.1  thorpej #ifdef RED_STATS
    724  1.1  thorpej 				rp->red_stats.marked_packets++;
    725  1.1  thorpej #endif
    726  1.1  thorpej 			} else {
    727  1.1  thorpej 				/* unforced drop by red */
    728  1.1  thorpej 				droptype = DTYPE_EARLY;
    729  1.1  thorpej 			}
    730  1.1  thorpej 		}
    731  1.1  thorpej 	} else {
    732  1.1  thorpej 		/* avg < th_min */
    733  1.1  thorpej 		rp->red_old = 0;
    734  1.1  thorpej 	}
    735  1.1  thorpej 
    736  1.1  thorpej 	/*
    737  1.1  thorpej 	 * if the queue length hits the hard limit, it's a forced drop.
    738  1.1  thorpej 	 */
    739  1.1  thorpej 	if (droptype == DTYPE_NODROP && qlen(q) >= qlimit(q))
    740  1.1  thorpej 		droptype = DTYPE_FORCED;
    741  1.1  thorpej 
    742  1.1  thorpej #ifdef RED_RANDOM_DROP
    743  1.1  thorpej 	/* if successful or forced drop, enqueue this packet. */
    744  1.1  thorpej 	if (droptype != DTYPE_EARLY)
    745  1.1  thorpej 		_addq(q, m);
    746  1.1  thorpej #else
    747  1.1  thorpej 	/* if successful, enqueue this packet. */
    748  1.1  thorpej 	if (droptype == DTYPE_NODROP)
    749  1.1  thorpej 		_addq(q, m);
    750  1.1  thorpej #endif
    751  1.1  thorpej 	if (droptype != DTYPE_NODROP) {
    752  1.1  thorpej 		if (droptype == DTYPE_EARLY) {
    753  1.1  thorpej 			/* drop the incoming packet */
    754  1.1  thorpej #ifdef RED_STATS
    755  1.1  thorpej 			rp->red_stats.drop_unforced++;
    756  1.1  thorpej #endif
    757  1.1  thorpej 		} else {
    758  1.1  thorpej 			/* forced drop, select a victim packet in the queue. */
    759  1.1  thorpej #ifdef RED_RANDOM_DROP
    760  1.1  thorpej 			m = _getq_random(q);
    761  1.1  thorpej #endif
    762  1.1  thorpej #ifdef RED_STATS
    763  1.1  thorpej 			rp->red_stats.drop_forced++;
    764  1.1  thorpej #endif
    765  1.1  thorpej 		}
    766  1.1  thorpej #ifdef RED_STATS
    767  1.1  thorpej 		PKTCNTR_ADD(&rp->red_stats.drop_cnt, m_pktlen(m));
    768  1.1  thorpej #endif
    769  1.1  thorpej 		rp->red_count = 0;
    770  1.1  thorpej #ifdef ALTQ_FLOWVALVE
    771  1.1  thorpej 		if (rp->red_flowvalve != NULL)
    772  1.1  thorpej 			fv_dropbyred(rp->red_flowvalve, pktattr, fve);
    773  1.1  thorpej #endif
    774  1.1  thorpej 		m_freem(m);
    775  1.1  thorpej 		return (-1);
    776  1.1  thorpej 	}
    777  1.1  thorpej 	/* successfully queued */
    778  1.1  thorpej #ifdef RED_STATS
    779  1.1  thorpej 	PKTCNTR_ADD(&rp->red_stats.xmit_cnt, m_pktlen(m));
    780  1.1  thorpej #endif
    781  1.1  thorpej 	return (0);
    782  1.1  thorpej }
    783  1.1  thorpej 
    784  1.1  thorpej /*
    785  1.1  thorpej  * early-drop probability is calculated as follows:
    786  1.1  thorpej  *   prob = p_max * (avg - th_min) / (th_max - th_min)
    787  1.1  thorpej  *   prob_a = prob / (2 - count*prob)
    788  1.1  thorpej  *	    = (avg-th_min) / (2*(th_max-th_min)*inv_p_max - count*(avg-th_min))
    789  1.1  thorpej  * here prob_a increases as successive undrop count increases.
    790  1.1  thorpej  * (prob_a starts from prob/2, becomes prob when (count == (1 / prob)),
    791  1.1  thorpej  * becomes 1 when (count >= (2 / prob))).
    792  1.1  thorpej  */
    793  1.1  thorpej int
    794  1.1  thorpej drop_early(fp_len, fp_probd, count)
    795  1.1  thorpej 	int fp_len;	/* (avg - TH_MIN) in fixed-point */
    796  1.1  thorpej 	int fp_probd;	/* (2 * (TH_MAX-TH_MIN) / pmax) in fixed-point */
    797  1.1  thorpej 	int count;	/* how many successive undropped packets */
    798  1.1  thorpej {
    799  1.1  thorpej 	int d;		/* denominator of drop-probability */
    800  1.1  thorpej 
    801  1.1  thorpej 	d = fp_probd - count * fp_len;
    802  1.1  thorpej 	if (d <= 0)
    803  1.1  thorpej 		/* count exceeds the hard limit: drop or mark */
    804  1.1  thorpej 		return (1);
    805  1.1  thorpej 
    806  1.1  thorpej 	/*
    807  1.1  thorpej 	 * now the range of d is [1..600] in fixed-point. (when
    808  1.1  thorpej 	 * th_max-th_min=10 and p_max=1/30)
    809  1.1  thorpej 	 * drop probability = (avg - TH_MIN) / d
    810  1.1  thorpej 	 */
    811  1.1  thorpej 
    812  1.1  thorpej 	if ((random() % d) < fp_len) {
    813  1.1  thorpej 		/* drop or mark */
    814  1.1  thorpej 		return (1);
    815  1.1  thorpej 	}
    816  1.1  thorpej 	/* no drop/mark */
    817  1.1  thorpej 	return (0);
    818  1.1  thorpej }
    819  1.1  thorpej 
    820  1.1  thorpej /*
    821  1.1  thorpej  * try to mark CE bit to the packet.
    822  1.1  thorpej  *    returns 1 if successfully marked, 0 otherwise.
    823  1.1  thorpej  */
    824  1.1  thorpej int
    825  1.1  thorpej mark_ecn(m, pktattr, flags)
    826  1.1  thorpej 	struct mbuf *m;
    827  1.1  thorpej 	struct altq_pktattr *pktattr;
    828  1.1  thorpej 	int flags;
    829  1.1  thorpej {
    830  1.1  thorpej 	struct mbuf *m0;
    831  1.1  thorpej 
    832  1.1  thorpej 	if (pktattr == NULL ||
    833  1.1  thorpej 	    (pktattr->pattr_af != AF_INET && pktattr->pattr_af != AF_INET6))
    834  1.1  thorpej 		return (0);
    835  1.1  thorpej 
    836  1.1  thorpej 	/* verify that pattr_hdr is within the mbuf data */
    837  1.1  thorpej 	for (m0 = m; m0 != NULL; m0 = m0->m_next)
    838  1.1  thorpej 		if ((pktattr->pattr_hdr >= m0->m_data) &&
    839  1.1  thorpej 		    (pktattr->pattr_hdr < m0->m_data + m0->m_len))
    840  1.1  thorpej 			break;
    841  1.1  thorpej 	if (m0 == NULL) {
    842  1.1  thorpej 		/* ick, pattr_hdr is stale */
    843  1.1  thorpej 		pktattr->pattr_af = AF_UNSPEC;
    844  1.1  thorpej 		return (0);
    845  1.1  thorpej 	}
    846  1.1  thorpej 
    847  1.1  thorpej 	switch (pktattr->pattr_af) {
    848  1.1  thorpej 	case AF_INET:
    849  1.1  thorpej 		if (flags & REDF_ECN4) {
    850  1.1  thorpej 			struct ip *ip = (struct ip *)pktattr->pattr_hdr;
    851  1.1  thorpej 
    852  1.1  thorpej 			if (ip->ip_v != 4)
    853  1.1  thorpej 				return (0);	/* version mismatch! */
    854  1.1  thorpej 			if (ip->ip_tos & IPTOS_ECT) {
    855  1.1  thorpej 				/* ECN-capable, mark ECN bit. */
    856  1.1  thorpej 				if ((ip->ip_tos & IPTOS_CE) == 0) {
    857  1.1  thorpej #if (IPTOS_CE == 0x01)
    858  1.1  thorpej 					u_short sum;
    859  1.1  thorpej 
    860  1.1  thorpej 					ip->ip_tos |= IPTOS_CE;
    861  1.1  thorpej 					/*
    862  1.1  thorpej 					 * optimized version when IPTOS_CE
    863  1.1  thorpej 					 * is 0x01.
    864  1.1  thorpej 					 *   HC' = HC -1   when HC > 0
    865  1.1  thorpej 					 *       = 0xfffe  when HC = 0
    866  1.1  thorpej 					 */
    867  1.1  thorpej 					sum = ntohs(ip->ip_sum);
    868  1.1  thorpej 					if (sum == 0)
    869  1.1  thorpej 						sum = 0xfffe;
    870  1.1  thorpej 					else
    871  1.1  thorpej 						sum -= 1;
    872  1.1  thorpej 					ip->ip_sum = htons(sum);
    873  1.1  thorpej #else /* IPTOS_CE != 0x01 */
    874  1.1  thorpej 					long sum;
    875  1.1  thorpej 
    876  1.1  thorpej 					ip->ip_tos |= IPTOS_CE;
    877  1.1  thorpej 					/*
    878  1.1  thorpej 					 * update checksum (from RFC1624)
    879  1.1  thorpej 					 *	   HC' = ~(~HC + ~m + m')
    880  1.1  thorpej 					 */
    881  1.1  thorpej 					sum = ~ntohs(ip->ip_sum) & 0xffff;
    882  1.1  thorpej 					sum += 0xffff + IPTOS_CE;
    883  1.1  thorpej 					sum = (sum >> 16) + (sum & 0xffff);
    884  1.1  thorpej 					sum += (sum >> 16);  /* add carry */
    885  1.1  thorpej 
    886  1.1  thorpej 					ip->ip_sum = htons(~sum & 0xffff);
    887  1.1  thorpej #endif /* IPTOS_CE != 0x01 */
    888  1.1  thorpej 				}
    889  1.1  thorpej 				return (1);
    890  1.1  thorpej 			}
    891  1.1  thorpej 		}
    892  1.1  thorpej 		break;
    893  1.1  thorpej #ifdef INET6
    894  1.1  thorpej 	case AF_INET6:
    895  1.1  thorpej 		if (flags & REDF_ECN6) {
    896  1.1  thorpej 			struct ip6_hdr *ip6 = (struct ip6_hdr *)pktattr->pattr_hdr;
    897  1.1  thorpej 			u_int32_t flowlabel;
    898  1.1  thorpej 
    899  1.1  thorpej 			flowlabel = ntohl(ip6->ip6_flow);
    900  1.1  thorpej 			if ((flowlabel >> 28) != 6)
    901  1.1  thorpej 				return (0);	/* version mismatch! */
    902  1.1  thorpej 			if (flowlabel & (IPTOS_ECT << 20)) {
    903  1.1  thorpej 				/* ECN-capable, mark ECN bit. */
    904  1.1  thorpej 				flowlabel |= (IPTOS_CE << 20);
    905  1.1  thorpej 				ip6->ip6_flow = htonl(flowlabel);
    906  1.1  thorpej 				return (1);
    907  1.1  thorpej 			}
    908  1.1  thorpej 		}
    909  1.1  thorpej 		break;
    910  1.1  thorpej #endif  /* INET6 */
    911  1.1  thorpej 	}
    912  1.1  thorpej 
    913  1.1  thorpej 	/* not marked */
    914  1.1  thorpej 	return (0);
    915  1.1  thorpej }
    916  1.1  thorpej 
    917  1.1  thorpej /*
    918  1.1  thorpej  * dequeue routine:
    919  1.3  thorpej  *	must be called in splnet.
    920  1.1  thorpej  *
    921  1.1  thorpej  *	returns: mbuf dequeued.
    922  1.1  thorpej  *		 NULL when no packet is available in the queue.
    923  1.1  thorpej  */
    924  1.1  thorpej 
    925  1.1  thorpej static struct mbuf *
    926  1.1  thorpej red_dequeue(ifq, op)
    927  1.1  thorpej 	struct ifaltq *ifq;
    928  1.1  thorpej 	int op;
    929  1.1  thorpej {
    930  1.1  thorpej 	red_queue_t *rqp = (red_queue_t *)ifq->altq_disc;
    931  1.1  thorpej 	struct mbuf *m;
    932  1.1  thorpej 
    933  1.1  thorpej 	if (op == ALTDQ_POLL)
    934  1.1  thorpej 		return qhead(rqp->rq_q);
    935  1.1  thorpej 
    936  1.1  thorpej 	/* op == ALTDQ_REMOVE */
    937  1.1  thorpej 	m =  red_getq(rqp->rq_red, rqp->rq_q);
    938  1.1  thorpej 	if (m != NULL)
    939  1.1  thorpej 		ifq->ifq_len--;
    940  1.1  thorpej 	return (m);
    941  1.1  thorpej }
    942  1.1  thorpej 
    943  1.1  thorpej struct mbuf *
    944  1.1  thorpej red_getq(rp, q)
    945  1.1  thorpej 	red_t *rp;
    946  1.1  thorpej 	class_queue_t *q;
    947  1.1  thorpej {
    948  1.1  thorpej 	struct mbuf *m;
    949  1.1  thorpej 
    950  1.1  thorpej 	if ((m = _getq(q)) == NULL) {
    951  1.1  thorpej 		if (rp->red_idle == 0) {
    952  1.1  thorpej 			rp->red_idle = 1;
    953  1.1  thorpej 			microtime(&rp->red_last);
    954  1.1  thorpej 		}
    955  1.1  thorpej 		return NULL;
    956  1.1  thorpej 	}
    957  1.1  thorpej 
    958  1.1  thorpej 	rp->red_idle = 0;
    959  1.1  thorpej 	return (m);
    960  1.1  thorpej }
    961  1.1  thorpej 
    962  1.1  thorpej static int
    963  1.1  thorpej red_request(ifq, req, arg)
    964  1.1  thorpej 	struct ifaltq *ifq;
    965  1.1  thorpej 	int req;
    966  1.1  thorpej 	void *arg;
    967  1.1  thorpej {
    968  1.1  thorpej 	red_queue_t *rqp = (red_queue_t *)ifq->altq_disc;
    969  1.1  thorpej 
    970  1.1  thorpej 	switch (req) {
    971  1.1  thorpej 	case ALTRQ_PURGE:
    972  1.1  thorpej 		red_purgeq(rqp);
    973  1.1  thorpej 		break;
    974  1.1  thorpej 	}
    975  1.1  thorpej 	return (0);
    976  1.1  thorpej }
    977  1.1  thorpej 
    978  1.1  thorpej static void
    979  1.1  thorpej red_purgeq(rqp)
    980  1.1  thorpej 	red_queue_t *rqp;
    981  1.1  thorpej {
    982  1.1  thorpej 	_flushq(rqp->rq_q);
    983  1.1  thorpej 	if (ALTQ_IS_ENABLED(rqp->rq_ifq))
    984  1.1  thorpej 		rqp->rq_ifq->ifq_len = 0;
    985  1.1  thorpej }
    986  1.1  thorpej 
    987  1.1  thorpej 
    988  1.1  thorpej /*
    989  1.1  thorpej  * helper routine to calibrate avg during idle.
    990  1.1  thorpej  * pow_w(wtab, n) returns (1 - Wq)^n in fixed-point
    991  1.1  thorpej  * here Wq = 1/weight and the code assumes Wq is close to zero.
    992  1.1  thorpej  *
    993  1.1  thorpej  * w_tab[n] holds ((1 - Wq)^(2^n)) in fixed-point.
    994  1.1  thorpej  */
    995  1.1  thorpej static struct wtab *wtab_list = NULL;	/* pointer to wtab list */
    996  1.1  thorpej 
    997  1.1  thorpej struct wtab *
    998  1.1  thorpej wtab_alloc(weight)
    999  1.1  thorpej 	int weight;
   1000  1.1  thorpej {
   1001  1.1  thorpej 	struct wtab *w;
   1002  1.1  thorpej 	int i;
   1003  1.1  thorpej 
   1004  1.1  thorpej 	for (w = wtab_list; w != NULL; w = w->w_next)
   1005  1.1  thorpej 		if (w->w_weight == weight) {
   1006  1.1  thorpej 			w->w_refcount++;
   1007  1.1  thorpej 			return (w);
   1008  1.1  thorpej 		}
   1009  1.1  thorpej 
   1010  1.1  thorpej 	MALLOC(w, struct wtab *, sizeof(struct wtab), M_DEVBUF, M_WAITOK);
   1011  1.1  thorpej 	if (w == NULL)
   1012  1.1  thorpej 		panic("wtab_alloc: malloc failed!");
   1013  1.1  thorpej 	bzero(w, sizeof(struct wtab));
   1014  1.1  thorpej 	w->w_weight = weight;
   1015  1.1  thorpej 	w->w_refcount = 1;
   1016  1.1  thorpej 	w->w_next = wtab_list;
   1017  1.1  thorpej 	wtab_list = w;
   1018  1.1  thorpej 
   1019  1.1  thorpej 	/* initialize the weight table */
   1020  1.1  thorpej 	w->w_tab[0] = ((weight - 1) << FP_SHIFT) / weight;
   1021  1.1  thorpej 	for (i = 1; i < 32; i++) {
   1022  1.1  thorpej 		w->w_tab[i] = (w->w_tab[i-1] * w->w_tab[i-1]) >> FP_SHIFT;
   1023  1.1  thorpej 		if (w->w_tab[i] == 0 && w->w_param_max == 0)
   1024  1.1  thorpej 			w->w_param_max = 1 << i;
   1025  1.1  thorpej 	}
   1026  1.1  thorpej 
   1027  1.1  thorpej 	return (w);
   1028  1.1  thorpej }
   1029  1.1  thorpej 
   1030  1.1  thorpej int
   1031  1.1  thorpej wtab_destroy(w)
   1032  1.1  thorpej 	struct wtab *w;
   1033  1.1  thorpej {
   1034  1.1  thorpej 	struct wtab *prev;
   1035  1.1  thorpej 
   1036  1.1  thorpej 	if (--w->w_refcount > 0)
   1037  1.1  thorpej 		return (0);
   1038  1.1  thorpej 
   1039  1.1  thorpej 	if (wtab_list == w)
   1040  1.1  thorpej 		wtab_list = w->w_next;
   1041  1.1  thorpej 	else for (prev = wtab_list; prev->w_next != NULL; prev = prev->w_next)
   1042  1.1  thorpej 		if (prev->w_next == w) {
   1043  1.1  thorpej 			prev->w_next = w->w_next;
   1044  1.1  thorpej 			break;
   1045  1.1  thorpej 		}
   1046  1.1  thorpej 
   1047  1.1  thorpej 	FREE(w, M_DEVBUF);
   1048  1.1  thorpej 	return (0);
   1049  1.1  thorpej }
   1050  1.1  thorpej 
   1051  1.1  thorpej int32_t
   1052  1.1  thorpej pow_w(w, n)
   1053  1.1  thorpej 	struct wtab *w;
   1054  1.1  thorpej 	int n;
   1055  1.1  thorpej {
   1056  1.1  thorpej 	int	i, bit;
   1057  1.1  thorpej 	int32_t	val;
   1058  1.1  thorpej 
   1059  1.1  thorpej 	if (n >= w->w_param_max)
   1060  1.1  thorpej 		return (0);
   1061  1.1  thorpej 
   1062  1.1  thorpej 	val = 1 << FP_SHIFT;
   1063  1.1  thorpej 	if (n <= 0)
   1064  1.1  thorpej 		return (val);
   1065  1.1  thorpej 
   1066  1.1  thorpej 	bit = 1;
   1067  1.1  thorpej 	i = 0;
   1068  1.1  thorpej 	while (n) {
   1069  1.1  thorpej 		if (n & bit) {
   1070  1.1  thorpej 			val = (val * w->w_tab[i]) >> FP_SHIFT;
   1071  1.1  thorpej 			n &= ~bit;
   1072  1.1  thorpej 		}
   1073  1.1  thorpej 		i++;
   1074  1.1  thorpej 		bit <<=  1;
   1075  1.1  thorpej 	}
   1076  1.1  thorpej 	return (val);
   1077  1.1  thorpej }
   1078  1.1  thorpej 
   1079  1.1  thorpej #ifdef ALTQ_FLOWVALVE
   1080  1.1  thorpej 
   1081  1.1  thorpej #define	FV_PSHIFT	7	/* weight of average drop rate -- 1/128 */
   1082  1.1  thorpej #define	FV_PSCALE(x)	((x) << FV_PSHIFT)
   1083  1.1  thorpej #define	FV_PUNSCALE(x)	((x) >> FV_PSHIFT)
   1084  1.1  thorpej #define	FV_FSHIFT	5	/* weight of average fraction -- 1/32 */
   1085  1.1  thorpej #define	FV_FSCALE(x)	((x) << FV_FSHIFT)
   1086  1.1  thorpej #define	FV_FUNSCALE(x)	((x) >> FV_FSHIFT)
   1087  1.1  thorpej 
   1088  1.1  thorpej #define	FV_TIMER	(3 * hz)	/* timer value for garbage collector */
   1089  1.1  thorpej #define	FV_FLOWLISTSIZE		64	/* how many flows in flowlist */
   1090  1.1  thorpej 
   1091  1.1  thorpej #define	FV_N			10	/* update fve_f every FV_N packets */
   1092  1.1  thorpej 
   1093  1.1  thorpej #define	FV_BACKOFFTHRESH	1  /* backoff threshold interval in second */
   1094  1.1  thorpej #define	FV_TTHRESH		3  /* time threshold to delete fve */
   1095  1.1  thorpej #define	FV_ALPHA		5  /* extra packet count */
   1096  1.1  thorpej 
   1097  1.1  thorpej #define	FV_STATS
   1098  1.1  thorpej 
   1099  1.1  thorpej #if (__FreeBSD_version > 300000)
   1100  1.1  thorpej #define	FV_TIMESTAMP(tp)	getmicrotime(tp)
   1101  1.1  thorpej #else
   1102  1.1  thorpej #define	FV_TIMESTAMP(tp)	{ (*(tp)) = time; }
   1103  1.1  thorpej #endif
   1104  1.1  thorpej 
   1105  1.1  thorpej /*
   1106  1.1  thorpej  * Brtt table: 127 entry table to convert drop rate (p) to
   1107  1.1  thorpej  * the corresponding bandwidth fraction (f)
   1108  1.1  thorpej  * the following equation is implemented to use scaled values,
   1109  1.1  thorpej  * fve_p and fve_f, in the fixed point format.
   1110  1.1  thorpej  *
   1111  1.1  thorpej  *   Brtt(p) = 1 /(sqrt(4*p/3) + min(1,3*sqrt(p*6/8)) * p * (1+32 * p*p))
   1112  1.1  thorpej  *   f = Brtt(p) / (max_th + alpha)
   1113  1.1  thorpej  */
   1114  1.1  thorpej #define	BRTT_SIZE	128
   1115  1.1  thorpej #define	BRTT_SHIFT	12
   1116  1.1  thorpej #define	BRTT_MASK	0x0007f000
   1117  1.1  thorpej #define	BRTT_PMAX	(1 << (FV_PSHIFT + FP_SHIFT))
   1118  1.1  thorpej 
   1119  1.1  thorpej const int brtt_tab[BRTT_SIZE] = {
   1120  1.1  thorpej 	0, 1262010, 877019, 703694, 598706, 525854, 471107, 427728,
   1121  1.1  thorpej 	392026, 361788, 335598, 312506, 291850, 273158, 256081, 240361,
   1122  1.1  thorpej 	225800, 212247, 199585, 187788, 178388, 169544, 161207, 153333,
   1123  1.1  thorpej 	145888, 138841, 132165, 125836, 119834, 114141, 108739, 103612,
   1124  1.1  thorpej 	98747, 94129, 89746, 85585, 81637, 77889, 74333, 70957,
   1125  1.1  thorpej 	67752, 64711, 61824, 59084, 56482, 54013, 51667, 49440,
   1126  1.1  thorpej 	47325, 45315, 43406, 41591, 39866, 38227, 36667, 35184,
   1127  1.1  thorpej 	33773, 32430, 31151, 29933, 28774, 27668, 26615, 25611,
   1128  1.1  thorpej 	24653, 23740, 22868, 22035, 21240, 20481, 19755, 19062,
   1129  1.1  thorpej 	18399, 17764, 17157, 16576, 16020, 15487, 14976, 14487,
   1130  1.1  thorpej 	14017, 13567, 13136, 12721, 12323, 11941, 11574, 11222,
   1131  1.1  thorpej 	10883, 10557, 10243, 9942, 9652, 9372, 9103, 8844,
   1132  1.1  thorpej 	8594, 8354, 8122, 7898, 7682, 7474, 7273, 7079,
   1133  1.1  thorpej 	6892, 6711, 6536, 6367, 6204, 6046, 5893, 5746,
   1134  1.1  thorpej 	5603, 5464, 5330, 5201, 5075, 4954, 4836, 4722,
   1135  1.1  thorpej 	4611, 4504, 4400, 4299, 4201, 4106, 4014, 3924
   1136  1.1  thorpej };
   1137  1.1  thorpej 
   1138  1.1  thorpej static __inline struct fve *
   1139  1.1  thorpej flowlist_lookup(fv, pktattr, now)
   1140  1.1  thorpej 	struct flowvalve *fv;
   1141  1.1  thorpej 	struct altq_pktattr *pktattr;
   1142  1.1  thorpej 	struct timeval *now;
   1143  1.1  thorpej {
   1144  1.1  thorpej 	struct fve *fve;
   1145  1.1  thorpej 	int flows;
   1146  1.1  thorpej 	struct ip *ip;
   1147  1.1  thorpej #ifdef INET6
   1148  1.1  thorpej 	struct ip6_hdr *ip6;
   1149  1.1  thorpej #endif
   1150  1.1  thorpej 	struct timeval tthresh;
   1151  1.1  thorpej 
   1152  1.1  thorpej 	if (pktattr == NULL)
   1153  1.1  thorpej 		return (NULL);
   1154  1.1  thorpej 
   1155  1.1  thorpej 	tthresh.tv_sec = now->tv_sec - FV_TTHRESH;
   1156  1.1  thorpej 	flows = 0;
   1157  1.1  thorpej 	/*
   1158  1.1  thorpej 	 * search the flow list
   1159  1.1  thorpej 	 */
   1160  1.1  thorpej 	switch (pktattr->pattr_af) {
   1161  1.1  thorpej 	case AF_INET:
   1162  1.1  thorpej 		ip = (struct ip *)pktattr->pattr_hdr;
   1163  1.1  thorpej 		TAILQ_FOREACH(fve, &fv->fv_flowlist, fve_lru){
   1164  1.1  thorpej 			if (fve->fve_lastdrop.tv_sec == 0)
   1165  1.1  thorpej 				break;
   1166  1.1  thorpej 			if (fve->fve_lastdrop.tv_sec < tthresh.tv_sec) {
   1167  1.1  thorpej 				fve->fve_lastdrop.tv_sec = 0;
   1168  1.1  thorpej 				break;
   1169  1.1  thorpej 			}
   1170  1.1  thorpej 			if (fve->fve_flow.flow_af == AF_INET &&
   1171  1.1  thorpej 			    fve->fve_flow.flow_ip.ip_src.s_addr ==
   1172  1.1  thorpej 			    ip->ip_src.s_addr &&
   1173  1.1  thorpej 			    fve->fve_flow.flow_ip.ip_dst.s_addr ==
   1174  1.1  thorpej 			    ip->ip_dst.s_addr)
   1175  1.1  thorpej 				return (fve);
   1176  1.1  thorpej 			flows++;
   1177  1.1  thorpej 		}
   1178  1.1  thorpej 		break;
   1179  1.1  thorpej #ifdef INET6
   1180  1.1  thorpej 	case AF_INET6:
   1181  1.1  thorpej 		ip6 = (struct ip6_hdr *)pktattr->pattr_hdr;
   1182  1.1  thorpej 		TAILQ_FOREACH(fve, &fv->fv_flowlist, fve_lru){
   1183  1.1  thorpej 			if (fve->fve_lastdrop.tv_sec == 0)
   1184  1.1  thorpej 				break;
   1185  1.1  thorpej 			if (fve->fve_lastdrop.tv_sec < tthresh.tv_sec) {
   1186  1.1  thorpej 				fve->fve_lastdrop.tv_sec = 0;
   1187  1.1  thorpej 				break;
   1188  1.1  thorpej 			}
   1189  1.1  thorpej 			if (fve->fve_flow.flow_af == AF_INET6 &&
   1190  1.1  thorpej 			    IN6_ARE_ADDR_EQUAL(&fve->fve_flow.flow_ip6.ip6_src,
   1191  1.1  thorpej 					       &ip6->ip6_src) &&
   1192  1.1  thorpej 			    IN6_ARE_ADDR_EQUAL(&fve->fve_flow.flow_ip6.ip6_dst,
   1193  1.1  thorpej 					       &ip6->ip6_dst))
   1194  1.1  thorpej 				return (fve);
   1195  1.1  thorpej 			flows++;
   1196  1.1  thorpej 		}
   1197  1.1  thorpej 		break;
   1198  1.1  thorpej #endif /* INET6 */
   1199  1.1  thorpej 
   1200  1.1  thorpej 	default:
   1201  1.1  thorpej 		/* unknown protocol.  no drop. */
   1202  1.1  thorpej 		return (NULL);
   1203  1.1  thorpej 	}
   1204  1.1  thorpej 	fv->fv_flows = flows;	/* save the number of active fve's */
   1205  1.1  thorpej 	return (NULL);
   1206  1.1  thorpej }
   1207  1.1  thorpej 
   1208  1.1  thorpej static __inline struct fve *
   1209  1.1  thorpej flowlist_reclaim(fv, pktattr)
   1210  1.1  thorpej 	struct flowvalve *fv;
   1211  1.1  thorpej 	struct altq_pktattr *pktattr;
   1212  1.1  thorpej {
   1213  1.1  thorpej 	struct fve *fve;
   1214  1.1  thorpej 	struct ip *ip;
   1215  1.1  thorpej #ifdef INET6
   1216  1.1  thorpej 	struct ip6_hdr *ip6;
   1217  1.1  thorpej #endif
   1218  1.1  thorpej 
   1219  1.1  thorpej 	/*
   1220  1.1  thorpej 	 * get an entry from the tail of the LRU list.
   1221  1.1  thorpej 	 */
   1222  1.1  thorpej 	fve = TAILQ_LAST(&fv->fv_flowlist, fv_flowhead);
   1223  1.1  thorpej 
   1224  1.1  thorpej 	switch (pktattr->pattr_af) {
   1225  1.1  thorpej 	case AF_INET:
   1226  1.1  thorpej 		ip = (struct ip *)pktattr->pattr_hdr;
   1227  1.1  thorpej 		fve->fve_flow.flow_af = AF_INET;
   1228  1.1  thorpej 		fve->fve_flow.flow_ip.ip_src = ip->ip_src;
   1229  1.1  thorpej 		fve->fve_flow.flow_ip.ip_dst = ip->ip_dst;
   1230  1.1  thorpej 		break;
   1231  1.1  thorpej #ifdef INET6
   1232  1.1  thorpej 	case AF_INET6:
   1233  1.1  thorpej 		ip6 = (struct ip6_hdr *)pktattr->pattr_hdr;
   1234  1.1  thorpej 		fve->fve_flow.flow_af = AF_INET6;
   1235  1.1  thorpej 		fve->fve_flow.flow_ip6.ip6_src = ip6->ip6_src;
   1236  1.1  thorpej 		fve->fve_flow.flow_ip6.ip6_dst = ip6->ip6_dst;
   1237  1.1  thorpej 		break;
   1238  1.1  thorpej #endif
   1239  1.1  thorpej 	}
   1240  1.1  thorpej 
   1241  1.1  thorpej 	fve->fve_state = Green;
   1242  1.1  thorpej 	fve->fve_p = 0.0;
   1243  1.1  thorpej 	fve->fve_f = 0.0;
   1244  1.1  thorpej 	fve->fve_ifseq = fv->fv_ifseq - 1;
   1245  1.1  thorpej 	fve->fve_count = 0;
   1246  1.1  thorpej 
   1247  1.1  thorpej 	fv->fv_flows++;
   1248  1.1  thorpej #ifdef FV_STATS
   1249  1.1  thorpej 	fv->fv_stats.alloc++;
   1250  1.1  thorpej #endif
   1251  1.1  thorpej 	return (fve);
   1252  1.1  thorpej }
   1253  1.1  thorpej 
   1254  1.1  thorpej static __inline void
   1255  1.1  thorpej flowlist_move_to_head(fv, fve)
   1256  1.1  thorpej 	struct flowvalve *fv;
   1257  1.1  thorpej 	struct fve *fve;
   1258  1.1  thorpej {
   1259  1.1  thorpej 	if (TAILQ_FIRST(&fv->fv_flowlist) != fve) {
   1260  1.1  thorpej 		TAILQ_REMOVE(&fv->fv_flowlist, fve, fve_lru);
   1261  1.1  thorpej 		TAILQ_INSERT_HEAD(&fv->fv_flowlist, fve, fve_lru);
   1262  1.1  thorpej 	}
   1263  1.1  thorpej }
   1264  1.1  thorpej 
   1265  1.1  thorpej /*
   1266  1.1  thorpej  * allocate flowvalve structure
   1267  1.1  thorpej  */
   1268  1.1  thorpej static struct flowvalve *
   1269  1.1  thorpej fv_alloc(rp)
   1270  1.1  thorpej 	struct red *rp;
   1271  1.1  thorpej {
   1272  1.1  thorpej 	struct flowvalve *fv;
   1273  1.1  thorpej 	struct fve *fve;
   1274  1.1  thorpej 	int i, num;
   1275  1.1  thorpej 
   1276  1.1  thorpej 	num = FV_FLOWLISTSIZE;
   1277  1.1  thorpej 	MALLOC(fv, struct flowvalve *, sizeof(struct flowvalve),
   1278  1.1  thorpej 	       M_DEVBUF, M_WAITOK);
   1279  1.1  thorpej 	if (fv == NULL)
   1280  1.1  thorpej 		return (NULL);
   1281  1.1  thorpej 	bzero(fv, sizeof(struct flowvalve));
   1282  1.1  thorpej 
   1283  1.1  thorpej 	MALLOC(fv->fv_fves, struct fve *, sizeof(struct fve) * num,
   1284  1.1  thorpej 	       M_DEVBUF, M_WAITOK);
   1285  1.1  thorpej 	if (fv->fv_fves == NULL) {
   1286  1.1  thorpej 		FREE(fv, M_DEVBUF);
   1287  1.1  thorpej 		return (NULL);
   1288  1.1  thorpej 	}
   1289  1.1  thorpej 	bzero(fv->fv_fves, sizeof(struct fve) * num);
   1290  1.1  thorpej 
   1291  1.1  thorpej 	fv->fv_flows = 0;
   1292  1.1  thorpej 	TAILQ_INIT(&fv->fv_flowlist);
   1293  1.1  thorpej 	for (i = 0; i < num; i++) {
   1294  1.1  thorpej 		fve = &fv->fv_fves[i];
   1295  1.1  thorpej 		fve->fve_lastdrop.tv_sec = 0;
   1296  1.1  thorpej 		TAILQ_INSERT_TAIL(&fv->fv_flowlist, fve, fve_lru);
   1297  1.1  thorpej 	}
   1298  1.1  thorpej 
   1299  1.1  thorpej 	/* initialize drop rate threshold in scaled fixed-point */
   1300  1.1  thorpej 	fv->fv_pthresh = (FV_PSCALE(1) << FP_SHIFT) / rp->red_inv_pmax;
   1301  1.1  thorpej 
   1302  1.1  thorpej 	/* initialize drop rate to fraction table */
   1303  1.1  thorpej 	MALLOC(fv->fv_p2ftab, int *, sizeof(int) * BRTT_SIZE,
   1304  1.1  thorpej 	       M_DEVBUF, M_WAITOK);
   1305  1.1  thorpej 	if (fv->fv_p2ftab == NULL) {
   1306  1.1  thorpej 		FREE(fv->fv_fves, M_DEVBUF);
   1307  1.1  thorpej 		FREE(fv, M_DEVBUF);
   1308  1.1  thorpej 		return (NULL);
   1309  1.1  thorpej 	}
   1310  1.1  thorpej 	/*
   1311  1.1  thorpej 	 * create the p2f table.
   1312  1.1  thorpej 	 * (shift is used to keep the precision)
   1313  1.1  thorpej 	 */
   1314  1.1  thorpej 	for (i = 1; i < BRTT_SIZE; i++) {
   1315  1.1  thorpej 		int f;
   1316  1.1  thorpej 
   1317  1.1  thorpej 		f = brtt_tab[i] << 8;
   1318  1.1  thorpej 		fv->fv_p2ftab[i] = (f / (rp->red_thmax + FV_ALPHA)) >> 8;
   1319  1.1  thorpej 	}
   1320  1.1  thorpej 
   1321  1.1  thorpej 	return (fv);
   1322  1.1  thorpej }
   1323  1.1  thorpej 
   1324  1.1  thorpej static void fv_destroy(fv)
   1325  1.1  thorpej 	struct flowvalve *fv;
   1326  1.1  thorpej {
   1327  1.1  thorpej 	FREE(fv->fv_p2ftab, M_DEVBUF);
   1328  1.1  thorpej 	FREE(fv->fv_fves, M_DEVBUF);
   1329  1.1  thorpej 	FREE(fv, M_DEVBUF);
   1330  1.1  thorpej }
   1331  1.1  thorpej 
   1332  1.1  thorpej static __inline int
   1333  1.1  thorpej fv_p2f(fv, p)
   1334  1.1  thorpej 	struct flowvalve	*fv;
   1335  1.1  thorpej 	int	p;
   1336  1.1  thorpej {
   1337  1.1  thorpej 	int val, f;
   1338  1.1  thorpej 
   1339  1.1  thorpej 	if (p >= BRTT_PMAX)
   1340  1.1  thorpej 		f = fv->fv_p2ftab[BRTT_SIZE-1];
   1341  1.1  thorpej 	else if ((val = (p & BRTT_MASK)))
   1342  1.1  thorpej 		f = fv->fv_p2ftab[(val >> BRTT_SHIFT)];
   1343  1.1  thorpej 	else
   1344  1.1  thorpej 		f = fv->fv_p2ftab[1];
   1345  1.1  thorpej 	return (f);
   1346  1.1  thorpej }
   1347  1.1  thorpej 
   1348  1.1  thorpej /*
   1349  1.1  thorpej  * check if an arriving packet should be pre-dropped.
   1350  1.1  thorpej  * called from red_addq() when a packet arrives.
   1351  1.1  thorpej  * returns 1 when the packet should be pre-dropped.
   1352  1.3  thorpej  * should be called in splnet.
   1353  1.1  thorpej  */
   1354  1.1  thorpej static int
   1355  1.1  thorpej fv_checkflow(fv, pktattr, fcache)
   1356  1.1  thorpej 	struct flowvalve *fv;
   1357  1.1  thorpej 	struct altq_pktattr *pktattr;
   1358  1.1  thorpej 	struct fve **fcache;
   1359  1.1  thorpej {
   1360  1.1  thorpej 	struct fve *fve;
   1361  1.1  thorpej 	struct timeval now;
   1362  1.1  thorpej 
   1363  1.1  thorpej 	fv->fv_ifseq++;
   1364  1.1  thorpej 	FV_TIMESTAMP(&now);
   1365  1.1  thorpej 
   1366  1.1  thorpej 	if ((fve = flowlist_lookup(fv, pktattr, &now)) == NULL)
   1367  1.1  thorpej 		/* no matching entry in the flowlist */
   1368  1.1  thorpej 		return (0);
   1369  1.1  thorpej 
   1370  1.1  thorpej 	*fcache = fve;
   1371  1.1  thorpej 
   1372  1.1  thorpej 	/* update fraction f for every FV_N packets */
   1373  1.1  thorpej 	if (++fve->fve_count == FV_N) {
   1374  1.1  thorpej 		/*
   1375  1.1  thorpej 		 * f = Wf * N / (fv_ifseq - fve_ifseq) + (1 - Wf) * f
   1376  1.1  thorpej 		 */
   1377  1.1  thorpej 		fve->fve_f =
   1378  1.1  thorpej 			(FV_N << FP_SHIFT) / (fv->fv_ifseq - fve->fve_ifseq)
   1379  1.1  thorpej 			+ fve->fve_f - FV_FUNSCALE(fve->fve_f);
   1380  1.1  thorpej 		fve->fve_ifseq = fv->fv_ifseq;
   1381  1.1  thorpej 		fve->fve_count = 0;
   1382  1.1  thorpej 	}
   1383  1.1  thorpej 
   1384  1.1  thorpej 	/*
   1385  1.1  thorpej 	 * overpumping test
   1386  1.1  thorpej 	 */
   1387  1.1  thorpej 	if (fve->fve_state == Green && fve->fve_p > fv->fv_pthresh) {
   1388  1.1  thorpej 		int fthresh;
   1389  1.1  thorpej 
   1390  1.1  thorpej 		/* calculate a threshold */
   1391  1.1  thorpej 		fthresh = fv_p2f(fv, fve->fve_p);
   1392  1.1  thorpej 		if (fve->fve_f > fthresh)
   1393  1.1  thorpej 			fve->fve_state = Red;
   1394  1.1  thorpej 	}
   1395  1.1  thorpej 
   1396  1.1  thorpej 	if (fve->fve_state == Red) {
   1397  1.1  thorpej 		/*
   1398  1.1  thorpej 		 * backoff test
   1399  1.1  thorpej 		 */
   1400  1.1  thorpej 		if (now.tv_sec - fve->fve_lastdrop.tv_sec > FV_BACKOFFTHRESH) {
   1401  1.1  thorpej 			/* no drop for at least FV_BACKOFFTHRESH sec */
   1402  1.1  thorpej 			fve->fve_p = 0;
   1403  1.1  thorpej 			fve->fve_state = Green;
   1404  1.1  thorpej #ifdef FV_STATS
   1405  1.1  thorpej 			fv->fv_stats.escape++;
   1406  1.1  thorpej #endif
   1407  1.1  thorpej 		} else {
   1408  1.1  thorpej 			/* block this flow */
   1409  1.1  thorpej 			flowlist_move_to_head(fv, fve);
   1410  1.1  thorpej 			fve->fve_lastdrop = now;
   1411  1.1  thorpej #ifdef FV_STATS
   1412  1.1  thorpej 			fv->fv_stats.predrop++;
   1413  1.1  thorpej #endif
   1414  1.1  thorpej 			return (1);
   1415  1.1  thorpej 		}
   1416  1.1  thorpej 	}
   1417  1.1  thorpej 
   1418  1.1  thorpej 	/*
   1419  1.1  thorpej 	 * p = (1 - Wp) * p
   1420  1.1  thorpej 	 */
   1421  1.1  thorpej 	fve->fve_p -= FV_PUNSCALE(fve->fve_p);
   1422  1.1  thorpej 	if (fve->fve_p < 0)
   1423  1.1  thorpej 		fve->fve_p = 0;
   1424  1.1  thorpej #ifdef FV_STATS
   1425  1.1  thorpej 	fv->fv_stats.pass++;
   1426  1.1  thorpej #endif
   1427  1.1  thorpej 	return (0);
   1428  1.1  thorpej }
   1429  1.1  thorpej 
   1430  1.1  thorpej /*
   1431  1.1  thorpej  * called from red_addq when a packet is dropped by red.
   1432  1.3  thorpej  * should be called in splnet.
   1433  1.1  thorpej  */
   1434  1.1  thorpej static void fv_dropbyred(fv, pktattr, fcache)
   1435  1.1  thorpej 	struct flowvalve *fv;
   1436  1.1  thorpej 	struct altq_pktattr *pktattr;
   1437  1.1  thorpej 	struct fve *fcache;
   1438  1.1  thorpej {
   1439  1.1  thorpej 	struct fve *fve;
   1440  1.1  thorpej 	struct timeval now;
   1441  1.1  thorpej 
   1442  1.1  thorpej 	if (pktattr == NULL)
   1443  1.1  thorpej 		return;
   1444  1.1  thorpej 	FV_TIMESTAMP(&now);
   1445  1.1  thorpej 
   1446  1.1  thorpej 	if (fcache != NULL)
   1447  1.1  thorpej 		/* the fve of this packet is already cached */
   1448  1.1  thorpej 		fve = fcache;
   1449  1.1  thorpej 	else if ((fve = flowlist_lookup(fv, pktattr, &now)) == NULL)
   1450  1.1  thorpej 		fve = flowlist_reclaim(fv, pktattr);
   1451  1.1  thorpej 
   1452  1.1  thorpej 	flowlist_move_to_head(fv, fve);
   1453  1.1  thorpej 
   1454  1.1  thorpej 	/*
   1455  1.1  thorpej 	 * update p:  the following line cancels the update
   1456  1.1  thorpej 	 *	      in fv_checkflow() and calculate
   1457  1.1  thorpej 	 *	p = Wp + (1 - Wp) * p
   1458  1.1  thorpej 	 */
   1459  1.1  thorpej 	fve->fve_p = (1 << FP_SHIFT) + fve->fve_p;
   1460  1.1  thorpej 
   1461  1.1  thorpej 	fve->fve_lastdrop = now;
   1462  1.1  thorpej }
   1463  1.1  thorpej 
   1464  1.1  thorpej #endif /* ALTQ_FLOWVALVE */
   1465  1.1  thorpej 
   1466  1.1  thorpej #ifdef KLD_MODULE
   1467  1.1  thorpej 
   1468  1.1  thorpej static struct altqsw red_sw =
   1469  1.1  thorpej 	{"red", redopen, redclose, redioctl};
   1470  1.1  thorpej 
   1471  1.1  thorpej ALTQ_MODULE(altq_red, ALTQT_RED, &red_sw);
   1472  1.1  thorpej 
   1473  1.1  thorpej #endif /* KLD_MODULE */
   1474  1.1  thorpej 
   1475  1.1  thorpej #endif /* ALTQ_RED */
   1476