Commit a5795fd3 authored by James Morris's avatar James Morris
Browse files

LSM: Check for NULL cred-security on free



From: Casey Schaufler <casey@schaufler-ca.com>

Check that the cred security blob has been set before trying
to clean it up. There is a case during credential initialization
that could result in this.

Signed-off-by: default avatarCasey Schaufler <casey@schaufler-ca.com>
Acked-by: default avatarJohn Johansen <john.johansen@canonical.com>
Signed-off-by: default avatarJames Morris <james.morris@microsoft.com>
Reported-by: default avatar <syzbot+69ca07954461f189e808@syzkaller.appspotmail.com>
parent 9474f4e7
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -1027,6 +1027,13 @@ int security_cred_alloc_blank(struct cred *cred, gfp_t gfp)

void security_cred_free(struct cred *cred)
{
	/*
	 * There is a failure case in prepare_creds() that
	 * may result in a call here with ->security being NULL.
	 */
	if (unlikely(cred->security == NULL))
		return;

	call_void_hook(cred_free, cred);
}