lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Thu, 3 Jan 2019 13:26:34 +0100 From: Oliver Hartkopp <socketcan@...tkopp.net> To: davem@...emloft.net, netdev@...r.kernel.org Cc: ieatmuttonchuan@...il.com, meissner@...e.de, linux-can@...r.kernel.org, Oliver Hartkopp <socketcan@...tkopp.net>, linux-stable <stable@...r.kernel.org> Subject: [PATCH] can: gw: ensure DLC boundaries after CAN frame modification The CAN frame modification rules allow bitwise logical operations which can be also applied to the can_dlc field. Ensure the manipulation result to maintain the can_dlc boundaries so that the CAN drivers do not accidently write arbitrary content beyond the data registers in the CAN controllers I/O mem when processing can-gw manipulated outgoing frames. When passing these frames to user space this issue did not have any effect to the kernel or any leaked data as we always strictly copy sizeof(struct can_frame) bytes. Reported-by: Muyu Yu <ieatmuttonchuan@...il.com> Reported-by: Marcus Meissner <meissner@...e.de> Tested-by: Muyu Yu <ieatmuttonchuan@...il.com> Signed-off-by: Oliver Hartkopp <socketcan@...tkopp.net> Cc: linux-stable <stable@...r.kernel.org> # >= v3.2 --- net/can/gw.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/net/can/gw.c b/net/can/gw.c index faa3da88a127..9000d9b8a133 100644 --- a/net/can/gw.c +++ b/net/can/gw.c @@ -418,6 +418,10 @@ static void can_can_gw_rcv(struct sk_buff *skb, void *data) /* check for checksum updates when the CAN frame has been modified */ if (modidx) { + /* ensure DLC boundaries after the different mods */ + if (cf->can_dlc > 8) + cf->can_dlc = 8; + if (gwj->mod.csumfunc.crc8) (*gwj->mod.csumfunc.crc8)(cf, &gwj->mod.csum.crc8); -- 2.19.2
Powered by blists - more mailing lists