2 * IPv6 output functions
3 * Linux INET6 implementation
6 * Pedro Roque <roque@di.fc.ul.pt>
8 * Based on linux/net/ipv4/ip_output.c
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.
16 * A.N.Kuznetsov : airthmetics in fragmentation.
17 * extension headers are implemented.
18 * route changes now work.
19 * ip6_forward does not confuse sniffers.
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
29 #include <linux/errno.h>
30 #include <linux/kernel.h>
31 #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>
39 #include <linux/module.h>
40 #include <linux/slab.h>
42 #include <linux/netfilter.h>
43 #include <linux/netfilter_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>
56 #include <net/checksum.h>
57 #include <linux/mroute6.h>
58 #include <net/l3mdev.h>
59 #include <net/lwtunnel.h>
61 static int ip6_finish_output2(struct net
*net
, struct sock
*sk
, struct sk_buff
*skb
)
63 struct dst_entry
*dst
= skb_dst(skb
);
64 struct net_device
*dev
= dst
->dev
;
65 struct neighbour
*neigh
;
66 struct in6_addr
*nexthop
;
69 skb
->protocol
= htons(ETH_P_IPV6
);
72 if (ipv6_addr_is_multicast(&ipv6_hdr(skb
)->daddr
)) {
73 struct inet6_dev
*idev
= ip6_dst_idev(skb_dst(skb
));
75 if (!(dev
->flags
& IFF_LOOPBACK
) && sk_mc_loop(sk
) &&
76 ((mroute6_socket(net
, skb
) &&
77 !(IP6CB(skb
)->flags
& IP6SKB_FORWARDED
)) ||
78 ipv6_chk_mcast_addr(dev
, &ipv6_hdr(skb
)->daddr
,
79 &ipv6_hdr(skb
)->saddr
))) {
80 struct sk_buff
*newskb
= skb_clone(skb
, GFP_ATOMIC
);
82 /* Do not check for IFF_ALLMULTI; multicast routing
83 is not supported in any case.
86 NF_HOOK(NFPROTO_IPV6
, NF_INET_POST_ROUTING
,
87 net
, sk
, newskb
, NULL
, newskb
->dev
,
90 if (ipv6_hdr(skb
)->hop_limit
== 0) {
91 IP6_INC_STATS(net
, idev
,
92 IPSTATS_MIB_OUTDISCARDS
);
98 IP6_UPD_PO_STATS(net
, idev
, IPSTATS_MIB_OUTMCAST
, skb
->len
);
100 if (IPV6_ADDR_MC_SCOPE(&ipv6_hdr(skb
)->daddr
) <=
101 IPV6_ADDR_SCOPE_NODELOCAL
&&
102 !(dev
->flags
& IFF_LOOPBACK
)) {
108 if (lwtunnel_xmit_redirect(dst
->lwtstate
)) {
109 int res
= lwtunnel_xmit(skb
);
111 if (res
< 0 || res
== LWTUNNEL_XMIT_DONE
)
116 nexthop
= rt6_nexthop((struct rt6_info
*)dst
, &ipv6_hdr(skb
)->daddr
);
117 neigh
= __ipv6_neigh_lookup_noref(dst
->dev
, nexthop
);
118 if (unlikely(!neigh
))
119 neigh
= __neigh_create(&nd_tbl
, nexthop
, dst
->dev
, false);
120 if (!IS_ERR(neigh
)) {
121 ret
= dst_neigh_output(dst
, neigh
, skb
);
122 rcu_read_unlock_bh();
125 rcu_read_unlock_bh();
127 IP6_INC_STATS(net
, ip6_dst_idev(dst
), IPSTATS_MIB_OUTNOROUTES
);
132 static int ip6_finish_output(struct net
*net
, struct sock
*sk
, struct sk_buff
*skb
)
134 if ((skb
->len
> ip6_skb_dst_mtu(skb
) && !skb_is_gso(skb
)) ||
135 dst_allfrag(skb_dst(skb
)) ||
136 (IP6CB(skb
)->frag_max_size
&& skb
->len
> IP6CB(skb
)->frag_max_size
))
137 return ip6_fragment(net
, sk
, skb
, ip6_finish_output2
);
139 return ip6_finish_output2(net
, sk
, skb
);
142 int ip6_output(struct net
*net
, struct sock
*sk
, struct sk_buff
*skb
)
144 struct net_device
*dev
= skb_dst(skb
)->dev
;
145 struct inet6_dev
*idev
= ip6_dst_idev(skb_dst(skb
));
147 if (unlikely(idev
->cnf
.disable_ipv6
)) {
148 IP6_INC_STATS(net
, idev
, IPSTATS_MIB_OUTDISCARDS
);
153 return NF_HOOK_COND(NFPROTO_IPV6
, NF_INET_POST_ROUTING
,
154 net
, sk
, skb
, NULL
, dev
,
156 !(IP6CB(skb
)->flags
& IP6SKB_REROUTED
));
159 bool ip6_autoflowlabel(struct net
*net
, const struct ipv6_pinfo
*np
)
161 if (!np
->autoflowlabel_set
)
162 return ip6_default_np_autolabel(net
);
164 return np
->autoflowlabel
;
168 * xmit an sk_buff (used by TCP, SCTP and DCCP)
169 * Note : socket lock is not held for SYNACK packets, but might be modified
170 * by calls to skb_set_owner_w() and ipv6_local_error(),
171 * which are using proper atomic operations or spinlocks.
173 int ip6_xmit(const struct sock
*sk
, struct sk_buff
*skb
, struct flowi6
*fl6
,
174 __u32 mark
, struct ipv6_txoptions
*opt
, int tclass
)
176 struct net
*net
= sock_net(sk
);
177 const struct ipv6_pinfo
*np
= inet6_sk(sk
);
178 struct in6_addr
*first_hop
= &fl6
->daddr
;
179 struct dst_entry
*dst
= skb_dst(skb
);
181 u8 proto
= fl6
->flowi6_proto
;
182 int seg_len
= skb
->len
;
187 unsigned int head_room
;
189 /* First: exthdrs may take lots of space (~8K for now)
190 MAX_HEADER is not enough.
192 head_room
= opt
->opt_nflen
+ opt
->opt_flen
;
193 seg_len
+= head_room
;
194 head_room
+= sizeof(struct ipv6hdr
) + LL_RESERVED_SPACE(dst
->dev
);
196 if (skb_headroom(skb
) < head_room
) {
197 struct sk_buff
*skb2
= skb_realloc_headroom(skb
, head_room
);
199 IP6_INC_STATS(net
, ip6_dst_idev(skb_dst(skb
)),
200 IPSTATS_MIB_OUTDISCARDS
);
206 /* skb_set_owner_w() changes sk->sk_wmem_alloc atomically,
207 * it is safe to call in our context (socket lock not held)
209 skb_set_owner_w(skb
, (struct sock
*)sk
);
212 ipv6_push_frag_opts(skb
, opt
, &proto
);
214 ipv6_push_nfrag_opts(skb
, opt
, &proto
, &first_hop
);
217 skb_push(skb
, sizeof(struct ipv6hdr
));
218 skb_reset_network_header(skb
);
222 * Fill in the IPv6 header
225 hlimit
= np
->hop_limit
;
227 hlimit
= ip6_dst_hoplimit(dst
);
229 ip6_flow_hdr(hdr
, tclass
, ip6_make_flowlabel(net
, skb
, fl6
->flowlabel
,
230 ip6_autoflowlabel(net
, np
), fl6
));
232 hdr
->payload_len
= htons(seg_len
);
233 hdr
->nexthdr
= proto
;
234 hdr
->hop_limit
= hlimit
;
236 hdr
->saddr
= fl6
->saddr
;
237 hdr
->daddr
= *first_hop
;
239 skb
->protocol
= htons(ETH_P_IPV6
);
240 skb
->priority
= sk
->sk_priority
;
244 if ((skb
->len
<= mtu
) || skb
->ignore_df
|| skb_is_gso(skb
)) {
245 IP6_UPD_PO_STATS(net
, ip6_dst_idev(skb_dst(skb
)),
246 IPSTATS_MIB_OUT
, skb
->len
);
248 /* if egress device is enslaved to an L3 master device pass the
249 * skb to its handler for processing
251 skb
= l3mdev_ip6_out((struct sock
*)sk
, skb
);
255 /* hooks should never assume socket lock is held.
256 * we promote our socket to non const
258 return NF_HOOK(NFPROTO_IPV6
, NF_INET_LOCAL_OUT
,
259 net
, (struct sock
*)sk
, skb
, NULL
, dst
->dev
,
264 /* ipv6_local_error() does not require socket lock,
265 * we promote our socket to non const
267 ipv6_local_error((struct sock
*)sk
, EMSGSIZE
, fl6
, mtu
);
269 IP6_INC_STATS(net
, ip6_dst_idev(skb_dst(skb
)), IPSTATS_MIB_FRAGFAILS
);
273 EXPORT_SYMBOL(ip6_xmit
);
275 static int ip6_call_ra_chain(struct sk_buff
*skb
, int sel
)
277 struct ip6_ra_chain
*ra
;
278 struct sock
*last
= NULL
;
280 read_lock(&ip6_ra_lock
);
281 for (ra
= ip6_ra_chain
; ra
; ra
= ra
->next
) {
282 struct sock
*sk
= ra
->sk
;
283 if (sk
&& ra
->sel
== sel
&&
284 (!sk
->sk_bound_dev_if
||
285 sk
->sk_bound_dev_if
== skb
->dev
->ifindex
)) {
287 struct sk_buff
*skb2
= skb_clone(skb
, GFP_ATOMIC
);
289 rawv6_rcv(last
, skb2
);
296 rawv6_rcv(last
, skb
);
297 read_unlock(&ip6_ra_lock
);
300 read_unlock(&ip6_ra_lock
);
304 static int ip6_forward_proxy_check(struct sk_buff
*skb
)
306 struct ipv6hdr
*hdr
= ipv6_hdr(skb
);
307 u8 nexthdr
= hdr
->nexthdr
;
311 if (ipv6_ext_hdr(nexthdr
)) {
312 offset
= ipv6_skip_exthdr(skb
, sizeof(*hdr
), &nexthdr
, &frag_off
);
316 offset
= sizeof(struct ipv6hdr
);
318 if (nexthdr
== IPPROTO_ICMPV6
) {
319 struct icmp6hdr
*icmp6
;
321 if (!pskb_may_pull(skb
, (skb_network_header(skb
) +
322 offset
+ 1 - skb
->data
)))
325 icmp6
= (struct icmp6hdr
*)(skb_network_header(skb
) + offset
);
327 switch (icmp6
->icmp6_type
) {
328 case NDISC_ROUTER_SOLICITATION
:
329 case NDISC_ROUTER_ADVERTISEMENT
:
330 case NDISC_NEIGHBOUR_SOLICITATION
:
331 case NDISC_NEIGHBOUR_ADVERTISEMENT
:
333 /* For reaction involving unicast neighbor discovery
334 * message destined to the proxied address, pass it to
344 * The proxying router can't forward traffic sent to a link-local
345 * address, so signal the sender and discard the packet. This
346 * behavior is clarified by the MIPv6 specification.
348 if (ipv6_addr_type(&hdr
->daddr
) & IPV6_ADDR_LINKLOCAL
) {
349 dst_link_failure(skb
);
356 static inline int ip6_forward_finish(struct net
*net
, struct sock
*sk
,
359 struct dst_entry
*dst
= skb_dst(skb
);
361 __IP6_INC_STATS(net
, ip6_dst_idev(dst
), IPSTATS_MIB_OUTFORWDATAGRAMS
);
362 __IP6_ADD_STATS(net
, ip6_dst_idev(dst
), IPSTATS_MIB_OUTOCTETS
, skb
->len
);
364 return dst_output(net
, sk
, skb
);
367 static unsigned int ip6_dst_mtu_forward(const struct dst_entry
*dst
)
370 struct inet6_dev
*idev
;
372 if (dst_metric_locked(dst
, RTAX_MTU
)) {
373 mtu
= dst_metric_raw(dst
, RTAX_MTU
);
380 idev
= __in6_dev_get(dst
->dev
);
382 mtu
= idev
->cnf
.mtu6
;
388 static bool ip6_pkt_too_big(const struct sk_buff
*skb
, unsigned int mtu
)
393 /* ipv6 conntrack defrag sets max_frag_size + ignore_df */
394 if (IP6CB(skb
)->frag_max_size
&& IP6CB(skb
)->frag_max_size
> mtu
)
400 if (skb_is_gso(skb
) && skb_gso_validate_mtu(skb
, mtu
))
406 int ip6_forward(struct sk_buff
*skb
)
408 struct dst_entry
*dst
= skb_dst(skb
);
409 struct ipv6hdr
*hdr
= ipv6_hdr(skb
);
410 struct inet6_skb_parm
*opt
= IP6CB(skb
);
411 struct net
*net
= dev_net(dst
->dev
);
414 if (net
->ipv6
.devconf_all
->forwarding
== 0)
417 if (skb
->pkt_type
!= PACKET_HOST
)
420 if (unlikely(skb
->sk
))
423 if (skb_warn_if_lro(skb
))
426 if (!xfrm6_policy_check(NULL
, XFRM_POLICY_FWD
, skb
)) {
427 __IP6_INC_STATS(net
, ip6_dst_idev(dst
),
428 IPSTATS_MIB_INDISCARDS
);
432 skb_forward_csum(skb
);
435 * We DO NOT make any processing on
436 * RA packets, pushing them to user level AS IS
437 * without ane WARRANTY that application will be able
438 * to interpret them. The reason is that we
439 * cannot make anything clever here.
441 * We are not end-node, so that if packet contains
442 * AH/ESP, we cannot make anything.
443 * Defragmentation also would be mistake, RA packets
444 * cannot be fragmented, because there is no warranty
445 * that different fragments will go along one path. --ANK
447 if (unlikely(opt
->flags
& IP6SKB_ROUTERALERT
)) {
448 if (ip6_call_ra_chain(skb
, ntohs(opt
->ra
)))
453 * check and decrement ttl
455 if (hdr
->hop_limit
<= 1) {
456 /* Force OUTPUT device used as source address */
458 icmpv6_send(skb
, ICMPV6_TIME_EXCEED
, ICMPV6_EXC_HOPLIMIT
, 0);
459 __IP6_INC_STATS(net
, ip6_dst_idev(dst
),
460 IPSTATS_MIB_INHDRERRORS
);
466 /* XXX: idev->cnf.proxy_ndp? */
467 if (net
->ipv6
.devconf_all
->proxy_ndp
&&
468 pneigh_lookup(&nd_tbl
, net
, &hdr
->daddr
, skb
->dev
, 0)) {
469 int proxied
= ip6_forward_proxy_check(skb
);
471 return ip6_input(skb
);
472 else if (proxied
< 0) {
473 __IP6_INC_STATS(net
, ip6_dst_idev(dst
),
474 IPSTATS_MIB_INDISCARDS
);
479 if (!xfrm6_route_forward(skb
)) {
480 __IP6_INC_STATS(net
, ip6_dst_idev(dst
),
481 IPSTATS_MIB_INDISCARDS
);
486 /* IPv6 specs say nothing about it, but it is clear that we cannot
487 send redirects to source routed frames.
488 We don't send redirects to frames decapsulated from IPsec.
490 if (IP6CB(skb
)->iif
== dst
->dev
->ifindex
&&
491 opt
->srcrt
== 0 && !skb_sec_path(skb
)) {
492 struct in6_addr
*target
= NULL
;
493 struct inet_peer
*peer
;
497 * incoming and outgoing devices are the same
501 rt
= (struct rt6_info
*) dst
;
502 if (rt
->rt6i_flags
& RTF_GATEWAY
)
503 target
= &rt
->rt6i_gateway
;
505 target
= &hdr
->daddr
;
507 peer
= inet_getpeer_v6(net
->ipv6
.peers
, &hdr
->daddr
, 1);
509 /* Limit redirects both by destination (here)
510 and by source (inside ndisc_send_redirect)
512 if (inet_peer_xrlim_allow(peer
, 1*HZ
))
513 ndisc_send_redirect(skb
, target
);
517 int addrtype
= ipv6_addr_type(&hdr
->saddr
);
519 /* This check is security critical. */
520 if (addrtype
== IPV6_ADDR_ANY
||
521 addrtype
& (IPV6_ADDR_MULTICAST
| IPV6_ADDR_LOOPBACK
))
523 if (addrtype
& IPV6_ADDR_LINKLOCAL
) {
524 icmpv6_send(skb
, ICMPV6_DEST_UNREACH
,
525 ICMPV6_NOT_NEIGHBOUR
, 0);
530 mtu
= ip6_dst_mtu_forward(dst
);
531 if (mtu
< IPV6_MIN_MTU
)
534 if (ip6_pkt_too_big(skb
, mtu
)) {
535 /* Again, force OUTPUT device used as source address */
537 icmpv6_send(skb
, ICMPV6_PKT_TOOBIG
, 0, mtu
);
538 __IP6_INC_STATS(net
, ip6_dst_idev(dst
),
539 IPSTATS_MIB_INTOOBIGERRORS
);
540 __IP6_INC_STATS(net
, ip6_dst_idev(dst
),
541 IPSTATS_MIB_FRAGFAILS
);
546 if (skb_cow(skb
, dst
->dev
->hard_header_len
)) {
547 __IP6_INC_STATS(net
, ip6_dst_idev(dst
),
548 IPSTATS_MIB_OUTDISCARDS
);
554 /* Mangling hops number delayed to point after skb COW */
558 return NF_HOOK(NFPROTO_IPV6
, NF_INET_FORWARD
,
559 net
, NULL
, skb
, skb
->dev
, dst
->dev
,
563 __IP6_INC_STATS(net
, ip6_dst_idev(dst
), IPSTATS_MIB_INADDRERRORS
);
569 static void ip6_copy_metadata(struct sk_buff
*to
, struct sk_buff
*from
)
571 to
->pkt_type
= from
->pkt_type
;
572 to
->priority
= from
->priority
;
573 to
->protocol
= from
->protocol
;
575 skb_dst_set(to
, dst_clone(skb_dst(from
)));
577 to
->mark
= from
->mark
;
579 skb_copy_hash(to
, from
);
581 #ifdef CONFIG_NET_SCHED
582 to
->tc_index
= from
->tc_index
;
585 skb_copy_secmark(to
, from
);
588 int ip6_fragment(struct net
*net
, struct sock
*sk
, struct sk_buff
*skb
,
589 int (*output
)(struct net
*, struct sock
*, struct sk_buff
*))
591 struct sk_buff
*frag
;
592 struct rt6_info
*rt
= (struct rt6_info
*)skb_dst(skb
);
593 struct ipv6_pinfo
*np
= skb
->sk
&& !dev_recursion_level() ?
594 inet6_sk(skb
->sk
) : NULL
;
595 struct ipv6hdr
*tmp_hdr
;
597 unsigned int mtu
, hlen
, left
, len
;
600 int ptr
, offset
= 0, err
= 0;
601 u8
*prevhdr
, nexthdr
= 0;
603 err
= ip6_find_1stfragopt(skb
, &prevhdr
);
609 mtu
= ip6_skb_dst_mtu(skb
);
611 /* We must not fragment if the socket is set to force MTU discovery
612 * or if the skb it not generated by a local socket.
614 if (unlikely(!skb
->ignore_df
&& skb
->len
> mtu
))
617 if (IP6CB(skb
)->frag_max_size
) {
618 if (IP6CB(skb
)->frag_max_size
> mtu
)
621 /* don't send fragments larger than what we received */
622 mtu
= IP6CB(skb
)->frag_max_size
;
623 if (mtu
< IPV6_MIN_MTU
)
627 if (np
&& np
->frag_size
< mtu
) {
631 if (mtu
< hlen
+ sizeof(struct frag_hdr
) + 8)
633 mtu
-= hlen
+ sizeof(struct frag_hdr
);
635 frag_id
= ipv6_select_ident(net
, &ipv6_hdr(skb
)->daddr
,
636 &ipv6_hdr(skb
)->saddr
);
638 if (skb
->ip_summed
== CHECKSUM_PARTIAL
&&
639 (err
= skb_checksum_help(skb
)))
642 hroom
= LL_RESERVED_SPACE(rt
->dst
.dev
);
643 if (skb_has_frag_list(skb
)) {
644 int first_len
= skb_pagelen(skb
);
645 struct sk_buff
*frag2
;
647 if (first_len
- hlen
> mtu
||
648 ((first_len
- hlen
) & 7) ||
650 skb_headroom(skb
) < (hroom
+ sizeof(struct frag_hdr
)))
653 skb_walk_frags(skb
, frag
) {
654 /* Correct geometry. */
655 if (frag
->len
> mtu
||
656 ((frag
->len
& 7) && frag
->next
) ||
657 skb_headroom(frag
) < (hlen
+ hroom
+ sizeof(struct frag_hdr
)))
658 goto slow_path_clean
;
660 /* Partially cloned skb? */
661 if (skb_shared(frag
))
662 goto slow_path_clean
;
667 frag
->destructor
= sock_wfree
;
669 skb
->truesize
-= frag
->truesize
;
676 *prevhdr
= NEXTHDR_FRAGMENT
;
677 tmp_hdr
= kmemdup(skb_network_header(skb
), hlen
, GFP_ATOMIC
);
682 frag
= skb_shinfo(skb
)->frag_list
;
683 skb_frag_list_init(skb
);
685 __skb_pull(skb
, hlen
);
686 fh
= (struct frag_hdr
*)__skb_push(skb
, sizeof(struct frag_hdr
));
687 __skb_push(skb
, hlen
);
688 skb_reset_network_header(skb
);
689 memcpy(skb_network_header(skb
), tmp_hdr
, hlen
);
691 fh
->nexthdr
= nexthdr
;
693 fh
->frag_off
= htons(IP6_MF
);
694 fh
->identification
= frag_id
;
696 first_len
= skb_pagelen(skb
);
697 skb
->data_len
= first_len
- skb_headlen(skb
);
698 skb
->len
= first_len
;
699 ipv6_hdr(skb
)->payload_len
= htons(first_len
-
700 sizeof(struct ipv6hdr
));
705 /* Prepare header of the next frame,
706 * before previous one went down. */
708 frag
->ip_summed
= CHECKSUM_NONE
;
709 skb_reset_transport_header(frag
);
710 fh
= (struct frag_hdr
*)__skb_push(frag
, sizeof(struct frag_hdr
));
711 __skb_push(frag
, hlen
);
712 skb_reset_network_header(frag
);
713 memcpy(skb_network_header(frag
), tmp_hdr
,
715 offset
+= skb
->len
- hlen
- sizeof(struct frag_hdr
);
716 fh
->nexthdr
= nexthdr
;
718 fh
->frag_off
= htons(offset
);
720 fh
->frag_off
|= htons(IP6_MF
);
721 fh
->identification
= frag_id
;
722 ipv6_hdr(frag
)->payload_len
=
724 sizeof(struct ipv6hdr
));
725 ip6_copy_metadata(frag
, skb
);
728 err
= output(net
, sk
, skb
);
730 IP6_INC_STATS(net
, ip6_dst_idev(&rt
->dst
),
731 IPSTATS_MIB_FRAGCREATES
);
744 IP6_INC_STATS(net
, ip6_dst_idev(&rt
->dst
),
745 IPSTATS_MIB_FRAGOKS
);
750 kfree_skb_list(frag
);
752 IP6_INC_STATS(net
, ip6_dst_idev(&rt
->dst
),
753 IPSTATS_MIB_FRAGFAILS
);
758 skb_walk_frags(skb
, frag2
) {
762 frag2
->destructor
= NULL
;
763 skb
->truesize
+= frag2
->truesize
;
768 left
= skb
->len
- hlen
; /* Space per frame */
769 ptr
= hlen
; /* Where to start from */
772 * Fragment the datagram.
775 troom
= rt
->dst
.dev
->needed_tailroom
;
778 * Keep copying data until we run out.
781 u8
*fragnexthdr_offset
;
784 /* IF: it doesn't fit, use 'mtu' - the data space left */
787 /* IF: we are not sending up to and including the packet end
788 then align the next start on an eight byte boundary */
793 /* Allocate buffer */
794 frag
= alloc_skb(len
+ hlen
+ sizeof(struct frag_hdr
) +
795 hroom
+ troom
, GFP_ATOMIC
);
802 * Set up data on packet
805 ip6_copy_metadata(frag
, skb
);
806 skb_reserve(frag
, hroom
);
807 skb_put(frag
, len
+ hlen
+ sizeof(struct frag_hdr
));
808 skb_reset_network_header(frag
);
809 fh
= (struct frag_hdr
*)(skb_network_header(frag
) + hlen
);
810 frag
->transport_header
= (frag
->network_header
+ hlen
+
811 sizeof(struct frag_hdr
));
814 * Charge the memory for the fragment to any owner
818 skb_set_owner_w(frag
, skb
->sk
);
821 * Copy the packet header into the new buffer.
823 skb_copy_from_linear_data(skb
, skb_network_header(frag
), hlen
);
825 fragnexthdr_offset
= skb_network_header(frag
);
826 fragnexthdr_offset
+= prevhdr
- skb_network_header(skb
);
827 *fragnexthdr_offset
= NEXTHDR_FRAGMENT
;
830 * Build fragment header.
832 fh
->nexthdr
= nexthdr
;
834 fh
->identification
= frag_id
;
837 * Copy a block of the IP datagram.
839 BUG_ON(skb_copy_bits(skb
, ptr
, skb_transport_header(frag
),
843 fh
->frag_off
= htons(offset
);
845 fh
->frag_off
|= htons(IP6_MF
);
846 ipv6_hdr(frag
)->payload_len
= htons(frag
->len
-
847 sizeof(struct ipv6hdr
));
853 * Put this fragment into the sending queue.
855 err
= output(net
, sk
, frag
);
859 IP6_INC_STATS(net
, ip6_dst_idev(skb_dst(skb
)),
860 IPSTATS_MIB_FRAGCREATES
);
862 IP6_INC_STATS(net
, ip6_dst_idev(skb_dst(skb
)),
863 IPSTATS_MIB_FRAGOKS
);
868 if (skb
->sk
&& dst_allfrag(skb_dst(skb
)))
869 sk_nocaps_add(skb
->sk
, NETIF_F_GSO_MASK
);
871 skb
->dev
= skb_dst(skb
)->dev
;
872 icmpv6_send(skb
, ICMPV6_PKT_TOOBIG
, 0, mtu
);
876 IP6_INC_STATS(net
, ip6_dst_idev(skb_dst(skb
)),
877 IPSTATS_MIB_FRAGFAILS
);
882 static inline int ip6_rt_check(const struct rt6key
*rt_key
,
883 const struct in6_addr
*fl_addr
,
884 const struct in6_addr
*addr_cache
)
886 return (rt_key
->plen
!= 128 || !ipv6_addr_equal(fl_addr
, &rt_key
->addr
)) &&
887 (!addr_cache
|| !ipv6_addr_equal(fl_addr
, addr_cache
));
890 static struct dst_entry
*ip6_sk_dst_check(struct sock
*sk
,
891 struct dst_entry
*dst
,
892 const struct flowi6
*fl6
)
894 struct ipv6_pinfo
*np
= inet6_sk(sk
);
900 if (dst
->ops
->family
!= AF_INET6
) {
905 rt
= (struct rt6_info
*)dst
;
906 /* Yes, checking route validity in not connected
907 * case is not very simple. Take into account,
908 * that we do not support routing by source, TOS,
909 * and MSG_DONTROUTE --ANK (980726)
911 * 1. ip6_rt_check(): If route was host route,
912 * check that cached destination is current.
913 * If it is network route, we still may
914 * check its validity using saved pointer
915 * to the last used address: daddr_cache.
916 * We do not want to save whole address now,
917 * (because main consumer of this service
918 * is tcp, which has not this problem),
919 * so that the last trick works only on connected
921 * 2. oif also should be the same.
923 if (ip6_rt_check(&rt
->rt6i_dst
, &fl6
->daddr
, np
->daddr_cache
) ||
924 #ifdef CONFIG_IPV6_SUBTREES
925 ip6_rt_check(&rt
->rt6i_src
, &fl6
->saddr
, np
->saddr_cache
) ||
927 (!(fl6
->flowi6_flags
& FLOWI_FLAG_SKIP_NH_OIF
) &&
928 (fl6
->flowi6_oif
&& fl6
->flowi6_oif
!= dst
->dev
->ifindex
))) {
937 static int ip6_dst_lookup_tail(struct net
*net
, const struct sock
*sk
,
938 struct dst_entry
**dst
, struct flowi6
*fl6
)
940 #ifdef CONFIG_IPV6_OPTIMISTIC_DAD
947 /* The correct way to handle this would be to do
948 * ip6_route_get_saddr, and then ip6_route_output; however,
949 * the route-specific preferred source forces the
950 * ip6_route_output call _before_ ip6_route_get_saddr.
952 * In source specific routing (no src=any default route),
953 * ip6_route_output will fail given src=any saddr, though, so
954 * that's why we try it again later.
956 if (ipv6_addr_any(&fl6
->saddr
) && (!*dst
|| !(*dst
)->error
)) {
958 bool had_dst
= *dst
!= NULL
;
961 *dst
= ip6_route_output(net
, sk
, fl6
);
962 rt
= (*dst
)->error
? NULL
: (struct rt6_info
*)*dst
;
963 err
= ip6_route_get_saddr(net
, rt
, &fl6
->daddr
,
964 sk
? inet6_sk(sk
)->srcprefs
: 0,
967 goto out_err_release
;
969 /* If we had an erroneous initial result, pretend it
970 * never existed and let the SA-enabled version take
973 if (!had_dst
&& (*dst
)->error
) {
979 flags
|= RT6_LOOKUP_F_IFACE
;
983 *dst
= ip6_route_output_flags(net
, sk
, fl6
, flags
);
987 goto out_err_release
;
989 #ifdef CONFIG_IPV6_OPTIMISTIC_DAD
991 * Here if the dst entry we've looked up
992 * has a neighbour entry that is in the INCOMPLETE
993 * state and the src address from the flow is
994 * marked as OPTIMISTIC, we release the found
995 * dst entry and replace it instead with the
996 * dst entry of the nexthop router
998 rt
= (struct rt6_info
*) *dst
;
1000 n
= __ipv6_neigh_lookup_noref(rt
->dst
.dev
,
1001 rt6_nexthop(rt
, &fl6
->daddr
));
1002 err
= n
&& !(n
->nud_state
& NUD_VALID
) ? -EINVAL
: 0;
1003 rcu_read_unlock_bh();
1006 struct inet6_ifaddr
*ifp
;
1007 struct flowi6 fl_gw6
;
1010 ifp
= ipv6_get_ifaddr(net
, &fl6
->saddr
,
1013 redirect
= (ifp
&& ifp
->flags
& IFA_F_OPTIMISTIC
);
1019 * We need to get the dst entry for the
1020 * default router instead
1023 memcpy(&fl_gw6
, fl6
, sizeof(struct flowi6
));
1024 memset(&fl_gw6
.daddr
, 0, sizeof(struct in6_addr
));
1025 *dst
= ip6_route_output(net
, sk
, &fl_gw6
);
1026 err
= (*dst
)->error
;
1028 goto out_err_release
;
1032 if (ipv6_addr_v4mapped(&fl6
->saddr
) &&
1033 !(ipv6_addr_v4mapped(&fl6
->daddr
) || ipv6_addr_any(&fl6
->daddr
))) {
1034 err
= -EAFNOSUPPORT
;
1035 goto out_err_release
;
1044 if (err
== -ENETUNREACH
)
1045 IP6_INC_STATS(net
, NULL
, IPSTATS_MIB_OUTNOROUTES
);
1050 * ip6_dst_lookup - perform route lookup on flow
1051 * @sk: socket which provides route info
1052 * @dst: pointer to dst_entry * for result
1053 * @fl6: flow to lookup
1055 * This function performs a route lookup on the given flow.
1057 * It returns zero on success, or a standard errno code on error.
1059 int ip6_dst_lookup(struct net
*net
, struct sock
*sk
, struct dst_entry
**dst
,
1063 return ip6_dst_lookup_tail(net
, sk
, dst
, fl6
);
1065 EXPORT_SYMBOL_GPL(ip6_dst_lookup
);
1068 * ip6_dst_lookup_flow - perform route lookup on flow with ipsec
1069 * @sk: socket which provides route info
1070 * @fl6: flow to lookup
1071 * @final_dst: final destination address for ipsec lookup
1073 * This function performs a route lookup on the given flow.
1075 * It returns a valid dst pointer on success, or a pointer encoded
1078 struct dst_entry
*ip6_dst_lookup_flow(const struct sock
*sk
, struct flowi6
*fl6
,
1079 const struct in6_addr
*final_dst
)
1081 struct dst_entry
*dst
= NULL
;
1084 err
= ip6_dst_lookup_tail(sock_net(sk
), sk
, &dst
, fl6
);
1086 return ERR_PTR(err
);
1088 fl6
->daddr
= *final_dst
;
1090 return xfrm_lookup_route(sock_net(sk
), dst
, flowi6_to_flowi(fl6
), sk
, 0);
1092 EXPORT_SYMBOL_GPL(ip6_dst_lookup_flow
);
1095 * ip6_sk_dst_lookup_flow - perform socket cached route lookup on flow
1096 * @sk: socket which provides the dst cache and route info
1097 * @fl6: flow to lookup
1098 * @final_dst: final destination address for ipsec lookup
1100 * This function performs a route lookup on the given flow with the
1101 * possibility of using the cached route in the socket if it is valid.
1102 * It will take the socket dst lock when operating on the dst cache.
1103 * As a result, this function can only be used in process context.
1105 * It returns a valid dst pointer on success, or a pointer encoded
1108 struct dst_entry
*ip6_sk_dst_lookup_flow(struct sock
*sk
, struct flowi6
*fl6
,
1109 const struct in6_addr
*final_dst
)
1111 struct dst_entry
*dst
= sk_dst_check(sk
, inet6_sk(sk
)->dst_cookie
);
1113 dst
= ip6_sk_dst_check(sk
, dst
, fl6
);
1115 dst
= ip6_dst_lookup_flow(sk
, fl6
, final_dst
);
1119 EXPORT_SYMBOL_GPL(ip6_sk_dst_lookup_flow
);
1121 static inline int ip6_ufo_append_data(struct sock
*sk
,
1122 struct sk_buff_head
*queue
,
1123 int getfrag(void *from
, char *to
, int offset
, int len
,
1124 int odd
, struct sk_buff
*skb
),
1125 void *from
, int length
, int hh_len
, int fragheaderlen
,
1126 int exthdrlen
, int transhdrlen
, int mtu
,
1127 unsigned int flags
, const struct flowi6
*fl6
)
1130 struct sk_buff
*skb
;
1133 /* There is support for UDP large send offload by network
1134 * device, so create one single skb packet containing complete
1137 skb
= skb_peek_tail(queue
);
1139 skb
= sock_alloc_send_skb(sk
,
1140 hh_len
+ fragheaderlen
+ transhdrlen
+ 20,
1141 (flags
& MSG_DONTWAIT
), &err
);
1145 /* reserve space for Hardware header */
1146 skb_reserve(skb
, hh_len
);
1148 /* create space for UDP/IP header */
1149 skb_put(skb
, fragheaderlen
+ transhdrlen
);
1151 /* initialize network header pointer */
1152 skb_set_network_header(skb
, exthdrlen
);
1154 /* initialize protocol header pointer */
1155 skb
->transport_header
= skb
->network_header
+ fragheaderlen
;
1157 skb
->protocol
= htons(ETH_P_IPV6
);
1160 __skb_queue_tail(queue
, skb
);
1161 } else if (skb_is_gso(skb
)) {
1165 skb
->ip_summed
= CHECKSUM_PARTIAL
;
1166 /* Specify the length of each IPv6 datagram fragment.
1167 * It has to be a multiple of 8.
1169 skb_shinfo(skb
)->gso_size
= (mtu
- fragheaderlen
-
1170 sizeof(struct frag_hdr
)) & ~7;
1171 skb_shinfo(skb
)->gso_type
= SKB_GSO_UDP
;
1172 skb_shinfo(skb
)->ip6_frag_id
= ipv6_select_ident(sock_net(sk
),
1177 return skb_append_datato_frags(sk
, skb
, getfrag
, from
,
1178 (length
- transhdrlen
));
1181 static inline struct ipv6_opt_hdr
*ip6_opt_dup(struct ipv6_opt_hdr
*src
,
1184 return src
? kmemdup(src
, (src
->hdrlen
+ 1) * 8, gfp
) : NULL
;
1187 static inline struct ipv6_rt_hdr
*ip6_rthdr_dup(struct ipv6_rt_hdr
*src
,
1190 return src
? kmemdup(src
, (src
->hdrlen
+ 1) * 8, gfp
) : NULL
;
1193 static void ip6_append_data_mtu(unsigned int *mtu
,
1195 unsigned int fragheaderlen
,
1196 struct sk_buff
*skb
,
1197 struct rt6_info
*rt
,
1198 unsigned int orig_mtu
)
1200 if (!(rt
->dst
.flags
& DST_XFRM_TUNNEL
)) {
1202 /* first fragment, reserve header_len */
1203 *mtu
= orig_mtu
- rt
->dst
.header_len
;
1207 * this fragment is not first, the headers
1208 * space is regarded as data space.
1212 *maxfraglen
= ((*mtu
- fragheaderlen
) & ~7)
1213 + fragheaderlen
- sizeof(struct frag_hdr
);
1217 static int ip6_setup_cork(struct sock
*sk
, struct inet_cork_full
*cork
,
1218 struct inet6_cork
*v6_cork
, struct ipcm6_cookie
*ipc6
,
1219 struct rt6_info
*rt
, struct flowi6
*fl6
)
1221 struct ipv6_pinfo
*np
= inet6_sk(sk
);
1223 struct ipv6_txoptions
*opt
= ipc6
->opt
;
1229 if (WARN_ON(v6_cork
->opt
))
1232 v6_cork
->opt
= kzalloc(sizeof(*opt
), sk
->sk_allocation
);
1233 if (unlikely(!v6_cork
->opt
))
1236 v6_cork
->opt
->tot_len
= sizeof(*opt
);
1237 v6_cork
->opt
->opt_flen
= opt
->opt_flen
;
1238 v6_cork
->opt
->opt_nflen
= opt
->opt_nflen
;
1240 v6_cork
->opt
->dst0opt
= ip6_opt_dup(opt
->dst0opt
,
1242 if (opt
->dst0opt
&& !v6_cork
->opt
->dst0opt
)
1245 v6_cork
->opt
->dst1opt
= ip6_opt_dup(opt
->dst1opt
,
1247 if (opt
->dst1opt
&& !v6_cork
->opt
->dst1opt
)
1250 v6_cork
->opt
->hopopt
= ip6_opt_dup(opt
->hopopt
,
1252 if (opt
->hopopt
&& !v6_cork
->opt
->hopopt
)
1255 v6_cork
->opt
->srcrt
= ip6_rthdr_dup(opt
->srcrt
,
1257 if (opt
->srcrt
&& !v6_cork
->opt
->srcrt
)
1260 /* need source address above miyazawa*/
1263 cork
->base
.dst
= &rt
->dst
;
1264 cork
->fl
.u
.ip6
= *fl6
;
1265 v6_cork
->hop_limit
= ipc6
->hlimit
;
1266 v6_cork
->tclass
= ipc6
->tclass
;
1267 if (rt
->dst
.flags
& DST_XFRM_TUNNEL
)
1268 mtu
= np
->pmtudisc
>= IPV6_PMTUDISC_PROBE
?
1269 READ_ONCE(rt
->dst
.dev
->mtu
) : dst_mtu(&rt
->dst
);
1271 mtu
= np
->pmtudisc
>= IPV6_PMTUDISC_PROBE
?
1272 READ_ONCE(rt
->dst
.dev
->mtu
) : dst_mtu(rt
->dst
.path
);
1273 if (np
->frag_size
< mtu
) {
1275 mtu
= np
->frag_size
;
1277 if (mtu
< IPV6_MIN_MTU
)
1279 cork
->base
.fragsize
= mtu
;
1280 if (dst_allfrag(rt
->dst
.path
))
1281 cork
->base
.flags
|= IPCORK_ALLFRAG
;
1282 cork
->base
.length
= 0;
1287 static int __ip6_append_data(struct sock
*sk
,
1289 struct sk_buff_head
*queue
,
1290 struct inet_cork
*cork
,
1291 struct inet6_cork
*v6_cork
,
1292 struct page_frag
*pfrag
,
1293 int getfrag(void *from
, char *to
, int offset
,
1294 int len
, int odd
, struct sk_buff
*skb
),
1295 void *from
, int length
, int transhdrlen
,
1296 unsigned int flags
, struct ipcm6_cookie
*ipc6
,
1297 const struct sockcm_cookie
*sockc
)
1299 struct sk_buff
*skb
, *skb_prev
= NULL
;
1300 unsigned int maxfraglen
, fragheaderlen
, mtu
, orig_mtu
, pmtu
;
1302 int dst_exthdrlen
= 0;
1309 struct rt6_info
*rt
= (struct rt6_info
*)cork
->dst
;
1310 struct ipv6_txoptions
*opt
= v6_cork
->opt
;
1311 int csummode
= CHECKSUM_NONE
;
1312 unsigned int maxnonfragsize
, headersize
;
1314 skb
= skb_peek_tail(queue
);
1316 exthdrlen
= opt
? opt
->opt_flen
: 0;
1317 dst_exthdrlen
= rt
->dst
.header_len
- rt
->rt6i_nfheader_len
;
1320 mtu
= cork
->fragsize
;
1323 hh_len
= LL_RESERVED_SPACE(rt
->dst
.dev
);
1325 fragheaderlen
= sizeof(struct ipv6hdr
) + rt
->rt6i_nfheader_len
+
1326 (opt
? opt
->opt_nflen
: 0);
1327 maxfraglen
= ((mtu
- fragheaderlen
) & ~7) + fragheaderlen
-
1328 sizeof(struct frag_hdr
);
1330 headersize
= sizeof(struct ipv6hdr
) +
1331 (opt
? opt
->opt_flen
+ opt
->opt_nflen
: 0) +
1332 (dst_allfrag(&rt
->dst
) ?
1333 sizeof(struct frag_hdr
) : 0) +
1334 rt
->rt6i_nfheader_len
;
1336 /* as per RFC 7112 section 5, the entire IPv6 Header Chain must fit
1337 * the first fragment
1339 if (headersize
+ transhdrlen
> mtu
)
1342 if (cork
->length
+ length
> mtu
- headersize
&& ipc6
->dontfrag
&&
1343 (sk
->sk_protocol
== IPPROTO_UDP
||
1344 sk
->sk_protocol
== IPPROTO_RAW
)) {
1345 ipv6_local_rxpmtu(sk
, fl6
, mtu
- headersize
+
1346 sizeof(struct ipv6hdr
));
1350 if (ip6_sk_ignore_df(sk
))
1351 maxnonfragsize
= sizeof(struct ipv6hdr
) + IPV6_MAXPLEN
;
1353 maxnonfragsize
= mtu
;
1355 if (cork
->length
+ length
> maxnonfragsize
- headersize
) {
1357 pmtu
= max_t(int, mtu
- headersize
+ sizeof(struct ipv6hdr
), 0);
1358 ipv6_local_error(sk
, EMSGSIZE
, fl6
, pmtu
);
1362 /* CHECKSUM_PARTIAL only with no extension headers and when
1363 * we are not going to fragment
1365 if (transhdrlen
&& sk
->sk_protocol
== IPPROTO_UDP
&&
1366 headersize
== sizeof(struct ipv6hdr
) &&
1367 length
< mtu
- headersize
&&
1368 !(flags
& MSG_MORE
) &&
1369 rt
->dst
.dev
->features
& (NETIF_F_IPV6_CSUM
| NETIF_F_HW_CSUM
))
1370 csummode
= CHECKSUM_PARTIAL
;
1372 if (sk
->sk_type
== SOCK_DGRAM
|| sk
->sk_type
== SOCK_RAW
) {
1373 sock_tx_timestamp(sk
, sockc
->tsflags
, &tx_flags
);
1374 if (tx_flags
& SKBTX_ANY_SW_TSTAMP
&&
1375 sk
->sk_tsflags
& SOF_TIMESTAMPING_OPT_ID
)
1376 tskey
= sk
->sk_tskey
++;
1380 * Let's try using as much space as possible.
1381 * Use MTU if total length of the message fits into the MTU.
1382 * Otherwise, we need to reserve fragment header and
1383 * fragment alignment (= 8-15 octects, in total).
1385 * Note that we may need to "move" the data from the tail of
1386 * of the buffer to the new fragment when we split
1389 * FIXME: It may be fragmented into multiple chunks
1390 * at once if non-fragmentable extension headers
1395 cork
->length
+= length
;
1396 if ((skb
&& skb_is_gso(skb
)) ||
1397 (((length
+ fragheaderlen
) > mtu
) &&
1398 (skb_queue_len(queue
) <= 1) &&
1399 (sk
->sk_protocol
== IPPROTO_UDP
) &&
1400 (rt
->dst
.dev
->features
& NETIF_F_UFO
) && !rt
->dst
.header_len
&&
1401 (sk
->sk_type
== SOCK_DGRAM
) && !udp_get_no_check6_tx(sk
))) {
1402 err
= ip6_ufo_append_data(sk
, queue
, getfrag
, from
, length
,
1403 hh_len
, fragheaderlen
, exthdrlen
,
1404 transhdrlen
, mtu
, flags
, fl6
);
1413 while (length
> 0) {
1414 /* Check if the remaining data fits into current packet. */
1415 copy
= (cork
->length
<= mtu
&& !(cork
->flags
& IPCORK_ALLFRAG
) ? mtu
: maxfraglen
) - skb
->len
;
1417 copy
= maxfraglen
- skb
->len
;
1421 unsigned int datalen
;
1422 unsigned int fraglen
;
1423 unsigned int fraggap
;
1424 unsigned int alloclen
;
1426 /* There's no room in the current skb */
1428 fraggap
= skb
->len
- maxfraglen
;
1431 /* update mtu and maxfraglen if necessary */
1432 if (!skb
|| !skb_prev
)
1433 ip6_append_data_mtu(&mtu
, &maxfraglen
,
1434 fragheaderlen
, skb
, rt
,
1440 * If remaining data exceeds the mtu,
1441 * we know we need more fragment(s).
1443 datalen
= length
+ fraggap
;
1445 if (datalen
> (cork
->length
<= mtu
&& !(cork
->flags
& IPCORK_ALLFRAG
) ? mtu
: maxfraglen
) - fragheaderlen
)
1446 datalen
= maxfraglen
- fragheaderlen
- rt
->dst
.trailer_len
;
1447 if ((flags
& MSG_MORE
) &&
1448 !(rt
->dst
.dev
->features
&NETIF_F_SG
))
1451 alloclen
= datalen
+ fragheaderlen
;
1453 alloclen
+= dst_exthdrlen
;
1455 if (datalen
!= length
+ fraggap
) {
1457 * this is not the last fragment, the trailer
1458 * space is regarded as data space.
1460 datalen
+= rt
->dst
.trailer_len
;
1463 alloclen
+= rt
->dst
.trailer_len
;
1464 fraglen
= datalen
+ fragheaderlen
;
1467 * We just reserve space for fragment header.
1468 * Note: this may be overallocation if the message
1469 * (without MSG_MORE) fits into the MTU.
1471 alloclen
+= sizeof(struct frag_hdr
);
1473 copy
= datalen
- transhdrlen
- fraggap
;
1479 skb
= sock_alloc_send_skb(sk
,
1481 (flags
& MSG_DONTWAIT
), &err
);
1484 if (atomic_read(&sk
->sk_wmem_alloc
) <=
1486 skb
= sock_wmalloc(sk
,
1487 alloclen
+ hh_len
, 1,
1495 * Fill in the control structures
1497 skb
->protocol
= htons(ETH_P_IPV6
);
1498 skb
->ip_summed
= csummode
;
1500 /* reserve for fragmentation and ipsec header */
1501 skb_reserve(skb
, hh_len
+ sizeof(struct frag_hdr
) +
1504 /* Only the initial fragment is time stamped */
1505 skb_shinfo(skb
)->tx_flags
= tx_flags
;
1507 skb_shinfo(skb
)->tskey
= tskey
;
1511 * Find where to start putting bytes
1513 data
= skb_put(skb
, fraglen
);
1514 skb_set_network_header(skb
, exthdrlen
);
1515 data
+= fragheaderlen
;
1516 skb
->transport_header
= (skb
->network_header
+
1519 skb
->csum
= skb_copy_and_csum_bits(
1520 skb_prev
, maxfraglen
,
1521 data
+ transhdrlen
, fraggap
, 0);
1522 skb_prev
->csum
= csum_sub(skb_prev
->csum
,
1525 pskb_trim_unique(skb_prev
, maxfraglen
);
1528 getfrag(from
, data
+ transhdrlen
, offset
,
1529 copy
, fraggap
, skb
) < 0) {
1536 length
-= datalen
- fraggap
;
1542 * Put the packet on the pending queue
1544 __skb_queue_tail(queue
, skb
);
1551 if (!(rt
->dst
.dev
->features
&NETIF_F_SG
) &&
1552 skb_tailroom(skb
) >= copy
) {
1556 if (getfrag(from
, skb_put(skb
, copy
),
1557 offset
, copy
, off
, skb
) < 0) {
1558 __skb_trim(skb
, off
);
1563 int i
= skb_shinfo(skb
)->nr_frags
;
1566 if (!sk_page_frag_refill(sk
, pfrag
))
1569 if (!skb_can_coalesce(skb
, i
, pfrag
->page
,
1572 if (i
== MAX_SKB_FRAGS
)
1575 __skb_fill_page_desc(skb
, i
, pfrag
->page
,
1577 skb_shinfo(skb
)->nr_frags
= ++i
;
1578 get_page(pfrag
->page
);
1580 copy
= min_t(int, copy
, pfrag
->size
- pfrag
->offset
);
1582 page_address(pfrag
->page
) + pfrag
->offset
,
1583 offset
, copy
, skb
->len
, skb
) < 0)
1586 pfrag
->offset
+= copy
;
1587 skb_frag_size_add(&skb_shinfo(skb
)->frags
[i
- 1], copy
);
1589 skb
->data_len
+= copy
;
1590 skb
->truesize
+= copy
;
1591 atomic_add(copy
, &sk
->sk_wmem_alloc
);
1602 cork
->length
-= length
;
1603 IP6_INC_STATS(sock_net(sk
), rt
->rt6i_idev
, IPSTATS_MIB_OUTDISCARDS
);
1607 int ip6_append_data(struct sock
*sk
,
1608 int getfrag(void *from
, char *to
, int offset
, int len
,
1609 int odd
, struct sk_buff
*skb
),
1610 void *from
, int length
, int transhdrlen
,
1611 struct ipcm6_cookie
*ipc6
, struct flowi6
*fl6
,
1612 struct rt6_info
*rt
, unsigned int flags
,
1613 const struct sockcm_cookie
*sockc
)
1615 struct inet_sock
*inet
= inet_sk(sk
);
1616 struct ipv6_pinfo
*np
= inet6_sk(sk
);
1620 if (flags
&MSG_PROBE
)
1622 if (skb_queue_empty(&sk
->sk_write_queue
)) {
1626 err
= ip6_setup_cork(sk
, &inet
->cork
, &np
->cork
,
1631 exthdrlen
= (ipc6
->opt
? ipc6
->opt
->opt_flen
: 0);
1632 length
+= exthdrlen
;
1633 transhdrlen
+= exthdrlen
;
1635 fl6
= &inet
->cork
.fl
.u
.ip6
;
1639 return __ip6_append_data(sk
, fl6
, &sk
->sk_write_queue
, &inet
->cork
.base
,
1640 &np
->cork
, sk_page_frag(sk
), getfrag
,
1641 from
, length
, transhdrlen
, flags
, ipc6
, sockc
);
1643 EXPORT_SYMBOL_GPL(ip6_append_data
);
1645 static void ip6_cork_release(struct inet_cork_full
*cork
,
1646 struct inet6_cork
*v6_cork
)
1649 kfree(v6_cork
->opt
->dst0opt
);
1650 kfree(v6_cork
->opt
->dst1opt
);
1651 kfree(v6_cork
->opt
->hopopt
);
1652 kfree(v6_cork
->opt
->srcrt
);
1653 kfree(v6_cork
->opt
);
1654 v6_cork
->opt
= NULL
;
1657 if (cork
->base
.dst
) {
1658 dst_release(cork
->base
.dst
);
1659 cork
->base
.dst
= NULL
;
1660 cork
->base
.flags
&= ~IPCORK_ALLFRAG
;
1662 memset(&cork
->fl
, 0, sizeof(cork
->fl
));
1665 struct sk_buff
*__ip6_make_skb(struct sock
*sk
,
1666 struct sk_buff_head
*queue
,
1667 struct inet_cork_full
*cork
,
1668 struct inet6_cork
*v6_cork
)
1670 struct sk_buff
*skb
, *tmp_skb
;
1671 struct sk_buff
**tail_skb
;
1672 struct in6_addr final_dst_buf
, *final_dst
= &final_dst_buf
;
1673 struct ipv6_pinfo
*np
= inet6_sk(sk
);
1674 struct net
*net
= sock_net(sk
);
1675 struct ipv6hdr
*hdr
;
1676 struct ipv6_txoptions
*opt
= v6_cork
->opt
;
1677 struct rt6_info
*rt
= (struct rt6_info
*)cork
->base
.dst
;
1678 struct flowi6
*fl6
= &cork
->fl
.u
.ip6
;
1679 unsigned char proto
= fl6
->flowi6_proto
;
1681 skb
= __skb_dequeue(queue
);
1684 tail_skb
= &(skb_shinfo(skb
)->frag_list
);
1686 /* move skb->data to ip header from ext header */
1687 if (skb
->data
< skb_network_header(skb
))
1688 __skb_pull(skb
, skb_network_offset(skb
));
1689 while ((tmp_skb
= __skb_dequeue(queue
)) != NULL
) {
1690 __skb_pull(tmp_skb
, skb_network_header_len(skb
));
1691 *tail_skb
= tmp_skb
;
1692 tail_skb
= &(tmp_skb
->next
);
1693 skb
->len
+= tmp_skb
->len
;
1694 skb
->data_len
+= tmp_skb
->len
;
1695 skb
->truesize
+= tmp_skb
->truesize
;
1696 tmp_skb
->destructor
= NULL
;
1700 /* Allow local fragmentation. */
1701 skb
->ignore_df
= ip6_sk_ignore_df(sk
);
1703 *final_dst
= fl6
->daddr
;
1704 __skb_pull(skb
, skb_network_header_len(skb
));
1705 if (opt
&& opt
->opt_flen
)
1706 ipv6_push_frag_opts(skb
, opt
, &proto
);
1707 if (opt
&& opt
->opt_nflen
)
1708 ipv6_push_nfrag_opts(skb
, opt
, &proto
, &final_dst
);
1710 skb_push(skb
, sizeof(struct ipv6hdr
));
1711 skb_reset_network_header(skb
);
1712 hdr
= ipv6_hdr(skb
);
1714 ip6_flow_hdr(hdr
, v6_cork
->tclass
,
1715 ip6_make_flowlabel(net
, skb
, fl6
->flowlabel
,
1716 ip6_autoflowlabel(net
, np
), fl6
));
1717 hdr
->hop_limit
= v6_cork
->hop_limit
;
1718 hdr
->nexthdr
= proto
;
1719 hdr
->saddr
= fl6
->saddr
;
1720 hdr
->daddr
= *final_dst
;
1722 skb
->priority
= sk
->sk_priority
;
1723 skb
->mark
= sk
->sk_mark
;
1725 skb_dst_set(skb
, dst_clone(&rt
->dst
));
1726 IP6_UPD_PO_STATS(net
, rt
->rt6i_idev
, IPSTATS_MIB_OUT
, skb
->len
);
1727 if (proto
== IPPROTO_ICMPV6
) {
1728 struct inet6_dev
*idev
= ip6_dst_idev(skb_dst(skb
));
1730 ICMP6MSGOUT_INC_STATS(net
, idev
, icmp6_hdr(skb
)->icmp6_type
);
1731 ICMP6_INC_STATS(net
, idev
, ICMP6_MIB_OUTMSGS
);
1734 ip6_cork_release(cork
, v6_cork
);
1739 int ip6_send_skb(struct sk_buff
*skb
)
1741 struct net
*net
= sock_net(skb
->sk
);
1742 struct rt6_info
*rt
= (struct rt6_info
*)skb_dst(skb
);
1745 err
= ip6_local_out(net
, skb
->sk
, skb
);
1748 err
= net_xmit_errno(err
);
1750 IP6_INC_STATS(net
, rt
->rt6i_idev
,
1751 IPSTATS_MIB_OUTDISCARDS
);
1757 int ip6_push_pending_frames(struct sock
*sk
)
1759 struct sk_buff
*skb
;
1761 skb
= ip6_finish_skb(sk
);
1765 return ip6_send_skb(skb
);
1767 EXPORT_SYMBOL_GPL(ip6_push_pending_frames
);
1769 static void __ip6_flush_pending_frames(struct sock
*sk
,
1770 struct sk_buff_head
*queue
,
1771 struct inet_cork_full
*cork
,
1772 struct inet6_cork
*v6_cork
)
1774 struct sk_buff
*skb
;
1776 while ((skb
= __skb_dequeue_tail(queue
)) != NULL
) {
1778 IP6_INC_STATS(sock_net(sk
), ip6_dst_idev(skb_dst(skb
)),
1779 IPSTATS_MIB_OUTDISCARDS
);
1783 ip6_cork_release(cork
, v6_cork
);
1786 void ip6_flush_pending_frames(struct sock
*sk
)
1788 __ip6_flush_pending_frames(sk
, &sk
->sk_write_queue
,
1789 &inet_sk(sk
)->cork
, &inet6_sk(sk
)->cork
);
1791 EXPORT_SYMBOL_GPL(ip6_flush_pending_frames
);
1793 struct sk_buff
*ip6_make_skb(struct sock
*sk
,
1794 int getfrag(void *from
, char *to
, int offset
,
1795 int len
, int odd
, struct sk_buff
*skb
),
1796 void *from
, int length
, int transhdrlen
,
1797 struct ipcm6_cookie
*ipc6
, struct flowi6
*fl6
,
1798 struct rt6_info
*rt
, unsigned int flags
,
1799 const struct sockcm_cookie
*sockc
)
1801 struct inet_cork_full cork
;
1802 struct inet6_cork v6_cork
;
1803 struct sk_buff_head queue
;
1804 int exthdrlen
= (ipc6
->opt
? ipc6
->opt
->opt_flen
: 0);
1807 if (flags
& MSG_PROBE
)
1810 __skb_queue_head_init(&queue
);
1812 cork
.base
.flags
= 0;
1814 cork
.base
.opt
= NULL
;
1815 cork
.base
.dst
= NULL
;
1817 err
= ip6_setup_cork(sk
, &cork
, &v6_cork
, ipc6
, rt
, fl6
);
1819 ip6_cork_release(&cork
, &v6_cork
);
1820 return ERR_PTR(err
);
1822 if (ipc6
->dontfrag
< 0)
1823 ipc6
->dontfrag
= inet6_sk(sk
)->dontfrag
;
1825 err
= __ip6_append_data(sk
, fl6
, &queue
, &cork
.base
, &v6_cork
,
1826 ¤t
->task_frag
, getfrag
, from
,
1827 length
+ exthdrlen
, transhdrlen
+ exthdrlen
,
1828 flags
, ipc6
, sockc
);
1830 __ip6_flush_pending_frames(sk
, &queue
, &cork
, &v6_cork
);
1831 return ERR_PTR(err
);
1834 return __ip6_make_skb(sk
, &queue
, &cork
, &v6_cork
);