aboutsummaryrefslogtreecommitdiff
path: root/scripts/bpf_doc.py
diff options
context:
space:
mode:
authorKeita Suzuki <[email protected]>2022-04-25 06:37:38 +0000
committerSteven Rostedt (Google) <[email protected]>2022-05-26 21:12:59 -0400
commit99696a2592bca641eb88cc9a80c90e591afebd0f (patch)
treef7099085c0a6fd9675f2ec758c3a76b38bbf2602 /scripts/bpf_doc.py
parentcb24693d94ceaf658944ad2e922203c0503775d2 (diff)
tracing: Fix potential double free in create_var_ref()
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]>
Diffstat (limited to 'scripts/bpf_doc.py')
0 files changed, 0 insertions, 0 deletions