ext4 crypto: add missing locking for keyring_key access
commit db7730e3091a52c2fcd8fcc952b964d88998e675 upstream. Signed-off-by: Theodore Ts'o <tytso@mit.edu> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
740c56110a
commit
b80b70ef40
1 changed files with 4 additions and 0 deletions
|
@ -213,9 +213,11 @@ retry:
|
||||||
res = -ENOKEY;
|
res = -ENOKEY;
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
down_read(&keyring_key->sem);
|
||||||
ukp = user_key_payload(keyring_key);
|
ukp = user_key_payload(keyring_key);
|
||||||
if (ukp->datalen != sizeof(struct ext4_encryption_key)) {
|
if (ukp->datalen != sizeof(struct ext4_encryption_key)) {
|
||||||
res = -EINVAL;
|
res = -EINVAL;
|
||||||
|
up_read(&keyring_key->sem);
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
master_key = (struct ext4_encryption_key *)ukp->data;
|
master_key = (struct ext4_encryption_key *)ukp->data;
|
||||||
|
@ -226,10 +228,12 @@ retry:
|
||||||
"ext4: key size incorrect: %d\n",
|
"ext4: key size incorrect: %d\n",
|
||||||
master_key->size);
|
master_key->size);
|
||||||
res = -ENOKEY;
|
res = -ENOKEY;
|
||||||
|
up_read(&keyring_key->sem);
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
res = ext4_derive_key_aes(ctx.nonce, master_key->raw,
|
res = ext4_derive_key_aes(ctx.nonce, master_key->raw,
|
||||||
raw_key);
|
raw_key);
|
||||||
|
up_read(&keyring_key->sem);
|
||||||
if (res)
|
if (res)
|
||||||
goto out;
|
goto out;
|
||||||
got_key:
|
got_key:
|
||||||
|
|
Loading…
Add table
Reference in a new issue