From: Marc Kleine-Budde Date: Mon, 5 Dec 2016 10:44:23 +0000 (+0100) Subject: can: raw: raw_setsockopt: limit number of can_filter that can be set X-Git-Tag: v3.2.85~26 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?p=pandora-kernel.git;a=commitdiff_plain;h=7f5edacaa2c4b198b948fa0d14661a63d66428d6 can: raw: raw_setsockopt: limit number of can_filter that can be set commit 332b05ca7a438f857c61a3c21a88489a21532364 upstream. This patch adds a check to limit the number of can_filters that can be set via setsockopt on CAN_RAW sockets. Otherwise allocations > MAX_ORDER are not prevented resulting in a warning. Reference: https://lkml.org/lkml/2016/12/2/230 Reported-by: Andrey Konovalov Tested-by: Andrey Konovalov Signed-off-by: Marc Kleine-Budde [bwh: Backported to 3.2: adjust filename] Signed-off-by: Ben Hutchings --- diff --git a/include/linux/can.h b/include/linux/can.h index 9a19bcb3eeaf..86a96a6e9795 100644 --- a/include/linux/can.h +++ b/include/linux/can.h @@ -105,5 +105,6 @@ struct can_filter { }; #define CAN_INV_FILTER 0x20000000U /* to be set in can_filter.can_id */ +#define CAN_RAW_FILTER_MAX 512 /* maximum number of can_filter set via setsockopt() */ #endif /* CAN_H */ diff --git a/net/can/raw.c b/net/can/raw.c index 46cca3a91d19..7320197b8ea7 100644 --- a/net/can/raw.c +++ b/net/can/raw.c @@ -459,6 +459,9 @@ static int raw_setsockopt(struct socket *sock, int level, int optname, if (optlen % sizeof(struct can_filter) != 0) return -EINVAL; + if (optlen > CAN_RAW_FILTER_MAX * sizeof(struct can_filter)) + return -EINVAL; + count = optlen / sizeof(struct can_filter); if (count > 1) {