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