[SK_BUFF]: Use the helpers to get the layer header pointer
[linux-2.6-block.git] / net / ipv6 / ip6_output.c
CommitLineData
1da177e4
LT
1/*
2 * IPv6 output functions
1ab1457c 3 * Linux INET6 implementation
1da177e4
LT
4 *
5 * Authors:
1ab1457c 6 * Pedro Roque <roque@di.fc.ul.pt>
1da177e4
LT
7 *
8 * $Id: ip6_output.c,v 1.34 2002/02/01 22:01:04 davem Exp $
9 *
10 * Based on linux/net/ipv4/ip_output.c
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version
15 * 2 of the License, or (at your option) any later version.
16 *
17 * Changes:
18 * A.N.Kuznetsov : airthmetics in fragmentation.
19 * extension headers are implemented.
20 * route changes now work.
21 * ip6_forward does not confuse sniffers.
22 * etc.
23 *
24 * H. von Brand : Added missing #include <linux/string.h>
25 * Imran Patel : frag id should be in NBO
26 * Kazunori MIYAZAWA @USAGI
27 * : add ip6_append_data and related functions
28 * for datagram xmit
29 */
30
1da177e4
LT
31#include <linux/errno.h>
32#include <linux/types.h>
33#include <linux/string.h>
34#include <linux/socket.h>
35#include <linux/net.h>
36#include <linux/netdevice.h>
37#include <linux/if_arp.h>
38#include <linux/in6.h>
39#include <linux/tcp.h>
40#include <linux/route.h>
b59f45d0 41#include <linux/module.h>
1da177e4
LT
42
43#include <linux/netfilter.h>
44#include <linux/netfilter_ipv6.h>
45
46#include <net/sock.h>
47#include <net/snmp.h>
48
49#include <net/ipv6.h>
50#include <net/ndisc.h>
51#include <net/protocol.h>
52#include <net/ip6_route.h>
53#include <net/addrconf.h>
54#include <net/rawv6.h>
55#include <net/icmp.h>
56#include <net/xfrm.h>
57#include <net/checksum.h>
58
59static int ip6_fragment(struct sk_buff *skb, int (*output)(struct sk_buff *));
60
61static __inline__ void ipv6_select_ident(struct sk_buff *skb, struct frag_hdr *fhdr)
62{
63 static u32 ipv6_fragmentation_id = 1;
64 static DEFINE_SPINLOCK(ip6_id_lock);
65
66 spin_lock_bh(&ip6_id_lock);
67 fhdr->identification = htonl(ipv6_fragmentation_id);
68 if (++ipv6_fragmentation_id == 0)
69 ipv6_fragmentation_id = 1;
70 spin_unlock_bh(&ip6_id_lock);
71}
72
73static inline int ip6_output_finish(struct sk_buff *skb)
74{
1da177e4 75 struct dst_entry *dst = skb->dst;
1da177e4 76
3644f0ce
SH
77 if (dst->hh)
78 return neigh_hh_output(dst->hh, skb);
79 else if (dst->neighbour)
1da177e4
LT
80 return dst->neighbour->output(skb);
81
a11d206d 82 IP6_INC_STATS_BH(ip6_dst_idev(dst), IPSTATS_MIB_OUTNOROUTES);
1da177e4
LT
83 kfree_skb(skb);
84 return -EINVAL;
85
86}
87
88/* dev_loopback_xmit for use with netfilter. */
89static int ip6_dev_loopback_xmit(struct sk_buff *newskb)
90{
459a98ed 91 skb_reset_mac_header(newskb);
bbe735e4 92 __skb_pull(newskb, skb_network_offset(newskb));
1da177e4
LT
93 newskb->pkt_type = PACKET_LOOPBACK;
94 newskb->ip_summed = CHECKSUM_UNNECESSARY;
95 BUG_TRAP(newskb->dst);
96
97 netif_rx(newskb);
98 return 0;
99}
100
101
102static int ip6_output2(struct sk_buff *skb)
103{
104 struct dst_entry *dst = skb->dst;
105 struct net_device *dev = dst->dev;
106
107 skb->protocol = htons(ETH_P_IPV6);
108 skb->dev = dev;
109
0660e03f 110 if (ipv6_addr_is_multicast(&ipv6_hdr(skb)->daddr)) {
1da177e4 111 struct ipv6_pinfo* np = skb->sk ? inet6_sk(skb->sk) : NULL;
a11d206d 112 struct inet6_dev *idev = ip6_dst_idev(skb->dst);
1da177e4
LT
113
114 if (!(dev->flags & IFF_LOOPBACK) && (!np || np->mc_loop) &&
0660e03f
ACM
115 ipv6_chk_mcast_addr(dev, &ipv6_hdr(skb)->daddr,
116 &ipv6_hdr(skb)->saddr)) {
1da177e4
LT
117 struct sk_buff *newskb = skb_clone(skb, GFP_ATOMIC);
118
119 /* Do not check for IFF_ALLMULTI; multicast routing
120 is not supported in any case.
121 */
122 if (newskb)
123 NF_HOOK(PF_INET6, NF_IP6_POST_ROUTING, newskb, NULL,
124 newskb->dev,
125 ip6_dev_loopback_xmit);
126
0660e03f 127 if (ipv6_hdr(skb)->hop_limit == 0) {
a11d206d 128 IP6_INC_STATS(idev, IPSTATS_MIB_OUTDISCARDS);
1da177e4
LT
129 kfree_skb(skb);
130 return 0;
131 }
132 }
133
a11d206d 134 IP6_INC_STATS(idev, IPSTATS_MIB_OUTMCASTPKTS);
1da177e4
LT
135 }
136
137 return NF_HOOK(PF_INET6, NF_IP6_POST_ROUTING, skb,NULL, skb->dev,ip6_output_finish);
138}
139
140int ip6_output(struct sk_buff *skb)
141{
89114afd 142 if ((skb->len > dst_mtu(skb->dst) && !skb_is_gso(skb)) ||
e89e9cf5 143 dst_allfrag(skb->dst))
1da177e4
LT
144 return ip6_fragment(skb, ip6_output2);
145 else
146 return ip6_output2(skb);
147}
148
1da177e4
LT
149/*
150 * xmit an sk_buff (used by TCP)
151 */
152
153int ip6_xmit(struct sock *sk, struct sk_buff *skb, struct flowi *fl,
154 struct ipv6_txoptions *opt, int ipfragok)
155{
b30bd282 156 struct ipv6_pinfo *np = inet6_sk(sk);
1da177e4
LT
157 struct in6_addr *first_hop = &fl->fl6_dst;
158 struct dst_entry *dst = skb->dst;
159 struct ipv6hdr *hdr;
160 u8 proto = fl->proto;
161 int seg_len = skb->len;
41a1f8ea 162 int hlimit, tclass;
1da177e4
LT
163 u32 mtu;
164
165 if (opt) {
166 int head_room;
167
168 /* First: exthdrs may take lots of space (~8K for now)
169 MAX_HEADER is not enough.
170 */
171 head_room = opt->opt_nflen + opt->opt_flen;
172 seg_len += head_room;
173 head_room += sizeof(struct ipv6hdr) + LL_RESERVED_SPACE(dst->dev);
174
175 if (skb_headroom(skb) < head_room) {
176 struct sk_buff *skb2 = skb_realloc_headroom(skb, head_room);
a11d206d
YH
177 if (skb2 == NULL) {
178 IP6_INC_STATS(ip6_dst_idev(skb->dst),
179 IPSTATS_MIB_OUTDISCARDS);
180 kfree_skb(skb);
1da177e4
LT
181 return -ENOBUFS;
182 }
a11d206d
YH
183 kfree_skb(skb);
184 skb = skb2;
1da177e4
LT
185 if (sk)
186 skb_set_owner_w(skb, sk);
187 }
188 if (opt->opt_flen)
189 ipv6_push_frag_opts(skb, opt, &proto);
190 if (opt->opt_nflen)
191 ipv6_push_nfrag_opts(skb, opt, &proto, &first_hop);
192 }
193
e2d1bca7
ACM
194 skb_push(skb, sizeof(struct ipv6hdr));
195 skb_reset_network_header(skb);
0660e03f 196 hdr = ipv6_hdr(skb);
1da177e4
LT
197
198 /*
199 * Fill in the IPv6 header
200 */
201
1da177e4
LT
202 hlimit = -1;
203 if (np)
204 hlimit = np->hop_limit;
205 if (hlimit < 0)
206 hlimit = dst_metric(dst, RTAX_HOPLIMIT);
207 if (hlimit < 0)
208 hlimit = ipv6_get_hoplimit(dst->dev);
209
41a1f8ea
YH
210 tclass = -1;
211 if (np)
212 tclass = np->tclass;
213 if (tclass < 0)
214 tclass = 0;
215
90bcaf7b 216 *(__be32 *)hdr = htonl(0x60000000 | (tclass << 20)) | fl->fl6_flowlabel;
41a1f8ea 217
1da177e4
LT
218 hdr->payload_len = htons(seg_len);
219 hdr->nexthdr = proto;
220 hdr->hop_limit = hlimit;
221
222 ipv6_addr_copy(&hdr->saddr, &fl->fl6_src);
223 ipv6_addr_copy(&hdr->daddr, first_hop);
224
a2c2064f
PM
225 skb->priority = sk->sk_priority;
226
1da177e4 227 mtu = dst_mtu(dst);
89114afd 228 if ((skb->len <= mtu) || ipfragok || skb_is_gso(skb)) {
a11d206d
YH
229 IP6_INC_STATS(ip6_dst_idev(skb->dst),
230 IPSTATS_MIB_OUTREQUESTS);
6869c4d8
HW
231 return NF_HOOK(PF_INET6, NF_IP6_LOCAL_OUT, skb, NULL, dst->dev,
232 dst_output);
1da177e4
LT
233 }
234
235 if (net_ratelimit())
236 printk(KERN_DEBUG "IPv6: sending pkt_too_big to self\n");
237 skb->dev = dst->dev;
238 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu, skb->dev);
a11d206d 239 IP6_INC_STATS(ip6_dst_idev(skb->dst), IPSTATS_MIB_FRAGFAILS);
1da177e4
LT
240 kfree_skb(skb);
241 return -EMSGSIZE;
242}
243
7159039a
YH
244EXPORT_SYMBOL(ip6_xmit);
245
1da177e4
LT
246/*
247 * To avoid extra problems ND packets are send through this
248 * routine. It's code duplication but I really want to avoid
249 * extra checks since ipv6_build_header is used by TCP (which
250 * is for us performance critical)
251 */
252
253int ip6_nd_hdr(struct sock *sk, struct sk_buff *skb, struct net_device *dev,
254 struct in6_addr *saddr, struct in6_addr *daddr,
255 int proto, int len)
256{
257 struct ipv6_pinfo *np = inet6_sk(sk);
258 struct ipv6hdr *hdr;
259 int totlen;
260
261 skb->protocol = htons(ETH_P_IPV6);
262 skb->dev = dev;
263
264 totlen = len + sizeof(struct ipv6hdr);
265
55f79cc0
ACM
266 skb_reset_network_header(skb);
267 skb_put(skb, sizeof(struct ipv6hdr));
0660e03f 268 hdr = ipv6_hdr(skb);
1da177e4 269
ae08e1f0 270 *(__be32*)hdr = htonl(0x60000000);
1da177e4
LT
271
272 hdr->payload_len = htons(len);
273 hdr->nexthdr = proto;
274 hdr->hop_limit = np->hop_limit;
275
276 ipv6_addr_copy(&hdr->saddr, saddr);
277 ipv6_addr_copy(&hdr->daddr, daddr);
278
279 return 0;
280}
281
282static int ip6_call_ra_chain(struct sk_buff *skb, int sel)
283{
284 struct ip6_ra_chain *ra;
285 struct sock *last = NULL;
286
287 read_lock(&ip6_ra_lock);
288 for (ra = ip6_ra_chain; ra; ra = ra->next) {
289 struct sock *sk = ra->sk;
0bd1b59b
AM
290 if (sk && ra->sel == sel &&
291 (!sk->sk_bound_dev_if ||
292 sk->sk_bound_dev_if == skb->dev->ifindex)) {
1da177e4
LT
293 if (last) {
294 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
295 if (skb2)
296 rawv6_rcv(last, skb2);
297 }
298 last = sk;
299 }
300 }
301
302 if (last) {
303 rawv6_rcv(last, skb);
304 read_unlock(&ip6_ra_lock);
305 return 1;
306 }
307 read_unlock(&ip6_ra_lock);
308 return 0;
309}
310
e21e0b5f
VN
311static int ip6_forward_proxy_check(struct sk_buff *skb)
312{
0660e03f 313 struct ipv6hdr *hdr = ipv6_hdr(skb);
e21e0b5f
VN
314 u8 nexthdr = hdr->nexthdr;
315 int offset;
316
317 if (ipv6_ext_hdr(nexthdr)) {
318 offset = ipv6_skip_exthdr(skb, sizeof(*hdr), &nexthdr);
319 if (offset < 0)
320 return 0;
321 } else
322 offset = sizeof(struct ipv6hdr);
323
324 if (nexthdr == IPPROTO_ICMPV6) {
325 struct icmp6hdr *icmp6;
326
d56f90a7
ACM
327 if (!pskb_may_pull(skb, (skb_network_header(skb) +
328 offset + 1 - skb->data)))
e21e0b5f
VN
329 return 0;
330
d56f90a7 331 icmp6 = (struct icmp6hdr *)(skb_network_header(skb) + offset);
e21e0b5f
VN
332
333 switch (icmp6->icmp6_type) {
334 case NDISC_ROUTER_SOLICITATION:
335 case NDISC_ROUTER_ADVERTISEMENT:
336 case NDISC_NEIGHBOUR_SOLICITATION:
337 case NDISC_NEIGHBOUR_ADVERTISEMENT:
338 case NDISC_REDIRECT:
339 /* For reaction involving unicast neighbor discovery
340 * message destined to the proxied address, pass it to
341 * input function.
342 */
343 return 1;
344 default:
345 break;
346 }
347 }
348
74553b09
VN
349 /*
350 * The proxying router can't forward traffic sent to a link-local
351 * address, so signal the sender and discard the packet. This
352 * behavior is clarified by the MIPv6 specification.
353 */
354 if (ipv6_addr_type(&hdr->daddr) & IPV6_ADDR_LINKLOCAL) {
355 dst_link_failure(skb);
356 return -1;
357 }
358
e21e0b5f
VN
359 return 0;
360}
361
1da177e4
LT
362static inline int ip6_forward_finish(struct sk_buff *skb)
363{
364 return dst_output(skb);
365}
366
367int ip6_forward(struct sk_buff *skb)
368{
369 struct dst_entry *dst = skb->dst;
0660e03f 370 struct ipv6hdr *hdr = ipv6_hdr(skb);
1da177e4 371 struct inet6_skb_parm *opt = IP6CB(skb);
1ab1457c 372
1da177e4
LT
373 if (ipv6_devconf.forwarding == 0)
374 goto error;
375
376 if (!xfrm6_policy_check(NULL, XFRM_POLICY_FWD, skb)) {
a11d206d 377 IP6_INC_STATS(ip6_dst_idev(dst), IPSTATS_MIB_INDISCARDS);
1da177e4
LT
378 goto drop;
379 }
380
381 skb->ip_summed = CHECKSUM_NONE;
382
383 /*
384 * We DO NOT make any processing on
385 * RA packets, pushing them to user level AS IS
386 * without ane WARRANTY that application will be able
387 * to interpret them. The reason is that we
388 * cannot make anything clever here.
389 *
390 * We are not end-node, so that if packet contains
391 * AH/ESP, we cannot make anything.
392 * Defragmentation also would be mistake, RA packets
393 * cannot be fragmented, because there is no warranty
394 * that different fragments will go along one path. --ANK
395 */
396 if (opt->ra) {
d56f90a7 397 u8 *ptr = skb_network_header(skb) + opt->ra;
1da177e4
LT
398 if (ip6_call_ra_chain(skb, (ptr[2]<<8) + ptr[3]))
399 return 0;
400 }
401
402 /*
403 * check and decrement ttl
404 */
405 if (hdr->hop_limit <= 1) {
406 /* Force OUTPUT device used as source address */
407 skb->dev = dst->dev;
408 icmpv6_send(skb, ICMPV6_TIME_EXCEED, ICMPV6_EXC_HOPLIMIT,
409 0, skb->dev);
a11d206d 410 IP6_INC_STATS_BH(ip6_dst_idev(dst), IPSTATS_MIB_INHDRERRORS);
1da177e4
LT
411
412 kfree_skb(skb);
413 return -ETIMEDOUT;
414 }
415
fbea49e1
YH
416 /* XXX: idev->cnf.proxy_ndp? */
417 if (ipv6_devconf.proxy_ndp &&
418 pneigh_lookup(&nd_tbl, &hdr->daddr, skb->dev, 0)) {
74553b09
VN
419 int proxied = ip6_forward_proxy_check(skb);
420 if (proxied > 0)
e21e0b5f 421 return ip6_input(skb);
74553b09 422 else if (proxied < 0) {
a11d206d 423 IP6_INC_STATS(ip6_dst_idev(dst), IPSTATS_MIB_INDISCARDS);
74553b09
VN
424 goto drop;
425 }
e21e0b5f
VN
426 }
427
1da177e4 428 if (!xfrm6_route_forward(skb)) {
a11d206d 429 IP6_INC_STATS(ip6_dst_idev(dst), IPSTATS_MIB_INDISCARDS);
1da177e4
LT
430 goto drop;
431 }
432 dst = skb->dst;
433
434 /* IPv6 specs say nothing about it, but it is clear that we cannot
435 send redirects to source routed frames.
436 */
437 if (skb->dev == dst->dev && dst->neighbour && opt->srcrt == 0) {
438 struct in6_addr *target = NULL;
439 struct rt6_info *rt;
440 struct neighbour *n = dst->neighbour;
441
442 /*
443 * incoming and outgoing devices are the same
444 * send a redirect.
445 */
446
447 rt = (struct rt6_info *) dst;
448 if ((rt->rt6i_flags & RTF_GATEWAY))
449 target = (struct in6_addr*)&n->primary_key;
450 else
451 target = &hdr->daddr;
452
453 /* Limit redirects both by destination (here)
454 and by source (inside ndisc_send_redirect)
455 */
456 if (xrlim_allow(dst, 1*HZ))
457 ndisc_send_redirect(skb, n, target);
458 } else if (ipv6_addr_type(&hdr->saddr)&(IPV6_ADDR_MULTICAST|IPV6_ADDR_LOOPBACK
459 |IPV6_ADDR_LINKLOCAL)) {
460 /* This check is security critical. */
461 goto error;
462 }
463
464 if (skb->len > dst_mtu(dst)) {
465 /* Again, force OUTPUT device used as source address */
466 skb->dev = dst->dev;
467 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, dst_mtu(dst), skb->dev);
a11d206d
YH
468 IP6_INC_STATS_BH(ip6_dst_idev(dst), IPSTATS_MIB_INTOOBIGERRORS);
469 IP6_INC_STATS_BH(ip6_dst_idev(dst), IPSTATS_MIB_FRAGFAILS);
1da177e4
LT
470 kfree_skb(skb);
471 return -EMSGSIZE;
472 }
473
474 if (skb_cow(skb, dst->dev->hard_header_len)) {
a11d206d 475 IP6_INC_STATS(ip6_dst_idev(dst), IPSTATS_MIB_OUTDISCARDS);
1da177e4
LT
476 goto drop;
477 }
478
0660e03f 479 hdr = ipv6_hdr(skb);
1da177e4
LT
480
481 /* Mangling hops number delayed to point after skb COW */
1ab1457c 482
1da177e4
LT
483 hdr->hop_limit--;
484
a11d206d 485 IP6_INC_STATS_BH(ip6_dst_idev(dst), IPSTATS_MIB_OUTFORWDATAGRAMS);
1da177e4
LT
486 return NF_HOOK(PF_INET6,NF_IP6_FORWARD, skb, skb->dev, dst->dev, ip6_forward_finish);
487
488error:
a11d206d 489 IP6_INC_STATS_BH(ip6_dst_idev(dst), IPSTATS_MIB_INADDRERRORS);
1da177e4
LT
490drop:
491 kfree_skb(skb);
492 return -EINVAL;
493}
494
495static void ip6_copy_metadata(struct sk_buff *to, struct sk_buff *from)
496{
497 to->pkt_type = from->pkt_type;
498 to->priority = from->priority;
499 to->protocol = from->protocol;
1da177e4
LT
500 dst_release(to->dst);
501 to->dst = dst_clone(from->dst);
502 to->dev = from->dev;
82e91ffe 503 to->mark = from->mark;
1da177e4
LT
504
505#ifdef CONFIG_NET_SCHED
506 to->tc_index = from->tc_index;
507#endif
e7ac05f3 508 nf_copy(to, from);
984bc16c 509 skb_copy_secmark(to, from);
1da177e4
LT
510}
511
512int ip6_find_1stfragopt(struct sk_buff *skb, u8 **nexthdr)
513{
514 u16 offset = sizeof(struct ipv6hdr);
0660e03f
ACM
515 struct ipv6_opt_hdr *exthdr =
516 (struct ipv6_opt_hdr *)(ipv6_hdr(skb) + 1);
d56f90a7 517 unsigned int packet_len = skb->tail - skb_network_header(skb);
1da177e4 518 int found_rhdr = 0;
0660e03f 519 *nexthdr = &ipv6_hdr(skb)->nexthdr;
1da177e4
LT
520
521 while (offset + 1 <= packet_len) {
522
523 switch (**nexthdr) {
524
525 case NEXTHDR_HOP:
27637df9 526 break;
1da177e4 527 case NEXTHDR_ROUTING:
27637df9
MN
528 found_rhdr = 1;
529 break;
1da177e4 530 case NEXTHDR_DEST:
27637df9
MN
531#ifdef CONFIG_IPV6_MIP6
532 if (ipv6_find_tlv(skb, offset, IPV6_TLV_HAO) >= 0)
533 break;
534#endif
535 if (found_rhdr)
536 return offset;
1da177e4
LT
537 break;
538 default :
539 return offset;
540 }
27637df9
MN
541
542 offset += ipv6_optlen(exthdr);
543 *nexthdr = &exthdr->nexthdr;
d56f90a7
ACM
544 exthdr = (struct ipv6_opt_hdr *)(skb_network_header(skb) +
545 offset);
1da177e4
LT
546 }
547
548 return offset;
549}
b59f45d0 550EXPORT_SYMBOL_GPL(ip6_find_1stfragopt);
1da177e4
LT
551
552static int ip6_fragment(struct sk_buff *skb, int (*output)(struct sk_buff *))
553{
554 struct net_device *dev;
555 struct sk_buff *frag;
556 struct rt6_info *rt = (struct rt6_info*)skb->dst;
d91675f9 557 struct ipv6_pinfo *np = skb->sk ? inet6_sk(skb->sk) : NULL;
1da177e4
LT
558 struct ipv6hdr *tmp_hdr;
559 struct frag_hdr *fh;
560 unsigned int mtu, hlen, left, len;
ae08e1f0 561 __be32 frag_id = 0;
1da177e4
LT
562 int ptr, offset = 0, err=0;
563 u8 *prevhdr, nexthdr = 0;
564
565 dev = rt->u.dst.dev;
566 hlen = ip6_find_1stfragopt(skb, &prevhdr);
567 nexthdr = *prevhdr;
568
d91675f9
YH
569 mtu = dst_mtu(&rt->u.dst);
570 if (np && np->frag_size < mtu) {
571 if (np->frag_size)
572 mtu = np->frag_size;
573 }
574 mtu -= hlen + sizeof(struct frag_hdr);
1da177e4
LT
575
576 if (skb_shinfo(skb)->frag_list) {
577 int first_len = skb_pagelen(skb);
578
579 if (first_len - hlen > mtu ||
580 ((first_len - hlen) & 7) ||
581 skb_cloned(skb))
582 goto slow_path;
583
584 for (frag = skb_shinfo(skb)->frag_list; frag; frag = frag->next) {
585 /* Correct geometry. */
586 if (frag->len > mtu ||
587 ((frag->len & 7) && frag->next) ||
588 skb_headroom(frag) < hlen)
589 goto slow_path;
590
1da177e4
LT
591 /* Partially cloned skb? */
592 if (skb_shared(frag))
593 goto slow_path;
2fdba6b0
HX
594
595 BUG_ON(frag->sk);
596 if (skb->sk) {
597 sock_hold(skb->sk);
598 frag->sk = skb->sk;
599 frag->destructor = sock_wfree;
600 skb->truesize -= frag->truesize;
601 }
1da177e4
LT
602 }
603
604 err = 0;
605 offset = 0;
606 frag = skb_shinfo(skb)->frag_list;
607 skb_shinfo(skb)->frag_list = NULL;
608 /* BUILD HEADER */
609
9a217a1c 610 *prevhdr = NEXTHDR_FRAGMENT;
d56f90a7 611 tmp_hdr = kmemdup(skb_network_header(skb), hlen, GFP_ATOMIC);
1da177e4 612 if (!tmp_hdr) {
a11d206d 613 IP6_INC_STATS(ip6_dst_idev(skb->dst), IPSTATS_MIB_FRAGFAILS);
1da177e4
LT
614 return -ENOMEM;
615 }
616
1da177e4
LT
617 __skb_pull(skb, hlen);
618 fh = (struct frag_hdr*)__skb_push(skb, sizeof(struct frag_hdr));
e2d1bca7
ACM
619 __skb_push(skb, hlen);
620 skb_reset_network_header(skb);
d56f90a7 621 memcpy(skb_network_header(skb), tmp_hdr, hlen);
1da177e4
LT
622
623 ipv6_select_ident(skb, fh);
624 fh->nexthdr = nexthdr;
625 fh->reserved = 0;
626 fh->frag_off = htons(IP6_MF);
627 frag_id = fh->identification;
628
629 first_len = skb_pagelen(skb);
630 skb->data_len = first_len - skb_headlen(skb);
631 skb->len = first_len;
0660e03f
ACM
632 ipv6_hdr(skb)->payload_len = htons(first_len -
633 sizeof(struct ipv6hdr));
a11d206d
YH
634
635 dst_hold(&rt->u.dst);
1da177e4
LT
636
637 for (;;) {
638 /* Prepare header of the next frame,
639 * before previous one went down. */
640 if (frag) {
641 frag->ip_summed = CHECKSUM_NONE;
badff6d0 642 skb_reset_transport_header(frag);
1da177e4 643 fh = (struct frag_hdr*)__skb_push(frag, sizeof(struct frag_hdr));
e2d1bca7
ACM
644 __skb_push(frag, hlen);
645 skb_reset_network_header(frag);
d56f90a7
ACM
646 memcpy(skb_network_header(frag), tmp_hdr,
647 hlen);
1da177e4
LT
648 offset += skb->len - hlen - sizeof(struct frag_hdr);
649 fh->nexthdr = nexthdr;
650 fh->reserved = 0;
651 fh->frag_off = htons(offset);
652 if (frag->next != NULL)
653 fh->frag_off |= htons(IP6_MF);
654 fh->identification = frag_id;
0660e03f
ACM
655 ipv6_hdr(frag)->payload_len =
656 htons(frag->len -
657 sizeof(struct ipv6hdr));
1da177e4
LT
658 ip6_copy_metadata(frag, skb);
659 }
1ab1457c 660
1da177e4 661 err = output(skb);
dafee490 662 if(!err)
a11d206d 663 IP6_INC_STATS(ip6_dst_idev(&rt->u.dst), IPSTATS_MIB_FRAGCREATES);
dafee490 664
1da177e4
LT
665 if (err || !frag)
666 break;
667
668 skb = frag;
669 frag = skb->next;
670 skb->next = NULL;
671 }
672
a51482bd 673 kfree(tmp_hdr);
1da177e4
LT
674
675 if (err == 0) {
a11d206d
YH
676 IP6_INC_STATS(ip6_dst_idev(&rt->u.dst), IPSTATS_MIB_FRAGOKS);
677 dst_release(&rt->u.dst);
1da177e4
LT
678 return 0;
679 }
680
681 while (frag) {
682 skb = frag->next;
683 kfree_skb(frag);
684 frag = skb;
685 }
686
a11d206d
YH
687 IP6_INC_STATS(ip6_dst_idev(&rt->u.dst), IPSTATS_MIB_FRAGFAILS);
688 dst_release(&rt->u.dst);
1da177e4
LT
689 return err;
690 }
691
692slow_path:
693 left = skb->len - hlen; /* Space per frame */
694 ptr = hlen; /* Where to start from */
695
696 /*
697 * Fragment the datagram.
698 */
699
700 *prevhdr = NEXTHDR_FRAGMENT;
701
702 /*
703 * Keep copying data until we run out.
704 */
705 while(left > 0) {
706 len = left;
707 /* IF: it doesn't fit, use 'mtu' - the data space left */
708 if (len > mtu)
709 len = mtu;
710 /* IF: we are not sending upto and including the packet end
711 then align the next start on an eight byte boundary */
712 if (len < left) {
713 len &= ~7;
714 }
715 /*
716 * Allocate buffer.
717 */
718
719 if ((frag = alloc_skb(len+hlen+sizeof(struct frag_hdr)+LL_RESERVED_SPACE(rt->u.dst.dev), GFP_ATOMIC)) == NULL) {
64ce2073 720 NETDEBUG(KERN_INFO "IPv6: frag: no memory for new fragment!\n");
a11d206d
YH
721 IP6_INC_STATS(ip6_dst_idev(skb->dst),
722 IPSTATS_MIB_FRAGFAILS);
1da177e4
LT
723 err = -ENOMEM;
724 goto fail;
725 }
726
727 /*
728 * Set up data on packet
729 */
730
731 ip6_copy_metadata(frag, skb);
732 skb_reserve(frag, LL_RESERVED_SPACE(rt->u.dst.dev));
733 skb_put(frag, len + hlen + sizeof(struct frag_hdr));
c1d2bbe1 734 skb_reset_network_header(frag);
badff6d0
ACM
735 fh = (struct frag_hdr *)(skb_network_header(frag) + hlen);
736 frag->h.raw = frag->nh.raw + hlen + sizeof(struct frag_hdr);
1da177e4
LT
737
738 /*
739 * Charge the memory for the fragment to any owner
740 * it might possess
741 */
742 if (skb->sk)
743 skb_set_owner_w(frag, skb->sk);
744
745 /*
746 * Copy the packet header into the new buffer.
747 */
d56f90a7 748 memcpy(skb_network_header(frag), skb->data, hlen);
1da177e4
LT
749
750 /*
751 * Build fragment header.
752 */
753 fh->nexthdr = nexthdr;
754 fh->reserved = 0;
f36d6ab1 755 if (!frag_id) {
1da177e4
LT
756 ipv6_select_ident(skb, fh);
757 frag_id = fh->identification;
758 } else
759 fh->identification = frag_id;
760
761 /*
762 * Copy a block of the IP datagram.
763 */
764 if (skb_copy_bits(skb, ptr, frag->h.raw, len))
765 BUG();
766 left -= len;
767
768 fh->frag_off = htons(offset);
769 if (left > 0)
770 fh->frag_off |= htons(IP6_MF);
0660e03f
ACM
771 ipv6_hdr(frag)->payload_len = htons(frag->len -
772 sizeof(struct ipv6hdr));
1da177e4
LT
773
774 ptr += len;
775 offset += len;
776
777 /*
778 * Put this fragment into the sending queue.
779 */
1da177e4
LT
780 err = output(frag);
781 if (err)
782 goto fail;
dafee490 783
a11d206d 784 IP6_INC_STATS(ip6_dst_idev(skb->dst), IPSTATS_MIB_FRAGCREATES);
1da177e4 785 }
a11d206d
YH
786 IP6_INC_STATS(ip6_dst_idev(skb->dst),
787 IPSTATS_MIB_FRAGOKS);
1da177e4 788 kfree_skb(skb);
1da177e4
LT
789 return err;
790
791fail:
a11d206d
YH
792 IP6_INC_STATS(ip6_dst_idev(skb->dst),
793 IPSTATS_MIB_FRAGFAILS);
1ab1457c 794 kfree_skb(skb);
1da177e4
LT
795 return err;
796}
797
cf6b1982
YH
798static inline int ip6_rt_check(struct rt6key *rt_key,
799 struct in6_addr *fl_addr,
800 struct in6_addr *addr_cache)
801{
802 return ((rt_key->plen != 128 || !ipv6_addr_equal(fl_addr, &rt_key->addr)) &&
803 (addr_cache == NULL || !ipv6_addr_equal(fl_addr, addr_cache)));
804}
805
497c615a
HX
806static struct dst_entry *ip6_sk_dst_check(struct sock *sk,
807 struct dst_entry *dst,
808 struct flowi *fl)
1da177e4 809{
497c615a
HX
810 struct ipv6_pinfo *np = inet6_sk(sk);
811 struct rt6_info *rt = (struct rt6_info *)dst;
1da177e4 812
497c615a
HX
813 if (!dst)
814 goto out;
815
816 /* Yes, checking route validity in not connected
817 * case is not very simple. Take into account,
818 * that we do not support routing by source, TOS,
819 * and MSG_DONTROUTE --ANK (980726)
820 *
cf6b1982
YH
821 * 1. ip6_rt_check(): If route was host route,
822 * check that cached destination is current.
497c615a
HX
823 * If it is network route, we still may
824 * check its validity using saved pointer
825 * to the last used address: daddr_cache.
826 * We do not want to save whole address now,
827 * (because main consumer of this service
828 * is tcp, which has not this problem),
829 * so that the last trick works only on connected
830 * sockets.
831 * 2. oif also should be the same.
832 */
cf6b1982 833 if (ip6_rt_check(&rt->rt6i_dst, &fl->fl6_dst, np->daddr_cache) ||
8e1ef0a9
YH
834#ifdef CONFIG_IPV6_SUBTREES
835 ip6_rt_check(&rt->rt6i_src, &fl->fl6_src, np->saddr_cache) ||
836#endif
cf6b1982 837 (fl->oif && fl->oif != dst->dev->ifindex)) {
497c615a
HX
838 dst_release(dst);
839 dst = NULL;
1da177e4
LT
840 }
841
497c615a
HX
842out:
843 return dst;
844}
845
846static int ip6_dst_lookup_tail(struct sock *sk,
847 struct dst_entry **dst, struct flowi *fl)
848{
849 int err;
850
1da177e4
LT
851 if (*dst == NULL)
852 *dst = ip6_route_output(sk, fl);
853
854 if ((err = (*dst)->error))
855 goto out_err_release;
856
857 if (ipv6_addr_any(&fl->fl6_src)) {
858 err = ipv6_get_saddr(*dst, &fl->fl6_dst, &fl->fl6_src);
44456d37 859 if (err)
1da177e4 860 goto out_err_release;
1da177e4
LT
861 }
862
95c385b4
NH
863#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
864 /*
865 * Here if the dst entry we've looked up
866 * has a neighbour entry that is in the INCOMPLETE
867 * state and the src address from the flow is
868 * marked as OPTIMISTIC, we release the found
869 * dst entry and replace it instead with the
870 * dst entry of the nexthop router
871 */
872 if (!((*dst)->neighbour->nud_state & NUD_VALID)) {
873 struct inet6_ifaddr *ifp;
874 struct flowi fl_gw;
875 int redirect;
876
877 ifp = ipv6_get_ifaddr(&fl->fl6_src, (*dst)->dev, 1);
878
879 redirect = (ifp && ifp->flags & IFA_F_OPTIMISTIC);
880 if (ifp)
881 in6_ifa_put(ifp);
882
883 if (redirect) {
884 /*
885 * We need to get the dst entry for the
886 * default router instead
887 */
888 dst_release(*dst);
889 memcpy(&fl_gw, fl, sizeof(struct flowi));
890 memset(&fl_gw.fl6_dst, 0, sizeof(struct in6_addr));
891 *dst = ip6_route_output(sk, &fl_gw);
892 if ((err = (*dst)->error))
893 goto out_err_release;
894 }
895 }
896#endif
897
1da177e4
LT
898 return 0;
899
900out_err_release:
901 dst_release(*dst);
902 *dst = NULL;
903 return err;
904}
34a0b3cd 905
497c615a
HX
906/**
907 * ip6_dst_lookup - perform route lookup on flow
908 * @sk: socket which provides route info
909 * @dst: pointer to dst_entry * for result
910 * @fl: flow to lookup
911 *
912 * This function performs a route lookup on the given flow.
913 *
914 * It returns zero on success, or a standard errno code on error.
915 */
916int ip6_dst_lookup(struct sock *sk, struct dst_entry **dst, struct flowi *fl)
917{
918 *dst = NULL;
919 return ip6_dst_lookup_tail(sk, dst, fl);
920}
3cf3dc6c
ACM
921EXPORT_SYMBOL_GPL(ip6_dst_lookup);
922
497c615a
HX
923/**
924 * ip6_sk_dst_lookup - perform socket cached route lookup on flow
925 * @sk: socket which provides the dst cache and route info
926 * @dst: pointer to dst_entry * for result
927 * @fl: flow to lookup
928 *
929 * This function performs a route lookup on the given flow with the
930 * possibility of using the cached route in the socket if it is valid.
931 * It will take the socket dst lock when operating on the dst cache.
932 * As a result, this function can only be used in process context.
933 *
934 * It returns zero on success, or a standard errno code on error.
935 */
936int ip6_sk_dst_lookup(struct sock *sk, struct dst_entry **dst, struct flowi *fl)
937{
938 *dst = NULL;
939 if (sk) {
940 *dst = sk_dst_check(sk, inet6_sk(sk)->dst_cookie);
941 *dst = ip6_sk_dst_check(sk, *dst, fl);
942 }
943
944 return ip6_dst_lookup_tail(sk, dst, fl);
945}
946EXPORT_SYMBOL_GPL(ip6_sk_dst_lookup);
947
34a0b3cd 948static inline int ip6_ufo_append_data(struct sock *sk,
e89e9cf5
AR
949 int getfrag(void *from, char *to, int offset, int len,
950 int odd, struct sk_buff *skb),
951 void *from, int length, int hh_len, int fragheaderlen,
952 int transhdrlen, int mtu,unsigned int flags)
953
954{
955 struct sk_buff *skb;
956 int err;
957
958 /* There is support for UDP large send offload by network
959 * device, so create one single skb packet containing complete
960 * udp datagram
961 */
962 if ((skb = skb_peek_tail(&sk->sk_write_queue)) == NULL) {
963 skb = sock_alloc_send_skb(sk,
964 hh_len + fragheaderlen + transhdrlen + 20,
965 (flags & MSG_DONTWAIT), &err);
966 if (skb == NULL)
967 return -ENOMEM;
968
969 /* reserve space for Hardware header */
970 skb_reserve(skb, hh_len);
971
972 /* create space for UDP/IP header */
973 skb_put(skb,fragheaderlen + transhdrlen);
974
975 /* initialize network header pointer */
c1d2bbe1 976 skb_reset_network_header(skb);
e89e9cf5
AR
977
978 /* initialize protocol header pointer */
badff6d0 979 skb->h.raw = skb->nh.raw + fragheaderlen;
e89e9cf5 980
84fa7933 981 skb->ip_summed = CHECKSUM_PARTIAL;
e89e9cf5
AR
982 skb->csum = 0;
983 sk->sk_sndmsg_off = 0;
984 }
985
986 err = skb_append_datato_frags(sk,skb, getfrag, from,
987 (length - transhdrlen));
988 if (!err) {
989 struct frag_hdr fhdr;
990
991 /* specify the length of each IP datagram fragment*/
1ab1457c 992 skb_shinfo(skb)->gso_size = mtu - fragheaderlen -
7967168c 993 sizeof(struct frag_hdr);
f83ef8c0 994 skb_shinfo(skb)->gso_type = SKB_GSO_UDP;
e89e9cf5
AR
995 ipv6_select_ident(skb, &fhdr);
996 skb_shinfo(skb)->ip6_frag_id = fhdr.identification;
997 __skb_queue_tail(&sk->sk_write_queue, skb);
998
999 return 0;
1000 }
1001 /* There is not enough support do UPD LSO,
1002 * so follow normal path
1003 */
1004 kfree_skb(skb);
1005
1006 return err;
1007}
1da177e4 1008
41a1f8ea
YH
1009int ip6_append_data(struct sock *sk, int getfrag(void *from, char *to,
1010 int offset, int len, int odd, struct sk_buff *skb),
1011 void *from, int length, int transhdrlen,
1012 int hlimit, int tclass, struct ipv6_txoptions *opt, struct flowi *fl,
1013 struct rt6_info *rt, unsigned int flags)
1da177e4
LT
1014{
1015 struct inet_sock *inet = inet_sk(sk);
1016 struct ipv6_pinfo *np = inet6_sk(sk);
1017 struct sk_buff *skb;
1018 unsigned int maxfraglen, fragheaderlen;
1019 int exthdrlen;
1020 int hh_len;
1021 int mtu;
1022 int copy;
1023 int err;
1024 int offset = 0;
1025 int csummode = CHECKSUM_NONE;
1026
1027 if (flags&MSG_PROBE)
1028 return 0;
1029 if (skb_queue_empty(&sk->sk_write_queue)) {
1030 /*
1031 * setup for corking
1032 */
1033 if (opt) {
1034 if (np->cork.opt == NULL) {
1035 np->cork.opt = kmalloc(opt->tot_len,
1036 sk->sk_allocation);
1037 if (unlikely(np->cork.opt == NULL))
1038 return -ENOBUFS;
1039 } else if (np->cork.opt->tot_len < opt->tot_len) {
1040 printk(KERN_DEBUG "ip6_append_data: invalid option length\n");
1041 return -EINVAL;
1042 }
1043 memcpy(np->cork.opt, opt, opt->tot_len);
1044 inet->cork.flags |= IPCORK_OPT;
1045 /* need source address above miyazawa*/
1046 }
1047 dst_hold(&rt->u.dst);
1048 np->cork.rt = rt;
1049 inet->cork.fl = *fl;
1050 np->cork.hop_limit = hlimit;
41a1f8ea 1051 np->cork.tclass = tclass;
d91675f9 1052 mtu = dst_mtu(rt->u.dst.path);
c7503609 1053 if (np->frag_size < mtu) {
d91675f9
YH
1054 if (np->frag_size)
1055 mtu = np->frag_size;
1056 }
1057 inet->cork.fragsize = mtu;
1da177e4
LT
1058 if (dst_allfrag(rt->u.dst.path))
1059 inet->cork.flags |= IPCORK_ALLFRAG;
1060 inet->cork.length = 0;
1061 sk->sk_sndmsg_page = NULL;
1062 sk->sk_sndmsg_off = 0;
1063 exthdrlen = rt->u.dst.header_len + (opt ? opt->opt_flen : 0);
1064 length += exthdrlen;
1065 transhdrlen += exthdrlen;
1066 } else {
1067 rt = np->cork.rt;
1068 fl = &inet->cork.fl;
1069 if (inet->cork.flags & IPCORK_OPT)
1070 opt = np->cork.opt;
1071 transhdrlen = 0;
1072 exthdrlen = 0;
1073 mtu = inet->cork.fragsize;
1074 }
1075
1076 hh_len = LL_RESERVED_SPACE(rt->u.dst.dev);
1077
1b5c2299 1078 fragheaderlen = sizeof(struct ipv6hdr) + rt->u.dst.nfheader_len + (opt ? opt->opt_nflen : 0);
1da177e4
LT
1079 maxfraglen = ((mtu - fragheaderlen) & ~7) + fragheaderlen - sizeof(struct frag_hdr);
1080
1081 if (mtu <= sizeof(struct ipv6hdr) + IPV6_MAXPLEN) {
1082 if (inet->cork.length + length > sizeof(struct ipv6hdr) + IPV6_MAXPLEN - fragheaderlen) {
1083 ipv6_local_error(sk, EMSGSIZE, fl, mtu-exthdrlen);
1084 return -EMSGSIZE;
1085 }
1086 }
1087
1088 /*
1089 * Let's try using as much space as possible.
1090 * Use MTU if total length of the message fits into the MTU.
1091 * Otherwise, we need to reserve fragment header and
1092 * fragment alignment (= 8-15 octects, in total).
1093 *
1094 * Note that we may need to "move" the data from the tail of
1ab1457c 1095 * of the buffer to the new fragment when we split
1da177e4
LT
1096 * the message.
1097 *
1ab1457c 1098 * FIXME: It may be fragmented into multiple chunks
1da177e4
LT
1099 * at once if non-fragmentable extension headers
1100 * are too large.
1ab1457c 1101 * --yoshfuji
1da177e4
LT
1102 */
1103
1104 inet->cork.length += length;
e89e9cf5
AR
1105 if (((length > mtu) && (sk->sk_protocol == IPPROTO_UDP)) &&
1106 (rt->u.dst.dev->features & NETIF_F_UFO)) {
1107
baa829d8
PM
1108 err = ip6_ufo_append_data(sk, getfrag, from, length, hh_len,
1109 fragheaderlen, transhdrlen, mtu,
1110 flags);
1111 if (err)
e89e9cf5 1112 goto error;
e89e9cf5
AR
1113 return 0;
1114 }
1da177e4
LT
1115
1116 if ((skb = skb_peek_tail(&sk->sk_write_queue)) == NULL)
1117 goto alloc_new_skb;
1118
1119 while (length > 0) {
1120 /* Check if the remaining data fits into current packet. */
1121 copy = (inet->cork.length <= mtu && !(inet->cork.flags & IPCORK_ALLFRAG) ? mtu : maxfraglen) - skb->len;
1122 if (copy < length)
1123 copy = maxfraglen - skb->len;
1124
1125 if (copy <= 0) {
1126 char *data;
1127 unsigned int datalen;
1128 unsigned int fraglen;
1129 unsigned int fraggap;
1130 unsigned int alloclen;
1131 struct sk_buff *skb_prev;
1132alloc_new_skb:
1133 skb_prev = skb;
1134
1135 /* There's no room in the current skb */
1136 if (skb_prev)
1137 fraggap = skb_prev->len - maxfraglen;
1138 else
1139 fraggap = 0;
1140
1141 /*
1142 * If remaining data exceeds the mtu,
1143 * we know we need more fragment(s).
1144 */
1145 datalen = length + fraggap;
1146 if (datalen > (inet->cork.length <= mtu && !(inet->cork.flags & IPCORK_ALLFRAG) ? mtu : maxfraglen) - fragheaderlen)
1147 datalen = maxfraglen - fragheaderlen;
1148
1149 fraglen = datalen + fragheaderlen;
1150 if ((flags & MSG_MORE) &&
1151 !(rt->u.dst.dev->features&NETIF_F_SG))
1152 alloclen = mtu;
1153 else
1154 alloclen = datalen + fragheaderlen;
1155
1156 /*
1157 * The last fragment gets additional space at tail.
1158 * Note: we overallocate on fragments with MSG_MODE
1159 * because we have no idea if we're the last one.
1160 */
1161 if (datalen == length + fraggap)
1162 alloclen += rt->u.dst.trailer_len;
1163
1164 /*
1165 * We just reserve space for fragment header.
1ab1457c 1166 * Note: this may be overallocation if the message
1da177e4
LT
1167 * (without MSG_MORE) fits into the MTU.
1168 */
1169 alloclen += sizeof(struct frag_hdr);
1170
1171 if (transhdrlen) {
1172 skb = sock_alloc_send_skb(sk,
1173 alloclen + hh_len,
1174 (flags & MSG_DONTWAIT), &err);
1175 } else {
1176 skb = NULL;
1177 if (atomic_read(&sk->sk_wmem_alloc) <=
1178 2 * sk->sk_sndbuf)
1179 skb = sock_wmalloc(sk,
1180 alloclen + hh_len, 1,
1181 sk->sk_allocation);
1182 if (unlikely(skb == NULL))
1183 err = -ENOBUFS;
1184 }
1185 if (skb == NULL)
1186 goto error;
1187 /*
1188 * Fill in the control structures
1189 */
1190 skb->ip_summed = csummode;
1191 skb->csum = 0;
1192 /* reserve for fragmentation */
1193 skb_reserve(skb, hh_len+sizeof(struct frag_hdr));
1194
1195 /*
1196 * Find where to start putting bytes
1197 */
1198 data = skb_put(skb, fraglen);
c14d2450 1199 skb_set_network_header(skb, exthdrlen);
1da177e4 1200 data += fragheaderlen;
c14d2450 1201 skb->h.raw = skb->nh.raw + fragheaderlen;
1da177e4
LT
1202
1203 if (fraggap) {
1204 skb->csum = skb_copy_and_csum_bits(
1205 skb_prev, maxfraglen,
1206 data + transhdrlen, fraggap, 0);
1207 skb_prev->csum = csum_sub(skb_prev->csum,
1208 skb->csum);
1209 data += fraggap;
e9fa4f7b 1210 pskb_trim_unique(skb_prev, maxfraglen);
1da177e4
LT
1211 }
1212 copy = datalen - transhdrlen - fraggap;
1213 if (copy < 0) {
1214 err = -EINVAL;
1215 kfree_skb(skb);
1216 goto error;
1217 } else if (copy > 0 && getfrag(from, data + transhdrlen, offset, copy, fraggap, skb) < 0) {
1218 err = -EFAULT;
1219 kfree_skb(skb);
1220 goto error;
1221 }
1222
1223 offset += copy;
1224 length -= datalen - fraggap;
1225 transhdrlen = 0;
1226 exthdrlen = 0;
1227 csummode = CHECKSUM_NONE;
1228
1229 /*
1230 * Put the packet on the pending queue
1231 */
1232 __skb_queue_tail(&sk->sk_write_queue, skb);
1233 continue;
1234 }
1235
1236 if (copy > length)
1237 copy = length;
1238
1239 if (!(rt->u.dst.dev->features&NETIF_F_SG)) {
1240 unsigned int off;
1241
1242 off = skb->len;
1243 if (getfrag(from, skb_put(skb, copy),
1244 offset, copy, off, skb) < 0) {
1245 __skb_trim(skb, off);
1246 err = -EFAULT;
1247 goto error;
1248 }
1249 } else {
1250 int i = skb_shinfo(skb)->nr_frags;
1251 skb_frag_t *frag = &skb_shinfo(skb)->frags[i-1];
1252 struct page *page = sk->sk_sndmsg_page;
1253 int off = sk->sk_sndmsg_off;
1254 unsigned int left;
1255
1256 if (page && (left = PAGE_SIZE - off) > 0) {
1257 if (copy >= left)
1258 copy = left;
1259 if (page != frag->page) {
1260 if (i == MAX_SKB_FRAGS) {
1261 err = -EMSGSIZE;
1262 goto error;
1263 }
1264 get_page(page);
1265 skb_fill_page_desc(skb, i, page, sk->sk_sndmsg_off, 0);
1266 frag = &skb_shinfo(skb)->frags[i];
1267 }
1268 } else if(i < MAX_SKB_FRAGS) {
1269 if (copy > PAGE_SIZE)
1270 copy = PAGE_SIZE;
1271 page = alloc_pages(sk->sk_allocation, 0);
1272 if (page == NULL) {
1273 err = -ENOMEM;
1274 goto error;
1275 }
1276 sk->sk_sndmsg_page = page;
1277 sk->sk_sndmsg_off = 0;
1278
1279 skb_fill_page_desc(skb, i, page, 0, 0);
1280 frag = &skb_shinfo(skb)->frags[i];
1281 skb->truesize += PAGE_SIZE;
1282 atomic_add(PAGE_SIZE, &sk->sk_wmem_alloc);
1283 } else {
1284 err = -EMSGSIZE;
1285 goto error;
1286 }
1287 if (getfrag(from, page_address(frag->page)+frag->page_offset+frag->size, offset, copy, skb->len, skb) < 0) {
1288 err = -EFAULT;
1289 goto error;
1290 }
1291 sk->sk_sndmsg_off += copy;
1292 frag->size += copy;
1293 skb->len += copy;
1294 skb->data_len += copy;
1295 }
1296 offset += copy;
1297 length -= copy;
1298 }
1299 return 0;
1300error:
1301 inet->cork.length -= length;
a11d206d 1302 IP6_INC_STATS(rt->rt6i_idev, IPSTATS_MIB_OUTDISCARDS);
1da177e4
LT
1303 return err;
1304}
1305
1306int ip6_push_pending_frames(struct sock *sk)
1307{
1308 struct sk_buff *skb, *tmp_skb;
1309 struct sk_buff **tail_skb;
1310 struct in6_addr final_dst_buf, *final_dst = &final_dst_buf;
1311 struct inet_sock *inet = inet_sk(sk);
1312 struct ipv6_pinfo *np = inet6_sk(sk);
1313 struct ipv6hdr *hdr;
1314 struct ipv6_txoptions *opt = np->cork.opt;
1315 struct rt6_info *rt = np->cork.rt;
1316 struct flowi *fl = &inet->cork.fl;
1317 unsigned char proto = fl->proto;
1318 int err = 0;
1319
1320 if ((skb = __skb_dequeue(&sk->sk_write_queue)) == NULL)
1321 goto out;
1322 tail_skb = &(skb_shinfo(skb)->frag_list);
1323
1324 /* move skb->data to ip header from ext header */
d56f90a7 1325 if (skb->data < skb_network_header(skb))
bbe735e4 1326 __skb_pull(skb, skb_network_offset(skb));
1da177e4
LT
1327 while ((tmp_skb = __skb_dequeue(&sk->sk_write_queue)) != NULL) {
1328 __skb_pull(tmp_skb, skb->h.raw - skb->nh.raw);
1329 *tail_skb = tmp_skb;
1330 tail_skb = &(tmp_skb->next);
1331 skb->len += tmp_skb->len;
1332 skb->data_len += tmp_skb->len;
1da177e4
LT
1333 skb->truesize += tmp_skb->truesize;
1334 __sock_put(tmp_skb->sk);
1335 tmp_skb->destructor = NULL;
1336 tmp_skb->sk = NULL;
1da177e4
LT
1337 }
1338
1339 ipv6_addr_copy(final_dst, &fl->fl6_dst);
1340 __skb_pull(skb, skb->h.raw - skb->nh.raw);
1341 if (opt && opt->opt_flen)
1342 ipv6_push_frag_opts(skb, opt, &proto);
1343 if (opt && opt->opt_nflen)
1344 ipv6_push_nfrag_opts(skb, opt, &proto, &final_dst);
1345
e2d1bca7
ACM
1346 skb_push(skb, sizeof(struct ipv6hdr));
1347 skb_reset_network_header(skb);
0660e03f 1348 hdr = ipv6_hdr(skb);
1ab1457c 1349
90bcaf7b 1350 *(__be32*)hdr = fl->fl6_flowlabel |
41a1f8ea 1351 htonl(0x60000000 | ((int)np->cork.tclass << 20));
1da177e4
LT
1352
1353 if (skb->len <= sizeof(struct ipv6hdr) + IPV6_MAXPLEN)
1354 hdr->payload_len = htons(skb->len - sizeof(struct ipv6hdr));
1355 else
1356 hdr->payload_len = 0;
1357 hdr->hop_limit = np->cork.hop_limit;
1358 hdr->nexthdr = proto;
1359 ipv6_addr_copy(&hdr->saddr, &fl->fl6_src);
1360 ipv6_addr_copy(&hdr->daddr, final_dst);
1361
a2c2064f
PM
1362 skb->priority = sk->sk_priority;
1363
1da177e4 1364 skb->dst = dst_clone(&rt->u.dst);
a11d206d 1365 IP6_INC_STATS(rt->rt6i_idev, IPSTATS_MIB_OUTREQUESTS);
1da177e4
LT
1366 err = NF_HOOK(PF_INET6, NF_IP6_LOCAL_OUT, skb, NULL, skb->dst->dev, dst_output);
1367 if (err) {
1368 if (err > 0)
3320da89 1369 err = np->recverr ? net_xmit_errno(err) : 0;
1da177e4
LT
1370 if (err)
1371 goto error;
1372 }
1373
1374out:
1375 inet->cork.flags &= ~IPCORK_OPT;
a51482bd
JJ
1376 kfree(np->cork.opt);
1377 np->cork.opt = NULL;
1da177e4
LT
1378 if (np->cork.rt) {
1379 dst_release(&np->cork.rt->u.dst);
1380 np->cork.rt = NULL;
1381 inet->cork.flags &= ~IPCORK_ALLFRAG;
1382 }
1383 memset(&inet->cork.fl, 0, sizeof(inet->cork.fl));
1384 return err;
1385error:
1386 goto out;
1387}
1388
1389void ip6_flush_pending_frames(struct sock *sk)
1390{
1391 struct inet_sock *inet = inet_sk(sk);
1392 struct ipv6_pinfo *np = inet6_sk(sk);
1393 struct sk_buff *skb;
1394
1395 while ((skb = __skb_dequeue_tail(&sk->sk_write_queue)) != NULL) {
a11d206d
YH
1396 IP6_INC_STATS(ip6_dst_idev(skb->dst),
1397 IPSTATS_MIB_OUTDISCARDS);
1da177e4
LT
1398 kfree_skb(skb);
1399 }
1400
1401 inet->cork.flags &= ~IPCORK_OPT;
1402
a51482bd
JJ
1403 kfree(np->cork.opt);
1404 np->cork.opt = NULL;
1da177e4
LT
1405 if (np->cork.rt) {
1406 dst_release(&np->cork.rt->u.dst);
1407 np->cork.rt = NULL;
1408 inet->cork.flags &= ~IPCORK_ALLFRAG;
1409 }
1410 memset(&inet->cork.fl, 0, sizeof(inet->cork.fl));
1411}