2 * net/sched/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-4)
14 #include <asm/uaccess.h>
15 #include <asm/system.h>
16 #include <asm/bitops.h>
17 #include <linux/config.h>
18 #include <linux/types.h>
19 #include <linux/kernel.h>
20 #include <linux/sched.h>
21 #include <linux/string.h>
23 #include <linux/socket.h>
24 #include <linux/sockios.h>
26 #include <linux/errno.h>
27 #include <linux/interrupt.h>
28 #include <linux/netdevice.h>
29 #include <linux/skbuff.h>
30 #include <linux/rtnetlink.h>
31 #include <linux/module.h>
32 #include <linux/init.h>
33 #include <linux/proc_fs.h>
34 #include <linux/kmod.h>
36 #include <net/pkt_sched.h>
37 #include <linux/tc_act/tc_ipt.h>
38 #include <net/tc_act/tc_ipt.h>
40 #include <linux/netfilter_ipv4/ip_tables.h>
42 /* use generic hash table */
43 #define MY_TAB_SIZE 16
44 #define MY_TAB_MASK 15
47 static struct tcf_ipt
*tcf_ipt_ht
[MY_TAB_SIZE
];
48 /* ipt hash table lock */
49 static DEFINE_RWLOCK(ipt_lock
);
51 /* ovewrride the defaults */
52 #define tcf_st tcf_ipt
53 #define tcf_t_lock ipt_lock
54 #define tcf_ht tcf_ipt_ht
56 #define CONFIG_NET_ACT_INIT
57 #include <net/pkt_act.h>
60 ipt_init_target(struct ipt_entry_target
*t
, char *table
, unsigned int hook
)
62 struct ipt_target
*target
;
65 target
= xt_find_target(AF_INET
, t
->u
.user
.name
, t
->u
.user
.revision
);
69 DPRINTK("ipt_init_target: found %s\n", target
->name
);
70 t
->u
.kernel
.target
= target
;
72 if (t
->u
.kernel
.target
->checkentry
73 && !t
->u
.kernel
.target
->checkentry(table
, NULL
,
74 t
->u
.kernel
.target
, t
->data
,
75 t
->u
.target_size
- sizeof(*t
),
77 DPRINTK("ipt_init_target: check failed for `%s'.\n",
78 t
->u
.kernel
.target
->name
);
79 module_put(t
->u
.kernel
.target
->me
);
87 ipt_destroy_target(struct ipt_entry_target
*t
)
89 if (t
->u
.kernel
.target
->destroy
)
90 t
->u
.kernel
.target
->destroy(t
->u
.kernel
.target
, t
->data
,
91 t
->u
.target_size
- sizeof(*t
));
92 module_put(t
->u
.kernel
.target
->me
);
96 tcf_ipt_release(struct tcf_ipt
*p
, int bind
)
103 if (p
->bindcnt
<= 0 && p
->refcnt
<= 0) {
104 ipt_destroy_target(p
->t
);
115 tcf_ipt_init(struct rtattr
*rta
, struct rtattr
*est
, struct tc_action
*a
,
118 struct rtattr
*tb
[TCA_IPT_MAX
];
120 struct ipt_entry_target
*td
, *t
;
126 if (rta
== NULL
|| rtattr_parse_nested(tb
, TCA_IPT_MAX
, rta
) < 0)
129 if (tb
[TCA_IPT_HOOK
-1] == NULL
||
130 RTA_PAYLOAD(tb
[TCA_IPT_HOOK
-1]) < sizeof(u32
))
132 if (tb
[TCA_IPT_TARG
-1] == NULL
||
133 RTA_PAYLOAD(tb
[TCA_IPT_TARG
-1]) < sizeof(*t
))
135 td
= (struct ipt_entry_target
*)RTA_DATA(tb
[TCA_IPT_TARG
-1]);
136 if (RTA_PAYLOAD(tb
[TCA_IPT_TARG
-1]) < td
->u
.target_size
)
139 if (tb
[TCA_IPT_INDEX
-1] != NULL
&&
140 RTA_PAYLOAD(tb
[TCA_IPT_INDEX
-1]) >= sizeof(u32
))
141 index
= *(u32
*)RTA_DATA(tb
[TCA_IPT_INDEX
-1]);
143 p
= tcf_hash_check(index
, a
, ovr
, bind
);
145 p
= tcf_hash_create(index
, est
, a
, sizeof(*p
), ovr
, bind
);
151 tcf_ipt_release(p
, bind
);
156 hook
= *(u32
*)RTA_DATA(tb
[TCA_IPT_HOOK
-1]);
159 tname
= kmalloc(IFNAMSIZ
, GFP_KERNEL
);
162 if (tb
[TCA_IPT_TABLE
- 1] == NULL
||
163 rtattr_strlcpy(tname
, tb
[TCA_IPT_TABLE
-1], IFNAMSIZ
) >= IFNAMSIZ
)
164 strcpy(tname
, "mangle");
166 t
= kmalloc(td
->u
.target_size
, GFP_KERNEL
);
169 memcpy(t
, td
, td
->u
.target_size
);
171 if ((err
= ipt_init_target(t
, tname
, hook
)) < 0)
174 spin_lock_bh(&p
->lock
);
175 if (ret
!= ACT_P_CREATED
) {
176 ipt_destroy_target(p
->t
);
183 spin_unlock_bh(&p
->lock
);
184 if (ret
== ACT_P_CREATED
)
198 tcf_ipt_cleanup(struct tc_action
*a
, int bind
)
200 struct tcf_ipt
*p
= PRIV(a
, ipt
);
201 return tcf_ipt_release(p
, bind
);
205 tcf_ipt(struct sk_buff
*skb
, struct tc_action
*a
, struct tcf_result
*res
)
207 int ret
= 0, result
= 0;
208 struct tcf_ipt
*p
= PRIV(a
, ipt
);
210 if (skb_cloned(skb
)) {
211 if (pskb_expand_head(skb
, 0, 0, GFP_ATOMIC
))
212 return TC_ACT_UNSPEC
;
217 p
->tm
.lastuse
= jiffies
;
218 p
->bstats
.bytes
+= skb
->len
;
221 /* yes, we have to worry about both in and out dev
222 worry later - danger - this API seems to have changed
223 from earlier kernels */
225 /* iptables targets take a double skb pointer in case the skb
226 * needs to be replaced. We don't own the skb, so this must not
227 * happen. The pskb_expand_head above should make sure of this */
228 ret
= p
->t
->u
.kernel
.target
->target(&skb
, skb
->dev
, NULL
, p
->hook
,
229 p
->t
->u
.kernel
.target
, p
->t
->data
,
236 result
= TC_ACT_SHOT
;
240 result
= TC_ACT_PIPE
;
244 printk("Bogus netfilter code %d assume ACCEPT\n", ret
);
245 result
= TC_POLICE_OK
;
248 spin_unlock(&p
->lock
);
254 tcf_ipt_dump(struct sk_buff
*skb
, struct tc_action
*a
, int bind
, int ref
)
256 struct ipt_entry_target
*t
;
259 unsigned char *b
= skb
->tail
;
260 struct tcf_ipt
*p
= PRIV(a
, ipt
);
262 /* for simple targets kernel size == user size
263 ** user name = target name
264 ** for foolproof you need to not assume this
267 t
= kmalloc(p
->t
->u
.user
.target_size
, GFP_ATOMIC
);
271 c
.bindcnt
= p
->bindcnt
- bind
;
272 c
.refcnt
= p
->refcnt
- ref
;
273 memcpy(t
, p
->t
, p
->t
->u
.user
.target_size
);
274 strcpy(t
->u
.user
.name
, p
->t
->u
.kernel
.target
->name
);
276 DPRINTK("\ttcf_ipt_dump tablename %s length %d\n", p
->tname
,
278 DPRINTK("\tdump target name %s size %d size user %d "
279 "data[0] %x data[1] %x\n", p
->t
->u
.kernel
.target
->name
,
280 p
->t
->u
.target_size
, p
->t
->u
.user
.target_size
,
281 p
->t
->data
[0], p
->t
->data
[1]);
282 RTA_PUT(skb
, TCA_IPT_TARG
, p
->t
->u
.user
.target_size
, t
);
283 RTA_PUT(skb
, TCA_IPT_INDEX
, 4, &p
->index
);
284 RTA_PUT(skb
, TCA_IPT_HOOK
, 4, &p
->hook
);
285 RTA_PUT(skb
, TCA_IPT_CNT
, sizeof(struct tc_cnt
), &c
);
286 RTA_PUT(skb
, TCA_IPT_TABLE
, IFNAMSIZ
, p
->tname
);
287 tm
.install
= jiffies_to_clock_t(jiffies
- p
->tm
.install
);
288 tm
.lastuse
= jiffies_to_clock_t(jiffies
- p
->tm
.lastuse
);
289 tm
.expires
= jiffies_to_clock_t(p
->tm
.expires
);
290 RTA_PUT(skb
, TCA_IPT_TM
, sizeof (tm
), &tm
);
295 skb_trim(skb
, b
- skb
->data
);
300 static struct tc_action_ops act_ipt_ops
= {
303 .capab
= TCA_CAP_NONE
,
304 .owner
= THIS_MODULE
,
306 .dump
= tcf_ipt_dump
,
307 .cleanup
= tcf_ipt_cleanup
,
308 .lookup
= tcf_hash_search
,
309 .init
= tcf_ipt_init
,
310 .walk
= tcf_generic_walker
313 MODULE_AUTHOR("Jamal Hadi Salim(2002-4)");
314 MODULE_DESCRIPTION("Iptables target actions");
315 MODULE_LICENSE("GPL");
318 ipt_init_module(void)
320 return tcf_register_action(&act_ipt_ops
);
324 ipt_cleanup_module(void)
326 tcf_unregister_action(&act_ipt_ops
);
329 module_init(ipt_init_module
);
330 module_exit(ipt_cleanup_module
);