tracing: Return -EINVAL if WARN_ON(!glob) triggered in event_hist_trigger_parse()

If `WARN_ON(!glob)` is ever triggered, we will still continue executing
the next lines. This will trigger the more serious problem, a NULL
pointer dereference bug.

Just return -EINVAL if @glob is NULL.

Link: https://lkml.kernel.org/r/20220417185630.199062-2-ammarfaizi2@gnuweeb.org

Cc: Ingo Molnar <mingo@redhat.com>
Cc: GNU/Weeb Mailing List <gwml@vger.gnuweeb.org>
Signed-off-by: Ammar Faizi <ammarfaizi2@gnuweeb.org>
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
This commit is contained in:
Ammar Faizi 2022-04-18 01:56:29 +07:00 коммит произвёл Steven Rostedt (Google)
Родитель cb1c45fb68
Коммит 97a5d2e5e3
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -6214,7 +6214,8 @@ static int event_hist_trigger_parse(struct event_command *cmd_ops,
lockdep_assert_held(&event_mutex);
WARN_ON(!glob);
if (WARN_ON(!glob))
return -EINVAL;
if (strlen(glob)) {
hist_err_clear();