2 * xfrm6_input.c: based on net/ipv4/xfrm4_input.c
6 * Kazunori MIYAZAWA @USAGI
7 * Kunihiro Ishiguro <kunihiro@ipinfusion.com>
8 * YOSHIFUJI Hideaki @USAGI
12 #include <linux/module.h>
13 #include <linux/string.h>
14 #include <net/dsfield.h>
15 #include <net/inet_ecn.h>
20 static inline void ipip6_ecn_decapsulate(struct sk_buff
*skb
)
22 struct ipv6hdr
*outer_iph
= skb
->nh
.ipv6h
;
23 struct ipv6hdr
*inner_iph
= skb
->h
.ipv6h
;
25 if (INET_ECN_is_ce(ipv6_get_dsfield(outer_iph
)))
26 IP6_ECN_set_ce(inner_iph
);
29 int xfrm6_rcv_spi(struct sk_buff
**pskb
, unsigned int *nhoffp
, u32 spi
)
31 struct sk_buff
*skb
= *pskb
;
34 struct sec_decap_state xfrm_vec
[XFRM_MAX_DEPTH
];
42 nexthdr
= skb
->nh
.raw
[nhoff
];
45 if (!spi
&& (err
= xfrm_parse_spi(skb
, nexthdr
, &spi
, &seq
)) != 0)
49 struct ipv6hdr
*iph
= skb
->nh
.ipv6h
;
51 if (xfrm_nr
== XFRM_MAX_DEPTH
)
54 x
= xfrm_state_lookup((xfrm_address_t
*)&iph
->daddr
, spi
, nexthdr
, AF_INET6
);
58 if (unlikely(x
->km
.state
!= XFRM_STATE_VALID
))
61 if (x
->props
.replay_window
&& xfrm_replay_check(x
, seq
))
64 if (xfrm_state_check_expire(x
))
67 nexthdr
= x
->type
->input(x
, &(xfrm_vec
[xfrm_nr
].decap
), skb
);
71 skb
->nh
.raw
[nhoff
] = nexthdr
;
73 if (x
->props
.replay_window
)
74 xfrm_replay_advance(x
, seq
);
76 x
->curlft
.bytes
+= skb
->len
;
79 spin_unlock(&x
->lock
);
81 xfrm_vec
[xfrm_nr
++].xvec
= x
;
83 if (x
->props
.mode
) { /* XXX */
84 if (nexthdr
!= IPPROTO_IPV6
)
86 if (!pskb_may_pull(skb
, sizeof(struct ipv6hdr
)))
88 if (skb_cloned(skb
) &&
89 pskb_expand_head(skb
, 0, 0, GFP_ATOMIC
))
91 if (x
->props
.flags
& XFRM_STATE_DECAP_DSCP
)
92 ipv6_copy_dscp(skb
->nh
.ipv6h
, skb
->h
.ipv6h
);
93 if (!(x
->props
.flags
& XFRM_STATE_NOECN
))
94 ipip6_ecn_decapsulate(skb
);
95 skb
->mac
.raw
= memmove(skb
->data
- skb
->mac_len
,
96 skb
->mac
.raw
, skb
->mac_len
);
97 skb
->nh
.raw
= skb
->data
;
102 if ((err
= xfrm_parse_spi(skb
, nexthdr
, &spi
, &seq
)) < 0)
106 /* Allocate new secpath or COW existing one. */
107 if (!skb
->sp
|| atomic_read(&skb
->sp
->refcnt
) != 1) {
109 sp
= secpath_dup(skb
->sp
);
113 secpath_put(skb
->sp
);
117 if (xfrm_nr
+ skb
->sp
->len
> XFRM_MAX_DEPTH
)
120 memcpy(skb
->sp
->x
+skb
->sp
->len
, xfrm_vec
, xfrm_nr
*sizeof(struct sec_decap_state
));
121 skb
->sp
->len
+= xfrm_nr
;
122 skb
->ip_summed
= CHECKSUM_NONE
;
125 if (!(skb
->dev
->flags
&IFF_LOOPBACK
)) {
126 dst_release(skb
->dst
);
136 spin_unlock(&x
->lock
);
139 while (--xfrm_nr
>= 0)
140 xfrm_state_put(xfrm_vec
[xfrm_nr
].xvec
);
145 EXPORT_SYMBOL(xfrm6_rcv_spi
);
147 int xfrm6_rcv(struct sk_buff
**pskb
, unsigned int *nhoffp
)
149 return xfrm6_rcv_spi(pskb
, nhoffp
, 0);