blob: 5a5b7d4ad31c86974c93aa36da1cc2d4dd8d23f6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * IPv6 output functions
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003 * Linux INET6 implementation
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * Authors:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09006 * Pedro Roque <roque@di.fc.ul.pt>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
8 * $Id: ip6_output.c,v 1.34 2002/02/01 22:01:04 davem Exp $
9 *
10 * Based on linux/net/ipv4/ip_output.c
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version
15 * 2 of the License, or (at your option) any later version.
16 *
17 * Changes:
18 * A.N.Kuznetsov : airthmetics in fragmentation.
19 * extension headers are implemented.
20 * route changes now work.
21 * ip6_forward does not confuse sniffers.
22 * etc.
23 *
24 * H. von Brand : Added missing #include <linux/string.h>
25 * Imran Patel : frag id should be in NBO
26 * Kazunori MIYAZAWA @USAGI
27 * : add ip6_append_data and related functions
28 * for datagram xmit
29 */
30
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/errno.h>
32#include <linux/types.h>
33#include <linux/string.h>
34#include <linux/socket.h>
35#include <linux/net.h>
36#include <linux/netdevice.h>
37#include <linux/if_arp.h>
38#include <linux/in6.h>
39#include <linux/tcp.h>
40#include <linux/route.h>
Herbert Xub59f45d2006-05-27 23:05:54 -070041#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43#include <linux/netfilter.h>
44#include <linux/netfilter_ipv6.h>
45
46#include <net/sock.h>
47#include <net/snmp.h>
48
49#include <net/ipv6.h>
50#include <net/ndisc.h>
51#include <net/protocol.h>
52#include <net/ip6_route.h>
53#include <net/addrconf.h>
54#include <net/rawv6.h>
55#include <net/icmp.h>
56#include <net/xfrm.h>
57#include <net/checksum.h>
58
59static int ip6_fragment(struct sk_buff *skb, int (*output)(struct sk_buff *));
60
61static __inline__ void ipv6_select_ident(struct sk_buff *skb, struct frag_hdr *fhdr)
62{
63 static u32 ipv6_fragmentation_id = 1;
64 static DEFINE_SPINLOCK(ip6_id_lock);
65
66 spin_lock_bh(&ip6_id_lock);
67 fhdr->identification = htonl(ipv6_fragmentation_id);
68 if (++ipv6_fragmentation_id == 0)
69 ipv6_fragmentation_id = 1;
70 spin_unlock_bh(&ip6_id_lock);
71}
72
73static inline int ip6_output_finish(struct sk_buff *skb)
74{
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 struct dst_entry *dst = skb->dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Stephen Hemminger3644f0c2006-12-07 15:08:17 -080077 if (dst->hh)
78 return neigh_hh_output(dst->hh, skb);
79 else if (dst->neighbour)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 return dst->neighbour->output(skb);
81
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +090082 IP6_INC_STATS_BH(ip6_dst_idev(dst), IPSTATS_MIB_OUTNOROUTES);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 kfree_skb(skb);
84 return -EINVAL;
85
86}
87
88/* dev_loopback_xmit for use with netfilter. */
89static int ip6_dev_loopback_xmit(struct sk_buff *newskb)
90{
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -070091 skb_reset_mac_header(newskb);
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -030092 __skb_pull(newskb, skb_network_offset(newskb));
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 newskb->pkt_type = PACKET_LOOPBACK;
94 newskb->ip_summed = CHECKSUM_UNNECESSARY;
95 BUG_TRAP(newskb->dst);
96
97 netif_rx(newskb);
98 return 0;
99}
100
101
102static int ip6_output2(struct sk_buff *skb)
103{
104 struct dst_entry *dst = skb->dst;
105 struct net_device *dev = dst->dev;
106
107 skb->protocol = htons(ETH_P_IPV6);
108 skb->dev = dev;
109
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700110 if (ipv6_addr_is_multicast(&ipv6_hdr(skb)->daddr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 struct ipv6_pinfo* np = skb->sk ? inet6_sk(skb->sk) : NULL;
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900112 struct inet6_dev *idev = ip6_dst_idev(skb->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114 if (!(dev->flags & IFF_LOOPBACK) && (!np || np->mc_loop) &&
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700115 ipv6_chk_mcast_addr(dev, &ipv6_hdr(skb)->daddr,
116 &ipv6_hdr(skb)->saddr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 struct sk_buff *newskb = skb_clone(skb, GFP_ATOMIC);
118
119 /* Do not check for IFF_ALLMULTI; multicast routing
120 is not supported in any case.
121 */
122 if (newskb)
123 NF_HOOK(PF_INET6, NF_IP6_POST_ROUTING, newskb, NULL,
124 newskb->dev,
125 ip6_dev_loopback_xmit);
126
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700127 if (ipv6_hdr(skb)->hop_limit == 0) {
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900128 IP6_INC_STATS(idev, IPSTATS_MIB_OUTDISCARDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 kfree_skb(skb);
130 return 0;
131 }
132 }
133
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900134 IP6_INC_STATS(idev, IPSTATS_MIB_OUTMCASTPKTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 }
136
137 return NF_HOOK(PF_INET6, NF_IP6_POST_ROUTING, skb,NULL, skb->dev,ip6_output_finish);
138}
139
140int ip6_output(struct sk_buff *skb)
141{
Herbert Xu89114af2006-07-08 13:34:32 -0700142 if ((skb->len > dst_mtu(skb->dst) && !skb_is_gso(skb)) ||
Ananda Rajue89e9cf2005-10-18 15:46:41 -0700143 dst_allfrag(skb->dst))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 return ip6_fragment(skb, ip6_output2);
145 else
146 return ip6_output2(skb);
147}
148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149/*
150 * xmit an sk_buff (used by TCP)
151 */
152
153int ip6_xmit(struct sock *sk, struct sk_buff *skb, struct flowi *fl,
154 struct ipv6_txoptions *opt, int ipfragok)
155{
Patrick McHardyb30bd282006-03-23 01:17:25 -0800156 struct ipv6_pinfo *np = inet6_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 struct in6_addr *first_hop = &fl->fl6_dst;
158 struct dst_entry *dst = skb->dst;
159 struct ipv6hdr *hdr;
160 u8 proto = fl->proto;
161 int seg_len = skb->len;
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900162 int hlimit, tclass;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 u32 mtu;
164
165 if (opt) {
166 int head_room;
167
168 /* First: exthdrs may take lots of space (~8K for now)
169 MAX_HEADER is not enough.
170 */
171 head_room = opt->opt_nflen + opt->opt_flen;
172 seg_len += head_room;
173 head_room += sizeof(struct ipv6hdr) + LL_RESERVED_SPACE(dst->dev);
174
175 if (skb_headroom(skb) < head_room) {
176 struct sk_buff *skb2 = skb_realloc_headroom(skb, head_room);
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900177 if (skb2 == NULL) {
178 IP6_INC_STATS(ip6_dst_idev(skb->dst),
179 IPSTATS_MIB_OUTDISCARDS);
180 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 return -ENOBUFS;
182 }
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900183 kfree_skb(skb);
184 skb = skb2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 if (sk)
186 skb_set_owner_w(skb, sk);
187 }
188 if (opt->opt_flen)
189 ipv6_push_frag_opts(skb, opt, &proto);
190 if (opt->opt_nflen)
191 ipv6_push_nfrag_opts(skb, opt, &proto, &first_hop);
192 }
193
Arnaldo Carvalho de Meloe2d1bca2007-04-10 20:46:21 -0700194 skb_push(skb, sizeof(struct ipv6hdr));
195 skb_reset_network_header(skb);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700196 hdr = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
198 /*
199 * Fill in the IPv6 header
200 */
201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 hlimit = -1;
203 if (np)
204 hlimit = np->hop_limit;
205 if (hlimit < 0)
206 hlimit = dst_metric(dst, RTAX_HOPLIMIT);
207 if (hlimit < 0)
208 hlimit = ipv6_get_hoplimit(dst->dev);
209
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900210 tclass = -1;
211 if (np)
212 tclass = np->tclass;
213 if (tclass < 0)
214 tclass = 0;
215
Al Viro90bcaf72006-11-08 00:25:17 -0800216 *(__be32 *)hdr = htonl(0x60000000 | (tclass << 20)) | fl->fl6_flowlabel;
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900217
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 hdr->payload_len = htons(seg_len);
219 hdr->nexthdr = proto;
220 hdr->hop_limit = hlimit;
221
222 ipv6_addr_copy(&hdr->saddr, &fl->fl6_src);
223 ipv6_addr_copy(&hdr->daddr, first_hop);
224
Patrick McHardya2c20642006-01-08 22:37:26 -0800225 skb->priority = sk->sk_priority;
226
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 mtu = dst_mtu(dst);
Herbert Xu89114af2006-07-08 13:34:32 -0700228 if ((skb->len <= mtu) || ipfragok || skb_is_gso(skb)) {
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900229 IP6_INC_STATS(ip6_dst_idev(skb->dst),
230 IPSTATS_MIB_OUTREQUESTS);
Harald Welte6869c4d2005-08-09 19:24:19 -0700231 return NF_HOOK(PF_INET6, NF_IP6_LOCAL_OUT, skb, NULL, dst->dev,
232 dst_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 }
234
235 if (net_ratelimit())
236 printk(KERN_DEBUG "IPv6: sending pkt_too_big to self\n");
237 skb->dev = dst->dev;
238 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu, skb->dev);
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900239 IP6_INC_STATS(ip6_dst_idev(skb->dst), IPSTATS_MIB_FRAGFAILS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 kfree_skb(skb);
241 return -EMSGSIZE;
242}
243
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +0900244EXPORT_SYMBOL(ip6_xmit);
245
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246/*
247 * To avoid extra problems ND packets are send through this
248 * routine. It's code duplication but I really want to avoid
249 * extra checks since ipv6_build_header is used by TCP (which
250 * is for us performance critical)
251 */
252
253int ip6_nd_hdr(struct sock *sk, struct sk_buff *skb, struct net_device *dev,
254 struct in6_addr *saddr, struct in6_addr *daddr,
255 int proto, int len)
256{
257 struct ipv6_pinfo *np = inet6_sk(sk);
258 struct ipv6hdr *hdr;
259 int totlen;
260
261 skb->protocol = htons(ETH_P_IPV6);
262 skb->dev = dev;
263
264 totlen = len + sizeof(struct ipv6hdr);
265
Arnaldo Carvalho de Melo55f79cc2007-03-14 21:05:03 -0300266 skb_reset_network_header(skb);
267 skb_put(skb, sizeof(struct ipv6hdr));
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700268 hdr = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Al Viroae08e1f2006-11-08 00:27:11 -0800270 *(__be32*)hdr = htonl(0x60000000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
272 hdr->payload_len = htons(len);
273 hdr->nexthdr = proto;
274 hdr->hop_limit = np->hop_limit;
275
276 ipv6_addr_copy(&hdr->saddr, saddr);
277 ipv6_addr_copy(&hdr->daddr, daddr);
278
279 return 0;
280}
281
282static int ip6_call_ra_chain(struct sk_buff *skb, int sel)
283{
284 struct ip6_ra_chain *ra;
285 struct sock *last = NULL;
286
287 read_lock(&ip6_ra_lock);
288 for (ra = ip6_ra_chain; ra; ra = ra->next) {
289 struct sock *sk = ra->sk;
Andrew McDonald0bd1b592005-08-09 19:44:42 -0700290 if (sk && ra->sel == sel &&
291 (!sk->sk_bound_dev_if ||
292 sk->sk_bound_dev_if == skb->dev->ifindex)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 if (last) {
294 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
295 if (skb2)
296 rawv6_rcv(last, skb2);
297 }
298 last = sk;
299 }
300 }
301
302 if (last) {
303 rawv6_rcv(last, skb);
304 read_unlock(&ip6_ra_lock);
305 return 1;
306 }
307 read_unlock(&ip6_ra_lock);
308 return 0;
309}
310
Ville Nuorvalae21e0b52006-09-22 14:41:44 -0700311static int ip6_forward_proxy_check(struct sk_buff *skb)
312{
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700313 struct ipv6hdr *hdr = ipv6_hdr(skb);
Ville Nuorvalae21e0b52006-09-22 14:41:44 -0700314 u8 nexthdr = hdr->nexthdr;
315 int offset;
316
317 if (ipv6_ext_hdr(nexthdr)) {
318 offset = ipv6_skip_exthdr(skb, sizeof(*hdr), &nexthdr);
319 if (offset < 0)
320 return 0;
321 } else
322 offset = sizeof(struct ipv6hdr);
323
324 if (nexthdr == IPPROTO_ICMPV6) {
325 struct icmp6hdr *icmp6;
326
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700327 if (!pskb_may_pull(skb, (skb_network_header(skb) +
328 offset + 1 - skb->data)))
Ville Nuorvalae21e0b52006-09-22 14:41:44 -0700329 return 0;
330
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700331 icmp6 = (struct icmp6hdr *)(skb_network_header(skb) + offset);
Ville Nuorvalae21e0b52006-09-22 14:41:44 -0700332
333 switch (icmp6->icmp6_type) {
334 case NDISC_ROUTER_SOLICITATION:
335 case NDISC_ROUTER_ADVERTISEMENT:
336 case NDISC_NEIGHBOUR_SOLICITATION:
337 case NDISC_NEIGHBOUR_ADVERTISEMENT:
338 case NDISC_REDIRECT:
339 /* For reaction involving unicast neighbor discovery
340 * message destined to the proxied address, pass it to
341 * input function.
342 */
343 return 1;
344 default:
345 break;
346 }
347 }
348
Ville Nuorvala74553b02006-09-22 14:42:18 -0700349 /*
350 * The proxying router can't forward traffic sent to a link-local
351 * address, so signal the sender and discard the packet. This
352 * behavior is clarified by the MIPv6 specification.
353 */
354 if (ipv6_addr_type(&hdr->daddr) & IPV6_ADDR_LINKLOCAL) {
355 dst_link_failure(skb);
356 return -1;
357 }
358
Ville Nuorvalae21e0b52006-09-22 14:41:44 -0700359 return 0;
360}
361
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362static inline int ip6_forward_finish(struct sk_buff *skb)
363{
364 return dst_output(skb);
365}
366
367int ip6_forward(struct sk_buff *skb)
368{
369 struct dst_entry *dst = skb->dst;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700370 struct ipv6hdr *hdr = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 struct inet6_skb_parm *opt = IP6CB(skb);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900372
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 if (ipv6_devconf.forwarding == 0)
374 goto error;
375
376 if (!xfrm6_policy_check(NULL, XFRM_POLICY_FWD, skb)) {
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900377 IP6_INC_STATS(ip6_dst_idev(dst), IPSTATS_MIB_INDISCARDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 goto drop;
379 }
380
Herbert Xu35fc92a2007-03-26 23:22:20 -0700381 skb_forward_csum(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
383 /*
384 * We DO NOT make any processing on
385 * RA packets, pushing them to user level AS IS
386 * without ane WARRANTY that application will be able
387 * to interpret them. The reason is that we
388 * cannot make anything clever here.
389 *
390 * We are not end-node, so that if packet contains
391 * AH/ESP, we cannot make anything.
392 * Defragmentation also would be mistake, RA packets
393 * cannot be fragmented, because there is no warranty
394 * that different fragments will go along one path. --ANK
395 */
396 if (opt->ra) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700397 u8 *ptr = skb_network_header(skb) + opt->ra;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 if (ip6_call_ra_chain(skb, (ptr[2]<<8) + ptr[3]))
399 return 0;
400 }
401
402 /*
403 * check and decrement ttl
404 */
405 if (hdr->hop_limit <= 1) {
406 /* Force OUTPUT device used as source address */
407 skb->dev = dst->dev;
408 icmpv6_send(skb, ICMPV6_TIME_EXCEED, ICMPV6_EXC_HOPLIMIT,
409 0, skb->dev);
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900410 IP6_INC_STATS_BH(ip6_dst_idev(dst), IPSTATS_MIB_INHDRERRORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
412 kfree_skb(skb);
413 return -ETIMEDOUT;
414 }
415
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -0700416 /* XXX: idev->cnf.proxy_ndp? */
417 if (ipv6_devconf.proxy_ndp &&
418 pneigh_lookup(&nd_tbl, &hdr->daddr, skb->dev, 0)) {
Ville Nuorvala74553b02006-09-22 14:42:18 -0700419 int proxied = ip6_forward_proxy_check(skb);
420 if (proxied > 0)
Ville Nuorvalae21e0b52006-09-22 14:41:44 -0700421 return ip6_input(skb);
Ville Nuorvala74553b02006-09-22 14:42:18 -0700422 else if (proxied < 0) {
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900423 IP6_INC_STATS(ip6_dst_idev(dst), IPSTATS_MIB_INDISCARDS);
Ville Nuorvala74553b02006-09-22 14:42:18 -0700424 goto drop;
425 }
Ville Nuorvalae21e0b52006-09-22 14:41:44 -0700426 }
427
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 if (!xfrm6_route_forward(skb)) {
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900429 IP6_INC_STATS(ip6_dst_idev(dst), IPSTATS_MIB_INDISCARDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 goto drop;
431 }
432 dst = skb->dst;
433
434 /* IPv6 specs say nothing about it, but it is clear that we cannot
435 send redirects to source routed frames.
436 */
437 if (skb->dev == dst->dev && dst->neighbour && opt->srcrt == 0) {
438 struct in6_addr *target = NULL;
439 struct rt6_info *rt;
440 struct neighbour *n = dst->neighbour;
441
442 /*
443 * incoming and outgoing devices are the same
444 * send a redirect.
445 */
446
447 rt = (struct rt6_info *) dst;
448 if ((rt->rt6i_flags & RTF_GATEWAY))
449 target = (struct in6_addr*)&n->primary_key;
450 else
451 target = &hdr->daddr;
452
453 /* Limit redirects both by destination (here)
454 and by source (inside ndisc_send_redirect)
455 */
456 if (xrlim_allow(dst, 1*HZ))
457 ndisc_send_redirect(skb, n, target);
458 } else if (ipv6_addr_type(&hdr->saddr)&(IPV6_ADDR_MULTICAST|IPV6_ADDR_LOOPBACK
459 |IPV6_ADDR_LINKLOCAL)) {
460 /* This check is security critical. */
461 goto error;
462 }
463
464 if (skb->len > dst_mtu(dst)) {
465 /* Again, force OUTPUT device used as source address */
466 skb->dev = dst->dev;
467 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, dst_mtu(dst), skb->dev);
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900468 IP6_INC_STATS_BH(ip6_dst_idev(dst), IPSTATS_MIB_INTOOBIGERRORS);
469 IP6_INC_STATS_BH(ip6_dst_idev(dst), IPSTATS_MIB_FRAGFAILS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 kfree_skb(skb);
471 return -EMSGSIZE;
472 }
473
474 if (skb_cow(skb, dst->dev->hard_header_len)) {
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900475 IP6_INC_STATS(ip6_dst_idev(dst), IPSTATS_MIB_OUTDISCARDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 goto drop;
477 }
478
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700479 hdr = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
481 /* Mangling hops number delayed to point after skb COW */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 hdr->hop_limit--;
484
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900485 IP6_INC_STATS_BH(ip6_dst_idev(dst), IPSTATS_MIB_OUTFORWDATAGRAMS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 return NF_HOOK(PF_INET6,NF_IP6_FORWARD, skb, skb->dev, dst->dev, ip6_forward_finish);
487
488error:
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900489 IP6_INC_STATS_BH(ip6_dst_idev(dst), IPSTATS_MIB_INADDRERRORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490drop:
491 kfree_skb(skb);
492 return -EINVAL;
493}
494
495static void ip6_copy_metadata(struct sk_buff *to, struct sk_buff *from)
496{
497 to->pkt_type = from->pkt_type;
498 to->priority = from->priority;
499 to->protocol = from->protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 dst_release(to->dst);
501 to->dst = dst_clone(from->dst);
502 to->dev = from->dev;
Thomas Graf82e91ff2006-11-09 15:19:14 -0800503 to->mark = from->mark;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
505#ifdef CONFIG_NET_SCHED
506 to->tc_index = from->tc_index;
507#endif
Yasuyuki Kozakaie7ac05f2007-03-14 16:44:01 -0700508 nf_copy(to, from);
James Morris984bc162006-06-09 00:29:17 -0700509 skb_copy_secmark(to, from);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510}
511
512int ip6_find_1stfragopt(struct sk_buff *skb, u8 **nexthdr)
513{
514 u16 offset = sizeof(struct ipv6hdr);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700515 struct ipv6_opt_hdr *exthdr =
516 (struct ipv6_opt_hdr *)(ipv6_hdr(skb) + 1);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700517 unsigned int packet_len = skb->tail - skb->network_header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 int found_rhdr = 0;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700519 *nexthdr = &ipv6_hdr(skb)->nexthdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
521 while (offset + 1 <= packet_len) {
522
523 switch (**nexthdr) {
524
525 case NEXTHDR_HOP:
Masahide NAKAMURA27637df2006-08-23 19:29:47 -0700526 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 case NEXTHDR_ROUTING:
Masahide NAKAMURA27637df2006-08-23 19:29:47 -0700528 found_rhdr = 1;
529 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 case NEXTHDR_DEST:
Masahide NAKAMURA27637df2006-08-23 19:29:47 -0700531#ifdef CONFIG_IPV6_MIP6
532 if (ipv6_find_tlv(skb, offset, IPV6_TLV_HAO) >= 0)
533 break;
534#endif
535 if (found_rhdr)
536 return offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 break;
538 default :
539 return offset;
540 }
Masahide NAKAMURA27637df2006-08-23 19:29:47 -0700541
542 offset += ipv6_optlen(exthdr);
543 *nexthdr = &exthdr->nexthdr;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700544 exthdr = (struct ipv6_opt_hdr *)(skb_network_header(skb) +
545 offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 }
547
548 return offset;
549}
Herbert Xub59f45d2006-05-27 23:05:54 -0700550EXPORT_SYMBOL_GPL(ip6_find_1stfragopt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
552static int ip6_fragment(struct sk_buff *skb, int (*output)(struct sk_buff *))
553{
554 struct net_device *dev;
555 struct sk_buff *frag;
556 struct rt6_info *rt = (struct rt6_info*)skb->dst;
YOSHIFUJI Hideakid91675f2006-02-24 13:18:33 -0800557 struct ipv6_pinfo *np = skb->sk ? inet6_sk(skb->sk) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 struct ipv6hdr *tmp_hdr;
559 struct frag_hdr *fh;
560 unsigned int mtu, hlen, left, len;
Al Viroae08e1f2006-11-08 00:27:11 -0800561 __be32 frag_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 int ptr, offset = 0, err=0;
563 u8 *prevhdr, nexthdr = 0;
564
565 dev = rt->u.dst.dev;
566 hlen = ip6_find_1stfragopt(skb, &prevhdr);
567 nexthdr = *prevhdr;
568
YOSHIFUJI Hideakid91675f2006-02-24 13:18:33 -0800569 mtu = dst_mtu(&rt->u.dst);
John Heffnerb881ef72007-04-20 15:52:39 -0700570
571 /* We must not fragment if the socket is set to force MTU discovery
572 * or if the skb it not generated by a local socket. (This last
573 * check should be redundant, but it's free.)
574 */
575 if (!np || np->pmtudisc >= IPV6_PMTUDISC_DO) {
576 skb->dev = skb->dst->dev;
577 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu, skb->dev);
578 IP6_INC_STATS(ip6_dst_idev(skb->dst), IPSTATS_MIB_FRAGFAILS);
579 kfree_skb(skb);
580 return -EMSGSIZE;
581 }
582
YOSHIFUJI Hideakid91675f2006-02-24 13:18:33 -0800583 if (np && np->frag_size < mtu) {
584 if (np->frag_size)
585 mtu = np->frag_size;
586 }
587 mtu -= hlen + sizeof(struct frag_hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
589 if (skb_shinfo(skb)->frag_list) {
590 int first_len = skb_pagelen(skb);
591
592 if (first_len - hlen > mtu ||
593 ((first_len - hlen) & 7) ||
594 skb_cloned(skb))
595 goto slow_path;
596
597 for (frag = skb_shinfo(skb)->frag_list; frag; frag = frag->next) {
598 /* Correct geometry. */
599 if (frag->len > mtu ||
600 ((frag->len & 7) && frag->next) ||
601 skb_headroom(frag) < hlen)
602 goto slow_path;
603
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 /* Partially cloned skb? */
605 if (skb_shared(frag))
606 goto slow_path;
Herbert Xu2fdba6b2005-05-18 22:52:33 -0700607
608 BUG_ON(frag->sk);
609 if (skb->sk) {
610 sock_hold(skb->sk);
611 frag->sk = skb->sk;
612 frag->destructor = sock_wfree;
613 skb->truesize -= frag->truesize;
614 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 }
616
617 err = 0;
618 offset = 0;
619 frag = skb_shinfo(skb)->frag_list;
620 skb_shinfo(skb)->frag_list = NULL;
621 /* BUILD HEADER */
622
YOSHIFUJI Hideaki9a217a12006-12-05 13:47:21 -0800623 *prevhdr = NEXTHDR_FRAGMENT;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700624 tmp_hdr = kmemdup(skb_network_header(skb), hlen, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 if (!tmp_hdr) {
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900626 IP6_INC_STATS(ip6_dst_idev(skb->dst), IPSTATS_MIB_FRAGFAILS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 return -ENOMEM;
628 }
629
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 __skb_pull(skb, hlen);
631 fh = (struct frag_hdr*)__skb_push(skb, sizeof(struct frag_hdr));
Arnaldo Carvalho de Meloe2d1bca2007-04-10 20:46:21 -0700632 __skb_push(skb, hlen);
633 skb_reset_network_header(skb);
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700634 memcpy(skb_network_header(skb), tmp_hdr, hlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
636 ipv6_select_ident(skb, fh);
637 fh->nexthdr = nexthdr;
638 fh->reserved = 0;
639 fh->frag_off = htons(IP6_MF);
640 frag_id = fh->identification;
641
642 first_len = skb_pagelen(skb);
643 skb->data_len = first_len - skb_headlen(skb);
644 skb->len = first_len;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700645 ipv6_hdr(skb)->payload_len = htons(first_len -
646 sizeof(struct ipv6hdr));
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900647
648 dst_hold(&rt->u.dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
650 for (;;) {
651 /* Prepare header of the next frame,
652 * before previous one went down. */
653 if (frag) {
654 frag->ip_summed = CHECKSUM_NONE;
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -0300655 skb_reset_transport_header(frag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 fh = (struct frag_hdr*)__skb_push(frag, sizeof(struct frag_hdr));
Arnaldo Carvalho de Meloe2d1bca2007-04-10 20:46:21 -0700657 __skb_push(frag, hlen);
658 skb_reset_network_header(frag);
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700659 memcpy(skb_network_header(frag), tmp_hdr,
660 hlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 offset += skb->len - hlen - sizeof(struct frag_hdr);
662 fh->nexthdr = nexthdr;
663 fh->reserved = 0;
664 fh->frag_off = htons(offset);
665 if (frag->next != NULL)
666 fh->frag_off |= htons(IP6_MF);
667 fh->identification = frag_id;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700668 ipv6_hdr(frag)->payload_len =
669 htons(frag->len -
670 sizeof(struct ipv6hdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 ip6_copy_metadata(frag, skb);
672 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900673
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 err = output(skb);
Wei Dongdafee492006-08-02 13:41:21 -0700675 if(!err)
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900676 IP6_INC_STATS(ip6_dst_idev(&rt->u.dst), IPSTATS_MIB_FRAGCREATES);
Wei Dongdafee492006-08-02 13:41:21 -0700677
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 if (err || !frag)
679 break;
680
681 skb = frag;
682 frag = skb->next;
683 skb->next = NULL;
684 }
685
Jesper Juhla51482b2005-11-08 09:41:34 -0800686 kfree(tmp_hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
688 if (err == 0) {
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900689 IP6_INC_STATS(ip6_dst_idev(&rt->u.dst), IPSTATS_MIB_FRAGOKS);
690 dst_release(&rt->u.dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 return 0;
692 }
693
694 while (frag) {
695 skb = frag->next;
696 kfree_skb(frag);
697 frag = skb;
698 }
699
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900700 IP6_INC_STATS(ip6_dst_idev(&rt->u.dst), IPSTATS_MIB_FRAGFAILS);
701 dst_release(&rt->u.dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 return err;
703 }
704
705slow_path:
706 left = skb->len - hlen; /* Space per frame */
707 ptr = hlen; /* Where to start from */
708
709 /*
710 * Fragment the datagram.
711 */
712
713 *prevhdr = NEXTHDR_FRAGMENT;
714
715 /*
716 * Keep copying data until we run out.
717 */
718 while(left > 0) {
719 len = left;
720 /* IF: it doesn't fit, use 'mtu' - the data space left */
721 if (len > mtu)
722 len = mtu;
723 /* IF: we are not sending upto and including the packet end
724 then align the next start on an eight byte boundary */
725 if (len < left) {
726 len &= ~7;
727 }
728 /*
729 * Allocate buffer.
730 */
731
732 if ((frag = alloc_skb(len+hlen+sizeof(struct frag_hdr)+LL_RESERVED_SPACE(rt->u.dst.dev), GFP_ATOMIC)) == NULL) {
Patrick McHardy64ce2072005-08-09 20:50:53 -0700733 NETDEBUG(KERN_INFO "IPv6: frag: no memory for new fragment!\n");
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900734 IP6_INC_STATS(ip6_dst_idev(skb->dst),
735 IPSTATS_MIB_FRAGFAILS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 err = -ENOMEM;
737 goto fail;
738 }
739
740 /*
741 * Set up data on packet
742 */
743
744 ip6_copy_metadata(frag, skb);
745 skb_reserve(frag, LL_RESERVED_SPACE(rt->u.dst.dev));
746 skb_put(frag, len + hlen + sizeof(struct frag_hdr));
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700747 skb_reset_network_header(frag);
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -0300748 fh = (struct frag_hdr *)(skb_network_header(frag) + hlen);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700749 frag->transport_header = (frag->network_header + hlen +
750 sizeof(struct frag_hdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
752 /*
753 * Charge the memory for the fragment to any owner
754 * it might possess
755 */
756 if (skb->sk)
757 skb_set_owner_w(frag, skb->sk);
758
759 /*
760 * Copy the packet header into the new buffer.
761 */
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300762 skb_copy_from_linear_data(skb, skb_network_header(frag), hlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
764 /*
765 * Build fragment header.
766 */
767 fh->nexthdr = nexthdr;
768 fh->reserved = 0;
Yan Zhengf36d6ab2005-10-03 14:19:15 -0700769 if (!frag_id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 ipv6_select_ident(skb, fh);
771 frag_id = fh->identification;
772 } else
773 fh->identification = frag_id;
774
775 /*
776 * Copy a block of the IP datagram.
777 */
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700778 if (skb_copy_bits(skb, ptr, skb_transport_header(skb), len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 BUG();
780 left -= len;
781
782 fh->frag_off = htons(offset);
783 if (left > 0)
784 fh->frag_off |= htons(IP6_MF);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700785 ipv6_hdr(frag)->payload_len = htons(frag->len -
786 sizeof(struct ipv6hdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
788 ptr += len;
789 offset += len;
790
791 /*
792 * Put this fragment into the sending queue.
793 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 err = output(frag);
795 if (err)
796 goto fail;
Wei Dongdafee492006-08-02 13:41:21 -0700797
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900798 IP6_INC_STATS(ip6_dst_idev(skb->dst), IPSTATS_MIB_FRAGCREATES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 }
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900800 IP6_INC_STATS(ip6_dst_idev(skb->dst),
801 IPSTATS_MIB_FRAGOKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 return err;
804
805fail:
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900806 IP6_INC_STATS(ip6_dst_idev(skb->dst),
807 IPSTATS_MIB_FRAGFAILS);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900808 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 return err;
810}
811
YOSHIFUJI Hideakicf6b1982006-08-23 17:19:18 -0700812static inline int ip6_rt_check(struct rt6key *rt_key,
813 struct in6_addr *fl_addr,
814 struct in6_addr *addr_cache)
815{
816 return ((rt_key->plen != 128 || !ipv6_addr_equal(fl_addr, &rt_key->addr)) &&
817 (addr_cache == NULL || !ipv6_addr_equal(fl_addr, addr_cache)));
818}
819
Herbert Xu497c6152006-07-30 20:19:33 -0700820static struct dst_entry *ip6_sk_dst_check(struct sock *sk,
821 struct dst_entry *dst,
822 struct flowi *fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823{
Herbert Xu497c6152006-07-30 20:19:33 -0700824 struct ipv6_pinfo *np = inet6_sk(sk);
825 struct rt6_info *rt = (struct rt6_info *)dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
Herbert Xu497c6152006-07-30 20:19:33 -0700827 if (!dst)
828 goto out;
829
830 /* Yes, checking route validity in not connected
831 * case is not very simple. Take into account,
832 * that we do not support routing by source, TOS,
833 * and MSG_DONTROUTE --ANK (980726)
834 *
YOSHIFUJI Hideakicf6b1982006-08-23 17:19:18 -0700835 * 1. ip6_rt_check(): If route was host route,
836 * check that cached destination is current.
Herbert Xu497c6152006-07-30 20:19:33 -0700837 * If it is network route, we still may
838 * check its validity using saved pointer
839 * to the last used address: daddr_cache.
840 * We do not want to save whole address now,
841 * (because main consumer of this service
842 * is tcp, which has not this problem),
843 * so that the last trick works only on connected
844 * sockets.
845 * 2. oif also should be the same.
846 */
YOSHIFUJI Hideakicf6b1982006-08-23 17:19:18 -0700847 if (ip6_rt_check(&rt->rt6i_dst, &fl->fl6_dst, np->daddr_cache) ||
YOSHIFUJI Hideaki8e1ef0a2006-08-29 17:15:09 -0700848#ifdef CONFIG_IPV6_SUBTREES
849 ip6_rt_check(&rt->rt6i_src, &fl->fl6_src, np->saddr_cache) ||
850#endif
YOSHIFUJI Hideakicf6b1982006-08-23 17:19:18 -0700851 (fl->oif && fl->oif != dst->dev->ifindex)) {
Herbert Xu497c6152006-07-30 20:19:33 -0700852 dst_release(dst);
853 dst = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 }
855
Herbert Xu497c6152006-07-30 20:19:33 -0700856out:
857 return dst;
858}
859
860static int ip6_dst_lookup_tail(struct sock *sk,
861 struct dst_entry **dst, struct flowi *fl)
862{
863 int err;
864
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 if (*dst == NULL)
866 *dst = ip6_route_output(sk, fl);
867
868 if ((err = (*dst)->error))
869 goto out_err_release;
870
871 if (ipv6_addr_any(&fl->fl6_src)) {
872 err = ipv6_get_saddr(*dst, &fl->fl6_dst, &fl->fl6_src);
Olaf Hering44456d32005-07-27 11:45:17 -0700873 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 goto out_err_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 }
876
Neil Horman95c385b2007-04-25 17:08:10 -0700877#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
878 /*
879 * Here if the dst entry we've looked up
880 * has a neighbour entry that is in the INCOMPLETE
881 * state and the src address from the flow is
882 * marked as OPTIMISTIC, we release the found
883 * dst entry and replace it instead with the
884 * dst entry of the nexthop router
885 */
886 if (!((*dst)->neighbour->nud_state & NUD_VALID)) {
887 struct inet6_ifaddr *ifp;
888 struct flowi fl_gw;
889 int redirect;
890
891 ifp = ipv6_get_ifaddr(&fl->fl6_src, (*dst)->dev, 1);
892
893 redirect = (ifp && ifp->flags & IFA_F_OPTIMISTIC);
894 if (ifp)
895 in6_ifa_put(ifp);
896
897 if (redirect) {
898 /*
899 * We need to get the dst entry for the
900 * default router instead
901 */
902 dst_release(*dst);
903 memcpy(&fl_gw, fl, sizeof(struct flowi));
904 memset(&fl_gw.fl6_dst, 0, sizeof(struct in6_addr));
905 *dst = ip6_route_output(sk, &fl_gw);
906 if ((err = (*dst)->error))
907 goto out_err_release;
908 }
909 }
910#endif
911
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 return 0;
913
914out_err_release:
915 dst_release(*dst);
916 *dst = NULL;
917 return err;
918}
Adrian Bunk34a0b3c2005-11-29 16:28:56 -0800919
Herbert Xu497c6152006-07-30 20:19:33 -0700920/**
921 * ip6_dst_lookup - perform route lookup on flow
922 * @sk: socket which provides route info
923 * @dst: pointer to dst_entry * for result
924 * @fl: flow to lookup
925 *
926 * This function performs a route lookup on the given flow.
927 *
928 * It returns zero on success, or a standard errno code on error.
929 */
930int ip6_dst_lookup(struct sock *sk, struct dst_entry **dst, struct flowi *fl)
931{
932 *dst = NULL;
933 return ip6_dst_lookup_tail(sk, dst, fl);
934}
Arnaldo Carvalho de Melo3cf3dc62005-12-13 23:23:20 -0800935EXPORT_SYMBOL_GPL(ip6_dst_lookup);
936
Herbert Xu497c6152006-07-30 20:19:33 -0700937/**
938 * ip6_sk_dst_lookup - perform socket cached route lookup on flow
939 * @sk: socket which provides the dst cache and route info
940 * @dst: pointer to dst_entry * for result
941 * @fl: flow to lookup
942 *
943 * This function performs a route lookup on the given flow with the
944 * possibility of using the cached route in the socket if it is valid.
945 * It will take the socket dst lock when operating on the dst cache.
946 * As a result, this function can only be used in process context.
947 *
948 * It returns zero on success, or a standard errno code on error.
949 */
950int ip6_sk_dst_lookup(struct sock *sk, struct dst_entry **dst, struct flowi *fl)
951{
952 *dst = NULL;
953 if (sk) {
954 *dst = sk_dst_check(sk, inet6_sk(sk)->dst_cookie);
955 *dst = ip6_sk_dst_check(sk, *dst, fl);
956 }
957
958 return ip6_dst_lookup_tail(sk, dst, fl);
959}
960EXPORT_SYMBOL_GPL(ip6_sk_dst_lookup);
961
Adrian Bunk34a0b3c2005-11-29 16:28:56 -0800962static inline int ip6_ufo_append_data(struct sock *sk,
Ananda Rajue89e9cf2005-10-18 15:46:41 -0700963 int getfrag(void *from, char *to, int offset, int len,
964 int odd, struct sk_buff *skb),
965 void *from, int length, int hh_len, int fragheaderlen,
966 int transhdrlen, int mtu,unsigned int flags)
967
968{
969 struct sk_buff *skb;
970 int err;
971
972 /* There is support for UDP large send offload by network
973 * device, so create one single skb packet containing complete
974 * udp datagram
975 */
976 if ((skb = skb_peek_tail(&sk->sk_write_queue)) == NULL) {
977 skb = sock_alloc_send_skb(sk,
978 hh_len + fragheaderlen + transhdrlen + 20,
979 (flags & MSG_DONTWAIT), &err);
980 if (skb == NULL)
981 return -ENOMEM;
982
983 /* reserve space for Hardware header */
984 skb_reserve(skb, hh_len);
985
986 /* create space for UDP/IP header */
987 skb_put(skb,fragheaderlen + transhdrlen);
988
989 /* initialize network header pointer */
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700990 skb_reset_network_header(skb);
Ananda Rajue89e9cf2005-10-18 15:46:41 -0700991
992 /* initialize protocol header pointer */
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700993 skb->transport_header = skb->network_header + fragheaderlen;
Ananda Rajue89e9cf2005-10-18 15:46:41 -0700994
Patrick McHardy84fa7932006-08-29 16:44:56 -0700995 skb->ip_summed = CHECKSUM_PARTIAL;
Ananda Rajue89e9cf2005-10-18 15:46:41 -0700996 skb->csum = 0;
997 sk->sk_sndmsg_off = 0;
998 }
999
1000 err = skb_append_datato_frags(sk,skb, getfrag, from,
1001 (length - transhdrlen));
1002 if (!err) {
1003 struct frag_hdr fhdr;
1004
1005 /* specify the length of each IP datagram fragment*/
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001006 skb_shinfo(skb)->gso_size = mtu - fragheaderlen -
Herbert Xu79671682006-06-22 02:40:14 -07001007 sizeof(struct frag_hdr);
Herbert Xuf83ef8c2006-06-30 13:37:03 -07001008 skb_shinfo(skb)->gso_type = SKB_GSO_UDP;
Ananda Rajue89e9cf2005-10-18 15:46:41 -07001009 ipv6_select_ident(skb, &fhdr);
1010 skb_shinfo(skb)->ip6_frag_id = fhdr.identification;
1011 __skb_queue_tail(&sk->sk_write_queue, skb);
1012
1013 return 0;
1014 }
1015 /* There is not enough support do UPD LSO,
1016 * so follow normal path
1017 */
1018 kfree_skb(skb);
1019
1020 return err;
1021}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +09001023int ip6_append_data(struct sock *sk, int getfrag(void *from, char *to,
1024 int offset, int len, int odd, struct sk_buff *skb),
1025 void *from, int length, int transhdrlen,
1026 int hlimit, int tclass, struct ipv6_txoptions *opt, struct flowi *fl,
1027 struct rt6_info *rt, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028{
1029 struct inet_sock *inet = inet_sk(sk);
1030 struct ipv6_pinfo *np = inet6_sk(sk);
1031 struct sk_buff *skb;
1032 unsigned int maxfraglen, fragheaderlen;
1033 int exthdrlen;
1034 int hh_len;
1035 int mtu;
1036 int copy;
1037 int err;
1038 int offset = 0;
1039 int csummode = CHECKSUM_NONE;
1040
1041 if (flags&MSG_PROBE)
1042 return 0;
1043 if (skb_queue_empty(&sk->sk_write_queue)) {
1044 /*
1045 * setup for corking
1046 */
1047 if (opt) {
1048 if (np->cork.opt == NULL) {
1049 np->cork.opt = kmalloc(opt->tot_len,
1050 sk->sk_allocation);
1051 if (unlikely(np->cork.opt == NULL))
1052 return -ENOBUFS;
1053 } else if (np->cork.opt->tot_len < opt->tot_len) {
1054 printk(KERN_DEBUG "ip6_append_data: invalid option length\n");
1055 return -EINVAL;
1056 }
1057 memcpy(np->cork.opt, opt, opt->tot_len);
1058 inet->cork.flags |= IPCORK_OPT;
1059 /* need source address above miyazawa*/
1060 }
1061 dst_hold(&rt->u.dst);
1062 np->cork.rt = rt;
1063 inet->cork.fl = *fl;
1064 np->cork.hop_limit = hlimit;
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +09001065 np->cork.tclass = tclass;
YOSHIFUJI Hideakid91675f2006-02-24 13:18:33 -08001066 mtu = dst_mtu(rt->u.dst.path);
Dave Jonesc7503602006-03-20 22:44:52 -08001067 if (np->frag_size < mtu) {
YOSHIFUJI Hideakid91675f2006-02-24 13:18:33 -08001068 if (np->frag_size)
1069 mtu = np->frag_size;
1070 }
1071 inet->cork.fragsize = mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 if (dst_allfrag(rt->u.dst.path))
1073 inet->cork.flags |= IPCORK_ALLFRAG;
1074 inet->cork.length = 0;
1075 sk->sk_sndmsg_page = NULL;
1076 sk->sk_sndmsg_off = 0;
1077 exthdrlen = rt->u.dst.header_len + (opt ? opt->opt_flen : 0);
1078 length += exthdrlen;
1079 transhdrlen += exthdrlen;
1080 } else {
1081 rt = np->cork.rt;
1082 fl = &inet->cork.fl;
1083 if (inet->cork.flags & IPCORK_OPT)
1084 opt = np->cork.opt;
1085 transhdrlen = 0;
1086 exthdrlen = 0;
1087 mtu = inet->cork.fragsize;
1088 }
1089
1090 hh_len = LL_RESERVED_SPACE(rt->u.dst.dev);
1091
Masahide NAKAMURA1b5c2292006-08-23 18:11:50 -07001092 fragheaderlen = sizeof(struct ipv6hdr) + rt->u.dst.nfheader_len + (opt ? opt->opt_nflen : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 maxfraglen = ((mtu - fragheaderlen) & ~7) + fragheaderlen - sizeof(struct frag_hdr);
1094
1095 if (mtu <= sizeof(struct ipv6hdr) + IPV6_MAXPLEN) {
1096 if (inet->cork.length + length > sizeof(struct ipv6hdr) + IPV6_MAXPLEN - fragheaderlen) {
1097 ipv6_local_error(sk, EMSGSIZE, fl, mtu-exthdrlen);
1098 return -EMSGSIZE;
1099 }
1100 }
1101
1102 /*
1103 * Let's try using as much space as possible.
1104 * Use MTU if total length of the message fits into the MTU.
1105 * Otherwise, we need to reserve fragment header and
1106 * fragment alignment (= 8-15 octects, in total).
1107 *
1108 * Note that we may need to "move" the data from the tail of
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001109 * of the buffer to the new fragment when we split
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 * the message.
1111 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001112 * FIXME: It may be fragmented into multiple chunks
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 * at once if non-fragmentable extension headers
1114 * are too large.
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001115 * --yoshfuji
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 */
1117
1118 inet->cork.length += length;
Ananda Rajue89e9cf2005-10-18 15:46:41 -07001119 if (((length > mtu) && (sk->sk_protocol == IPPROTO_UDP)) &&
1120 (rt->u.dst.dev->features & NETIF_F_UFO)) {
1121
Patrick McHardybaa829d2006-03-12 20:35:12 -08001122 err = ip6_ufo_append_data(sk, getfrag, from, length, hh_len,
1123 fragheaderlen, transhdrlen, mtu,
1124 flags);
1125 if (err)
Ananda Rajue89e9cf2005-10-18 15:46:41 -07001126 goto error;
Ananda Rajue89e9cf2005-10-18 15:46:41 -07001127 return 0;
1128 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129
1130 if ((skb = skb_peek_tail(&sk->sk_write_queue)) == NULL)
1131 goto alloc_new_skb;
1132
1133 while (length > 0) {
1134 /* Check if the remaining data fits into current packet. */
1135 copy = (inet->cork.length <= mtu && !(inet->cork.flags & IPCORK_ALLFRAG) ? mtu : maxfraglen) - skb->len;
1136 if (copy < length)
1137 copy = maxfraglen - skb->len;
1138
1139 if (copy <= 0) {
1140 char *data;
1141 unsigned int datalen;
1142 unsigned int fraglen;
1143 unsigned int fraggap;
1144 unsigned int alloclen;
1145 struct sk_buff *skb_prev;
1146alloc_new_skb:
1147 skb_prev = skb;
1148
1149 /* There's no room in the current skb */
1150 if (skb_prev)
1151 fraggap = skb_prev->len - maxfraglen;
1152 else
1153 fraggap = 0;
1154
1155 /*
1156 * If remaining data exceeds the mtu,
1157 * we know we need more fragment(s).
1158 */
1159 datalen = length + fraggap;
1160 if (datalen > (inet->cork.length <= mtu && !(inet->cork.flags & IPCORK_ALLFRAG) ? mtu : maxfraglen) - fragheaderlen)
1161 datalen = maxfraglen - fragheaderlen;
1162
1163 fraglen = datalen + fragheaderlen;
1164 if ((flags & MSG_MORE) &&
1165 !(rt->u.dst.dev->features&NETIF_F_SG))
1166 alloclen = mtu;
1167 else
1168 alloclen = datalen + fragheaderlen;
1169
1170 /*
1171 * The last fragment gets additional space at tail.
1172 * Note: we overallocate on fragments with MSG_MODE
1173 * because we have no idea if we're the last one.
1174 */
1175 if (datalen == length + fraggap)
1176 alloclen += rt->u.dst.trailer_len;
1177
1178 /*
1179 * We just reserve space for fragment header.
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001180 * Note: this may be overallocation if the message
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 * (without MSG_MORE) fits into the MTU.
1182 */
1183 alloclen += sizeof(struct frag_hdr);
1184
1185 if (transhdrlen) {
1186 skb = sock_alloc_send_skb(sk,
1187 alloclen + hh_len,
1188 (flags & MSG_DONTWAIT), &err);
1189 } else {
1190 skb = NULL;
1191 if (atomic_read(&sk->sk_wmem_alloc) <=
1192 2 * sk->sk_sndbuf)
1193 skb = sock_wmalloc(sk,
1194 alloclen + hh_len, 1,
1195 sk->sk_allocation);
1196 if (unlikely(skb == NULL))
1197 err = -ENOBUFS;
1198 }
1199 if (skb == NULL)
1200 goto error;
1201 /*
1202 * Fill in the control structures
1203 */
1204 skb->ip_summed = csummode;
1205 skb->csum = 0;
1206 /* reserve for fragmentation */
1207 skb_reserve(skb, hh_len+sizeof(struct frag_hdr));
1208
1209 /*
1210 * Find where to start putting bytes
1211 */
1212 data = skb_put(skb, fraglen);
Arnaldo Carvalho de Meloc14d2452007-03-11 22:39:41 -03001213 skb_set_network_header(skb, exthdrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 data += fragheaderlen;
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07001215 skb->transport_header = (skb->network_header +
1216 fragheaderlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 if (fraggap) {
1218 skb->csum = skb_copy_and_csum_bits(
1219 skb_prev, maxfraglen,
1220 data + transhdrlen, fraggap, 0);
1221 skb_prev->csum = csum_sub(skb_prev->csum,
1222 skb->csum);
1223 data += fraggap;
Herbert Xue9fa4f72006-08-13 20:12:58 -07001224 pskb_trim_unique(skb_prev, maxfraglen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 }
1226 copy = datalen - transhdrlen - fraggap;
1227 if (copy < 0) {
1228 err = -EINVAL;
1229 kfree_skb(skb);
1230 goto error;
1231 } else if (copy > 0 && getfrag(from, data + transhdrlen, offset, copy, fraggap, skb) < 0) {
1232 err = -EFAULT;
1233 kfree_skb(skb);
1234 goto error;
1235 }
1236
1237 offset += copy;
1238 length -= datalen - fraggap;
1239 transhdrlen = 0;
1240 exthdrlen = 0;
1241 csummode = CHECKSUM_NONE;
1242
1243 /*
1244 * Put the packet on the pending queue
1245 */
1246 __skb_queue_tail(&sk->sk_write_queue, skb);
1247 continue;
1248 }
1249
1250 if (copy > length)
1251 copy = length;
1252
1253 if (!(rt->u.dst.dev->features&NETIF_F_SG)) {
1254 unsigned int off;
1255
1256 off = skb->len;
1257 if (getfrag(from, skb_put(skb, copy),
1258 offset, copy, off, skb) < 0) {
1259 __skb_trim(skb, off);
1260 err = -EFAULT;
1261 goto error;
1262 }
1263 } else {
1264 int i = skb_shinfo(skb)->nr_frags;
1265 skb_frag_t *frag = &skb_shinfo(skb)->frags[i-1];
1266 struct page *page = sk->sk_sndmsg_page;
1267 int off = sk->sk_sndmsg_off;
1268 unsigned int left;
1269
1270 if (page && (left = PAGE_SIZE - off) > 0) {
1271 if (copy >= left)
1272 copy = left;
1273 if (page != frag->page) {
1274 if (i == MAX_SKB_FRAGS) {
1275 err = -EMSGSIZE;
1276 goto error;
1277 }
1278 get_page(page);
1279 skb_fill_page_desc(skb, i, page, sk->sk_sndmsg_off, 0);
1280 frag = &skb_shinfo(skb)->frags[i];
1281 }
1282 } else if(i < MAX_SKB_FRAGS) {
1283 if (copy > PAGE_SIZE)
1284 copy = PAGE_SIZE;
1285 page = alloc_pages(sk->sk_allocation, 0);
1286 if (page == NULL) {
1287 err = -ENOMEM;
1288 goto error;
1289 }
1290 sk->sk_sndmsg_page = page;
1291 sk->sk_sndmsg_off = 0;
1292
1293 skb_fill_page_desc(skb, i, page, 0, 0);
1294 frag = &skb_shinfo(skb)->frags[i];
1295 skb->truesize += PAGE_SIZE;
1296 atomic_add(PAGE_SIZE, &sk->sk_wmem_alloc);
1297 } else {
1298 err = -EMSGSIZE;
1299 goto error;
1300 }
1301 if (getfrag(from, page_address(frag->page)+frag->page_offset+frag->size, offset, copy, skb->len, skb) < 0) {
1302 err = -EFAULT;
1303 goto error;
1304 }
1305 sk->sk_sndmsg_off += copy;
1306 frag->size += copy;
1307 skb->len += copy;
1308 skb->data_len += copy;
1309 }
1310 offset += copy;
1311 length -= copy;
1312 }
1313 return 0;
1314error:
1315 inet->cork.length -= length;
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +09001316 IP6_INC_STATS(rt->rt6i_idev, IPSTATS_MIB_OUTDISCARDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 return err;
1318}
1319
1320int ip6_push_pending_frames(struct sock *sk)
1321{
1322 struct sk_buff *skb, *tmp_skb;
1323 struct sk_buff **tail_skb;
1324 struct in6_addr final_dst_buf, *final_dst = &final_dst_buf;
1325 struct inet_sock *inet = inet_sk(sk);
1326 struct ipv6_pinfo *np = inet6_sk(sk);
1327 struct ipv6hdr *hdr;
1328 struct ipv6_txoptions *opt = np->cork.opt;
1329 struct rt6_info *rt = np->cork.rt;
1330 struct flowi *fl = &inet->cork.fl;
1331 unsigned char proto = fl->proto;
1332 int err = 0;
1333
1334 if ((skb = __skb_dequeue(&sk->sk_write_queue)) == NULL)
1335 goto out;
1336 tail_skb = &(skb_shinfo(skb)->frag_list);
1337
1338 /* move skb->data to ip header from ext header */
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -07001339 if (skb->data < skb_network_header(skb))
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -03001340 __skb_pull(skb, skb_network_offset(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 while ((tmp_skb = __skb_dequeue(&sk->sk_write_queue)) != NULL) {
Arnaldo Carvalho de Melocfe1fc72007-03-16 17:26:39 -03001342 __skb_pull(tmp_skb, skb_network_header_len(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 *tail_skb = tmp_skb;
1344 tail_skb = &(tmp_skb->next);
1345 skb->len += tmp_skb->len;
1346 skb->data_len += tmp_skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 skb->truesize += tmp_skb->truesize;
1348 __sock_put(tmp_skb->sk);
1349 tmp_skb->destructor = NULL;
1350 tmp_skb->sk = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 }
1352
1353 ipv6_addr_copy(final_dst, &fl->fl6_dst);
Arnaldo Carvalho de Melocfe1fc72007-03-16 17:26:39 -03001354 __skb_pull(skb, skb_network_header_len(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 if (opt && opt->opt_flen)
1356 ipv6_push_frag_opts(skb, opt, &proto);
1357 if (opt && opt->opt_nflen)
1358 ipv6_push_nfrag_opts(skb, opt, &proto, &final_dst);
1359
Arnaldo Carvalho de Meloe2d1bca2007-04-10 20:46:21 -07001360 skb_push(skb, sizeof(struct ipv6hdr));
1361 skb_reset_network_header(skb);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001362 hdr = ipv6_hdr(skb);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001363
Al Viro90bcaf72006-11-08 00:25:17 -08001364 *(__be32*)hdr = fl->fl6_flowlabel |
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +09001365 htonl(0x60000000 | ((int)np->cork.tclass << 20));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366
1367 if (skb->len <= sizeof(struct ipv6hdr) + IPV6_MAXPLEN)
1368 hdr->payload_len = htons(skb->len - sizeof(struct ipv6hdr));
1369 else
1370 hdr->payload_len = 0;
1371 hdr->hop_limit = np->cork.hop_limit;
1372 hdr->nexthdr = proto;
1373 ipv6_addr_copy(&hdr->saddr, &fl->fl6_src);
1374 ipv6_addr_copy(&hdr->daddr, final_dst);
1375
Patrick McHardya2c20642006-01-08 22:37:26 -08001376 skb->priority = sk->sk_priority;
1377
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 skb->dst = dst_clone(&rt->u.dst);
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +09001379 IP6_INC_STATS(rt->rt6i_idev, IPSTATS_MIB_OUTREQUESTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 err = NF_HOOK(PF_INET6, NF_IP6_LOCAL_OUT, skb, NULL, skb->dst->dev, dst_output);
1381 if (err) {
1382 if (err > 0)
Herbert Xu3320da82005-04-19 22:32:22 -07001383 err = np->recverr ? net_xmit_errno(err) : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 if (err)
1385 goto error;
1386 }
1387
1388out:
1389 inet->cork.flags &= ~IPCORK_OPT;
Jesper Juhla51482b2005-11-08 09:41:34 -08001390 kfree(np->cork.opt);
1391 np->cork.opt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 if (np->cork.rt) {
1393 dst_release(&np->cork.rt->u.dst);
1394 np->cork.rt = NULL;
1395 inet->cork.flags &= ~IPCORK_ALLFRAG;
1396 }
1397 memset(&inet->cork.fl, 0, sizeof(inet->cork.fl));
1398 return err;
1399error:
1400 goto out;
1401}
1402
1403void ip6_flush_pending_frames(struct sock *sk)
1404{
1405 struct inet_sock *inet = inet_sk(sk);
1406 struct ipv6_pinfo *np = inet6_sk(sk);
1407 struct sk_buff *skb;
1408
1409 while ((skb = __skb_dequeue_tail(&sk->sk_write_queue)) != NULL) {
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +09001410 IP6_INC_STATS(ip6_dst_idev(skb->dst),
1411 IPSTATS_MIB_OUTDISCARDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 kfree_skb(skb);
1413 }
1414
1415 inet->cork.flags &= ~IPCORK_OPT;
1416
Jesper Juhla51482b2005-11-08 09:41:34 -08001417 kfree(np->cork.opt);
1418 np->cork.opt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 if (np->cork.rt) {
1420 dst_release(&np->cork.rt->u.dst);
1421 np->cork.rt = NULL;
1422 inet->cork.flags &= ~IPCORK_ALLFRAG;
1423 }
1424 memset(&inet->cork.fl, 0, sizeof(inet->cork.fl));
1425}