Home | History | Annotate | Line # | Download | only in altq
altq_hfsc.h revision 1.5.2.1
      1  1.5.2.1     skrll /*	$NetBSD: altq_hfsc.h,v 1.5.2.1 2005/03/04 16:38:00 skrll Exp $	*/
      2      1.1   thorpej /*	$KAME: altq_hfsc.h,v 1.6 2000/12/14 08:12:46 thorpej Exp $	*/
      3      1.1   thorpej 
      4      1.1   thorpej /*
      5      1.1   thorpej  * Copyright (c) 1997-1999 Carnegie Mellon University. All Rights Reserved.
      6      1.1   thorpej  *
      7      1.1   thorpej  * Permission to use, copy, modify, and distribute this software and
      8      1.1   thorpej  * its documentation is hereby granted (including for commercial or
      9      1.1   thorpej  * for-profit use), provided that both the copyright notice and this
     10      1.1   thorpej  * permission notice appear in all copies of the software, derivative
     11      1.1   thorpej  * works, or modified versions, and any portions thereof, and that
     12      1.1   thorpej  * both notices appear in supporting documentation, and that credit
     13      1.1   thorpej  * is given to Carnegie Mellon University in all publications reporting
     14      1.1   thorpej  * on direct or indirect use of this code or its derivatives.
     15      1.1   thorpej  *
     16      1.1   thorpej  * THIS SOFTWARE IS EXPERIMENTAL AND IS KNOWN TO HAVE BUGS, SOME OF
     17      1.1   thorpej  * WHICH MAY HAVE SERIOUS CONSEQUENCES.  CARNEGIE MELLON PROVIDES THIS
     18      1.1   thorpej  * SOFTWARE IN ITS ``AS IS'' CONDITION, AND ANY EXPRESS OR IMPLIED
     19      1.1   thorpej  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     20      1.1   thorpej  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
     21      1.1   thorpej  * DISCLAIMED.  IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE
     22      1.1   thorpej  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     23      1.1   thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
     24      1.1   thorpej  * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
     25      1.1   thorpej  * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
     26      1.1   thorpej  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     27      1.1   thorpej  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
     28      1.1   thorpej  * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
     29      1.1   thorpej  * DAMAGE.
     30      1.1   thorpej  *
     31      1.1   thorpej  * Carnegie Mellon encourages (but does not require) users of this
     32      1.1   thorpej  * software to return any improvements or extensions that they make,
     33      1.1   thorpej  * and to grant Carnegie Mellon the rights to redistribute these
     34      1.1   thorpej  * changes without encumbrance.
     35      1.1   thorpej  */
     36      1.1   thorpej #ifndef _ALTQ_ALTQ_HFSC_H_
     37      1.1   thorpej #define	_ALTQ_ALTQ_HFSC_H_
     38      1.1   thorpej 
     39      1.1   thorpej #include <altq/altq.h>
     40      1.1   thorpej #include <altq/altq_classq.h>
     41      1.1   thorpej #include <altq/altq_red.h>
     42      1.1   thorpej #include <altq/altq_rio.h>
     43      1.1   thorpej 
     44      1.1   thorpej #ifdef __cplusplus
     45      1.1   thorpej extern "C" {
     46  1.5.2.1     skrll #endif
     47      1.1   thorpej 
     48      1.1   thorpej struct hfsc_interface {
     49      1.1   thorpej 	char	hfsc_ifname[IFNAMSIZ];  /* interface name (e.g., fxp0) */
     50      1.1   thorpej };
     51      1.1   thorpej 
     52      1.1   thorpej struct hfsc_attach {
     53      1.1   thorpej 	struct hfsc_interface	iface;
     54      1.1   thorpej 	u_int			bandwidth;  /* link bandwidth in bits/sec */
     55      1.1   thorpej };
     56      1.1   thorpej 
     57      1.1   thorpej struct service_curve {
     58      1.1   thorpej 	u_int	m1;	/* slope of the first segment in bits/sec */
     59      1.1   thorpej 	u_int	d;	/* the x-projection of the first segment in msec */
     60      1.1   thorpej 	u_int	m2;	/* slope of the second segment in bits/sec */
     61      1.1   thorpej };
     62      1.1   thorpej 
     63      1.1   thorpej struct hfsc_add_class {
     64      1.1   thorpej 	struct hfsc_interface	iface;
     65      1.1   thorpej 	u_long			parent_handle;
     66      1.1   thorpej 	struct service_curve	service_curve;
     67      1.1   thorpej 	int			qlimit;
     68      1.1   thorpej 	int			flags;
     69      1.1   thorpej 
     70      1.1   thorpej 	u_long			class_handle;  /* return value */
     71      1.1   thorpej };
     72      1.1   thorpej 
     73      1.1   thorpej /* special class handles */
     74      1.1   thorpej #define	HFSC_ROOTCLASS_HANDLE	0
     75      1.1   thorpej #define	HFSC_NULLCLASS_HANDLE	0
     76      1.1   thorpej 
     77      1.1   thorpej /* hfsc class flags */
     78      1.1   thorpej #define	HFCF_RED		0x0001	/* use RED */
     79      1.1   thorpej #define	HFCF_ECN		0x0002  /* use RED/ECN */
     80      1.1   thorpej #define	HFCF_RIO		0x0004  /* use RIO */
     81      1.1   thorpej #define	HFCF_CLEARDSCP		0x0010  /* clear diffserv codepoint */
     82      1.1   thorpej #define	HFCF_DEFAULTCLASS	0x1000	/* default class */
     83      1.1   thorpej 
     84      1.1   thorpej struct hfsc_delete_class {
     85      1.1   thorpej 	struct hfsc_interface	iface;
     86      1.1   thorpej 	u_long			class_handle;
     87      1.1   thorpej };
     88      1.1   thorpej 
     89      1.1   thorpej /* service curve types */
     90      1.1   thorpej #define	HFSC_REALTIMESC		1
     91      1.1   thorpej #define	HFSC_LINKSHARINGSC	2
     92      1.1   thorpej #define	HFSC_DEFAULTSC		(HFSC_REALTIMESC|HFSC_LINKSHARINGSC)
     93      1.1   thorpej 
     94      1.1   thorpej struct hfsc_modify_class {
     95      1.1   thorpej 	struct hfsc_interface	iface;
     96      1.1   thorpej 	u_long			class_handle;
     97      1.1   thorpej 	struct service_curve	service_curve;
     98      1.1   thorpej 	int			sctype;
     99      1.1   thorpej };
    100      1.1   thorpej 
    101      1.1   thorpej struct hfsc_add_filter {
    102      1.1   thorpej 	struct hfsc_interface	iface;
    103      1.1   thorpej 	u_long			class_handle;
    104      1.1   thorpej 	struct flow_filter	filter;
    105      1.1   thorpej 
    106      1.1   thorpej 	u_long			filter_handle;  /* return value */
    107      1.1   thorpej };
    108      1.1   thorpej 
    109      1.1   thorpej struct hfsc_delete_filter {
    110      1.1   thorpej 	struct hfsc_interface	iface;
    111      1.1   thorpej 	u_long			filter_handle;
    112      1.1   thorpej };
    113      1.1   thorpej 
    114      1.3  christos struct hfsc_basic_class_stats {
    115      1.1   thorpej 	u_int			class_id;
    116      1.1   thorpej 	u_long			class_handle;
    117      1.1   thorpej 	struct service_curve	rsc;
    118      1.1   thorpej 	struct service_curve	fsc;
    119      1.1   thorpej 
    120      1.1   thorpej 	u_int64_t		total;	/* total work in bytes */
    121      1.1   thorpej 	u_int64_t		cumul;	/* cumulative work in bytes
    122      1.1   thorpej 					   done by real-time criteria */
    123      1.1   thorpej 	u_int64_t		d;		/* deadline */
    124      1.1   thorpej 	u_int64_t		e;		/* eligible time */
    125      1.1   thorpej 	u_int64_t		vt;		/* virtual time */
    126      1.1   thorpej 
    127      1.1   thorpej 	u_int			qlength;
    128      1.1   thorpej 	struct pktcntr		xmit_cnt;
    129      1.1   thorpej 	struct pktcntr		drop_cnt;
    130      1.1   thorpej 	u_int 			period;
    131      1.1   thorpej 
    132      1.1   thorpej 	/* red and rio related info */
    133      1.1   thorpej 	int		qtype;
    134      1.1   thorpej 	struct redstats	red[3];
    135      1.1   thorpej };
    136      1.1   thorpej 
    137      1.1   thorpej struct hfsc_class_stats {
    138      1.1   thorpej 	struct hfsc_interface	iface;
    139      1.1   thorpej 	int			nskip;		/* skip # of classes */
    140      1.1   thorpej 	int			nclasses;	/* # of class stats (WR) */
    141      1.1   thorpej 	u_int64_t		cur_time;	/* current time */
    142      1.1   thorpej 	u_int			hif_classes;	/* # of classes in the tree */
    143      1.1   thorpej 	u_int			hif_packets;	/* # of packets in the tree */
    144      1.5  christos 	struct hfsc_basic_class_stats	*stats;	/* pointer to stats array */
    145      1.1   thorpej };
    146      1.1   thorpej 
    147      1.1   thorpej #define	HFSC_IF_ATTACH		_IOW('Q', 1, struct hfsc_attach)
    148      1.1   thorpej #define	HFSC_IF_DETACH		_IOW('Q', 2, struct hfsc_interface)
    149      1.1   thorpej #define	HFSC_ENABLE		_IOW('Q', 3, struct hfsc_interface)
    150      1.1   thorpej #define	HFSC_DISABLE		_IOW('Q', 4, struct hfsc_interface)
    151      1.1   thorpej #define	HFSC_CLEAR_HIERARCHY	_IOW('Q', 5, struct hfsc_interface)
    152      1.1   thorpej #define	HFSC_ADD_CLASS		_IOWR('Q', 7, struct hfsc_add_class)
    153      1.1   thorpej #define	HFSC_DEL_CLASS		_IOW('Q', 8, struct hfsc_delete_class)
    154      1.1   thorpej #define	HFSC_MOD_CLASS		_IOW('Q', 9, struct hfsc_modify_class)
    155      1.1   thorpej #define	HFSC_ADD_FILTER		_IOWR('Q', 10, struct hfsc_add_filter)
    156      1.1   thorpej #define	HFSC_DEL_FILTER		_IOW('Q', 11, struct hfsc_delete_filter)
    157      1.1   thorpej #define	HFSC_GETSTATS		_IOWR('Q', 12, struct hfsc_class_stats)
    158      1.1   thorpej 
    159      1.1   thorpej #ifdef _KERNEL
    160      1.1   thorpej /*
    161      1.1   thorpej  * kernel internal service curve representation
    162      1.1   thorpej  *	coordinates are given by 64 bit unsigned integers.
    163      1.1   thorpej  *	x-axis: unit is clock count.  for the intel x86 architecture,
    164      1.1   thorpej  *		the raw Pentium TSC (Timestamp Counter) value is used.
    165      1.1   thorpej  *		virtual time is also calculated in this time scale.
    166      1.1   thorpej  *	y-axis: unit is byte.
    167      1.1   thorpej  *
    168      1.1   thorpej  *	the service curve parameters are converted to the internal
    169      1.1   thorpej  *	representation.
    170      1.1   thorpej  *	the slope values are scaled to avoid overflow.
    171      1.1   thorpej  *	the inverse slope values as well as the y-projection of the 1st
    172      1.1   thorpej  *	segment are kept in order to to avoid 64-bit divide operations
    173      1.1   thorpej  *	that are expensive on 32-bit architectures.
    174      1.1   thorpej  *
    175      1.1   thorpej  *  note: Intel Pentium TSC never wraps around in several thousands of years.
    176      1.1   thorpej  *	x-axis doesn't wrap around for 1089 years with 1GHz clock.
    177      1.1   thorpej  *      y-axis doesn't wrap around for 4358 years with 1Gbps bandwidth.
    178      1.1   thorpej  */
    179      1.1   thorpej 
    180      1.1   thorpej /* kernel internal representation of a service curve */
    181      1.1   thorpej struct internal_sc {
    182      1.1   thorpej 	u_int64_t	sm1;	/* scaled slope of the 1st segment */
    183      1.1   thorpej 	u_int64_t	ism1;	/* scaled inverse-slope of the 1st segment */
    184      1.1   thorpej 	u_int64_t	dx;	/* the x-projection of the 1st segment */
    185      1.1   thorpej 	u_int64_t	dy;	/* the y-projection of the 1st segment */
    186      1.1   thorpej 	u_int64_t	sm2;	/* scaled slope of the 2nd segment */
    187      1.1   thorpej 	u_int64_t	ism2;	/* scaled inverse-slope of the 2nd segment */
    188      1.1   thorpej };
    189      1.1   thorpej 
    190      1.1   thorpej /* runtime service curve */
    191      1.1   thorpej struct runtime_sc {
    192      1.1   thorpej 	u_int64_t	x;	/* current starting position on x-axis */
    193      1.1   thorpej 	u_int64_t	y;	/* current starting position on x-axis */
    194      1.1   thorpej 	u_int64_t	sm1;	/* scaled slope of the 1st segment */
    195      1.1   thorpej 	u_int64_t	ism1;	/* scaled inverse-slope of the 1st segment */
    196      1.1   thorpej 	u_int64_t	dx;	/* the x-projection of the 1st segment */
    197      1.1   thorpej 	u_int64_t	dy;	/* the y-projection of the 1st segment */
    198      1.1   thorpej 	u_int64_t	sm2;	/* scaled slope of the 2nd segment */
    199      1.1   thorpej 	u_int64_t	ism2;	/* scaled inverse-slope of the 2nd segment */
    200      1.1   thorpej };
    201      1.1   thorpej 
    202      1.1   thorpej /* for TAILQ based ellist and actlist implementation */
    203      1.1   thorpej struct hfsc_class;
    204      1.1   thorpej typedef TAILQ_HEAD(_eligible, hfsc_class) ellist_t;
    205      1.1   thorpej typedef TAILQ_ENTRY(hfsc_class) elentry_t;
    206      1.1   thorpej typedef TAILQ_HEAD(_active, hfsc_class) actlist_t;
    207      1.1   thorpej typedef TAILQ_ENTRY(hfsc_class) actentry_t;
    208      1.1   thorpej #define	ellist_first(s)		TAILQ_FIRST(s)
    209      1.1   thorpej #define	actlist_first(s)	TAILQ_FIRST(s)
    210      1.1   thorpej #define	actlist_last(s)		TAILQ_LAST(s, _active)
    211      1.1   thorpej 
    212      1.1   thorpej struct hfsc_class {
    213      1.1   thorpej 	u_int		cl_id;		/* class id (just for debug) */
    214      1.1   thorpej 	u_long		cl_handle;	/* class handle */
    215      1.1   thorpej 	struct hfsc_if	*cl_hif;	/* back pointer to struct hfsc_if */
    216      1.1   thorpej 	int		cl_flags;	/* misc flags */
    217      1.1   thorpej 
    218      1.1   thorpej 	struct hfsc_class *cl_parent;	/* parent class */
    219      1.1   thorpej 	struct hfsc_class *cl_siblings;	/* sibling classes */
    220      1.1   thorpej 	struct hfsc_class *cl_children;	/* child classes */
    221      1.1   thorpej 
    222      1.1   thorpej 	class_queue_t	*cl_q;		/* class queue structure */
    223      1.1   thorpej 	struct red	*cl_red;	/* RED state */
    224      1.1   thorpej 	struct altq_pktattr *cl_pktattr; /* saved header used by ECN */
    225      1.1   thorpej 
    226      1.1   thorpej 	u_int64_t	cl_total;	/* total work in bytes */
    227      1.1   thorpej 	u_int64_t	cl_cumul;	/* cumulative work in bytes
    228      1.1   thorpej 					   done by real-time criteria */
    229      1.1   thorpej 	u_int64_t	cl_d;		/* deadline */
    230      1.1   thorpej 	u_int64_t	cl_e;		/* eligible time */
    231      1.1   thorpej 	u_int64_t	cl_vt;		/* virtual time */
    232      1.1   thorpej 
    233      1.1   thorpej 	struct internal_sc *cl_rsc;	/* internal real-time service curve */
    234      1.1   thorpej 	struct internal_sc *cl_fsc;	/* internal fair service curve */
    235      1.1   thorpej 	struct runtime_sc  cl_deadline;	/* deadline curve */
    236      1.1   thorpej 	struct runtime_sc  cl_eligible;	/* eligible curve */
    237      1.1   thorpej 	struct runtime_sc  cl_virtual;	/* virtual curve */
    238      1.1   thorpej 
    239      1.1   thorpej 	u_int		cl_vtperiod;	/* vt period sequence no */
    240      1.1   thorpej 	u_int		cl_parentperiod;  /* parent's vt period seqno */
    241      1.1   thorpej 	int		cl_nactive;	/* number of active children */
    242      1.1   thorpej 	actlist_t	*cl_actc;	/* active children list */
    243      1.1   thorpej 
    244      1.1   thorpej 	actentry_t	cl_actlist;	/* active children list entry */
    245      1.1   thorpej 	elentry_t	cl_ellist;	/* eligible list entry */
    246      1.1   thorpej 
    247      1.1   thorpej 	struct {
    248      1.1   thorpej 		struct pktcntr	xmit_cnt;
    249      1.1   thorpej 		struct pktcntr	drop_cnt;
    250      1.1   thorpej 		u_int period;
    251      1.1   thorpej 	} cl_stats;
    252      1.1   thorpej };
    253      1.1   thorpej 
    254      1.1   thorpej /*
    255      1.1   thorpej  * hfsc interface state
    256      1.1   thorpej  */
    257      1.1   thorpej struct hfsc_if {
    258      1.1   thorpej 	struct hfsc_if		*hif_next;	/* interface state list */
    259      1.1   thorpej 	struct ifaltq		*hif_ifq;	/* backpointer to ifaltq */
    260      1.1   thorpej 	struct hfsc_class	*hif_rootclass;		/* root class */
    261      1.1   thorpej 	struct hfsc_class	*hif_defaultclass;	/* default class */
    262      1.1   thorpej 	struct hfsc_class	*hif_pollcache;	/* cache for poll operation */
    263      1.1   thorpej 
    264      1.1   thorpej 	u_int	hif_classes;			/* # of classes in the tree */
    265      1.1   thorpej 	u_int	hif_packets;			/* # of packets in the tree */
    266      1.1   thorpej 	u_int	hif_classid;			/* class id sequence number */
    267  1.5.2.1     skrll 
    268      1.1   thorpej 	ellist_t *hif_eligible;			/* eligible list */
    269      1.1   thorpej 
    270      1.1   thorpej 	struct acc_classifier	hif_classifier;
    271      1.1   thorpej };
    272      1.1   thorpej 
    273      1.1   thorpej #endif /* _KERNEL */
    274      1.1   thorpej 
    275      1.1   thorpej #ifdef __cplusplus
    276      1.1   thorpej }
    277  1.5.2.1     skrll #endif
    278      1.1   thorpej 
    279      1.1   thorpej #endif /* _ALTQ_ALTQ_HFSC_H_ */
    280