[PATCH] shpchp: Fix slot state handling
[linux-2.6.22.y-op.git] / net / ipv4 / xfrm4_input.c
blob850d919591d1c817bc196407a90fd338ab0d2316
1 /*
2 * xfrm4_input.c
4 * Changes:
5 * YOSHIFUJI Hideaki @USAGI
6 * Split up af-specific portion
7 * Derek Atkins <derek@ihtfp.com>
8 * Add Encapsulation support
9 *
12 #include <linux/module.h>
13 #include <linux/string.h>
14 #include <linux/netfilter.h>
15 #include <linux/netfilter_ipv4.h>
16 #include <net/inet_ecn.h>
17 #include <net/ip.h>
18 #include <net/xfrm.h>
20 int xfrm4_rcv(struct sk_buff *skb)
22 return xfrm4_rcv_encap(skb, 0);
25 EXPORT_SYMBOL(xfrm4_rcv);
27 static inline void ipip_ecn_decapsulate(struct sk_buff *skb)
29 struct iphdr *outer_iph = skb->nh.iph;
30 struct iphdr *inner_iph = skb->h.ipiph;
32 if (INET_ECN_is_ce(outer_iph->tos))
33 IP_ECN_set_ce(inner_iph);
36 static int xfrm4_parse_spi(struct sk_buff *skb, u8 nexthdr, u32 *spi, u32 *seq)
38 switch (nexthdr) {
39 case IPPROTO_IPIP:
40 if (!pskb_may_pull(skb, sizeof(struct iphdr)))
41 return -EINVAL;
42 *spi = skb->nh.iph->saddr;
43 *seq = 0;
44 return 0;
47 return xfrm_parse_spi(skb, nexthdr, spi, seq);
50 #ifdef CONFIG_NETFILTER
51 static inline int xfrm4_rcv_encap_finish(struct sk_buff *skb)
53 struct iphdr *iph = skb->nh.iph;
55 if (skb->dst == NULL) {
56 if (ip_route_input(skb, iph->daddr, iph->saddr, iph->tos,
57 skb->dev))
58 goto drop;
60 return dst_input(skb);
61 drop:
62 kfree_skb(skb);
63 return NET_RX_DROP;
65 #endif
67 int xfrm4_rcv_encap(struct sk_buff *skb, __u16 encap_type)
69 int err;
70 u32 spi, seq;
71 struct sec_decap_state xfrm_vec[XFRM_MAX_DEPTH];
72 struct xfrm_state *x;
73 int xfrm_nr = 0;
74 int decaps = 0;
76 if ((err = xfrm4_parse_spi(skb, skb->nh.iph->protocol, &spi, &seq)) != 0)
77 goto drop;
79 do {
80 struct iphdr *iph = skb->nh.iph;
82 if (xfrm_nr == XFRM_MAX_DEPTH)
83 goto drop;
85 x = xfrm_state_lookup((xfrm_address_t *)&iph->daddr, spi, iph->protocol, AF_INET);
86 if (x == NULL)
87 goto drop;
89 spin_lock(&x->lock);
90 if (unlikely(x->km.state != XFRM_STATE_VALID))
91 goto drop_unlock;
93 if (x->props.replay_window && xfrm_replay_check(x, seq))
94 goto drop_unlock;
96 if (xfrm_state_check_expire(x))
97 goto drop_unlock;
99 xfrm_vec[xfrm_nr].decap.decap_type = encap_type;
100 if (x->type->input(x, &(xfrm_vec[xfrm_nr].decap), skb))
101 goto drop_unlock;
103 /* only the first xfrm gets the encap type */
104 encap_type = 0;
106 if (x->props.replay_window)
107 xfrm_replay_advance(x, seq);
109 x->curlft.bytes += skb->len;
110 x->curlft.packets++;
112 spin_unlock(&x->lock);
114 xfrm_vec[xfrm_nr++].xvec = x;
116 iph = skb->nh.iph;
118 if (x->props.mode) {
119 if (iph->protocol != IPPROTO_IPIP)
120 goto drop;
121 if (!pskb_may_pull(skb, sizeof(struct iphdr)))
122 goto drop;
123 if (skb_cloned(skb) &&
124 pskb_expand_head(skb, 0, 0, GFP_ATOMIC))
125 goto drop;
126 if (x->props.flags & XFRM_STATE_DECAP_DSCP)
127 ipv4_copy_dscp(iph, skb->h.ipiph);
128 if (!(x->props.flags & XFRM_STATE_NOECN))
129 ipip_ecn_decapsulate(skb);
130 skb->mac.raw = memmove(skb->data - skb->mac_len,
131 skb->mac.raw, skb->mac_len);
132 skb->nh.raw = skb->data;
133 memset(&(IPCB(skb)->opt), 0, sizeof(struct ip_options));
134 decaps = 1;
135 break;
138 if ((err = xfrm_parse_spi(skb, skb->nh.iph->protocol, &spi, &seq)) < 0)
139 goto drop;
140 } while (!err);
142 /* Allocate new secpath or COW existing one. */
144 if (!skb->sp || atomic_read(&skb->sp->refcnt) != 1) {
145 struct sec_path *sp;
146 sp = secpath_dup(skb->sp);
147 if (!sp)
148 goto drop;
149 if (skb->sp)
150 secpath_put(skb->sp);
151 skb->sp = sp;
153 if (xfrm_nr + skb->sp->len > XFRM_MAX_DEPTH)
154 goto drop;
156 memcpy(skb->sp->x+skb->sp->len, xfrm_vec, xfrm_nr*sizeof(struct sec_decap_state));
157 skb->sp->len += xfrm_nr;
159 nf_reset(skb);
161 if (decaps) {
162 if (!(skb->dev->flags&IFF_LOOPBACK)) {
163 dst_release(skb->dst);
164 skb->dst = NULL;
166 netif_rx(skb);
167 return 0;
168 } else {
169 #ifdef CONFIG_NETFILTER
170 __skb_push(skb, skb->data - skb->nh.raw);
171 skb->nh.iph->tot_len = htons(skb->len);
172 ip_send_check(skb->nh.iph);
174 NF_HOOK(PF_INET, NF_IP_PRE_ROUTING, skb, skb->dev, NULL,
175 xfrm4_rcv_encap_finish);
176 return 0;
177 #else
178 return -skb->nh.iph->protocol;
179 #endif
182 drop_unlock:
183 spin_unlock(&x->lock);
184 xfrm_state_put(x);
185 drop:
186 while (--xfrm_nr >= 0)
187 xfrm_state_put(xfrm_vec[xfrm_nr].xvec);
189 kfree_skb(skb);
190 return 0;