1 /* SPDX-License-Identifier: (GPL-2.0-only or LGPL-2.1-only)
5 * LTTng real group 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 <lttng/events.h>
15 #include <lttng/events-internal.h>
16 #include <lttng/tracer.h>
17 #include <ringbuffer/frontend_types.h>
18 #include <wrapper/vmalloc.h>
19 #include <wrapper/user_namespace.h>
22 size_t gid_get_size(void *priv
, struct lttng_kernel_probe_ctx
*probe_ctx
, size_t offset
)
26 size
+= lib_ring_buffer_align(offset
, lttng_alignof(gid_t
));
27 size
+= sizeof(gid_t
);
32 void gid_record(void *priv
, struct lttng_kernel_probe_ctx
*probe_ctx
,
33 struct lttng_kernel_ring_buffer_ctx
*ctx
,
34 struct lttng_kernel_channel_buffer
*chan
)
38 gid
= lttng_current_gid();
39 chan
->ops
->event_write(ctx
, &gid
, sizeof(gid
), lttng_alignof(gid
));
43 void gid_get_value(void *priv
,
44 struct lttng_kernel_probe_ctx
*lttng_probe_ctx
,
45 struct lttng_ctx_value
*value
)
47 value
->u
.s64
= lttng_current_gid();
50 static const struct lttng_kernel_ctx_field
*ctx_field
= lttng_kernel_static_ctx_field(
51 lttng_kernel_static_event_field("gid",
52 lttng_kernel_static_type_integer_from_type(gid_t
, __BYTE_ORDER
, 10),
59 int lttng_add_gid_to_ctx(struct lttng_kernel_ctx
**ctx
)
63 if (lttng_kernel_find_context(*ctx
, ctx_field
->event_field
->name
))
65 ret
= lttng_kernel_context_append(ctx
, ctx_field
);
66 wrapper_vmalloc_sync_mappings();
69 EXPORT_SYMBOL_GPL(lttng_add_gid_to_ctx
);