Cleanup: Move lttng-modules instrumentation headers
[lttng-modules.git] / lttng-context-procname.c
CommitLineData
b7cdc182 1/* SPDX-License-Identifier: (GPL-2.0-only or LGPL-2.1-only)
9f36eaed 2 *
886d51a3 3 * lttng-context-procname.c
25b2f99a 4 *
c26fddc2 5 * LTTng procname context.
25b2f99a 6 *
886d51a3 7 * Copyright (C) 2009-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
25b2f99a
MD
8 */
9
10#include <linux/module.h>
11#include <linux/slab.h>
12#include <linux/sched.h>
2df37e95 13#include <lttng/events.h>
24591303 14#include <ringbuffer/frontend_types.h>
241ae9a8 15#include <wrapper/vmalloc.h>
2df37e95
MD
16#include <lttng/tracer.h>
17#include <lttng/endian.h>
25b2f99a
MD
18
19static
c26fddc2 20size_t procname_get_size(size_t offset)
25b2f99a
MD
21{
22 size_t size = 0;
23
24 size += sizeof(current->comm);
25 return size;
26}
27
28/*
c26fddc2
MD
29 * Racy read of procname. We simply copy its whole array size.
30 * Races with /proc/<task>/procname write only.
25b2f99a
MD
31 * Otherwise having to take a mutex for each event is cumbersome and
32 * could lead to crash in IRQ context and deadlock of the lockdep tracer.
33 */
34static
c26fddc2 35void procname_record(struct lttng_ctx_field *field,
25b2f99a 36 struct lib_ring_buffer_ctx *ctx,
a90917c3 37 struct lttng_channel *chan)
25b2f99a
MD
38{
39 chan->ops->event_write(ctx, current->comm, sizeof(current->comm));
40}
41
f127e61e
MD
42static
43void procname_get_value(struct lttng_ctx_field *field,
79150a49 44 struct lttng_probe_ctx *lttng_probe_ctx,
f127e61e
MD
45 union lttng_ctx_value *value)
46{
47 value->str = current->comm;
48}
49
ceabb767
MD
50static const struct lttng_type procname_array_elem_type =
51 __type_integer(char, 0, 0, -1, __BYTE_ORDER, 10, UTF8);
52
c26fddc2 53int lttng_add_procname_to_ctx(struct lttng_ctx **ctx)
25b2f99a
MD
54{
55 struct lttng_ctx_field *field;
25b2f99a
MD
56
57 field = lttng_append_context(ctx);
58 if (!field)
09fec6b4 59 return -ENOMEM;
c26fddc2 60 if (lttng_find_context(*ctx, "procname")) {
44252f0f
MD
61 lttng_remove_context_field(ctx, field);
62 return -EEXIST;
63 }
c26fddc2 64 field->event_field.name = "procname";
ceabb767
MD
65 field->event_field.type.atype = atype_array_nestable;
66 field->event_field.type.u.array_nestable.elem_type = &procname_array_elem_type;
67 field->event_field.type.u.array_nestable.length = sizeof(current->comm);
68 field->event_field.type.u.array_nestable.alignment = 0;
25b2f99a 69
c26fddc2
MD
70 field->get_size = procname_get_size;
71 field->record = procname_record;
f127e61e 72 field->get_value = procname_get_value;
a9dd15da 73 lttng_context_update(*ctx);
263b6c88 74 wrapper_vmalloc_sync_mappings();
25b2f99a
MD
75 return 0;
76}
c26fddc2 77EXPORT_SYMBOL_GPL(lttng_add_procname_to_ctx);
This page took 0.039763 seconds and 4 git commands to generate.