mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-16 17:23:55 +08:00
sctp: add verification checks to SCTP_AUTH_KEY option
The structure used for SCTP_AUTH_KEY option contains a length that needs to be verfied to prevent buffer overflow conditions. Spoted by Eugene Teo <eteo@redhat.com>. Signed-off-by: Vlad Yasevich <vladislav.yasevich@hp.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
f410a1fba7
commit
30c2235cbc
@ -80,6 +80,10 @@ static struct sctp_auth_bytes *sctp_auth_create_key(__u32 key_len, gfp_t gfp)
|
|||||||
{
|
{
|
||||||
struct sctp_auth_bytes *key;
|
struct sctp_auth_bytes *key;
|
||||||
|
|
||||||
|
/* Verify that we are not going to overflow INT_MAX */
|
||||||
|
if ((INT_MAX - key_len) < sizeof(struct sctp_auth_bytes))
|
||||||
|
return NULL;
|
||||||
|
|
||||||
/* Allocate the shared key */
|
/* Allocate the shared key */
|
||||||
key = kmalloc(sizeof(struct sctp_auth_bytes) + key_len, gfp);
|
key = kmalloc(sizeof(struct sctp_auth_bytes) + key_len, gfp);
|
||||||
if (!key)
|
if (!key)
|
||||||
|
@ -3144,6 +3144,11 @@ static int sctp_setsockopt_auth_key(struct sock *sk,
|
|||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (authkey->sca_keylength > optlen) {
|
||||||
|
ret = -EINVAL;
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
|
|
||||||
asoc = sctp_id2assoc(sk, authkey->sca_assoc_id);
|
asoc = sctp_id2assoc(sk, authkey->sca_assoc_id);
|
||||||
if (!asoc && authkey->sca_assoc_id && sctp_style(sk, UDP)) {
|
if (!asoc && authkey->sca_assoc_id && sctp_style(sk, UDP)) {
|
||||||
ret = -EINVAL;
|
ret = -EINVAL;
|
||||||
|
Loading…
Reference in New Issue
Block a user