blob: e0d9f02fec11aaa3b94344fb717722ddfe68b7e7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * INET An implementation of the TCP/IP protocol suite for the LINUX
3 * operating system. INET is implemented using the BSD Socket
4 * interface as the means of communication with the user level.
5 *
6 * The IP forwarding functionality.
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09007 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * Authors: see ip.c
9 *
10 * Fixes:
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +090011 * Many : Split from ip.c , see ip_input.c for
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 * history.
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +090013 * Dave Gregorich : NULL ip_rt_put fix for multicast
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 * routing.
15 * Jos Vos : Add call_out_firewall before sending,
16 * use output device for accounting.
17 * Jos Vos : Call forward firewall after routing
18 * (always use output device).
19 * Mike McLagan : Routing by source
20 */
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/types.h>
23#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/skbuff.h>
25#include <linux/ip.h>
26#include <linux/icmp.h>
27#include <linux/netdevice.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <net/sock.h>
30#include <net/ip.h>
31#include <net/tcp.h>
32#include <net/udp.h>
33#include <net/icmp.h>
34#include <linux/tcp.h>
35#include <linux/udp.h>
36#include <linux/netfilter_ipv4.h>
37#include <net/checksum.h>
38#include <linux/route.h>
39#include <net/route.h>
40#include <net/xfrm.h>
41
Florian Westphal29a3cd42014-02-22 10:33:26 +010042static bool ip_may_fragment(const struct sk_buff *skb)
43{
44 return unlikely((ip_hdr(skb)->frag_off & htons(IP_DF)) == 0) ||
45 !skb->local_df;
46}
47
48static bool ip_exceeds_mtu(const struct sk_buff *skb, unsigned int mtu)
49{
50 if (skb->len <= mtu || skb->local_df)
51 return false;
52
53 if (skb_is_gso(skb) && skb_gso_network_seglen(skb) <= mtu)
54 return false;
55
56 return true;
57}
58
59static bool ip_gso_exceeds_dst_mtu(const struct sk_buff *skb)
60{
61 unsigned int mtu;
62
63 if (skb->local_df || !skb_is_gso(skb))
64 return false;
65
66 mtu = dst_mtu(skb_dst(skb));
67
68 /* if seglen > mtu, do software segmentation for IP fragmentation on
69 * output. DF bit cannot be set since ip_forward would have sent
70 * icmp error.
71 */
72 return skb_gso_network_seglen(skb) > mtu;
73}
74
75/* called if GSO skb needs to be fragmented on forward */
76static int ip_forward_finish_gso(struct sk_buff *skb)
77{
78 struct sk_buff *segs;
79 int ret = 0;
80
81 segs = skb_gso_segment(skb, 0);
82 if (IS_ERR(segs)) {
83 kfree_skb(skb);
84 return -ENOMEM;
85 }
86
87 consume_skb(skb);
88
89 do {
90 struct sk_buff *nskb = segs->next;
91 int err;
92
93 segs->next = NULL;
94 err = dst_output(segs);
95
96 if (err && ret == 0)
97 ret = err;
98 segs = nskb;
99 } while (segs);
100
101 return ret;
102}
103
Patrick McHardy861d0482007-10-15 01:48:39 -0700104static int ip_forward_finish(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105{
106 struct ip_options * opt = &(IPCB(skb)->opt);
107
Eric Dumazetadf30902009-06-02 05:19:30 +0000108 IP_INC_STATS_BH(dev_net(skb_dst(skb)->dev), IPSTATS_MIB_OUTFORWDATAGRAMS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110 if (unlikely(opt->optlen))
111 ip_forward_options(skb);
112
Florian Westphal29a3cd42014-02-22 10:33:26 +0100113 if (ip_gso_exceeds_dst_mtu(skb))
114 return ip_forward_finish_gso(skb);
115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 return dst_output(skb);
117}
118
119int ip_forward(struct sk_buff *skb)
120{
121 struct iphdr *iph; /* Our header */
122 struct rtable *rt; /* Route we use */
123 struct ip_options * opt = &(IPCB(skb)->opt);
124
Ben Hutchings4497b072008-06-19 16:22:28 -0700125 if (skb_warn_if_lro(skb))
126 goto drop;
127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 if (!xfrm4_policy_check(NULL, XFRM_POLICY_FWD, skb))
129 goto drop;
130
131 if (IPCB(skb)->opt.router_alert && ip_call_ra_chain(skb))
132 return NET_RX_SUCCESS;
133
134 if (skb->pkt_type != PACKET_HOST)
135 goto drop;
136
Herbert Xu35fc92a2007-03-26 23:22:20 -0700137 skb_forward_csum(skb);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 /*
140 * According to the RFC, we must first decrease the TTL field. If
141 * that reaches zero, we must reply an ICMP control message telling
142 * that the packet's lifetime expired.
143 */
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700144 if (ip_hdr(skb)->ttl <= 1)
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900145 goto too_many_hops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
147 if (!xfrm4_route_forward(skb))
148 goto drop;
149
Eric Dumazet511c3f92009-06-02 05:14:27 +0000150 rt = skb_rtable(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Li Weiac8a4812011-11-22 23:33:10 +0000152 if (opt->is_strictroute && opt->nexthop != rt->rt_gateway)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 goto sr_failed;
154
Florian Westphal29a3cd42014-02-22 10:33:26 +0100155 if (!ip_may_fragment(skb) && ip_exceeds_mtu(skb, dst_mtu(&rt->dst))) {
Changli Gaod8d1f302010-06-10 23:31:35 -0700156 IP_INC_STATS(dev_net(rt->dst.dev), IPSTATS_MIB_FRAGFAILS);
John Heffner9af39122007-03-25 23:32:29 -0700157 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED,
Changli Gaod8d1f302010-06-10 23:31:35 -0700158 htonl(dst_mtu(&rt->dst)));
John Heffner9af39122007-03-25 23:32:29 -0700159 goto drop;
160 }
161
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 /* We are about to mangle packet. Copy it! */
Changli Gaod8d1f302010-06-10 23:31:35 -0700163 if (skb_cow(skb, LL_RESERVED_SPACE(rt->dst.dev)+rt->dst.header_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 goto drop;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700165 iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
167 /* Decrease ttl after skb cow done */
168 ip_decrease_ttl(iph);
169
170 /*
171 * We now generate an ICMP HOST REDIRECT giving the route
172 * we calculated.
173 */
Alexey Dobriyandef8b4f2008-10-28 13:24:06 -0700174 if (rt->rt_flags&RTCF_DOREDIRECT && !opt->srr && !skb_sec_path(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 ip_rt_send_redirect(skb);
176
177 skb->priority = rt_tos2priority(iph->tos);
178
Jan Engelhardt9bbc7682010-03-23 04:07:29 +0100179 return NF_HOOK(NFPROTO_IPV4, NF_INET_FORWARD, skb, skb->dev,
Changli Gaod8d1f302010-06-10 23:31:35 -0700180 rt->dst.dev, ip_forward_finish);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
182sr_failed:
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900183 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 * Strict routing permits no gatewaying
185 */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900186 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_SR_FAILED, 0);
187 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
189too_many_hops:
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900190 /* Tell the sender its packet died... */
Eric Dumazetadf30902009-06-02 05:19:30 +0000191 IP_INC_STATS_BH(dev_net(skb_dst(skb)->dev), IPSTATS_MIB_INHDRERRORS);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900192 icmp_send(skb, ICMP_TIME_EXCEEDED, ICMP_EXC_TTL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193drop:
194 kfree_skb(skb);
195 return NET_RX_DROP;
196}