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