Fix: perform TLS fixup in all UST entry points from each thread
[lttng-ust.git] / liblttng-ust / lttng-context-provider.c
1 /*
2 * lttng-context-provider.c
3 *
4 * LTTng UST application context provider.
5 *
6 * Copyright (C) 2016 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-context-provider.h>
26 #include "lttng-tracer-core.h"
27 #include "jhash.h"
28 #include <helper.h>
29
30 #define CONTEXT_PROVIDER_HT_BITS 12
31 #define CONTEXT_PROVIDER_HT_SIZE (1U << CONTEXT_PROVIDER_HT_BITS)
32 struct context_provider_ht {
33 struct cds_hlist_head table[CONTEXT_PROVIDER_HT_SIZE];
34 };
35
36 static struct context_provider_ht context_provider_ht;
37
38 static struct lttng_ust_context_provider *
39 lookup_provider_by_name(const char *name)
40 {
41 struct cds_hlist_head *head;
42 struct cds_hlist_node *node;
43 struct lttng_ust_context_provider *provider;
44 uint32_t hash;
45 const char *end;
46 size_t len;
47
48 /* Lookup using everything before first ':' as key. */
49 end = strchr(name, ':');
50 if (end)
51 len = end - name;
52 else
53 len = strlen(name);
54 hash = jhash(name, len, 0);
55 head = &context_provider_ht.table[hash & (CONTEXT_PROVIDER_HT_SIZE - 1)];
56 cds_hlist_for_each_entry(provider, node, head, node) {
57 if (!strncmp(provider->name, name, len))
58 return provider;
59 }
60 return NULL;
61 }
62
63 int lttng_ust_context_provider_register(struct lttng_ust_context_provider *provider)
64 {
65 struct cds_hlist_head *head;
66 size_t name_len = strlen(provider->name);
67 uint32_t hash;
68 int ret = 0;
69
70 lttng_ust_fixup_tls();
71
72 /* Provider name starts with "$app.". */
73 if (strncmp("$app.", provider->name, strlen("$app.") != 0))
74 return -EINVAL;
75 /* Provider name cannot contain a column character. */
76 if (strchr(provider->name, ':'))
77 return -EINVAL;
78 if (ust_lock()) {
79 ret = -EBUSY;
80 goto end;
81 }
82 if (lookup_provider_by_name(provider->name)) {
83 ret = -EBUSY;
84 goto end;
85 }
86 hash = jhash(provider->name, name_len, 0);
87 head = &context_provider_ht.table[hash & (CONTEXT_PROVIDER_HT_SIZE - 1)];
88 cds_hlist_add_head(&provider->node, head);
89 lttng_ust_context_set_session_provider(provider->name,
90 provider->get_size, provider->record,
91 provider->get_value);
92 end:
93 ust_unlock();
94 return ret;
95 }
96
97 void lttng_ust_context_provider_unregister(struct lttng_ust_context_provider *provider)
98 {
99 lttng_ust_fixup_tls();
100
101 if (ust_lock())
102 goto end;
103 lttng_ust_context_set_session_provider(provider->name,
104 lttng_ust_dummy_get_size, lttng_ust_dummy_record,
105 lttng_ust_dummy_get_value);
106 cds_hlist_del(&provider->node);
107 end:
108 ust_unlock();
109 }
110
111 /*
112 * Called with ust mutex held.
113 * Add application context to array of context, even if the application
114 * context is not currently loaded by application. It will then use the
115 * dummy callbacks in that case.
116 * Always performed before tracing is started, since it modifies
117 * metadata describing the context.
118 */
119 int lttng_ust_add_app_context_to_ctx_rcu(const char *name,
120 struct lttng_ctx **ctx)
121 {
122 struct lttng_ust_context_provider *provider;
123 struct lttng_ctx_field new_field;
124 int ret;
125
126 if (*ctx && lttng_find_context(*ctx, name))
127 return -EEXIST;
128 /*
129 * For application context, add it by expanding
130 * ctx array.
131 */
132 memset(&new_field, 0, sizeof(new_field));
133 new_field.field_name = strdup(name);
134 if (!new_field.field_name)
135 return -ENOMEM;
136 new_field.event_field.name = new_field.field_name;
137 new_field.event_field.type.atype = atype_dynamic;
138 /*
139 * If provider is not found, we add the context anyway, but
140 * it will provide a dummy context.
141 */
142 provider = lookup_provider_by_name(name);
143 if (provider) {
144 new_field.get_size = provider->get_size;
145 new_field.record = provider->record;
146 new_field.get_value = provider->get_value;
147 } else {
148 new_field.get_size = lttng_ust_dummy_get_size;
149 new_field.record = lttng_ust_dummy_record;
150 new_field.get_value = lttng_ust_dummy_get_value;
151 }
152 ret = lttng_context_add_rcu(ctx, &new_field);
153 if (ret) {
154 free(new_field.field_name);
155 return ret;
156 }
157 return 0;
158 }
This page took 0.032001 seconds and 4 git commands to generate.