tracing/probes: check the return value of kstrndup() for pbuf
authorXiaoke Wang <xkernel.wang@foxmail.com>
Tue, 14 Dec 2021 02:26:46 +0000 (10:26 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 8 Mar 2022 18:12:38 +0000 (19:12 +0100)
commit013c2af6c15cc5a65c5f2b242c496e5be843b0e7
treedfb427ae37f053aa2a2c681eda99fd0e6f627fce
parent8a20fed48eb48bd3ef7d5649b3e9aeb038a79673
tracing/probes: check the return value of kstrndup() for pbuf

[ Upstream commit 1c1857d400355e96f0fe8b32adc6fa7594d03b52 ]

kstrndup() is a memory allocation-related function, it returns NULL when
some internal memory errors happen. It is better to check the return
value of it so to catch the memory error in time.

Link: https://lkml.kernel.org/r/tencent_4D6E270731456EB88712ED7F13883C334906@qq.com
Acked-by: Masami Hiramatsu <mhiramat@kernel.org>
Fixes: a42e3c4de964 ("tracing/probe: Add immediate string parameter support")
Signed-off-by: Xiaoke Wang <xkernel.wang@foxmail.com>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
kernel/trace/trace_probe.c