initial commit with v2.6.9
[linux-2.6.9-moxart.git] / net / ipv4 / xfrm4_output.c
blob21832dfc376eb6746bd57a67058c6877e8a1bd24
1 /*
2 * xfrm4_output.c - Common IPsec encapsulation code for IPv4.
3 * Copyright (c) 2004 Herbert Xu <herbert@gondor.apana.org.au>
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version
8 * 2 of the License, or (at your option) any later version.
9 */
11 #include <linux/skbuff.h>
12 #include <linux/spinlock.h>
13 #include <net/inet_ecn.h>
14 #include <net/ip.h>
15 #include <net/xfrm.h>
16 #include <net/icmp.h>
18 /* Add encapsulation header.
20 * In transport mode, the IP header will be moved forward to make space
21 * for the encapsulation header.
23 * In tunnel mode, the top IP header will be constructed per RFC 2401.
24 * The following fields in it shall be filled in by x->type->output:
25 * tot_len
26 * check
28 * On exit, skb->h will be set to the start of the payload to be processed
29 * by x->type->output and skb->nh will be set to the top IP header.
31 static void xfrm4_encap(struct sk_buff *skb)
33 struct dst_entry *dst = skb->dst;
34 struct xfrm_state *x = dst->xfrm;
35 struct iphdr *iph, *top_iph;
37 iph = skb->nh.iph;
38 skb->h.ipiph = iph;
40 skb->nh.raw = skb_push(skb, x->props.header_len);
41 top_iph = skb->nh.iph;
43 if (!x->props.mode) {
44 skb->h.raw += iph->ihl*4;
45 memmove(top_iph, iph, iph->ihl*4);
46 return;
49 top_iph->ihl = 5;
50 top_iph->version = 4;
52 /* DS disclosed */
53 top_iph->tos = INET_ECN_encapsulate(iph->tos, iph->tos);
54 if (x->props.flags & XFRM_STATE_NOECN)
55 IP_ECN_clear(top_iph);
57 top_iph->frag_off = iph->frag_off & htons(IP_DF);
58 if (!top_iph->frag_off)
59 __ip_select_ident(top_iph, dst, 0);
61 top_iph->ttl = dst_path_metric(dst, RTAX_HOPLIMIT);
63 top_iph->saddr = x->props.saddr.a4;
64 top_iph->daddr = x->id.daddr.a4;
65 top_iph->protocol = IPPROTO_IPIP;
67 memset(&(IPCB(skb)->opt), 0, sizeof(struct ip_options));
70 static int xfrm4_tunnel_check_size(struct sk_buff *skb)
72 int mtu, ret = 0;
73 struct dst_entry *dst;
74 struct iphdr *iph = skb->nh.iph;
76 if (IPCB(skb)->flags & IPSKB_XFRM_TUNNEL_SIZE)
77 goto out;
79 IPCB(skb)->flags |= IPSKB_XFRM_TUNNEL_SIZE;
81 if (!(iph->frag_off & htons(IP_DF)))
82 goto out;
84 dst = skb->dst;
85 mtu = dst_pmtu(dst) - dst->header_len - dst->trailer_len;
86 if (skb->len > mtu) {
87 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED, htonl(mtu));
88 ret = -EMSGSIZE;
90 out:
91 return ret;
94 int xfrm4_output(struct sk_buff **pskb)
96 struct sk_buff *skb = *pskb;
97 struct dst_entry *dst = skb->dst;
98 struct xfrm_state *x = dst->xfrm;
99 int err;
101 if (skb->ip_summed == CHECKSUM_HW) {
102 err = skb_checksum_help(pskb, 0);
103 skb = *pskb;
104 if (err)
105 goto error_nolock;
108 spin_lock_bh(&x->lock);
109 err = xfrm_state_check(x, skb);
110 if (err)
111 goto error;
113 if (x->props.mode) {
114 err = xfrm4_tunnel_check_size(skb);
115 if (err)
116 goto error;
119 xfrm4_encap(skb);
121 err = x->type->output(skb);
122 if (err)
123 goto error;
125 x->curlft.bytes += skb->len;
126 x->curlft.packets++;
128 spin_unlock_bh(&x->lock);
130 if (!(skb->dst = dst_pop(dst))) {
131 err = -EHOSTUNREACH;
132 goto error_nolock;
134 err = NET_XMIT_BYPASS;
136 out_exit:
137 return err;
138 error:
139 spin_unlock_bh(&x->lock);
140 error_nolock:
141 kfree_skb(skb);
142 goto out_exit;