From: Jan Kara <jack@suse.cz>
To: Dan Carpenter <dan.carpenter@oracle.com>
Cc: Jan Kara <jack@suse.cz>, Richard Guy Briggs <rgb@redhat.com>,
kbuild@01.org, kbuild-all@01.org, linux-audit@redhat.com,
linux-fsdevel@vger.kernel.org, Al Viro <viro@ZenIV.linux.org.uk>
Subject: Re: [PATCH 2/6] audit: Fix possible spurious -ENOSPC error
Date: Tue, 3 Jul 2018 16:18:49 +0200 [thread overview]
Message-ID: <20180703141849.mnlqa7dmfiuvb3e5@quack2.suse.cz> (raw)
In-Reply-To: <20180702060549.cpwsc4byshuvqrx7@mwanda>
Hi Dan!
On Mon 02-07-18 09:05:49, Dan Carpenter wrote:
> url: https://github.com/0day-ci/linux/commits/Jan-Kara/audit-Fix-various-races-when-tagging-and-untagging-mounts/20180629-043337
>
> smatch warnings:
> kernel/audit_tree.c:484 tag_chunk() warn: inconsistent returns 'mutex:&audit_tree_group->mark_mutex'.
> Locked on: line 400
> Unlocked on: line 411
>
> # https://github.com/0day-ci/linux/commit/86c9c9a738e409c85891519c17d94043b7f434d5
> git remote add linux-review https://github.com/0day-ci/linux
> git remote update linux-review
> git checkout 86c9c9a738e409c85891519c17d94043b7f434d5
> vim +484 kernel/audit_tree.c
>
> 74c3cbe33 Al Viro 2007-07-22 386
> 74c3cbe33 Al Viro 2007-07-22 387 /* the first tagged inode becomes root of tree */
> 74c3cbe33 Al Viro 2007-07-22 388 static int tag_chunk(struct inode *inode, struct audit_tree *tree)
> 74c3cbe33 Al Viro 2007-07-22 389 {
> e61ce8673 Eric Paris 2009-12-17 390 struct fsnotify_mark *old_entry, *chunk_entry;
> 74c3cbe33 Al Viro 2007-07-22 391 struct audit_tree *owner;
> 74c3cbe33 Al Viro 2007-07-22 392 struct audit_chunk *chunk, *old;
> 74c3cbe33 Al Viro 2007-07-22 393 struct node *p;
> 74c3cbe33 Al Viro 2007-07-22 394 int n;
> 74c3cbe33 Al Viro 2007-07-22 395
> 86c9c9a73 Jan Kara 2018-06-28 396 mutex_lock(&audit_tree_group->mark_mutex);
> b1362edfe Jan Kara 2016-12-21 397 old_entry = fsnotify_find_mark(&inode->i_fsnotify_marks,
> b1362edfe Jan Kara 2016-12-21 398 audit_tree_group);
> 28a3a7eb3 Eric Paris 2009-12-17 399 if (!old_entry)
> 74c3cbe33 Al Viro 2007-07-22 400 return create_chunk(inode, tree);
> ^^^^^^^^^^^^^^^^^^^^^^^^^
> Should we drop the lock before this return?
No, because create_chunk() drops &audit_tree_group->mark_mutex in all the
cases. It's a bit ugly to have a function entered with mutex held and
release it but in this case it's somewhat difficult to avoid...
Honza
--
Jan Kara <jack@suse.com>
SUSE Labs, CR
next prev parent reply other threads:[~2018-07-03 14:18 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-06-28 16:40 [PATCH 0/6] audit: Fix various races when tagging and untagging mounts Jan Kara
2018-06-28 16:40 ` [PATCH 1/6] audit_tree: Replace mark->lock locking Jan Kara
2018-06-29 11:31 ` Amir Goldstein
2018-07-03 14:07 ` Jan Kara
2018-06-28 16:40 ` [PATCH 2/6] audit: Fix possible spurious -ENOSPC error Jan Kara
2018-06-29 11:42 ` Amir Goldstein
2018-07-02 6:05 ` Dan Carpenter
2018-07-03 14:18 ` Jan Kara [this message]
2018-06-28 16:40 ` [PATCH 3/6] audit: Fix possible tagging failures Jan Kara
2018-06-29 12:05 ` Amir Goldstein
2018-07-03 14:21 ` Jan Kara
2018-07-03 17:42 ` Amir Goldstein
2018-07-04 8:28 ` Jan Kara
2018-06-28 16:40 ` [PATCH 4/6] audit: Embed key into chunk Jan Kara
2018-06-29 12:53 ` Amir Goldstein
2018-07-03 14:25 ` Jan Kara
2018-06-28 16:40 ` [PATCH 5/6] audit: Make hash table insertion safe against concurrent lookups Jan Kara
2018-06-29 13:02 ` Amir Goldstein
2018-07-03 15:31 ` Jan Kara
2018-06-28 16:40 ` [PATCH 6/6] audit: Point to fsnotify mark instead of embedding it Jan Kara
2018-06-29 13:20 ` Amir Goldstein
2018-07-04 12:34 ` Jan Kara
2018-06-29 11:44 ` [PATCH 0/6] audit: Fix various races when tagging and untagging mounts Amir Goldstein
2018-06-29 18:01 ` Paul Moore
2018-07-03 14:14 ` Jan Kara
2018-07-03 17:03 ` Paul Moore
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=20180703141849.mnlqa7dmfiuvb3e5@quack2.suse.cz \
--to=jack@suse.cz \
--cc=dan.carpenter@oracle.com \
--cc=kbuild-all@01.org \
--cc=kbuild@01.org \
--cc=linux-audit@redhat.com \
--cc=linux-fsdevel@vger.kernel.org \
--cc=rgb@redhat.com \
--cc=viro@ZenIV.linux.org.uk \
/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