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 static unsigned int pedit_net_id
;
28 static struct tc_action_ops act_pedit_ops
;
30 static const struct nla_policy pedit_policy
[TCA_PEDIT_MAX
+ 1] = {
31 [TCA_PEDIT_PARMS
] = { .len
= sizeof(struct tc_pedit
) },
32 [TCA_PEDIT_KEYS_EX
] = { .type
= NLA_NESTED
},
35 static const struct nla_policy pedit_key_ex_policy
[TCA_PEDIT_KEY_EX_MAX
+ 1] = {
36 [TCA_PEDIT_KEY_EX_HTYPE
] = { .type
= NLA_U16
},
37 [TCA_PEDIT_KEY_EX_CMD
] = { .type
= NLA_U16
},
40 static struct tcf_pedit_key_ex
*tcf_pedit_keys_ex_parse(struct nlattr
*nla
,
43 struct tcf_pedit_key_ex
*keys_ex
;
44 struct tcf_pedit_key_ex
*k
;
45 const struct nlattr
*ka
;
52 keys_ex
= kcalloc(n
, sizeof(*k
), GFP_KERNEL
);
54 return ERR_PTR(-ENOMEM
);
58 nla_for_each_nested(ka
, nla
, rem
) {
59 struct nlattr
*tb
[TCA_PEDIT_KEY_EX_MAX
+ 1];
67 if (nla_type(ka
) != TCA_PEDIT_KEY_EX
) {
72 err
= nla_parse_nested(tb
, TCA_PEDIT_KEY_EX_MAX
, ka
,
73 pedit_key_ex_policy
, NULL
);
77 if (!tb
[TCA_PEDIT_KEY_EX_HTYPE
] ||
78 !tb
[TCA_PEDIT_KEY_EX_CMD
]) {
83 k
->htype
= nla_get_u16(tb
[TCA_PEDIT_KEY_EX_HTYPE
]);
84 k
->cmd
= nla_get_u16(tb
[TCA_PEDIT_KEY_EX_CMD
]);
86 if (k
->htype
> TCA_PEDIT_HDR_TYPE_MAX
||
87 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
);
115 struct nlattr
*key_start
;
117 key_start
= nla_nest_start(skb
, TCA_PEDIT_KEY_EX
);
121 if (nla_put_u16(skb
, TCA_PEDIT_KEY_EX_HTYPE
, keys_ex
->htype
) ||
122 nla_put_u16(skb
, TCA_PEDIT_KEY_EX_CMD
, keys_ex
->cmd
))
125 nla_nest_end(skb
, key_start
);
130 nla_nest_end(skb
, keys_start
);
134 nla_nest_cancel(skb
, keys_start
);
138 static int tcf_pedit_init(struct net
*net
, struct nlattr
*nla
,
139 struct nlattr
*est
, struct tc_action
**a
,
142 struct tc_action_net
*tn
= net_generic(net
, pedit_net_id
);
143 struct nlattr
*tb
[TCA_PEDIT_MAX
+ 1];
144 struct nlattr
*pattr
;
145 struct tc_pedit
*parm
;
148 struct tc_pedit_key
*keys
= NULL
;
149 struct tcf_pedit_key_ex
*keys_ex
;
155 err
= nla_parse_nested(tb
, TCA_PEDIT_MAX
, nla
, pedit_policy
, NULL
);
159 pattr
= tb
[TCA_PEDIT_PARMS
];
161 pattr
= tb
[TCA_PEDIT_PARMS_EX
];
165 parm
= nla_data(pattr
);
166 ksize
= parm
->nkeys
* sizeof(struct tc_pedit_key
);
167 if (nla_len(pattr
) < sizeof(*parm
) + ksize
)
170 keys_ex
= tcf_pedit_keys_ex_parse(tb
[TCA_PEDIT_KEYS_EX
], parm
->nkeys
);
172 return PTR_ERR(keys_ex
);
174 if (!tcf_idr_check(tn
, parm
->index
, a
, bind
)) {
177 ret
= tcf_idr_create(tn
, parm
->index
, est
, a
,
178 &act_pedit_ops
, bind
, false);
182 keys
= kmalloc(ksize
, GFP_KERNEL
);
184 tcf_idr_release(*a
, bind
);
192 tcf_idr_release(*a
, bind
);
196 if (p
->tcfp_nkeys
&& p
->tcfp_nkeys
!= parm
->nkeys
) {
197 keys
= kmalloc(ksize
, GFP_KERNEL
);
205 spin_lock_bh(&p
->tcf_lock
);
206 p
->tcfp_flags
= parm
->flags
;
207 p
->tcf_action
= parm
->action
;
211 p
->tcfp_nkeys
= parm
->nkeys
;
213 memcpy(p
->tcfp_keys
, parm
->keys
, ksize
);
215 kfree(p
->tcfp_keys_ex
);
216 p
->tcfp_keys_ex
= keys_ex
;
218 spin_unlock_bh(&p
->tcf_lock
);
219 if (ret
== ACT_P_CREATED
)
220 tcf_idr_insert(tn
, *a
);
224 static void tcf_pedit_cleanup(struct tc_action
*a
, int bind
)
226 struct tcf_pedit
*p
= to_pedit(a
);
227 struct tc_pedit_key
*keys
= p
->tcfp_keys
;
229 kfree(p
->tcfp_keys_ex
);
232 static bool offset_valid(struct sk_buff
*skb
, int offset
)
234 if (offset
> 0 && offset
> skb
->len
)
237 if (offset
< 0 && -offset
> skb_headroom(skb
))
243 static int pedit_skb_hdr_offset(struct sk_buff
*skb
,
244 enum pedit_header_type htype
, int *hoffset
)
249 case TCA_PEDIT_KEY_EX_HDR_TYPE_ETH
:
250 if (skb_mac_header_was_set(skb
)) {
251 *hoffset
= skb_mac_offset(skb
);
255 case TCA_PEDIT_KEY_EX_HDR_TYPE_NETWORK
:
256 case TCA_PEDIT_KEY_EX_HDR_TYPE_IP4
:
257 case TCA_PEDIT_KEY_EX_HDR_TYPE_IP6
:
258 *hoffset
= skb_network_offset(skb
);
261 case TCA_PEDIT_KEY_EX_HDR_TYPE_TCP
:
262 case TCA_PEDIT_KEY_EX_HDR_TYPE_UDP
:
263 if (skb_transport_header_was_set(skb
)) {
264 *hoffset
= skb_transport_offset(skb
);
276 static int tcf_pedit(struct sk_buff
*skb
, const struct tc_action
*a
,
277 struct tcf_result
*res
)
279 struct tcf_pedit
*p
= to_pedit(a
);
282 if (skb_unclone(skb
, GFP_ATOMIC
))
283 return p
->tcf_action
;
285 spin_lock(&p
->tcf_lock
);
287 tcf_lastuse_update(&p
->tcf_tm
);
289 if (p
->tcfp_nkeys
> 0) {
290 struct tc_pedit_key
*tkey
= p
->tcfp_keys
;
291 struct tcf_pedit_key_ex
*tkey_ex
= p
->tcfp_keys_ex
;
292 enum pedit_header_type htype
= TCA_PEDIT_KEY_EX_HDR_TYPE_NETWORK
;
293 enum pedit_cmd cmd
= TCA_PEDIT_KEY_EX_CMD_SET
;
295 for (i
= p
->tcfp_nkeys
; i
> 0; i
--, tkey
++) {
297 int offset
= tkey
->off
;
303 htype
= tkey_ex
->htype
;
309 rc
= pedit_skb_hdr_offset(skb
, htype
, &hoffset
);
311 pr_info("tc filter pedit bad header type specified (0x%x)\n",
319 if (!offset_valid(skb
, hoffset
+ tkey
->at
)) {
320 pr_info("tc filter pedit 'at' offset %d out of bounds\n",
324 d
= skb_header_pointer(skb
, hoffset
+ tkey
->at
, 1,
328 offset
+= (*d
& tkey
->offmask
) >> tkey
->shift
;
332 pr_info("tc filter pedit"
333 " offset must be on 32 bit boundaries\n");
337 if (!offset_valid(skb
, hoffset
+ offset
)) {
338 pr_info("tc filter pedit offset %d out of bounds\n",
343 ptr
= skb_header_pointer(skb
, hoffset
+ offset
, 4, &_data
);
346 /* just do it, baby */
348 case TCA_PEDIT_KEY_EX_CMD_SET
:
351 case TCA_PEDIT_KEY_EX_CMD_ADD
:
352 val
= (*ptr
+ tkey
->val
) & ~tkey
->mask
;
355 pr_info("tc filter pedit bad command (%d)\n",
360 *ptr
= ((*ptr
& tkey
->mask
) ^ val
);
362 skb_store_bits(skb
, hoffset
+ offset
, ptr
, 4);
367 WARN(1, "pedit BUG: index %d\n", p
->tcf_index
);
370 p
->tcf_qstats
.overlimits
++;
372 bstats_update(&p
->tcf_bstats
, skb
);
373 spin_unlock(&p
->tcf_lock
);
374 return p
->tcf_action
;
377 static int tcf_pedit_dump(struct sk_buff
*skb
, struct tc_action
*a
,
380 unsigned char *b
= skb_tail_pointer(skb
);
381 struct tcf_pedit
*p
= to_pedit(a
);
382 struct tc_pedit
*opt
;
386 s
= sizeof(*opt
) + p
->tcfp_nkeys
* sizeof(struct tc_pedit_key
);
388 /* netlink spinlocks held above us - must use ATOMIC */
389 opt
= kzalloc(s
, GFP_ATOMIC
);
393 memcpy(opt
->keys
, p
->tcfp_keys
,
394 p
->tcfp_nkeys
* sizeof(struct tc_pedit_key
));
395 opt
->index
= p
->tcf_index
;
396 opt
->nkeys
= p
->tcfp_nkeys
;
397 opt
->flags
= p
->tcfp_flags
;
398 opt
->action
= p
->tcf_action
;
399 opt
->refcnt
= p
->tcf_refcnt
- ref
;
400 opt
->bindcnt
= p
->tcf_bindcnt
- bind
;
402 if (p
->tcfp_keys_ex
) {
403 if (tcf_pedit_key_ex_dump(skb
,
406 goto nla_put_failure
;
408 if (nla_put(skb
, TCA_PEDIT_PARMS_EX
, s
, opt
))
409 goto nla_put_failure
;
411 if (nla_put(skb
, TCA_PEDIT_PARMS
, s
, opt
))
412 goto nla_put_failure
;
415 tcf_tm_dump(&t
, &p
->tcf_tm
);
416 if (nla_put_64bit(skb
, TCA_PEDIT_TM
, sizeof(t
), &t
, TCA_PEDIT_PAD
))
417 goto nla_put_failure
;
428 static int tcf_pedit_walker(struct net
*net
, struct sk_buff
*skb
,
429 struct netlink_callback
*cb
, int type
,
430 const struct tc_action_ops
*ops
)
432 struct tc_action_net
*tn
= net_generic(net
, pedit_net_id
);
434 return tcf_generic_walker(tn
, skb
, cb
, type
, ops
);
437 static int tcf_pedit_search(struct net
*net
, struct tc_action
**a
, u32 index
)
439 struct tc_action_net
*tn
= net_generic(net
, pedit_net_id
);
441 return tcf_idr_search(tn
, a
, index
);
444 static struct tc_action_ops act_pedit_ops
= {
446 .type
= TCA_ACT_PEDIT
,
447 .owner
= THIS_MODULE
,
449 .dump
= tcf_pedit_dump
,
450 .cleanup
= tcf_pedit_cleanup
,
451 .init
= tcf_pedit_init
,
452 .walk
= tcf_pedit_walker
,
453 .lookup
= tcf_pedit_search
,
454 .size
= sizeof(struct tcf_pedit
),
457 static __net_init
int pedit_init_net(struct net
*net
)
459 struct tc_action_net
*tn
= net_generic(net
, pedit_net_id
);
461 return tc_action_net_init(tn
, &act_pedit_ops
);
464 static void __net_exit
pedit_exit_net(struct net
*net
)
466 struct tc_action_net
*tn
= net_generic(net
, pedit_net_id
);
468 tc_action_net_exit(tn
);
471 static struct pernet_operations pedit_net_ops
= {
472 .init
= pedit_init_net
,
473 .exit
= pedit_exit_net
,
475 .size
= sizeof(struct tc_action_net
),
478 MODULE_AUTHOR("Jamal Hadi Salim(2002-4)");
479 MODULE_DESCRIPTION("Generic Packet Editor actions");
480 MODULE_LICENSE("GPL");
482 static int __init
pedit_init_module(void)
484 return tcf_register_action(&act_pedit_ops
, &pedit_net_ops
);
487 static void __exit
pedit_cleanup_module(void)
489 tcf_unregister_action(&act_pedit_ops
, &pedit_net_ops
);
492 module_init(pedit_init_module
);
493 module_exit(pedit_cleanup_module
);