1 /* SPDX-License-Identifier: (GPL-2.0-only or LGPL-2.1-only)
5 * LTTng real user ID context.
7 * Copyright (C) 2009-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8 * 2019 Michael Jeanson <mjeanson@efficios.com>
12 #include <linux/module.h>
13 #include <linux/sched.h>
14 #include <linux/user_namespace.h>
16 #include <lttng/events.h>
17 #include <lttng/events-internal.h>
18 #include <lttng/tracer.h>
19 #include <ringbuffer/frontend_types.h>
20 #include <wrapper/vmalloc.h>
23 size_t uid_get_size(void *priv
, struct lttng_kernel_probe_ctx
*probe_ctx
, size_t offset
)
27 size
+= lib_ring_buffer_align(offset
, lttng_alignof(uid_t
));
28 size
+= sizeof(uid_t
);
33 void uid_record(void *priv
, struct lttng_kernel_probe_ctx
*probe_ctx
,
34 struct lttng_kernel_ring_buffer_ctx
*ctx
,
35 struct lttng_kernel_channel_buffer
*chan
)
39 uid
= from_kuid_munged(&init_user_ns
, current_uid());
40 chan
->ops
->event_write(ctx
, &uid
, sizeof(uid
), lttng_alignof(uid
));
44 void uid_get_value(void *priv
,
45 struct lttng_kernel_probe_ctx
*lttng_probe_ctx
,
46 struct lttng_ctx_value
*value
)
48 value
->u
.s64
= from_kuid_munged(&init_user_ns
, current_uid());
51 static const struct lttng_kernel_ctx_field
*ctx_field
= lttng_kernel_static_ctx_field(
52 lttng_kernel_static_event_field("uid",
53 lttng_kernel_static_type_integer_from_type(uid_t
, __BYTE_ORDER
, 10),
60 int lttng_add_uid_to_ctx(struct lttng_kernel_ctx
**ctx
)
64 if (lttng_kernel_find_context(*ctx
, ctx_field
->event_field
->name
))
66 ret
= lttng_kernel_context_append(ctx
, ctx_field
);
67 wrapper_vmalloc_sync_mappings();
70 EXPORT_SYMBOL_GPL(lttng_add_uid_to_ctx
);