From: David Howells <dhowells@redhat.com>
To: Jann Horn <jannh@google.com>
Cc: dhowells@redhat.com, "Eric W. Biederman" <ebiederm@xmission.com>,
keyrings@vger.kernel.org,
linux-security-module <linux-security-module@vger.kernel.org>,
linux-fsdevel <linux-fsdevel@vger.kernel.org>,
kernel list <linux-kernel@vger.kernel.org>,
dwalsh@redhat.com, vgoyal@redhat.com
Subject: Re: [PATCH 07/11] keys: Move the user and user-session keyrings to the user_namespace
Date: Thu, 25 Apr 2019 12:38:21 +0100 [thread overview]
Message-ID: <3832.1556192301@warthog.procyon.org.uk> (raw)
In-Reply-To: <CAG48ez23c1eiEJpBwkV183sesj6EDWoMsEh40GDXQkS1W2_nMA@mail.gmail.com>
Jann Horn <jannh@google.com> wrote:
> > + struct key *user_keyring_register;
>
> Maybe a comment about locking semantics above user_keyring_register?
> "Only written once, may be read locklessly with READ_ONCE()", or
> something like that?
Ok.
> > -
> > +#define __KDEBUG
>
> Was that supposed to be in here, or did you commit that accidentally?
Accidental.
> > - struct key *uid_keyring, *session_keyring;
> > + struct key *reg_keyring = user_ns->user_keyring_register;
>
> This is a lockless read of a field that may be written concurrently;
> this should be READ_ONCE(). (Especially on alpha, I think the memory
> ordering will actually be incorrect without READ_ONCE().)
Yeah, you're right about both of these that you pointed out. It's not needed
when the user_ns->keyring_sem is taken for writing, however.
> > + if (!IS_ERR(reg_keyring))
> > + user_ns->user_keyring_register = reg_keyring;
>
> This is a write of a pointer that may be read concurrently; this
> should be smp_store_release().
Yep.
> > + else if ((user_session = get_user_session_keyring())) {
> > + key_ref = keyring_search_aux(make_key_ref(user_session, 1),
> > + ctx);
> > if (!IS_ERR(key_ref))
> > goto found;
>
> I'm not sure I understand this code. In the "goto found" case, the
> key_put() below is skipped, right? Is that intentional?
Actually, the key_put() should be directly after the keyring_search_aux()
call, before the error check.
> > error_alloc:
> > complete_request_key(authkey, ret);
> > +error_us:
> > + key_put(user_session);
> > kleave(" = %d", ret);
> > return ret;
> > }
>
> This looks weird. If the look_up_user_keyrings() fails, user_session
> might still be an uninitialized pointer, right? And then the "goto
> error_us" jumps down here and calls key_put() on that?
The call to complete_request_key() should be after error_us and the key_put()
should be before it.
> > @@ -289,16 +291,19 @@ static int construct_get_dest_keyring(struct key **_dest_keyring)
> >
> > if (dest_keyring)
> > break;
> > + /* Fall through */
> >
> > /* fall through */
> > case KEY_REQKEY_DEFL_USER_SESSION_KEYRING:
>
> Why two "fall through" comments?
Someone else added one and when I rebased, I don't think I got a conflict.
David
next prev parent reply other threads:[~2019-04-25 11:38 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-04-24 16:13 [PATCH 00/11] keys: Namespacing David Howells
2019-04-24 16:13 ` [PATCH 01/11] keys: Invalidate used request_key authentication keys David Howells
2019-04-24 16:13 ` [PATCH 02/11] keys: Kill off request_key_async{,_with_auxdata} David Howells
2019-04-24 16:13 ` [PATCH 03/11] keys: Simplify key description management David Howells
2019-04-24 16:14 ` [PATCH 04/11] keys: Cache the hash value to avoid lots of recalculation David Howells
2019-04-24 16:14 ` [PATCH 05/11] keys: Add a 'recurse' flag for keyring searches David Howells
2019-04-25 4:27 ` Andrew Zaborowski
2019-04-25 11:02 ` David Howells
2019-04-24 16:14 ` [PATCH 06/11] keys: Namespace keyring names David Howells
2019-04-24 16:14 ` [PATCH 07/11] keys: Move the user and user-session keyrings to the user_namespace David Howells
2019-04-24 22:03 ` Jann Horn
2019-04-24 22:24 ` David Howells
2019-04-25 11:38 ` David Howells [this message]
2019-04-24 16:14 ` [PATCH 08/11] keys: Include target namespace in match criteria David Howells
2019-04-24 16:14 ` [PATCH 09/11] keys: Garbage collect keys for which the domain has been removed David Howells
2019-04-24 16:14 ` [PATCH 10/11] keys: Network namespace domain tag David Howells
2019-04-24 21:54 ` David Howells
2019-04-24 16:15 ` [PATCH 11/11] keys: Pass the network namespace into request_key mechanism David Howells
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=3832.1556192301@warthog.procyon.org.uk \
--to=dhowells@redhat.com \
--cc=dwalsh@redhat.com \
--cc=ebiederm@xmission.com \
--cc=jannh@google.com \
--cc=keyrings@vger.kernel.org \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-security-module@vger.kernel.org \
--cc=vgoyal@redhat.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