netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Christian Brauner <brauner@kernel.org>
To: Abhishek Shah <abhishek.shah@columbia.edu>
Cc: linux-kernel@vger.kernel.org, andrii@kernel.org, ast@kernel.org,
	bpf@vger.kernel.org, cgroups@vger.kernel.org,
	daniel@iogearbox.net, hannes@cmpxchg.org,
	john.fastabend@gmail.com, kafai@fb.com, kpsingh@kernel.org,
	lizefan.x@bytedance.com, netdev@vger.kernel.org,
	songliubraving@fb.com, tj@kernel.org, yhs@fb.com,
	Gabriel Ryan <gabe@cs.columbia.edu>
Subject: Re: data-race in cgroup_get_tree / proc_cgroup_show
Date: Fri, 19 Aug 2022 09:22:56 +0200	[thread overview]
Message-ID: <20220819072256.fn7ctciefy4fc4cu@wittgenstein> (raw)
In-Reply-To: <CAEHB249jcoG=sMGLUgqw3Yf+SjZ7ZkUfF_M+WcyQGCAe77o2kA@mail.gmail.com>

On Thu, Aug 18, 2022 at 07:24:00PM -0400, Abhishek Shah wrote:
> Hi all,
> 
> We found the following data race involving the *cgrp_dfl_visible *variable.
> We think it has security implications as the racing variable controls the
> contents used in /proc/<pid>/cgroup which has been used in prior work
> <https://www.cyberark.com/resources/threat-research-blog/the-strange-case-of-how-we-escaped-the-docker-default-container>
> in container escapes. Please let us know what you think. Thanks!

One straightforward fix might be to use
cmpxchg(&cgrp_dfl_visible, false, true) in cgroup_get_tree()
and READ_ONCE(cgrp_dfl_visible) in proc_cgroup_show() or sm like that.
I'm not sure this is an issue though but might still be nice to fix it.

> 
> *-----------------------------Report--------------------------------------*
> *write* to 0xffffffff881d0344 of 1 bytes by task 6542 on cpu 0:
>  cgroup_get_tree+0x30/0x1c0 kernel/cgroup/cgroup.c:2153
>  vfs_get_tree+0x53/0x1b0 fs/super.c:1497
>  do_new_mount+0x208/0x6a0 fs/namespace.c:3040
>  path_mount+0x4a0/0xbd0 fs/namespace.c:3370
>  do_mount fs/namespace.c:3383 [inline]
>  __do_sys_mount fs/namespace.c:3591 [inline]
>  __se_sys_mount+0x215/0x2d0 fs/namespace.c:3568
>  __x64_sys_mount+0x67/0x80 fs/namespace.c:3568
>  do_syscall_x64 arch/x86/entry/common.c:50 [inline]
>  do_syscall_64+0x3d/0x90 arch/x86/entry/common.c:80
>  entry_SYSCALL_64_after_hwframe+0x44/0xae
> 
> *read* to 0xffffffff881d0344 of 1 bytes by task 6541 on cpu 1:
>  proc_cgroup_show+0x1ec/0x4e0 kernel/cgroup/cgroup.c:6017
>  proc_single_show+0x96/0x120 fs/proc/base.c:777
>  seq_read_iter+0x2d2/0x8e0 fs/seq_file.c:230
>  seq_read+0x1c9/0x210 fs/seq_file.c:162
>  vfs_read+0x1b5/0x6e0 fs/read_write.c:480
>  ksys_read+0xde/0x190 fs/read_write.c:620
>  __do_sys_read fs/read_write.c:630 [inline]
>  __se_sys_read fs/read_write.c:628 [inline]
>  __x64_sys_read+0x43/0x50 fs/read_write.c:628
>  do_syscall_x64 arch/x86/entry/common.c:50 [inline]
>  do_syscall_64+0x3d/0x90 arch/x86/entry/common.c:80
>  entry_SYSCALL_64_after_hwframe+0x44/0xae
> 
> Reported by Kernel Concurrency Sanitizer on:
> CPU: 1 PID: 6541 Comm: syz-executor2-n Not tainted 5.18.0-rc5+ #107
> Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.15.0-1
> 04/01/2014
> 
> 
> *Reproducing Inputs*
> Input CPU 0:
> r0 = fsopen(&(0x7f0000000000)='cgroup2\x00', 0x0)
> fsconfig$FSCONFIG_CMD_CREATE(r0, 0x6, 0x0, 0x0, 0x0)
> fsmount(r0, 0x0, 0x83)
> 
> Input CPU 1:
> r0 = syz_open_procfs(0x0, &(0x7f0000000040)='cgroup\x00')
> read$eventfd(r0, &(0x7f0000000080), 0x8)

       reply	other threads:[~2022-08-19  7:23 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <CAEHB249jcoG=sMGLUgqw3Yf+SjZ7ZkUfF_M+WcyQGCAe77o2kA@mail.gmail.com>
2022-08-19  7:22 ` Christian Brauner [this message]
2022-08-22 17:04   ` data-race in cgroup_get_tree / proc_cgroup_show Gabriel Ryan
2022-08-28 18:22     ` Tejun Heo
2022-08-29  7:27       ` Christian Brauner
2022-09-04 19:23         ` [PATCH cgroup/for-6.1] cgroup: Remove data-race around cgrp_dfl_visible Tejun Heo

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=20220819072256.fn7ctciefy4fc4cu@wittgenstein \
    --to=brauner@kernel.org \
    --cc=abhishek.shah@columbia.edu \
    --cc=andrii@kernel.org \
    --cc=ast@kernel.org \
    --cc=bpf@vger.kernel.org \
    --cc=cgroups@vger.kernel.org \
    --cc=daniel@iogearbox.net \
    --cc=gabe@cs.columbia.edu \
    --cc=hannes@cmpxchg.org \
    --cc=john.fastabend@gmail.com \
    --cc=kafai@fb.com \
    --cc=kpsingh@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=lizefan.x@bytedance.com \
    --cc=netdev@vger.kernel.org \
    --cc=songliubraving@fb.com \
    --cc=tj@kernel.org \
    --cc=yhs@fb.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;
as well as URLs for NNTP newsgroup(s).