blob: e41fe8ca4e1c87b9538961411504e1e7777c27b3 [file] [log] [blame]
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * 'raw' table, which is the very first hooked in at PRE_ROUTING and LOCAL_OUT .
3 *
4 * Copyright (C) 2003 Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
5 */
6#include <linux/module.h>
7#include <linux/netfilter_ipv4/ip_tables.h>
Patrick McHardy802169a2007-05-10 14:17:36 -07008#include <net/ip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009
Patrick McHardy6e23ae22007-11-19 18:53:30 -080010#define RAW_VALID_HOOKS ((1 << NF_INET_PRE_ROUTING) | (1 << NF_INET_LOCAL_OUT))
Linus Torvalds1da177e2005-04-16 15:20:36 -070011
12static struct
13{
14 struct ipt_replace repl;
15 struct ipt_standard entries[2];
16 struct ipt_error term;
Alexey Dobriyan9335f042008-01-31 04:03:23 -080017} initial_table __net_initdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 .repl = {
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +090019 .name = "raw",
20 .valid_hooks = RAW_VALID_HOOKS,
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 .num_entries = 3,
22 .size = sizeof(struct ipt_standard) * 2 + sizeof(struct ipt_error),
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +090023 .hook_entry = {
Patrick McHardy6e23ae22007-11-19 18:53:30 -080024 [NF_INET_PRE_ROUTING] = 0,
25 [NF_INET_LOCAL_OUT] = sizeof(struct ipt_standard)
Patrick McHardy3c2ad462007-05-10 14:14:16 -070026 },
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +090027 .underflow = {
Patrick McHardy6e23ae22007-11-19 18:53:30 -080028 [NF_INET_PRE_ROUTING] = 0,
29 [NF_INET_LOCAL_OUT] = sizeof(struct ipt_standard)
Patrick McHardy3c2ad462007-05-10 14:14:16 -070030 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 },
32 .entries = {
Patrick McHardy3c2ad462007-05-10 14:14:16 -070033 IPT_STANDARD_INIT(NF_ACCEPT), /* PRE_ROUTING */
34 IPT_STANDARD_INIT(NF_ACCEPT), /* LOCAL_OUT */
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 },
Patrick McHardy3c2ad462007-05-10 14:14:16 -070036 .term = IPT_ERROR_INIT, /* ERROR */
Linus Torvalds1da177e2005-04-16 15:20:36 -070037};
38
Alexey Dobriyan9335f042008-01-31 04:03:23 -080039static struct xt_table packet_raw = {
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +090040 .name = "raw",
41 .valid_hooks = RAW_VALID_HOOKS,
42 .lock = RW_LOCK_UNLOCKED,
Harald Welte2e4e6a12006-01-12 13:30:04 -080043 .me = THIS_MODULE,
44 .af = AF_INET,
Linus Torvalds1da177e2005-04-16 15:20:36 -070045};
46
47/* The work comes in here from netfilter.c. */
48static unsigned int
49ipt_hook(unsigned int hook,
Herbert Xu3db05fe2007-10-15 00:53:15 -070050 struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 const struct net_device *in,
52 const struct net_device *out,
53 int (*okfn)(struct sk_buff *))
54{
Alexey Dobriyan9335f042008-01-31 04:03:23 -080055 return ipt_do_table(skb, hook, in, out, init_net.ipv4.iptable_raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056}
57
Patrick McHardy802169a2007-05-10 14:17:36 -070058static unsigned int
59ipt_local_hook(unsigned int hook,
Herbert Xu3db05fe2007-10-15 00:53:15 -070060 struct sk_buff *skb,
Patrick McHardy802169a2007-05-10 14:17:36 -070061 const struct net_device *in,
62 const struct net_device *out,
63 int (*okfn)(struct sk_buff *))
64{
65 /* root is playing with raw sockets. */
Herbert Xu3db05fe2007-10-15 00:53:15 -070066 if (skb->len < sizeof(struct iphdr) ||
67 ip_hdrlen(skb) < sizeof(struct iphdr)) {
Patrick McHardy802169a2007-05-10 14:17:36 -070068 if (net_ratelimit())
Joe Perches464c4f12007-11-19 23:46:29 -080069 printk("iptable_raw: ignoring short SOCK_RAW "
Patrick McHardy802169a2007-05-10 14:17:36 -070070 "packet.\n");
71 return NF_ACCEPT;
72 }
Alexey Dobriyan9335f042008-01-31 04:03:23 -080073 return ipt_do_table(skb, hook, in, out, init_net.ipv4.iptable_raw);
Patrick McHardy802169a2007-05-10 14:17:36 -070074}
75
Linus Torvalds1da177e2005-04-16 15:20:36 -070076/* 'raw' is the very first table. */
Patrick McHardy19994142007-12-05 01:23:00 -080077static struct nf_hook_ops ipt_ops[] __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 {
Patrick McHardy964ddaa2006-04-06 14:09:49 -070079 .hook = ipt_hook,
80 .pf = PF_INET,
Patrick McHardy6e23ae22007-11-19 18:53:30 -080081 .hooknum = NF_INET_PRE_ROUTING,
Patrick McHardy964ddaa2006-04-06 14:09:49 -070082 .priority = NF_IP_PRI_RAW,
83 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 },
85 {
Patrick McHardy802169a2007-05-10 14:17:36 -070086 .hook = ipt_local_hook,
Patrick McHardy964ddaa2006-04-06 14:09:49 -070087 .pf = PF_INET,
Patrick McHardy6e23ae22007-11-19 18:53:30 -080088 .hooknum = NF_INET_LOCAL_OUT,
Patrick McHardy964ddaa2006-04-06 14:09:49 -070089 .priority = NF_IP_PRI_RAW,
90 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 },
92};
93
Alexey Dobriyan9335f042008-01-31 04:03:23 -080094static int __net_init iptable_raw_net_init(struct net *net)
95{
96 /* Register table */
97 net->ipv4.iptable_raw =
98 ipt_register_table(net, &packet_raw, &initial_table.repl);
99 if (IS_ERR(net->ipv4.iptable_raw))
100 return PTR_ERR(net->ipv4.iptable_raw);
101 return 0;
102}
103
104static void __net_exit iptable_raw_net_exit(struct net *net)
105{
106 ipt_unregister_table(net->ipv4.iptable_raw);
107}
108
109static struct pernet_operations iptable_raw_net_ops = {
110 .init = iptable_raw_net_init,
111 .exit = iptable_raw_net_exit,
112};
113
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800114static int __init iptable_raw_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115{
116 int ret;
117
Alexey Dobriyan9335f042008-01-31 04:03:23 -0800118 ret = register_pernet_subsys(&iptable_raw_net_ops);
119 if (ret < 0)
120 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
122 /* Register hooks */
Patrick McHardy964ddaa2006-04-06 14:09:49 -0700123 ret = nf_register_hooks(ipt_ops, ARRAY_SIZE(ipt_ops));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 if (ret < 0)
125 goto cleanup_table;
126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 return ret;
128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 cleanup_table:
Alexey Dobriyan9335f042008-01-31 04:03:23 -0800130 unregister_pernet_subsys(&iptable_raw_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 return ret;
132}
133
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800134static void __exit iptable_raw_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
Patrick McHardy964ddaa2006-04-06 14:09:49 -0700136 nf_unregister_hooks(ipt_ops, ARRAY_SIZE(ipt_ops));
Alexey Dobriyan9335f042008-01-31 04:03:23 -0800137 unregister_pernet_subsys(&iptable_raw_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138}
139
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800140module_init(iptable_raw_init);
141module_exit(iptable_raw_fini);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142MODULE_LICENSE("GPL");