From: Vlad Yasevich Date: Thu, 28 Aug 2008 05:41:52 +0000 (-0700) Subject: sctp: add verification checks to SCTP_AUTH_KEY option X-Git-Tag: v2.6.26.4~16 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e2ab3da38b46f4f1389f18c7cd4a9a71ceac0bc6;p=platform%2Fkernel%2Flinux-stable.git sctp: add verification checks to SCTP_AUTH_KEY option [ 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 . Signed-off-by: Vlad Yasevich Signed-off-by: David S. Miller Acked-by: Eugene Teo Signed-off-by: Greg Kroah-Hartman --- diff --git a/net/sctp/auth.c b/net/sctp/auth.c index 675a5c3e68a6..1fcb4cf2f4c9 100644 --- a/net/sctp/auth.c +++ b/net/sctp/auth.c @@ -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) diff --git a/net/sctp/socket.c b/net/sctp/socket.c index 100950d5d37d..e62aafc320c2 100644 --- a/net/sctp/socket.c +++ b/net/sctp/socket.c @@ -3054,6 +3054,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;