2 * Copyright (c) Sun Microsystems, Inc. 1993-1998 All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
15 * 3. All advertising materials mentioning features or use of this software
16 * must display the following acknowledgement:
17 * This product includes software developed by the SMCC Technology
18 * Development Group at Sun Microsystems, Inc.
20 * 4. The name of the Sun Microsystems, Inc nor may not be used to endorse or
21 * promote products derived from this software without specific prior
24 * SUN MICROSYSTEMS DOES NOT CLAIM MERCHANTABILITY OF THIS SOFTWARE OR THE
25 * SUITABILITY OF THIS SOFTWARE FOR ANY PARTICULAR PURPOSE. The software is
26 * provided "as is" without express or implied warranty of any kind.
28 * These notices must be retained in any copies of any part of this software.
30 * $KAME: altq_cbq.c,v 1.19 2003/09/17 14:23:25 kjc Exp $
35 #include "opt_inet6.h"
36 #ifdef ALTQ_CBQ /* cbq is enabled by ALTQ_CBQ option in opt_altq.h */
38 #include <sys/param.h>
39 #include <sys/malloc.h>
41 #include <sys/socket.h>
42 #include <sys/systm.h>
44 #include <sys/errno.h>
48 #include <net/if_var.h>
49 #include <net/if_private.h>
50 #include <netinet/in.h>
52 #include <netpfil/pf/pf.h>
53 #include <netpfil/pf/pf_altq.h>
54 #include <netpfil/pf/pf_mtag.h>
55 #include <net/altq/altq.h>
56 #include <net/altq/altq_cbq.h>
59 * Forward Declarations.
61 static int cbq_class_destroy(cbq_state_t
*, struct rm_class
*);
62 static struct rm_class
*clh_to_clp(cbq_state_t
*, u_int32_t
);
63 static int cbq_clear_interface(cbq_state_t
*);
64 static int cbq_request(struct ifaltq
*, int, void *);
65 static int cbq_enqueue(struct ifaltq
*, struct mbuf
*,
66 struct altq_pktattr
*);
67 static struct mbuf
*cbq_dequeue(struct ifaltq
*, int);
68 static void cbqrestart(struct ifaltq
*);
69 static void get_class_stats(class_stats_t
*, struct rm_class
*);
70 static void cbq_purge(cbq_state_t
*);
74 * cbq_class_destroy(cbq_mod_state_t *, struct rm_class *) - This
75 * function destroys a given traffic class. Before destroying
76 * the class, all traffic for that class is released.
79 cbq_class_destroy(cbq_state_t
*cbqp
, struct rm_class
*cl
)
83 /* delete the class */
84 rmc_delete_class(&cbqp
->ifnp
, cl
);
87 * free the class handle
89 for (i
= 0; i
< CBQ_MAX_CLASSES
; i
++)
90 if (cbqp
->cbq_class_tbl
[i
] == cl
)
91 cbqp
->cbq_class_tbl
[i
] = NULL
;
93 if (cl
== cbqp
->ifnp
.root_
)
94 cbqp
->ifnp
.root_
= NULL
;
95 if (cl
== cbqp
->ifnp
.default_
)
96 cbqp
->ifnp
.default_
= NULL
;
100 /* convert class handle to class pointer */
101 static struct rm_class
*
102 clh_to_clp(cbq_state_t
*cbqp
, u_int32_t chandle
)
110 * first, try optimistically the slot matching the lower bits of
111 * the handle. if it fails, do the linear table search.
113 i
= chandle
% CBQ_MAX_CLASSES
;
114 if ((cl
= cbqp
->cbq_class_tbl
[i
]) != NULL
&&
115 cl
->stats_
.handle
== chandle
)
117 for (i
= 0; i
< CBQ_MAX_CLASSES
; i
++)
118 if ((cl
= cbqp
->cbq_class_tbl
[i
]) != NULL
&&
119 cl
->stats_
.handle
== chandle
)
125 cbq_clear_interface(cbq_state_t
*cbqp
)
130 #ifdef ALTQ3_CLFIER_COMPAT
131 /* free the filters for this interface */
132 acc_discard_filters(&cbqp
->cbq_classifier
, NULL
, 1);
135 /* clear out the classes now */
138 for (i
= 0; i
< CBQ_MAX_CLASSES
; i
++) {
139 if ((cl
= cbqp
->cbq_class_tbl
[i
]) != NULL
) {
140 if (is_a_parent_class(cl
))
143 cbq_class_destroy(cbqp
, cl
);
144 cbqp
->cbq_class_tbl
[i
] = NULL
;
145 if (cl
== cbqp
->ifnp
.root_
)
146 cbqp
->ifnp
.root_
= NULL
;
147 if (cl
== cbqp
->ifnp
.default_
)
148 cbqp
->ifnp
.default_
= NULL
;
158 cbq_request(struct ifaltq
*ifq
, int req
, void *arg
)
160 cbq_state_t
*cbqp
= (cbq_state_t
*)ifq
->altq_disc
;
162 IFQ_LOCK_ASSERT(ifq
);
172 /* copy the stats info in rm_class to class_states_t */
174 get_class_stats(class_stats_t
*statsp
, struct rm_class
*cl
)
176 statsp
->xmit_cnt
= cl
->stats_
.xmit_cnt
;
177 statsp
->drop_cnt
= cl
->stats_
.drop_cnt
;
178 statsp
->over
= cl
->stats_
.over
;
179 statsp
->borrows
= cl
->stats_
.borrows
;
180 statsp
->overactions
= cl
->stats_
.overactions
;
181 statsp
->delays
= cl
->stats_
.delays
;
183 statsp
->depth
= cl
->depth_
;
184 statsp
->priority
= cl
->pri_
;
185 statsp
->maxidle
= cl
->maxidle_
;
186 statsp
->minidle
= cl
->minidle_
;
187 statsp
->offtime
= cl
->offtime_
;
188 statsp
->qmax
= qlimit(cl
->q_
);
189 statsp
->ns_per_byte
= cl
->ns_per_byte_
;
190 statsp
->wrr_allot
= cl
->w_allotment_
;
191 statsp
->qcnt
= qlen(cl
->q_
);
192 statsp
->avgidle
= cl
->avgidle_
;
194 statsp
->qtype
= qtype(cl
->q_
);
196 if (q_is_red(cl
->q_
))
197 red_getstats(cl
->red_
, &statsp
->red
[0]);
200 if (q_is_rio(cl
->q_
))
201 rio_getstats((rio_t
*)cl
->red_
, &statsp
->red
[0]);
204 if (q_is_codel(cl
->q_
))
205 codel_getstats(cl
->codel_
, &statsp
->codel
);
210 cbq_pfattach(struct pf_altq
*a
)
215 if ((ifp
= ifunit(a
->ifname
)) == NULL
|| a
->altq_disc
== NULL
)
218 error
= altq_attach(&ifp
->if_snd
, ALTQT_CBQ
, a
->altq_disc
,
219 cbq_enqueue
, cbq_dequeue
, cbq_request
);
225 cbq_add_altq(struct ifnet
*ifp
, struct pf_altq
*a
)
231 if (!ALTQ_IS_READY(&ifp
->if_snd
))
234 /* allocate and initialize cbq_state_t */
235 cbqp
= malloc(sizeof(cbq_state_t
), M_DEVBUF
, M_NOWAIT
| M_ZERO
);
238 CALLOUT_INIT(&cbqp
->cbq_callout
);
240 cbqp
->ifnp
.ifq_
= &ifp
->if_snd
; /* keep the ifq */
242 /* keep the state in pf_altq */
249 cbq_remove_altq(struct pf_altq
*a
)
253 if ((cbqp
= a
->altq_disc
) == NULL
)
257 cbq_clear_interface(cbqp
);
259 if (cbqp
->ifnp
.default_
)
260 cbq_class_destroy(cbqp
, cbqp
->ifnp
.default_
);
261 if (cbqp
->ifnp
.root_
)
262 cbq_class_destroy(cbqp
, cbqp
->ifnp
.root_
);
264 /* deallocate cbq_state_t */
265 free(cbqp
, M_DEVBUF
);
271 cbq_add_queue(struct pf_altq
*a
)
273 struct rm_class
*borrow
, *parent
;
276 struct cbq_opts
*opts
;
279 if ((cbqp
= a
->altq_disc
) == NULL
)
285 * find a free slot in the class table. if the slot matching
286 * the lower bits of qid is free, use this slot. otherwise,
287 * use the first free slot.
289 i
= a
->qid
% CBQ_MAX_CLASSES
;
290 if (cbqp
->cbq_class_tbl
[i
] != NULL
) {
291 for (i
= 0; i
< CBQ_MAX_CLASSES
; i
++)
292 if (cbqp
->cbq_class_tbl
[i
] == NULL
)
294 if (i
== CBQ_MAX_CLASSES
)
298 opts
= &a
->pq_u
.cbq_opts
;
299 /* check parameters */
300 if (a
->priority
>= CBQ_MAXPRI
)
303 /* Get pointers to parent and borrow classes. */
304 parent
= clh_to_clp(cbqp
, a
->parent_qid
);
305 if (opts
->flags
& CBQCLF_BORROW
)
311 * A class must borrow from it's parent or it can not
312 * borrow at all. Hence, borrow can be null.
314 if (parent
== NULL
&& (opts
->flags
& CBQCLF_ROOTCLASS
) == 0) {
315 printf("cbq_add_queue: no parent class!\n");
319 if ((borrow
!= parent
) && (borrow
!= NULL
)) {
320 printf("cbq_add_class: borrow class != parent\n");
327 switch (opts
->flags
& CBQCLF_CLASSMASK
) {
328 case CBQCLF_ROOTCLASS
:
331 if (cbqp
->ifnp
.root_
)
334 case CBQCLF_DEFCLASS
:
335 if (cbqp
->ifnp
.default_
)
343 /* more than two flags bits set */
348 * create a class. if this is a root class, initialize the
351 if ((opts
->flags
& CBQCLF_CLASSMASK
) == CBQCLF_ROOTCLASS
) {
352 rmc_init(cbqp
->ifnp
.ifq_
, &cbqp
->ifnp
, opts
->ns_per_byte
,
353 cbqrestart
, a
->qlimit
, RM_MAXQUEUED
,
354 opts
->maxidle
, opts
->minidle
, opts
->offtime
,
356 cl
= cbqp
->ifnp
.root_
;
358 cl
= rmc_newclass(a
->priority
,
359 &cbqp
->ifnp
, opts
->ns_per_byte
,
360 rmc_delay_action
, a
->qlimit
, parent
, borrow
,
361 opts
->maxidle
, opts
->minidle
, opts
->offtime
,
362 opts
->pktsize
, opts
->flags
);
367 /* return handle to user space. */
368 cl
->stats_
.handle
= a
->qid
;
369 cl
->stats_
.depth
= cl
->depth_
;
371 /* save the allocated class */
372 cbqp
->cbq_class_tbl
[i
] = cl
;
374 if ((opts
->flags
& CBQCLF_CLASSMASK
) == CBQCLF_DEFCLASS
)
375 cbqp
->ifnp
.default_
= cl
;
381 cbq_remove_queue(struct pf_altq
*a
)
387 if ((cbqp
= a
->altq_disc
) == NULL
)
390 if ((cl
= clh_to_clp(cbqp
, a
->qid
)) == NULL
)
393 /* if we are a parent class, then return an error. */
394 if (is_a_parent_class(cl
))
397 /* delete the class */
398 rmc_delete_class(&cbqp
->ifnp
, cl
);
401 * free the class handle
403 for (i
= 0; i
< CBQ_MAX_CLASSES
; i
++)
404 if (cbqp
->cbq_class_tbl
[i
] == cl
) {
405 cbqp
->cbq_class_tbl
[i
] = NULL
;
406 if (cl
== cbqp
->ifnp
.root_
)
407 cbqp
->ifnp
.root_
= NULL
;
408 if (cl
== cbqp
->ifnp
.default_
)
409 cbqp
->ifnp
.default_
= NULL
;
417 cbq_getqstats(struct pf_altq
*a
, void *ubuf
, int *nbytes
, int version
)
424 if ((cbqp
= altq_lookup(a
->ifname
, ALTQT_CBQ
)) == NULL
)
427 if ((cl
= clh_to_clp(cbqp
, a
->qid
)) == NULL
)
430 if (*nbytes
< sizeof(stats
))
433 get_class_stats(&stats
, cl
);
435 if ((error
= copyout((caddr_t
)&stats
, ubuf
, sizeof(stats
))) != 0)
437 *nbytes
= sizeof(stats
);
443 * cbq_enqueue(struct ifaltq *ifq, struct mbuf *m, struct altq_pktattr *pattr)
444 * - Queue data packets.
446 * cbq_enqueue is set to ifp->if_altqenqueue and called by an upper
447 * layer (e.g. ether_output). cbq_enqueue queues the given packet
448 * to the cbq, then invokes the driver's start routine.
450 * Assumptions: called in splimp
451 * Returns: 0 if the queueing is successful.
452 * ENOBUFS if a packet dropping occurred as a result of
457 cbq_enqueue(struct ifaltq
*ifq
, struct mbuf
*m
, struct altq_pktattr
*pktattr
)
459 cbq_state_t
*cbqp
= (cbq_state_t
*)ifq
->altq_disc
;
464 IFQ_LOCK_ASSERT(ifq
);
466 /* grab class set by classifier */
467 if ((m
->m_flags
& M_PKTHDR
) == 0) {
468 /* should not happen */
469 printf("altq: packet for %s does not have pkthdr\n",
470 ifq
->altq_ifp
->if_xname
);
475 if ((t
= pf_find_mtag(m
)) != NULL
)
476 cl
= clh_to_clp(cbqp
, t
->qid
);
478 cl
= cbqp
->ifnp
.default_
;
486 if (rmc_queue_packet(cl
, m
) != 0) {
487 /* drop occurred. some mbuf was freed in rmc_queue_packet. */
488 PKTCNTR_ADD(&cl
->stats_
.drop_cnt
, len
);
492 /* successfully queued. */
499 cbq_dequeue(struct ifaltq
*ifq
, int op
)
501 cbq_state_t
*cbqp
= (cbq_state_t
*)ifq
->altq_disc
;
504 IFQ_LOCK_ASSERT(ifq
);
506 m
= rmc_dequeue_next(&cbqp
->ifnp
, op
);
508 if (m
&& op
== ALTDQ_REMOVE
) {
509 --cbqp
->cbq_qlen
; /* decrement # of packets in cbq */
512 /* Update the class. */
513 rmc_update_class_util(&cbqp
->ifnp
);
520 * cbqrestart(queue_t *) - Restart sending of data.
521 * called from rmc_restart in splimp via timeout after waking up
527 cbqrestart(struct ifaltq
*ifq
)
532 IFQ_LOCK_ASSERT(ifq
);
534 if (!ALTQ_IS_ENABLED(ifq
))
535 /* cbq must have been detached */
538 if ((cbqp
= (cbq_state_t
*)ifq
->altq_disc
) == NULL
)
539 /* should not happen */
544 cbqp
->cbq_qlen
> 0 && (ifp
->if_drv_flags
& IFF_DRV_OACTIVE
) == 0) {
546 (*ifp
->if_start
)(ifp
);
551 static void cbq_purge(cbq_state_t
*cbqp
)
556 for (i
= 0; i
< CBQ_MAX_CLASSES
; i
++)
557 if ((cl
= cbqp
->cbq_class_tbl
[i
]) != NULL
)
559 if (ALTQ_IS_ENABLED(cbqp
->ifnp
.ifq_
))
560 cbqp
->ifnp
.ifq_
->ifq_len
= 0;
563 #endif /* ALTQ_CBQ */