blob: 1fe9b15f4e70e385d68d2eda8097d42fa4a5cbf7 [file] [log] [blame]
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001/*
2 * q_rsvp.c RSVP filter.
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 *
11 */
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 "rt_names.h"
24#include "utils.h"
25#include "tc_util.h"
26
27static void explain(void)
28{
29 fprintf(stderr, "Usage: ... rsvp ipproto PROTOCOL session DST[/PORT | GPI ]\n");
Phil Sutter0a83e1e2015-10-23 19:21:17 +020030 fprintf(stderr, " [ sender SRC[/PORT | GPI ] ]\n");
Jamal Hadi Salim863ecb02014-10-06 07:41:21 -040031 fprintf(stderr, " [ classid CLASSID ] [ action ACTION_SPEC ]\n");
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +000032 fprintf(stderr, " [ tunnelid ID ] [ tunnel ID skip NUMBER ]\n");
33 fprintf(stderr, "Where: GPI := { flowlabel NUMBER | spi/ah SPI | spi/esp SPI |\n");
34 fprintf(stderr, " u{8|16|32} NUMBER mask MASK at OFFSET}\n");
Jamal Hadi Salim863ecb02014-10-06 07:41:21 -040035 fprintf(stderr, " ACTION_SPEC := ... look at individual actions\n");
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +000036 fprintf(stderr, " FILTERID := X:Y\n");
PJ Waskiewicze9acc242008-02-13 03:49:09 -080037 fprintf(stderr, "\nNOTE: CLASSID is parsed as hexadecimal input.\n");
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +000038}
39
Stephen Hemmingerd1f28cf2013-02-12 11:09:03 -080040static int get_addr_and_pi(int *argc_p, char ***argv_p, inet_prefix * addr,
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +000041 struct tc_rsvp_pinfo *pinfo, int dir, int family)
42{
43 int argc = *argc_p;
44 char **argv = *argv_p;
45 char *p = strchr(*argv, '/');
46 struct tc_rsvp_gpi *pi = dir ? &pinfo->dpi : &pinfo->spi;
47
48 if (p) {
49 __u16 tmp;
50
51 if (get_u16(&tmp, p+1, 0))
52 return -1;
53
54 if (dir == 0) {
55 /* Source port: u16 at offset 0 */
56 pi->key = htonl(((__u32)tmp)<<16);
57 pi->mask = htonl(0xFFFF0000);
58 } else {
59 /* Destination port: u16 at offset 2 */
60 pi->key = htonl(((__u32)tmp));
61 pi->mask = htonl(0x0000FFFF);
62 }
63 pi->offset = 0;
64 *p = 0;
65 }
66 if (get_addr_1(addr, *argv, family))
67 return -1;
68 if (p)
69 *p = '/';
70
71 argc--; argv++;
72
73 if (pi->mask || argc <= 0)
74 goto done;
75
76 if (strcmp(*argv, "spi/ah") == 0 ||
77 strcmp(*argv, "gpi/ah") == 0) {
78 __u32 gpi;
79 NEXT_ARG();
80 if (get_u32(&gpi, *argv, 0))
81 return -1;
82 pi->mask = htonl(0xFFFFFFFF);
83 pi->key = htonl(gpi);
84 pi->offset = 4;
85 if (pinfo->protocol == 0)
86 pinfo->protocol = IPPROTO_AH;
87 argc--; argv++;
88 } else if (strcmp(*argv, "spi/esp") == 0 ||
89 strcmp(*argv, "gpi/esp") == 0) {
90 __u32 gpi;
91 NEXT_ARG();
92 if (get_u32(&gpi, *argv, 0))
93 return -1;
94 pi->mask = htonl(0xFFFFFFFF);
95 pi->key = htonl(gpi);
96 pi->offset = 0;
97 if (pinfo->protocol == 0)
98 pinfo->protocol = IPPROTO_ESP;
99 argc--; argv++;
100 } else if (strcmp(*argv, "flowlabel") == 0) {
101 __u32 flabel;
102 NEXT_ARG();
103 if (get_u32(&flabel, *argv, 0))
104 return -1;
105 if (family != AF_INET6)
106 return -1;
107 pi->mask = htonl(0x000FFFFF);
108 pi->key = htonl(flabel) & pi->mask;
109 pi->offset = -40;
110 argc--; argv++;
111 } else if (strcmp(*argv, "u32") == 0 ||
112 strcmp(*argv, "u16") == 0 ||
113 strcmp(*argv, "u8") == 0) {
114 int sz = 1;
115 __u32 tmp;
116 __u32 mask = 0xff;
117 if (strcmp(*argv, "u32") == 0) {
118 sz = 4;
119 mask = 0xffff;
120 } else if (strcmp(*argv, "u16") == 0) {
121 mask = 0xffffffff;
122 sz = 2;
123 }
124 NEXT_ARG();
125 if (get_u32(&tmp, *argv, 0))
126 return -1;
127 argc--; argv++;
128 if (strcmp(*argv, "mask") == 0) {
129 NEXT_ARG();
130 if (get_u32(&mask, *argv, 16))
131 return -1;
132 argc--; argv++;
133 }
134 if (strcmp(*argv, "at") == 0) {
135 NEXT_ARG();
136 if (get_integer(&pi->offset, *argv, 0))
137 return -1;
138 argc--; argv++;
139 }
140 if (sz == 1) {
141 if ((pi->offset & 3) == 0) {
142 mask <<= 24;
143 tmp <<= 24;
144 } else if ((pi->offset & 3) == 1) {
145 mask <<= 16;
146 tmp <<= 16;
147 } else if ((pi->offset & 3) == 3) {
148 mask <<= 8;
149 tmp <<= 8;
150 }
151 } else if (sz == 2) {
152 if ((pi->offset & 3) == 0) {
153 mask <<= 16;
154 tmp <<= 16;
155 }
156 }
157 pi->offset &= ~3;
158 pi->mask = htonl(mask);
159 pi->key = htonl(tmp) & pi->mask;
160 }
161
162done:
163 *argc_p = argc;
164 *argv_p = argv;
165 return 0;
166}
167
168
169static int rsvp_parse_opt(struct filter_util *qu, char *handle, int argc, char **argv, struct nlmsghdr *n)
170{
171 int family = strcmp(qu->id, "rsvp") == 0 ? AF_INET : AF_INET6;
172 struct tc_rsvp_pinfo pinfo;
173 struct tc_police tp;
174 struct tcmsg *t = NLMSG_DATA(n);
175 int pinfo_ok = 0;
176 struct rtattr *tail;
177
178 memset(&pinfo, 0, sizeof(pinfo));
179 memset(&tp, 0, sizeof(tp));
180
181 if (handle) {
182 if (get_u32(&t->tcm_handle, handle, 0)) {
183 fprintf(stderr, "Illegal \"handle\"\n");
184 return -1;
185 }
186 }
187
188 if (argc == 0)
189 return 0;
190
4!tgraf228569c2005-01-18 01:24:18 +0000191 tail = NLMSG_TAIL(n);
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000192 addattr_l(n, 4096, TCA_OPTIONS, NULL, 0);
193
194 while (argc > 0) {
195 if (matches(*argv, "session") == 0) {
196 inet_prefix addr;
197 NEXT_ARG();
198 if (get_addr_and_pi(&argc, &argv, &addr, &pinfo, 1, family)) {
199 fprintf(stderr, "Illegal \"session\"\n");
200 return -1;
201 }
202 addattr_l(n, 4096, TCA_RSVP_DST, &addr.data, addr.bytelen);
203 if (pinfo.dpi.mask || pinfo.protocol)
204 pinfo_ok++;
205 continue;
206 } else if (matches(*argv, "sender") == 0 ||
207 matches(*argv, "flowspec") == 0) {
208 inet_prefix addr;
209 NEXT_ARG();
210 if (get_addr_and_pi(&argc, &argv, &addr, &pinfo, 0, family)) {
211 fprintf(stderr, "Illegal \"sender\"\n");
212 return -1;
213 }
214 addattr_l(n, 4096, TCA_RSVP_SRC, &addr.data, addr.bytelen);
215 if (pinfo.spi.mask || pinfo.protocol)
216 pinfo_ok++;
217 continue;
218 } else if (matches("ipproto", *argv) == 0) {
219 int num;
220 NEXT_ARG();
221 num = inet_proto_a2n(*argv);
222 if (num < 0) {
223 fprintf(stderr, "Illegal \"ipproto\"\n");
224 return -1;
225 }
226 pinfo.protocol = num;
227 pinfo_ok++;
228 } else if (matches(*argv, "classid") == 0 ||
229 strcmp(*argv, "flowid") == 0) {
230 unsigned handle;
231 NEXT_ARG();
232 if (get_tc_classid(&handle, *argv)) {
233 fprintf(stderr, "Illegal \"classid\"\n");
234 return -1;
235 }
236 addattr_l(n, 4096, TCA_RSVP_CLASSID, &handle, 4);
237 } else if (strcmp(*argv, "tunnelid") == 0) {
238 unsigned tid;
239 NEXT_ARG();
240 if (get_unsigned(&tid, *argv, 0)) {
241 fprintf(stderr, "Illegal \"tunnelid\"\n");
242 return -1;
243 }
244 pinfo.tunnelid = tid;
245 pinfo_ok++;
246 } else if (strcmp(*argv, "tunnel") == 0) {
247 unsigned tid;
248 NEXT_ARG();
249 if (get_unsigned(&tid, *argv, 0)) {
250 fprintf(stderr, "Illegal \"tunnel\"\n");
251 return -1;
252 }
253 addattr_l(n, 4096, TCA_RSVP_CLASSID, &tid, 4);
254 NEXT_ARG();
255 if (strcmp(*argv, "skip") == 0) {
256 NEXT_ARG();
257 }
258 if (get_unsigned(&tid, *argv, 0)) {
259 fprintf(stderr, "Illegal \"skip\"\n");
260 return -1;
261 }
262 pinfo.tunnelhdr = tid;
263 pinfo_ok++;
Jamal Hadi Salim10f5a372014-09-28 12:49:53 -0400264 } else if (matches(*argv, "action") == 0) {
265 NEXT_ARG();
266 if (parse_action(&argc, &argv, TCA_RSVP_ACT, n)) {
267 fprintf(stderr, "Illegal \"action\"\n");
268 return -1;
269 }
270 continue;
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000271 } else if (matches(*argv, "police") == 0) {
272 NEXT_ARG();
273 if (parse_police(&argc, &argv, TCA_RSVP_POLICE, n)) {
274 fprintf(stderr, "Illegal \"police\"\n");
275 return -1;
276 }
277 continue;
278 } else if (strcmp(*argv, "help") == 0) {
279 explain();
280 return -1;
281 } else {
282 fprintf(stderr, "What is \"%s\"?\n", *argv);
283 explain();
284 return -1;
285 }
286 argc--; argv++;
287 }
288
289 if (pinfo_ok)
290 addattr_l(n, 4096, TCA_RSVP_PINFO, &pinfo, sizeof(pinfo));
4!tgraf228569c2005-01-18 01:24:18 +0000291 tail->rta_len = (void *) NLMSG_TAIL(n) - (void *) tail;
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000292 return 0;
293}
294
295static char * sprint_spi(struct tc_rsvp_gpi *pi, int dir, char *buf)
296{
297 if (pi->offset == 0) {
298 if (dir && pi->mask == htonl(0xFFFF)) {
299 snprintf(buf, SPRINT_BSIZE-1, "/%d", htonl(pi->key));
300 return buf;
301 }
302 if (!dir && pi->mask == htonl(0xFFFF0000)) {
303 snprintf(buf, SPRINT_BSIZE-1, "/%d", htonl(pi->key)>>16);
304 return buf;
305 }
306 if (pi->mask == htonl(0xFFFFFFFF)) {
307 snprintf(buf, SPRINT_BSIZE-1, " spi/esp 0x%08x", htonl(pi->key));
308 return buf;
309 }
310 } else if (pi->offset == 4 && pi->mask == htonl(0xFFFFFFFF)) {
311 snprintf(buf, SPRINT_BSIZE-1, " spi/ah 0x%08x", htonl(pi->key));
312 return buf;
313 } else if (pi->offset == -40 && pi->mask == htonl(0x000FFFFF)) {
314 snprintf(buf, SPRINT_BSIZE-1, " flowlabel 0x%05x", htonl(pi->key));
315 return buf;
316 }
317 snprintf(buf, SPRINT_BSIZE-1, " u32 0x%08x mask %08x at %d",
318 htonl(pi->key), htonl(pi->mask), pi->offset);
319 return buf;
320}
321
322static int rsvp_print_opt(struct filter_util *qu, FILE *f, struct rtattr *opt, __u32 handle)
323{
324 int family = strcmp(qu->id, "rsvp") == 0 ? AF_INET : AF_INET6;
325 struct rtattr *tb[TCA_RSVP_MAX+1];
326 struct tc_rsvp_pinfo *pinfo = NULL;
327
328 if (opt == NULL)
329 return 0;
330
4!tgraf3b3ecd32005-01-18 22:11:58 +0000331 parse_rtattr_nested(tb, TCA_RSVP_MAX, opt);
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000332
333 if (handle)
334 fprintf(f, "fh 0x%08x ", handle);
335
336 if (tb[TCA_RSVP_PINFO]) {
337 if (RTA_PAYLOAD(tb[TCA_RSVP_PINFO]) < sizeof(*pinfo))
338 return -1;
339
340 pinfo = RTA_DATA(tb[TCA_RSVP_PINFO]);
341 }
342
343 if (tb[TCA_RSVP_CLASSID]) {
344 SPRINT_BUF(b1);
345 if (!pinfo || pinfo->tunnelhdr == 0)
Stephen Hemmingerff247462012-04-10 08:47:55 -0700346 fprintf(f, "flowid %s ", sprint_tc_classid(rta_getattr_u32(tb[TCA_RSVP_CLASSID]), b1));
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000347 else
Stephen Hemmingerff247462012-04-10 08:47:55 -0700348 fprintf(f, "tunnel %d skip %d ", rta_getattr_u32(tb[TCA_RSVP_CLASSID]), pinfo->tunnelhdr);
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000349 } else if (pinfo && pinfo->tunnelhdr)
350 fprintf(f, "tunnel [BAD] skip %d ", pinfo->tunnelhdr);
351
352 if (tb[TCA_RSVP_DST]) {
353 char buf[128];
354 fprintf(f, "session ");
355 if (inet_ntop(family, RTA_DATA(tb[TCA_RSVP_DST]), buf, sizeof(buf)) == 0)
356 fprintf(f, " [INVALID DADDR] ");
357 else
358 fprintf(f, "%s", buf);
359 if (pinfo && pinfo->dpi.mask) {
360 SPRINT_BUF(b2);
361 fprintf(f, "%s ", sprint_spi(&pinfo->dpi, 1, b2));
362 } else
363 fprintf(f, " ");
364 } else {
365 if (pinfo && pinfo->dpi.mask) {
366 SPRINT_BUF(b2);
367 fprintf(f, "session [NONE]%s ", sprint_spi(&pinfo->dpi, 1, b2));
368 } else
369 fprintf(f, "session NONE ");
370 }
371
372 if (pinfo && pinfo->protocol) {
373 SPRINT_BUF(b1);
374 fprintf(f, "ipproto %s ", inet_proto_n2a(pinfo->protocol, b1, sizeof(b1)));
375 }
376 if (pinfo && pinfo->tunnelid)
377 fprintf(f, "tunnelid %d ", pinfo->tunnelid);
378 if (tb[TCA_RSVP_SRC]) {
379 char buf[128];
380 fprintf(f, "sender ");
381 if (inet_ntop(family, RTA_DATA(tb[TCA_RSVP_SRC]), buf, sizeof(buf)) == 0) {
382 fprintf(f, "[BAD]");
383 } else {
384 fprintf(f, " %s", buf);
385 }
386 if (pinfo && pinfo->spi.mask) {
387 SPRINT_BUF(b2);
388 fprintf(f, "%s ", sprint_spi(&pinfo->spi, 0, b2));
389 } else
390 fprintf(f, " ");
391 } else if (pinfo && pinfo->spi.mask) {
392 SPRINT_BUF(b2);
393 fprintf(f, "sender [NONE]%s ", sprint_spi(&pinfo->spi, 0, b2));
394 }
Jamal Hadi Salim10f5a372014-09-28 12:49:53 -0400395
396 if (tb[TCA_RSVP_ACT]) {
397 tc_print_action(f, tb[TCA_RSVP_ACT]);
398 }
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000399 if (tb[TCA_RSVP_POLICE])
400 tc_print_police(f, tb[TCA_RSVP_POLICE]);
401 return 0;
402}
403
osdl.net!shemminger6b7dff12004-09-28 18:35:49 +0000404struct filter_util rsvp_filter_util = {
405 .id = "rsvp",
406 .parse_fopt = rsvp_parse_opt,
407 .print_fopt = rsvp_print_opt,
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000408};
409
osdl.net!shemminger6b7dff12004-09-28 18:35:49 +0000410struct filter_util rsvp6_filter_util = {
411 .id = "rsvp6",
412 .parse_fopt = rsvp_parse_opt,
413 .print_fopt = rsvp_print_opt,
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000414};