|
|
36cfb7 |
From cb73324026eb3f9c315735b9020890f43eeaac43 Mon Sep 17 00:00:00 2001
|
|
|
36cfb7 |
From: Andrea Claudi <aclaudi@redhat.com>
|
|
|
36cfb7 |
Date: Wed, 5 Jun 2019 13:12:06 +0200
|
|
|
36cfb7 |
Subject: [PATCH] tc: fix parsing of the control action
|
|
|
36cfb7 |
|
|
|
36cfb7 |
Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=1714660
|
|
|
36cfb7 |
Upstream Status: iproute2.git commit 75ef7b18d2a13
|
|
|
36cfb7 |
Conflicts: context change due to missing commit 35f2a7639dca4
|
|
|
36cfb7 |
("tc/actions: introduce support for jump action")
|
|
|
36cfb7 |
|
|
|
36cfb7 |
commit 75ef7b18d2a13657056706895bf8d8dd3ac93e46
|
|
|
36cfb7 |
Author: Davide Caratti <dcaratti@redhat.com>
|
|
|
36cfb7 |
Date: Fri Mar 2 19:36:16 2018 +0100
|
|
|
36cfb7 |
|
|
|
36cfb7 |
tc: fix parsing of the control action
|
|
|
36cfb7 |
|
|
|
36cfb7 |
If the user didn't specify any control action, don't pop the command line
|
|
|
36cfb7 |
arguments: otherwise, parsing of the next argument (tipically the 'index'
|
|
|
36cfb7 |
keyword) results in an error, causing the following 'tc-testing' failures:
|
|
|
36cfb7 |
|
|
|
36cfb7 |
Test a6d6: Add skbedit action with index
|
|
|
36cfb7 |
Test 38f3: Delete skbedit action
|
|
|
36cfb7 |
Test a568: Add action with ife type
|
|
|
36cfb7 |
Test b983: Add action without ife type
|
|
|
36cfb7 |
Test 7d50: Add skbmod action to set destination mac
|
|
|
36cfb7 |
Test 9b29: Add skbmod action to set source mac
|
|
|
36cfb7 |
Test e93a: Delete an skbmod action
|
|
|
36cfb7 |
|
|
|
36cfb7 |
Also, add missing parse for 'ok' control action to m_police, to fix the
|
|
|
36cfb7 |
following 'tc-testing' failure:
|
|
|
36cfb7 |
|
|
|
36cfb7 |
Test 8dd5: Add police action with control ok
|
|
|
36cfb7 |
|
|
|
36cfb7 |
tested with:
|
|
|
36cfb7 |
# ./tdc.py
|
|
|
36cfb7 |
|
|
|
36cfb7 |
test results:
|
|
|
36cfb7 |
all tests ok using kernel 4.16-rc2, except 9aa8 "Get a single skbmod
|
|
|
36cfb7 |
action from a list" (which is failing also before this commit)
|
|
|
36cfb7 |
|
|
|
36cfb7 |
Fixes: 3572e01a090a ("tc: util: Don't call NEXT_ARG_FWD() in __parse_action_control()")
|
|
|
36cfb7 |
Cc: Michal Privoznik <mprivozn@redhat.com>
|
|
|
36cfb7 |
Cc: Wolfgang Bumiller <w.bumiller@proxmox.com>
|
|
|
36cfb7 |
Signed-off-by: Davide Caratti <dcaratti@redhat.com>
|
|
|
36cfb7 |
Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
|
|
|
36cfb7 |
---
|
|
|
36cfb7 |
tc/m_bpf.c | 1 -
|
|
|
36cfb7 |
tc/m_connmark.c | 1 -
|
|
|
36cfb7 |
tc/m_csum.c | 1 -
|
|
|
36cfb7 |
tc/m_gact.c | 9 +++------
|
|
|
36cfb7 |
tc/m_ife.c | 1 -
|
|
|
36cfb7 |
tc/m_mirred.c | 5 ++---
|
|
|
36cfb7 |
tc/m_nat.c | 1 -
|
|
|
36cfb7 |
tc/m_pedit.c | 1 -
|
|
|
36cfb7 |
tc/m_police.c | 16 ++++++++++------
|
|
|
36cfb7 |
tc/m_sample.c | 1 -
|
|
|
36cfb7 |
tc/m_skbedit.c | 1 -
|
|
|
36cfb7 |
tc/m_skbmod.c | 1 -
|
|
|
36cfb7 |
tc/m_tunnel_key.c | 1 -
|
|
|
36cfb7 |
tc/m_vlan.c | 1 -
|
|
|
36cfb7 |
tc/tc_util.c | 6 +++++-
|
|
|
36cfb7 |
15 files changed, 20 insertions(+), 27 deletions(-)
|
|
|
36cfb7 |
|
|
|
36cfb7 |
diff --git a/tc/m_bpf.c b/tc/m_bpf.c
|
|
|
36cfb7 |
index c2bad5640707c..57283030a35f5 100644
|
|
|
36cfb7 |
--- a/tc/m_bpf.c
|
|
|
36cfb7 |
+++ b/tc/m_bpf.c
|
|
|
36cfb7 |
@@ -125,7 +125,6 @@ opt_bpf:
|
|
|
36cfb7 |
|
|
|
36cfb7 |
parse_action_control_dflt(&argc, &argv, &parm.action,
|
|
|
36cfb7 |
false, TC_ACT_PIPE);
|
|
|
36cfb7 |
- NEXT_ARG_FWD();
|
|
|
36cfb7 |
|
|
|
36cfb7 |
if (argc) {
|
|
|
36cfb7 |
if (matches(*argv, "index") == 0) {
|
|
|
36cfb7 |
diff --git a/tc/m_connmark.c b/tc/m_connmark.c
|
|
|
36cfb7 |
index 47c7a8c2b17e7..37d7185415490 100644
|
|
|
36cfb7 |
--- a/tc/m_connmark.c
|
|
|
36cfb7 |
+++ b/tc/m_connmark.c
|
|
|
36cfb7 |
@@ -82,7 +82,6 @@ parse_connmark(struct action_util *a, int *argc_p, char ***argv_p, int tca_id,
|
|
|
36cfb7 |
}
|
|
|
36cfb7 |
|
|
|
36cfb7 |
parse_action_control_dflt(&argc, &argv, &sel.action, false, TC_ACT_PIPE);
|
|
|
36cfb7 |
- NEXT_ARG_FWD();
|
|
|
36cfb7 |
|
|
|
36cfb7 |
if (argc) {
|
|
|
36cfb7 |
if (matches(*argv, "index") == 0) {
|
|
|
36cfb7 |
diff --git a/tc/m_csum.c b/tc/m_csum.c
|
|
|
36cfb7 |
index e1352c0820f69..7b156734f64c5 100644
|
|
|
36cfb7 |
--- a/tc/m_csum.c
|
|
|
36cfb7 |
+++ b/tc/m_csum.c
|
|
|
36cfb7 |
@@ -124,7 +124,6 @@ parse_csum(struct action_util *a, int *argc_p,
|
|
|
36cfb7 |
}
|
|
|
36cfb7 |
|
|
|
36cfb7 |
parse_action_control_dflt(&argc, &argv, &sel.action, false, TC_ACT_OK);
|
|
|
36cfb7 |
- NEXT_ARG_FWD();
|
|
|
36cfb7 |
|
|
|
36cfb7 |
if (argc) {
|
|
|
36cfb7 |
if (matches(*argv, "index") == 0) {
|
|
|
36cfb7 |
diff --git a/tc/m_gact.c b/tc/m_gact.c
|
|
|
36cfb7 |
index dd9542a5cc644..45eecf7ea1647 100644
|
|
|
36cfb7 |
--- a/tc/m_gact.c
|
|
|
36cfb7 |
+++ b/tc/m_gact.c
|
|
|
36cfb7 |
@@ -86,12 +86,10 @@ parse_gact(struct action_util *a, int *argc_p, char ***argv_p,
|
|
|
36cfb7 |
if (argc < 0)
|
|
|
36cfb7 |
return -1;
|
|
|
36cfb7 |
|
|
|
36cfb7 |
- if (matches(*argv, "gact") != 0 &&
|
|
|
36cfb7 |
- parse_action_control(&argc, &argv, &p.action, false) == -1) {
|
|
|
36cfb7 |
+ if (!matches(*argv, "gact"))
|
|
|
36cfb7 |
+ NEXT_ARG_FWD();
|
|
|
36cfb7 |
+ if (parse_action_control(&argc, &argv, &p.action, false))
|
|
|
36cfb7 |
usage(); /* does not return */
|
|
|
36cfb7 |
- }
|
|
|
36cfb7 |
-
|
|
|
36cfb7 |
- NEXT_ARG_FWD();
|
|
|
36cfb7 |
|
|
|
36cfb7 |
#ifdef CONFIG_GACT_PROB
|
|
|
36cfb7 |
if (argc > 0) {
|
|
|
36cfb7 |
@@ -112,7 +110,6 @@ parse_gact(struct action_util *a, int *argc_p, char ***argv_p,
|
|
|
36cfb7 |
if (parse_action_control(&argc, &argv,
|
|
|
36cfb7 |
&pp.paction, false) == -1)
|
|
|
36cfb7 |
usage();
|
|
|
36cfb7 |
- NEXT_ARG_FWD();
|
|
|
36cfb7 |
if (get_u16(&pp.pval, *argv, 10)) {
|
|
|
36cfb7 |
fprintf(stderr, "Illegal probability val 0x%x\n", pp.pval);
|
|
|
36cfb7 |
return -1;
|
|
|
36cfb7 |
diff --git a/tc/m_ife.c b/tc/m_ife.c
|
|
|
36cfb7 |
index 54fad8f70e73a..e3521e62c178c 100644
|
|
|
36cfb7 |
--- a/tc/m_ife.c
|
|
|
36cfb7 |
+++ b/tc/m_ife.c
|
|
|
36cfb7 |
@@ -158,7 +158,6 @@ static int parse_ife(struct action_util *a, int *argc_p, char ***argv_p,
|
|
|
36cfb7 |
|
|
|
36cfb7 |
parse_action_control_dflt(&argc, &argv, &p.action, false, TC_ACT_PIPE);
|
|
|
36cfb7 |
|
|
|
36cfb7 |
- NEXT_ARG_FWD();
|
|
|
36cfb7 |
if (argc) {
|
|
|
36cfb7 |
if (matches(*argv, "index") == 0) {
|
|
|
36cfb7 |
NEXT_ARG();
|
|
|
36cfb7 |
diff --git a/tc/m_mirred.c b/tc/m_mirred.c
|
|
|
36cfb7 |
index b09b016c2ca39..b1f45f1e6ecb0 100644
|
|
|
36cfb7 |
--- a/tc/m_mirred.c
|
|
|
36cfb7 |
+++ b/tc/m_mirred.c
|
|
|
36cfb7 |
@@ -76,6 +76,7 @@ parse_direction(struct action_util *a, int *argc_p, char ***argv_p,
|
|
|
36cfb7 |
while (argc > 0) {
|
|
|
36cfb7 |
|
|
|
36cfb7 |
if (matches(*argv, "action") == 0) {
|
|
|
36cfb7 |
+ NEXT_ARG();
|
|
|
36cfb7 |
break;
|
|
|
36cfb7 |
} else if (!egress && matches(*argv, "egress") == 0) {
|
|
|
36cfb7 |
egress = 1;
|
|
|
36cfb7 |
@@ -170,10 +171,8 @@ parse_direction(struct action_util *a, int *argc_p, char ***argv_p,
|
|
|
36cfb7 |
}
|
|
|
36cfb7 |
|
|
|
36cfb7 |
|
|
|
36cfb7 |
- if (p.eaction == TCA_EGRESS_MIRROR || p.eaction == TCA_INGRESS_MIRROR) {
|
|
|
36cfb7 |
+ if (p.eaction == TCA_EGRESS_MIRROR || p.eaction == TCA_INGRESS_MIRROR)
|
|
|
36cfb7 |
parse_action_control(&argc, &argv, &p.action, false);
|
|
|
36cfb7 |
- NEXT_ARG_FWD();
|
|
|
36cfb7 |
- }
|
|
|
36cfb7 |
|
|
|
36cfb7 |
if (argc) {
|
|
|
36cfb7 |
if (iok && matches(*argv, "index") == 0) {
|
|
|
36cfb7 |
diff --git a/tc/m_nat.c b/tc/m_nat.c
|
|
|
36cfb7 |
index bb455f080b3a4..31b68fb6bd784 100644
|
|
|
36cfb7 |
--- a/tc/m_nat.c
|
|
|
36cfb7 |
+++ b/tc/m_nat.c
|
|
|
36cfb7 |
@@ -117,7 +117,6 @@ parse_nat(struct action_util *a, int *argc_p, char ***argv_p, int tca_id, struct
|
|
|
36cfb7 |
|
|
|
36cfb7 |
parse_action_control_dflt(&argc, &argv, &sel.action, false, TC_ACT_OK);
|
|
|
36cfb7 |
|
|
|
36cfb7 |
- NEXT_ARG_FWD();
|
|
|
36cfb7 |
if (argc) {
|
|
|
36cfb7 |
if (matches(*argv, "index") == 0) {
|
|
|
36cfb7 |
NEXT_ARG();
|
|
|
36cfb7 |
diff --git a/tc/m_pedit.c b/tc/m_pedit.c
|
|
|
36cfb7 |
index 3391be95da38c..5d89ab1d832ab 100644
|
|
|
36cfb7 |
--- a/tc/m_pedit.c
|
|
|
36cfb7 |
+++ b/tc/m_pedit.c
|
|
|
36cfb7 |
@@ -673,7 +673,6 @@ int parse_pedit(struct action_util *a, int *argc_p, char ***argv_p, int tca_id,
|
|
|
36cfb7 |
|
|
|
36cfb7 |
parse_action_control_dflt(&argc, &argv, &sel.sel.action, false, TC_ACT_OK);
|
|
|
36cfb7 |
|
|
|
36cfb7 |
- NEXT_ARG_FWD();
|
|
|
36cfb7 |
if (argc) {
|
|
|
36cfb7 |
if (matches(*argv, "index") == 0) {
|
|
|
36cfb7 |
NEXT_ARG();
|
|
|
36cfb7 |
diff --git a/tc/m_police.c b/tc/m_police.c
|
|
|
36cfb7 |
index 86117db0482ec..b79545961f4d7 100644
|
|
|
36cfb7 |
--- a/tc/m_police.c
|
|
|
36cfb7 |
+++ b/tc/m_police.c
|
|
|
36cfb7 |
@@ -151,15 +151,18 @@ int act_parse_police(struct action_util *a, int *argc_p, char ***argv_p,
|
|
|
36cfb7 |
matches(*argv, "shot") == 0 ||
|
|
|
36cfb7 |
matches(*argv, "continue") == 0 ||
|
|
|
36cfb7 |
matches(*argv, "pass") == 0 ||
|
|
|
36cfb7 |
+ matches(*argv, "ok") == 0 ||
|
|
|
36cfb7 |
matches(*argv, "pipe") == 0 ||
|
|
|
36cfb7 |
matches(*argv, "goto") == 0) {
|
|
|
36cfb7 |
- if (parse_action_control(&argc, &argv, &p.action, false))
|
|
|
36cfb7 |
- return -1;
|
|
|
36cfb7 |
+ if (!parse_action_control(&argc, &argv, &p.action, false))
|
|
|
36cfb7 |
+ goto action_ctrl_ok;
|
|
|
36cfb7 |
+ return -1;
|
|
|
36cfb7 |
} else if (strcmp(*argv, "conform-exceed") == 0) {
|
|
|
36cfb7 |
NEXT_ARG();
|
|
|
36cfb7 |
- if (parse_action_control_slash(&argc, &argv, &p.action,
|
|
|
36cfb7 |
- &presult, true))
|
|
|
36cfb7 |
- return -1;
|
|
|
36cfb7 |
+ if (!parse_action_control_slash(&argc, &argv, &p.action,
|
|
|
36cfb7 |
+ &presult, true))
|
|
|
36cfb7 |
+ goto action_ctrl_ok;
|
|
|
36cfb7 |
+ return -1;
|
|
|
36cfb7 |
} else if (matches(*argv, "overhead") == 0) {
|
|
|
36cfb7 |
NEXT_ARG();
|
|
|
36cfb7 |
if (get_u16(&overhead, *argv, 10)) {
|
|
|
36cfb7 |
@@ -175,8 +178,9 @@ int act_parse_police(struct action_util *a, int *argc_p, char ***argv_p,
|
|
|
36cfb7 |
} else {
|
|
|
36cfb7 |
break;
|
|
|
36cfb7 |
}
|
|
|
36cfb7 |
+ NEXT_ARG_FWD();
|
|
|
36cfb7 |
+action_ctrl_ok:
|
|
|
36cfb7 |
ok++;
|
|
|
36cfb7 |
- argc--; argv++;
|
|
|
36cfb7 |
}
|
|
|
36cfb7 |
|
|
|
36cfb7 |
if (!ok)
|
|
|
36cfb7 |
diff --git a/tc/m_sample.c b/tc/m_sample.c
|
|
|
36cfb7 |
index 31774c0e806b4..ff5ee6bd1ef63 100644
|
|
|
36cfb7 |
--- a/tc/m_sample.c
|
|
|
36cfb7 |
+++ b/tc/m_sample.c
|
|
|
36cfb7 |
@@ -100,7 +100,6 @@ static int parse_sample(struct action_util *a, int *argc_p, char ***argv_p,
|
|
|
36cfb7 |
|
|
|
36cfb7 |
parse_action_control_dflt(&argc, &argv, &p.action, false, TC_ACT_PIPE);
|
|
|
36cfb7 |
|
|
|
36cfb7 |
- NEXT_ARG_FWD();
|
|
|
36cfb7 |
if (argc) {
|
|
|
36cfb7 |
if (matches(*argv, "index") == 0) {
|
|
|
36cfb7 |
NEXT_ARG();
|
|
|
36cfb7 |
diff --git a/tc/m_skbedit.c b/tc/m_skbedit.c
|
|
|
36cfb7 |
index c41a7bb082dad..aa374fcb33ed9 100644
|
|
|
36cfb7 |
--- a/tc/m_skbedit.c
|
|
|
36cfb7 |
+++ b/tc/m_skbedit.c
|
|
|
36cfb7 |
@@ -123,7 +123,6 @@ parse_skbedit(struct action_util *a, int *argc_p, char ***argv_p, int tca_id,
|
|
|
36cfb7 |
parse_action_control_dflt(&argc, &argv, &sel.action,
|
|
|
36cfb7 |
false, TC_ACT_PIPE);
|
|
|
36cfb7 |
|
|
|
36cfb7 |
- NEXT_ARG_FWD();
|
|
|
36cfb7 |
if (argc) {
|
|
|
36cfb7 |
if (matches(*argv, "index") == 0) {
|
|
|
36cfb7 |
NEXT_ARG();
|
|
|
36cfb7 |
diff --git a/tc/m_skbmod.c b/tc/m_skbmod.c
|
|
|
36cfb7 |
index 00318d42642a5..ba79308ba8354 100644
|
|
|
36cfb7 |
--- a/tc/m_skbmod.c
|
|
|
36cfb7 |
+++ b/tc/m_skbmod.c
|
|
|
36cfb7 |
@@ -125,7 +125,6 @@ static int parse_skbmod(struct action_util *a, int *argc_p, char ***argv_p,
|
|
|
36cfb7 |
|
|
|
36cfb7 |
parse_action_control_dflt(&argc, &argv, &p.action, false, TC_ACT_PIPE);
|
|
|
36cfb7 |
|
|
|
36cfb7 |
- NEXT_ARG_FWD();
|
|
|
36cfb7 |
if (argc) {
|
|
|
36cfb7 |
if (matches(*argv, "index") == 0) {
|
|
|
36cfb7 |
NEXT_ARG();
|
|
|
36cfb7 |
diff --git a/tc/m_tunnel_key.c b/tc/m_tunnel_key.c
|
|
|
36cfb7 |
index 0ff3f1a2b9876..cdde64a15b929 100644
|
|
|
36cfb7 |
--- a/tc/m_tunnel_key.c
|
|
|
36cfb7 |
+++ b/tc/m_tunnel_key.c
|
|
|
36cfb7 |
@@ -197,7 +197,6 @@ static int parse_tunnel_key(struct action_util *a, int *argc_p, char ***argv_p,
|
|
|
36cfb7 |
parse_action_control_dflt(&argc, &argv, &parm.action,
|
|
|
36cfb7 |
false, TC_ACT_PIPE);
|
|
|
36cfb7 |
|
|
|
36cfb7 |
- NEXT_ARG_FWD();
|
|
|
36cfb7 |
if (argc) {
|
|
|
36cfb7 |
if (matches(*argv, "index") == 0) {
|
|
|
36cfb7 |
NEXT_ARG();
|
|
|
36cfb7 |
diff --git a/tc/m_vlan.c b/tc/m_vlan.c
|
|
|
36cfb7 |
index 0b2966ce82e53..cccb4996b05f3 100644
|
|
|
36cfb7 |
--- a/tc/m_vlan.c
|
|
|
36cfb7 |
+++ b/tc/m_vlan.c
|
|
|
36cfb7 |
@@ -137,7 +137,6 @@ static int parse_vlan(struct action_util *a, int *argc_p, char ***argv_p,
|
|
|
36cfb7 |
parse_action_control_dflt(&argc, &argv, &parm.action,
|
|
|
36cfb7 |
false, TC_ACT_PIPE);
|
|
|
36cfb7 |
|
|
|
36cfb7 |
- NEXT_ARG_FWD();
|
|
|
36cfb7 |
if (argc) {
|
|
|
36cfb7 |
if (matches(*argv, "index") == 0) {
|
|
|
36cfb7 |
NEXT_ARG();
|
|
|
36cfb7 |
diff --git a/tc/tc_util.c b/tc/tc_util.c
|
|
|
36cfb7 |
index 4584d4a448fb4..65695ea592ed8 100644
|
|
|
36cfb7 |
--- a/tc/tc_util.c
|
|
|
36cfb7 |
+++ b/tc/tc_util.c
|
|
|
36cfb7 |
@@ -507,6 +507,7 @@ static int __parse_action_control(int *argc_p, char ***argv_p, int *result_p,
|
|
|
36cfb7 |
}
|
|
|
36cfb7 |
result |= chain_index;
|
|
|
36cfb7 |
}
|
|
|
36cfb7 |
+ NEXT_ARG_FWD();
|
|
|
36cfb7 |
*argc_p = argc;
|
|
|
36cfb7 |
*argv_p = argv;
|
|
|
36cfb7 |
*result_p = result;
|
|
|
36cfb7 |
@@ -603,8 +604,8 @@ out:
|
|
|
36cfb7 |
int parse_action_control_slash(int *argc_p, char ***argv_p,
|
|
|
36cfb7 |
int *result1_p, int *result2_p, bool allow_num)
|
|
|
36cfb7 |
{
|
|
|
36cfb7 |
+ int result1, result2, argc = *argc_p;
|
|
|
36cfb7 |
char **argv = *argv_p;
|
|
|
36cfb7 |
- int result1, result2;
|
|
|
36cfb7 |
char *p = strchr(*argv, '/');
|
|
|
36cfb7 |
|
|
|
36cfb7 |
if (!p)
|
|
|
36cfb7 |
@@ -624,6 +625,9 @@ int parse_action_control_slash(int *argc_p, char ***argv_p,
|
|
|
36cfb7 |
|
|
|
36cfb7 |
*result1_p = result1;
|
|
|
36cfb7 |
*result2_p = result2;
|
|
|
36cfb7 |
+ NEXT_ARG_FWD();
|
|
|
36cfb7 |
+ *argc_p = argc;
|
|
|
36cfb7 |
+ *argv_p = argv;
|
|
|
36cfb7 |
return 0;
|
|
|
36cfb7 |
}
|
|
|
36cfb7 |
|
|
|
36cfb7 |
--
|
|
|
e138d9 |
2.21.0
|
|
|
36cfb7 |
|