aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4
diff options
context:
space:
mode:
authorHarald Welte <laforge@netfilter.org>2005-08-09 22:39:00 -0400
committerDavid S. Miller <davem@sunset.davemloft.net>2005-08-29 18:35:01 -0400
commit020b4c12dbe3868d792a01d7c1470cd837abe10f (patch)
tree4c5963a206f67eda6f8ff74ac33f7ed7e4acc164 /net/ipv4
parent089af26c706d1473f641c909fee7c878d29c1f1a (diff)
[NETFILTER]: Move ipv4 specific code from net/core/netfilter.c to net/ipv4/netfilter.c
Netfilter cleanup - Move ipv4 code from net/core/netfilter.c to net/ipv4/netfilter.c - Move ipv6 netfilter code from net/ipv6/ip6_output.c to net/ipv6/netfilter.c Signed-off-by: Harald Welte <laforge@netfilter.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4')
-rw-r--r--net/ipv4/Makefile2
-rw-r--r--net/ipv4/netfilter.c79
2 files changed, 80 insertions, 1 deletions
diff --git a/net/ipv4/Makefile b/net/ipv4/Makefile
index 55dc6cca1e7b..61c7386bcd2e 100644
--- a/net/ipv4/Makefile
+++ b/net/ipv4/Makefile
@@ -8,7 +8,7 @@ obj-y := route.o inetpeer.o protocol.o \
8 tcp.o tcp_input.o tcp_output.o tcp_timer.o tcp_ipv4.o \ 8 tcp.o tcp_input.o tcp_output.o tcp_timer.o tcp_ipv4.o \
9 tcp_minisocks.o tcp_cong.o \ 9 tcp_minisocks.o tcp_cong.o \
10 datagram.o raw.o udp.o arp.o icmp.o devinet.o af_inet.o igmp.o \ 10 datagram.o raw.o udp.o arp.o icmp.o devinet.o af_inet.o igmp.o \
11 sysctl_net_ipv4.o fib_frontend.o fib_semantics.o 11 sysctl_net_ipv4.o fib_frontend.o fib_semantics.o netfilter.o
12 12
13obj-$(CONFIG_IP_FIB_HASH) += fib_hash.o 13obj-$(CONFIG_IP_FIB_HASH) += fib_hash.o
14obj-$(CONFIG_IP_FIB_TRIE) += fib_trie.o 14obj-$(CONFIG_IP_FIB_TRIE) += fib_trie.o
diff --git a/net/ipv4/netfilter.c b/net/ipv4/netfilter.c
new file mode 100644
index 000000000000..6594d1c9697e
--- /dev/null
+++ b/net/ipv4/netfilter.c
@@ -0,0 +1,79 @@
1#include <linux/config.h>
2
3#ifdef CONFIG_NETFILTER
4
5/* IPv4 specific functions of netfilter core */
6#include <linux/kernel.h>
7#include <linux/netfilter.h>
8
9#include <linux/tcp.h>
10#include <linux/udp.h>
11#include <linux/icmp.h>
12#include <net/route.h>
13#include <linux/ip.h>
14
15/* route_me_harder function, used by iptable_nat, iptable_mangle + ip_queue */
16int ip_route_me_harder(struct sk_buff **pskb)
17{
18 struct iphdr *iph = (*pskb)->nh.iph;
19 struct rtable *rt;
20 struct flowi fl = {};
21 struct dst_entry *odst;
22 unsigned int hh_len;
23
24 /* some non-standard hacks like ipt_REJECT.c:send_reset() can cause
25 * packets with foreign saddr to appear on the NF_IP_LOCAL_OUT hook.
26 */
27 if (inet_addr_type(iph->saddr) == RTN_LOCAL) {
28 fl.nl_u.ip4_u.daddr = iph->daddr;
29 fl.nl_u.ip4_u.saddr = iph->saddr;
30 fl.nl_u.ip4_u.tos = RT_TOS(iph->tos);
31 fl.oif = (*pskb)->sk ? (*pskb)->sk->sk_bound_dev_if : 0;
32#ifdef CONFIG_IP_ROUTE_FWMARK
33 fl.nl_u.ip4_u.fwmark = (*pskb)->nfmark;
34#endif
35 fl.proto = iph->protocol;
36 if (ip_route_output_key(&rt, &fl) != 0)
37 return -1;
38
39 /* Drop old route. */
40 dst_release((*pskb)->dst);
41 (*pskb)->dst = &rt->u.dst;
42 } else {
43 /* non-local src, find valid iif to satisfy
44 * rp-filter when calling ip_route_input. */
45 fl.nl_u.ip4_u.daddr = iph->saddr;
46 if (ip_route_output_key(&rt, &fl) != 0)
47 return -1;
48
49 odst = (*pskb)->dst;
50 if (ip_route_input(*pskb, iph->daddr, iph->saddr,
51 RT_TOS(iph->tos), rt->u.dst.dev) != 0) {
52 dst_release(&rt->u.dst);
53 return -1;
54 }
55 dst_release(&rt->u.dst);
56 dst_release(odst);
57 }
58
59 if ((*pskb)->dst->error)
60 return -1;
61
62 /* Change in oif may mean change in hh_len. */
63 hh_len = (*pskb)->dst->dev->hard_header_len;
64 if (skb_headroom(*pskb) < hh_len) {
65 struct sk_buff *nskb;
66
67 nskb = skb_realloc_headroom(*pskb, hh_len);
68 if (!nskb)
69 return -1;
70 if ((*pskb)->sk)
71 skb_set_owner_w(nskb, (*pskb)->sk);
72 kfree_skb(*pskb);
73 *pskb = nskb;
74 }
75
76 return 0;
77}
78EXPORT_SYMBOL(ip_route_me_harder);
79#endif /* CONFIG_NETFILTER */