[NET_SCHED]: Use nla_policy for attribute validation in classifiers
[deliverable/linux.git] / net / sched / act_pedit.c
CommitLineData
1da177e4
LT
1/*
2 * net/sched/pedit.c Generic packet editor
3 *
4 * This program is free software; you can redistribute 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: Jamal Hadi Salim (2002-4)
10 */
11
1da177e4
LT
12#include <linux/types.h>
13#include <linux/kernel.h>
1da177e4 14#include <linux/string.h>
1da177e4 15#include <linux/errno.h>
1da177e4
LT
16#include <linux/skbuff.h>
17#include <linux/rtnetlink.h>
18#include <linux/module.h>
19#include <linux/init.h>
dc5fc579 20#include <net/netlink.h>
1da177e4
LT
21#include <net/pkt_sched.h>
22#include <linux/tc_act/tc_pedit.h>
23#include <net/tc_act/tc_pedit.h>
24
e9ce1cd3
DM
25#define PEDIT_TAB_MASK 15
26static struct tcf_common *tcf_pedit_ht[PEDIT_TAB_MASK + 1];
27static u32 pedit_idx_gen;
1da177e4
LT
28static DEFINE_RWLOCK(pedit_lock);
29
e9ce1cd3
DM
30static struct tcf_hashinfo pedit_hash_info = {
31 .htab = tcf_pedit_ht,
32 .hmask = PEDIT_TAB_MASK,
33 .lock = &pedit_lock,
34};
1da177e4 35
7ba699c6 36static int tcf_pedit_init(struct nlattr *nla, struct nlattr *est,
e9ce1cd3 37 struct tc_action *a, int ovr, int bind)
1da177e4 38{
7ba699c6 39 struct nlattr *tb[TCA_PEDIT_MAX + 1];
1da177e4 40 struct tc_pedit *parm;
cee63723 41 int ret = 0, err;
1da177e4 42 struct tcf_pedit *p;
e9ce1cd3 43 struct tcf_common *pc;
1da177e4
LT
44 struct tc_pedit_key *keys = NULL;
45 int ksize;
46
cee63723 47 if (nla == NULL)
1da177e4
LT
48 return -EINVAL;
49
cee63723
PM
50 err = nla_parse_nested(tb, TCA_PEDIT_MAX, nla, NULL);
51 if (err < 0)
52 return err;
53
7ba699c6
PM
54 if (tb[TCA_PEDIT_PARMS] == NULL ||
55 nla_len(tb[TCA_PEDIT_PARMS]) < sizeof(*parm))
1da177e4 56 return -EINVAL;
7ba699c6 57 parm = nla_data(tb[TCA_PEDIT_PARMS]);
1da177e4 58 ksize = parm->nkeys * sizeof(struct tc_pedit_key);
7ba699c6 59 if (nla_len(tb[TCA_PEDIT_PARMS]) < sizeof(*parm) + ksize)
1da177e4
LT
60 return -EINVAL;
61
e9ce1cd3
DM
62 pc = tcf_hash_check(parm->index, a, bind, &pedit_hash_info);
63 if (!pc) {
1da177e4
LT
64 if (!parm->nkeys)
65 return -EINVAL;
e9ce1cd3
DM
66 pc = tcf_hash_create(parm->index, est, a, sizeof(*p), bind,
67 &pedit_idx_gen, &pedit_hash_info);
68 if (unlikely(!pc))
1da177e4 69 return -ENOMEM;
e9ce1cd3 70 p = to_pedit(pc);
1da177e4
LT
71 keys = kmalloc(ksize, GFP_KERNEL);
72 if (keys == NULL) {
e9ce1cd3 73 kfree(pc);
1da177e4
LT
74 return -ENOMEM;
75 }
76 ret = ACT_P_CREATED;
77 } else {
e9ce1cd3 78 p = to_pedit(pc);
1da177e4 79 if (!ovr) {
e9ce1cd3 80 tcf_hash_release(pc, bind, &pedit_hash_info);
1da177e4
LT
81 return -EEXIST;
82 }
e9ce1cd3 83 if (p->tcfp_nkeys && p->tcfp_nkeys != parm->nkeys) {
1da177e4
LT
84 keys = kmalloc(ksize, GFP_KERNEL);
85 if (keys == NULL)
86 return -ENOMEM;
87 }
88 }
89
e9ce1cd3
DM
90 spin_lock_bh(&p->tcf_lock);
91 p->tcfp_flags = parm->flags;
92 p->tcf_action = parm->action;
1da177e4 93 if (keys) {
e9ce1cd3
DM
94 kfree(p->tcfp_keys);
95 p->tcfp_keys = keys;
96 p->tcfp_nkeys = parm->nkeys;
1da177e4 97 }
e9ce1cd3
DM
98 memcpy(p->tcfp_keys, parm->keys, ksize);
99 spin_unlock_bh(&p->tcf_lock);
1da177e4 100 if (ret == ACT_P_CREATED)
e9ce1cd3 101 tcf_hash_insert(pc, &pedit_hash_info);
1da177e4
LT
102 return ret;
103}
104
e9ce1cd3 105static int tcf_pedit_cleanup(struct tc_action *a, int bind)
1da177e4 106{
e9ce1cd3 107 struct tcf_pedit *p = a->priv;
1da177e4 108
e9ce1cd3
DM
109 if (p) {
110 struct tc_pedit_key *keys = p->tcfp_keys;
111 if (tcf_hash_release(&p->common, bind, &pedit_hash_info)) {
1da177e4
LT
112 kfree(keys);
113 return 1;
114 }
115 }
116 return 0;
117}
118
e9ce1cd3
DM
119static int tcf_pedit(struct sk_buff *skb, struct tc_action *a,
120 struct tcf_result *res)
1da177e4 121{
e9ce1cd3 122 struct tcf_pedit *p = a->priv;
1da177e4
LT
123 int i, munged = 0;
124 u8 *pptr;
125
126 if (!(skb->tc_verd & TC_OK2MUNGE)) {
127 /* should we set skb->cloned? */
128 if (pskb_expand_head(skb, 0, 0, GFP_ATOMIC)) {
e9ce1cd3 129 return p->tcf_action;
1da177e4
LT
130 }
131 }
132
d56f90a7 133 pptr = skb_network_header(skb);
1da177e4 134
e9ce1cd3 135 spin_lock(&p->tcf_lock);
1da177e4 136
e9ce1cd3 137 p->tcf_tm.lastuse = jiffies;
1da177e4 138
e9ce1cd3
DM
139 if (p->tcfp_nkeys > 0) {
140 struct tc_pedit_key *tkey = p->tcfp_keys;
1da177e4 141
e9ce1cd3 142 for (i = p->tcfp_nkeys; i > 0; i--, tkey++) {
1da177e4
LT
143 u32 *ptr;
144 int offset = tkey->off;
145
146 if (tkey->offmask) {
147 if (skb->len > tkey->at) {
148 char *j = pptr + tkey->at;
10297b99
YH
149 offset += ((*j & tkey->offmask) >>
150 tkey->shift);
1da177e4
LT
151 } else {
152 goto bad;
153 }
154 }
155
156 if (offset % 4) {
157 printk("offset must be on 32 bit boundaries\n");
158 goto bad;
159 }
75202e76 160 if (offset > 0 && offset > skb->len) {
1da177e4
LT
161 printk("offset %d cant exceed pkt length %d\n",
162 offset, skb->len);
163 goto bad;
164 }
165
166 ptr = (u32 *)(pptr+offset);
167 /* just do it, baby */
168 *ptr = ((*ptr & tkey->mask) ^ tkey->val);
169 munged++;
170 }
10297b99 171
1da177e4
LT
172 if (munged)
173 skb->tc_verd = SET_TC_MUNGED(skb->tc_verd);
174 goto done;
175 } else {
e9ce1cd3 176 printk("pedit BUG: index %d\n", p->tcf_index);
1da177e4
LT
177 }
178
179bad:
e9ce1cd3 180 p->tcf_qstats.overlimits++;
1da177e4 181done:
e9ce1cd3
DM
182 p->tcf_bstats.bytes += skb->len;
183 p->tcf_bstats.packets++;
184 spin_unlock(&p->tcf_lock);
185 return p->tcf_action;
1da177e4
LT
186}
187
e9ce1cd3
DM
188static int tcf_pedit_dump(struct sk_buff *skb, struct tc_action *a,
189 int bind, int ref)
1da177e4 190{
27a884dc 191 unsigned char *b = skb_tail_pointer(skb);
e9ce1cd3 192 struct tcf_pedit *p = a->priv;
1da177e4 193 struct tc_pedit *opt;
1da177e4 194 struct tcf_t t;
10297b99
YH
195 int s;
196
e9ce1cd3 197 s = sizeof(*opt) + p->tcfp_nkeys * sizeof(struct tc_pedit_key);
1da177e4
LT
198
199 /* netlink spinlocks held above us - must use ATOMIC */
0da974f4 200 opt = kzalloc(s, GFP_ATOMIC);
e9ce1cd3 201 if (unlikely(!opt))
1da177e4 202 return -ENOBUFS;
1da177e4 203
e9ce1cd3
DM
204 memcpy(opt->keys, p->tcfp_keys,
205 p->tcfp_nkeys * sizeof(struct tc_pedit_key));
206 opt->index = p->tcf_index;
207 opt->nkeys = p->tcfp_nkeys;
208 opt->flags = p->tcfp_flags;
209 opt->action = p->tcf_action;
210 opt->refcnt = p->tcf_refcnt - ref;
211 opt->bindcnt = p->tcf_bindcnt - bind;
1da177e4 212
7ba699c6 213 NLA_PUT(skb, TCA_PEDIT_PARMS, s, opt);
e9ce1cd3
DM
214 t.install = jiffies_to_clock_t(jiffies - p->tcf_tm.install);
215 t.lastuse = jiffies_to_clock_t(jiffies - p->tcf_tm.lastuse);
216 t.expires = jiffies_to_clock_t(p->tcf_tm.expires);
7ba699c6 217 NLA_PUT(skb, TCA_PEDIT_TM, sizeof(t), &t);
541673c8 218 kfree(opt);
1da177e4
LT
219 return skb->len;
220
7ba699c6 221nla_put_failure:
dc5fc579 222 nlmsg_trim(skb, b);
541673c8 223 kfree(opt);
1da177e4
LT
224 return -1;
225}
226
e9ce1cd3 227static struct tc_action_ops act_pedit_ops = {
1da177e4 228 .kind = "pedit",
e9ce1cd3 229 .hinfo = &pedit_hash_info,
1da177e4
LT
230 .type = TCA_ACT_PEDIT,
231 .capab = TCA_CAP_NONE,
232 .owner = THIS_MODULE,
233 .act = tcf_pedit,
234 .dump = tcf_pedit_dump,
235 .cleanup = tcf_pedit_cleanup,
236 .lookup = tcf_hash_search,
237 .init = tcf_pedit_init,
238 .walk = tcf_generic_walker
239};
240
241MODULE_AUTHOR("Jamal Hadi Salim(2002-4)");
242MODULE_DESCRIPTION("Generic Packet Editor actions");
243MODULE_LICENSE("GPL");
244
e9ce1cd3 245static int __init pedit_init_module(void)
1da177e4
LT
246{
247 return tcf_register_action(&act_pedit_ops);
248}
249
e9ce1cd3 250static void __exit pedit_cleanup_module(void)
1da177e4
LT
251{
252 tcf_unregister_action(&act_pedit_ops);
253}
254
255module_init(pedit_init_module);
256module_exit(pedit_cleanup_module);
257
This page took 0.383636 seconds and 5 git commands to generate.