blob: 56364a5f676ad71830c9b4118088e29b6da30cc5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * xfrm6_output.c - Common IPsec encapsulation code for IPv6.
3 * Copyright (C) 2002 USAGI/WIDE Project
4 * Copyright (c) 2004 Herbert Xu <herbert@gondor.apana.org.au>
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09005 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
11
Patrick McHardy16a66772006-01-06 23:01:48 -080012#include <linux/compiler.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/skbuff.h>
14#include <linux/spinlock.h>
15#include <linux/icmpv6.h>
Patrick McHardy16a66772006-01-06 23:01:48 -080016#include <linux/netfilter_ipv6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <net/ipv6.h>
18#include <net/xfrm.h>
19
Masahide NAKAMURAaee5adb2006-08-23 17:57:28 -070020int xfrm6_find_1stfragopt(struct xfrm_state *x, struct sk_buff *skb,
21 u8 **prevhdr)
22{
23 return ip6_find_1stfragopt(skb, prevhdr);
24}
25
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +090026EXPORT_SYMBOL(xfrm6_find_1stfragopt);
27
Linus Torvalds1da177e2005-04-16 15:20:36 -070028static int xfrm6_tunnel_check_size(struct sk_buff *skb)
29{
30 int mtu, ret = 0;
31 struct dst_entry *dst = skb->dst;
32
33 mtu = dst_mtu(dst);
34 if (mtu < IPV6_MIN_MTU)
35 mtu = IPV6_MIN_MTU;
36
37 if (skb->len > mtu) {
Herbert Xu180e4252005-05-23 13:11:07 -070038 skb->dev = dst->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu, skb->dev);
40 ret = -EMSGSIZE;
41 }
42
43 return ret;
44}
45
Patrick McHardy16a66772006-01-06 23:01:48 -080046static int xfrm6_output_one(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070047{
48 struct dst_entry *dst = skb->dst;
49 struct xfrm_state *x = dst->xfrm;
50 int err;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +090051
Patrick McHardy84fa7932006-08-29 16:44:56 -070052 if (skb->ip_summed == CHECKSUM_PARTIAL) {
53 err = skb_checksum_help(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 if (err)
55 goto error_nolock;
56 }
57
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -070058 if (x->props.mode == XFRM_MODE_TUNNEL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 err = xfrm6_tunnel_check_size(skb);
60 if (err)
61 goto error_nolock;
62 }
63
Patrick McHardy16a66772006-01-06 23:01:48 -080064 do {
65 spin_lock_bh(&x->lock);
66 err = xfrm_state_check(x, skb);
67 if (err)
68 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Jamal Hadi Salimeb878e82006-08-31 17:42:59 -070070 err = x->mode->output(x, skb);
Herbert Xub59f45d2006-05-27 23:05:54 -070071 if (err)
72 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Patrick McHardy16a66772006-01-06 23:01:48 -080074 err = x->type->output(x, skb);
75 if (err)
76 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Patrick McHardy16a66772006-01-06 23:01:48 -080078 x->curlft.bytes += skb->len;
79 x->curlft.packets++;
Masahide NAKAMURA9afaca02006-08-23 18:20:16 -070080 if (x->props.mode == XFRM_MODE_ROUTEOPTIMIZATION)
James Morris9d729f72007-03-04 16:12:44 -080081 x->lastused = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
Patrick McHardy16a66772006-01-06 23:01:48 -080083 spin_unlock_bh(&x->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -070085 skb_reset_network_header(skb);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +090086
Patrick McHardy16a66772006-01-06 23:01:48 -080087 if (!(skb->dst = dst_pop(dst))) {
88 err = -EHOSTUNREACH;
89 goto error_nolock;
90 }
91 dst = skb->dst;
92 x = dst->xfrm;
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -070093 } while (x && (x->props.mode != XFRM_MODE_TUNNEL));
Patrick McHardy16a66772006-01-06 23:01:48 -080094
Patrick McHardy3e3850e2006-01-06 23:04:54 -080095 IP6CB(skb)->flags |= IP6SKB_XFRM_TRANSFORMED;
Patrick McHardy16a66772006-01-06 23:01:48 -080096 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
98out_exit:
99 return err;
100error:
101 spin_unlock_bh(&x->lock);
102error_nolock:
103 kfree_skb(skb);
104 goto out_exit;
105}
Patrick McHardy16a66772006-01-06 23:01:48 -0800106
Herbert Xu09b8f7a2006-06-22 03:08:03 -0700107static int xfrm6_output_finish2(struct sk_buff *skb)
Patrick McHardy16a66772006-01-06 23:01:48 -0800108{
109 int err;
110
111 while (likely((err = xfrm6_output_one(skb)) == 0)) {
112 nf_reset(skb);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900113
Patrick McHardy16a66772006-01-06 23:01:48 -0800114 err = nf_hook(PF_INET6, NF_IP6_LOCAL_OUT, &skb, NULL,
115 skb->dst->dev, dst_output);
116 if (unlikely(err != 1))
117 break;
118
119 if (!skb->dst->xfrm)
120 return dst_output(skb);
121
122 err = nf_hook(PF_INET6, NF_IP6_POST_ROUTING, &skb, NULL,
Herbert Xu09b8f7a2006-06-22 03:08:03 -0700123 skb->dst->dev, xfrm6_output_finish2);
Patrick McHardy16a66772006-01-06 23:01:48 -0800124 if (unlikely(err != 1))
125 break;
126 }
127
128 return err;
129}
130
Herbert Xu09b8f7a2006-06-22 03:08:03 -0700131static int xfrm6_output_finish(struct sk_buff *skb)
132{
133 struct sk_buff *segs;
134
Herbert Xu89114af2006-07-08 13:34:32 -0700135 if (!skb_is_gso(skb))
Herbert Xu09b8f7a2006-06-22 03:08:03 -0700136 return xfrm6_output_finish2(skb);
137
Patrick McHardy679e8982006-07-30 20:19:11 -0700138 skb->protocol = htons(ETH_P_IPV6);
Herbert Xu09b8f7a2006-06-22 03:08:03 -0700139 segs = skb_gso_segment(skb, 0);
140 kfree_skb(skb);
141 if (unlikely(IS_ERR(segs)))
142 return PTR_ERR(segs);
143
144 do {
145 struct sk_buff *nskb = segs->next;
146 int err;
147
148 segs->next = NULL;
149 err = xfrm6_output_finish2(segs);
150
151 if (unlikely(err)) {
152 while ((segs = nskb)) {
153 nskb = segs->next;
154 segs->next = NULL;
155 kfree_skb(segs);
156 }
157 return err;
158 }
159
160 segs = nskb;
161 } while (segs);
162
163 return 0;
164}
165
Patrick McHardy16a66772006-01-06 23:01:48 -0800166int xfrm6_output(struct sk_buff *skb)
167{
168 return NF_HOOK(PF_INET6, NF_IP6_POST_ROUTING, skb, NULL, skb->dst->dev,
169 xfrm6_output_finish);
170}