blob: c6af5963a20248f165d1fe5fac1dd41bd377028f [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>
23 * Imran Patel : frag id should be in NBO
24 * 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 Stevensad0081e2010-12-17 11:42:42 +000059int ip6_fragment(struct sk_buff *skb, int (*output)(struct sk_buff *));
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Herbert Xuef76bc22008-01-11 19:15:08 -080061int __ip6_local_out(struct sk_buff *skb)
62{
63 int len;
64
65 len = skb->len - sizeof(struct ipv6hdr);
66 if (len > IPV6_MAXPLEN)
67 len = 0;
68 ipv6_hdr(skb)->payload_len = htons(len);
69
Jan Engelhardtb2e0b382010-03-23 04:09:07 +010070 return nf_hook(NFPROTO_IPV6, NF_INET_LOCAL_OUT, skb, NULL,
71 skb_dst(skb)->dev, dst_output);
Herbert Xuef76bc22008-01-11 19:15:08 -080072}
73
74int ip6_local_out(struct sk_buff *skb)
75{
76 int err;
77
78 err = __ip6_local_out(skb);
79 if (likely(err == 1))
80 err = dst_output(skb);
81
82 return err;
83}
84EXPORT_SYMBOL_GPL(ip6_local_out);
85
Jan Engelhardt9e508492010-04-13 15:28:11 +020086static int ip6_finish_output2(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087{
Eric Dumazetadf30902009-06-02 05:19:30 +000088 struct dst_entry *dst = skb_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 struct net_device *dev = dst->dev;
David S. Millerf6b72b62011-07-14 07:53:20 -070090 struct neighbour *neigh;
David S. Miller97cac082012-07-02 22:43:47 -070091 struct rt6_info *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93 skb->protocol = htons(ETH_P_IPV6);
94 skb->dev = dev;
95
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -070096 if (ipv6_addr_is_multicast(&ipv6_hdr(skb)->daddr)) {
Eric Dumazetadf30902009-06-02 05:19:30 +000097 struct inet6_dev *idev = ip6_dst_idev(skb_dst(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Octavian Purdila7ad68482010-01-06 20:37:01 -080099 if (!(dev->flags & IFF_LOOPBACK) && sk_mc_loop(skb->sk) &&
Patrick McHardyd1db2752010-05-11 14:40:55 +0200100 ((mroute6_socket(dev_net(dev), skb) &&
Benjamin Therybd91b8b2008-12-10 16:07:08 -0800101 !(IP6CB(skb)->flags & IP6SKB_FORWARDED)) ||
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +0900102 ipv6_chk_mcast_addr(dev, &ipv6_hdr(skb)->daddr,
103 &ipv6_hdr(skb)->saddr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 struct sk_buff *newskb = skb_clone(skb, GFP_ATOMIC);
105
106 /* Do not check for IFF_ALLMULTI; multicast routing
107 is not supported in any case.
108 */
109 if (newskb)
Jan Engelhardtb2e0b382010-03-23 04:09:07 +0100110 NF_HOOK(NFPROTO_IPV6, NF_INET_POST_ROUTING,
111 newskb, NULL, newskb->dev,
Michel Machado95603e22012-06-12 10:16:35 +0000112 dev_loopback_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700114 if (ipv6_hdr(skb)->hop_limit == 0) {
Denis V. Lunev3bd653c2008-10-08 10:54:51 -0700115 IP6_INC_STATS(dev_net(dev), idev,
116 IPSTATS_MIB_OUTDISCARDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 kfree_skb(skb);
118 return 0;
119 }
120 }
121
Neil Hormanedf391f2009-04-27 02:45:02 -0700122 IP6_UPD_PO_STATS(dev_net(dev), idev, IPSTATS_MIB_OUTMCAST,
123 skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 }
125
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000126 rcu_read_lock();
David S. Miller97cac082012-07-02 22:43:47 -0700127 rt = (struct rt6_info *) dst;
128 neigh = rt->n;
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000129 if (neigh) {
David S. Miller5110effe2012-07-02 02:21:03 -0700130 int res = dst_neigh_output(dst, neigh, skb);
David S. Miller05e3aa02011-07-16 17:26:00 -0700131
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000132 rcu_read_unlock();
133 return res;
134 }
135 rcu_read_unlock();
Jan Engelhardt9e508492010-04-13 15:28:11 +0200136 IP6_INC_STATS_BH(dev_net(dst->dev),
137 ip6_dst_idev(dst), IPSTATS_MIB_OUTNOROUTES);
138 kfree_skb(skb);
139 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140}
141
Jan Engelhardt9e508492010-04-13 15:28:11 +0200142static int ip6_finish_output(struct sk_buff *skb)
143{
144 if ((skb->len > ip6_skb_dst_mtu(skb) && !skb_is_gso(skb)) ||
145 dst_allfrag(skb_dst(skb)))
146 return ip6_fragment(skb, ip6_finish_output2);
147 else
148 return ip6_finish_output2(skb);
149}
150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151int ip6_output(struct sk_buff *skb)
152{
Jan Engelhardt9e508492010-04-13 15:28:11 +0200153 struct net_device *dev = skb_dst(skb)->dev;
Eric Dumazetadf30902009-06-02 05:19:30 +0000154 struct inet6_dev *idev = ip6_dst_idev(skb_dst(skb));
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +0900155 if (unlikely(idev->cnf.disable_ipv6)) {
Jan Engelhardt9e508492010-04-13 15:28:11 +0200156 IP6_INC_STATS(dev_net(dev), idev,
Denis V. Lunev3bd653c2008-10-08 10:54:51 -0700157 IPSTATS_MIB_OUTDISCARDS);
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +0900158 kfree_skb(skb);
159 return 0;
160 }
161
Jan Engelhardt9c6eb282010-04-13 15:32:16 +0200162 return NF_HOOK_COND(NFPROTO_IPV6, NF_INET_POST_ROUTING, skb, NULL, dev,
163 ip6_finish_output,
164 !(IP6CB(skb)->flags & IP6SKB_REROUTED));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165}
166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167/*
Shan Weib5d43992010-04-15 16:48:48 +0000168 * xmit an sk_buff (used by TCP, SCTP and DCCP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 */
170
David S. Miller4c9483b2011-03-12 16:22:43 -0500171int ip6_xmit(struct sock *sk, struct sk_buff *skb, struct flowi6 *fl6,
Eric Dumazetb903d322011-10-27 00:44:35 -0400172 struct ipv6_txoptions *opt, int tclass)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173{
Denis V. Lunev3bd653c2008-10-08 10:54:51 -0700174 struct net *net = sock_net(sk);
Patrick McHardyb30bd282006-03-23 01:17:25 -0800175 struct ipv6_pinfo *np = inet6_sk(sk);
David S. Miller4c9483b2011-03-12 16:22:43 -0500176 struct in6_addr *first_hop = &fl6->daddr;
Eric Dumazetadf30902009-06-02 05:19:30 +0000177 struct dst_entry *dst = skb_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 struct ipv6hdr *hdr;
David S. Miller4c9483b2011-03-12 16:22:43 -0500179 u8 proto = fl6->flowi6_proto;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 int seg_len = skb->len;
Gerrit Renkere651f032009-08-09 08:12:48 +0000181 int hlimit = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 u32 mtu;
183
184 if (opt) {
Chuck Leverc2636b42007-10-23 21:07:32 -0700185 unsigned int head_room;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
187 /* First: exthdrs may take lots of space (~8K for now)
188 MAX_HEADER is not enough.
189 */
190 head_room = opt->opt_nflen + opt->opt_flen;
191 seg_len += head_room;
192 head_room += sizeof(struct ipv6hdr) + LL_RESERVED_SPACE(dst->dev);
193
194 if (skb_headroom(skb) < head_room) {
195 struct sk_buff *skb2 = skb_realloc_headroom(skb, head_room);
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900196 if (skb2 == NULL) {
Eric Dumazetadf30902009-06-02 05:19:30 +0000197 IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)),
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900198 IPSTATS_MIB_OUTDISCARDS);
199 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 return -ENOBUFS;
201 }
Eric Dumazet808db802012-04-24 10:17:59 +0000202 consume_skb(skb);
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900203 skb = skb2;
Dan Carpenter83d7eb22010-04-30 16:42:08 -0700204 skb_set_owner_w(skb, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 }
206 if (opt->opt_flen)
207 ipv6_push_frag_opts(skb, opt, &proto);
208 if (opt->opt_nflen)
209 ipv6_push_nfrag_opts(skb, opt, &proto, &first_hop);
210 }
211
Arnaldo Carvalho de Meloe2d1bca2007-04-10 20:46:21 -0700212 skb_push(skb, sizeof(struct ipv6hdr));
213 skb_reset_network_header(skb);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700214 hdr = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
216 /*
217 * Fill in the IPv6 header
218 */
Eric Dumazetb903d322011-10-27 00:44:35 -0400219 if (np)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 hlimit = np->hop_limit;
221 if (hlimit < 0)
YOSHIFUJI Hideaki6b75d092008-03-10 06:00:30 -0400222 hlimit = ip6_dst_hoplimit(dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
David S. Miller4c9483b2011-03-12 16:22:43 -0500224 *(__be32 *)hdr = htonl(0x60000000 | (tclass << 20)) | fl6->flowlabel;
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900225
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 hdr->payload_len = htons(seg_len);
227 hdr->nexthdr = proto;
228 hdr->hop_limit = hlimit;
229
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000230 hdr->saddr = fl6->saddr;
231 hdr->daddr = *first_hop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Patrick McHardya2c20642006-01-08 22:37:26 -0800233 skb->priority = sk->sk_priority;
Laszlo Attila Toth4a19ec52008-01-30 19:08:16 -0800234 skb->mark = sk->sk_mark;
Patrick McHardya2c20642006-01-08 22:37:26 -0800235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 mtu = dst_mtu(dst);
Wei Yongjun283d07ac2008-08-03 21:15:59 -0700237 if ((skb->len <= mtu) || skb->local_df || skb_is_gso(skb)) {
Eric Dumazetadf30902009-06-02 05:19:30 +0000238 IP6_UPD_PO_STATS(net, ip6_dst_idev(skb_dst(skb)),
Neil Hormanedf391f2009-04-27 02:45:02 -0700239 IPSTATS_MIB_OUT, skb->len);
Jan Engelhardtb2e0b382010-03-23 04:09:07 +0100240 return NF_HOOK(NFPROTO_IPV6, NF_INET_LOCAL_OUT, skb, NULL,
241 dst->dev, dst_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 }
243
Joe Perchese87cc472012-05-13 21:56:26 +0000244 net_dbg_ratelimited("IPv6: sending pkt_too_big to self\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 skb->dev = dst->dev;
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +0000246 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
Eric Dumazetadf30902009-06-02 05:19:30 +0000247 IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)), IPSTATS_MIB_FRAGFAILS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 kfree_skb(skb);
249 return -EMSGSIZE;
250}
251
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +0900252EXPORT_SYMBOL(ip6_xmit);
253
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254/*
255 * To avoid extra problems ND packets are send through this
256 * routine. It's code duplication but I really want to avoid
257 * extra checks since ipv6_build_header is used by TCP (which
258 * is for us performance critical)
259 */
260
261int ip6_nd_hdr(struct sock *sk, struct sk_buff *skb, struct net_device *dev,
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +0900262 const struct in6_addr *saddr, const struct in6_addr *daddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 int proto, int len)
264{
265 struct ipv6_pinfo *np = inet6_sk(sk);
266 struct ipv6hdr *hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
268 skb->protocol = htons(ETH_P_IPV6);
269 skb->dev = dev;
270
Arnaldo Carvalho de Melo55f79cc2007-03-14 21:05:03 -0300271 skb_reset_network_header(skb);
272 skb_put(skb, sizeof(struct ipv6hdr));
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700273 hdr = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Al Viroae08e1f2006-11-08 00:27:11 -0800275 *(__be32*)hdr = htonl(0x60000000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
277 hdr->payload_len = htons(len);
278 hdr->nexthdr = proto;
279 hdr->hop_limit = np->hop_limit;
280
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000281 hdr->saddr = *saddr;
282 hdr->daddr = *daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
284 return 0;
285}
286
287static int ip6_call_ra_chain(struct sk_buff *skb, int sel)
288{
289 struct ip6_ra_chain *ra;
290 struct sock *last = NULL;
291
292 read_lock(&ip6_ra_lock);
293 for (ra = ip6_ra_chain; ra; ra = ra->next) {
294 struct sock *sk = ra->sk;
Andrew McDonald0bd1b592005-08-09 19:44:42 -0700295 if (sk && ra->sel == sel &&
296 (!sk->sk_bound_dev_if ||
297 sk->sk_bound_dev_if == skb->dev->ifindex)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 if (last) {
299 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
300 if (skb2)
301 rawv6_rcv(last, skb2);
302 }
303 last = sk;
304 }
305 }
306
307 if (last) {
308 rawv6_rcv(last, skb);
309 read_unlock(&ip6_ra_lock);
310 return 1;
311 }
312 read_unlock(&ip6_ra_lock);
313 return 0;
314}
315
Ville Nuorvalae21e0b52006-09-22 14:41:44 -0700316static int ip6_forward_proxy_check(struct sk_buff *skb)
317{
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700318 struct ipv6hdr *hdr = ipv6_hdr(skb);
Ville Nuorvalae21e0b52006-09-22 14:41:44 -0700319 u8 nexthdr = hdr->nexthdr;
Jesse Gross75f28112011-11-30 17:05:51 -0800320 __be16 frag_off;
Ville Nuorvalae21e0b52006-09-22 14:41:44 -0700321 int offset;
322
323 if (ipv6_ext_hdr(nexthdr)) {
Jesse Gross75f28112011-11-30 17:05:51 -0800324 offset = ipv6_skip_exthdr(skb, sizeof(*hdr), &nexthdr, &frag_off);
Ville Nuorvalae21e0b52006-09-22 14:41:44 -0700325 if (offset < 0)
326 return 0;
327 } else
328 offset = sizeof(struct ipv6hdr);
329
330 if (nexthdr == IPPROTO_ICMPV6) {
331 struct icmp6hdr *icmp6;
332
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700333 if (!pskb_may_pull(skb, (skb_network_header(skb) +
334 offset + 1 - skb->data)))
Ville Nuorvalae21e0b52006-09-22 14:41:44 -0700335 return 0;
336
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700337 icmp6 = (struct icmp6hdr *)(skb_network_header(skb) + offset);
Ville Nuorvalae21e0b52006-09-22 14:41:44 -0700338
339 switch (icmp6->icmp6_type) {
340 case NDISC_ROUTER_SOLICITATION:
341 case NDISC_ROUTER_ADVERTISEMENT:
342 case NDISC_NEIGHBOUR_SOLICITATION:
343 case NDISC_NEIGHBOUR_ADVERTISEMENT:
344 case NDISC_REDIRECT:
345 /* For reaction involving unicast neighbor discovery
346 * message destined to the proxied address, pass it to
347 * input function.
348 */
349 return 1;
350 default:
351 break;
352 }
353 }
354
Ville Nuorvala74553b02006-09-22 14:42:18 -0700355 /*
356 * The proxying router can't forward traffic sent to a link-local
357 * address, so signal the sender and discard the packet. This
358 * behavior is clarified by the MIPv6 specification.
359 */
360 if (ipv6_addr_type(&hdr->daddr) & IPV6_ADDR_LINKLOCAL) {
361 dst_link_failure(skb);
362 return -1;
363 }
364
Ville Nuorvalae21e0b52006-09-22 14:41:44 -0700365 return 0;
366}
367
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368static inline int ip6_forward_finish(struct sk_buff *skb)
369{
370 return dst_output(skb);
371}
372
373int ip6_forward(struct sk_buff *skb)
374{
Eric Dumazetadf30902009-06-02 05:19:30 +0000375 struct dst_entry *dst = skb_dst(skb);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700376 struct ipv6hdr *hdr = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 struct inet6_skb_parm *opt = IP6CB(skb);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900378 struct net *net = dev_net(dst->dev);
Ulrich Weber14f3ad62010-02-26 04:34:49 -0800379 u32 mtu;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900380
YOSHIFUJI Hideaki53b79972008-07-19 22:35:03 -0700381 if (net->ipv6.devconf_all->forwarding == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 goto error;
383
Ben Hutchings4497b072008-06-19 16:22:28 -0700384 if (skb_warn_if_lro(skb))
385 goto drop;
386
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 if (!xfrm6_policy_check(NULL, XFRM_POLICY_FWD, skb)) {
Denis V. Lunev3bd653c2008-10-08 10:54:51 -0700388 IP6_INC_STATS(net, ip6_dst_idev(dst), IPSTATS_MIB_INDISCARDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 goto drop;
390 }
391
Alexey Kuznetsov72b43d02011-01-12 08:34:08 +0000392 if (skb->pkt_type != PACKET_HOST)
393 goto drop;
394
Herbert Xu35fc92a2007-03-26 23:22:20 -0700395 skb_forward_csum(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
397 /*
398 * We DO NOT make any processing on
399 * RA packets, pushing them to user level AS IS
400 * without ane WARRANTY that application will be able
401 * to interpret them. The reason is that we
402 * cannot make anything clever here.
403 *
404 * We are not end-node, so that if packet contains
405 * AH/ESP, we cannot make anything.
406 * Defragmentation also would be mistake, RA packets
407 * cannot be fragmented, because there is no warranty
408 * that different fragments will go along one path. --ANK
409 */
410 if (opt->ra) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700411 u8 *ptr = skb_network_header(skb) + opt->ra;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 if (ip6_call_ra_chain(skb, (ptr[2]<<8) + ptr[3]))
413 return 0;
414 }
415
416 /*
417 * check and decrement ttl
418 */
419 if (hdr->hop_limit <= 1) {
420 /* Force OUTPUT device used as source address */
421 skb->dev = dst->dev;
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +0000422 icmpv6_send(skb, ICMPV6_TIME_EXCEED, ICMPV6_EXC_HOPLIMIT, 0);
Denis V. Lunev483a47d2008-10-08 11:09:27 -0700423 IP6_INC_STATS_BH(net,
424 ip6_dst_idev(dst), IPSTATS_MIB_INHDRERRORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
426 kfree_skb(skb);
427 return -ETIMEDOUT;
428 }
429
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -0700430 /* XXX: idev->cnf.proxy_ndp? */
YOSHIFUJI Hideaki53b79972008-07-19 22:35:03 -0700431 if (net->ipv6.devconf_all->proxy_ndp &&
Daniel Lezcano8a3edd82008-03-07 11:14:16 -0800432 pneigh_lookup(&nd_tbl, net, &hdr->daddr, skb->dev, 0)) {
Ville Nuorvala74553b02006-09-22 14:42:18 -0700433 int proxied = ip6_forward_proxy_check(skb);
434 if (proxied > 0)
Ville Nuorvalae21e0b52006-09-22 14:41:44 -0700435 return ip6_input(skb);
Ville Nuorvala74553b02006-09-22 14:42:18 -0700436 else if (proxied < 0) {
Denis V. Lunev3bd653c2008-10-08 10:54:51 -0700437 IP6_INC_STATS(net, ip6_dst_idev(dst),
438 IPSTATS_MIB_INDISCARDS);
Ville Nuorvala74553b02006-09-22 14:42:18 -0700439 goto drop;
440 }
Ville Nuorvalae21e0b52006-09-22 14:41:44 -0700441 }
442
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 if (!xfrm6_route_forward(skb)) {
Denis V. Lunev3bd653c2008-10-08 10:54:51 -0700444 IP6_INC_STATS(net, ip6_dst_idev(dst), IPSTATS_MIB_INDISCARDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 goto drop;
446 }
Eric Dumazetadf30902009-06-02 05:19:30 +0000447 dst = skb_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
449 /* IPv6 specs say nothing about it, but it is clear that we cannot
450 send redirects to source routed frames.
Masahide NAKAMURA1e5dc142007-08-24 19:08:55 +0900451 We don't send redirects to frames decapsulated from IPsec.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 */
David S. Millerc45a3df2012-01-27 15:32:19 -0800453 if (skb->dev == dst->dev && opt->srcrt == 0 && !skb_sec_path(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 struct in6_addr *target = NULL;
David S. Millerfbfe95a2012-06-08 23:24:18 -0700455 struct inet_peer *peer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 struct rt6_info *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
458 /*
459 * incoming and outgoing devices are the same
460 * send a redirect.
461 */
462
463 rt = (struct rt6_info *) dst;
David S. Millerc45a3df2012-01-27 15:32:19 -0800464 if (rt->rt6i_flags & RTF_GATEWAY)
465 target = &rt->rt6i_gateway;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 else
467 target = &hdr->daddr;
468
David S. Millerfbfe95a2012-06-08 23:24:18 -0700469 peer = rt6_get_peer_create(rt);
David S. Miller92d86822011-02-04 15:55:25 -0800470
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 /* Limit redirects both by destination (here)
472 and by source (inside ndisc_send_redirect)
473 */
David S. Millerfbfe95a2012-06-08 23:24:18 -0700474 if (inet_peer_xrlim_allow(peer, 1*HZ))
David S. Miller49919692012-01-27 15:30:48 -0800475 ndisc_send_redirect(skb, target);
David L Stevens5bb1ab02007-05-09 13:53:44 -0700476 } else {
477 int addrtype = ipv6_addr_type(&hdr->saddr);
478
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 /* This check is security critical. */
YOSHIFUJI Hideakif81b2e72008-06-25 16:55:26 +0900480 if (addrtype == IPV6_ADDR_ANY ||
481 addrtype & (IPV6_ADDR_MULTICAST | IPV6_ADDR_LOOPBACK))
David L Stevens5bb1ab02007-05-09 13:53:44 -0700482 goto error;
483 if (addrtype & IPV6_ADDR_LINKLOCAL) {
484 icmpv6_send(skb, ICMPV6_DEST_UNREACH,
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +0000485 ICMPV6_NOT_NEIGHBOUR, 0);
David L Stevens5bb1ab02007-05-09 13:53:44 -0700486 goto error;
487 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 }
489
Ulrich Weber14f3ad62010-02-26 04:34:49 -0800490 mtu = dst_mtu(dst);
491 if (mtu < IPV6_MIN_MTU)
492 mtu = IPV6_MIN_MTU;
493
Herbert Xu0aa68272010-05-27 16:14:30 -0700494 if (skb->len > mtu && !skb_is_gso(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 /* Again, force OUTPUT device used as source address */
496 skb->dev = dst->dev;
Ulrich Weber14f3ad62010-02-26 04:34:49 -0800497 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
Denis V. Lunev483a47d2008-10-08 11:09:27 -0700498 IP6_INC_STATS_BH(net,
499 ip6_dst_idev(dst), IPSTATS_MIB_INTOOBIGERRORS);
500 IP6_INC_STATS_BH(net,
501 ip6_dst_idev(dst), IPSTATS_MIB_FRAGFAILS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 kfree_skb(skb);
503 return -EMSGSIZE;
504 }
505
506 if (skb_cow(skb, dst->dev->hard_header_len)) {
Denis V. Lunev3bd653c2008-10-08 10:54:51 -0700507 IP6_INC_STATS(net, ip6_dst_idev(dst), IPSTATS_MIB_OUTDISCARDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 goto drop;
509 }
510
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700511 hdr = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
513 /* Mangling hops number delayed to point after skb COW */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900514
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 hdr->hop_limit--;
516
Denis V. Lunev483a47d2008-10-08 11:09:27 -0700517 IP6_INC_STATS_BH(net, ip6_dst_idev(dst), IPSTATS_MIB_OUTFORWDATAGRAMS);
Vincent Bernat2d8dbb02012-06-05 03:41:42 +0000518 IP6_ADD_STATS_BH(net, ip6_dst_idev(dst), IPSTATS_MIB_OUTOCTETS, skb->len);
Jan Engelhardtb2e0b382010-03-23 04:09:07 +0100519 return NF_HOOK(NFPROTO_IPV6, NF_INET_FORWARD, skb, skb->dev, dst->dev,
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800520 ip6_forward_finish);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
522error:
Denis V. Lunev483a47d2008-10-08 11:09:27 -0700523 IP6_INC_STATS_BH(net, ip6_dst_idev(dst), IPSTATS_MIB_INADDRERRORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524drop:
525 kfree_skb(skb);
526 return -EINVAL;
527}
528
529static void ip6_copy_metadata(struct sk_buff *to, struct sk_buff *from)
530{
531 to->pkt_type = from->pkt_type;
532 to->priority = from->priority;
533 to->protocol = from->protocol;
Eric Dumazetadf30902009-06-02 05:19:30 +0000534 skb_dst_drop(to);
535 skb_dst_set(to, dst_clone(skb_dst(from)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 to->dev = from->dev;
Thomas Graf82e91ff2006-11-09 15:19:14 -0800537 to->mark = from->mark;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
539#ifdef CONFIG_NET_SCHED
540 to->tc_index = from->tc_index;
541#endif
Yasuyuki Kozakaie7ac05f2007-03-14 16:44:01 -0700542 nf_copy(to, from);
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700543#if defined(CONFIG_NETFILTER_XT_TARGET_TRACE) || \
544 defined(CONFIG_NETFILTER_XT_TARGET_TRACE_MODULE)
545 to->nf_trace = from->nf_trace;
546#endif
James Morris984bc162006-06-09 00:29:17 -0700547 skb_copy_secmark(to, from);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548}
549
550int ip6_find_1stfragopt(struct sk_buff *skb, u8 **nexthdr)
551{
552 u16 offset = sizeof(struct ipv6hdr);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700553 struct ipv6_opt_hdr *exthdr =
554 (struct ipv6_opt_hdr *)(ipv6_hdr(skb) + 1);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700555 unsigned int packet_len = skb->tail - skb->network_header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 int found_rhdr = 0;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700557 *nexthdr = &ipv6_hdr(skb)->nexthdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
559 while (offset + 1 <= packet_len) {
560
561 switch (**nexthdr) {
562
563 case NEXTHDR_HOP:
Masahide NAKAMURA27637df2006-08-23 19:29:47 -0700564 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 case NEXTHDR_ROUTING:
Masahide NAKAMURA27637df2006-08-23 19:29:47 -0700566 found_rhdr = 1;
567 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 case NEXTHDR_DEST:
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700569#if defined(CONFIG_IPV6_MIP6) || defined(CONFIG_IPV6_MIP6_MODULE)
Masahide NAKAMURA27637df2006-08-23 19:29:47 -0700570 if (ipv6_find_tlv(skb, offset, IPV6_TLV_HAO) >= 0)
571 break;
572#endif
573 if (found_rhdr)
574 return offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 break;
576 default :
577 return offset;
578 }
Masahide NAKAMURA27637df2006-08-23 19:29:47 -0700579
580 offset += ipv6_optlen(exthdr);
581 *nexthdr = &exthdr->nexthdr;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700582 exthdr = (struct ipv6_opt_hdr *)(skb_network_header(skb) +
583 offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 }
585
586 return offset;
587}
588
Eric Dumazet87c48fa2011-07-21 21:25:58 -0700589void ipv6_select_ident(struct frag_hdr *fhdr, struct rt6_info *rt)
590{
591 static atomic_t ipv6_fragmentation_id;
592 int old, new;
593
Eric Dumazete688a602011-12-22 04:15:53 +0000594 if (rt && !(rt->dst.flags & DST_NOPEER)) {
David S. Millerfbfe95a2012-06-08 23:24:18 -0700595 struct inet_peer *peer = rt6_get_peer_create(rt);
Eric Dumazet87c48fa2011-07-21 21:25:58 -0700596
Eric Dumazet87c48fa2011-07-21 21:25:58 -0700597 if (peer) {
598 fhdr->identification = htonl(inet_getid(peer, 0));
599 return;
600 }
601 }
602 do {
603 old = atomic_read(&ipv6_fragmentation_id);
604 new = old + 1;
605 if (!new)
606 new = 1;
607 } while (atomic_cmpxchg(&ipv6_fragmentation_id, old, new) != old);
608 fhdr->identification = htonl(new);
609}
610
David Stevensad0081e2010-12-17 11:42:42 +0000611int ip6_fragment(struct sk_buff *skb, int (*output)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 struct sk_buff *frag;
Eric Dumazetadf30902009-06-02 05:19:30 +0000614 struct rt6_info *rt = (struct rt6_info*)skb_dst(skb);
YOSHIFUJI Hideakid91675f2006-02-24 13:18:33 -0800615 struct ipv6_pinfo *np = skb->sk ? inet6_sk(skb->sk) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 struct ipv6hdr *tmp_hdr;
617 struct frag_hdr *fh;
618 unsigned int mtu, hlen, left, len;
Herbert Xua7ae1992011-11-18 02:20:04 +0000619 int hroom, troom;
Al Viroae08e1f2006-11-08 00:27:11 -0800620 __be32 frag_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 int ptr, offset = 0, err=0;
622 u8 *prevhdr, nexthdr = 0;
Eric Dumazetadf30902009-06-02 05:19:30 +0000623 struct net *net = dev_net(skb_dst(skb)->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 hlen = ip6_find_1stfragopt(skb, &prevhdr);
626 nexthdr = *prevhdr;
627
John Heffner628a5c52007-04-20 15:53:27 -0700628 mtu = ip6_skb_dst_mtu(skb);
John Heffnerb881ef72007-04-20 15:52:39 -0700629
630 /* We must not fragment if the socket is set to force MTU discovery
Ulrich Weber14f3ad62010-02-26 04:34:49 -0800631 * or if the skb it not generated by a local socket.
John Heffnerb881ef72007-04-20 15:52:39 -0700632 */
Eric Dumazeta34a1012012-05-18 21:51:44 +0000633 if (unlikely(!skb->local_df && skb->len > mtu)) {
634 if (skb->sk && dst_allfrag(skb_dst(skb)))
635 sk_nocaps_add(skb->sk, NETIF_F_GSO_MASK);
636
Eric Dumazetadf30902009-06-02 05:19:30 +0000637 skb->dev = skb_dst(skb)->dev;
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +0000638 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
Eric Dumazetadf30902009-06-02 05:19:30 +0000639 IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)),
Denis V. Lunev3bd653c2008-10-08 10:54:51 -0700640 IPSTATS_MIB_FRAGFAILS);
John Heffnerb881ef72007-04-20 15:52:39 -0700641 kfree_skb(skb);
642 return -EMSGSIZE;
643 }
644
YOSHIFUJI Hideakid91675f2006-02-24 13:18:33 -0800645 if (np && np->frag_size < mtu) {
646 if (np->frag_size)
647 mtu = np->frag_size;
648 }
649 mtu -= hlen + sizeof(struct frag_hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
David S. Miller21dc3302010-08-23 00:13:46 -0700651 if (skb_has_frag_list(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 int first_len = skb_pagelen(skb);
Eric Dumazet3d130082010-09-21 08:47:45 +0000653 struct sk_buff *frag2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
655 if (first_len - hlen > mtu ||
656 ((first_len - hlen) & 7) ||
657 skb_cloned(skb))
658 goto slow_path;
659
David S. Miller4d9092b2009-06-09 00:20:05 -0700660 skb_walk_frags(skb, frag) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 /* Correct geometry. */
662 if (frag->len > mtu ||
663 ((frag->len & 7) && frag->next) ||
664 skb_headroom(frag) < hlen)
Eric Dumazet3d130082010-09-21 08:47:45 +0000665 goto slow_path_clean;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 /* Partially cloned skb? */
668 if (skb_shared(frag))
Eric Dumazet3d130082010-09-21 08:47:45 +0000669 goto slow_path_clean;
Herbert Xu2fdba6b2005-05-18 22:52:33 -0700670
671 BUG_ON(frag->sk);
672 if (skb->sk) {
Herbert Xu2fdba6b2005-05-18 22:52:33 -0700673 frag->sk = skb->sk;
674 frag->destructor = sock_wfree;
Herbert Xu2fdba6b2005-05-18 22:52:33 -0700675 }
Eric Dumazet3d130082010-09-21 08:47:45 +0000676 skb->truesize -= frag->truesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 }
678
679 err = 0;
680 offset = 0;
681 frag = skb_shinfo(skb)->frag_list;
David S. Miller4d9092b2009-06-09 00:20:05 -0700682 skb_frag_list_init(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 /* BUILD HEADER */
684
YOSHIFUJI Hideaki9a217a12006-12-05 13:47:21 -0800685 *prevhdr = NEXTHDR_FRAGMENT;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700686 tmp_hdr = kmemdup(skb_network_header(skb), hlen, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 if (!tmp_hdr) {
Eric Dumazetadf30902009-06-02 05:19:30 +0000688 IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)),
Denis V. Lunev3bd653c2008-10-08 10:54:51 -0700689 IPSTATS_MIB_FRAGFAILS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 return -ENOMEM;
691 }
692
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 __skb_pull(skb, hlen);
694 fh = (struct frag_hdr*)__skb_push(skb, sizeof(struct frag_hdr));
Arnaldo Carvalho de Meloe2d1bca2007-04-10 20:46:21 -0700695 __skb_push(skb, hlen);
696 skb_reset_network_header(skb);
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700697 memcpy(skb_network_header(skb), tmp_hdr, hlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
Eric Dumazet87c48fa2011-07-21 21:25:58 -0700699 ipv6_select_ident(fh, rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 fh->nexthdr = nexthdr;
701 fh->reserved = 0;
702 fh->frag_off = htons(IP6_MF);
703 frag_id = fh->identification;
704
705 first_len = skb_pagelen(skb);
706 skb->data_len = first_len - skb_headlen(skb);
707 skb->len = first_len;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700708 ipv6_hdr(skb)->payload_len = htons(first_len -
709 sizeof(struct ipv6hdr));
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900710
Changli Gaod8d1f302010-06-10 23:31:35 -0700711 dst_hold(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
713 for (;;) {
714 /* Prepare header of the next frame,
715 * before previous one went down. */
716 if (frag) {
717 frag->ip_summed = CHECKSUM_NONE;
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -0300718 skb_reset_transport_header(frag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 fh = (struct frag_hdr*)__skb_push(frag, sizeof(struct frag_hdr));
Arnaldo Carvalho de Meloe2d1bca2007-04-10 20:46:21 -0700720 __skb_push(frag, hlen);
721 skb_reset_network_header(frag);
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700722 memcpy(skb_network_header(frag), tmp_hdr,
723 hlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 offset += skb->len - hlen - sizeof(struct frag_hdr);
725 fh->nexthdr = nexthdr;
726 fh->reserved = 0;
727 fh->frag_off = htons(offset);
728 if (frag->next != NULL)
729 fh->frag_off |= htons(IP6_MF);
730 fh->identification = frag_id;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700731 ipv6_hdr(frag)->payload_len =
732 htons(frag->len -
733 sizeof(struct ipv6hdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 ip6_copy_metadata(frag, skb);
735 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900736
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 err = output(skb);
Wei Dongdafee492006-08-02 13:41:21 -0700738 if(!err)
Changli Gaod8d1f302010-06-10 23:31:35 -0700739 IP6_INC_STATS(net, ip6_dst_idev(&rt->dst),
Denis V. Lunev3bd653c2008-10-08 10:54:51 -0700740 IPSTATS_MIB_FRAGCREATES);
Wei Dongdafee492006-08-02 13:41:21 -0700741
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 if (err || !frag)
743 break;
744
745 skb = frag;
746 frag = skb->next;
747 skb->next = NULL;
748 }
749
Jesper Juhla51482b2005-11-08 09:41:34 -0800750 kfree(tmp_hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
752 if (err == 0) {
Changli Gaod8d1f302010-06-10 23:31:35 -0700753 IP6_INC_STATS(net, ip6_dst_idev(&rt->dst),
Denis V. Lunev3bd653c2008-10-08 10:54:51 -0700754 IPSTATS_MIB_FRAGOKS);
Changli Gaod8d1f302010-06-10 23:31:35 -0700755 dst_release(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 return 0;
757 }
758
759 while (frag) {
760 skb = frag->next;
761 kfree_skb(frag);
762 frag = skb;
763 }
764
Changli Gaod8d1f302010-06-10 23:31:35 -0700765 IP6_INC_STATS(net, ip6_dst_idev(&rt->dst),
Denis V. Lunev3bd653c2008-10-08 10:54:51 -0700766 IPSTATS_MIB_FRAGFAILS);
Changli Gaod8d1f302010-06-10 23:31:35 -0700767 dst_release(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 return err;
Eric Dumazet3d130082010-09-21 08:47:45 +0000769
770slow_path_clean:
771 skb_walk_frags(skb, frag2) {
772 if (frag2 == frag)
773 break;
774 frag2->sk = NULL;
775 frag2->destructor = NULL;
776 skb->truesize += frag2->truesize;
777 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 }
779
780slow_path:
Eric Dumazet72e843b2012-05-18 11:02:15 +0000781 if ((skb->ip_summed == CHECKSUM_PARTIAL) &&
782 skb_checksum_help(skb))
783 goto fail;
784
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 left = skb->len - hlen; /* Space per frame */
786 ptr = hlen; /* Where to start from */
787
788 /*
789 * Fragment the datagram.
790 */
791
792 *prevhdr = NEXTHDR_FRAGMENT;
Herbert Xua7ae1992011-11-18 02:20:04 +0000793 hroom = LL_RESERVED_SPACE(rt->dst.dev);
794 troom = rt->dst.dev->needed_tailroom;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
796 /*
797 * Keep copying data until we run out.
798 */
799 while(left > 0) {
800 len = left;
801 /* IF: it doesn't fit, use 'mtu' - the data space left */
802 if (len > mtu)
803 len = mtu;
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300804 /* IF: we are not sending up to and including the packet end
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 then align the next start on an eight byte boundary */
806 if (len < left) {
807 len &= ~7;
808 }
809 /*
810 * Allocate buffer.
811 */
812
Herbert Xua7ae1992011-11-18 02:20:04 +0000813 if ((frag = alloc_skb(len + hlen + sizeof(struct frag_hdr) +
814 hroom + troom, GFP_ATOMIC)) == NULL) {
Patrick McHardy64ce2072005-08-09 20:50:53 -0700815 NETDEBUG(KERN_INFO "IPv6: frag: no memory for new fragment!\n");
Eric Dumazetadf30902009-06-02 05:19:30 +0000816 IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)),
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900817 IPSTATS_MIB_FRAGFAILS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 err = -ENOMEM;
819 goto fail;
820 }
821
822 /*
823 * Set up data on packet
824 */
825
826 ip6_copy_metadata(frag, skb);
Herbert Xua7ae1992011-11-18 02:20:04 +0000827 skb_reserve(frag, hroom);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 skb_put(frag, len + hlen + sizeof(struct frag_hdr));
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700829 skb_reset_network_header(frag);
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -0300830 fh = (struct frag_hdr *)(skb_network_header(frag) + hlen);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700831 frag->transport_header = (frag->network_header + hlen +
832 sizeof(struct frag_hdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
834 /*
835 * Charge the memory for the fragment to any owner
836 * it might possess
837 */
838 if (skb->sk)
839 skb_set_owner_w(frag, skb->sk);
840
841 /*
842 * Copy the packet header into the new buffer.
843 */
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300844 skb_copy_from_linear_data(skb, skb_network_header(frag), hlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
846 /*
847 * Build fragment header.
848 */
849 fh->nexthdr = nexthdr;
850 fh->reserved = 0;
Yan Zhengf36d6ab2005-10-03 14:19:15 -0700851 if (!frag_id) {
Eric Dumazet87c48fa2011-07-21 21:25:58 -0700852 ipv6_select_ident(fh, rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 frag_id = fh->identification;
854 } else
855 fh->identification = frag_id;
856
857 /*
858 * Copy a block of the IP datagram.
859 */
Wei Yongjun8984e412007-08-21 20:59:08 -0700860 if (skb_copy_bits(skb, ptr, skb_transport_header(frag), len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 BUG();
862 left -= len;
863
864 fh->frag_off = htons(offset);
865 if (left > 0)
866 fh->frag_off |= htons(IP6_MF);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700867 ipv6_hdr(frag)->payload_len = htons(frag->len -
868 sizeof(struct ipv6hdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
870 ptr += len;
871 offset += len;
872
873 /*
874 * Put this fragment into the sending queue.
875 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 err = output(frag);
877 if (err)
878 goto fail;
Wei Dongdafee492006-08-02 13:41:21 -0700879
Eric Dumazetadf30902009-06-02 05:19:30 +0000880 IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)),
Denis V. Lunev3bd653c2008-10-08 10:54:51 -0700881 IPSTATS_MIB_FRAGCREATES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 }
Eric Dumazetadf30902009-06-02 05:19:30 +0000883 IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)),
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900884 IPSTATS_MIB_FRAGOKS);
Eric Dumazet808db802012-04-24 10:17:59 +0000885 consume_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 return err;
887
888fail:
Eric Dumazetadf30902009-06-02 05:19:30 +0000889 IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)),
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900890 IPSTATS_MIB_FRAGFAILS);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900891 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 return err;
893}
894
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000895static inline int ip6_rt_check(const struct rt6key *rt_key,
896 const struct in6_addr *fl_addr,
897 const struct in6_addr *addr_cache)
YOSHIFUJI Hideakicf6b1982006-08-23 17:19:18 -0700898{
Eric Dumazeta02cec22010-09-22 20:43:57 +0000899 return (rt_key->plen != 128 || !ipv6_addr_equal(fl_addr, &rt_key->addr)) &&
900 (addr_cache == NULL || !ipv6_addr_equal(fl_addr, addr_cache));
YOSHIFUJI Hideakicf6b1982006-08-23 17:19:18 -0700901}
902
Herbert Xu497c6152006-07-30 20:19:33 -0700903static struct dst_entry *ip6_sk_dst_check(struct sock *sk,
904 struct dst_entry *dst,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000905 const struct flowi6 *fl6)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906{
Herbert Xu497c6152006-07-30 20:19:33 -0700907 struct ipv6_pinfo *np = inet6_sk(sk);
908 struct rt6_info *rt = (struct rt6_info *)dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
Herbert Xu497c6152006-07-30 20:19:33 -0700910 if (!dst)
911 goto out;
912
913 /* Yes, checking route validity in not connected
914 * case is not very simple. Take into account,
915 * that we do not support routing by source, TOS,
916 * and MSG_DONTROUTE --ANK (980726)
917 *
YOSHIFUJI Hideakicf6b1982006-08-23 17:19:18 -0700918 * 1. ip6_rt_check(): If route was host route,
919 * check that cached destination is current.
Herbert Xu497c6152006-07-30 20:19:33 -0700920 * If it is network route, we still may
921 * check its validity using saved pointer
922 * to the last used address: daddr_cache.
923 * We do not want to save whole address now,
924 * (because main consumer of this service
925 * is tcp, which has not this problem),
926 * so that the last trick works only on connected
927 * sockets.
928 * 2. oif also should be the same.
929 */
David S. Miller4c9483b2011-03-12 16:22:43 -0500930 if (ip6_rt_check(&rt->rt6i_dst, &fl6->daddr, np->daddr_cache) ||
YOSHIFUJI Hideaki8e1ef0a2006-08-29 17:15:09 -0700931#ifdef CONFIG_IPV6_SUBTREES
David S. Miller4c9483b2011-03-12 16:22:43 -0500932 ip6_rt_check(&rt->rt6i_src, &fl6->saddr, np->saddr_cache) ||
YOSHIFUJI Hideaki8e1ef0a2006-08-29 17:15:09 -0700933#endif
David S. Miller4c9483b2011-03-12 16:22:43 -0500934 (fl6->flowi6_oif && fl6->flowi6_oif != dst->dev->ifindex)) {
Herbert Xu497c6152006-07-30 20:19:33 -0700935 dst_release(dst);
936 dst = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 }
938
Herbert Xu497c6152006-07-30 20:19:33 -0700939out:
940 return dst;
941}
942
943static int ip6_dst_lookup_tail(struct sock *sk,
David S. Miller4c9483b2011-03-12 16:22:43 -0500944 struct dst_entry **dst, struct flowi6 *fl6)
Herbert Xu497c6152006-07-30 20:19:33 -0700945{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900946 struct net *net = sock_net(sk);
David S. Miller69cce1d2011-07-17 23:09:49 -0700947#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
948 struct neighbour *n;
David S. Miller97cac082012-07-02 22:43:47 -0700949 struct rt6_info *rt;
David S. Miller69cce1d2011-07-17 23:09:49 -0700950#endif
951 int err;
Herbert Xu497c6152006-07-30 20:19:33 -0700952
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 if (*dst == NULL)
David S. Miller4c9483b2011-03-12 16:22:43 -0500954 *dst = ip6_route_output(net, sk, fl6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955
956 if ((err = (*dst)->error))
957 goto out_err_release;
958
David S. Miller4c9483b2011-03-12 16:22:43 -0500959 if (ipv6_addr_any(&fl6->saddr)) {
Daniel Walterc3968a82011-04-13 21:10:57 +0000960 struct rt6_info *rt = (struct rt6_info *) *dst;
961 err = ip6_route_get_saddr(net, rt, &fl6->daddr,
962 sk ? inet6_sk(sk)->srcprefs : 0,
963 &fl6->saddr);
Olaf Hering44456d32005-07-27 11:45:17 -0700964 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 goto out_err_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 }
967
Neil Horman95c385b2007-04-25 17:08:10 -0700968#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
Neil Hormane550dfb2008-09-09 13:51:35 -0700969 /*
970 * Here if the dst entry we've looked up
971 * has a neighbour entry that is in the INCOMPLETE
972 * state and the src address from the flow is
973 * marked as OPTIMISTIC, we release the found
974 * dst entry and replace it instead with the
975 * dst entry of the nexthop router
976 */
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000977 rcu_read_lock();
Eric Dumazetc56bf6f2012-07-06 09:19:05 +0200978 rt = (struct rt6_info *) *dst;
David S. Miller97cac082012-07-02 22:43:47 -0700979 n = rt->n;
David S. Miller69cce1d2011-07-17 23:09:49 -0700980 if (n && !(n->nud_state & NUD_VALID)) {
Neil Hormane550dfb2008-09-09 13:51:35 -0700981 struct inet6_ifaddr *ifp;
David S. Miller4c9483b2011-03-12 16:22:43 -0500982 struct flowi6 fl_gw6;
Neil Hormane550dfb2008-09-09 13:51:35 -0700983 int redirect;
Neil Horman95c385b2007-04-25 17:08:10 -0700984
Eric Dumazetf2c31e32011-07-29 19:00:53 +0000985 rcu_read_unlock();
David S. Miller4c9483b2011-03-12 16:22:43 -0500986 ifp = ipv6_get_ifaddr(net, &fl6->saddr,
Neil Hormane550dfb2008-09-09 13:51:35 -0700987 (*dst)->dev, 1);
Neil Horman95c385b2007-04-25 17:08:10 -0700988
Neil Hormane550dfb2008-09-09 13:51:35 -0700989 redirect = (ifp && ifp->flags & IFA_F_OPTIMISTIC);
990 if (ifp)
991 in6_ifa_put(ifp);
Neil Horman95c385b2007-04-25 17:08:10 -0700992
Neil Hormane550dfb2008-09-09 13:51:35 -0700993 if (redirect) {
994 /*
995 * We need to get the dst entry for the
996 * default router instead
997 */
998 dst_release(*dst);
David S. Miller4c9483b2011-03-12 16:22:43 -0500999 memcpy(&fl_gw6, fl6, sizeof(struct flowi6));
1000 memset(&fl_gw6.daddr, 0, sizeof(struct in6_addr));
1001 *dst = ip6_route_output(net, sk, &fl_gw6);
Neil Hormane550dfb2008-09-09 13:51:35 -07001002 if ((err = (*dst)->error))
1003 goto out_err_release;
Neil Horman95c385b2007-04-25 17:08:10 -07001004 }
Eric Dumazetf2c31e32011-07-29 19:00:53 +00001005 } else {
1006 rcu_read_unlock();
Neil Hormane550dfb2008-09-09 13:51:35 -07001007 }
Neil Horman95c385b2007-04-25 17:08:10 -07001008#endif
1009
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 return 0;
1011
1012out_err_release:
Mitsuru Chinenca46f9c2007-12-05 22:31:47 -08001013 if (err == -ENETUNREACH)
Denis V. Lunev483a47d2008-10-08 11:09:27 -07001014 IP6_INC_STATS_BH(net, NULL, IPSTATS_MIB_OUTNOROUTES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 dst_release(*dst);
1016 *dst = NULL;
1017 return err;
1018}
Adrian Bunk34a0b3c2005-11-29 16:28:56 -08001019
Herbert Xu497c6152006-07-30 20:19:33 -07001020/**
1021 * ip6_dst_lookup - perform route lookup on flow
1022 * @sk: socket which provides route info
1023 * @dst: pointer to dst_entry * for result
David S. Miller4c9483b2011-03-12 16:22:43 -05001024 * @fl6: flow to lookup
Herbert Xu497c6152006-07-30 20:19:33 -07001025 *
1026 * This function performs a route lookup on the given flow.
1027 *
1028 * It returns zero on success, or a standard errno code on error.
1029 */
David S. Miller4c9483b2011-03-12 16:22:43 -05001030int ip6_dst_lookup(struct sock *sk, struct dst_entry **dst, struct flowi6 *fl6)
Herbert Xu497c6152006-07-30 20:19:33 -07001031{
1032 *dst = NULL;
David S. Miller4c9483b2011-03-12 16:22:43 -05001033 return ip6_dst_lookup_tail(sk, dst, fl6);
Herbert Xu497c6152006-07-30 20:19:33 -07001034}
Arnaldo Carvalho de Melo3cf3dc62005-12-13 23:23:20 -08001035EXPORT_SYMBOL_GPL(ip6_dst_lookup);
1036
Herbert Xu497c6152006-07-30 20:19:33 -07001037/**
David S. Miller68d0c6d2011-03-01 13:19:07 -08001038 * ip6_dst_lookup_flow - perform route lookup on flow with ipsec
1039 * @sk: socket which provides route info
David S. Miller4c9483b2011-03-12 16:22:43 -05001040 * @fl6: flow to lookup
David S. Miller68d0c6d2011-03-01 13:19:07 -08001041 * @final_dst: final destination address for ipsec lookup
David S. Millera1414712011-03-01 14:32:04 -08001042 * @can_sleep: we are in a sleepable context
David S. Miller68d0c6d2011-03-01 13:19:07 -08001043 *
1044 * This function performs a route lookup on the given flow.
1045 *
1046 * It returns a valid dst pointer on success, or a pointer encoded
1047 * error code.
1048 */
David S. Miller4c9483b2011-03-12 16:22:43 -05001049struct dst_entry *ip6_dst_lookup_flow(struct sock *sk, struct flowi6 *fl6,
David S. Miller68d0c6d2011-03-01 13:19:07 -08001050 const struct in6_addr *final_dst,
David S. Millera1414712011-03-01 14:32:04 -08001051 bool can_sleep)
David S. Miller68d0c6d2011-03-01 13:19:07 -08001052{
1053 struct dst_entry *dst = NULL;
1054 int err;
1055
David S. Miller4c9483b2011-03-12 16:22:43 -05001056 err = ip6_dst_lookup_tail(sk, &dst, fl6);
David S. Miller68d0c6d2011-03-01 13:19:07 -08001057 if (err)
1058 return ERR_PTR(err);
1059 if (final_dst)
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001060 fl6->daddr = *final_dst;
David S. Miller2774c132011-03-01 14:59:04 -08001061 if (can_sleep)
David S. Miller4c9483b2011-03-12 16:22:43 -05001062 fl6->flowi6_flags |= FLOWI_FLAG_CAN_SLEEP;
David S. Miller2774c132011-03-01 14:59:04 -08001063
David S. Miller4c9483b2011-03-12 16:22:43 -05001064 return xfrm_lookup(sock_net(sk), dst, flowi6_to_flowi(fl6), sk, 0);
David S. Miller68d0c6d2011-03-01 13:19:07 -08001065}
1066EXPORT_SYMBOL_GPL(ip6_dst_lookup_flow);
1067
1068/**
1069 * ip6_sk_dst_lookup_flow - perform socket cached route lookup on flow
1070 * @sk: socket which provides the dst cache and route info
David S. Miller4c9483b2011-03-12 16:22:43 -05001071 * @fl6: flow to lookup
David S. Miller68d0c6d2011-03-01 13:19:07 -08001072 * @final_dst: final destination address for ipsec lookup
David S. Millera1414712011-03-01 14:32:04 -08001073 * @can_sleep: we are in a sleepable context
Herbert Xu497c6152006-07-30 20:19:33 -07001074 *
1075 * This function performs a route lookup on the given flow with the
1076 * possibility of using the cached route in the socket if it is valid.
1077 * It will take the socket dst lock when operating on the dst cache.
1078 * As a result, this function can only be used in process context.
1079 *
David S. Miller68d0c6d2011-03-01 13:19:07 -08001080 * It returns a valid dst pointer on success, or a pointer encoded
1081 * error code.
Herbert Xu497c6152006-07-30 20:19:33 -07001082 */
David S. Miller4c9483b2011-03-12 16:22:43 -05001083struct dst_entry *ip6_sk_dst_lookup_flow(struct sock *sk, struct flowi6 *fl6,
David S. Miller68d0c6d2011-03-01 13:19:07 -08001084 const struct in6_addr *final_dst,
David S. Millera1414712011-03-01 14:32:04 -08001085 bool can_sleep)
Herbert Xu497c6152006-07-30 20:19:33 -07001086{
David S. Miller68d0c6d2011-03-01 13:19:07 -08001087 struct dst_entry *dst = sk_dst_check(sk, inet6_sk(sk)->dst_cookie);
1088 int err;
Herbert Xu497c6152006-07-30 20:19:33 -07001089
David S. Miller4c9483b2011-03-12 16:22:43 -05001090 dst = ip6_sk_dst_check(sk, dst, fl6);
David S. Miller68d0c6d2011-03-01 13:19:07 -08001091
David S. Miller4c9483b2011-03-12 16:22:43 -05001092 err = ip6_dst_lookup_tail(sk, &dst, fl6);
David S. Miller68d0c6d2011-03-01 13:19:07 -08001093 if (err)
1094 return ERR_PTR(err);
1095 if (final_dst)
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001096 fl6->daddr = *final_dst;
David S. Miller2774c132011-03-01 14:59:04 -08001097 if (can_sleep)
David S. Miller4c9483b2011-03-12 16:22:43 -05001098 fl6->flowi6_flags |= FLOWI_FLAG_CAN_SLEEP;
David S. Miller2774c132011-03-01 14:59:04 -08001099
David S. Miller4c9483b2011-03-12 16:22:43 -05001100 return xfrm_lookup(sock_net(sk), dst, flowi6_to_flowi(fl6), sk, 0);
Herbert Xu497c6152006-07-30 20:19:33 -07001101}
David S. Miller68d0c6d2011-03-01 13:19:07 -08001102EXPORT_SYMBOL_GPL(ip6_sk_dst_lookup_flow);
Herbert Xu497c6152006-07-30 20:19:33 -07001103
Adrian Bunk34a0b3c2005-11-29 16:28:56 -08001104static inline int ip6_ufo_append_data(struct sock *sk,
Ananda Rajue89e9cf2005-10-18 15:46:41 -07001105 int getfrag(void *from, char *to, int offset, int len,
1106 int odd, struct sk_buff *skb),
1107 void *from, int length, int hh_len, int fragheaderlen,
Eric Dumazet87c48fa2011-07-21 21:25:58 -07001108 int transhdrlen, int mtu,unsigned int flags,
1109 struct rt6_info *rt)
Ananda Rajue89e9cf2005-10-18 15:46:41 -07001110
1111{
1112 struct sk_buff *skb;
1113 int err;
1114
1115 /* There is support for UDP large send offload by network
1116 * device, so create one single skb packet containing complete
1117 * udp datagram
1118 */
1119 if ((skb = skb_peek_tail(&sk->sk_write_queue)) == NULL) {
1120 skb = sock_alloc_send_skb(sk,
1121 hh_len + fragheaderlen + transhdrlen + 20,
1122 (flags & MSG_DONTWAIT), &err);
1123 if (skb == NULL)
Zheng Yan504744e2011-10-28 00:26:00 -04001124 return err;
Ananda Rajue89e9cf2005-10-18 15:46:41 -07001125
1126 /* reserve space for Hardware header */
1127 skb_reserve(skb, hh_len);
1128
1129 /* create space for UDP/IP header */
1130 skb_put(skb,fragheaderlen + transhdrlen);
1131
1132 /* initialize network header pointer */
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -07001133 skb_reset_network_header(skb);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07001134
1135 /* initialize protocol header pointer */
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07001136 skb->transport_header = skb->network_header + fragheaderlen;
Ananda Rajue89e9cf2005-10-18 15:46:41 -07001137
Patrick McHardy84fa7932006-08-29 16:44:56 -07001138 skb->ip_summed = CHECKSUM_PARTIAL;
Ananda Rajue89e9cf2005-10-18 15:46:41 -07001139 skb->csum = 0;
Ananda Rajue89e9cf2005-10-18 15:46:41 -07001140 }
1141
1142 err = skb_append_datato_frags(sk,skb, getfrag, from,
1143 (length - transhdrlen));
1144 if (!err) {
1145 struct frag_hdr fhdr;
1146
Sridhar Samudralac31d5322009-07-09 08:09:58 +00001147 /* Specify the length of each IPv6 datagram fragment.
1148 * It has to be a multiple of 8.
1149 */
1150 skb_shinfo(skb)->gso_size = (mtu - fragheaderlen -
1151 sizeof(struct frag_hdr)) & ~7;
Herbert Xuf83ef8c2006-06-30 13:37:03 -07001152 skb_shinfo(skb)->gso_type = SKB_GSO_UDP;
Eric Dumazet87c48fa2011-07-21 21:25:58 -07001153 ipv6_select_ident(&fhdr, rt);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07001154 skb_shinfo(skb)->ip6_frag_id = fhdr.identification;
1155 __skb_queue_tail(&sk->sk_write_queue, skb);
1156
1157 return 0;
1158 }
1159 /* There is not enough support do UPD LSO,
1160 * so follow normal path
1161 */
1162 kfree_skb(skb);
1163
1164 return err;
1165}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166
Herbert Xu0178b692009-02-05 15:15:50 -08001167static inline struct ipv6_opt_hdr *ip6_opt_dup(struct ipv6_opt_hdr *src,
1168 gfp_t gfp)
1169{
1170 return src ? kmemdup(src, (src->hdrlen + 1) * 8, gfp) : NULL;
1171}
1172
1173static inline struct ipv6_rt_hdr *ip6_rthdr_dup(struct ipv6_rt_hdr *src,
1174 gfp_t gfp)
1175{
1176 return src ? kmemdup(src, (src->hdrlen + 1) * 8, gfp) : NULL;
1177}
1178
Gao feng0c183372012-05-26 01:30:53 +00001179static void ip6_append_data_mtu(int *mtu,
1180 int *maxfraglen,
1181 unsigned int fragheaderlen,
1182 struct sk_buff *skb,
1183 struct rt6_info *rt)
1184{
1185 if (!(rt->dst.flags & DST_XFRM_TUNNEL)) {
1186 if (skb == NULL) {
1187 /* first fragment, reserve header_len */
1188 *mtu = *mtu - rt->dst.header_len;
1189
1190 } else {
1191 /*
1192 * this fragment is not first, the headers
1193 * space is regarded as data space.
1194 */
1195 *mtu = dst_mtu(rt->dst.path);
1196 }
1197 *maxfraglen = ((*mtu - fragheaderlen) & ~7)
1198 + fragheaderlen - sizeof(struct frag_hdr);
1199 }
1200}
1201
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +09001202int ip6_append_data(struct sock *sk, int getfrag(void *from, char *to,
1203 int offset, int len, int odd, struct sk_buff *skb),
1204 void *from, int length, int transhdrlen,
David S. Miller4c9483b2011-03-12 16:22:43 -05001205 int hlimit, int tclass, struct ipv6_txoptions *opt, struct flowi6 *fl6,
Brian Haley13b52cd2010-04-23 11:26:08 +00001206 struct rt6_info *rt, unsigned int flags, int dontfrag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207{
1208 struct inet_sock *inet = inet_sk(sk);
1209 struct ipv6_pinfo *np = inet6_sk(sk);
David S. Millerbdc712b2011-05-06 15:02:07 -07001210 struct inet_cork *cork;
Gao feng0c183372012-05-26 01:30:53 +00001211 struct sk_buff *skb, *skb_prev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 unsigned int maxfraglen, fragheaderlen;
1213 int exthdrlen;
Steffen Klassert299b0762011-10-11 01:43:33 +00001214 int dst_exthdrlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 int hh_len;
1216 int mtu;
1217 int copy;
1218 int err;
1219 int offset = 0;
Anders Berggrena693e692011-02-28 12:32:11 -08001220 __u8 tx_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
1222 if (flags&MSG_PROBE)
1223 return 0;
David S. Millerbdc712b2011-05-06 15:02:07 -07001224 cork = &inet->cork.base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 if (skb_queue_empty(&sk->sk_write_queue)) {
1226 /*
1227 * setup for corking
1228 */
1229 if (opt) {
Herbert Xu0178b692009-02-05 15:15:50 -08001230 if (WARN_ON(np->cork.opt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 return -EINVAL;
Herbert Xu0178b692009-02-05 15:15:50 -08001232
1233 np->cork.opt = kmalloc(opt->tot_len, sk->sk_allocation);
1234 if (unlikely(np->cork.opt == NULL))
1235 return -ENOBUFS;
1236
1237 np->cork.opt->tot_len = opt->tot_len;
1238 np->cork.opt->opt_flen = opt->opt_flen;
1239 np->cork.opt->opt_nflen = opt->opt_nflen;
1240
1241 np->cork.opt->dst0opt = ip6_opt_dup(opt->dst0opt,
1242 sk->sk_allocation);
1243 if (opt->dst0opt && !np->cork.opt->dst0opt)
1244 return -ENOBUFS;
1245
1246 np->cork.opt->dst1opt = ip6_opt_dup(opt->dst1opt,
1247 sk->sk_allocation);
1248 if (opt->dst1opt && !np->cork.opt->dst1opt)
1249 return -ENOBUFS;
1250
1251 np->cork.opt->hopopt = ip6_opt_dup(opt->hopopt,
1252 sk->sk_allocation);
1253 if (opt->hopopt && !np->cork.opt->hopopt)
1254 return -ENOBUFS;
1255
1256 np->cork.opt->srcrt = ip6_rthdr_dup(opt->srcrt,
1257 sk->sk_allocation);
1258 if (opt->srcrt && !np->cork.opt->srcrt)
1259 return -ENOBUFS;
1260
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 /* need source address above miyazawa*/
1262 }
Changli Gaod8d1f302010-06-10 23:31:35 -07001263 dst_hold(&rt->dst);
David S. Millerbdc712b2011-05-06 15:02:07 -07001264 cork->dst = &rt->dst;
David S. Miller4c9483b2011-03-12 16:22:43 -05001265 inet->cork.fl.u.ip6 = *fl6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 np->cork.hop_limit = hlimit;
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +09001267 np->cork.tclass = tclass;
Gao feng0c183372012-05-26 01:30:53 +00001268 if (rt->dst.flags & DST_XFRM_TUNNEL)
1269 mtu = np->pmtudisc == IPV6_PMTUDISC_PROBE ?
1270 rt->dst.dev->mtu : dst_mtu(&rt->dst);
1271 else
1272 mtu = np->pmtudisc == IPV6_PMTUDISC_PROBE ?
1273 rt->dst.dev->mtu : dst_mtu(rt->dst.path);
Dave Jonesc7503602006-03-20 22:44:52 -08001274 if (np->frag_size < mtu) {
YOSHIFUJI Hideakid91675f2006-02-24 13:18:33 -08001275 if (np->frag_size)
1276 mtu = np->frag_size;
1277 }
David S. Millerbdc712b2011-05-06 15:02:07 -07001278 cork->fragsize = mtu;
Changli Gaod8d1f302010-06-10 23:31:35 -07001279 if (dst_allfrag(rt->dst.path))
David S. Millerbdc712b2011-05-06 15:02:07 -07001280 cork->flags |= IPCORK_ALLFRAG;
1281 cork->length = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 sk->sk_sndmsg_page = NULL;
1283 sk->sk_sndmsg_off = 0;
Steffen Klassert299b0762011-10-11 01:43:33 +00001284 exthdrlen = (opt ? opt->opt_flen : 0) - rt->rt6i_nfheader_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 length += exthdrlen;
1286 transhdrlen += exthdrlen;
Steffen Klassert299b0762011-10-11 01:43:33 +00001287 dst_exthdrlen = rt->dst.header_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 } else {
David S. Millerbdc712b2011-05-06 15:02:07 -07001289 rt = (struct rt6_info *)cork->dst;
David S. Miller4c9483b2011-03-12 16:22:43 -05001290 fl6 = &inet->cork.fl.u.ip6;
Herbert Xu0178b692009-02-05 15:15:50 -08001291 opt = np->cork.opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 transhdrlen = 0;
1293 exthdrlen = 0;
Steffen Klassert299b0762011-10-11 01:43:33 +00001294 dst_exthdrlen = 0;
David S. Millerbdc712b2011-05-06 15:02:07 -07001295 mtu = cork->fragsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 }
1297
Changli Gaod8d1f302010-06-10 23:31:35 -07001298 hh_len = LL_RESERVED_SPACE(rt->dst.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001300 fragheaderlen = sizeof(struct ipv6hdr) + rt->rt6i_nfheader_len +
Herbert Xub4ce9272007-11-13 21:33:32 -08001301 (opt ? opt->opt_nflen : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 maxfraglen = ((mtu - fragheaderlen) & ~7) + fragheaderlen - sizeof(struct frag_hdr);
1303
1304 if (mtu <= sizeof(struct ipv6hdr) + IPV6_MAXPLEN) {
David S. Millerbdc712b2011-05-06 15:02:07 -07001305 if (cork->length + length > sizeof(struct ipv6hdr) + IPV6_MAXPLEN - fragheaderlen) {
David S. Miller4c9483b2011-03-12 16:22:43 -05001306 ipv6_local_error(sk, EMSGSIZE, fl6, mtu-exthdrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 return -EMSGSIZE;
1308 }
1309 }
1310
Anders Berggrena693e692011-02-28 12:32:11 -08001311 /* For UDP, check if TX timestamp is enabled */
1312 if (sk->sk_type == SOCK_DGRAM) {
1313 err = sock_tx_timestamp(sk, &tx_flags);
1314 if (err)
1315 goto error;
1316 }
1317
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
David S. Millerbdc712b2011-05-06 15:02:07 -07001334 cork->length += length;
Brian Haley4b340ae2010-04-23 11:26:09 +00001335 if (length > mtu) {
1336 int proto = sk->sk_protocol;
1337 if (dontfrag && (proto == IPPROTO_UDP || proto == IPPROTO_RAW)){
David S. Miller4c9483b2011-03-12 16:22:43 -05001338 ipv6_local_rxpmtu(sk, fl6, mtu-exthdrlen);
Brian Haley4b340ae2010-04-23 11:26:09 +00001339 return -EMSGSIZE;
1340 }
Ananda Rajue89e9cf2005-10-18 15:46:41 -07001341
Brian Haley4b340ae2010-04-23 11:26:09 +00001342 if (proto == IPPROTO_UDP &&
Changli Gaod8d1f302010-06-10 23:31:35 -07001343 (rt->dst.dev->features & NETIF_F_UFO)) {
Brian Haley4b340ae2010-04-23 11:26:09 +00001344
1345 err = ip6_ufo_append_data(sk, getfrag, from, length,
1346 hh_len, fragheaderlen,
Eric Dumazet87c48fa2011-07-21 21:25:58 -07001347 transhdrlen, mtu, flags, rt);
Brian Haley4b340ae2010-04-23 11:26:09 +00001348 if (err)
1349 goto error;
1350 return 0;
1351 }
Ananda Rajue89e9cf2005-10-18 15:46:41 -07001352 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
1354 if ((skb = skb_peek_tail(&sk->sk_write_queue)) == NULL)
1355 goto alloc_new_skb;
1356
1357 while (length > 0) {
1358 /* Check if the remaining data fits into current packet. */
David S. Millerbdc712b2011-05-06 15:02:07 -07001359 copy = (cork->length <= mtu && !(cork->flags & IPCORK_ALLFRAG) ? mtu : maxfraglen) - skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 if (copy < length)
1361 copy = maxfraglen - skb->len;
1362
1363 if (copy <= 0) {
1364 char *data;
1365 unsigned int datalen;
1366 unsigned int fraglen;
1367 unsigned int fraggap;
1368 unsigned int alloclen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369alloc_new_skb:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 /* There's no room in the current skb */
Gao feng0c183372012-05-26 01:30:53 +00001371 if (skb)
1372 fraggap = skb->len - maxfraglen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 else
1374 fraggap = 0;
Gao feng0c183372012-05-26 01:30:53 +00001375 /* update mtu and maxfraglen if necessary */
1376 if (skb == NULL || skb_prev == NULL)
1377 ip6_append_data_mtu(&mtu, &maxfraglen,
1378 fragheaderlen, skb, rt);
1379
1380 skb_prev = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381
1382 /*
1383 * If remaining data exceeds the mtu,
1384 * we know we need more fragment(s).
1385 */
1386 datalen = length + fraggap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387
Gao feng0c183372012-05-26 01:30:53 +00001388 if (datalen > (cork->length <= mtu && !(cork->flags & IPCORK_ALLFRAG) ? mtu : maxfraglen) - fragheaderlen)
1389 datalen = maxfraglen - fragheaderlen - rt->dst.trailer_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 if ((flags & MSG_MORE) &&
Changli Gaod8d1f302010-06-10 23:31:35 -07001391 !(rt->dst.dev->features&NETIF_F_SG))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 alloclen = mtu;
1393 else
1394 alloclen = datalen + fragheaderlen;
1395
Steffen Klassert299b0762011-10-11 01:43:33 +00001396 alloclen += dst_exthdrlen;
1397
Gao feng0c183372012-05-26 01:30:53 +00001398 if (datalen != length + fraggap) {
1399 /*
1400 * this is not the last fragment, the trailer
1401 * space is regarded as data space.
1402 */
1403 datalen += rt->dst.trailer_len;
1404 }
1405
1406 alloclen += rt->dst.trailer_len;
1407 fraglen = datalen + fragheaderlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408
1409 /*
1410 * We just reserve space for fragment header.
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001411 * Note: this may be overallocation if the message
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 * (without MSG_MORE) fits into the MTU.
1413 */
1414 alloclen += sizeof(struct frag_hdr);
1415
1416 if (transhdrlen) {
1417 skb = sock_alloc_send_skb(sk,
1418 alloclen + hh_len,
1419 (flags & MSG_DONTWAIT), &err);
1420 } else {
1421 skb = NULL;
1422 if (atomic_read(&sk->sk_wmem_alloc) <=
1423 2 * sk->sk_sndbuf)
1424 skb = sock_wmalloc(sk,
1425 alloclen + hh_len, 1,
1426 sk->sk_allocation);
1427 if (unlikely(skb == NULL))
1428 err = -ENOBUFS;
Anders Berggrena693e692011-02-28 12:32:11 -08001429 else {
1430 /* Only the initial fragment
1431 * is time stamped.
1432 */
1433 tx_flags = 0;
1434 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 }
1436 if (skb == NULL)
1437 goto error;
1438 /*
1439 * Fill in the control structures
1440 */
Eric Dumazetd7f7c0a2012-05-18 05:37:56 +00001441 skb->ip_summed = CHECKSUM_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 skb->csum = 0;
Gao feng1f858512012-03-19 22:36:10 +00001443 /* reserve for fragmentation and ipsec header */
1444 skb_reserve(skb, hh_len + sizeof(struct frag_hdr) +
1445 dst_exthdrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
Anders Berggrena693e692011-02-28 12:32:11 -08001447 if (sk->sk_type == SOCK_DGRAM)
1448 skb_shinfo(skb)->tx_flags = tx_flags;
1449
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 /*
1451 * Find where to start putting bytes
1452 */
Gao feng1f858512012-03-19 22:36:10 +00001453 data = skb_put(skb, fraglen);
1454 skb_set_network_header(skb, exthdrlen);
1455 data += fragheaderlen;
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07001456 skb->transport_header = (skb->network_header +
1457 fragheaderlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 if (fraggap) {
1459 skb->csum = skb_copy_and_csum_bits(
1460 skb_prev, maxfraglen,
1461 data + transhdrlen, fraggap, 0);
1462 skb_prev->csum = csum_sub(skb_prev->csum,
1463 skb->csum);
1464 data += fraggap;
Herbert Xue9fa4f72006-08-13 20:12:58 -07001465 pskb_trim_unique(skb_prev, maxfraglen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 }
1467 copy = datalen - transhdrlen - fraggap;
Steffen Klassert299b0762011-10-11 01:43:33 +00001468
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 if (copy < 0) {
1470 err = -EINVAL;
1471 kfree_skb(skb);
1472 goto error;
1473 } else if (copy > 0 && getfrag(from, data + transhdrlen, offset, copy, fraggap, skb) < 0) {
1474 err = -EFAULT;
1475 kfree_skb(skb);
1476 goto error;
1477 }
1478
1479 offset += copy;
1480 length -= datalen - fraggap;
1481 transhdrlen = 0;
1482 exthdrlen = 0;
Steffen Klassert299b0762011-10-11 01:43:33 +00001483 dst_exthdrlen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484
1485 /*
1486 * Put the packet on the pending queue
1487 */
1488 __skb_queue_tail(&sk->sk_write_queue, skb);
1489 continue;
1490 }
1491
1492 if (copy > length)
1493 copy = length;
1494
Changli Gaod8d1f302010-06-10 23:31:35 -07001495 if (!(rt->dst.dev->features&NETIF_F_SG)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 unsigned int off;
1497
1498 off = skb->len;
1499 if (getfrag(from, skb_put(skb, copy),
1500 offset, copy, off, skb) < 0) {
1501 __skb_trim(skb, off);
1502 err = -EFAULT;
1503 goto error;
1504 }
1505 } else {
1506 int i = skb_shinfo(skb)->nr_frags;
1507 skb_frag_t *frag = &skb_shinfo(skb)->frags[i-1];
1508 struct page *page = sk->sk_sndmsg_page;
1509 int off = sk->sk_sndmsg_off;
1510 unsigned int left;
1511
1512 if (page && (left = PAGE_SIZE - off) > 0) {
1513 if (copy >= left)
1514 copy = left;
Ian Campbell408dadf2011-08-22 23:45:00 +00001515 if (page != skb_frag_page(frag)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 if (i == MAX_SKB_FRAGS) {
1517 err = -EMSGSIZE;
1518 goto error;
1519 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 skb_fill_page_desc(skb, i, page, sk->sk_sndmsg_off, 0);
Ian Campbell408dadf2011-08-22 23:45:00 +00001521 skb_frag_ref(skb, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 frag = &skb_shinfo(skb)->frags[i];
1523 }
1524 } else if(i < MAX_SKB_FRAGS) {
1525 if (copy > PAGE_SIZE)
1526 copy = PAGE_SIZE;
1527 page = alloc_pages(sk->sk_allocation, 0);
1528 if (page == NULL) {
1529 err = -ENOMEM;
1530 goto error;
1531 }
1532 sk->sk_sndmsg_page = page;
1533 sk->sk_sndmsg_off = 0;
1534
1535 skb_fill_page_desc(skb, i, page, 0, 0);
1536 frag = &skb_shinfo(skb)->frags[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 } else {
1538 err = -EMSGSIZE;
1539 goto error;
1540 }
Eric Dumazet9e903e02011-10-18 21:00:24 +00001541 if (getfrag(from,
1542 skb_frag_address(frag) + skb_frag_size(frag),
Ian Campbell408dadf2011-08-22 23:45:00 +00001543 offset, copy, skb->len, skb) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 err = -EFAULT;
1545 goto error;
1546 }
1547 sk->sk_sndmsg_off += copy;
Eric Dumazet9e903e02011-10-18 21:00:24 +00001548 skb_frag_size_add(frag, copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 skb->len += copy;
1550 skb->data_len += copy;
Herbert Xuf945fa72008-01-22 22:39:26 -08001551 skb->truesize += copy;
1552 atomic_add(copy, &sk->sk_wmem_alloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 }
1554 offset += copy;
1555 length -= copy;
1556 }
1557 return 0;
1558error:
David S. Millerbdc712b2011-05-06 15:02:07 -07001559 cork->length -= length;
Denis V. Lunev3bd653c2008-10-08 10:54:51 -07001560 IP6_INC_STATS(sock_net(sk), rt->rt6i_idev, IPSTATS_MIB_OUTDISCARDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 return err;
1562}
Chris Elstona495f832012-04-29 21:48:53 +00001563EXPORT_SYMBOL_GPL(ip6_append_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564
Pavel Emelyanovbf138862007-11-05 21:04:31 -08001565static void ip6_cork_release(struct inet_sock *inet, struct ipv6_pinfo *np)
1566{
Herbert Xu0178b692009-02-05 15:15:50 -08001567 if (np->cork.opt) {
1568 kfree(np->cork.opt->dst0opt);
1569 kfree(np->cork.opt->dst1opt);
1570 kfree(np->cork.opt->hopopt);
1571 kfree(np->cork.opt->srcrt);
1572 kfree(np->cork.opt);
1573 np->cork.opt = NULL;
1574 }
1575
David S. Millerbdc712b2011-05-06 15:02:07 -07001576 if (inet->cork.base.dst) {
1577 dst_release(inet->cork.base.dst);
1578 inet->cork.base.dst = NULL;
1579 inet->cork.base.flags &= ~IPCORK_ALLFRAG;
Pavel Emelyanovbf138862007-11-05 21:04:31 -08001580 }
1581 memset(&inet->cork.fl, 0, sizeof(inet->cork.fl));
1582}
1583
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584int ip6_push_pending_frames(struct sock *sk)
1585{
1586 struct sk_buff *skb, *tmp_skb;
1587 struct sk_buff **tail_skb;
1588 struct in6_addr final_dst_buf, *final_dst = &final_dst_buf;
1589 struct inet_sock *inet = inet_sk(sk);
1590 struct ipv6_pinfo *np = inet6_sk(sk);
Denis V. Lunev3bd653c2008-10-08 10:54:51 -07001591 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 struct ipv6hdr *hdr;
1593 struct ipv6_txoptions *opt = np->cork.opt;
David S. Millerbdc712b2011-05-06 15:02:07 -07001594 struct rt6_info *rt = (struct rt6_info *)inet->cork.base.dst;
David S. Miller4c9483b2011-03-12 16:22:43 -05001595 struct flowi6 *fl6 = &inet->cork.fl.u.ip6;
1596 unsigned char proto = fl6->flowi6_proto;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 int err = 0;
1598
1599 if ((skb = __skb_dequeue(&sk->sk_write_queue)) == NULL)
1600 goto out;
1601 tail_skb = &(skb_shinfo(skb)->frag_list);
1602
1603 /* move skb->data to ip header from ext header */
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -07001604 if (skb->data < skb_network_header(skb))
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -03001605 __skb_pull(skb, skb_network_offset(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 while ((tmp_skb = __skb_dequeue(&sk->sk_write_queue)) != NULL) {
Arnaldo Carvalho de Melocfe1fc72007-03-16 17:26:39 -03001607 __skb_pull(tmp_skb, skb_network_header_len(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 *tail_skb = tmp_skb;
1609 tail_skb = &(tmp_skb->next);
1610 skb->len += tmp_skb->len;
1611 skb->data_len += tmp_skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 skb->truesize += tmp_skb->truesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 tmp_skb->destructor = NULL;
1614 tmp_skb->sk = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 }
1616
Herbert Xu28a894532008-02-12 18:07:27 -08001617 /* Allow local fragmentation. */
Herbert Xub5c15fc2008-02-14 23:49:37 -08001618 if (np->pmtudisc < IPV6_PMTUDISC_DO)
Herbert Xu28a894532008-02-12 18:07:27 -08001619 skb->local_df = 1;
1620
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001621 *final_dst = fl6->daddr;
Arnaldo Carvalho de Melocfe1fc72007-03-16 17:26:39 -03001622 __skb_pull(skb, skb_network_header_len(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 if (opt && opt->opt_flen)
1624 ipv6_push_frag_opts(skb, opt, &proto);
1625 if (opt && opt->opt_nflen)
1626 ipv6_push_nfrag_opts(skb, opt, &proto, &final_dst);
1627
Arnaldo Carvalho de Meloe2d1bca2007-04-10 20:46:21 -07001628 skb_push(skb, sizeof(struct ipv6hdr));
1629 skb_reset_network_header(skb);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001630 hdr = ipv6_hdr(skb);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001631
David S. Miller4c9483b2011-03-12 16:22:43 -05001632 *(__be32*)hdr = fl6->flowlabel |
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +09001633 htonl(0x60000000 | ((int)np->cork.tclass << 20));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 hdr->hop_limit = np->cork.hop_limit;
1636 hdr->nexthdr = proto;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001637 hdr->saddr = fl6->saddr;
1638 hdr->daddr = *final_dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639
Patrick McHardya2c20642006-01-08 22:37:26 -08001640 skb->priority = sk->sk_priority;
Laszlo Attila Toth4a19ec52008-01-30 19:08:16 -08001641 skb->mark = sk->sk_mark;
Patrick McHardya2c20642006-01-08 22:37:26 -08001642
Changli Gaod8d1f302010-06-10 23:31:35 -07001643 skb_dst_set(skb, dst_clone(&rt->dst));
Neil Hormanedf391f2009-04-27 02:45:02 -07001644 IP6_UPD_PO_STATS(net, rt->rt6i_idev, IPSTATS_MIB_OUT, skb->len);
David L Stevens14878f72007-09-16 16:52:35 -07001645 if (proto == IPPROTO_ICMPV6) {
Eric Dumazetadf30902009-06-02 05:19:30 +00001646 struct inet6_dev *idev = ip6_dst_idev(skb_dst(skb));
David L Stevens14878f72007-09-16 16:52:35 -07001647
Denis V. Lunev5a57d4c2008-10-08 10:34:14 -07001648 ICMP6MSGOUT_INC_STATS_BH(net, idev, icmp6_hdr(skb)->icmp6_type);
Denis V. Luneve41b5362008-10-08 10:33:26 -07001649 ICMP6_INC_STATS_BH(net, idev, ICMP6_MIB_OUTMSGS);
David L Stevens14878f72007-09-16 16:52:35 -07001650 }
1651
Herbert Xuef76bc22008-01-11 19:15:08 -08001652 err = ip6_local_out(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 if (err) {
1654 if (err > 0)
Eric Dumazet6ce9e7b2009-09-02 18:05:33 -07001655 err = net_xmit_errno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 if (err)
1657 goto error;
1658 }
1659
1660out:
Pavel Emelyanovbf138862007-11-05 21:04:31 -08001661 ip6_cork_release(inet, np);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 return err;
1663error:
Eric Dumazet06254912009-09-01 18:37:16 -07001664 IP6_INC_STATS(net, rt->rt6i_idev, IPSTATS_MIB_OUTDISCARDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 goto out;
1666}
Chris Elstona495f832012-04-29 21:48:53 +00001667EXPORT_SYMBOL_GPL(ip6_push_pending_frames);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668
1669void ip6_flush_pending_frames(struct sock *sk)
1670{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 struct sk_buff *skb;
1672
1673 while ((skb = __skb_dequeue_tail(&sk->sk_write_queue)) != NULL) {
Eric Dumazetadf30902009-06-02 05:19:30 +00001674 if (skb_dst(skb))
1675 IP6_INC_STATS(sock_net(sk), ip6_dst_idev(skb_dst(skb)),
YOSHIFUJI Hideakie1f522082007-09-11 11:31:43 +02001676 IPSTATS_MIB_OUTDISCARDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 kfree_skb(skb);
1678 }
1679
Pavel Emelyanovbf138862007-11-05 21:04:31 -08001680 ip6_cork_release(inet_sk(sk), inet6_sk(sk));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681}
Chris Elstona495f832012-04-29 21:48:53 +00001682EXPORT_SYMBOL_GPL(ip6_flush_pending_frames);