]> Git Repo - linux.git/commitdiff
tracing: Fix potential double free in create_var_ref()
authorKeita Suzuki <[email protected]>
Mon, 25 Apr 2022 06:37:38 +0000 (06:37 +0000)
committerSteven Rostedt (Google) <[email protected]>
Fri, 27 May 2022 01:12:59 +0000 (21:12 -0400)
In create_var_ref(), init_var_ref() is called to initialize the fields
of variable ref_field, which is allocated in the previous function call
to create_hist_field(). Function init_var_ref() allocates the
corresponding fields such as ref_field->system, but frees these fields
when the function encounters an error. The caller later calls
destroy_hist_field() to conduct error handling, which frees the fields
and the variable itself. This results in double free of the fields which
are already freed in the previous function.

Fix this by storing NULL to the corresponding fields when they are freed
in init_var_ref().

Link: https://lkml.kernel.org/r/[email protected]
Fixes: 067fe038e70f ("tracing: Add variable reference handling to hist triggers")
CC: [email protected]
Reviewed-by: Masami Hiramatsu <[email protected]>
Reviewed-by: Tom Zanussi <[email protected]>
Signed-off-by: Keita Suzuki <[email protected]>
Signed-off-by: Steven Rostedt (Google) <[email protected]>
kernel/trace/trace_events_hist.c

index 038dc591545d0d641a4985e586f024a7efa87c4a..c6a65738feb364a689d7cdaa7b51e1c51481c10b 100644 (file)
@@ -2093,8 +2093,11 @@ static int init_var_ref(struct hist_field *ref_field,
        return err;
  free:
        kfree(ref_field->system);
+       ref_field->system = NULL;
        kfree(ref_field->event_name);
+       ref_field->event_name = NULL;
        kfree(ref_field->name);
+       ref_field->name = NULL;
 
        goto out;
 }
This page took 0.047369 seconds and 4 git commands to generate.