From: Roberto Sassu <roberto.sassu@huaweicloud.com>
To: Paul Moore <paul@paul-moore.com>
Cc: Shu Han <ebpqwerty472123@gmail.com>,
syzbot <syzbot+1cd571a672400ef3a930@syzkaller.appspotmail.com>,
akpm@linux-foundation.org, dmitry.kasatkin@gmail.com,
eric.snowberg@oracle.com, hughd@google.com, jmorris@namei.org,
linux-integrity@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-mm@kvack.org, linux-security-module@vger.kernel.org,
roberto.sassu@huawei.com, serge@hallyn.com,
stephen.smalley.work@gmail.com, syzkaller-bugs@googlegroups.com,
zohar@linux.ibm.com
Subject: Re: [syzbot] [integrity?] [lsm?] possible deadlock in process_measurement (4)
Date: Wed, 09 Oct 2024 18:23:40 +0200 [thread overview]
Message-ID: <1a1d106ea8bba8abc1d3f3cd6fdd71d03edcf764.camel@huaweicloud.com> (raw)
In-Reply-To: <CAHC9VhRt1BA_U2cEDFjHK_bmfW0ejx2AtbwZKgE5FFRDbUYNOg@mail.gmail.com>
On Mon, 2024-10-07 at 12:58 -0400, Paul Moore wrote:
> On Mon, Oct 7, 2024 at 12:49 PM Roberto Sassu
> <roberto.sassu@huaweicloud.com> wrote:
> > On Mon, 2024-10-07 at 12:35 -0400, Paul Moore wrote:
> > > On Mon, Oct 7, 2024 at 11:31 AM Roberto Sassu
> > > <roberto.sassu@huaweicloud.com> wrote:
> > > > On Wed, 2024-10-02 at 23:09 -0400, Paul Moore wrote:
> > > > > On Sat, Sep 28, 2024 at 2:08 PM Shu Han <ebpqwerty472123@gmail.com> wrote:
> > > > > >
> > > > > > > ======================================================
> > > > > > > WARNING: possible circular locking dependency detected
> > > > > > > 6.11.0-syzkaller-10045-g97d8894b6f4c #0 Not tainted
> > > > > > > ------------------------------------------------------
> > > > > > > syz-executor369/5231 is trying to acquire lock:
> > > > > > > ffff888072852370 (&sb->s_type->i_mutex_key#12){+.+.}-{3:3}, at: inode_lock include/linux/fs.h:815 [inline]
> > > > > > > ffff888072852370 (&sb->s_type->i_mutex_key#12){+.+.}-{3:3}, at: process_measurement+0x439/0x1fb0 security/integrity/ima/ima_main.c:250
> > > > > > >
> > > > > > > but task is already holding lock:
> > > > > > > ffff88807ac9a798 (&mm->mmap_lock){++++}-{3:3}, at: mmap_write_lock_killable include/linux/mmap_lock.h:122 [inline]
> > > > > > > ffff88807ac9a798 (&mm->mmap_lock){++++}-{3:3}, at: __do_sys_remap_file_pages mm/mmap.c:1649 [inline]
> > > > > > > ffff88807ac9a798 (&mm->mmap_lock){++++}-{3:3}, at: __se_sys_remap_file_pages+0x22d/0xa50 mm/mmap.c:1624
> > > > > > >
> > > > > > > which lock already depends on the new lock.
> > > > > >
> > > > > > This issue (if not a false positive?) is due to the possible `prot`
> > > > > > change caused by the processing logic for READ_IMPLIES_EXEC in do_mmap(),
> > > > > > so the remap_file_pages() must perform LSM check before calling do_mmap(),
> > > > > > this is what the previous commit want to do.
> > > > >
> > > > > My apologies for the delay on this, I was traveling for a bit and
> > > > > missed this issue while away.
> > > > >
> > > > > Looking quickly at the report, I don't believe this is a false positive.
> > > > >
> > > > > > The LSM check is required to know what the `prot` is, but `prot` must be
> > > > > > obtained after holding the `mmap_write_lock`.
> > > > > >
> > > > > > If the `mmap_write_lock` is released after getting the `prot` and before
> > > > > > the LSM call in remap_file_pages(), it may cause TOCTOU.
> > > > >
> > > > > Looking at the IMA code, specifically the process_measurement()
> > > > > function which is called from the security_mmap_file() LSM hook, I'm
> > > > > not sure why there is the inode_lock() protected region. Mimi?
> > > > > Roberto? My best guess is that locking the inode may have been
> > > > > necessary before we moved the IMA inode state into the inode's LSM
> > > > > security blob, but I'm not certain.
> > > > >
> > > > > Mimi and Roberto, can we safely remove the inode locking in
> > > > > process_measurement()?
> > > >
> > > > I discussed a bit with Mimi. Her concern was the duplicate iint
> > > > structure creation during concurrent file accesses. Now that inode
> > > > integrity metadata have been moved to the inode security blob, we can
> > > > take the iint->mutex out of the ima_iint_cache structure, and store it
> > > > directly in the security blob. In this way, we can remove the inode
> > > > lock.
> > > >
> > > > Will write a patch and see if it passes our tests.
> > >
> > > That's great, thanks Roberto. Assuming all goes well we'll want to
> > > backport this everywhere we merged the remap_file_pages() patch.
> >
> > Welcome. Probably it can go down only until the kernel where IMA and
> > EVM are LSMs.
>
> Yes, we'll need to look at that once we solve this in Linus' tree.
#syz test: https://github.com/robertosassu/linux.git ima-remove-inode-lock-v1
next prev parent reply other threads:[~2024-10-09 16:24 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-28 7:32 [syzbot] [integrity?] [lsm?] possible deadlock in process_measurement (4) syzbot
2024-09-28 13:56 ` Andrew Morton
2024-09-28 18:07 ` Shu Han
2024-10-03 3:09 ` Paul Moore
2024-10-03 7:35 ` Shu Han
2024-10-07 15:31 ` Roberto Sassu
2024-10-07 16:35 ` Paul Moore
2024-10-07 16:49 ` Roberto Sassu
2024-10-07 16:58 ` Paul Moore
2024-10-09 16:23 ` Roberto Sassu [this message]
2024-10-09 19:05 ` syzbot
2024-10-18 14:55 ` Roberto Sassu
2024-10-18 15:23 ` syzbot
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=1a1d106ea8bba8abc1d3f3cd6fdd71d03edcf764.camel@huaweicloud.com \
--to=roberto.sassu@huaweicloud.com \
--cc=akpm@linux-foundation.org \
--cc=dmitry.kasatkin@gmail.com \
--cc=ebpqwerty472123@gmail.com \
--cc=eric.snowberg@oracle.com \
--cc=hughd@google.com \
--cc=jmorris@namei.org \
--cc=linux-integrity@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=linux-security-module@vger.kernel.org \
--cc=paul@paul-moore.com \
--cc=roberto.sassu@huawei.com \
--cc=serge@hallyn.com \
--cc=stephen.smalley.work@gmail.com \
--cc=syzbot+1cd571a672400ef3a930@syzkaller.appspotmail.com \
--cc=syzkaller-bugs@googlegroups.com \
--cc=zohar@linux.ibm.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).