From: Steven Rostedt <rostedt@goodmis.org>
To: Dave Jiang <dave.jiang@intel.com>
Cc: linux-cxl@vger.kernel.org, dan.j.williams@intel.com,
ira.weiny@intel.com, vishal.l.verma@intel.com,
alison.schofield@intel.com
Subject: Re: [PATCH v3 01/10] cxl: add helper function to parse trace event to json object
Date: Thu, 3 Nov 2022 01:48:34 -0400 [thread overview]
Message-ID: <20221103014834.10d126bc@rorschach.local.home> (raw)
In-Reply-To: <166742400990.2654617.4918438509154032997.stgit@djiang5-desk3.ch.intel.com>
On Wed, 02 Nov 2022 14:20:09 -0700
Dave Jiang <dave.jiang@intel.com> wrote:
> Add the helper function that parses a trace event captured by
> libtraceevent in a tep handle. All the parsed fields are added to a json
> object. The json object is added to the provided list in the input parameter.
>
> Signed-off-by: Dave Jiang <dave.jiang@intel.com>
> ---
> cxl/event_trace.c | 166 +++++++++++++++++++++++++++++++++++++++++++++++++++++
> cxl/event_trace.h | 14 ++++
> cxl/meson.build | 2 +
> meson.build | 1
> 4 files changed, 183 insertions(+)
> create mode 100644 cxl/event_trace.c
> create mode 100644 cxl/event_trace.h
>
> diff --git a/cxl/event_trace.c b/cxl/event_trace.c
> new file mode 100644
> index 000000000000..803df34452f3
> --- /dev/null
> +++ b/cxl/event_trace.c
> @@ -0,0 +1,166 @@
> +// SPDX-License-Identifier: GPL-2.0
> +// Copyright (C) 2022, Intel Corp. All rights reserved.
> +#include <stdio.h>
> +#include <json-c/json.h>
> +#include <util/json.h>
> +#include <util/util.h>
> +#include <util/parse-options.h>
> +#include <util/parse-configs.h>
> +#include <util/strbuf.h>
> +#include <util/sysfs.h>
> +#include <ccan/list/list.h>
> +#include <ndctl/ndctl.h>
> +#include <ndctl/libndctl.h>
> +#include <sys/epoll.h>
> +#include <sys/stat.h>
> +#include <libcxl.h>
> +#include <uuid/uuid.h>
> +#include <traceevent/event-parse.h>
> +#include "json.h"
> +#include "event_trace.h"
> +
> +#define _GNU_SOURCE
> +#include <string.h>
> +
> +static struct json_object *num_to_json(void *num, int size)
> +{
> + if (size <= 4)
> + return json_object_new_int(*(int *)num);
> +
> + return util_json_object_hex(*(unsigned long long *)num, 0);
> +}
> +
> +static int cxl_event_to_json_callback(struct tep_event *event,
> + struct tep_record *record, struct list_head *jlist_head)
> +{
> + struct tep_format_field **fields;
> + struct json_object *jevent, *jobj, *jarray;
> + struct jlist_node *jnode;
> + int i, j, rc = 0;
> +
> + jnode = malloc(sizeof(*jnode));
> + if (!jnode)
> + return -ENOMEM;
> +
> + jevent = json_object_new_object();
> + if (!jevent) {
> + rc = -ENOMEM;
> + goto err_jevent;
> + }
> + jnode->jobj = jevent;
> +
> + fields = tep_event_fields(event);
> + if (!fields) {
> + rc = -ENOENT;
> + goto err;
> + }
> +
> + jobj = json_object_new_string(event->system);
> + if (!jobj) {
> + rc = -ENOMEM;
> + goto err;
> + }
> + json_object_object_add(jevent, "system", jobj);
> +
> + jobj = json_object_new_string(event->name);
> + if (!jobj) {
> + rc = -ENOMEM;
> + goto err;
> + }
> + json_object_object_add(jevent, "event", jobj);
> +
> + jobj = json_object_new_uint64(record->ts);
> + if (!jobj) {
> + rc = -ENOMEM;
> + goto err;
> + }
> + json_object_object_add(jevent, "timestamp", jobj);
> +
> + for (i = 0; fields[i]; i++) {
> + struct tep_format_field *f = fields[i];
> + int len;
> + char *tmp;
> +
> + tmp = strcasestr(f->type, "char[]");
Instead of looking for strings, you could use the field flags.
f->flags & TEP_FIELD_IS_STRING
> + if (tmp) { /* event field is a string */
> + char *str;
> +
> + str = tep_get_field_raw(NULL, event, f->name, record, &len, 0);
> + if (!str)
> + continue;
> +
> + jobj = json_object_new_string(str);
> + if (!jobj) {
> + rc = -ENOMEM;
> + goto err;
> + }
> +
> + json_object_object_add(jevent, f->name, jobj);
> + } else if (f->arraylen) { /* data array */
} else if (f->flags & TEP_FIELD_IS_ARRAY) {
too.
> + unsigned char *data;
> + int chunks;
> +
> + data = tep_get_field_raw(NULL, event, f->name, record, &len, 0);
> + if (!data)
> + continue;
> +
> + jarray = json_object_new_array();
> + if (!jarray) {
> + rc = -ENOMEM;
> + goto err;
> + }
> +
> + chunks = f->size / f->elementsize;
> + for (j = 0; j < chunks; j++) {
> + jobj = num_to_json(data, f->elementsize);
> + if (!jobj) {
> + json_object_put(jarray);
> + return -ENOMEM;
> + }
> + json_object_array_add(jarray, jobj);
> + data += f->elementsize;
> + }
> +
> + json_object_object_add(jevent, f->name, jarray);
> + } else { /* single number */
> + unsigned char *data;
> +
> + data = tep_get_field_raw(NULL, event, f->name, record, &len, 0);
> + if (!data)
> + continue;
> +
> + /* check to see if we have a UUID */
> + tmp = strcasestr(f->type, "uuid_t");
I didn't even know event fields for uuid existed.
-- Steve
> + if (tmp) {
> + char uuid[SYSFS_ATTR_SIZE];
> +
> + uuid_unparse(data, uuid);
> + jobj = json_object_new_string(uuid);
> + if (!jobj) {
> + rc = -ENOMEM;
> + goto err;
> + }
> +
> + json_object_object_add(jevent, f->name, jobj);
> + continue;
> + }
> +
> + jobj = num_to_json(data, f->elementsize);
> + if (!jobj) {
> + rc = -ENOMEM;
> + goto err;
> + }
> +
> + json_object_object_add(jevent, f->name, jobj);
> + }
> + }
> +
> + list_add_tail(jlist_head, &jnode->list);
> + return 0;
> +
> +err:
> + json_object_put(jevent);
> +err_jevent:
> + free(jnode);
> + return rc;
> +}
next prev parent reply other threads:[~2022-11-03 5:48 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-11-02 21:20 [PATCH v3 00/10] cxl: add monitor support for trace events Dave Jiang
2022-11-02 21:20 ` [PATCH v3 01/10] cxl: add helper function to parse trace event to json object Dave Jiang
2022-11-03 5:48 ` Steven Rostedt [this message]
2022-11-03 16:15 ` Dave Jiang
2022-11-04 18:56 ` Ira Weiny
2022-11-14 17:32 ` Steven Rostedt
2022-11-14 20:44 ` Alison Schofield
2022-11-14 20:53 ` Steven Rostedt
2022-11-02 21:20 ` [PATCH v3 02/10] cxl: add helper to parse through all current events Dave Jiang
2022-11-02 21:20 ` [PATCH v3 03/10] cxl: add common function to enable event trace Dave Jiang
2022-11-03 6:00 ` Steven Rostedt
2022-11-03 16:21 ` Dave Jiang
2022-11-02 21:20 ` [PATCH v3 04/10] cxl: add common function to disable " Dave Jiang
2022-11-03 6:02 ` Steven Rostedt
2022-11-03 16:30 ` Dave Jiang
2022-11-02 21:20 ` [PATCH v3 05/10] cxl: add monitor function for event trace events Dave Jiang
2022-11-03 6:06 ` Steven Rostedt
2022-11-03 16:34 ` Dave Jiang
2022-11-02 21:20 ` [PATCH v3 06/10] cxl: add logging functions for monitor Dave Jiang
2022-11-02 21:20 ` [PATCH v3 07/10] cxl: add monitor command to cxl Dave Jiang
2022-11-02 21:20 ` [PATCH v3 08/10] cxl: add an optional pid check to event parsing Dave Jiang
2022-11-03 6:08 ` Steven Rostedt
2022-11-03 15:57 ` Alison Schofield
2022-11-02 21:20 ` [PATCH v3 09/10] cxl: add systemd service for monitor Dave Jiang
2022-11-02 21:21 ` [PATCH v3 10/10] cxl: add man page documentation " Dave Jiang
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=20221103014834.10d126bc@rorschach.local.home \
--to=rostedt@goodmis.org \
--cc=alison.schofield@intel.com \
--cc=dan.j.williams@intel.com \
--cc=dave.jiang@intel.com \
--cc=ira.weiny@intel.com \
--cc=linux-cxl@vger.kernel.org \
--cc=vishal.l.verma@intel.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox