Commit | Line | Data |
---|---|---|
b579acd9 | 1 | /* |
bdf64013 JG |
2 | * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca> |
3 | * Copyright (C) 2016 - Jérémie Galarneau <jeremie.galarneau@efficios.com> | |
b579acd9 | 4 | * |
d14d33bf AM |
5 | * This program is free software; you can redistribute it and/or modify |
6 | * it under the terms of the GNU General Public License, version 2 only, | |
7 | * as published by the Free Software Foundation. | |
b579acd9 | 8 | * |
d14d33bf AM |
9 | * This program is distributed in the hope that it will be useful, |
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 | * GNU General Public License for more details. | |
b579acd9 | 13 | * |
d14d33bf AM |
14 | * You should have received a copy of the GNU General Public License along |
15 | * with this program; if not, write to the Free Software Foundation, Inc., | |
16 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | |
b579acd9 DG |
17 | */ |
18 | ||
6c1c0768 | 19 | #define _LGPL_SOURCE |
b579acd9 DG |
20 | #include <stdio.h> |
21 | #include <stdlib.h> | |
22 | #include <string.h> | |
23 | #include <unistd.h> | |
54d01ffb | 24 | #include <urcu/list.h> |
1e307fab | 25 | |
db758600 | 26 | #include <common/error.h> |
10a8a223 | 27 | #include <common/sessiond-comm/sessiond-comm.h> |
b579acd9 | 28 | |
b579acd9 | 29 | #include "context.h" |
4771f025 | 30 | #include "kernel.h" |
55cc08a6 | 31 | #include "ust-app.h" |
34378f76 | 32 | #include "trace-ust.h" |
bdf64013 | 33 | #include "agent.h" |
b579acd9 | 34 | |
b579acd9 DG |
35 | /* |
36 | * Add kernel context to all channel. | |
df3c77c8 JG |
37 | * |
38 | * Assumes the ownership of kctx. | |
b579acd9 DG |
39 | */ |
40 | static int add_kctx_all_channels(struct ltt_kernel_session *ksession, | |
645328ae | 41 | struct ltt_kernel_context *kctx) |
b579acd9 | 42 | { |
601d5acf | 43 | int ret; |
b579acd9 DG |
44 | struct ltt_kernel_channel *kchan; |
45 | ||
0525e9ae DG |
46 | assert(ksession); |
47 | assert(kctx); | |
48 | ||
601d5acf | 49 | DBG("Adding kernel context to all channels"); |
b579acd9 DG |
50 | |
51 | /* Go over all channels */ | |
52 | cds_list_for_each_entry(kchan, &ksession->channel_list.head, list) { | |
df3c77c8 JG |
53 | struct ltt_kernel_context *kctx_copy; |
54 | ||
55 | kctx_copy = trace_kernel_copy_context(kctx); | |
56 | if (!kctx_copy) { | |
57 | PERROR("zmalloc ltt_kernel_context"); | |
7682f304 | 58 | ret = -LTTNG_ERR_NOMEM; |
df3c77c8 JG |
59 | goto error; |
60 | } | |
61 | ||
62 | /* Ownership of kctx_copy is transferred to the callee. */ | |
63 | ret = kernel_add_channel_context(kchan, kctx_copy); | |
64 | kctx_copy = NULL; | |
1ae5e83e | 65 | if (ret != 0) { |
601d5acf | 66 | goto error; |
b579acd9 DG |
67 | } |
68 | } | |
69 | ||
f73fabfd | 70 | ret = LTTNG_OK; |
b579acd9 DG |
71 | |
72 | error: | |
df3c77c8 | 73 | trace_kernel_destroy_context(kctx); |
b579acd9 DG |
74 | return ret; |
75 | } | |
76 | ||
77 | /* | |
78 | * Add kernel context to a specific channel. | |
df3c77c8 JG |
79 | * |
80 | * Assumes the ownership of kctx. | |
b579acd9 | 81 | */ |
645328ae | 82 | static int add_kctx_to_channel(struct ltt_kernel_context *kctx, |
601d5acf | 83 | struct ltt_kernel_channel *kchan) |
b579acd9 | 84 | { |
601d5acf | 85 | int ret; |
b579acd9 | 86 | |
0525e9ae DG |
87 | assert(kchan); |
88 | assert(kctx); | |
89 | ||
601d5acf | 90 | DBG("Add kernel context to channel '%s'", kchan->channel->name); |
b579acd9 | 91 | |
df3c77c8 | 92 | /* Ownership of kctx is transferred to the callee. */ |
601d5acf | 93 | ret = kernel_add_channel_context(kchan, kctx); |
df3c77c8 | 94 | kctx = NULL; |
1ae5e83e | 95 | if (ret != 0) { |
b579acd9 DG |
96 | goto error; |
97 | } | |
98 | ||
f73fabfd | 99 | ret = LTTNG_OK; |
b579acd9 DG |
100 | |
101 | error: | |
102 | return ret; | |
103 | } | |
104 | ||
6b79ed20 DG |
105 | /* |
106 | * Add UST context to channel. | |
107 | */ | |
4ce7709b JG |
108 | static int add_uctx_to_channel(struct ltt_ust_session *usess, |
109 | enum lttng_domain_type domain, | |
6b79ed20 DG |
110 | struct ltt_ust_channel *uchan, struct lttng_event_context *ctx) |
111 | { | |
112 | int ret; | |
bdf64013 | 113 | struct ltt_ust_context *uctx = NULL; |
6b79ed20 | 114 | |
0525e9ae DG |
115 | assert(usess); |
116 | assert(uchan); | |
117 | assert(ctx); | |
118 | ||
aa3514e9 MD |
119 | /* Check if context is duplicate */ |
120 | cds_list_for_each_entry(uctx, &uchan->ctx_list, list) { | |
121 | if (trace_ust_match_context(uctx, ctx)) { | |
7682f304 | 122 | ret = LTTNG_ERR_UST_CONTEXT_EXIST; |
aa3514e9 MD |
123 | goto duplicate; |
124 | } | |
125 | } | |
bdf64013 JG |
126 | uctx = NULL; |
127 | ||
128 | switch (domain) { | |
129 | case LTTNG_DOMAIN_JUL: | |
130 | case LTTNG_DOMAIN_LOG4J: | |
131 | { | |
442f8c07 JG |
132 | struct agent *agt; |
133 | ||
134 | if (ctx->ctx != LTTNG_EVENT_CONTEXT_APP_CONTEXT) { | |
135 | /* Other contexts are not needed by the agent. */ | |
136 | break; | |
137 | } | |
138 | agt = trace_ust_find_agent(usess, domain); | |
bdf64013 JG |
139 | |
140 | if (!agt) { | |
141 | agt = agent_create(domain); | |
142 | if (!agt) { | |
7682f304 | 143 | ret = -LTTNG_ERR_NOMEM; |
bdf64013 JG |
144 | goto error; |
145 | } | |
146 | agent_add(agt, usess->agents); | |
147 | } | |
148 | ret = agent_add_context(ctx, agt); | |
149 | if (ret != LTTNG_OK) { | |
150 | goto error; | |
151 | } | |
152 | ||
153 | ret = agent_enable_context(ctx, domain); | |
154 | if (ret != LTTNG_OK) { | |
155 | goto error; | |
156 | } | |
157 | break; | |
158 | } | |
159 | case LTTNG_DOMAIN_UST: | |
160 | break; | |
161 | default: | |
162 | assert(0); | |
163 | } | |
aa3514e9 | 164 | |
6b79ed20 DG |
165 | /* Create ltt UST context */ |
166 | uctx = trace_ust_create_context(ctx); | |
167 | if (uctx == NULL) { | |
7682f304 | 168 | ret = LTTNG_ERR_UST_CONTEXT_INVAL; |
6b79ed20 DG |
169 | goto error; |
170 | } | |
171 | ||
6b79ed20 | 172 | /* Add ltt UST context node to ltt UST channel */ |
aa3514e9 | 173 | lttng_ht_add_ulong(uchan->ctx, &uctx->node); |
31746f93 | 174 | cds_list_add_tail(&uctx->list, &uchan->ctx_list); |
6b79ed20 | 175 | |
88e3c2f5 JG |
176 | if (!usess->active) { |
177 | goto end; | |
178 | } | |
179 | ||
180 | ret = ust_app_add_ctx_channel_glb(usess, uchan, uctx); | |
181 | if (ret < 0) { | |
182 | goto error; | |
183 | } | |
184 | end: | |
727d5404 DG |
185 | DBG("Context UST %d added to channel %s", uctx->ctx.ctx, uchan->name); |
186 | ||
187 | return 0; | |
6b79ed20 DG |
188 | |
189 | error: | |
190 | free(uctx); | |
aa3514e9 | 191 | duplicate: |
6b79ed20 DG |
192 | return ret; |
193 | } | |
194 | ||
b579acd9 DG |
195 | /* |
196 | * Add kernel context to tracer. | |
197 | */ | |
54d01ffb | 198 | int context_kernel_add(struct ltt_kernel_session *ksession, |
601d5acf | 199 | struct lttng_event_context *ctx, char *channel_name) |
b579acd9 DG |
200 | { |
201 | int ret; | |
202 | struct ltt_kernel_channel *kchan; | |
645328ae | 203 | struct ltt_kernel_context *kctx; |
54d01ffb | 204 | |
0525e9ae DG |
205 | assert(ksession); |
206 | assert(ctx); | |
207 | assert(channel_name); | |
208 | ||
645328ae DG |
209 | kctx = trace_kernel_create_context(NULL); |
210 | if (!kctx) { | |
7682f304 | 211 | ret = -LTTNG_ERR_NOMEM; |
645328ae DG |
212 | goto error; |
213 | } | |
214 | ||
54d01ffb | 215 | /* Setup kernel context structure */ |
9197c5c4 MD |
216 | switch (ctx->ctx) { |
217 | case LTTNG_EVENT_CONTEXT_PID: | |
645328ae | 218 | kctx->ctx.ctx = LTTNG_KERNEL_CONTEXT_PID; |
9197c5c4 | 219 | break; |
9197c5c4 | 220 | case LTTNG_EVENT_CONTEXT_PROCNAME: |
645328ae | 221 | kctx->ctx.ctx = LTTNG_KERNEL_CONTEXT_PROCNAME; |
9197c5c4 MD |
222 | break; |
223 | case LTTNG_EVENT_CONTEXT_PRIO: | |
645328ae | 224 | kctx->ctx.ctx = LTTNG_KERNEL_CONTEXT_PRIO; |
9197c5c4 MD |
225 | break; |
226 | case LTTNG_EVENT_CONTEXT_NICE: | |
645328ae | 227 | kctx->ctx.ctx = LTTNG_KERNEL_CONTEXT_NICE; |
9197c5c4 MD |
228 | break; |
229 | case LTTNG_EVENT_CONTEXT_VPID: | |
645328ae | 230 | kctx->ctx.ctx = LTTNG_KERNEL_CONTEXT_VPID; |
9197c5c4 MD |
231 | break; |
232 | case LTTNG_EVENT_CONTEXT_TID: | |
645328ae | 233 | kctx->ctx.ctx = LTTNG_KERNEL_CONTEXT_TID; |
9197c5c4 MD |
234 | break; |
235 | case LTTNG_EVENT_CONTEXT_VTID: | |
645328ae | 236 | kctx->ctx.ctx = LTTNG_KERNEL_CONTEXT_VTID; |
9197c5c4 MD |
237 | break; |
238 | case LTTNG_EVENT_CONTEXT_PPID: | |
645328ae | 239 | kctx->ctx.ctx = LTTNG_KERNEL_CONTEXT_PPID; |
9197c5c4 MD |
240 | break; |
241 | case LTTNG_EVENT_CONTEXT_VPPID: | |
645328ae | 242 | kctx->ctx.ctx = LTTNG_KERNEL_CONTEXT_VPPID; |
9197c5c4 | 243 | break; |
54773d68 | 244 | case LTTNG_EVENT_CONTEXT_HOSTNAME: |
645328ae | 245 | kctx->ctx.ctx = LTTNG_KERNEL_CONTEXT_HOSTNAME; |
54773d68 | 246 | break; |
aa3514e9 MD |
247 | case LTTNG_EVENT_CONTEXT_PERF_CPU_COUNTER: |
248 | case LTTNG_EVENT_CONTEXT_PERF_COUNTER: | |
645328ae | 249 | kctx->ctx.ctx = LTTNG_KERNEL_CONTEXT_PERF_CPU_COUNTER; |
aa3514e9 | 250 | break; |
1ae5e83e JD |
251 | case LTTNG_EVENT_CONTEXT_INTERRUPTIBLE: |
252 | kctx->ctx.ctx = LTTNG_KERNEL_CONTEXT_INTERRUPTIBLE; | |
253 | break; | |
254 | case LTTNG_EVENT_CONTEXT_PREEMPTIBLE: | |
255 | kctx->ctx.ctx = LTTNG_KERNEL_CONTEXT_PREEMPTIBLE; | |
256 | break; | |
257 | case LTTNG_EVENT_CONTEXT_NEED_RESCHEDULE: | |
258 | kctx->ctx.ctx = LTTNG_KERNEL_CONTEXT_NEED_RESCHEDULE; | |
259 | break; | |
260 | case LTTNG_EVENT_CONTEXT_MIGRATABLE: | |
261 | kctx->ctx.ctx = LTTNG_KERNEL_CONTEXT_MIGRATABLE; | |
262 | break; | |
373148e9 FG |
263 | case LTTNG_EVENT_CONTEXT_CALLSTACK_KERNEL: |
264 | kctx->ctx.ctx = LTTNG_KERNEL_CONTEXT_CALLSTACK_KERNEL; | |
265 | break; | |
266 | case LTTNG_EVENT_CONTEXT_CALLSTACK_USER: | |
267 | kctx->ctx.ctx = LTTNG_KERNEL_CONTEXT_CALLSTACK_USER; | |
268 | break; | |
9197c5c4 | 269 | default: |
fc7324e8 DG |
270 | ret = LTTNG_ERR_KERN_CONTEXT_FAIL; |
271 | goto error; | |
9197c5c4 MD |
272 | } |
273 | ||
645328ae DG |
274 | kctx->ctx.u.perf_counter.type = ctx->u.perf_counter.type; |
275 | kctx->ctx.u.perf_counter.config = ctx->u.perf_counter.config; | |
276 | strncpy(kctx->ctx.u.perf_counter.name, ctx->u.perf_counter.name, | |
54d01ffb | 277 | LTTNG_SYMBOL_NAME_LEN); |
645328ae | 278 | kctx->ctx.u.perf_counter.name[LTTNG_SYMBOL_NAME_LEN - 1] = '\0'; |
b579acd9 | 279 | |
9d035200 | 280 | if (*channel_name == '\0') { |
645328ae | 281 | ret = add_kctx_all_channels(ksession, kctx); |
df3c77c8 JG |
282 | /* Ownership of kctx is transferred to the callee. */ |
283 | kctx = NULL; | |
f73fabfd | 284 | if (ret != LTTNG_OK) { |
b579acd9 DG |
285 | goto error; |
286 | } | |
287 | } else { | |
288 | /* Get kernel channel */ | |
62499ad6 | 289 | kchan = trace_kernel_get_channel_by_name(channel_name, ksession); |
b579acd9 | 290 | if (kchan == NULL) { |
f73fabfd | 291 | ret = LTTNG_ERR_KERN_CHAN_NOT_FOUND; |
b579acd9 DG |
292 | goto error; |
293 | } | |
294 | ||
645328ae | 295 | ret = add_kctx_to_channel(kctx, kchan); |
df3c77c8 JG |
296 | /* Ownership of kctx is transferred to the callee. */ |
297 | kctx = NULL; | |
f73fabfd | 298 | if (ret != LTTNG_OK) { |
b579acd9 DG |
299 | goto error; |
300 | } | |
301 | } | |
302 | ||
df3c77c8 | 303 | ret = LTTNG_OK; |
b579acd9 DG |
304 | |
305 | error: | |
fc7324e8 DG |
306 | if (kctx) { |
307 | trace_kernel_destroy_context(kctx); | |
308 | } | |
b579acd9 DG |
309 | return ret; |
310 | } | |
2bdd86d4 MD |
311 | |
312 | /* | |
55cc08a6 | 313 | * Add UST context to tracer. |
2bdd86d4 | 314 | */ |
4ce7709b JG |
315 | int context_ust_add(struct ltt_ust_session *usess, |
316 | enum lttng_domain_type domain, struct lttng_event_context *ctx, | |
317 | char *channel_name) | |
2bdd86d4 | 318 | { |
601d5acf | 319 | int ret = LTTNG_OK; |
442359c0 | 320 | struct lttng_ht_iter iter; |
bec39940 | 321 | struct lttng_ht *chan_ht; |
55cc08a6 | 322 | struct ltt_ust_channel *uchan = NULL; |
2bdd86d4 | 323 | |
0525e9ae DG |
324 | assert(usess); |
325 | assert(ctx); | |
326 | assert(channel_name); | |
327 | ||
2223c96f DG |
328 | rcu_read_lock(); |
329 | ||
f5501dad | 330 | chan_ht = usess->domain_global.channels; |
2bdd86d4 | 331 | |
55cc08a6 | 332 | /* Get UST channel if defined */ |
9f9ee9c9 | 333 | if (channel_name[0] != '\0') { |
55cc08a6 DG |
334 | uchan = trace_ust_find_channel_by_name(chan_ht, channel_name); |
335 | if (uchan == NULL) { | |
f73fabfd | 336 | ret = LTTNG_ERR_UST_CHAN_NOT_FOUND; |
2bdd86d4 MD |
337 | goto error; |
338 | } | |
55cc08a6 DG |
339 | } |
340 | ||
601d5acf DG |
341 | if (uchan) { |
342 | /* Add ctx to channel */ | |
6b79ed20 | 343 | ret = add_uctx_to_channel(usess, domain, uchan, ctx); |
601d5acf | 344 | } else { |
e7fe706f | 345 | rcu_read_lock(); |
601d5acf | 346 | /* Add ctx all events, all channels */ |
bec39940 | 347 | cds_lfht_for_each_entry(chan_ht->ht, &iter.iter, uchan, node.node) { |
6b79ed20 | 348 | ret = add_uctx_to_channel(usess, domain, uchan, ctx); |
7682f304 | 349 | if (ret) { |
9589be74 JG |
350 | ERR("Failed to add context to channel %s", |
351 | uchan->name); | |
55cc08a6 DG |
352 | continue; |
353 | } | |
2bdd86d4 | 354 | } |
e7fe706f | 355 | rcu_read_unlock(); |
55cc08a6 | 356 | } |
2bdd86d4 | 357 | |
55cc08a6 | 358 | switch (ret) { |
7682f304 | 359 | case LTTNG_ERR_UST_CONTEXT_EXIST: |
727d5404 | 360 | break; |
55cc08a6 | 361 | case -ENOMEM: |
7682f304 | 362 | case -LTTNG_ERR_NOMEM: |
f73fabfd | 363 | ret = LTTNG_ERR_FATAL; |
727d5404 DG |
364 | break; |
365 | case -EINVAL: | |
f73fabfd | 366 | ret = LTTNG_ERR_UST_CONTEXT_INVAL; |
727d5404 DG |
367 | break; |
368 | case -ENOSYS: | |
f73fabfd | 369 | ret = LTTNG_ERR_UNKNOWN_DOMAIN; |
727d5404 DG |
370 | break; |
371 | default: | |
7682f304 JG |
372 | if (ret != 0 && ret != LTTNG_OK) { |
373 | ret = ret > 0 ? ret : LTTNG_ERR_UNK; | |
374 | } else { | |
375 | ret = LTTNG_OK; | |
376 | } | |
727d5404 | 377 | break; |
2bdd86d4 MD |
378 | } |
379 | ||
2bdd86d4 | 380 | error: |
2223c96f | 381 | rcu_read_unlock(); |
2bdd86d4 MD |
382 | return ret; |
383 | } |