can: raw: raw_setsockopt: limit number of can_filter that can be set
authorMarc Kleine-Budde <mkl@pengutronix.de>
Mon, 5 Dec 2016 10:44:23 +0000 (11:44 +0100)
committerWilly Tarreau <w@1wt.eu>
Tue, 20 Jun 2017 06:03:01 +0000 (08:03 +0200)
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 <andreyknvl@google.com>
Tested-by: Andrey Konovalov <andreyknvl@google.com>
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
Signed-off-by: Willy Tarreau <w@1wt.eu>
include/uapi/linux/can.h
net/can/raw.c

index e52958d7c2d119cb416587466f4a4d2a5bb1e8d0..3018528bd1bfb2d1871baa343d2c10c02c13415c 100644 (file)
@@ -158,5 +158,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 */
index f4d86485571fdc0e4d1ddcbea66f505d2663b0c6..602be0e07a02ec156bacd08b6541711a146837b1 100644 (file)
@@ -470,6 +470,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) {