From: Steffen Klassert Date: Mon, 25 Apr 2011 19:41:21 +0000 (+0000) Subject: xfrm: Check for the new replay implementation if an esn state is inserted X-Git-Tag: v3.0~810^2~49 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7833aa05b8db63484b43b4b4c389cd4533140afb;p=platform%2Fkernel%2Flinux-amlogic.git xfrm: Check for the new replay implementation if an esn state is inserted IPsec extended sequence numbers can be used only with the new anti-replay window implementation. So check if the new implementation is used if an esn state is inserted and return an error if it is not. Signed-off-by: Steffen Klassert Acked-by: Herbert Xu Signed-off-by: David S. Miller --- diff --git a/net/xfrm/xfrm_user.c b/net/xfrm/xfrm_user.c index 5d1d60d..c658cb3 100644 --- a/net/xfrm/xfrm_user.c +++ b/net/xfrm/xfrm_user.c @@ -124,6 +124,9 @@ static inline int verify_replay(struct xfrm_usersa_info *p, { struct nlattr *rt = attrs[XFRMA_REPLAY_ESN_VAL]; + if ((p->flags & XFRM_STATE_ESN) && !rt) + return -EINVAL; + if (!rt) return 0;