]>
Commit | Line | Data |
---|---|---|
316670eb | 1 | /* |
cb323159 | 2 | * Copyright (c) 2011-2019 Apple Inc. All rights reserved. |
316670eb A |
3 | * |
4 | * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ | |
5 | * | |
6 | * This file contains Original Code and/or Modifications of Original Code | |
7 | * as defined in and that are subject to the Apple Public Source License | |
8 | * Version 2.0 (the 'License'). You may not use this file except in | |
9 | * compliance with the License. The rights granted to you under the License | |
10 | * may not be used to create, or enable the creation or redistribution of, | |
11 | * unlawful or unlicensed copies of an Apple operating system, or to | |
12 | * circumvent, violate, or enable the circumvention or violation of, any | |
13 | * terms of an Apple operating system software license agreement. | |
14 | * | |
15 | * Please obtain a copy of the License at | |
16 | * http://www.opensource.apple.com/apsl/ and read it before using this file. | |
17 | * | |
18 | * The Original Code and all software distributed under the License are | |
19 | * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER | |
20 | * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, | |
21 | * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, | |
22 | * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. | |
23 | * Please see the License for the specific language governing rights and | |
24 | * limitations under the License. | |
25 | * | |
26 | * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ | |
27 | */ | |
28 | ||
29 | /* | |
30 | * Copyright (c) 2010 Fabio Checconi, Luigi Rizzo, Paolo Valente | |
31 | * All rights reserved | |
32 | * | |
33 | * Redistribution and use in source and binary forms, with or without | |
34 | * modification, are permitted provided that the following conditions | |
35 | * are met: | |
36 | * 1. Redistributions of source code must retain the above copyright | |
37 | * notice, this list of conditions and the following disclaimer. | |
38 | * 2. Redistributions in binary form must reproduce the above copyright | |
39 | * notice, this list of conditions and the following disclaimer in the | |
40 | * documentation and/or other materials provided with the distribution. | |
41 | * | |
42 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND | |
43 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
44 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
45 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | |
46 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | |
47 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | |
48 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
49 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | |
50 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | |
51 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | |
52 | * SUCH DAMAGE. | |
53 | */ | |
54 | ||
55 | /* | |
56 | * Quick Fair Queueing is described in | |
57 | * "QFQ: Efficient Packet Scheduling with Tight Bandwidth Distribution | |
58 | * Guarantees" by Fabio Checconi, Paolo Valente, and Luigi Rizzo. | |
59 | * | |
60 | * This code is ported from the dummynet(4) QFQ implementation. | |
61 | * See also http://info.iet.unipi.it/~luigi/qfq/ | |
62 | */ | |
63 | ||
64 | #include <sys/cdefs.h> | |
65 | #include <sys/param.h> | |
66 | #include <sys/malloc.h> | |
67 | #include <sys/mbuf.h> | |
68 | #include <sys/systm.h> | |
69 | #include <sys/errno.h> | |
70 | #include <sys/kernel.h> | |
71 | #include <sys/syslog.h> | |
72 | ||
73 | #include <kern/zalloc.h> | |
74 | ||
75 | #include <net/if.h> | |
76 | #include <net/net_osdep.h> | |
77 | ||
78 | #include <net/pktsched/pktsched_qfq.h> | |
79 | #include <netinet/in.h> | |
80 | ||
5ba3f43e | 81 | |
316670eb A |
82 | /* |
83 | * function prototypes | |
84 | */ | |
cb323159 A |
85 | static int qfq_enqueue_ifclassq(struct ifclassq *, classq_pkt_t *, boolean_t *); |
86 | static void qfq_dequeue_ifclassq(struct ifclassq *, classq_pkt_t *); | |
316670eb A |
87 | static int qfq_request_ifclassq(struct ifclassq *, cqrq_t, void *); |
88 | static int qfq_clear_interface(struct qfq_if *); | |
89 | static struct qfq_class *qfq_class_create(struct qfq_if *, u_int32_t, | |
5ba3f43e | 90 | u_int32_t, u_int32_t, u_int32_t, u_int32_t, classq_pkt_type_t); |
316670eb A |
91 | static int qfq_class_destroy(struct qfq_if *, struct qfq_class *); |
92 | static int qfq_destroy_locked(struct qfq_if *); | |
5ba3f43e A |
93 | static inline int qfq_addq(struct qfq_class *, pktsched_pkt_t *, |
94 | struct pf_mtag *); | |
95 | static inline void qfq_getq(struct qfq_class *, pktsched_pkt_t *); | |
316670eb A |
96 | static void qfq_purgeq(struct qfq_if *, struct qfq_class *, u_int32_t, |
97 | u_int32_t *, u_int32_t *); | |
98 | static void qfq_purge_sc(struct qfq_if *, cqrq_purge_sc_t *); | |
99 | static void qfq_updateq(struct qfq_if *, struct qfq_class *, cqev_t); | |
100 | static int qfq_throttle(struct qfq_if *, cqrq_throttle_t *); | |
101 | static int qfq_resumeq(struct qfq_if *, struct qfq_class *); | |
102 | static int qfq_suspendq(struct qfq_if *, struct qfq_class *); | |
39236c6e | 103 | static int qfq_stat_sc(struct qfq_if *, cqrq_stat_sc_t *); |
316670eb A |
104 | static inline struct qfq_class *qfq_clh_to_clp(struct qfq_if *, u_int32_t); |
105 | static const char *qfq_style(struct qfq_if *); | |
106 | ||
107 | static inline int qfq_gt(u_int64_t, u_int64_t); | |
108 | static inline u_int64_t qfq_round_down(u_int64_t, u_int32_t); | |
109 | static inline struct qfq_group *qfq_ffs(struct qfq_if *, pktsched_bitmap_t); | |
110 | static int qfq_calc_index(struct qfq_class *, u_int32_t, u_int32_t); | |
111 | static inline pktsched_bitmap_t mask_from(pktsched_bitmap_t, int); | |
112 | static inline u_int32_t qfq_calc_state(struct qfq_if *, struct qfq_group *); | |
113 | static inline void qfq_move_groups(struct qfq_if *, pktsched_bitmap_t, | |
114 | int, int); | |
115 | static inline void qfq_unblock_groups(struct qfq_if *, int, u_int64_t); | |
116 | static inline void qfq_make_eligible(struct qfq_if *, u_int64_t); | |
117 | static inline void qfq_slot_insert(struct qfq_if *, struct qfq_group *, | |
118 | struct qfq_class *, u_int64_t); | |
119 | static inline void qfq_front_slot_remove(struct qfq_group *); | |
120 | static inline struct qfq_class *qfq_slot_scan(struct qfq_if *, | |
121 | struct qfq_group *); | |
122 | static inline void qfq_slot_rotate(struct qfq_if *, struct qfq_group *, | |
123 | u_int64_t); | |
124 | static inline void qfq_update_eligible(struct qfq_if *, u_int64_t); | |
125 | static inline int qfq_update_class(struct qfq_if *, struct qfq_group *, | |
126 | struct qfq_class *); | |
127 | static inline void qfq_update_start(struct qfq_if *, struct qfq_class *); | |
128 | static inline void qfq_slot_remove(struct qfq_if *, struct qfq_group *, | |
129 | struct qfq_class *); | |
130 | static void qfq_deactivate_class(struct qfq_if *, struct qfq_class *); | |
131 | static const char *qfq_state2str(int); | |
132 | #if QFQ_DEBUG | |
133 | static void qfq_dump_groups(struct qfq_if *, u_int32_t); | |
134 | static void qfq_dump_sched(struct qfq_if *, const char *); | |
135 | #endif /* QFQ_DEBUG */ | |
136 | ||
0a7de745 A |
137 | #define QFQ_ZONE_MAX 32 /* maximum elements in zone */ |
138 | #define QFQ_ZONE_NAME "pktsched_qfq" /* zone name */ | |
316670eb | 139 | |
0a7de745 A |
140 | static unsigned int qfq_size; /* size of zone element */ |
141 | static struct zone *qfq_zone; /* zone for qfq */ | |
316670eb | 142 | |
0a7de745 A |
143 | #define QFQ_CL_ZONE_MAX 32 /* maximum elements in zone */ |
144 | #define QFQ_CL_ZONE_NAME "pktsched_qfq_cl" /* zone name */ | |
316670eb | 145 | |
0a7de745 A |
146 | static unsigned int qfq_cl_size; /* size of zone element */ |
147 | static struct zone *qfq_cl_zone; /* zone for qfq_class */ | |
316670eb A |
148 | |
149 | /* | |
150 | * Maximum number of consecutive slots occupied by backlogged classes | |
151 | * inside a group. This is approx lmax/lmin + 5. Used when ALTQ is | |
152 | * available. | |
153 | * | |
154 | * XXX check because it poses constraints on MAX_INDEX | |
155 | */ | |
0a7de745 | 156 | #define QFQ_MAX_SLOTS 32 /* default when ALTQ is available */ |
316670eb A |
157 | |
158 | void | |
159 | qfq_init(void) | |
160 | { | |
0a7de745 | 161 | qfq_size = sizeof(struct qfq_if); |
316670eb A |
162 | qfq_zone = zinit(qfq_size, QFQ_ZONE_MAX * qfq_size, |
163 | 0, QFQ_ZONE_NAME); | |
164 | if (qfq_zone == NULL) { | |
165 | panic("%s: failed allocating %s", __func__, QFQ_ZONE_NAME); | |
166 | /* NOTREACHED */ | |
167 | } | |
168 | zone_change(qfq_zone, Z_EXPAND, TRUE); | |
169 | zone_change(qfq_zone, Z_CALLERACCT, TRUE); | |
170 | ||
0a7de745 | 171 | qfq_cl_size = sizeof(struct qfq_class); |
316670eb A |
172 | qfq_cl_zone = zinit(qfq_cl_size, QFQ_CL_ZONE_MAX * qfq_cl_size, |
173 | 0, QFQ_CL_ZONE_NAME); | |
174 | if (qfq_cl_zone == NULL) { | |
175 | panic("%s: failed allocating %s", __func__, QFQ_CL_ZONE_NAME); | |
176 | /* NOTREACHED */ | |
177 | } | |
178 | zone_change(qfq_cl_zone, Z_EXPAND, TRUE); | |
179 | zone_change(qfq_cl_zone, Z_CALLERACCT, TRUE); | |
180 | } | |
181 | ||
182 | struct qfq_if * | |
5ba3f43e | 183 | qfq_alloc(struct ifnet *ifp, int how) |
316670eb | 184 | { |
0a7de745 | 185 | struct qfq_if *qif; |
316670eb A |
186 | |
187 | qif = (how == M_WAITOK) ? zalloc(qfq_zone) : zalloc_noblock(qfq_zone); | |
0a7de745 A |
188 | if (qif == NULL) { |
189 | return NULL; | |
190 | } | |
316670eb A |
191 | |
192 | bzero(qif, qfq_size); | |
193 | qif->qif_ifq = &ifp->if_snd; | |
5ba3f43e A |
194 | |
195 | qif->qif_maxclasses = IFCQ_SC_MAX; | |
196 | /* | |
197 | * TODO: adi@apple.com | |
198 | * | |
199 | * Ideally I would like to have the following | |
200 | * but QFQ needs further modifications. | |
201 | * | |
202 | * qif->qif_maxslots = IFCQ_SC_MAX; | |
203 | */ | |
204 | qif->qif_maxslots = QFQ_MAX_SLOTS; | |
316670eb | 205 | |
0a7de745 A |
206 | if ((qif->qif_class_tbl = _MALLOC(sizeof(struct qfq_class *) * |
207 | qif->qif_maxclasses, M_DEVBUF, M_WAITOK | M_ZERO)) == NULL) { | |
316670eb A |
208 | log(LOG_ERR, "%s: %s unable to allocate class table array\n", |
209 | if_name(ifp), qfq_style(qif)); | |
210 | goto error; | |
211 | } | |
212 | ||
0a7de745 A |
213 | if ((qif->qif_groups = _MALLOC(sizeof(struct qfq_group *) * |
214 | (QFQ_MAX_INDEX + 1), M_DEVBUF, M_WAITOK | M_ZERO)) == NULL) { | |
316670eb | 215 | log(LOG_ERR, "%s: %s unable to allocate group array\n", |
0a7de745 | 216 | if_name(ifp), qfq_style(qif)); |
316670eb A |
217 | goto error; |
218 | } | |
219 | ||
220 | if (pktsched_verbose) { | |
221 | log(LOG_DEBUG, "%s: %s scheduler allocated\n", | |
222 | if_name(ifp), qfq_style(qif)); | |
223 | } | |
224 | ||
0a7de745 | 225 | return qif; |
316670eb A |
226 | |
227 | error: | |
228 | if (qif->qif_class_tbl != NULL) { | |
229 | _FREE(qif->qif_class_tbl, M_DEVBUF); | |
230 | qif->qif_class_tbl = NULL; | |
231 | } | |
232 | if (qif->qif_groups != NULL) { | |
233 | _FREE(qif->qif_groups, M_DEVBUF); | |
234 | qif->qif_groups = NULL; | |
235 | } | |
236 | zfree(qfq_zone, qif); | |
237 | ||
0a7de745 | 238 | return NULL; |
316670eb A |
239 | } |
240 | ||
241 | int | |
242 | qfq_destroy(struct qfq_if *qif) | |
243 | { | |
244 | struct ifclassq *ifq = qif->qif_ifq; | |
245 | int err; | |
246 | ||
247 | IFCQ_LOCK(ifq); | |
248 | err = qfq_destroy_locked(qif); | |
249 | IFCQ_UNLOCK(ifq); | |
250 | ||
0a7de745 | 251 | return err; |
316670eb A |
252 | } |
253 | ||
254 | static int | |
255 | qfq_destroy_locked(struct qfq_if *qif) | |
256 | { | |
257 | int i; | |
258 | ||
259 | IFCQ_LOCK_ASSERT_HELD(qif->qif_ifq); | |
260 | ||
261 | (void) qfq_clear_interface(qif); | |
262 | ||
263 | VERIFY(qif->qif_class_tbl != NULL); | |
264 | _FREE(qif->qif_class_tbl, M_DEVBUF); | |
265 | qif->qif_class_tbl = NULL; | |
266 | ||
267 | VERIFY(qif->qif_groups != NULL); | |
268 | for (i = 0; i <= QFQ_MAX_INDEX; i++) { | |
269 | struct qfq_group *grp = qif->qif_groups[i]; | |
270 | ||
271 | if (grp != NULL) { | |
272 | VERIFY(grp->qfg_slots != NULL); | |
273 | _FREE(grp->qfg_slots, M_DEVBUF); | |
274 | grp->qfg_slots = NULL; | |
275 | _FREE(grp, M_DEVBUF); | |
276 | qif->qif_groups[i] = NULL; | |
277 | } | |
278 | } | |
279 | _FREE(qif->qif_groups, M_DEVBUF); | |
280 | qif->qif_groups = NULL; | |
281 | ||
282 | if (pktsched_verbose) { | |
283 | log(LOG_DEBUG, "%s: %s scheduler destroyed\n", | |
284 | if_name(QFQIF_IFP(qif)), qfq_style(qif)); | |
285 | } | |
286 | ||
287 | zfree(qfq_zone, qif); | |
288 | ||
0a7de745 | 289 | return 0; |
316670eb A |
290 | } |
291 | ||
292 | /* | |
293 | * bring the interface back to the initial state by discarding | |
294 | * all the filters and classes. | |
295 | */ | |
296 | static int | |
297 | qfq_clear_interface(struct qfq_if *qif) | |
298 | { | |
299 | struct qfq_class *cl; | |
300 | int i; | |
301 | ||
302 | IFCQ_LOCK_ASSERT_HELD(qif->qif_ifq); | |
303 | ||
304 | /* clear out the classes */ | |
0a7de745 A |
305 | for (i = 0; i < qif->qif_maxclasses; i++) { |
306 | if ((cl = qif->qif_class_tbl[i]) != NULL) { | |
316670eb | 307 | qfq_class_destroy(qif, cl); |
0a7de745 A |
308 | } |
309 | } | |
316670eb | 310 | |
0a7de745 | 311 | return 0; |
316670eb A |
312 | } |
313 | ||
314 | /* discard all the queued packets on the interface */ | |
315 | void | |
316 | qfq_purge(struct qfq_if *qif) | |
317 | { | |
318 | struct qfq_class *cl; | |
319 | int i; | |
320 | ||
321 | IFCQ_LOCK_ASSERT_HELD(qif->qif_ifq); | |
322 | ||
323 | for (i = 0; i < qif->qif_maxclasses; i++) { | |
0a7de745 | 324 | if ((cl = qif->qif_class_tbl[i]) != NULL) { |
316670eb | 325 | qfq_purgeq(qif, cl, 0, NULL, NULL); |
0a7de745 | 326 | } |
316670eb | 327 | } |
316670eb | 328 | VERIFY(IFCQ_LEN(qif->qif_ifq) == 0); |
316670eb A |
329 | } |
330 | ||
331 | static void | |
332 | qfq_purge_sc(struct qfq_if *qif, cqrq_purge_sc_t *pr) | |
333 | { | |
334 | struct ifclassq *ifq = qif->qif_ifq; | |
335 | u_int32_t i; | |
336 | ||
337 | IFCQ_LOCK_ASSERT_HELD(ifq); | |
338 | ||
339 | VERIFY(pr->sc == MBUF_SC_UNSPEC || MBUF_VALID_SC(pr->sc)); | |
340 | VERIFY(pr->flow != 0); | |
341 | ||
342 | if (pr->sc != MBUF_SC_UNSPEC) { | |
343 | i = MBUF_SCIDX(pr->sc); | |
344 | VERIFY(i < IFCQ_SC_MAX); | |
345 | ||
346 | qfq_purgeq(qif, ifq->ifcq_disc_slots[i].cl, | |
347 | pr->flow, &pr->packets, &pr->bytes); | |
348 | } else { | |
349 | u_int32_t cnt, len; | |
350 | ||
351 | pr->packets = 0; | |
352 | pr->bytes = 0; | |
353 | ||
354 | for (i = 0; i < IFCQ_SC_MAX; i++) { | |
355 | qfq_purgeq(qif, ifq->ifcq_disc_slots[i].cl, | |
356 | pr->flow, &cnt, &len); | |
357 | pr->packets += cnt; | |
358 | pr->bytes += len; | |
359 | } | |
360 | } | |
361 | } | |
362 | ||
363 | void | |
364 | qfq_event(struct qfq_if *qif, cqev_t ev) | |
365 | { | |
366 | struct qfq_class *cl; | |
367 | int i; | |
368 | ||
369 | IFCQ_LOCK_ASSERT_HELD(qif->qif_ifq); | |
370 | ||
0a7de745 A |
371 | for (i = 0; i < qif->qif_maxclasses; i++) { |
372 | if ((cl = qif->qif_class_tbl[i]) != NULL) { | |
316670eb | 373 | qfq_updateq(qif, cl, ev); |
0a7de745 A |
374 | } |
375 | } | |
316670eb A |
376 | } |
377 | ||
378 | int | |
379 | qfq_add_queue(struct qfq_if *qif, u_int32_t qlimit, u_int32_t weight, | |
5ba3f43e A |
380 | u_int32_t maxsz, u_int32_t flags, u_int32_t qid, struct qfq_class **clp, |
381 | classq_pkt_type_t ptype) | |
316670eb A |
382 | { |
383 | struct qfq_class *cl; | |
384 | u_int32_t w; | |
385 | ||
386 | IFCQ_LOCK_ASSERT_HELD(qif->qif_ifq); | |
387 | ||
0a7de745 A |
388 | if (qfq_clh_to_clp(qif, qid) != NULL) { |
389 | return EBUSY; | |
390 | } | |
316670eb A |
391 | |
392 | /* check parameters */ | |
0a7de745 A |
393 | if (weight == 0 || weight > QFQ_MAX_WEIGHT) { |
394 | return EINVAL; | |
395 | } | |
316670eb A |
396 | |
397 | w = (QFQ_ONE_FP / (QFQ_ONE_FP / weight)); | |
0a7de745 A |
398 | if (qif->qif_wsum + w > QFQ_MAX_WSUM) { |
399 | return EINVAL; | |
400 | } | |
316670eb | 401 | |
0a7de745 A |
402 | if (maxsz == 0 || maxsz > (1 << QFQ_MTU_SHIFT)) { |
403 | return EINVAL; | |
404 | } | |
316670eb | 405 | |
5ba3f43e | 406 | cl = qfq_class_create(qif, weight, qlimit, flags, maxsz, qid, ptype); |
0a7de745 A |
407 | if (cl == NULL) { |
408 | return ENOMEM; | |
409 | } | |
316670eb | 410 | |
0a7de745 | 411 | if (clp != NULL) { |
316670eb | 412 | *clp = cl; |
0a7de745 | 413 | } |
316670eb | 414 | |
0a7de745 | 415 | return 0; |
316670eb A |
416 | } |
417 | ||
418 | static struct qfq_class * | |
419 | qfq_class_create(struct qfq_if *qif, u_int32_t weight, u_int32_t qlimit, | |
5ba3f43e | 420 | u_int32_t flags, u_int32_t maxsz, u_int32_t qid, classq_pkt_type_t ptype) |
316670eb A |
421 | { |
422 | struct ifnet *ifp; | |
423 | struct ifclassq *ifq; | |
424 | struct qfq_group *grp; | |
425 | struct qfq_class *cl; | |
0a7de745 | 426 | u_int32_t w; /* approximated weight */ |
316670eb A |
427 | int i; |
428 | ||
429 | IFCQ_LOCK_ASSERT_HELD(qif->qif_ifq); | |
430 | ||
316670eb A |
431 | if (qif->qif_classes >= qif->qif_maxclasses) { |
432 | log(LOG_ERR, "%s: %s out of classes! (max %d)\n", | |
433 | if_name(QFQIF_IFP(qif)), qfq_style(qif), | |
434 | qif->qif_maxclasses); | |
0a7de745 | 435 | return NULL; |
316670eb A |
436 | } |
437 | ||
316670eb A |
438 | ifq = qif->qif_ifq; |
439 | ifp = QFQIF_IFP(qif); | |
440 | ||
441 | cl = zalloc(qfq_cl_zone); | |
0a7de745 A |
442 | if (cl == NULL) { |
443 | return NULL; | |
444 | } | |
316670eb A |
445 | |
446 | bzero(cl, qfq_cl_size); | |
447 | ||
448 | if (qlimit == 0 || qlimit > IFCQ_MAXLEN(ifq)) { | |
449 | qlimit = IFCQ_MAXLEN(ifq); | |
0a7de745 | 450 | if (qlimit == 0) { |
316670eb | 451 | qlimit = DEFAULT_QLIMIT; /* use default */ |
0a7de745 | 452 | } |
316670eb | 453 | } |
5ba3f43e | 454 | _qinit(&cl->cl_q, Q_DROPTAIL, qlimit, ptype); |
316670eb A |
455 | cl->cl_qif = qif; |
456 | cl->cl_flags = flags; | |
457 | cl->cl_handle = qid; | |
458 | ||
459 | /* | |
460 | * Find a free slot in the class table. If the slot matching | |
461 | * the lower bits of qid is free, use this slot. Otherwise, | |
462 | * use the first free slot. | |
463 | */ | |
464 | i = qid % qif->qif_maxclasses; | |
465 | if (qif->qif_class_tbl[i] == NULL) { | |
466 | qif->qif_class_tbl[i] = cl; | |
467 | } else { | |
468 | for (i = 0; i < qif->qif_maxclasses; i++) { | |
469 | if (qif->qif_class_tbl[i] == NULL) { | |
470 | qif->qif_class_tbl[i] = cl; | |
471 | break; | |
472 | } | |
473 | } | |
474 | if (i == qif->qif_maxclasses) { | |
475 | zfree(qfq_cl_zone, cl); | |
0a7de745 | 476 | return NULL; |
316670eb A |
477 | } |
478 | } | |
479 | ||
480 | w = weight; | |
481 | VERIFY(w > 0 && w <= QFQ_MAX_WEIGHT); | |
482 | cl->cl_lmax = maxsz; | |
483 | cl->cl_inv_w = (QFQ_ONE_FP / w); | |
484 | w = (QFQ_ONE_FP / cl->cl_inv_w); | |
485 | VERIFY(qif->qif_wsum + w <= QFQ_MAX_WSUM); | |
486 | ||
487 | i = qfq_calc_index(cl, cl->cl_inv_w, cl->cl_lmax); | |
488 | VERIFY(i <= QFQ_MAX_INDEX); | |
489 | grp = qif->qif_groups[i]; | |
490 | if (grp == NULL) { | |
0a7de745 | 491 | grp = _MALLOC(sizeof(*grp), M_DEVBUF, M_WAITOK | M_ZERO); |
316670eb A |
492 | if (grp != NULL) { |
493 | grp->qfg_index = i; | |
494 | grp->qfg_slot_shift = | |
495 | QFQ_MTU_SHIFT + QFQ_FRAC_BITS - (QFQ_MAX_INDEX - i); | |
0a7de745 A |
496 | grp->qfg_slots = _MALLOC(sizeof(struct qfq_class *) * |
497 | qif->qif_maxslots, M_DEVBUF, M_WAITOK | M_ZERO); | |
316670eb A |
498 | if (grp->qfg_slots == NULL) { |
499 | log(LOG_ERR, "%s: %s unable to allocate group " | |
500 | "slots for index %d\n", if_name(ifp), | |
501 | qfq_style(qif), i); | |
502 | } | |
503 | } else { | |
504 | log(LOG_ERR, "%s: %s unable to allocate group for " | |
505 | "qid=%d\n", if_name(ifp), qfq_style(qif), | |
506 | cl->cl_handle); | |
507 | } | |
508 | if (grp == NULL || grp->qfg_slots == NULL) { | |
509 | qif->qif_class_tbl[qid % qif->qif_maxclasses] = NULL; | |
0a7de745 | 510 | if (grp != NULL) { |
316670eb | 511 | _FREE(grp, M_DEVBUF); |
0a7de745 | 512 | } |
316670eb | 513 | zfree(qfq_cl_zone, cl); |
0a7de745 | 514 | return NULL; |
316670eb A |
515 | } else { |
516 | qif->qif_groups[i] = grp; | |
517 | } | |
518 | } | |
519 | cl->cl_grp = grp; | |
520 | qif->qif_wsum += w; | |
521 | /* XXX cl->cl_S = qif->qif_V; ? */ | |
522 | /* XXX compute qif->qif_i_wsum */ | |
523 | ||
524 | qif->qif_classes++; | |
525 | ||
0a7de745 | 526 | if (flags & QFCF_DEFAULTCLASS) { |
316670eb | 527 | qif->qif_default = cl; |
0a7de745 | 528 | } |
316670eb | 529 | |
5ba3f43e | 530 | if (flags & QFCF_SFB) { |
316670eb A |
531 | cl->cl_qflags = 0; |
532 | if (flags & QFCF_ECN) { | |
5ba3f43e | 533 | cl->cl_qflags |= SFBF_ECN; |
316670eb A |
534 | } |
535 | if (flags & QFCF_FLOWCTL) { | |
5ba3f43e | 536 | cl->cl_qflags |= SFBF_FLOWCTL; |
316670eb | 537 | } |
fe8ab488 | 538 | if (flags & QFCF_DELAYBASED) { |
5ba3f43e | 539 | cl->cl_qflags |= SFBF_DELAYBASED; |
316670eb | 540 | } |
0a7de745 | 541 | if (!(cl->cl_flags & QFCF_LAZY)) { |
5ba3f43e A |
542 | cl->cl_sfb = sfb_alloc(ifp, cl->cl_handle, |
543 | qlimit(&cl->cl_q), cl->cl_qflags); | |
0a7de745 A |
544 | } |
545 | if (cl->cl_sfb != NULL || (cl->cl_flags & QFCF_LAZY)) { | |
5ba3f43e | 546 | qtype(&cl->cl_q) = Q_SFB; |
0a7de745 | 547 | } |
316670eb A |
548 | } |
549 | ||
550 | if (pktsched_verbose) { | |
551 | log(LOG_DEBUG, "%s: %s created qid=%d grp=%d weight=%d " | |
552 | "qlimit=%d flags=%b\n", if_name(ifp), qfq_style(qif), | |
553 | cl->cl_handle, cl->cl_grp->qfg_index, weight, qlimit, | |
554 | flags, QFCF_BITS); | |
555 | } | |
556 | ||
0a7de745 | 557 | return cl; |
316670eb A |
558 | } |
559 | ||
560 | int | |
561 | qfq_remove_queue(struct qfq_if *qif, u_int32_t qid) | |
562 | { | |
563 | struct qfq_class *cl; | |
564 | ||
565 | IFCQ_LOCK_ASSERT_HELD(qif->qif_ifq); | |
566 | ||
0a7de745 A |
567 | if ((cl = qfq_clh_to_clp(qif, qid)) == NULL) { |
568 | return EINVAL; | |
569 | } | |
316670eb | 570 | |
0a7de745 | 571 | return qfq_class_destroy(qif, cl); |
316670eb A |
572 | } |
573 | ||
574 | static int | |
575 | qfq_class_destroy(struct qfq_if *qif, struct qfq_class *cl) | |
576 | { | |
577 | struct ifclassq *ifq = qif->qif_ifq; | |
578 | int i; | |
5ba3f43e A |
579 | #if !MACH_ASSERT |
580 | #pragma unused(ifq) | |
581 | #endif | |
316670eb A |
582 | |
583 | IFCQ_LOCK_ASSERT_HELD(ifq); | |
584 | ||
585 | qfq_purgeq(qif, cl, 0, NULL, NULL); | |
586 | ||
587 | if (cl->cl_inv_w != 0) { | |
588 | qif->qif_wsum -= (QFQ_ONE_FP / cl->cl_inv_w); | |
0a7de745 | 589 | cl->cl_inv_w = 0; /* reset weight to avoid run twice */ |
316670eb A |
590 | } |
591 | ||
592 | for (i = 0; i < qif->qif_maxclasses; i++) { | |
593 | if (qif->qif_class_tbl[i] == cl) { | |
594 | qif->qif_class_tbl[i] = NULL; | |
595 | break; | |
596 | } | |
597 | } | |
598 | qif->qif_classes--; | |
599 | ||
600 | if (cl->cl_qalg.ptr != NULL) { | |
0a7de745 | 601 | if (q_is_sfb(&cl->cl_q) && cl->cl_sfb != NULL) { |
316670eb | 602 | sfb_destroy(cl->cl_sfb); |
0a7de745 | 603 | } |
316670eb A |
604 | cl->cl_qalg.ptr = NULL; |
605 | qtype(&cl->cl_q) = Q_DROPTAIL; | |
606 | qstate(&cl->cl_q) = QS_RUNNING; | |
607 | } | |
608 | ||
0a7de745 | 609 | if (qif->qif_default == cl) { |
316670eb | 610 | qif->qif_default = NULL; |
0a7de745 | 611 | } |
316670eb A |
612 | |
613 | if (pktsched_verbose) { | |
614 | log(LOG_DEBUG, "%s: %s destroyed qid=%d\n", | |
615 | if_name(QFQIF_IFP(qif)), qfq_style(qif), cl->cl_handle); | |
616 | } | |
617 | ||
618 | zfree(qfq_cl_zone, cl); | |
619 | ||
0a7de745 | 620 | return 0; |
316670eb A |
621 | } |
622 | ||
623 | /* | |
624 | * Calculate a mask to mimic what would be ffs_from() | |
625 | */ | |
626 | static inline pktsched_bitmap_t | |
627 | mask_from(pktsched_bitmap_t bitmap, int from) | |
628 | { | |
0a7de745 | 629 | return bitmap & ~((1UL << from) - 1); |
316670eb A |
630 | } |
631 | ||
632 | /* | |
633 | * The state computation relies on ER=0, IR=1, EB=2, IB=3 | |
634 | * First compute eligibility comparing grp->qfg_S, qif->qif_V, | |
635 | * then check if someone is blocking us and possibly add EB | |
636 | */ | |
637 | static inline u_int32_t | |
638 | qfq_calc_state(struct qfq_if *qif, struct qfq_group *grp) | |
639 | { | |
640 | /* if S > V we are not eligible */ | |
641 | u_int32_t state = qfq_gt(grp->qfg_S, qif->qif_V); | |
642 | pktsched_bitmap_t mask = mask_from(qif->qif_bitmaps[ER], | |
643 | grp->qfg_index); | |
644 | struct qfq_group *next; | |
645 | ||
646 | if (mask) { | |
647 | next = qfq_ffs(qif, mask); | |
0a7de745 | 648 | if (qfq_gt(grp->qfg_F, next->qfg_F)) { |
316670eb | 649 | state |= EB; |
0a7de745 | 650 | } |
316670eb A |
651 | } |
652 | ||
0a7de745 | 653 | return state; |
316670eb A |
654 | } |
655 | ||
656 | /* | |
657 | * In principle | |
658 | * qif->qif_bitmaps[dst] |= qif->qif_bitmaps[src] & mask; | |
659 | * qif->qif_bitmaps[src] &= ~mask; | |
660 | * but we should make sure that src != dst | |
661 | */ | |
662 | static inline void | |
663 | qfq_move_groups(struct qfq_if *qif, pktsched_bitmap_t mask, int src, int dst) | |
664 | { | |
665 | qif->qif_bitmaps[dst] |= qif->qif_bitmaps[src] & mask; | |
666 | qif->qif_bitmaps[src] &= ~mask; | |
667 | } | |
668 | ||
669 | static inline void | |
670 | qfq_unblock_groups(struct qfq_if *qif, int index, u_int64_t old_finish) | |
671 | { | |
672 | pktsched_bitmap_t mask = mask_from(qif->qif_bitmaps[ER], index + 1); | |
673 | struct qfq_group *next; | |
674 | ||
675 | if (mask) { | |
676 | next = qfq_ffs(qif, mask); | |
0a7de745 | 677 | if (!qfq_gt(next->qfg_F, old_finish)) { |
316670eb | 678 | return; |
0a7de745 | 679 | } |
316670eb A |
680 | } |
681 | ||
682 | mask = (1UL << index) - 1; | |
683 | qfq_move_groups(qif, mask, EB, ER); | |
684 | qfq_move_groups(qif, mask, IB, IR); | |
685 | } | |
686 | ||
687 | /* | |
688 | * perhaps | |
689 | * | |
690 | * old_V ^= qif->qif_V; | |
691 | * old_V >>= QFQ_MIN_SLOT_SHIFT; | |
692 | * if (old_V) { | |
693 | * ... | |
694 | * } | |
695 | */ | |
696 | static inline void | |
697 | qfq_make_eligible(struct qfq_if *qif, u_int64_t old_V) | |
698 | { | |
699 | pktsched_bitmap_t mask, vslot, old_vslot; | |
700 | ||
701 | vslot = qif->qif_V >> QFQ_MIN_SLOT_SHIFT; | |
702 | old_vslot = old_V >> QFQ_MIN_SLOT_SHIFT; | |
703 | ||
704 | if (vslot != old_vslot) { | |
705 | mask = (2UL << (__fls(vslot ^ old_vslot))) - 1; | |
706 | qfq_move_groups(qif, mask, IR, ER); | |
707 | qfq_move_groups(qif, mask, IB, EB); | |
708 | } | |
709 | } | |
710 | ||
711 | /* | |
712 | * XXX we should make sure that slot becomes less than 32. | |
713 | * This is guaranteed by the input values. | |
714 | * roundedS is always cl->qfg_S rounded on grp->qfg_slot_shift bits. | |
715 | */ | |
716 | static inline void | |
717 | qfq_slot_insert(struct qfq_if *qif, struct qfq_group *grp, | |
718 | struct qfq_class *cl, u_int64_t roundedS) | |
719 | { | |
720 | u_int64_t slot = (roundedS - grp->qfg_S) >> grp->qfg_slot_shift; | |
721 | u_int32_t i = (grp->qfg_front + slot) % qif->qif_maxslots; | |
722 | ||
723 | cl->cl_next = grp->qfg_slots[i]; | |
724 | grp->qfg_slots[i] = cl; | |
725 | pktsched_bit_set(slot, &grp->qfg_full_slots); | |
726 | } | |
727 | ||
728 | /* | |
729 | * remove the entry from the slot | |
730 | */ | |
731 | static inline void | |
732 | qfq_front_slot_remove(struct qfq_group *grp) | |
733 | { | |
734 | struct qfq_class **h = &grp->qfg_slots[grp->qfg_front]; | |
735 | ||
736 | *h = (*h)->cl_next; | |
0a7de745 | 737 | if (!*h) { |
316670eb | 738 | pktsched_bit_clr(0, &grp->qfg_full_slots); |
0a7de745 | 739 | } |
316670eb A |
740 | } |
741 | ||
742 | /* | |
743 | * Returns the first full queue in a group. As a side effect, | |
744 | * adjust the bucket list so the first non-empty bucket is at | |
745 | * position 0 in qfg_full_slots. | |
746 | */ | |
747 | static inline struct qfq_class * | |
748 | qfq_slot_scan(struct qfq_if *qif, struct qfq_group *grp) | |
749 | { | |
750 | int i; | |
751 | ||
752 | if (pktsched_verbose > 2) { | |
753 | log(LOG_DEBUG, "%s: %s grp=%d full_slots=0x%x\n", | |
754 | if_name(QFQIF_IFP(qif)), qfq_style(qif), grp->qfg_index, | |
755 | grp->qfg_full_slots); | |
756 | } | |
757 | ||
0a7de745 A |
758 | if (grp->qfg_full_slots == 0) { |
759 | return NULL; | |
760 | } | |
316670eb A |
761 | |
762 | i = pktsched_ffs(grp->qfg_full_slots) - 1; /* zero-based */ | |
763 | if (i > 0) { | |
764 | grp->qfg_front = (grp->qfg_front + i) % qif->qif_maxslots; | |
765 | grp->qfg_full_slots >>= i; | |
766 | } | |
767 | ||
0a7de745 | 768 | return grp->qfg_slots[grp->qfg_front]; |
316670eb A |
769 | } |
770 | ||
771 | /* | |
772 | * adjust the bucket list. When the start time of a group decreases, | |
773 | * we move the index down (modulo qif->qif_maxslots) so we don't need to | |
774 | * move the objects. The mask of occupied slots must be shifted | |
775 | * because we use ffs() to find the first non-empty slot. | |
776 | * This covers decreases in the group's start time, but what about | |
777 | * increases of the start time ? | |
778 | * Here too we should make sure that i is less than 32 | |
779 | */ | |
780 | static inline void | |
781 | qfq_slot_rotate(struct qfq_if *qif, struct qfq_group *grp, u_int64_t roundedS) | |
782 | { | |
783 | #pragma unused(qif) | |
784 | u_int32_t i = (grp->qfg_S - roundedS) >> grp->qfg_slot_shift; | |
785 | ||
786 | grp->qfg_full_slots <<= i; | |
787 | grp->qfg_front = (grp->qfg_front - i) % qif->qif_maxslots; | |
788 | } | |
789 | ||
790 | static inline void | |
791 | qfq_update_eligible(struct qfq_if *qif, u_int64_t old_V) | |
792 | { | |
793 | pktsched_bitmap_t ineligible; | |
794 | ||
795 | ineligible = qif->qif_bitmaps[IR] | qif->qif_bitmaps[IB]; | |
796 | if (ineligible) { | |
797 | if (!qif->qif_bitmaps[ER]) { | |
798 | struct qfq_group *grp; | |
799 | grp = qfq_ffs(qif, ineligible); | |
0a7de745 | 800 | if (qfq_gt(grp->qfg_S, qif->qif_V)) { |
316670eb | 801 | qif->qif_V = grp->qfg_S; |
0a7de745 | 802 | } |
316670eb A |
803 | } |
804 | qfq_make_eligible(qif, old_V); | |
805 | } | |
806 | } | |
807 | ||
808 | /* | |
809 | * Updates the class, returns true if also the group needs to be updated. | |
810 | */ | |
811 | static inline int | |
812 | qfq_update_class(struct qfq_if *qif, struct qfq_group *grp, | |
813 | struct qfq_class *cl) | |
814 | { | |
815 | #pragma unused(qif) | |
816 | cl->cl_S = cl->cl_F; | |
0a7de745 | 817 | if (qempty(&cl->cl_q)) { |
316670eb A |
818 | qfq_front_slot_remove(grp); |
819 | } else { | |
820 | u_int32_t len; | |
821 | u_int64_t roundedS; | |
822 | ||
5ba3f43e | 823 | len = m_pktlen((struct mbuf *)qhead(&cl->cl_q)); |
316670eb A |
824 | cl->cl_F = cl->cl_S + (u_int64_t)len * cl->cl_inv_w; |
825 | roundedS = qfq_round_down(cl->cl_S, grp->qfg_slot_shift); | |
0a7de745 A |
826 | if (roundedS == grp->qfg_S) { |
827 | return 0; | |
828 | } | |
316670eb A |
829 | |
830 | qfq_front_slot_remove(grp); | |
831 | qfq_slot_insert(qif, grp, cl, roundedS); | |
832 | } | |
0a7de745 | 833 | return 1; |
316670eb A |
834 | } |
835 | ||
836 | /* | |
837 | * note: CLASSQDQ_POLL returns the next packet without removing the packet | |
838 | * from the queue. CLASSQDQ_REMOVE is a normal dequeue operation. | |
839 | * CLASSQDQ_REMOVE must return the same packet if called immediately | |
840 | * after CLASSQDQ_POLL. | |
841 | */ | |
5ba3f43e A |
842 | void |
843 | qfq_dequeue(struct qfq_if *qif, pktsched_pkt_t *pkt) | |
316670eb A |
844 | { |
845 | pktsched_bitmap_t er_bits = qif->qif_bitmaps[ER]; | |
846 | struct ifclassq *ifq = qif->qif_ifq; | |
847 | struct qfq_group *grp; | |
848 | struct qfq_class *cl; | |
316670eb A |
849 | u_int64_t old_V; |
850 | u_int32_t len; | |
851 | ||
852 | IFCQ_LOCK_ASSERT_HELD(ifq); | |
853 | ||
cb323159 | 854 | _PKTSCHED_PKT_INIT(pkt); |
5ba3f43e | 855 | |
316670eb A |
856 | for (;;) { |
857 | if (er_bits == 0) { | |
858 | #if QFQ_DEBUG | |
0a7de745 | 859 | if (qif->qif_queued && pktsched_verbose > 1) { |
316670eb | 860 | qfq_dump_sched(qif, "start dequeue"); |
0a7de745 | 861 | } |
316670eb A |
862 | #endif /* QFQ_DEBUG */ |
863 | /* no eligible and ready packet */ | |
5ba3f43e | 864 | return; |
316670eb A |
865 | } |
866 | grp = qfq_ffs(qif, er_bits); | |
867 | /* if group is non-empty, use it */ | |
0a7de745 | 868 | if (grp->qfg_full_slots != 0) { |
316670eb | 869 | break; |
0a7de745 | 870 | } |
316670eb A |
871 | pktsched_bit_clr(grp->qfg_index, &er_bits); |
872 | #if QFQ_DEBUG | |
873 | qif->qif_emptygrp++; | |
874 | #endif /* QFQ_DEBUG */ | |
875 | } | |
876 | VERIFY(!IFCQ_IS_EMPTY(ifq)); | |
877 | ||
878 | cl = grp->qfg_slots[grp->qfg_front]; | |
879 | VERIFY(cl != NULL && !qempty(&cl->cl_q)); | |
880 | ||
5ba3f43e | 881 | qfq_getq(cl, pkt); |
cb323159 A |
882 | /* qalg must be work conserving */ |
883 | VERIFY(pkt->pktsched_ptype != QP_INVALID); | |
5ba3f43e | 884 | len = pktsched_get_pkt_len(pkt); |
316670eb A |
885 | |
886 | #if QFQ_DEBUG | |
887 | qif->qif_queued--; | |
888 | #endif /* QFQ_DEBUG */ | |
889 | ||
890 | IFCQ_DEC_LEN(ifq); | |
3e170ce0 | 891 | IFCQ_DEC_BYTES(ifq, len); |
0a7de745 | 892 | if (qempty(&cl->cl_q)) { |
316670eb | 893 | cl->cl_period++; |
0a7de745 | 894 | } |
316670eb A |
895 | PKTCNTR_ADD(&cl->cl_xmitcnt, 1, len); |
896 | IFCQ_XMIT_ADD(ifq, 1, len); | |
897 | ||
898 | old_V = qif->qif_V; | |
899 | qif->qif_V += (u_int64_t)len * QFQ_IWSUM; | |
900 | ||
901 | if (pktsched_verbose > 2) { | |
5ba3f43e | 902 | log(LOG_DEBUG, "%s: %s qid=%d dequeue pkt=0x%llx F=0x%llx " |
39236c6e | 903 | "V=0x%llx", if_name(QFQIF_IFP(qif)), qfq_style(qif), |
5ba3f43e | 904 | cl->cl_handle, |
cb323159 A |
905 | (uint64_t)VM_KERNEL_ADDRPERM(pkt->pktsched_pkt_mbuf), |
906 | cl->cl_F, qif->qif_V); | |
316670eb A |
907 | } |
908 | ||
909 | if (qfq_update_class(qif, grp, cl)) { | |
910 | u_int64_t old_F = grp->qfg_F; | |
911 | ||
912 | cl = qfq_slot_scan(qif, grp); | |
913 | if (!cl) { /* group gone, remove from ER */ | |
914 | pktsched_bit_clr(grp->qfg_index, &qif->qif_bitmaps[ER]); | |
915 | } else { | |
916 | u_int32_t s; | |
917 | u_int64_t roundedS = | |
918 | qfq_round_down(cl->cl_S, grp->qfg_slot_shift); | |
919 | ||
0a7de745 | 920 | if (grp->qfg_S == roundedS) { |
316670eb | 921 | goto skip_unblock; |
0a7de745 | 922 | } |
316670eb A |
923 | |
924 | grp->qfg_S = roundedS; | |
925 | grp->qfg_F = roundedS + (2ULL << grp->qfg_slot_shift); | |
926 | ||
927 | /* remove from ER and put in the new set */ | |
928 | pktsched_bit_clr(grp->qfg_index, &qif->qif_bitmaps[ER]); | |
929 | s = qfq_calc_state(qif, grp); | |
930 | pktsched_bit_set(grp->qfg_index, &qif->qif_bitmaps[s]); | |
931 | } | |
932 | /* we need to unblock even if the group has gone away */ | |
933 | qfq_unblock_groups(qif, grp->qfg_index, old_F); | |
934 | } | |
935 | ||
936 | skip_unblock: | |
937 | qfq_update_eligible(qif, old_V); | |
938 | ||
939 | #if QFQ_DEBUG | |
0a7de745 | 940 | if (!qif->qif_bitmaps[ER] && qif->qif_queued && pktsched_verbose > 1) { |
316670eb | 941 | qfq_dump_sched(qif, "end dequeue"); |
0a7de745 | 942 | } |
316670eb | 943 | #endif /* QFQ_DEBUG */ |
316670eb A |
944 | } |
945 | ||
946 | /* | |
947 | * Assign a reasonable start time for a new flow k in group i. | |
948 | * Admissible values for hat(F) are multiples of sigma_i | |
949 | * no greater than V+sigma_i . Larger values mean that | |
950 | * we had a wraparound so we consider the timestamp to be stale. | |
951 | * | |
952 | * If F is not stale and F >= V then we set S = F. | |
953 | * Otherwise we should assign S = V, but this may violate | |
954 | * the ordering in ER. So, if we have groups in ER, set S to | |
955 | * the F_j of the first group j which would be blocking us. | |
956 | * We are guaranteed not to move S backward because | |
957 | * otherwise our group i would still be blocked. | |
958 | */ | |
959 | static inline void | |
960 | qfq_update_start(struct qfq_if *qif, struct qfq_class *cl) | |
961 | { | |
962 | pktsched_bitmap_t mask; | |
963 | u_int64_t limit, roundedF; | |
964 | int slot_shift = cl->cl_grp->qfg_slot_shift; | |
965 | ||
966 | roundedF = qfq_round_down(cl->cl_F, slot_shift); | |
967 | limit = qfq_round_down(qif->qif_V, slot_shift) + (1UL << slot_shift); | |
968 | ||
969 | if (!qfq_gt(cl->cl_F, qif->qif_V) || qfq_gt(roundedF, limit)) { | |
970 | /* timestamp was stale */ | |
971 | mask = mask_from(qif->qif_bitmaps[ER], cl->cl_grp->qfg_index); | |
972 | if (mask) { | |
973 | struct qfq_group *next = qfq_ffs(qif, mask); | |
974 | if (qfq_gt(roundedF, next->qfg_F)) { | |
975 | cl->cl_S = next->qfg_F; | |
976 | return; | |
977 | } | |
978 | } | |
979 | cl->cl_S = qif->qif_V; | |
980 | } else { /* timestamp is not stale */ | |
981 | cl->cl_S = cl->cl_F; | |
982 | } | |
983 | } | |
984 | ||
985 | int | |
5ba3f43e | 986 | qfq_enqueue(struct qfq_if *qif, struct qfq_class *cl, pktsched_pkt_t *pkt, |
316670eb A |
987 | struct pf_mtag *t) |
988 | { | |
989 | struct ifclassq *ifq = qif->qif_ifq; | |
990 | struct qfq_group *grp; | |
991 | u_int64_t roundedS; | |
992 | int len, ret, s; | |
993 | ||
994 | IFCQ_LOCK_ASSERT_HELD(ifq); | |
995 | VERIFY(cl == NULL || cl->cl_qif == qif); | |
996 | ||
997 | if (cl == NULL) { | |
39236c6e | 998 | cl = qfq_clh_to_clp(qif, 0); |
316670eb A |
999 | if (cl == NULL) { |
1000 | cl = qif->qif_default; | |
1001 | if (cl == NULL) { | |
1002 | IFCQ_CONVERT_LOCK(ifq); | |
0a7de745 | 1003 | return CLASSQEQ_DROP; |
316670eb A |
1004 | } |
1005 | } | |
1006 | } | |
1007 | ||
5ba3f43e A |
1008 | VERIFY(pkt->pktsched_ptype == qptype(&cl->cl_q)); |
1009 | len = pktsched_get_pkt_len(pkt); | |
1010 | ||
1011 | ret = qfq_addq(cl, pkt, t); | |
1012 | if ((ret != 0) && (ret != CLASSQEQ_SUCCESS_FC)) { | |
1013 | VERIFY(ret == CLASSQEQ_DROP || | |
1014 | ret == CLASSQEQ_DROP_FC || | |
1015 | ret == CLASSQEQ_DROP_SP); | |
1016 | PKTCNTR_ADD(&cl->cl_dropcnt, 1, len); | |
1017 | IFCQ_DROP_ADD(ifq, 1, len); | |
0a7de745 | 1018 | return ret; |
316670eb A |
1019 | } |
1020 | IFCQ_INC_LEN(ifq); | |
3e170ce0 | 1021 | IFCQ_INC_BYTES(ifq, len); |
316670eb A |
1022 | |
1023 | #if QFQ_DEBUG | |
1024 | qif->qif_queued++; | |
1025 | #endif /* QFQ_DEBUG */ | |
1026 | ||
1027 | /* queue was not idle, we're done */ | |
0a7de745 | 1028 | if (qlen(&cl->cl_q) > 1) { |
316670eb | 1029 | goto done; |
0a7de745 | 1030 | } |
316670eb A |
1031 | |
1032 | /* queue was idle */ | |
1033 | grp = cl->cl_grp; | |
0a7de745 | 1034 | qfq_update_start(qif, cl); /* adjust start time */ |
316670eb A |
1035 | |
1036 | /* compute new finish time and rounded start */ | |
1037 | cl->cl_F = cl->cl_S + (u_int64_t)len * cl->cl_inv_w; | |
1038 | roundedS = qfq_round_down(cl->cl_S, grp->qfg_slot_shift); | |
1039 | ||
1040 | /* | |
1041 | * Insert cl in the correct bucket. | |
1042 | * | |
1043 | * If cl->cl_S >= grp->qfg_S we don't need to adjust the bucket list | |
1044 | * and simply go to the insertion phase. Otherwise grp->qfg_S is | |
1045 | * decreasing, we must make room in the bucket list, and also | |
1046 | * recompute the group state. Finally, if there were no flows | |
1047 | * in this group and nobody was in ER make sure to adjust V. | |
1048 | */ | |
1049 | if (grp->qfg_full_slots != 0) { | |
0a7de745 | 1050 | if (!qfq_gt(grp->qfg_S, cl->cl_S)) { |
316670eb | 1051 | goto skip_update; |
0a7de745 | 1052 | } |
316670eb A |
1053 | |
1054 | /* create a slot for this cl->cl_S */ | |
1055 | qfq_slot_rotate(qif, grp, roundedS); | |
1056 | ||
1057 | /* group was surely ineligible, remove */ | |
1058 | pktsched_bit_clr(grp->qfg_index, &qif->qif_bitmaps[IR]); | |
1059 | pktsched_bit_clr(grp->qfg_index, &qif->qif_bitmaps[IB]); | |
1060 | } else if (!qif->qif_bitmaps[ER] && qfq_gt(roundedS, qif->qif_V)) { | |
1061 | qif->qif_V = roundedS; | |
1062 | } | |
1063 | ||
1064 | grp->qfg_S = roundedS; | |
1065 | grp->qfg_F = | |
1066 | roundedS + (2ULL << grp->qfg_slot_shift); /* i.e. 2 sigma_i */ | |
1067 | s = qfq_calc_state(qif, grp); | |
1068 | pktsched_bit_set(grp->qfg_index, &qif->qif_bitmaps[s]); | |
1069 | ||
1070 | if (pktsched_verbose > 2) { | |
39236c6e | 1071 | log(LOG_DEBUG, "%s: %s qid=%d enqueue m=0x%llx state=%s 0x%x " |
316670eb | 1072 | "S=0x%llx F=0x%llx V=0x%llx\n", if_name(QFQIF_IFP(qif)), |
39236c6e | 1073 | qfq_style(qif), cl->cl_handle, |
cb323159 | 1074 | (uint64_t)VM_KERNEL_ADDRPERM(pkt->pktsched_pkt_mbuf), |
5ba3f43e | 1075 | qfq_state2str(s), |
316670eb A |
1076 | qif->qif_bitmaps[s], cl->cl_S, cl->cl_F, qif->qif_V); |
1077 | } | |
1078 | ||
1079 | skip_update: | |
1080 | qfq_slot_insert(qif, grp, cl, roundedS); | |
1081 | ||
1082 | done: | |
1083 | /* successfully queued. */ | |
0a7de745 | 1084 | return ret; |
316670eb A |
1085 | } |
1086 | ||
1087 | static inline void | |
1088 | qfq_slot_remove(struct qfq_if *qif, struct qfq_group *grp, | |
1089 | struct qfq_class *cl) | |
1090 | { | |
1091 | #pragma unused(qif) | |
1092 | struct qfq_class **pprev; | |
1093 | u_int32_t i, offset; | |
1094 | u_int64_t roundedS; | |
1095 | ||
1096 | roundedS = qfq_round_down(cl->cl_S, grp->qfg_slot_shift); | |
1097 | offset = (roundedS - grp->qfg_S) >> grp->qfg_slot_shift; | |
1098 | i = (grp->qfg_front + offset) % qif->qif_maxslots; | |
1099 | ||
1100 | pprev = &grp->qfg_slots[i]; | |
0a7de745 | 1101 | while (*pprev && *pprev != cl) { |
316670eb | 1102 | pprev = &(*pprev)->cl_next; |
0a7de745 | 1103 | } |
316670eb A |
1104 | |
1105 | *pprev = cl->cl_next; | |
0a7de745 | 1106 | if (!grp->qfg_slots[i]) { |
316670eb | 1107 | pktsched_bit_clr(offset, &grp->qfg_full_slots); |
0a7de745 | 1108 | } |
316670eb A |
1109 | } |
1110 | ||
1111 | /* | |
1112 | * Called to forcibly destroy a queue. | |
1113 | * If the queue is not in the front bucket, or if it has | |
1114 | * other queues in the front bucket, we can simply remove | |
1115 | * the queue with no other side effects. | |
1116 | * Otherwise we must propagate the event up. | |
1117 | * XXX description to be completed. | |
1118 | */ | |
1119 | static void | |
1120 | qfq_deactivate_class(struct qfq_if *qif, struct qfq_class *cl) | |
1121 | { | |
1122 | struct qfq_group *grp = cl->cl_grp; | |
1123 | pktsched_bitmap_t mask; | |
1124 | u_int64_t roundedS; | |
1125 | int s; | |
1126 | ||
1127 | if (pktsched_verbose) { | |
1128 | log(LOG_DEBUG, "%s: %s deactivate qid=%d grp=%d " | |
1129 | "full_slots=0x%x front=%d bitmaps={ER=0x%x,EB=0x%x," | |
1130 | "IR=0x%x,IB=0x%x}\n", | |
1131 | if_name(QFQIF_IFP(cl->cl_qif)), qfq_style(cl->cl_qif), | |
1132 | cl->cl_handle, grp->qfg_index, grp->qfg_full_slots, | |
1133 | grp->qfg_front, qif->qif_bitmaps[ER], qif->qif_bitmaps[EB], | |
1134 | qif->qif_bitmaps[IR], qif->qif_bitmaps[IB]); | |
1135 | #if QFQ_DEBUG | |
0a7de745 | 1136 | if (pktsched_verbose > 1) { |
316670eb | 1137 | qfq_dump_sched(qif, "start deactivate"); |
0a7de745 | 1138 | } |
316670eb A |
1139 | #endif /* QFQ_DEBUG */ |
1140 | } | |
1141 | ||
0a7de745 | 1142 | cl->cl_F = cl->cl_S; /* not needed if the class goes away */ |
316670eb A |
1143 | qfq_slot_remove(qif, grp, cl); |
1144 | ||
1145 | if (grp->qfg_full_slots == 0) { | |
1146 | /* | |
1147 | * Nothing left in the group, remove from all sets. | |
1148 | * Do ER last because if we were blocking other groups | |
1149 | * we must unblock them. | |
1150 | */ | |
1151 | pktsched_bit_clr(grp->qfg_index, &qif->qif_bitmaps[IR]); | |
1152 | pktsched_bit_clr(grp->qfg_index, &qif->qif_bitmaps[EB]); | |
1153 | pktsched_bit_clr(grp->qfg_index, &qif->qif_bitmaps[IB]); | |
1154 | ||
1155 | if (pktsched_bit_tst(grp->qfg_index, &qif->qif_bitmaps[ER]) && | |
1156 | !(qif->qif_bitmaps[ER] & ~((1UL << grp->qfg_index) - 1))) { | |
1157 | mask = qif->qif_bitmaps[ER] & | |
1158 | ((1UL << grp->qfg_index) - 1); | |
0a7de745 | 1159 | if (mask) { |
316670eb | 1160 | mask = ~((1UL << __fls(mask)) - 1); |
0a7de745 | 1161 | } else { |
316670eb | 1162 | mask = (pktsched_bitmap_t)~0UL; |
0a7de745 | 1163 | } |
316670eb A |
1164 | qfq_move_groups(qif, mask, EB, ER); |
1165 | qfq_move_groups(qif, mask, IB, IR); | |
1166 | } | |
1167 | pktsched_bit_clr(grp->qfg_index, &qif->qif_bitmaps[ER]); | |
1168 | } else if (!grp->qfg_slots[grp->qfg_front]) { | |
1169 | cl = qfq_slot_scan(qif, grp); | |
1170 | roundedS = qfq_round_down(cl->cl_S, grp->qfg_slot_shift); | |
1171 | if (grp->qfg_S != roundedS) { | |
1172 | pktsched_bit_clr(grp->qfg_index, &qif->qif_bitmaps[ER]); | |
1173 | pktsched_bit_clr(grp->qfg_index, &qif->qif_bitmaps[IR]); | |
1174 | pktsched_bit_clr(grp->qfg_index, &qif->qif_bitmaps[EB]); | |
1175 | pktsched_bit_clr(grp->qfg_index, &qif->qif_bitmaps[IB]); | |
1176 | grp->qfg_S = roundedS; | |
1177 | grp->qfg_F = roundedS + (2ULL << grp->qfg_slot_shift); | |
1178 | s = qfq_calc_state(qif, grp); | |
1179 | pktsched_bit_set(grp->qfg_index, &qif->qif_bitmaps[s]); | |
1180 | } | |
1181 | } | |
1182 | qfq_update_eligible(qif, qif->qif_V); | |
1183 | ||
1184 | #if QFQ_DEBUG | |
0a7de745 | 1185 | if (pktsched_verbose > 1) { |
316670eb | 1186 | qfq_dump_sched(qif, "end deactivate"); |
0a7de745 | 1187 | } |
316670eb A |
1188 | #endif /* QFQ_DEBUG */ |
1189 | } | |
1190 | ||
1191 | static const char * | |
1192 | qfq_state2str(int s) | |
1193 | { | |
1194 | const char *c; | |
1195 | ||
1196 | switch (s) { | |
1197 | case ER: | |
1198 | c = "ER"; | |
1199 | break; | |
1200 | case IR: | |
1201 | c = "IR"; | |
1202 | break; | |
1203 | case EB: | |
1204 | c = "EB"; | |
1205 | break; | |
1206 | case IB: | |
1207 | c = "IB"; | |
1208 | break; | |
1209 | default: | |
1210 | c = "?"; | |
1211 | break; | |
1212 | } | |
0a7de745 | 1213 | return c; |
316670eb A |
1214 | } |
1215 | ||
1216 | static inline int | |
5ba3f43e | 1217 | qfq_addq(struct qfq_class *cl, pktsched_pkt_t *pkt, struct pf_mtag *t) |
316670eb | 1218 | { |
0a7de745 | 1219 | struct qfq_if *qif = cl->cl_qif; |
316670eb A |
1220 | struct ifclassq *ifq = qif->qif_ifq; |
1221 | ||
1222 | IFCQ_LOCK_ASSERT_HELD(ifq); | |
1223 | ||
316670eb A |
1224 | if (q_is_sfb(&cl->cl_q)) { |
1225 | if (cl->cl_sfb == NULL) { | |
1226 | struct ifnet *ifp = QFQIF_IFP(qif); | |
1227 | ||
1228 | VERIFY(cl->cl_flags & QFCF_LAZY); | |
1229 | cl->cl_flags &= ~QFCF_LAZY; | |
316670eb | 1230 | |
5ba3f43e | 1231 | IFCQ_CONVERT_LOCK(ifq); |
316670eb A |
1232 | cl->cl_sfb = sfb_alloc(ifp, cl->cl_handle, |
1233 | qlimit(&cl->cl_q), cl->cl_qflags); | |
1234 | if (cl->cl_sfb == NULL) { | |
1235 | /* fall back to droptail */ | |
1236 | qtype(&cl->cl_q) = Q_DROPTAIL; | |
1237 | cl->cl_flags &= ~QFCF_SFB; | |
1238 | cl->cl_qflags &= ~(SFBF_ECN | SFBF_FLOWCTL); | |
1239 | ||
1240 | log(LOG_ERR, "%s: %s SFB lazy allocation " | |
1241 | "failed for qid=%d grp=%d, falling back " | |
1242 | "to DROPTAIL\n", if_name(ifp), | |
1243 | qfq_style(qif), cl->cl_handle, | |
1244 | cl->cl_grp->qfg_index); | |
1245 | } else if (qif->qif_throttle != IFNET_THROTTLE_OFF) { | |
1246 | /* if there's pending throttling, set it */ | |
1247 | cqrq_throttle_t tr = { 1, qif->qif_throttle }; | |
1248 | int err = qfq_throttle(qif, &tr); | |
1249 | ||
0a7de745 | 1250 | if (err == EALREADY) { |
316670eb | 1251 | err = 0; |
0a7de745 | 1252 | } |
316670eb A |
1253 | if (err != 0) { |
1254 | tr.level = IFNET_THROTTLE_OFF; | |
1255 | (void) qfq_throttle(qif, &tr); | |
1256 | } | |
1257 | } | |
1258 | } | |
0a7de745 A |
1259 | if (cl->cl_sfb != NULL) { |
1260 | return sfb_addq(cl->cl_sfb, &cl->cl_q, pkt, t); | |
1261 | } | |
316670eb A |
1262 | } else if (qlen(&cl->cl_q) >= qlimit(&cl->cl_q)) { |
1263 | IFCQ_CONVERT_LOCK(ifq); | |
0a7de745 | 1264 | return CLASSQEQ_DROP; |
316670eb A |
1265 | } |
1266 | ||
39236c6e | 1267 | #if PF_ECN |
5ba3f43e A |
1268 | if (cl->cl_flags & QFCF_CLEARDSCP) { |
1269 | /* not supported for non-mbuf type packets */ | |
1270 | VERIFY(pkt->pktsched_ptype == QP_MBUF); | |
316670eb | 1271 | write_dsfield(m, t, 0); |
5ba3f43e | 1272 | } |
39236c6e | 1273 | #endif /* PF_ECN */ |
316670eb | 1274 | |
5ba3f43e | 1275 | VERIFY(pkt->pktsched_ptype == qptype(&cl->cl_q)); |
cb323159 | 1276 | _addq(&cl->cl_q, &pkt->pktsched_pkt); |
0a7de745 | 1277 | return 0; |
316670eb A |
1278 | } |
1279 | ||
5ba3f43e A |
1280 | static inline void |
1281 | qfq_getq(struct qfq_class *cl, pktsched_pkt_t *pkt) | |
316670eb | 1282 | { |
cb323159 A |
1283 | classq_pkt_t p = CLASSQ_PKT_INITIALIZER(p); |
1284 | ||
316670eb A |
1285 | IFCQ_LOCK_ASSERT_HELD(cl->cl_qif->qif_ifq); |
1286 | ||
0a7de745 A |
1287 | if (q_is_sfb(&cl->cl_q) && cl->cl_sfb != NULL) { |
1288 | return sfb_getq(cl->cl_sfb, &cl->cl_q, pkt); | |
1289 | } | |
316670eb | 1290 | |
cb323159 A |
1291 | _getq(&cl->cl_q, &p); |
1292 | return pktsched_pkt_encap(pkt, &p); | |
316670eb A |
1293 | } |
1294 | ||
1295 | static void | |
1296 | qfq_purgeq(struct qfq_if *qif, struct qfq_class *cl, u_int32_t flow, | |
1297 | u_int32_t *packets, u_int32_t *bytes) | |
1298 | { | |
1299 | struct ifclassq *ifq = qif->qif_ifq; | |
1300 | u_int32_t cnt = 0, len = 0, qlen; | |
1301 | ||
1302 | IFCQ_LOCK_ASSERT_HELD(ifq); | |
1303 | ||
0a7de745 | 1304 | if ((qlen = qlen(&cl->cl_q)) == 0) { |
316670eb | 1305 | goto done; |
0a7de745 | 1306 | } |
316670eb | 1307 | |
316670eb | 1308 | IFCQ_CONVERT_LOCK(ifq); |
0a7de745 | 1309 | if (q_is_sfb(&cl->cl_q) && cl->cl_sfb != NULL) { |
316670eb | 1310 | sfb_purgeq(cl->cl_sfb, &cl->cl_q, flow, &cnt, &len); |
0a7de745 | 1311 | } else { |
316670eb | 1312 | _flushq_flow(&cl->cl_q, flow, &cnt, &len); |
0a7de745 | 1313 | } |
316670eb A |
1314 | |
1315 | if (cnt > 0) { | |
1316 | VERIFY(qlen(&cl->cl_q) == (qlen - cnt)); | |
1317 | #if QFQ_DEBUG | |
1318 | VERIFY(qif->qif_queued >= cnt); | |
1319 | qif->qif_queued -= cnt; | |
1320 | #endif /* QFQ_DEBUG */ | |
1321 | ||
1322 | PKTCNTR_ADD(&cl->cl_dropcnt, cnt, len); | |
1323 | IFCQ_DROP_ADD(ifq, cnt, len); | |
1324 | ||
1325 | VERIFY(((signed)IFCQ_LEN(ifq) - cnt) >= 0); | |
1326 | IFCQ_LEN(ifq) -= cnt; | |
1327 | ||
0a7de745 | 1328 | if (qempty(&cl->cl_q)) { |
316670eb | 1329 | qfq_deactivate_class(qif, cl); |
0a7de745 | 1330 | } |
316670eb A |
1331 | |
1332 | if (pktsched_verbose) { | |
1333 | log(LOG_DEBUG, "%s: %s purge qid=%d weight=%d " | |
1334 | "qlen=[%d,%d] cnt=%d len=%d flow=0x%x\n", | |
1335 | if_name(QFQIF_IFP(qif)), | |
1336 | qfq_style(qif), cl->cl_handle, | |
1337 | (u_int32_t)(QFQ_ONE_FP / cl->cl_inv_w), qlen, | |
1338 | qlen(&cl->cl_q), cnt, len, flow); | |
1339 | } | |
1340 | } | |
1341 | done: | |
0a7de745 | 1342 | if (packets != NULL) { |
316670eb | 1343 | *packets = cnt; |
0a7de745 A |
1344 | } |
1345 | if (bytes != NULL) { | |
316670eb | 1346 | *bytes = len; |
0a7de745 | 1347 | } |
316670eb A |
1348 | } |
1349 | ||
1350 | static void | |
1351 | qfq_updateq(struct qfq_if *qif, struct qfq_class *cl, cqev_t ev) | |
1352 | { | |
1353 | IFCQ_LOCK_ASSERT_HELD(qif->qif_ifq); | |
1354 | ||
1355 | if (pktsched_verbose) { | |
1356 | log(LOG_DEBUG, "%s: %s update qid=%d weight=%d event=%s\n", | |
1357 | if_name(QFQIF_IFP(qif)), qfq_style(qif), | |
1358 | cl->cl_handle, (u_int32_t)(QFQ_ONE_FP / cl->cl_inv_w), | |
1359 | ifclassq_ev2str(ev)); | |
1360 | } | |
1361 | ||
0a7de745 A |
1362 | if (q_is_sfb(&cl->cl_q) && cl->cl_sfb != NULL) { |
1363 | return sfb_updateq(cl->cl_sfb, ev); | |
1364 | } | |
316670eb A |
1365 | } |
1366 | ||
1367 | int | |
1368 | qfq_get_class_stats(struct qfq_if *qif, u_int32_t qid, | |
1369 | struct qfq_classstats *sp) | |
1370 | { | |
1371 | struct qfq_class *cl; | |
1372 | ||
1373 | IFCQ_LOCK_ASSERT_HELD(qif->qif_ifq); | |
1374 | ||
0a7de745 A |
1375 | if ((cl = qfq_clh_to_clp(qif, qid)) == NULL) { |
1376 | return EINVAL; | |
1377 | } | |
316670eb A |
1378 | |
1379 | sp->class_handle = cl->cl_handle; | |
1380 | sp->index = cl->cl_grp->qfg_index; | |
1381 | sp->weight = (QFQ_ONE_FP / cl->cl_inv_w); | |
1382 | sp->lmax = cl->cl_lmax; | |
1383 | sp->qlength = qlen(&cl->cl_q); | |
1384 | sp->qlimit = qlimit(&cl->cl_q); | |
1385 | sp->period = cl->cl_period; | |
1386 | sp->xmitcnt = cl->cl_xmitcnt; | |
1387 | sp->dropcnt = cl->cl_dropcnt; | |
1388 | ||
1389 | sp->qtype = qtype(&cl->cl_q); | |
1390 | sp->qstate = qstate(&cl->cl_q); | |
5ba3f43e | 1391 | |
0a7de745 | 1392 | if (q_is_sfb(&cl->cl_q) && cl->cl_sfb != NULL) { |
316670eb | 1393 | sfb_getstats(cl->cl_sfb, &sp->sfb); |
0a7de745 | 1394 | } |
316670eb | 1395 | |
0a7de745 | 1396 | return 0; |
316670eb A |
1397 | } |
1398 | ||
39236c6e A |
1399 | static int |
1400 | qfq_stat_sc(struct qfq_if *qif, cqrq_stat_sc_t *sr) | |
1401 | { | |
1402 | struct ifclassq *ifq = qif->qif_ifq; | |
1403 | struct qfq_class *cl; | |
1404 | u_int32_t i; | |
1405 | ||
1406 | IFCQ_LOCK_ASSERT_HELD(ifq); | |
1407 | ||
1408 | VERIFY(sr->sc == MBUF_SC_UNSPEC || MBUF_VALID_SC(sr->sc)); | |
1409 | ||
1410 | i = MBUF_SCIDX(sr->sc); | |
1411 | VERIFY(i < IFCQ_SC_MAX); | |
1412 | ||
1413 | cl = ifq->ifcq_disc_slots[i].cl; | |
1414 | sr->packets = qlen(&cl->cl_q); | |
1415 | sr->bytes = qsize(&cl->cl_q); | |
1416 | ||
0a7de745 | 1417 | return 0; |
39236c6e A |
1418 | } |
1419 | ||
316670eb A |
1420 | /* convert a class handle to the corresponding class pointer */ |
1421 | static inline struct qfq_class * | |
1422 | qfq_clh_to_clp(struct qfq_if *qif, u_int32_t chandle) | |
1423 | { | |
1424 | struct qfq_class *cl; | |
1425 | int i; | |
1426 | ||
1427 | IFCQ_LOCK_ASSERT_HELD(qif->qif_ifq); | |
1428 | ||
1429 | /* | |
1430 | * First, try optimistically the slot matching the lower bits of | |
1431 | * the handle. If it fails, do the linear table search. | |
1432 | */ | |
1433 | i = chandle % qif->qif_maxclasses; | |
0a7de745 A |
1434 | if ((cl = qif->qif_class_tbl[i]) != NULL && cl->cl_handle == chandle) { |
1435 | return cl; | |
1436 | } | |
1437 | for (i = 0; i < qif->qif_maxclasses; i++) { | |
316670eb | 1438 | if ((cl = qif->qif_class_tbl[i]) != NULL && |
0a7de745 A |
1439 | cl->cl_handle == chandle) { |
1440 | return cl; | |
1441 | } | |
1442 | } | |
316670eb | 1443 | |
0a7de745 | 1444 | return NULL; |
316670eb A |
1445 | } |
1446 | ||
1447 | static const char * | |
1448 | qfq_style(struct qfq_if *qif) | |
1449 | { | |
5ba3f43e | 1450 | #pragma unused(qif) |
0a7de745 | 1451 | return "QFQ"; |
316670eb A |
1452 | } |
1453 | ||
1454 | /* | |
1455 | * Generic comparison function, handling wraparound | |
1456 | */ | |
1457 | static inline int | |
1458 | qfq_gt(u_int64_t a, u_int64_t b) | |
1459 | { | |
0a7de745 | 1460 | return (int64_t)(a - b) > 0; |
316670eb A |
1461 | } |
1462 | ||
1463 | /* | |
1464 | * Round a precise timestamp to its slotted value | |
1465 | */ | |
1466 | static inline u_int64_t | |
1467 | qfq_round_down(u_int64_t ts, u_int32_t shift) | |
1468 | { | |
0a7de745 | 1469 | return ts & ~((1ULL << shift) - 1); |
316670eb A |
1470 | } |
1471 | ||
1472 | /* | |
1473 | * Return the pointer to the group with lowest index in the bitmap | |
1474 | */ | |
1475 | static inline struct qfq_group * | |
1476 | qfq_ffs(struct qfq_if *qif, pktsched_bitmap_t bitmap) | |
1477 | { | |
0a7de745 | 1478 | int index = pktsched_ffs(bitmap) - 1; /* zero-based */ |
316670eb A |
1479 | VERIFY(index >= 0 && index <= QFQ_MAX_INDEX && |
1480 | qif->qif_groups[index] != NULL); | |
0a7de745 | 1481 | return qif->qif_groups[index]; |
316670eb A |
1482 | } |
1483 | ||
1484 | /* | |
1485 | * Calculate a flow index, given its weight and maximum packet length. | |
1486 | * index = log_2(maxlen/weight) but we need to apply the scaling. | |
1487 | * This is used only once at flow creation. | |
1488 | */ | |
1489 | static int | |
1490 | qfq_calc_index(struct qfq_class *cl, u_int32_t inv_w, u_int32_t maxlen) | |
1491 | { | |
0a7de745 | 1492 | u_int64_t slot_size = (u_int64_t)maxlen * inv_w; |
316670eb A |
1493 | pktsched_bitmap_t size_map; |
1494 | int index = 0; | |
1495 | ||
1496 | size_map = (pktsched_bitmap_t)(slot_size >> QFQ_MIN_SLOT_SHIFT); | |
0a7de745 | 1497 | if (!size_map) { |
316670eb | 1498 | goto out; |
0a7de745 | 1499 | } |
316670eb | 1500 | |
0a7de745 | 1501 | index = __fls(size_map) + 1; /* basically a log_2() */ |
316670eb A |
1502 | index -= !(slot_size - (1ULL << (index + QFQ_MIN_SLOT_SHIFT - 1))); |
1503 | ||
0a7de745 | 1504 | if (index < 0) { |
316670eb | 1505 | index = 0; |
0a7de745 | 1506 | } |
316670eb A |
1507 | out: |
1508 | if (pktsched_verbose) { | |
1509 | log(LOG_DEBUG, "%s: %s qid=%d grp=%d W=%u, L=%u, I=%d\n", | |
1510 | if_name(QFQIF_IFP(cl->cl_qif)), qfq_style(cl->cl_qif), | |
0a7de745 | 1511 | cl->cl_handle, index, (u_int32_t)(QFQ_ONE_FP / inv_w), |
316670eb A |
1512 | maxlen, index); |
1513 | } | |
0a7de745 | 1514 | return index; |
316670eb A |
1515 | } |
1516 | ||
1517 | #if QFQ_DEBUG | |
1518 | static void | |
1519 | qfq_dump_groups(struct qfq_if *qif, u_int32_t mask) | |
1520 | { | |
1521 | int i, j; | |
1522 | ||
1523 | for (i = 0; i < QFQ_MAX_INDEX + 1; i++) { | |
1524 | struct qfq_group *g = qif->qif_groups[i]; | |
1525 | ||
0a7de745 | 1526 | if (0 == (mask & (1 << i))) { |
316670eb | 1527 | continue; |
0a7de745 A |
1528 | } |
1529 | if (g == NULL) { | |
316670eb | 1530 | continue; |
0a7de745 | 1531 | } |
316670eb A |
1532 | |
1533 | log(LOG_DEBUG, "%s: %s [%2d] full_slots 0x%x\n", | |
1534 | if_name(QFQIF_IFP(qif)), qfq_style(qif), i, | |
1535 | g->qfg_full_slots); | |
1536 | log(LOG_DEBUG, "%s: %s S 0x%20llx F 0x%llx %c\n", | |
1537 | if_name(QFQIF_IFP(qif)), qfq_style(qif), | |
1538 | g->qfg_S, g->qfg_F, mask & (1 << i) ? '1' : '0'); | |
1539 | ||
1540 | for (j = 0; j < qif->qif_maxslots; j++) { | |
1541 | if (g->qfg_slots[j]) { | |
39236c6e | 1542 | log(LOG_DEBUG, "%s: %s bucket %d 0x%llx " |
316670eb | 1543 | "qid %d\n", if_name(QFQIF_IFP(qif)), |
39236c6e A |
1544 | qfq_style(qif), j, |
1545 | (uint64_t)VM_KERNEL_ADDRPERM( | |
0a7de745 | 1546 | g->qfg_slots[j]), |
316670eb A |
1547 | g->qfg_slots[j]->cl_handle); |
1548 | } | |
1549 | } | |
1550 | } | |
1551 | } | |
1552 | ||
1553 | static void | |
1554 | qfq_dump_sched(struct qfq_if *qif, const char *msg) | |
1555 | { | |
1556 | log(LOG_DEBUG, "%s: %s --- in %s: ---\n", | |
1557 | if_name(QFQIF_IFP(qif)), qfq_style(qif), msg); | |
1558 | log(LOG_DEBUG, "%s: %s emptygrp %d queued %d V 0x%llx\n", | |
1559 | if_name(QFQIF_IFP(qif)), qfq_style(qif), qif->qif_emptygrp, | |
1560 | qif->qif_queued, qif->qif_V); | |
1561 | log(LOG_DEBUG, "%s: %s ER 0x%08x\n", | |
1562 | if_name(QFQIF_IFP(qif)), qfq_style(qif), qif->qif_bitmaps[ER]); | |
1563 | log(LOG_DEBUG, "%s: %s EB 0x%08x\n", | |
1564 | if_name(QFQIF_IFP(qif)), qfq_style(qif), qif->qif_bitmaps[EB]); | |
1565 | log(LOG_DEBUG, "%s: %s IR 0x%08x\n", | |
1566 | if_name(QFQIF_IFP(qif)), qfq_style(qif), qif->qif_bitmaps[IR]); | |
1567 | log(LOG_DEBUG, "%s: %s IB 0x%08x\n", | |
1568 | if_name(QFQIF_IFP(qif)), qfq_style(qif), qif->qif_bitmaps[IB]); | |
1569 | qfq_dump_groups(qif, 0xffffffff); | |
cb323159 | 1570 | } |
316670eb A |
1571 | #endif /* QFQ_DEBUG */ |
1572 | ||
1573 | /* | |
1574 | * qfq_enqueue_ifclassq is an enqueue function to be registered to | |
1575 | * (*ifcq_enqueue) in struct ifclassq. | |
1576 | */ | |
1577 | static int | |
cb323159 | 1578 | qfq_enqueue_ifclassq(struct ifclassq *ifq, classq_pkt_t *p, boolean_t *pdrop) |
316670eb | 1579 | { |
5ba3f43e A |
1580 | u_int32_t i = 0; |
1581 | int ret; | |
1582 | pktsched_pkt_t pkt; | |
1583 | struct pf_mtag *t = NULL; | |
316670eb A |
1584 | |
1585 | IFCQ_LOCK_ASSERT_HELD(ifq); | |
1586 | ||
cb323159 | 1587 | switch (p->cp_ptype) { |
5ba3f43e | 1588 | case QP_MBUF: { |
cb323159 | 1589 | struct mbuf *m = p->cp_mbuf; |
5ba3f43e A |
1590 | if (!(m->m_flags & M_PKTHDR)) { |
1591 | /* should not happen */ | |
1592 | log(LOG_ERR, "%s: packet does not have pkthdr\n", | |
1593 | if_name(ifq->ifcq_ifp)); | |
1594 | IFCQ_CONVERT_LOCK(ifq); | |
1595 | m_freem(m); | |
cb323159 | 1596 | *p = CLASSQ_PKT_INITIALIZER(*p); |
5ba3f43e | 1597 | *pdrop = TRUE; |
0a7de745 | 1598 | return ENOBUFS; |
5ba3f43e A |
1599 | } |
1600 | i = MBUF_SCIDX(mbuf_get_service_class(m)); | |
1601 | t = m_pftag(m); | |
1602 | break; | |
1603 | } | |
1604 | ||
1605 | ||
1606 | default: | |
1607 | VERIFY(0); | |
cb323159 | 1608 | __builtin_unreachable(); |
5ba3f43e | 1609 | /* NOTREACHED */ |
316670eb A |
1610 | } |
1611 | ||
316670eb A |
1612 | VERIFY((u_int32_t)i < IFCQ_SC_MAX); |
1613 | ||
cb323159 | 1614 | pktsched_pkt_encap(&pkt, p); |
5ba3f43e A |
1615 | |
1616 | ret = qfq_enqueue(ifq->ifcq_disc, | |
1617 | ifq->ifcq_disc_slots[i].cl, &pkt, t); | |
1618 | ||
1619 | if ((ret != 0) && (ret != CLASSQEQ_SUCCESS_FC)) { | |
1620 | pktsched_free_pkt(&pkt); | |
1621 | *pdrop = TRUE; | |
1622 | } else { | |
1623 | *pdrop = FALSE; | |
1624 | } | |
1625 | ||
1626 | switch (ret) { | |
1627 | case CLASSQEQ_DROP: | |
1628 | ret = ENOBUFS; | |
1629 | break; | |
1630 | case CLASSQEQ_DROP_FC: | |
1631 | ret = EQFULL; | |
1632 | break; | |
1633 | case CLASSQEQ_DROP_SP: | |
1634 | ret = EQSUSPENDED; | |
1635 | break; | |
1636 | case CLASSQEQ_SUCCESS_FC: | |
1637 | ret = EQFULL; | |
1638 | break; | |
1639 | case CLASSQEQ_SUCCESS: | |
1640 | ret = 0; | |
1641 | break; | |
1642 | default: | |
1643 | VERIFY(0); | |
1644 | } | |
0a7de745 | 1645 | return ret; |
316670eb A |
1646 | } |
1647 | ||
1648 | /* | |
1649 | * qfq_dequeue_ifclassq is a dequeue function to be registered to | |
1650 | * (*ifcq_dequeue) in struct ifclass. | |
1651 | * | |
1652 | * note: CLASSQDQ_POLL returns the next packet without removing the packet | |
1653 | * from the queue. CLASSQDQ_REMOVE is a normal dequeue operation. | |
1654 | * CLASSQDQ_REMOVE must return the same packet if called immediately | |
1655 | * after CLASSQDQ_POLL. | |
1656 | */ | |
cb323159 A |
1657 | static void |
1658 | qfq_dequeue_ifclassq(struct ifclassq *ifq, classq_pkt_t *cpkt) | |
316670eb | 1659 | { |
5ba3f43e | 1660 | pktsched_pkt_t pkt; |
cb323159 | 1661 | _PKTSCHED_PKT_INIT(&pkt); |
5ba3f43e | 1662 | qfq_dequeue(ifq->ifcq_disc, &pkt); |
cb323159 | 1663 | *cpkt = pkt.pktsched_pkt; |
316670eb A |
1664 | } |
1665 | ||
1666 | static int | |
1667 | qfq_request_ifclassq(struct ifclassq *ifq, cqrq_t req, void *arg) | |
1668 | { | |
1669 | struct qfq_if *qif = (struct qfq_if *)ifq->ifcq_disc; | |
1670 | int err = 0; | |
1671 | ||
1672 | IFCQ_LOCK_ASSERT_HELD(ifq); | |
1673 | ||
1674 | switch (req) { | |
1675 | case CLASSQRQ_PURGE: | |
1676 | qfq_purge(qif); | |
1677 | break; | |
1678 | ||
1679 | case CLASSQRQ_PURGE_SC: | |
1680 | qfq_purge_sc(qif, (cqrq_purge_sc_t *)arg); | |
1681 | break; | |
1682 | ||
1683 | case CLASSQRQ_EVENT: | |
1684 | qfq_event(qif, (cqev_t)arg); | |
1685 | break; | |
1686 | ||
1687 | case CLASSQRQ_THROTTLE: | |
1688 | err = qfq_throttle(qif, (cqrq_throttle_t *)arg); | |
1689 | break; | |
39236c6e A |
1690 | case CLASSQRQ_STAT_SC: |
1691 | err = qfq_stat_sc(qif, (cqrq_stat_sc_t *)arg); | |
1692 | break; | |
316670eb | 1693 | } |
0a7de745 | 1694 | return err; |
316670eb A |
1695 | } |
1696 | ||
1697 | int | |
5ba3f43e A |
1698 | qfq_setup_ifclassq(struct ifclassq *ifq, u_int32_t flags, |
1699 | classq_pkt_type_t ptype) | |
316670eb A |
1700 | { |
1701 | struct ifnet *ifp = ifq->ifcq_ifp; | |
1702 | struct qfq_class *cl0, *cl1, *cl2, *cl3, *cl4; | |
1703 | struct qfq_class *cl5, *cl6, *cl7, *cl8, *cl9; | |
1704 | struct qfq_if *qif; | |
1705 | u_int32_t maxlen = 0, qflags = 0; | |
1706 | int err = 0; | |
1707 | ||
1708 | IFCQ_LOCK_ASSERT_HELD(ifq); | |
1709 | VERIFY(ifq->ifcq_disc == NULL); | |
1710 | VERIFY(ifq->ifcq_type == PKTSCHEDT_NONE); | |
1711 | ||
0a7de745 | 1712 | if (flags & PKTSCHEDF_QALG_SFB) { |
316670eb | 1713 | qflags |= QFCF_SFB; |
0a7de745 A |
1714 | } |
1715 | if (flags & PKTSCHEDF_QALG_ECN) { | |
316670eb | 1716 | qflags |= QFCF_ECN; |
0a7de745 A |
1717 | } |
1718 | if (flags & PKTSCHEDF_QALG_FLOWCTL) { | |
316670eb | 1719 | qflags |= QFCF_FLOWCTL; |
0a7de745 A |
1720 | } |
1721 | if (flags & PKTSCHEDF_QALG_DELAYBASED) { | |
fe8ab488 | 1722 | qflags |= QFCF_DELAYBASED; |
0a7de745 | 1723 | } |
316670eb | 1724 | |
5ba3f43e | 1725 | qif = qfq_alloc(ifp, M_WAITOK); |
0a7de745 A |
1726 | if (qif == NULL) { |
1727 | return ENOMEM; | |
1728 | } | |
316670eb | 1729 | |
0a7de745 | 1730 | if ((maxlen = IFCQ_MAXLEN(ifq)) == 0) { |
316670eb | 1731 | maxlen = if_sndq_maxlen; |
0a7de745 | 1732 | } |
316670eb A |
1733 | |
1734 | if ((err = qfq_add_queue(qif, maxlen, 300, 1200, | |
0a7de745 | 1735 | qflags | QFCF_LAZY, SCIDX_BK_SYS, &cl0, ptype)) != 0) { |
316670eb | 1736 | goto cleanup; |
0a7de745 | 1737 | } |
316670eb A |
1738 | |
1739 | if ((err = qfq_add_queue(qif, maxlen, 600, 1400, | |
0a7de745 | 1740 | qflags | QFCF_LAZY, SCIDX_BK, &cl1, ptype)) != 0) { |
316670eb | 1741 | goto cleanup; |
0a7de745 | 1742 | } |
316670eb A |
1743 | |
1744 | if ((err = qfq_add_queue(qif, maxlen, 2400, 600, | |
0a7de745 | 1745 | qflags | QFCF_DEFAULTCLASS, SCIDX_BE, &cl2, ptype)) != 0) { |
316670eb | 1746 | goto cleanup; |
0a7de745 | 1747 | } |
316670eb A |
1748 | |
1749 | if ((err = qfq_add_queue(qif, maxlen, 2700, 600, | |
0a7de745 | 1750 | qflags | QFCF_LAZY, SCIDX_RD, &cl3, ptype)) != 0) { |
316670eb | 1751 | goto cleanup; |
0a7de745 | 1752 | } |
316670eb A |
1753 | |
1754 | if ((err = qfq_add_queue(qif, maxlen, 3000, 400, | |
0a7de745 | 1755 | qflags | QFCF_LAZY, SCIDX_OAM, &cl4, ptype)) != 0) { |
316670eb | 1756 | goto cleanup; |
0a7de745 | 1757 | } |
316670eb A |
1758 | |
1759 | if ((err = qfq_add_queue(qif, maxlen, 8000, 1000, | |
0a7de745 | 1760 | qflags | QFCF_LAZY, SCIDX_AV, &cl5, ptype)) != 0) { |
316670eb | 1761 | goto cleanup; |
0a7de745 | 1762 | } |
316670eb A |
1763 | |
1764 | if ((err = qfq_add_queue(qif, maxlen, 15000, 1200, | |
0a7de745 | 1765 | qflags | QFCF_LAZY, SCIDX_RV, &cl6, ptype)) != 0) { |
316670eb | 1766 | goto cleanup; |
0a7de745 | 1767 | } |
316670eb A |
1768 | |
1769 | if ((err = qfq_add_queue(qif, maxlen, 20000, 1400, | |
0a7de745 | 1770 | qflags | QFCF_LAZY, SCIDX_VI, &cl7, ptype)) != 0) { |
316670eb | 1771 | goto cleanup; |
0a7de745 | 1772 | } |
316670eb A |
1773 | |
1774 | if ((err = qfq_add_queue(qif, maxlen, 23000, 200, | |
0a7de745 | 1775 | qflags | QFCF_LAZY, SCIDX_VO, &cl8, ptype)) != 0) { |
316670eb | 1776 | goto cleanup; |
0a7de745 | 1777 | } |
316670eb A |
1778 | |
1779 | if ((err = qfq_add_queue(qif, maxlen, 25000, 200, | |
0a7de745 | 1780 | qflags, SCIDX_CTL, &cl9, ptype)) != 0) { |
316670eb | 1781 | goto cleanup; |
0a7de745 | 1782 | } |
316670eb A |
1783 | |
1784 | err = ifclassq_attach(ifq, PKTSCHEDT_QFQ, qif, | |
1785 | qfq_enqueue_ifclassq, qfq_dequeue_ifclassq, NULL, | |
5ba3f43e | 1786 | NULL, NULL, qfq_request_ifclassq); |
316670eb A |
1787 | |
1788 | /* cache these for faster lookup */ | |
1789 | if (err == 0) { | |
1790 | ifq->ifcq_disc_slots[SCIDX_BK_SYS].qid = SCIDX_BK_SYS; | |
1791 | ifq->ifcq_disc_slots[SCIDX_BK_SYS].cl = cl0; | |
1792 | ||
1793 | ifq->ifcq_disc_slots[SCIDX_BK].qid = SCIDX_BK; | |
1794 | ifq->ifcq_disc_slots[SCIDX_BK].cl = cl1; | |
1795 | ||
1796 | ifq->ifcq_disc_slots[SCIDX_BE].qid = SCIDX_BE; | |
1797 | ifq->ifcq_disc_slots[SCIDX_BE].cl = cl2; | |
1798 | ||
1799 | ifq->ifcq_disc_slots[SCIDX_RD].qid = SCIDX_RD; | |
1800 | ifq->ifcq_disc_slots[SCIDX_RD].cl = cl3; | |
1801 | ||
1802 | ifq->ifcq_disc_slots[SCIDX_OAM].qid = SCIDX_OAM; | |
1803 | ifq->ifcq_disc_slots[SCIDX_OAM].cl = cl4; | |
1804 | ||
1805 | ifq->ifcq_disc_slots[SCIDX_AV].qid = SCIDX_AV; | |
1806 | ifq->ifcq_disc_slots[SCIDX_AV].cl = cl5; | |
1807 | ||
1808 | ifq->ifcq_disc_slots[SCIDX_RV].qid = SCIDX_RV; | |
1809 | ifq->ifcq_disc_slots[SCIDX_RV].cl = cl6; | |
1810 | ||
1811 | ifq->ifcq_disc_slots[SCIDX_VI].qid = SCIDX_VI; | |
1812 | ifq->ifcq_disc_slots[SCIDX_VI].cl = cl7; | |
1813 | ||
1814 | ifq->ifcq_disc_slots[SCIDX_VO].qid = SCIDX_VO; | |
1815 | ifq->ifcq_disc_slots[SCIDX_VO].cl = cl8; | |
1816 | ||
1817 | ifq->ifcq_disc_slots[SCIDX_CTL].qid = SCIDX_CTL; | |
1818 | ifq->ifcq_disc_slots[SCIDX_CTL].cl = cl9; | |
1819 | } | |
1820 | ||
1821 | cleanup: | |
0a7de745 | 1822 | if (err != 0) { |
316670eb | 1823 | (void) qfq_destroy_locked(qif); |
0a7de745 | 1824 | } |
316670eb | 1825 | |
0a7de745 | 1826 | return err; |
316670eb A |
1827 | } |
1828 | ||
1829 | int | |
1830 | qfq_teardown_ifclassq(struct ifclassq *ifq) | |
1831 | { | |
1832 | struct qfq_if *qif = ifq->ifcq_disc; | |
1833 | int i; | |
1834 | ||
1835 | IFCQ_LOCK_ASSERT_HELD(ifq); | |
1836 | VERIFY(qif != NULL && ifq->ifcq_type == PKTSCHEDT_QFQ); | |
1837 | ||
1838 | (void) qfq_destroy_locked(qif); | |
1839 | ||
1840 | ifq->ifcq_disc = NULL; | |
1841 | for (i = 0; i < IFCQ_SC_MAX; i++) { | |
1842 | ifq->ifcq_disc_slots[i].qid = 0; | |
1843 | ifq->ifcq_disc_slots[i].cl = NULL; | |
1844 | } | |
1845 | ||
0a7de745 | 1846 | return ifclassq_detach(ifq); |
316670eb A |
1847 | } |
1848 | ||
1849 | int | |
1850 | qfq_getqstats_ifclassq(struct ifclassq *ifq, u_int32_t slot, | |
1851 | struct if_ifclassq_stats *ifqs) | |
1852 | { | |
1853 | struct qfq_if *qif = ifq->ifcq_disc; | |
1854 | ||
1855 | IFCQ_LOCK_ASSERT_HELD(ifq); | |
1856 | VERIFY(ifq->ifcq_type == PKTSCHEDT_QFQ); | |
1857 | ||
0a7de745 A |
1858 | if (slot >= IFCQ_SC_MAX) { |
1859 | return EINVAL; | |
1860 | } | |
316670eb | 1861 | |
0a7de745 A |
1862 | return qfq_get_class_stats(qif, ifq->ifcq_disc_slots[slot].qid, |
1863 | &ifqs->ifqs_qfq_stats); | |
316670eb A |
1864 | } |
1865 | ||
1866 | static int | |
1867 | qfq_throttle(struct qfq_if *qif, cqrq_throttle_t *tr) | |
1868 | { | |
1869 | struct ifclassq *ifq = qif->qif_ifq; | |
1870 | struct qfq_class *cl; | |
39236c6e | 1871 | int err = 0; |
316670eb A |
1872 | |
1873 | IFCQ_LOCK_ASSERT_HELD(ifq); | |
316670eb A |
1874 | |
1875 | if (!tr->set) { | |
1876 | tr->level = qif->qif_throttle; | |
0a7de745 | 1877 | return 0; |
316670eb A |
1878 | } |
1879 | ||
0a7de745 A |
1880 | if (tr->level == qif->qif_throttle) { |
1881 | return EALREADY; | |
1882 | } | |
316670eb A |
1883 | |
1884 | /* Current throttling levels only involve BK_SYS class */ | |
1885 | cl = ifq->ifcq_disc_slots[SCIDX_BK_SYS].cl; | |
1886 | ||
1887 | switch (tr->level) { | |
1888 | case IFNET_THROTTLE_OFF: | |
1889 | err = qfq_resumeq(qif, cl); | |
1890 | break; | |
1891 | ||
1892 | case IFNET_THROTTLE_OPPORTUNISTIC: | |
1893 | err = qfq_suspendq(qif, cl); | |
1894 | break; | |
1895 | ||
1896 | default: | |
1897 | VERIFY(0); | |
1898 | /* NOTREACHED */ | |
1899 | } | |
1900 | ||
1901 | if (err == 0 || err == ENXIO) { | |
1902 | if (pktsched_verbose) { | |
1903 | log(LOG_DEBUG, "%s: %s throttling level %sset %d->%d\n", | |
1904 | if_name(QFQIF_IFP(qif)), qfq_style(qif), | |
1905 | (err == 0) ? "" : "lazy ", qif->qif_throttle, | |
1906 | tr->level); | |
1907 | } | |
1908 | qif->qif_throttle = tr->level; | |
0a7de745 | 1909 | if (err != 0) { |
316670eb | 1910 | err = 0; |
0a7de745 | 1911 | } else { |
316670eb | 1912 | qfq_purgeq(qif, cl, 0, NULL, NULL); |
0a7de745 | 1913 | } |
316670eb A |
1914 | } else { |
1915 | log(LOG_ERR, "%s: %s unable to set throttling level " | |
1916 | "%d->%d [error=%d]\n", if_name(QFQIF_IFP(qif)), | |
1917 | qfq_style(qif), qif->qif_throttle, tr->level, err); | |
1918 | } | |
1919 | ||
0a7de745 | 1920 | return err; |
316670eb A |
1921 | } |
1922 | ||
1923 | static int | |
1924 | qfq_resumeq(struct qfq_if *qif, struct qfq_class *cl) | |
1925 | { | |
1926 | struct ifclassq *ifq = qif->qif_ifq; | |
1927 | int err = 0; | |
5ba3f43e A |
1928 | #if !MACH_ASSERT |
1929 | #pragma unused(ifq) | |
1930 | #endif | |
316670eb A |
1931 | IFCQ_LOCK_ASSERT_HELD(ifq); |
1932 | ||
0a7de745 | 1933 | if (q_is_sfb(&cl->cl_q) && cl->cl_sfb != NULL) { |
316670eb | 1934 | err = sfb_suspendq(cl->cl_sfb, &cl->cl_q, FALSE); |
0a7de745 | 1935 | } |
316670eb | 1936 | |
0a7de745 | 1937 | if (err == 0) { |
316670eb | 1938 | qstate(&cl->cl_q) = QS_RUNNING; |
0a7de745 | 1939 | } |
316670eb | 1940 | |
0a7de745 | 1941 | return err; |
316670eb A |
1942 | } |
1943 | ||
1944 | static int | |
1945 | qfq_suspendq(struct qfq_if *qif, struct qfq_class *cl) | |
1946 | { | |
1947 | struct ifclassq *ifq = qif->qif_ifq; | |
1948 | int err = 0; | |
5ba3f43e A |
1949 | #if !MACH_ASSERT |
1950 | #pragma unused(ifq) | |
1951 | #endif | |
316670eb A |
1952 | IFCQ_LOCK_ASSERT_HELD(ifq); |
1953 | ||
316670eb A |
1954 | if (q_is_sfb(&cl->cl_q)) { |
1955 | if (cl->cl_sfb != NULL) { | |
1956 | err = sfb_suspendq(cl->cl_sfb, &cl->cl_q, TRUE); | |
1957 | } else { | |
1958 | VERIFY(cl->cl_flags & QFCF_LAZY); | |
0a7de745 | 1959 | err = ENXIO; /* delayed throttling */ |
316670eb A |
1960 | } |
1961 | } | |
1962 | ||
0a7de745 | 1963 | if (err == 0 || err == ENXIO) { |
316670eb | 1964 | qstate(&cl->cl_q) = QS_SUSPENDED; |
0a7de745 | 1965 | } |
316670eb | 1966 | |
0a7de745 | 1967 | return err; |
316670eb | 1968 | } |