ip_dn_private.h revision 205050
1/*-
2 * Copyright (c) 2010 Luigi Rizzo, Riccardo Panicucci, Universita` di Pisa
3 * All rights reserved
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 *    notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 *    notice, this list of conditions and the following disclaimer in the
12 *    documentation and/or other materials provided with the distribution.
13 *
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 */
26
27/*
28 * internal dummynet APIs.
29 *
30 * $FreeBSD: head/sys/netinet/ipfw/ip_dn_private.h 205050 2010-03-11 22:42:33Z luigi $
31 */
32
33#ifndef _IP_DN_PRIVATE_H
34#define _IP_DN_PRIVATE_H
35
36/* debugging support
37 * use ND() to remove debugging, D() to print a line,
38 * DX(level, ...) to print above a certain level
39 * If you redefine D() you are expected to redefine all.
40 */
41#ifndef D
42#define ND(fmt, ...) do {} while (0)
43#define D1(fmt, ...) do {} while (0)
44#define D(fmt, ...) printf("%-10s " fmt "\n",      \
45        __FUNCTION__, ## __VA_ARGS__)
46#define DX(lev, fmt, ...) do {              \
47        if (dn_cfg.debug > lev) D(fmt, ## __VA_ARGS__); } while (0)
48#endif
49
50MALLOC_DECLARE(M_DUMMYNET);
51
52#ifndef FREE_PKT
53#define	FREE_PKT(m)	m_freem(m)
54#endif
55
56#ifndef __linux__
57#define div64(a, b)  ((int64_t)(a) / (int64_t)(b))
58#endif
59
60#define DN_LOCK_INIT() do {				\
61	mtx_init(&dn_cfg.uh_mtx, "dn_uh", NULL, MTX_DEF);	\
62	mtx_init(&dn_cfg.bh_mtx, "dn_bh", NULL, MTX_DEF);	\
63	} while (0)
64#define DN_LOCK_DESTROY() do {				\
65	mtx_destroy(&dn_cfg.uh_mtx);			\
66	mtx_destroy(&dn_cfg.bh_mtx);			\
67	} while (0)
68#if 0 /* not used yet */
69#define DN_UH_RLOCK()		mtx_lock(&dn_cfg.uh_mtx)
70#define DN_UH_RUNLOCK()		mtx_unlock(&dn_cfg.uh_mtx)
71#define DN_UH_WLOCK()		mtx_lock(&dn_cfg.uh_mtx)
72#define DN_UH_WUNLOCK()		mtx_unlock(&dn_cfg.uh_mtx)
73#define DN_UH_LOCK_ASSERT()	mtx_assert(&dn_cfg.uh_mtx, MA_OWNED)
74#endif
75
76#define DN_BH_RLOCK()		mtx_lock(&dn_cfg.uh_mtx)
77#define DN_BH_RUNLOCK()		mtx_unlock(&dn_cfg.uh_mtx)
78#define DN_BH_WLOCK()		mtx_lock(&dn_cfg.uh_mtx)
79#define DN_BH_WUNLOCK()		mtx_unlock(&dn_cfg.uh_mtx)
80#define DN_BH_LOCK_ASSERT()	mtx_assert(&dn_cfg.uh_mtx, MA_OWNED)
81
82SLIST_HEAD(dn_schk_head, dn_schk);
83SLIST_HEAD(dn_sch_inst_head, dn_sch_inst);
84SLIST_HEAD(dn_fsk_head, dn_fsk);
85SLIST_HEAD(dn_queue_head, dn_queue);
86SLIST_HEAD(dn_alg_head, dn_alg);
87
88struct mq {	/* a basic queue of packets*/
89        struct mbuf *head, *tail;
90};
91
92static inline void
93set_oid(struct dn_id *o, int type, int len)
94{
95        o->type = type;
96        o->len = len;
97        o->subtype = 0;
98};
99
100/*
101 * configuration and global data for a dummynet instance
102 *
103 * When a configuration is modified from userland, 'id' is incremented
104 * so we can use the value to check for stale pointers.
105 */
106struct dn_parms {
107	uint32_t	id;		/* configuration version */
108
109	/* defaults (sysctl-accessible) */
110	int	red_lookup_depth;
111	int	red_avg_pkt_size;
112	int	red_max_pkt_size;
113	int	hash_size;
114	int	max_hash_size;
115	long	byte_limit;		/* max queue sizes */
116	long	slot_limit;
117
118	int	io_fast;
119	int	debug;
120
121	/* timekeeping */
122	struct timeval prev_t;		/* last time dummynet_tick ran */
123	struct dn_heap	evheap;		/* scheduled events */
124
125	/* counters of objects -- used for reporting space */
126	int	schk_count;
127	int	si_count;
128	int	fsk_count;
129	int	queue_count;
130
131	/* ticks and other stuff */
132	uint64_t	curr_time;
133	/* flowsets and schedulers are in hash tables, with 'hash_size'
134	 * buckets. fshash is looked up at every packet arrival
135	 * so better be generous if we expect many entries.
136	 */
137	struct dn_ht	*fshash;
138	struct dn_ht	*schedhash;
139	/* list of flowsets without a scheduler -- use sch_chain */
140	struct dn_fsk_head	fsu;	/* list of unlinked flowsets */
141	struct dn_alg_head	schedlist;	/* list of algorithms */
142
143	/* Store the fs/sch to scan when draining. The value is the
144	 * bucket number of the hash table
145	 **/
146	int drain_fs;
147	int drain_sch;
148
149	/* if the upper half is busy doing something long,
150	 * can set the busy flag and we will enqueue packets in
151	 * a queue for later processing.
152	 */
153	int	busy;
154	struct	mq	pending;
155
156#ifdef _KERNEL
157	/*
158	 * This file is normally used in the kernel, unless we do
159	 * some userland tests, in which case we do not need a mtx.
160	 * uh_mtx arbitrates between system calls and also
161	 * protects fshash, schedhash and fsunlinked.
162	 * These structures are readonly for the lower half.
163	 * bh_mtx protects all other structures which may be
164	 * modified upon packet arrivals
165	 */
166#if defined( __linux__ ) || defined( _WIN32 )
167	spinlock_t uh_mtx;
168	spinlock_t bh_mtx;
169#else
170	struct mtx uh_mtx;
171	struct mtx bh_mtx;
172#endif
173
174#endif /* _KERNEL */
175};
176
177/*
178 * Delay line, contains all packets on output from a link.
179 * Every scheduler instance has one.
180 */
181struct delay_line {
182	struct dn_id oid;
183	struct dn_sch_inst *si;
184	struct mq mq;
185};
186
187/*
188 * The kernel side of a flowset. It is linked in a hash table
189 * of flowsets, and in a list of children of their parent scheduler.
190 * qht is either the queue or (if HAVE_MASK) a hash table queues.
191 * Note that the mask to use is the (flow_mask|sched_mask), which
192 * changes as we attach/detach schedulers. So we store it here.
193 *
194 * XXX If we want to add scheduler-specific parameters, we need to
195 * put them in external storage because the scheduler may not be
196 * available when the fsk is created.
197 */
198struct dn_fsk { /* kernel side of a flowset */
199	struct dn_fs fs;
200	SLIST_ENTRY(dn_fsk) fsk_next;	/* hash chain for fshash */
201
202	struct ipfw_flow_id fsk_mask;
203
204	/* qht is a hash table of queues, or just a single queue
205	 * a bit in fs.flags tells us which one
206	 */
207	struct dn_ht	*qht;
208	struct dn_schk *sched;		/* Sched we are linked to */
209	SLIST_ENTRY(dn_fsk) sch_chain;	/* list of fsk attached to sched */
210
211	/* bucket index used by drain routine to drain queues for this
212	 * flowset
213	 */
214	int drain_bucket;
215	/* Parameter realted to RED / GRED */
216	/* original values are in dn_fs*/
217	int w_q ;		/* queue weight (scaled) */
218	int max_th ;		/* maximum threshold for queue (scaled) */
219	int min_th ;		/* minimum threshold for queue (scaled) */
220	int max_p ;		/* maximum value for p_b (scaled) */
221
222	u_int c_1 ;		/* max_p/(max_th-min_th) (scaled) */
223	u_int c_2 ;		/* max_p*min_th/(max_th-min_th) (scaled) */
224	u_int c_3 ;		/* for GRED, (1-max_p)/max_th (scaled) */
225	u_int c_4 ;		/* for GRED, 1 - 2*max_p (scaled) */
226	u_int * w_q_lookup ;	/* lookup table for computing (1-w_q)^t */
227	u_int lookup_depth ;	/* depth of lookup table */
228	int lookup_step ;	/* granularity inside the lookup table */
229	int lookup_weight ;	/* equal to (1-w_q)^t / (1-w_q)^(t+1) */
230	int avg_pkt_size ;	/* medium packet size */
231	int max_pkt_size ;	/* max packet size */
232};
233
234/*
235 * A queue is created as a child of a flowset unless it belongs to
236 * a !MULTIQUEUE scheduler. It is normally in a hash table in the
237 * flowset. fs always points to the parent flowset.
238 * si normally points to the sch_inst, unless the flowset has been
239 * detached from the scheduler -- in this case si == NULL and we
240 * should not enqueue.
241 */
242struct dn_queue {
243	struct dn_flow ni;	/* oid, flow_id, stats */
244	struct mq mq;	/* packets queue */
245	struct dn_sch_inst *_si;	/* owner scheduler instance */
246	SLIST_ENTRY(dn_queue) q_next; /* hash chain list for qht */
247	struct dn_fsk *fs;		/* parent flowset. */
248
249	/* RED parameters */
250	int avg;		/* average queue length est. (scaled) */
251	int count;		/* arrivals since last RED drop */
252	int random;		/* random value (scaled) */
253	uint64_t q_time;	/* start of queue idle time */
254
255};
256
257/*
258 * The kernel side of a scheduler. Contains the userland config,
259 * a link, pointer to extra config arguments from command line,
260 * kernel flags, and a pointer to the scheduler methods.
261 * It is stored in a hash table, and holds a list of all
262 * flowsets and scheduler instances.
263 * XXX sch must be at the beginning, see schk_hash().
264 */
265struct dn_schk {
266	struct dn_sch sch;
267	struct dn_alg *fp;	/* Pointer to scheduler functions */
268	struct dn_link link;	/* The link, embedded */
269	struct dn_profile *profile; /* delay profile, if any */
270	struct dn_id *cfg;	/* extra config arguments */
271
272	SLIST_ENTRY(dn_schk) schk_next;  /* hash chain for schedhash */
273
274	struct dn_fsk_head fsk_list;  /* all fsk linked to me */
275	struct dn_fsk *fs;	/* Flowset for !MULTIQUEUE */
276
277	/* bucket index used by the drain routine to drain the scheduler
278	 * instance for this flowset.
279	 */
280	int drain_bucket;
281
282	/* Hash table of all instances (through sch.sched_mask)
283	 * or single instance if no mask. Always valid.
284	 */
285	struct dn_ht	*siht;
286};
287
288
289/*
290 * Scheduler instance.
291 * Contains variables and all queues relative to a this instance.
292 * This struct is created a runtime.
293 */
294struct dn_sch_inst {
295	struct dn_flow	ni;	/* oid, flowid and stats */
296	SLIST_ENTRY(dn_sch_inst) si_next; /* hash chain for siht */
297	struct delay_line dline;
298	struct dn_schk *sched;	/* the template */
299	int		kflags;	/* DN_ACTIVE */
300
301	int64_t	credit;		/* bits I can transmit (more or less). */
302	uint64_t sched_time;	/* time link was scheduled in ready_heap */
303	uint64_t idle_time;	/* start of scheduler instance idle time */
304
305	/* q_count is the number of queues that this instance is using.
306	 * The counter is incremented or decremented when
307	 * a reference from the queue is created or deleted.
308	 * It is used to make sure that a scheduler instance can be safely
309	 * deleted by the drain routine. See notes below.
310	 */
311	int q_count;
312
313};
314
315/*
316 * NOTE about object drain.
317 * The system will automatically (XXX check when) drain queues and
318 * scheduler instances when they are idle.
319 * A queue is idle when it has no packets; an instance is idle when
320 * it is not in the evheap heap, and the corresponding delay line is empty.
321 * A queue can be safely deleted when it is idle because of the scheduler
322 * function xxx_free_queue() will remove any references to it.
323 * An instance can be only deleted when no queues reference it. To be sure
324 * of that, a counter (q_count) stores the number of queues that are pointing
325 * to the instance.
326 *
327 * XXX
328 * Order of scan:
329 * - take all flowset in a bucket for the flowset hash table
330 * - take all queues in a bucket for the flowset
331 * - increment the queue bucket
332 * - scan next flowset bucket
333 * Nothing is done if a bucket contains no entries.
334 *
335 * The same schema is used for sceduler instances
336 */
337
338
339/* kernel-side flags. Linux has DN_DELETE in fcntl.h
340 */
341enum {
342	/* 1 and 2 are reserved for the SCAN flags */
343	DN_DESTROY	= 0x0004, /* destroy */
344	DN_DELETE_FS	= 0x0008, /* destroy flowset */
345	DN_DETACH	= 0x0010,
346	DN_ACTIVE	= 0x0020, /* object is in evheap */
347	DN_F_DLINE	= 0x0040, /* object is a delay line */
348	DN_F_SCHI	= 0x00C0, /* object is a sched.instance */
349	DN_QHT_IS_Q	= 0x0100, /* in flowset, qht is a single queue */
350};
351
352extern struct dn_parms dn_cfg;
353
354int dummynet_io(struct mbuf **, int , struct ip_fw_args *);
355void dummynet_task(void *context, int pending);
356void dn_reschedule(void);
357
358struct dn_queue *ipdn_q_find(struct dn_fsk *, struct dn_sch_inst *,
359        struct ipfw_flow_id *);
360struct dn_sch_inst *ipdn_si_find(struct dn_schk *, struct ipfw_flow_id *);
361
362/*
363 * copy_range is a template for requests for ranges of pipes/queues/scheds.
364 * The number of ranges is variable and can be derived by o.len.
365 * As a default, we use a small number of entries so that the struct
366 * fits easily on the stack and is sufficient for most common requests.
367 */
368#define DEFAULT_RANGES	5
369struct copy_range {
370        struct dn_id o;
371        uint32_t	r[ 2 * DEFAULT_RANGES ];
372};
373
374struct copy_args {
375	char **start;
376	char *end;
377	int flags;
378	int type;
379	struct copy_range *extra;	/* extra filtering */
380};
381
382struct sockopt;
383int ip_dummynet_compat(struct sockopt *sopt);
384int dummynet_get(struct sockopt *sopt, void **compat);
385int dn_c_copy_q (void *_ni, void *arg);
386int dn_c_copy_pipe(struct dn_schk *s, struct copy_args *a, int nq);
387int dn_c_copy_fs(struct dn_fsk *f, struct copy_args *a, int nq);
388int dn_compat_copy_queue(struct copy_args *a, void *_o);
389int dn_compat_copy_pipe(struct copy_args *a, void *_o);
390int copy_data_helper_compat(void *_o, void *_arg);
391int dn_compat_calc_size(struct dn_parms dn_cfg);
392int do_config(void *p, int l);
393
394/* function to drain idle object */
395void dn_drain_scheduler(void);
396void dn_drain_queue(void);
397
398#endif /* _IP_DN_PRIVATE_H */
399