linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] security/selinux: fix potential memleak in error branch
@ 2021-12-02  3:12 Bernard Zhao
  2021-12-06  3:22 ` Paul Moore
       [not found] ` <AI*AZgDuE3c1hmFv16p8r4qS.9.1638760990602.Hmail.bernard@vivo.com.@PENBSEM5VmhUNXRzMkF4K1BRMGhWNDhHek4teHBob2dmWk5Td0U5N0szLXRVWlM2MEJMd0BtYWlsLmdtYWlsLmNvbT4=>
  0 siblings, 2 replies; 3+ messages in thread
From: Bernard Zhao @ 2021-12-02  3:12 UTC (permalink / raw)
  To: Paul Moore, Stephen Smalley, Eric Paris, selinux, linux-kernel
  Cc: Bernard Zhao

This patch try to fix potential memleak in error branch.

Signed-off-by: Bernard Zhao <bernard@vivo.com>
---
 security/selinux/hooks.c | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/security/selinux/hooks.c b/security/selinux/hooks.c
index 62d30c0a30c2..10700720bb74 100644
--- a/security/selinux/hooks.c
+++ b/security/selinux/hooks.c
@@ -983,6 +983,7 @@ static int selinux_sb_clone_mnt_opts(const struct super_block *oldsb,
 static int selinux_add_opt(int token, const char *s, void **mnt_opts)
 {
 	struct selinux_mnt_opts *opts = *mnt_opts;
+	bool is_alloc_opts = false;
 
 	if (token == Opt_seclabel)	/* eaten and completely ignored */
 		return 0;
@@ -992,9 +993,13 @@ static int selinux_add_opt(int token, const char *s, void **mnt_opts)
 		if (!opts)
 			return -ENOMEM;
 		*mnt_opts = opts;
+		is_alloc_opts = true;
 	}
-	if (!s)
+	if (!s) {
+		if (is_alloc_opts)
+			kfree(opts);
 		return -ENOMEM;
+	}
 	switch (token) {
 	case Opt_context:
 		if (opts->context || opts->defcontext)
@@ -1020,6 +1025,8 @@ static int selinux_add_opt(int token, const char *s, void **mnt_opts)
 	return 0;
 Einval:
 	pr_warn(SEL_MOUNT_FAIL_MSG);
+	if (is_alloc_opts)
+		kfree(opts);
 	return -EINVAL;
 }
 
-- 
2.33.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] security/selinux: fix potential memleak in error branch
  2021-12-02  3:12 [PATCH] security/selinux: fix potential memleak in error branch Bernard Zhao
@ 2021-12-06  3:22 ` Paul Moore
       [not found] ` <AI*AZgDuE3c1hmFv16p8r4qS.9.1638760990602.Hmail.bernard@vivo.com.@PENBSEM5VmhUNXRzMkF4K1BRMGhWNDhHek4teHBob2dmWk5Td0U5N0szLXRVWlM2MEJMd0BtYWlsLmdtYWlsLmNvbT4=>
  1 sibling, 0 replies; 3+ messages in thread
From: Paul Moore @ 2021-12-06  3:22 UTC (permalink / raw)
  To: Bernard Zhao; +Cc: Stephen Smalley, Eric Paris, selinux, linux-kernel

On Wed, Dec 1, 2021 at 10:12 PM Bernard Zhao <bernard@vivo.com> wrote:
>
> This patch try to fix potential memleak in error branch.
>
> Signed-off-by: Bernard Zhao <bernard@vivo.com>
> ---
>  security/selinux/hooks.c | 9 ++++++++-
>  1 file changed, 8 insertions(+), 1 deletion(-)
>
> diff --git a/security/selinux/hooks.c b/security/selinux/hooks.c
> index 62d30c0a30c2..10700720bb74 100644
> --- a/security/selinux/hooks.c
> +++ b/security/selinux/hooks.c
> @@ -983,6 +983,7 @@ static int selinux_sb_clone_mnt_opts(const struct super_block *oldsb,
>  static int selinux_add_opt(int token, const char *s, void **mnt_opts)
>  {
>         struct selinux_mnt_opts *opts = *mnt_opts;
> +       bool is_alloc_opts = false;
>
>         if (token == Opt_seclabel)      /* eaten and completely ignored */
>                 return 0;
> @@ -992,9 +993,13 @@ static int selinux_add_opt(int token, const char *s, void **mnt_opts)
>                 if (!opts)
>                         return -ENOMEM;
>                 *mnt_opts = opts;
> +               is_alloc_opts = true;
>         }
> -       if (!s)
> +       if (!s) {
> +               if (is_alloc_opts)
> +                       kfree(opts);
>                 return -ENOMEM;
> +       }

Thanks for catching this and submitting a patch, but would it be
simpler to do the "(!s)" check before the "(!opts)" check?

>         switch (token) {
>         case Opt_context:
>                 if (opts->context || opts->defcontext)
> @@ -1020,6 +1025,8 @@ static int selinux_add_opt(int token, const char *s, void **mnt_opts)
>         return 0;
>  Einval:
>         pr_warn(SEL_MOUNT_FAIL_MSG);
> +       if (is_alloc_opts)
> +               kfree(opts);
>         return -EINVAL;
>  }
>
> --
> 2.33.1

-- 
paul moore
www.paul-moore.com

^ permalink raw reply	[flat|nested] 3+ messages in thread

* 答复: [PATCH] security/selinux: fix potential memleak in error branch
       [not found] ` <AI*AZgDuE3c1hmFv16p8r4qS.9.1638760990602.Hmail.bernard@vivo.com.@PENBSEM5VmhUNXRzMkF4K1BRMGhWNDhHek4teHBob2dmWk5Td0U5N0szLXRVWlM2MEJMd0BtYWlsLmdtYWlsLmNvbT4=>
@ 2021-12-06  3:34   ` 赵军奎
  0 siblings, 0 replies; 3+ messages in thread
From: 赵军奎 @ 2021-12-06  3:34 UTC (permalink / raw)
  To: Paul Moore; +Cc: Stephen Smalley, Eric Paris, selinux, linux-kernel

-----邮件原件-----
发件人: bernard@vivo.com <bernard@vivo.com> 代表 Paul Moore
发送时间: 2021年12月6日 11:23
收件人: 赵军奎 <bernard@vivo.com>
抄送: Stephen Smalley <stephen.smalley.work@gmail.com>; Eric Paris <eparis@parisplace.org>; selinux@vger.kernel.org; linux-kernel@vger.kernel.org
主题: Re: [PATCH] security/selinux: fix potential memleak in error branch

On Wed, Dec 1, 2021 at 10:12 PM Bernard Zhao <bernard@vivo.com> wrote:
>
> This patch try to fix potential memleak in error branch.
>
> Signed-off-by: Bernard Zhao <bernard@vivo.com>
> ---
>  security/selinux/hooks.c | 9 ++++++++-
>  1 file changed, 8 insertions(+), 1 deletion(-)
>
> diff --git a/security/selinux/hooks.c b/security/selinux/hooks.c index 
> 62d30c0a30c2..10700720bb74 100644
> --- a/security/selinux/hooks.c
> +++ b/security/selinux/hooks.c
> @@ -983,6 +983,7 @@ static int selinux_sb_clone_mnt_opts(const struct 
> super_block *oldsb,  static int selinux_add_opt(int token, const char 
> *s, void **mnt_opts)  {
>         struct selinux_mnt_opts *opts = *mnt_opts;
> +       bool is_alloc_opts = false;
>
>         if (token == Opt_seclabel)      /* eaten and completely ignored */
>                 return 0;
> @@ -992,9 +993,13 @@ static int selinux_add_opt(int token, const char *s, void **mnt_opts)
>                 if (!opts)
>                         return -ENOMEM;
>                 *mnt_opts = opts;
> +               is_alloc_opts = true;
>         }
> -       if (!s)
> +       if (!s) {
> +               if (is_alloc_opts)
> +                       kfree(opts);
>                 return -ENOMEM;
> +       }

>Thanks for catching this and submitting a patch, but would it be simpler to do the "(!s)" check before the "(!opts)" check?

Hi paul moore:

This seems to be a good idea, thanks for your comments!
I will modify this and resubmit a version of this patch!
Thanks!

BR//Bernard

>         switch (token) {
>         case Opt_context:
>                 if (opts->context || opts->defcontext) @@ -1020,6 
> +1025,8 @@ static int selinux_add_opt(int token, const char *s, void **mnt_opts)
>         return 0;
>  Einval:
>         pr_warn(SEL_MOUNT_FAIL_MSG);
> +       if (is_alloc_opts)
> +               kfree(opts);
>         return -EINVAL;
>  }
>
> --
> 2.33.1

--
paul moore
www.paul-moore.com

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-12-06  3:34 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-12-02  3:12 [PATCH] security/selinux: fix potential memleak in error branch Bernard Zhao
2021-12-06  3:22 ` Paul Moore
     [not found] ` <AI*AZgDuE3c1hmFv16p8r4qS.9.1638760990602.Hmail.bernard@vivo.com.@PENBSEM5VmhUNXRzMkF4K1BRMGhWNDhHek4teHBob2dmWk5Td0U5N0szLXRVWlM2MEJMd0BtYWlsLmdtYWlsLmNvbT4=>
2021-12-06  3:34   ` 答复: " 赵军奎

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).