From: Pengfei Xu <pengfei.xu@intel.com>
To: Alexei Starovoitov <alexei.starovoitov@gmail.com>
Cc: <bpf@vger.kernel.org>, <daniel@iogearbox.net>,
<andrii@kernel.org>, <martin.lau@kernel.org>, <memxor@gmail.com>,
<eddyz87@gmail.com>, <brho@google.com>, <kernel-team@fb.com>
Subject: Re: [PATCH v2 bpf] bpf: Fix remap of arena.
Date: Tue, 18 Jun 2024 10:02:26 +0800 [thread overview]
Message-ID: <ZnDqso7jseDC4aqp@xpf.sh.intel.com> (raw)
In-Reply-To: <20240617171812.76634-1-alexei.starovoitov@gmail.com>
The issue cannot be reproduced in the new patch below.
Best Regards,
Thanks!
On 2024-06-17 at 10:18:12 -0700, Alexei Starovoitov wrote:
> From: Alexei Starovoitov <ast@kernel.org>
>
> The bpf arena logic didn't account for mremap operation. Add a refcnt for
> multiple mmap events to prevent use-after-free in arena_vm_close.
>
> Reported-by: Pengfei Xu <pengfei.xu@intel.com>
> Closes: https://lore.kernel.org/bpf/Zmuw29IhgyPNKnIM@xpf.sh.intel.com/
> Fixes: 317460317a02 ("bpf: Introduce bpf_arena.")
> Signed-off-by: Alexei Starovoitov <ast@kernel.org>
> ---
> kernel/bpf/arena.c | 18 ++++++++++++++++--
> 1 file changed, 16 insertions(+), 2 deletions(-)
>
> diff --git a/kernel/bpf/arena.c b/kernel/bpf/arena.c
> index 583ee4fe48ef..fe35b45cf6f8 100644
> --- a/kernel/bpf/arena.c
> +++ b/kernel/bpf/arena.c
> @@ -212,6 +212,7 @@ static u64 arena_map_mem_usage(const struct bpf_map *map)
> struct vma_list {
> struct vm_area_struct *vma;
> struct list_head head;
> + atomic_t mmap_count;
> };
>
> static int remember_vma(struct bpf_arena *arena, struct vm_area_struct *vma)
> @@ -221,20 +222,32 @@ static int remember_vma(struct bpf_arena *arena, struct vm_area_struct *vma)
> vml = kmalloc(sizeof(*vml), GFP_KERNEL);
> if (!vml)
> return -ENOMEM;
> + atomic_set(&vml->mmap_count, 1);
> vma->vm_private_data = vml;
> vml->vma = vma;
> list_add(&vml->head, &arena->vma_list);
> return 0;
> }
>
> +static void arena_vm_open(struct vm_area_struct *vma)
> +{
> + struct bpf_map *map = vma->vm_file->private_data;
> + struct bpf_arena *arena = container_of(map, struct bpf_arena, map);
> + struct vma_list *vml = vma->vm_private_data;
> +
> + atomic_inc(&vml->mmap_count);
> +}
> +
> static void arena_vm_close(struct vm_area_struct *vma)
> {
> struct bpf_map *map = vma->vm_file->private_data;
> struct bpf_arena *arena = container_of(map, struct bpf_arena, map);
> - struct vma_list *vml;
> + struct vma_list *vml = vma->vm_private_data;
>
> + if (!atomic_dec_and_test(&vml->mmap_count))
> + return;
> guard(mutex)(&arena->lock);
> - vml = vma->vm_private_data;
> + /* update link list under lock */
> list_del(&vml->head);
> vma->vm_private_data = NULL;
> kfree(vml);
> @@ -287,6 +300,7 @@ static vm_fault_t arena_vm_fault(struct vm_fault *vmf)
> }
>
> static const struct vm_operations_struct arena_vm_ops = {
> + .open = arena_vm_open,
> .close = arena_vm_close,
> .fault = arena_vm_fault,
> };
> --
> 2.43.0
>
next prev parent reply other threads:[~2024-06-18 2:02 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-17 17:18 [PATCH v2 bpf] bpf: Fix remap of arena Alexei Starovoitov
2024-06-17 17:52 ` Barret Rhoden
2024-06-18 2:02 ` Pengfei Xu [this message]
2024-06-18 4:43 ` kernel test robot
2024-06-18 14:49 ` Alexei Starovoitov
2024-06-18 15:28 ` Daniel Borkmann
2024-06-18 15:30 ` patchwork-bot+netdevbpf
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=ZnDqso7jseDC4aqp@xpf.sh.intel.com \
--to=pengfei.xu@intel.com \
--cc=alexei.starovoitov@gmail.com \
--cc=andrii@kernel.org \
--cc=bpf@vger.kernel.org \
--cc=brho@google.com \
--cc=daniel@iogearbox.net \
--cc=eddyz87@gmail.com \
--cc=kernel-team@fb.com \
--cc=martin.lau@kernel.org \
--cc=memxor@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