OSDN Git Service

Merge 4.4.129 into android-4.4
[sagit-ice-cold/kernel_xiaomi_msm8998.git] / net / ipv4 / ip_output.c
1 /*
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.
5  *
6  *              The Internet Protocol (IP) output module.
7  *
8  * Authors:     Ross Biro
9  *              Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
10  *              Donald Becker, <becker@super.org>
11  *              Alan Cox, <Alan.Cox@linux.org>
12  *              Richard Underwood
13  *              Stefan Becker, <stefanb@yello.ping.de>
14  *              Jorge Cwik, <jorge@laser.satlink.net>
15  *              Arnt Gulbrandsen, <agulbra@nvg.unit.no>
16  *              Hirokazu Takahashi, <taka@valinux.co.jp>
17  *
18  *      See ip_input.c for original log
19  *
20  *      Fixes:
21  *              Alan Cox        :       Missing nonblock feature in ip_build_xmit.
22  *              Mike Kilburn    :       htons() missing in ip_build_xmit.
23  *              Bradford Johnson:       Fix faulty handling of some frames when
24  *                                      no route is found.
25  *              Alexander Demenshin:    Missing sk/skb free in ip_queue_xmit
26  *                                      (in case if packet not accepted by
27  *                                      output firewall rules)
28  *              Mike McLagan    :       Routing by source
29  *              Alexey Kuznetsov:       use new route cache
30  *              Andi Kleen:             Fix broken PMTU recovery and remove
31  *                                      some redundant tests.
32  *      Vitaly E. Lavrov        :       Transparent proxy revived after year coma.
33  *              Andi Kleen      :       Replace ip_reply with ip_send_reply.
34  *              Andi Kleen      :       Split fast and slow ip_build_xmit path
35  *                                      for decreased register pressure on x86
36  *                                      and more readibility.
37  *              Marc Boucher    :       When call_out_firewall returns FW_QUEUE,
38  *                                      silently drop skb instead of failing with -EPERM.
39  *              Detlev Wengorz  :       Copy protocol for fragments.
40  *              Hirokazu Takahashi:     HW checksumming for outgoing UDP
41  *                                      datagrams.
42  *              Hirokazu Takahashi:     sendfile() on UDP works now.
43  */
44
45 #include <asm/uaccess.h>
46 #include <linux/module.h>
47 #include <linux/types.h>
48 #include <linux/kernel.h>
49 #include <linux/mm.h>
50 #include <linux/string.h>
51 #include <linux/errno.h>
52 #include <linux/highmem.h>
53 #include <linux/slab.h>
54
55 #include <linux/socket.h>
56 #include <linux/sockios.h>
57 #include <linux/in.h>
58 #include <linux/inet.h>
59 #include <linux/netdevice.h>
60 #include <linux/etherdevice.h>
61 #include <linux/proc_fs.h>
62 #include <linux/stat.h>
63 #include <linux/init.h>
64
65 #include <net/snmp.h>
66 #include <net/ip.h>
67 #include <net/protocol.h>
68 #include <net/route.h>
69 #include <net/xfrm.h>
70 #include <linux/skbuff.h>
71 #include <net/sock.h>
72 #include <net/arp.h>
73 #include <net/icmp.h>
74 #include <net/checksum.h>
75 #include <net/inetpeer.h>
76 #include <linux/igmp.h>
77 #include <linux/netfilter_ipv4.h>
78 #include <linux/netfilter_bridge.h>
79 #include <linux/mroute.h>
80 #include <linux/netlink.h>
81 #include <linux/tcp.h>
82
83 int sysctl_ip_default_ttl __read_mostly = IPDEFTTL;
84 EXPORT_SYMBOL(sysctl_ip_default_ttl);
85
86 static int
87 ip_fragment(struct net *net, struct sock *sk, struct sk_buff *skb,
88             unsigned int mtu,
89             int (*output)(struct net *, struct sock *, struct sk_buff *));
90
91 /* Generate a checksum for an outgoing IP datagram. */
92 void ip_send_check(struct iphdr *iph)
93 {
94         iph->check = 0;
95         iph->check = ip_fast_csum((unsigned char *)iph, iph->ihl);
96 }
97 EXPORT_SYMBOL(ip_send_check);
98
99 int __ip_local_out(struct net *net, struct sock *sk, struct sk_buff *skb)
100 {
101         struct iphdr *iph = ip_hdr(skb);
102
103         iph->tot_len = htons(skb->len);
104         ip_send_check(iph);
105
106         skb->protocol = htons(ETH_P_IP);
107
108         return nf_hook(NFPROTO_IPV4, NF_INET_LOCAL_OUT,
109                        net, sk, skb, NULL, skb_dst(skb)->dev,
110                        dst_output);
111 }
112
113 int ip_local_out(struct net *net, struct sock *sk, struct sk_buff *skb)
114 {
115         int err;
116
117         err = __ip_local_out(net, sk, skb);
118         if (likely(err == 1))
119                 err = dst_output(net, sk, skb);
120
121         return err;
122 }
123 EXPORT_SYMBOL_GPL(ip_local_out);
124
125 static inline int ip_select_ttl(struct inet_sock *inet, struct dst_entry *dst)
126 {
127         int ttl = inet->uc_ttl;
128
129         if (ttl < 0)
130                 ttl = ip4_dst_hoplimit(dst);
131         return ttl;
132 }
133
134 /*
135  *              Add an ip header to a skbuff and send it out.
136  *
137  */
138 int ip_build_and_send_pkt(struct sk_buff *skb, const struct sock *sk,
139                           __be32 saddr, __be32 daddr, struct ip_options_rcu *opt)
140 {
141         struct inet_sock *inet = inet_sk(sk);
142         struct rtable *rt = skb_rtable(skb);
143         struct net *net = sock_net(sk);
144         struct iphdr *iph;
145
146         /* Build the IP header. */
147         skb_push(skb, sizeof(struct iphdr) + (opt ? opt->opt.optlen : 0));
148         skb_reset_network_header(skb);
149         iph = ip_hdr(skb);
150         iph->version  = 4;
151         iph->ihl      = 5;
152         iph->tos      = inet->tos;
153         iph->ttl      = ip_select_ttl(inet, &rt->dst);
154         iph->daddr    = (opt && opt->opt.srr ? opt->opt.faddr : daddr);
155         iph->saddr    = saddr;
156         iph->protocol = sk->sk_protocol;
157         if (ip_dont_fragment(sk, &rt->dst)) {
158                 iph->frag_off = htons(IP_DF);
159                 iph->id = 0;
160         } else {
161                 iph->frag_off = 0;
162                 __ip_select_ident(net, iph, 1);
163         }
164
165         if (opt && opt->opt.optlen) {
166                 iph->ihl += opt->opt.optlen>>2;
167                 ip_options_build(skb, &opt->opt, daddr, rt, 0);
168         }
169
170         skb->priority = sk->sk_priority;
171         skb->mark = sk->sk_mark;
172
173         /* Send it out. */
174         return ip_local_out(net, skb->sk, skb);
175 }
176 EXPORT_SYMBOL_GPL(ip_build_and_send_pkt);
177
178 static int ip_finish_output2(struct net *net, struct sock *sk, struct sk_buff *skb)
179 {
180         struct dst_entry *dst = skb_dst(skb);
181         struct rtable *rt = (struct rtable *)dst;
182         struct net_device *dev = dst->dev;
183         unsigned int hh_len = LL_RESERVED_SPACE(dev);
184         struct neighbour *neigh;
185         u32 nexthop;
186
187         if (rt->rt_type == RTN_MULTICAST) {
188                 IP_UPD_PO_STATS(net, IPSTATS_MIB_OUTMCAST, skb->len);
189         } else if (rt->rt_type == RTN_BROADCAST)
190                 IP_UPD_PO_STATS(net, IPSTATS_MIB_OUTBCAST, skb->len);
191
192         /* Be paranoid, rather than too clever. */
193         if (unlikely(skb_headroom(skb) < hh_len && dev->header_ops)) {
194                 struct sk_buff *skb2;
195
196                 skb2 = skb_realloc_headroom(skb, LL_RESERVED_SPACE(dev));
197                 if (!skb2) {
198                         kfree_skb(skb);
199                         return -ENOMEM;
200                 }
201                 if (skb->sk)
202                         skb_set_owner_w(skb2, skb->sk);
203                 consume_skb(skb);
204                 skb = skb2;
205         }
206
207         rcu_read_lock_bh();
208         nexthop = (__force u32) rt_nexthop(rt, ip_hdr(skb)->daddr);
209         neigh = __ipv4_neigh_lookup_noref(dev, nexthop);
210         if (unlikely(!neigh))
211                 neigh = __neigh_create(&arp_tbl, &nexthop, dev, false);
212         if (!IS_ERR(neigh)) {
213                 int res = dst_neigh_output(dst, neigh, skb);
214
215                 rcu_read_unlock_bh();
216                 return res;
217         }
218         rcu_read_unlock_bh();
219
220         net_dbg_ratelimited("%s: No header cache and no neighbour!\n",
221                             __func__);
222         kfree_skb(skb);
223         return -EINVAL;
224 }
225
226 static int ip_finish_output_gso(struct net *net, struct sock *sk,
227                                 struct sk_buff *skb, unsigned int mtu)
228 {
229         netdev_features_t features;
230         struct sk_buff *segs;
231         int ret = 0;
232
233         /* common case: locally created skb or seglen is <= mtu */
234         if (((IPCB(skb)->flags & IPSKB_FORWARDED) == 0) ||
235               skb_gso_network_seglen(skb) <= mtu)
236                 return ip_finish_output2(net, sk, skb);
237
238         /* Slowpath -  GSO segment length is exceeding the dst MTU.
239          *
240          * This can happen in two cases:
241          * 1) TCP GRO packet, DF bit not set
242          * 2) skb arrived via virtio-net, we thus get TSO/GSO skbs directly
243          * from host network stack.
244          */
245         features = netif_skb_features(skb);
246         BUILD_BUG_ON(sizeof(*IPCB(skb)) > SKB_SGO_CB_OFFSET);
247         segs = skb_gso_segment(skb, features & ~NETIF_F_GSO_MASK);
248         if (IS_ERR_OR_NULL(segs)) {
249                 kfree_skb(skb);
250                 return -ENOMEM;
251         }
252
253         consume_skb(skb);
254
255         do {
256                 struct sk_buff *nskb = segs->next;
257                 int err;
258
259                 segs->next = NULL;
260                 err = ip_fragment(net, sk, segs, mtu, ip_finish_output2);
261
262                 if (err && ret == 0)
263                         ret = err;
264                 segs = nskb;
265         } while (segs);
266
267         return ret;
268 }
269
270 static int ip_finish_output(struct net *net, struct sock *sk, struct sk_buff *skb)
271 {
272         unsigned int mtu;
273
274 #if defined(CONFIG_NETFILTER) && defined(CONFIG_XFRM)
275         /* Policy lookup after SNAT yielded a new policy */
276         if (skb_dst(skb)->xfrm) {
277                 IPCB(skb)->flags |= IPSKB_REROUTED;
278                 return dst_output(net, sk, skb);
279         }
280 #endif
281         mtu = ip_skb_dst_mtu(skb);
282         if (skb_is_gso(skb))
283                 return ip_finish_output_gso(net, sk, skb, mtu);
284
285         if (skb->len > mtu || (IPCB(skb)->flags & IPSKB_FRAG_PMTU))
286                 return ip_fragment(net, sk, skb, mtu, ip_finish_output2);
287
288         return ip_finish_output2(net, sk, skb);
289 }
290
291 int ip_mc_output(struct net *net, struct sock *sk, struct sk_buff *skb)
292 {
293         struct rtable *rt = skb_rtable(skb);
294         struct net_device *dev = rt->dst.dev;
295
296         /*
297          *      If the indicated interface is up and running, send the packet.
298          */
299         IP_UPD_PO_STATS(net, IPSTATS_MIB_OUT, skb->len);
300
301         skb->dev = dev;
302         skb->protocol = htons(ETH_P_IP);
303
304         /*
305          *      Multicasts are looped back for other local users
306          */
307
308         if (rt->rt_flags&RTCF_MULTICAST) {
309                 if (sk_mc_loop(sk)
310 #ifdef CONFIG_IP_MROUTE
311                 /* Small optimization: do not loopback not local frames,
312                    which returned after forwarding; they will be  dropped
313                    by ip_mr_input in any case.
314                    Note, that local frames are looped back to be delivered
315                    to local recipients.
316
317                    This check is duplicated in ip_mr_input at the moment.
318                  */
319                     &&
320                     ((rt->rt_flags & RTCF_LOCAL) ||
321                      !(IPCB(skb)->flags & IPSKB_FORWARDED))
322 #endif
323                    ) {
324                         struct sk_buff *newskb = skb_clone(skb, GFP_ATOMIC);
325                         if (newskb)
326                                 NF_HOOK(NFPROTO_IPV4, NF_INET_POST_ROUTING,
327                                         net, sk, newskb, NULL, newskb->dev,
328                                         dev_loopback_xmit);
329                 }
330
331                 /* Multicasts with ttl 0 must not go beyond the host */
332
333                 if (ip_hdr(skb)->ttl == 0) {
334                         kfree_skb(skb);
335                         return 0;
336                 }
337         }
338
339         if (rt->rt_flags&RTCF_BROADCAST) {
340                 struct sk_buff *newskb = skb_clone(skb, GFP_ATOMIC);
341                 if (newskb)
342                         NF_HOOK(NFPROTO_IPV4, NF_INET_POST_ROUTING,
343                                 net, sk, newskb, NULL, newskb->dev,
344                                 dev_loopback_xmit);
345         }
346
347         return NF_HOOK_COND(NFPROTO_IPV4, NF_INET_POST_ROUTING,
348                             net, sk, skb, NULL, skb->dev,
349                             ip_finish_output,
350                             !(IPCB(skb)->flags & IPSKB_REROUTED));
351 }
352
353 int ip_output(struct net *net, struct sock *sk, struct sk_buff *skb)
354 {
355         struct net_device *dev = skb_dst(skb)->dev;
356
357         IP_UPD_PO_STATS(net, IPSTATS_MIB_OUT, skb->len);
358
359         skb->dev = dev;
360         skb->protocol = htons(ETH_P_IP);
361
362         return NF_HOOK_COND(NFPROTO_IPV4, NF_INET_POST_ROUTING,
363                             net, sk, skb, NULL, dev,
364                             ip_finish_output,
365                             !(IPCB(skb)->flags & IPSKB_REROUTED));
366 }
367
368 /*
369  * copy saddr and daddr, possibly using 64bit load/stores
370  * Equivalent to :
371  *   iph->saddr = fl4->saddr;
372  *   iph->daddr = fl4->daddr;
373  */
374 static void ip_copy_addrs(struct iphdr *iph, const struct flowi4 *fl4)
375 {
376         BUILD_BUG_ON(offsetof(typeof(*fl4), daddr) !=
377                      offsetof(typeof(*fl4), saddr) + sizeof(fl4->saddr));
378         memcpy(&iph->saddr, &fl4->saddr,
379                sizeof(fl4->saddr) + sizeof(fl4->daddr));
380 }
381
382 /* Note: skb->sk can be different from sk, in case of tunnels */
383 int ip_queue_xmit(struct sock *sk, struct sk_buff *skb, struct flowi *fl)
384 {
385         struct inet_sock *inet = inet_sk(sk);
386         struct net *net = sock_net(sk);
387         struct ip_options_rcu *inet_opt;
388         struct flowi4 *fl4;
389         struct rtable *rt;
390         struct iphdr *iph;
391         int res;
392
393         /* Skip all of this if the packet is already routed,
394          * f.e. by something like SCTP.
395          */
396         rcu_read_lock();
397         inet_opt = rcu_dereference(inet->inet_opt);
398         fl4 = &fl->u.ip4;
399         rt = skb_rtable(skb);
400         if (rt)
401                 goto packet_routed;
402
403         /* Make sure we can route this packet. */
404         rt = (struct rtable *)__sk_dst_check(sk, 0);
405         if (!rt) {
406                 __be32 daddr;
407
408                 /* Use correct destination address if we have options. */
409                 daddr = inet->inet_daddr;
410                 if (inet_opt && inet_opt->opt.srr)
411                         daddr = inet_opt->opt.faddr;
412
413                 /* If this fails, retransmit mechanism of transport layer will
414                  * keep trying until route appears or the connection times
415                  * itself out.
416                  */
417                 rt = ip_route_output_ports(net, fl4, sk,
418                                            daddr, inet->inet_saddr,
419                                            inet->inet_dport,
420                                            inet->inet_sport,
421                                            sk->sk_protocol,
422                                            RT_CONN_FLAGS(sk),
423                                            sk->sk_bound_dev_if);
424                 if (IS_ERR(rt))
425                         goto no_route;
426                 sk_setup_caps(sk, &rt->dst);
427         }
428         skb_dst_set_noref(skb, &rt->dst);
429
430 packet_routed:
431         if (inet_opt && inet_opt->opt.is_strictroute && rt->rt_uses_gateway)
432                 goto no_route;
433
434         /* OK, we know where to send it, allocate and build IP header. */
435         skb_push(skb, sizeof(struct iphdr) + (inet_opt ? inet_opt->opt.optlen : 0));
436         skb_reset_network_header(skb);
437         iph = ip_hdr(skb);
438         *((__be16 *)iph) = htons((4 << 12) | (5 << 8) | (inet->tos & 0xff));
439         if (ip_dont_fragment(sk, &rt->dst) && !skb->ignore_df)
440                 iph->frag_off = htons(IP_DF);
441         else
442                 iph->frag_off = 0;
443         iph->ttl      = ip_select_ttl(inet, &rt->dst);
444         iph->protocol = sk->sk_protocol;
445         ip_copy_addrs(iph, fl4);
446
447         /* Transport layer set skb->h.foo itself. */
448
449         if (inet_opt && inet_opt->opt.optlen) {
450                 iph->ihl += inet_opt->opt.optlen >> 2;
451                 ip_options_build(skb, &inet_opt->opt, inet->inet_daddr, rt, 0);
452         }
453
454         ip_select_ident_segs(net, skb, sk,
455                              skb_shinfo(skb)->gso_segs ?: 1);
456
457         /* TODO : should we use skb->sk here instead of sk ? */
458         skb->priority = sk->sk_priority;
459         skb->mark = sk->sk_mark;
460
461         res = ip_local_out(net, sk, skb);
462         rcu_read_unlock();
463         return res;
464
465 no_route:
466         rcu_read_unlock();
467         IP_INC_STATS(net, IPSTATS_MIB_OUTNOROUTES);
468         kfree_skb(skb);
469         return -EHOSTUNREACH;
470 }
471 EXPORT_SYMBOL(ip_queue_xmit);
472
473 static void ip_copy_metadata(struct sk_buff *to, struct sk_buff *from)
474 {
475         to->pkt_type = from->pkt_type;
476         to->priority = from->priority;
477         to->protocol = from->protocol;
478         skb_dst_drop(to);
479         skb_dst_copy(to, from);
480         to->dev = from->dev;
481         to->mark = from->mark;
482
483         /* Copy the flags to each fragment. */
484         IPCB(to)->flags = IPCB(from)->flags;
485
486 #ifdef CONFIG_NET_SCHED
487         to->tc_index = from->tc_index;
488 #endif
489         nf_copy(to, from);
490 #if defined(CONFIG_IP_VS) || defined(CONFIG_IP_VS_MODULE)
491         to->ipvs_property = from->ipvs_property;
492 #endif
493         skb_copy_secmark(to, from);
494 }
495
496 static int ip_fragment(struct net *net, struct sock *sk, struct sk_buff *skb,
497                        unsigned int mtu,
498                        int (*output)(struct net *, struct sock *, struct sk_buff *))
499 {
500         struct iphdr *iph = ip_hdr(skb);
501
502         if ((iph->frag_off & htons(IP_DF)) == 0)
503                 return ip_do_fragment(net, sk, skb, output);
504
505         if (unlikely(!skb->ignore_df ||
506                      (IPCB(skb)->frag_max_size &&
507                       IPCB(skb)->frag_max_size > mtu))) {
508                 IP_INC_STATS(net, IPSTATS_MIB_FRAGFAILS);
509                 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED,
510                           htonl(mtu));
511                 kfree_skb(skb);
512                 return -EMSGSIZE;
513         }
514
515         return ip_do_fragment(net, sk, skb, output);
516 }
517
518 /*
519  *      This IP datagram is too large to be sent in one piece.  Break it up into
520  *      smaller pieces (each of size equal to IP header plus
521  *      a block of the data of the original IP data part) that will yet fit in a
522  *      single device frame, and queue such a frame for sending.
523  */
524
525 int ip_do_fragment(struct net *net, struct sock *sk, struct sk_buff *skb,
526                    int (*output)(struct net *, struct sock *, struct sk_buff *))
527 {
528         struct iphdr *iph;
529         int ptr;
530         struct net_device *dev;
531         struct sk_buff *skb2;
532         unsigned int mtu, hlen, left, len, ll_rs;
533         int offset;
534         __be16 not_last_frag;
535         struct rtable *rt = skb_rtable(skb);
536         int err = 0;
537
538         dev = rt->dst.dev;
539
540         /* for offloaded checksums cleanup checksum before fragmentation */
541         if (skb->ip_summed == CHECKSUM_PARTIAL &&
542             (err = skb_checksum_help(skb)))
543                 goto fail;
544
545         /*
546          *      Point into the IP datagram header.
547          */
548
549         iph = ip_hdr(skb);
550
551         mtu = ip_skb_dst_mtu(skb);
552         if (IPCB(skb)->frag_max_size && IPCB(skb)->frag_max_size < mtu)
553                 mtu = IPCB(skb)->frag_max_size;
554
555         /*
556          *      Setup starting values.
557          */
558
559         hlen = iph->ihl * 4;
560         mtu = mtu - hlen;       /* Size of data space */
561         IPCB(skb)->flags |= IPSKB_FRAG_COMPLETE;
562
563         /* When frag_list is given, use it. First, check its validity:
564          * some transformers could create wrong frag_list or break existing
565          * one, it is not prohibited. In this case fall back to copying.
566          *
567          * LATER: this step can be merged to real generation of fragments,
568          * we can switch to copy when see the first bad fragment.
569          */
570         if (skb_has_frag_list(skb)) {
571                 struct sk_buff *frag, *frag2;
572                 int first_len = skb_pagelen(skb);
573
574                 if (first_len - hlen > mtu ||
575                     ((first_len - hlen) & 7) ||
576                     ip_is_fragment(iph) ||
577                     skb_cloned(skb))
578                         goto slow_path;
579
580                 skb_walk_frags(skb, frag) {
581                         /* Correct geometry. */
582                         if (frag->len > mtu ||
583                             ((frag->len & 7) && frag->next) ||
584                             skb_headroom(frag) < hlen)
585                                 goto slow_path_clean;
586
587                         /* Partially cloned skb? */
588                         if (skb_shared(frag))
589                                 goto slow_path_clean;
590
591                         BUG_ON(frag->sk);
592                         if (skb->sk) {
593                                 frag->sk = skb->sk;
594                                 frag->destructor = sock_wfree;
595                         }
596                         skb->truesize -= frag->truesize;
597                 }
598
599                 /* Everything is OK. Generate! */
600
601                 err = 0;
602                 offset = 0;
603                 frag = skb_shinfo(skb)->frag_list;
604                 skb_frag_list_init(skb);
605                 skb->data_len = first_len - skb_headlen(skb);
606                 skb->len = first_len;
607                 iph->tot_len = htons(first_len);
608                 iph->frag_off = htons(IP_MF);
609                 ip_send_check(iph);
610
611                 for (;;) {
612                         /* Prepare header of the next frame,
613                          * before previous one went down. */
614                         if (frag) {
615                                 frag->ip_summed = CHECKSUM_NONE;
616                                 skb_reset_transport_header(frag);
617                                 __skb_push(frag, hlen);
618                                 skb_reset_network_header(frag);
619                                 memcpy(skb_network_header(frag), iph, hlen);
620                                 iph = ip_hdr(frag);
621                                 iph->tot_len = htons(frag->len);
622                                 ip_copy_metadata(frag, skb);
623                                 if (offset == 0)
624                                         ip_options_fragment(frag);
625                                 offset += skb->len - hlen;
626                                 iph->frag_off = htons(offset>>3);
627                                 if (frag->next)
628                                         iph->frag_off |= htons(IP_MF);
629                                 /* Ready, complete checksum */
630                                 ip_send_check(iph);
631                         }
632
633                         err = output(net, sk, skb);
634
635                         if (!err)
636                                 IP_INC_STATS(net, IPSTATS_MIB_FRAGCREATES);
637                         if (err || !frag)
638                                 break;
639
640                         skb = frag;
641                         frag = skb->next;
642                         skb->next = NULL;
643                 }
644
645                 if (err == 0) {
646                         IP_INC_STATS(net, IPSTATS_MIB_FRAGOKS);
647                         return 0;
648                 }
649
650                 while (frag) {
651                         skb = frag->next;
652                         kfree_skb(frag);
653                         frag = skb;
654                 }
655                 IP_INC_STATS(net, IPSTATS_MIB_FRAGFAILS);
656                 return err;
657
658 slow_path_clean:
659                 skb_walk_frags(skb, frag2) {
660                         if (frag2 == frag)
661                                 break;
662                         frag2->sk = NULL;
663                         frag2->destructor = NULL;
664                         skb->truesize += frag2->truesize;
665                 }
666         }
667
668 slow_path:
669         iph = ip_hdr(skb);
670
671         left = skb->len - hlen;         /* Space per frame */
672         ptr = hlen;             /* Where to start from */
673
674         ll_rs = LL_RESERVED_SPACE(rt->dst.dev);
675
676         /*
677          *      Fragment the datagram.
678          */
679
680         offset = (ntohs(iph->frag_off) & IP_OFFSET) << 3;
681         not_last_frag = iph->frag_off & htons(IP_MF);
682
683         /*
684          *      Keep copying data until we run out.
685          */
686
687         while (left > 0) {
688                 len = left;
689                 /* IF: it doesn't fit, use 'mtu' - the data space left */
690                 if (len > mtu)
691                         len = mtu;
692                 /* IF: we are not sending up to and including the packet end
693                    then align the next start on an eight byte boundary */
694                 if (len < left) {
695                         len &= ~7;
696                 }
697
698                 /* Allocate buffer */
699                 skb2 = alloc_skb(len + hlen + ll_rs, GFP_ATOMIC);
700                 if (!skb2) {
701                         err = -ENOMEM;
702                         goto fail;
703                 }
704
705                 /*
706                  *      Set up data on packet
707                  */
708
709                 ip_copy_metadata(skb2, skb);
710                 skb_reserve(skb2, ll_rs);
711                 skb_put(skb2, len + hlen);
712                 skb_reset_network_header(skb2);
713                 skb2->transport_header = skb2->network_header + hlen;
714
715                 /*
716                  *      Charge the memory for the fragment to any owner
717                  *      it might possess
718                  */
719
720                 if (skb->sk)
721                         skb_set_owner_w(skb2, skb->sk);
722
723                 /*
724                  *      Copy the packet header into the new buffer.
725                  */
726
727                 skb_copy_from_linear_data(skb, skb_network_header(skb2), hlen);
728
729                 /*
730                  *      Copy a block of the IP datagram.
731                  */
732                 if (skb_copy_bits(skb, ptr, skb_transport_header(skb2), len))
733                         BUG();
734                 left -= len;
735
736                 /*
737                  *      Fill in the new header fields.
738                  */
739                 iph = ip_hdr(skb2);
740                 iph->frag_off = htons((offset >> 3));
741
742                 if (IPCB(skb)->flags & IPSKB_FRAG_PMTU)
743                         iph->frag_off |= htons(IP_DF);
744
745                 /* ANK: dirty, but effective trick. Upgrade options only if
746                  * the segment to be fragmented was THE FIRST (otherwise,
747                  * options are already fixed) and make it ONCE
748                  * on the initial skb, so that all the following fragments
749                  * will inherit fixed options.
750                  */
751                 if (offset == 0)
752                         ip_options_fragment(skb);
753
754                 /*
755                  *      Added AC : If we are fragmenting a fragment that's not the
756                  *                 last fragment then keep MF on each bit
757                  */
758                 if (left > 0 || not_last_frag)
759                         iph->frag_off |= htons(IP_MF);
760                 ptr += len;
761                 offset += len;
762
763                 /*
764                  *      Put this fragment into the sending queue.
765                  */
766                 iph->tot_len = htons(len + hlen);
767
768                 ip_send_check(iph);
769
770                 err = output(net, sk, skb2);
771                 if (err)
772                         goto fail;
773
774                 IP_INC_STATS(net, IPSTATS_MIB_FRAGCREATES);
775         }
776         consume_skb(skb);
777         IP_INC_STATS(net, IPSTATS_MIB_FRAGOKS);
778         return err;
779
780 fail:
781         kfree_skb(skb);
782         IP_INC_STATS(net, IPSTATS_MIB_FRAGFAILS);
783         return err;
784 }
785 EXPORT_SYMBOL(ip_do_fragment);
786
787 int
788 ip_generic_getfrag(void *from, char *to, int offset, int len, int odd, struct sk_buff *skb)
789 {
790         struct msghdr *msg = from;
791
792         if (skb->ip_summed == CHECKSUM_PARTIAL) {
793                 if (copy_from_iter(to, len, &msg->msg_iter) != len)
794                         return -EFAULT;
795         } else {
796                 __wsum csum = 0;
797                 if (csum_and_copy_from_iter(to, len, &csum, &msg->msg_iter) != len)
798                         return -EFAULT;
799                 skb->csum = csum_block_add(skb->csum, csum, odd);
800         }
801         return 0;
802 }
803 EXPORT_SYMBOL(ip_generic_getfrag);
804
805 static inline __wsum
806 csum_page(struct page *page, int offset, int copy)
807 {
808         char *kaddr;
809         __wsum csum;
810         kaddr = kmap(page);
811         csum = csum_partial(kaddr + offset, copy, 0);
812         kunmap(page);
813         return csum;
814 }
815
816 static inline int ip_ufo_append_data(struct sock *sk,
817                         struct sk_buff_head *queue,
818                         int getfrag(void *from, char *to, int offset, int len,
819                                int odd, struct sk_buff *skb),
820                         void *from, int length, int hh_len, int fragheaderlen,
821                         int transhdrlen, int maxfraglen, unsigned int flags)
822 {
823         struct sk_buff *skb;
824         int err;
825
826         /* There is support for UDP fragmentation offload by network
827          * device, so create one single skb packet containing complete
828          * udp datagram
829          */
830         skb = skb_peek_tail(queue);
831         if (!skb) {
832                 skb = sock_alloc_send_skb(sk,
833                         hh_len + fragheaderlen + transhdrlen + 20,
834                         (flags & MSG_DONTWAIT), &err);
835
836                 if (!skb)
837                         return err;
838
839                 /* reserve space for Hardware header */
840                 skb_reserve(skb, hh_len);
841
842                 /* create space for UDP/IP header */
843                 skb_put(skb, fragheaderlen + transhdrlen);
844
845                 /* initialize network header pointer */
846                 skb_reset_network_header(skb);
847
848                 /* initialize protocol header pointer */
849                 skb->transport_header = skb->network_header + fragheaderlen;
850
851                 skb->csum = 0;
852
853                 __skb_queue_tail(queue, skb);
854         } else if (skb_is_gso(skb)) {
855                 goto append;
856         }
857
858         skb->ip_summed = CHECKSUM_PARTIAL;
859         /* specify the length of each IP datagram fragment */
860         skb_shinfo(skb)->gso_size = maxfraglen - fragheaderlen;
861         skb_shinfo(skb)->gso_type = SKB_GSO_UDP;
862
863 append:
864         return skb_append_datato_frags(sk, skb, getfrag, from,
865                                        (length - transhdrlen));
866 }
867
868 static int __ip_append_data(struct sock *sk,
869                             struct flowi4 *fl4,
870                             struct sk_buff_head *queue,
871                             struct inet_cork *cork,
872                             struct page_frag *pfrag,
873                             int getfrag(void *from, char *to, int offset,
874                                         int len, int odd, struct sk_buff *skb),
875                             void *from, int length, int transhdrlen,
876                             unsigned int flags)
877 {
878         struct inet_sock *inet = inet_sk(sk);
879         struct sk_buff *skb;
880
881         struct ip_options *opt = cork->opt;
882         int hh_len;
883         int exthdrlen;
884         int mtu;
885         int copy;
886         int err;
887         int offset = 0;
888         unsigned int maxfraglen, fragheaderlen, maxnonfragsize;
889         int csummode = CHECKSUM_NONE;
890         struct rtable *rt = (struct rtable *)cork->dst;
891         u32 tskey = 0;
892
893         skb = skb_peek_tail(queue);
894
895         exthdrlen = !skb ? rt->dst.header_len : 0;
896         mtu = cork->fragsize;
897         if (cork->tx_flags & SKBTX_ANY_SW_TSTAMP &&
898             sk->sk_tsflags & SOF_TIMESTAMPING_OPT_ID)
899                 tskey = sk->sk_tskey++;
900
901         hh_len = LL_RESERVED_SPACE(rt->dst.dev);
902
903         fragheaderlen = sizeof(struct iphdr) + (opt ? opt->optlen : 0);
904         maxfraglen = ((mtu - fragheaderlen) & ~7) + fragheaderlen;
905         maxnonfragsize = ip_sk_ignore_df(sk) ? 0xFFFF : mtu;
906
907         if (cork->length + length > maxnonfragsize - fragheaderlen) {
908                 ip_local_error(sk, EMSGSIZE, fl4->daddr, inet->inet_dport,
909                                mtu - (opt ? opt->optlen : 0));
910                 return -EMSGSIZE;
911         }
912
913         /*
914          * transhdrlen > 0 means that this is the first fragment and we wish
915          * it won't be fragmented in the future.
916          */
917         if (transhdrlen &&
918             length + fragheaderlen <= mtu &&
919             rt->dst.dev->features & NETIF_F_V4_CSUM &&
920             !(flags & MSG_MORE) &&
921             !exthdrlen)
922                 csummode = CHECKSUM_PARTIAL;
923
924         cork->length += length;
925         if ((skb && skb_is_gso(skb)) ||
926             (((length + (skb ? skb->len : fragheaderlen)) > mtu) &&
927             (skb_queue_len(queue) <= 1) &&
928             (sk->sk_protocol == IPPROTO_UDP) &&
929             (rt->dst.dev->features & NETIF_F_UFO) && !rt->dst.header_len &&
930             (sk->sk_type == SOCK_DGRAM) && !sk->sk_no_check_tx)) {
931                 err = ip_ufo_append_data(sk, queue, getfrag, from, length,
932                                          hh_len, fragheaderlen, transhdrlen,
933                                          maxfraglen, flags);
934                 if (err)
935                         goto error;
936                 return 0;
937         }
938
939         /* So, what's going on in the loop below?
940          *
941          * We use calculated fragment length to generate chained skb,
942          * each of segments is IP fragment ready for sending to network after
943          * adding appropriate IP header.
944          */
945
946         if (!skb)
947                 goto alloc_new_skb;
948
949         while (length > 0) {
950                 /* Check if the remaining data fits into current packet. */
951                 copy = mtu - skb->len;
952                 if (copy < length)
953                         copy = maxfraglen - skb->len;
954                 if (copy <= 0) {
955                         char *data;
956                         unsigned int datalen;
957                         unsigned int fraglen;
958                         unsigned int fraggap;
959                         unsigned int alloclen;
960                         struct sk_buff *skb_prev;
961 alloc_new_skb:
962                         skb_prev = skb;
963                         if (skb_prev)
964                                 fraggap = skb_prev->len - maxfraglen;
965                         else
966                                 fraggap = 0;
967
968                         /*
969                          * If remaining data exceeds the mtu,
970                          * we know we need more fragment(s).
971                          */
972                         datalen = length + fraggap;
973                         if (datalen > mtu - fragheaderlen)
974                                 datalen = maxfraglen - fragheaderlen;
975                         fraglen = datalen + fragheaderlen;
976
977                         if ((flags & MSG_MORE) &&
978                             !(rt->dst.dev->features&NETIF_F_SG))
979                                 alloclen = mtu;
980                         else
981                                 alloclen = fraglen;
982
983                         alloclen += exthdrlen;
984
985                         /* The last fragment gets additional space at tail.
986                          * Note, with MSG_MORE we overallocate on fragments,
987                          * because we have no idea what fragment will be
988                          * the last.
989                          */
990                         if (datalen == length + fraggap)
991                                 alloclen += rt->dst.trailer_len;
992
993                         if (transhdrlen) {
994                                 skb = sock_alloc_send_skb(sk,
995                                                 alloclen + hh_len + 15,
996                                                 (flags & MSG_DONTWAIT), &err);
997                         } else {
998                                 skb = NULL;
999                                 if (atomic_read(&sk->sk_wmem_alloc) <=
1000                                     2 * sk->sk_sndbuf)
1001                                         skb = sock_wmalloc(sk,
1002                                                            alloclen + hh_len + 15, 1,
1003                                                            sk->sk_allocation);
1004                                 if (unlikely(!skb))
1005                                         err = -ENOBUFS;
1006                         }
1007                         if (!skb)
1008                                 goto error;
1009
1010                         /*
1011                          *      Fill in the control structures
1012                          */
1013                         skb->ip_summed = csummode;
1014                         skb->csum = 0;
1015                         skb_reserve(skb, hh_len);
1016
1017                         /* only the initial fragment is time stamped */
1018                         skb_shinfo(skb)->tx_flags = cork->tx_flags;
1019                         cork->tx_flags = 0;
1020                         skb_shinfo(skb)->tskey = tskey;
1021                         tskey = 0;
1022
1023                         /*
1024                          *      Find where to start putting bytes.
1025                          */
1026                         data = skb_put(skb, fraglen + exthdrlen);
1027                         skb_set_network_header(skb, exthdrlen);
1028                         skb->transport_header = (skb->network_header +
1029                                                  fragheaderlen);
1030                         data += fragheaderlen + exthdrlen;
1031
1032                         if (fraggap) {
1033                                 skb->csum = skb_copy_and_csum_bits(
1034                                         skb_prev, maxfraglen,
1035                                         data + transhdrlen, fraggap, 0);
1036                                 skb_prev->csum = csum_sub(skb_prev->csum,
1037                                                           skb->csum);
1038                                 data += fraggap;
1039                                 pskb_trim_unique(skb_prev, maxfraglen);
1040                         }
1041
1042                         copy = datalen - transhdrlen - fraggap;
1043                         if (copy > 0 && getfrag(from, data + transhdrlen, offset, copy, fraggap, skb) < 0) {
1044                                 err = -EFAULT;
1045                                 kfree_skb(skb);
1046                                 goto error;
1047                         }
1048
1049                         offset += copy;
1050                         length -= datalen - fraggap;
1051                         transhdrlen = 0;
1052                         exthdrlen = 0;
1053                         csummode = CHECKSUM_NONE;
1054
1055                         /*
1056                          * Put the packet on the pending queue.
1057                          */
1058                         __skb_queue_tail(queue, skb);
1059                         continue;
1060                 }
1061
1062                 if (copy > length)
1063                         copy = length;
1064
1065                 if (!(rt->dst.dev->features&NETIF_F_SG)) {
1066                         unsigned int off;
1067
1068                         off = skb->len;
1069                         if (getfrag(from, skb_put(skb, copy),
1070                                         offset, copy, off, skb) < 0) {
1071                                 __skb_trim(skb, off);
1072                                 err = -EFAULT;
1073                                 goto error;
1074                         }
1075                 } else {
1076                         int i = skb_shinfo(skb)->nr_frags;
1077
1078                         err = -ENOMEM;
1079                         if (!sk_page_frag_refill(sk, pfrag))
1080                                 goto error;
1081
1082                         if (!skb_can_coalesce(skb, i, pfrag->page,
1083                                               pfrag->offset)) {
1084                                 err = -EMSGSIZE;
1085                                 if (i == MAX_SKB_FRAGS)
1086                                         goto error;
1087
1088                                 __skb_fill_page_desc(skb, i, pfrag->page,
1089                                                      pfrag->offset, 0);
1090                                 skb_shinfo(skb)->nr_frags = ++i;
1091                                 get_page(pfrag->page);
1092                         }
1093                         copy = min_t(int, copy, pfrag->size - pfrag->offset);
1094                         if (getfrag(from,
1095                                     page_address(pfrag->page) + pfrag->offset,
1096                                     offset, copy, skb->len, skb) < 0)
1097                                 goto error_efault;
1098
1099                         pfrag->offset += copy;
1100                         skb_frag_size_add(&skb_shinfo(skb)->frags[i - 1], copy);
1101                         skb->len += copy;
1102                         skb->data_len += copy;
1103                         skb->truesize += copy;
1104                         atomic_add(copy, &sk->sk_wmem_alloc);
1105                 }
1106                 offset += copy;
1107                 length -= copy;
1108         }
1109
1110         return 0;
1111
1112 error_efault:
1113         err = -EFAULT;
1114 error:
1115         cork->length -= length;
1116         IP_INC_STATS(sock_net(sk), IPSTATS_MIB_OUTDISCARDS);
1117         return err;
1118 }
1119
1120 static int ip_setup_cork(struct sock *sk, struct inet_cork *cork,
1121                          struct ipcm_cookie *ipc, struct rtable **rtp)
1122 {
1123         struct ip_options_rcu *opt;
1124         struct rtable *rt;
1125
1126         /*
1127          * setup for corking.
1128          */
1129         opt = ipc->opt;
1130         if (opt) {
1131                 if (!cork->opt) {
1132                         cork->opt = kmalloc(sizeof(struct ip_options) + 40,
1133                                             sk->sk_allocation);
1134                         if (unlikely(!cork->opt))
1135                                 return -ENOBUFS;
1136                 }
1137                 memcpy(cork->opt, &opt->opt, sizeof(struct ip_options) + opt->opt.optlen);
1138                 cork->flags |= IPCORK_OPT;
1139                 cork->addr = ipc->addr;
1140         }
1141         rt = *rtp;
1142         if (unlikely(!rt))
1143                 return -EFAULT;
1144         /*
1145          * We steal reference to this route, caller should not release it
1146          */
1147         *rtp = NULL;
1148         cork->fragsize = ip_sk_use_pmtu(sk) ?
1149                          dst_mtu(&rt->dst) : rt->dst.dev->mtu;
1150         cork->dst = &rt->dst;
1151         cork->length = 0;
1152         cork->ttl = ipc->ttl;
1153         cork->tos = ipc->tos;
1154         cork->priority = ipc->priority;
1155         cork->tx_flags = ipc->tx_flags;
1156
1157         return 0;
1158 }
1159
1160 /*
1161  *      ip_append_data() and ip_append_page() can make one large IP datagram
1162  *      from many pieces of data. Each pieces will be holded on the socket
1163  *      until ip_push_pending_frames() is called. Each piece can be a page
1164  *      or non-page data.
1165  *
1166  *      Not only UDP, other transport protocols - e.g. raw sockets - can use
1167  *      this interface potentially.
1168  *
1169  *      LATER: length must be adjusted by pad at tail, when it is required.
1170  */
1171 int ip_append_data(struct sock *sk, struct flowi4 *fl4,
1172                    int getfrag(void *from, char *to, int offset, int len,
1173                                int odd, struct sk_buff *skb),
1174                    void *from, int length, int transhdrlen,
1175                    struct ipcm_cookie *ipc, struct rtable **rtp,
1176                    unsigned int flags)
1177 {
1178         struct inet_sock *inet = inet_sk(sk);
1179         int err;
1180
1181         if (flags&MSG_PROBE)
1182                 return 0;
1183
1184         if (skb_queue_empty(&sk->sk_write_queue)) {
1185                 err = ip_setup_cork(sk, &inet->cork.base, ipc, rtp);
1186                 if (err)
1187                         return err;
1188         } else {
1189                 transhdrlen = 0;
1190         }
1191
1192         return __ip_append_data(sk, fl4, &sk->sk_write_queue, &inet->cork.base,
1193                                 sk_page_frag(sk), getfrag,
1194                                 from, length, transhdrlen, flags);
1195 }
1196
1197 ssize_t ip_append_page(struct sock *sk, struct flowi4 *fl4, struct page *page,
1198                        int offset, size_t size, int flags)
1199 {
1200         struct inet_sock *inet = inet_sk(sk);
1201         struct sk_buff *skb;
1202         struct rtable *rt;
1203         struct ip_options *opt = NULL;
1204         struct inet_cork *cork;
1205         int hh_len;
1206         int mtu;
1207         int len;
1208         int err;
1209         unsigned int maxfraglen, fragheaderlen, fraggap, maxnonfragsize;
1210
1211         if (inet->hdrincl)
1212                 return -EPERM;
1213
1214         if (flags&MSG_PROBE)
1215                 return 0;
1216
1217         if (skb_queue_empty(&sk->sk_write_queue))
1218                 return -EINVAL;
1219
1220         cork = &inet->cork.base;
1221         rt = (struct rtable *)cork->dst;
1222         if (cork->flags & IPCORK_OPT)
1223                 opt = cork->opt;
1224
1225         if (!(rt->dst.dev->features&NETIF_F_SG))
1226                 return -EOPNOTSUPP;
1227
1228         hh_len = LL_RESERVED_SPACE(rt->dst.dev);
1229         mtu = cork->fragsize;
1230
1231         fragheaderlen = sizeof(struct iphdr) + (opt ? opt->optlen : 0);
1232         maxfraglen = ((mtu - fragheaderlen) & ~7) + fragheaderlen;
1233         maxnonfragsize = ip_sk_ignore_df(sk) ? 0xFFFF : mtu;
1234
1235         if (cork->length + size > maxnonfragsize - fragheaderlen) {
1236                 ip_local_error(sk, EMSGSIZE, fl4->daddr, inet->inet_dport,
1237                                mtu - (opt ? opt->optlen : 0));
1238                 return -EMSGSIZE;
1239         }
1240
1241         skb = skb_peek_tail(&sk->sk_write_queue);
1242         if (!skb)
1243                 return -EINVAL;
1244
1245         if ((size + skb->len > mtu) &&
1246             (skb_queue_len(&sk->sk_write_queue) == 1) &&
1247             (sk->sk_protocol == IPPROTO_UDP) &&
1248             (rt->dst.dev->features & NETIF_F_UFO)) {
1249                 if (skb->ip_summed != CHECKSUM_PARTIAL)
1250                         return -EOPNOTSUPP;
1251
1252                 skb_shinfo(skb)->gso_size = mtu - fragheaderlen;
1253                 skb_shinfo(skb)->gso_type = SKB_GSO_UDP;
1254         }
1255         cork->length += size;
1256
1257         while (size > 0) {
1258                 if (skb_is_gso(skb)) {
1259                         len = size;
1260                 } else {
1261
1262                         /* Check if the remaining data fits into current packet. */
1263                         len = mtu - skb->len;
1264                         if (len < size)
1265                                 len = maxfraglen - skb->len;
1266                 }
1267                 if (len <= 0) {
1268                         struct sk_buff *skb_prev;
1269                         int alloclen;
1270
1271                         skb_prev = skb;
1272                         fraggap = skb_prev->len - maxfraglen;
1273
1274                         alloclen = fragheaderlen + hh_len + fraggap + 15;
1275                         skb = sock_wmalloc(sk, alloclen, 1, sk->sk_allocation);
1276                         if (unlikely(!skb)) {
1277                                 err = -ENOBUFS;
1278                                 goto error;
1279                         }
1280
1281                         /*
1282                          *      Fill in the control structures
1283                          */
1284                         skb->ip_summed = CHECKSUM_NONE;
1285                         skb->csum = 0;
1286                         skb_reserve(skb, hh_len);
1287
1288                         /*
1289                          *      Find where to start putting bytes.
1290                          */
1291                         skb_put(skb, fragheaderlen + fraggap);
1292                         skb_reset_network_header(skb);
1293                         skb->transport_header = (skb->network_header +
1294                                                  fragheaderlen);
1295                         if (fraggap) {
1296                                 skb->csum = skb_copy_and_csum_bits(skb_prev,
1297                                                                    maxfraglen,
1298                                                     skb_transport_header(skb),
1299                                                                    fraggap, 0);
1300                                 skb_prev->csum = csum_sub(skb_prev->csum,
1301                                                           skb->csum);
1302                                 pskb_trim_unique(skb_prev, maxfraglen);
1303                         }
1304
1305                         /*
1306                          * Put the packet on the pending queue.
1307                          */
1308                         __skb_queue_tail(&sk->sk_write_queue, skb);
1309                         continue;
1310                 }
1311
1312                 if (len > size)
1313                         len = size;
1314
1315                 if (skb_append_pagefrags(skb, page, offset, len)) {
1316                         err = -EMSGSIZE;
1317                         goto error;
1318                 }
1319
1320                 if (skb->ip_summed == CHECKSUM_NONE) {
1321                         __wsum csum;
1322                         csum = csum_page(page, offset, len);
1323                         skb->csum = csum_block_add(skb->csum, csum, skb->len);
1324                 }
1325
1326                 skb->len += len;
1327                 skb->data_len += len;
1328                 skb->truesize += len;
1329                 atomic_add(len, &sk->sk_wmem_alloc);
1330                 offset += len;
1331                 size -= len;
1332         }
1333         return 0;
1334
1335 error:
1336         cork->length -= size;
1337         IP_INC_STATS(sock_net(sk), IPSTATS_MIB_OUTDISCARDS);
1338         return err;
1339 }
1340
1341 static void ip_cork_release(struct inet_cork *cork)
1342 {
1343         cork->flags &= ~IPCORK_OPT;
1344         kfree(cork->opt);
1345         cork->opt = NULL;
1346         dst_release(cork->dst);
1347         cork->dst = NULL;
1348 }
1349
1350 /*
1351  *      Combined all pending IP fragments on the socket as one IP datagram
1352  *      and push them out.
1353  */
1354 struct sk_buff *__ip_make_skb(struct sock *sk,
1355                               struct flowi4 *fl4,
1356                               struct sk_buff_head *queue,
1357                               struct inet_cork *cork)
1358 {
1359         struct sk_buff *skb, *tmp_skb;
1360         struct sk_buff **tail_skb;
1361         struct inet_sock *inet = inet_sk(sk);
1362         struct net *net = sock_net(sk);
1363         struct ip_options *opt = NULL;
1364         struct rtable *rt = (struct rtable *)cork->dst;
1365         struct iphdr *iph;
1366         __be16 df = 0;
1367         __u8 ttl;
1368
1369         skb = __skb_dequeue(queue);
1370         if (!skb)
1371                 goto out;
1372         tail_skb = &(skb_shinfo(skb)->frag_list);
1373
1374         /* move skb->data to ip header from ext header */
1375         if (skb->data < skb_network_header(skb))
1376                 __skb_pull(skb, skb_network_offset(skb));
1377         while ((tmp_skb = __skb_dequeue(queue)) != NULL) {
1378                 __skb_pull(tmp_skb, skb_network_header_len(skb));
1379                 *tail_skb = tmp_skb;
1380                 tail_skb = &(tmp_skb->next);
1381                 skb->len += tmp_skb->len;
1382                 skb->data_len += tmp_skb->len;
1383                 skb->truesize += tmp_skb->truesize;
1384                 tmp_skb->destructor = NULL;
1385                 tmp_skb->sk = NULL;
1386         }
1387
1388         /* Unless user demanded real pmtu discovery (IP_PMTUDISC_DO), we allow
1389          * to fragment the frame generated here. No matter, what transforms
1390          * how transforms change size of the packet, it will come out.
1391          */
1392         skb->ignore_df = ip_sk_ignore_df(sk);
1393
1394         /* DF bit is set when we want to see DF on outgoing frames.
1395          * If ignore_df is set too, we still allow to fragment this frame
1396          * locally. */
1397         if (inet->pmtudisc == IP_PMTUDISC_DO ||
1398             inet->pmtudisc == IP_PMTUDISC_PROBE ||
1399             (skb->len <= dst_mtu(&rt->dst) &&
1400              ip_dont_fragment(sk, &rt->dst)))
1401                 df = htons(IP_DF);
1402
1403         if (cork->flags & IPCORK_OPT)
1404                 opt = cork->opt;
1405
1406         if (cork->ttl != 0)
1407                 ttl = cork->ttl;
1408         else if (rt->rt_type == RTN_MULTICAST)
1409                 ttl = inet->mc_ttl;
1410         else
1411                 ttl = ip_select_ttl(inet, &rt->dst);
1412
1413         iph = ip_hdr(skb);
1414         iph->version = 4;
1415         iph->ihl = 5;
1416         iph->tos = (cork->tos != -1) ? cork->tos : inet->tos;
1417         iph->frag_off = df;
1418         iph->ttl = ttl;
1419         iph->protocol = sk->sk_protocol;
1420         ip_copy_addrs(iph, fl4);
1421         ip_select_ident(net, skb, sk);
1422
1423         if (opt) {
1424                 iph->ihl += opt->optlen>>2;
1425                 ip_options_build(skb, opt, cork->addr, rt, 0);
1426         }
1427
1428         skb->priority = (cork->tos != -1) ? cork->priority: sk->sk_priority;
1429         skb->mark = sk->sk_mark;
1430         /*
1431          * Steal rt from cork.dst to avoid a pair of atomic_inc/atomic_dec
1432          * on dst refcount
1433          */
1434         cork->dst = NULL;
1435         skb_dst_set(skb, &rt->dst);
1436
1437         if (iph->protocol == IPPROTO_ICMP)
1438                 icmp_out_count(net, ((struct icmphdr *)
1439                         skb_transport_header(skb))->type);
1440
1441         ip_cork_release(cork);
1442 out:
1443         return skb;
1444 }
1445
1446 int ip_send_skb(struct net *net, struct sk_buff *skb)
1447 {
1448         int err;
1449
1450         err = ip_local_out(net, skb->sk, skb);
1451         if (err) {
1452                 if (err > 0)
1453                         err = net_xmit_errno(err);
1454                 if (err)
1455                         IP_INC_STATS(net, IPSTATS_MIB_OUTDISCARDS);
1456         }
1457
1458         return err;
1459 }
1460
1461 int ip_push_pending_frames(struct sock *sk, struct flowi4 *fl4)
1462 {
1463         struct sk_buff *skb;
1464
1465         skb = ip_finish_skb(sk, fl4);
1466         if (!skb)
1467                 return 0;
1468
1469         /* Netfilter gets whole the not fragmented skb. */
1470         return ip_send_skb(sock_net(sk), skb);
1471 }
1472
1473 /*
1474  *      Throw away all pending data on the socket.
1475  */
1476 static void __ip_flush_pending_frames(struct sock *sk,
1477                                       struct sk_buff_head *queue,
1478                                       struct inet_cork *cork)
1479 {
1480         struct sk_buff *skb;
1481
1482         while ((skb = __skb_dequeue_tail(queue)) != NULL)
1483                 kfree_skb(skb);
1484
1485         ip_cork_release(cork);
1486 }
1487
1488 void ip_flush_pending_frames(struct sock *sk)
1489 {
1490         __ip_flush_pending_frames(sk, &sk->sk_write_queue, &inet_sk(sk)->cork.base);
1491 }
1492
1493 struct sk_buff *ip_make_skb(struct sock *sk,
1494                             struct flowi4 *fl4,
1495                             int getfrag(void *from, char *to, int offset,
1496                                         int len, int odd, struct sk_buff *skb),
1497                             void *from, int length, int transhdrlen,
1498                             struct ipcm_cookie *ipc, struct rtable **rtp,
1499                             unsigned int flags)
1500 {
1501         struct inet_cork cork;
1502         struct sk_buff_head queue;
1503         int err;
1504
1505         if (flags & MSG_PROBE)
1506                 return NULL;
1507
1508         __skb_queue_head_init(&queue);
1509
1510         cork.flags = 0;
1511         cork.addr = 0;
1512         cork.opt = NULL;
1513         err = ip_setup_cork(sk, &cork, ipc, rtp);
1514         if (err)
1515                 return ERR_PTR(err);
1516
1517         err = __ip_append_data(sk, fl4, &queue, &cork,
1518                                &current->task_frag, getfrag,
1519                                from, length, transhdrlen, flags);
1520         if (err) {
1521                 __ip_flush_pending_frames(sk, &queue, &cork);
1522                 return ERR_PTR(err);
1523         }
1524
1525         return __ip_make_skb(sk, fl4, &queue, &cork);
1526 }
1527
1528 /*
1529  *      Fetch data from kernel space and fill in checksum if needed.
1530  */
1531 static int ip_reply_glue_bits(void *dptr, char *to, int offset,
1532                               int len, int odd, struct sk_buff *skb)
1533 {
1534         __wsum csum;
1535
1536         csum = csum_partial_copy_nocheck(dptr+offset, to, len, 0);
1537         skb->csum = csum_block_add(skb->csum, csum, odd);
1538         return 0;
1539 }
1540
1541 /*
1542  *      Generic function to send a packet as reply to another packet.
1543  *      Used to send some TCP resets/acks so far.
1544  */
1545 void ip_send_unicast_reply(struct sock *sk, struct sk_buff *skb,
1546                            const struct ip_options *sopt,
1547                            __be32 daddr, __be32 saddr,
1548                            const struct ip_reply_arg *arg,
1549                            unsigned int len)
1550 {
1551         struct ip_options_data replyopts;
1552         struct ipcm_cookie ipc;
1553         struct flowi4 fl4;
1554         struct rtable *rt = skb_rtable(skb);
1555         struct net *net = sock_net(sk);
1556         struct sk_buff *nskb;
1557         int err;
1558         int oif;
1559
1560         if (__ip_options_echo(&replyopts.opt.opt, skb, sopt))
1561                 return;
1562
1563         ipc.addr = daddr;
1564         ipc.opt = NULL;
1565         ipc.tx_flags = 0;
1566         ipc.ttl = 0;
1567         ipc.tos = -1;
1568
1569         if (replyopts.opt.opt.optlen) {
1570                 ipc.opt = &replyopts.opt;
1571
1572                 if (replyopts.opt.opt.srr)
1573                         daddr = replyopts.opt.opt.faddr;
1574         }
1575
1576         oif = arg->bound_dev_if;
1577         if (!oif && netif_index_is_l3_master(net, skb->skb_iif))
1578                 oif = skb->skb_iif;
1579
1580         flowi4_init_output(&fl4, oif,
1581                            IP4_REPLY_MARK(net, skb->mark),
1582                            RT_TOS(arg->tos),
1583                            RT_SCOPE_UNIVERSE, ip_hdr(skb)->protocol,
1584                            ip_reply_arg_flowi_flags(arg),
1585                            daddr, saddr,
1586                            tcp_hdr(skb)->source, tcp_hdr(skb)->dest,
1587                            arg->uid);
1588         security_skb_classify_flow(skb, flowi4_to_flowi(&fl4));
1589         rt = ip_route_output_key(net, &fl4);
1590         if (IS_ERR(rt))
1591                 return;
1592
1593         inet_sk(sk)->tos = arg->tos;
1594
1595         sk->sk_priority = skb->priority;
1596         sk->sk_protocol = ip_hdr(skb)->protocol;
1597         sk->sk_bound_dev_if = arg->bound_dev_if;
1598         sk->sk_sndbuf = sysctl_wmem_default;
1599         err = ip_append_data(sk, &fl4, ip_reply_glue_bits, arg->iov->iov_base,
1600                              len, 0, &ipc, &rt, MSG_DONTWAIT);
1601         if (unlikely(err)) {
1602                 ip_flush_pending_frames(sk);
1603                 goto out;
1604         }
1605
1606         nskb = skb_peek(&sk->sk_write_queue);
1607         if (nskb) {
1608                 if (arg->csumoffset >= 0)
1609                         *((__sum16 *)skb_transport_header(nskb) +
1610                           arg->csumoffset) = csum_fold(csum_add(nskb->csum,
1611                                                                 arg->csum));
1612                 nskb->ip_summed = CHECKSUM_NONE;
1613                 ip_push_pending_frames(sk, &fl4);
1614         }
1615 out:
1616         ip_rt_put(rt);
1617 }
1618
1619 void __init ip_init(void)
1620 {
1621         ip_rt_init();
1622         inet_initpeers();
1623
1624 #if defined(CONFIG_IP_MULTICAST)
1625         igmp_mc_init();
1626 #endif
1627 }