| 1 | /* SPDX-License-Identifier: (GPL-2.0-only or LGPL-2.1-only) |
| 2 | * |
| 3 | * lttng-context-vgid.c |
| 4 | * |
| 5 | * LTTng namespaced real group ID context. |
| 6 | * |
| 7 | * Copyright (C) 2009-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com> |
| 8 | * 2019 Michael Jeanson <mjeanson@efficios.com> |
| 9 | * |
| 10 | */ |
| 11 | |
| 12 | #include <linux/module.h> |
| 13 | #include <linux/sched.h> |
| 14 | #include <lttng/events.h> |
| 15 | #include <lttng/tracer.h> |
| 16 | #include <ringbuffer/frontend_types.h> |
| 17 | #include <wrapper/vmalloc.h> |
| 18 | #include <wrapper/user_namespace.h> |
| 19 | |
| 20 | static |
| 21 | size_t vgid_get_size(size_t offset) |
| 22 | { |
| 23 | size_t size = 0; |
| 24 | |
| 25 | size += lib_ring_buffer_align(offset, lttng_alignof(gid_t)); |
| 26 | size += sizeof(gid_t); |
| 27 | return size; |
| 28 | } |
| 29 | |
| 30 | static |
| 31 | void vgid_record(struct lttng_ctx_field *field, |
| 32 | struct lib_ring_buffer_ctx *ctx, |
| 33 | struct lttng_channel *chan) |
| 34 | { |
| 35 | gid_t vgid; |
| 36 | |
| 37 | vgid = lttng_current_vgid(); |
| 38 | lib_ring_buffer_align_ctx(ctx, lttng_alignof(vgid)); |
| 39 | chan->ops->event_write(ctx, &vgid, sizeof(vgid)); |
| 40 | } |
| 41 | |
| 42 | static |
| 43 | void vgid_get_value(struct lttng_ctx_field *field, |
| 44 | struct lttng_probe_ctx *lttng_probe_ctx, |
| 45 | union lttng_ctx_value *value) |
| 46 | { |
| 47 | value->s64 = lttng_current_vgid(); |
| 48 | } |
| 49 | |
| 50 | int lttng_add_vgid_to_ctx(struct lttng_ctx **ctx) |
| 51 | { |
| 52 | struct lttng_ctx_field *field; |
| 53 | |
| 54 | field = lttng_append_context(ctx); |
| 55 | if (!field) |
| 56 | return -ENOMEM; |
| 57 | if (lttng_find_context(*ctx, "vgid")) { |
| 58 | lttng_remove_context_field(ctx, field); |
| 59 | return -EEXIST; |
| 60 | } |
| 61 | field->event_field.name = "vgid"; |
| 62 | field->event_field.type.type = lttng_kernel_type_integer; |
| 63 | field->event_field.type.u.integer.size = sizeof(gid_t) * CHAR_BIT; |
| 64 | field->event_field.type.u.integer.alignment = lttng_alignof(gid_t) * CHAR_BIT; |
| 65 | field->event_field.type.u.integer.signedness = lttng_is_signed_type(gid_t); |
| 66 | field->event_field.type.u.integer.reverse_byte_order = 0; |
| 67 | field->event_field.type.u.integer.base = 10; |
| 68 | field->event_field.type.u.integer.encoding = lttng_kernel_string_encoding_none; |
| 69 | field->get_size = vgid_get_size; |
| 70 | field->record = vgid_record; |
| 71 | field->get_value = vgid_get_value; |
| 72 | lttng_context_update(*ctx); |
| 73 | wrapper_vmalloc_sync_mappings(); |
| 74 | return 0; |
| 75 | } |
| 76 | EXPORT_SYMBOL_GPL(lttng_add_vgid_to_ctx); |