Commit | Line | Data |
---|---|---|
25b2f99a | 1 | /* |
886d51a3 | 2 | * lttng-context-procname.c |
25b2f99a | 3 | * |
c26fddc2 | 4 | * LTTng procname context. |
25b2f99a | 5 | * |
886d51a3 MD |
6 | * Copyright (C) 2009-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com> |
7 | * | |
8 | * This library is free software; you can redistribute it and/or | |
9 | * modify it under the terms of the GNU Lesser General Public | |
10 | * License as published by the Free Software Foundation; only | |
11 | * version 2.1 of the License. | |
12 | * | |
13 | * This library is distributed in the hope that it will be useful, | |
14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
16 | * Lesser General Public License for more details. | |
17 | * | |
18 | * You should have received a copy of the GNU Lesser General Public | |
19 | * License along with this library; if not, write to the Free Software | |
20 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | |
25b2f99a MD |
21 | */ |
22 | ||
23 | #include <linux/module.h> | |
24 | #include <linux/slab.h> | |
25 | #include <linux/sched.h> | |
a90917c3 | 26 | #include "lttng-events.h" |
25b2f99a MD |
27 | #include "wrapper/ringbuffer/frontend_types.h" |
28 | #include "wrapper/vmalloc.h" | |
a90917c3 | 29 | #include "lttng-tracer.h" |
25b2f99a MD |
30 | |
31 | static | |
c26fddc2 | 32 | size_t procname_get_size(size_t offset) |
25b2f99a MD |
33 | { |
34 | size_t size = 0; | |
35 | ||
36 | size += sizeof(current->comm); | |
37 | return size; | |
38 | } | |
39 | ||
40 | /* | |
c26fddc2 MD |
41 | * Racy read of procname. We simply copy its whole array size. |
42 | * Races with /proc/<task>/procname write only. | |
25b2f99a MD |
43 | * Otherwise having to take a mutex for each event is cumbersome and |
44 | * could lead to crash in IRQ context and deadlock of the lockdep tracer. | |
45 | */ | |
46 | static | |
c26fddc2 | 47 | void procname_record(struct lttng_ctx_field *field, |
25b2f99a | 48 | struct lib_ring_buffer_ctx *ctx, |
a90917c3 | 49 | struct lttng_channel *chan) |
25b2f99a MD |
50 | { |
51 | chan->ops->event_write(ctx, current->comm, sizeof(current->comm)); | |
52 | } | |
53 | ||
c26fddc2 | 54 | int lttng_add_procname_to_ctx(struct lttng_ctx **ctx) |
25b2f99a MD |
55 | { |
56 | struct lttng_ctx_field *field; | |
25b2f99a MD |
57 | |
58 | field = lttng_append_context(ctx); | |
59 | if (!field) | |
09fec6b4 | 60 | return -ENOMEM; |
c26fddc2 | 61 | if (lttng_find_context(*ctx, "procname")) { |
44252f0f MD |
62 | lttng_remove_context_field(ctx, field); |
63 | return -EEXIST; | |
64 | } | |
c26fddc2 | 65 | field->event_field.name = "procname"; |
25b2f99a MD |
66 | field->event_field.type.atype = atype_array; |
67 | field->event_field.type.u.array.elem_type.atype = atype_integer; | |
68 | field->event_field.type.u.array.elem_type.u.basic.integer.size = sizeof(char) * CHAR_BIT; | |
a90917c3 | 69 | field->event_field.type.u.array.elem_type.u.basic.integer.alignment = lttng_alignof(char) * CHAR_BIT; |
06254b0f | 70 | field->event_field.type.u.array.elem_type.u.basic.integer.signedness = lttng_is_signed_type(char); |
25b2f99a MD |
71 | field->event_field.type.u.array.elem_type.u.basic.integer.reverse_byte_order = 0; |
72 | field->event_field.type.u.array.elem_type.u.basic.integer.base = 10; | |
73 | field->event_field.type.u.array.elem_type.u.basic.integer.encoding = lttng_encode_UTF8; | |
74 | field->event_field.type.u.array.length = sizeof(current->comm); | |
75 | ||
c26fddc2 MD |
76 | field->get_size = procname_get_size; |
77 | field->record = procname_record; | |
9b9aff07 | 78 | lttng_context_update(*ctx); |
25b2f99a MD |
79 | wrapper_vmalloc_sync_all(); |
80 | return 0; | |
81 | } | |
c26fddc2 | 82 | EXPORT_SYMBOL_GPL(lttng_add_procname_to_ctx); |
25b2f99a MD |
83 | |
84 | MODULE_LICENSE("GPL and additional rights"); | |
85 | MODULE_AUTHOR("Mathieu Desnoyers"); | |
86 | MODULE_DESCRIPTION("Linux Trace Toolkit Perf Support"); | |
13ab8b0a MD |
87 | MODULE_VERSION(__stringify(LTTNG_MODULES_MAJOR_VERSION) "." |
88 | __stringify(LTTNG_MODULES_MINOR_VERSION) "." | |
89 | __stringify(LTTNG_MODULES_PATCHLEVEL_VERSION) | |
90 | LTTNG_MODULES_EXTRAVERSION); |