Skip to content

Commit a57f19d

Browse files
jhsmtdavem330
authored andcommitted
net sched: ipt action fix late binding
This was broken and is fixed with this patch. //add an ipt action and give it an instance id of 1 sudo tc actions add action ipt -j mark --set-mark 2 index 1 //create a filter which binds to ipt action id 1 sudo tc filter add dev $DEV parent ffff: protocol ip prio 1 u32\ match ip dst 17.0.0.1/32 flowid 1:10 action ipt index 1 Message before bug fix was: RTNETLINK answers: Invalid argument We have an error talking to the kernel Signed-off-by: Jamal Hadi Salim <[email protected]> Reviewed-by: Cong Wang <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent 5026c9b commit a57f19d

File tree

1 file changed

+12
-7
lines changed

1 file changed

+12
-7
lines changed

net/sched/act_ipt.c

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ static int __tcf_ipt_init(struct tc_action_net *tn, struct nlattr *nla,
9696
struct tcf_ipt *ipt;
9797
struct xt_entry_target *td, *t;
9898
char *tname;
99-
int ret = 0, err;
99+
int ret = 0, err, exists = 0;
100100
u32 hook = 0;
101101
u32 index = 0;
102102

@@ -107,18 +107,23 @@ static int __tcf_ipt_init(struct tc_action_net *tn, struct nlattr *nla,
107107
if (err < 0)
108108
return err;
109109

110-
if (tb[TCA_IPT_HOOK] == NULL)
111-
return -EINVAL;
112-
if (tb[TCA_IPT_TARG] == NULL)
110+
if (tb[TCA_IPT_INDEX] != NULL)
111+
index = nla_get_u32(tb[TCA_IPT_INDEX]);
112+
113+
exists = tcf_hash_check(tn, index, a, bind);
114+
if (exists && bind)
115+
return 0;
116+
117+
if (tb[TCA_IPT_HOOK] == NULL || tb[TCA_IPT_TARG] == NULL) {
118+
if (exists)
119+
tcf_hash_release(a, bind);
113120
return -EINVAL;
121+
}
114122

115123
td = (struct xt_entry_target *)nla_data(tb[TCA_IPT_TARG]);
116124
if (nla_len(tb[TCA_IPT_TARG]) < td->u.target_size)
117125
return -EINVAL;
118126

119-
if (tb[TCA_IPT_INDEX] != NULL)
120-
index = nla_get_u32(tb[TCA_IPT_INDEX]);
121-
122127
if (!tcf_hash_check(tn, index, a, bind)) {
123128
ret = tcf_hash_create(tn, index, est, a, sizeof(*ipt), bind,
124129
false);

0 commit comments

Comments
 (0)