All of lore.kernel.org
 help / color / mirror / Atom feed
From: Tom Zanussi <zanussi@kernel.org>
To: Linyu Yuan <quic_linyyuan@quicinc.com>,
	Steven Rostedt <rostedt@goodmis.org>,
	Masami Hiramatsu <mhiramat@kernel.org>
Cc: linux-kernel@vger.kernel.org
Subject: Re: [PATCH v6 1/3] tracing: eprobe: remove duplicate is_good_name() operation
Date: Sat, 25 Jun 2022 12:25:50 -0500	[thread overview]
Message-ID: <3f1b974be23b058cc0f004b518df21716b9dfcfd.camel@kernel.org> (raw)
In-Reply-To: <1655776787-18133-2-git-send-email-quic_linyyuan@quicinc.com>

Hi Linyu,

On Tue, 2022-06-21 at 09:59 +0800, Linyu Yuan wrote:
> traceprobe_parse_event_name() already validate SYSTEM and EVENT name,
> there is no need to call is_good_name() after it.
> 
> Add trace_probe_log_set_index(1) to allow report correct error
> if user input wrong SYSTEM.EVENT format.
> 
> Acked-by: Masami Hiramatsu (Google) <mhiramat@kernel.org>
> Signed-off-by: Linyu Yuan <quic_linyyuan@quicinc.com>
> ---
> v2: drop v1 change as it is NACK.
>     add it to remove duplicate is_good_name().
> v3: move it as first patch.
> v4: no change
> v5: add Acked-by tag
> v6: keep is_good_name() check for group and event name
>     add trace_probe_log_set_index(1) to report correct error message.
> 
>  kernel/trace/trace_eprobe.c | 3 +--
>  1 file changed, 1 insertion(+), 2 deletions(-)
> 
> diff --git a/kernel/trace/trace_eprobe.c
> b/kernel/trace/trace_eprobe.c
> index 7d44785..8979cb9e 100644
> --- a/kernel/trace/trace_eprobe.c
> +++ b/kernel/trace/trace_eprobe.c
> @@ -881,13 +881,12 @@ static int __trace_eprobe_create(int argc,
> const char *argv[])
>         if (!is_good_name(event) || !is_good_name(group))
>                 goto parse_error;
>  
> +       trace_probe_log_set_index(1);

Is this something that you noticed missing in the original code and are
adding now?  If so, please make this a separate patch.  Or is this
something that's needed for the new 'generating event name' code?  If
that's the case, please move this to the other patch.

This one should only contain the code related to the duplicate
is_good_name() removal mentioned in the subject.  Or if this really
does belong here, please provide more explanation of why it's needed if
you remove the duplicate is_good_name() code.

Thanks,

Tom

>         sys_event = argv[1];
>         ret = traceprobe_parse_event_name(&sys_event, &sys_name,
> buf2,
>                                           sys_event - argv[1]);
>         if (ret || !sys_name)
>                 goto parse_error;
> -       if (!is_good_name(sys_event) || !is_good_name(sys_name))
> -               goto parse_error;
>  
>         mutex_lock(&event_mutex);
>         event_call = find_and_get_event(sys_name, sys_event);


  reply	other threads:[~2022-06-25 17:25 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-06-21  1:59 [PATCH v6 0/3] tracing/probes: allow no event name input when create group Linyu Yuan
2022-06-21  1:59 ` [PATCH v6 1/3] tracing: eprobe: remove duplicate is_good_name() operation Linyu Yuan
2022-06-25 17:25   ` Tom Zanussi [this message]
2022-06-27  0:33     ` Linyu Yuan
2022-06-21  1:59 ` [PATCH v6 2/3] tracing: auto generate event name when create a group of events Linyu Yuan
2022-07-16 14:55   ` [tracing] c1022e59f1: kernel-selftests.ftrace.Kprobe_event_parser_error_log_check.fail kernel test robot
2022-07-16 14:55     ` kernel test robot
2022-06-21  1:59 ` [PATCH v6 3/3] selftests/ftrace: add test case for GRP/ only input Linyu Yuan

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=3f1b974be23b058cc0f004b518df21716b9dfcfd.camel@kernel.org \
    --to=zanussi@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mhiramat@kernel.org \
    --cc=quic_linyyuan@quicinc.com \
    --cc=rostedt@goodmis.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.