Skip to content

Commit 9da27fb

Browse files
Silvio Gissijarkkojs
authored andcommitted
keys: Fix overwrite of key expiration on instantiation
The expiry time of a key is unconditionally overwritten during instantiation, defaulting to turn it permanent. This causes a problem for DNS resolution as the expiration set by user-space is overwritten to TIME64_MAX, disabling further DNS updates. Fix this by restoring the condition that key_set_expiry is only called when the pre-parser sets a specific expiry. Fixes: 39299bd ("keys, dns: Allow key types (eg. DNS) to be reclaimed immediately on expiry") Signed-off-by: Silvio Gissi <sifonsec@amazon.com> cc: David Howells <dhowells@redhat.com> cc: Hazem Mohamed Abuelfotoh <abuehaze@amazon.com> cc: linux-afs@lists.infradead.org cc: linux-cifs@vger.kernel.org cc: keyrings@vger.kernel.org cc: netdev@vger.kernel.org cc: stable@vger.kernel.org Reviewed-by: Jarkko Sakkinen <jarkko@kernel.org> Signed-off-by: Jarkko Sakkinen <jarkko@kernel.org>
1 parent 9578e32 commit 9da27fb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

security/keys/key.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,8 @@ static int __key_instantiate_and_link(struct key *key,
465465
if (authkey)
466466
key_invalidate(authkey);
467467

468-
key_set_expiry(key, prep->expiry);
468+
if (prep->expiry != TIME64_MAX)
469+
key_set_expiry(key, prep->expiry);
469470
}
470471
}
471472

0 commit comments

Comments
 (0)