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] [day] [month] [year] [list]
Message-ID: <CAJZ5v0gErAwBw_moSmO+qB2tY4dqLtTBm-YZprCPUDJGfLKBwA@mail.gmail.com>
Date: Mon, 5 Jan 2026 19:15:47 +0100
From: "Rafael J. Wysocki" <rafael@...nel.org>
To: Malaya Kumar Rout <mrout@...hat.com>
Cc: rafael@...nel.org, Len Brown <lenb@...nel.org>, Pavel Machek <pavel@...nel.org>, 
	Herbert Xu <herbert@...dor.apana.org.au>, linux-pm@...r.kernel.org, 
	linux-kernel@...r.kernel.org
Subject: Re: [PATCH v2] PM: hibernate: Fix crash when freeing invalid crypto compressor

On Tue, Dec 30, 2025 at 12:56 PM Malaya Kumar Rout <mrout@...hat.com> wrote:
>
> When crypto_alloc_acomp() fails, it returns an ERR_PTR value, not NULL.
> The cleanup code in save_compressed_image() and load_compressed_image()
> unconditionally calls crypto_free_acomp() without checking for ERR_PTR,
> which causes crypto_acomp_tfm() to dereference an invalid pointer and
> crash the kernel.
>
> This can be triggered when the compression algorithm is unavailable
> (e.g., CONFIG_CRYPTO_LZO not enabled).
>
> Fix by adding IS_ERR_OR_NULL() checks before calling crypto_free_acomp()
> and acomp_request_free(), similar to the existing kthread_stop() check.
>
> Fixes: b03d542c3c95 ("PM: hibernate: Use crypto_acomp interface")
> Signed-off-by: Malaya Kumar Rout <mrout@...hat.com>
> ---
>  kernel/power/swap.c | 12 ++++++++----
>  1 file changed, 8 insertions(+), 4 deletions(-)
>
> diff --git a/kernel/power/swap.c b/kernel/power/swap.c
> index 33a186373bef..8ee2fa995580 100644
> --- a/kernel/power/swap.c
> +++ b/kernel/power/swap.c
> @@ -902,8 +902,10 @@ static int save_compressed_image(struct swap_map_handle *handle,
>                 for (thr = 0; thr < nr_threads; thr++) {
>                         if (data[thr].thr)
>                                 kthread_stop(data[thr].thr);
> -                       acomp_request_free(data[thr].cr);
> -                       crypto_free_acomp(data[thr].cc);
> +                       if (data[thr].cr)
> +                               acomp_request_free(data[thr].cr);
> +                       if (!IS_ERR_OR_NULL(data[thr].cc))
> +                               crypto_free_acomp(data[thr].cc);
>                 }
>                 vfree(data);
>         }
> @@ -1499,8 +1501,10 @@ static int load_compressed_image(struct swap_map_handle *handle,
>                 for (thr = 0; thr < nr_threads; thr++) {
>                         if (data[thr].thr)
>                                 kthread_stop(data[thr].thr);
> -                       acomp_request_free(data[thr].cr);
> -                       crypto_free_acomp(data[thr].cc);
> +                       if (data[thr].cr)
> +                               acomp_request_free(data[thr].cr);
> +                       if (!IS_ERR_OR_NULL(data[thr].cc))
> +                               crypto_free_acomp(data[thr].cc);
>                 }
>                 vfree(data);
>         }
> --

Applied as 6.19-rc material, thanks!

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ