aboutsummaryrefslogtreecommitdiffstats
path: root/net/sched/act_nat.c
diff options
context:
space:
mode:
authorPatrick McHardy <kaber@trash.net>2008-01-23 23:36:30 -0500
committerDavid S. Miller <davem@davemloft.net>2008-01-28 18:11:23 -0500
commit53b2bf3f8a652c9c8e86831f94ae2c5767ea54d7 (patch)
treeeba61efed08a932766a32b0b6a60e766f8b44bcb /net/sched/act_nat.c
parent6fa8c0144b770dac941cf2c15053b6e24f046c8a (diff)
[NET_SCHED]: Use nla_policy for attribute validation in actions
Signed-off-by: Patrick McHardy <kaber@trash.net> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sched/act_nat.c')
-rw-r--r--net/sched/act_nat.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/net/sched/act_nat.c b/net/sched/act_nat.c
index 5a512d4dc37c..0a3c8339767a 100644
--- a/net/sched/act_nat.c
+++ b/net/sched/act_nat.c
@@ -40,6 +40,10 @@ static struct tcf_hashinfo nat_hash_info = {
40 .lock = &nat_lock, 40 .lock = &nat_lock,
41}; 41};
42 42
43static const struct nla_policy nat_policy[TCA_NAT_MAX + 1] = {
44 [TCA_NAT_PARMS] = { .len = sizeof(struct tc_nat) },
45};
46
43static int tcf_nat_init(struct nlattr *nla, struct nlattr *est, 47static int tcf_nat_init(struct nlattr *nla, struct nlattr *est,
44 struct tc_action *a, int ovr, int bind) 48 struct tc_action *a, int ovr, int bind)
45{ 49{
@@ -52,12 +56,11 @@ static int tcf_nat_init(struct nlattr *nla, struct nlattr *est,
52 if (nla == NULL) 56 if (nla == NULL)
53 return -EINVAL; 57 return -EINVAL;
54 58
55 err = nla_parse_nested(tb, TCA_NAT_MAX, nla, NULL); 59 err = nla_parse_nested(tb, TCA_NAT_MAX, nla, nat_policy);
56 if (err < 0) 60 if (err < 0)
57 return err; 61 return err;
58 62
59 if (tb[TCA_NAT_PARMS] == NULL || 63 if (tb[TCA_NAT_PARMS] == NULL)
60 nla_len(tb[TCA_NAT_PARMS]) < sizeof(*parm))
61 return -EINVAL; 64 return -EINVAL;
62 parm = nla_data(tb[TCA_NAT_PARMS]); 65 parm = nla_data(tb[TCA_NAT_PARMS]);
63 66