netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Steffen Klassert <steffen.klassert@secunet.com>
To: <roy.qing.li@gmail.com>
Cc: <netdev@vger.kernel.org>, <eparis@redhat.com>
Subject: Re: [PATCH] xfrm: fix a possible policy leak
Date: Mon, 11 May 2015 13:03:13 +0200	[thread overview]
Message-ID: <20150511110310.GR8928@secunet.com> (raw)
In-Reply-To: <1431077979-1606-1-git-send-email-roy.qing.li@gmail.com>

On Fri, May 08, 2015 at 05:39:39PM +0800, roy.qing.li@gmail.com wrote:
> From: Li RongQing <roy.qing.li@gmail.com>
> 
> policy should be put if exit xfrm_policy_bysel_ctx() due to the
> failure of calling security_xfrm_policy_delete. since policy has
> been hold before
> 
> Fixes: ef41aaa0b7 [IPSEC]: xfrm_policy delete security check misplaced
> Signed-off-by: Li RongQing <roy.qing.li@gmail.com>
> Cc: Eric Paris <eparis@redhat.com>
> ---
>  net/xfrm/xfrm_policy.c | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/net/xfrm/xfrm_policy.c b/net/xfrm/xfrm_policy.c
> index 3d264e5..66450c3 100644
> --- a/net/xfrm/xfrm_policy.c
> +++ b/net/xfrm/xfrm_policy.c
> @@ -824,6 +824,7 @@ struct xfrm_policy *xfrm_policy_bysel_ctx(struct net *net, u32 mark, u8 type,
>  				*err = security_xfrm_policy_delete(
>  								pol->security);
>  				if (*err) {
> +					xfrm_pol_put(pol);
>  					write_unlock_bh(&net->xfrm.xfrm_policy_lock);
>  					return pol;
>  				}
> @@ -863,6 +864,7 @@ struct xfrm_policy *xfrm_policy_byid(struct net *net, u32 mark, u8 type,
>  				*err = security_xfrm_policy_delete(
>  								pol->security);
>  				if (*err) {
> +					xfrm_pol_put(pol);
>  					write_unlock_bh(&net->xfrm.xfrm_policy_lock);
>  					return pol;
>  				}

We return this policy to the caller, so we better keep
the refcount here. The caller is responsible to drop
the refount.

  reply	other threads:[~2015-05-11 11:03 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-05-08  9:39 [PATCH] xfrm: fix a possible policy leak roy.qing.li
2015-05-11 11:03 ` Steffen Klassert [this message]
  -- strict thread matches above, loose matches on Subject: below --
2015-05-08  7:13 roy.qing.li
2015-05-08  9:33 ` Li RongQing

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20150511110310.GR8928@secunet.com \
    --to=steffen.klassert@secunet.com \
    --cc=eparis@redhat.com \
    --cc=netdev@vger.kernel.org \
    --cc=roy.qing.li@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).