blob: 12d0166a64cd82182fa85b1d9c08a833efd832e9 [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
42#include <linux/netfilter.h>
43#include <linux/netfilter_ipv6.h>
44
45#include <net/sock.h>
46#include <net/snmp.h>
47
48#include <net/ipv6.h>
49#include <net/ndisc.h>
50#include <net/protocol.h>
51#include <net/ip6_route.h>
52#include <net/addrconf.h>
53#include <net/rawv6.h>
54#include <net/icmp.h>
55#include <net/xfrm.h>
56#include <net/checksum.h>
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +090057#include <linux/mroute6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
David Miller7026b1d2015-04-05 22:19:04 -040059static int ip6_finish_output2(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070060{
Eric Dumazetadf30902009-06-02 05:19:30 +000061 struct dst_entry *dst = skb_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 struct net_device *dev = dst->dev;
Eric W. Biederman78126c42015-09-15 20:04:09 -050063 struct net *net = dev_net(dev);
David S. Millerf6b72b62011-07-14 07:53:20 -070064 struct neighbour *neigh;
YOSHIFUJI Hideaki / 吉藤英明6fd6ce22013-01-17 12:54:00 +000065 struct in6_addr *nexthop;
66 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
68 skb->protocol = htons(ETH_P_IPV6);
69 skb->dev = dev;
70
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -070071 if (ipv6_addr_is_multicast(&ipv6_hdr(skb)->daddr)) {
Eric Dumazetadf30902009-06-02 05:19:30 +000072 struct inet6_dev *idev = ip6_dst_idev(skb_dst(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
David Miller7026b1d2015-04-05 22:19:04 -040074 if (!(dev->flags & IFF_LOOPBACK) && sk_mc_loop(sk) &&
Eric W. Biederman78126c42015-09-15 20:04:09 -050075 ((mroute6_socket(net, skb) &&
Benjamin Therybd91b8b2008-12-10 16:07:08 -080076 !(IP6CB(skb)->flags & IP6SKB_FORWARDED)) ||
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +090077 ipv6_chk_mcast_addr(dev, &ipv6_hdr(skb)->daddr,
78 &ipv6_hdr(skb)->saddr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 struct sk_buff *newskb = skb_clone(skb, GFP_ATOMIC);
80
81 /* Do not check for IFF_ALLMULTI; multicast routing
82 is not supported in any case.
83 */
84 if (newskb)
Jan Engelhardtb2e0b382010-03-23 04:09:07 +010085 NF_HOOK(NFPROTO_IPV6, NF_INET_POST_ROUTING,
David Miller7026b1d2015-04-05 22:19:04 -040086 sk, newskb, NULL, newskb->dev,
Michel Machado95603e22012-06-12 10:16:35 +000087 dev_loopback_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -070089 if (ipv6_hdr(skb)->hop_limit == 0) {
Eric W. Biederman78126c42015-09-15 20:04:09 -050090 IP6_INC_STATS(net, idev,
Denis V. Lunev3bd653c2008-10-08 10:54:51 -070091 IPSTATS_MIB_OUTDISCARDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 kfree_skb(skb);
93 return 0;
94 }
95 }
96
Eric W. Biederman78126c42015-09-15 20:04:09 -050097 IP6_UPD_PO_STATS(net, idev, IPSTATS_MIB_OUTMCAST, skb->len);
Hannes Frederic Sowadd408512013-02-10 02:33:35 +000098
99 if (IPV6_ADDR_MC_SCOPE(&ipv6_hdr(skb)->daddr) <=
100 IPV6_ADDR_SCOPE_NODELOCAL &&
101 !(dev->flags & IFF_LOOPBACK)) {
102 kfree_skb(skb);
103 return 0;
104 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 }
106
YOSHIFUJI Hideaki / 吉藤英明6fd6ce22013-01-17 12:54:00 +0000107 rcu_read_lock_bh();
Martin KaFai Lau2647a9b2015-05-22 20:55:58 -0700108 nexthop = rt6_nexthop((struct rt6_info *)dst, &ipv6_hdr(skb)->daddr);
YOSHIFUJI Hideaki / 吉藤英明6fd6ce22013-01-17 12:54:00 +0000109 neigh = __ipv6_neigh_lookup_noref(dst->dev, nexthop);
110 if (unlikely(!neigh))
111 neigh = __neigh_create(&nd_tbl, nexthop, dst->dev, false);
112 if (!IS_ERR(neigh)) {
113 ret = dst_neigh_output(dst, neigh, skb);
114 rcu_read_unlock_bh();
115 return ret;
116 }
117 rcu_read_unlock_bh();
David S. Miller05e3aa02011-07-16 17:26:00 -0700118
Eric W. Biederman78126c42015-09-15 20:04:09 -0500119 IP6_INC_STATS(net, ip6_dst_idev(dst), IPSTATS_MIB_OUTNOROUTES);
Jan Engelhardt9e508492010-04-13 15:28:11 +0200120 kfree_skb(skb);
121 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122}
123
David Miller7026b1d2015-04-05 22:19:04 -0400124static int ip6_finish_output(struct sock *sk, struct sk_buff *skb)
Jan Engelhardt9e508492010-04-13 15:28:11 +0200125{
126 if ((skb->len > ip6_skb_dst_mtu(skb) && !skb_is_gso(skb)) ||
Jiri Pirko9037c352013-11-06 17:52:19 +0100127 dst_allfrag(skb_dst(skb)) ||
128 (IP6CB(skb)->frag_max_size && skb->len > IP6CB(skb)->frag_max_size))
David Miller7026b1d2015-04-05 22:19:04 -0400129 return ip6_fragment(sk, skb, ip6_finish_output2);
Jan Engelhardt9e508492010-04-13 15:28:11 +0200130 else
David Miller7026b1d2015-04-05 22:19:04 -0400131 return ip6_finish_output2(sk, skb);
Jan Engelhardt9e508492010-04-13 15:28:11 +0200132}
133
Eric Dumazetaad88722014-04-15 13:47:15 -0400134int ip6_output(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
Jan Engelhardt9e508492010-04-13 15:28:11 +0200136 struct net_device *dev = skb_dst(skb)->dev;
Eric Dumazetadf30902009-06-02 05:19:30 +0000137 struct inet6_dev *idev = ip6_dst_idev(skb_dst(skb));
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +0900138 if (unlikely(idev->cnf.disable_ipv6)) {
Jan Engelhardt9e508492010-04-13 15:28:11 +0200139 IP6_INC_STATS(dev_net(dev), idev,
Denis V. Lunev3bd653c2008-10-08 10:54:51 -0700140 IPSTATS_MIB_OUTDISCARDS);
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +0900141 kfree_skb(skb);
142 return 0;
143 }
144
David Miller7026b1d2015-04-05 22:19:04 -0400145 return NF_HOOK_COND(NFPROTO_IPV6, NF_INET_POST_ROUTING, sk, skb,
146 NULL, dev,
Jan Engelhardt9c6eb282010-04-13 15:32:16 +0200147 ip6_finish_output,
148 !(IP6CB(skb)->flags & IP6SKB_REROUTED));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149}
150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151/*
Shan Weib5d43992010-04-15 16:48:48 +0000152 * xmit an sk_buff (used by TCP, SCTP and DCCP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 */
154
David S. Miller4c9483b2011-03-12 16:22:43 -0500155int ip6_xmit(struct sock *sk, struct sk_buff *skb, struct flowi6 *fl6,
Eric Dumazetb903d322011-10-27 00:44:35 -0400156 struct ipv6_txoptions *opt, int tclass)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157{
Denis V. Lunev3bd653c2008-10-08 10:54:51 -0700158 struct net *net = sock_net(sk);
Patrick McHardyb30bd282006-03-23 01:17:25 -0800159 struct ipv6_pinfo *np = inet6_sk(sk);
David S. Miller4c9483b2011-03-12 16:22:43 -0500160 struct in6_addr *first_hop = &fl6->daddr;
Eric Dumazetadf30902009-06-02 05:19:30 +0000161 struct dst_entry *dst = skb_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 struct ipv6hdr *hdr;
David S. Miller4c9483b2011-03-12 16:22:43 -0500163 u8 proto = fl6->flowi6_proto;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 int seg_len = skb->len;
Gerrit Renkere651f032009-08-09 08:12:48 +0000165 int hlimit = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 u32 mtu;
167
168 if (opt) {
Chuck Leverc2636b42007-10-23 21:07:32 -0700169 unsigned int head_room;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
171 /* First: exthdrs may take lots of space (~8K for now)
172 MAX_HEADER is not enough.
173 */
174 head_room = opt->opt_nflen + opt->opt_flen;
175 seg_len += head_room;
176 head_room += sizeof(struct ipv6hdr) + LL_RESERVED_SPACE(dst->dev);
177
178 if (skb_headroom(skb) < head_room) {
179 struct sk_buff *skb2 = skb_realloc_headroom(skb, head_room);
Ian Morris63159f22015-03-29 14:00:04 +0100180 if (!skb2) {
Eric Dumazetadf30902009-06-02 05:19:30 +0000181 IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)),
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900182 IPSTATS_MIB_OUTDISCARDS);
183 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 return -ENOBUFS;
185 }
Eric Dumazet808db802012-04-24 10:17:59 +0000186 consume_skb(skb);
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900187 skb = skb2;
Dan Carpenter83d7eb22010-04-30 16:42:08 -0700188 skb_set_owner_w(skb, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 }
190 if (opt->opt_flen)
191 ipv6_push_frag_opts(skb, opt, &proto);
192 if (opt->opt_nflen)
193 ipv6_push_nfrag_opts(skb, opt, &proto, &first_hop);
194 }
195
Arnaldo Carvalho de Meloe2d1bca2007-04-10 20:46:21 -0700196 skb_push(skb, sizeof(struct ipv6hdr));
197 skb_reset_network_header(skb);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700198 hdr = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
200 /*
201 * Fill in the IPv6 header
202 */
Eric Dumazetb903d322011-10-27 00:44:35 -0400203 if (np)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 hlimit = np->hop_limit;
205 if (hlimit < 0)
YOSHIFUJI Hideaki6b75d092008-03-10 06:00:30 -0400206 hlimit = ip6_dst_hoplimit(dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
Tom Herbertcb1ce2e2014-07-01 21:33:10 -0700208 ip6_flow_hdr(hdr, tclass, ip6_make_flowlabel(net, skb, fl6->flowlabel,
Tom Herbert67800f92015-07-31 16:52:11 -0700209 np->autoflowlabel, fl6));
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 hdr->payload_len = htons(seg_len);
212 hdr->nexthdr = proto;
213 hdr->hop_limit = hlimit;
214
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000215 hdr->saddr = fl6->saddr;
216 hdr->daddr = *first_hop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Hannes Frederic Sowa9c9c9ad2013-08-26 12:31:23 +0200218 skb->protocol = htons(ETH_P_IPV6);
Patrick McHardya2c20642006-01-08 22:37:26 -0800219 skb->priority = sk->sk_priority;
Laszlo Attila Toth4a19ec52008-01-30 19:08:16 -0800220 skb->mark = sk->sk_mark;
Patrick McHardya2c20642006-01-08 22:37:26 -0800221
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 mtu = dst_mtu(dst);
WANG Cong60ff7462014-05-04 16:39:18 -0700223 if ((skb->len <= mtu) || skb->ignore_df || skb_is_gso(skb)) {
Eric Dumazetadf30902009-06-02 05:19:30 +0000224 IP6_UPD_PO_STATS(net, ip6_dst_idev(skb_dst(skb)),
Neil Hormanedf391f2009-04-27 02:45:02 -0700225 IPSTATS_MIB_OUT, skb->len);
David Miller7026b1d2015-04-05 22:19:04 -0400226 return NF_HOOK(NFPROTO_IPV6, NF_INET_LOCAL_OUT, sk, skb,
Eric W. Biederman5a706492015-09-15 20:03:53 -0500227 NULL, dst->dev, dst_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 }
229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 skb->dev = dst->dev;
Steffen Klassertf4e53e22013-02-05 01:48:05 +0000231 ipv6_local_error(sk, EMSGSIZE, fl6, mtu);
Eric Dumazetadf30902009-06-02 05:19:30 +0000232 IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)), IPSTATS_MIB_FRAGFAILS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 kfree_skb(skb);
234 return -EMSGSIZE;
235}
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +0900236EXPORT_SYMBOL(ip6_xmit);
237
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238static int ip6_call_ra_chain(struct sk_buff *skb, int sel)
239{
240 struct ip6_ra_chain *ra;
241 struct sock *last = NULL;
242
243 read_lock(&ip6_ra_lock);
244 for (ra = ip6_ra_chain; ra; ra = ra->next) {
245 struct sock *sk = ra->sk;
Andrew McDonald0bd1b592005-08-09 19:44:42 -0700246 if (sk && ra->sel == sel &&
247 (!sk->sk_bound_dev_if ||
248 sk->sk_bound_dev_if == skb->dev->ifindex)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 if (last) {
250 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
251 if (skb2)
252 rawv6_rcv(last, skb2);
253 }
254 last = sk;
255 }
256 }
257
258 if (last) {
259 rawv6_rcv(last, skb);
260 read_unlock(&ip6_ra_lock);
261 return 1;
262 }
263 read_unlock(&ip6_ra_lock);
264 return 0;
265}
266
Ville Nuorvalae21e0b52006-09-22 14:41:44 -0700267static int ip6_forward_proxy_check(struct sk_buff *skb)
268{
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700269 struct ipv6hdr *hdr = ipv6_hdr(skb);
Ville Nuorvalae21e0b52006-09-22 14:41:44 -0700270 u8 nexthdr = hdr->nexthdr;
Jesse Gross75f28112011-11-30 17:05:51 -0800271 __be16 frag_off;
Ville Nuorvalae21e0b52006-09-22 14:41:44 -0700272 int offset;
273
274 if (ipv6_ext_hdr(nexthdr)) {
Jesse Gross75f28112011-11-30 17:05:51 -0800275 offset = ipv6_skip_exthdr(skb, sizeof(*hdr), &nexthdr, &frag_off);
Ville Nuorvalae21e0b52006-09-22 14:41:44 -0700276 if (offset < 0)
277 return 0;
278 } else
279 offset = sizeof(struct ipv6hdr);
280
281 if (nexthdr == IPPROTO_ICMPV6) {
282 struct icmp6hdr *icmp6;
283
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700284 if (!pskb_may_pull(skb, (skb_network_header(skb) +
285 offset + 1 - skb->data)))
Ville Nuorvalae21e0b52006-09-22 14:41:44 -0700286 return 0;
287
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700288 icmp6 = (struct icmp6hdr *)(skb_network_header(skb) + offset);
Ville Nuorvalae21e0b52006-09-22 14:41:44 -0700289
290 switch (icmp6->icmp6_type) {
291 case NDISC_ROUTER_SOLICITATION:
292 case NDISC_ROUTER_ADVERTISEMENT:
293 case NDISC_NEIGHBOUR_SOLICITATION:
294 case NDISC_NEIGHBOUR_ADVERTISEMENT:
295 case NDISC_REDIRECT:
296 /* For reaction involving unicast neighbor discovery
297 * message destined to the proxied address, pass it to
298 * input function.
299 */
300 return 1;
301 default:
302 break;
303 }
304 }
305
Ville Nuorvala74553b02006-09-22 14:42:18 -0700306 /*
307 * The proxying router can't forward traffic sent to a link-local
308 * address, so signal the sender and discard the packet. This
309 * behavior is clarified by the MIPv6 specification.
310 */
311 if (ipv6_addr_type(&hdr->daddr) & IPV6_ADDR_LINKLOCAL) {
312 dst_link_failure(skb);
313 return -1;
314 }
315
Ville Nuorvalae21e0b52006-09-22 14:41:44 -0700316 return 0;
317}
318
David Miller7026b1d2015-04-05 22:19:04 -0400319static inline int ip6_forward_finish(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320{
Eric Dumazetc29390c2015-03-11 18:42:02 -0700321 skb_sender_cpu_clear(skb);
Eric W. Biederman5a706492015-09-15 20:03:53 -0500322 return dst_output(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323}
324
Hannes Frederic Sowa0954cf92014-01-09 10:01:16 +0100325static unsigned int ip6_dst_mtu_forward(const struct dst_entry *dst)
326{
327 unsigned int mtu;
328 struct inet6_dev *idev;
329
330 if (dst_metric_locked(dst, RTAX_MTU)) {
331 mtu = dst_metric_raw(dst, RTAX_MTU);
332 if (mtu)
333 return mtu;
334 }
335
336 mtu = IPV6_MIN_MTU;
337 rcu_read_lock();
338 idev = __in6_dev_get(dst->dev);
339 if (idev)
340 mtu = idev->cnf.mtu6;
341 rcu_read_unlock();
342
343 return mtu;
344}
345
Florian Westphalfe6cc552014-02-13 23:09:12 +0100346static bool ip6_pkt_too_big(const struct sk_buff *skb, unsigned int mtu)
347{
Florian Westphal418a3152014-05-05 00:03:34 +0200348 if (skb->len <= mtu)
Florian Westphalfe6cc552014-02-13 23:09:12 +0100349 return false;
350
WANG Cong60ff7462014-05-04 16:39:18 -0700351 /* ipv6 conntrack defrag sets max_frag_size + ignore_df */
Florian Westphalfe6cc552014-02-13 23:09:12 +0100352 if (IP6CB(skb)->frag_max_size && IP6CB(skb)->frag_max_size > mtu)
353 return true;
354
WANG Cong60ff7462014-05-04 16:39:18 -0700355 if (skb->ignore_df)
Florian Westphal418a3152014-05-05 00:03:34 +0200356 return false;
357
Florian Westphalfe6cc552014-02-13 23:09:12 +0100358 if (skb_is_gso(skb) && skb_gso_network_seglen(skb) <= mtu)
359 return false;
360
361 return true;
362}
363
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364int ip6_forward(struct sk_buff *skb)
365{
Eric Dumazetadf30902009-06-02 05:19:30 +0000366 struct dst_entry *dst = skb_dst(skb);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700367 struct ipv6hdr *hdr = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 struct inet6_skb_parm *opt = IP6CB(skb);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900369 struct net *net = dev_net(dst->dev);
Ulrich Weber14f3ad62010-02-26 04:34:49 -0800370 u32 mtu;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900371
YOSHIFUJI Hideaki53b79972008-07-19 22:35:03 -0700372 if (net->ipv6.devconf_all->forwarding == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 goto error;
374
Li RongQing090f1162014-03-11 10:40:08 +0800375 if (skb->pkt_type != PACKET_HOST)
376 goto drop;
377
Ben Hutchings4497b072008-06-19 16:22:28 -0700378 if (skb_warn_if_lro(skb))
379 goto drop;
380
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 if (!xfrm6_policy_check(NULL, XFRM_POLICY_FWD, skb)) {
Eric Dumazet15c77d82013-12-05 21:38:06 -0800382 IP6_INC_STATS_BH(net, ip6_dst_idev(dst),
383 IPSTATS_MIB_INDISCARDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 goto drop;
385 }
386
Herbert Xu35fc92a2007-03-26 23:22:20 -0700387 skb_forward_csum(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
389 /*
390 * We DO NOT make any processing on
391 * RA packets, pushing them to user level AS IS
392 * without ane WARRANTY that application will be able
393 * to interpret them. The reason is that we
394 * cannot make anything clever here.
395 *
396 * We are not end-node, so that if packet contains
397 * AH/ESP, we cannot make anything.
398 * Defragmentation also would be mistake, RA packets
399 * cannot be fragmented, because there is no warranty
400 * that different fragments will go along one path. --ANK
401 */
YOSHIFUJI Hideaki / 吉藤英明ab4eb352013-06-22 11:13:13 +0900402 if (unlikely(opt->flags & IP6SKB_ROUTERALERT)) {
403 if (ip6_call_ra_chain(skb, ntohs(opt->ra)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 return 0;
405 }
406
407 /*
408 * check and decrement ttl
409 */
410 if (hdr->hop_limit <= 1) {
411 /* Force OUTPUT device used as source address */
412 skb->dev = dst->dev;
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +0000413 icmpv6_send(skb, ICMPV6_TIME_EXCEED, ICMPV6_EXC_HOPLIMIT, 0);
Eric Dumazet15c77d82013-12-05 21:38:06 -0800414 IP6_INC_STATS_BH(net, ip6_dst_idev(dst),
415 IPSTATS_MIB_INHDRERRORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
417 kfree_skb(skb);
418 return -ETIMEDOUT;
419 }
420
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -0700421 /* XXX: idev->cnf.proxy_ndp? */
YOSHIFUJI Hideaki53b79972008-07-19 22:35:03 -0700422 if (net->ipv6.devconf_all->proxy_ndp &&
Daniel Lezcano8a3edd82008-03-07 11:14:16 -0800423 pneigh_lookup(&nd_tbl, net, &hdr->daddr, skb->dev, 0)) {
Ville Nuorvala74553b02006-09-22 14:42:18 -0700424 int proxied = ip6_forward_proxy_check(skb);
425 if (proxied > 0)
Ville Nuorvalae21e0b52006-09-22 14:41:44 -0700426 return ip6_input(skb);
Ville Nuorvala74553b02006-09-22 14:42:18 -0700427 else if (proxied < 0) {
Eric Dumazet15c77d82013-12-05 21:38:06 -0800428 IP6_INC_STATS_BH(net, ip6_dst_idev(dst),
429 IPSTATS_MIB_INDISCARDS);
Ville Nuorvala74553b02006-09-22 14:42:18 -0700430 goto drop;
431 }
Ville Nuorvalae21e0b52006-09-22 14:41:44 -0700432 }
433
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 if (!xfrm6_route_forward(skb)) {
Eric Dumazet15c77d82013-12-05 21:38:06 -0800435 IP6_INC_STATS_BH(net, ip6_dst_idev(dst),
436 IPSTATS_MIB_INDISCARDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 goto drop;
438 }
Eric Dumazetadf30902009-06-02 05:19:30 +0000439 dst = skb_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
441 /* IPv6 specs say nothing about it, but it is clear that we cannot
442 send redirects to source routed frames.
Masahide NAKAMURA1e5dc142007-08-24 19:08:55 +0900443 We don't send redirects to frames decapsulated from IPsec.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 */
David S. Millerc45a3df2012-01-27 15:32:19 -0800445 if (skb->dev == dst->dev && opt->srcrt == 0 && !skb_sec_path(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 struct in6_addr *target = NULL;
David S. Millerfbfe95a2012-06-08 23:24:18 -0700447 struct inet_peer *peer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 struct rt6_info *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
450 /*
451 * incoming and outgoing devices are the same
452 * send a redirect.
453 */
454
455 rt = (struct rt6_info *) dst;
David S. Millerc45a3df2012-01-27 15:32:19 -0800456 if (rt->rt6i_flags & RTF_GATEWAY)
457 target = &rt->rt6i_gateway;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 else
459 target = &hdr->daddr;
460
Martin KaFai Laufd0273d2015-05-22 20:55:57 -0700461 peer = inet_getpeer_v6(net->ipv6.peers, &hdr->daddr, 1);
David S. Miller92d86822011-02-04 15:55:25 -0800462
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 /* Limit redirects both by destination (here)
464 and by source (inside ndisc_send_redirect)
465 */
David S. Millerfbfe95a2012-06-08 23:24:18 -0700466 if (inet_peer_xrlim_allow(peer, 1*HZ))
David S. Miller49919692012-01-27 15:30:48 -0800467 ndisc_send_redirect(skb, target);
David S. Miller1d861aa2012-07-10 03:58:16 -0700468 if (peer)
469 inet_putpeer(peer);
David L Stevens5bb1ab02007-05-09 13:53:44 -0700470 } else {
471 int addrtype = ipv6_addr_type(&hdr->saddr);
472
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 /* This check is security critical. */
YOSHIFUJI Hideakif81b2e72008-06-25 16:55:26 +0900474 if (addrtype == IPV6_ADDR_ANY ||
475 addrtype & (IPV6_ADDR_MULTICAST | IPV6_ADDR_LOOPBACK))
David L Stevens5bb1ab02007-05-09 13:53:44 -0700476 goto error;
477 if (addrtype & IPV6_ADDR_LINKLOCAL) {
478 icmpv6_send(skb, ICMPV6_DEST_UNREACH,
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +0000479 ICMPV6_NOT_NEIGHBOUR, 0);
David L Stevens5bb1ab02007-05-09 13:53:44 -0700480 goto error;
481 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 }
483
Hannes Frederic Sowa0954cf92014-01-09 10:01:16 +0100484 mtu = ip6_dst_mtu_forward(dst);
Ulrich Weber14f3ad62010-02-26 04:34:49 -0800485 if (mtu < IPV6_MIN_MTU)
486 mtu = IPV6_MIN_MTU;
487
Florian Westphalfe6cc552014-02-13 23:09:12 +0100488 if (ip6_pkt_too_big(skb, mtu)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 /* Again, force OUTPUT device used as source address */
490 skb->dev = dst->dev;
Ulrich Weber14f3ad62010-02-26 04:34:49 -0800491 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
Eric Dumazet15c77d82013-12-05 21:38:06 -0800492 IP6_INC_STATS_BH(net, ip6_dst_idev(dst),
493 IPSTATS_MIB_INTOOBIGERRORS);
494 IP6_INC_STATS_BH(net, ip6_dst_idev(dst),
495 IPSTATS_MIB_FRAGFAILS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 kfree_skb(skb);
497 return -EMSGSIZE;
498 }
499
500 if (skb_cow(skb, dst->dev->hard_header_len)) {
Eric Dumazet15c77d82013-12-05 21:38:06 -0800501 IP6_INC_STATS_BH(net, ip6_dst_idev(dst),
502 IPSTATS_MIB_OUTDISCARDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 goto drop;
504 }
505
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700506 hdr = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
508 /* Mangling hops number delayed to point after skb COW */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900509
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 hdr->hop_limit--;
511
Denis V. Lunev483a47d2008-10-08 11:09:27 -0700512 IP6_INC_STATS_BH(net, ip6_dst_idev(dst), IPSTATS_MIB_OUTFORWDATAGRAMS);
Vincent Bernat2d8dbb02012-06-05 03:41:42 +0000513 IP6_ADD_STATS_BH(net, ip6_dst_idev(dst), IPSTATS_MIB_OUTOCTETS, skb->len);
David Miller7026b1d2015-04-05 22:19:04 -0400514 return NF_HOOK(NFPROTO_IPV6, NF_INET_FORWARD, NULL, skb,
515 skb->dev, dst->dev,
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800516 ip6_forward_finish);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
518error:
Denis V. Lunev483a47d2008-10-08 11:09:27 -0700519 IP6_INC_STATS_BH(net, ip6_dst_idev(dst), IPSTATS_MIB_INADDRERRORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520drop:
521 kfree_skb(skb);
522 return -EINVAL;
523}
524
525static void ip6_copy_metadata(struct sk_buff *to, struct sk_buff *from)
526{
527 to->pkt_type = from->pkt_type;
528 to->priority = from->priority;
529 to->protocol = from->protocol;
Eric Dumazetadf30902009-06-02 05:19:30 +0000530 skb_dst_drop(to);
531 skb_dst_set(to, dst_clone(skb_dst(from)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 to->dev = from->dev;
Thomas Graf82e91ff2006-11-09 15:19:14 -0800533 to->mark = from->mark;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
535#ifdef CONFIG_NET_SCHED
536 to->tc_index = from->tc_index;
537#endif
Yasuyuki Kozakaie7ac05f2007-03-14 16:44:01 -0700538 nf_copy(to, from);
James Morris984bc162006-06-09 00:29:17 -0700539 skb_copy_secmark(to, from);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540}
541
David Miller7026b1d2015-04-05 22:19:04 -0400542int ip6_fragment(struct sock *sk, struct sk_buff *skb,
543 int (*output)(struct sock *, struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 struct sk_buff *frag;
Ian Morris67ba4152014-08-24 21:53:10 +0100546 struct rt6_info *rt = (struct rt6_info *)skb_dst(skb);
hannes@stressinduktion.orgf60e5992015-04-01 17:07:44 +0200547 struct ipv6_pinfo *np = skb->sk && !dev_recursion_level() ?
548 inet6_sk(skb->sk) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 struct ipv6hdr *tmp_hdr;
550 struct frag_hdr *fh;
551 unsigned int mtu, hlen, left, len;
Herbert Xua7ae1992011-11-18 02:20:04 +0000552 int hroom, troom;
Martin KaFai Lau286c2342015-05-22 20:55:56 -0700553 __be32 frag_id;
Ian Morris67ba4152014-08-24 21:53:10 +0100554 int ptr, offset = 0, err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 u8 *prevhdr, nexthdr = 0;
Eric Dumazetadf30902009-06-02 05:19:30 +0000556 struct net *net = dev_net(skb_dst(skb)->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 hlen = ip6_find_1stfragopt(skb, &prevhdr);
559 nexthdr = *prevhdr;
560
John Heffner628a5c52007-04-20 15:53:27 -0700561 mtu = ip6_skb_dst_mtu(skb);
John Heffnerb881ef72007-04-20 15:52:39 -0700562
563 /* We must not fragment if the socket is set to force MTU discovery
Ulrich Weber14f3ad62010-02-26 04:34:49 -0800564 * or if the skb it not generated by a local socket.
John Heffnerb881ef72007-04-20 15:52:39 -0700565 */
Florian Westphal485fca62015-05-22 00:44:16 +0200566 if (unlikely(!skb->ignore_df && skb->len > mtu))
567 goto fail_toobig;
Eric Dumazeta34a1012012-05-18 21:51:44 +0000568
Florian Westphal485fca62015-05-22 00:44:16 +0200569 if (IP6CB(skb)->frag_max_size) {
570 if (IP6CB(skb)->frag_max_size > mtu)
571 goto fail_toobig;
572
573 /* don't send fragments larger than what we received */
574 mtu = IP6CB(skb)->frag_max_size;
575 if (mtu < IPV6_MIN_MTU)
576 mtu = IPV6_MIN_MTU;
John Heffnerb881ef72007-04-20 15:52:39 -0700577 }
578
YOSHIFUJI Hideakid91675f2006-02-24 13:18:33 -0800579 if (np && np->frag_size < mtu) {
580 if (np->frag_size)
581 mtu = np->frag_size;
582 }
583 mtu -= hlen + sizeof(struct frag_hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
Martin KaFai Laufd0273d2015-05-22 20:55:57 -0700585 frag_id = ipv6_select_ident(net, &ipv6_hdr(skb)->daddr,
586 &ipv6_hdr(skb)->saddr);
Martin KaFai Lau286c2342015-05-22 20:55:56 -0700587
David S. Miller21dc3302010-08-23 00:13:46 -0700588 if (skb_has_frag_list(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 int first_len = skb_pagelen(skb);
Eric Dumazet3d130082010-09-21 08:47:45 +0000590 struct sk_buff *frag2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
592 if (first_len - hlen > mtu ||
593 ((first_len - hlen) & 7) ||
594 skb_cloned(skb))
595 goto slow_path;
596
David S. Miller4d9092b2009-06-09 00:20:05 -0700597 skb_walk_frags(skb, frag) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 /* Correct geometry. */
599 if (frag->len > mtu ||
600 ((frag->len & 7) && frag->next) ||
601 skb_headroom(frag) < hlen)
Eric Dumazet3d130082010-09-21 08:47:45 +0000602 goto slow_path_clean;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 /* Partially cloned skb? */
605 if (skb_shared(frag))
Eric Dumazet3d130082010-09-21 08:47:45 +0000606 goto slow_path_clean;
Herbert Xu2fdba6b2005-05-18 22:52:33 -0700607
608 BUG_ON(frag->sk);
609 if (skb->sk) {
Herbert Xu2fdba6b2005-05-18 22:52:33 -0700610 frag->sk = skb->sk;
611 frag->destructor = sock_wfree;
Herbert Xu2fdba6b2005-05-18 22:52:33 -0700612 }
Eric Dumazet3d130082010-09-21 08:47:45 +0000613 skb->truesize -= frag->truesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 }
615
616 err = 0;
617 offset = 0;
618 frag = skb_shinfo(skb)->frag_list;
David S. Miller4d9092b2009-06-09 00:20:05 -0700619 skb_frag_list_init(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 /* BUILD HEADER */
621
YOSHIFUJI Hideaki9a217a12006-12-05 13:47:21 -0800622 *prevhdr = NEXTHDR_FRAGMENT;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700623 tmp_hdr = kmemdup(skb_network_header(skb), hlen, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 if (!tmp_hdr) {
Eric Dumazetadf30902009-06-02 05:19:30 +0000625 IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)),
Denis V. Lunev3bd653c2008-10-08 10:54:51 -0700626 IPSTATS_MIB_FRAGFAILS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 return -ENOMEM;
628 }
629
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 __skb_pull(skb, hlen);
Ian Morris67ba4152014-08-24 21:53:10 +0100631 fh = (struct frag_hdr *)__skb_push(skb, sizeof(struct frag_hdr));
Arnaldo Carvalho de Meloe2d1bca2007-04-10 20:46:21 -0700632 __skb_push(skb, hlen);
633 skb_reset_network_header(skb);
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700634 memcpy(skb_network_header(skb), tmp_hdr, hlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 fh->nexthdr = nexthdr;
637 fh->reserved = 0;
638 fh->frag_off = htons(IP6_MF);
Martin KaFai Lau286c2342015-05-22 20:55:56 -0700639 fh->identification = frag_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
641 first_len = skb_pagelen(skb);
642 skb->data_len = first_len - skb_headlen(skb);
643 skb->len = first_len;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700644 ipv6_hdr(skb)->payload_len = htons(first_len -
645 sizeof(struct ipv6hdr));
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900646
Changli Gaod8d1f302010-06-10 23:31:35 -0700647 dst_hold(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
649 for (;;) {
650 /* Prepare header of the next frame,
651 * before previous one went down. */
652 if (frag) {
653 frag->ip_summed = CHECKSUM_NONE;
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -0300654 skb_reset_transport_header(frag);
Ian Morris67ba4152014-08-24 21:53:10 +0100655 fh = (struct frag_hdr *)__skb_push(frag, sizeof(struct frag_hdr));
Arnaldo Carvalho de Meloe2d1bca2007-04-10 20:46:21 -0700656 __skb_push(frag, hlen);
657 skb_reset_network_header(frag);
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700658 memcpy(skb_network_header(frag), tmp_hdr,
659 hlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 offset += skb->len - hlen - sizeof(struct frag_hdr);
661 fh->nexthdr = nexthdr;
662 fh->reserved = 0;
663 fh->frag_off = htons(offset);
Ian Morris53b24b82015-03-29 14:00:05 +0100664 if (frag->next)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 fh->frag_off |= htons(IP6_MF);
666 fh->identification = frag_id;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700667 ipv6_hdr(frag)->payload_len =
668 htons(frag->len -
669 sizeof(struct ipv6hdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 ip6_copy_metadata(frag, skb);
671 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900672
David Miller7026b1d2015-04-05 22:19:04 -0400673 err = output(sk, skb);
Ian Morris67ba4152014-08-24 21:53:10 +0100674 if (!err)
Changli Gaod8d1f302010-06-10 23:31:35 -0700675 IP6_INC_STATS(net, ip6_dst_idev(&rt->dst),
Denis V. Lunev3bd653c2008-10-08 10:54:51 -0700676 IPSTATS_MIB_FRAGCREATES);
Wei Dongdafee492006-08-02 13:41:21 -0700677
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 if (err || !frag)
679 break;
680
681 skb = frag;
682 frag = skb->next;
683 skb->next = NULL;
684 }
685
Jesper Juhla51482b2005-11-08 09:41:34 -0800686 kfree(tmp_hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
688 if (err == 0) {
Changli Gaod8d1f302010-06-10 23:31:35 -0700689 IP6_INC_STATS(net, ip6_dst_idev(&rt->dst),
Denis V. Lunev3bd653c2008-10-08 10:54:51 -0700690 IPSTATS_MIB_FRAGOKS);
Amerigo Wang94e187c2012-10-29 00:13:19 +0000691 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 return 0;
693 }
694
Florian Westphal46cfd722014-09-10 01:08:46 +0200695 kfree_skb_list(frag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Changli Gaod8d1f302010-06-10 23:31:35 -0700697 IP6_INC_STATS(net, ip6_dst_idev(&rt->dst),
Denis V. Lunev3bd653c2008-10-08 10:54:51 -0700698 IPSTATS_MIB_FRAGFAILS);
Amerigo Wang94e187c2012-10-29 00:13:19 +0000699 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 return err;
Eric Dumazet3d130082010-09-21 08:47:45 +0000701
702slow_path_clean:
703 skb_walk_frags(skb, frag2) {
704 if (frag2 == frag)
705 break;
706 frag2->sk = NULL;
707 frag2->destructor = NULL;
708 skb->truesize += frag2->truesize;
709 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 }
711
712slow_path:
Eric Dumazet72e843b2012-05-18 11:02:15 +0000713 if ((skb->ip_summed == CHECKSUM_PARTIAL) &&
714 skb_checksum_help(skb))
715 goto fail;
716
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 left = skb->len - hlen; /* Space per frame */
718 ptr = hlen; /* Where to start from */
719
720 /*
721 * Fragment the datagram.
722 */
723
724 *prevhdr = NEXTHDR_FRAGMENT;
Herbert Xua7ae1992011-11-18 02:20:04 +0000725 hroom = LL_RESERVED_SPACE(rt->dst.dev);
726 troom = rt->dst.dev->needed_tailroom;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
728 /*
729 * Keep copying data until we run out.
730 */
Ian Morris67ba4152014-08-24 21:53:10 +0100731 while (left > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 len = left;
733 /* IF: it doesn't fit, use 'mtu' - the data space left */
734 if (len > mtu)
735 len = mtu;
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300736 /* IF: we are not sending up to and including the packet end
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 then align the next start on an eight byte boundary */
738 if (len < left) {
739 len &= ~7;
740 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
Joe Perchescbffccc2014-11-05 14:39:21 -0800742 /* Allocate buffer */
743 frag = alloc_skb(len + hlen + sizeof(struct frag_hdr) +
744 hroom + troom, GFP_ATOMIC);
745 if (!frag) {
Eric Dumazetadf30902009-06-02 05:19:30 +0000746 IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)),
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900747 IPSTATS_MIB_FRAGFAILS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 err = -ENOMEM;
749 goto fail;
750 }
751
752 /*
753 * Set up data on packet
754 */
755
756 ip6_copy_metadata(frag, skb);
Herbert Xua7ae1992011-11-18 02:20:04 +0000757 skb_reserve(frag, hroom);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 skb_put(frag, len + hlen + sizeof(struct frag_hdr));
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700759 skb_reset_network_header(frag);
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -0300760 fh = (struct frag_hdr *)(skb_network_header(frag) + hlen);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700761 frag->transport_header = (frag->network_header + hlen +
762 sizeof(struct frag_hdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
764 /*
765 * Charge the memory for the fragment to any owner
766 * it might possess
767 */
768 if (skb->sk)
769 skb_set_owner_w(frag, skb->sk);
770
771 /*
772 * Copy the packet header into the new buffer.
773 */
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300774 skb_copy_from_linear_data(skb, skb_network_header(frag), hlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
776 /*
777 * Build fragment header.
778 */
779 fh->nexthdr = nexthdr;
780 fh->reserved = 0;
Martin KaFai Lau286c2342015-05-22 20:55:56 -0700781 fh->identification = frag_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
783 /*
784 * Copy a block of the IP datagram.
785 */
Himangi Saraogie3f0b862014-07-12 01:57:17 +0530786 BUG_ON(skb_copy_bits(skb, ptr, skb_transport_header(frag),
787 len));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 left -= len;
789
790 fh->frag_off = htons(offset);
791 if (left > 0)
792 fh->frag_off |= htons(IP6_MF);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700793 ipv6_hdr(frag)->payload_len = htons(frag->len -
794 sizeof(struct ipv6hdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
796 ptr += len;
797 offset += len;
798
799 /*
800 * Put this fragment into the sending queue.
801 */
David Miller7026b1d2015-04-05 22:19:04 -0400802 err = output(sk, frag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 if (err)
804 goto fail;
Wei Dongdafee492006-08-02 13:41:21 -0700805
Eric Dumazetadf30902009-06-02 05:19:30 +0000806 IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)),
Denis V. Lunev3bd653c2008-10-08 10:54:51 -0700807 IPSTATS_MIB_FRAGCREATES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 }
Eric Dumazetadf30902009-06-02 05:19:30 +0000809 IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)),
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900810 IPSTATS_MIB_FRAGOKS);
Eric Dumazet808db802012-04-24 10:17:59 +0000811 consume_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 return err;
813
Florian Westphal485fca62015-05-22 00:44:16 +0200814fail_toobig:
815 if (skb->sk && dst_allfrag(skb_dst(skb)))
816 sk_nocaps_add(skb->sk, NETIF_F_GSO_MASK);
817
818 skb->dev = skb_dst(skb)->dev;
819 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
820 err = -EMSGSIZE;
821
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822fail:
Eric Dumazetadf30902009-06-02 05:19:30 +0000823 IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)),
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900824 IPSTATS_MIB_FRAGFAILS);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900825 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 return err;
827}
828
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000829static inline int ip6_rt_check(const struct rt6key *rt_key,
830 const struct in6_addr *fl_addr,
831 const struct in6_addr *addr_cache)
YOSHIFUJI Hideakicf6b1982006-08-23 17:19:18 -0700832{
Eric Dumazeta02cec22010-09-22 20:43:57 +0000833 return (rt_key->plen != 128 || !ipv6_addr_equal(fl_addr, &rt_key->addr)) &&
Ian Morris63159f22015-03-29 14:00:04 +0100834 (!addr_cache || !ipv6_addr_equal(fl_addr, addr_cache));
YOSHIFUJI Hideakicf6b1982006-08-23 17:19:18 -0700835}
836
Herbert Xu497c6152006-07-30 20:19:33 -0700837static struct dst_entry *ip6_sk_dst_check(struct sock *sk,
838 struct dst_entry *dst,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000839 const struct flowi6 *fl6)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840{
Herbert Xu497c6152006-07-30 20:19:33 -0700841 struct ipv6_pinfo *np = inet6_sk(sk);
Eric Dumazeta963a372013-06-26 04:15:07 -0700842 struct rt6_info *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
Herbert Xu497c6152006-07-30 20:19:33 -0700844 if (!dst)
845 goto out;
846
Eric Dumazeta963a372013-06-26 04:15:07 -0700847 if (dst->ops->family != AF_INET6) {
848 dst_release(dst);
849 return NULL;
850 }
851
852 rt = (struct rt6_info *)dst;
Herbert Xu497c6152006-07-30 20:19:33 -0700853 /* Yes, checking route validity in not connected
854 * case is not very simple. Take into account,
855 * that we do not support routing by source, TOS,
Ian Morris67ba4152014-08-24 21:53:10 +0100856 * and MSG_DONTROUTE --ANK (980726)
Herbert Xu497c6152006-07-30 20:19:33 -0700857 *
YOSHIFUJI Hideakicf6b1982006-08-23 17:19:18 -0700858 * 1. ip6_rt_check(): If route was host route,
859 * check that cached destination is current.
Herbert Xu497c6152006-07-30 20:19:33 -0700860 * If it is network route, we still may
861 * check its validity using saved pointer
862 * to the last used address: daddr_cache.
863 * We do not want to save whole address now,
864 * (because main consumer of this service
865 * is tcp, which has not this problem),
866 * so that the last trick works only on connected
867 * sockets.
868 * 2. oif also should be the same.
869 */
David S. Miller4c9483b2011-03-12 16:22:43 -0500870 if (ip6_rt_check(&rt->rt6i_dst, &fl6->daddr, np->daddr_cache) ||
YOSHIFUJI Hideaki8e1ef0a2006-08-29 17:15:09 -0700871#ifdef CONFIG_IPV6_SUBTREES
David S. Miller4c9483b2011-03-12 16:22:43 -0500872 ip6_rt_check(&rt->rt6i_src, &fl6->saddr, np->saddr_cache) ||
YOSHIFUJI Hideaki8e1ef0a2006-08-29 17:15:09 -0700873#endif
David S. Miller4c9483b2011-03-12 16:22:43 -0500874 (fl6->flowi6_oif && fl6->flowi6_oif != dst->dev->ifindex)) {
Herbert Xu497c6152006-07-30 20:19:33 -0700875 dst_release(dst);
876 dst = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 }
878
Herbert Xu497c6152006-07-30 20:19:33 -0700879out:
880 return dst;
881}
882
Roopa Prabhu343d60a2015-07-30 13:34:53 -0700883static int ip6_dst_lookup_tail(struct net *net, struct sock *sk,
David S. Miller4c9483b2011-03-12 16:22:43 -0500884 struct dst_entry **dst, struct flowi6 *fl6)
Herbert Xu497c6152006-07-30 20:19:33 -0700885{
David S. Miller69cce1d2011-07-17 23:09:49 -0700886#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
887 struct neighbour *n;
David S. Miller97cac082012-07-02 22:43:47 -0700888 struct rt6_info *rt;
David S. Miller69cce1d2011-07-17 23:09:49 -0700889#endif
890 int err;
Herbert Xu497c6152006-07-30 20:19:33 -0700891
Markus Stenberge16e8882015-05-05 13:36:59 +0300892 /* The correct way to handle this would be to do
893 * ip6_route_get_saddr, and then ip6_route_output; however,
894 * the route-specific preferred source forces the
895 * ip6_route_output call _before_ ip6_route_get_saddr.
896 *
897 * In source specific routing (no src=any default route),
898 * ip6_route_output will fail given src=any saddr, though, so
899 * that's why we try it again later.
900 */
901 if (ipv6_addr_any(&fl6->saddr) && (!*dst || !(*dst)->error)) {
902 struct rt6_info *rt;
903 bool had_dst = *dst != NULL;
904
905 if (!had_dst)
906 *dst = ip6_route_output(net, sk, fl6);
907 rt = (*dst)->error ? NULL : (struct rt6_info *)*dst;
908 err = ip6_route_get_saddr(net, rt, &fl6->daddr,
909 sk ? inet6_sk(sk)->srcprefs : 0,
910 &fl6->saddr);
911 if (err)
912 goto out_err_release;
913
914 /* If we had an erroneous initial result, pretend it
915 * never existed and let the SA-enabled version take
916 * over.
917 */
918 if (!had_dst && (*dst)->error) {
919 dst_release(*dst);
920 *dst = NULL;
921 }
922 }
923
Ian Morris63159f22015-03-29 14:00:04 +0100924 if (!*dst)
David S. Miller4c9483b2011-03-12 16:22:43 -0500925 *dst = ip6_route_output(net, sk, fl6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
Ian Morrise5d08d72014-11-23 21:28:43 +0000927 err = (*dst)->error;
928 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 goto out_err_release;
930
Neil Horman95c385b2007-04-25 17:08:10 -0700931#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
Neil Hormane550dfb2008-09-09 13:51:35 -0700932 /*
933 * Here if the dst entry we've looked up
934 * has a neighbour entry that is in the INCOMPLETE
935 * state and the src address from the flow is
936 * marked as OPTIMISTIC, we release the found
937 * dst entry and replace it instead with the
938 * dst entry of the nexthop router
939 */
Eric Dumazetc56bf6f2012-07-06 09:19:05 +0200940 rt = (struct rt6_info *) *dst;
YOSHIFUJI Hideaki / 吉藤英明707be1f2013-01-17 12:53:55 +0000941 rcu_read_lock_bh();
Martin KaFai Lau2647a9b2015-05-22 20:55:58 -0700942 n = __ipv6_neigh_lookup_noref(rt->dst.dev,
943 rt6_nexthop(rt, &fl6->daddr));
YOSHIFUJI Hideaki / 吉藤英明707be1f2013-01-17 12:53:55 +0000944 err = n && !(n->nud_state & NUD_VALID) ? -EINVAL : 0;
945 rcu_read_unlock_bh();
946
947 if (err) {
Neil Hormane550dfb2008-09-09 13:51:35 -0700948 struct inet6_ifaddr *ifp;
David S. Miller4c9483b2011-03-12 16:22:43 -0500949 struct flowi6 fl_gw6;
Neil Hormane550dfb2008-09-09 13:51:35 -0700950 int redirect;
Neil Horman95c385b2007-04-25 17:08:10 -0700951
David S. Miller4c9483b2011-03-12 16:22:43 -0500952 ifp = ipv6_get_ifaddr(net, &fl6->saddr,
Neil Hormane550dfb2008-09-09 13:51:35 -0700953 (*dst)->dev, 1);
Neil Horman95c385b2007-04-25 17:08:10 -0700954
Neil Hormane550dfb2008-09-09 13:51:35 -0700955 redirect = (ifp && ifp->flags & IFA_F_OPTIMISTIC);
956 if (ifp)
957 in6_ifa_put(ifp);
Neil Horman95c385b2007-04-25 17:08:10 -0700958
Neil Hormane550dfb2008-09-09 13:51:35 -0700959 if (redirect) {
960 /*
961 * We need to get the dst entry for the
962 * default router instead
963 */
964 dst_release(*dst);
David S. Miller4c9483b2011-03-12 16:22:43 -0500965 memcpy(&fl_gw6, fl6, sizeof(struct flowi6));
966 memset(&fl_gw6.daddr, 0, sizeof(struct in6_addr));
967 *dst = ip6_route_output(net, sk, &fl_gw6);
Ian Morrise5d08d72014-11-23 21:28:43 +0000968 err = (*dst)->error;
969 if (err)
Neil Hormane550dfb2008-09-09 13:51:35 -0700970 goto out_err_release;
Neil Horman95c385b2007-04-25 17:08:10 -0700971 }
Neil Hormane550dfb2008-09-09 13:51:35 -0700972 }
Neil Horman95c385b2007-04-25 17:08:10 -0700973#endif
974
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 return 0;
976
977out_err_release:
Mitsuru Chinenca46f9c2007-12-05 22:31:47 -0800978 if (err == -ENETUNREACH)
John Stultz5ac68e72013-10-07 15:52:01 -0700979 IP6_INC_STATS(net, NULL, IPSTATS_MIB_OUTNOROUTES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 dst_release(*dst);
981 *dst = NULL;
982 return err;
983}
Adrian Bunk34a0b3c2005-11-29 16:28:56 -0800984
Herbert Xu497c6152006-07-30 20:19:33 -0700985/**
986 * ip6_dst_lookup - perform route lookup on flow
987 * @sk: socket which provides route info
988 * @dst: pointer to dst_entry * for result
David S. Miller4c9483b2011-03-12 16:22:43 -0500989 * @fl6: flow to lookup
Herbert Xu497c6152006-07-30 20:19:33 -0700990 *
991 * This function performs a route lookup on the given flow.
992 *
993 * It returns zero on success, or a standard errno code on error.
994 */
Roopa Prabhu343d60a2015-07-30 13:34:53 -0700995int ip6_dst_lookup(struct net *net, struct sock *sk, struct dst_entry **dst,
996 struct flowi6 *fl6)
Herbert Xu497c6152006-07-30 20:19:33 -0700997{
998 *dst = NULL;
Roopa Prabhu343d60a2015-07-30 13:34:53 -0700999 return ip6_dst_lookup_tail(net, sk, dst, fl6);
Herbert Xu497c6152006-07-30 20:19:33 -07001000}
Arnaldo Carvalho de Melo3cf3dc62005-12-13 23:23:20 -08001001EXPORT_SYMBOL_GPL(ip6_dst_lookup);
1002
Herbert Xu497c6152006-07-30 20:19:33 -07001003/**
David S. Miller68d0c6d2011-03-01 13:19:07 -08001004 * ip6_dst_lookup_flow - perform route lookup on flow with ipsec
1005 * @sk: socket which provides route info
David S. Miller4c9483b2011-03-12 16:22:43 -05001006 * @fl6: flow to lookup
David S. Miller68d0c6d2011-03-01 13:19:07 -08001007 * @final_dst: final destination address for ipsec lookup
David S. Miller68d0c6d2011-03-01 13:19:07 -08001008 *
1009 * This function performs a route lookup on the given flow.
1010 *
1011 * It returns a valid dst pointer on success, or a pointer encoded
1012 * error code.
1013 */
David S. Miller4c9483b2011-03-12 16:22:43 -05001014struct dst_entry *ip6_dst_lookup_flow(struct sock *sk, struct flowi6 *fl6,
Steffen Klassert0e0d44a2013-08-28 08:04:14 +02001015 const struct in6_addr *final_dst)
David S. Miller68d0c6d2011-03-01 13:19:07 -08001016{
1017 struct dst_entry *dst = NULL;
1018 int err;
1019
Roopa Prabhu343d60a2015-07-30 13:34:53 -07001020 err = ip6_dst_lookup_tail(sock_net(sk), sk, &dst, fl6);
David S. Miller68d0c6d2011-03-01 13:19:07 -08001021 if (err)
1022 return ERR_PTR(err);
1023 if (final_dst)
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001024 fl6->daddr = *final_dst;
Phil Suttera0a9f332015-07-15 21:56:26 +02001025 if (!fl6->flowi6_oif)
1026 fl6->flowi6_oif = dst->dev->ifindex;
David S. Miller2774c132011-03-01 14:59:04 -08001027
Steffen Klassertf92ee612014-09-16 10:08:40 +02001028 return xfrm_lookup_route(sock_net(sk), dst, flowi6_to_flowi(fl6), sk, 0);
David S. Miller68d0c6d2011-03-01 13:19:07 -08001029}
1030EXPORT_SYMBOL_GPL(ip6_dst_lookup_flow);
1031
1032/**
1033 * ip6_sk_dst_lookup_flow - perform socket cached route lookup on flow
1034 * @sk: socket which provides the dst cache and route info
David S. Miller4c9483b2011-03-12 16:22:43 -05001035 * @fl6: flow to lookup
David S. Miller68d0c6d2011-03-01 13:19:07 -08001036 * @final_dst: final destination address for ipsec lookup
Herbert Xu497c6152006-07-30 20:19:33 -07001037 *
1038 * This function performs a route lookup on the given flow with the
1039 * possibility of using the cached route in the socket if it is valid.
1040 * It will take the socket dst lock when operating on the dst cache.
1041 * As a result, this function can only be used in process context.
1042 *
David S. Miller68d0c6d2011-03-01 13:19:07 -08001043 * It returns a valid dst pointer on success, or a pointer encoded
1044 * error code.
Herbert Xu497c6152006-07-30 20:19:33 -07001045 */
David S. Miller4c9483b2011-03-12 16:22:43 -05001046struct dst_entry *ip6_sk_dst_lookup_flow(struct sock *sk, struct flowi6 *fl6,
Steffen Klassert0e0d44a2013-08-28 08:04:14 +02001047 const struct in6_addr *final_dst)
Herbert Xu497c6152006-07-30 20:19:33 -07001048{
David S. Miller68d0c6d2011-03-01 13:19:07 -08001049 struct dst_entry *dst = sk_dst_check(sk, inet6_sk(sk)->dst_cookie);
1050 int err;
Herbert Xu497c6152006-07-30 20:19:33 -07001051
David S. Miller4c9483b2011-03-12 16:22:43 -05001052 dst = ip6_sk_dst_check(sk, dst, fl6);
David S. Miller68d0c6d2011-03-01 13:19:07 -08001053
Roopa Prabhu343d60a2015-07-30 13:34:53 -07001054 err = ip6_dst_lookup_tail(sock_net(sk), sk, &dst, fl6);
David S. Miller68d0c6d2011-03-01 13:19:07 -08001055 if (err)
1056 return ERR_PTR(err);
1057 if (final_dst)
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001058 fl6->daddr = *final_dst;
David S. Miller2774c132011-03-01 14:59:04 -08001059
Steffen Klassertf92ee612014-09-16 10:08:40 +02001060 return xfrm_lookup_route(sock_net(sk), dst, flowi6_to_flowi(fl6), sk, 0);
Herbert Xu497c6152006-07-30 20:19:33 -07001061}
David S. Miller68d0c6d2011-03-01 13:19:07 -08001062EXPORT_SYMBOL_GPL(ip6_sk_dst_lookup_flow);
Herbert Xu497c6152006-07-30 20:19:33 -07001063
Adrian Bunk34a0b3c2005-11-29 16:28:56 -08001064static inline int ip6_ufo_append_data(struct sock *sk,
Vlad Yasevich0bbe84a2015-01-31 10:40:14 -05001065 struct sk_buff_head *queue,
Ananda Rajue89e9cf2005-10-18 15:46:41 -07001066 int getfrag(void *from, char *to, int offset, int len,
1067 int odd, struct sk_buff *skb),
1068 void *from, int length, int hh_len, int fragheaderlen,
Ian Morris67ba4152014-08-24 21:53:10 +01001069 int transhdrlen, int mtu, unsigned int flags,
Martin KaFai Laufd0273d2015-05-22 20:55:57 -07001070 const struct flowi6 *fl6)
Ananda Rajue89e9cf2005-10-18 15:46:41 -07001071
1072{
1073 struct sk_buff *skb;
1074 int err;
1075
1076 /* There is support for UDP large send offload by network
1077 * device, so create one single skb packet containing complete
1078 * udp datagram
1079 */
Vlad Yasevich0bbe84a2015-01-31 10:40:14 -05001080 skb = skb_peek_tail(queue);
Ian Morris63159f22015-03-29 14:00:04 +01001081 if (!skb) {
Ananda Rajue89e9cf2005-10-18 15:46:41 -07001082 skb = sock_alloc_send_skb(sk,
1083 hh_len + fragheaderlen + transhdrlen + 20,
1084 (flags & MSG_DONTWAIT), &err);
Ian Morris63159f22015-03-29 14:00:04 +01001085 if (!skb)
Zheng Yan504744e2011-10-28 00:26:00 -04001086 return err;
Ananda Rajue89e9cf2005-10-18 15:46:41 -07001087
1088 /* reserve space for Hardware header */
1089 skb_reserve(skb, hh_len);
1090
1091 /* create space for UDP/IP header */
Ian Morris67ba4152014-08-24 21:53:10 +01001092 skb_put(skb, fragheaderlen + transhdrlen);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07001093
1094 /* initialize network header pointer */
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -07001095 skb_reset_network_header(skb);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07001096
1097 /* initialize protocol header pointer */
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07001098 skb->transport_header = skb->network_header + fragheaderlen;
Ananda Rajue89e9cf2005-10-18 15:46:41 -07001099
Hannes Frederic Sowa9c9c9ad2013-08-26 12:31:23 +02001100 skb->protocol = htons(ETH_P_IPV6);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07001101 skb->csum = 0;
Ananda Rajue89e9cf2005-10-18 15:46:41 -07001102
Vlad Yasevich0bbe84a2015-01-31 10:40:14 -05001103 __skb_queue_tail(queue, skb);
Jiri Pirkoc547dbf2013-10-19 12:29:16 +02001104 } else if (skb_is_gso(skb)) {
1105 goto append;
Ananda Rajue89e9cf2005-10-18 15:46:41 -07001106 }
Ananda Rajue89e9cf2005-10-18 15:46:41 -07001107
Jiri Pirkoc547dbf2013-10-19 12:29:16 +02001108 skb->ip_summed = CHECKSUM_PARTIAL;
1109 /* Specify the length of each IPv6 datagram fragment.
1110 * It has to be a multiple of 8.
1111 */
1112 skb_shinfo(skb)->gso_size = (mtu - fragheaderlen -
1113 sizeof(struct frag_hdr)) & ~7;
1114 skb_shinfo(skb)->gso_type = SKB_GSO_UDP;
Martin KaFai Laufd0273d2015-05-22 20:55:57 -07001115 skb_shinfo(skb)->ip6_frag_id = ipv6_select_ident(sock_net(sk),
1116 &fl6->daddr,
1117 &fl6->saddr);
Jiri Pirkoc547dbf2013-10-19 12:29:16 +02001118
1119append:
Hannes Frederic Sowa2811eba2013-09-21 06:27:00 +02001120 return skb_append_datato_frags(sk, skb, getfrag, from,
1121 (length - transhdrlen));
Ananda Rajue89e9cf2005-10-18 15:46:41 -07001122}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123
Herbert Xu0178b692009-02-05 15:15:50 -08001124static inline struct ipv6_opt_hdr *ip6_opt_dup(struct ipv6_opt_hdr *src,
1125 gfp_t gfp)
1126{
1127 return src ? kmemdup(src, (src->hdrlen + 1) * 8, gfp) : NULL;
1128}
1129
1130static inline struct ipv6_rt_hdr *ip6_rthdr_dup(struct ipv6_rt_hdr *src,
1131 gfp_t gfp)
1132{
1133 return src ? kmemdup(src, (src->hdrlen + 1) * 8, gfp) : NULL;
1134}
1135
Hannes Frederic Sowa75a493e2013-07-02 08:04:05 +02001136static void ip6_append_data_mtu(unsigned int *mtu,
Gao feng0c183372012-05-26 01:30:53 +00001137 int *maxfraglen,
1138 unsigned int fragheaderlen,
1139 struct sk_buff *skb,
Hannes Frederic Sowa75a493e2013-07-02 08:04:05 +02001140 struct rt6_info *rt,
luciene367c2d2014-03-17 12:51:01 +08001141 unsigned int orig_mtu)
Gao feng0c183372012-05-26 01:30:53 +00001142{
1143 if (!(rt->dst.flags & DST_XFRM_TUNNEL)) {
Ian Morris63159f22015-03-29 14:00:04 +01001144 if (!skb) {
Gao feng0c183372012-05-26 01:30:53 +00001145 /* first fragment, reserve header_len */
luciene367c2d2014-03-17 12:51:01 +08001146 *mtu = orig_mtu - rt->dst.header_len;
Gao feng0c183372012-05-26 01:30:53 +00001147
1148 } else {
1149 /*
1150 * this fragment is not first, the headers
1151 * space is regarded as data space.
1152 */
luciene367c2d2014-03-17 12:51:01 +08001153 *mtu = orig_mtu;
Gao feng0c183372012-05-26 01:30:53 +00001154 }
1155 *maxfraglen = ((*mtu - fragheaderlen) & ~7)
1156 + fragheaderlen - sizeof(struct frag_hdr);
1157 }
1158}
1159
Vlad Yasevich366e41d2015-01-31 10:40:13 -05001160static int ip6_setup_cork(struct sock *sk, struct inet_cork_full *cork,
1161 struct inet6_cork *v6_cork,
1162 int hlimit, int tclass, struct ipv6_txoptions *opt,
1163 struct rt6_info *rt, struct flowi6 *fl6)
1164{
1165 struct ipv6_pinfo *np = inet6_sk(sk);
1166 unsigned int mtu;
1167
1168 /*
1169 * setup for corking
1170 */
1171 if (opt) {
1172 if (WARN_ON(v6_cork->opt))
1173 return -EINVAL;
1174
1175 v6_cork->opt = kzalloc(opt->tot_len, sk->sk_allocation);
Ian Morris63159f22015-03-29 14:00:04 +01001176 if (unlikely(!v6_cork->opt))
Vlad Yasevich366e41d2015-01-31 10:40:13 -05001177 return -ENOBUFS;
1178
1179 v6_cork->opt->tot_len = opt->tot_len;
1180 v6_cork->opt->opt_flen = opt->opt_flen;
1181 v6_cork->opt->opt_nflen = opt->opt_nflen;
1182
1183 v6_cork->opt->dst0opt = ip6_opt_dup(opt->dst0opt,
1184 sk->sk_allocation);
1185 if (opt->dst0opt && !v6_cork->opt->dst0opt)
1186 return -ENOBUFS;
1187
1188 v6_cork->opt->dst1opt = ip6_opt_dup(opt->dst1opt,
1189 sk->sk_allocation);
1190 if (opt->dst1opt && !v6_cork->opt->dst1opt)
1191 return -ENOBUFS;
1192
1193 v6_cork->opt->hopopt = ip6_opt_dup(opt->hopopt,
1194 sk->sk_allocation);
1195 if (opt->hopopt && !v6_cork->opt->hopopt)
1196 return -ENOBUFS;
1197
1198 v6_cork->opt->srcrt = ip6_rthdr_dup(opt->srcrt,
1199 sk->sk_allocation);
1200 if (opt->srcrt && !v6_cork->opt->srcrt)
1201 return -ENOBUFS;
1202
1203 /* need source address above miyazawa*/
1204 }
1205 dst_hold(&rt->dst);
1206 cork->base.dst = &rt->dst;
1207 cork->fl.u.ip6 = *fl6;
1208 v6_cork->hop_limit = hlimit;
1209 v6_cork->tclass = tclass;
1210 if (rt->dst.flags & DST_XFRM_TUNNEL)
1211 mtu = np->pmtudisc >= IPV6_PMTUDISC_PROBE ?
1212 rt->dst.dev->mtu : dst_mtu(&rt->dst);
1213 else
1214 mtu = np->pmtudisc >= IPV6_PMTUDISC_PROBE ?
1215 rt->dst.dev->mtu : dst_mtu(rt->dst.path);
1216 if (np->frag_size < mtu) {
1217 if (np->frag_size)
1218 mtu = np->frag_size;
1219 }
1220 cork->base.fragsize = mtu;
1221 if (dst_allfrag(rt->dst.path))
1222 cork->base.flags |= IPCORK_ALLFRAG;
1223 cork->base.length = 0;
1224
1225 return 0;
1226}
1227
Vlad Yasevich0bbe84a2015-01-31 10:40:14 -05001228static int __ip6_append_data(struct sock *sk,
1229 struct flowi6 *fl6,
1230 struct sk_buff_head *queue,
1231 struct inet_cork *cork,
1232 struct inet6_cork *v6_cork,
1233 struct page_frag *pfrag,
1234 int getfrag(void *from, char *to, int offset,
1235 int len, int odd, struct sk_buff *skb),
1236 void *from, int length, int transhdrlen,
1237 unsigned int flags, int dontfrag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238{
Gao feng0c183372012-05-26 01:30:53 +00001239 struct sk_buff *skb, *skb_prev = NULL;
luciene367c2d2014-03-17 12:51:01 +08001240 unsigned int maxfraglen, fragheaderlen, mtu, orig_mtu;
Vlad Yasevich0bbe84a2015-01-31 10:40:14 -05001241 int exthdrlen = 0;
1242 int dst_exthdrlen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 int hh_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 int copy;
1245 int err;
1246 int offset = 0;
Anders Berggrena693e692011-02-28 12:32:11 -08001247 __u8 tx_flags = 0;
Willem de Bruijn09c2d252014-08-04 22:11:47 -04001248 u32 tskey = 0;
Vlad Yasevich0bbe84a2015-01-31 10:40:14 -05001249 struct rt6_info *rt = (struct rt6_info *)cork->dst;
1250 struct ipv6_txoptions *opt = v6_cork->opt;
Vlad Yasevich32dce962015-01-31 10:40:18 -05001251 int csummode = CHECKSUM_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
Vlad Yasevich0bbe84a2015-01-31 10:40:14 -05001253 skb = skb_peek_tail(queue);
1254 if (!skb) {
1255 exthdrlen = opt ? opt->opt_flen : 0;
Romain KUNTZ7efdba52013-01-16 12:47:40 +00001256 dst_exthdrlen = rt->dst.header_len - rt->rt6i_nfheader_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 }
Vlad Yasevich0bbe84a2015-01-31 10:40:14 -05001258
Vlad Yasevich366e41d2015-01-31 10:40:13 -05001259 mtu = cork->fragsize;
luciene367c2d2014-03-17 12:51:01 +08001260 orig_mtu = mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
Changli Gaod8d1f302010-06-10 23:31:35 -07001262 hh_len = LL_RESERVED_SPACE(rt->dst.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001264 fragheaderlen = sizeof(struct ipv6hdr) + rt->rt6i_nfheader_len +
Herbert Xub4ce9272007-11-13 21:33:32 -08001265 (opt ? opt->opt_nflen : 0);
Hannes Frederic Sowa4df98e72013-12-16 12:36:44 +01001266 maxfraglen = ((mtu - fragheaderlen) & ~7) + fragheaderlen -
1267 sizeof(struct frag_hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268
1269 if (mtu <= sizeof(struct ipv6hdr) + IPV6_MAXPLEN) {
Hannes Frederic Sowa4df98e72013-12-16 12:36:44 +01001270 unsigned int maxnonfragsize, headersize;
1271
1272 headersize = sizeof(struct ipv6hdr) +
Hannes Frederic Sowa3a1cebe2014-05-11 23:01:13 +02001273 (opt ? opt->opt_flen + opt->opt_nflen : 0) +
Hannes Frederic Sowa4df98e72013-12-16 12:36:44 +01001274 (dst_allfrag(&rt->dst) ?
1275 sizeof(struct frag_hdr) : 0) +
1276 rt->rt6i_nfheader_len;
1277
WANG Cong60ff7462014-05-04 16:39:18 -07001278 if (ip6_sk_ignore_df(sk))
Hannes Frederic Sowa0b952272014-02-26 01:20:43 +01001279 maxnonfragsize = sizeof(struct ipv6hdr) + IPV6_MAXPLEN;
1280 else
1281 maxnonfragsize = mtu;
Hannes Frederic Sowa4df98e72013-12-16 12:36:44 +01001282
1283 /* dontfrag active */
1284 if ((cork->length + length > mtu - headersize) && dontfrag &&
1285 (sk->sk_protocol == IPPROTO_UDP ||
1286 sk->sk_protocol == IPPROTO_RAW)) {
1287 ipv6_local_rxpmtu(sk, fl6, mtu - headersize +
1288 sizeof(struct ipv6hdr));
1289 goto emsgsize;
1290 }
1291
1292 if (cork->length + length > maxnonfragsize - headersize) {
1293emsgsize:
1294 ipv6_local_error(sk, EMSGSIZE, fl6,
1295 mtu - headersize +
1296 sizeof(struct ipv6hdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 return -EMSGSIZE;
1298 }
1299 }
1300
Willem de Bruijn09c2d252014-08-04 22:11:47 -04001301 if (sk->sk_type == SOCK_DGRAM || sk->sk_type == SOCK_RAW) {
Daniel Borkmannbf84a012013-04-14 08:08:13 +00001302 sock_tx_timestamp(sk, &tx_flags);
Willem de Bruijn09c2d252014-08-04 22:11:47 -04001303 if (tx_flags & SKBTX_ANY_SW_TSTAMP &&
1304 sk->sk_tsflags & SOF_TIMESTAMPING_OPT_ID)
1305 tskey = sk->sk_tskey++;
1306 }
Anders Berggrena693e692011-02-28 12:32:11 -08001307
Vlad Yasevich32dce962015-01-31 10:40:18 -05001308 /* If this is the first and only packet and device
1309 * supports checksum offloading, let's use it.
Vlad Yaseviche87a4682015-05-14 20:34:08 -04001310 * Use transhdrlen, same as IPv4, because partial
1311 * sums only work when transhdrlen is set.
Vlad Yasevich32dce962015-01-31 10:40:18 -05001312 */
Vlad Yaseviche87a4682015-05-14 20:34:08 -04001313 if (transhdrlen && sk->sk_protocol == IPPROTO_UDP &&
Vlad Yasevich32dce962015-01-31 10:40:18 -05001314 length + fragheaderlen < mtu &&
1315 rt->dst.dev->features & NETIF_F_V6_CSUM &&
1316 !exthdrlen)
1317 csummode = CHECKSUM_PARTIAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 /*
1319 * Let's try using as much space as possible.
1320 * Use MTU if total length of the message fits into the MTU.
1321 * Otherwise, we need to reserve fragment header and
1322 * fragment alignment (= 8-15 octects, in total).
1323 *
1324 * Note that we may need to "move" the data from the tail of
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001325 * of the buffer to the new fragment when we split
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 * the message.
1327 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001328 * FIXME: It may be fragmented into multiple chunks
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 * at once if non-fragmentable extension headers
1330 * are too large.
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001331 * --yoshfuji
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 */
1333
Hannes Frederic Sowa2811eba2013-09-21 06:27:00 +02001334 cork->length += length;
1335 if (((length > mtu) ||
1336 (skb && skb_is_gso(skb))) &&
1337 (sk->sk_protocol == IPPROTO_UDP) &&
Michal Kubečekacf8dd02015-03-02 18:27:11 +01001338 (rt->dst.dev->features & NETIF_F_UFO) &&
1339 (sk->sk_type == SOCK_DGRAM)) {
Vlad Yasevich0bbe84a2015-01-31 10:40:14 -05001340 err = ip6_ufo_append_data(sk, queue, getfrag, from, length,
Hannes Frederic Sowa2811eba2013-09-21 06:27:00 +02001341 hh_len, fragheaderlen,
Martin KaFai Laufd0273d2015-05-22 20:55:57 -07001342 transhdrlen, mtu, flags, fl6);
Hannes Frederic Sowa2811eba2013-09-21 06:27:00 +02001343 if (err)
1344 goto error;
1345 return 0;
1346 }
1347
1348 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 goto alloc_new_skb;
1350
1351 while (length > 0) {
1352 /* Check if the remaining data fits into current packet. */
David S. Millerbdc712b2011-05-06 15:02:07 -07001353 copy = (cork->length <= mtu && !(cork->flags & IPCORK_ALLFRAG) ? mtu : maxfraglen) - skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 if (copy < length)
1355 copy = maxfraglen - skb->len;
1356
1357 if (copy <= 0) {
1358 char *data;
1359 unsigned int datalen;
1360 unsigned int fraglen;
1361 unsigned int fraggap;
1362 unsigned int alloclen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363alloc_new_skb:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 /* There's no room in the current skb */
Gao feng0c183372012-05-26 01:30:53 +00001365 if (skb)
1366 fraggap = skb->len - maxfraglen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 else
1368 fraggap = 0;
Gao feng0c183372012-05-26 01:30:53 +00001369 /* update mtu and maxfraglen if necessary */
Ian Morris63159f22015-03-29 14:00:04 +01001370 if (!skb || !skb_prev)
Gao feng0c183372012-05-26 01:30:53 +00001371 ip6_append_data_mtu(&mtu, &maxfraglen,
Hannes Frederic Sowa75a493e2013-07-02 08:04:05 +02001372 fragheaderlen, skb, rt,
luciene367c2d2014-03-17 12:51:01 +08001373 orig_mtu);
Gao feng0c183372012-05-26 01:30:53 +00001374
1375 skb_prev = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376
1377 /*
1378 * If remaining data exceeds the mtu,
1379 * we know we need more fragment(s).
1380 */
1381 datalen = length + fraggap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382
Gao feng0c183372012-05-26 01:30:53 +00001383 if (datalen > (cork->length <= mtu && !(cork->flags & IPCORK_ALLFRAG) ? mtu : maxfraglen) - fragheaderlen)
1384 datalen = maxfraglen - fragheaderlen - rt->dst.trailer_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 if ((flags & MSG_MORE) &&
Changli Gaod8d1f302010-06-10 23:31:35 -07001386 !(rt->dst.dev->features&NETIF_F_SG))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 alloclen = mtu;
1388 else
1389 alloclen = datalen + fragheaderlen;
1390
Steffen Klassert299b0762011-10-11 01:43:33 +00001391 alloclen += dst_exthdrlen;
1392
Gao feng0c183372012-05-26 01:30:53 +00001393 if (datalen != length + fraggap) {
1394 /*
1395 * this is not the last fragment, the trailer
1396 * space is regarded as data space.
1397 */
1398 datalen += rt->dst.trailer_len;
1399 }
1400
1401 alloclen += rt->dst.trailer_len;
1402 fraglen = datalen + fragheaderlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403
1404 /*
1405 * We just reserve space for fragment header.
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001406 * Note: this may be overallocation if the message
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 * (without MSG_MORE) fits into the MTU.
1408 */
1409 alloclen += sizeof(struct frag_hdr);
1410
1411 if (transhdrlen) {
1412 skb = sock_alloc_send_skb(sk,
1413 alloclen + hh_len,
1414 (flags & MSG_DONTWAIT), &err);
1415 } else {
1416 skb = NULL;
1417 if (atomic_read(&sk->sk_wmem_alloc) <=
1418 2 * sk->sk_sndbuf)
1419 skb = sock_wmalloc(sk,
1420 alloclen + hh_len, 1,
1421 sk->sk_allocation);
Ian Morris63159f22015-03-29 14:00:04 +01001422 if (unlikely(!skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 err = -ENOBUFS;
1424 }
Ian Morris63159f22015-03-29 14:00:04 +01001425 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 goto error;
1427 /*
1428 * Fill in the control structures
1429 */
Hannes Frederic Sowa9c9c9ad2013-08-26 12:31:23 +02001430 skb->protocol = htons(ETH_P_IPV6);
Vlad Yasevich32dce962015-01-31 10:40:18 -05001431 skb->ip_summed = csummode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 skb->csum = 0;
Gao feng1f858512012-03-19 22:36:10 +00001433 /* reserve for fragmentation and ipsec header */
1434 skb_reserve(skb, hh_len + sizeof(struct frag_hdr) +
1435 dst_exthdrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436
Willem de Bruijn11878b42014-07-14 17:55:06 -04001437 /* Only the initial fragment is time stamped */
1438 skb_shinfo(skb)->tx_flags = tx_flags;
1439 tx_flags = 0;
Willem de Bruijn09c2d252014-08-04 22:11:47 -04001440 skb_shinfo(skb)->tskey = tskey;
1441 tskey = 0;
Anders Berggrena693e692011-02-28 12:32:11 -08001442
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 /*
1444 * Find where to start putting bytes
1445 */
Gao feng1f858512012-03-19 22:36:10 +00001446 data = skb_put(skb, fraglen);
1447 skb_set_network_header(skb, exthdrlen);
1448 data += fragheaderlen;
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07001449 skb->transport_header = (skb->network_header +
1450 fragheaderlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 if (fraggap) {
1452 skb->csum = skb_copy_and_csum_bits(
1453 skb_prev, maxfraglen,
1454 data + transhdrlen, fraggap, 0);
1455 skb_prev->csum = csum_sub(skb_prev->csum,
1456 skb->csum);
1457 data += fraggap;
Herbert Xue9fa4f72006-08-13 20:12:58 -07001458 pskb_trim_unique(skb_prev, maxfraglen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 }
1460 copy = datalen - transhdrlen - fraggap;
Steffen Klassert299b0762011-10-11 01:43:33 +00001461
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 if (copy < 0) {
1463 err = -EINVAL;
1464 kfree_skb(skb);
1465 goto error;
1466 } else if (copy > 0 && getfrag(from, data + transhdrlen, offset, copy, fraggap, skb) < 0) {
1467 err = -EFAULT;
1468 kfree_skb(skb);
1469 goto error;
1470 }
1471
1472 offset += copy;
1473 length -= datalen - fraggap;
1474 transhdrlen = 0;
1475 exthdrlen = 0;
Steffen Klassert299b0762011-10-11 01:43:33 +00001476 dst_exthdrlen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477
1478 /*
1479 * Put the packet on the pending queue
1480 */
Vlad Yasevich0bbe84a2015-01-31 10:40:14 -05001481 __skb_queue_tail(queue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 continue;
1483 }
1484
1485 if (copy > length)
1486 copy = length;
1487
Changli Gaod8d1f302010-06-10 23:31:35 -07001488 if (!(rt->dst.dev->features&NETIF_F_SG)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 unsigned int off;
1490
1491 off = skb->len;
1492 if (getfrag(from, skb_put(skb, copy),
1493 offset, copy, off, skb) < 0) {
1494 __skb_trim(skb, off);
1495 err = -EFAULT;
1496 goto error;
1497 }
1498 } else {
1499 int i = skb_shinfo(skb)->nr_frags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500
Eric Dumazet5640f762012-09-23 23:04:42 +00001501 err = -ENOMEM;
1502 if (!sk_page_frag_refill(sk, pfrag))
1503 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504
Eric Dumazet5640f762012-09-23 23:04:42 +00001505 if (!skb_can_coalesce(skb, i, pfrag->page,
1506 pfrag->offset)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 err = -EMSGSIZE;
Eric Dumazet5640f762012-09-23 23:04:42 +00001508 if (i == MAX_SKB_FRAGS)
1509 goto error;
1510
1511 __skb_fill_page_desc(skb, i, pfrag->page,
1512 pfrag->offset, 0);
1513 skb_shinfo(skb)->nr_frags = ++i;
1514 get_page(pfrag->page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 }
Eric Dumazet5640f762012-09-23 23:04:42 +00001516 copy = min_t(int, copy, pfrag->size - pfrag->offset);
Eric Dumazet9e903e02011-10-18 21:00:24 +00001517 if (getfrag(from,
Eric Dumazet5640f762012-09-23 23:04:42 +00001518 page_address(pfrag->page) + pfrag->offset,
1519 offset, copy, skb->len, skb) < 0)
1520 goto error_efault;
1521
1522 pfrag->offset += copy;
1523 skb_frag_size_add(&skb_shinfo(skb)->frags[i - 1], copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 skb->len += copy;
1525 skb->data_len += copy;
Herbert Xuf945fa72008-01-22 22:39:26 -08001526 skb->truesize += copy;
1527 atomic_add(copy, &sk->sk_wmem_alloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 }
1529 offset += copy;
1530 length -= copy;
1531 }
Eric Dumazet5640f762012-09-23 23:04:42 +00001532
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 return 0;
Eric Dumazet5640f762012-09-23 23:04:42 +00001534
1535error_efault:
1536 err = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537error:
David S. Millerbdc712b2011-05-06 15:02:07 -07001538 cork->length -= length;
Denis V. Lunev3bd653c2008-10-08 10:54:51 -07001539 IP6_INC_STATS(sock_net(sk), rt->rt6i_idev, IPSTATS_MIB_OUTDISCARDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 return err;
1541}
Vlad Yasevich0bbe84a2015-01-31 10:40:14 -05001542
1543int ip6_append_data(struct sock *sk,
1544 int getfrag(void *from, char *to, int offset, int len,
1545 int odd, struct sk_buff *skb),
1546 void *from, int length, int transhdrlen, int hlimit,
1547 int tclass, struct ipv6_txoptions *opt, struct flowi6 *fl6,
1548 struct rt6_info *rt, unsigned int flags, int dontfrag)
1549{
1550 struct inet_sock *inet = inet_sk(sk);
1551 struct ipv6_pinfo *np = inet6_sk(sk);
1552 int exthdrlen;
1553 int err;
1554
1555 if (flags&MSG_PROBE)
1556 return 0;
1557 if (skb_queue_empty(&sk->sk_write_queue)) {
1558 /*
1559 * setup for corking
1560 */
1561 err = ip6_setup_cork(sk, &inet->cork, &np->cork, hlimit,
1562 tclass, opt, rt, fl6);
1563 if (err)
1564 return err;
1565
1566 exthdrlen = (opt ? opt->opt_flen : 0);
1567 length += exthdrlen;
1568 transhdrlen += exthdrlen;
1569 } else {
1570 fl6 = &inet->cork.fl.u.ip6;
1571 transhdrlen = 0;
1572 }
1573
1574 return __ip6_append_data(sk, fl6, &sk->sk_write_queue, &inet->cork.base,
1575 &np->cork, sk_page_frag(sk), getfrag,
1576 from, length, transhdrlen, flags, dontfrag);
1577}
Chris Elstona495f832012-04-29 21:48:53 +00001578EXPORT_SYMBOL_GPL(ip6_append_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579
Vlad Yasevich366e41d2015-01-31 10:40:13 -05001580static void ip6_cork_release(struct inet_cork_full *cork,
1581 struct inet6_cork *v6_cork)
Pavel Emelyanovbf138862007-11-05 21:04:31 -08001582{
Vlad Yasevich366e41d2015-01-31 10:40:13 -05001583 if (v6_cork->opt) {
1584 kfree(v6_cork->opt->dst0opt);
1585 kfree(v6_cork->opt->dst1opt);
1586 kfree(v6_cork->opt->hopopt);
1587 kfree(v6_cork->opt->srcrt);
1588 kfree(v6_cork->opt);
1589 v6_cork->opt = NULL;
Herbert Xu0178b692009-02-05 15:15:50 -08001590 }
1591
Vlad Yasevich366e41d2015-01-31 10:40:13 -05001592 if (cork->base.dst) {
1593 dst_release(cork->base.dst);
1594 cork->base.dst = NULL;
1595 cork->base.flags &= ~IPCORK_ALLFRAG;
Pavel Emelyanovbf138862007-11-05 21:04:31 -08001596 }
Vlad Yasevich366e41d2015-01-31 10:40:13 -05001597 memset(&cork->fl, 0, sizeof(cork->fl));
Pavel Emelyanovbf138862007-11-05 21:04:31 -08001598}
1599
Vlad Yasevich64223982015-01-31 10:40:15 -05001600struct sk_buff *__ip6_make_skb(struct sock *sk,
1601 struct sk_buff_head *queue,
1602 struct inet_cork_full *cork,
1603 struct inet6_cork *v6_cork)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604{
1605 struct sk_buff *skb, *tmp_skb;
1606 struct sk_buff **tail_skb;
1607 struct in6_addr final_dst_buf, *final_dst = &final_dst_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 struct ipv6_pinfo *np = inet6_sk(sk);
Denis V. Lunev3bd653c2008-10-08 10:54:51 -07001609 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 struct ipv6hdr *hdr;
Vlad Yasevich64223982015-01-31 10:40:15 -05001611 struct ipv6_txoptions *opt = v6_cork->opt;
1612 struct rt6_info *rt = (struct rt6_info *)cork->base.dst;
1613 struct flowi6 *fl6 = &cork->fl.u.ip6;
David S. Miller4c9483b2011-03-12 16:22:43 -05001614 unsigned char proto = fl6->flowi6_proto;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615
Vlad Yasevich64223982015-01-31 10:40:15 -05001616 skb = __skb_dequeue(queue);
Ian Morris63159f22015-03-29 14:00:04 +01001617 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 goto out;
1619 tail_skb = &(skb_shinfo(skb)->frag_list);
1620
1621 /* move skb->data to ip header from ext header */
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -07001622 if (skb->data < skb_network_header(skb))
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -03001623 __skb_pull(skb, skb_network_offset(skb));
Vlad Yasevich64223982015-01-31 10:40:15 -05001624 while ((tmp_skb = __skb_dequeue(queue)) != NULL) {
Arnaldo Carvalho de Melocfe1fc72007-03-16 17:26:39 -03001625 __skb_pull(tmp_skb, skb_network_header_len(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 *tail_skb = tmp_skb;
1627 tail_skb = &(tmp_skb->next);
1628 skb->len += tmp_skb->len;
1629 skb->data_len += tmp_skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 skb->truesize += tmp_skb->truesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 tmp_skb->destructor = NULL;
1632 tmp_skb->sk = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 }
1634
Herbert Xu28a894532008-02-12 18:07:27 -08001635 /* Allow local fragmentation. */
WANG Cong60ff7462014-05-04 16:39:18 -07001636 skb->ignore_df = ip6_sk_ignore_df(sk);
Herbert Xu28a894532008-02-12 18:07:27 -08001637
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001638 *final_dst = fl6->daddr;
Arnaldo Carvalho de Melocfe1fc72007-03-16 17:26:39 -03001639 __skb_pull(skb, skb_network_header_len(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 if (opt && opt->opt_flen)
1641 ipv6_push_frag_opts(skb, opt, &proto);
1642 if (opt && opt->opt_nflen)
1643 ipv6_push_nfrag_opts(skb, opt, &proto, &final_dst);
1644
Arnaldo Carvalho de Meloe2d1bca2007-04-10 20:46:21 -07001645 skb_push(skb, sizeof(struct ipv6hdr));
1646 skb_reset_network_header(skb);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001647 hdr = ipv6_hdr(skb);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001648
Vlad Yasevich64223982015-01-31 10:40:15 -05001649 ip6_flow_hdr(hdr, v6_cork->tclass,
Tom Herbertcb1ce2e2014-07-01 21:33:10 -07001650 ip6_make_flowlabel(net, skb, fl6->flowlabel,
Tom Herbert67800f92015-07-31 16:52:11 -07001651 np->autoflowlabel, fl6));
Vlad Yasevich64223982015-01-31 10:40:15 -05001652 hdr->hop_limit = v6_cork->hop_limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 hdr->nexthdr = proto;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001654 hdr->saddr = fl6->saddr;
1655 hdr->daddr = *final_dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656
Patrick McHardya2c20642006-01-08 22:37:26 -08001657 skb->priority = sk->sk_priority;
Laszlo Attila Toth4a19ec52008-01-30 19:08:16 -08001658 skb->mark = sk->sk_mark;
Patrick McHardya2c20642006-01-08 22:37:26 -08001659
Changli Gaod8d1f302010-06-10 23:31:35 -07001660 skb_dst_set(skb, dst_clone(&rt->dst));
Neil Hormanedf391f2009-04-27 02:45:02 -07001661 IP6_UPD_PO_STATS(net, rt->rt6i_idev, IPSTATS_MIB_OUT, skb->len);
David L Stevens14878f72007-09-16 16:52:35 -07001662 if (proto == IPPROTO_ICMPV6) {
Eric Dumazetadf30902009-06-02 05:19:30 +00001663 struct inet6_dev *idev = ip6_dst_idev(skb_dst(skb));
David L Stevens14878f72007-09-16 16:52:35 -07001664
Hannes Frederic Sowa43a43b62014-03-31 20:14:10 +02001665 ICMP6MSGOUT_INC_STATS(net, idev, icmp6_hdr(skb)->icmp6_type);
1666 ICMP6_INC_STATS(net, idev, ICMP6_MIB_OUTMSGS);
David L Stevens14878f72007-09-16 16:52:35 -07001667 }
1668
Vlad Yasevich64223982015-01-31 10:40:15 -05001669 ip6_cork_release(cork, v6_cork);
1670out:
1671 return skb;
1672}
1673
1674int ip6_send_skb(struct sk_buff *skb)
1675{
1676 struct net *net = sock_net(skb->sk);
1677 struct rt6_info *rt = (struct rt6_info *)skb_dst(skb);
1678 int err;
1679
Herbert Xuef76bc22008-01-11 19:15:08 -08001680 err = ip6_local_out(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 if (err) {
1682 if (err > 0)
Eric Dumazet6ce9e7b2009-09-02 18:05:33 -07001683 err = net_xmit_errno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 if (err)
Vlad Yasevich64223982015-01-31 10:40:15 -05001685 IP6_INC_STATS(net, rt->rt6i_idev,
1686 IPSTATS_MIB_OUTDISCARDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 }
1688
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 return err;
Vlad Yasevich64223982015-01-31 10:40:15 -05001690}
1691
1692int ip6_push_pending_frames(struct sock *sk)
1693{
1694 struct sk_buff *skb;
1695
1696 skb = ip6_finish_skb(sk);
1697 if (!skb)
1698 return 0;
1699
1700 return ip6_send_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701}
Chris Elstona495f832012-04-29 21:48:53 +00001702EXPORT_SYMBOL_GPL(ip6_push_pending_frames);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703
Vlad Yasevich0bbe84a2015-01-31 10:40:14 -05001704static void __ip6_flush_pending_frames(struct sock *sk,
Vlad Yasevich64223982015-01-31 10:40:15 -05001705 struct sk_buff_head *queue,
1706 struct inet_cork_full *cork,
1707 struct inet6_cork *v6_cork)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 struct sk_buff *skb;
1710
Vlad Yasevich0bbe84a2015-01-31 10:40:14 -05001711 while ((skb = __skb_dequeue_tail(queue)) != NULL) {
Eric Dumazetadf30902009-06-02 05:19:30 +00001712 if (skb_dst(skb))
1713 IP6_INC_STATS(sock_net(sk), ip6_dst_idev(skb_dst(skb)),
YOSHIFUJI Hideakie1f522082007-09-11 11:31:43 +02001714 IPSTATS_MIB_OUTDISCARDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 kfree_skb(skb);
1716 }
1717
Vlad Yasevich64223982015-01-31 10:40:15 -05001718 ip6_cork_release(cork, v6_cork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719}
Vlad Yasevich0bbe84a2015-01-31 10:40:14 -05001720
1721void ip6_flush_pending_frames(struct sock *sk)
1722{
Vlad Yasevich64223982015-01-31 10:40:15 -05001723 __ip6_flush_pending_frames(sk, &sk->sk_write_queue,
1724 &inet_sk(sk)->cork, &inet6_sk(sk)->cork);
Vlad Yasevich0bbe84a2015-01-31 10:40:14 -05001725}
Chris Elstona495f832012-04-29 21:48:53 +00001726EXPORT_SYMBOL_GPL(ip6_flush_pending_frames);
Vlad Yasevich64223982015-01-31 10:40:15 -05001727
1728struct sk_buff *ip6_make_skb(struct sock *sk,
1729 int getfrag(void *from, char *to, int offset,
1730 int len, int odd, struct sk_buff *skb),
1731 void *from, int length, int transhdrlen,
1732 int hlimit, int tclass,
1733 struct ipv6_txoptions *opt, struct flowi6 *fl6,
1734 struct rt6_info *rt, unsigned int flags,
1735 int dontfrag)
1736{
1737 struct inet_cork_full cork;
1738 struct inet6_cork v6_cork;
1739 struct sk_buff_head queue;
1740 int exthdrlen = (opt ? opt->opt_flen : 0);
1741 int err;
1742
1743 if (flags & MSG_PROBE)
1744 return NULL;
1745
1746 __skb_queue_head_init(&queue);
1747
1748 cork.base.flags = 0;
1749 cork.base.addr = 0;
1750 cork.base.opt = NULL;
1751 v6_cork.opt = NULL;
1752 err = ip6_setup_cork(sk, &cork, &v6_cork, hlimit, tclass, opt, rt, fl6);
1753 if (err)
1754 return ERR_PTR(err);
1755
1756 if (dontfrag < 0)
1757 dontfrag = inet6_sk(sk)->dontfrag;
1758
1759 err = __ip6_append_data(sk, fl6, &queue, &cork.base, &v6_cork,
1760 &current->task_frag, getfrag, from,
1761 length + exthdrlen, transhdrlen + exthdrlen,
1762 flags, dontfrag);
1763 if (err) {
1764 __ip6_flush_pending_frames(sk, &queue, &cork, &v6_cork);
1765 return ERR_PTR(err);
1766 }
1767
1768 return __ip6_make_skb(sk, &queue, &cork, &v6_cork);
1769}