blob: dd93836476fe75b105cb7fd3c591ee2700c57c45 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * IPv6 output functions
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003 * Linux INET6 implementation
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * Authors:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09006 * Pedro Roque <roque@di.fc.ul.pt>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * Based on linux/net/ipv4/ip_output.c
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version
13 * 2 of the License, or (at your option) any later version.
14 *
15 * Changes:
16 * A.N.Kuznetsov : airthmetics in fragmentation.
17 * extension headers are implemented.
18 * route changes now work.
19 * ip6_forward does not confuse sniffers.
20 * etc.
21 *
22 * H. von Brand : Added missing #include <linux/string.h>
Ian Morris67ba4152014-08-24 21:53:10 +010023 * Imran Patel : frag id should be in NBO
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 * Kazunori MIYAZAWA @USAGI
25 * : add ip6_append_data and related functions
26 * for datagram xmit
27 */
28
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/errno.h>
Herbert Xuef76bc22008-01-11 19:15:08 -080030#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/string.h>
32#include <linux/socket.h>
33#include <linux/net.h>
34#include <linux/netdevice.h>
35#include <linux/if_arp.h>
36#include <linux/in6.h>
37#include <linux/tcp.h>
38#include <linux/route.h>
Herbert Xub59f45d2006-05-27 23:05:54 -070039#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090040#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Daniel Mack9290d742016-11-23 16:52:29 +010042#include <linux/bpf-cgroup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/netfilter.h>
44#include <linux/netfilter_ipv6.h>
45
46#include <net/sock.h>
47#include <net/snmp.h>
48
49#include <net/ipv6.h>
50#include <net/ndisc.h>
51#include <net/protocol.h>
52#include <net/ip6_route.h>
53#include <net/addrconf.h>
54#include <net/rawv6.h>
55#include <net/icmp.h>
56#include <net/xfrm.h>
57#include <net/checksum.h>
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +090058#include <linux/mroute6.h>
David Ahernca254492015-10-12 11:47:10 -070059#include <net/l3mdev.h>
Roopa Prabhu14972cb2016-08-24 20:10:43 -070060#include <net/lwtunnel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Eric W. Biederman7d8c6e32015-06-12 22:12:04 -050062static int ip6_finish_output2(struct net *net, struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070063{
Eric Dumazetadf30902009-06-02 05:19:30 +000064 struct dst_entry *dst = skb_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 struct net_device *dev = dst->dev;
David S. Millerf6b72b62011-07-14 07:53:20 -070066 struct neighbour *neigh;
YOSHIFUJI Hideaki / 吉藤英明6fd6ce22013-01-17 12:54:00 +000067 struct in6_addr *nexthop;
68 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -070070 if (ipv6_addr_is_multicast(&ipv6_hdr(skb)->daddr)) {
Eric Dumazetadf30902009-06-02 05:19:30 +000071 struct inet6_dev *idev = ip6_dst_idev(skb_dst(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
David Miller7026b1d2015-04-05 22:19:04 -040073 if (!(dev->flags & IFF_LOOPBACK) && sk_mc_loop(sk) &&
Eric W. Biederman78126c42015-09-15 20:04:09 -050074 ((mroute6_socket(net, skb) &&
Benjamin Therybd91b8b2008-12-10 16:07:08 -080075 !(IP6CB(skb)->flags & IP6SKB_FORWARDED)) ||
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +090076 ipv6_chk_mcast_addr(dev, &ipv6_hdr(skb)->daddr,
77 &ipv6_hdr(skb)->saddr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 struct sk_buff *newskb = skb_clone(skb, GFP_ATOMIC);
79
80 /* Do not check for IFF_ALLMULTI; multicast routing
81 is not supported in any case.
82 */
83 if (newskb)
Jan Engelhardtb2e0b382010-03-23 04:09:07 +010084 NF_HOOK(NFPROTO_IPV6, NF_INET_POST_ROUTING,
Eric W. Biederman29a26a52015-09-15 20:04:16 -050085 net, sk, newskb, NULL, newskb->dev,
Michel Machado95603e22012-06-12 10:16:35 +000086 dev_loopback_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -070088 if (ipv6_hdr(skb)->hop_limit == 0) {
Eric W. Biederman78126c42015-09-15 20:04:09 -050089 IP6_INC_STATS(net, idev,
Denis V. Lunev3bd653c2008-10-08 10:54:51 -070090 IPSTATS_MIB_OUTDISCARDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 kfree_skb(skb);
92 return 0;
93 }
94 }
95
Eric W. Biederman78126c42015-09-15 20:04:09 -050096 IP6_UPD_PO_STATS(net, idev, IPSTATS_MIB_OUTMCAST, skb->len);
Hannes Frederic Sowadd408512013-02-10 02:33:35 +000097
98 if (IPV6_ADDR_MC_SCOPE(&ipv6_hdr(skb)->daddr) <=
99 IPV6_ADDR_SCOPE_NODELOCAL &&
100 !(dev->flags & IFF_LOOPBACK)) {
101 kfree_skb(skb);
102 return 0;
103 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 }
105
Roopa Prabhu14972cb2016-08-24 20:10:43 -0700106 if (lwtunnel_xmit_redirect(dst->lwtstate)) {
107 int res = lwtunnel_xmit(skb);
108
109 if (res < 0 || res == LWTUNNEL_XMIT_DONE)
110 return res;
111 }
112
YOSHIFUJI Hideaki / 吉藤英明6fd6ce22013-01-17 12:54:00 +0000113 rcu_read_lock_bh();
Martin KaFai Lau2647a9b2015-05-22 20:55:58 -0700114 nexthop = rt6_nexthop((struct rt6_info *)dst, &ipv6_hdr(skb)->daddr);
YOSHIFUJI Hideaki / 吉藤英明6fd6ce22013-01-17 12:54:00 +0000115 neigh = __ipv6_neigh_lookup_noref(dst->dev, nexthop);
116 if (unlikely(!neigh))
117 neigh = __neigh_create(&nd_tbl, nexthop, dst->dev, false);
118 if (!IS_ERR(neigh)) {
119 ret = dst_neigh_output(dst, neigh, skb);
120 rcu_read_unlock_bh();
121 return ret;
122 }
123 rcu_read_unlock_bh();
David S. Miller05e3aa02011-07-16 17:26:00 -0700124
Eric W. Biederman78126c42015-09-15 20:04:09 -0500125 IP6_INC_STATS(net, ip6_dst_idev(dst), IPSTATS_MIB_OUTNOROUTES);
Jan Engelhardt9e508492010-04-13 15:28:11 +0200126 kfree_skb(skb);
127 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128}
129
Eric W. Biederman0c4b51f2015-09-15 20:04:18 -0500130static int ip6_finish_output(struct net *net, struct sock *sk, struct sk_buff *skb)
Jan Engelhardt9e508492010-04-13 15:28:11 +0200131{
Daniel Mack9290d742016-11-23 16:52:29 +0100132 int ret;
133
134 ret = BPF_CGROUP_RUN_PROG_INET_EGRESS(sk, skb);
135 if (ret) {
136 kfree_skb(skb);
137 return ret;
138 }
139
Jan Engelhardt9e508492010-04-13 15:28:11 +0200140 if ((skb->len > ip6_skb_dst_mtu(skb) && !skb_is_gso(skb)) ||
Jiri Pirko9037c352013-11-06 17:52:19 +0100141 dst_allfrag(skb_dst(skb)) ||
142 (IP6CB(skb)->frag_max_size && skb->len > IP6CB(skb)->frag_max_size))
Eric W. Biederman7d8c6e32015-06-12 22:12:04 -0500143 return ip6_fragment(net, sk, skb, ip6_finish_output2);
Jan Engelhardt9e508492010-04-13 15:28:11 +0200144 else
Eric W. Biederman7d8c6e32015-06-12 22:12:04 -0500145 return ip6_finish_output2(net, sk, skb);
Jan Engelhardt9e508492010-04-13 15:28:11 +0200146}
147
Eric W. Biedermanede20592015-10-07 16:48:47 -0500148int ip6_output(struct net *net, struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149{
Jan Engelhardt9e508492010-04-13 15:28:11 +0200150 struct net_device *dev = skb_dst(skb)->dev;
Eric Dumazetadf30902009-06-02 05:19:30 +0000151 struct inet6_dev *idev = ip6_dst_idev(skb_dst(skb));
Eric W. Biedermanbe10de02015-09-17 17:21:31 -0500152
Chenbo Feng2c4f58a2017-06-09 12:06:07 -0700153 skb->protocol = htons(ETH_P_IPV6);
154 skb->dev = dev;
155
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +0900156 if (unlikely(idev->cnf.disable_ipv6)) {
Eric W. Biederman19a06442015-09-15 20:04:10 -0500157 IP6_INC_STATS(net, idev, IPSTATS_MIB_OUTDISCARDS);
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +0900158 kfree_skb(skb);
159 return 0;
160 }
161
Eric W. Biederman29a26a52015-09-15 20:04:16 -0500162 return NF_HOOK_COND(NFPROTO_IPV6, NF_INET_POST_ROUTING,
163 net, sk, skb, NULL, dev,
Jan Engelhardt9c6eb282010-04-13 15:32:16 +0200164 ip6_finish_output,
165 !(IP6CB(skb)->flags & IP6SKB_REROUTED));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166}
167
Shaohua Lib3b56032017-12-20 12:10:21 -0800168static bool ip6_autoflowlabel(struct net *net, const struct ipv6_pinfo *np)
169{
170 if (!np->autoflowlabel_set)
171 return ip6_default_np_autolabel(net);
172 else
173 return np->autoflowlabel;
174}
175
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176/*
Eric Dumazet1c1e9d22015-09-25 07:39:20 -0700177 * xmit an sk_buff (used by TCP, SCTP and DCCP)
178 * Note : socket lock is not held for SYNACK packets, but might be modified
179 * by calls to skb_set_owner_w() and ipv6_local_error(),
180 * which are using proper atomic operations or spinlocks.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 */
Eric Dumazet1c1e9d22015-09-25 07:39:20 -0700182int ip6_xmit(const struct sock *sk, struct sk_buff *skb, struct flowi6 *fl6,
Pablo Neira0d4c19e2017-01-26 22:56:21 +0100183 __u32 mark, struct ipv6_txoptions *opt, int tclass)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184{
Denis V. Lunev3bd653c2008-10-08 10:54:51 -0700185 struct net *net = sock_net(sk);
Eric Dumazet1c1e9d22015-09-25 07:39:20 -0700186 const struct ipv6_pinfo *np = inet6_sk(sk);
David S. Miller4c9483b2011-03-12 16:22:43 -0500187 struct in6_addr *first_hop = &fl6->daddr;
Eric Dumazetadf30902009-06-02 05:19:30 +0000188 struct dst_entry *dst = skb_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 struct ipv6hdr *hdr;
David S. Miller4c9483b2011-03-12 16:22:43 -0500190 u8 proto = fl6->flowi6_proto;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 int seg_len = skb->len;
Gerrit Renkere651f032009-08-09 08:12:48 +0000192 int hlimit = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 u32 mtu;
194
195 if (opt) {
Chuck Leverc2636b42007-10-23 21:07:32 -0700196 unsigned int head_room;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
198 /* First: exthdrs may take lots of space (~8K for now)
199 MAX_HEADER is not enough.
200 */
201 head_room = opt->opt_nflen + opt->opt_flen;
202 seg_len += head_room;
203 head_room += sizeof(struct ipv6hdr) + LL_RESERVED_SPACE(dst->dev);
204
205 if (skb_headroom(skb) < head_room) {
206 struct sk_buff *skb2 = skb_realloc_headroom(skb, head_room);
Ian Morris63159f22015-03-29 14:00:04 +0100207 if (!skb2) {
Eric Dumazetadf30902009-06-02 05:19:30 +0000208 IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)),
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900209 IPSTATS_MIB_OUTDISCARDS);
210 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 return -ENOBUFS;
212 }
Eric Dumazet808db802012-04-24 10:17:59 +0000213 consume_skb(skb);
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900214 skb = skb2;
Eric Dumazet1c1e9d22015-09-25 07:39:20 -0700215 /* skb_set_owner_w() changes sk->sk_wmem_alloc atomically,
216 * it is safe to call in our context (socket lock not held)
217 */
218 skb_set_owner_w(skb, (struct sock *)sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 }
220 if (opt->opt_flen)
221 ipv6_push_frag_opts(skb, opt, &proto);
222 if (opt->opt_nflen)
223 ipv6_push_nfrag_opts(skb, opt, &proto, &first_hop);
224 }
225
Arnaldo Carvalho de Meloe2d1bca2007-04-10 20:46:21 -0700226 skb_push(skb, sizeof(struct ipv6hdr));
227 skb_reset_network_header(skb);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700228 hdr = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
230 /*
231 * Fill in the IPv6 header
232 */
Eric Dumazetb903d322011-10-27 00:44:35 -0400233 if (np)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 hlimit = np->hop_limit;
235 if (hlimit < 0)
YOSHIFUJI Hideaki6b75d092008-03-10 06:00:30 -0400236 hlimit = ip6_dst_hoplimit(dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Tom Herbertcb1ce2e2014-07-01 21:33:10 -0700238 ip6_flow_hdr(hdr, tclass, ip6_make_flowlabel(net, skb, fl6->flowlabel,
Shaohua Lib3b56032017-12-20 12:10:21 -0800239 ip6_autoflowlabel(net, np), fl6));
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900240
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 hdr->payload_len = htons(seg_len);
242 hdr->nexthdr = proto;
243 hdr->hop_limit = hlimit;
244
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000245 hdr->saddr = fl6->saddr;
246 hdr->daddr = *first_hop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Hannes Frederic Sowa9c9c9ad2013-08-26 12:31:23 +0200248 skb->protocol = htons(ETH_P_IPV6);
Patrick McHardya2c20642006-01-08 22:37:26 -0800249 skb->priority = sk->sk_priority;
Pablo Neira0d4c19e2017-01-26 22:56:21 +0100250 skb->mark = mark;
Patrick McHardya2c20642006-01-08 22:37:26 -0800251
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 mtu = dst_mtu(dst);
WANG Cong60ff7462014-05-04 16:39:18 -0700253 if ((skb->len <= mtu) || skb->ignore_df || skb_is_gso(skb)) {
Eric Dumazetadf30902009-06-02 05:19:30 +0000254 IP6_UPD_PO_STATS(net, ip6_dst_idev(skb_dst(skb)),
Neil Hormanedf391f2009-04-27 02:45:02 -0700255 IPSTATS_MIB_OUT, skb->len);
David Aherna8e3e1a2016-09-10 12:09:53 -0700256
257 /* if egress device is enslaved to an L3 master device pass the
258 * skb to its handler for processing
259 */
260 skb = l3mdev_ip6_out((struct sock *)sk, skb);
261 if (unlikely(!skb))
262 return 0;
263
Eric Dumazet1c1e9d22015-09-25 07:39:20 -0700264 /* hooks should never assume socket lock is held.
265 * we promote our socket to non const
266 */
Eric W. Biederman29a26a52015-09-15 20:04:16 -0500267 return NF_HOOK(NFPROTO_IPV6, NF_INET_LOCAL_OUT,
Eric Dumazet1c1e9d22015-09-25 07:39:20 -0700268 net, (struct sock *)sk, skb, NULL, dst->dev,
Eric W. Biederman13206b62015-10-07 16:48:35 -0500269 dst_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 }
271
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 skb->dev = dst->dev;
Eric Dumazet1c1e9d22015-09-25 07:39:20 -0700273 /* ipv6_local_error() does not require socket lock,
274 * we promote our socket to non const
275 */
276 ipv6_local_error((struct sock *)sk, EMSGSIZE, fl6, mtu);
277
Eric Dumazetadf30902009-06-02 05:19:30 +0000278 IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)), IPSTATS_MIB_FRAGFAILS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 kfree_skb(skb);
280 return -EMSGSIZE;
281}
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +0900282EXPORT_SYMBOL(ip6_xmit);
283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284static int ip6_call_ra_chain(struct sk_buff *skb, int sel)
285{
286 struct ip6_ra_chain *ra;
287 struct sock *last = NULL;
288
289 read_lock(&ip6_ra_lock);
290 for (ra = ip6_ra_chain; ra; ra = ra->next) {
291 struct sock *sk = ra->sk;
Andrew McDonald0bd1b592005-08-09 19:44:42 -0700292 if (sk && ra->sel == sel &&
293 (!sk->sk_bound_dev_if ||
294 sk->sk_bound_dev_if == skb->dev->ifindex)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 if (last) {
296 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
297 if (skb2)
298 rawv6_rcv(last, skb2);
299 }
300 last = sk;
301 }
302 }
303
304 if (last) {
305 rawv6_rcv(last, skb);
306 read_unlock(&ip6_ra_lock);
307 return 1;
308 }
309 read_unlock(&ip6_ra_lock);
310 return 0;
311}
312
Ville Nuorvalae21e0b52006-09-22 14:41:44 -0700313static int ip6_forward_proxy_check(struct sk_buff *skb)
314{
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700315 struct ipv6hdr *hdr = ipv6_hdr(skb);
Ville Nuorvalae21e0b52006-09-22 14:41:44 -0700316 u8 nexthdr = hdr->nexthdr;
Jesse Gross75f28112011-11-30 17:05:51 -0800317 __be16 frag_off;
Ville Nuorvalae21e0b52006-09-22 14:41:44 -0700318 int offset;
319
320 if (ipv6_ext_hdr(nexthdr)) {
Jesse Gross75f28112011-11-30 17:05:51 -0800321 offset = ipv6_skip_exthdr(skb, sizeof(*hdr), &nexthdr, &frag_off);
Ville Nuorvalae21e0b52006-09-22 14:41:44 -0700322 if (offset < 0)
323 return 0;
324 } else
325 offset = sizeof(struct ipv6hdr);
326
327 if (nexthdr == IPPROTO_ICMPV6) {
328 struct icmp6hdr *icmp6;
329
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700330 if (!pskb_may_pull(skb, (skb_network_header(skb) +
331 offset + 1 - skb->data)))
Ville Nuorvalae21e0b52006-09-22 14:41:44 -0700332 return 0;
333
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700334 icmp6 = (struct icmp6hdr *)(skb_network_header(skb) + offset);
Ville Nuorvalae21e0b52006-09-22 14:41:44 -0700335
336 switch (icmp6->icmp6_type) {
337 case NDISC_ROUTER_SOLICITATION:
338 case NDISC_ROUTER_ADVERTISEMENT:
339 case NDISC_NEIGHBOUR_SOLICITATION:
340 case NDISC_NEIGHBOUR_ADVERTISEMENT:
341 case NDISC_REDIRECT:
342 /* For reaction involving unicast neighbor discovery
343 * message destined to the proxied address, pass it to
344 * input function.
345 */
346 return 1;
347 default:
348 break;
349 }
350 }
351
Ville Nuorvala74553b02006-09-22 14:42:18 -0700352 /*
353 * The proxying router can't forward traffic sent to a link-local
354 * address, so signal the sender and discard the packet. This
355 * behavior is clarified by the MIPv6 specification.
356 */
357 if (ipv6_addr_type(&hdr->daddr) & IPV6_ADDR_LINKLOCAL) {
358 dst_link_failure(skb);
359 return -1;
360 }
361
Ville Nuorvalae21e0b52006-09-22 14:41:44 -0700362 return 0;
363}
364
Eric W. Biederman0c4b51f2015-09-15 20:04:18 -0500365static inline int ip6_forward_finish(struct net *net, struct sock *sk,
366 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367{
Eric W. Biederman13206b62015-10-07 16:48:35 -0500368 return dst_output(net, sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369}
370
Hannes Frederic Sowa0954cf92014-01-09 10:01:16 +0100371static unsigned int ip6_dst_mtu_forward(const struct dst_entry *dst)
372{
373 unsigned int mtu;
374 struct inet6_dev *idev;
375
376 if (dst_metric_locked(dst, RTAX_MTU)) {
377 mtu = dst_metric_raw(dst, RTAX_MTU);
378 if (mtu)
379 return mtu;
380 }
381
382 mtu = IPV6_MIN_MTU;
383 rcu_read_lock();
384 idev = __in6_dev_get(dst->dev);
385 if (idev)
386 mtu = idev->cnf.mtu6;
387 rcu_read_unlock();
388
389 return mtu;
390}
391
Florian Westphalfe6cc552014-02-13 23:09:12 +0100392static bool ip6_pkt_too_big(const struct sk_buff *skb, unsigned int mtu)
393{
Florian Westphal418a3152014-05-05 00:03:34 +0200394 if (skb->len <= mtu)
Florian Westphalfe6cc552014-02-13 23:09:12 +0100395 return false;
396
WANG Cong60ff7462014-05-04 16:39:18 -0700397 /* ipv6 conntrack defrag sets max_frag_size + ignore_df */
Florian Westphalfe6cc552014-02-13 23:09:12 +0100398 if (IP6CB(skb)->frag_max_size && IP6CB(skb)->frag_max_size > mtu)
399 return true;
400
WANG Cong60ff7462014-05-04 16:39:18 -0700401 if (skb->ignore_df)
Florian Westphal418a3152014-05-05 00:03:34 +0200402 return false;
403
Marcelo Ricardo Leitnerae7ef812016-06-02 15:05:41 -0300404 if (skb_is_gso(skb) && skb_gso_validate_mtu(skb, mtu))
Florian Westphalfe6cc552014-02-13 23:09:12 +0100405 return false;
406
407 return true;
408}
409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410int ip6_forward(struct sk_buff *skb)
411{
Eric Dumazetadf30902009-06-02 05:19:30 +0000412 struct dst_entry *dst = skb_dst(skb);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700413 struct ipv6hdr *hdr = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 struct inet6_skb_parm *opt = IP6CB(skb);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900415 struct net *net = dev_net(dst->dev);
Ulrich Weber14f3ad62010-02-26 04:34:49 -0800416 u32 mtu;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900417
YOSHIFUJI Hideaki53b79972008-07-19 22:35:03 -0700418 if (net->ipv6.devconf_all->forwarding == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 goto error;
420
Li RongQing090f1162014-03-11 10:40:08 +0800421 if (skb->pkt_type != PACKET_HOST)
422 goto drop;
423
Hannes Frederic Sowa9ef2e962015-10-08 18:19:53 +0200424 if (unlikely(skb->sk))
425 goto drop;
426
Ben Hutchings4497b072008-06-19 16:22:28 -0700427 if (skb_warn_if_lro(skb))
428 goto drop;
429
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 if (!xfrm6_policy_check(NULL, XFRM_POLICY_FWD, skb)) {
Eric Dumazet1d015502016-04-27 16:44:40 -0700431 __IP6_INC_STATS(net, ip6_dst_idev(dst),
432 IPSTATS_MIB_INDISCARDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 goto drop;
434 }
435
Herbert Xu35fc92a2007-03-26 23:22:20 -0700436 skb_forward_csum(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
438 /*
439 * We DO NOT make any processing on
440 * RA packets, pushing them to user level AS IS
441 * without ane WARRANTY that application will be able
442 * to interpret them. The reason is that we
443 * cannot make anything clever here.
444 *
445 * We are not end-node, so that if packet contains
446 * AH/ESP, we cannot make anything.
447 * Defragmentation also would be mistake, RA packets
448 * cannot be fragmented, because there is no warranty
449 * that different fragments will go along one path. --ANK
450 */
YOSHIFUJI Hideaki / 吉藤英明ab4eb352013-06-22 11:13:13 +0900451 if (unlikely(opt->flags & IP6SKB_ROUTERALERT)) {
452 if (ip6_call_ra_chain(skb, ntohs(opt->ra)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 return 0;
454 }
455
456 /*
457 * check and decrement ttl
458 */
459 if (hdr->hop_limit <= 1) {
460 /* Force OUTPUT device used as source address */
461 skb->dev = dst->dev;
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +0000462 icmpv6_send(skb, ICMPV6_TIME_EXCEED, ICMPV6_EXC_HOPLIMIT, 0);
Eric Dumazet1d015502016-04-27 16:44:40 -0700463 __IP6_INC_STATS(net, ip6_dst_idev(dst),
464 IPSTATS_MIB_INHDRERRORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
466 kfree_skb(skb);
467 return -ETIMEDOUT;
468 }
469
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -0700470 /* XXX: idev->cnf.proxy_ndp? */
YOSHIFUJI Hideaki53b79972008-07-19 22:35:03 -0700471 if (net->ipv6.devconf_all->proxy_ndp &&
Daniel Lezcano8a3edd82008-03-07 11:14:16 -0800472 pneigh_lookup(&nd_tbl, net, &hdr->daddr, skb->dev, 0)) {
Ville Nuorvala74553b02006-09-22 14:42:18 -0700473 int proxied = ip6_forward_proxy_check(skb);
474 if (proxied > 0)
Ville Nuorvalae21e0b52006-09-22 14:41:44 -0700475 return ip6_input(skb);
Ville Nuorvala74553b02006-09-22 14:42:18 -0700476 else if (proxied < 0) {
Eric Dumazet1d015502016-04-27 16:44:40 -0700477 __IP6_INC_STATS(net, ip6_dst_idev(dst),
478 IPSTATS_MIB_INDISCARDS);
Ville Nuorvala74553b02006-09-22 14:42:18 -0700479 goto drop;
480 }
Ville Nuorvalae21e0b52006-09-22 14:41:44 -0700481 }
482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 if (!xfrm6_route_forward(skb)) {
Eric Dumazet1d015502016-04-27 16:44:40 -0700484 __IP6_INC_STATS(net, ip6_dst_idev(dst),
485 IPSTATS_MIB_INDISCARDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 goto drop;
487 }
Eric Dumazetadf30902009-06-02 05:19:30 +0000488 dst = skb_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
490 /* IPv6 specs say nothing about it, but it is clear that we cannot
491 send redirects to source routed frames.
Masahide NAKAMURA1e5dc142007-08-24 19:08:55 +0900492 We don't send redirects to frames decapsulated from IPsec.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 */
David S. Millerc45a3df2012-01-27 15:32:19 -0800494 if (skb->dev == dst->dev && opt->srcrt == 0 && !skb_sec_path(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 struct in6_addr *target = NULL;
David S. Millerfbfe95a2012-06-08 23:24:18 -0700496 struct inet_peer *peer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 struct rt6_info *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
499 /*
500 * incoming and outgoing devices are the same
501 * send a redirect.
502 */
503
504 rt = (struct rt6_info *) dst;
David S. Millerc45a3df2012-01-27 15:32:19 -0800505 if (rt->rt6i_flags & RTF_GATEWAY)
506 target = &rt->rt6i_gateway;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 else
508 target = &hdr->daddr;
509
Martin KaFai Laufd0273d2015-05-22 20:55:57 -0700510 peer = inet_getpeer_v6(net->ipv6.peers, &hdr->daddr, 1);
David S. Miller92d86822011-02-04 15:55:25 -0800511
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 /* Limit redirects both by destination (here)
513 and by source (inside ndisc_send_redirect)
514 */
David S. Millerfbfe95a2012-06-08 23:24:18 -0700515 if (inet_peer_xrlim_allow(peer, 1*HZ))
David S. Miller49919692012-01-27 15:30:48 -0800516 ndisc_send_redirect(skb, target);
David S. Miller1d861aa2012-07-10 03:58:16 -0700517 if (peer)
518 inet_putpeer(peer);
David L Stevens5bb1ab02007-05-09 13:53:44 -0700519 } else {
520 int addrtype = ipv6_addr_type(&hdr->saddr);
521
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 /* This check is security critical. */
YOSHIFUJI Hideakif81b2e72008-06-25 16:55:26 +0900523 if (addrtype == IPV6_ADDR_ANY ||
524 addrtype & (IPV6_ADDR_MULTICAST | IPV6_ADDR_LOOPBACK))
David L Stevens5bb1ab02007-05-09 13:53:44 -0700525 goto error;
526 if (addrtype & IPV6_ADDR_LINKLOCAL) {
527 icmpv6_send(skb, ICMPV6_DEST_UNREACH,
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +0000528 ICMPV6_NOT_NEIGHBOUR, 0);
David L Stevens5bb1ab02007-05-09 13:53:44 -0700529 goto error;
530 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 }
532
Hannes Frederic Sowa0954cf92014-01-09 10:01:16 +0100533 mtu = ip6_dst_mtu_forward(dst);
Ulrich Weber14f3ad62010-02-26 04:34:49 -0800534 if (mtu < IPV6_MIN_MTU)
535 mtu = IPV6_MIN_MTU;
536
Florian Westphalfe6cc552014-02-13 23:09:12 +0100537 if (ip6_pkt_too_big(skb, mtu)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 /* Again, force OUTPUT device used as source address */
539 skb->dev = dst->dev;
Ulrich Weber14f3ad62010-02-26 04:34:49 -0800540 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
Eric Dumazet1d015502016-04-27 16:44:40 -0700541 __IP6_INC_STATS(net, ip6_dst_idev(dst),
542 IPSTATS_MIB_INTOOBIGERRORS);
543 __IP6_INC_STATS(net, ip6_dst_idev(dst),
544 IPSTATS_MIB_FRAGFAILS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 kfree_skb(skb);
546 return -EMSGSIZE;
547 }
548
549 if (skb_cow(skb, dst->dev->hard_header_len)) {
Eric Dumazet1d015502016-04-27 16:44:40 -0700550 __IP6_INC_STATS(net, ip6_dst_idev(dst),
551 IPSTATS_MIB_OUTDISCARDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 goto drop;
553 }
554
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700555 hdr = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
557 /* Mangling hops number delayed to point after skb COW */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900558
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 hdr->hop_limit--;
560
Eric Dumazet1d015502016-04-27 16:44:40 -0700561 __IP6_INC_STATS(net, ip6_dst_idev(dst), IPSTATS_MIB_OUTFORWDATAGRAMS);
562 __IP6_ADD_STATS(net, ip6_dst_idev(dst), IPSTATS_MIB_OUTOCTETS, skb->len);
Eric W. Biederman29a26a52015-09-15 20:04:16 -0500563 return NF_HOOK(NFPROTO_IPV6, NF_INET_FORWARD,
564 net, NULL, skb, skb->dev, dst->dev,
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800565 ip6_forward_finish);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
567error:
Eric Dumazet1d015502016-04-27 16:44:40 -0700568 __IP6_INC_STATS(net, ip6_dst_idev(dst), IPSTATS_MIB_INADDRERRORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569drop:
570 kfree_skb(skb);
571 return -EINVAL;
572}
573
574static void ip6_copy_metadata(struct sk_buff *to, struct sk_buff *from)
575{
576 to->pkt_type = from->pkt_type;
577 to->priority = from->priority;
578 to->protocol = from->protocol;
Eric Dumazetadf30902009-06-02 05:19:30 +0000579 skb_dst_drop(to);
580 skb_dst_set(to, dst_clone(skb_dst(from)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 to->dev = from->dev;
Thomas Graf82e91ff2006-11-09 15:19:14 -0800582 to->mark = from->mark;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
584#ifdef CONFIG_NET_SCHED
585 to->tc_index = from->tc_index;
586#endif
Yasuyuki Kozakaie7ac05f2007-03-14 16:44:01 -0700587 nf_copy(to, from);
James Morris984bc162006-06-09 00:29:17 -0700588 skb_copy_secmark(to, from);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589}
590
Eric W. Biederman7d8c6e32015-06-12 22:12:04 -0500591int ip6_fragment(struct net *net, struct sock *sk, struct sk_buff *skb,
592 int (*output)(struct net *, struct sock *, struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 struct sk_buff *frag;
Ian Morris67ba4152014-08-24 21:53:10 +0100595 struct rt6_info *rt = (struct rt6_info *)skb_dst(skb);
hannes@stressinduktion.orgf60e5992015-04-01 17:07:44 +0200596 struct ipv6_pinfo *np = skb->sk && !dev_recursion_level() ?
597 inet6_sk(skb->sk) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 struct ipv6hdr *tmp_hdr;
599 struct frag_hdr *fh;
600 unsigned int mtu, hlen, left, len;
Herbert Xua7ae1992011-11-18 02:20:04 +0000601 int hroom, troom;
Martin KaFai Lau286c2342015-05-22 20:55:56 -0700602 __be32 frag_id;
Ian Morris67ba4152014-08-24 21:53:10 +0100603 int ptr, offset = 0, err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 u8 *prevhdr, nexthdr = 0;
605
David S. Miller3fa202e2017-05-17 22:54:11 -0400606 err = ip6_find_1stfragopt(skb, &prevhdr);
607 if (err < 0)
Craig Galleka2c845e2017-05-16 14:36:23 -0400608 goto fail;
David S. Miller3fa202e2017-05-17 22:54:11 -0400609 hlen = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 nexthdr = *prevhdr;
611
John Heffner628a5c52007-04-20 15:53:27 -0700612 mtu = ip6_skb_dst_mtu(skb);
John Heffnerb881ef72007-04-20 15:52:39 -0700613
614 /* We must not fragment if the socket is set to force MTU discovery
Ulrich Weber14f3ad62010-02-26 04:34:49 -0800615 * or if the skb it not generated by a local socket.
John Heffnerb881ef72007-04-20 15:52:39 -0700616 */
Florian Westphal485fca62015-05-22 00:44:16 +0200617 if (unlikely(!skb->ignore_df && skb->len > mtu))
618 goto fail_toobig;
Eric Dumazeta34a1012012-05-18 21:51:44 +0000619
Florian Westphal485fca62015-05-22 00:44:16 +0200620 if (IP6CB(skb)->frag_max_size) {
621 if (IP6CB(skb)->frag_max_size > mtu)
622 goto fail_toobig;
623
624 /* don't send fragments larger than what we received */
625 mtu = IP6CB(skb)->frag_max_size;
626 if (mtu < IPV6_MIN_MTU)
627 mtu = IPV6_MIN_MTU;
John Heffnerb881ef72007-04-20 15:52:39 -0700628 }
629
YOSHIFUJI Hideakid91675f2006-02-24 13:18:33 -0800630 if (np && np->frag_size < mtu) {
631 if (np->frag_size)
632 mtu = np->frag_size;
633 }
Hannes Frederic Sowa89bc7842015-10-28 13:21:04 +0100634 if (mtu < hlen + sizeof(struct frag_hdr) + 8)
Hannes Frederic Sowab72a2b02015-10-16 11:32:43 +0200635 goto fail_toobig;
Hannes Frederic Sowa1e0d69a2015-10-28 13:21:03 +0100636 mtu -= hlen + sizeof(struct frag_hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
Martin KaFai Laufd0273d2015-05-22 20:55:57 -0700638 frag_id = ipv6_select_ident(net, &ipv6_hdr(skb)->daddr,
639 &ipv6_hdr(skb)->saddr);
Martin KaFai Lau286c2342015-05-22 20:55:56 -0700640
Hannes Frederic Sowa405c92f2015-10-27 22:40:42 +0100641 if (skb->ip_summed == CHECKSUM_PARTIAL &&
642 (err = skb_checksum_help(skb)))
643 goto fail;
644
Florian Westphal1d325d22015-09-16 17:26:14 +0200645 hroom = LL_RESERVED_SPACE(rt->dst.dev);
David S. Miller21dc3302010-08-23 00:13:46 -0700646 if (skb_has_frag_list(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 int first_len = skb_pagelen(skb);
Eric Dumazet3d130082010-09-21 08:47:45 +0000648 struct sk_buff *frag2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
650 if (first_len - hlen > mtu ||
651 ((first_len - hlen) & 7) ||
Florian Westphal1d325d22015-09-16 17:26:14 +0200652 skb_cloned(skb) ||
653 skb_headroom(skb) < (hroom + sizeof(struct frag_hdr)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 goto slow_path;
655
David S. Miller4d9092b2009-06-09 00:20:05 -0700656 skb_walk_frags(skb, frag) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 /* Correct geometry. */
658 if (frag->len > mtu ||
659 ((frag->len & 7) && frag->next) ||
Florian Westphal1d325d22015-09-16 17:26:14 +0200660 skb_headroom(frag) < (hlen + hroom + sizeof(struct frag_hdr)))
Eric Dumazet3d130082010-09-21 08:47:45 +0000661 goto slow_path_clean;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 /* Partially cloned skb? */
664 if (skb_shared(frag))
Eric Dumazet3d130082010-09-21 08:47:45 +0000665 goto slow_path_clean;
Herbert Xu2fdba6b2005-05-18 22:52:33 -0700666
667 BUG_ON(frag->sk);
668 if (skb->sk) {
Herbert Xu2fdba6b2005-05-18 22:52:33 -0700669 frag->sk = skb->sk;
670 frag->destructor = sock_wfree;
Herbert Xu2fdba6b2005-05-18 22:52:33 -0700671 }
Eric Dumazet3d130082010-09-21 08:47:45 +0000672 skb->truesize -= frag->truesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 }
674
675 err = 0;
676 offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 /* BUILD HEADER */
678
YOSHIFUJI Hideaki9a217a12006-12-05 13:47:21 -0800679 *prevhdr = NEXTHDR_FRAGMENT;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700680 tmp_hdr = kmemdup(skb_network_header(skb), hlen, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 if (!tmp_hdr) {
Florian Westphal1d325d22015-09-16 17:26:14 +0200682 err = -ENOMEM;
683 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 }
Florian Westphal1d325d22015-09-16 17:26:14 +0200685 frag = skb_shinfo(skb)->frag_list;
686 skb_frag_list_init(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 __skb_pull(skb, hlen);
Ian Morris67ba4152014-08-24 21:53:10 +0100689 fh = (struct frag_hdr *)__skb_push(skb, sizeof(struct frag_hdr));
Arnaldo Carvalho de Meloe2d1bca2007-04-10 20:46:21 -0700690 __skb_push(skb, hlen);
691 skb_reset_network_header(skb);
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700692 memcpy(skb_network_header(skb), tmp_hdr, hlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 fh->nexthdr = nexthdr;
695 fh->reserved = 0;
696 fh->frag_off = htons(IP6_MF);
Martin KaFai Lau286c2342015-05-22 20:55:56 -0700697 fh->identification = frag_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
699 first_len = skb_pagelen(skb);
700 skb->data_len = first_len - skb_headlen(skb);
701 skb->len = first_len;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700702 ipv6_hdr(skb)->payload_len = htons(first_len -
703 sizeof(struct ipv6hdr));
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900704
Changli Gaod8d1f302010-06-10 23:31:35 -0700705 dst_hold(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
707 for (;;) {
708 /* Prepare header of the next frame,
709 * before previous one went down. */
710 if (frag) {
711 frag->ip_summed = CHECKSUM_NONE;
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -0300712 skb_reset_transport_header(frag);
Ian Morris67ba4152014-08-24 21:53:10 +0100713 fh = (struct frag_hdr *)__skb_push(frag, sizeof(struct frag_hdr));
Arnaldo Carvalho de Meloe2d1bca2007-04-10 20:46:21 -0700714 __skb_push(frag, hlen);
715 skb_reset_network_header(frag);
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700716 memcpy(skb_network_header(frag), tmp_hdr,
717 hlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 offset += skb->len - hlen - sizeof(struct frag_hdr);
719 fh->nexthdr = nexthdr;
720 fh->reserved = 0;
721 fh->frag_off = htons(offset);
Ian Morris53b24b82015-03-29 14:00:05 +0100722 if (frag->next)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 fh->frag_off |= htons(IP6_MF);
724 fh->identification = frag_id;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700725 ipv6_hdr(frag)->payload_len =
726 htons(frag->len -
727 sizeof(struct ipv6hdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 ip6_copy_metadata(frag, skb);
729 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900730
Eric W. Biederman7d8c6e32015-06-12 22:12:04 -0500731 err = output(net, sk, skb);
Ian Morris67ba4152014-08-24 21:53:10 +0100732 if (!err)
Changli Gaod8d1f302010-06-10 23:31:35 -0700733 IP6_INC_STATS(net, ip6_dst_idev(&rt->dst),
Denis V. Lunev3bd653c2008-10-08 10:54:51 -0700734 IPSTATS_MIB_FRAGCREATES);
Wei Dongdafee492006-08-02 13:41:21 -0700735
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 if (err || !frag)
737 break;
738
739 skb = frag;
740 frag = skb->next;
741 skb->next = NULL;
742 }
743
Jesper Juhla51482b2005-11-08 09:41:34 -0800744 kfree(tmp_hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
746 if (err == 0) {
Changli Gaod8d1f302010-06-10 23:31:35 -0700747 IP6_INC_STATS(net, ip6_dst_idev(&rt->dst),
Denis V. Lunev3bd653c2008-10-08 10:54:51 -0700748 IPSTATS_MIB_FRAGOKS);
Amerigo Wang94e187c2012-10-29 00:13:19 +0000749 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 return 0;
751 }
752
Florian Westphal46cfd722014-09-10 01:08:46 +0200753 kfree_skb_list(frag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
Changli Gaod8d1f302010-06-10 23:31:35 -0700755 IP6_INC_STATS(net, ip6_dst_idev(&rt->dst),
Denis V. Lunev3bd653c2008-10-08 10:54:51 -0700756 IPSTATS_MIB_FRAGFAILS);
Amerigo Wang94e187c2012-10-29 00:13:19 +0000757 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 return err;
Eric Dumazet3d130082010-09-21 08:47:45 +0000759
760slow_path_clean:
761 skb_walk_frags(skb, frag2) {
762 if (frag2 == frag)
763 break;
764 frag2->sk = NULL;
765 frag2->destructor = NULL;
766 skb->truesize += frag2->truesize;
767 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 }
769
770slow_path:
771 left = skb->len - hlen; /* Space per frame */
772 ptr = hlen; /* Where to start from */
773
774 /*
775 * Fragment the datagram.
776 */
777
Herbert Xua7ae1992011-11-18 02:20:04 +0000778 troom = rt->dst.dev->needed_tailroom;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
780 /*
781 * Keep copying data until we run out.
782 */
Ian Morris67ba4152014-08-24 21:53:10 +0100783 while (left > 0) {
Florian Westphal683100e2017-03-13 16:24:28 +0100784 u8 *fragnexthdr_offset;
785
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 len = left;
787 /* IF: it doesn't fit, use 'mtu' - the data space left */
788 if (len > mtu)
789 len = mtu;
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300790 /* IF: we are not sending up to and including the packet end
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 then align the next start on an eight byte boundary */
792 if (len < left) {
793 len &= ~7;
794 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
Joe Perchescbffccc2014-11-05 14:39:21 -0800796 /* Allocate buffer */
797 frag = alloc_skb(len + hlen + sizeof(struct frag_hdr) +
798 hroom + troom, GFP_ATOMIC);
799 if (!frag) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 err = -ENOMEM;
801 goto fail;
802 }
803
804 /*
805 * Set up data on packet
806 */
807
808 ip6_copy_metadata(frag, skb);
Herbert Xua7ae1992011-11-18 02:20:04 +0000809 skb_reserve(frag, hroom);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 skb_put(frag, len + hlen + sizeof(struct frag_hdr));
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700811 skb_reset_network_header(frag);
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -0300812 fh = (struct frag_hdr *)(skb_network_header(frag) + hlen);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700813 frag->transport_header = (frag->network_header + hlen +
814 sizeof(struct frag_hdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
816 /*
817 * Charge the memory for the fragment to any owner
818 * it might possess
819 */
820 if (skb->sk)
821 skb_set_owner_w(frag, skb->sk);
822
823 /*
824 * Copy the packet header into the new buffer.
825 */
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300826 skb_copy_from_linear_data(skb, skb_network_header(frag), hlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827
Florian Westphal683100e2017-03-13 16:24:28 +0100828 fragnexthdr_offset = skb_network_header(frag);
829 fragnexthdr_offset += prevhdr - skb_network_header(skb);
830 *fragnexthdr_offset = NEXTHDR_FRAGMENT;
831
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 /*
833 * Build fragment header.
834 */
835 fh->nexthdr = nexthdr;
836 fh->reserved = 0;
Martin KaFai Lau286c2342015-05-22 20:55:56 -0700837 fh->identification = frag_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
839 /*
840 * Copy a block of the IP datagram.
841 */
Himangi Saraogie3f0b862014-07-12 01:57:17 +0530842 BUG_ON(skb_copy_bits(skb, ptr, skb_transport_header(frag),
843 len));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 left -= len;
845
846 fh->frag_off = htons(offset);
847 if (left > 0)
848 fh->frag_off |= htons(IP6_MF);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700849 ipv6_hdr(frag)->payload_len = htons(frag->len -
850 sizeof(struct ipv6hdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
852 ptr += len;
853 offset += len;
854
855 /*
856 * Put this fragment into the sending queue.
857 */
Eric W. Biederman7d8c6e32015-06-12 22:12:04 -0500858 err = output(net, sk, frag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 if (err)
860 goto fail;
Wei Dongdafee492006-08-02 13:41:21 -0700861
Eric Dumazetadf30902009-06-02 05:19:30 +0000862 IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)),
Denis V. Lunev3bd653c2008-10-08 10:54:51 -0700863 IPSTATS_MIB_FRAGCREATES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 }
Eric Dumazetadf30902009-06-02 05:19:30 +0000865 IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)),
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900866 IPSTATS_MIB_FRAGOKS);
Eric Dumazet808db802012-04-24 10:17:59 +0000867 consume_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 return err;
869
Florian Westphal485fca62015-05-22 00:44:16 +0200870fail_toobig:
871 if (skb->sk && dst_allfrag(skb_dst(skb)))
872 sk_nocaps_add(skb->sk, NETIF_F_GSO_MASK);
873
Florian Westphal485fca62015-05-22 00:44:16 +0200874 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
875 err = -EMSGSIZE;
876
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877fail:
Eric Dumazetadf30902009-06-02 05:19:30 +0000878 IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)),
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900879 IPSTATS_MIB_FRAGFAILS);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900880 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 return err;
882}
883
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000884static inline int ip6_rt_check(const struct rt6key *rt_key,
885 const struct in6_addr *fl_addr,
886 const struct in6_addr *addr_cache)
YOSHIFUJI Hideakicf6b1982006-08-23 17:19:18 -0700887{
Eric Dumazeta02cec22010-09-22 20:43:57 +0000888 return (rt_key->plen != 128 || !ipv6_addr_equal(fl_addr, &rt_key->addr)) &&
Ian Morris63159f22015-03-29 14:00:04 +0100889 (!addr_cache || !ipv6_addr_equal(fl_addr, addr_cache));
YOSHIFUJI Hideakicf6b1982006-08-23 17:19:18 -0700890}
891
Herbert Xu497c6152006-07-30 20:19:33 -0700892static struct dst_entry *ip6_sk_dst_check(struct sock *sk,
893 struct dst_entry *dst,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000894 const struct flowi6 *fl6)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895{
Herbert Xu497c6152006-07-30 20:19:33 -0700896 struct ipv6_pinfo *np = inet6_sk(sk);
Eric Dumazeta963a372013-06-26 04:15:07 -0700897 struct rt6_info *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898
Herbert Xu497c6152006-07-30 20:19:33 -0700899 if (!dst)
900 goto out;
901
Eric Dumazeta963a372013-06-26 04:15:07 -0700902 if (dst->ops->family != AF_INET6) {
903 dst_release(dst);
904 return NULL;
905 }
906
907 rt = (struct rt6_info *)dst;
Herbert Xu497c6152006-07-30 20:19:33 -0700908 /* Yes, checking route validity in not connected
909 * case is not very simple. Take into account,
910 * that we do not support routing by source, TOS,
Ian Morris67ba4152014-08-24 21:53:10 +0100911 * and MSG_DONTROUTE --ANK (980726)
Herbert Xu497c6152006-07-30 20:19:33 -0700912 *
YOSHIFUJI Hideakicf6b1982006-08-23 17:19:18 -0700913 * 1. ip6_rt_check(): If route was host route,
914 * check that cached destination is current.
Herbert Xu497c6152006-07-30 20:19:33 -0700915 * If it is network route, we still may
916 * check its validity using saved pointer
917 * to the last used address: daddr_cache.
918 * We do not want to save whole address now,
919 * (because main consumer of this service
920 * is tcp, which has not this problem),
921 * so that the last trick works only on connected
922 * sockets.
923 * 2. oif also should be the same.
924 */
David S. Miller4c9483b2011-03-12 16:22:43 -0500925 if (ip6_rt_check(&rt->rt6i_dst, &fl6->daddr, np->daddr_cache) ||
YOSHIFUJI Hideaki8e1ef0a2006-08-29 17:15:09 -0700926#ifdef CONFIG_IPV6_SUBTREES
David S. Miller4c9483b2011-03-12 16:22:43 -0500927 ip6_rt_check(&rt->rt6i_src, &fl6->saddr, np->saddr_cache) ||
YOSHIFUJI Hideaki8e1ef0a2006-08-29 17:15:09 -0700928#endif
David Ahernca254492015-10-12 11:47:10 -0700929 (!(fl6->flowi6_flags & FLOWI_FLAG_SKIP_NH_OIF) &&
930 (fl6->flowi6_oif && fl6->flowi6_oif != dst->dev->ifindex))) {
Herbert Xu497c6152006-07-30 20:19:33 -0700931 dst_release(dst);
932 dst = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 }
934
Herbert Xu497c6152006-07-30 20:19:33 -0700935out:
936 return dst;
937}
938
Eric Dumazet3aef9342015-09-25 07:39:12 -0700939static int ip6_dst_lookup_tail(struct net *net, const struct sock *sk,
David S. Miller4c9483b2011-03-12 16:22:43 -0500940 struct dst_entry **dst, struct flowi6 *fl6)
Herbert Xu497c6152006-07-30 20:19:33 -0700941{
David S. Miller69cce1d2011-07-17 23:09:49 -0700942#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
943 struct neighbour *n;
David S. Miller97cac082012-07-02 22:43:47 -0700944 struct rt6_info *rt;
David S. Miller69cce1d2011-07-17 23:09:49 -0700945#endif
946 int err;
Paolo Abeni6f21c962016-01-29 12:30:19 +0100947 int flags = 0;
Herbert Xu497c6152006-07-30 20:19:33 -0700948
Markus Stenberge16e8882015-05-05 13:36:59 +0300949 /* The correct way to handle this would be to do
950 * ip6_route_get_saddr, and then ip6_route_output; however,
951 * the route-specific preferred source forces the
952 * ip6_route_output call _before_ ip6_route_get_saddr.
953 *
954 * In source specific routing (no src=any default route),
955 * ip6_route_output will fail given src=any saddr, though, so
956 * that's why we try it again later.
957 */
958 if (ipv6_addr_any(&fl6->saddr) && (!*dst || !(*dst)->error)) {
959 struct rt6_info *rt;
960 bool had_dst = *dst != NULL;
961
962 if (!had_dst)
963 *dst = ip6_route_output(net, sk, fl6);
964 rt = (*dst)->error ? NULL : (struct rt6_info *)*dst;
965 err = ip6_route_get_saddr(net, rt, &fl6->daddr,
966 sk ? inet6_sk(sk)->srcprefs : 0,
967 &fl6->saddr);
968 if (err)
969 goto out_err_release;
970
971 /* If we had an erroneous initial result, pretend it
972 * never existed and let the SA-enabled version take
973 * over.
974 */
975 if (!had_dst && (*dst)->error) {
976 dst_release(*dst);
977 *dst = NULL;
978 }
Paolo Abeni6f21c962016-01-29 12:30:19 +0100979
980 if (fl6->flowi6_oif)
981 flags |= RT6_LOOKUP_F_IFACE;
Markus Stenberge16e8882015-05-05 13:36:59 +0300982 }
983
Ian Morris63159f22015-03-29 14:00:04 +0100984 if (!*dst)
Paolo Abeni6f21c962016-01-29 12:30:19 +0100985 *dst = ip6_route_output_flags(net, sk, fl6, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
Ian Morrise5d08d72014-11-23 21:28:43 +0000987 err = (*dst)->error;
988 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 goto out_err_release;
990
Neil Horman95c385b2007-04-25 17:08:10 -0700991#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
Neil Hormane550dfb2008-09-09 13:51:35 -0700992 /*
993 * Here if the dst entry we've looked up
994 * has a neighbour entry that is in the INCOMPLETE
995 * state and the src address from the flow is
996 * marked as OPTIMISTIC, we release the found
997 * dst entry and replace it instead with the
998 * dst entry of the nexthop router
999 */
Eric Dumazetc56bf6f2012-07-06 09:19:05 +02001000 rt = (struct rt6_info *) *dst;
YOSHIFUJI Hideaki / 吉藤英明707be1f2013-01-17 12:53:55 +00001001 rcu_read_lock_bh();
Martin KaFai Lau2647a9b2015-05-22 20:55:58 -07001002 n = __ipv6_neigh_lookup_noref(rt->dst.dev,
1003 rt6_nexthop(rt, &fl6->daddr));
YOSHIFUJI Hideaki / 吉藤英明707be1f2013-01-17 12:53:55 +00001004 err = n && !(n->nud_state & NUD_VALID) ? -EINVAL : 0;
1005 rcu_read_unlock_bh();
1006
1007 if (err) {
Neil Hormane550dfb2008-09-09 13:51:35 -07001008 struct inet6_ifaddr *ifp;
David S. Miller4c9483b2011-03-12 16:22:43 -05001009 struct flowi6 fl_gw6;
Neil Hormane550dfb2008-09-09 13:51:35 -07001010 int redirect;
Neil Horman95c385b2007-04-25 17:08:10 -07001011
David S. Miller4c9483b2011-03-12 16:22:43 -05001012 ifp = ipv6_get_ifaddr(net, &fl6->saddr,
Neil Hormane550dfb2008-09-09 13:51:35 -07001013 (*dst)->dev, 1);
Neil Horman95c385b2007-04-25 17:08:10 -07001014
Neil Hormane550dfb2008-09-09 13:51:35 -07001015 redirect = (ifp && ifp->flags & IFA_F_OPTIMISTIC);
1016 if (ifp)
1017 in6_ifa_put(ifp);
Neil Horman95c385b2007-04-25 17:08:10 -07001018
Neil Hormane550dfb2008-09-09 13:51:35 -07001019 if (redirect) {
1020 /*
1021 * We need to get the dst entry for the
1022 * default router instead
1023 */
1024 dst_release(*dst);
David S. Miller4c9483b2011-03-12 16:22:43 -05001025 memcpy(&fl_gw6, fl6, sizeof(struct flowi6));
1026 memset(&fl_gw6.daddr, 0, sizeof(struct in6_addr));
1027 *dst = ip6_route_output(net, sk, &fl_gw6);
Ian Morrise5d08d72014-11-23 21:28:43 +00001028 err = (*dst)->error;
1029 if (err)
Neil Hormane550dfb2008-09-09 13:51:35 -07001030 goto out_err_release;
Neil Horman95c385b2007-04-25 17:08:10 -07001031 }
Neil Hormane550dfb2008-09-09 13:51:35 -07001032 }
Neil Horman95c385b2007-04-25 17:08:10 -07001033#endif
Jonathan T. Leightoncb351da2017-05-23 21:53:34 -04001034 if (ipv6_addr_v4mapped(&fl6->saddr) &&
Willem de Bruijn98184bb2017-02-18 19:00:45 -05001035 !(ipv6_addr_v4mapped(&fl6->daddr) || ipv6_addr_any(&fl6->daddr))) {
1036 err = -EAFNOSUPPORT;
1037 goto out_err_release;
1038 }
Neil Horman95c385b2007-04-25 17:08:10 -07001039
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 return 0;
1041
1042out_err_release:
1043 dst_release(*dst);
1044 *dst = NULL;
David Ahern8a966fc2016-09-10 12:09:59 -07001045
David Ahern0d240e72016-06-16 16:24:25 -07001046 if (err == -ENETUNREACH)
1047 IP6_INC_STATS(net, NULL, IPSTATS_MIB_OUTNOROUTES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 return err;
1049}
Adrian Bunk34a0b3c2005-11-29 16:28:56 -08001050
Herbert Xu497c6152006-07-30 20:19:33 -07001051/**
1052 * ip6_dst_lookup - perform route lookup on flow
1053 * @sk: socket which provides route info
1054 * @dst: pointer to dst_entry * for result
David S. Miller4c9483b2011-03-12 16:22:43 -05001055 * @fl6: flow to lookup
Herbert Xu497c6152006-07-30 20:19:33 -07001056 *
1057 * This function performs a route lookup on the given flow.
1058 *
1059 * It returns zero on success, or a standard errno code on error.
1060 */
Roopa Prabhu343d60a2015-07-30 13:34:53 -07001061int ip6_dst_lookup(struct net *net, struct sock *sk, struct dst_entry **dst,
1062 struct flowi6 *fl6)
Herbert Xu497c6152006-07-30 20:19:33 -07001063{
1064 *dst = NULL;
Roopa Prabhu343d60a2015-07-30 13:34:53 -07001065 return ip6_dst_lookup_tail(net, sk, dst, fl6);
Herbert Xu497c6152006-07-30 20:19:33 -07001066}
Arnaldo Carvalho de Melo3cf3dc62005-12-13 23:23:20 -08001067EXPORT_SYMBOL_GPL(ip6_dst_lookup);
1068
Herbert Xu497c6152006-07-30 20:19:33 -07001069/**
David S. Miller68d0c6d2011-03-01 13:19:07 -08001070 * ip6_dst_lookup_flow - perform route lookup on flow with ipsec
1071 * @sk: socket which provides route info
David S. Miller4c9483b2011-03-12 16:22:43 -05001072 * @fl6: flow to lookup
David S. Miller68d0c6d2011-03-01 13:19:07 -08001073 * @final_dst: final destination address for ipsec lookup
David S. Miller68d0c6d2011-03-01 13:19:07 -08001074 *
1075 * This function performs a route lookup on the given flow.
1076 *
1077 * It returns a valid dst pointer on success, or a pointer encoded
1078 * error code.
1079 */
Eric Dumazet3aef9342015-09-25 07:39:12 -07001080struct dst_entry *ip6_dst_lookup_flow(const struct sock *sk, struct flowi6 *fl6,
Steffen Klassert0e0d44a2013-08-28 08:04:14 +02001081 const struct in6_addr *final_dst)
David S. Miller68d0c6d2011-03-01 13:19:07 -08001082{
1083 struct dst_entry *dst = NULL;
1084 int err;
1085
Roopa Prabhu343d60a2015-07-30 13:34:53 -07001086 err = ip6_dst_lookup_tail(sock_net(sk), sk, &dst, fl6);
David S. Miller68d0c6d2011-03-01 13:19:07 -08001087 if (err)
1088 return ERR_PTR(err);
1089 if (final_dst)
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001090 fl6->daddr = *final_dst;
David S. Miller2774c132011-03-01 14:59:04 -08001091
Steffen Klassertf92ee612014-09-16 10:08:40 +02001092 return xfrm_lookup_route(sock_net(sk), dst, flowi6_to_flowi(fl6), sk, 0);
David S. Miller68d0c6d2011-03-01 13:19:07 -08001093}
1094EXPORT_SYMBOL_GPL(ip6_dst_lookup_flow);
1095
1096/**
1097 * ip6_sk_dst_lookup_flow - perform socket cached route lookup on flow
1098 * @sk: socket which provides the dst cache and route info
David S. Miller4c9483b2011-03-12 16:22:43 -05001099 * @fl6: flow to lookup
David S. Miller68d0c6d2011-03-01 13:19:07 -08001100 * @final_dst: final destination address for ipsec lookup
Herbert Xu497c6152006-07-30 20:19:33 -07001101 *
1102 * This function performs a route lookup on the given flow with the
1103 * possibility of using the cached route in the socket if it is valid.
1104 * It will take the socket dst lock when operating on the dst cache.
1105 * As a result, this function can only be used in process context.
1106 *
David S. Miller68d0c6d2011-03-01 13:19:07 -08001107 * It returns a valid dst pointer on success, or a pointer encoded
1108 * error code.
Herbert Xu497c6152006-07-30 20:19:33 -07001109 */
David S. Miller4c9483b2011-03-12 16:22:43 -05001110struct dst_entry *ip6_sk_dst_lookup_flow(struct sock *sk, struct flowi6 *fl6,
Steffen Klassert0e0d44a2013-08-28 08:04:14 +02001111 const struct in6_addr *final_dst)
Herbert Xu497c6152006-07-30 20:19:33 -07001112{
David S. Miller68d0c6d2011-03-01 13:19:07 -08001113 struct dst_entry *dst = sk_dst_check(sk, inet6_sk(sk)->dst_cookie);
Herbert Xu497c6152006-07-30 20:19:33 -07001114
David S. Miller4c9483b2011-03-12 16:22:43 -05001115 dst = ip6_sk_dst_check(sk, dst, fl6);
Jakub Sitnicki00bc0ef2016-06-08 15:13:34 +02001116 if (!dst)
1117 dst = ip6_dst_lookup_flow(sk, fl6, final_dst);
David S. Miller68d0c6d2011-03-01 13:19:07 -08001118
Jakub Sitnicki00bc0ef2016-06-08 15:13:34 +02001119 return dst;
Herbert Xu497c6152006-07-30 20:19:33 -07001120}
David S. Miller68d0c6d2011-03-01 13:19:07 -08001121EXPORT_SYMBOL_GPL(ip6_sk_dst_lookup_flow);
Herbert Xu497c6152006-07-30 20:19:33 -07001122
Adrian Bunk34a0b3c2005-11-29 16:28:56 -08001123static inline int ip6_ufo_append_data(struct sock *sk,
Vlad Yasevich0bbe84a2015-01-31 10:40:14 -05001124 struct sk_buff_head *queue,
Ananda Rajue89e9cf2005-10-18 15:46:41 -07001125 int getfrag(void *from, char *to, int offset, int len,
1126 int odd, struct sk_buff *skb),
1127 void *from, int length, int hh_len, int fragheaderlen,
Jakub Sitnicki3ba34582016-04-05 18:41:08 +02001128 int exthdrlen, int transhdrlen, int mtu,
1129 unsigned int flags, const struct flowi6 *fl6)
Ananda Rajue89e9cf2005-10-18 15:46:41 -07001130
1131{
1132 struct sk_buff *skb;
1133 int err;
1134
1135 /* There is support for UDP large send offload by network
1136 * device, so create one single skb packet containing complete
1137 * udp datagram
1138 */
Vlad Yasevich0bbe84a2015-01-31 10:40:14 -05001139 skb = skb_peek_tail(queue);
Ian Morris63159f22015-03-29 14:00:04 +01001140 if (!skb) {
Ananda Rajue89e9cf2005-10-18 15:46:41 -07001141 skb = sock_alloc_send_skb(sk,
1142 hh_len + fragheaderlen + transhdrlen + 20,
1143 (flags & MSG_DONTWAIT), &err);
Ian Morris63159f22015-03-29 14:00:04 +01001144 if (!skb)
Zheng Yan504744e2011-10-28 00:26:00 -04001145 return err;
Ananda Rajue89e9cf2005-10-18 15:46:41 -07001146
1147 /* reserve space for Hardware header */
1148 skb_reserve(skb, hh_len);
1149
1150 /* create space for UDP/IP header */
Ian Morris67ba4152014-08-24 21:53:10 +01001151 skb_put(skb, fragheaderlen + transhdrlen);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07001152
1153 /* initialize network header pointer */
Jakub Sitnicki3ba34582016-04-05 18:41:08 +02001154 skb_set_network_header(skb, exthdrlen);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07001155
1156 /* initialize protocol header pointer */
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07001157 skb->transport_header = skb->network_header + fragheaderlen;
Ananda Rajue89e9cf2005-10-18 15:46:41 -07001158
Hannes Frederic Sowa9c9c9ad2013-08-26 12:31:23 +02001159 skb->protocol = htons(ETH_P_IPV6);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07001160 skb->csum = 0;
Ananda Rajue89e9cf2005-10-18 15:46:41 -07001161
Vlad Yasevich0bbe84a2015-01-31 10:40:14 -05001162 __skb_queue_tail(queue, skb);
Jiri Pirkoc547dbf2013-10-19 12:29:16 +02001163 } else if (skb_is_gso(skb)) {
1164 goto append;
Ananda Rajue89e9cf2005-10-18 15:46:41 -07001165 }
Ananda Rajue89e9cf2005-10-18 15:46:41 -07001166
Jiri Pirkoc547dbf2013-10-19 12:29:16 +02001167 skb->ip_summed = CHECKSUM_PARTIAL;
1168 /* Specify the length of each IPv6 datagram fragment.
1169 * It has to be a multiple of 8.
1170 */
1171 skb_shinfo(skb)->gso_size = (mtu - fragheaderlen -
1172 sizeof(struct frag_hdr)) & ~7;
1173 skb_shinfo(skb)->gso_type = SKB_GSO_UDP;
Martin KaFai Laufd0273d2015-05-22 20:55:57 -07001174 skb_shinfo(skb)->ip6_frag_id = ipv6_select_ident(sock_net(sk),
1175 &fl6->daddr,
1176 &fl6->saddr);
Jiri Pirkoc547dbf2013-10-19 12:29:16 +02001177
1178append:
Hannes Frederic Sowa2811eba2013-09-21 06:27:00 +02001179 return skb_append_datato_frags(sk, skb, getfrag, from,
1180 (length - transhdrlen));
Ananda Rajue89e9cf2005-10-18 15:46:41 -07001181}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182
Herbert Xu0178b692009-02-05 15:15:50 -08001183static inline struct ipv6_opt_hdr *ip6_opt_dup(struct ipv6_opt_hdr *src,
1184 gfp_t gfp)
1185{
1186 return src ? kmemdup(src, (src->hdrlen + 1) * 8, gfp) : NULL;
1187}
1188
1189static inline struct ipv6_rt_hdr *ip6_rthdr_dup(struct ipv6_rt_hdr *src,
1190 gfp_t gfp)
1191{
1192 return src ? kmemdup(src, (src->hdrlen + 1) * 8, gfp) : NULL;
1193}
1194
Hannes Frederic Sowa75a493e2013-07-02 08:04:05 +02001195static void ip6_append_data_mtu(unsigned int *mtu,
Gao feng0c183372012-05-26 01:30:53 +00001196 int *maxfraglen,
1197 unsigned int fragheaderlen,
1198 struct sk_buff *skb,
Hannes Frederic Sowa75a493e2013-07-02 08:04:05 +02001199 struct rt6_info *rt,
luciene367c2d2014-03-17 12:51:01 +08001200 unsigned int orig_mtu)
Gao feng0c183372012-05-26 01:30:53 +00001201{
1202 if (!(rt->dst.flags & DST_XFRM_TUNNEL)) {
Ian Morris63159f22015-03-29 14:00:04 +01001203 if (!skb) {
Gao feng0c183372012-05-26 01:30:53 +00001204 /* first fragment, reserve header_len */
luciene367c2d2014-03-17 12:51:01 +08001205 *mtu = orig_mtu - rt->dst.header_len;
Gao feng0c183372012-05-26 01:30:53 +00001206
1207 } else {
1208 /*
1209 * this fragment is not first, the headers
1210 * space is regarded as data space.
1211 */
luciene367c2d2014-03-17 12:51:01 +08001212 *mtu = orig_mtu;
Gao feng0c183372012-05-26 01:30:53 +00001213 }
1214 *maxfraglen = ((*mtu - fragheaderlen) & ~7)
1215 + fragheaderlen - sizeof(struct frag_hdr);
1216 }
1217}
1218
Vlad Yasevich366e41d2015-01-31 10:40:13 -05001219static int ip6_setup_cork(struct sock *sk, struct inet_cork_full *cork,
Wei Wang26879da2016-05-02 21:40:07 -07001220 struct inet6_cork *v6_cork, struct ipcm6_cookie *ipc6,
Vlad Yasevich366e41d2015-01-31 10:40:13 -05001221 struct rt6_info *rt, struct flowi6 *fl6)
1222{
1223 struct ipv6_pinfo *np = inet6_sk(sk);
1224 unsigned int mtu;
Wei Wang26879da2016-05-02 21:40:07 -07001225 struct ipv6_txoptions *opt = ipc6->opt;
Vlad Yasevich366e41d2015-01-31 10:40:13 -05001226
1227 /*
1228 * setup for corking
1229 */
1230 if (opt) {
1231 if (WARN_ON(v6_cork->opt))
1232 return -EINVAL;
1233
Eric Dumazet28fa5832017-10-21 12:26:23 -07001234 v6_cork->opt = kzalloc(sizeof(*opt), sk->sk_allocation);
Ian Morris63159f22015-03-29 14:00:04 +01001235 if (unlikely(!v6_cork->opt))
Vlad Yasevich366e41d2015-01-31 10:40:13 -05001236 return -ENOBUFS;
1237
Eric Dumazet28fa5832017-10-21 12:26:23 -07001238 v6_cork->opt->tot_len = sizeof(*opt);
Vlad Yasevich366e41d2015-01-31 10:40:13 -05001239 v6_cork->opt->opt_flen = opt->opt_flen;
1240 v6_cork->opt->opt_nflen = opt->opt_nflen;
1241
1242 v6_cork->opt->dst0opt = ip6_opt_dup(opt->dst0opt,
1243 sk->sk_allocation);
1244 if (opt->dst0opt && !v6_cork->opt->dst0opt)
1245 return -ENOBUFS;
1246
1247 v6_cork->opt->dst1opt = ip6_opt_dup(opt->dst1opt,
1248 sk->sk_allocation);
1249 if (opt->dst1opt && !v6_cork->opt->dst1opt)
1250 return -ENOBUFS;
1251
1252 v6_cork->opt->hopopt = ip6_opt_dup(opt->hopopt,
1253 sk->sk_allocation);
1254 if (opt->hopopt && !v6_cork->opt->hopopt)
1255 return -ENOBUFS;
1256
1257 v6_cork->opt->srcrt = ip6_rthdr_dup(opt->srcrt,
1258 sk->sk_allocation);
1259 if (opt->srcrt && !v6_cork->opt->srcrt)
1260 return -ENOBUFS;
1261
1262 /* need source address above miyazawa*/
1263 }
1264 dst_hold(&rt->dst);
1265 cork->base.dst = &rt->dst;
1266 cork->fl.u.ip6 = *fl6;
Wei Wang26879da2016-05-02 21:40:07 -07001267 v6_cork->hop_limit = ipc6->hlimit;
1268 v6_cork->tclass = ipc6->tclass;
Vlad Yasevich366e41d2015-01-31 10:40:13 -05001269 if (rt->dst.flags & DST_XFRM_TUNNEL)
1270 mtu = np->pmtudisc >= IPV6_PMTUDISC_PROBE ?
1271 rt->dst.dev->mtu : dst_mtu(&rt->dst);
1272 else
1273 mtu = np->pmtudisc >= IPV6_PMTUDISC_PROBE ?
1274 rt->dst.dev->mtu : dst_mtu(rt->dst.path);
1275 if (np->frag_size < mtu) {
1276 if (np->frag_size)
1277 mtu = np->frag_size;
1278 }
1279 cork->base.fragsize = mtu;
1280 if (dst_allfrag(rt->dst.path))
1281 cork->base.flags |= IPCORK_ALLFRAG;
1282 cork->base.length = 0;
1283
1284 return 0;
1285}
1286
Vlad Yasevich0bbe84a2015-01-31 10:40:14 -05001287static int __ip6_append_data(struct sock *sk,
1288 struct flowi6 *fl6,
1289 struct sk_buff_head *queue,
1290 struct inet_cork *cork,
1291 struct inet6_cork *v6_cork,
1292 struct page_frag *pfrag,
1293 int getfrag(void *from, char *to, int offset,
1294 int len, int odd, struct sk_buff *skb),
1295 void *from, int length, int transhdrlen,
Wei Wang26879da2016-05-02 21:40:07 -07001296 unsigned int flags, struct ipcm6_cookie *ipc6,
Soheil Hassas Yeganehc14ac942016-04-02 23:08:12 -04001297 const struct sockcm_cookie *sockc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298{
Gao feng0c183372012-05-26 01:30:53 +00001299 struct sk_buff *skb, *skb_prev = NULL;
luciene367c2d2014-03-17 12:51:01 +08001300 unsigned int maxfraglen, fragheaderlen, mtu, orig_mtu;
Vlad Yasevich0bbe84a2015-01-31 10:40:14 -05001301 int exthdrlen = 0;
1302 int dst_exthdrlen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 int hh_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 int copy;
1305 int err;
1306 int offset = 0;
Anders Berggrena693e692011-02-28 12:32:11 -08001307 __u8 tx_flags = 0;
Willem de Bruijn09c2d252014-08-04 22:11:47 -04001308 u32 tskey = 0;
Vlad Yasevich0bbe84a2015-01-31 10:40:14 -05001309 struct rt6_info *rt = (struct rt6_info *)cork->dst;
1310 struct ipv6_txoptions *opt = v6_cork->opt;
Vlad Yasevich32dce962015-01-31 10:40:18 -05001311 int csummode = CHECKSUM_NONE;
Hannes Frederic Sowa682b1a92015-10-27 22:40:41 +01001312 unsigned int maxnonfragsize, headersize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
Vlad Yasevich0bbe84a2015-01-31 10:40:14 -05001314 skb = skb_peek_tail(queue);
1315 if (!skb) {
1316 exthdrlen = opt ? opt->opt_flen : 0;
Romain KUNTZ7efdba52013-01-16 12:47:40 +00001317 dst_exthdrlen = rt->dst.header_len - rt->rt6i_nfheader_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 }
Vlad Yasevich0bbe84a2015-01-31 10:40:14 -05001319
Vlad Yasevich366e41d2015-01-31 10:40:13 -05001320 mtu = cork->fragsize;
luciene367c2d2014-03-17 12:51:01 +08001321 orig_mtu = mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
Changli Gaod8d1f302010-06-10 23:31:35 -07001323 hh_len = LL_RESERVED_SPACE(rt->dst.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001325 fragheaderlen = sizeof(struct ipv6hdr) + rt->rt6i_nfheader_len +
Herbert Xub4ce9272007-11-13 21:33:32 -08001326 (opt ? opt->opt_nflen : 0);
Hannes Frederic Sowa4df98e72013-12-16 12:36:44 +01001327 maxfraglen = ((mtu - fragheaderlen) & ~7) + fragheaderlen -
1328 sizeof(struct frag_hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
Hannes Frederic Sowa682b1a92015-10-27 22:40:41 +01001330 headersize = sizeof(struct ipv6hdr) +
1331 (opt ? opt->opt_flen + opt->opt_nflen : 0) +
1332 (dst_allfrag(&rt->dst) ?
1333 sizeof(struct frag_hdr) : 0) +
1334 rt->rt6i_nfheader_len;
Hannes Frederic Sowa4df98e72013-12-16 12:36:44 +01001335
Wei Wang26879da2016-05-02 21:40:07 -07001336 if (cork->length + length > mtu - headersize && ipc6->dontfrag &&
Hannes Frederic Sowa682b1a92015-10-27 22:40:41 +01001337 (sk->sk_protocol == IPPROTO_UDP ||
1338 sk->sk_protocol == IPPROTO_RAW)) {
1339 ipv6_local_rxpmtu(sk, fl6, mtu - headersize +
1340 sizeof(struct ipv6hdr));
1341 goto emsgsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 }
1343
Hannes Frederic Sowa682b1a92015-10-27 22:40:41 +01001344 if (ip6_sk_ignore_df(sk))
1345 maxnonfragsize = sizeof(struct ipv6hdr) + IPV6_MAXPLEN;
1346 else
1347 maxnonfragsize = mtu;
1348
1349 if (cork->length + length > maxnonfragsize - headersize) {
1350emsgsize:
1351 ipv6_local_error(sk, EMSGSIZE, fl6,
1352 mtu - headersize +
1353 sizeof(struct ipv6hdr));
1354 return -EMSGSIZE;
1355 }
1356
1357 /* CHECKSUM_PARTIAL only with no extension headers and when
1358 * we are not going to fragment
1359 */
1360 if (transhdrlen && sk->sk_protocol == IPPROTO_UDP &&
1361 headersize == sizeof(struct ipv6hdr) &&
1362 length < mtu - headersize &&
1363 !(flags & MSG_MORE) &&
Tom Herbertc8cd0982015-12-14 11:19:44 -08001364 rt->dst.dev->features & (NETIF_F_IPV6_CSUM | NETIF_F_HW_CSUM))
Hannes Frederic Sowa682b1a92015-10-27 22:40:41 +01001365 csummode = CHECKSUM_PARTIAL;
1366
Willem de Bruijn09c2d252014-08-04 22:11:47 -04001367 if (sk->sk_type == SOCK_DGRAM || sk->sk_type == SOCK_RAW) {
Soheil Hassas Yeganehc14ac942016-04-02 23:08:12 -04001368 sock_tx_timestamp(sk, sockc->tsflags, &tx_flags);
Willem de Bruijn09c2d252014-08-04 22:11:47 -04001369 if (tx_flags & SKBTX_ANY_SW_TSTAMP &&
1370 sk->sk_tsflags & SOF_TIMESTAMPING_OPT_ID)
1371 tskey = sk->sk_tskey++;
1372 }
Anders Berggrena693e692011-02-28 12:32:11 -08001373
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 /*
1375 * Let's try using as much space as possible.
1376 * Use MTU if total length of the message fits into the MTU.
1377 * Otherwise, we need to reserve fragment header and
1378 * fragment alignment (= 8-15 octects, in total).
1379 *
1380 * Note that we may need to "move" the data from the tail of
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001381 * of the buffer to the new fragment when we split
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 * the message.
1383 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001384 * FIXME: It may be fragmented into multiple chunks
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 * at once if non-fragmentable extension headers
1386 * are too large.
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001387 * --yoshfuji
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 */
1389
Hannes Frederic Sowa2811eba2013-09-21 06:27:00 +02001390 cork->length += length;
Willem de Bruijn33dc6a62017-08-10 12:29:19 -04001391 if ((skb && skb_is_gso(skb)) ||
1392 (((length + fragheaderlen) > mtu) &&
1393 (skb_queue_len(queue) <= 1) &&
Hannes Frederic Sowa2811eba2013-09-21 06:27:00 +02001394 (sk->sk_protocol == IPPROTO_UDP) &&
Jakub Sitnickif89c56c2016-10-26 11:21:14 +02001395 (rt->dst.dev->features & NETIF_F_UFO) && !rt->dst.header_len &&
Willem de Bruijn33dc6a62017-08-10 12:29:19 -04001396 (sk->sk_type == SOCK_DGRAM) && !udp_get_no_check6_tx(sk))) {
Vlad Yasevich0bbe84a2015-01-31 10:40:14 -05001397 err = ip6_ufo_append_data(sk, queue, getfrag, from, length,
Jakub Sitnicki3ba34582016-04-05 18:41:08 +02001398 hh_len, fragheaderlen, exthdrlen,
Martin KaFai Laufd0273d2015-05-22 20:55:57 -07001399 transhdrlen, mtu, flags, fl6);
Hannes Frederic Sowa2811eba2013-09-21 06:27:00 +02001400 if (err)
1401 goto error;
1402 return 0;
1403 }
1404
1405 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 goto alloc_new_skb;
1407
1408 while (length > 0) {
1409 /* Check if the remaining data fits into current packet. */
David S. Millerbdc712b2011-05-06 15:02:07 -07001410 copy = (cork->length <= mtu && !(cork->flags & IPCORK_ALLFRAG) ? mtu : maxfraglen) - skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 if (copy < length)
1412 copy = maxfraglen - skb->len;
1413
1414 if (copy <= 0) {
1415 char *data;
1416 unsigned int datalen;
1417 unsigned int fraglen;
1418 unsigned int fraggap;
1419 unsigned int alloclen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420alloc_new_skb:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 /* There's no room in the current skb */
Gao feng0c183372012-05-26 01:30:53 +00001422 if (skb)
1423 fraggap = skb->len - maxfraglen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 else
1425 fraggap = 0;
Gao feng0c183372012-05-26 01:30:53 +00001426 /* update mtu and maxfraglen if necessary */
Ian Morris63159f22015-03-29 14:00:04 +01001427 if (!skb || !skb_prev)
Gao feng0c183372012-05-26 01:30:53 +00001428 ip6_append_data_mtu(&mtu, &maxfraglen,
Hannes Frederic Sowa75a493e2013-07-02 08:04:05 +02001429 fragheaderlen, skb, rt,
luciene367c2d2014-03-17 12:51:01 +08001430 orig_mtu);
Gao feng0c183372012-05-26 01:30:53 +00001431
1432 skb_prev = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433
1434 /*
1435 * If remaining data exceeds the mtu,
1436 * we know we need more fragment(s).
1437 */
1438 datalen = length + fraggap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439
Gao feng0c183372012-05-26 01:30:53 +00001440 if (datalen > (cork->length <= mtu && !(cork->flags & IPCORK_ALLFRAG) ? mtu : maxfraglen) - fragheaderlen)
1441 datalen = maxfraglen - fragheaderlen - rt->dst.trailer_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 if ((flags & MSG_MORE) &&
Changli Gaod8d1f302010-06-10 23:31:35 -07001443 !(rt->dst.dev->features&NETIF_F_SG))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 alloclen = mtu;
1445 else
1446 alloclen = datalen + fragheaderlen;
1447
Steffen Klassert299b0762011-10-11 01:43:33 +00001448 alloclen += dst_exthdrlen;
1449
Gao feng0c183372012-05-26 01:30:53 +00001450 if (datalen != length + fraggap) {
1451 /*
1452 * this is not the last fragment, the trailer
1453 * space is regarded as data space.
1454 */
1455 datalen += rt->dst.trailer_len;
1456 }
1457
1458 alloclen += rt->dst.trailer_len;
1459 fraglen = datalen + fragheaderlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460
1461 /*
1462 * We just reserve space for fragment header.
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001463 * Note: this may be overallocation if the message
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 * (without MSG_MORE) fits into the MTU.
1465 */
1466 alloclen += sizeof(struct frag_hdr);
1467
Eric Dumazet304b4102017-05-19 14:17:48 -07001468 copy = datalen - transhdrlen - fraggap;
1469 if (copy < 0) {
1470 err = -EINVAL;
1471 goto error;
1472 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 if (transhdrlen) {
1474 skb = sock_alloc_send_skb(sk,
1475 alloclen + hh_len,
1476 (flags & MSG_DONTWAIT), &err);
1477 } else {
1478 skb = NULL;
1479 if (atomic_read(&sk->sk_wmem_alloc) <=
1480 2 * sk->sk_sndbuf)
1481 skb = sock_wmalloc(sk,
1482 alloclen + hh_len, 1,
1483 sk->sk_allocation);
Ian Morris63159f22015-03-29 14:00:04 +01001484 if (unlikely(!skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 err = -ENOBUFS;
1486 }
Ian Morris63159f22015-03-29 14:00:04 +01001487 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 goto error;
1489 /*
1490 * Fill in the control structures
1491 */
Hannes Frederic Sowa9c9c9ad2013-08-26 12:31:23 +02001492 skb->protocol = htons(ETH_P_IPV6);
Vlad Yasevich32dce962015-01-31 10:40:18 -05001493 skb->ip_summed = csummode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 skb->csum = 0;
Gao feng1f858512012-03-19 22:36:10 +00001495 /* reserve for fragmentation and ipsec header */
1496 skb_reserve(skb, hh_len + sizeof(struct frag_hdr) +
1497 dst_exthdrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498
Willem de Bruijn11878b42014-07-14 17:55:06 -04001499 /* Only the initial fragment is time stamped */
1500 skb_shinfo(skb)->tx_flags = tx_flags;
1501 tx_flags = 0;
Willem de Bruijn09c2d252014-08-04 22:11:47 -04001502 skb_shinfo(skb)->tskey = tskey;
1503 tskey = 0;
Anders Berggrena693e692011-02-28 12:32:11 -08001504
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 /*
1506 * Find where to start putting bytes
1507 */
Gao feng1f858512012-03-19 22:36:10 +00001508 data = skb_put(skb, fraglen);
1509 skb_set_network_header(skb, exthdrlen);
1510 data += fragheaderlen;
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07001511 skb->transport_header = (skb->network_header +
1512 fragheaderlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 if (fraggap) {
1514 skb->csum = skb_copy_and_csum_bits(
1515 skb_prev, maxfraglen,
1516 data + transhdrlen, fraggap, 0);
1517 skb_prev->csum = csum_sub(skb_prev->csum,
1518 skb->csum);
1519 data += fraggap;
Herbert Xue9fa4f72006-08-13 20:12:58 -07001520 pskb_trim_unique(skb_prev, maxfraglen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 }
Eric Dumazet304b4102017-05-19 14:17:48 -07001522 if (copy > 0 &&
1523 getfrag(from, data + transhdrlen, offset,
1524 copy, fraggap, skb) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 err = -EFAULT;
1526 kfree_skb(skb);
1527 goto error;
1528 }
1529
1530 offset += copy;
1531 length -= datalen - fraggap;
1532 transhdrlen = 0;
1533 exthdrlen = 0;
Steffen Klassert299b0762011-10-11 01:43:33 +00001534 dst_exthdrlen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
1536 /*
1537 * Put the packet on the pending queue
1538 */
Vlad Yasevich0bbe84a2015-01-31 10:40:14 -05001539 __skb_queue_tail(queue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 continue;
1541 }
1542
1543 if (copy > length)
1544 copy = length;
1545
Changli Gaod8d1f302010-06-10 23:31:35 -07001546 if (!(rt->dst.dev->features&NETIF_F_SG)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 unsigned int off;
1548
1549 off = skb->len;
1550 if (getfrag(from, skb_put(skb, copy),
1551 offset, copy, off, skb) < 0) {
1552 __skb_trim(skb, off);
1553 err = -EFAULT;
1554 goto error;
1555 }
1556 } else {
1557 int i = skb_shinfo(skb)->nr_frags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558
Eric Dumazet5640f762012-09-23 23:04:42 +00001559 err = -ENOMEM;
1560 if (!sk_page_frag_refill(sk, pfrag))
1561 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562
Eric Dumazet5640f762012-09-23 23:04:42 +00001563 if (!skb_can_coalesce(skb, i, pfrag->page,
1564 pfrag->offset)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 err = -EMSGSIZE;
Eric Dumazet5640f762012-09-23 23:04:42 +00001566 if (i == MAX_SKB_FRAGS)
1567 goto error;
1568
1569 __skb_fill_page_desc(skb, i, pfrag->page,
1570 pfrag->offset, 0);
1571 skb_shinfo(skb)->nr_frags = ++i;
1572 get_page(pfrag->page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 }
Eric Dumazet5640f762012-09-23 23:04:42 +00001574 copy = min_t(int, copy, pfrag->size - pfrag->offset);
Eric Dumazet9e903e02011-10-18 21:00:24 +00001575 if (getfrag(from,
Eric Dumazet5640f762012-09-23 23:04:42 +00001576 page_address(pfrag->page) + pfrag->offset,
1577 offset, copy, skb->len, skb) < 0)
1578 goto error_efault;
1579
1580 pfrag->offset += copy;
1581 skb_frag_size_add(&skb_shinfo(skb)->frags[i - 1], copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 skb->len += copy;
1583 skb->data_len += copy;
Herbert Xuf945fa72008-01-22 22:39:26 -08001584 skb->truesize += copy;
1585 atomic_add(copy, &sk->sk_wmem_alloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 }
1587 offset += copy;
1588 length -= copy;
1589 }
Eric Dumazet5640f762012-09-23 23:04:42 +00001590
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 return 0;
Eric Dumazet5640f762012-09-23 23:04:42 +00001592
1593error_efault:
1594 err = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595error:
David S. Millerbdc712b2011-05-06 15:02:07 -07001596 cork->length -= length;
Denis V. Lunev3bd653c2008-10-08 10:54:51 -07001597 IP6_INC_STATS(sock_net(sk), rt->rt6i_idev, IPSTATS_MIB_OUTDISCARDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 return err;
1599}
Vlad Yasevich0bbe84a2015-01-31 10:40:14 -05001600
1601int ip6_append_data(struct sock *sk,
1602 int getfrag(void *from, char *to, int offset, int len,
1603 int odd, struct sk_buff *skb),
Wei Wang26879da2016-05-02 21:40:07 -07001604 void *from, int length, int transhdrlen,
1605 struct ipcm6_cookie *ipc6, struct flowi6 *fl6,
1606 struct rt6_info *rt, unsigned int flags,
Soheil Hassas Yeganehc14ac942016-04-02 23:08:12 -04001607 const struct sockcm_cookie *sockc)
Vlad Yasevich0bbe84a2015-01-31 10:40:14 -05001608{
1609 struct inet_sock *inet = inet_sk(sk);
1610 struct ipv6_pinfo *np = inet6_sk(sk);
1611 int exthdrlen;
1612 int err;
1613
1614 if (flags&MSG_PROBE)
1615 return 0;
1616 if (skb_queue_empty(&sk->sk_write_queue)) {
1617 /*
1618 * setup for corking
1619 */
Wei Wang26879da2016-05-02 21:40:07 -07001620 err = ip6_setup_cork(sk, &inet->cork, &np->cork,
1621 ipc6, rt, fl6);
Vlad Yasevich0bbe84a2015-01-31 10:40:14 -05001622 if (err)
1623 return err;
1624
Wei Wang26879da2016-05-02 21:40:07 -07001625 exthdrlen = (ipc6->opt ? ipc6->opt->opt_flen : 0);
Vlad Yasevich0bbe84a2015-01-31 10:40:14 -05001626 length += exthdrlen;
1627 transhdrlen += exthdrlen;
1628 } else {
1629 fl6 = &inet->cork.fl.u.ip6;
1630 transhdrlen = 0;
1631 }
1632
1633 return __ip6_append_data(sk, fl6, &sk->sk_write_queue, &inet->cork.base,
1634 &np->cork, sk_page_frag(sk), getfrag,
Wei Wang26879da2016-05-02 21:40:07 -07001635 from, length, transhdrlen, flags, ipc6, sockc);
Vlad Yasevich0bbe84a2015-01-31 10:40:14 -05001636}
Chris Elstona495f832012-04-29 21:48:53 +00001637EXPORT_SYMBOL_GPL(ip6_append_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638
Vlad Yasevich366e41d2015-01-31 10:40:13 -05001639static void ip6_cork_release(struct inet_cork_full *cork,
1640 struct inet6_cork *v6_cork)
Pavel Emelyanovbf138862007-11-05 21:04:31 -08001641{
Vlad Yasevich366e41d2015-01-31 10:40:13 -05001642 if (v6_cork->opt) {
1643 kfree(v6_cork->opt->dst0opt);
1644 kfree(v6_cork->opt->dst1opt);
1645 kfree(v6_cork->opt->hopopt);
1646 kfree(v6_cork->opt->srcrt);
1647 kfree(v6_cork->opt);
1648 v6_cork->opt = NULL;
Herbert Xu0178b692009-02-05 15:15:50 -08001649 }
1650
Vlad Yasevich366e41d2015-01-31 10:40:13 -05001651 if (cork->base.dst) {
1652 dst_release(cork->base.dst);
1653 cork->base.dst = NULL;
1654 cork->base.flags &= ~IPCORK_ALLFRAG;
Pavel Emelyanovbf138862007-11-05 21:04:31 -08001655 }
Vlad Yasevich366e41d2015-01-31 10:40:13 -05001656 memset(&cork->fl, 0, sizeof(cork->fl));
Pavel Emelyanovbf138862007-11-05 21:04:31 -08001657}
1658
Vlad Yasevich64223982015-01-31 10:40:15 -05001659struct sk_buff *__ip6_make_skb(struct sock *sk,
1660 struct sk_buff_head *queue,
1661 struct inet_cork_full *cork,
1662 struct inet6_cork *v6_cork)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663{
1664 struct sk_buff *skb, *tmp_skb;
1665 struct sk_buff **tail_skb;
1666 struct in6_addr final_dst_buf, *final_dst = &final_dst_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 struct ipv6_pinfo *np = inet6_sk(sk);
Denis V. Lunev3bd653c2008-10-08 10:54:51 -07001668 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 struct ipv6hdr *hdr;
Vlad Yasevich64223982015-01-31 10:40:15 -05001670 struct ipv6_txoptions *opt = v6_cork->opt;
1671 struct rt6_info *rt = (struct rt6_info *)cork->base.dst;
1672 struct flowi6 *fl6 = &cork->fl.u.ip6;
David S. Miller4c9483b2011-03-12 16:22:43 -05001673 unsigned char proto = fl6->flowi6_proto;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674
Vlad Yasevich64223982015-01-31 10:40:15 -05001675 skb = __skb_dequeue(queue);
Ian Morris63159f22015-03-29 14:00:04 +01001676 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 goto out;
1678 tail_skb = &(skb_shinfo(skb)->frag_list);
1679
1680 /* move skb->data to ip header from ext header */
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -07001681 if (skb->data < skb_network_header(skb))
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -03001682 __skb_pull(skb, skb_network_offset(skb));
Vlad Yasevich64223982015-01-31 10:40:15 -05001683 while ((tmp_skb = __skb_dequeue(queue)) != NULL) {
Arnaldo Carvalho de Melocfe1fc72007-03-16 17:26:39 -03001684 __skb_pull(tmp_skb, skb_network_header_len(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 *tail_skb = tmp_skb;
1686 tail_skb = &(tmp_skb->next);
1687 skb->len += tmp_skb->len;
1688 skb->data_len += tmp_skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 skb->truesize += tmp_skb->truesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 tmp_skb->destructor = NULL;
1691 tmp_skb->sk = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 }
1693
Herbert Xu28a894532008-02-12 18:07:27 -08001694 /* Allow local fragmentation. */
WANG Cong60ff7462014-05-04 16:39:18 -07001695 skb->ignore_df = ip6_sk_ignore_df(sk);
Herbert Xu28a894532008-02-12 18:07:27 -08001696
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001697 *final_dst = fl6->daddr;
Arnaldo Carvalho de Melocfe1fc72007-03-16 17:26:39 -03001698 __skb_pull(skb, skb_network_header_len(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 if (opt && opt->opt_flen)
1700 ipv6_push_frag_opts(skb, opt, &proto);
1701 if (opt && opt->opt_nflen)
1702 ipv6_push_nfrag_opts(skb, opt, &proto, &final_dst);
1703
Arnaldo Carvalho de Meloe2d1bca2007-04-10 20:46:21 -07001704 skb_push(skb, sizeof(struct ipv6hdr));
1705 skb_reset_network_header(skb);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001706 hdr = ipv6_hdr(skb);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001707
Vlad Yasevich64223982015-01-31 10:40:15 -05001708 ip6_flow_hdr(hdr, v6_cork->tclass,
Tom Herbertcb1ce2e2014-07-01 21:33:10 -07001709 ip6_make_flowlabel(net, skb, fl6->flowlabel,
Shaohua Lib3b56032017-12-20 12:10:21 -08001710 ip6_autoflowlabel(net, np), fl6));
Vlad Yasevich64223982015-01-31 10:40:15 -05001711 hdr->hop_limit = v6_cork->hop_limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 hdr->nexthdr = proto;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001713 hdr->saddr = fl6->saddr;
1714 hdr->daddr = *final_dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715
Patrick McHardya2c20642006-01-08 22:37:26 -08001716 skb->priority = sk->sk_priority;
Laszlo Attila Toth4a19ec52008-01-30 19:08:16 -08001717 skb->mark = sk->sk_mark;
Patrick McHardya2c20642006-01-08 22:37:26 -08001718
Changli Gaod8d1f302010-06-10 23:31:35 -07001719 skb_dst_set(skb, dst_clone(&rt->dst));
Neil Hormanedf391f2009-04-27 02:45:02 -07001720 IP6_UPD_PO_STATS(net, rt->rt6i_idev, IPSTATS_MIB_OUT, skb->len);
David L Stevens14878f72007-09-16 16:52:35 -07001721 if (proto == IPPROTO_ICMPV6) {
Eric Dumazetadf30902009-06-02 05:19:30 +00001722 struct inet6_dev *idev = ip6_dst_idev(skb_dst(skb));
David L Stevens14878f72007-09-16 16:52:35 -07001723
Hannes Frederic Sowa43a43b62014-03-31 20:14:10 +02001724 ICMP6MSGOUT_INC_STATS(net, idev, icmp6_hdr(skb)->icmp6_type);
1725 ICMP6_INC_STATS(net, idev, ICMP6_MIB_OUTMSGS);
David L Stevens14878f72007-09-16 16:52:35 -07001726 }
1727
Vlad Yasevich64223982015-01-31 10:40:15 -05001728 ip6_cork_release(cork, v6_cork);
1729out:
1730 return skb;
1731}
1732
1733int ip6_send_skb(struct sk_buff *skb)
1734{
1735 struct net *net = sock_net(skb->sk);
1736 struct rt6_info *rt = (struct rt6_info *)skb_dst(skb);
1737 int err;
1738
Eric W. Biederman33224b12015-10-07 16:48:46 -05001739 err = ip6_local_out(net, skb->sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 if (err) {
1741 if (err > 0)
Eric Dumazet6ce9e7b2009-09-02 18:05:33 -07001742 err = net_xmit_errno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 if (err)
Vlad Yasevich64223982015-01-31 10:40:15 -05001744 IP6_INC_STATS(net, rt->rt6i_idev,
1745 IPSTATS_MIB_OUTDISCARDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 }
1747
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 return err;
Vlad Yasevich64223982015-01-31 10:40:15 -05001749}
1750
1751int ip6_push_pending_frames(struct sock *sk)
1752{
1753 struct sk_buff *skb;
1754
1755 skb = ip6_finish_skb(sk);
1756 if (!skb)
1757 return 0;
1758
1759 return ip6_send_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760}
Chris Elstona495f832012-04-29 21:48:53 +00001761EXPORT_SYMBOL_GPL(ip6_push_pending_frames);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762
Vlad Yasevich0bbe84a2015-01-31 10:40:14 -05001763static void __ip6_flush_pending_frames(struct sock *sk,
Vlad Yasevich64223982015-01-31 10:40:15 -05001764 struct sk_buff_head *queue,
1765 struct inet_cork_full *cork,
1766 struct inet6_cork *v6_cork)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 struct sk_buff *skb;
1769
Vlad Yasevich0bbe84a2015-01-31 10:40:14 -05001770 while ((skb = __skb_dequeue_tail(queue)) != NULL) {
Eric Dumazetadf30902009-06-02 05:19:30 +00001771 if (skb_dst(skb))
1772 IP6_INC_STATS(sock_net(sk), ip6_dst_idev(skb_dst(skb)),
YOSHIFUJI Hideakie1f522082007-09-11 11:31:43 +02001773 IPSTATS_MIB_OUTDISCARDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 kfree_skb(skb);
1775 }
1776
Vlad Yasevich64223982015-01-31 10:40:15 -05001777 ip6_cork_release(cork, v6_cork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778}
Vlad Yasevich0bbe84a2015-01-31 10:40:14 -05001779
1780void ip6_flush_pending_frames(struct sock *sk)
1781{
Vlad Yasevich64223982015-01-31 10:40:15 -05001782 __ip6_flush_pending_frames(sk, &sk->sk_write_queue,
1783 &inet_sk(sk)->cork, &inet6_sk(sk)->cork);
Vlad Yasevich0bbe84a2015-01-31 10:40:14 -05001784}
Chris Elstona495f832012-04-29 21:48:53 +00001785EXPORT_SYMBOL_GPL(ip6_flush_pending_frames);
Vlad Yasevich64223982015-01-31 10:40:15 -05001786
1787struct sk_buff *ip6_make_skb(struct sock *sk,
1788 int getfrag(void *from, char *to, int offset,
1789 int len, int odd, struct sk_buff *skb),
1790 void *from, int length, int transhdrlen,
Wei Wang26879da2016-05-02 21:40:07 -07001791 struct ipcm6_cookie *ipc6, struct flowi6 *fl6,
Vlad Yasevich64223982015-01-31 10:40:15 -05001792 struct rt6_info *rt, unsigned int flags,
Wei Wang26879da2016-05-02 21:40:07 -07001793 const struct sockcm_cookie *sockc)
Vlad Yasevich64223982015-01-31 10:40:15 -05001794{
1795 struct inet_cork_full cork;
1796 struct inet6_cork v6_cork;
1797 struct sk_buff_head queue;
Wei Wang26879da2016-05-02 21:40:07 -07001798 int exthdrlen = (ipc6->opt ? ipc6->opt->opt_flen : 0);
Vlad Yasevich64223982015-01-31 10:40:15 -05001799 int err;
1800
1801 if (flags & MSG_PROBE)
1802 return NULL;
1803
1804 __skb_queue_head_init(&queue);
1805
1806 cork.base.flags = 0;
1807 cork.base.addr = 0;
1808 cork.base.opt = NULL;
1809 v6_cork.opt = NULL;
Wei Wang26879da2016-05-02 21:40:07 -07001810 err = ip6_setup_cork(sk, &cork, &v6_cork, ipc6, rt, fl6);
Eric Dumazetdde00c92018-01-10 03:45:49 -08001811 if (err) {
1812 ip6_cork_release(&cork, &v6_cork);
Vlad Yasevich64223982015-01-31 10:40:15 -05001813 return ERR_PTR(err);
Eric Dumazetdde00c92018-01-10 03:45:49 -08001814 }
Wei Wang26879da2016-05-02 21:40:07 -07001815 if (ipc6->dontfrag < 0)
1816 ipc6->dontfrag = inet6_sk(sk)->dontfrag;
Vlad Yasevich64223982015-01-31 10:40:15 -05001817
1818 err = __ip6_append_data(sk, fl6, &queue, &cork.base, &v6_cork,
1819 &current->task_frag, getfrag, from,
1820 length + exthdrlen, transhdrlen + exthdrlen,
Wei Wang26879da2016-05-02 21:40:07 -07001821 flags, ipc6, sockc);
Vlad Yasevich64223982015-01-31 10:40:15 -05001822 if (err) {
1823 __ip6_flush_pending_frames(sk, &queue, &cork, &v6_cork);
1824 return ERR_PTR(err);
1825 }
1826
1827 return __ip6_make_skb(sk, &queue, &cork, &v6_cork);
1828}