mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-12 16:58:53 +00:00
xfrm: Restrict extended sequence numbers to esp
The IPsec extended sequence numbers are fully implemented just for esp. So restrict the usage to esp until other protocols have support too. Signed-off-by: Steffen Klassert <steffen.klassert@secunet.com> Acked-by: Herbert Xu <herbert@gondor.apana.org.au> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
e2b19125e9
commit
02aadf72fe
@ -127,6 +127,9 @@ static inline int verify_replay(struct xfrm_usersa_info *p,
|
||||
if (!rt)
|
||||
return 0;
|
||||
|
||||
if (p->id.proto != IPPROTO_ESP)
|
||||
return -EINVAL;
|
||||
|
||||
if (p->replay_window != 0)
|
||||
return -EINVAL;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user