]> git.proxmox.com Git - mirror_iproute2.git/blob - tc/m_action.c
Merge branch 'master' into net-next
[mirror_iproute2.git] / tc / m_action.c
1 /*
2 * m_action.c Action Management
3 *
4 * This program is free software; you can distribute 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: J Hadi Salim (hadi@cyberus.ca)
10 *
11 * TODO:
12 * - parse to be passed a filedescriptor for logging purposes
13 *
14 */
15
16 #include <stdio.h>
17 #include <stdlib.h>
18 #include <unistd.h>
19 #include <syslog.h>
20 #include <fcntl.h>
21 #include <sys/socket.h>
22 #include <netinet/in.h>
23 #include <arpa/inet.h>
24 #include <string.h>
25 #include <dlfcn.h>
26
27 #include "utils.h"
28 #include "tc_common.h"
29 #include "tc_util.h"
30
31 static struct action_util *action_list;
32 #ifdef CONFIG_GACT
33 int gact_ld; /* f*ckin backward compatibility */
34 #endif
35 int tab_flush;
36
37 static void act_usage(void)
38 {
39 /*XXX: In the near future add a action->print_help to improve
40 * usability
41 * This would mean new tc will not be backward compatible
42 * with any action .so from the old days. But if someone really
43 * does that, they would know how to fix this ..
44 *
45 */
46 fprintf(stderr, "usage: tc actions <ACTSPECOP>*\n");
47 fprintf(stderr,
48 "Where: \tACTSPECOP := ACR | GD | FL\n"
49 "\tACR := add | change | replace <ACTSPEC>*\n"
50 "\tGD := get | delete | <ACTISPEC>*\n"
51 "\tFL := ls | list | flush | <ACTNAMESPEC>\n"
52 "\tACTNAMESPEC := action <ACTNAME>\n"
53 "\tACTISPEC := <ACTNAMESPEC> <INDEXSPEC>\n"
54 "\tACTSPEC := action <ACTDETAIL> [INDEXSPEC]\n"
55 "\tINDEXSPEC := index <32 bit indexvalue>\n"
56 "\tACTDETAIL := <ACTNAME> <ACTPARAMS>\n"
57 "\t\tExample ACTNAME is gact, mirred, bpf, etc\n"
58 "\t\tEach action has its own parameters (ACTPARAMS)\n"
59 "\n");
60
61 exit(-1);
62 }
63
64 static int print_noaopt(struct action_util *au, FILE *f, struct rtattr *opt)
65 {
66 if (opt && RTA_PAYLOAD(opt))
67 fprintf(f, "[Unknown action, optlen=%u] ",
68 (unsigned int) RTA_PAYLOAD(opt));
69 return 0;
70 }
71
72 static int parse_noaopt(struct action_util *au, int *argc_p, char ***argv_p, int code, struct nlmsghdr *n)
73 {
74 int argc = *argc_p;
75 char **argv = *argv_p;
76
77 if (argc) {
78 fprintf(stderr, "Unknown action \"%s\", hence option \"%s\" is unparsable\n", au->id, *argv);
79 } else {
80 fprintf(stderr, "Unknown action \"%s\"\n", au->id);
81 }
82 return -1;
83 }
84
85 static struct action_util *get_action_kind(char *str)
86 {
87 static void *aBODY;
88 void *dlh;
89 char buf[256];
90 struct action_util *a;
91 #ifdef CONFIG_GACT
92 int looked4gact = 0;
93 restart_s:
94 #endif
95 for (a = action_list; a; a = a->next) {
96 if (strcmp(a->id, str) == 0)
97 return a;
98 }
99
100 snprintf(buf, sizeof(buf), "%s/m_%s.so", get_tc_lib(), str);
101 dlh = dlopen(buf, RTLD_LAZY | RTLD_GLOBAL);
102 if (dlh == NULL) {
103 dlh = aBODY;
104 if (dlh == NULL) {
105 dlh = aBODY = dlopen(NULL, RTLD_LAZY);
106 if (dlh == NULL)
107 goto noexist;
108 }
109 }
110
111 snprintf(buf, sizeof(buf), "%s_action_util", str);
112 a = dlsym(dlh, buf);
113 if (a == NULL)
114 goto noexist;
115
116 reg:
117 a->next = action_list;
118 action_list = a;
119 return a;
120
121 noexist:
122 #ifdef CONFIG_GACT
123 if (!looked4gact) {
124 looked4gact = 1;
125 strcpy(str, "gact");
126 goto restart_s;
127 }
128 #endif
129 a = calloc(1, sizeof(*a));
130 if (a) {
131 strncpy(a->id, "noact", 15);
132 a->parse_aopt = parse_noaopt;
133 a->print_aopt = print_noaopt;
134 goto reg;
135 }
136 return a;
137 }
138
139 static int
140 new_cmd(char **argv)
141 {
142 if ((matches(*argv, "change") == 0) ||
143 (matches(*argv, "replace") == 0) ||
144 (matches(*argv, "delete") == 0) ||
145 (matches(*argv, "get") == 0) ||
146 (matches(*argv, "add") == 0))
147 return 1;
148
149 return 0;
150
151 }
152
153 int
154 parse_action(int *argc_p, char ***argv_p, int tca_id, struct nlmsghdr *n)
155 {
156 int argc = *argc_p;
157 char **argv = *argv_p;
158 struct rtattr *tail, *tail2;
159 char k[16];
160 int ok = 0;
161 int eap = 0; /* expect action parameters */
162
163 int ret = 0;
164 int prio = 0;
165
166 if (argc <= 0)
167 return -1;
168
169 tail = tail2 = NLMSG_TAIL(n);
170
171 addattr_l(n, MAX_MSG, tca_id, NULL, 0);
172
173 while (argc > 0) {
174
175 memset(k, 0, sizeof(k));
176
177 if (strcmp(*argv, "action") == 0) {
178 argc--;
179 argv++;
180 eap = 1;
181 #ifdef CONFIG_GACT
182 if (!gact_ld) {
183 get_action_kind("gact");
184 }
185 #endif
186 continue;
187 } else if (strcmp(*argv, "flowid") == 0) {
188 break;
189 } else if (strcmp(*argv, "classid") == 0) {
190 break;
191 } else if (strcmp(*argv, "help") == 0) {
192 return -1;
193 } else if (new_cmd(argv)) {
194 goto done0;
195 } else {
196 struct action_util *a = NULL;
197
198 strncpy(k, *argv, sizeof(k) - 1);
199 eap = 0;
200 if (argc > 0) {
201 a = get_action_kind(k);
202 } else {
203 done0:
204 if (ok)
205 break;
206 else
207 goto done;
208 }
209
210 if (a == NULL) {
211 goto bad_val;
212 }
213
214 tail = NLMSG_TAIL(n);
215 addattr_l(n, MAX_MSG, ++prio, NULL, 0);
216 addattr_l(n, MAX_MSG, TCA_ACT_KIND, k, strlen(k) + 1);
217
218 ret = a->parse_aopt(a, &argc, &argv, TCA_ACT_OPTIONS, n);
219
220 if (ret < 0) {
221 fprintf(stderr, "bad action parsing\n");
222 goto bad_val;
223 }
224 tail->rta_len = (void *) NLMSG_TAIL(n) - (void *) tail;
225 ok++;
226 }
227
228 }
229
230 if (eap > 0) {
231 fprintf(stderr, "bad action empty %d\n", eap);
232 goto bad_val;
233 }
234
235 tail2->rta_len = (void *) NLMSG_TAIL(n) - (void *) tail2;
236
237 done:
238 *argc_p = argc;
239 *argv_p = argv;
240 return 0;
241 bad_val:
242 /* no need to undo things, returning from here should
243 * cause enough pain */
244 fprintf(stderr, "parse_action: bad value (%d:%s)!\n", argc, *argv);
245 return -1;
246 }
247
248 static int
249 tc_print_one_action(FILE *f, struct rtattr *arg)
250 {
251
252 struct rtattr *tb[TCA_ACT_MAX + 1];
253 int err = 0;
254 struct action_util *a = NULL;
255
256 if (arg == NULL)
257 return -1;
258
259 parse_rtattr_nested(tb, TCA_ACT_MAX, arg);
260
261 if (tb[TCA_ACT_KIND] == NULL) {
262 fprintf(stderr, "NULL Action!\n");
263 return -1;
264 }
265
266
267 a = get_action_kind(RTA_DATA(tb[TCA_ACT_KIND]));
268 if (a == NULL)
269 return err;
270
271 err = a->print_aopt(a, f, tb[TCA_ACT_OPTIONS]);
272
273 if (err < 0)
274 return err;
275
276 if (show_stats && tb[TCA_ACT_STATS]) {
277 fprintf(f, "\tAction statistics:\n");
278 print_tcstats2_attr(f, tb[TCA_ACT_STATS], "\t", NULL);
279 fprintf(f, "\n");
280 }
281
282 return 0;
283 }
284
285 static int
286 tc_print_action_flush(FILE *f, const struct rtattr *arg)
287 {
288
289 struct rtattr *tb[TCA_MAX + 1];
290 int err = 0;
291 struct action_util *a = NULL;
292 __u32 *delete_count = 0;
293
294 parse_rtattr_nested(tb, TCA_MAX, arg);
295
296 if (tb[TCA_KIND] == NULL) {
297 fprintf(stderr, "NULL Action!\n");
298 return -1;
299 }
300
301 a = get_action_kind(RTA_DATA(tb[TCA_KIND]));
302 if (a == NULL)
303 return err;
304
305 delete_count = RTA_DATA(tb[TCA_FCNT]);
306 fprintf(f, " %s (%d entries)\n", a->id, *delete_count);
307 tab_flush = 0;
308 return 0;
309 }
310
311 int
312 tc_print_action(FILE *f, const struct rtattr *arg)
313 {
314
315 int i;
316 struct rtattr *tb[TCA_ACT_MAX_PRIO + 1];
317
318 if (arg == NULL)
319 return 0;
320
321 parse_rtattr_nested(tb, TCA_ACT_MAX_PRIO, arg);
322
323 if (tab_flush && NULL != tb[0] && NULL == tb[1])
324 return tc_print_action_flush(f, tb[0]);
325
326 for (i = 0; i < TCA_ACT_MAX_PRIO; i++) {
327 if (tb[i]) {
328 fprintf(f, "\n\taction order %d: ", i);
329 if (tc_print_one_action(f, tb[i]) < 0) {
330 fprintf(f, "Error printing action\n");
331 }
332 }
333
334 }
335
336 return 0;
337 }
338
339 int print_action(const struct sockaddr_nl *who,
340 struct nlmsghdr *n,
341 void *arg)
342 {
343 FILE *fp = (FILE *)arg;
344 struct tcamsg *t = NLMSG_DATA(n);
345 int len = n->nlmsg_len;
346 struct rtattr *tb[TCAA_MAX+1];
347
348 len -= NLMSG_LENGTH(sizeof(*t));
349
350 if (len < 0) {
351 fprintf(stderr, "Wrong len %d\n", len);
352 return -1;
353 }
354
355 parse_rtattr(tb, TCAA_MAX, TA_RTA(t), len);
356
357 if (tb[TCA_ACT_TAB] == NULL) {
358 if (n->nlmsg_type != RTM_GETACTION)
359 fprintf(stderr, "print_action: NULL kind\n");
360 return -1;
361 }
362
363 if (n->nlmsg_type == RTM_DELACTION) {
364 if (n->nlmsg_flags & NLM_F_ROOT) {
365 fprintf(fp, "Flushed table ");
366 tab_flush = 1;
367 } else {
368 fprintf(fp, "deleted action ");
369 }
370 }
371
372 if (n->nlmsg_type == RTM_NEWACTION)
373 fprintf(fp, "Added action ");
374 tc_print_action(fp, tb[TCA_ACT_TAB]);
375
376 return 0;
377 }
378
379 static int tc_action_gd(int cmd, unsigned int flags, int *argc_p, char ***argv_p)
380 {
381 char k[16];
382 struct action_util *a = NULL;
383 int argc = *argc_p;
384 char **argv = *argv_p;
385 int prio = 0;
386 int ret = 0;
387 __u32 i;
388 struct rtattr *tail;
389 struct rtattr *tail2;
390 struct nlmsghdr *ans = NULL;
391
392 struct {
393 struct nlmsghdr n;
394 struct tcamsg t;
395 char buf[MAX_MSG];
396 } req = {
397 .n.nlmsg_len = NLMSG_LENGTH(sizeof(struct tcamsg)),
398 .n.nlmsg_flags = NLM_F_REQUEST | flags,
399 .n.nlmsg_type = cmd,
400 .t.tca_family = AF_UNSPEC,
401 };
402
403 argc -= 1;
404 argv += 1;
405
406
407 tail = NLMSG_TAIL(&req.n);
408 addattr_l(&req.n, MAX_MSG, TCA_ACT_TAB, NULL, 0);
409
410 while (argc > 0) {
411 if (strcmp(*argv, "action") == 0) {
412 argc--;
413 argv++;
414 continue;
415 } else if (strcmp(*argv, "help") == 0) {
416 return -1;
417 }
418
419 strncpy(k, *argv, sizeof(k) - 1);
420 a = get_action_kind(k);
421 if (a == NULL) {
422 fprintf(stderr, "Error: non existent action: %s\n", k);
423 ret = -1;
424 goto bad_val;
425 }
426 if (strcmp(a->id, k) != 0) {
427 fprintf(stderr, "Error: non existent action: %s\n", k);
428 ret = -1;
429 goto bad_val;
430 }
431
432 argc -= 1;
433 argv += 1;
434 if (argc <= 0) {
435 fprintf(stderr, "Error: no index specified action: %s\n", k);
436 ret = -1;
437 goto bad_val;
438 }
439
440 if (matches(*argv, "index") == 0) {
441 NEXT_ARG();
442 if (get_u32(&i, *argv, 10)) {
443 fprintf(stderr, "Illegal \"index\"\n");
444 ret = -1;
445 goto bad_val;
446 }
447 argc -= 1;
448 argv += 1;
449 } else {
450 fprintf(stderr, "Error: no index specified action: %s\n", k);
451 ret = -1;
452 goto bad_val;
453 }
454
455 tail2 = NLMSG_TAIL(&req.n);
456 addattr_l(&req.n, MAX_MSG, ++prio, NULL, 0);
457 addattr_l(&req.n, MAX_MSG, TCA_ACT_KIND, k, strlen(k) + 1);
458 addattr32(&req.n, MAX_MSG, TCA_ACT_INDEX, i);
459 tail2->rta_len = (void *) NLMSG_TAIL(&req.n) - (void *) tail2;
460
461 }
462
463 tail->rta_len = (void *) NLMSG_TAIL(&req.n) - (void *) tail;
464
465 req.n.nlmsg_seq = rth.dump = ++rth.seq;
466 if (cmd == RTM_GETACTION)
467 ans = &req.n;
468
469 if (rtnl_talk(&rth, &req.n, ans, MAX_MSG) < 0) {
470 fprintf(stderr, "We have an error talking to the kernel\n");
471 return 1;
472 }
473
474 if (ans && print_action(NULL, &req.n, (void *)stdout) < 0) {
475 fprintf(stderr, "Dump terminated\n");
476 return 1;
477 }
478
479 *argc_p = argc;
480 *argv_p = argv;
481 bad_val:
482 return ret;
483 }
484
485 static int tc_action_modify(int cmd, unsigned int flags, int *argc_p, char ***argv_p)
486 {
487 int argc = *argc_p;
488 char **argv = *argv_p;
489 int ret = 0;
490 struct {
491 struct nlmsghdr n;
492 struct tcamsg t;
493 char buf[MAX_MSG];
494 } req = {
495 .n.nlmsg_len = NLMSG_LENGTH(sizeof(struct tcamsg)),
496 .n.nlmsg_flags = NLM_F_REQUEST | flags,
497 .n.nlmsg_type = cmd,
498 .t.tca_family = AF_UNSPEC,
499 };
500 struct rtattr *tail = NLMSG_TAIL(&req.n);
501
502 argc -= 1;
503 argv += 1;
504 if (parse_action(&argc, &argv, TCA_ACT_TAB, &req.n)) {
505 fprintf(stderr, "Illegal \"action\"\n");
506 return -1;
507 }
508 tail->rta_len = (void *) NLMSG_TAIL(&req.n) - (void *) tail;
509
510 if (rtnl_talk(&rth, &req.n, NULL, 0) < 0) {
511 fprintf(stderr, "We have an error talking to the kernel\n");
512 ret = -1;
513 }
514
515 *argc_p = argc;
516 *argv_p = argv;
517
518 return ret;
519 }
520
521 static int tc_act_list_or_flush(int argc, char **argv, int event)
522 {
523 int ret = 0, prio = 0, msg_size = 0;
524 char k[16];
525 struct rtattr *tail, *tail2;
526 struct action_util *a = NULL;
527 struct {
528 struct nlmsghdr n;
529 struct tcamsg t;
530 char buf[MAX_MSG];
531 } req = {
532 .n.nlmsg_len = NLMSG_LENGTH(sizeof(struct tcamsg)),
533 .t.tca_family = AF_UNSPEC,
534 };
535
536 tail = NLMSG_TAIL(&req.n);
537 addattr_l(&req.n, MAX_MSG, TCA_ACT_TAB, NULL, 0);
538 tail2 = NLMSG_TAIL(&req.n);
539
540 strncpy(k, *argv, sizeof(k) - 1);
541 #ifdef CONFIG_GACT
542 if (!gact_ld) {
543 get_action_kind("gact");
544 }
545 #endif
546 a = get_action_kind(k);
547 if (a == NULL) {
548 fprintf(stderr, "bad action %s\n", k);
549 goto bad_val;
550 }
551 if (strcmp(a->id, k) != 0) {
552 fprintf(stderr, "bad action %s\n", k);
553 goto bad_val;
554 }
555 strncpy(k, *argv, sizeof(k) - 1);
556
557 addattr_l(&req.n, MAX_MSG, ++prio, NULL, 0);
558 addattr_l(&req.n, MAX_MSG, TCA_ACT_KIND, k, strlen(k) + 1);
559 tail2->rta_len = (void *) NLMSG_TAIL(&req.n) - (void *) tail2;
560 tail->rta_len = (void *) NLMSG_TAIL(&req.n) - (void *) tail;
561
562 msg_size = NLMSG_ALIGN(req.n.nlmsg_len) - NLMSG_ALIGN(sizeof(struct nlmsghdr));
563
564 if (event == RTM_GETACTION) {
565 if (rtnl_dump_request(&rth, event, (void *)&req.t, msg_size) < 0) {
566 perror("Cannot send dump request");
567 return 1;
568 }
569 ret = rtnl_dump_filter(&rth, print_action, stdout);
570 }
571
572 if (event == RTM_DELACTION) {
573 req.n.nlmsg_len = NLMSG_ALIGN(req.n.nlmsg_len);
574 req.n.nlmsg_type = RTM_DELACTION;
575 req.n.nlmsg_flags |= NLM_F_ROOT;
576 req.n.nlmsg_flags |= NLM_F_REQUEST;
577 if (rtnl_talk(&rth, &req.n, NULL, 0) < 0) {
578 fprintf(stderr, "We have an error flushing\n");
579 return 1;
580 }
581
582 }
583
584 bad_val:
585
586 return ret;
587 }
588
589 int do_action(int argc, char **argv)
590 {
591
592 int ret = 0;
593
594 while (argc > 0) {
595
596 if (matches(*argv, "add") == 0) {
597 ret = tc_action_modify(RTM_NEWACTION, NLM_F_EXCL|NLM_F_CREATE, &argc, &argv);
598 } else if (matches(*argv, "change") == 0 ||
599 matches(*argv, "replace") == 0) {
600 ret = tc_action_modify(RTM_NEWACTION, NLM_F_CREATE|NLM_F_REPLACE, &argc, &argv);
601 } else if (matches(*argv, "delete") == 0) {
602 argc -= 1;
603 argv += 1;
604 ret = tc_action_gd(RTM_DELACTION, 0, &argc, &argv);
605 } else if (matches(*argv, "get") == 0) {
606 argc -= 1;
607 argv += 1;
608 ret = tc_action_gd(RTM_GETACTION, 0, &argc, &argv);
609 } else if (matches(*argv, "list") == 0 || matches(*argv, "show") == 0
610 || matches(*argv, "lst") == 0) {
611 if (argc <= 2) {
612 act_usage();
613 return -1;
614 }
615 return tc_act_list_or_flush(argc-2, argv+2, RTM_GETACTION);
616 } else if (matches(*argv, "flush") == 0) {
617 if (argc <= 2) {
618 act_usage();
619 return -1;
620 }
621 return tc_act_list_or_flush(argc-2, argv+2, RTM_DELACTION);
622 } else if (matches(*argv, "help") == 0) {
623 act_usage();
624 return -1;
625 } else {
626
627 ret = -1;
628 }
629
630 if (ret < 0) {
631 fprintf(stderr, "Command \"%s\" is unknown, try \"tc actions help\".\n", *argv);
632 return -1;
633 }
634 }
635
636 return 0;
637 }