2 * net/sched/act_pedit.c Generic packet editor
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.
9 * Authors: Jamal Hadi Salim (2002-4)
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>
26 #define PEDIT_TAB_MASK 15
28 static int pedit_net_id;
29 static struct tc_action_ops act_pedit_ops;
31 static const struct nla_policy pedit_policy[TCA_PEDIT_MAX + 1] = {
32 [TCA_PEDIT_PARMS] = { .len = sizeof(struct tc_pedit) },
35 static int tcf_pedit_init(struct net *net, struct nlattr *nla,
36 struct nlattr *est, struct tc_action **a,
39 struct tc_action_net *tn = net_generic(net, pedit_net_id);
40 struct nlattr *tb[TCA_PEDIT_MAX + 1];
41 struct tc_pedit *parm;
44 struct tc_pedit_key *keys = NULL;
50 err = nla_parse_nested(tb, TCA_PEDIT_MAX, nla, pedit_policy);
54 if (tb[TCA_PEDIT_PARMS] == NULL)
56 parm = nla_data(tb[TCA_PEDIT_PARMS]);
57 ksize = parm->nkeys * sizeof(struct tc_pedit_key);
58 if (nla_len(tb[TCA_PEDIT_PARMS]) < sizeof(*parm) + ksize)
61 if (!tcf_hash_check(tn, parm->index, a, bind)) {
64 ret = tcf_hash_create(tn, parm->index, est, a,
65 &act_pedit_ops, bind, false);
69 keys = kmalloc(ksize, GFP_KERNEL);
71 tcf_hash_cleanup(*a, est);
78 tcf_hash_release(*a, bind);
82 if (p->tcfp_nkeys && p->tcfp_nkeys != parm->nkeys) {
83 keys = kmalloc(ksize, GFP_KERNEL);
89 spin_lock_bh(&p->tcf_lock);
90 p->tcfp_flags = parm->flags;
91 p->tcf_action = parm->action;
95 p->tcfp_nkeys = parm->nkeys;
97 memcpy(p->tcfp_keys, parm->keys, ksize);
98 spin_unlock_bh(&p->tcf_lock);
99 if (ret == ACT_P_CREATED)
100 tcf_hash_insert(tn, *a);
104 static void tcf_pedit_cleanup(struct tc_action *a, int bind)
106 struct tcf_pedit *p = to_pedit(a);
107 struct tc_pedit_key *keys = p->tcfp_keys;
111 static int tcf_pedit(struct sk_buff *skb, const struct tc_action *a,
112 struct tcf_result *res)
114 struct tcf_pedit *p = to_pedit(a);
118 if (skb_unclone(skb, GFP_ATOMIC))
119 return p->tcf_action;
121 off = skb_network_offset(skb);
123 spin_lock(&p->tcf_lock);
125 tcf_lastuse_update(&p->tcf_tm);
127 if (p->tcfp_nkeys > 0) {
128 struct tc_pedit_key *tkey = p->tcfp_keys;
130 for (i = p->tcfp_nkeys; i > 0; i--, tkey++) {
132 int offset = tkey->off;
137 d = skb_header_pointer(skb, off + tkey->at, 1,
141 offset += (*d & tkey->offmask) >> tkey->shift;
145 pr_info("tc filter pedit"
146 " offset must be on 32 bit boundaries\n");
149 if (offset > 0 && offset > skb->len) {
150 pr_info("tc filter pedit"
151 " offset %d can't exceed pkt length %d\n",
156 ptr = skb_header_pointer(skb, off + offset, 4, &_data);
159 /* just do it, baby */
160 *ptr = ((*ptr & tkey->mask) ^ tkey->val);
162 skb_store_bits(skb, off + offset, ptr, 4);
167 WARN(1, "pedit BUG: index %d\n", p->tcf_index);
170 p->tcf_qstats.overlimits++;
172 bstats_update(&p->tcf_bstats, skb);
173 spin_unlock(&p->tcf_lock);
174 return p->tcf_action;
177 static int tcf_pedit_dump(struct sk_buff *skb, struct tc_action *a,
180 unsigned char *b = skb_tail_pointer(skb);
181 struct tcf_pedit *p = to_pedit(a);
182 struct tc_pedit *opt;
186 s = sizeof(*opt) + p->tcfp_nkeys * sizeof(struct tc_pedit_key);
188 /* netlink spinlocks held above us - must use ATOMIC */
189 opt = kzalloc(s, GFP_ATOMIC);
193 memcpy(opt->keys, p->tcfp_keys,
194 p->tcfp_nkeys * sizeof(struct tc_pedit_key));
195 opt->index = p->tcf_index;
196 opt->nkeys = p->tcfp_nkeys;
197 opt->flags = p->tcfp_flags;
198 opt->action = p->tcf_action;
199 opt->refcnt = p->tcf_refcnt - ref;
200 opt->bindcnt = p->tcf_bindcnt - bind;
202 if (nla_put(skb, TCA_PEDIT_PARMS, s, opt))
203 goto nla_put_failure;
205 tcf_tm_dump(&t, &p->tcf_tm);
206 if (nla_put_64bit(skb, TCA_PEDIT_TM, sizeof(t), &t, TCA_PEDIT_PAD))
207 goto nla_put_failure;
218 static int tcf_pedit_walker(struct net *net, struct sk_buff *skb,
219 struct netlink_callback *cb, int type,
220 const struct tc_action_ops *ops)
222 struct tc_action_net *tn = net_generic(net, pedit_net_id);
224 return tcf_generic_walker(tn, skb, cb, type, ops);
227 static int tcf_pedit_search(struct net *net, struct tc_action **a, u32 index)
229 struct tc_action_net *tn = net_generic(net, pedit_net_id);
231 return tcf_hash_search(tn, a, index);
234 static struct tc_action_ops act_pedit_ops = {
236 .type = TCA_ACT_PEDIT,
237 .owner = THIS_MODULE,
239 .dump = tcf_pedit_dump,
240 .cleanup = tcf_pedit_cleanup,
241 .init = tcf_pedit_init,
242 .walk = tcf_pedit_walker,
243 .lookup = tcf_pedit_search,
244 .size = sizeof(struct tcf_pedit),
247 static __net_init int pedit_init_net(struct net *net)
249 struct tc_action_net *tn = net_generic(net, pedit_net_id);
251 return tc_action_net_init(tn, &act_pedit_ops, PEDIT_TAB_MASK);
254 static void __net_exit pedit_exit_net(struct net *net)
256 struct tc_action_net *tn = net_generic(net, pedit_net_id);
258 tc_action_net_exit(tn);
261 static struct pernet_operations pedit_net_ops = {
262 .init = pedit_init_net,
263 .exit = pedit_exit_net,
265 .size = sizeof(struct tc_action_net),
268 MODULE_AUTHOR("Jamal Hadi Salim(2002-4)");
269 MODULE_DESCRIPTION("Generic Packet Editor actions");
270 MODULE_LICENSE("GPL");
272 static int __init pedit_init_module(void)
274 return tcf_register_action(&act_pedit_ops, &pedit_net_ops);
277 static void __exit pedit_cleanup_module(void)
279 tcf_unregister_action(&act_pedit_ops, &pedit_net_ops);
282 module_init(pedit_init_module);
283 module_exit(pedit_cleanup_module);