Re: [PATCH v10 00/12] user_events: Enable user processes to create and write to trace events

From: Steven Rostedt
Date: Thu Feb 10 2022 - 23:00:29 EST


On Tue, 18 Jan 2022 12:43:14 -0800
Beau Belgrave <beaub@xxxxxxxxxxxxxxxxxxx> wrote:

> User mode processes that wish to use trace events to get data into
> ftrace, perf, eBPF, etc are limited to uprobes today. The user events
> features enables an ABI for user mode processes to create and write to
> trace events that are isolated from kernel level trace events. This
> enables a faster path for tracing from user mode data as well as opens
> managed code to participate in trace events, where stub locations are
> dynamic.

So I finished my review, and I'm currently added it to my queue that
I'm running through my tests.

Before I accept it though, I would really like you to send patches to
linux-trace-devel@xxxxxxxxxxxxxxx that add an API to libtracefs:

https://git.kernel.org/pub/scm/libs/libtrace/libtracefs.git/

Something where users do not need to know about ioctls, or iovecs, etc.

struct tracefs_user_event *
tracefs_user_event_register(const char *name,
enum tracefs_uevent_type type,
char *field, ...);

Where tracefs_uevent_type can be:

enum tracefs_uevent_type {
TRACEFS_UEVENT_END,
TRACEFS_UEVENT_u8,
TRACEFS_UEVENT_s8,
TRACEFS_UEVENT_u16,
...
};

uevent = tracefs_user_event_register("test",
TRACEFS_UEVENT_u64, "count",
TRACEFS_UEVENT_string, "name",
TRACEFS_UEVENT_array, 16, "array",
TRACEFS_UEVENT_END);

and that will do the ioctl to register the event, with the given types
and fields.

struct tracefs_user_event_status *ustatus;

ustatus = tracefs_user_event_status(); // does the mmap.


Then we could also have:

if (tracefs_user_event_test(ustatus, uevent))
tracefs_user_event_write(uevent, 64, "string", { 16 byte data });

The ustatus will be the mmap and the uevent will have the information
to know where on the mmap to test for the event.

As for the write, the types are saved, and the write function will have
variable arguments defined by the tracefs_user_event_register().

I think having that interface in libtracefs, would make this easy to
use for everyone.

-- Steve