]> git.hungrycats.org Git - linux/commitdiff
[PATCH] IPSEC: Check validity of direction in xfrm_policy_byid
authorHerbert Xu <herbert@gondor.apana.org.au>
Tue, 15 May 2007 08:36:48 +0000 (01:36 -0700)
committerChris Wright <chrisw@sous-sol.org>
Wed, 23 May 2007 21:32:51 +0000 (14:32 -0700)
The function xfrm_policy_byid takes a dir argument but finds the policy
using the index instead.  We only use the dir argument to update the
policy count for that direction.  Since the user can supply any value
for dir, this can corrupt our policy count.

I know this is the problem because a few days ago I was deleting
policies by hand using indicies and accidentally typed in the wrong
direction.  It still deleted the policy and at the time I thought
that was cool.  In retrospect it isn't such a good idea :)

I decided against letting it delete the policy anyway just in case
we ever remove the connection between indicies and direction.

Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Chris Wright <chrisw@sous-sol.org>
net/xfrm/xfrm_policy.c

index 785c3e39f06287681c2976193de7e41178cca979..ba89293e0cd18e14543cbb26a28fe41800083ee7 100644 (file)
@@ -782,6 +782,10 @@ struct xfrm_policy *xfrm_policy_byid(u8 type, int dir, u32 id, int delete,
        struct hlist_head *chain;
        struct hlist_node *entry;
 
+       *err = -ENOENT;
+       if (xfrm_policy_id2dir(id) != dir)
+               return NULL;
+
        *err = 0;
        write_lock_bh(&xfrm_policy_lock);
        chain = xfrm_policy_byidx + idx_hash(id);