]> git.proxmox.com Git - mirror_iproute2.git/blob - tc/f_tcindex.c
bridge: fdb: add support for src_vni option
[mirror_iproute2.git] / tc / f_tcindex.c
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3 * f_tcindex.c Traffic control index filter
4 *
5 * Written 1998,1999 by Werner Almesberger
6 */
7
8 #include <stdio.h>
9 #include <stdlib.h>
10 #include <unistd.h>
11 #include <fcntl.h>
12 #include <string.h>
13 #include <netinet/in.h>
14
15 #include "utils.h"
16 #include "tc_util.h"
17
18 static void explain(void)
19 {
20 fprintf(stderr," Usage: ... tcindex [ hash SIZE ] [ mask MASK ] [ shift SHIFT ]\n");
21 fprintf(stderr, " [ pass_on | fall_through ]\n");
22 fprintf(stderr," [ classid CLASSID ] [ action ACTION_SPEC ]\n");
23 }
24
25 static int tcindex_parse_opt(struct filter_util *qu, char *handle, int argc,
26 char **argv, struct nlmsghdr *n)
27 {
28 struct tcmsg *t = NLMSG_DATA(n);
29 struct rtattr *tail;
30 char *end;
31
32 if (handle) {
33 t->tcm_handle = strtoul(handle, &end, 0);
34 if (*end) {
35 fprintf(stderr, "Illegal filter ID\n");
36 return -1;
37 }
38 }
39 if (!argc) return 0;
40 tail = addattr_nest(n, 4096, TCA_OPTIONS);
41 while (argc) {
42 if (!strcmp(*argv, "hash")) {
43 int hash;
44
45 NEXT_ARG();
46 hash = strtoul(*argv, &end, 0);
47 if (*end || !hash || hash > 0x10000) {
48 explain();
49 return -1;
50 }
51 addattr_l(n, 4096, TCA_TCINDEX_HASH, &hash,
52 sizeof(hash));
53 } else if (!strcmp(*argv,"mask")) {
54 __u16 mask;
55
56 NEXT_ARG();
57 mask = strtoul(*argv, &end, 0);
58 if (*end) {
59 explain();
60 return -1;
61 }
62 addattr_l(n, 4096, TCA_TCINDEX_MASK, &mask,
63 sizeof(mask));
64 } else if (!strcmp(*argv,"shift")) {
65 int shift;
66
67 NEXT_ARG();
68 shift = strtoul(*argv, &end, 0);
69 if (*end) {
70 explain();
71 return -1;
72 }
73 addattr_l(n, 4096, TCA_TCINDEX_SHIFT, &shift,
74 sizeof(shift));
75 } else if (!strcmp(*argv,"fall_through")) {
76 int value = 1;
77
78 addattr_l(n, 4096, TCA_TCINDEX_FALL_THROUGH, &value,
79 sizeof(value));
80 } else if (!strcmp(*argv,"pass_on")) {
81 int value = 0;
82
83 addattr_l(n, 4096, TCA_TCINDEX_FALL_THROUGH, &value,
84 sizeof(value));
85 } else if (!strcmp(*argv,"classid")) {
86 __u32 handle;
87
88 NEXT_ARG();
89 if (get_tc_classid(&handle, *argv)) {
90 fprintf(stderr, "Illegal \"classid\"\n");
91 return -1;
92 }
93 addattr_l(n, 4096, TCA_TCINDEX_CLASSID, &handle, 4);
94 } else if (!strcmp(*argv,"police")) {
95 NEXT_ARG();
96 if (parse_police(&argc, &argv, TCA_TCINDEX_POLICE, n)) {
97 fprintf(stderr, "Illegal \"police\"\n");
98 return -1;
99 }
100 continue;
101 } else if (!strcmp(*argv,"action")) {
102 NEXT_ARG();
103 if (parse_action(&argc, &argv, TCA_TCINDEX_ACT, n)) {
104 fprintf(stderr, "Illegal \"action\"\n");
105 return -1;
106 }
107 continue;
108 } else {
109 explain();
110 return -1;
111 }
112 argc--;
113 argv++;
114 }
115 addattr_nest_end(n, tail);
116 return 0;
117 }
118
119
120 static int tcindex_print_opt(struct filter_util *qu, FILE *f,
121 struct rtattr *opt, __u32 handle)
122 {
123 struct rtattr *tb[TCA_TCINDEX_MAX+1];
124
125 if (opt == NULL)
126 return 0;
127
128 parse_rtattr_nested(tb, TCA_TCINDEX_MAX, opt);
129
130 if (handle != ~0) fprintf(f, "handle 0x%04x ", handle);
131 if (tb[TCA_TCINDEX_HASH]) {
132 __u16 hash;
133
134 if (RTA_PAYLOAD(tb[TCA_TCINDEX_HASH]) < sizeof(hash))
135 return -1;
136 hash = rta_getattr_u16(tb[TCA_TCINDEX_HASH]);
137 fprintf(f, "hash %d ", hash);
138 }
139 if (tb[TCA_TCINDEX_MASK]) {
140 __u16 mask;
141
142 if (RTA_PAYLOAD(tb[TCA_TCINDEX_MASK]) < sizeof(mask))
143 return -1;
144 mask = rta_getattr_u16(tb[TCA_TCINDEX_MASK]);
145 fprintf(f, "mask 0x%04x ", mask);
146 }
147 if (tb[TCA_TCINDEX_SHIFT]) {
148 int shift;
149
150 if (RTA_PAYLOAD(tb[TCA_TCINDEX_SHIFT]) < sizeof(shift))
151 return -1;
152 shift = rta_getattr_u32(tb[TCA_TCINDEX_SHIFT]);
153 fprintf(f, "shift %d ", shift);
154 }
155 if (tb[TCA_TCINDEX_FALL_THROUGH]) {
156 int fall_through;
157
158 if (RTA_PAYLOAD(tb[TCA_TCINDEX_FALL_THROUGH]) <
159 sizeof(fall_through))
160 return -1;
161 fall_through = rta_getattr_u32(tb[TCA_TCINDEX_FALL_THROUGH]);
162 fprintf(f, fall_through ? "fall_through " : "pass_on ");
163 }
164 if (tb[TCA_TCINDEX_CLASSID]) {
165 SPRINT_BUF(b1);
166 fprintf(f, "classid %s ", sprint_tc_classid(*(__u32 *)
167 RTA_DATA(tb[TCA_TCINDEX_CLASSID]), b1));
168 }
169 if (tb[TCA_TCINDEX_POLICE]) {
170 fprintf(f, "\n");
171 tc_print_police(f, tb[TCA_TCINDEX_POLICE]);
172 }
173 if (tb[TCA_TCINDEX_ACT]) {
174 fprintf(f, "\n");
175 tc_print_action(f, tb[TCA_TCINDEX_ACT], 0);
176 }
177 return 0;
178 }
179
180 struct filter_util tcindex_filter_util = {
181 .id = "tcindex",
182 .parse_fopt = tcindex_parse_opt,
183 .print_fopt = tcindex_print_opt,
184 };