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