blob: 0acda45d455d7251df207fe799464cd342aeb15d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * IPv6 raw table, a port of the IPv4 raw table to IPv6
3 *
4 * Copyright (C) 2003 Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
5 */
6#include <linux/module.h>
7#include <linux/netfilter_ipv6/ip6_tables.h>
8
9#define RAW_VALID_HOOKS ((1 << NF_IP6_PRE_ROUTING) | (1 << NF_IP6_LOCAL_OUT))
10
11#if 0
12#define DEBUGP(x, args...) printk(KERN_DEBUG x, ## args)
13#else
14#define DEBUGP(x, args...)
15#endif
16
Linus Torvalds1da177e2005-04-16 15:20:36 -070017static struct
18{
19 struct ip6t_replace repl;
20 struct ip6t_standard entries[2];
21 struct ip6t_error term;
22} initial_table __initdata = {
23 .repl = {
24 .name = "raw",
25 .valid_hooks = RAW_VALID_HOOKS,
26 .num_entries = 3,
27 .size = sizeof(struct ip6t_standard) * 2 + sizeof(struct ip6t_error),
28 .hook_entry = {
29 [NF_IP6_PRE_ROUTING] = 0,
30 [NF_IP6_LOCAL_OUT] = sizeof(struct ip6t_standard)
31 },
32 .underflow = {
33 [NF_IP6_PRE_ROUTING] = 0,
34 [NF_IP6_LOCAL_OUT] = sizeof(struct ip6t_standard)
35 },
36 },
37 .entries = {
Patrick McHardy3c2ad462007-05-10 14:14:16 -070038 IP6T_STANDARD_INIT(NF_ACCEPT), /* PRE_ROUTING */
39 IP6T_STANDARD_INIT(NF_ACCEPT), /* LOCAL_OUT */
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 },
Patrick McHardy3c2ad462007-05-10 14:14:16 -070041 .term = IP6T_ERROR_INIT, /* ERROR */
Linus Torvalds1da177e2005-04-16 15:20:36 -070042};
43
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +090044static struct xt_table packet_raw = {
45 .name = "raw",
46 .valid_hooks = RAW_VALID_HOOKS,
47 .lock = RW_LOCK_UNLOCKED,
Harald Welte2e4e6a12006-01-12 13:30:04 -080048 .me = THIS_MODULE,
49 .af = AF_INET6,
Linus Torvalds1da177e2005-04-16 15:20:36 -070050};
51
52/* The work comes in here from netfilter.c. */
53static unsigned int
54ip6t_hook(unsigned int hook,
55 struct sk_buff **pskb,
56 const struct net_device *in,
57 const struct net_device *out,
58 int (*okfn)(struct sk_buff *))
59{
Patrick McHardyfe1cb102006-08-22 00:35:47 -070060 return ip6t_do_table(pskb, hook, in, out, &packet_raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061}
62
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +090063static struct nf_hook_ops ip6t_ops[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +090065 .hook = ip6t_hook,
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 .pf = PF_INET6,
67 .hooknum = NF_IP6_PRE_ROUTING,
Patrick McHardy97216c72005-06-21 14:03:01 -070068 .priority = NF_IP6_PRI_FIRST,
69 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 },
71 {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +090072 .hook = ip6t_hook,
73 .pf = PF_INET6,
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 .hooknum = NF_IP6_LOCAL_OUT,
Patrick McHardy97216c72005-06-21 14:03:01 -070075 .priority = NF_IP6_PRI_FIRST,
76 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 },
78};
79
Andrew Morton65b4b4e2006-03-28 16:37:06 -080080static int __init ip6table_raw_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070081{
82 int ret;
83
84 /* Register table */
85 ret = ip6t_register_table(&packet_raw, &initial_table.repl);
86 if (ret < 0)
87 return ret;
88
89 /* Register hooks */
Patrick McHardy964ddaa2006-04-06 14:09:49 -070090 ret = nf_register_hooks(ip6t_ops, ARRAY_SIZE(ip6t_ops));
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 if (ret < 0)
92 goto cleanup_table;
93
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 return ret;
95
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 cleanup_table:
97 ip6t_unregister_table(&packet_raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 return ret;
99}
100
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800101static void __exit ip6table_raw_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102{
Patrick McHardy964ddaa2006-04-06 14:09:49 -0700103 nf_unregister_hooks(ip6t_ops, ARRAY_SIZE(ip6t_ops));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 ip6t_unregister_table(&packet_raw);
105}
106
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800107module_init(ip6table_raw_init);
108module_exit(ip6table_raw_fini);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109MODULE_LICENSE("GPL");