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