From a5e5c37434eb182cf50cec90d9736d9a9a390116 Mon Sep 17 00:00:00 2001 From: Xi Wang Date: Tue, 22 Nov 2011 15:55:30 +0000 Subject: [PATCH] sctp: integer overflow in sctp_auth_create_key() The previous commit 30c2235c is incomplete and cannot prevent integer overflows. For example, when key_len is 0x80000000 (INT_MAX + 1), the left-hand side of the check, (INT_MAX - key_len), which is unsigned, becomes 0xffffffff (UINT_MAX) and bypasses the check. Signed-off-by: Xi Wang Signed-off-by: David S. Miller -- 2.46.0