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>
25 #include <uapi/linux/tc_act/tc_pedit.h>
27 #define PEDIT_TAB_MASK 15
29 static unsigned int pedit_net_id
;
30 static struct tc_action_ops act_pedit_ops
;
32 static const struct nla_policy pedit_policy
[TCA_PEDIT_MAX
+ 1] = {
33 [TCA_PEDIT_PARMS
] = { .len
= sizeof(struct tc_pedit
) },
34 [TCA_PEDIT_KEYS_EX
] = { .type
= NLA_NESTED
},
37 static const struct nla_policy pedit_key_ex_policy
[TCA_PEDIT_KEY_EX_MAX
+ 1] = {
38 [TCA_PEDIT_KEY_EX_HTYPE
] = { .type
= NLA_U16
},
39 [TCA_PEDIT_KEY_EX_CMD
] = { .type
= NLA_U16
},
42 static struct tcf_pedit_key_ex
*tcf_pedit_keys_ex_parse(struct nlattr
*nla
,
45 struct tcf_pedit_key_ex
*keys_ex
;
46 struct tcf_pedit_key_ex
*k
;
47 const struct nlattr
*ka
;
54 keys_ex
= kcalloc(n
, sizeof(*k
), GFP_KERNEL
);
56 return ERR_PTR(-ENOMEM
);
60 nla_for_each_nested(ka
, nla
, rem
) {
61 struct nlattr
*tb
[TCA_PEDIT_KEY_EX_MAX
+ 1];
69 if (nla_type(ka
) != TCA_PEDIT_KEY_EX
) {
74 err
= nla_parse_nested(tb
, TCA_PEDIT_KEY_EX_MAX
, ka
,
79 if (!tb
[TCA_PEDIT_KEY_EX_HTYPE
] ||
80 !tb
[TCA_PEDIT_KEY_EX_CMD
]) {
85 k
->htype
= nla_get_u16(tb
[TCA_PEDIT_KEY_EX_HTYPE
]);
86 k
->cmd
= nla_get_u16(tb
[TCA_PEDIT_KEY_EX_CMD
]);
88 if (k
->htype
> TCA_PEDIT_HDR_TYPE_MAX
||
89 k
->cmd
> TCA_PEDIT_CMD_MAX
) {
107 static int tcf_pedit_key_ex_dump(struct sk_buff
*skb
,
108 struct tcf_pedit_key_ex
*keys_ex
, int n
)
110 struct nlattr
*keys_start
= nla_nest_start(skb
, TCA_PEDIT_KEYS_EX
);
113 struct nlattr
*key_start
;
115 key_start
= nla_nest_start(skb
, TCA_PEDIT_KEY_EX
);
117 if (nla_put_u16(skb
, TCA_PEDIT_KEY_EX_HTYPE
, keys_ex
->htype
) ||
118 nla_put_u16(skb
, TCA_PEDIT_KEY_EX_CMD
, keys_ex
->cmd
)) {
119 nlmsg_trim(skb
, keys_start
);
123 nla_nest_end(skb
, key_start
);
128 nla_nest_end(skb
, keys_start
);
133 static int tcf_pedit_init(struct net
*net
, struct nlattr
*nla
,
134 struct nlattr
*est
, struct tc_action
**a
,
137 struct tc_action_net
*tn
= net_generic(net
, pedit_net_id
);
138 struct nlattr
*tb
[TCA_PEDIT_MAX
+ 1];
139 struct nlattr
*pattr
;
140 struct tc_pedit
*parm
;
143 struct tc_pedit_key
*keys
= NULL
;
144 struct tcf_pedit_key_ex
*keys_ex
;
150 err
= nla_parse_nested(tb
, TCA_PEDIT_MAX
, nla
, pedit_policy
);
154 pattr
= tb
[TCA_PEDIT_PARMS
];
156 pattr
= tb
[TCA_PEDIT_PARMS_EX
];
160 parm
= nla_data(pattr
);
161 ksize
= parm
->nkeys
* sizeof(struct tc_pedit_key
);
162 if (nla_len(pattr
) < sizeof(*parm
) + ksize
)
165 keys_ex
= tcf_pedit_keys_ex_parse(tb
[TCA_PEDIT_KEYS_EX
], parm
->nkeys
);
167 return PTR_ERR(keys_ex
);
169 if (!tcf_hash_check(tn
, parm
->index
, a
, bind
)) {
172 ret
= tcf_hash_create(tn
, parm
->index
, est
, a
,
173 &act_pedit_ops
, bind
, false);
177 keys
= kmalloc(ksize
, GFP_KERNEL
);
179 tcf_hash_cleanup(*a
, est
);
187 tcf_hash_release(*a
, bind
);
191 if (p
->tcfp_nkeys
&& p
->tcfp_nkeys
!= parm
->nkeys
) {
192 keys
= kmalloc(ksize
, GFP_KERNEL
);
200 spin_lock_bh(&p
->tcf_lock
);
201 p
->tcfp_flags
= parm
->flags
;
202 p
->tcf_action
= parm
->action
;
206 p
->tcfp_nkeys
= parm
->nkeys
;
208 memcpy(p
->tcfp_keys
, parm
->keys
, ksize
);
210 kfree(p
->tcfp_keys_ex
);
211 p
->tcfp_keys_ex
= keys_ex
;
213 spin_unlock_bh(&p
->tcf_lock
);
214 if (ret
== ACT_P_CREATED
)
215 tcf_hash_insert(tn
, *a
);
219 static void tcf_pedit_cleanup(struct tc_action
*a
, int bind
)
221 struct tcf_pedit
*p
= to_pedit(a
);
222 struct tc_pedit_key
*keys
= p
->tcfp_keys
;
224 kfree(p
->tcfp_keys_ex
);
227 static bool offset_valid(struct sk_buff
*skb
, int offset
)
229 if (offset
> 0 && offset
> skb
->len
)
232 if (offset
< 0 && -offset
> skb_headroom(skb
))
238 static int pedit_skb_hdr_offset(struct sk_buff
*skb
,
239 enum pedit_header_type htype
, int *hoffset
)
244 case TCA_PEDIT_KEY_EX_HDR_TYPE_ETH
:
245 if (skb_mac_header_was_set(skb
)) {
246 *hoffset
= skb_mac_offset(skb
);
250 case TCA_PEDIT_KEY_EX_HDR_TYPE_NETWORK
:
251 case TCA_PEDIT_KEY_EX_HDR_TYPE_IP4
:
252 case TCA_PEDIT_KEY_EX_HDR_TYPE_IP6
:
253 *hoffset
= skb_network_offset(skb
);
256 case TCA_PEDIT_KEY_EX_HDR_TYPE_TCP
:
257 case TCA_PEDIT_KEY_EX_HDR_TYPE_UDP
:
258 if (skb_transport_header_was_set(skb
)) {
259 *hoffset
= skb_transport_offset(skb
);
271 static int tcf_pedit(struct sk_buff
*skb
, const struct tc_action
*a
,
272 struct tcf_result
*res
)
274 struct tcf_pedit
*p
= to_pedit(a
);
277 if (skb_unclone(skb
, GFP_ATOMIC
))
278 return p
->tcf_action
;
280 spin_lock(&p
->tcf_lock
);
282 tcf_lastuse_update(&p
->tcf_tm
);
284 if (p
->tcfp_nkeys
> 0) {
285 struct tc_pedit_key
*tkey
= p
->tcfp_keys
;
286 struct tcf_pedit_key_ex
*tkey_ex
= p
->tcfp_keys_ex
;
287 enum pedit_header_type htype
= TCA_PEDIT_KEY_EX_HDR_TYPE_NETWORK
;
288 enum pedit_cmd cmd
= TCA_PEDIT_KEY_EX_CMD_SET
;
290 for (i
= p
->tcfp_nkeys
; i
> 0; i
--, tkey
++) {
292 int offset
= tkey
->off
;
298 htype
= tkey_ex
->htype
;
304 rc
= pedit_skb_hdr_offset(skb
, htype
, &hoffset
);
306 pr_info("tc filter pedit bad header type specified (0x%x)\n",
314 if (!offset_valid(skb
, hoffset
+ tkey
->at
)) {
315 pr_info("tc filter pedit 'at' offset %d out of bounds\n",
319 d
= skb_header_pointer(skb
, hoffset
+ tkey
->at
, 1,
323 offset
+= (*d
& tkey
->offmask
) >> tkey
->shift
;
327 pr_info("tc filter pedit"
328 " offset must be on 32 bit boundaries\n");
332 if (!offset_valid(skb
, hoffset
+ offset
)) {
333 pr_info("tc filter pedit offset %d out of bounds\n",
338 ptr
= skb_header_pointer(skb
, hoffset
+ offset
, 4, &_data
);
341 /* just do it, baby */
343 case TCA_PEDIT_KEY_EX_CMD_SET
:
346 case TCA_PEDIT_KEY_EX_CMD_ADD
:
347 val
= (*ptr
+ tkey
->val
) & ~tkey
->mask
;
350 pr_info("tc filter pedit bad command (%d)\n",
355 *ptr
= ((*ptr
& tkey
->mask
) ^ val
);
357 skb_store_bits(skb
, hoffset
+ offset
, ptr
, 4);
362 WARN(1, "pedit BUG: index %d\n", p
->tcf_index
);
365 p
->tcf_qstats
.overlimits
++;
367 bstats_update(&p
->tcf_bstats
, skb
);
368 spin_unlock(&p
->tcf_lock
);
369 return p
->tcf_action
;
372 static int tcf_pedit_dump(struct sk_buff
*skb
, struct tc_action
*a
,
375 unsigned char *b
= skb_tail_pointer(skb
);
376 struct tcf_pedit
*p
= to_pedit(a
);
377 struct tc_pedit
*opt
;
381 s
= sizeof(*opt
) + p
->tcfp_nkeys
* sizeof(struct tc_pedit_key
);
383 /* netlink spinlocks held above us - must use ATOMIC */
384 opt
= kzalloc(s
, GFP_ATOMIC
);
388 memcpy(opt
->keys
, p
->tcfp_keys
,
389 p
->tcfp_nkeys
* sizeof(struct tc_pedit_key
));
390 opt
->index
= p
->tcf_index
;
391 opt
->nkeys
= p
->tcfp_nkeys
;
392 opt
->flags
= p
->tcfp_flags
;
393 opt
->action
= p
->tcf_action
;
394 opt
->refcnt
= p
->tcf_refcnt
- ref
;
395 opt
->bindcnt
= p
->tcf_bindcnt
- bind
;
397 if (p
->tcfp_keys_ex
) {
398 tcf_pedit_key_ex_dump(skb
, p
->tcfp_keys_ex
, p
->tcfp_nkeys
);
400 if (nla_put(skb
, TCA_PEDIT_PARMS_EX
, s
, opt
))
401 goto nla_put_failure
;
403 if (nla_put(skb
, TCA_PEDIT_PARMS
, s
, opt
))
404 goto nla_put_failure
;
407 tcf_tm_dump(&t
, &p
->tcf_tm
);
408 if (nla_put_64bit(skb
, TCA_PEDIT_TM
, sizeof(t
), &t
, TCA_PEDIT_PAD
))
409 goto nla_put_failure
;
420 static int tcf_pedit_walker(struct net
*net
, struct sk_buff
*skb
,
421 struct netlink_callback
*cb
, int type
,
422 const struct tc_action_ops
*ops
)
424 struct tc_action_net
*tn
= net_generic(net
, pedit_net_id
);
426 return tcf_generic_walker(tn
, skb
, cb
, type
, ops
);
429 static int tcf_pedit_search(struct net
*net
, struct tc_action
**a
, u32 index
)
431 struct tc_action_net
*tn
= net_generic(net
, pedit_net_id
);
433 return tcf_hash_search(tn
, a
, index
);
436 static struct tc_action_ops act_pedit_ops
= {
438 .type
= TCA_ACT_PEDIT
,
439 .owner
= THIS_MODULE
,
441 .dump
= tcf_pedit_dump
,
442 .cleanup
= tcf_pedit_cleanup
,
443 .init
= tcf_pedit_init
,
444 .walk
= tcf_pedit_walker
,
445 .lookup
= tcf_pedit_search
,
446 .size
= sizeof(struct tcf_pedit
),
449 static __net_init
int pedit_init_net(struct net
*net
)
451 struct tc_action_net
*tn
= net_generic(net
, pedit_net_id
);
453 return tc_action_net_init(tn
, &act_pedit_ops
, PEDIT_TAB_MASK
);
456 static void __net_exit
pedit_exit_net(struct net
*net
)
458 struct tc_action_net
*tn
= net_generic(net
, pedit_net_id
);
460 tc_action_net_exit(tn
);
463 static struct pernet_operations pedit_net_ops
= {
464 .init
= pedit_init_net
,
465 .exit
= pedit_exit_net
,
467 .size
= sizeof(struct tc_action_net
),
470 MODULE_AUTHOR("Jamal Hadi Salim(2002-4)");
471 MODULE_DESCRIPTION("Generic Packet Editor actions");
472 MODULE_LICENSE("GPL");
474 static int __init
pedit_init_module(void)
476 return tcf_register_action(&act_pedit_ops
, &pedit_net_ops
);
479 static void __exit
pedit_cleanup_module(void)
481 tcf_unregister_action(&act_pedit_ops
, &pedit_net_ops
);
484 module_init(pedit_init_module
);
485 module_exit(pedit_cleanup_module
);