public inbox for linux-trace-devel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] kernelshark: Fix TEP filter array parsing logic
@ 2026-02-24 17:05 Ciunas Bennett
  2026-02-25 23:35 ` Steven Rostedt
  2026-02-27  7:45 ` Yordan Karadzhov
  0 siblings, 2 replies; 3+ messages in thread
From: Ciunas Bennett @ 2026-02-24 17:05 UTC (permalink / raw)
  To: linux-trace-devel; +Cc: Ciunas Bennett

When saving a session with more than a single TEP advanced filter,
KernelShark triggers a json-c assertion:

"json_object_array_get_idx: Assertion
`json_object_get_type(jso) == json_type_array' failed."

This is caused because the code reuses the `jfilter` variable inside
the loop to fetch each array element:

    jfilter = json_object_array_get_idx(jfilter, i);

This overwrites the original array object. On the next iteration,
`jfilter` is no longer a json_type_array, causing the assertion.

Fix this by introducing a temporary variable `jitem` to store each
array element, leaving `jfilter` to point to the actual array.

Signed-off-by: Ciunas Bennett <ciunas@linux.ibm.com>
---
 src/libkshark-configio.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/libkshark-configio.c b/src/libkshark-configio.c
index 88c2c9a..568ec73 100644
--- a/src/libkshark-configio.c
+++ b/src/libkshark-configio.c
@@ -1528,7 +1528,7 @@ bool kshark_export_adv_filters(struct kshark_context *kshark_ctx, int sd,
 static bool kshark_adv_filters_from_json(struct kshark_data_stream *stream,
 					 struct json_object *jobj)
 {
-	json_object *jfilter, *jname, *jcond;
+	json_object *jfilter, *jname, *jcond, *jitem;
 	int i, length, n, ret = 0;
 	char *filter_str = NULL;
 
@@ -1548,10 +1548,10 @@ static bool kshark_adv_filters_from_json(struct kshark_data_stream *stream,
 	/* Set the filter. */
 	length = json_object_array_length(jfilter);
 	for (i = 0; i < length; ++i) {
-		jfilter = json_object_array_get_idx(jfilter, i);
+		jitem = json_object_array_get_idx(jfilter, i);
 
-		if (!json_object_object_get_ex(jfilter, "name", &jname) ||
-		    !json_object_object_get_ex(jfilter, "condition", &jcond))
+		if (!json_object_object_get_ex(jitem, "name", &jname) ||
+		    !json_object_object_get_ex(jitem, "condition", &jcond))
 			goto fail;
 
 		n = asprintf(&filter_str, "%s:%s",
-- 
2.53.0


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] kernelshark: Fix TEP filter array parsing logic
  2026-02-24 17:05 [PATCH] kernelshark: Fix TEP filter array parsing logic Ciunas Bennett
@ 2026-02-25 23:35 ` Steven Rostedt
  2026-02-27  7:45 ` Yordan Karadzhov
  1 sibling, 0 replies; 3+ messages in thread
From: Steven Rostedt @ 2026-02-25 23:35 UTC (permalink / raw)
  To: Ciunas Bennett; +Cc: linux-trace-devel, Yordan Karadzhov

On Tue, 24 Feb 2026 17:05:25 +0000
Ciunas Bennett <ciunas@linux.ibm.com> wrote:

Thanks, I'm adding Yordan to the Cc as he's maintaining KernelShark.

-- Steve


> When saving a session with more than a single TEP advanced filter,
> KernelShark triggers a json-c assertion:
> 
> "json_object_array_get_idx: Assertion
> `json_object_get_type(jso) == json_type_array' failed."
> 
> This is caused because the code reuses the `jfilter` variable inside
> the loop to fetch each array element:
> 
>     jfilter = json_object_array_get_idx(jfilter, i);
> 
> This overwrites the original array object. On the next iteration,
> `jfilter` is no longer a json_type_array, causing the assertion.
> 
> Fix this by introducing a temporary variable `jitem` to store each
> array element, leaving `jfilter` to point to the actual array.
> 
> Signed-off-by: Ciunas Bennett <ciunas@linux.ibm.com>
> ---
>  src/libkshark-configio.c | 8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/src/libkshark-configio.c b/src/libkshark-configio.c
> index 88c2c9a..568ec73 100644
> --- a/src/libkshark-configio.c
> +++ b/src/libkshark-configio.c
> @@ -1528,7 +1528,7 @@ bool kshark_export_adv_filters(struct kshark_context *kshark_ctx, int sd,
>  static bool kshark_adv_filters_from_json(struct kshark_data_stream *stream,
>  					 struct json_object *jobj)
>  {
> -	json_object *jfilter, *jname, *jcond;
> +	json_object *jfilter, *jname, *jcond, *jitem;
>  	int i, length, n, ret = 0;
>  	char *filter_str = NULL;
>  
> @@ -1548,10 +1548,10 @@ static bool kshark_adv_filters_from_json(struct kshark_data_stream *stream,
>  	/* Set the filter. */
>  	length = json_object_array_length(jfilter);
>  	for (i = 0; i < length; ++i) {
> -		jfilter = json_object_array_get_idx(jfilter, i);
> +		jitem = json_object_array_get_idx(jfilter, i);
>  
> -		if (!json_object_object_get_ex(jfilter, "name", &jname) ||
> -		    !json_object_object_get_ex(jfilter, "condition", &jcond))
> +		if (!json_object_object_get_ex(jitem, "name", &jname) ||
> +		    !json_object_object_get_ex(jitem, "condition", &jcond))
>  			goto fail;
>  
>  		n = asprintf(&filter_str, "%s:%s",

		

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] kernelshark: Fix TEP filter array parsing logic
  2026-02-24 17:05 [PATCH] kernelshark: Fix TEP filter array parsing logic Ciunas Bennett
  2026-02-25 23:35 ` Steven Rostedt
@ 2026-02-27  7:45 ` Yordan Karadzhov
  1 sibling, 0 replies; 3+ messages in thread
From: Yordan Karadzhov @ 2026-02-27  7:45 UTC (permalink / raw)
  To: Ciunas Bennett, linux-trace-devel

The patch is applied. Thanks!

Yordan

On 2/24/26 19:05, Ciunas Bennett wrote:
> When saving a session with more than a single TEP advanced filter,
> KernelShark triggers a json-c assertion:
> 
> "json_object_array_get_idx: Assertion
> `json_object_get_type(jso) == json_type_array' failed."
> 
> This is caused because the code reuses the `jfilter` variable inside
> the loop to fetch each array element:
> 
>      jfilter = json_object_array_get_idx(jfilter, i);
> 
> This overwrites the original array object. On the next iteration,
> `jfilter` is no longer a json_type_array, causing the assertion.
> 
> Fix this by introducing a temporary variable `jitem` to store each
> array element, leaving `jfilter` to point to the actual array.
> 
> Signed-off-by: Ciunas Bennett <ciunas@linux.ibm.com>
> ---
>   src/libkshark-configio.c | 8 ++++----
>   1 file changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/src/libkshark-configio.c b/src/libkshark-configio.c
> index 88c2c9a..568ec73 100644
> --- a/src/libkshark-configio.c
> +++ b/src/libkshark-configio.c
> @@ -1528,7 +1528,7 @@ bool kshark_export_adv_filters(struct kshark_context *kshark_ctx, int sd,
>   static bool kshark_adv_filters_from_json(struct kshark_data_stream *stream,
>   					 struct json_object *jobj)
>   {
> -	json_object *jfilter, *jname, *jcond;
> +	json_object *jfilter, *jname, *jcond, *jitem;
>   	int i, length, n, ret = 0;
>   	char *filter_str = NULL;
>   
> @@ -1548,10 +1548,10 @@ static bool kshark_adv_filters_from_json(struct kshark_data_stream *stream,
>   	/* Set the filter. */
>   	length = json_object_array_length(jfilter);
>   	for (i = 0; i < length; ++i) {
> -		jfilter = json_object_array_get_idx(jfilter, i);
> +		jitem = json_object_array_get_idx(jfilter, i);
>   
> -		if (!json_object_object_get_ex(jfilter, "name", &jname) ||
> -		    !json_object_object_get_ex(jfilter, "condition", &jcond))
> +		if (!json_object_object_get_ex(jitem, "name", &jname) ||
> +		    !json_object_object_get_ex(jitem, "condition", &jcond))
>   			goto fail;
>   
>   		n = asprintf(&filter_str, "%s:%s",

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2026-02-27  7:45 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-24 17:05 [PATCH] kernelshark: Fix TEP filter array parsing logic Ciunas Bennett
2026-02-25 23:35 ` Steven Rostedt
2026-02-27  7:45 ` Yordan Karadzhov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox