[NETFILTER]: nf_conntrack_expect: function naming unification
[deliverable/linux.git] / net / ipv4 / netfilter / iptable_raw.c
CommitLineData
e905a9ed 1/*
1da177e4
LT
2 * '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>
802169a4 8#include <net/ip.h>
1da177e4
LT
9
10#define RAW_VALID_HOOKS ((1 << NF_IP_PRE_ROUTING) | (1 << NF_IP_LOCAL_OUT))
11
12static struct
13{
14 struct ipt_replace repl;
15 struct ipt_standard entries[2];
16 struct ipt_error term;
17} initial_table __initdata = {
18 .repl = {
e905a9ed
YH
19 .name = "raw",
20 .valid_hooks = RAW_VALID_HOOKS,
1da177e4
LT
21 .num_entries = 3,
22 .size = sizeof(struct ipt_standard) * 2 + sizeof(struct ipt_error),
e905a9ed 23 .hook_entry = {
1da177e4 24 [NF_IP_PRE_ROUTING] = 0,
3c2ad469
PM
25 [NF_IP_LOCAL_OUT] = sizeof(struct ipt_standard)
26 },
e905a9ed 27 .underflow = {
1da177e4 28 [NF_IP_PRE_ROUTING] = 0,
3c2ad469
PM
29 [NF_IP_LOCAL_OUT] = sizeof(struct ipt_standard)
30 },
1da177e4
LT
31 },
32 .entries = {
3c2ad469
PM
33 IPT_STANDARD_INIT(NF_ACCEPT), /* PRE_ROUTING */
34 IPT_STANDARD_INIT(NF_ACCEPT), /* LOCAL_OUT */
1da177e4 35 },
3c2ad469 36 .term = IPT_ERROR_INIT, /* ERROR */
1da177e4
LT
37};
38
e60a13e0 39static struct xt_table packet_raw = {
e905a9ed
YH
40 .name = "raw",
41 .valid_hooks = RAW_VALID_HOOKS,
42 .lock = RW_LOCK_UNLOCKED,
2e4e6a17
HW
43 .me = THIS_MODULE,
44 .af = AF_INET,
1da177e4
LT
45};
46
47/* The work comes in here from netfilter.c. */
48static unsigned int
49ipt_hook(unsigned int hook,
50 struct sk_buff **pskb,
51 const struct net_device *in,
52 const struct net_device *out,
53 int (*okfn)(struct sk_buff *))
54{
fe1cb108 55 return ipt_do_table(pskb, hook, in, out, &packet_raw);
1da177e4
LT
56}
57
802169a4
PM
58static unsigned int
59ipt_local_hook(unsigned int hook,
60 struct sk_buff **pskb,
61 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. */
66 if ((*pskb)->len < sizeof(struct iphdr) ||
67 ip_hdrlen(*pskb) < sizeof(struct iphdr)) {
68 if (net_ratelimit())
69 printk("iptable_raw: ignoring short SOCK_RAW"
70 "packet.\n");
71 return NF_ACCEPT;
72 }
73 return ipt_do_table(pskb, hook, in, out, &packet_raw);
74}
75
1da177e4
LT
76/* 'raw' is the very first table. */
77static struct nf_hook_ops ipt_ops[] = {
78 {
964ddaa1
PM
79 .hook = ipt_hook,
80 .pf = PF_INET,
81 .hooknum = NF_IP_PRE_ROUTING,
82 .priority = NF_IP_PRI_RAW,
83 .owner = THIS_MODULE,
1da177e4
LT
84 },
85 {
802169a4 86 .hook = ipt_local_hook,
964ddaa1
PM
87 .pf = PF_INET,
88 .hooknum = NF_IP_LOCAL_OUT,
89 .priority = NF_IP_PRI_RAW,
90 .owner = THIS_MODULE,
1da177e4
LT
91 },
92};
93
65b4b4e8 94static int __init iptable_raw_init(void)
1da177e4
LT
95{
96 int ret;
97
98 /* Register table */
99 ret = ipt_register_table(&packet_raw, &initial_table.repl);
100 if (ret < 0)
101 return ret;
102
103 /* Register hooks */
964ddaa1 104 ret = nf_register_hooks(ipt_ops, ARRAY_SIZE(ipt_ops));
1da177e4
LT
105 if (ret < 0)
106 goto cleanup_table;
107
1da177e4
LT
108 return ret;
109
1da177e4
LT
110 cleanup_table:
111 ipt_unregister_table(&packet_raw);
1da177e4
LT
112 return ret;
113}
114
65b4b4e8 115static void __exit iptable_raw_fini(void)
1da177e4 116{
964ddaa1 117 nf_unregister_hooks(ipt_ops, ARRAY_SIZE(ipt_ops));
1da177e4
LT
118 ipt_unregister_table(&packet_raw);
119}
120
65b4b4e8
AM
121module_init(iptable_raw_init);
122module_exit(iptable_raw_fini);
1da177e4 123MODULE_LICENSE("GPL");
This page took 0.337121 seconds and 5 git commands to generate.