Home | History | Annotate | Line # | Download | only in altq
altq_blue.c revision 1.12.12.3
      1  1.12.12.3     peter /*	$NetBSD: altq_blue.c,v 1.12.12.3 2006/09/25 03:56:59 peter Exp $	*/
      2  1.12.12.1     peter /*	$KAME: altq_blue.c,v 1.15 2005/04/13 03:44:24 suz Exp $	*/
      3        1.1   thorpej 
      4        1.1   thorpej /*
      5  1.12.12.1     peter  * Copyright (C) 1997-2002
      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.4     lukem 
     63        1.4     lukem #include <sys/cdefs.h>
     64  1.12.12.3     peter __KERNEL_RCSID(0, "$NetBSD: altq_blue.c,v 1.12.12.3 2006/09/25 03:56:59 peter Exp $");
     65        1.1   thorpej 
     66  1.12.12.1     peter #ifdef _KERNEL_OPT
     67        1.1   thorpej #include "opt_altq.h"
     68        1.1   thorpej #include "opt_inet.h"
     69        1.1   thorpej #endif
     70  1.12.12.1     peter 
     71        1.1   thorpej #ifdef ALTQ_BLUE	/* blue is enabled by ALTQ_BLUE option in opt_altq.h */
     72        1.1   thorpej 
     73        1.1   thorpej #include <sys/param.h>
     74        1.1   thorpej #include <sys/malloc.h>
     75        1.1   thorpej #include <sys/mbuf.h>
     76        1.1   thorpej #include <sys/socket.h>
     77        1.1   thorpej #include <sys/sockio.h>
     78        1.1   thorpej #include <sys/systm.h>
     79        1.1   thorpej #include <sys/proc.h>
     80        1.1   thorpej #include <sys/errno.h>
     81        1.1   thorpej #include <sys/kernel.h>
     82  1.12.12.2     peter #include <sys/kauth.h>
     83        1.1   thorpej 
     84        1.1   thorpej #include <net/if.h>
     85        1.1   thorpej #include <net/if_types.h>
     86        1.1   thorpej #include <netinet/in.h>
     87        1.1   thorpej #include <netinet/in_systm.h>
     88        1.1   thorpej #include <netinet/ip.h>
     89        1.1   thorpej #ifdef INET6
     90        1.1   thorpej #include <netinet/ip6.h>
     91        1.1   thorpej #endif
     92        1.1   thorpej 
     93        1.1   thorpej #include <altq/altq.h>
     94        1.1   thorpej #include <altq/altq_conf.h>
     95        1.1   thorpej #include <altq/altq_blue.h>
     96        1.1   thorpej 
     97  1.12.12.1     peter #ifdef ALTQ3_COMPAT
     98        1.1   thorpej /*
     99        1.1   thorpej  * Blue is proposed and implemented by Wu-chang Feng <wuchang (at) eecs.umich.edu>.
    100        1.1   thorpej  * more information on Blue is available from
    101  1.12.12.1     peter  * http://www.eecs.umich.edu/~wuchang/blue/
    102        1.1   thorpej  */
    103        1.1   thorpej 
    104        1.1   thorpej /* fixed-point uses 12-bit decimal places */
    105        1.1   thorpej #define	FP_SHIFT	12	/* fixed-point shift */
    106        1.1   thorpej 
    107  1.12.12.1     peter #define	BLUE_LIMIT	200	/* default max queue lenght */
    108  1.12.12.1     peter #define	BLUE_STATS		/* collect statistics */
    109        1.1   thorpej 
    110        1.1   thorpej /* blue_list keeps all blue_state_t's allocated. */
    111        1.1   thorpej static blue_queue_t *blue_list = NULL;
    112        1.1   thorpej 
    113        1.1   thorpej /* internal function prototypes */
    114  1.12.12.1     peter static int blue_enqueue(struct ifaltq *, struct mbuf *, struct altq_pktattr *);
    115  1.12.12.1     peter static struct mbuf *blue_dequeue(struct ifaltq *, int);
    116  1.12.12.1     peter static int drop_early(blue_t *);
    117  1.12.12.1     peter static int mark_ecn(struct mbuf *, struct altq_pktattr *, int);
    118  1.12.12.1     peter static int blue_detach(blue_queue_t *);
    119  1.12.12.1     peter static int blue_request(struct ifaltq *, int, void *);
    120        1.1   thorpej 
    121        1.1   thorpej /*
    122        1.1   thorpej  * blue device interface
    123        1.1   thorpej  */
    124        1.1   thorpej altqdev_decl(blue);
    125        1.1   thorpej 
    126        1.1   thorpej int
    127       1.12  christos blueopen(dev, flag, fmt, l)
    128        1.1   thorpej 	dev_t dev;
    129        1.1   thorpej 	int flag, fmt;
    130       1.12  christos 	struct lwp *l;
    131        1.1   thorpej {
    132        1.1   thorpej 	/* everything will be done when the queueing scheme is attached. */
    133        1.1   thorpej 	return 0;
    134        1.1   thorpej }
    135        1.1   thorpej 
    136        1.1   thorpej int
    137       1.12  christos blueclose(dev, flag, fmt, l)
    138        1.1   thorpej 	dev_t dev;
    139        1.1   thorpej 	int flag, fmt;
    140       1.12  christos 	struct lwp *l;
    141        1.1   thorpej {
    142        1.1   thorpej 	blue_queue_t *rqp;
    143        1.1   thorpej 	int err, error = 0;
    144        1.1   thorpej 
    145        1.1   thorpej 	while ((rqp = blue_list) != NULL) {
    146        1.1   thorpej 		/* destroy all */
    147        1.1   thorpej 		err = blue_detach(rqp);
    148        1.1   thorpej 		if (err != 0 && error == 0)
    149        1.1   thorpej 			error = err;
    150        1.1   thorpej 	}
    151        1.1   thorpej 
    152        1.1   thorpej 	return error;
    153        1.1   thorpej }
    154        1.1   thorpej 
    155        1.1   thorpej int
    156       1.12  christos blueioctl(dev, cmd, addr, flag, l)
    157        1.1   thorpej 	dev_t dev;
    158        1.1   thorpej 	ioctlcmd_t cmd;
    159        1.1   thorpej 	caddr_t addr;
    160        1.1   thorpej 	int flag;
    161       1.12  christos 	struct lwp *l;
    162        1.1   thorpej {
    163        1.1   thorpej 	blue_queue_t *rqp;
    164        1.1   thorpej 	struct blue_interface *ifacep;
    165        1.1   thorpej 	struct ifnet *ifp;
    166        1.1   thorpej 	int	error = 0;
    167        1.1   thorpej 
    168        1.1   thorpej 	/* check super-user privilege */
    169        1.1   thorpej 	switch (cmd) {
    170        1.1   thorpej 	case BLUE_GETSTATS:
    171        1.1   thorpej 		break;
    172        1.1   thorpej 	default:
    173        1.1   thorpej #if (__FreeBSD_version > 400000)
    174        1.1   thorpej 		if ((error = suser(p)) != 0)
    175        1.1   thorpej 			return (error);
    176        1.1   thorpej #else
    177  1.12.12.3     peter 		if ((error = kauth_authorize_generic(l->l_cred,
    178  1.12.12.3     peter 		    KAUTH_GENERIC_ISSUSER, &l->l_acflag)) != 0)
    179        1.1   thorpej 			return (error);
    180        1.1   thorpej #endif
    181        1.1   thorpej 		break;
    182        1.1   thorpej 	}
    183       1.11     perry 
    184        1.1   thorpej 	switch (cmd) {
    185        1.1   thorpej 
    186        1.1   thorpej 	case BLUE_ENABLE:
    187        1.1   thorpej 		ifacep = (struct blue_interface *)addr;
    188        1.1   thorpej 		if ((rqp = altq_lookup(ifacep->blue_ifname, ALTQT_BLUE)) == NULL) {
    189        1.1   thorpej 			error = EBADF;
    190        1.1   thorpej 			break;
    191        1.1   thorpej 		}
    192        1.1   thorpej 		error = altq_enable(rqp->rq_ifq);
    193        1.1   thorpej 		break;
    194        1.1   thorpej 
    195        1.1   thorpej 	case BLUE_DISABLE:
    196        1.1   thorpej 		ifacep = (struct blue_interface *)addr;
    197        1.1   thorpej 		if ((rqp = altq_lookup(ifacep->blue_ifname, ALTQT_BLUE)) == NULL) {
    198        1.1   thorpej 			error = EBADF;
    199        1.1   thorpej 			break;
    200        1.1   thorpej 		}
    201        1.1   thorpej 		error = altq_disable(rqp->rq_ifq);
    202        1.1   thorpej 		break;
    203        1.1   thorpej 
    204        1.1   thorpej 	case BLUE_IF_ATTACH:
    205        1.1   thorpej 		ifp = ifunit(((struct blue_interface *)addr)->blue_ifname);
    206        1.1   thorpej 		if (ifp == NULL) {
    207        1.1   thorpej 			error = ENXIO;
    208        1.1   thorpej 			break;
    209        1.1   thorpej 		}
    210        1.1   thorpej 
    211        1.1   thorpej 		/* allocate and initialize blue_state_t */
    212  1.12.12.2     peter 		rqp = malloc(sizeof(blue_queue_t), M_DEVBUF, M_WAITOK|M_ZERO);
    213  1.12.12.2     peter 		if (rqp == NULL) {
    214  1.12.12.2     peter 			error = ENOMEM;
    215  1.12.12.2     peter 			break;
    216  1.12.12.2     peter 		}
    217        1.1   thorpej 
    218  1.12.12.2     peter 		rqp->rq_q = malloc(sizeof(class_queue_t), M_DEVBUF,
    219  1.12.12.2     peter 		    M_WAITOK|M_ZERO);
    220  1.12.12.2     peter 		if (rqp->rq_q == NULL) {
    221  1.12.12.2     peter 			free(rqp, M_DEVBUF);
    222  1.12.12.2     peter 			error = ENOMEM;
    223  1.12.12.2     peter 			break;
    224  1.12.12.2     peter 		}
    225        1.1   thorpej 
    226  1.12.12.2     peter 		rqp->rq_blue = malloc(sizeof(blue_t), M_DEVBUF,
    227  1.12.12.2     peter 		    M_WAITOK|M_ZERO);
    228  1.12.12.2     peter 		if (rqp->rq_blue == NULL) {
    229  1.12.12.2     peter 			free(rqp->rq_q, M_DEVBUF);
    230  1.12.12.2     peter 			free(rqp, M_DEVBUF);
    231  1.12.12.2     peter 			error = ENOMEM;
    232  1.12.12.2     peter 			break;
    233  1.12.12.2     peter 		}
    234        1.1   thorpej 
    235        1.1   thorpej 		rqp->rq_ifq = &ifp->if_snd;
    236        1.1   thorpej 		qtail(rqp->rq_q) = NULL;
    237        1.1   thorpej 		qlen(rqp->rq_q) = 0;
    238        1.1   thorpej 		qlimit(rqp->rq_q) = BLUE_LIMIT;
    239        1.1   thorpej 
    240        1.1   thorpej 		/* default packet time: 1000 bytes / 10Mbps * 8 * 1000000 */
    241        1.1   thorpej 		blue_init(rqp->rq_blue, 0, 800, 1000, 50000);
    242        1.1   thorpej 
    243        1.1   thorpej 		/*
    244        1.1   thorpej 		 * set BLUE to this ifnet structure.
    245        1.1   thorpej 		 */
    246        1.1   thorpej 		error = altq_attach(rqp->rq_ifq, ALTQT_BLUE, rqp,
    247        1.1   thorpej 				    blue_enqueue, blue_dequeue, blue_request,
    248        1.1   thorpej 				    NULL, NULL);
    249        1.1   thorpej 		if (error) {
    250  1.12.12.2     peter 			free(rqp->rq_blue, M_DEVBUF);
    251  1.12.12.2     peter 			free(rqp->rq_q, M_DEVBUF);
    252  1.12.12.2     peter 			free(rqp, M_DEVBUF);
    253        1.1   thorpej 			break;
    254        1.1   thorpej 		}
    255        1.1   thorpej 
    256        1.1   thorpej 		/* add this state to the blue list */
    257        1.1   thorpej 		rqp->rq_next = blue_list;
    258        1.1   thorpej 		blue_list = rqp;
    259        1.1   thorpej 		break;
    260        1.1   thorpej 
    261        1.1   thorpej 	case BLUE_IF_DETACH:
    262        1.1   thorpej 		ifacep = (struct blue_interface *)addr;
    263        1.1   thorpej 		if ((rqp = altq_lookup(ifacep->blue_ifname, ALTQT_BLUE)) == NULL) {
    264        1.1   thorpej 			error = EBADF;
    265        1.1   thorpej 			break;
    266        1.1   thorpej 		}
    267        1.1   thorpej 		error = blue_detach(rqp);
    268        1.1   thorpej 		break;
    269        1.1   thorpej 
    270        1.1   thorpej 	case BLUE_GETSTATS:
    271        1.1   thorpej 		do {
    272        1.1   thorpej 			struct blue_stats *q_stats;
    273        1.1   thorpej 			blue_t *rp;
    274        1.1   thorpej 
    275        1.1   thorpej 			q_stats = (struct blue_stats *)addr;
    276        1.1   thorpej 			if ((rqp = altq_lookup(q_stats->iface.blue_ifname,
    277        1.1   thorpej 					     ALTQT_BLUE)) == NULL) {
    278        1.1   thorpej 				error = EBADF;
    279        1.1   thorpej 				break;
    280        1.1   thorpej 			}
    281        1.1   thorpej 
    282        1.1   thorpej 			q_stats->q_len 	   = qlen(rqp->rq_q);
    283        1.1   thorpej 			q_stats->q_limit   = qlimit(rqp->rq_q);
    284        1.1   thorpej 
    285        1.1   thorpej 			rp = rqp->rq_blue;
    286        1.1   thorpej 			q_stats->q_pmark = rp->blue_pmark;
    287        1.1   thorpej 			q_stats->xmit_packets  = rp->blue_stats.xmit_packets;
    288        1.1   thorpej 			q_stats->xmit_bytes    = rp->blue_stats.xmit_bytes;
    289        1.1   thorpej 			q_stats->drop_packets  = rp->blue_stats.drop_packets;
    290        1.1   thorpej 			q_stats->drop_bytes    = rp->blue_stats.drop_bytes;
    291        1.1   thorpej 			q_stats->drop_forced   = rp->blue_stats.drop_forced;
    292        1.1   thorpej 			q_stats->drop_unforced = rp->blue_stats.drop_unforced;
    293        1.1   thorpej 			q_stats->marked_packets = rp->blue_stats.marked_packets;
    294        1.1   thorpej 
    295  1.12.12.1     peter 		} while (/*CONSTCOND*/ 0);
    296        1.1   thorpej 		break;
    297        1.1   thorpej 
    298        1.1   thorpej 	case BLUE_CONFIG:
    299        1.1   thorpej 		do {
    300        1.1   thorpej 			struct blue_conf *fc;
    301        1.1   thorpej 			int limit;
    302        1.1   thorpej 
    303        1.1   thorpej 			fc = (struct blue_conf *)addr;
    304        1.1   thorpej 			if ((rqp = altq_lookup(fc->iface.blue_ifname,
    305        1.1   thorpej 					       ALTQT_BLUE)) == NULL) {
    306        1.1   thorpej 				error = EBADF;
    307        1.1   thorpej 				break;
    308        1.1   thorpej 			}
    309        1.1   thorpej 			limit = fc->blue_limit;
    310        1.1   thorpej 			qlimit(rqp->rq_q) = limit;
    311        1.1   thorpej 			fc->blue_limit = limit;	/* write back the new value */
    312        1.1   thorpej 			if (fc->blue_pkttime > 0)
    313        1.1   thorpej 				rqp->rq_blue->blue_pkttime = fc->blue_pkttime;
    314        1.1   thorpej 			if (fc->blue_max_pmark > 0)
    315        1.1   thorpej 				rqp->rq_blue->blue_max_pmark = fc->blue_max_pmark;
    316        1.1   thorpej 			if (fc->blue_hold_time > 0)
    317        1.1   thorpej 				rqp->rq_blue->blue_hold_time = fc->blue_hold_time;
    318        1.1   thorpej 			rqp->rq_blue->blue_flags = fc->blue_flags;
    319       1.11     perry 
    320        1.1   thorpej 			blue_init(rqp->rq_blue, rqp->rq_blue->blue_flags,
    321        1.1   thorpej 				  rqp->rq_blue->blue_pkttime,
    322        1.1   thorpej 				  rqp->rq_blue->blue_max_pmark,
    323        1.1   thorpej 				  rqp->rq_blue->blue_hold_time);
    324  1.12.12.1     peter 		} while (/*CONSTCOND*/ 0);
    325        1.1   thorpej 		break;
    326        1.1   thorpej 
    327        1.1   thorpej 	default:
    328        1.1   thorpej 		error = EINVAL;
    329        1.1   thorpej 		break;
    330        1.1   thorpej 	}
    331        1.1   thorpej 	return error;
    332        1.1   thorpej }
    333        1.1   thorpej 
    334        1.1   thorpej static int blue_detach(rqp)
    335        1.1   thorpej 	blue_queue_t *rqp;
    336        1.1   thorpej {
    337        1.1   thorpej 	blue_queue_t *tmp;
    338        1.1   thorpej 	int error = 0;
    339        1.1   thorpej 
    340        1.1   thorpej 	if (ALTQ_IS_ENABLED(rqp->rq_ifq))
    341        1.1   thorpej 		altq_disable(rqp->rq_ifq);
    342        1.1   thorpej 
    343        1.1   thorpej 	if ((error = altq_detach(rqp->rq_ifq)))
    344        1.1   thorpej 		return (error);
    345        1.1   thorpej 
    346        1.1   thorpej 	if (blue_list == rqp)
    347        1.1   thorpej 		blue_list = rqp->rq_next;
    348        1.1   thorpej 	else {
    349        1.1   thorpej 		for (tmp = blue_list; tmp != NULL; tmp = tmp->rq_next)
    350        1.1   thorpej 			if (tmp->rq_next == rqp) {
    351        1.1   thorpej 				tmp->rq_next = rqp->rq_next;
    352        1.1   thorpej 				break;
    353        1.1   thorpej 			}
    354        1.1   thorpej 		if (tmp == NULL)
    355        1.1   thorpej 			printf("blue_detach: no state found in blue_list!\n");
    356        1.1   thorpej 	}
    357        1.1   thorpej 
    358  1.12.12.2     peter 	free(rqp->rq_q, M_DEVBUF);
    359  1.12.12.2     peter 	free(rqp->rq_blue, M_DEVBUF);
    360  1.12.12.2     peter 	free(rqp, M_DEVBUF);
    361        1.1   thorpej 	return (error);
    362        1.1   thorpej }
    363        1.1   thorpej 
    364        1.1   thorpej /*
    365        1.1   thorpej  * blue support routines
    366        1.1   thorpej  */
    367        1.1   thorpej 
    368       1.11     perry int
    369        1.1   thorpej blue_init(rp, flags, pkttime, blue_max_pmark, blue_hold_time)
    370        1.1   thorpej 	blue_t 	*rp;
    371        1.1   thorpej 	int	flags;
    372        1.1   thorpej 	int	pkttime;
    373        1.1   thorpej 	int	blue_max_pmark;
    374        1.1   thorpej 	int	blue_hold_time;
    375        1.1   thorpej {
    376        1.1   thorpej 	int npkts_per_sec;
    377       1.11     perry 
    378        1.1   thorpej 	rp->blue_idle = 1;
    379        1.1   thorpej 	rp->blue_flags = flags;
    380        1.1   thorpej 	rp->blue_pkttime = pkttime;
    381        1.1   thorpej 	rp->blue_max_pmark = blue_max_pmark;
    382        1.1   thorpej 	rp->blue_hold_time = blue_hold_time;
    383        1.1   thorpej 	if (pkttime == 0)
    384        1.1   thorpej 		rp->blue_pkttime = 1;
    385        1.1   thorpej 
    386        1.1   thorpej 	/* when the link is very slow, adjust blue parameters */
    387        1.1   thorpej 	npkts_per_sec = 1000000 / rp->blue_pkttime;
    388        1.1   thorpej 	if (npkts_per_sec < 50) {
    389        1.1   thorpej 	}
    390        1.1   thorpej 	else if (npkts_per_sec < 300) {
    391        1.1   thorpej 	}
    392        1.1   thorpej 
    393        1.1   thorpej 	microtime(&rp->blue_last);
    394        1.1   thorpej 	return (0);
    395        1.1   thorpej }
    396        1.1   thorpej 
    397        1.1   thorpej /*
    398        1.1   thorpej  * enqueue routine:
    399        1.1   thorpej  *
    400        1.1   thorpej  *	returns: 0 when successfully queued.
    401        1.1   thorpej  *		 ENOBUFS when drop occurs.
    402        1.1   thorpej  */
    403        1.1   thorpej static int
    404        1.1   thorpej blue_enqueue(ifq, m, pktattr)
    405        1.1   thorpej 	struct ifaltq *ifq;
    406        1.1   thorpej 	struct mbuf *m;
    407        1.1   thorpej 	struct altq_pktattr *pktattr;
    408        1.1   thorpej {
    409        1.1   thorpej 	blue_queue_t *rqp = (blue_queue_t *)ifq->altq_disc;
    410        1.1   thorpej 	int error = 0;
    411        1.1   thorpej 
    412        1.1   thorpej 	if (blue_addq(rqp->rq_blue, rqp->rq_q, m, pktattr) == 0)
    413        1.1   thorpej 		ifq->ifq_len++;
    414        1.1   thorpej 	else
    415        1.1   thorpej 		error = ENOBUFS;
    416        1.1   thorpej 	return error;
    417        1.1   thorpej }
    418        1.1   thorpej 
    419        1.1   thorpej #define	DTYPE_NODROP	0	/* no drop */
    420        1.1   thorpej #define	DTYPE_FORCED	1	/* a "forced" drop */
    421        1.1   thorpej #define	DTYPE_EARLY	2	/* an "unforced" (early) drop */
    422        1.1   thorpej 
    423        1.1   thorpej int
    424        1.1   thorpej blue_addq(rp, q, m, pktattr)
    425        1.1   thorpej 	blue_t *rp;
    426        1.1   thorpej 	class_queue_t *q;
    427        1.1   thorpej 	struct mbuf *m;
    428        1.1   thorpej 	struct altq_pktattr *pktattr;
    429        1.1   thorpej {
    430        1.1   thorpej 	int droptype;
    431       1.11     perry 
    432        1.1   thorpej 	/*
    433        1.1   thorpej 	 * if we were idle, this is an enqueue onto an empty queue
    434        1.1   thorpej 	 * and we should decrement marking probability
    435       1.11     perry 	 *
    436        1.1   thorpej 	 */
    437        1.1   thorpej 	if (rp->blue_idle) {
    438        1.1   thorpej 		struct timeval now;
    439        1.1   thorpej 		int t;
    440        1.1   thorpej 		rp->blue_idle = 0;
    441        1.1   thorpej 		microtime(&now);
    442        1.1   thorpej 		t = (now.tv_sec - rp->blue_last.tv_sec);
    443        1.1   thorpej 		if ( t > 1) {
    444        1.1   thorpej 			rp->blue_pmark = 1;
    445        1.1   thorpej 			microtime(&rp->blue_last);
    446        1.1   thorpej 		} else {
    447        1.1   thorpej 			t = t * 1000000 + (now.tv_usec - rp->blue_last.tv_usec);
    448        1.1   thorpej 			if (t > rp->blue_hold_time) {
    449        1.1   thorpej 				rp->blue_pmark--;
    450        1.1   thorpej 				if (rp->blue_pmark < 0) rp->blue_pmark = 0;
    451        1.1   thorpej 				microtime(&rp->blue_last);
    452        1.1   thorpej 			}
    453        1.1   thorpej 		}
    454        1.1   thorpej 	}
    455        1.1   thorpej 
    456        1.1   thorpej 	/* see if we drop early */
    457        1.1   thorpej 	droptype = DTYPE_NODROP;
    458        1.1   thorpej 	if (drop_early(rp) && qlen(q) > 1) {
    459        1.1   thorpej 		/* mark or drop by blue */
    460        1.1   thorpej 		if ((rp->blue_flags & BLUEF_ECN) &&
    461        1.1   thorpej 		    mark_ecn(m, pktattr, rp->blue_flags)) {
    462        1.1   thorpej 			/* successfully marked.  do not drop. */
    463        1.1   thorpej #ifdef BLUE_STATS
    464        1.1   thorpej 			rp->blue_stats.marked_packets++;
    465        1.1   thorpej #endif
    466       1.11     perry 		} else {
    467        1.1   thorpej 			/* unforced drop by blue */
    468        1.1   thorpej 			droptype = DTYPE_EARLY;
    469        1.1   thorpej 		}
    470        1.1   thorpej 	}
    471        1.1   thorpej 
    472        1.1   thorpej 	/*
    473        1.1   thorpej 	 * if the queue length hits the hard limit, it's a forced drop.
    474        1.1   thorpej 	 */
    475        1.1   thorpej 	if (droptype == DTYPE_NODROP && qlen(q) >= qlimit(q))
    476        1.1   thorpej 		droptype = DTYPE_FORCED;
    477        1.1   thorpej 
    478        1.1   thorpej 	/* if successful or forced drop, enqueue this packet. */
    479        1.1   thorpej 	if (droptype != DTYPE_EARLY)
    480        1.1   thorpej 		_addq(q, m);
    481        1.1   thorpej 
    482        1.1   thorpej 	if (droptype != DTYPE_NODROP) {
    483        1.1   thorpej 		if (droptype == DTYPE_EARLY) {
    484        1.1   thorpej 			/* drop the incoming packet */
    485        1.1   thorpej #ifdef BLUE_STATS
    486        1.1   thorpej 			rp->blue_stats.drop_unforced++;
    487        1.1   thorpej #endif
    488        1.1   thorpej 		} else {
    489        1.1   thorpej 			struct timeval now;
    490        1.1   thorpej 			int t;
    491        1.1   thorpej 			/* forced drop, select a victim packet in the queue. */
    492        1.1   thorpej 			m = _getq_random(q);
    493        1.1   thorpej 			microtime(&now);
    494        1.1   thorpej 			t = (now.tv_sec - rp->blue_last.tv_sec);
    495        1.1   thorpej 			t = t * 1000000 + (now.tv_usec - rp->blue_last.tv_usec);
    496        1.1   thorpej 			if (t > rp->blue_hold_time) {
    497        1.1   thorpej 				rp->blue_pmark += rp->blue_max_pmark >> 3;
    498        1.1   thorpej 				if (rp->blue_pmark > rp->blue_max_pmark)
    499        1.1   thorpej 					rp->blue_pmark = rp->blue_max_pmark;
    500        1.1   thorpej 				microtime(&rp->blue_last);
    501        1.1   thorpej 			}
    502        1.1   thorpej #ifdef BLUE_STATS
    503        1.1   thorpej 			rp->blue_stats.drop_forced++;
    504        1.1   thorpej #endif
    505        1.1   thorpej 		}
    506        1.1   thorpej #ifdef BLUE_STATS
    507        1.1   thorpej 		rp->blue_stats.drop_packets++;
    508        1.1   thorpej 		rp->blue_stats.drop_bytes += m->m_pkthdr.len;
    509        1.1   thorpej #endif
    510        1.1   thorpej 		m_freem(m);
    511        1.1   thorpej 		return (-1);
    512        1.1   thorpej 	}
    513        1.1   thorpej 	/* successfully queued */
    514        1.1   thorpej 	return (0);
    515        1.1   thorpej }
    516        1.1   thorpej 
    517        1.1   thorpej /*
    518        1.1   thorpej  * early-drop probability is kept in blue_pmark
    519        1.1   thorpej  *
    520        1.1   thorpej  */
    521        1.1   thorpej static int
    522        1.1   thorpej drop_early(rp)
    523        1.1   thorpej 	blue_t *rp;
    524        1.1   thorpej {
    525  1.12.12.1     peter 	if ((arc4random() % rp->blue_max_pmark) < rp->blue_pmark) {
    526        1.1   thorpej 		/* drop or mark */
    527        1.1   thorpej 		return (1);
    528        1.1   thorpej 	}
    529        1.1   thorpej 	/* no drop/mark */
    530        1.1   thorpej 	return (0);
    531        1.1   thorpej }
    532        1.1   thorpej 
    533        1.1   thorpej /*
    534        1.1   thorpej  * try to mark CE bit to the packet.
    535        1.1   thorpej  *    returns 1 if successfully marked, 0 otherwise.
    536        1.1   thorpej  */
    537        1.1   thorpej static int
    538        1.1   thorpej mark_ecn(m, pktattr, flags)
    539        1.1   thorpej 	struct mbuf *m;
    540        1.1   thorpej 	struct altq_pktattr *pktattr;
    541        1.1   thorpej 	int flags;
    542        1.1   thorpej {
    543        1.1   thorpej 	struct mbuf *m0;
    544        1.1   thorpej 
    545        1.1   thorpej 	if (pktattr == NULL ||
    546        1.1   thorpej 	    (pktattr->pattr_af != AF_INET && pktattr->pattr_af != AF_INET6))
    547        1.1   thorpej 		return (0);
    548        1.1   thorpej 
    549        1.1   thorpej 	/* verify that pattr_hdr is within the mbuf data */
    550        1.1   thorpej 	for (m0 = m; m0 != NULL; m0 = m0->m_next)
    551        1.1   thorpej 		if ((pktattr->pattr_hdr >= m0->m_data) &&
    552        1.1   thorpej 		    (pktattr->pattr_hdr < m0->m_data + m0->m_len))
    553        1.1   thorpej 			break;
    554        1.1   thorpej 	if (m0 == NULL) {
    555        1.1   thorpej 		/* ick, pattr_hdr is stale */
    556        1.1   thorpej 		pktattr->pattr_af = AF_UNSPEC;
    557        1.1   thorpej 		return (0);
    558        1.1   thorpej 	}
    559        1.1   thorpej 
    560        1.1   thorpej 	switch (pktattr->pattr_af) {
    561        1.1   thorpej 	case AF_INET:
    562        1.1   thorpej 		if (flags & BLUEF_ECN4) {
    563        1.1   thorpej 			struct ip *ip = (struct ip *)pktattr->pattr_hdr;
    564        1.5    itojun 			u_int8_t otos;
    565        1.5    itojun 			int sum;
    566       1.11     perry 
    567        1.1   thorpej 			if (ip->ip_v != 4)
    568        1.1   thorpej 				return (0);	/* version mismatch! */
    569        1.5    itojun 			if ((ip->ip_tos & IPTOS_ECN_MASK) == IPTOS_ECN_NOTECT)
    570        1.5    itojun 				return (0);	/* not-ECT */
    571        1.5    itojun 			if ((ip->ip_tos & IPTOS_ECN_MASK) == IPTOS_ECN_CE)
    572        1.5    itojun 				return (1);	/* already marked */
    573        1.5    itojun 
    574        1.5    itojun 			/*
    575        1.5    itojun 			 * ecn-capable but not marked,
    576        1.5    itojun 			 * mark CE and update checksum
    577        1.5    itojun 			 */
    578        1.5    itojun 			otos = ip->ip_tos;
    579        1.5    itojun 			ip->ip_tos |= IPTOS_ECN_CE;
    580        1.5    itojun 			/*
    581        1.5    itojun 			 * update checksum (from RFC1624)
    582        1.5    itojun 			 *	   HC' = ~(~HC + ~m + m')
    583        1.5    itojun 			 */
    584        1.5    itojun 			sum = ~ntohs(ip->ip_sum) & 0xffff;
    585        1.5    itojun 			sum += (~otos & 0xffff) + ip->ip_tos;
    586        1.5    itojun 			sum = (sum >> 16) + (sum & 0xffff);
    587        1.5    itojun 			sum += (sum >> 16);  /* add carry */
    588        1.5    itojun 			ip->ip_sum = htons(~sum & 0xffff);
    589        1.5    itojun 			return (1);
    590        1.1   thorpej 		}
    591        1.1   thorpej 		break;
    592        1.1   thorpej #ifdef INET6
    593        1.1   thorpej 	case AF_INET6:
    594        1.1   thorpej 		if (flags & BLUEF_ECN6) {
    595        1.1   thorpej 			struct ip6_hdr *ip6 = (struct ip6_hdr *)pktattr->pattr_hdr;
    596        1.1   thorpej 			u_int32_t flowlabel;
    597        1.1   thorpej 
    598        1.1   thorpej 			flowlabel = ntohl(ip6->ip6_flow);
    599        1.1   thorpej 			if ((flowlabel >> 28) != 6)
    600        1.1   thorpej 				return (0);	/* version mismatch! */
    601        1.5    itojun 			if ((flowlabel & (IPTOS_ECN_MASK << 20)) ==
    602        1.5    itojun 			    (IPTOS_ECN_NOTECT << 20))
    603        1.5    itojun 				return (0);	/* not-ECT */
    604        1.5    itojun 			if ((flowlabel & (IPTOS_ECN_MASK << 20)) ==
    605        1.5    itojun 			    (IPTOS_ECN_CE << 20))
    606        1.5    itojun 				return (1);	/* already marked */
    607        1.5    itojun 			/*
    608        1.5    itojun 			 * ecn-capable but not marked,  mark CE
    609        1.5    itojun 			 */
    610        1.5    itojun 			flowlabel |= (IPTOS_ECN_CE << 20);
    611        1.5    itojun 			ip6->ip6_flow = htonl(flowlabel);
    612        1.5    itojun 			return (1);
    613        1.1   thorpej 		}
    614        1.1   thorpej 		break;
    615        1.1   thorpej #endif  /* INET6 */
    616        1.1   thorpej 	}
    617        1.1   thorpej 
    618        1.1   thorpej 	/* not marked */
    619        1.1   thorpej 	return (0);
    620        1.1   thorpej }
    621        1.1   thorpej 
    622        1.1   thorpej /*
    623        1.1   thorpej  * dequeue routine:
    624        1.3   thorpej  *	must be called in splnet.
    625        1.1   thorpej  *
    626        1.1   thorpej  *	returns: mbuf dequeued.
    627        1.1   thorpej  *		 NULL when no packet is available in the queue.
    628        1.1   thorpej  */
    629        1.1   thorpej 
    630        1.1   thorpej static struct mbuf *
    631        1.1   thorpej blue_dequeue(ifq, op)
    632        1.1   thorpej 	struct ifaltq *ifq;
    633        1.1   thorpej 	int op;
    634        1.1   thorpej {
    635        1.1   thorpej 	blue_queue_t *rqp = (blue_queue_t *)ifq->altq_disc;
    636        1.1   thorpej 	struct mbuf *m = NULL;
    637        1.1   thorpej 
    638        1.1   thorpej 	if (op == ALTDQ_POLL)
    639        1.1   thorpej 		return (qhead(rqp->rq_q));
    640       1.11     perry 
    641        1.1   thorpej 	m = blue_getq(rqp->rq_blue, rqp->rq_q);
    642        1.1   thorpej 	if (m != NULL)
    643        1.1   thorpej 		ifq->ifq_len--;
    644        1.1   thorpej 	return m;
    645        1.1   thorpej }
    646        1.1   thorpej 
    647        1.1   thorpej struct mbuf *blue_getq(rp, q)
    648        1.1   thorpej 	blue_t *rp;
    649        1.1   thorpej 	class_queue_t *q;
    650        1.1   thorpej {
    651        1.1   thorpej 	struct mbuf *m;
    652       1.11     perry 
    653        1.1   thorpej 	if ((m = _getq(q)) == NULL) {
    654        1.1   thorpej 		if (rp->blue_idle == 0) {
    655        1.1   thorpej 			rp->blue_idle = 1;
    656        1.1   thorpej 			microtime(&rp->blue_last);
    657        1.1   thorpej 		}
    658        1.1   thorpej 		return NULL;
    659        1.1   thorpej 	}
    660        1.1   thorpej 
    661        1.1   thorpej 	rp->blue_idle = 0;
    662        1.1   thorpej #ifdef BLUE_STATS
    663        1.1   thorpej 	rp->blue_stats.xmit_packets++;
    664        1.1   thorpej 	rp->blue_stats.xmit_bytes += m->m_pkthdr.len;
    665        1.1   thorpej #endif
    666        1.1   thorpej 	return (m);
    667        1.1   thorpej }
    668        1.1   thorpej 
    669        1.1   thorpej static int
    670        1.1   thorpej blue_request(ifq, req, arg)
    671        1.1   thorpej 	struct ifaltq *ifq;
    672        1.1   thorpej 	int req;
    673        1.1   thorpej 	void *arg;
    674        1.1   thorpej {
    675        1.1   thorpej 	blue_queue_t *rqp = (blue_queue_t *)ifq->altq_disc;
    676        1.1   thorpej 
    677        1.1   thorpej 	switch (req) {
    678        1.1   thorpej 	case ALTRQ_PURGE:
    679        1.1   thorpej 		_flushq(rqp->rq_q);
    680        1.1   thorpej 		if (ALTQ_IS_ENABLED(ifq))
    681        1.1   thorpej 			ifq->ifq_len = 0;
    682        1.1   thorpej 		break;
    683        1.1   thorpej 	}
    684        1.1   thorpej 	return (0);
    685        1.1   thorpej }
    686        1.1   thorpej 
    687        1.1   thorpej 
    688        1.1   thorpej #ifdef KLD_MODULE
    689        1.1   thorpej 
    690        1.1   thorpej static struct altqsw blue_sw =
    691        1.1   thorpej 	{"blue", blueopen, blueclose, blueioctl};
    692        1.1   thorpej 
    693        1.1   thorpej ALTQ_MODULE(altq_blue, ALTQT_BLUE, &blue_sw);
    694        1.1   thorpej 
    695        1.1   thorpej #endif /* KLD_MODULE */
    696        1.1   thorpej 
    697  1.12.12.1     peter #endif /* ALTQ3_COMPAT */
    698        1.1   thorpej #endif /* ALTQ_BLUE */
    699