Linux kernel -stable discussions
 help / color / mirror / Atom feed
From: Tiffany Yang <ynaffit@google.com>
To: Carlos Llamas <cmllamas@google.com>
Cc: "Greg Kroah-Hartman" <gregkh@linuxfoundation.org>,
	"Arve Hjønnevåg" <arve@android.com>,
	"Todd Kjos" <tkjos@android.com>,
	"Martijn Coenen" <maco@android.com>,
	"Joel Fernandes" <joelagnelf@nvidia.com>,
	"Christian Brauner" <brauner@kernel.org>,
	"Suren Baghdasaryan" <surenb@google.com>,
	"Alice Ryhl" <aliceryhl@google.com>,
	kernel-team@android.com, linux-kernel@vger.kernel.org,
	stable@vger.kernel.org
Subject: Re: [PATCH] binder: fix double-free in dbitmap
Date: Mon, 15 Sep 2025 15:50:37 -0700	[thread overview]
Message-ID: <dbx8a52vuy82.fsf@ynaffit-andsys.c.googlers.com> (raw)
In-Reply-To: <20250915221248.3470154-1-cmllamas@google.com> (Carlos Llamas's message of "Mon, 15 Sep 2025 22:12:47 +0000")

Carlos Llamas <cmllamas@google.com> writes:

> A process might fail to allocate a new bitmap when trying to expand its
> proc->dmap. In that case, dbitmap_grow() fails and frees the old bitmap
> via dbitmap_free(). However, the driver calls dbitmap_free() again when
> the same process terminates, leading to a double-free error:

>    ==================================================================
>    BUG: KASAN: double-free in binder_proc_dec_tmpref+0x2e0/0x55c
>    Free of addr ffff00000b7c1420 by task kworker/9:1/209

>    CPU: 9 UID: 0 PID: 209 Comm: kworker/9:1 Not tainted 6.17.0-rc6-dirty  
> #5 PREEMPT
>    Hardware name: linux,dummy-virt (DT)
>    Workqueue: events binder_deferred_func
>    Call trace:
>     kfree+0x164/0x31c
>     binder_proc_dec_tmpref+0x2e0/0x55c
>     binder_deferred_func+0xc24/0x1120
>     process_one_work+0x520/0xba4
>    [...]

>    Allocated by task 448:
>     __kmalloc_noprof+0x178/0x3c0
>     bitmap_zalloc+0x24/0x30
>     binder_open+0x14c/0xc10
>    [...]

>    Freed by task 449:
>     kfree+0x184/0x31c
>     binder_inc_ref_for_node+0xb44/0xe44
>     binder_transaction+0x29b4/0x7fbc
>     binder_thread_write+0x1708/0x442c
>     binder_ioctl+0x1b50/0x2900
>    [...]
>    ==================================================================

> Fix this issue by marking proc->map NULL in dbitmap_free().

> Cc: stable@vger.kernel.org
> Fixes: 15d9da3f818c ("binder: use bitmap for faster descriptor lookup")
> Signed-off-by: Carlos Llamas <cmllamas@google.com>
> ---
>   drivers/android/dbitmap.h | 1 +
>   1 file changed, 1 insertion(+)

> diff --git a/drivers/android/dbitmap.h b/drivers/android/dbitmap.h
> index 956f1bd087d1..c7299ce8b374 100644
> --- a/drivers/android/dbitmap.h
> +++ b/drivers/android/dbitmap.h
> @@ -37,6 +37,7 @@ static inline void dbitmap_free(struct dbitmap *dmap)
>   {
>   	dmap->nbits = 0;
>   	kfree(dmap->map);
> +	dmap->map = NULL;
>   }

>   /* Returns the nbits that a dbitmap can shrink to, 0 if not possible. */

Reviewed-by: Tiffany Yang <ynaffit@google.com>

-- 
Tiffany Y. Yang

  reply	other threads:[~2025-09-15 22:50 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-09-15 22:12 [PATCH] binder: fix double-free in dbitmap Carlos Llamas
2025-09-15 22:50 ` Tiffany Yang [this message]
2025-09-16 15:22 ` Alice Ryhl

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=dbx8a52vuy82.fsf@ynaffit-andsys.c.googlers.com \
    --to=ynaffit@google.com \
    --cc=aliceryhl@google.com \
    --cc=arve@android.com \
    --cc=brauner@kernel.org \
    --cc=cmllamas@google.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=joelagnelf@nvidia.com \
    --cc=kernel-team@android.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=maco@android.com \
    --cc=stable@vger.kernel.org \
    --cc=surenb@google.com \
    --cc=tkjos@android.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