]> bbs.cooldavid.org Git - net-next-2.6.git/blame - net/ipv4/netfilter.c
net: use the macros defined for the members of flowi
[net-next-2.6.git] / net / ipv4 / netfilter.c
CommitLineData
2cc7d573 1/* IPv4 specific functions of netfilter core */
020b4c12
HW
2#include <linux/kernel.h>
3#include <linux/netfilter.h>
2cc7d573 4#include <linux/netfilter_ipv4.h>
3e3850e9 5#include <linux/ip.h>
2ca7b0ac 6#include <linux/skbuff.h>
5a0e3ad6 7#include <linux/gfp.h>
020b4c12 8#include <net/route.h>
3e3850e9
PM
9#include <net/xfrm.h>
10#include <net/ip.h>
c01cd429 11#include <net/netfilter/nf_queue.h>
020b4c12
HW
12
13/* route_me_harder function, used by iptable_nat, iptable_mangle + ip_queue */
3db05fea 14int ip_route_me_harder(struct sk_buff *skb, unsigned addr_type)
020b4c12 15{
adf30907 16 struct net *net = dev_net(skb_dst(skb)->dev);
3db05fea 17 const struct iphdr *iph = ip_hdr(skb);
020b4c12
HW
18 struct rtable *rt;
19 struct flowi fl = {};
7fee226a 20 unsigned long orefdst;
020b4c12 21 unsigned int hh_len;
c68b8b68 22 unsigned int type;
020b4c12 23
b21f8901 24 type = inet_addr_type(net, iph->saddr);
86b08d86
KK
25 if (skb->sk && inet_sk(skb->sk)->transparent)
26 type = RTN_LOCAL;
b4c4ed17 27 if (addr_type == RTN_UNSPEC)
c68b8b68 28 addr_type = type;
b4c4ed17 29
020b4c12 30 /* some non-standard hacks like ipt_REJECT.c:send_reset() can cause
6e23ae2a 31 * packets with foreign saddr to appear on the NF_INET_LOCAL_OUT hook.
020b4c12 32 */
b4c4ed17 33 if (addr_type == RTN_LOCAL) {
5811662b 34 fl.fl4_dst = iph->daddr;
c68b8b68 35 if (type == RTN_LOCAL)
5811662b
CG
36 fl.fl4_src = iph->saddr;
37 fl.fl4_tos = RT_TOS(iph->tos);
3db05fea
HX
38 fl.oif = skb->sk ? skb->sk->sk_bound_dev_if : 0;
39 fl.mark = skb->mark;
86b08d86 40 fl.flags = skb->sk ? inet_sk_flowi_flags(skb->sk) : 0;
b21f8901 41 if (ip_route_output_key(net, &rt, &fl) != 0)
020b4c12
HW
42 return -1;
43
44 /* Drop old route. */
adf30907 45 skb_dst_drop(skb);
d8d1f30b 46 skb_dst_set(skb, &rt->dst);
020b4c12
HW
47 } else {
48 /* non-local src, find valid iif to satisfy
49 * rp-filter when calling ip_route_input. */
5811662b 50 fl.fl4_dst = iph->saddr;
b21f8901 51 if (ip_route_output_key(net, &rt, &fl) != 0)
020b4c12
HW
52 return -1;
53
7fee226a 54 orefdst = skb->_skb_refdst;
3db05fea 55 if (ip_route_input(skb, iph->daddr, iph->saddr,
d8d1f30b
CG
56 RT_TOS(iph->tos), rt->dst.dev) != 0) {
57 dst_release(&rt->dst);
020b4c12
HW
58 return -1;
59 }
d8d1f30b 60 dst_release(&rt->dst);
7fee226a 61 refdst_drop(orefdst);
020b4c12 62 }
e905a9ed 63
adf30907 64 if (skb_dst(skb)->error)
020b4c12
HW
65 return -1;
66
3e3850e9 67#ifdef CONFIG_XFRM
3db05fea 68 if (!(IPCB(skb)->flags & IPSKB_XFRM_TRANSFORMED) &&
adf30907
ED
69 xfrm_decode_session(skb, &fl, AF_INET) == 0) {
70 struct dst_entry *dst = skb_dst(skb);
71 skb_dst_set(skb, NULL);
72 if (xfrm_lookup(net, &dst, &fl, skb->sk, 0))
3e3850e9 73 return -1;
adf30907
ED
74 skb_dst_set(skb, dst);
75 }
3e3850e9
PM
76#endif
77
020b4c12 78 /* Change in oif may mean change in hh_len. */
adf30907 79 hh_len = skb_dst(skb)->dev->hard_header_len;
3db05fea
HX
80 if (skb_headroom(skb) < hh_len &&
81 pskb_expand_head(skb, hh_len - skb_headroom(skb), 0, GFP_ATOMIC))
2ca7b0ac 82 return -1;
020b4c12
HW
83
84 return 0;
85}
86EXPORT_SYMBOL(ip_route_me_harder);
2cc7d573 87
ee68cea2 88#ifdef CONFIG_XFRM
3db05fea 89int ip_xfrm_me_harder(struct sk_buff *skb)
ee68cea2
PM
90{
91 struct flowi fl;
92 unsigned int hh_len;
93 struct dst_entry *dst;
94
3db05fea 95 if (IPCB(skb)->flags & IPSKB_XFRM_TRANSFORMED)
ee68cea2 96 return 0;
3db05fea 97 if (xfrm_decode_session(skb, &fl, AF_INET) < 0)
ee68cea2
PM
98 return -1;
99
adf30907 100 dst = skb_dst(skb);
ee68cea2
PM
101 if (dst->xfrm)
102 dst = ((struct xfrm_dst *)dst)->route;
103 dst_hold(dst);
104
52479b62 105 if (xfrm_lookup(dev_net(dst->dev), &dst, &fl, skb->sk, 0) < 0)
ee68cea2
PM
106 return -1;
107
adf30907
ED
108 skb_dst_drop(skb);
109 skb_dst_set(skb, dst);
ee68cea2
PM
110
111 /* Change in oif may mean change in hh_len. */
adf30907 112 hh_len = skb_dst(skb)->dev->hard_header_len;
3db05fea
HX
113 if (skb_headroom(skb) < hh_len &&
114 pskb_expand_head(skb, hh_len - skb_headroom(skb), 0, GFP_ATOMIC))
2ca7b0ac 115 return -1;
ee68cea2
PM
116 return 0;
117}
118EXPORT_SYMBOL(ip_xfrm_me_harder);
119#endif
120
eb9c7ebe
PM
121void (*ip_nat_decode_session)(struct sk_buff *, struct flowi *);
122EXPORT_SYMBOL(ip_nat_decode_session);
123
2cc7d573
HW
124/*
125 * Extra routing may needed on local out, as the QUEUE target never
126 * returns control to the table.
127 */
128
129struct ip_rt_info {
59b8bfd8
AV
130 __be32 daddr;
131 __be32 saddr;
2cc7d573 132 u_int8_t tos;
5f145e44 133 u_int32_t mark;
2cc7d573
HW
134};
135
02f014d8
PM
136static void nf_ip_saveroute(const struct sk_buff *skb,
137 struct nf_queue_entry *entry)
2cc7d573 138{
02f014d8 139 struct ip_rt_info *rt_info = nf_queue_entry_reroute(entry);
2cc7d573 140
02f014d8 141 if (entry->hook == NF_INET_LOCAL_OUT) {
eddc9ec5 142 const struct iphdr *iph = ip_hdr(skb);
2cc7d573
HW
143
144 rt_info->tos = iph->tos;
145 rt_info->daddr = iph->daddr;
146 rt_info->saddr = iph->saddr;
5f145e44 147 rt_info->mark = skb->mark;
2cc7d573
HW
148 }
149}
150
02f014d8
PM
151static int nf_ip_reroute(struct sk_buff *skb,
152 const struct nf_queue_entry *entry)
2cc7d573 153{
02f014d8 154 const struct ip_rt_info *rt_info = nf_queue_entry_reroute(entry);
2cc7d573 155
02f014d8 156 if (entry->hook == NF_INET_LOCAL_OUT) {
3db05fea 157 const struct iphdr *iph = ip_hdr(skb);
2cc7d573 158
f64f9e71
JP
159 if (!(iph->tos == rt_info->tos &&
160 skb->mark == rt_info->mark &&
161 iph->daddr == rt_info->daddr &&
162 iph->saddr == rt_info->saddr))
3db05fea 163 return ip_route_me_harder(skb, RTN_UNSPEC);
2cc7d573
HW
164 }
165 return 0;
166}
167
b51655b9 168__sum16 nf_ip_checksum(struct sk_buff *skb, unsigned int hook,
422c346f
PM
169 unsigned int dataoff, u_int8_t protocol)
170{
eddc9ec5 171 const struct iphdr *iph = ip_hdr(skb);
b51655b9 172 __sum16 csum = 0;
422c346f
PM
173
174 switch (skb->ip_summed) {
84fa7933 175 case CHECKSUM_COMPLETE:
6e23ae2a 176 if (hook != NF_INET_PRE_ROUTING && hook != NF_INET_LOCAL_IN)
422c346f 177 break;
d3bc23e7 178 if ((protocol == 0 && !csum_fold(skb->csum)) ||
422c346f 179 !csum_tcpudp_magic(iph->saddr, iph->daddr,
e905a9ed 180 skb->len - dataoff, protocol,
422c346f
PM
181 skb->csum)) {
182 skb->ip_summed = CHECKSUM_UNNECESSARY;
183 break;
184 }
185 /* fall through */
186 case CHECKSUM_NONE:
187 if (protocol == 0)
188 skb->csum = 0;
189 else
190 skb->csum = csum_tcpudp_nofold(iph->saddr, iph->daddr,
191 skb->len - dataoff,
192 protocol, 0);
193 csum = __skb_checksum_complete(skb);
194 }
195 return csum;
196}
422c346f
PM
197EXPORT_SYMBOL(nf_ip_checksum);
198
d63a6507
PM
199static __sum16 nf_ip_checksum_partial(struct sk_buff *skb, unsigned int hook,
200 unsigned int dataoff, unsigned int len,
201 u_int8_t protocol)
202{
203 const struct iphdr *iph = ip_hdr(skb);
204 __sum16 csum = 0;
205
206 switch (skb->ip_summed) {
207 case CHECKSUM_COMPLETE:
208 if (len == skb->len - dataoff)
209 return nf_ip_checksum(skb, hook, dataoff, protocol);
210 /* fall through */
211 case CHECKSUM_NONE:
212 skb->csum = csum_tcpudp_nofold(iph->saddr, iph->daddr, protocol,
213 skb->len - dataoff, 0);
214 skb->ip_summed = CHECKSUM_NONE;
c86ee67c 215 return __skb_checksum_complete_head(skb, dataoff + len);
d63a6507
PM
216 }
217 return csum;
218}
219
1841a4c7
PM
220static int nf_ip_route(struct dst_entry **dst, struct flowi *fl)
221{
f206351a 222 return ip_route_output_key(&init_net, (struct rtable **)dst, fl);
1841a4c7
PM
223}
224
1e796fda 225static const struct nf_afinfo nf_ip_afinfo = {
d63a6507
PM
226 .family = AF_INET,
227 .checksum = nf_ip_checksum,
228 .checksum_partial = nf_ip_checksum_partial,
229 .route = nf_ip_route,
230 .saveroute = nf_ip_saveroute,
231 .reroute = nf_ip_reroute,
232 .route_key_size = sizeof(struct ip_rt_info),
2cc7d573
HW
233};
234
65b4b4e8 235static int ipv4_netfilter_init(void)
2cc7d573 236{
bce8032e 237 return nf_register_afinfo(&nf_ip_afinfo);
2cc7d573
HW
238}
239
65b4b4e8 240static void ipv4_netfilter_fini(void)
2cc7d573 241{
bce8032e 242 nf_unregister_afinfo(&nf_ip_afinfo);
2cc7d573
HW
243}
244
65b4b4e8
AM
245module_init(ipv4_netfilter_init);
246module_exit(ipv4_netfilter_fini);
4f536522
PM
247
248#ifdef CONFIG_SYSCTL
249struct ctl_path nf_net_ipv4_netfilter_sysctl_path[] = {
f8572d8f
EB
250 { .procname = "net", },
251 { .procname = "ipv4", },
252 { .procname = "netfilter", },
4f536522
PM
253 { }
254};
255EXPORT_SYMBOL_GPL(nf_net_ipv4_netfilter_sysctl_path);
256#endif /* CONFIG_SYSCTL */