blob: 97aee76fb7463d41bdaac364907b37cf4f6b25dd [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 * Version: $Id: ip_output.c,v 1.100 2002/02/01 22:01:03 davem Exp $
9 *
Jesper Juhl02c30a82005-05-05 16:16:16 -070010 * Authors: Ross Biro
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
12 * Donald Becker, <becker@super.org>
13 * Alan Cox, <Alan.Cox@linux.org>
14 * Richard Underwood
15 * Stefan Becker, <stefanb@yello.ping.de>
16 * Jorge Cwik, <jorge@laser.satlink.net>
17 * Arnt Gulbrandsen, <agulbra@nvg.unit.no>
18 * Hirokazu Takahashi, <taka@valinux.co.jp>
19 *
20 * See ip_input.c for original log
21 *
22 * Fixes:
23 * Alan Cox : Missing nonblock feature in ip_build_xmit.
24 * Mike Kilburn : htons() missing in ip_build_xmit.
25 * Bradford Johnson: Fix faulty handling of some frames when
26 * no route is found.
27 * Alexander Demenshin: Missing sk/skb free in ip_queue_xmit
28 * (in case if packet not accepted by
29 * output firewall rules)
30 * Mike McLagan : Routing by source
31 * Alexey Kuznetsov: use new route cache
32 * Andi Kleen: Fix broken PMTU recovery and remove
33 * some redundant tests.
34 * Vitaly E. Lavrov : Transparent proxy revived after year coma.
35 * Andi Kleen : Replace ip_reply with ip_send_reply.
36 * Andi Kleen : Split fast and slow ip_build_xmit path
37 * for decreased register pressure on x86
38 * and more readibility.
39 * Marc Boucher : When call_out_firewall returns FW_QUEUE,
40 * silently drop skb instead of failing with -EPERM.
41 * Detlev Wengorz : Copy protocol for fragments.
42 * Hirokazu Takahashi: HW checksumming for outgoing UDP
43 * datagrams.
44 * Hirokazu Takahashi: sendfile() on UDP works now.
45 */
46
47#include <asm/uaccess.h>
48#include <asm/system.h>
49#include <linux/module.h>
50#include <linux/types.h>
51#include <linux/kernel.h>
52#include <linux/sched.h>
53#include <linux/mm.h>
54#include <linux/string.h>
55#include <linux/errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57#include <linux/socket.h>
58#include <linux/sockios.h>
59#include <linux/in.h>
60#include <linux/inet.h>
61#include <linux/netdevice.h>
62#include <linux/etherdevice.h>
63#include <linux/proc_fs.h>
64#include <linux/stat.h>
65#include <linux/init.h>
66
67#include <net/snmp.h>
68#include <net/ip.h>
69#include <net/protocol.h>
70#include <net/route.h>
Patrick McHardycfacb052006-01-08 22:36:54 -080071#include <net/xfrm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#include <linux/skbuff.h>
73#include <net/sock.h>
74#include <net/arp.h>
75#include <net/icmp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070076#include <net/checksum.h>
77#include <net/inetpeer.h>
78#include <net/checksum.h>
79#include <linux/igmp.h>
80#include <linux/netfilter_ipv4.h>
81#include <linux/netfilter_bridge.h>
82#include <linux/mroute.h>
83#include <linux/netlink.h>
Arnaldo Carvalho de Melo6cbb0df2005-08-09 19:49:02 -070084#include <linux/tcp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Brian Haleyab32ea52006-09-22 14:15:41 -070086int sysctl_ip_default_ttl __read_mostly = IPDEFTTL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
88/* Generate a checksum for an outgoing IP datagram. */
89__inline__ void ip_send_check(struct iphdr *iph)
90{
91 iph->check = 0;
92 iph->check = ip_fast_csum((unsigned char *)iph, iph->ihl);
93}
94
95/* dev_loopback_xmit for use with netfilter. */
96static int ip_dev_loopback_xmit(struct sk_buff *newskb)
97{
98 newskb->mac.raw = newskb->data;
99 __skb_pull(newskb, newskb->nh.raw - newskb->data);
100 newskb->pkt_type = PACKET_LOOPBACK;
101 newskb->ip_summed = CHECKSUM_UNNECESSARY;
102 BUG_TRAP(newskb->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 netif_rx(newskb);
104 return 0;
105}
106
107static inline int ip_select_ttl(struct inet_sock *inet, struct dst_entry *dst)
108{
109 int ttl = inet->uc_ttl;
110
111 if (ttl < 0)
112 ttl = dst_metric(dst, RTAX_HOPLIMIT);
113 return ttl;
114}
115
116/*
117 * Add an ip header to a skbuff and send it out.
118 *
119 */
120int ip_build_and_send_pkt(struct sk_buff *skb, struct sock *sk,
121 u32 saddr, u32 daddr, struct ip_options *opt)
122{
123 struct inet_sock *inet = inet_sk(sk);
124 struct rtable *rt = (struct rtable *)skb->dst;
125 struct iphdr *iph;
126
127 /* Build the IP header. */
128 if (opt)
129 iph=(struct iphdr *)skb_push(skb,sizeof(struct iphdr) + opt->optlen);
130 else
131 iph=(struct iphdr *)skb_push(skb,sizeof(struct iphdr));
132
133 iph->version = 4;
134 iph->ihl = 5;
135 iph->tos = inet->tos;
136 if (ip_dont_fragment(sk, &rt->u.dst))
137 iph->frag_off = htons(IP_DF);
138 else
139 iph->frag_off = 0;
140 iph->ttl = ip_select_ttl(inet, &rt->u.dst);
141 iph->daddr = rt->rt_dst;
142 iph->saddr = rt->rt_src;
143 iph->protocol = sk->sk_protocol;
144 iph->tot_len = htons(skb->len);
145 ip_select_ident(iph, &rt->u.dst, sk);
146 skb->nh.iph = iph;
147
148 if (opt && opt->optlen) {
149 iph->ihl += opt->optlen>>2;
150 ip_options_build(skb, opt, daddr, rt, 0);
151 }
152 ip_send_check(iph);
153
154 skb->priority = sk->sk_priority;
155
156 /* Send it out. */
157 return NF_HOOK(PF_INET, NF_IP_LOCAL_OUT, skb, NULL, rt->u.dst.dev,
158 dst_output);
159}
160
Arnaldo Carvalho de Melod8c97a92005-08-09 20:12:12 -0700161EXPORT_SYMBOL_GPL(ip_build_and_send_pkt);
162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163static inline int ip_finish_output2(struct sk_buff *skb)
164{
165 struct dst_entry *dst = skb->dst;
166 struct hh_cache *hh = dst->hh;
167 struct net_device *dev = dst->dev;
168 int hh_len = LL_RESERVED_SPACE(dev);
169
170 /* Be paranoid, rather than too clever. */
171 if (unlikely(skb_headroom(skb) < hh_len && dev->hard_header)) {
172 struct sk_buff *skb2;
173
174 skb2 = skb_realloc_headroom(skb, LL_RESERVED_SPACE(dev));
175 if (skb2 == NULL) {
176 kfree_skb(skb);
177 return -ENOMEM;
178 }
179 if (skb->sk)
180 skb_set_owner_w(skb2, skb->sk);
181 kfree_skb(skb);
182 skb = skb2;
183 }
184
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 if (hh) {
186 int hh_alen;
187
188 read_lock_bh(&hh->hh_lock);
189 hh_alen = HH_DATA_ALIGN(hh->hh_len);
190 memcpy(skb->data - hh_alen, hh->hh_data, hh_alen);
191 read_unlock_bh(&hh->hh_lock);
192 skb_push(skb, hh->hh_len);
193 return hh->hh_output(skb);
194 } else if (dst->neighbour)
195 return dst->neighbour->output(skb);
196
197 if (net_ratelimit())
198 printk(KERN_DEBUG "ip_finish_output2: No header cache and no neighbour!\n");
199 kfree_skb(skb);
200 return -EINVAL;
201}
202
Thomas Graf33d043d2005-08-20 17:27:34 -0700203static inline int ip_finish_output(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204{
Patrick McHardy5c901da2006-01-06 23:05:36 -0800205#if defined(CONFIG_NETFILTER) && defined(CONFIG_XFRM)
206 /* Policy lookup after SNAT yielded a new policy */
Patrick McHardy48d5cad2006-02-15 15:10:22 -0800207 if (skb->dst->xfrm != NULL) {
208 IPCB(skb)->flags |= IPSKB_REROUTED;
209 return dst_output(skb);
210 }
Patrick McHardy5c901da2006-01-06 23:05:36 -0800211#endif
Herbert Xu89114af2006-07-08 13:34:32 -0700212 if (skb->len > dst_mtu(skb->dst) && !skb_is_gso(skb))
Patrick McHardy1bd9bef2006-01-05 12:20:59 -0800213 return ip_fragment(skb, ip_finish_output2);
214 else
215 return ip_finish_output2(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216}
217
218int ip_mc_output(struct sk_buff *skb)
219{
220 struct sock *sk = skb->sk;
221 struct rtable *rt = (struct rtable*)skb->dst;
222 struct net_device *dev = rt->u.dst.dev;
223
224 /*
225 * If the indicated interface is up and running, send the packet.
226 */
227 IP_INC_STATS(IPSTATS_MIB_OUTREQUESTS);
228
229 skb->dev = dev;
230 skb->protocol = htons(ETH_P_IP);
231
232 /*
233 * Multicasts are looped back for other local users
234 */
235
236 if (rt->rt_flags&RTCF_MULTICAST) {
237 if ((!sk || inet_sk(sk)->mc_loop)
238#ifdef CONFIG_IP_MROUTE
239 /* Small optimization: do not loopback not local frames,
240 which returned after forwarding; they will be dropped
241 by ip_mr_input in any case.
242 Note, that local frames are looped back to be delivered
243 to local recipients.
244
245 This check is duplicated in ip_mr_input at the moment.
246 */
247 && ((rt->rt_flags&RTCF_LOCAL) || !(IPCB(skb)->flags&IPSKB_FORWARDED))
248#endif
249 ) {
250 struct sk_buff *newskb = skb_clone(skb, GFP_ATOMIC);
251 if (newskb)
252 NF_HOOK(PF_INET, NF_IP_POST_ROUTING, newskb, NULL,
253 newskb->dev,
254 ip_dev_loopback_xmit);
255 }
256
257 /* Multicasts with ttl 0 must not go beyond the host */
258
259 if (skb->nh.iph->ttl == 0) {
260 kfree_skb(skb);
261 return 0;
262 }
263 }
264
265 if (rt->rt_flags&RTCF_BROADCAST) {
266 struct sk_buff *newskb = skb_clone(skb, GFP_ATOMIC);
267 if (newskb)
268 NF_HOOK(PF_INET, NF_IP_POST_ROUTING, newskb, NULL,
269 newskb->dev, ip_dev_loopback_xmit);
270 }
271
Patrick McHardy48d5cad2006-02-15 15:10:22 -0800272 return NF_HOOK_COND(PF_INET, NF_IP_POST_ROUTING, skb, NULL, skb->dev,
273 ip_finish_output,
274 !(IPCB(skb)->flags & IPSKB_REROUTED));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275}
276
277int ip_output(struct sk_buff *skb)
278{
Patrick McHardy1bd9bef2006-01-05 12:20:59 -0800279 struct net_device *dev = skb->dst->dev;
280
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 IP_INC_STATS(IPSTATS_MIB_OUTREQUESTS);
282
Patrick McHardy1bd9bef2006-01-05 12:20:59 -0800283 skb->dev = dev;
284 skb->protocol = htons(ETH_P_IP);
285
Patrick McHardy48d5cad2006-02-15 15:10:22 -0800286 return NF_HOOK_COND(PF_INET, NF_IP_POST_ROUTING, skb, NULL, dev,
287 ip_finish_output,
288 !(IPCB(skb)->flags & IPSKB_REROUTED));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289}
290
291int ip_queue_xmit(struct sk_buff *skb, int ipfragok)
292{
293 struct sock *sk = skb->sk;
294 struct inet_sock *inet = inet_sk(sk);
295 struct ip_options *opt = inet->opt;
296 struct rtable *rt;
297 struct iphdr *iph;
298
299 /* Skip all of this if the packet is already routed,
300 * f.e. by something like SCTP.
301 */
302 rt = (struct rtable *) skb->dst;
303 if (rt != NULL)
304 goto packet_routed;
305
306 /* Make sure we can route this packet. */
307 rt = (struct rtable *)__sk_dst_check(sk, 0);
308 if (rt == NULL) {
309 u32 daddr;
310
311 /* Use correct destination address if we have options. */
312 daddr = inet->daddr;
313 if(opt && opt->srr)
314 daddr = opt->faddr;
315
316 {
317 struct flowi fl = { .oif = sk->sk_bound_dev_if,
318 .nl_u = { .ip4_u =
319 { .daddr = daddr,
320 .saddr = inet->saddr,
321 .tos = RT_CONN_FLAGS(sk) } },
322 .proto = sk->sk_protocol,
323 .uli_u = { .ports =
324 { .sport = inet->sport,
325 .dport = inet->dport } } };
326
327 /* If this fails, retransmit mechanism of transport layer will
328 * keep trying until route appears or the connection times
329 * itself out.
330 */
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -0700331 security_sk_classify_flow(sk, &fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 if (ip_route_output_flow(&rt, &fl, sk, 0))
333 goto no_route;
334 }
Arnaldo Carvalho de Melo6cbb0df2005-08-09 19:49:02 -0700335 sk_setup_caps(sk, &rt->u.dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 }
337 skb->dst = dst_clone(&rt->u.dst);
338
339packet_routed:
340 if (opt && opt->is_strictroute && rt->rt_dst != rt->rt_gateway)
341 goto no_route;
342
343 /* OK, we know where to send it, allocate and build IP header. */
344 iph = (struct iphdr *) skb_push(skb, sizeof(struct iphdr) + (opt ? opt->optlen : 0));
345 *((__u16 *)iph) = htons((4 << 12) | (5 << 8) | (inet->tos & 0xff));
346 iph->tot_len = htons(skb->len);
347 if (ip_dont_fragment(sk, &rt->u.dst) && !ipfragok)
348 iph->frag_off = htons(IP_DF);
349 else
350 iph->frag_off = 0;
351 iph->ttl = ip_select_ttl(inet, &rt->u.dst);
352 iph->protocol = sk->sk_protocol;
353 iph->saddr = rt->rt_src;
354 iph->daddr = rt->rt_dst;
355 skb->nh.iph = iph;
356 /* Transport layer set skb->h.foo itself. */
357
358 if (opt && opt->optlen) {
359 iph->ihl += opt->optlen >> 2;
360 ip_options_build(skb, opt, inet->daddr, rt, 0);
361 }
362
Herbert Xu89f5f0a2005-11-08 09:41:56 -0800363 ip_select_ident_more(iph, &rt->u.dst, sk,
Herbert Xu79671682006-06-22 02:40:14 -0700364 (skb_shinfo(skb)->gso_segs ?: 1) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
366 /* Add an IP checksum. */
367 ip_send_check(iph);
368
369 skb->priority = sk->sk_priority;
370
371 return NF_HOOK(PF_INET, NF_IP_LOCAL_OUT, skb, NULL, rt->u.dst.dev,
372 dst_output);
373
374no_route:
375 IP_INC_STATS(IPSTATS_MIB_OUTNOROUTES);
376 kfree_skb(skb);
377 return -EHOSTUNREACH;
378}
379
380
381static void ip_copy_metadata(struct sk_buff *to, struct sk_buff *from)
382{
383 to->pkt_type = from->pkt_type;
384 to->priority = from->priority;
385 to->protocol = from->protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 dst_release(to->dst);
387 to->dst = dst_clone(from->dst);
388 to->dev = from->dev;
389
390 /* Copy the flags to each fragment. */
391 IPCB(to)->flags = IPCB(from)->flags;
392
393#ifdef CONFIG_NET_SCHED
394 to->tc_index = from->tc_index;
395#endif
396#ifdef CONFIG_NETFILTER
397 to->nfmark = from->nfmark;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 /* Connection association is same as pre-frag packet */
399 nf_conntrack_put(to->nfct);
400 to->nfct = from->nfct;
401 nf_conntrack_get(to->nfct);
402 to->nfctinfo = from->nfctinfo;
Julian Anastasovc98d80e2005-10-22 13:39:21 +0300403#if defined(CONFIG_IP_VS) || defined(CONFIG_IP_VS_MODULE)
404 to->ipvs_property = from->ipvs_property;
405#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406#ifdef CONFIG_BRIDGE_NETFILTER
407 nf_bridge_put(to->nf_bridge);
408 to->nf_bridge = from->nf_bridge;
409 nf_bridge_get(to->nf_bridge);
410#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411#endif
James Morris984bc162006-06-09 00:29:17 -0700412 skb_copy_secmark(to, from);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413}
414
415/*
416 * This IP datagram is too large to be sent in one piece. Break it up into
417 * smaller pieces (each of size equal to IP header plus
418 * a block of the data of the original IP data part) that will yet fit in a
419 * single device frame, and queue such a frame for sending.
420 */
421
Patrick McHardy2e2f7ae2006-04-04 13:42:35 -0700422int ip_fragment(struct sk_buff *skb, int (*output)(struct sk_buff*))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423{
424 struct iphdr *iph;
425 int raw = 0;
426 int ptr;
427 struct net_device *dev;
428 struct sk_buff *skb2;
Stephen Hemminger9bcfcaf2006-08-29 17:48:57 -0700429 unsigned int mtu, hlen, left, len, ll_rs, pad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 int offset;
Alexey Dobriyan76ab6082006-01-06 13:24:29 -0800431 __be16 not_last_frag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 struct rtable *rt = (struct rtable*)skb->dst;
433 int err = 0;
434
435 dev = rt->u.dst.dev;
436
437 /*
438 * Point into the IP datagram header.
439 */
440
441 iph = skb->nh.iph;
442
443 if (unlikely((iph->frag_off & htons(IP_DF)) && !skb->local_df)) {
Wei Dong0668b472006-08-31 15:24:48 -0700444 IP_INC_STATS(IPSTATS_MIB_FRAGFAILS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED,
446 htonl(dst_mtu(&rt->u.dst)));
447 kfree_skb(skb);
448 return -EMSGSIZE;
449 }
450
451 /*
452 * Setup starting values.
453 */
454
455 hlen = iph->ihl * 4;
456 mtu = dst_mtu(&rt->u.dst) - hlen; /* Size of data space */
Herbert Xu89cee8b2005-12-13 23:14:27 -0800457 IPCB(skb)->flags |= IPSKB_FRAG_COMPLETE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
459 /* When frag_list is given, use it. First, check its validity:
460 * some transformers could create wrong frag_list or break existing
461 * one, it is not prohibited. In this case fall back to copying.
462 *
463 * LATER: this step can be merged to real generation of fragments,
464 * we can switch to copy when see the first bad fragment.
465 */
466 if (skb_shinfo(skb)->frag_list) {
467 struct sk_buff *frag;
468 int first_len = skb_pagelen(skb);
469
470 if (first_len - hlen > mtu ||
471 ((first_len - hlen) & 7) ||
472 (iph->frag_off & htons(IP_MF|IP_OFFSET)) ||
473 skb_cloned(skb))
474 goto slow_path;
475
476 for (frag = skb_shinfo(skb)->frag_list; frag; frag = frag->next) {
477 /* Correct geometry. */
478 if (frag->len > mtu ||
479 ((frag->len & 7) && frag->next) ||
480 skb_headroom(frag) < hlen)
481 goto slow_path;
482
483 /* Partially cloned skb? */
484 if (skb_shared(frag))
485 goto slow_path;
Herbert Xu2fdba6b2005-05-18 22:52:33 -0700486
487 BUG_ON(frag->sk);
488 if (skb->sk) {
489 sock_hold(skb->sk);
490 frag->sk = skb->sk;
491 frag->destructor = sock_wfree;
492 skb->truesize -= frag->truesize;
493 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 }
495
496 /* Everything is OK. Generate! */
497
498 err = 0;
499 offset = 0;
500 frag = skb_shinfo(skb)->frag_list;
501 skb_shinfo(skb)->frag_list = NULL;
502 skb->data_len = first_len - skb_headlen(skb);
503 skb->len = first_len;
504 iph->tot_len = htons(first_len);
505 iph->frag_off = htons(IP_MF);
506 ip_send_check(iph);
507
508 for (;;) {
509 /* Prepare header of the next frame,
510 * before previous one went down. */
511 if (frag) {
512 frag->ip_summed = CHECKSUM_NONE;
513 frag->h.raw = frag->data;
514 frag->nh.raw = __skb_push(frag, hlen);
515 memcpy(frag->nh.raw, iph, hlen);
516 iph = frag->nh.iph;
517 iph->tot_len = htons(frag->len);
518 ip_copy_metadata(frag, skb);
519 if (offset == 0)
520 ip_options_fragment(frag);
521 offset += skb->len - hlen;
522 iph->frag_off = htons(offset>>3);
523 if (frag->next != NULL)
524 iph->frag_off |= htons(IP_MF);
525 /* Ready, complete checksum */
526 ip_send_check(iph);
527 }
528
529 err = output(skb);
530
Wei Dongdafee492006-08-02 13:41:21 -0700531 if (!err)
532 IP_INC_STATS(IPSTATS_MIB_FRAGCREATES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 if (err || !frag)
534 break;
535
536 skb = frag;
537 frag = skb->next;
538 skb->next = NULL;
539 }
540
541 if (err == 0) {
542 IP_INC_STATS(IPSTATS_MIB_FRAGOKS);
543 return 0;
544 }
545
546 while (frag) {
547 skb = frag->next;
548 kfree_skb(frag);
549 frag = skb;
550 }
551 IP_INC_STATS(IPSTATS_MIB_FRAGFAILS);
552 return err;
553 }
554
555slow_path:
556 left = skb->len - hlen; /* Space per frame */
557 ptr = raw + hlen; /* Where to start from */
558
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 /* for bridged IP traffic encapsulated inside f.e. a vlan header,
Stephen Hemminger9bcfcaf2006-08-29 17:48:57 -0700560 * we need to make room for the encapsulating header
561 */
562 pad = nf_bridge_pad(skb);
563 ll_rs = LL_RESERVED_SPACE_EXTRA(rt->u.dst.dev, pad);
564 mtu -= pad;
565
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 /*
567 * Fragment the datagram.
568 */
569
570 offset = (ntohs(iph->frag_off) & IP_OFFSET) << 3;
571 not_last_frag = iph->frag_off & htons(IP_MF);
572
573 /*
574 * Keep copying data until we run out.
575 */
576
577 while(left > 0) {
578 len = left;
579 /* IF: it doesn't fit, use 'mtu' - the data space left */
580 if (len > mtu)
581 len = mtu;
582 /* IF: we are not sending upto and including the packet end
583 then align the next start on an eight byte boundary */
584 if (len < left) {
585 len &= ~7;
586 }
587 /*
588 * Allocate buffer.
589 */
590
591 if ((skb2 = alloc_skb(len+hlen+ll_rs, GFP_ATOMIC)) == NULL) {
Patrick McHardy64ce2072005-08-09 20:50:53 -0700592 NETDEBUG(KERN_INFO "IP: frag: no memory for new fragment!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 err = -ENOMEM;
594 goto fail;
595 }
596
597 /*
598 * Set up data on packet
599 */
600
601 ip_copy_metadata(skb2, skb);
602 skb_reserve(skb2, ll_rs);
603 skb_put(skb2, len + hlen);
604 skb2->nh.raw = skb2->data;
605 skb2->h.raw = skb2->data + hlen;
606
607 /*
608 * Charge the memory for the fragment to any owner
609 * it might possess
610 */
611
612 if (skb->sk)
613 skb_set_owner_w(skb2, skb->sk);
614
615 /*
616 * Copy the packet header into the new buffer.
617 */
618
619 memcpy(skb2->nh.raw, skb->data, hlen);
620
621 /*
622 * Copy a block of the IP datagram.
623 */
624 if (skb_copy_bits(skb, ptr, skb2->h.raw, len))
625 BUG();
626 left -= len;
627
628 /*
629 * Fill in the new header fields.
630 */
631 iph = skb2->nh.iph;
632 iph->frag_off = htons((offset >> 3));
633
634 /* ANK: dirty, but effective trick. Upgrade options only if
635 * the segment to be fragmented was THE FIRST (otherwise,
636 * options are already fixed) and make it ONCE
637 * on the initial skb, so that all the following fragments
638 * will inherit fixed options.
639 */
640 if (offset == 0)
641 ip_options_fragment(skb);
642
643 /*
644 * Added AC : If we are fragmenting a fragment that's not the
645 * last fragment then keep MF on each bit
646 */
647 if (left > 0 || not_last_frag)
648 iph->frag_off |= htons(IP_MF);
649 ptr += len;
650 offset += len;
651
652 /*
653 * Put this fragment into the sending queue.
654 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 iph->tot_len = htons(len + hlen);
656
657 ip_send_check(iph);
658
659 err = output(skb2);
660 if (err)
661 goto fail;
Wei Dongdafee492006-08-02 13:41:21 -0700662
663 IP_INC_STATS(IPSTATS_MIB_FRAGCREATES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 }
665 kfree_skb(skb);
666 IP_INC_STATS(IPSTATS_MIB_FRAGOKS);
667 return err;
668
669fail:
670 kfree_skb(skb);
671 IP_INC_STATS(IPSTATS_MIB_FRAGFAILS);
672 return err;
673}
674
Patrick McHardy2e2f7ae2006-04-04 13:42:35 -0700675EXPORT_SYMBOL(ip_fragment);
676
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677int
678ip_generic_getfrag(void *from, char *to, int offset, int len, int odd, struct sk_buff *skb)
679{
680 struct iovec *iov = from;
681
Patrick McHardy84fa7932006-08-29 16:44:56 -0700682 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 if (memcpy_fromiovecend(to, iov, offset, len) < 0)
684 return -EFAULT;
685 } else {
686 unsigned int csum = 0;
687 if (csum_partial_copy_fromiovecend(to, iov, offset, len, &csum) < 0)
688 return -EFAULT;
689 skb->csum = csum_block_add(skb->csum, csum, odd);
690 }
691 return 0;
692}
693
694static inline unsigned int
695csum_page(struct page *page, int offset, int copy)
696{
697 char *kaddr;
698 unsigned int csum;
699 kaddr = kmap(page);
700 csum = csum_partial(kaddr + offset, copy, 0);
701 kunmap(page);
702 return csum;
703}
704
Adrian Bunk4b30b1c2005-11-29 16:27:20 -0800705static inline int ip_ufo_append_data(struct sock *sk,
Ananda Rajue89e9cf2005-10-18 15:46:41 -0700706 int getfrag(void *from, char *to, int offset, int len,
707 int odd, struct sk_buff *skb),
708 void *from, int length, int hh_len, int fragheaderlen,
709 int transhdrlen, int mtu,unsigned int flags)
710{
711 struct sk_buff *skb;
712 int err;
713
714 /* There is support for UDP fragmentation offload by network
715 * device, so create one single skb packet containing complete
716 * udp datagram
717 */
718 if ((skb = skb_peek_tail(&sk->sk_write_queue)) == NULL) {
719 skb = sock_alloc_send_skb(sk,
720 hh_len + fragheaderlen + transhdrlen + 20,
721 (flags & MSG_DONTWAIT), &err);
722
723 if (skb == NULL)
724 return err;
725
726 /* reserve space for Hardware header */
727 skb_reserve(skb, hh_len);
728
729 /* create space for UDP/IP header */
730 skb_put(skb,fragheaderlen + transhdrlen);
731
732 /* initialize network header pointer */
733 skb->nh.raw = skb->data;
734
735 /* initialize protocol header pointer */
736 skb->h.raw = skb->data + fragheaderlen;
737
Patrick McHardy84fa7932006-08-29 16:44:56 -0700738 skb->ip_summed = CHECKSUM_PARTIAL;
Ananda Rajue89e9cf2005-10-18 15:46:41 -0700739 skb->csum = 0;
740 sk->sk_sndmsg_off = 0;
741 }
742
743 err = skb_append_datato_frags(sk,skb, getfrag, from,
744 (length - transhdrlen));
745 if (!err) {
746 /* specify the length of each IP datagram fragment*/
Herbert Xu79671682006-06-22 02:40:14 -0700747 skb_shinfo(skb)->gso_size = mtu - fragheaderlen;
Herbert Xuf83ef8c2006-06-30 13:37:03 -0700748 skb_shinfo(skb)->gso_type = SKB_GSO_UDP;
Ananda Rajue89e9cf2005-10-18 15:46:41 -0700749 __skb_queue_tail(&sk->sk_write_queue, skb);
750
751 return 0;
752 }
753 /* There is not enough support do UFO ,
754 * so follow normal path
755 */
756 kfree_skb(skb);
757 return err;
758}
759
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760/*
761 * ip_append_data() and ip_append_page() can make one large IP datagram
762 * from many pieces of data. Each pieces will be holded on the socket
763 * until ip_push_pending_frames() is called. Each piece can be a page
764 * or non-page data.
765 *
766 * Not only UDP, other transport protocols - e.g. raw sockets - can use
767 * this interface potentially.
768 *
769 * LATER: length must be adjusted by pad at tail, when it is required.
770 */
771int ip_append_data(struct sock *sk,
772 int getfrag(void *from, char *to, int offset, int len,
773 int odd, struct sk_buff *skb),
774 void *from, int length, int transhdrlen,
775 struct ipcm_cookie *ipc, struct rtable *rt,
776 unsigned int flags)
777{
778 struct inet_sock *inet = inet_sk(sk);
779 struct sk_buff *skb;
780
781 struct ip_options *opt = NULL;
782 int hh_len;
783 int exthdrlen;
784 int mtu;
785 int copy;
786 int err;
787 int offset = 0;
788 unsigned int maxfraglen, fragheaderlen;
789 int csummode = CHECKSUM_NONE;
790
791 if (flags&MSG_PROBE)
792 return 0;
793
794 if (skb_queue_empty(&sk->sk_write_queue)) {
795 /*
796 * setup for corking.
797 */
798 opt = ipc->opt;
799 if (opt) {
800 if (inet->cork.opt == NULL) {
801 inet->cork.opt = kmalloc(sizeof(struct ip_options) + 40, sk->sk_allocation);
802 if (unlikely(inet->cork.opt == NULL))
803 return -ENOBUFS;
804 }
805 memcpy(inet->cork.opt, opt, sizeof(struct ip_options)+opt->optlen);
806 inet->cork.flags |= IPCORK_OPT;
807 inet->cork.addr = ipc->addr;
808 }
809 dst_hold(&rt->u.dst);
810 inet->cork.fragsize = mtu = dst_mtu(rt->u.dst.path);
811 inet->cork.rt = rt;
812 inet->cork.length = 0;
813 sk->sk_sndmsg_page = NULL;
814 sk->sk_sndmsg_off = 0;
815 if ((exthdrlen = rt->u.dst.header_len) != 0) {
816 length += exthdrlen;
817 transhdrlen += exthdrlen;
818 }
819 } else {
820 rt = inet->cork.rt;
821 if (inet->cork.flags & IPCORK_OPT)
822 opt = inet->cork.opt;
823
824 transhdrlen = 0;
825 exthdrlen = 0;
826 mtu = inet->cork.fragsize;
827 }
828 hh_len = LL_RESERVED_SPACE(rt->u.dst.dev);
829
830 fragheaderlen = sizeof(struct iphdr) + (opt ? opt->optlen : 0);
831 maxfraglen = ((mtu - fragheaderlen) & ~7) + fragheaderlen;
832
833 if (inet->cork.length + length > 0xFFFF - fragheaderlen) {
834 ip_local_error(sk, EMSGSIZE, rt->rt_dst, inet->dport, mtu-exthdrlen);
835 return -EMSGSIZE;
836 }
837
838 /*
839 * transhdrlen > 0 means that this is the first fragment and we wish
840 * it won't be fragmented in the future.
841 */
842 if (transhdrlen &&
843 length + fragheaderlen <= mtu &&
Herbert Xu8648b302006-06-17 22:06:05 -0700844 rt->u.dst.dev->features & NETIF_F_ALL_CSUM &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 !exthdrlen)
Patrick McHardy84fa7932006-08-29 16:44:56 -0700846 csummode = CHECKSUM_PARTIAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
848 inet->cork.length += length;
Ananda Rajue89e9cf2005-10-18 15:46:41 -0700849 if (((length > mtu) && (sk->sk_protocol == IPPROTO_UDP)) &&
850 (rt->u.dst.dev->features & NETIF_F_UFO)) {
851
Patrick McHardybaa829d2006-03-12 20:35:12 -0800852 err = ip_ufo_append_data(sk, getfrag, from, length, hh_len,
853 fragheaderlen, transhdrlen, mtu,
854 flags);
855 if (err)
Ananda Rajue89e9cf2005-10-18 15:46:41 -0700856 goto error;
Ananda Rajue89e9cf2005-10-18 15:46:41 -0700857 return 0;
858 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859
860 /* So, what's going on in the loop below?
861 *
862 * We use calculated fragment length to generate chained skb,
863 * each of segments is IP fragment ready for sending to network after
864 * adding appropriate IP header.
865 */
866
867 if ((skb = skb_peek_tail(&sk->sk_write_queue)) == NULL)
868 goto alloc_new_skb;
869
870 while (length > 0) {
871 /* Check if the remaining data fits into current packet. */
872 copy = mtu - skb->len;
873 if (copy < length)
874 copy = maxfraglen - skb->len;
875 if (copy <= 0) {
876 char *data;
877 unsigned int datalen;
878 unsigned int fraglen;
879 unsigned int fraggap;
880 unsigned int alloclen;
881 struct sk_buff *skb_prev;
882alloc_new_skb:
883 skb_prev = skb;
884 if (skb_prev)
885 fraggap = skb_prev->len - maxfraglen;
886 else
887 fraggap = 0;
888
889 /*
890 * If remaining data exceeds the mtu,
891 * we know we need more fragment(s).
892 */
893 datalen = length + fraggap;
894 if (datalen > mtu - fragheaderlen)
895 datalen = maxfraglen - fragheaderlen;
896 fraglen = datalen + fragheaderlen;
897
898 if ((flags & MSG_MORE) &&
899 !(rt->u.dst.dev->features&NETIF_F_SG))
900 alloclen = mtu;
901 else
902 alloclen = datalen + fragheaderlen;
903
904 /* The last fragment gets additional space at tail.
905 * Note, with MSG_MORE we overallocate on fragments,
906 * because we have no idea what fragment will be
907 * the last.
908 */
Zach Brown3d9dd752006-04-14 16:04:18 -0700909 if (datalen == length + fraggap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 alloclen += rt->u.dst.trailer_len;
911
912 if (transhdrlen) {
913 skb = sock_alloc_send_skb(sk,
914 alloclen + hh_len + 15,
915 (flags & MSG_DONTWAIT), &err);
916 } else {
917 skb = NULL;
918 if (atomic_read(&sk->sk_wmem_alloc) <=
919 2 * sk->sk_sndbuf)
920 skb = sock_wmalloc(sk,
921 alloclen + hh_len + 15, 1,
922 sk->sk_allocation);
923 if (unlikely(skb == NULL))
924 err = -ENOBUFS;
925 }
926 if (skb == NULL)
927 goto error;
928
929 /*
930 * Fill in the control structures
931 */
932 skb->ip_summed = csummode;
933 skb->csum = 0;
934 skb_reserve(skb, hh_len);
935
936 /*
937 * Find where to start putting bytes.
938 */
939 data = skb_put(skb, fraglen);
940 skb->nh.raw = data + exthdrlen;
941 data += fragheaderlen;
942 skb->h.raw = data + exthdrlen;
943
944 if (fraggap) {
945 skb->csum = skb_copy_and_csum_bits(
946 skb_prev, maxfraglen,
947 data + transhdrlen, fraggap, 0);
948 skb_prev->csum = csum_sub(skb_prev->csum,
949 skb->csum);
950 data += fraggap;
Herbert Xue9fa4f72006-08-13 20:12:58 -0700951 pskb_trim_unique(skb_prev, maxfraglen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 }
953
954 copy = datalen - transhdrlen - fraggap;
955 if (copy > 0 && getfrag(from, data + transhdrlen, offset, copy, fraggap, skb) < 0) {
956 err = -EFAULT;
957 kfree_skb(skb);
958 goto error;
959 }
960
961 offset += copy;
962 length -= datalen - fraggap;
963 transhdrlen = 0;
964 exthdrlen = 0;
965 csummode = CHECKSUM_NONE;
966
967 /*
968 * Put the packet on the pending queue.
969 */
970 __skb_queue_tail(&sk->sk_write_queue, skb);
971 continue;
972 }
973
974 if (copy > length)
975 copy = length;
976
977 if (!(rt->u.dst.dev->features&NETIF_F_SG)) {
978 unsigned int off;
979
980 off = skb->len;
981 if (getfrag(from, skb_put(skb, copy),
982 offset, copy, off, skb) < 0) {
983 __skb_trim(skb, off);
984 err = -EFAULT;
985 goto error;
986 }
987 } else {
988 int i = skb_shinfo(skb)->nr_frags;
989 skb_frag_t *frag = &skb_shinfo(skb)->frags[i-1];
990 struct page *page = sk->sk_sndmsg_page;
991 int off = sk->sk_sndmsg_off;
992 unsigned int left;
993
994 if (page && (left = PAGE_SIZE - off) > 0) {
995 if (copy >= left)
996 copy = left;
997 if (page != frag->page) {
998 if (i == MAX_SKB_FRAGS) {
999 err = -EMSGSIZE;
1000 goto error;
1001 }
1002 get_page(page);
1003 skb_fill_page_desc(skb, i, page, sk->sk_sndmsg_off, 0);
1004 frag = &skb_shinfo(skb)->frags[i];
1005 }
1006 } else if (i < MAX_SKB_FRAGS) {
1007 if (copy > PAGE_SIZE)
1008 copy = PAGE_SIZE;
1009 page = alloc_pages(sk->sk_allocation, 0);
1010 if (page == NULL) {
1011 err = -ENOMEM;
1012 goto error;
1013 }
1014 sk->sk_sndmsg_page = page;
1015 sk->sk_sndmsg_off = 0;
1016
1017 skb_fill_page_desc(skb, i, page, 0, 0);
1018 frag = &skb_shinfo(skb)->frags[i];
1019 skb->truesize += PAGE_SIZE;
1020 atomic_add(PAGE_SIZE, &sk->sk_wmem_alloc);
1021 } else {
1022 err = -EMSGSIZE;
1023 goto error;
1024 }
1025 if (getfrag(from, page_address(frag->page)+frag->page_offset+frag->size, offset, copy, skb->len, skb) < 0) {
1026 err = -EFAULT;
1027 goto error;
1028 }
1029 sk->sk_sndmsg_off += copy;
1030 frag->size += copy;
1031 skb->len += copy;
1032 skb->data_len += copy;
1033 }
1034 offset += copy;
1035 length -= copy;
1036 }
1037
1038 return 0;
1039
1040error:
1041 inet->cork.length -= length;
1042 IP_INC_STATS(IPSTATS_MIB_OUTDISCARDS);
1043 return err;
1044}
1045
1046ssize_t ip_append_page(struct sock *sk, struct page *page,
1047 int offset, size_t size, int flags)
1048{
1049 struct inet_sock *inet = inet_sk(sk);
1050 struct sk_buff *skb;
1051 struct rtable *rt;
1052 struct ip_options *opt = NULL;
1053 int hh_len;
1054 int mtu;
1055 int len;
1056 int err;
1057 unsigned int maxfraglen, fragheaderlen, fraggap;
1058
1059 if (inet->hdrincl)
1060 return -EPERM;
1061
1062 if (flags&MSG_PROBE)
1063 return 0;
1064
1065 if (skb_queue_empty(&sk->sk_write_queue))
1066 return -EINVAL;
1067
1068 rt = inet->cork.rt;
1069 if (inet->cork.flags & IPCORK_OPT)
1070 opt = inet->cork.opt;
1071
1072 if (!(rt->u.dst.dev->features&NETIF_F_SG))
1073 return -EOPNOTSUPP;
1074
1075 hh_len = LL_RESERVED_SPACE(rt->u.dst.dev);
1076 mtu = inet->cork.fragsize;
1077
1078 fragheaderlen = sizeof(struct iphdr) + (opt ? opt->optlen : 0);
1079 maxfraglen = ((mtu - fragheaderlen) & ~7) + fragheaderlen;
1080
1081 if (inet->cork.length + size > 0xFFFF - fragheaderlen) {
1082 ip_local_error(sk, EMSGSIZE, rt->rt_dst, inet->dport, mtu);
1083 return -EMSGSIZE;
1084 }
1085
1086 if ((skb = skb_peek_tail(&sk->sk_write_queue)) == NULL)
1087 return -EINVAL;
1088
1089 inet->cork.length += size;
Ananda Rajue89e9cf2005-10-18 15:46:41 -07001090 if ((sk->sk_protocol == IPPROTO_UDP) &&
Herbert Xu79671682006-06-22 02:40:14 -07001091 (rt->u.dst.dev->features & NETIF_F_UFO)) {
1092 skb_shinfo(skb)->gso_size = mtu - fragheaderlen;
Herbert Xuf83ef8c2006-06-30 13:37:03 -07001093 skb_shinfo(skb)->gso_type = SKB_GSO_UDP;
Herbert Xu79671682006-06-22 02:40:14 -07001094 }
Ananda Rajue89e9cf2005-10-18 15:46:41 -07001095
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
1097 while (size > 0) {
1098 int i;
1099
Herbert Xu89114af2006-07-08 13:34:32 -07001100 if (skb_is_gso(skb))
Ananda Rajue89e9cf2005-10-18 15:46:41 -07001101 len = size;
1102 else {
1103
1104 /* Check if the remaining data fits into current packet. */
1105 len = mtu - skb->len;
1106 if (len < size)
1107 len = maxfraglen - skb->len;
1108 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 if (len <= 0) {
1110 struct sk_buff *skb_prev;
1111 char *data;
1112 struct iphdr *iph;
1113 int alloclen;
1114
1115 skb_prev = skb;
Jayachandran C0d0d2bb2005-10-13 11:43:02 -07001116 fraggap = skb_prev->len - maxfraglen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117
1118 alloclen = fragheaderlen + hh_len + fraggap + 15;
1119 skb = sock_wmalloc(sk, alloclen, 1, sk->sk_allocation);
1120 if (unlikely(!skb)) {
1121 err = -ENOBUFS;
1122 goto error;
1123 }
1124
1125 /*
1126 * Fill in the control structures
1127 */
1128 skb->ip_summed = CHECKSUM_NONE;
1129 skb->csum = 0;
1130 skb_reserve(skb, hh_len);
1131
1132 /*
1133 * Find where to start putting bytes.
1134 */
1135 data = skb_put(skb, fragheaderlen + fraggap);
1136 skb->nh.iph = iph = (struct iphdr *)data;
1137 data += fragheaderlen;
1138 skb->h.raw = data;
1139
1140 if (fraggap) {
1141 skb->csum = skb_copy_and_csum_bits(
1142 skb_prev, maxfraglen,
1143 data, fraggap, 0);
1144 skb_prev->csum = csum_sub(skb_prev->csum,
1145 skb->csum);
Herbert Xue9fa4f72006-08-13 20:12:58 -07001146 pskb_trim_unique(skb_prev, maxfraglen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 }
1148
1149 /*
1150 * Put the packet on the pending queue.
1151 */
1152 __skb_queue_tail(&sk->sk_write_queue, skb);
1153 continue;
1154 }
1155
1156 i = skb_shinfo(skb)->nr_frags;
1157 if (len > size)
1158 len = size;
1159 if (skb_can_coalesce(skb, i, page, offset)) {
1160 skb_shinfo(skb)->frags[i-1].size += len;
1161 } else if (i < MAX_SKB_FRAGS) {
1162 get_page(page);
1163 skb_fill_page_desc(skb, i, page, offset, len);
1164 } else {
1165 err = -EMSGSIZE;
1166 goto error;
1167 }
1168
1169 if (skb->ip_summed == CHECKSUM_NONE) {
1170 unsigned int csum;
1171 csum = csum_page(page, offset, len);
1172 skb->csum = csum_block_add(skb->csum, csum, skb->len);
1173 }
1174
1175 skb->len += len;
1176 skb->data_len += len;
1177 offset += len;
1178 size -= len;
1179 }
1180 return 0;
1181
1182error:
1183 inet->cork.length -= size;
1184 IP_INC_STATS(IPSTATS_MIB_OUTDISCARDS);
1185 return err;
1186}
1187
1188/*
1189 * Combined all pending IP fragments on the socket as one IP datagram
1190 * and push them out.
1191 */
1192int ip_push_pending_frames(struct sock *sk)
1193{
1194 struct sk_buff *skb, *tmp_skb;
1195 struct sk_buff **tail_skb;
1196 struct inet_sock *inet = inet_sk(sk);
1197 struct ip_options *opt = NULL;
1198 struct rtable *rt = inet->cork.rt;
1199 struct iphdr *iph;
Alexey Dobriyan76ab6082006-01-06 13:24:29 -08001200 __be16 df = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 __u8 ttl;
1202 int err = 0;
1203
1204 if ((skb = __skb_dequeue(&sk->sk_write_queue)) == NULL)
1205 goto out;
1206 tail_skb = &(skb_shinfo(skb)->frag_list);
1207
1208 /* move skb->data to ip header from ext header */
1209 if (skb->data < skb->nh.raw)
1210 __skb_pull(skb, skb->nh.raw - skb->data);
1211 while ((tmp_skb = __skb_dequeue(&sk->sk_write_queue)) != NULL) {
1212 __skb_pull(tmp_skb, skb->h.raw - skb->nh.raw);
1213 *tail_skb = tmp_skb;
1214 tail_skb = &(tmp_skb->next);
1215 skb->len += tmp_skb->len;
1216 skb->data_len += tmp_skb->len;
1217 skb->truesize += tmp_skb->truesize;
1218 __sock_put(tmp_skb->sk);
1219 tmp_skb->destructor = NULL;
1220 tmp_skb->sk = NULL;
1221 }
1222
1223 /* Unless user demanded real pmtu discovery (IP_PMTUDISC_DO), we allow
1224 * to fragment the frame generated here. No matter, what transforms
1225 * how transforms change size of the packet, it will come out.
1226 */
1227 if (inet->pmtudisc != IP_PMTUDISC_DO)
1228 skb->local_df = 1;
1229
1230 /* DF bit is set when we want to see DF on outgoing frames.
1231 * If local_df is set too, we still allow to fragment this frame
1232 * locally. */
1233 if (inet->pmtudisc == IP_PMTUDISC_DO ||
1234 (skb->len <= dst_mtu(&rt->u.dst) &&
1235 ip_dont_fragment(sk, &rt->u.dst)))
1236 df = htons(IP_DF);
1237
1238 if (inet->cork.flags & IPCORK_OPT)
1239 opt = inet->cork.opt;
1240
1241 if (rt->rt_type == RTN_MULTICAST)
1242 ttl = inet->mc_ttl;
1243 else
1244 ttl = ip_select_ttl(inet, &rt->u.dst);
1245
1246 iph = (struct iphdr *)skb->data;
1247 iph->version = 4;
1248 iph->ihl = 5;
1249 if (opt) {
1250 iph->ihl += opt->optlen>>2;
1251 ip_options_build(skb, opt, inet->cork.addr, rt, 0);
1252 }
1253 iph->tos = inet->tos;
1254 iph->tot_len = htons(skb->len);
1255 iph->frag_off = df;
Alexey Kuznetsov1a55d572006-03-22 14:27:59 -08001256 ip_select_ident(iph, &rt->u.dst, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 iph->ttl = ttl;
1258 iph->protocol = sk->sk_protocol;
1259 iph->saddr = rt->rt_src;
1260 iph->daddr = rt->rt_dst;
1261 ip_send_check(iph);
1262
1263 skb->priority = sk->sk_priority;
1264 skb->dst = dst_clone(&rt->u.dst);
1265
1266 /* Netfilter gets whole the not fragmented skb. */
1267 err = NF_HOOK(PF_INET, NF_IP_LOCAL_OUT, skb, NULL,
1268 skb->dst->dev, dst_output);
1269 if (err) {
1270 if (err > 0)
1271 err = inet->recverr ? net_xmit_errno(err) : 0;
1272 if (err)
1273 goto error;
1274 }
1275
1276out:
1277 inet->cork.flags &= ~IPCORK_OPT;
Jesper Juhla51482b2005-11-08 09:41:34 -08001278 kfree(inet->cork.opt);
1279 inet->cork.opt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 if (inet->cork.rt) {
1281 ip_rt_put(inet->cork.rt);
1282 inet->cork.rt = NULL;
1283 }
1284 return err;
1285
1286error:
1287 IP_INC_STATS(IPSTATS_MIB_OUTDISCARDS);
1288 goto out;
1289}
1290
1291/*
1292 * Throw away all pending data on the socket.
1293 */
1294void ip_flush_pending_frames(struct sock *sk)
1295{
1296 struct inet_sock *inet = inet_sk(sk);
1297 struct sk_buff *skb;
1298
1299 while ((skb = __skb_dequeue_tail(&sk->sk_write_queue)) != NULL)
1300 kfree_skb(skb);
1301
1302 inet->cork.flags &= ~IPCORK_OPT;
Jesper Juhla51482b2005-11-08 09:41:34 -08001303 kfree(inet->cork.opt);
1304 inet->cork.opt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 if (inet->cork.rt) {
1306 ip_rt_put(inet->cork.rt);
1307 inet->cork.rt = NULL;
1308 }
1309}
1310
1311
1312/*
1313 * Fetch data from kernel space and fill in checksum if needed.
1314 */
1315static int ip_reply_glue_bits(void *dptr, char *to, int offset,
1316 int len, int odd, struct sk_buff *skb)
1317{
1318 unsigned int csum;
1319
1320 csum = csum_partial_copy_nocheck(dptr+offset, to, len, 0);
1321 skb->csum = csum_block_add(skb->csum, csum, odd);
1322 return 0;
1323}
1324
1325/*
1326 * Generic function to send a packet as reply to another packet.
1327 * Used to send TCP resets so far. ICMP should use this function too.
1328 *
1329 * Should run single threaded per socket because it uses the sock
1330 * structure to pass arguments.
1331 *
1332 * LATER: switch from ip_build_xmit to ip_append_*
1333 */
1334void ip_send_reply(struct sock *sk, struct sk_buff *skb, struct ip_reply_arg *arg,
1335 unsigned int len)
1336{
1337 struct inet_sock *inet = inet_sk(sk);
1338 struct {
1339 struct ip_options opt;
1340 char data[40];
1341 } replyopts;
1342 struct ipcm_cookie ipc;
1343 u32 daddr;
1344 struct rtable *rt = (struct rtable*)skb->dst;
1345
1346 if (ip_options_echo(&replyopts.opt, skb))
1347 return;
1348
1349 daddr = ipc.addr = rt->rt_src;
1350 ipc.opt = NULL;
1351
1352 if (replyopts.opt.optlen) {
1353 ipc.opt = &replyopts.opt;
1354
1355 if (ipc.opt->srr)
1356 daddr = replyopts.opt.faddr;
1357 }
1358
1359 {
1360 struct flowi fl = { .nl_u = { .ip4_u =
1361 { .daddr = daddr,
1362 .saddr = rt->rt_spec_dst,
1363 .tos = RT_TOS(skb->nh.iph->tos) } },
1364 /* Not quite clean, but right. */
1365 .uli_u = { .ports =
1366 { .sport = skb->h.th->dest,
1367 .dport = skb->h.th->source } },
1368 .proto = sk->sk_protocol };
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -07001369 security_skb_classify_flow(skb, &fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 if (ip_route_output_key(&rt, &fl))
1371 return;
1372 }
1373
1374 /* And let IP do all the hard work.
1375
1376 This chunk is not reenterable, hence spinlock.
1377 Note that it uses the fact, that this function is called
1378 with locally disabled BH and that sk cannot be already spinlocked.
1379 */
1380 bh_lock_sock(sk);
1381 inet->tos = skb->nh.iph->tos;
1382 sk->sk_priority = skb->priority;
1383 sk->sk_protocol = skb->nh.iph->protocol;
1384 ip_append_data(sk, ip_reply_glue_bits, arg->iov->iov_base, len, 0,
1385 &ipc, rt, MSG_DONTWAIT);
1386 if ((skb = skb_peek(&sk->sk_write_queue)) != NULL) {
1387 if (arg->csumoffset >= 0)
1388 *((u16 *)skb->h.raw + arg->csumoffset) = csum_fold(csum_add(skb->csum, arg->csum));
1389 skb->ip_summed = CHECKSUM_NONE;
1390 ip_push_pending_frames(sk);
1391 }
1392
1393 bh_unlock_sock(sk);
1394
1395 ip_rt_put(rt);
1396}
1397
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398void __init ip_init(void)
1399{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 ip_rt_init();
1401 inet_initpeers();
1402
1403#if defined(CONFIG_IP_MULTICAST) && defined(CONFIG_PROC_FS)
1404 igmp_mc_proc_init();
1405#endif
1406}
1407
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408EXPORT_SYMBOL(ip_generic_getfrag);
1409EXPORT_SYMBOL(ip_queue_xmit);
1410EXPORT_SYMBOL(ip_send_check);