]> git.proxmox.com Git - mirror_iproute2.git/blob - tc/m_action.c
Merge branch 'iproute2-master' into iproute2-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 <stdbool.h>
19 #include <unistd.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,
73 char ***argv_p, int code, struct nlmsghdr *n)
74 {
75 int argc = *argc_p;
76 char **argv = *argv_p;
77
78 if (argc)
79 fprintf(stderr,
80 "Unknown action \"%s\", hence option \"%s\" is unparsable\n",
81 au->id, *argv);
82 else
83 fprintf(stderr, "Unknown action \"%s\"\n", au->id);
84
85 return -1;
86 }
87
88 static struct action_util *get_action_kind(char *str)
89 {
90 static void *aBODY;
91 void *dlh;
92 char buf[256];
93 struct action_util *a;
94 #ifdef CONFIG_GACT
95 int looked4gact = 0;
96 restart_s:
97 #endif
98 for (a = action_list; a; a = a->next) {
99 if (strcmp(a->id, str) == 0)
100 return a;
101 }
102
103 snprintf(buf, sizeof(buf), "%s/m_%s.so", get_tc_lib(), str);
104 dlh = dlopen(buf, RTLD_LAZY | RTLD_GLOBAL);
105 if (dlh == NULL) {
106 dlh = aBODY;
107 if (dlh == NULL) {
108 dlh = aBODY = dlopen(NULL, RTLD_LAZY);
109 if (dlh == NULL)
110 goto noexist;
111 }
112 }
113
114 snprintf(buf, sizeof(buf), "%s_action_util", str);
115 a = dlsym(dlh, buf);
116 if (a == NULL)
117 goto noexist;
118
119 reg:
120 a->next = action_list;
121 action_list = a;
122 return a;
123
124 noexist:
125 #ifdef CONFIG_GACT
126 if (!looked4gact) {
127 looked4gact = 1;
128 strcpy(str, "gact");
129 goto restart_s;
130 }
131 #endif
132 a = calloc(1, sizeof(*a));
133 if (a) {
134 strncpy(a->id, "noact", 15);
135 a->parse_aopt = parse_noaopt;
136 a->print_aopt = print_noaopt;
137 goto reg;
138 }
139 return a;
140 }
141
142 static bool
143 new_cmd(char **argv)
144 {
145 return (matches(*argv, "change") == 0) ||
146 (matches(*argv, "replace") == 0) ||
147 (matches(*argv, "delete") == 0) ||
148 (matches(*argv, "get") == 0) ||
149 (matches(*argv, "add") == 0);
150 }
151
152 int parse_action(int *argc_p, char ***argv_p, int tca_id, struct nlmsghdr *n)
153 {
154 int argc = *argc_p;
155 char **argv = *argv_p;
156 struct rtattr *tail, *tail2;
157 char k[FILTER_NAMESZ];
158 int act_ck_len = 0;
159 int ok = 0;
160 int eap = 0; /* expect action parameters */
161
162 int ret = 0;
163 int prio = 0;
164 unsigned char act_ck[TC_COOKIE_MAX_SIZE];
165
166 if (argc <= 0)
167 return -1;
168
169 tail2 = addattr_nest(n, MAX_MSG, tca_id);
170
171 while (argc > 0) {
172
173 memset(k, 0, sizeof(k));
174
175 if (strcmp(*argv, "action") == 0) {
176 argc--;
177 argv++;
178 eap = 1;
179 #ifdef CONFIG_GACT
180 if (!gact_ld)
181 get_action_kind("gact");
182 #endif
183 continue;
184 } else if (strcmp(*argv, "flowid") == 0) {
185 break;
186 } else if (strcmp(*argv, "classid") == 0) {
187 break;
188 } else if (strcmp(*argv, "help") == 0) {
189 return -1;
190 } else if (new_cmd(argv)) {
191 goto done0;
192 } else {
193 struct action_util *a = NULL;
194
195 if (!action_a2n(*argv, NULL, false))
196 strncpy(k, "gact", sizeof(k) - 1);
197 else
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 = addattr_nest(n, MAX_MSG, ++prio);
215 addattr_l(n, MAX_MSG, TCA_ACT_KIND, k, strlen(k) + 1);
216
217 ret = a->parse_aopt(a, &argc, &argv, TCA_ACT_OPTIONS,
218 n);
219
220 if (ret < 0) {
221 fprintf(stderr, "bad action parsing\n");
222 goto bad_val;
223 }
224
225 if (*argv && strcmp(*argv, "cookie") == 0) {
226 size_t slen;
227
228 NEXT_ARG();
229 slen = strlen(*argv);
230 if (slen > TC_COOKIE_MAX_SIZE * 2) {
231 char cookie_err_m[128];
232
233 snprintf(cookie_err_m, 128,
234 "%zd Max allowed size %d",
235 slen, TC_COOKIE_MAX_SIZE*2);
236 invarg(cookie_err_m, *argv);
237 }
238
239 if (hex2mem(*argv, act_ck, slen / 2) < 0)
240 invarg("cookie must be a hex string\n",
241 *argv);
242
243 act_ck_len = slen / 2;
244 argc--;
245 argv++;
246 }
247
248 if (act_ck_len)
249 addattr_l(n, MAX_MSG, TCA_ACT_COOKIE,
250 &act_ck, act_ck_len);
251
252 addattr_nest_end(n, tail);
253 ok++;
254 }
255 }
256
257 if (eap > 0) {
258 fprintf(stderr, "bad action empty %d\n", eap);
259 goto bad_val;
260 }
261
262 addattr_nest_end(n, tail2);
263
264 done:
265 *argc_p = argc;
266 *argv_p = argv;
267 return 0;
268 bad_val:
269 /* no need to undo things, returning from here should
270 * cause enough pain
271 */
272 fprintf(stderr, "parse_action: bad value (%d:%s)!\n", argc, *argv);
273 return -1;
274 }
275
276 static int tc_print_one_action(FILE *f, struct rtattr *arg)
277 {
278
279 struct rtattr *tb[TCA_ACT_MAX + 1];
280 int err = 0;
281 struct action_util *a = NULL;
282
283 if (arg == NULL)
284 return -1;
285
286 parse_rtattr_nested(tb, TCA_ACT_MAX, arg);
287
288 if (tb[TCA_ACT_KIND] == NULL) {
289 fprintf(stderr, "NULL Action!\n");
290 return -1;
291 }
292
293
294 a = get_action_kind(RTA_DATA(tb[TCA_ACT_KIND]));
295 if (a == NULL)
296 return err;
297
298 err = a->print_aopt(a, f, tb[TCA_ACT_OPTIONS]);
299
300 if (err < 0)
301 return err;
302
303 if (show_stats && tb[TCA_ACT_STATS]) {
304 print_string(PRINT_FP, NULL, "\tAction statistics:\n", NULL);
305 open_json_object("stats");
306 print_tcstats2_attr(f, tb[TCA_ACT_STATS], "\t", NULL);
307 close_json_object();
308 print_string(PRINT_FP, NULL, "\n", NULL);
309 }
310 if (tb[TCA_ACT_COOKIE]) {
311 int strsz = RTA_PAYLOAD(tb[TCA_ACT_COOKIE]);
312 char b1[strsz * 2 + 1];
313
314 print_string(PRINT_ANY, "cookie", "\tcookie %s\n",
315 hexstring_n2a(RTA_DATA(tb[TCA_ACT_COOKIE]),
316 strsz, b1, sizeof(b1)));
317 }
318
319 return 0;
320 }
321
322 static int
323 tc_print_action_flush(FILE *f, const struct rtattr *arg)
324 {
325
326 struct rtattr *tb[TCA_MAX + 1];
327 int err = 0;
328 struct action_util *a = NULL;
329 __u32 *delete_count = 0;
330
331 parse_rtattr_nested(tb, TCA_MAX, arg);
332
333 if (tb[TCA_KIND] == NULL) {
334 fprintf(stderr, "NULL Action!\n");
335 return -1;
336 }
337
338 a = get_action_kind(RTA_DATA(tb[TCA_KIND]));
339 if (a == NULL)
340 return err;
341
342 delete_count = RTA_DATA(tb[TCA_FCNT]);
343 fprintf(f, " %s (%d entries)\n", a->id, *delete_count);
344 tab_flush = 0;
345 return 0;
346 }
347
348 int
349 tc_print_action(FILE *f, const struct rtattr *arg, unsigned short tot_acts)
350 {
351
352 int i;
353
354 if (arg == NULL)
355 return 0;
356
357 if (!tot_acts)
358 tot_acts = TCA_ACT_MAX_PRIO;
359
360 struct rtattr *tb[tot_acts + 1];
361
362 parse_rtattr_nested(tb, tot_acts, arg);
363
364 if (tab_flush && NULL != tb[0] && NULL == tb[1])
365 return tc_print_action_flush(f, tb[0]);
366
367 open_json_array(PRINT_JSON, "actions");
368 for (i = 0; i < tot_acts; i++) {
369 if (tb[i]) {
370 open_json_object(NULL);
371 print_uint(PRINT_ANY, "order",
372 "\n\taction order %u: ", i);
373 if (tc_print_one_action(f, tb[i]) < 0) {
374 print_string(PRINT_FP, NULL,
375 "Error printing action\n", NULL);
376 }
377 close_json_object();
378 }
379
380 }
381 close_json_array(PRINT_JSON, NULL);
382
383 return 0;
384 }
385
386 int print_action(const struct sockaddr_nl *who,
387 struct nlmsghdr *n,
388 void *arg)
389 {
390 FILE *fp = (FILE *)arg;
391 struct tcamsg *t = NLMSG_DATA(n);
392 int len = n->nlmsg_len;
393 __u32 *tot_acts = NULL;
394 struct rtattr *tb[TCA_ROOT_MAX+1];
395
396 len -= NLMSG_LENGTH(sizeof(*t));
397
398 if (len < 0) {
399 fprintf(stderr, "Wrong len %d\n", len);
400 return -1;
401 }
402
403 parse_rtattr(tb, TCA_ROOT_MAX, TA_RTA(t), len);
404
405 if (tb[TCA_ROOT_COUNT])
406 tot_acts = RTA_DATA(tb[TCA_ROOT_COUNT]);
407
408 fprintf(fp, "total acts %d\n", tot_acts ? *tot_acts:0);
409 if (tb[TCA_ACT_TAB] == NULL) {
410 if (n->nlmsg_type != RTM_GETACTION)
411 fprintf(stderr, "print_action: NULL kind\n");
412 return -1;
413 }
414
415 if (n->nlmsg_type == RTM_DELACTION) {
416 if (n->nlmsg_flags & NLM_F_ROOT) {
417 fprintf(fp, "Flushed table ");
418 tab_flush = 1;
419 } else {
420 fprintf(fp, "Deleted action ");
421 }
422 }
423
424 if (n->nlmsg_type == RTM_NEWACTION) {
425 if ((n->nlmsg_flags & NLM_F_CREATE) &&
426 !(n->nlmsg_flags & NLM_F_REPLACE)) {
427 fprintf(fp, "Added action ");
428 } else if (n->nlmsg_flags & NLM_F_REPLACE) {
429 fprintf(fp, "Replaced action ");
430 }
431 }
432
433
434 tc_print_action(fp, tb[TCA_ACT_TAB], tot_acts ? *tot_acts:0);
435
436 return 0;
437 }
438
439 static int tc_action_gd(int cmd, unsigned int flags,
440 int *argc_p, char ***argv_p)
441 {
442 char k[FILTER_NAMESZ];
443 struct action_util *a = NULL;
444 int argc = *argc_p;
445 char **argv = *argv_p;
446 int prio = 0;
447 int ret = 0;
448 __u32 i = 0;
449 struct rtattr *tail;
450 struct rtattr *tail2;
451 struct nlmsghdr *ans = NULL;
452
453 struct {
454 struct nlmsghdr n;
455 struct tcamsg t;
456 char buf[MAX_MSG];
457 } req = {
458 .n.nlmsg_len = NLMSG_LENGTH(sizeof(struct tcamsg)),
459 .n.nlmsg_flags = NLM_F_REQUEST | flags,
460 .n.nlmsg_type = cmd,
461 .t.tca_family = AF_UNSPEC,
462 };
463
464 argc -= 1;
465 argv += 1;
466
467
468 tail = addattr_nest(&req.n, MAX_MSG, TCA_ACT_TAB);
469
470 while (argc > 0) {
471 if (strcmp(*argv, "action") == 0) {
472 argc--;
473 argv++;
474 continue;
475 } else if (strcmp(*argv, "help") == 0) {
476 return -1;
477 }
478
479 strncpy(k, *argv, sizeof(k) - 1);
480 a = get_action_kind(k);
481 if (a == NULL) {
482 fprintf(stderr, "Error: non existent action: %s\n", k);
483 ret = -1;
484 goto bad_val;
485 }
486 if (strcmp(a->id, k) != 0) {
487 fprintf(stderr, "Error: non existent action: %s\n", k);
488 ret = -1;
489 goto bad_val;
490 }
491
492 argc -= 1;
493 argv += 1;
494 if (argc <= 0) {
495 fprintf(stderr,
496 "Error: no index specified action: %s\n", k);
497 ret = -1;
498 goto bad_val;
499 }
500
501 if (matches(*argv, "index") == 0) {
502 NEXT_ARG();
503 if (get_u32(&i, *argv, 10)) {
504 fprintf(stderr, "Illegal \"index\"\n");
505 ret = -1;
506 goto bad_val;
507 }
508 argc -= 1;
509 argv += 1;
510 } else {
511 fprintf(stderr,
512 "Error: no index specified action: %s\n", k);
513 ret = -1;
514 goto bad_val;
515 }
516
517 tail2 = addattr_nest(&req.n, MAX_MSG, ++prio);
518 addattr_l(&req.n, MAX_MSG, TCA_ACT_KIND, k, strlen(k) + 1);
519 if (i > 0)
520 addattr32(&req.n, MAX_MSG, TCA_ACT_INDEX, i);
521 addattr_nest_end(&req.n, tail2);
522
523 }
524
525 addattr_nest_end(&req.n, tail);
526
527 req.n.nlmsg_seq = rth.dump = ++rth.seq;
528
529 if (rtnl_talk(&rth, &req.n, cmd == RTM_DELACTION ? NULL : &ans) < 0) {
530 fprintf(stderr, "We have an error talking to the kernel\n");
531 return 1;
532 }
533
534 if (cmd == RTM_GETACTION && print_action(NULL, ans, stdout) < 0) {
535 fprintf(stderr, "Dump terminated\n");
536 free(ans);
537 return 1;
538 }
539 free(ans);
540
541 *argc_p = argc;
542 *argv_p = argv;
543 bad_val:
544 return ret;
545 }
546
547 struct tc_action_req {
548 struct nlmsghdr n;
549 struct tcamsg t;
550 char buf[MAX_MSG];
551 };
552
553 static int tc_action_modify(int cmd, unsigned int flags,
554 int *argc_p, char ***argv_p,
555 void *buf, size_t buflen)
556 {
557 struct tc_action_req *req, action_req;
558 char **argv = *argv_p;
559 struct rtattr *tail;
560 int argc = *argc_p;
561 struct iovec iov;
562 int ret = 0;
563
564 if (buf) {
565 req = buf;
566 if (buflen < sizeof (struct tc_action_req)) {
567 fprintf(stderr, "buffer is too small: %zu\n", buflen);
568 return -1;
569 }
570 } else {
571 memset(&action_req, 0, sizeof (struct tc_action_req));
572 req = &action_req;
573 }
574
575 req->n.nlmsg_len = NLMSG_LENGTH(sizeof(struct tcamsg));
576 req->n.nlmsg_flags = NLM_F_REQUEST | flags;
577 req->n.nlmsg_type = cmd;
578 req->t.tca_family = AF_UNSPEC;
579 tail = NLMSG_TAIL(&req->n);
580
581 argc -= 1;
582 argv += 1;
583 if (parse_action(&argc, &argv, TCA_ACT_TAB, &req->n)) {
584 fprintf(stderr, "Illegal \"action\"\n");
585 return -1;
586 }
587 tail->rta_len = (void *) NLMSG_TAIL(&req->n) - (void *) tail;
588
589 *argc_p = argc;
590 *argv_p = argv;
591
592 if (buf)
593 return 0;
594
595 iov.iov_base = &req->n;
596 iov.iov_len = req->n.nlmsg_len;
597 if (rtnl_talk_iov(&rth, &iov, 1, NULL) < 0) {
598 fprintf(stderr, "We have an error talking to the kernel\n");
599 ret = -1;
600 }
601
602 return ret;
603 }
604
605 static int tc_act_list_or_flush(int *argc_p, char ***argv_p, int event)
606 {
607 struct rtattr *tail, *tail2, *tail3, *tail4;
608 int ret = 0, prio = 0, msg_size = 0;
609 struct action_util *a = NULL;
610 struct nla_bitfield32 flag_select = { 0 };
611 char **argv = *argv_p;
612 __u32 msec_since = 0;
613 int argc = *argc_p;
614 char k[FILTER_NAMESZ];
615 struct {
616 struct nlmsghdr n;
617 struct tcamsg t;
618 char buf[MAX_MSG];
619 } req = {
620 .n.nlmsg_len = NLMSG_LENGTH(sizeof(struct tcamsg)),
621 .t.tca_family = AF_UNSPEC,
622 };
623
624 tail = addattr_nest(&req.n, MAX_MSG, TCA_ACT_TAB);
625 tail2 = NLMSG_TAIL(&req.n);
626
627 strncpy(k, *argv, sizeof(k) - 1);
628 #ifdef CONFIG_GACT
629 if (!gact_ld)
630 get_action_kind("gact");
631
632 #endif
633 a = get_action_kind(k);
634 if (a == NULL) {
635 fprintf(stderr, "bad action %s\n", k);
636 goto bad_val;
637 }
638 if (strcmp(a->id, k) != 0) {
639 fprintf(stderr, "bad action %s\n", k);
640 goto bad_val;
641 }
642 strncpy(k, *argv, sizeof(k) - 1);
643
644 argc -= 1;
645 argv += 1;
646
647 if (argc && (strcmp(*argv, "since") == 0)) {
648 NEXT_ARG();
649 if (get_u32(&msec_since, *argv, 0))
650 invarg("dump time \"since\" is invalid", *argv);
651 }
652
653 addattr_l(&req.n, MAX_MSG, ++prio, NULL, 0);
654 addattr_l(&req.n, MAX_MSG, TCA_ACT_KIND, k, strlen(k) + 1);
655 tail2->rta_len = (void *) NLMSG_TAIL(&req.n) - (void *) tail2;
656 addattr_nest_end(&req.n, tail);
657
658 tail3 = NLMSG_TAIL(&req.n);
659 flag_select.value |= TCA_FLAG_LARGE_DUMP_ON;
660 flag_select.selector |= TCA_FLAG_LARGE_DUMP_ON;
661 addattr_l(&req.n, MAX_MSG, TCA_ROOT_FLAGS, &flag_select,
662 sizeof(struct nla_bitfield32));
663 tail3->rta_len = (void *) NLMSG_TAIL(&req.n) - (void *) tail3;
664 if (msec_since) {
665 tail4 = NLMSG_TAIL(&req.n);
666 addattr32(&req.n, MAX_MSG, TCA_ROOT_TIME_DELTA, msec_since);
667 tail4->rta_len = (void *) NLMSG_TAIL(&req.n) - (void *) tail4;
668 }
669 msg_size = NLMSG_ALIGN(req.n.nlmsg_len)
670 - NLMSG_ALIGN(sizeof(struct nlmsghdr));
671
672 if (event == RTM_GETACTION) {
673 if (rtnl_dump_request(&rth, event,
674 (void *)&req.t, msg_size) < 0) {
675 perror("Cannot send dump request");
676 return 1;
677 }
678 ret = rtnl_dump_filter(&rth, print_action, stdout);
679 }
680
681 if (event == RTM_DELACTION) {
682 req.n.nlmsg_len = NLMSG_ALIGN(req.n.nlmsg_len);
683 req.n.nlmsg_type = RTM_DELACTION;
684 req.n.nlmsg_flags |= NLM_F_ROOT;
685 req.n.nlmsg_flags |= NLM_F_REQUEST;
686 if (rtnl_talk(&rth, &req.n, NULL) < 0) {
687 fprintf(stderr, "We have an error flushing\n");
688 return 1;
689 }
690
691 }
692
693 bad_val:
694
695 *argc_p = argc;
696 *argv_p = argv;
697 return ret;
698 }
699
700 int do_action(int argc, char **argv, void *buf, size_t buflen)
701 {
702
703 int ret = 0;
704
705 while (argc > 0) {
706
707 if (matches(*argv, "add") == 0) {
708 ret = tc_action_modify(RTM_NEWACTION,
709 NLM_F_EXCL | NLM_F_CREATE,
710 &argc, &argv, buf, buflen);
711 } else if (matches(*argv, "change") == 0 ||
712 matches(*argv, "replace") == 0) {
713 ret = tc_action_modify(RTM_NEWACTION,
714 NLM_F_CREATE | NLM_F_REPLACE,
715 &argc, &argv, buf, buflen);
716 } else if (matches(*argv, "delete") == 0) {
717 argc -= 1;
718 argv += 1;
719 ret = tc_action_gd(RTM_DELACTION, 0, &argc, &argv);
720 } else if (matches(*argv, "get") == 0) {
721 argc -= 1;
722 argv += 1;
723 ret = tc_action_gd(RTM_GETACTION, 0, &argc, &argv);
724 } else if (matches(*argv, "list") == 0 ||
725 matches(*argv, "show") == 0 ||
726 matches(*argv, "lst") == 0) {
727 if (argc <= 2) {
728 act_usage();
729 return -1;
730 }
731
732 argc -= 2;
733 argv += 2;
734 return tc_act_list_or_flush(&argc, &argv,
735 RTM_GETACTION);
736 } else if (matches(*argv, "flush") == 0) {
737 if (argc <= 2) {
738 act_usage();
739 return -1;
740 }
741
742 argc -= 2;
743 argv += 2;
744 return tc_act_list_or_flush(&argc, &argv,
745 RTM_DELACTION);
746 } else if (matches(*argv, "help") == 0) {
747 act_usage();
748 return -1;
749 } else {
750 fprintf(stderr,
751 "Command \"%s\" is unknown, try \"tc actions help\".\n",
752 *argv);
753 return -1;
754 }
755
756 if (ret < 0)
757 return -1;
758 }
759
760 return 0;
761 }