]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
sctp: add verification checks to SCTP_AUTH_KEY option
authorVlad Yasevich <vladislav.yasevich@hp.com>
Thu, 28 Aug 2008 05:41:52 +0000 (22:41 -0700)
committerGreg Kroah-Hartman <gregkh@suse.de>
Mon, 8 Sep 2008 10:20:21 +0000 (03:20 -0700)
[ Upstream commit 30c2235cbc477d4629983d440cdc4f496fec9246 ]

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>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
net/sctp/auth.c
net/sctp/socket.c

index 675a5c3e68a6f82806b4b8d97411af24774d87fe..1fcb4cf2f4c9bb67a3433bd6182fcaf7b1dd4884 100644 (file)
@@ -80,6 +80,10 @@ static struct sctp_auth_bytes *sctp_auth_create_key(__u32 key_len, gfp_t gfp)
 {
        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 */
        key = kmalloc(sizeof(struct sctp_auth_bytes) + key_len, gfp);
        if (!key)
index 7ceedee6a94602d52e772057b829ae31a12a9716..d9373c358ab2d8844b490f890c7a85eab9f0e500 100644 (file)
@@ -3072,6 +3072,11 @@ static int sctp_setsockopt_auth_key(struct sock *sk,
                goto out;
        }
 
+       if (authkey->sca_keylength > optlen) {
+               ret = -EINVAL;
+               goto out;
+       }
+
        asoc = sctp_id2assoc(sk, authkey->sca_assoc_id);
        if (!asoc && authkey->sca_assoc_id && sctp_style(sk, UDP)) {
                ret = -EINVAL;