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