]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
ppdev: Add an error check in register_device
authorHuai-Yuan Liu <qq810974084@gmail.com>
Fri, 12 Apr 2024 08:38:40 +0000 (16:38 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 16 Jun 2024 11:39:39 +0000 (13:39 +0200)
commitb65d0410b879af0295d22438a4a32012786d152a
tree88e8f34af37ef8c11d9e69ff00a4d4acd23c4828
parent5276c9d90df734b0583c9d006a95097e5babae27
ppdev: Add an error check in register_device

[ Upstream commit fbf740aeb86a4fe82ad158d26d711f2f3be79b3e ]

In register_device, the return value of ida_simple_get is unchecked,
in witch ida_simple_get will use an invalid index value.

To address this issue, index should be checked after ida_simple_get. When
the index value is abnormal, a warning message should be printed, the port
should be dropped, and the value should be recorded.

Fixes: 9a69645dde11 ("ppdev: fix registering same device name")
Signed-off-by: Huai-Yuan Liu <qq810974084@gmail.com>
Link: https://lore.kernel.org/r/20240412083840.234085-1-qq810974084@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/char/ppdev.c