lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Tue, 11 Mar 2014 13:30:59 -0700
From:	Kees Cook <keescook@...omium.org>
To:	Liu ShuoX <shuox.liu@...el.com>
Cc:	LKML <linux-kernel@...r.kernel.org>,
	Anton Vorontsov <anton@...msg.org>,
	Colin Cross <ccross@...roid.com>,
	Tony Luck <tony.luck@...el.com>, yanmin_zhang@...ux.intel.com
Subject: Re: [PATCH 1/2] pstore: fix NULL pointer fault if get NULL prz in ramoops_get_next_prz

On Mon, Mar 10, 2014 at 11:15 PM, Liu ShuoX <shuox.liu@...el.com> wrote:
> These two patches are applied on top of patches:
> https://lkml.org/lkml/2014/3/3/368
> It has been added in -mm tree. Below is the first patch, and i will
> send the second by replying this one.
>
> From: Liu ShuoX <shuox.liu@...el.com>
>
> ramoops_get_next_prz get the prz according the paramters. If it get a
> uninitialized prz, access its members by following
> persistent_ram_old_size(prz)
> will cause a NULL pointer crash.
> Ex: if ftrace_size is 0, fprz will be NULL.
>
> Fix it by return NULL in advance.
>
> Signed-off-by: Liu ShuoX <shuox.liu@...el.com>

Thanks!

Acked-by: Kees Cook <keescook@...omium.org>

-Kees

> ---
>  fs/pstore/ram.c | 2 ++
>  1 file changed, 2 insertions(+)
>
> diff --git a/fs/pstore/ram.c b/fs/pstore/ram.c
> index 1daed28..6f96d8c 100644
> --- a/fs/pstore/ram.c
> +++ b/fs/pstore/ram.c
> @@ -119,6 +119,8 @@ ramoops_get_next_prz(struct persistent_ram_zone *przs[],
> uint *c, uint max,
>                 return NULL;
>         prz = przs[i];
> +       if (!prz)
> +               return NULL;
>         /* Update old/shadowed buffer. */
>         if (update)
> --
> 1.8.3.2



-- 
Kees Cook
Chrome OS Security
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ