blob: 16c4391f952b5a2bbe6eaa4a66ca0c7a31a86062 [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
59static int ip6_fragment(struct sk_buff *skb, int (*output)(struct sk_buff *));
60
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
Eric Dumazetadf30902009-06-02 05:19:30 +000070 return nf_hook(PF_INET6, NF_INET_LOCAL_OUT, skb, NULL, skb_dst(skb)->dev,
Herbert Xuef76bc22008-01-11 19:15:08 -080071 dst_output);
72}
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
Patrick McHardyad643a72007-10-15 01:51:38 -070086static int ip6_output_finish(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
Stephen Hemminger3644f0c2006-12-07 15:08:17 -080090 if (dst->hh)
91 return neigh_hh_output(dst->hh, skb);
92 else if (dst->neighbour)
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 return dst->neighbour->output(skb);
94
Denis V. Lunev483a47d2008-10-08 11:09:27 -070095 IP6_INC_STATS_BH(dev_net(dst->dev),
96 ip6_dst_idev(dst), IPSTATS_MIB_OUTNOROUTES);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 kfree_skb(skb);
98 return -EINVAL;
99
100}
101
102/* dev_loopback_xmit for use with netfilter. */
103static int ip6_dev_loopback_xmit(struct sk_buff *newskb)
104{
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -0700105 skb_reset_mac_header(newskb);
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -0300106 __skb_pull(newskb, skb_network_offset(newskb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 newskb->pkt_type = PACKET_LOOPBACK;
108 newskb->ip_summed = CHECKSUM_UNNECESSARY;
Eric Dumazetadf30902009-06-02 05:19:30 +0000109 WARN_ON(!skb_dst(newskb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111 netif_rx(newskb);
112 return 0;
113}
114
115
116static int ip6_output2(struct sk_buff *skb)
117{
Eric Dumazetadf30902009-06-02 05:19:30 +0000118 struct dst_entry *dst = skb_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 struct net_device *dev = dst->dev;
120
121 skb->protocol = htons(ETH_P_IPV6);
122 skb->dev = dev;
123
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700124 if (ipv6_addr_is_multicast(&ipv6_hdr(skb)->daddr)) {
Eric Dumazetadf30902009-06-02 05:19:30 +0000125 struct inet6_dev *idev = ip6_dst_idev(skb_dst(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
Octavian Purdila7ad68482010-01-06 20:37:01 -0800127 if (!(dev->flags & IFF_LOOPBACK) && sk_mc_loop(skb->sk) &&
Benjamin Therybd91b8b2008-12-10 16:07:08 -0800128 ((mroute6_socket(dev_net(dev)) &&
129 !(IP6CB(skb)->flags & IP6SKB_FORWARDED)) ||
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +0900130 ipv6_chk_mcast_addr(dev, &ipv6_hdr(skb)->daddr,
131 &ipv6_hdr(skb)->saddr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 struct sk_buff *newskb = skb_clone(skb, GFP_ATOMIC);
133
134 /* Do not check for IFF_ALLMULTI; multicast routing
135 is not supported in any case.
136 */
137 if (newskb)
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800138 NF_HOOK(PF_INET6, NF_INET_POST_ROUTING, newskb,
139 NULL, newskb->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 ip6_dev_loopback_xmit);
141
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700142 if (ipv6_hdr(skb)->hop_limit == 0) {
Denis V. Lunev3bd653c2008-10-08 10:54:51 -0700143 IP6_INC_STATS(dev_net(dev), idev,
144 IPSTATS_MIB_OUTDISCARDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 kfree_skb(skb);
146 return 0;
147 }
148 }
149
Neil Hormanedf391f2009-04-27 02:45:02 -0700150 IP6_UPD_PO_STATS(dev_net(dev), idev, IPSTATS_MIB_OUTMCAST,
151 skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 }
153
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800154 return NF_HOOK(PF_INET6, NF_INET_POST_ROUTING, skb, NULL, skb->dev,
155 ip6_output_finish);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156}
157
John Heffner628a5c52007-04-20 15:53:27 -0700158static inline int ip6_skb_dst_mtu(struct sk_buff *skb)
159{
160 struct ipv6_pinfo *np = skb->sk ? inet6_sk(skb->sk) : NULL;
161
162 return (np && np->pmtudisc == IPV6_PMTUDISC_PROBE) ?
Eric Dumazetadf30902009-06-02 05:19:30 +0000163 skb_dst(skb)->dev->mtu : dst_mtu(skb_dst(skb));
John Heffner628a5c52007-04-20 15:53:27 -0700164}
165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166int ip6_output(struct sk_buff *skb)
167{
Eric Dumazetadf30902009-06-02 05:19:30 +0000168 struct inet6_dev *idev = ip6_dst_idev(skb_dst(skb));
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +0900169 if (unlikely(idev->cnf.disable_ipv6)) {
Eric Dumazetadf30902009-06-02 05:19:30 +0000170 IP6_INC_STATS(dev_net(skb_dst(skb)->dev), idev,
Denis V. Lunev3bd653c2008-10-08 10:54:51 -0700171 IPSTATS_MIB_OUTDISCARDS);
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +0900172 kfree_skb(skb);
173 return 0;
174 }
175
John Heffner628a5c52007-04-20 15:53:27 -0700176 if ((skb->len > ip6_skb_dst_mtu(skb) && !skb_is_gso(skb)) ||
Eric Dumazetadf30902009-06-02 05:19:30 +0000177 dst_allfrag(skb_dst(skb)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 return ip6_fragment(skb, ip6_output2);
179 else
180 return ip6_output2(skb);
181}
182
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183/*
184 * xmit an sk_buff (used by TCP)
185 */
186
187int ip6_xmit(struct sock *sk, struct sk_buff *skb, struct flowi *fl,
188 struct ipv6_txoptions *opt, int ipfragok)
189{
Denis V. Lunev3bd653c2008-10-08 10:54:51 -0700190 struct net *net = sock_net(sk);
Patrick McHardyb30bd282006-03-23 01:17:25 -0800191 struct ipv6_pinfo *np = inet6_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 struct in6_addr *first_hop = &fl->fl6_dst;
Eric Dumazetadf30902009-06-02 05:19:30 +0000193 struct dst_entry *dst = skb_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 struct ipv6hdr *hdr;
195 u8 proto = fl->proto;
196 int seg_len = skb->len;
Gerrit Renkere651f032009-08-09 08:12:48 +0000197 int hlimit = -1;
198 int tclass = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 u32 mtu;
200
201 if (opt) {
Chuck Leverc2636b42007-10-23 21:07:32 -0700202 unsigned int head_room;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
204 /* First: exthdrs may take lots of space (~8K for now)
205 MAX_HEADER is not enough.
206 */
207 head_room = opt->opt_nflen + opt->opt_flen;
208 seg_len += head_room;
209 head_room += sizeof(struct ipv6hdr) + LL_RESERVED_SPACE(dst->dev);
210
211 if (skb_headroom(skb) < head_room) {
212 struct sk_buff *skb2 = skb_realloc_headroom(skb, head_room);
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900213 if (skb2 == NULL) {
Eric Dumazetadf30902009-06-02 05:19:30 +0000214 IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)),
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900215 IPSTATS_MIB_OUTDISCARDS);
216 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 return -ENOBUFS;
218 }
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900219 kfree_skb(skb);
220 skb = skb2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 if (sk)
222 skb_set_owner_w(skb, sk);
223 }
224 if (opt->opt_flen)
225 ipv6_push_frag_opts(skb, opt, &proto);
226 if (opt->opt_nflen)
227 ipv6_push_nfrag_opts(skb, opt, &proto, &first_hop);
228 }
229
Arnaldo Carvalho de Meloe2d1bca2007-04-10 20:46:21 -0700230 skb_push(skb, sizeof(struct ipv6hdr));
231 skb_reset_network_header(skb);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700232 hdr = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Wei Yongjun77e2f142008-07-31 20:46:47 -0700234 /* Allow local fragmentation. */
235 if (ipfragok)
236 skb->local_df = 1;
237
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 /*
239 * Fill in the IPv6 header
240 */
Gerrit Renkere651f032009-08-09 08:12:48 +0000241 if (np) {
242 tclass = np->tclass;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 hlimit = np->hop_limit;
Gerrit Renkere651f032009-08-09 08:12:48 +0000244 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 if (hlimit < 0)
YOSHIFUJI Hideaki6b75d092008-03-10 06:00:30 -0400246 hlimit = ip6_dst_hoplimit(dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Al Viro90bcaf72006-11-08 00:25:17 -0800248 *(__be32 *)hdr = htonl(0x60000000 | (tclass << 20)) | fl->fl6_flowlabel;
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 hdr->payload_len = htons(seg_len);
251 hdr->nexthdr = proto;
252 hdr->hop_limit = hlimit;
253
254 ipv6_addr_copy(&hdr->saddr, &fl->fl6_src);
255 ipv6_addr_copy(&hdr->daddr, first_hop);
256
Patrick McHardya2c20642006-01-08 22:37:26 -0800257 skb->priority = sk->sk_priority;
Laszlo Attila Toth4a19ec52008-01-30 19:08:16 -0800258 skb->mark = sk->sk_mark;
Patrick McHardya2c20642006-01-08 22:37:26 -0800259
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 mtu = dst_mtu(dst);
Wei Yongjun283d07ac2008-08-03 21:15:59 -0700261 if ((skb->len <= mtu) || skb->local_df || skb_is_gso(skb)) {
Eric Dumazetadf30902009-06-02 05:19:30 +0000262 IP6_UPD_PO_STATS(net, ip6_dst_idev(skb_dst(skb)),
Neil Hormanedf391f2009-04-27 02:45:02 -0700263 IPSTATS_MIB_OUT, skb->len);
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800264 return NF_HOOK(PF_INET6, NF_INET_LOCAL_OUT, skb, NULL, dst->dev,
Harald Welte6869c4d2005-08-09 19:24:19 -0700265 dst_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 }
267
268 if (net_ratelimit())
269 printk(KERN_DEBUG "IPv6: sending pkt_too_big to self\n");
270 skb->dev = dst->dev;
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +0000271 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
Eric Dumazetadf30902009-06-02 05:19:30 +0000272 IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)), IPSTATS_MIB_FRAGFAILS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 kfree_skb(skb);
274 return -EMSGSIZE;
275}
276
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +0900277EXPORT_SYMBOL(ip6_xmit);
278
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279/*
280 * To avoid extra problems ND packets are send through this
281 * routine. It's code duplication but I really want to avoid
282 * extra checks since ipv6_build_header is used by TCP (which
283 * is for us performance critical)
284 */
285
286int ip6_nd_hdr(struct sock *sk, struct sk_buff *skb, struct net_device *dev,
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +0900287 const struct in6_addr *saddr, const struct in6_addr *daddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 int proto, int len)
289{
290 struct ipv6_pinfo *np = inet6_sk(sk);
291 struct ipv6hdr *hdr;
292 int totlen;
293
294 skb->protocol = htons(ETH_P_IPV6);
295 skb->dev = dev;
296
297 totlen = len + sizeof(struct ipv6hdr);
298
Arnaldo Carvalho de Melo55f79cc2007-03-14 21:05:03 -0300299 skb_reset_network_header(skb);
300 skb_put(skb, sizeof(struct ipv6hdr));
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700301 hdr = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
Al Viroae08e1f2006-11-08 00:27:11 -0800303 *(__be32*)hdr = htonl(0x60000000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
305 hdr->payload_len = htons(len);
306 hdr->nexthdr = proto;
307 hdr->hop_limit = np->hop_limit;
308
309 ipv6_addr_copy(&hdr->saddr, saddr);
310 ipv6_addr_copy(&hdr->daddr, daddr);
311
312 return 0;
313}
314
315static int ip6_call_ra_chain(struct sk_buff *skb, int sel)
316{
317 struct ip6_ra_chain *ra;
318 struct sock *last = NULL;
319
320 read_lock(&ip6_ra_lock);
321 for (ra = ip6_ra_chain; ra; ra = ra->next) {
322 struct sock *sk = ra->sk;
Andrew McDonald0bd1b592005-08-09 19:44:42 -0700323 if (sk && ra->sel == sel &&
324 (!sk->sk_bound_dev_if ||
325 sk->sk_bound_dev_if == skb->dev->ifindex)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 if (last) {
327 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
328 if (skb2)
329 rawv6_rcv(last, skb2);
330 }
331 last = sk;
332 }
333 }
334
335 if (last) {
336 rawv6_rcv(last, skb);
337 read_unlock(&ip6_ra_lock);
338 return 1;
339 }
340 read_unlock(&ip6_ra_lock);
341 return 0;
342}
343
Ville Nuorvalae21e0b52006-09-22 14:41:44 -0700344static int ip6_forward_proxy_check(struct sk_buff *skb)
345{
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700346 struct ipv6hdr *hdr = ipv6_hdr(skb);
Ville Nuorvalae21e0b52006-09-22 14:41:44 -0700347 u8 nexthdr = hdr->nexthdr;
348 int offset;
349
350 if (ipv6_ext_hdr(nexthdr)) {
351 offset = ipv6_skip_exthdr(skb, sizeof(*hdr), &nexthdr);
352 if (offset < 0)
353 return 0;
354 } else
355 offset = sizeof(struct ipv6hdr);
356
357 if (nexthdr == IPPROTO_ICMPV6) {
358 struct icmp6hdr *icmp6;
359
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700360 if (!pskb_may_pull(skb, (skb_network_header(skb) +
361 offset + 1 - skb->data)))
Ville Nuorvalae21e0b52006-09-22 14:41:44 -0700362 return 0;
363
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700364 icmp6 = (struct icmp6hdr *)(skb_network_header(skb) + offset);
Ville Nuorvalae21e0b52006-09-22 14:41:44 -0700365
366 switch (icmp6->icmp6_type) {
367 case NDISC_ROUTER_SOLICITATION:
368 case NDISC_ROUTER_ADVERTISEMENT:
369 case NDISC_NEIGHBOUR_SOLICITATION:
370 case NDISC_NEIGHBOUR_ADVERTISEMENT:
371 case NDISC_REDIRECT:
372 /* For reaction involving unicast neighbor discovery
373 * message destined to the proxied address, pass it to
374 * input function.
375 */
376 return 1;
377 default:
378 break;
379 }
380 }
381
Ville Nuorvala74553b02006-09-22 14:42:18 -0700382 /*
383 * The proxying router can't forward traffic sent to a link-local
384 * address, so signal the sender and discard the packet. This
385 * behavior is clarified by the MIPv6 specification.
386 */
387 if (ipv6_addr_type(&hdr->daddr) & IPV6_ADDR_LINKLOCAL) {
388 dst_link_failure(skb);
389 return -1;
390 }
391
Ville Nuorvalae21e0b52006-09-22 14:41:44 -0700392 return 0;
393}
394
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395static inline int ip6_forward_finish(struct sk_buff *skb)
396{
397 return dst_output(skb);
398}
399
400int ip6_forward(struct sk_buff *skb)
401{
Eric Dumazetadf30902009-06-02 05:19:30 +0000402 struct dst_entry *dst = skb_dst(skb);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700403 struct ipv6hdr *hdr = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 struct inet6_skb_parm *opt = IP6CB(skb);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900405 struct net *net = dev_net(dst->dev);
Ulrich Weber14f3ad62010-02-26 04:34:49 -0800406 u32 mtu;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900407
YOSHIFUJI Hideaki53b79972008-07-19 22:35:03 -0700408 if (net->ipv6.devconf_all->forwarding == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 goto error;
410
Ben Hutchings4497b072008-06-19 16:22:28 -0700411 if (skb_warn_if_lro(skb))
412 goto drop;
413
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 if (!xfrm6_policy_check(NULL, XFRM_POLICY_FWD, skb)) {
Denis V. Lunev3bd653c2008-10-08 10:54:51 -0700415 IP6_INC_STATS(net, ip6_dst_idev(dst), IPSTATS_MIB_INDISCARDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 goto drop;
417 }
418
Herbert Xu35fc92a2007-03-26 23:22:20 -0700419 skb_forward_csum(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
421 /*
422 * We DO NOT make any processing on
423 * RA packets, pushing them to user level AS IS
424 * without ane WARRANTY that application will be able
425 * to interpret them. The reason is that we
426 * cannot make anything clever here.
427 *
428 * We are not end-node, so that if packet contains
429 * AH/ESP, we cannot make anything.
430 * Defragmentation also would be mistake, RA packets
431 * cannot be fragmented, because there is no warranty
432 * that different fragments will go along one path. --ANK
433 */
434 if (opt->ra) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700435 u8 *ptr = skb_network_header(skb) + opt->ra;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 if (ip6_call_ra_chain(skb, (ptr[2]<<8) + ptr[3]))
437 return 0;
438 }
439
440 /*
441 * check and decrement ttl
442 */
443 if (hdr->hop_limit <= 1) {
444 /* Force OUTPUT device used as source address */
445 skb->dev = dst->dev;
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +0000446 icmpv6_send(skb, ICMPV6_TIME_EXCEED, ICMPV6_EXC_HOPLIMIT, 0);
Denis V. Lunev483a47d2008-10-08 11:09:27 -0700447 IP6_INC_STATS_BH(net,
448 ip6_dst_idev(dst), IPSTATS_MIB_INHDRERRORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
450 kfree_skb(skb);
451 return -ETIMEDOUT;
452 }
453
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -0700454 /* XXX: idev->cnf.proxy_ndp? */
YOSHIFUJI Hideaki53b79972008-07-19 22:35:03 -0700455 if (net->ipv6.devconf_all->proxy_ndp &&
Daniel Lezcano8a3edd82008-03-07 11:14:16 -0800456 pneigh_lookup(&nd_tbl, net, &hdr->daddr, skb->dev, 0)) {
Ville Nuorvala74553b02006-09-22 14:42:18 -0700457 int proxied = ip6_forward_proxy_check(skb);
458 if (proxied > 0)
Ville Nuorvalae21e0b52006-09-22 14:41:44 -0700459 return ip6_input(skb);
Ville Nuorvala74553b02006-09-22 14:42:18 -0700460 else if (proxied < 0) {
Denis V. Lunev3bd653c2008-10-08 10:54:51 -0700461 IP6_INC_STATS(net, ip6_dst_idev(dst),
462 IPSTATS_MIB_INDISCARDS);
Ville Nuorvala74553b02006-09-22 14:42:18 -0700463 goto drop;
464 }
Ville Nuorvalae21e0b52006-09-22 14:41:44 -0700465 }
466
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 if (!xfrm6_route_forward(skb)) {
Denis V. Lunev3bd653c2008-10-08 10:54:51 -0700468 IP6_INC_STATS(net, ip6_dst_idev(dst), IPSTATS_MIB_INDISCARDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 goto drop;
470 }
Eric Dumazetadf30902009-06-02 05:19:30 +0000471 dst = skb_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
473 /* IPv6 specs say nothing about it, but it is clear that we cannot
474 send redirects to source routed frames.
Masahide NAKAMURA1e5dc142007-08-24 19:08:55 +0900475 We don't send redirects to frames decapsulated from IPsec.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 */
Masahide NAKAMURA1e5dc142007-08-24 19:08:55 +0900477 if (skb->dev == dst->dev && dst->neighbour && opt->srcrt == 0 &&
Alexey Dobriyandef8b4f2008-10-28 13:24:06 -0700478 !skb_sec_path(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 struct in6_addr *target = NULL;
480 struct rt6_info *rt;
481 struct neighbour *n = dst->neighbour;
482
483 /*
484 * incoming and outgoing devices are the same
485 * send a redirect.
486 */
487
488 rt = (struct rt6_info *) dst;
489 if ((rt->rt6i_flags & RTF_GATEWAY))
490 target = (struct in6_addr*)&n->primary_key;
491 else
492 target = &hdr->daddr;
493
494 /* Limit redirects both by destination (here)
495 and by source (inside ndisc_send_redirect)
496 */
497 if (xrlim_allow(dst, 1*HZ))
498 ndisc_send_redirect(skb, n, target);
David L Stevens5bb1ab02007-05-09 13:53:44 -0700499 } else {
500 int addrtype = ipv6_addr_type(&hdr->saddr);
501
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 /* This check is security critical. */
YOSHIFUJI Hideakif81b2e72008-06-25 16:55:26 +0900503 if (addrtype == IPV6_ADDR_ANY ||
504 addrtype & (IPV6_ADDR_MULTICAST | IPV6_ADDR_LOOPBACK))
David L Stevens5bb1ab02007-05-09 13:53:44 -0700505 goto error;
506 if (addrtype & IPV6_ADDR_LINKLOCAL) {
507 icmpv6_send(skb, ICMPV6_DEST_UNREACH,
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +0000508 ICMPV6_NOT_NEIGHBOUR, 0);
David L Stevens5bb1ab02007-05-09 13:53:44 -0700509 goto error;
510 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 }
512
Ulrich Weber14f3ad62010-02-26 04:34:49 -0800513 mtu = dst_mtu(dst);
514 if (mtu < IPV6_MIN_MTU)
515 mtu = IPV6_MIN_MTU;
516
517 if (skb->len > mtu) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 /* Again, force OUTPUT device used as source address */
519 skb->dev = dst->dev;
Ulrich Weber14f3ad62010-02-26 04:34:49 -0800520 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
Denis V. Lunev483a47d2008-10-08 11:09:27 -0700521 IP6_INC_STATS_BH(net,
522 ip6_dst_idev(dst), IPSTATS_MIB_INTOOBIGERRORS);
523 IP6_INC_STATS_BH(net,
524 ip6_dst_idev(dst), IPSTATS_MIB_FRAGFAILS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 kfree_skb(skb);
526 return -EMSGSIZE;
527 }
528
529 if (skb_cow(skb, dst->dev->hard_header_len)) {
Denis V. Lunev3bd653c2008-10-08 10:54:51 -0700530 IP6_INC_STATS(net, ip6_dst_idev(dst), IPSTATS_MIB_OUTDISCARDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 goto drop;
532 }
533
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700534 hdr = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
536 /* Mangling hops number delayed to point after skb COW */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900537
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 hdr->hop_limit--;
539
Denis V. Lunev483a47d2008-10-08 11:09:27 -0700540 IP6_INC_STATS_BH(net, ip6_dst_idev(dst), IPSTATS_MIB_OUTFORWDATAGRAMS);
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800541 return NF_HOOK(PF_INET6, NF_INET_FORWARD, skb, skb->dev, dst->dev,
542 ip6_forward_finish);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
544error:
Denis V. Lunev483a47d2008-10-08 11:09:27 -0700545 IP6_INC_STATS_BH(net, ip6_dst_idev(dst), IPSTATS_MIB_INADDRERRORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546drop:
547 kfree_skb(skb);
548 return -EINVAL;
549}
550
551static void ip6_copy_metadata(struct sk_buff *to, struct sk_buff *from)
552{
553 to->pkt_type = from->pkt_type;
554 to->priority = from->priority;
555 to->protocol = from->protocol;
Eric Dumazetadf30902009-06-02 05:19:30 +0000556 skb_dst_drop(to);
557 skb_dst_set(to, dst_clone(skb_dst(from)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 to->dev = from->dev;
Thomas Graf82e91ff2006-11-09 15:19:14 -0800559 to->mark = from->mark;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
561#ifdef CONFIG_NET_SCHED
562 to->tc_index = from->tc_index;
563#endif
Yasuyuki Kozakaie7ac05f2007-03-14 16:44:01 -0700564 nf_copy(to, from);
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700565#if defined(CONFIG_NETFILTER_XT_TARGET_TRACE) || \
566 defined(CONFIG_NETFILTER_XT_TARGET_TRACE_MODULE)
567 to->nf_trace = from->nf_trace;
568#endif
James Morris984bc162006-06-09 00:29:17 -0700569 skb_copy_secmark(to, from);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570}
571
572int ip6_find_1stfragopt(struct sk_buff *skb, u8 **nexthdr)
573{
574 u16 offset = sizeof(struct ipv6hdr);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700575 struct ipv6_opt_hdr *exthdr =
576 (struct ipv6_opt_hdr *)(ipv6_hdr(skb) + 1);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700577 unsigned int packet_len = skb->tail - skb->network_header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 int found_rhdr = 0;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700579 *nexthdr = &ipv6_hdr(skb)->nexthdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
581 while (offset + 1 <= packet_len) {
582
583 switch (**nexthdr) {
584
585 case NEXTHDR_HOP:
Masahide NAKAMURA27637df2006-08-23 19:29:47 -0700586 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 case NEXTHDR_ROUTING:
Masahide NAKAMURA27637df2006-08-23 19:29:47 -0700588 found_rhdr = 1;
589 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 case NEXTHDR_DEST:
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700591#if defined(CONFIG_IPV6_MIP6) || defined(CONFIG_IPV6_MIP6_MODULE)
Masahide NAKAMURA27637df2006-08-23 19:29:47 -0700592 if (ipv6_find_tlv(skb, offset, IPV6_TLV_HAO) >= 0)
593 break;
594#endif
595 if (found_rhdr)
596 return offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 break;
598 default :
599 return offset;
600 }
Masahide NAKAMURA27637df2006-08-23 19:29:47 -0700601
602 offset += ipv6_optlen(exthdr);
603 *nexthdr = &exthdr->nexthdr;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700604 exthdr = (struct ipv6_opt_hdr *)(skb_network_header(skb) +
605 offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 }
607
608 return offset;
609}
610
611static int ip6_fragment(struct sk_buff *skb, int (*output)(struct sk_buff *))
612{
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;
Al Viroae08e1f2006-11-08 00:27:11 -0800619 __be32 frag_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 int ptr, offset = 0, err=0;
621 u8 *prevhdr, nexthdr = 0;
Eric Dumazetadf30902009-06-02 05:19:30 +0000622 struct net *net = dev_net(skb_dst(skb)->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 hlen = ip6_find_1stfragopt(skb, &prevhdr);
625 nexthdr = *prevhdr;
626
John Heffner628a5c52007-04-20 15:53:27 -0700627 mtu = ip6_skb_dst_mtu(skb);
John Heffnerb881ef72007-04-20 15:52:39 -0700628
629 /* We must not fragment if the socket is set to force MTU discovery
Ulrich Weber14f3ad62010-02-26 04:34:49 -0800630 * or if the skb it not generated by a local socket.
John Heffnerb881ef72007-04-20 15:52:39 -0700631 */
Herbert Xub5c15fc2008-02-14 23:49:37 -0800632 if (!skb->local_df) {
Eric Dumazetadf30902009-06-02 05:19:30 +0000633 skb->dev = skb_dst(skb)->dev;
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +0000634 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
Eric Dumazetadf30902009-06-02 05:19:30 +0000635 IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)),
Denis V. Lunev3bd653c2008-10-08 10:54:51 -0700636 IPSTATS_MIB_FRAGFAILS);
John Heffnerb881ef72007-04-20 15:52:39 -0700637 kfree_skb(skb);
638 return -EMSGSIZE;
639 }
640
YOSHIFUJI Hideakid91675f2006-02-24 13:18:33 -0800641 if (np && np->frag_size < mtu) {
642 if (np->frag_size)
643 mtu = np->frag_size;
644 }
645 mtu -= hlen + sizeof(struct frag_hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
David S. Miller4d9092b2009-06-09 00:20:05 -0700647 if (skb_has_frags(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 int first_len = skb_pagelen(skb);
Herbert Xu29ffe1a2008-01-28 20:45:20 -0800649 int truesizes = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
651 if (first_len - hlen > mtu ||
652 ((first_len - hlen) & 7) ||
653 skb_cloned(skb))
654 goto slow_path;
655
David S. Miller4d9092b2009-06-09 00:20:05 -0700656 skb_walk_frags(skb, frag) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 /* Correct geometry. */
658 if (frag->len > mtu ||
659 ((frag->len & 7) && frag->next) ||
660 skb_headroom(frag) < hlen)
661 goto slow_path;
662
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 /* Partially cloned skb? */
664 if (skb_shared(frag))
665 goto slow_path;
Herbert Xu2fdba6b2005-05-18 22:52:33 -0700666
667 BUG_ON(frag->sk);
668 if (skb->sk) {
Herbert Xu2fdba6b2005-05-18 22:52:33 -0700669 frag->sk = skb->sk;
670 frag->destructor = sock_wfree;
Herbert Xu29ffe1a2008-01-28 20:45:20 -0800671 truesizes += frag->truesize;
Herbert Xu2fdba6b2005-05-18 22:52:33 -0700672 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 }
674
675 err = 0;
676 offset = 0;
677 frag = skb_shinfo(skb)->frag_list;
David S. Miller4d9092b2009-06-09 00:20:05 -0700678 skb_frag_list_init(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 /* BUILD HEADER */
680
YOSHIFUJI Hideaki9a217a12006-12-05 13:47:21 -0800681 *prevhdr = NEXTHDR_FRAGMENT;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700682 tmp_hdr = kmemdup(skb_network_header(skb), hlen, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 if (!tmp_hdr) {
Eric Dumazetadf30902009-06-02 05:19:30 +0000684 IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)),
Denis V. Lunev3bd653c2008-10-08 10:54:51 -0700685 IPSTATS_MIB_FRAGFAILS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 return -ENOMEM;
687 }
688
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 __skb_pull(skb, hlen);
690 fh = (struct frag_hdr*)__skb_push(skb, sizeof(struct frag_hdr));
Arnaldo Carvalho de Meloe2d1bca2007-04-10 20:46:21 -0700691 __skb_push(skb, hlen);
692 skb_reset_network_header(skb);
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700693 memcpy(skb_network_header(skb), tmp_hdr, hlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
Sridhar Samudrala7ea2f2c2009-07-09 08:10:01 +0000695 ipv6_select_ident(fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 fh->nexthdr = nexthdr;
697 fh->reserved = 0;
698 fh->frag_off = htons(IP6_MF);
699 frag_id = fh->identification;
700
701 first_len = skb_pagelen(skb);
702 skb->data_len = first_len - skb_headlen(skb);
Herbert Xu29ffe1a2008-01-28 20:45:20 -0800703 skb->truesize -= truesizes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 skb->len = first_len;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700705 ipv6_hdr(skb)->payload_len = htons(first_len -
706 sizeof(struct ipv6hdr));
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900707
708 dst_hold(&rt->u.dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
710 for (;;) {
711 /* Prepare header of the next frame,
712 * before previous one went down. */
713 if (frag) {
714 frag->ip_summed = CHECKSUM_NONE;
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -0300715 skb_reset_transport_header(frag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 fh = (struct frag_hdr*)__skb_push(frag, sizeof(struct frag_hdr));
Arnaldo Carvalho de Meloe2d1bca2007-04-10 20:46:21 -0700717 __skb_push(frag, hlen);
718 skb_reset_network_header(frag);
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700719 memcpy(skb_network_header(frag), tmp_hdr,
720 hlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 offset += skb->len - hlen - sizeof(struct frag_hdr);
722 fh->nexthdr = nexthdr;
723 fh->reserved = 0;
724 fh->frag_off = htons(offset);
725 if (frag->next != NULL)
726 fh->frag_off |= htons(IP6_MF);
727 fh->identification = frag_id;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700728 ipv6_hdr(frag)->payload_len =
729 htons(frag->len -
730 sizeof(struct ipv6hdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 ip6_copy_metadata(frag, skb);
732 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900733
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 err = output(skb);
Wei Dongdafee492006-08-02 13:41:21 -0700735 if(!err)
Denis V. Lunev3bd653c2008-10-08 10:54:51 -0700736 IP6_INC_STATS(net, ip6_dst_idev(&rt->u.dst),
737 IPSTATS_MIB_FRAGCREATES);
Wei Dongdafee492006-08-02 13:41:21 -0700738
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 if (err || !frag)
740 break;
741
742 skb = frag;
743 frag = skb->next;
744 skb->next = NULL;
745 }
746
Jesper Juhla51482b2005-11-08 09:41:34 -0800747 kfree(tmp_hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
749 if (err == 0) {
Denis V. Lunev3bd653c2008-10-08 10:54:51 -0700750 IP6_INC_STATS(net, ip6_dst_idev(&rt->u.dst),
751 IPSTATS_MIB_FRAGOKS);
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900752 dst_release(&rt->u.dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 return 0;
754 }
755
756 while (frag) {
757 skb = frag->next;
758 kfree_skb(frag);
759 frag = skb;
760 }
761
Denis V. Lunev3bd653c2008-10-08 10:54:51 -0700762 IP6_INC_STATS(net, ip6_dst_idev(&rt->u.dst),
763 IPSTATS_MIB_FRAGFAILS);
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900764 dst_release(&rt->u.dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 return err;
766 }
767
768slow_path:
769 left = skb->len - hlen; /* Space per frame */
770 ptr = hlen; /* Where to start from */
771
772 /*
773 * Fragment the datagram.
774 */
775
776 *prevhdr = NEXTHDR_FRAGMENT;
777
778 /*
779 * Keep copying data until we run out.
780 */
781 while(left > 0) {
782 len = left;
783 /* IF: it doesn't fit, use 'mtu' - the data space left */
784 if (len > mtu)
785 len = mtu;
786 /* IF: we are not sending upto and including the packet end
787 then align the next start on an eight byte boundary */
788 if (len < left) {
789 len &= ~7;
790 }
791 /*
792 * Allocate buffer.
793 */
794
Johannes Bergf5184d22008-05-12 20:48:31 -0700795 if ((frag = alloc_skb(len+hlen+sizeof(struct frag_hdr)+LL_ALLOCATED_SPACE(rt->u.dst.dev), GFP_ATOMIC)) == NULL) {
Patrick McHardy64ce2072005-08-09 20:50:53 -0700796 NETDEBUG(KERN_INFO "IPv6: frag: no memory for new fragment!\n");
Eric Dumazetadf30902009-06-02 05:19:30 +0000797 IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)),
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900798 IPSTATS_MIB_FRAGFAILS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 err = -ENOMEM;
800 goto fail;
801 }
802
803 /*
804 * Set up data on packet
805 */
806
807 ip6_copy_metadata(frag, skb);
808 skb_reserve(frag, LL_RESERVED_SPACE(rt->u.dst.dev));
809 skb_put(frag, len + hlen + sizeof(struct frag_hdr));
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700810 skb_reset_network_header(frag);
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -0300811 fh = (struct frag_hdr *)(skb_network_header(frag) + hlen);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700812 frag->transport_header = (frag->network_header + hlen +
813 sizeof(struct frag_hdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
815 /*
816 * Charge the memory for the fragment to any owner
817 * it might possess
818 */
819 if (skb->sk)
820 skb_set_owner_w(frag, skb->sk);
821
822 /*
823 * Copy the packet header into the new buffer.
824 */
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300825 skb_copy_from_linear_data(skb, skb_network_header(frag), hlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
827 /*
828 * Build fragment header.
829 */
830 fh->nexthdr = nexthdr;
831 fh->reserved = 0;
Yan Zhengf36d6ab2005-10-03 14:19:15 -0700832 if (!frag_id) {
Sridhar Samudrala7ea2f2c2009-07-09 08:10:01 +0000833 ipv6_select_ident(fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 frag_id = fh->identification;
835 } else
836 fh->identification = frag_id;
837
838 /*
839 * Copy a block of the IP datagram.
840 */
Wei Yongjun8984e412007-08-21 20:59:08 -0700841 if (skb_copy_bits(skb, ptr, skb_transport_header(frag), len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 BUG();
843 left -= len;
844
845 fh->frag_off = htons(offset);
846 if (left > 0)
847 fh->frag_off |= htons(IP6_MF);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700848 ipv6_hdr(frag)->payload_len = htons(frag->len -
849 sizeof(struct ipv6hdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
851 ptr += len;
852 offset += len;
853
854 /*
855 * Put this fragment into the sending queue.
856 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 err = output(frag);
858 if (err)
859 goto fail;
Wei Dongdafee492006-08-02 13:41:21 -0700860
Eric Dumazetadf30902009-06-02 05:19:30 +0000861 IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)),
Denis V. Lunev3bd653c2008-10-08 10:54:51 -0700862 IPSTATS_MIB_FRAGCREATES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 }
Eric Dumazetadf30902009-06-02 05:19:30 +0000864 IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)),
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900865 IPSTATS_MIB_FRAGOKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 return err;
868
869fail:
Eric Dumazetadf30902009-06-02 05:19:30 +0000870 IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)),
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900871 IPSTATS_MIB_FRAGFAILS);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900872 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 return err;
874}
875
YOSHIFUJI Hideakicf6b1982006-08-23 17:19:18 -0700876static inline int ip6_rt_check(struct rt6key *rt_key,
877 struct in6_addr *fl_addr,
878 struct in6_addr *addr_cache)
879{
880 return ((rt_key->plen != 128 || !ipv6_addr_equal(fl_addr, &rt_key->addr)) &&
881 (addr_cache == NULL || !ipv6_addr_equal(fl_addr, addr_cache)));
882}
883
Herbert Xu497c6152006-07-30 20:19:33 -0700884static struct dst_entry *ip6_sk_dst_check(struct sock *sk,
885 struct dst_entry *dst,
886 struct flowi *fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887{
Herbert Xu497c6152006-07-30 20:19:33 -0700888 struct ipv6_pinfo *np = inet6_sk(sk);
889 struct rt6_info *rt = (struct rt6_info *)dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
Herbert Xu497c6152006-07-30 20:19:33 -0700891 if (!dst)
892 goto out;
893
894 /* Yes, checking route validity in not connected
895 * case is not very simple. Take into account,
896 * that we do not support routing by source, TOS,
897 * and MSG_DONTROUTE --ANK (980726)
898 *
YOSHIFUJI Hideakicf6b1982006-08-23 17:19:18 -0700899 * 1. ip6_rt_check(): If route was host route,
900 * check that cached destination is current.
Herbert Xu497c6152006-07-30 20:19:33 -0700901 * If it is network route, we still may
902 * check its validity using saved pointer
903 * to the last used address: daddr_cache.
904 * We do not want to save whole address now,
905 * (because main consumer of this service
906 * is tcp, which has not this problem),
907 * so that the last trick works only on connected
908 * sockets.
909 * 2. oif also should be the same.
910 */
YOSHIFUJI Hideakicf6b1982006-08-23 17:19:18 -0700911 if (ip6_rt_check(&rt->rt6i_dst, &fl->fl6_dst, np->daddr_cache) ||
YOSHIFUJI Hideaki8e1ef0a2006-08-29 17:15:09 -0700912#ifdef CONFIG_IPV6_SUBTREES
913 ip6_rt_check(&rt->rt6i_src, &fl->fl6_src, np->saddr_cache) ||
914#endif
YOSHIFUJI Hideakicf6b1982006-08-23 17:19:18 -0700915 (fl->oif && fl->oif != dst->dev->ifindex)) {
Herbert Xu497c6152006-07-30 20:19:33 -0700916 dst_release(dst);
917 dst = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 }
919
Herbert Xu497c6152006-07-30 20:19:33 -0700920out:
921 return dst;
922}
923
924static int ip6_dst_lookup_tail(struct sock *sk,
925 struct dst_entry **dst, struct flowi *fl)
926{
927 int err;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900928 struct net *net = sock_net(sk);
Herbert Xu497c6152006-07-30 20:19:33 -0700929
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 if (*dst == NULL)
Daniel Lezcano8a3edd82008-03-07 11:14:16 -0800931 *dst = ip6_route_output(net, sk, fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
933 if ((err = (*dst)->error))
934 goto out_err_release;
935
936 if (ipv6_addr_any(&fl->fl6_src)) {
Brian Haley191cd582008-08-14 15:33:21 -0700937 err = ipv6_dev_get_saddr(net, ip6_dst_idev(*dst)->dev,
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +0900938 &fl->fl6_dst,
939 sk ? inet6_sk(sk)->srcprefs : 0,
940 &fl->fl6_src);
Olaf Hering44456d32005-07-27 11:45:17 -0700941 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 goto out_err_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 }
944
Neil Horman95c385b2007-04-25 17:08:10 -0700945#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
Neil Hormane550dfb2008-09-09 13:51:35 -0700946 /*
947 * Here if the dst entry we've looked up
948 * has a neighbour entry that is in the INCOMPLETE
949 * state and the src address from the flow is
950 * marked as OPTIMISTIC, we release the found
951 * dst entry and replace it instead with the
952 * dst entry of the nexthop router
953 */
954 if ((*dst)->neighbour && !((*dst)->neighbour->nud_state & NUD_VALID)) {
955 struct inet6_ifaddr *ifp;
956 struct flowi fl_gw;
957 int redirect;
Neil Horman95c385b2007-04-25 17:08:10 -0700958
Neil Hormane550dfb2008-09-09 13:51:35 -0700959 ifp = ipv6_get_ifaddr(net, &fl->fl6_src,
960 (*dst)->dev, 1);
Neil Horman95c385b2007-04-25 17:08:10 -0700961
Neil Hormane550dfb2008-09-09 13:51:35 -0700962 redirect = (ifp && ifp->flags & IFA_F_OPTIMISTIC);
963 if (ifp)
964 in6_ifa_put(ifp);
Neil Horman95c385b2007-04-25 17:08:10 -0700965
Neil Hormane550dfb2008-09-09 13:51:35 -0700966 if (redirect) {
967 /*
968 * We need to get the dst entry for the
969 * default router instead
970 */
971 dst_release(*dst);
972 memcpy(&fl_gw, fl, sizeof(struct flowi));
973 memset(&fl_gw.fl6_dst, 0, sizeof(struct in6_addr));
974 *dst = ip6_route_output(net, sk, &fl_gw);
975 if ((err = (*dst)->error))
976 goto out_err_release;
Neil Horman95c385b2007-04-25 17:08:10 -0700977 }
Neil Hormane550dfb2008-09-09 13:51:35 -0700978 }
Neil Horman95c385b2007-04-25 17:08:10 -0700979#endif
980
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 return 0;
982
983out_err_release:
Mitsuru Chinenca46f9c2007-12-05 22:31:47 -0800984 if (err == -ENETUNREACH)
Denis V. Lunev483a47d2008-10-08 11:09:27 -0700985 IP6_INC_STATS_BH(net, NULL, IPSTATS_MIB_OUTNOROUTES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 dst_release(*dst);
987 *dst = NULL;
988 return err;
989}
Adrian Bunk34a0b3c2005-11-29 16:28:56 -0800990
Herbert Xu497c6152006-07-30 20:19:33 -0700991/**
992 * ip6_dst_lookup - perform route lookup on flow
993 * @sk: socket which provides route info
994 * @dst: pointer to dst_entry * for result
995 * @fl: flow to lookup
996 *
997 * This function performs a route lookup on the given flow.
998 *
999 * It returns zero on success, or a standard errno code on error.
1000 */
1001int ip6_dst_lookup(struct sock *sk, struct dst_entry **dst, struct flowi *fl)
1002{
1003 *dst = NULL;
1004 return ip6_dst_lookup_tail(sk, dst, fl);
1005}
Arnaldo Carvalho de Melo3cf3dc62005-12-13 23:23:20 -08001006EXPORT_SYMBOL_GPL(ip6_dst_lookup);
1007
Herbert Xu497c6152006-07-30 20:19:33 -07001008/**
1009 * ip6_sk_dst_lookup - perform socket cached route lookup on flow
1010 * @sk: socket which provides the dst cache and route info
1011 * @dst: pointer to dst_entry * for result
1012 * @fl: flow to lookup
1013 *
1014 * This function performs a route lookup on the given flow with the
1015 * possibility of using the cached route in the socket if it is valid.
1016 * It will take the socket dst lock when operating on the dst cache.
1017 * As a result, this function can only be used in process context.
1018 *
1019 * It returns zero on success, or a standard errno code on error.
1020 */
1021int ip6_sk_dst_lookup(struct sock *sk, struct dst_entry **dst, struct flowi *fl)
1022{
1023 *dst = NULL;
1024 if (sk) {
1025 *dst = sk_dst_check(sk, inet6_sk(sk)->dst_cookie);
1026 *dst = ip6_sk_dst_check(sk, *dst, fl);
1027 }
1028
1029 return ip6_dst_lookup_tail(sk, dst, fl);
1030}
1031EXPORT_SYMBOL_GPL(ip6_sk_dst_lookup);
1032
Adrian Bunk34a0b3c2005-11-29 16:28:56 -08001033static inline int ip6_ufo_append_data(struct sock *sk,
Ananda Rajue89e9cf2005-10-18 15:46:41 -07001034 int getfrag(void *from, char *to, int offset, int len,
1035 int odd, struct sk_buff *skb),
1036 void *from, int length, int hh_len, int fragheaderlen,
1037 int transhdrlen, int mtu,unsigned int flags)
1038
1039{
1040 struct sk_buff *skb;
1041 int err;
1042
1043 /* There is support for UDP large send offload by network
1044 * device, so create one single skb packet containing complete
1045 * udp datagram
1046 */
1047 if ((skb = skb_peek_tail(&sk->sk_write_queue)) == NULL) {
1048 skb = sock_alloc_send_skb(sk,
1049 hh_len + fragheaderlen + transhdrlen + 20,
1050 (flags & MSG_DONTWAIT), &err);
1051 if (skb == NULL)
1052 return -ENOMEM;
1053
1054 /* reserve space for Hardware header */
1055 skb_reserve(skb, hh_len);
1056
1057 /* create space for UDP/IP header */
1058 skb_put(skb,fragheaderlen + transhdrlen);
1059
1060 /* initialize network header pointer */
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -07001061 skb_reset_network_header(skb);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07001062
1063 /* initialize protocol header pointer */
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07001064 skb->transport_header = skb->network_header + fragheaderlen;
Ananda Rajue89e9cf2005-10-18 15:46:41 -07001065
Patrick McHardy84fa7932006-08-29 16:44:56 -07001066 skb->ip_summed = CHECKSUM_PARTIAL;
Ananda Rajue89e9cf2005-10-18 15:46:41 -07001067 skb->csum = 0;
1068 sk->sk_sndmsg_off = 0;
1069 }
1070
1071 err = skb_append_datato_frags(sk,skb, getfrag, from,
1072 (length - transhdrlen));
1073 if (!err) {
1074 struct frag_hdr fhdr;
1075
Sridhar Samudralac31d5322009-07-09 08:09:58 +00001076 /* Specify the length of each IPv6 datagram fragment.
1077 * It has to be a multiple of 8.
1078 */
1079 skb_shinfo(skb)->gso_size = (mtu - fragheaderlen -
1080 sizeof(struct frag_hdr)) & ~7;
Herbert Xuf83ef8c2006-06-30 13:37:03 -07001081 skb_shinfo(skb)->gso_type = SKB_GSO_UDP;
Sridhar Samudrala7ea2f2c2009-07-09 08:10:01 +00001082 ipv6_select_ident(&fhdr);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07001083 skb_shinfo(skb)->ip6_frag_id = fhdr.identification;
1084 __skb_queue_tail(&sk->sk_write_queue, skb);
1085
1086 return 0;
1087 }
1088 /* There is not enough support do UPD LSO,
1089 * so follow normal path
1090 */
1091 kfree_skb(skb);
1092
1093 return err;
1094}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
Herbert Xu0178b692009-02-05 15:15:50 -08001096static inline struct ipv6_opt_hdr *ip6_opt_dup(struct ipv6_opt_hdr *src,
1097 gfp_t gfp)
1098{
1099 return src ? kmemdup(src, (src->hdrlen + 1) * 8, gfp) : NULL;
1100}
1101
1102static inline struct ipv6_rt_hdr *ip6_rthdr_dup(struct ipv6_rt_hdr *src,
1103 gfp_t gfp)
1104{
1105 return src ? kmemdup(src, (src->hdrlen + 1) * 8, gfp) : NULL;
1106}
1107
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +09001108int ip6_append_data(struct sock *sk, int getfrag(void *from, char *to,
1109 int offset, int len, int odd, struct sk_buff *skb),
1110 void *from, int length, int transhdrlen,
1111 int hlimit, int tclass, struct ipv6_txoptions *opt, struct flowi *fl,
1112 struct rt6_info *rt, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113{
1114 struct inet_sock *inet = inet_sk(sk);
1115 struct ipv6_pinfo *np = inet6_sk(sk);
1116 struct sk_buff *skb;
1117 unsigned int maxfraglen, fragheaderlen;
1118 int exthdrlen;
1119 int hh_len;
1120 int mtu;
1121 int copy;
1122 int err;
1123 int offset = 0;
1124 int csummode = CHECKSUM_NONE;
1125
1126 if (flags&MSG_PROBE)
1127 return 0;
1128 if (skb_queue_empty(&sk->sk_write_queue)) {
1129 /*
1130 * setup for corking
1131 */
1132 if (opt) {
Herbert Xu0178b692009-02-05 15:15:50 -08001133 if (WARN_ON(np->cork.opt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 return -EINVAL;
Herbert Xu0178b692009-02-05 15:15:50 -08001135
1136 np->cork.opt = kmalloc(opt->tot_len, sk->sk_allocation);
1137 if (unlikely(np->cork.opt == NULL))
1138 return -ENOBUFS;
1139
1140 np->cork.opt->tot_len = opt->tot_len;
1141 np->cork.opt->opt_flen = opt->opt_flen;
1142 np->cork.opt->opt_nflen = opt->opt_nflen;
1143
1144 np->cork.opt->dst0opt = ip6_opt_dup(opt->dst0opt,
1145 sk->sk_allocation);
1146 if (opt->dst0opt && !np->cork.opt->dst0opt)
1147 return -ENOBUFS;
1148
1149 np->cork.opt->dst1opt = ip6_opt_dup(opt->dst1opt,
1150 sk->sk_allocation);
1151 if (opt->dst1opt && !np->cork.opt->dst1opt)
1152 return -ENOBUFS;
1153
1154 np->cork.opt->hopopt = ip6_opt_dup(opt->hopopt,
1155 sk->sk_allocation);
1156 if (opt->hopopt && !np->cork.opt->hopopt)
1157 return -ENOBUFS;
1158
1159 np->cork.opt->srcrt = ip6_rthdr_dup(opt->srcrt,
1160 sk->sk_allocation);
1161 if (opt->srcrt && !np->cork.opt->srcrt)
1162 return -ENOBUFS;
1163
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 /* need source address above miyazawa*/
1165 }
1166 dst_hold(&rt->u.dst);
YOSHIFUJI Hideakic8cdaf92008-03-10 04:30:37 -04001167 inet->cork.dst = &rt->u.dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 inet->cork.fl = *fl;
1169 np->cork.hop_limit = hlimit;
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +09001170 np->cork.tclass = tclass;
John Heffner628a5c52007-04-20 15:53:27 -07001171 mtu = np->pmtudisc == IPV6_PMTUDISC_PROBE ?
1172 rt->u.dst.dev->mtu : dst_mtu(rt->u.dst.path);
Dave Jonesc7503602006-03-20 22:44:52 -08001173 if (np->frag_size < mtu) {
YOSHIFUJI Hideakid91675f2006-02-24 13:18:33 -08001174 if (np->frag_size)
1175 mtu = np->frag_size;
1176 }
1177 inet->cork.fragsize = mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 if (dst_allfrag(rt->u.dst.path))
1179 inet->cork.flags |= IPCORK_ALLFRAG;
1180 inet->cork.length = 0;
1181 sk->sk_sndmsg_page = NULL;
1182 sk->sk_sndmsg_off = 0;
Herbert Xu014889422007-11-13 21:32:26 -08001183 exthdrlen = rt->u.dst.header_len + (opt ? opt->opt_flen : 0) -
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001184 rt->rt6i_nfheader_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 length += exthdrlen;
1186 transhdrlen += exthdrlen;
1187 } else {
YOSHIFUJI Hideakic8cdaf92008-03-10 04:30:37 -04001188 rt = (struct rt6_info *)inet->cork.dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 fl = &inet->cork.fl;
Herbert Xu0178b692009-02-05 15:15:50 -08001190 opt = np->cork.opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 transhdrlen = 0;
1192 exthdrlen = 0;
1193 mtu = inet->cork.fragsize;
1194 }
1195
1196 hh_len = LL_RESERVED_SPACE(rt->u.dst.dev);
1197
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001198 fragheaderlen = sizeof(struct ipv6hdr) + rt->rt6i_nfheader_len +
Herbert Xub4ce9272007-11-13 21:33:32 -08001199 (opt ? opt->opt_nflen : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 maxfraglen = ((mtu - fragheaderlen) & ~7) + fragheaderlen - sizeof(struct frag_hdr);
1201
1202 if (mtu <= sizeof(struct ipv6hdr) + IPV6_MAXPLEN) {
1203 if (inet->cork.length + length > sizeof(struct ipv6hdr) + IPV6_MAXPLEN - fragheaderlen) {
1204 ipv6_local_error(sk, EMSGSIZE, fl, mtu-exthdrlen);
1205 return -EMSGSIZE;
1206 }
1207 }
1208
1209 /*
1210 * Let's try using as much space as possible.
1211 * Use MTU if total length of the message fits into the MTU.
1212 * Otherwise, we need to reserve fragment header and
1213 * fragment alignment (= 8-15 octects, in total).
1214 *
1215 * Note that we may need to "move" the data from the tail of
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001216 * of the buffer to the new fragment when we split
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 * the message.
1218 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001219 * FIXME: It may be fragmented into multiple chunks
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 * at once if non-fragmentable extension headers
1221 * are too large.
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001222 * --yoshfuji
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 */
1224
1225 inet->cork.length += length;
Ananda Rajue89e9cf2005-10-18 15:46:41 -07001226 if (((length > mtu) && (sk->sk_protocol == IPPROTO_UDP)) &&
1227 (rt->u.dst.dev->features & NETIF_F_UFO)) {
1228
Patrick McHardybaa829d2006-03-12 20:35:12 -08001229 err = ip6_ufo_append_data(sk, getfrag, from, length, hh_len,
1230 fragheaderlen, transhdrlen, mtu,
1231 flags);
1232 if (err)
Ananda Rajue89e9cf2005-10-18 15:46:41 -07001233 goto error;
Ananda Rajue89e9cf2005-10-18 15:46:41 -07001234 return 0;
1235 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236
1237 if ((skb = skb_peek_tail(&sk->sk_write_queue)) == NULL)
1238 goto alloc_new_skb;
1239
1240 while (length > 0) {
1241 /* Check if the remaining data fits into current packet. */
1242 copy = (inet->cork.length <= mtu && !(inet->cork.flags & IPCORK_ALLFRAG) ? mtu : maxfraglen) - skb->len;
1243 if (copy < length)
1244 copy = maxfraglen - skb->len;
1245
1246 if (copy <= 0) {
1247 char *data;
1248 unsigned int datalen;
1249 unsigned int fraglen;
1250 unsigned int fraggap;
1251 unsigned int alloclen;
1252 struct sk_buff *skb_prev;
1253alloc_new_skb:
1254 skb_prev = skb;
1255
1256 /* There's no room in the current skb */
1257 if (skb_prev)
1258 fraggap = skb_prev->len - maxfraglen;
1259 else
1260 fraggap = 0;
1261
1262 /*
1263 * If remaining data exceeds the mtu,
1264 * we know we need more fragment(s).
1265 */
1266 datalen = length + fraggap;
1267 if (datalen > (inet->cork.length <= mtu && !(inet->cork.flags & IPCORK_ALLFRAG) ? mtu : maxfraglen) - fragheaderlen)
1268 datalen = maxfraglen - fragheaderlen;
1269
1270 fraglen = datalen + fragheaderlen;
1271 if ((flags & MSG_MORE) &&
1272 !(rt->u.dst.dev->features&NETIF_F_SG))
1273 alloclen = mtu;
1274 else
1275 alloclen = datalen + fragheaderlen;
1276
1277 /*
1278 * The last fragment gets additional space at tail.
1279 * Note: we overallocate on fragments with MSG_MODE
1280 * because we have no idea if we're the last one.
1281 */
1282 if (datalen == length + fraggap)
1283 alloclen += rt->u.dst.trailer_len;
1284
1285 /*
1286 * We just reserve space for fragment header.
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001287 * Note: this may be overallocation if the message
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 * (without MSG_MORE) fits into the MTU.
1289 */
1290 alloclen += sizeof(struct frag_hdr);
1291
1292 if (transhdrlen) {
1293 skb = sock_alloc_send_skb(sk,
1294 alloclen + hh_len,
1295 (flags & MSG_DONTWAIT), &err);
1296 } else {
1297 skb = NULL;
1298 if (atomic_read(&sk->sk_wmem_alloc) <=
1299 2 * sk->sk_sndbuf)
1300 skb = sock_wmalloc(sk,
1301 alloclen + hh_len, 1,
1302 sk->sk_allocation);
1303 if (unlikely(skb == NULL))
1304 err = -ENOBUFS;
1305 }
1306 if (skb == NULL)
1307 goto error;
1308 /*
1309 * Fill in the control structures
1310 */
1311 skb->ip_summed = csummode;
1312 skb->csum = 0;
1313 /* reserve for fragmentation */
1314 skb_reserve(skb, hh_len+sizeof(struct frag_hdr));
1315
1316 /*
1317 * Find where to start putting bytes
1318 */
1319 data = skb_put(skb, fraglen);
Arnaldo Carvalho de Meloc14d2452007-03-11 22:39:41 -03001320 skb_set_network_header(skb, exthdrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 data += fragheaderlen;
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07001322 skb->transport_header = (skb->network_header +
1323 fragheaderlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 if (fraggap) {
1325 skb->csum = skb_copy_and_csum_bits(
1326 skb_prev, maxfraglen,
1327 data + transhdrlen, fraggap, 0);
1328 skb_prev->csum = csum_sub(skb_prev->csum,
1329 skb->csum);
1330 data += fraggap;
Herbert Xue9fa4f72006-08-13 20:12:58 -07001331 pskb_trim_unique(skb_prev, maxfraglen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 }
1333 copy = datalen - transhdrlen - fraggap;
1334 if (copy < 0) {
1335 err = -EINVAL;
1336 kfree_skb(skb);
1337 goto error;
1338 } else if (copy > 0 && getfrag(from, data + transhdrlen, offset, copy, fraggap, skb) < 0) {
1339 err = -EFAULT;
1340 kfree_skb(skb);
1341 goto error;
1342 }
1343
1344 offset += copy;
1345 length -= datalen - fraggap;
1346 transhdrlen = 0;
1347 exthdrlen = 0;
1348 csummode = CHECKSUM_NONE;
1349
1350 /*
1351 * Put the packet on the pending queue
1352 */
1353 __skb_queue_tail(&sk->sk_write_queue, skb);
1354 continue;
1355 }
1356
1357 if (copy > length)
1358 copy = length;
1359
1360 if (!(rt->u.dst.dev->features&NETIF_F_SG)) {
1361 unsigned int off;
1362
1363 off = skb->len;
1364 if (getfrag(from, skb_put(skb, copy),
1365 offset, copy, off, skb) < 0) {
1366 __skb_trim(skb, off);
1367 err = -EFAULT;
1368 goto error;
1369 }
1370 } else {
1371 int i = skb_shinfo(skb)->nr_frags;
1372 skb_frag_t *frag = &skb_shinfo(skb)->frags[i-1];
1373 struct page *page = sk->sk_sndmsg_page;
1374 int off = sk->sk_sndmsg_off;
1375 unsigned int left;
1376
1377 if (page && (left = PAGE_SIZE - off) > 0) {
1378 if (copy >= left)
1379 copy = left;
1380 if (page != frag->page) {
1381 if (i == MAX_SKB_FRAGS) {
1382 err = -EMSGSIZE;
1383 goto error;
1384 }
1385 get_page(page);
1386 skb_fill_page_desc(skb, i, page, sk->sk_sndmsg_off, 0);
1387 frag = &skb_shinfo(skb)->frags[i];
1388 }
1389 } else if(i < MAX_SKB_FRAGS) {
1390 if (copy > PAGE_SIZE)
1391 copy = PAGE_SIZE;
1392 page = alloc_pages(sk->sk_allocation, 0);
1393 if (page == NULL) {
1394 err = -ENOMEM;
1395 goto error;
1396 }
1397 sk->sk_sndmsg_page = page;
1398 sk->sk_sndmsg_off = 0;
1399
1400 skb_fill_page_desc(skb, i, page, 0, 0);
1401 frag = &skb_shinfo(skb)->frags[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 } else {
1403 err = -EMSGSIZE;
1404 goto error;
1405 }
1406 if (getfrag(from, page_address(frag->page)+frag->page_offset+frag->size, offset, copy, skb->len, skb) < 0) {
1407 err = -EFAULT;
1408 goto error;
1409 }
1410 sk->sk_sndmsg_off += copy;
1411 frag->size += copy;
1412 skb->len += copy;
1413 skb->data_len += copy;
Herbert Xuf945fa72008-01-22 22:39:26 -08001414 skb->truesize += copy;
1415 atomic_add(copy, &sk->sk_wmem_alloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 }
1417 offset += copy;
1418 length -= copy;
1419 }
1420 return 0;
1421error:
1422 inet->cork.length -= length;
Denis V. Lunev3bd653c2008-10-08 10:54:51 -07001423 IP6_INC_STATS(sock_net(sk), rt->rt6i_idev, IPSTATS_MIB_OUTDISCARDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 return err;
1425}
1426
Pavel Emelyanovbf138862007-11-05 21:04:31 -08001427static void ip6_cork_release(struct inet_sock *inet, struct ipv6_pinfo *np)
1428{
Herbert Xu0178b692009-02-05 15:15:50 -08001429 if (np->cork.opt) {
1430 kfree(np->cork.opt->dst0opt);
1431 kfree(np->cork.opt->dst1opt);
1432 kfree(np->cork.opt->hopopt);
1433 kfree(np->cork.opt->srcrt);
1434 kfree(np->cork.opt);
1435 np->cork.opt = NULL;
1436 }
1437
YOSHIFUJI Hideakic8cdaf92008-03-10 04:30:37 -04001438 if (inet->cork.dst) {
1439 dst_release(inet->cork.dst);
1440 inet->cork.dst = NULL;
Pavel Emelyanovbf138862007-11-05 21:04:31 -08001441 inet->cork.flags &= ~IPCORK_ALLFRAG;
1442 }
1443 memset(&inet->cork.fl, 0, sizeof(inet->cork.fl));
1444}
1445
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446int ip6_push_pending_frames(struct sock *sk)
1447{
1448 struct sk_buff *skb, *tmp_skb;
1449 struct sk_buff **tail_skb;
1450 struct in6_addr final_dst_buf, *final_dst = &final_dst_buf;
1451 struct inet_sock *inet = inet_sk(sk);
1452 struct ipv6_pinfo *np = inet6_sk(sk);
Denis V. Lunev3bd653c2008-10-08 10:54:51 -07001453 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 struct ipv6hdr *hdr;
1455 struct ipv6_txoptions *opt = np->cork.opt;
YOSHIFUJI Hideakic8cdaf92008-03-10 04:30:37 -04001456 struct rt6_info *rt = (struct rt6_info *)inet->cork.dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 struct flowi *fl = &inet->cork.fl;
1458 unsigned char proto = fl->proto;
1459 int err = 0;
1460
1461 if ((skb = __skb_dequeue(&sk->sk_write_queue)) == NULL)
1462 goto out;
1463 tail_skb = &(skb_shinfo(skb)->frag_list);
1464
1465 /* move skb->data to ip header from ext header */
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -07001466 if (skb->data < skb_network_header(skb))
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -03001467 __skb_pull(skb, skb_network_offset(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 while ((tmp_skb = __skb_dequeue(&sk->sk_write_queue)) != NULL) {
Arnaldo Carvalho de Melocfe1fc72007-03-16 17:26:39 -03001469 __skb_pull(tmp_skb, skb_network_header_len(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 *tail_skb = tmp_skb;
1471 tail_skb = &(tmp_skb->next);
1472 skb->len += tmp_skb->len;
1473 skb->data_len += tmp_skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 skb->truesize += tmp_skb->truesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 tmp_skb->destructor = NULL;
1476 tmp_skb->sk = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 }
1478
Herbert Xu28a894532008-02-12 18:07:27 -08001479 /* Allow local fragmentation. */
Herbert Xub5c15fc2008-02-14 23:49:37 -08001480 if (np->pmtudisc < IPV6_PMTUDISC_DO)
Herbert Xu28a894532008-02-12 18:07:27 -08001481 skb->local_df = 1;
1482
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 ipv6_addr_copy(final_dst, &fl->fl6_dst);
Arnaldo Carvalho de Melocfe1fc72007-03-16 17:26:39 -03001484 __skb_pull(skb, skb_network_header_len(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 if (opt && opt->opt_flen)
1486 ipv6_push_frag_opts(skb, opt, &proto);
1487 if (opt && opt->opt_nflen)
1488 ipv6_push_nfrag_opts(skb, opt, &proto, &final_dst);
1489
Arnaldo Carvalho de Meloe2d1bca2007-04-10 20:46:21 -07001490 skb_push(skb, sizeof(struct ipv6hdr));
1491 skb_reset_network_header(skb);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001492 hdr = ipv6_hdr(skb);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001493
Al Viro90bcaf72006-11-08 00:25:17 -08001494 *(__be32*)hdr = fl->fl6_flowlabel |
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +09001495 htonl(0x60000000 | ((int)np->cork.tclass << 20));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 hdr->hop_limit = np->cork.hop_limit;
1498 hdr->nexthdr = proto;
1499 ipv6_addr_copy(&hdr->saddr, &fl->fl6_src);
1500 ipv6_addr_copy(&hdr->daddr, final_dst);
1501
Patrick McHardya2c20642006-01-08 22:37:26 -08001502 skb->priority = sk->sk_priority;
Laszlo Attila Toth4a19ec52008-01-30 19:08:16 -08001503 skb->mark = sk->sk_mark;
Patrick McHardya2c20642006-01-08 22:37:26 -08001504
Eric Dumazetadf30902009-06-02 05:19:30 +00001505 skb_dst_set(skb, dst_clone(&rt->u.dst));
Neil Hormanedf391f2009-04-27 02:45:02 -07001506 IP6_UPD_PO_STATS(net, rt->rt6i_idev, IPSTATS_MIB_OUT, skb->len);
David L Stevens14878f72007-09-16 16:52:35 -07001507 if (proto == IPPROTO_ICMPV6) {
Eric Dumazetadf30902009-06-02 05:19:30 +00001508 struct inet6_dev *idev = ip6_dst_idev(skb_dst(skb));
David L Stevens14878f72007-09-16 16:52:35 -07001509
Denis V. Lunev5a57d4c2008-10-08 10:34:14 -07001510 ICMP6MSGOUT_INC_STATS_BH(net, idev, icmp6_hdr(skb)->icmp6_type);
Denis V. Luneve41b5362008-10-08 10:33:26 -07001511 ICMP6_INC_STATS_BH(net, idev, ICMP6_MIB_OUTMSGS);
David L Stevens14878f72007-09-16 16:52:35 -07001512 }
1513
Herbert Xuef76bc22008-01-11 19:15:08 -08001514 err = ip6_local_out(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 if (err) {
1516 if (err > 0)
Eric Dumazet6ce9e7b2009-09-02 18:05:33 -07001517 err = net_xmit_errno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 if (err)
1519 goto error;
1520 }
1521
1522out:
Pavel Emelyanovbf138862007-11-05 21:04:31 -08001523 ip6_cork_release(inet, np);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 return err;
1525error:
Eric Dumazet06254912009-09-01 18:37:16 -07001526 IP6_INC_STATS(net, rt->rt6i_idev, IPSTATS_MIB_OUTDISCARDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 goto out;
1528}
1529
1530void ip6_flush_pending_frames(struct sock *sk)
1531{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 struct sk_buff *skb;
1533
1534 while ((skb = __skb_dequeue_tail(&sk->sk_write_queue)) != NULL) {
Eric Dumazetadf30902009-06-02 05:19:30 +00001535 if (skb_dst(skb))
1536 IP6_INC_STATS(sock_net(sk), ip6_dst_idev(skb_dst(skb)),
YOSHIFUJI Hideakie1f522082007-09-11 11:31:43 +02001537 IPSTATS_MIB_OUTDISCARDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 kfree_skb(skb);
1539 }
1540
Pavel Emelyanovbf138862007-11-05 21:04:31 -08001541 ip6_cork_release(inet_sk(sk), inet6_sk(sk));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542}