blob: f813badaa3070c97c8de026f0ae4aecb6520be91 [file] [log] [blame]
Eric Dumazetc3524ef2012-05-11 09:49:50 +00001/*
2 * Fair Queue Codel
3 *
Eric Dumazetdf1c7d92015-05-11 10:44:55 -07004 * Copyright (C) 2012,2015 Eric Dumazet <edumazet@google.com>
Eric Dumazetc3524ef2012-05-11 09:49:50 +00005 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions, and the following disclaimer,
11 * without modification.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. The names of the authors may not be used to endorse or promote products
16 * derived from this software without specific prior written permission.
17 *
18 * Alternatively, provided that this notice is retained in full, this
19 * software may be distributed under the terms of the GNU General
20 * Public License ("GPL") version 2, in which case the provisions of the
21 * GPL apply INSTEAD OF those given above.
22 *
23 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
25 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
26 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
27 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
28 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
29 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
30 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
31 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
34 * DAMAGE.
35 *
36 */
37
38#include <stdio.h>
39#include <stdlib.h>
40#include <unistd.h>
41#include <syslog.h>
42#include <fcntl.h>
43#include <sys/socket.h>
44#include <netinet/in.h>
45#include <arpa/inet.h>
46#include <string.h>
47
48#include "utils.h"
49#include "tc_util.h"
50
51static void explain(void)
52{
53 fprintf(stderr, "Usage: ... fq_codel [ limit PACKETS ] [ flows NUMBER ]\n");
Luca Lemmo4733b182016-03-16 17:56:14 +010054 fprintf(stderr, " [ target TIME ] [ interval TIME ]\n");
Eric Dumazetc3524ef2012-05-11 09:49:50 +000055 fprintf(stderr, " [ quantum BYTES ] [ [no]ecn ]\n");
Eric Dumazetdf1c7d92015-05-11 10:44:55 -070056 fprintf(stderr, " [ ce_threshold TIME ]\n");
Eric Dumazetc3524ef2012-05-11 09:49:50 +000057}
58
59static int fq_codel_parse_opt(struct qdisc_util *qu, int argc, char **argv,
60 struct nlmsghdr *n)
61{
Stephen Hemminger32a121c2016-03-21 11:48:36 -070062 unsigned int limit = 0;
63 unsigned int flows = 0;
64 unsigned int target = 0;
65 unsigned int interval = 0;
66 unsigned int quantum = 0;
67 unsigned int ce_threshold = ~0U;
Eric Dumazet4de4b5c2016-06-08 08:42:00 -070068 unsigned int memory = ~0U;
Eric Dumazetc3524ef2012-05-11 09:49:50 +000069 int ecn = -1;
70 struct rtattr *tail;
71
72 while (argc > 0) {
73 if (strcmp(*argv, "limit") == 0) {
74 NEXT_ARG();
75 if (get_unsigned(&limit, *argv, 0)) {
76 fprintf(stderr, "Illegal \"limit\"\n");
77 return -1;
78 }
79 } else if (strcmp(*argv, "flows") == 0) {
80 NEXT_ARG();
81 if (get_unsigned(&flows, *argv, 0)) {
82 fprintf(stderr, "Illegal \"flows\"\n");
83 return -1;
84 }
85 } else if (strcmp(*argv, "quantum") == 0) {
86 NEXT_ARG();
87 if (get_unsigned(&quantum, *argv, 0)) {
88 fprintf(stderr, "Illegal \"quantum\"\n");
89 return -1;
90 }
91 } else if (strcmp(*argv, "target") == 0) {
92 NEXT_ARG();
93 if (get_time(&target, *argv)) {
94 fprintf(stderr, "Illegal \"target\"\n");
95 return -1;
96 }
Eric Dumazetdf1c7d92015-05-11 10:44:55 -070097 } else if (strcmp(*argv, "ce_threshold") == 0) {
98 NEXT_ARG();
99 if (get_time(&ce_threshold, *argv)) {
100 fprintf(stderr, "Illegal \"ce_threshold\"\n");
101 return -1;
102 }
Eric Dumazet4de4b5c2016-06-08 08:42:00 -0700103 } else if (strcmp(*argv, "memory_limit") == 0) {
104 NEXT_ARG();
105 if (get_size(&memory, *argv)) {
106 fprintf(stderr, "Illegal \"memory_limit\"\n");
107 return -1;
108 }
Eric Dumazetc3524ef2012-05-11 09:49:50 +0000109 } else if (strcmp(*argv, "interval") == 0) {
110 NEXT_ARG();
111 if (get_time(&interval, *argv)) {
112 fprintf(stderr, "Illegal \"interval\"\n");
113 return -1;
114 }
115 } else if (strcmp(*argv, "ecn") == 0) {
116 ecn = 1;
117 } else if (strcmp(*argv, "noecn") == 0) {
118 ecn = 0;
119 } else if (strcmp(*argv, "help") == 0) {
120 explain();
121 return -1;
122 } else {
123 fprintf(stderr, "What is \"%s\"?\n", *argv);
124 explain();
125 return -1;
126 }
127 argc--; argv++;
128 }
129
130 tail = NLMSG_TAIL(n);
131 addattr_l(n, 1024, TCA_OPTIONS, NULL, 0);
132 if (limit)
133 addattr_l(n, 1024, TCA_FQ_CODEL_LIMIT, &limit, sizeof(limit));
134 if (flows)
135 addattr_l(n, 1024, TCA_FQ_CODEL_FLOWS, &flows, sizeof(flows));
136 if (quantum)
137 addattr_l(n, 1024, TCA_FQ_CODEL_QUANTUM, &quantum, sizeof(quantum));
138 if (interval)
139 addattr_l(n, 1024, TCA_FQ_CODEL_INTERVAL, &interval, sizeof(interval));
140 if (target)
141 addattr_l(n, 1024, TCA_FQ_CODEL_TARGET, &target, sizeof(target));
142 if (ecn != -1)
143 addattr_l(n, 1024, TCA_FQ_CODEL_ECN, &ecn, sizeof(ecn));
Eric Dumazetdf1c7d92015-05-11 10:44:55 -0700144 if (ce_threshold != ~0U)
145 addattr_l(n, 1024, TCA_FQ_CODEL_CE_THRESHOLD,
146 &ce_threshold, sizeof(ce_threshold));
Eric Dumazet4de4b5c2016-06-08 08:42:00 -0700147 if (memory != ~0U)
148 addattr_l(n, 1024, TCA_FQ_CODEL_MEMORY_LIMIT,
149 &memory, sizeof(memory));
150
Eric Dumazetc3524ef2012-05-11 09:49:50 +0000151 tail->rta_len = (void *) NLMSG_TAIL(n) - (void *) tail;
152 return 0;
153}
154
155static int fq_codel_print_opt(struct qdisc_util *qu, FILE *f, struct rtattr *opt)
156{
157 struct rtattr *tb[TCA_FQ_CODEL_MAX + 1];
Stephen Hemminger32a121c2016-03-21 11:48:36 -0700158 unsigned int limit;
159 unsigned int flows;
160 unsigned int interval;
161 unsigned int target;
162 unsigned int ecn;
163 unsigned int quantum;
164 unsigned int ce_threshold;
Eric Dumazet4de4b5c2016-06-08 08:42:00 -0700165 unsigned int memory_limit;
Stephen Hemminger32a121c2016-03-21 11:48:36 -0700166
Eric Dumazetc3524ef2012-05-11 09:49:50 +0000167 SPRINT_BUF(b1);
168
169 if (opt == NULL)
170 return 0;
171
172 parse_rtattr_nested(tb, TCA_FQ_CODEL_MAX, opt);
173
174 if (tb[TCA_FQ_CODEL_LIMIT] &&
175 RTA_PAYLOAD(tb[TCA_FQ_CODEL_LIMIT]) >= sizeof(__u32)) {
176 limit = rta_getattr_u32(tb[TCA_FQ_CODEL_LIMIT]);
177 fprintf(f, "limit %up ", limit);
178 }
179 if (tb[TCA_FQ_CODEL_FLOWS] &&
180 RTA_PAYLOAD(tb[TCA_FQ_CODEL_FLOWS]) >= sizeof(__u32)) {
181 flows = rta_getattr_u32(tb[TCA_FQ_CODEL_FLOWS]);
182 fprintf(f, "flows %u ", flows);
183 }
184 if (tb[TCA_FQ_CODEL_QUANTUM] &&
185 RTA_PAYLOAD(tb[TCA_FQ_CODEL_QUANTUM]) >= sizeof(__u32)) {
186 quantum = rta_getattr_u32(tb[TCA_FQ_CODEL_QUANTUM]);
187 fprintf(f, "quantum %u ", quantum);
188 }
189 if (tb[TCA_FQ_CODEL_TARGET] &&
190 RTA_PAYLOAD(tb[TCA_FQ_CODEL_TARGET]) >= sizeof(__u32)) {
191 target = rta_getattr_u32(tb[TCA_FQ_CODEL_TARGET]);
192 fprintf(f, "target %s ", sprint_time(target, b1));
193 }
Eric Dumazetdf1c7d92015-05-11 10:44:55 -0700194 if (tb[TCA_FQ_CODEL_CE_THRESHOLD] &&
195 RTA_PAYLOAD(tb[TCA_FQ_CODEL_CE_THRESHOLD]) >= sizeof(__u32)) {
196 ce_threshold = rta_getattr_u32(tb[TCA_FQ_CODEL_CE_THRESHOLD]);
197 fprintf(f, "ce_threshold %s ", sprint_time(ce_threshold, b1));
198 }
Eric Dumazetc3524ef2012-05-11 09:49:50 +0000199 if (tb[TCA_FQ_CODEL_INTERVAL] &&
200 RTA_PAYLOAD(tb[TCA_FQ_CODEL_INTERVAL]) >= sizeof(__u32)) {
201 interval = rta_getattr_u32(tb[TCA_FQ_CODEL_INTERVAL]);
202 fprintf(f, "interval %s ", sprint_time(interval, b1));
203 }
Eric Dumazet4de4b5c2016-06-08 08:42:00 -0700204 if (tb[TCA_FQ_CODEL_MEMORY_LIMIT] &&
205 RTA_PAYLOAD(tb[TCA_FQ_CODEL_MEMORY_LIMIT]) >= sizeof(__u32)) {
206 memory_limit = rta_getattr_u32(tb[TCA_FQ_CODEL_MEMORY_LIMIT]);
207
208 fprintf(f, "memory_limit %s ", sprint_size(memory_limit, b1));
209 }
Eric Dumazetc3524ef2012-05-11 09:49:50 +0000210 if (tb[TCA_FQ_CODEL_ECN] &&
211 RTA_PAYLOAD(tb[TCA_FQ_CODEL_ECN]) >= sizeof(__u32)) {
212 ecn = rta_getattr_u32(tb[TCA_FQ_CODEL_ECN]);
213 if (ecn)
214 fprintf(f, "ecn ");
215 }
216
217 return 0;
218}
219
220static int fq_codel_print_xstats(struct qdisc_util *qu, FILE *f,
221 struct rtattr *xstats)
222{
Eric Dumazetdf1c7d92015-05-11 10:44:55 -0700223 struct tc_fq_codel_xstats _st, *st;
Stephen Hemminger32a121c2016-03-21 11:48:36 -0700224
Eric Dumazetc3524ef2012-05-11 09:49:50 +0000225 SPRINT_BUF(b1);
226
227 if (xstats == NULL)
228 return 0;
229
Eric Dumazetc3524ef2012-05-11 09:49:50 +0000230 st = RTA_DATA(xstats);
Eric Dumazetdf1c7d92015-05-11 10:44:55 -0700231 if (RTA_PAYLOAD(xstats) < sizeof(*st)) {
232 memset(&_st, 0, sizeof(_st));
233 memcpy(&_st, st, RTA_PAYLOAD(xstats));
234 st = &_st;
235 }
Eric Dumazetc3524ef2012-05-11 09:49:50 +0000236 if (st->type == TCA_FQ_CODEL_XSTATS_QDISC) {
237 fprintf(f, " maxpacket %u drop_overlimit %u new_flow_count %u ecn_mark %u",
238 st->qdisc_stats.maxpacket,
239 st->qdisc_stats.drop_overlimit,
240 st->qdisc_stats.new_flow_count,
241 st->qdisc_stats.ecn_mark);
Eric Dumazetdf1c7d92015-05-11 10:44:55 -0700242 if (st->qdisc_stats.ce_mark)
243 fprintf(f, " ce_mark %u", st->qdisc_stats.ce_mark);
Eric Dumazet4de4b5c2016-06-08 08:42:00 -0700244 if (st->qdisc_stats.memory_usage)
245 fprintf(f, " memory_used %u", st->qdisc_stats.memory_usage);
246 if (st->qdisc_stats.drop_overmemory)
247 fprintf(f, " drop_overmemory %u", st->qdisc_stats.drop_overmemory);
Eric Dumazetc3524ef2012-05-11 09:49:50 +0000248 fprintf(f, "\n new_flows_len %u old_flows_len %u",
249 st->qdisc_stats.new_flows_len,
250 st->qdisc_stats.old_flows_len);
251 }
252 if (st->type == TCA_FQ_CODEL_XSTATS_CLASS) {
253 fprintf(f, " deficit %d count %u lastcount %u ldelay %s",
254 st->class_stats.deficit,
255 st->class_stats.count,
256 st->class_stats.lastcount,
257 sprint_time(st->class_stats.ldelay, b1));
258 if (st->class_stats.dropping) {
259 fprintf(f, " dropping");
260 if (st->class_stats.drop_next < 0)
261 fprintf(f, " drop_next -%s",
262 sprint_time(-st->class_stats.drop_next, b1));
263 else
264 fprintf(f, " drop_next %s",
265 sprint_time(st->class_stats.drop_next, b1));
266 }
267 }
268 return 0;
269
270}
271
272struct qdisc_util fq_codel_qdisc_util = {
273 .id = "fq_codel",
274 .parse_qopt = fq_codel_parse_opt,
275 .print_qopt = fq_codel_print_opt,
276 .print_xstats = fq_codel_print_xstats,
277};