1 /* SPDX-License-Identifier: (GPL-2.0 or LGPL-2.1)
3 * lttng-context-procname.c
5 * LTTng procname context.
7 * Copyright (C) 2009-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
10 #include <linux/module.h>
11 #include <linux/slab.h>
12 #include <linux/sched.h>
13 #include <lttng-events.h>
14 #include <wrapper/ringbuffer/frontend_types.h>
15 #include <wrapper/vmalloc.h>
16 #include <lttng-tracer.h>
19 size_t procname_get_size(size_t offset
)
23 size
+= sizeof(current
->comm
);
28 * Racy read of procname. We simply copy its whole array size.
29 * Races with /proc/<task>/procname write only.
30 * Otherwise having to take a mutex for each event is cumbersome and
31 * could lead to crash in IRQ context and deadlock of the lockdep tracer.
34 void procname_record(struct lttng_ctx_field
*field
,
35 struct lib_ring_buffer_ctx
*ctx
,
36 struct lttng_channel
*chan
)
38 chan
->ops
->event_write(ctx
, current
->comm
, sizeof(current
->comm
));
42 void procname_get_value(struct lttng_ctx_field
*field
,
43 struct lttng_probe_ctx
*lttng_probe_ctx
,
44 union lttng_ctx_value
*value
)
46 value
->str
= current
->comm
;
49 int lttng_add_procname_to_ctx(struct lttng_ctx
**ctx
)
51 struct lttng_ctx_field
*field
;
53 field
= lttng_append_context(ctx
);
56 if (lttng_find_context(*ctx
, "procname")) {
57 lttng_remove_context_field(ctx
, field
);
60 field
->event_field
.name
= "procname";
61 field
->event_field
.type
.atype
= atype_array
;
62 field
->event_field
.type
.u
.array
.elem_type
.atype
= atype_integer
;
63 field
->event_field
.type
.u
.array
.elem_type
.u
.basic
.integer
.size
= sizeof(char) * CHAR_BIT
;
64 field
->event_field
.type
.u
.array
.elem_type
.u
.basic
.integer
.alignment
= lttng_alignof(char) * CHAR_BIT
;
65 field
->event_field
.type
.u
.array
.elem_type
.u
.basic
.integer
.signedness
= lttng_is_signed_type(char);
66 field
->event_field
.type
.u
.array
.elem_type
.u
.basic
.integer
.reverse_byte_order
= 0;
67 field
->event_field
.type
.u
.array
.elem_type
.u
.basic
.integer
.base
= 10;
68 field
->event_field
.type
.u
.array
.elem_type
.u
.basic
.integer
.encoding
= lttng_encode_UTF8
;
69 field
->event_field
.type
.u
.array
.length
= sizeof(current
->comm
);
71 field
->get_size
= procname_get_size
;
72 field
->record
= procname_record
;
73 field
->get_value
= procname_get_value
;
74 lttng_context_update(*ctx
);
75 wrapper_vmalloc_sync_all();
78 EXPORT_SYMBOL_GPL(lttng_add_procname_to_ctx
);