blob: a28928a85a0b8c04e9279fec512afd14a727e25c [file] [log] [blame]
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001/*
2 * q_prio.c PRIO.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
8 *
9 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
10 *
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +000011 */
12
13#include <stdio.h>
14#include <stdlib.h>
15#include <unistd.h>
16#include <syslog.h>
17#include <fcntl.h>
18#include <sys/socket.h>
19#include <netinet/in.h>
20#include <arpa/inet.h>
21#include <string.h>
22
23#include "utils.h"
24#include "tc_util.h"
25
26static void explain(void)
27{
PJ Waskiewicz292ce962007-08-14 11:21:24 -070028 fprintf(stderr, "Usage: ... prio bands NUMBER priomap P1 P2...[multiqueue]\n");
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +000029}
30
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +000031static int prio_parse_opt(struct qdisc_util *qu, int argc, char **argv, struct nlmsghdr *n)
32{
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +000033 int pmap_mode = 0;
34 int idx = 0;
Stephen Hemminger32a121c2016-03-21 11:48:36 -070035 struct tc_prio_qopt opt = {3, { 1, 2, 2, 2, 1, 2, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1 } };
PJ Waskiewicz292ce962007-08-14 11:21:24 -070036 struct rtattr *nest;
37 unsigned char mq = 0;
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +000038
39 while (argc > 0) {
40 if (strcmp(*argv, "bands") == 0) {
41 if (pmap_mode)
42 explain();
43 NEXT_ARG();
44 if (get_integer(&opt.bands, *argv, 10)) {
45 fprintf(stderr, "Illegal \"bands\"\n");
46 return -1;
47 }
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +000048 } else if (strcmp(*argv, "priomap") == 0) {
49 if (pmap_mode) {
50 fprintf(stderr, "Error: duplicate priomap\n");
51 return -1;
52 }
53 pmap_mode = 1;
PJ Waskiewicz292ce962007-08-14 11:21:24 -070054 } else if (strcmp(*argv, "multiqueue") == 0) {
55 mq = 1;
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +000056 } else if (strcmp(*argv, "help") == 0) {
57 explain();
58 return -1;
59 } else {
Stephen Hemminger32a121c2016-03-21 11:48:36 -070060 unsigned int band;
61
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +000062 if (!pmap_mode) {
63 fprintf(stderr, "What is \"%s\"?\n", *argv);
64 explain();
65 return -1;
66 }
67 if (get_unsigned(&band, *argv, 10)) {
68 fprintf(stderr, "Illegal \"priomap\" element\n");
69 return -1;
70 }
Li Wei3c4f5452012-06-18 14:33:38 +080071 if (band >= opt.bands) {
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +000072 fprintf(stderr, "\"priomap\" element is out of bands\n");
73 return -1;
74 }
75 if (idx > TC_PRIO_MAX) {
76 fprintf(stderr, "\"priomap\" index > TC_PRIO_MAX=%u\n", TC_PRIO_MAX);
77 return -1;
78 }
79 opt.priomap[idx++] = band;
80 }
81 argc--; argv++;
82 }
83
84/*
85 if (pmap_mode) {
86 for (; idx < TC_PRIO_MAX; idx++)
87 opt.priomap[idx] = opt.priomap[TC_PRIO_BESTEFFORT];
88 }
89*/
PJ Waskiewicz292ce962007-08-14 11:21:24 -070090 nest = addattr_nest_compat(n, 1024, TCA_OPTIONS, &opt, sizeof(opt));
91 if (mq)
92 addattr_l(n, 1024, TCA_PRIO_MQ, NULL, 0);
93 addattr_nest_compat_end(n, nest);
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +000094 return 0;
95}
96
osdl.org!shemminger78d55b62004-06-02 20:22:08 +000097int prio_print_opt(struct qdisc_util *qu, FILE *f, struct rtattr *opt)
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +000098{
99 int i;
100 struct tc_prio_qopt *qopt;
PJ Waskiewicz292ce962007-08-14 11:21:24 -0700101 struct rtattr *tb[TCA_PRIO_MAX+1];
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000102
103 if (opt == NULL)
104 return 0;
105
PJ Waskiewicz292ce962007-08-14 11:21:24 -0700106 if (parse_rtattr_nested_compat(tb, TCA_PRIO_MAX, opt, qopt,
107 sizeof(*qopt)))
Stephen Hemminger32a121c2016-03-21 11:48:36 -0700108 return -1;
PJ Waskiewicz292ce962007-08-14 11:21:24 -0700109
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000110 fprintf(f, "bands %u priomap ", qopt->bands);
Stephen Hemminger32a121c2016-03-21 11:48:36 -0700111 for (i = 0; i <= TC_PRIO_MAX; i++)
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000112 fprintf(f, " %d", qopt->priomap[i]);
PJ Waskiewicz292ce962007-08-14 11:21:24 -0700113
114 if (tb[TCA_PRIO_MQ])
115 fprintf(f, " multiqueue: %s ",
Stephen Hemmingerff247462012-04-10 08:47:55 -0700116 rta_getattr_u8(tb[TCA_PRIO_MQ]) ? "on" : "off");
PJ Waskiewicz292ce962007-08-14 11:21:24 -0700117
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000118 return 0;
119}
120
net[shemminger]!kaber95812b52004-09-28 18:35:49 +0000121struct qdisc_util prio_qdisc_util = {
Stephen Hemminger32a121c2016-03-21 11:48:36 -0700122 .id = "prio",
osdl.net!shemmingerf2f99e22004-08-31 17:45:21 +0000123 .parse_qopt = prio_parse_opt,
124 .print_qopt = prio_print_opt,
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000125};