Fix: context alignment not properly handled
[lttng-ust.git] / liblttng-ust / lttng-context-vtid.c
1 /*
2 * lttng-context-vtid.c
3 *
4 * LTTng UST vtid context.
5 *
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
21 */
22
23 #include <sys/types.h>
24 #include <unistd.h>
25 #include <lttng/ust-events.h>
26 #include <lttng/ust-tracer.h>
27 #include <lttng/ringbuffer-config.h>
28 #include <lttng/ust-tid.h>
29 #include <urcu/tls-compat.h>
30 #include "lttng-tracer-core.h"
31
32 /*
33 * We cache the result to ensure we don't trigger a system call for
34 * each event.
35 */
36 static DEFINE_URCU_TLS(pid_t, cached_vtid);
37
38 /*
39 * Upon fork or clone, the TID assigned to our thread is not the same as
40 * we kept in cache. Luckily, we are the only thread surviving in the
41 * child process, so we can simply clear our cached version.
42 */
43 void lttng_context_vtid_reset(void)
44 {
45 URCU_TLS(cached_vtid) = 0;
46 }
47
48 static
49 size_t vtid_get_size(size_t offset)
50 {
51 size_t size = 0;
52
53 size += lib_ring_buffer_align(offset, lttng_alignof(pid_t));
54 size += sizeof(pid_t);
55 return size;
56 }
57
58 static
59 void vtid_record(struct lttng_ctx_field *field,
60 struct lttng_ust_lib_ring_buffer_ctx *ctx,
61 struct lttng_channel *chan)
62 {
63 if (caa_unlikely(!URCU_TLS(cached_vtid)))
64 URCU_TLS(cached_vtid) = gettid();
65 lib_ring_buffer_align_ctx(ctx, lttng_alignof(URCU_TLS(cached_vtid)));
66 chan->ops->event_write(ctx, &URCU_TLS(cached_vtid),
67 sizeof(URCU_TLS(cached_vtid)));
68 }
69
70 static
71 void vtid_get_value(struct lttng_ctx_field *field,
72 union lttng_ctx_value *value)
73 {
74 if (caa_unlikely(!URCU_TLS(cached_vtid)))
75 URCU_TLS(cached_vtid) = gettid();
76 value->s64 = URCU_TLS(cached_vtid);
77 }
78
79 int lttng_add_vtid_to_ctx(struct lttng_ctx **ctx)
80 {
81 struct lttng_ctx_field *field;
82
83 field = lttng_append_context(ctx);
84 if (!field)
85 return -ENOMEM;
86 if (lttng_find_context(*ctx, "vtid")) {
87 lttng_remove_context_field(ctx, field);
88 return -EEXIST;
89 }
90 field->event_field.name = "vtid";
91 field->event_field.type.atype = atype_integer;
92 field->event_field.type.u.basic.integer.size = sizeof(pid_t) * CHAR_BIT;
93 field->event_field.type.u.basic.integer.alignment = lttng_alignof(pid_t) * CHAR_BIT;
94 field->event_field.type.u.basic.integer.signedness = lttng_is_signed_type(pid_t);
95 field->event_field.type.u.basic.integer.reverse_byte_order = 0;
96 field->event_field.type.u.basic.integer.base = 10;
97 field->event_field.type.u.basic.integer.encoding = lttng_encode_none;
98 field->get_size = vtid_get_size;
99 field->record = vtid_record;
100 field->get_value = vtid_get_value;
101 lttng_context_update(*ctx);
102 return 0;
103 }
104
105 /*
106 * Force a read (imply TLS fixup for dlopen) of TLS variables.
107 */
108 void lttng_fixup_vtid_tls(void)
109 {
110 asm volatile ("" : : "m" (URCU_TLS(cached_vtid)));
111 }
This page took 0.030629 seconds and 4 git commands to generate.