]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
tracing: Fix memory leaks in create_field_var()
authorZilin Guan <zilin@seu.edu.cn>
Thu, 6 Nov 2025 12:01:32 +0000 (12:01 +0000)
committerSteven Rostedt (Google) <rostedt@goodmis.org>
Fri, 7 Nov 2025 00:51:33 +0000 (19:51 -0500)
The function create_field_var() allocates memory for 'val' through
create_hist_field() inside parse_atom(), and for 'var' through
create_var(), which in turn allocates var->type and var->var.name
internally. Simply calling kfree() to release these structures will
result in memory leaks.

Use destroy_hist_field() to properly free 'val', and explicitly release
the memory of var->type and var->var.name before freeing 'var' itself.

Link: https://patch.msgid.link/20251106120132.3639920-1-zilin@seu.edu.cn
Fixes: 02205a6752f22 ("tracing: Add support for 'field variables'")
Signed-off-by: Zilin Guan <zilin@seu.edu.cn>
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
kernel/trace/trace_events_hist.c

index 1d536219b62482b3b43a339aa4696c7819c26114..6bfaf1210dd24ec7904da302123fce0308e6f8fe 100644 (file)
@@ -3272,14 +3272,16 @@ static struct field_var *create_field_var(struct hist_trigger_data *hist_data,
        var = create_var(hist_data, file, field_name, val->size, val->type);
        if (IS_ERR(var)) {
                hist_err(tr, HIST_ERR_VAR_CREATE_FIND_FAIL, errpos(field_name));
-               kfree(val);
+               destroy_hist_field(val, 0);
                ret = PTR_ERR(var);
                goto err;
        }
 
        field_var = kzalloc(sizeof(struct field_var), GFP_KERNEL);
        if (!field_var) {
-               kfree(val);
+               destroy_hist_field(val, 0);
+               kfree_const(var->type);
+               kfree(var->var.name);
                kfree(var);
                ret =  -ENOMEM;
                goto err;