Home | History | Annotate | Line # | Download | only in altq
altq_rio.h revision 1.2.36.1
      1  1.2.36.1     yamt /*	$NetBSD: altq_rio.h,v 1.2.36.1 2005/03/19 08:32:44 yamt Exp $	*/
      2       1.1  thorpej /*	$KAME: altq_rio.h,v 1.5 2000/12/14 08:12:46 thorpej Exp $	*/
      3       1.1  thorpej 
      4       1.1  thorpej /*
      5       1.1  thorpej  * Copyright (C) 1998-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 #ifndef _ALTQ_ALTQ_RIO_H_
     31       1.1  thorpej #define	_ALTQ_ALTQ_RIO_H_
     32       1.1  thorpej 
     33       1.1  thorpej #include <altq/altq_classq.h>
     34       1.1  thorpej 
     35       1.1  thorpej /*
     36       1.1  thorpej  * RIO: RED with IN/OUT bit
     37       1.1  thorpej  * (extended to support more than 2 drop precedence values)
     38       1.1  thorpej  */
     39       1.1  thorpej #define	RIO_NDROPPREC	3	/* number of drop precedence values */
     40       1.1  thorpej 
     41       1.1  thorpej struct rio_interface {
     42       1.1  thorpej 	char	rio_ifname[IFNAMSIZ];
     43       1.1  thorpej };
     44       1.1  thorpej 
     45       1.1  thorpej struct rio_stats {
     46       1.1  thorpej 	struct rio_interface iface;
     47       1.1  thorpej 	int q_len[RIO_NDROPPREC];
     48       1.1  thorpej 	struct redstats q_stats[RIO_NDROPPREC];
     49       1.1  thorpej 
     50       1.1  thorpej 	/* static red parameters */
     51       1.1  thorpej 	int q_limit;
     52       1.1  thorpej 	int weight;
     53       1.1  thorpej 	int flags;
     54       1.1  thorpej 	struct redparams q_params[RIO_NDROPPREC];
     55       1.1  thorpej };
     56       1.1  thorpej 
     57       1.1  thorpej struct rio_conf {
     58       1.1  thorpej 	struct rio_interface iface;
     59       1.1  thorpej 	struct redparams q_params[RIO_NDROPPREC];
     60       1.1  thorpej 	int rio_weight;		/* weight for EWMA */
     61       1.1  thorpej 	int rio_limit;		/* max queue length */
     62       1.1  thorpej 	int rio_pkttime;	/* average packet time in usec */
     63       1.1  thorpej 	int rio_flags;		/* see below */
     64       1.1  thorpej };
     65       1.1  thorpej 
     66       1.1  thorpej /* rio flags */
     67       1.1  thorpej #define	RIOF_ECN4	0x01	/* use packet marking for IPv4 packets */
     68       1.1  thorpej #define	RIOF_ECN6	0x02	/* use packet marking for IPv6 packets */
     69       1.1  thorpej #define	RIOF_ECN	(RIOF_ECN4 | RIOF_ECN6)
     70       1.1  thorpej #define	RIOF_CLEARDSCP	0x200	/* clear diffserv codepoint */
     71       1.1  thorpej 
     72  1.2.36.1     yamt /*
     73       1.1  thorpej  * IOCTLs for RIO
     74       1.1  thorpej  */
     75       1.1  thorpej #define	RIO_IF_ATTACH		_IOW('Q', 1, struct rio_interface)
     76       1.1  thorpej #define	RIO_IF_DETACH		_IOW('Q', 2, struct rio_interface)
     77       1.1  thorpej #define	RIO_ENABLE		_IOW('Q', 3, struct rio_interface)
     78       1.1  thorpej #define	RIO_DISABLE		_IOW('Q', 4, struct rio_interface)
     79       1.1  thorpej #define	RIO_CONFIG		_IOWR('Q', 6, struct rio_conf)
     80       1.1  thorpej #define	RIO_GETSTATS		_IOWR('Q', 12, struct rio_stats)
     81       1.1  thorpej #define	RIO_SETDEFAULTS		_IOW('Q', 30, struct redparams[RIO_NDROPPREC])
     82       1.1  thorpej 
     83       1.1  thorpej #ifdef _KERNEL
     84       1.1  thorpej 
     85       1.1  thorpej typedef struct rio {
     86       1.1  thorpej 	/* per drop precedence structure */
     87       1.1  thorpej 	struct dropprec_state {
     88       1.1  thorpej 		/* red parameters */
     89       1.1  thorpej 		int inv_pmax;	/* inverse of max drop probability */
     90       1.1  thorpej 		int th_min;	/* red min threshold */
     91       1.1  thorpej 		int th_max;	/* red max threshold */
     92       1.1  thorpej 
     93       1.1  thorpej 		/* variables for internal use */
     94       1.1  thorpej 		int th_min_s;	/* th_min scaled by avgshift */
     95       1.1  thorpej 		int th_max_s;	/* th_max scaled by avgshift */
     96       1.1  thorpej 		int probd;	/* drop probability denominator */
     97       1.1  thorpej 
     98       1.1  thorpej 		int qlen;	/* queue length */
     99       1.1  thorpej 		int avg;	/* (scaled) queue length average */
    100       1.1  thorpej 		int count; 	/* packet count since the last dropped/marked
    101       1.1  thorpej 				   packet */
    102       1.1  thorpej 		int idle;	/* queue was empty */
    103       1.1  thorpej 		int old;	/* avg is above th_min */
    104       1.1  thorpej 		struct timeval last;  /* timestamp when queue becomes idle */
    105       1.1  thorpej 	} rio_precstate[RIO_NDROPPREC];
    106  1.2.36.1     yamt 
    107       1.1  thorpej 	int rio_wshift;		/* log(red_weight) */
    108       1.1  thorpej 	int rio_weight;		/* weight for EWMA */
    109       1.1  thorpej 	struct wtab *rio_wtab;	/* weight table */
    110       1.1  thorpej 
    111       1.1  thorpej 	int rio_pkttime; 	/* average packet time in micro sec
    112       1.1  thorpej 				   used for idle calibration */
    113       1.1  thorpej 	int rio_flags;		/* rio flags */
    114       1.1  thorpej 
    115       1.1  thorpej 	u_int8_t rio_codepoint;		/* codepoint value to tag packets */
    116       1.1  thorpej 	u_int8_t rio_codepointmask;	/* codepoint mask bits */
    117  1.2.36.1     yamt 
    118       1.1  thorpej 	struct redstats q_stats[RIO_NDROPPREC];	/* statistics */
    119       1.1  thorpej } rio_t;
    120       1.1  thorpej 
    121       1.1  thorpej typedef struct rio_queue {
    122       1.1  thorpej 	struct rio_queue *rq_next;	/* next red_state in the list */
    123       1.1  thorpej 	struct ifaltq *rq_ifq;		/* backpointer to ifaltq */
    124       1.1  thorpej 
    125       1.1  thorpej 	class_queue_t *rq_q;
    126       1.1  thorpej 
    127       1.1  thorpej 	rio_t *rq_rio;
    128       1.1  thorpej } rio_queue_t;
    129       1.1  thorpej 
    130       1.1  thorpej extern rio_t *rio_alloc __P((int, struct redparams *, int, int));
    131       1.1  thorpej extern void rio_destroy __P((rio_t *));
    132       1.1  thorpej extern void rio_getstats __P((rio_t *, struct redstats *));
    133       1.1  thorpej extern int rio_addq __P((rio_t *, class_queue_t *, struct mbuf *,
    134       1.1  thorpej 			 struct altq_pktattr *));
    135       1.1  thorpej extern struct mbuf *rio_getq __P((rio_t *, class_queue_t *));
    136       1.1  thorpej extern int rio_set_meter __P((rio_t *, int, int, int));
    137       1.1  thorpej 
    138       1.1  thorpej #endif /* _KERNEL */
    139       1.1  thorpej 
    140       1.1  thorpej #endif /* _ALTQ_ALTQ_RIO_H_ */
    141