aboutsummaryrefslogtreecommitdiffstats
path: root/net/sched/sch_tbf.c
diff options
context:
space:
mode:
authorPatrick McHardy <kaber@trash.net>2008-01-23 23:35:39 -0500
committerDavid S. Miller <davem@davemloft.net>2008-01-28 18:11:22 -0500
commit27a3421e4821734bc19496faa77b380605dc3b23 (patch)
treef9ded49845a39f41352ed09130bf3d2bd05e4ffe /net/sched/sch_tbf.c
parent5feb5e1aaa887f6427b8290bce48bfb6b7010fc6 (diff)
[NET_SCHED]: Use nla_policy for attribute validation in packet schedulers
Signed-off-by: Patrick McHardy <kaber@trash.net> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sched/sch_tbf.c')
-rw-r--r--net/sched/sch_tbf.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/net/sched/sch_tbf.c b/net/sched/sch_tbf.c
index b7a185dc3def..0b7d78f59d8c 100644
--- a/net/sched/sch_tbf.c
+++ b/net/sched/sch_tbf.c
@@ -270,6 +270,12 @@ static struct Qdisc *tbf_create_dflt_qdisc(struct Qdisc *sch, u32 limit)
270 return NULL; 270 return NULL;
271} 271}
272 272
273static const struct nla_policy tbf_policy[TCA_TBF_MAX + 1] = {
274 [TCA_TBF_PARMS] = { .len = sizeof(struct tc_tbf_qopt) },
275 [TCA_TBF_RTAB] = { .type = NLA_BINARY, .len = TC_RTAB_SIZE },
276 [TCA_TBF_PTAB] = { .type = NLA_BINARY, .len = TC_RTAB_SIZE },
277};
278
273static int tbf_change(struct Qdisc* sch, struct nlattr *opt) 279static int tbf_change(struct Qdisc* sch, struct nlattr *opt)
274{ 280{
275 int err; 281 int err;
@@ -281,13 +287,12 @@ static int tbf_change(struct Qdisc* sch, struct nlattr *opt)
281 struct Qdisc *child = NULL; 287 struct Qdisc *child = NULL;
282 int max_size,n; 288 int max_size,n;
283 289
284 err = nla_parse_nested(tb, TCA_TBF_PTAB, opt, NULL); 290 err = nla_parse_nested(tb, TCA_TBF_PTAB, opt, tbf_policy);
285 if (err < 0) 291 if (err < 0)
286 return err; 292 return err;
287 293
288 err = -EINVAL; 294 err = -EINVAL;
289 if (tb[TCA_TBF_PARMS] == NULL || 295 if (tb[TCA_TBF_PARMS] == NULL)
290 nla_len(tb[TCA_TBF_PARMS]) < sizeof(*qopt))
291 goto done; 296 goto done;
292 297
293 qopt = nla_data(tb[TCA_TBF_PARMS]); 298 qopt = nla_data(tb[TCA_TBF_PARMS]);