diff options
author | David Howells <dhowells@redhat.com> | 2019-02-14 16:20:37 +0000 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2020-01-29 10:24:16 +0100 |
commit | a9b6e5567326bb9d90f1f551878a068b9bfb971b (patch) | |
tree | 4ea620d607e1f7912d8e21eb290bc1f0e5af1944 /security | |
parent | beb0a21d2cf4a2767b5033ffeedb242a6d53abdb (diff) | |
download | linux-stable-a9b6e5567326bb9d90f1f551878a068b9bfb971b.tar.gz linux-stable-a9b6e5567326bb9d90f1f551878a068b9bfb971b.tar.bz2 linux-stable-a9b6e5567326bb9d90f1f551878a068b9bfb971b.zip |
keys: Timestamp new keys
[ Upstream commit 7c1857bdbdf1e4c541e45eab477ee23ed4333ea4 ]
Set the timestamp on new keys rather than leaving it unset.
Fixes: 31d5a79d7f3d ("KEYS: Do LRU discard in full keyrings")
Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: James Morris <james.morris@microsoft.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'security')
-rw-r--r-- | security/keys/key.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/security/keys/key.c b/security/keys/key.c index 7276d1a009d4..280b4feccdc0 100644 --- a/security/keys/key.c +++ b/security/keys/key.c @@ -296,6 +296,7 @@ struct key *key_alloc(struct key_type *type, const char *desc, key->gid = gid; key->perm = perm; key->restrict_link = restrict_link; + key->last_used_at = ktime_get_real_seconds(); if (!(flags & KEY_ALLOC_NOT_IN_QUOTA)) key->flags |= 1 << KEY_FLAG_IN_QUOTA; |