xref: /freebsd/sys/net/altq/if_altq.h (revision 2ff63af9b88c7413b7d71715b5532625752a248e)
1da8ae05dSGleb Smirnoff /*-
2772e66a6SGleb Smirnoff  * Copyright (C) 1997-2003
3772e66a6SGleb Smirnoff  *	Sony Computer Science Laboratories Inc.  All rights reserved.
4772e66a6SGleb Smirnoff  *
5772e66a6SGleb Smirnoff  * Redistribution and use in source and binary forms, with or without
6772e66a6SGleb Smirnoff  * modification, are permitted provided that the following conditions
7772e66a6SGleb Smirnoff  * are met:
8772e66a6SGleb Smirnoff  * 1. Redistributions of source code must retain the above copyright
9772e66a6SGleb Smirnoff  *    notice, this list of conditions and the following disclaimer.
10772e66a6SGleb Smirnoff  * 2. Redistributions in binary form must reproduce the above copyright
11772e66a6SGleb Smirnoff  *    notice, this list of conditions and the following disclaimer in the
12772e66a6SGleb Smirnoff  *    documentation and/or other materials provided with the distribution.
13772e66a6SGleb Smirnoff  *
14772e66a6SGleb Smirnoff  * THIS SOFTWARE IS PROVIDED BY SONY CSL AND CONTRIBUTORS ``AS IS'' AND
15772e66a6SGleb Smirnoff  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16772e66a6SGleb Smirnoff  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17772e66a6SGleb Smirnoff  * ARE DISCLAIMED.  IN NO EVENT SHALL SONY CSL OR CONTRIBUTORS BE LIABLE
18772e66a6SGleb Smirnoff  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19772e66a6SGleb Smirnoff  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20772e66a6SGleb Smirnoff  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21772e66a6SGleb Smirnoff  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22772e66a6SGleb Smirnoff  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23772e66a6SGleb Smirnoff  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24772e66a6SGleb Smirnoff  * SUCH DAMAGE.
25da8ae05dSGleb Smirnoff  *
26da8ae05dSGleb Smirnoff  * $KAME: if_altq.h,v 1.12 2005/04/13 03:44:25 suz Exp $
27772e66a6SGleb Smirnoff  */
28772e66a6SGleb Smirnoff #ifndef _ALTQ_IF_ALTQ_H_
29772e66a6SGleb Smirnoff #define	_ALTQ_IF_ALTQ_H_
30772e66a6SGleb Smirnoff 
31772e66a6SGleb Smirnoff #include <sys/lock.h>		/* XXX */
32772e66a6SGleb Smirnoff #include <sys/mutex.h>		/* XXX */
33772e66a6SGleb Smirnoff #include <sys/event.h>		/* XXX */
34772e66a6SGleb Smirnoff 
35772e66a6SGleb Smirnoff struct altq_pktattr; struct tb_regulator; struct top_cdnr;
36772e66a6SGleb Smirnoff 
37772e66a6SGleb Smirnoff /*
38772e66a6SGleb Smirnoff  * Structure defining a queue for a network interface.
39772e66a6SGleb Smirnoff  */
40772e66a6SGleb Smirnoff struct	ifaltq {
41772e66a6SGleb Smirnoff 	/* fields compatible with struct ifqueue */
42772e66a6SGleb Smirnoff 	struct	mbuf *ifq_head;
43772e66a6SGleb Smirnoff 	struct	mbuf *ifq_tail;
44772e66a6SGleb Smirnoff 	int	ifq_len;
45772e66a6SGleb Smirnoff 	int	ifq_maxlen;
46772e66a6SGleb Smirnoff 	struct	mtx ifq_mtx;
47772e66a6SGleb Smirnoff 
48772e66a6SGleb Smirnoff 	/* driver owned queue (used for bulk dequeue and prepend) UNLOCKED */
49772e66a6SGleb Smirnoff 	struct	mbuf *ifq_drv_head;
50772e66a6SGleb Smirnoff 	struct	mbuf *ifq_drv_tail;
51772e66a6SGleb Smirnoff 	int	ifq_drv_len;
52772e66a6SGleb Smirnoff 	int	ifq_drv_maxlen;
53772e66a6SGleb Smirnoff 
54772e66a6SGleb Smirnoff 	/* alternate queueing related fields */
55772e66a6SGleb Smirnoff 	int	altq_type;		/* discipline type */
56772e66a6SGleb Smirnoff 	int	altq_flags;		/* flags (e.g. ready, in-use) */
57772e66a6SGleb Smirnoff 	void	*altq_disc;		/* for discipline-specific use */
58772e66a6SGleb Smirnoff 	struct	ifnet *altq_ifp;	/* back pointer to interface */
59772e66a6SGleb Smirnoff 
60772e66a6SGleb Smirnoff 	int	(*altq_enqueue)(struct ifaltq *, struct mbuf *,
61772e66a6SGleb Smirnoff 				struct altq_pktattr *);
62772e66a6SGleb Smirnoff 	struct	mbuf *(*altq_dequeue)(struct ifaltq *, int);
63772e66a6SGleb Smirnoff 	int	(*altq_request)(struct ifaltq *, int, void *);
64772e66a6SGleb Smirnoff 
65772e66a6SGleb Smirnoff 	/* token bucket regulator */
66772e66a6SGleb Smirnoff 	struct	tb_regulator *altq_tbr;
67772e66a6SGleb Smirnoff 
68772e66a6SGleb Smirnoff 	/* input traffic conditioner (doesn't belong to the output queue...) */
69772e66a6SGleb Smirnoff 	struct top_cdnr *altq_cdnr;
70772e66a6SGleb Smirnoff };
71772e66a6SGleb Smirnoff 
72772e66a6SGleb Smirnoff #ifdef _KERNEL
73772e66a6SGleb Smirnoff 
74772e66a6SGleb Smirnoff /*
75772e66a6SGleb Smirnoff  * packet attributes used by queueing disciplines.
76772e66a6SGleb Smirnoff  * pattr_class is a discipline-dependent scheduling class that is
77772e66a6SGleb Smirnoff  * set by a classifier.
78772e66a6SGleb Smirnoff  * pattr_hdr and pattr_af may be used by a discipline to access
79772e66a6SGleb Smirnoff  * the header within a mbuf.  (e.g. ECN needs to update the CE bit)
80772e66a6SGleb Smirnoff  * note that pattr_hdr could be stale after m_pullup, though link
81772e66a6SGleb Smirnoff  * layer output routines usually don't use m_pullup.  link-level
82772e66a6SGleb Smirnoff  * compression also invalidates these fields.  thus, pattr_hdr needs
83772e66a6SGleb Smirnoff  * to be verified when a discipline touches the header.
84772e66a6SGleb Smirnoff  */
85772e66a6SGleb Smirnoff struct altq_pktattr {
86772e66a6SGleb Smirnoff 	void	*pattr_class;		/* sched class set by classifier */
87772e66a6SGleb Smirnoff 	int	pattr_af;		/* address family */
88772e66a6SGleb Smirnoff 	caddr_t	pattr_hdr;		/* saved header position in mbuf */
89772e66a6SGleb Smirnoff };
90772e66a6SGleb Smirnoff 
91772e66a6SGleb Smirnoff /*
92772e66a6SGleb Smirnoff  * mbuf tag to carry a queue id (and hints for ECN).
93772e66a6SGleb Smirnoff  */
94772e66a6SGleb Smirnoff struct altq_tag {
95772e66a6SGleb Smirnoff 	u_int32_t	qid;		/* queue id */
96772e66a6SGleb Smirnoff 	/* hints for ecn */
97772e66a6SGleb Smirnoff 	int		af;		/* address family */
98772e66a6SGleb Smirnoff 	void		*hdr;		/* saved header position in mbuf */
99772e66a6SGleb Smirnoff };
100772e66a6SGleb Smirnoff 
101772e66a6SGleb Smirnoff /*
102772e66a6SGleb Smirnoff  * a token-bucket regulator limits the rate that a network driver can
103772e66a6SGleb Smirnoff  * dequeue packets from the output queue.
104772e66a6SGleb Smirnoff  * modern cards are able to buffer a large amount of packets and dequeue
105772e66a6SGleb Smirnoff  * too many packets at a time.  this bursty dequeue behavior makes it
106772e66a6SGleb Smirnoff  * impossible to schedule packets by queueing disciplines.
107772e66a6SGleb Smirnoff  * a token-bucket is used to control the burst size in a device
108772e66a6SGleb Smirnoff  * independent manner.
109772e66a6SGleb Smirnoff  */
110772e66a6SGleb Smirnoff struct tb_regulator {
111772e66a6SGleb Smirnoff 	int64_t		tbr_rate;	/* (scaled) token bucket rate */
112772e66a6SGleb Smirnoff 	int64_t		tbr_depth;	/* (scaled) token bucket depth */
113772e66a6SGleb Smirnoff 
114772e66a6SGleb Smirnoff 	int64_t		tbr_token;	/* (scaled) current token */
115772e66a6SGleb Smirnoff 	int64_t		tbr_filluptime;	/* (scaled) time to fill up bucket */
116772e66a6SGleb Smirnoff 	u_int64_t	tbr_last;	/* last time token was updated */
117772e66a6SGleb Smirnoff 
118772e66a6SGleb Smirnoff 	int		tbr_lastop;	/* last dequeue operation type
119772e66a6SGleb Smirnoff 					   needed for poll-and-dequeue */
120772e66a6SGleb Smirnoff };
121772e66a6SGleb Smirnoff 
122772e66a6SGleb Smirnoff /* if_altqflags */
123772e66a6SGleb Smirnoff #define	ALTQF_READY	 0x01	/* driver supports alternate queueing */
124772e66a6SGleb Smirnoff #define	ALTQF_ENABLED	 0x02	/* altq is in use */
125*27b2aa49SKristof Provost /* 	ALTQF_CLASSIFY	 0x04	obsolete classify packets */
126772e66a6SGleb Smirnoff #define	ALTQF_CNDTNING	 0x08	/* altq traffic conditioning is enabled */
127772e66a6SGleb Smirnoff #define	ALTQF_DRIVER1	 0x40	/* driver specific */
128772e66a6SGleb Smirnoff 
129772e66a6SGleb Smirnoff /* if_altqflags set internally only: */
130772e66a6SGleb Smirnoff #define	ALTQF_CANTCHANGE 	(ALTQF_READY)
131772e66a6SGleb Smirnoff 
132772e66a6SGleb Smirnoff /* altq_dequeue 2nd arg */
133772e66a6SGleb Smirnoff #define	ALTDQ_REMOVE		1	/* dequeue mbuf from the queue */
134772e66a6SGleb Smirnoff #define	ALTDQ_POLL		2	/* don't dequeue mbuf from the queue */
135772e66a6SGleb Smirnoff 
136772e66a6SGleb Smirnoff /* altq request types (currently only purge is defined) */
137772e66a6SGleb Smirnoff #define	ALTRQ_PURGE		1	/* purge all packets */
138772e66a6SGleb Smirnoff 
139772e66a6SGleb Smirnoff #define	ALTQ_IS_READY(ifq)		((ifq)->altq_flags & ALTQF_READY)
140b8ca4756SPatrick Kelsey #ifdef ALTQ
141772e66a6SGleb Smirnoff #define	ALTQ_IS_ENABLED(ifq)		((ifq)->altq_flags & ALTQF_ENABLED)
142b8ca4756SPatrick Kelsey #else
143b8ca4756SPatrick Kelsey #define	ALTQ_IS_ENABLED(ifq)		0
144b8ca4756SPatrick Kelsey #endif
145772e66a6SGleb Smirnoff #define	ALTQ_IS_CNDTNING(ifq)		((ifq)->altq_flags & ALTQF_CNDTNING)
146772e66a6SGleb Smirnoff 
147772e66a6SGleb Smirnoff #define	ALTQ_SET_CNDTNING(ifq)		((ifq)->altq_flags |= ALTQF_CNDTNING)
148772e66a6SGleb Smirnoff #define	ALTQ_CLEAR_CNDTNING(ifq)	((ifq)->altq_flags &= ~ALTQF_CNDTNING)
149772e66a6SGleb Smirnoff #define	ALTQ_IS_ATTACHED(ifq)		((ifq)->altq_disc != NULL)
150772e66a6SGleb Smirnoff 
151772e66a6SGleb Smirnoff #define	ALTQ_ENQUEUE(ifq, m, pa, err)					\
152772e66a6SGleb Smirnoff 	(err) = (*(ifq)->altq_enqueue)((ifq),(m),(pa))
153772e66a6SGleb Smirnoff #define	ALTQ_DEQUEUE(ifq, m)						\
154772e66a6SGleb Smirnoff 	(m) = (*(ifq)->altq_dequeue)((ifq), ALTDQ_REMOVE)
155772e66a6SGleb Smirnoff #define	ALTQ_POLL(ifq, m)						\
156772e66a6SGleb Smirnoff 	(m) = (*(ifq)->altq_dequeue)((ifq), ALTDQ_POLL)
157772e66a6SGleb Smirnoff #define	ALTQ_PURGE(ifq)							\
158772e66a6SGleb Smirnoff 	(void)(*(ifq)->altq_request)((ifq), ALTRQ_PURGE, (void *)0)
159772e66a6SGleb Smirnoff #define	ALTQ_IS_EMPTY(ifq)		((ifq)->ifq_len == 0)
160772e66a6SGleb Smirnoff #define	TBR_IS_ENABLED(ifq)		((ifq)->altq_tbr != NULL)
161772e66a6SGleb Smirnoff 
162772e66a6SGleb Smirnoff extern int altq_attach(struct ifaltq *, int, void *,
163772e66a6SGleb Smirnoff 		       int (*)(struct ifaltq *, struct mbuf *,
164772e66a6SGleb Smirnoff 			       struct altq_pktattr *),
165772e66a6SGleb Smirnoff 		       struct mbuf *(*)(struct ifaltq *, int),
166*27b2aa49SKristof Provost 		       int (*)(struct ifaltq *, int, void *));
167772e66a6SGleb Smirnoff extern int altq_detach(struct ifaltq *);
168772e66a6SGleb Smirnoff extern int altq_enable(struct ifaltq *);
169772e66a6SGleb Smirnoff extern int altq_disable(struct ifaltq *);
170772e66a6SGleb Smirnoff extern struct mbuf *(*tbr_dequeue_ptr)(struct ifaltq *, int);
171772e66a6SGleb Smirnoff #if 0 /* ALTQ3_CLFIER_COMPAT */
172772e66a6SGleb Smirnoff void altq_etherclassify(struct ifaltq *, struct mbuf *, struct altq_pktattr *);
173772e66a6SGleb Smirnoff #endif
174772e66a6SGleb Smirnoff #endif /* _KERNEL */
175772e66a6SGleb Smirnoff 
176772e66a6SGleb Smirnoff #endif /* _ALTQ_IF_ALTQ_H_ */
177