Fix: clang llvm warnings
[lttng-tools.git] / src / bin / lttng-sessiond / trace-ust.c
1 /*
2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License, version 2 only,
6 * as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
16 */
17
18 #define _GNU_SOURCE
19 #include <stdio.h>
20 #include <stdlib.h>
21 #include <string.h>
22 #include <unistd.h>
23
24 #include <common/common.h>
25 #include <common/defaults.h>
26
27 #include "trace-ust.h"
28
29 /*
30 * Find the channel in the hashtable.
31 */
32 struct ltt_ust_channel *trace_ust_find_channel_by_name(struct lttng_ht *ht,
33 char *name)
34 {
35 struct lttng_ht_node_str *node;
36 struct lttng_ht_iter iter;
37
38 rcu_read_lock();
39 lttng_ht_lookup(ht, (void *)name, &iter);
40 node = lttng_ht_iter_get_node_str(&iter);
41 if (node == NULL) {
42 rcu_read_unlock();
43 goto error;
44 }
45 rcu_read_unlock();
46
47 DBG2("Trace UST channel %s found by name", name);
48
49 return caa_container_of(node, struct ltt_ust_channel, node);
50
51 error:
52 DBG2("Trace UST channel %s not found by name", name);
53 return NULL;
54 }
55
56 /*
57 * Find the event in the hashtable.
58 */
59 struct ltt_ust_event *trace_ust_find_event_by_name(struct lttng_ht *ht,
60 char *name)
61 {
62 struct lttng_ht_node_str *node;
63 struct lttng_ht_iter iter;
64
65 rcu_read_lock();
66 lttng_ht_lookup(ht, (void *) name, &iter);
67 node = lttng_ht_iter_get_node_str(&iter);
68 if (node == NULL) {
69 rcu_read_unlock();
70 goto error;
71 }
72 rcu_read_unlock();
73
74 DBG2("Trace UST event found by name %s", name);
75
76 return caa_container_of(node, struct ltt_ust_event, node);
77
78 error:
79 DBG2("Trace UST event NOT found by name %s", name);
80 return NULL;
81 }
82
83 /*
84 * Allocate and initialize a ust session data structure.
85 *
86 * Return pointer to structure or NULL.
87 */
88 struct ltt_ust_session *trace_ust_create_session(char *path,
89 unsigned int session_id, struct lttng_domain *domain)
90 {
91 int ret;
92 struct ltt_ust_session *lus;
93
94 /* Allocate a new ltt ust session */
95 lus = zmalloc(sizeof(struct ltt_ust_session));
96 if (lus == NULL) {
97 PERROR("create ust session zmalloc");
98 goto error;
99 }
100
101 /* Init data structure */
102 lus->id = session_id;
103 lus->start_trace = 0;
104
105 /* Alloc UST domain hash tables */
106 lus->domain_pid = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
107 lus->domain_exec = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
108
109 /* Alloc UST global domain channels' HT */
110 lus->domain_global.channels = lttng_ht_new(0, LTTNG_HT_TYPE_STRING);
111
112 /* Set session path */
113 ret = snprintf(lus->pathname, PATH_MAX, "%s/ust", path);
114 if (ret < 0) {
115 PERROR("snprintf kernel traces path");
116 goto error_free_session;
117 }
118
119 DBG2("UST trace session create successful");
120
121 return lus;
122
123 error_free_session:
124 lttng_ht_destroy(lus->domain_global.channels);
125 lttng_ht_destroy(lus->domain_exec);
126 lttng_ht_destroy(lus->domain_pid);
127 free(lus);
128 error:
129 return NULL;
130 }
131
132 /*
133 * Allocate and initialize a ust channel data structure.
134 *
135 * Return pointer to structure or NULL.
136 */
137 struct ltt_ust_channel *trace_ust_create_channel(struct lttng_channel *chan,
138 char *path)
139 {
140 int ret;
141 struct ltt_ust_channel *luc;
142
143 luc = zmalloc(sizeof(struct ltt_ust_channel));
144 if (luc == NULL) {
145 PERROR("ltt_ust_channel zmalloc");
146 goto error;
147 }
148
149 /* Copy UST channel attributes */
150 luc->attr.overwrite = chan->attr.overwrite;
151 luc->attr.subbuf_size = chan->attr.subbuf_size;
152 luc->attr.num_subbuf = chan->attr.num_subbuf;
153 luc->attr.switch_timer_interval = chan->attr.switch_timer_interval;
154 luc->attr.read_timer_interval = chan->attr.read_timer_interval;
155 luc->attr.output = (enum lttng_ust_output) chan->attr.output;
156
157 /* Translate to UST output enum */
158 switch (luc->attr.output) {
159 default:
160 luc->attr.output = LTTNG_UST_MMAP;
161 break;
162 }
163
164 /* Copy channel name */
165 strncpy(luc->name, chan->name, sizeof(luc->name));
166 luc->name[LTTNG_UST_SYM_NAME_LEN - 1] = '\0';
167
168 /* Init node */
169 lttng_ht_node_init_str(&luc->node, luc->name);
170 /* Alloc hash tables */
171 luc->events = lttng_ht_new(0, LTTNG_HT_TYPE_STRING);
172 luc->ctx = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
173
174 /* Set trace output path */
175 ret = snprintf(luc->pathname, PATH_MAX, "%s", path);
176 if (ret < 0) {
177 PERROR("asprintf ust create channel");
178 goto error_free_channel;
179 }
180
181 DBG2("Trace UST channel %s created", luc->name);
182
183 return luc;
184
185 error_free_channel:
186 lttng_ht_destroy(luc->ctx);
187 lttng_ht_destroy(luc->events);
188 free(luc);
189 error:
190 return NULL;
191 }
192
193 /*
194 * Allocate and initialize a ust event. Set name and event type.
195 *
196 * Return pointer to structure or NULL.
197 */
198 struct ltt_ust_event *trace_ust_create_event(struct lttng_event *ev)
199 {
200 struct ltt_ust_event *lue;
201
202 lue = zmalloc(sizeof(struct ltt_ust_event));
203 if (lue == NULL) {
204 PERROR("ust event zmalloc");
205 goto error;
206 }
207
208 switch (ev->type) {
209 case LTTNG_EVENT_PROBE:
210 lue->attr.instrumentation = LTTNG_UST_PROBE;
211 break;
212 case LTTNG_EVENT_FUNCTION:
213 lue->attr.instrumentation = LTTNG_UST_FUNCTION;
214 break;
215 case LTTNG_EVENT_FUNCTION_ENTRY:
216 lue->attr.instrumentation = LTTNG_UST_FUNCTION;
217 break;
218 case LTTNG_EVENT_TRACEPOINT:
219 lue->attr.instrumentation = LTTNG_UST_TRACEPOINT;
220 break;
221 default:
222 ERR("Unknown ust instrumentation type (%d)", ev->type);
223 goto error_free_event;
224 }
225
226 /* Copy event name */
227 strncpy(lue->attr.name, ev->name, LTTNG_UST_SYM_NAME_LEN);
228 lue->attr.name[LTTNG_UST_SYM_NAME_LEN - 1] = '\0';
229
230 switch (ev->loglevel_type) {
231 case LTTNG_EVENT_LOGLEVEL_ALL:
232 lue->attr.loglevel_type = LTTNG_UST_LOGLEVEL_ALL;
233 lue->attr.loglevel = -1; /* Force to -1 */
234 break;
235 case LTTNG_EVENT_LOGLEVEL_RANGE:
236 lue->attr.loglevel_type = LTTNG_UST_LOGLEVEL_RANGE;
237 lue->attr.loglevel = ev->loglevel;
238 break;
239 case LTTNG_EVENT_LOGLEVEL_SINGLE:
240 lue->attr.loglevel_type = LTTNG_UST_LOGLEVEL_SINGLE;
241 lue->attr.loglevel = ev->loglevel;
242 break;
243 default:
244 ERR("Unknown ust loglevel type (%d)", ev->loglevel_type);
245 goto error_free_event;
246 }
247
248
249 /* Init node */
250 lttng_ht_node_init_str(&lue->node, lue->attr.name);
251 /* Alloc context hash tables */
252 lue->ctx = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
253 if (lue->ctx == NULL) {
254 ERR("Unable to create context hash table for event %s", ev->name);
255 goto error_free_event;
256 }
257
258 DBG2("Trace UST event %s, loglevel (%d,%d) created",
259 lue->attr.name, lue->attr.loglevel_type,
260 lue->attr.loglevel);
261
262 return lue;
263
264 error_free_event:
265 free(lue);
266 error:
267 return NULL;
268 }
269
270 /*
271 * Allocate and initialize a ust metadata.
272 *
273 * Return pointer to structure or NULL.
274 */
275 struct ltt_ust_metadata *trace_ust_create_metadata(char *path)
276 {
277 int ret;
278 struct ltt_ust_metadata *lum;
279
280 lum = zmalloc(sizeof(struct ltt_ust_metadata));
281 if (lum == NULL) {
282 PERROR("ust metadata zmalloc");
283 goto error;
284 }
285
286 /* Set default attributes */
287 lum->attr.overwrite = DEFAULT_CHANNEL_OVERWRITE;
288 lum->attr.subbuf_size = DEFAULT_METADATA_SUBBUF_SIZE;
289 lum->attr.num_subbuf = DEFAULT_METADATA_SUBBUF_NUM;
290 lum->attr.switch_timer_interval = DEFAULT_CHANNEL_SWITCH_TIMER;
291 lum->attr.read_timer_interval = DEFAULT_CHANNEL_READ_TIMER;
292 lum->attr.output = LTTNG_UST_MMAP;
293
294 lum->handle = -1;
295 /* Set metadata trace path */
296 ret = snprintf(lum->pathname, PATH_MAX, "%s/metadata", path);
297 if (ret < 0) {
298 PERROR("asprintf ust metadata");
299 goto error_free_metadata;
300 }
301
302 return lum;
303
304 error_free_metadata:
305 free(lum);
306 error:
307 return NULL;
308 }
309
310 /*
311 * Allocate and initialize an UST context.
312 *
313 * Return pointer to structure or NULL.
314 */
315 struct ltt_ust_context *trace_ust_create_context(
316 struct lttng_event_context *ctx)
317 {
318 struct ltt_ust_context *uctx;
319 enum lttng_ust_context_type utype;
320
321 switch (ctx->ctx) {
322 case LTTNG_EVENT_CONTEXT_VTID:
323 utype = LTTNG_UST_CONTEXT_VTID;
324 break;
325 case LTTNG_EVENT_CONTEXT_VPID:
326 utype = LTTNG_UST_CONTEXT_VPID;
327 break;
328 case LTTNG_EVENT_CONTEXT_PTHREAD_ID:
329 utype = LTTNG_UST_CONTEXT_PTHREAD_ID;
330 break;
331 case LTTNG_EVENT_CONTEXT_PROCNAME:
332 utype = LTTNG_UST_CONTEXT_PROCNAME;
333 break;
334 default:
335 ERR("Invalid UST context");
336 return NULL;
337 }
338
339 uctx = zmalloc(sizeof(struct ltt_ust_context));
340 if (uctx == NULL) {
341 PERROR("zmalloc ltt_ust_context");
342 goto error;
343 }
344
345 uctx->ctx.ctx = utype;
346 lttng_ht_node_init_ulong(&uctx->node, (unsigned long) uctx->ctx.ctx);
347
348 return uctx;
349
350 error:
351 return NULL;
352 }
353
354 /*
355 * RCU safe free context structure.
356 */
357 static void destroy_context_rcu(struct rcu_head *head)
358 {
359 struct lttng_ht_node_ulong *node =
360 caa_container_of(head, struct lttng_ht_node_ulong, head);
361 struct ltt_ust_context *ctx =
362 caa_container_of(node, struct ltt_ust_context, node);
363
364 free(ctx);
365 }
366
367 /*
368 * Cleanup UST context hash table.
369 */
370 static void destroy_contexts(struct lttng_ht *ht)
371 {
372 int ret;
373 struct lttng_ht_node_ulong *node;
374 struct lttng_ht_iter iter;
375
376 cds_lfht_for_each_entry(ht->ht, &iter.iter, node, node) {
377 ret = lttng_ht_del(ht, &iter);
378 if (!ret) {
379 call_rcu(&node->head, destroy_context_rcu);
380 }
381 }
382
383 lttng_ht_destroy(ht);
384 }
385
386 /*
387 * Cleanup ust event structure.
388 */
389 void trace_ust_destroy_event(struct ltt_ust_event *event)
390 {
391 DBG2("Trace destroy UST event %s", event->attr.name);
392 destroy_contexts(event->ctx);
393
394 free(event);
395 }
396
397 /*
398 * URCU intermediate call to complete destroy event.
399 */
400 static void destroy_event_rcu(struct rcu_head *head)
401 {
402 struct lttng_ht_node_str *node =
403 caa_container_of(head, struct lttng_ht_node_str, head);
404 struct ltt_ust_event *event =
405 caa_container_of(node, struct ltt_ust_event, node);
406
407 trace_ust_destroy_event(event);
408 }
409
410 /*
411 * Cleanup UST events hashtable.
412 */
413 static void destroy_events(struct lttng_ht *events)
414 {
415 int ret;
416 struct lttng_ht_node_str *node;
417 struct lttng_ht_iter iter;
418
419 cds_lfht_for_each_entry(events->ht, &iter.iter, node, node) {
420 ret = lttng_ht_del(events, &iter);
421 assert(!ret);
422 call_rcu(&node->head, destroy_event_rcu);
423 }
424
425 lttng_ht_destroy(events);
426 }
427
428 /*
429 * Cleanup ust channel structure.
430 */
431 void trace_ust_destroy_channel(struct ltt_ust_channel *channel)
432 {
433 DBG2("Trace destroy UST channel %s", channel->name);
434
435 rcu_read_lock();
436
437 /* Destroying all events of the channel */
438 destroy_events(channel->events);
439 /* Destroying all context of the channel */
440 destroy_contexts(channel->ctx);
441
442 free(channel);
443
444 rcu_read_unlock();
445 }
446
447 /*
448 * URCU intermediate call to complete destroy channel.
449 */
450 static void destroy_channel_rcu(struct rcu_head *head)
451 {
452 struct lttng_ht_node_str *node =
453 caa_container_of(head, struct lttng_ht_node_str, head);
454 struct ltt_ust_channel *channel =
455 caa_container_of(node, struct ltt_ust_channel, node);
456
457 trace_ust_destroy_channel(channel);
458 }
459
460 /*
461 * Cleanup ust metadata structure.
462 */
463 void trace_ust_destroy_metadata(struct ltt_ust_metadata *metadata)
464 {
465 if (!metadata->handle) {
466 return;
467 }
468 DBG2("Trace UST destroy metadata %d", metadata->handle);
469 free(metadata);
470 }
471
472 /*
473 * Iterate over a hash table containing channels and cleanup safely.
474 */
475 static void destroy_channels(struct lttng_ht *channels)
476 {
477 int ret;
478 struct lttng_ht_node_str *node;
479 struct lttng_ht_iter iter;
480
481 rcu_read_lock();
482
483 cds_lfht_for_each_entry(channels->ht, &iter.iter, node, node) {
484 ret = lttng_ht_del(channels, &iter);
485 assert(!ret);
486 call_rcu(&node->head, destroy_channel_rcu);
487 }
488
489 lttng_ht_destroy(channels);
490
491 rcu_read_unlock();
492 }
493
494 /*
495 * Cleanup UST pid domain.
496 */
497 static void destroy_domain_pid(struct lttng_ht *ht)
498 {
499 int ret;
500 struct lttng_ht_iter iter;
501 struct ltt_ust_domain_pid *dpid;
502
503 cds_lfht_for_each_entry(ht->ht, &iter.iter, dpid, node.node) {
504 ret = lttng_ht_del(ht , &iter);
505 assert(!ret);
506 destroy_channels(dpid->channels);
507 }
508
509 lttng_ht_destroy(ht);
510 }
511
512 /*
513 * Cleanup UST exec name domain.
514 */
515 static void destroy_domain_exec(struct lttng_ht *ht)
516 {
517 int ret;
518 struct lttng_ht_iter iter;
519 struct ltt_ust_domain_exec *dexec;
520
521 cds_lfht_for_each_entry(ht->ht, &iter.iter, dexec, node.node) {
522 ret = lttng_ht_del(ht , &iter);
523 assert(!ret);
524 destroy_channels(dexec->channels);
525 }
526
527 lttng_ht_destroy(ht);
528 }
529
530 /*
531 * Cleanup UST global domain.
532 */
533 static void destroy_domain_global(struct ltt_ust_domain_global *dom)
534 {
535 destroy_channels(dom->channels);
536 }
537
538 /*
539 * Cleanup ust session structure
540 */
541 void trace_ust_destroy_session(struct ltt_ust_session *session)
542 {
543 /* Extra protection */
544 if (session == NULL) {
545 return;
546 }
547
548 rcu_read_lock();
549
550 DBG2("Trace UST destroy session %u", session->id);
551
552 /* Cleaning up UST domain */
553 destroy_domain_global(&session->domain_global);
554 destroy_domain_pid(session->domain_pid);
555 destroy_domain_exec(session->domain_exec);
556
557 free(session);
558
559 rcu_read_unlock();
560 }
This page took 0.040429 seconds and 4 git commands to generate.