2 * net/sched/act_ipt.c iptables target interface
4 *TODO: Add other tables. For now we only support the ipv4 table targets
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
11 * Copyright: Jamal Hadi Salim (2002-13)
14 #include <linux/types.h>
15 #include <linux/kernel.h>
16 #include <linux/string.h>
17 #include <linux/errno.h>
18 #include <linux/skbuff.h>
19 #include <linux/rtnetlink.h>
20 #include <linux/module.h>
21 #include <linux/init.h>
22 #include <linux/slab.h>
23 #include <net/netlink.h>
24 #include <net/pkt_sched.h>
25 #include <linux/tc_act/tc_ipt.h>
26 #include <net/tc_act/tc_ipt.h>
28 #include <linux/netfilter_ipv4/ip_tables.h>
31 #define IPT_TAB_MASK 15
33 static int ipt_net_id
;
34 static struct tc_action_ops act_ipt_ops
;
37 static struct tc_action_ops act_xt_ops
;
39 static int ipt_init_target(struct xt_entry_target
*t
, char *table
,
42 struct xt_tgchk_param par
;
43 struct xt_target
*target
;
46 target
= xt_request_find_target(AF_INET
, t
->u
.user
.name
,
49 return PTR_ERR(target
);
51 t
->u
.kernel
.target
= target
;
55 par
.targinfo
= t
->data
;
57 par
.family
= NFPROTO_IPV4
;
59 ret
= xt_check_target(&par
, t
->u
.target_size
- sizeof(*t
), 0, false);
61 module_put(t
->u
.kernel
.target
->me
);
67 static void ipt_destroy_target(struct xt_entry_target
*t
)
69 struct xt_tgdtor_param par
= {
70 .target
= t
->u
.kernel
.target
,
72 .family
= NFPROTO_IPV4
,
74 if (par
.target
->destroy
!= NULL
)
75 par
.target
->destroy(&par
);
76 module_put(par
.target
->me
);
79 static void tcf_ipt_release(struct tc_action
*a
, int bind
)
81 struct tcf_ipt
*ipt
= to_ipt(a
);
82 ipt_destroy_target(ipt
->tcfi_t
);
83 kfree(ipt
->tcfi_tname
);
87 static const struct nla_policy ipt_policy
[TCA_IPT_MAX
+ 1] = {
88 [TCA_IPT_TABLE
] = { .type
= NLA_STRING
, .len
= IFNAMSIZ
},
89 [TCA_IPT_HOOK
] = { .type
= NLA_U32
},
90 [TCA_IPT_INDEX
] = { .type
= NLA_U32
},
91 [TCA_IPT_TARG
] = { .len
= sizeof(struct xt_entry_target
) },
94 static int __tcf_ipt_init(struct tc_action_net
*tn
, struct nlattr
*nla
,
95 struct nlattr
*est
, struct tc_action
**a
,
96 const struct tc_action_ops
*ops
, int ovr
, int bind
)
98 struct nlattr
*tb
[TCA_IPT_MAX
+ 1];
100 struct xt_entry_target
*td
, *t
;
110 err
= nla_parse_nested(tb
, TCA_IPT_MAX
, nla
, ipt_policy
);
114 if (tb
[TCA_IPT_INDEX
] != NULL
)
115 index
= nla_get_u32(tb
[TCA_IPT_INDEX
]);
117 exists
= tcf_hash_check(tn
, index
, a
, bind
);
121 if (tb
[TCA_IPT_HOOK
] == NULL
|| tb
[TCA_IPT_TARG
] == NULL
) {
123 tcf_hash_release(*a
, bind
);
127 td
= (struct xt_entry_target
*)nla_data(tb
[TCA_IPT_TARG
]);
128 if (nla_len(tb
[TCA_IPT_TARG
]) < td
->u
.target_size
) {
130 tcf_hash_release(*a
, bind
);
135 ret
= tcf_hash_create(tn
, index
, est
, a
, ops
, bind
,
141 if (bind
)/* dont override defaults */
143 tcf_hash_release(*a
, bind
);
148 hook
= nla_get_u32(tb
[TCA_IPT_HOOK
]);
151 tname
= kmalloc(IFNAMSIZ
, GFP_KERNEL
);
152 if (unlikely(!tname
))
154 if (tb
[TCA_IPT_TABLE
] == NULL
||
155 nla_strlcpy(tname
, tb
[TCA_IPT_TABLE
], IFNAMSIZ
) >= IFNAMSIZ
)
156 strcpy(tname
, "mangle");
158 t
= kmemdup(td
, td
->u
.target_size
, GFP_KERNEL
);
162 err
= ipt_init_target(t
, tname
, hook
);
168 spin_lock_bh(&ipt
->tcf_lock
);
169 if (ret
!= ACT_P_CREATED
) {
170 ipt_destroy_target(ipt
->tcfi_t
);
171 kfree(ipt
->tcfi_tname
);
174 ipt
->tcfi_tname
= tname
;
176 ipt
->tcfi_hook
= hook
;
177 spin_unlock_bh(&ipt
->tcf_lock
);
178 if (ret
== ACT_P_CREATED
)
179 tcf_hash_insert(tn
, *a
);
187 if (ret
== ACT_P_CREATED
)
188 tcf_hash_cleanup(*a
, est
);
192 static int tcf_ipt_init(struct net
*net
, struct nlattr
*nla
,
193 struct nlattr
*est
, struct tc_action
**a
, int ovr
,
196 struct tc_action_net
*tn
= net_generic(net
, ipt_net_id
);
198 return __tcf_ipt_init(tn
, nla
, est
, a
, &act_ipt_ops
, ovr
, bind
);
201 static int tcf_xt_init(struct net
*net
, struct nlattr
*nla
,
202 struct nlattr
*est
, struct tc_action
**a
, int ovr
,
205 struct tc_action_net
*tn
= net_generic(net
, xt_net_id
);
207 return __tcf_ipt_init(tn
, nla
, est
, a
, &act_xt_ops
, ovr
, bind
);
210 static int tcf_ipt(struct sk_buff
*skb
, const struct tc_action
*a
,
211 struct tcf_result
*res
)
213 int ret
= 0, result
= 0;
214 struct tcf_ipt
*ipt
= to_ipt(a
);
215 struct xt_action_param par
;
217 if (skb_unclone(skb
, GFP_ATOMIC
))
218 return TC_ACT_UNSPEC
;
220 spin_lock(&ipt
->tcf_lock
);
222 tcf_lastuse_update(&ipt
->tcf_tm
);
223 bstats_update(&ipt
->tcf_bstats
, skb
);
225 /* yes, we have to worry about both in and out dev
226 * worry later - danger - this API seems to have changed
227 * from earlier kernels
229 par
.net
= dev_net(skb
->dev
);
232 par
.hooknum
= ipt
->tcfi_hook
;
233 par
.target
= ipt
->tcfi_t
->u
.kernel
.target
;
234 par
.targinfo
= ipt
->tcfi_t
->data
;
235 par
.family
= NFPROTO_IPV4
;
236 ret
= par
.target
->target(skb
, &par
);
243 result
= TC_ACT_SHOT
;
244 ipt
->tcf_qstats
.drops
++;
247 result
= TC_ACT_PIPE
;
250 net_notice_ratelimited("tc filter: Bogus netfilter code %d assume ACCEPT\n",
255 spin_unlock(&ipt
->tcf_lock
);
260 static int tcf_ipt_dump(struct sk_buff
*skb
, struct tc_action
*a
, int bind
,
263 unsigned char *b
= skb_tail_pointer(skb
);
264 struct tcf_ipt
*ipt
= to_ipt(a
);
265 struct xt_entry_target
*t
;
269 /* for simple targets kernel size == user size
270 * user name = target name
271 * for foolproof you need to not assume this
274 t
= kmemdup(ipt
->tcfi_t
, ipt
->tcfi_t
->u
.user
.target_size
, GFP_ATOMIC
);
276 goto nla_put_failure
;
278 c
.bindcnt
= ipt
->tcf_bindcnt
- bind
;
279 c
.refcnt
= ipt
->tcf_refcnt
- ref
;
280 strcpy(t
->u
.user
.name
, ipt
->tcfi_t
->u
.kernel
.target
->name
);
282 if (nla_put(skb
, TCA_IPT_TARG
, ipt
->tcfi_t
->u
.user
.target_size
, t
) ||
283 nla_put_u32(skb
, TCA_IPT_INDEX
, ipt
->tcf_index
) ||
284 nla_put_u32(skb
, TCA_IPT_HOOK
, ipt
->tcfi_hook
) ||
285 nla_put(skb
, TCA_IPT_CNT
, sizeof(struct tc_cnt
), &c
) ||
286 nla_put_string(skb
, TCA_IPT_TABLE
, ipt
->tcfi_tname
))
287 goto nla_put_failure
;
289 tcf_tm_dump(&tm
, &ipt
->tcf_tm
);
290 if (nla_put_64bit(skb
, TCA_IPT_TM
, sizeof(tm
), &tm
, TCA_IPT_PAD
))
291 goto nla_put_failure
;
302 static int tcf_ipt_walker(struct net
*net
, struct sk_buff
*skb
,
303 struct netlink_callback
*cb
, int type
,
304 const struct tc_action_ops
*ops
)
306 struct tc_action_net
*tn
= net_generic(net
, ipt_net_id
);
308 return tcf_generic_walker(tn
, skb
, cb
, type
, ops
);
311 static int tcf_ipt_search(struct net
*net
, struct tc_action
**a
, u32 index
)
313 struct tc_action_net
*tn
= net_generic(net
, ipt_net_id
);
315 return tcf_hash_search(tn
, a
, index
);
318 static struct tc_action_ops act_ipt_ops
= {
321 .owner
= THIS_MODULE
,
323 .dump
= tcf_ipt_dump
,
324 .cleanup
= tcf_ipt_release
,
325 .init
= tcf_ipt_init
,
326 .walk
= tcf_ipt_walker
,
327 .lookup
= tcf_ipt_search
,
328 .size
= sizeof(struct tcf_ipt
),
331 static __net_init
int ipt_init_net(struct net
*net
)
333 struct tc_action_net
*tn
= net_generic(net
, ipt_net_id
);
335 return tc_action_net_init(tn
, &act_ipt_ops
, IPT_TAB_MASK
);
338 static void __net_exit
ipt_exit_net(struct net
*net
)
340 struct tc_action_net
*tn
= net_generic(net
, ipt_net_id
);
342 tc_action_net_exit(tn
);
345 static struct pernet_operations ipt_net_ops
= {
346 .init
= ipt_init_net
,
347 .exit
= ipt_exit_net
,
349 .size
= sizeof(struct tc_action_net
),
352 static int tcf_xt_walker(struct net
*net
, struct sk_buff
*skb
,
353 struct netlink_callback
*cb
, int type
,
354 const struct tc_action_ops
*ops
)
356 struct tc_action_net
*tn
= net_generic(net
, xt_net_id
);
358 return tcf_generic_walker(tn
, skb
, cb
, type
, ops
);
361 static int tcf_xt_search(struct net
*net
, struct tc_action
**a
, u32 index
)
363 struct tc_action_net
*tn
= net_generic(net
, xt_net_id
);
365 return tcf_hash_search(tn
, a
, index
);
368 static struct tc_action_ops act_xt_ops
= {
371 .owner
= THIS_MODULE
,
373 .dump
= tcf_ipt_dump
,
374 .cleanup
= tcf_ipt_release
,
376 .walk
= tcf_xt_walker
,
377 .lookup
= tcf_xt_search
,
378 .size
= sizeof(struct tcf_ipt
),
381 static __net_init
int xt_init_net(struct net
*net
)
383 struct tc_action_net
*tn
= net_generic(net
, xt_net_id
);
385 return tc_action_net_init(tn
, &act_xt_ops
, IPT_TAB_MASK
);
388 static void __net_exit
xt_exit_net(struct net
*net
)
390 struct tc_action_net
*tn
= net_generic(net
, xt_net_id
);
392 tc_action_net_exit(tn
);
395 static struct pernet_operations xt_net_ops
= {
399 .size
= sizeof(struct tc_action_net
),
402 MODULE_AUTHOR("Jamal Hadi Salim(2002-13)");
403 MODULE_DESCRIPTION("Iptables target actions");
404 MODULE_LICENSE("GPL");
405 MODULE_ALIAS("act_xt");
407 static int __init
ipt_init_module(void)
411 ret1
= tcf_register_action(&act_xt_ops
, &xt_net_ops
);
413 pr_err("Failed to load xt action\n");
415 ret2
= tcf_register_action(&act_ipt_ops
, &ipt_net_ops
);
417 pr_err("Failed to load ipt action\n");
419 if (ret1
< 0 && ret2
< 0) {
425 static void __exit
ipt_cleanup_module(void)
427 tcf_unregister_action(&act_ipt_ops
, &ipt_net_ops
);
428 tcf_unregister_action(&act_xt_ops
, &xt_net_ops
);
431 module_init(ipt_init_module
);
432 module_exit(ipt_cleanup_module
);