2 * INET An implementation of the TCP/IP protocol suite for the LINUX
3 * operating system. INET is implemented using the BSD Socket
4 * interface as the means of communication with the user level.
6 * The Internet Protocol (IP) output module.
8 * Version: $Id: ip_output.c,v 1.100 2002/02/01 22:01:03 davem Exp $
11 * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
12 * Donald Becker, <becker@super.org>
13 * Alan Cox, <Alan.Cox@linux.org>
15 * Stefan Becker, <stefanb@yello.ping.de>
16 * Jorge Cwik, <jorge@laser.satlink.net>
17 * Arnt Gulbrandsen, <agulbra@nvg.unit.no>
18 * Hirokazu Takahashi, <taka@valinux.co.jp>
20 * See ip_input.c for original log
23 * Alan Cox : Missing nonblock feature in ip_build_xmit.
24 * Mike Kilburn : htons() missing in ip_build_xmit.
25 * Bradford Johnson: Fix faulty handling of some frames when
27 * Alexander Demenshin: Missing sk/skb free in ip_queue_xmit
28 * (in case if packet not accepted by
29 * output firewall rules)
30 * Mike McLagan : Routing by source
31 * Alexey Kuznetsov: use new route cache
32 * Andi Kleen: Fix broken PMTU recovery and remove
33 * some redundant tests.
34 * Vitaly E. Lavrov : Transparent proxy revived after year coma.
35 * Andi Kleen : Replace ip_reply with ip_send_reply.
36 * Andi Kleen : Split fast and slow ip_build_xmit path
37 * for decreased register pressure on x86
38 * and more readibility.
39 * Marc Boucher : When call_out_firewall returns FW_QUEUE,
40 * silently drop skb instead of failing with -EPERM.
41 * Detlev Wengorz : Copy protocol for fragments.
42 * Hirokazu Takahashi: HW checksumming for outgoing UDP
44 * Hirokazu Takahashi: sendfile() on UDP works now.
47 #include <asm/uaccess.h>
48 #include <asm/system.h>
49 #include <linux/module.h>
50 #include <linux/types.h>
51 #include <linux/kernel.h>
53 #include <linux/string.h>
54 #include <linux/errno.h>
55 #include <linux/highmem.h>
57 #include <linux/socket.h>
58 #include <linux/sockios.h>
60 #include <linux/inet.h>
61 #include <linux/netdevice.h>
62 #include <linux/etherdevice.h>
63 #include <linux/proc_fs.h>
64 #include <linux/stat.h>
65 #include <linux/init.h>
69 #include <net/protocol.h>
70 #include <net/route.h>
72 #include <linux/skbuff.h>
76 #include <net/checksum.h>
77 #include <net/inetpeer.h>
78 #include <net/checksum.h>
79 #include <linux/igmp.h>
80 #include <linux/netfilter_ipv4.h>
81 #include <linux/netfilter_bridge.h>
82 #include <linux/mroute.h>
83 #include <linux/netlink.h>
84 #include <linux/tcp.h>
86 int sysctl_ip_default_ttl __read_mostly = IPDEFTTL;
88 /* Generate a checksum for an outgoing IP datagram. */
89 __inline__ void ip_send_check(struct iphdr *iph)
92 iph->check = ip_fast_csum((unsigned char *)iph, iph->ihl);
95 /* dev_loopback_xmit for use with netfilter. */
96 static int ip_dev_loopback_xmit(struct sk_buff *newskb)
98 skb_reset_mac_header(newskb);
99 __skb_pull(newskb, skb_network_offset(newskb));
100 newskb->pkt_type = PACKET_LOOPBACK;
101 newskb->ip_summed = CHECKSUM_UNNECESSARY;
102 BUG_TRAP(newskb->dst);
107 static inline int ip_select_ttl(struct inet_sock *inet, struct dst_entry *dst)
109 int ttl = inet->uc_ttl;
112 ttl = dst_metric(dst, RTAX_HOPLIMIT);
117 * Add an ip header to a skbuff and send it out.
120 int ip_build_and_send_pkt(struct sk_buff *skb, struct sock *sk,
121 __be32 saddr, __be32 daddr, struct ip_options *opt)
123 struct inet_sock *inet = inet_sk(sk);
124 struct rtable *rt = (struct rtable *)skb->dst;
127 /* Build the IP header. */
128 skb_push(skb, sizeof(struct iphdr) + (opt ? opt->optlen : 0));
129 skb_reset_network_header(skb);
133 iph->tos = inet->tos;
134 if (ip_dont_fragment(sk, &rt->u.dst))
135 iph->frag_off = htons(IP_DF);
138 iph->ttl = ip_select_ttl(inet, &rt->u.dst);
139 iph->daddr = rt->rt_dst;
140 iph->saddr = rt->rt_src;
141 iph->protocol = sk->sk_protocol;
142 iph->tot_len = htons(skb->len);
143 ip_select_ident(iph, &rt->u.dst, sk);
145 if (opt && opt->optlen) {
146 iph->ihl += opt->optlen>>2;
147 ip_options_build(skb, opt, daddr, rt, 0);
151 skb->priority = sk->sk_priority;
154 return NF_HOOK(PF_INET, NF_IP_LOCAL_OUT, skb, NULL, rt->u.dst.dev,
158 EXPORT_SYMBOL_GPL(ip_build_and_send_pkt);
160 static inline int ip_finish_output2(struct sk_buff *skb)
162 struct dst_entry *dst = skb->dst;
163 struct rtable *rt = (struct rtable *)dst;
164 struct net_device *dev = dst->dev;
165 int hh_len = LL_RESERVED_SPACE(dev);
167 if (rt->rt_type == RTN_MULTICAST)
168 IP_INC_STATS(IPSTATS_MIB_OUTMCASTPKTS);
169 else if (rt->rt_type == RTN_BROADCAST)
170 IP_INC_STATS(IPSTATS_MIB_OUTBCASTPKTS);
172 /* Be paranoid, rather than too clever. */
173 if (unlikely(skb_headroom(skb) < hh_len && dev->hard_header)) {
174 struct sk_buff *skb2;
176 skb2 = skb_realloc_headroom(skb, LL_RESERVED_SPACE(dev));
182 skb_set_owner_w(skb2, skb->sk);
188 return neigh_hh_output(dst->hh, skb);
189 else if (dst->neighbour)
190 return dst->neighbour->output(skb);
193 printk(KERN_DEBUG "ip_finish_output2: No header cache and no neighbour!\n");
198 static inline int ip_skb_dst_mtu(struct sk_buff *skb)
200 struct inet_sock *inet = skb->sk ? inet_sk(skb->sk) : NULL;
202 return (inet && inet->pmtudisc == IP_PMTUDISC_PROBE) ?
203 skb->dst->dev->mtu : dst_mtu(skb->dst);
206 static inline int ip_finish_output(struct sk_buff *skb)
208 #if defined(CONFIG_NETFILTER) && defined(CONFIG_XFRM)
209 /* Policy lookup after SNAT yielded a new policy */
210 if (skb->dst->xfrm != NULL) {
211 IPCB(skb)->flags |= IPSKB_REROUTED;
212 return dst_output(skb);
215 if (skb->len > ip_skb_dst_mtu(skb) && !skb_is_gso(skb))
216 return ip_fragment(skb, ip_finish_output2);
218 return ip_finish_output2(skb);
221 int ip_mc_output(struct sk_buff *skb)
223 struct sock *sk = skb->sk;
224 struct rtable *rt = (struct rtable*)skb->dst;
225 struct net_device *dev = rt->u.dst.dev;
228 * If the indicated interface is up and running, send the packet.
230 IP_INC_STATS(IPSTATS_MIB_OUTREQUESTS);
233 skb->protocol = htons(ETH_P_IP);
236 * Multicasts are looped back for other local users
239 if (rt->rt_flags&RTCF_MULTICAST) {
240 if ((!sk || inet_sk(sk)->mc_loop)
241 #ifdef CONFIG_IP_MROUTE
242 /* Small optimization: do not loopback not local frames,
243 which returned after forwarding; they will be dropped
244 by ip_mr_input in any case.
245 Note, that local frames are looped back to be delivered
248 This check is duplicated in ip_mr_input at the moment.
250 && ((rt->rt_flags&RTCF_LOCAL) || !(IPCB(skb)->flags&IPSKB_FORWARDED))
253 struct sk_buff *newskb = skb_clone(skb, GFP_ATOMIC);
255 NF_HOOK(PF_INET, NF_IP_POST_ROUTING, newskb, NULL,
257 ip_dev_loopback_xmit);
260 /* Multicasts with ttl 0 must not go beyond the host */
262 if (ip_hdr(skb)->ttl == 0) {
268 if (rt->rt_flags&RTCF_BROADCAST) {
269 struct sk_buff *newskb = skb_clone(skb, GFP_ATOMIC);
271 NF_HOOK(PF_INET, NF_IP_POST_ROUTING, newskb, NULL,
272 newskb->dev, ip_dev_loopback_xmit);
275 return NF_HOOK_COND(PF_INET, NF_IP_POST_ROUTING, skb, NULL, skb->dev,
277 !(IPCB(skb)->flags & IPSKB_REROUTED));
280 int ip_output(struct sk_buff *skb)
282 struct net_device *dev = skb->dst->dev;
284 IP_INC_STATS(IPSTATS_MIB_OUTREQUESTS);
287 skb->protocol = htons(ETH_P_IP);
289 return NF_HOOK_COND(PF_INET, NF_IP_POST_ROUTING, skb, NULL, dev,
291 !(IPCB(skb)->flags & IPSKB_REROUTED));
294 int ip_queue_xmit(struct sk_buff *skb, int ipfragok)
296 struct sock *sk = skb->sk;
297 struct inet_sock *inet = inet_sk(sk);
298 struct ip_options *opt = inet->opt;
302 /* Skip all of this if the packet is already routed,
303 * f.e. by something like SCTP.
305 rt = (struct rtable *) skb->dst;
309 /* Make sure we can route this packet. */
310 rt = (struct rtable *)__sk_dst_check(sk, 0);
314 /* Use correct destination address if we have options. */
320 struct flowi fl = { .oif = sk->sk_bound_dev_if,
323 .saddr = inet->saddr,
324 .tos = RT_CONN_FLAGS(sk) } },
325 .proto = sk->sk_protocol,
327 { .sport = inet->sport,
328 .dport = inet->dport } } };
330 /* If this fails, retransmit mechanism of transport layer will
331 * keep trying until route appears or the connection times
334 security_sk_classify_flow(sk, &fl);
335 if (ip_route_output_flow(&rt, &fl, sk, 0))
338 sk_setup_caps(sk, &rt->u.dst);
340 skb->dst = dst_clone(&rt->u.dst);
343 if (opt && opt->is_strictroute && rt->rt_dst != rt->rt_gateway)
346 /* OK, we know where to send it, allocate and build IP header. */
347 skb_push(skb, sizeof(struct iphdr) + (opt ? opt->optlen : 0));
348 skb_reset_network_header(skb);
350 *((__be16 *)iph) = htons((4 << 12) | (5 << 8) | (inet->tos & 0xff));
351 iph->tot_len = htons(skb->len);
352 if (ip_dont_fragment(sk, &rt->u.dst) && !ipfragok)
353 iph->frag_off = htons(IP_DF);
356 iph->ttl = ip_select_ttl(inet, &rt->u.dst);
357 iph->protocol = sk->sk_protocol;
358 iph->saddr = rt->rt_src;
359 iph->daddr = rt->rt_dst;
360 /* Transport layer set skb->h.foo itself. */
362 if (opt && opt->optlen) {
363 iph->ihl += opt->optlen >> 2;
364 ip_options_build(skb, opt, inet->daddr, rt, 0);
367 ip_select_ident_more(iph, &rt->u.dst, sk,
368 (skb_shinfo(skb)->gso_segs ?: 1) - 1);
370 /* Add an IP checksum. */
373 skb->priority = sk->sk_priority;
375 return NF_HOOK(PF_INET, NF_IP_LOCAL_OUT, skb, NULL, rt->u.dst.dev,
379 IP_INC_STATS(IPSTATS_MIB_OUTNOROUTES);
381 return -EHOSTUNREACH;
385 static void ip_copy_metadata(struct sk_buff *to, struct sk_buff *from)
387 to->pkt_type = from->pkt_type;
388 to->priority = from->priority;
389 to->protocol = from->protocol;
390 dst_release(to->dst);
391 to->dst = dst_clone(from->dst);
393 to->mark = from->mark;
395 /* Copy the flags to each fragment. */
396 IPCB(to)->flags = IPCB(from)->flags;
398 #ifdef CONFIG_NET_SCHED
399 to->tc_index = from->tc_index;
402 #if defined(CONFIG_NETFILTER_XT_TARGET_TRACE) || \
403 defined(CONFIG_NETFILTER_XT_TARGET_TRACE_MODULE)
404 to->nf_trace = from->nf_trace;
406 #if defined(CONFIG_IP_VS) || defined(CONFIG_IP_VS_MODULE)
407 to->ipvs_property = from->ipvs_property;
409 skb_copy_secmark(to, from);
413 * This IP datagram is too large to be sent in one piece. Break it up into
414 * smaller pieces (each of size equal to IP header plus
415 * a block of the data of the original IP data part) that will yet fit in a
416 * single device frame, and queue such a frame for sending.
419 int ip_fragment(struct sk_buff *skb, int (*output)(struct sk_buff*))
424 struct net_device *dev;
425 struct sk_buff *skb2;
426 unsigned int mtu, hlen, left, len, ll_rs, pad;
428 __be16 not_last_frag;
429 struct rtable *rt = (struct rtable*)skb->dst;
435 * Point into the IP datagram header.
440 if (unlikely((iph->frag_off & htons(IP_DF)) && !skb->local_df)) {
441 IP_INC_STATS(IPSTATS_MIB_FRAGFAILS);
442 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED,
443 htonl(ip_skb_dst_mtu(skb)));
449 * Setup starting values.
453 mtu = dst_mtu(&rt->u.dst) - hlen; /* Size of data space */
454 IPCB(skb)->flags |= IPSKB_FRAG_COMPLETE;
456 /* When frag_list is given, use it. First, check its validity:
457 * some transformers could create wrong frag_list or break existing
458 * one, it is not prohibited. In this case fall back to copying.
460 * LATER: this step can be merged to real generation of fragments,
461 * we can switch to copy when see the first bad fragment.
463 if (skb_shinfo(skb)->frag_list) {
464 struct sk_buff *frag;
465 int first_len = skb_pagelen(skb);
467 if (first_len - hlen > mtu ||
468 ((first_len - hlen) & 7) ||
469 (iph->frag_off & htons(IP_MF|IP_OFFSET)) ||
473 for (frag = skb_shinfo(skb)->frag_list; frag; frag = frag->next) {
474 /* Correct geometry. */
475 if (frag->len > mtu ||
476 ((frag->len & 7) && frag->next) ||
477 skb_headroom(frag) < hlen)
480 /* Partially cloned skb? */
481 if (skb_shared(frag))
488 frag->destructor = sock_wfree;
489 skb->truesize -= frag->truesize;
493 /* Everything is OK. Generate! */
497 frag = skb_shinfo(skb)->frag_list;
498 skb_shinfo(skb)->frag_list = NULL;
499 skb->data_len = first_len - skb_headlen(skb);
500 skb->len = first_len;
501 iph->tot_len = htons(first_len);
502 iph->frag_off = htons(IP_MF);
506 /* Prepare header of the next frame,
507 * before previous one went down. */
509 frag->ip_summed = CHECKSUM_NONE;
510 skb_reset_transport_header(frag);
511 __skb_push(frag, hlen);
512 skb_reset_network_header(frag);
513 memcpy(skb_network_header(frag), iph, hlen);
515 iph->tot_len = htons(frag->len);
516 ip_copy_metadata(frag, skb);
518 ip_options_fragment(frag);
519 offset += skb->len - hlen;
520 iph->frag_off = htons(offset>>3);
521 if (frag->next != NULL)
522 iph->frag_off |= htons(IP_MF);
523 /* Ready, complete checksum */
530 IP_INC_STATS(IPSTATS_MIB_FRAGCREATES);
540 IP_INC_STATS(IPSTATS_MIB_FRAGOKS);
549 IP_INC_STATS(IPSTATS_MIB_FRAGFAILS);
554 left = skb->len - hlen; /* Space per frame */
555 ptr = raw + hlen; /* Where to start from */
557 /* for bridged IP traffic encapsulated inside f.e. a vlan header,
558 * we need to make room for the encapsulating header
560 pad = nf_bridge_pad(skb);
561 ll_rs = LL_RESERVED_SPACE_EXTRA(rt->u.dst.dev, pad);
565 * Fragment the datagram.
568 offset = (ntohs(iph->frag_off) & IP_OFFSET) << 3;
569 not_last_frag = iph->frag_off & htons(IP_MF);
572 * Keep copying data until we run out.
577 /* IF: it doesn't fit, use 'mtu' - the data space left */
580 /* IF: we are not sending upto and including the packet end
581 then align the next start on an eight byte boundary */
589 if ((skb2 = alloc_skb(len+hlen+ll_rs, GFP_ATOMIC)) == NULL) {
590 NETDEBUG(KERN_INFO "IP: frag: no memory for new fragment!\n");
596 * Set up data on packet
599 ip_copy_metadata(skb2, skb);
600 skb_reserve(skb2, ll_rs);
601 skb_put(skb2, len + hlen);
602 skb_reset_network_header(skb2);
603 skb2->transport_header = skb2->network_header + hlen;
606 * Charge the memory for the fragment to any owner
611 skb_set_owner_w(skb2, skb->sk);
614 * Copy the packet header into the new buffer.
617 skb_copy_from_linear_data(skb, skb_network_header(skb2), hlen);
620 * Copy a block of the IP datagram.
622 if (skb_copy_bits(skb, ptr, skb_transport_header(skb2), len))
627 * Fill in the new header fields.
630 iph->frag_off = htons((offset >> 3));
632 /* ANK: dirty, but effective trick. Upgrade options only if
633 * the segment to be fragmented was THE FIRST (otherwise,
634 * options are already fixed) and make it ONCE
635 * on the initial skb, so that all the following fragments
636 * will inherit fixed options.
639 ip_options_fragment(skb);
642 * Added AC : If we are fragmenting a fragment that's not the
643 * last fragment then keep MF on each bit
645 if (left > 0 || not_last_frag)
646 iph->frag_off |= htons(IP_MF);
651 * Put this fragment into the sending queue.
653 iph->tot_len = htons(len + hlen);
661 IP_INC_STATS(IPSTATS_MIB_FRAGCREATES);
664 IP_INC_STATS(IPSTATS_MIB_FRAGOKS);
669 IP_INC_STATS(IPSTATS_MIB_FRAGFAILS);
673 EXPORT_SYMBOL(ip_fragment);
676 ip_generic_getfrag(void *from, char *to, int offset, int len, int odd, struct sk_buff *skb)
678 struct iovec *iov = from;
680 if (skb->ip_summed == CHECKSUM_PARTIAL) {
681 if (memcpy_fromiovecend(to, iov, offset, len) < 0)
685 if (csum_partial_copy_fromiovecend(to, iov, offset, len, &csum) < 0)
687 skb->csum = csum_block_add(skb->csum, csum, odd);
693 csum_page(struct page *page, int offset, int copy)
698 csum = csum_partial(kaddr + offset, copy, 0);
703 static inline int ip_ufo_append_data(struct sock *sk,
704 int getfrag(void *from, char *to, int offset, int len,
705 int odd, struct sk_buff *skb),
706 void *from, int length, int hh_len, int fragheaderlen,
707 int transhdrlen, int mtu,unsigned int flags)
712 /* There is support for UDP fragmentation offload by network
713 * device, so create one single skb packet containing complete
716 if ((skb = skb_peek_tail(&sk->sk_write_queue)) == NULL) {
717 skb = sock_alloc_send_skb(sk,
718 hh_len + fragheaderlen + transhdrlen + 20,
719 (flags & MSG_DONTWAIT), &err);
724 /* reserve space for Hardware header */
725 skb_reserve(skb, hh_len);
727 /* create space for UDP/IP header */
728 skb_put(skb,fragheaderlen + transhdrlen);
730 /* initialize network header pointer */
731 skb_reset_network_header(skb);
733 /* initialize protocol header pointer */
734 skb->transport_header = skb->network_header + fragheaderlen;
736 skb->ip_summed = CHECKSUM_PARTIAL;
738 sk->sk_sndmsg_off = 0;
741 err = skb_append_datato_frags(sk,skb, getfrag, from,
742 (length - transhdrlen));
744 /* specify the length of each IP datagram fragment*/
745 skb_shinfo(skb)->gso_size = mtu - fragheaderlen;
746 skb_shinfo(skb)->gso_type = SKB_GSO_UDP;
747 __skb_queue_tail(&sk->sk_write_queue, skb);
751 /* There is not enough support do UFO ,
752 * so follow normal path
759 * ip_append_data() and ip_append_page() can make one large IP datagram
760 * from many pieces of data. Each pieces will be holded on the socket
761 * until ip_push_pending_frames() is called. Each piece can be a page
764 * Not only UDP, other transport protocols - e.g. raw sockets - can use
765 * this interface potentially.
767 * LATER: length must be adjusted by pad at tail, when it is required.
769 int ip_append_data(struct sock *sk,
770 int getfrag(void *from, char *to, int offset, int len,
771 int odd, struct sk_buff *skb),
772 void *from, int length, int transhdrlen,
773 struct ipcm_cookie *ipc, struct rtable *rt,
776 struct inet_sock *inet = inet_sk(sk);
779 struct ip_options *opt = NULL;
786 unsigned int maxfraglen, fragheaderlen;
787 int csummode = CHECKSUM_NONE;
792 if (skb_queue_empty(&sk->sk_write_queue)) {
798 if (inet->cork.opt == NULL) {
799 inet->cork.opt = kmalloc(sizeof(struct ip_options) + 40, sk->sk_allocation);
800 if (unlikely(inet->cork.opt == NULL))
803 memcpy(inet->cork.opt, opt, sizeof(struct ip_options)+opt->optlen);
804 inet->cork.flags |= IPCORK_OPT;
805 inet->cork.addr = ipc->addr;
807 dst_hold(&rt->u.dst);
808 inet->cork.fragsize = mtu = inet->pmtudisc == IP_PMTUDISC_PROBE ?
810 dst_mtu(rt->u.dst.path);
812 inet->cork.length = 0;
813 sk->sk_sndmsg_page = NULL;
814 sk->sk_sndmsg_off = 0;
815 if ((exthdrlen = rt->u.dst.header_len) != 0) {
817 transhdrlen += exthdrlen;
821 if (inet->cork.flags & IPCORK_OPT)
822 opt = inet->cork.opt;
826 mtu = inet->cork.fragsize;
828 hh_len = LL_RESERVED_SPACE(rt->u.dst.dev);
830 fragheaderlen = sizeof(struct iphdr) + (opt ? opt->optlen : 0);
831 maxfraglen = ((mtu - fragheaderlen) & ~7) + fragheaderlen;
833 if (inet->cork.length + length > 0xFFFF - fragheaderlen) {
834 ip_local_error(sk, EMSGSIZE, rt->rt_dst, inet->dport, mtu-exthdrlen);
839 * transhdrlen > 0 means that this is the first fragment and we wish
840 * it won't be fragmented in the future.
843 length + fragheaderlen <= mtu &&
844 rt->u.dst.dev->features & NETIF_F_V4_CSUM &&
846 csummode = CHECKSUM_PARTIAL;
848 inet->cork.length += length;
849 if (((length > mtu) && (sk->sk_protocol == IPPROTO_UDP)) &&
850 (rt->u.dst.dev->features & NETIF_F_UFO)) {
852 err = ip_ufo_append_data(sk, getfrag, from, length, hh_len,
853 fragheaderlen, transhdrlen, mtu,
860 /* So, what's going on in the loop below?
862 * We use calculated fragment length to generate chained skb,
863 * each of segments is IP fragment ready for sending to network after
864 * adding appropriate IP header.
867 if ((skb = skb_peek_tail(&sk->sk_write_queue)) == NULL)
871 /* Check if the remaining data fits into current packet. */
872 copy = mtu - skb->len;
874 copy = maxfraglen - skb->len;
877 unsigned int datalen;
878 unsigned int fraglen;
879 unsigned int fraggap;
880 unsigned int alloclen;
881 struct sk_buff *skb_prev;
885 fraggap = skb_prev->len - maxfraglen;
890 * If remaining data exceeds the mtu,
891 * we know we need more fragment(s).
893 datalen = length + fraggap;
894 if (datalen > mtu - fragheaderlen)
895 datalen = maxfraglen - fragheaderlen;
896 fraglen = datalen + fragheaderlen;
898 if ((flags & MSG_MORE) &&
899 !(rt->u.dst.dev->features&NETIF_F_SG))
902 alloclen = datalen + fragheaderlen;
904 /* The last fragment gets additional space at tail.
905 * Note, with MSG_MORE we overallocate on fragments,
906 * because we have no idea what fragment will be
909 if (datalen == length + fraggap)
910 alloclen += rt->u.dst.trailer_len;
913 skb = sock_alloc_send_skb(sk,
914 alloclen + hh_len + 15,
915 (flags & MSG_DONTWAIT), &err);
918 if (atomic_read(&sk->sk_wmem_alloc) <=
920 skb = sock_wmalloc(sk,
921 alloclen + hh_len + 15, 1,
923 if (unlikely(skb == NULL))
930 * Fill in the control structures
932 skb->ip_summed = csummode;
934 skb_reserve(skb, hh_len);
937 * Find where to start putting bytes.
939 data = skb_put(skb, fraglen);
940 skb_set_network_header(skb, exthdrlen);
941 skb->transport_header = (skb->network_header +
943 data += fragheaderlen;
946 skb->csum = skb_copy_and_csum_bits(
947 skb_prev, maxfraglen,
948 data + transhdrlen, fraggap, 0);
949 skb_prev->csum = csum_sub(skb_prev->csum,
952 pskb_trim_unique(skb_prev, maxfraglen);
955 copy = datalen - transhdrlen - fraggap;
956 if (copy > 0 && getfrag(from, data + transhdrlen, offset, copy, fraggap, skb) < 0) {
963 length -= datalen - fraggap;
966 csummode = CHECKSUM_NONE;
969 * Put the packet on the pending queue.
971 __skb_queue_tail(&sk->sk_write_queue, skb);
978 if (!(rt->u.dst.dev->features&NETIF_F_SG)) {
982 if (getfrag(from, skb_put(skb, copy),
983 offset, copy, off, skb) < 0) {
984 __skb_trim(skb, off);
989 int i = skb_shinfo(skb)->nr_frags;
990 skb_frag_t *frag = &skb_shinfo(skb)->frags[i-1];
991 struct page *page = sk->sk_sndmsg_page;
992 int off = sk->sk_sndmsg_off;
995 if (page && (left = PAGE_SIZE - off) > 0) {
998 if (page != frag->page) {
999 if (i == MAX_SKB_FRAGS) {
1004 skb_fill_page_desc(skb, i, page, sk->sk_sndmsg_off, 0);
1005 frag = &skb_shinfo(skb)->frags[i];
1007 } else if (i < MAX_SKB_FRAGS) {
1008 if (copy > PAGE_SIZE)
1010 page = alloc_pages(sk->sk_allocation, 0);
1015 sk->sk_sndmsg_page = page;
1016 sk->sk_sndmsg_off = 0;
1018 skb_fill_page_desc(skb, i, page, 0, 0);
1019 frag = &skb_shinfo(skb)->frags[i];
1020 skb->truesize += PAGE_SIZE;
1021 atomic_add(PAGE_SIZE, &sk->sk_wmem_alloc);
1026 if (getfrag(from, page_address(frag->page)+frag->page_offset+frag->size, offset, copy, skb->len, skb) < 0) {
1030 sk->sk_sndmsg_off += copy;
1033 skb->data_len += copy;
1042 inet->cork.length -= length;
1043 IP_INC_STATS(IPSTATS_MIB_OUTDISCARDS);
1047 ssize_t ip_append_page(struct sock *sk, struct page *page,
1048 int offset, size_t size, int flags)
1050 struct inet_sock *inet = inet_sk(sk);
1051 struct sk_buff *skb;
1053 struct ip_options *opt = NULL;
1058 unsigned int maxfraglen, fragheaderlen, fraggap;
1063 if (flags&MSG_PROBE)
1066 if (skb_queue_empty(&sk->sk_write_queue))
1070 if (inet->cork.flags & IPCORK_OPT)
1071 opt = inet->cork.opt;
1073 if (!(rt->u.dst.dev->features&NETIF_F_SG))
1076 hh_len = LL_RESERVED_SPACE(rt->u.dst.dev);
1077 mtu = inet->cork.fragsize;
1079 fragheaderlen = sizeof(struct iphdr) + (opt ? opt->optlen : 0);
1080 maxfraglen = ((mtu - fragheaderlen) & ~7) + fragheaderlen;
1082 if (inet->cork.length + size > 0xFFFF - fragheaderlen) {
1083 ip_local_error(sk, EMSGSIZE, rt->rt_dst, inet->dport, mtu);
1087 if ((skb = skb_peek_tail(&sk->sk_write_queue)) == NULL)
1090 inet->cork.length += size;
1091 if ((sk->sk_protocol == IPPROTO_UDP) &&
1092 (rt->u.dst.dev->features & NETIF_F_UFO)) {
1093 skb_shinfo(skb)->gso_size = mtu - fragheaderlen;
1094 skb_shinfo(skb)->gso_type = SKB_GSO_UDP;
1101 if (skb_is_gso(skb))
1105 /* Check if the remaining data fits into current packet. */
1106 len = mtu - skb->len;
1108 len = maxfraglen - skb->len;
1111 struct sk_buff *skb_prev;
1115 fraggap = skb_prev->len - maxfraglen;
1117 alloclen = fragheaderlen + hh_len + fraggap + 15;
1118 skb = sock_wmalloc(sk, alloclen, 1, sk->sk_allocation);
1119 if (unlikely(!skb)) {
1125 * Fill in the control structures
1127 skb->ip_summed = CHECKSUM_NONE;
1129 skb_reserve(skb, hh_len);
1132 * Find where to start putting bytes.
1134 skb_put(skb, fragheaderlen + fraggap);
1135 skb_reset_network_header(skb);
1136 skb->transport_header = (skb->network_header +
1139 skb->csum = skb_copy_and_csum_bits(skb_prev,
1141 skb_transport_header(skb),
1143 skb_prev->csum = csum_sub(skb_prev->csum,
1145 pskb_trim_unique(skb_prev, maxfraglen);
1149 * Put the packet on the pending queue.
1151 __skb_queue_tail(&sk->sk_write_queue, skb);
1155 i = skb_shinfo(skb)->nr_frags;
1158 if (skb_can_coalesce(skb, i, page, offset)) {
1159 skb_shinfo(skb)->frags[i-1].size += len;
1160 } else if (i < MAX_SKB_FRAGS) {
1162 skb_fill_page_desc(skb, i, page, offset, len);
1168 if (skb->ip_summed == CHECKSUM_NONE) {
1170 csum = csum_page(page, offset, len);
1171 skb->csum = csum_block_add(skb->csum, csum, skb->len);
1175 skb->data_len += len;
1182 inet->cork.length -= size;
1183 IP_INC_STATS(IPSTATS_MIB_OUTDISCARDS);
1188 * Combined all pending IP fragments on the socket as one IP datagram
1189 * and push them out.
1191 int ip_push_pending_frames(struct sock *sk)
1193 struct sk_buff *skb, *tmp_skb;
1194 struct sk_buff **tail_skb;
1195 struct inet_sock *inet = inet_sk(sk);
1196 struct ip_options *opt = NULL;
1197 struct rtable *rt = inet->cork.rt;
1203 if ((skb = __skb_dequeue(&sk->sk_write_queue)) == NULL)
1205 tail_skb = &(skb_shinfo(skb)->frag_list);
1207 /* move skb->data to ip header from ext header */
1208 if (skb->data < skb_network_header(skb))
1209 __skb_pull(skb, skb_network_offset(skb));
1210 while ((tmp_skb = __skb_dequeue(&sk->sk_write_queue)) != NULL) {
1211 __skb_pull(tmp_skb, skb_network_header_len(skb));
1212 *tail_skb = tmp_skb;
1213 tail_skb = &(tmp_skb->next);
1214 skb->len += tmp_skb->len;
1215 skb->data_len += tmp_skb->len;
1216 skb->truesize += tmp_skb->truesize;
1217 __sock_put(tmp_skb->sk);
1218 tmp_skb->destructor = NULL;
1222 /* Unless user demanded real pmtu discovery (IP_PMTUDISC_DO), we allow
1223 * to fragment the frame generated here. No matter, what transforms
1224 * how transforms change size of the packet, it will come out.
1226 if (inet->pmtudisc < IP_PMTUDISC_DO)
1229 /* DF bit is set when we want to see DF on outgoing frames.
1230 * If local_df is set too, we still allow to fragment this frame
1232 if (inet->pmtudisc >= IP_PMTUDISC_DO ||
1233 (skb->len <= dst_mtu(&rt->u.dst) &&
1234 ip_dont_fragment(sk, &rt->u.dst)))
1237 if (inet->cork.flags & IPCORK_OPT)
1238 opt = inet->cork.opt;
1240 if (rt->rt_type == RTN_MULTICAST)
1243 ttl = ip_select_ttl(inet, &rt->u.dst);
1245 iph = (struct iphdr *)skb->data;
1249 iph->ihl += opt->optlen>>2;
1250 ip_options_build(skb, opt, inet->cork.addr, rt, 0);
1252 iph->tos = inet->tos;
1253 iph->tot_len = htons(skb->len);
1255 ip_select_ident(iph, &rt->u.dst, sk);
1257 iph->protocol = sk->sk_protocol;
1258 iph->saddr = rt->rt_src;
1259 iph->daddr = rt->rt_dst;
1262 skb->priority = sk->sk_priority;
1263 skb->dst = dst_clone(&rt->u.dst);
1265 /* Netfilter gets whole the not fragmented skb. */
1266 err = NF_HOOK(PF_INET, NF_IP_LOCAL_OUT, skb, NULL,
1267 skb->dst->dev, dst_output);
1270 err = inet->recverr ? net_xmit_errno(err) : 0;
1276 inet->cork.flags &= ~IPCORK_OPT;
1277 kfree(inet->cork.opt);
1278 inet->cork.opt = NULL;
1279 if (inet->cork.rt) {
1280 ip_rt_put(inet->cork.rt);
1281 inet->cork.rt = NULL;
1286 IP_INC_STATS(IPSTATS_MIB_OUTDISCARDS);
1291 * Throw away all pending data on the socket.
1293 void ip_flush_pending_frames(struct sock *sk)
1295 struct inet_sock *inet = inet_sk(sk);
1296 struct sk_buff *skb;
1298 while ((skb = __skb_dequeue_tail(&sk->sk_write_queue)) != NULL)
1301 inet->cork.flags &= ~IPCORK_OPT;
1302 kfree(inet->cork.opt);
1303 inet->cork.opt = NULL;
1304 if (inet->cork.rt) {
1305 ip_rt_put(inet->cork.rt);
1306 inet->cork.rt = NULL;
1312 * Fetch data from kernel space and fill in checksum if needed.
1314 static int ip_reply_glue_bits(void *dptr, char *to, int offset,
1315 int len, int odd, struct sk_buff *skb)
1319 csum = csum_partial_copy_nocheck(dptr+offset, to, len, 0);
1320 skb->csum = csum_block_add(skb->csum, csum, odd);
1325 * Generic function to send a packet as reply to another packet.
1326 * Used to send TCP resets so far. ICMP should use this function too.
1328 * Should run single threaded per socket because it uses the sock
1329 * structure to pass arguments.
1331 * LATER: switch from ip_build_xmit to ip_append_*
1333 void ip_send_reply(struct sock *sk, struct sk_buff *skb, struct ip_reply_arg *arg,
1336 struct inet_sock *inet = inet_sk(sk);
1338 struct ip_options opt;
1341 struct ipcm_cookie ipc;
1343 struct rtable *rt = (struct rtable*)skb->dst;
1345 if (ip_options_echo(&replyopts.opt, skb))
1348 daddr = ipc.addr = rt->rt_src;
1351 if (replyopts.opt.optlen) {
1352 ipc.opt = &replyopts.opt;
1355 daddr = replyopts.opt.faddr;
1359 struct flowi fl = { .oif = arg->bound_dev_if,
1362 .saddr = rt->rt_spec_dst,
1363 .tos = RT_TOS(ip_hdr(skb)->tos) } },
1364 /* Not quite clean, but right. */
1366 { .sport = tcp_hdr(skb)->dest,
1367 .dport = tcp_hdr(skb)->source } },
1368 .proto = sk->sk_protocol };
1369 security_skb_classify_flow(skb, &fl);
1370 if (ip_route_output_key(&rt, &fl))
1374 /* And let IP do all the hard work.
1376 This chunk is not reenterable, hence spinlock.
1377 Note that it uses the fact, that this function is called
1378 with locally disabled BH and that sk cannot be already spinlocked.
1381 inet->tos = ip_hdr(skb)->tos;
1382 sk->sk_priority = skb->priority;
1383 sk->sk_protocol = ip_hdr(skb)->protocol;
1384 sk->sk_bound_dev_if = arg->bound_dev_if;
1385 ip_append_data(sk, ip_reply_glue_bits, arg->iov->iov_base, len, 0,
1386 &ipc, rt, MSG_DONTWAIT);
1387 if ((skb = skb_peek(&sk->sk_write_queue)) != NULL) {
1388 if (arg->csumoffset >= 0)
1389 *((__sum16 *)skb_transport_header(skb) +
1390 arg->csumoffset) = csum_fold(csum_add(skb->csum,
1392 skb->ip_summed = CHECKSUM_NONE;
1393 ip_push_pending_frames(sk);
1401 void __init ip_init(void)
1406 #if defined(CONFIG_IP_MULTICAST) && defined(CONFIG_PROC_FS)
1407 igmp_mc_proc_init();
1411 EXPORT_SYMBOL(ip_generic_getfrag);
1412 EXPORT_SYMBOL(ip_queue_xmit);
1413 EXPORT_SYMBOL(ip_send_check);