Fix: include loglevel type in UST event's primary key
[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
6c1c0768 19#define _LGPL_SOURCE
97ee3a89
DG
20#include <stdio.h>
21#include <stdlib.h>
22#include <string.h>
23#include <unistd.h>
d9bf3ca4 24#include <inttypes.h>
97ee3a89 25
990570ed
DG
26#include <common/common.h>
27#include <common/defaults.h>
97ee3a89 28
7972aab2 29#include "buffer-registry.h"
97ee3a89 30#include "trace-ust.h"
0b2dc8df 31#include "utils.h"
a9ad0c8f 32#include "ust-app.h"
7c1d2758 33#include "agent.h"
97ee3a89 34
025faf73
DG
35/*
36 * Match function for the events hash table lookup.
37 *
38 * Matches by name only. Used by the disable command.
39 */
18eace3b
DG
40int trace_ust_ht_match_event_by_name(struct cds_lfht_node *node,
41 const void *_key)
42{
43 struct ltt_ust_event *event;
44 const char *name;
45
46 assert(node);
47 assert(_key);
48
49 event = caa_container_of(node, struct ltt_ust_event, node.node);
50 name = _key;
51
52 /* Event name */
53 if (strncmp(event->attr.name, name, sizeof(event->attr.name)) != 0) {
54 goto no_match;
55 }
56
025faf73 57 /* Match */
18eace3b
DG
58 return 1;
59
60no_match:
61 return 0;
62}
63
025faf73
DG
64/*
65 * Match function for the hash table lookup.
66 *
67 * It matches an ust event based on three attributes which are the event name,
68 * the filter bytecode and the loglevel.
69 */
18eace3b
DG
70int trace_ust_ht_match_event(struct cds_lfht_node *node, const void *_key)
71{
72 struct ltt_ust_event *event;
73 const struct ltt_ust_ht_key *key;
2106efa0 74 int ev_loglevel_value;
18eace3b
DG
75
76 assert(node);
77 assert(_key);
78
79 event = caa_container_of(node, struct ltt_ust_event, node.node);
80 key = _key;
2106efa0 81 ev_loglevel_value = event->attr.loglevel;
18eace3b 82
f19e9f8b 83 /* Match the 4 elements of the key: name, filter, loglevel, exclusions. */
18eace3b
DG
84
85 /* Event name */
86 if (strncmp(event->attr.name, key->name, sizeof(event->attr.name)) != 0) {
18eace3b
DG
87 goto no_match;
88 }
89
b953b8cd
PP
90 /* Event loglevel value and type. */
91 if (event->attr.loglevel_type == key->loglevel_type) {
92 /* Same loglevel type. */
93 if (key->loglevel_type != LTTNG_UST_LOGLEVEL_ALL) {
18eace3b 94 /*
b953b8cd
PP
95 * Loglevel value must also match since the loglevel
96 * type is not all.
18eace3b 97 */
b953b8cd
PP
98 if (ev_loglevel_value != key->loglevel_value) {
99 goto no_match;
100 }
18eace3b 101 }
b953b8cd
PP
102 } else {
103 /* Loglevel type is different: no match. */
104 goto no_match;
18eace3b
DG
105 }
106
107 /* Only one of the filters is NULL, fail. */
108 if ((key->filter && !event->filter) || (!key->filter && event->filter)) {
18eace3b
DG
109 goto no_match;
110 }
111
025faf73
DG
112 if (key->filter && event->filter) {
113 /* Both filters exists, check length followed by the bytecode. */
114 if (event->filter->len != key->filter->len ||
115 memcmp(event->filter->data, key->filter->data,
116 event->filter->len) != 0) {
117 goto no_match;
118 }
18eace3b
DG
119 }
120
f19e9f8b
JI
121 /* If only one of the exclusions is NULL, fail. */
122 if ((key->exclusion && !event->exclusion) || (!key->exclusion && event->exclusion)) {
123 goto no_match;
124 }
125
126 if (key->exclusion && event->exclusion) {
127 /* Both exclusions exist; check count followed by names. */
128 if (event->exclusion->count != key->exclusion->count ||
129 memcmp(event->exclusion->names, key->exclusion->names,
130 event->exclusion->count * LTTNG_SYMBOL_NAME_LEN) != 0) {
131 goto no_match;
132 }
133 }
025faf73
DG
134 /* Match. */
135 return 1;
18eace3b
DG
136
137no_match:
138 return 0;
18eace3b
DG
139}
140
0177d773 141/*
2223c96f
DG
142 * Find the channel in the hashtable and return channel pointer. RCU read side
143 * lock MUST be acquired before calling this.
0177d773 144 */
bec39940 145struct ltt_ust_channel *trace_ust_find_channel_by_name(struct lttng_ht *ht,
f6a9efaa 146 char *name)
0177d773 147{
bec39940
DG
148 struct lttng_ht_node_str *node;
149 struct lttng_ht_iter iter;
0177d773 150
85076754
MD
151 /*
152 * If we receive an empty string for channel name, it means the
153 * default channel name is requested.
154 */
155 if (name[0] == '\0')
156 name = DEFAULT_CHANNEL_NAME;
157
bec39940
DG
158 lttng_ht_lookup(ht, (void *)name, &iter);
159 node = lttng_ht_iter_get_node_str(&iter);
f6a9efaa 160 if (node == NULL) {
44d3bd01
DG
161 goto error;
162 }
163
f6a9efaa 164 DBG2("Trace UST channel %s found by name", name);
0177d773 165
f6a9efaa 166 return caa_container_of(node, struct ltt_ust_channel, node);
97ee3a89
DG
167
168error:
f6a9efaa 169 DBG2("Trace UST channel %s not found by name", name);
97ee3a89
DG
170 return NULL;
171}
172
173/*
2223c96f
DG
174 * Find the event in the hashtable and return event pointer. RCU read side lock
175 * MUST be acquired before calling this.
97ee3a89 176 */
18eace3b 177struct ltt_ust_event *trace_ust_find_event(struct lttng_ht *ht,
2106efa0 178 char *name, struct lttng_filter_bytecode *filter,
b953b8cd
PP
179 enum lttng_ust_loglevel_type loglevel_type, int loglevel_value,
180 struct lttng_event_exclusion *exclusion)
97ee3a89 181{
bec39940
DG
182 struct lttng_ht_node_str *node;
183 struct lttng_ht_iter iter;
18eace3b 184 struct ltt_ust_ht_key key;
97ee3a89 185
18eace3b
DG
186 assert(name);
187 assert(ht);
188
189 key.name = name;
190 key.filter = filter;
b953b8cd
PP
191 key.loglevel_type = loglevel_type;
192 key.loglevel_value = loglevel_value;
10646003 193 key.exclusion = exclusion;
18eace3b 194
18eace3b
DG
195 cds_lfht_lookup(ht->ht, ht->hash_fct((void *) name, lttng_ht_seed),
196 trace_ust_ht_match_event, &key, &iter.iter);
bec39940 197 node = lttng_ht_iter_get_node_str(&iter);
f6a9efaa 198 if (node == NULL) {
97ee3a89
DG
199 goto error;
200 }
201
18eace3b 202 DBG2("Trace UST event %s found", key.name);
f6a9efaa
DG
203
204 return caa_container_of(node, struct ltt_ust_event, node);
97ee3a89
DG
205
206error:
18eace3b 207 DBG2("Trace UST event %s NOT found", key.name);
97ee3a89
DG
208 return NULL;
209}
210
fefd409b
DG
211/*
212 * Lookup an agent in the session agents hash table by domain type and return
213 * the object if found else NULL.
4da703ad
JG
214 *
215 * RCU read side lock must be acquired before calling and only released
216 * once the agent is no longer in scope or being used.
fefd409b
DG
217 */
218struct agent *trace_ust_find_agent(struct ltt_ust_session *session,
219 enum lttng_domain_type domain_type)
220{
221 struct agent *agt = NULL;
222 struct lttng_ht_node_u64 *node;
223 struct lttng_ht_iter iter;
224 uint64_t key;
225
226 assert(session);
227
228 DBG3("Trace ust agent lookup for domain %d", domain_type);
229
230 key = domain_type;
231
232 lttng_ht_lookup(session->agents, &key, &iter);
233 node = lttng_ht_iter_get_node_u64(&iter);
234 if (!node) {
235 goto end;
236 }
237 agt = caa_container_of(node, struct agent, node);
238
239end:
240 return agt;
241}
242
97ee3a89
DG
243/*
244 * Allocate and initialize a ust session data structure.
245 *
246 * Return pointer to structure or NULL.
247 */
d9bf3ca4 248struct ltt_ust_session *trace_ust_create_session(uint64_t session_id)
97ee3a89
DG
249{
250 struct ltt_ust_session *lus;
251
252 /* Allocate a new ltt ust session */
ba7f0ae5 253 lus = zmalloc(sizeof(struct ltt_ust_session));
97ee3a89 254 if (lus == NULL) {
ba7f0ae5 255 PERROR("create ust session zmalloc");
97ee3a89
DG
256 goto error;
257 }
258
259 /* Init data structure */
a991f516 260 lus->id = session_id;
14fb1ebe 261 lus->active = 0;
97ee3a89 262
84ad93e8
DG
263 /* Set default metadata channel attribute. */
264 lus->metadata_attr.overwrite = DEFAULT_CHANNEL_OVERWRITE;
265 lus->metadata_attr.subbuf_size = default_get_metadata_subbuf_size();
266 lus->metadata_attr.num_subbuf = DEFAULT_METADATA_SUBBUF_NUM;
267 lus->metadata_attr.switch_timer_interval = DEFAULT_METADATA_SWITCH_TIMER;
268 lus->metadata_attr.read_timer_interval = DEFAULT_METADATA_READ_TIMER;
269 lus->metadata_attr.output = LTTNG_UST_MMAP;
270
7972aab2
DG
271 /*
272 * Default buffer type. This can be changed through an enable channel
273 * requesting a different type. Note that this can only be changed once
274 * during the session lifetime which is at the first enable channel and
275 * only before start. The flag buffer_type_changed indicates the status.
276 */
8692d4e5 277 lus->buffer_type = LTTNG_BUFFER_PER_UID;
7972aab2
DG
278 /* Once set to 1, the buffer_type is immutable for the session. */
279 lus->buffer_type_changed = 0;
280 /* Init it in case it get used after allocation. */
281 CDS_INIT_LIST_HEAD(&lus->buffer_reg_uid_list);
f6a9efaa
DG
282
283 /* Alloc UST global domain channels' HT */
bec39940 284 lus->domain_global.channels = lttng_ht_new(0, LTTNG_HT_TYPE_STRING);
fefd409b
DG
285 /* Alloc agent hash table. */
286 lus->agents = lttng_ht_new(0, LTTNG_HT_TYPE_U64);
44d3bd01 287
00e2e675
DG
288 lus->consumer = consumer_create_output(CONSUMER_DST_LOCAL);
289 if (lus->consumer == NULL) {
09a90bcd 290 goto error_consumer;
00e2e675
DG
291 }
292
44d3bd01
DG
293 DBG2("UST trace session create successful");
294
97ee3a89
DG
295 return lus;
296
09a90bcd 297error_consumer:
0b2dc8df 298 ht_cleanup_push(lus->domain_global.channels);
fefd409b 299 ht_cleanup_push(lus->agents);
44844c29 300 free(lus);
97ee3a89
DG
301error:
302 return NULL;
303}
304
305/*
306 * Allocate and initialize a ust channel data structure.
307 *
308 * Return pointer to structure or NULL.
309 */
51755dc8
JG
310struct ltt_ust_channel *trace_ust_create_channel(struct lttng_channel *chan,
311 enum lttng_domain_type domain)
97ee3a89 312{
97ee3a89
DG
313 struct ltt_ust_channel *luc;
314
0525e9ae 315 assert(chan);
0525e9ae 316
37357452 317 luc = zmalloc(sizeof(struct ltt_ust_channel));
97ee3a89 318 if (luc == NULL) {
df0f840b 319 PERROR("ltt_ust_channel zmalloc");
97ee3a89
DG
320 goto error;
321 }
322
51755dc8
JG
323 luc->domain = domain;
324
44d3bd01 325 /* Copy UST channel attributes */
48842b30
DG
326 luc->attr.overwrite = chan->attr.overwrite;
327 luc->attr.subbuf_size = chan->attr.subbuf_size;
328 luc->attr.num_subbuf = chan->attr.num_subbuf;
329 luc->attr.switch_timer_interval = chan->attr.switch_timer_interval;
330 luc->attr.read_timer_interval = chan->attr.read_timer_interval;
6775595e 331 luc->attr.output = (enum lttng_ust_output) chan->attr.output;
44d3bd01
DG
332
333 /* Translate to UST output enum */
334 switch (luc->attr.output) {
335 default:
336 luc->attr.output = LTTNG_UST_MMAP;
337 break;
97ee3a89 338 }
97ee3a89 339
85076754
MD
340 /*
341 * If we receive an empty string for channel name, it means the
342 * default channel name is requested.
343 */
344 if (chan->name[0] == '\0') {
345 strncpy(luc->name, DEFAULT_CHANNEL_NAME, sizeof(luc->name));
346 } else {
347 /* Copy channel name */
348 strncpy(luc->name, chan->name, sizeof(luc->name));
349 }
97ee3a89
DG
350 luc->name[LTTNG_UST_SYM_NAME_LEN - 1] = '\0';
351
f6a9efaa 352 /* Init node */
bec39940 353 lttng_ht_node_init_str(&luc->node, luc->name);
31746f93
DG
354 CDS_INIT_LIST_HEAD(&luc->ctx_list);
355
f6a9efaa 356 /* Alloc hash tables */
bec39940
DG
357 luc->events = lttng_ht_new(0, LTTNG_HT_TYPE_STRING);
358 luc->ctx = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
f6a9efaa 359
1624d5b7
JD
360 /* On-disk circular buffer parameters */
361 luc->tracefile_size = chan->attr.tracefile_size;
362 luc->tracefile_count = chan->attr.tracefile_count;
363
f6a9efaa
DG
364 DBG2("Trace UST channel %s created", luc->name);
365
97ee3a89 366error:
7972aab2 367 return luc;
97ee3a89
DG
368}
369
370/*
371 * Allocate and initialize a ust event. Set name and event type.
49d21f93 372 * We own filter_expression, filter, and exclusion.
97ee3a89
DG
373 *
374 * Return pointer to structure or NULL.
375 */
025faf73 376struct ltt_ust_event *trace_ust_create_event(struct lttng_event *ev,
6b453b5e 377 char *filter_expression,
561c6897 378 struct lttng_filter_bytecode *filter,
88f06f15
JG
379 struct lttng_event_exclusion *exclusion,
380 bool internal_event)
97ee3a89
DG
381{
382 struct ltt_ust_event *lue;
97ee3a89 383
0525e9ae
DG
384 assert(ev);
385
37357452 386 lue = zmalloc(sizeof(struct ltt_ust_event));
44d3bd01 387 if (lue == NULL) {
ba7f0ae5 388 PERROR("ust event zmalloc");
97ee3a89
DG
389 goto error;
390 }
391
88f06f15
JG
392 lue->internal = internal_event;
393
97ee3a89
DG
394 switch (ev->type) {
395 case LTTNG_EVENT_PROBE:
44d3bd01 396 lue->attr.instrumentation = LTTNG_UST_PROBE;
97ee3a89
DG
397 break;
398 case LTTNG_EVENT_FUNCTION:
44d3bd01 399 lue->attr.instrumentation = LTTNG_UST_FUNCTION;
97ee3a89
DG
400 break;
401 case LTTNG_EVENT_FUNCTION_ENTRY:
44d3bd01 402 lue->attr.instrumentation = LTTNG_UST_FUNCTION;
97ee3a89
DG
403 break;
404 case LTTNG_EVENT_TRACEPOINT:
44d3bd01 405 lue->attr.instrumentation = LTTNG_UST_TRACEPOINT;
97ee3a89
DG
406 break;
407 default:
408 ERR("Unknown ust instrumentation type (%d)", ev->type);
44844c29 409 goto error_free_event;
97ee3a89
DG
410 }
411
412 /* Copy event name */
44d3bd01
DG
413 strncpy(lue->attr.name, ev->name, LTTNG_UST_SYM_NAME_LEN);
414 lue->attr.name[LTTNG_UST_SYM_NAME_LEN - 1] = '\0';
97ee3a89 415
0cda4f28 416 switch (ev->loglevel_type) {
8005f29a
MD
417 case LTTNG_EVENT_LOGLEVEL_ALL:
418 lue->attr.loglevel_type = LTTNG_UST_LOGLEVEL_ALL;
22e25b71 419 lue->attr.loglevel = -1; /* Force to -1 */
0cda4f28 420 break;
8005f29a
MD
421 case LTTNG_EVENT_LOGLEVEL_RANGE:
422 lue->attr.loglevel_type = LTTNG_UST_LOGLEVEL_RANGE;
22e25b71 423 lue->attr.loglevel = ev->loglevel;
8005f29a
MD
424 break;
425 case LTTNG_EVENT_LOGLEVEL_SINGLE:
426 lue->attr.loglevel_type = LTTNG_UST_LOGLEVEL_SINGLE;
22e25b71 427 lue->attr.loglevel = ev->loglevel;
0cda4f28
MD
428 break;
429 default:
4431494b 430 ERR("Unknown ust loglevel type (%d)", ev->loglevel_type);
0cda4f28
MD
431 goto error_free_event;
432 }
433
025faf73 434 /* Same layout. */
6b453b5e 435 lue->filter_expression = filter_expression;
51755dc8
JG
436 lue->filter = filter;
437 lue->exclusion = exclusion;
0cda4f28 438
f6a9efaa 439 /* Init node */
bec39940 440 lttng_ht_node_init_str(&lue->node, lue->attr.name);
97ee3a89 441
300b8fd5
MD
442 DBG2("Trace UST event %s, loglevel (%d,%d) created",
443 lue->attr.name, lue->attr.loglevel_type,
444 lue->attr.loglevel);
284d8f55 445
97ee3a89
DG
446 return lue;
447
44844c29
MD
448error_free_event:
449 free(lue);
97ee3a89 450error:
49d21f93
MD
451 free(filter_expression);
452 free(filter);
453 free(exclusion);
97ee3a89
DG
454 return NULL;
455}
456
aa3514e9
MD
457static
458int trace_ust_context_type_event_to_ust(enum lttng_event_context_type type)
55cc08a6 459{
aa3514e9 460 int utype;
0525e9ae 461
aa3514e9 462 switch (type) {
9197c5c4
MD
463 case LTTNG_EVENT_CONTEXT_VTID:
464 utype = LTTNG_UST_CONTEXT_VTID;
465 break;
466 case LTTNG_EVENT_CONTEXT_VPID:
467 utype = LTTNG_UST_CONTEXT_VPID;
468 break;
469 case LTTNG_EVENT_CONTEXT_PTHREAD_ID:
470 utype = LTTNG_UST_CONTEXT_PTHREAD_ID;
471 break;
472 case LTTNG_EVENT_CONTEXT_PROCNAME:
473 utype = LTTNG_UST_CONTEXT_PROCNAME;
474 break;
7c612c2e
WP
475 case LTTNG_EVENT_CONTEXT_IP:
476 utype = LTTNG_UST_CONTEXT_IP;
477 break;
aa3514e9 478 case LTTNG_EVENT_CONTEXT_PERF_THREAD_COUNTER:
354e561b
MD
479 if (!ustctl_has_perf_counters()) {
480 utype = -1;
481 WARN("Perf counters not implemented in UST");
482 } else {
483 utype = LTTNG_UST_CONTEXT_PERF_THREAD_COUNTER;
484 }
aa3514e9 485 break;
9197c5c4
MD
486 default:
487 ERR("Invalid UST context");
aa3514e9
MD
488 utype = -1;
489 break;
490 }
491 return utype;
492}
493
494/*
495 * Return 1 if contexts match, 0 otherwise.
496 */
497int trace_ust_match_context(struct ltt_ust_context *uctx,
498 struct lttng_event_context *ctx)
499{
500 int utype;
501
502 utype = trace_ust_context_type_event_to_ust(ctx->ctx);
503 if (utype < 0) {
504 return 0;
505 }
506 if (uctx->ctx.ctx != utype) {
507 return 0;
508 }
509 switch (utype) {
510 case LTTNG_UST_CONTEXT_PERF_THREAD_COUNTER:
511 if (uctx->ctx.u.perf_counter.type
512 != ctx->u.perf_counter.type) {
513 return 0;
514 }
515 if (uctx->ctx.u.perf_counter.config
516 != ctx->u.perf_counter.config) {
517 return 0;
518 }
519 if (strncmp(uctx->ctx.u.perf_counter.name,
520 ctx->u.perf_counter.name,
521 LTTNG_UST_SYM_NAME_LEN)) {
522 return 0;
523 }
524 break;
525 default:
526 break;
527
528 }
529 return 1;
530}
531
532/*
533 * Allocate and initialize an UST context.
534 *
535 * Return pointer to structure or NULL.
536 */
537struct ltt_ust_context *trace_ust_create_context(
538 struct lttng_event_context *ctx)
539{
540 struct ltt_ust_context *uctx;
541 int utype;
542
543 assert(ctx);
544
545 utype = trace_ust_context_type_event_to_ust(ctx->ctx);
546 if (utype < 0) {
9197c5c4
MD
547 return NULL;
548 }
55cc08a6
DG
549
550 uctx = zmalloc(sizeof(struct ltt_ust_context));
551 if (uctx == NULL) {
552 PERROR("zmalloc ltt_ust_context");
553 goto error;
554 }
555
aa3514e9
MD
556 uctx->ctx.ctx = (enum lttng_ust_context_type) utype;
557 switch (utype) {
558 case LTTNG_UST_CONTEXT_PERF_THREAD_COUNTER:
559 uctx->ctx.u.perf_counter.type = ctx->u.perf_counter.type;
560 uctx->ctx.u.perf_counter.config = ctx->u.perf_counter.config;
561 strncpy(uctx->ctx.u.perf_counter.name, ctx->u.perf_counter.name,
562 LTTNG_UST_SYM_NAME_LEN);
563 uctx->ctx.u.perf_counter.name[LTTNG_UST_SYM_NAME_LEN - 1] = '\0';
564 break;
565 default:
566 break;
567 }
bec39940 568 lttng_ht_node_init_ulong(&uctx->node, (unsigned long) uctx->ctx.ctx);
55cc08a6
DG
569
570 return uctx;
571
572error:
573 return NULL;
574}
575
a9ad0c8f
MD
576static
577void destroy_pid_tracker_node_rcu(struct rcu_head *head)
578{
579 struct ust_pid_tracker_node *tracker_node =
580 caa_container_of(head, struct ust_pid_tracker_node, node.head);
581 free(tracker_node);
582}
583
584static
585void destroy_pid_tracker_node(struct ust_pid_tracker_node *tracker_node)
586{
587
588 call_rcu(&tracker_node->node.head, destroy_pid_tracker_node_rcu);
589}
590
591static
592int init_pid_tracker(struct ust_pid_tracker *pid_tracker)
593{
594 int ret = 0;
595
596 pid_tracker->ht = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
597 if (!pid_tracker->ht) {
598 ret = -1;
599 goto end;
600 }
601
602end:
603 return ret;
604}
605
606/*
607 * Teardown pid tracker content, but don't free pid_tracker object.
608 */
609static
610void fini_pid_tracker(struct ust_pid_tracker *pid_tracker)
611{
612 struct ust_pid_tracker_node *tracker_node;
613 struct lttng_ht_iter iter;
614
615 if (!pid_tracker->ht) {
616 return;
617 }
618 rcu_read_lock();
619 cds_lfht_for_each_entry(pid_tracker->ht->ht,
620 &iter.iter, tracker_node, node.node) {
621 int ret = lttng_ht_del(pid_tracker->ht, &iter);
622
623 assert(!ret);
624 destroy_pid_tracker_node(tracker_node);
625 }
626 rcu_read_unlock();
627 ht_cleanup_push(pid_tracker->ht);
628 pid_tracker->ht = NULL;
629}
630
631static
632struct ust_pid_tracker_node *pid_tracker_lookup(
633 struct ust_pid_tracker *pid_tracker, int pid,
634 struct lttng_ht_iter *iter)
635{
636 unsigned long _pid = (unsigned long) pid;
637 struct lttng_ht_node_ulong *node;
638
639 lttng_ht_lookup(pid_tracker->ht, (void *) _pid, iter);
640 node = lttng_ht_iter_get_node_ulong(iter);
641 if (node) {
642 return caa_container_of(node, struct ust_pid_tracker_node,
643 node);
644 } else {
645 return NULL;
646 }
647}
648
649static
650int pid_tracker_add_pid(struct ust_pid_tracker *pid_tracker, int pid)
651{
652 int retval = LTTNG_OK;
653 struct ust_pid_tracker_node *tracker_node;
654 struct lttng_ht_iter iter;
655
656 if (pid < 0) {
657 retval = LTTNG_ERR_INVALID;
658 goto end;
659 }
660 tracker_node = pid_tracker_lookup(pid_tracker, pid, &iter);
661 if (tracker_node) {
662 /* Already exists. */
b93a4a13 663 retval = LTTNG_ERR_PID_TRACKED;
a9ad0c8f
MD
664 goto end;
665 }
666 tracker_node = zmalloc(sizeof(*tracker_node));
667 if (!tracker_node) {
668 retval = LTTNG_ERR_NOMEM;
669 goto end;
670 }
671 lttng_ht_node_init_ulong(&tracker_node->node, (unsigned long) pid);
672 lttng_ht_add_unique_ulong(pid_tracker->ht, &tracker_node->node);
673end:
674 return retval;
675}
676
677static
678int pid_tracker_del_pid(struct ust_pid_tracker *pid_tracker, int pid)
679{
680 int retval = LTTNG_OK, ret;
681 struct ust_pid_tracker_node *tracker_node;
682 struct lttng_ht_iter iter;
683
684 if (pid < 0) {
685 retval = LTTNG_ERR_INVALID;
686 goto end;
687 }
688 tracker_node = pid_tracker_lookup(pid_tracker, pid, &iter);
689 if (!tracker_node) {
690 /* Not found */
b93a4a13 691 retval = LTTNG_ERR_PID_NOT_TRACKED;
a9ad0c8f
MD
692 goto end;
693 }
694 ret = lttng_ht_del(pid_tracker->ht, &iter);
695 assert(!ret);
696
697 destroy_pid_tracker_node(tracker_node);
698end:
699 return retval;
700}
701
702/*
703 * The session lock is held when calling this function.
704 */
705int trace_ust_pid_tracker_lookup(struct ltt_ust_session *session, int pid)
706{
707 struct lttng_ht_iter iter;
708
709 if (!session->pid_tracker.ht) {
710 return 1;
711 }
712 if (pid_tracker_lookup(&session->pid_tracker, pid, &iter)) {
713 return 1;
714 }
715 return 0;
716}
717
718/*
719 * Called with the session lock held.
720 */
721int trace_ust_track_pid(struct ltt_ust_session *session, int pid)
722{
723 int retval = LTTNG_OK;
724
725 if (pid == -1) {
726 /* Track all pids: destroy tracker if exists. */
727 if (session->pid_tracker.ht) {
728 fini_pid_tracker(&session->pid_tracker);
729 /* Ensure all apps have session. */
730 ust_app_global_update_all(session);
731 }
732 } else {
733 int ret;
734
735 if (!session->pid_tracker.ht) {
736 /* Create tracker. */
737 if (init_pid_tracker(&session->pid_tracker)) {
738 ERR("Error initializing PID tracker");
739 retval = LTTNG_ERR_NOMEM;
740 goto end;
741 }
742 ret = pid_tracker_add_pid(&session->pid_tracker, pid);
743 if (ret != LTTNG_OK) {
744 retval = ret;
745 fini_pid_tracker(&session->pid_tracker);
746 goto end;
747 }
748 /* Remove all apps from session except pid. */
749 ust_app_global_update_all(session);
750 } else {
751 struct ust_app *app;
752
753 ret = pid_tracker_add_pid(&session->pid_tracker, pid);
754 if (ret != LTTNG_OK) {
755 retval = ret;
756 goto end;
757 }
758 /* Add session to application */
759 app = ust_app_find_by_pid(pid);
760 if (app) {
761 ust_app_global_update(session, app);
762 }
763 }
764 }
765end:
766 return retval;
767}
768
769/*
770 * Called with the session lock held.
771 */
772int trace_ust_untrack_pid(struct ltt_ust_session *session, int pid)
773{
774 int retval = LTTNG_OK;
775
776 if (pid == -1) {
777 /* Create empty tracker, replace old tracker. */
778 struct ust_pid_tracker tmp_tracker;
779
780 tmp_tracker = session->pid_tracker;
781 if (init_pid_tracker(&session->pid_tracker)) {
782 ERR("Error initializing PID tracker");
783 retval = LTTNG_ERR_NOMEM;
784 /* Rollback operation. */
785 session->pid_tracker = tmp_tracker;
786 goto end;
787 }
788 fini_pid_tracker(&tmp_tracker);
789
790 /* Remove session from all applications */
791 ust_app_global_update_all(session);
792 } else {
793 int ret;
794 struct ust_app *app;
795
796 if (!session->pid_tracker.ht) {
b894343d
JG
797 /* No PID being tracked. */
798 retval = LTTNG_ERR_PID_NOT_TRACKED;
a9ad0c8f
MD
799 goto end;
800 }
801 /* Remove PID from tracker */
802 ret = pid_tracker_del_pid(&session->pid_tracker, pid);
803 if (ret != LTTNG_OK) {
804 retval = ret;
805 goto end;
806 }
807 /* Remove session from application. */
808 app = ust_app_find_by_pid(pid);
809 if (app) {
810 ust_app_global_update(session, app);
811 }
812 }
813end:
814 return retval;
815}
816
a5dfbb9d
MD
817/*
818 * Called with session lock held.
819 */
820ssize_t trace_ust_list_tracker_pids(struct ltt_ust_session *session,
821 int32_t **_pids)
822{
823 struct ust_pid_tracker_node *tracker_node;
824 struct lttng_ht_iter iter;
825 unsigned long count, i = 0;
826 long approx[2];
827 int32_t *pids;
828 int ret = 0;
829
830 if (!session->pid_tracker.ht) {
831 /* Tracker disabled. Set first entry to -1. */
832 pids = zmalloc(sizeof(*pids));
833 if (!pids) {
834 ret = -1;
835 goto end;
836 }
837 pids[0] = -1;
838 *_pids = pids;
839 return 1;
840 }
841
842 rcu_read_lock();
843 cds_lfht_count_nodes(session->pid_tracker.ht->ht,
844 &approx[0], &count, &approx[1]);
845 pids = zmalloc(sizeof(*pids) * count);
846 if (!pids) {
847 ret = -1;
848 goto end;
849 }
850 cds_lfht_for_each_entry(session->pid_tracker.ht->ht,
851 &iter.iter, tracker_node, node.node) {
852 pids[i++] = tracker_node->node.key;
853 }
854 *_pids = pids;
855 ret = count;
856end:
857 rcu_read_unlock();
858 return ret;
859}
860
f6a9efaa
DG
861/*
862 * RCU safe free context structure.
863 */
864static void destroy_context_rcu(struct rcu_head *head)
865{
bec39940
DG
866 struct lttng_ht_node_ulong *node =
867 caa_container_of(head, struct lttng_ht_node_ulong, head);
f6a9efaa
DG
868 struct ltt_ust_context *ctx =
869 caa_container_of(node, struct ltt_ust_context, node);
870
871 free(ctx);
872}
873
874/*
875 * Cleanup UST context hash table.
876 */
7bd39047 877static void destroy_contexts(struct lttng_ht *ht)
f6a9efaa
DG
878{
879 int ret;
bec39940
DG
880 struct lttng_ht_node_ulong *node;
881 struct lttng_ht_iter iter;
31746f93 882 struct ltt_ust_context *ctx;
f6a9efaa 883
0525e9ae
DG
884 assert(ht);
885
36b588ed 886 rcu_read_lock();
bec39940 887 cds_lfht_for_each_entry(ht->ht, &iter.iter, node, node) {
31746f93
DG
888 /* Remove from ordered list. */
889 ctx = caa_container_of(node, struct ltt_ust_context, node);
890 cds_list_del(&ctx->list);
891 /* Remove from channel's hash table. */
bec39940 892 ret = lttng_ht_del(ht, &iter);
f6a9efaa
DG
893 if (!ret) {
894 call_rcu(&node->head, destroy_context_rcu);
895 }
f6a9efaa 896 }
36b588ed 897 rcu_read_unlock();
ed52805d 898
0b2dc8df 899 ht_cleanup_push(ht);
f6a9efaa
DG
900}
901
97ee3a89
DG
902/*
903 * Cleanup ust event structure.
904 */
905void trace_ust_destroy_event(struct ltt_ust_event *event)
906{
0525e9ae
DG
907 assert(event);
908
f6a9efaa 909 DBG2("Trace destroy UST event %s", event->attr.name);
6b453b5e 910 free(event->filter_expression);
53a80697 911 free(event->filter);
40024f8a 912 free(event->exclusion);
97ee3a89
DG
913 free(event);
914}
915
f6a9efaa
DG
916/*
917 * URCU intermediate call to complete destroy event.
918 */
919static void destroy_event_rcu(struct rcu_head *head)
920{
bec39940
DG
921 struct lttng_ht_node_str *node =
922 caa_container_of(head, struct lttng_ht_node_str, head);
f6a9efaa
DG
923 struct ltt_ust_event *event =
924 caa_container_of(node, struct ltt_ust_event, node);
925
926 trace_ust_destroy_event(event);
927}
928
284d8f55
DG
929/*
930 * Cleanup UST events hashtable.
931 */
7bd39047 932static void destroy_events(struct lttng_ht *events)
ed52805d
DG
933{
934 int ret;
bec39940
DG
935 struct lttng_ht_node_str *node;
936 struct lttng_ht_iter iter;
ed52805d 937
0525e9ae
DG
938 assert(events);
939
36b588ed 940 rcu_read_lock();
bec39940
DG
941 cds_lfht_for_each_entry(events->ht, &iter.iter, node, node) {
942 ret = lttng_ht_del(events, &iter);
7bd39047
DG
943 assert(!ret);
944 call_rcu(&node->head, destroy_event_rcu);
ed52805d 945 }
36b588ed 946 rcu_read_unlock();
ed52805d 947
0b2dc8df 948 ht_cleanup_push(events);
ed52805d
DG
949}
950
97ee3a89
DG
951/*
952 * Cleanup ust channel structure.
36b588ed
MD
953 *
954 * Should _NOT_ be called with RCU read lock held.
97ee3a89 955 */
36b588ed 956static void _trace_ust_destroy_channel(struct ltt_ust_channel *channel)
97ee3a89 957{
0525e9ae
DG
958 assert(channel);
959
f6a9efaa 960 DBG2("Trace destroy UST channel %s", channel->name);
97ee3a89 961
97ee3a89 962 free(channel);
f6a9efaa
DG
963}
964
965/*
966 * URCU intermediate call to complete destroy channel.
967 */
968static void destroy_channel_rcu(struct rcu_head *head)
969{
bec39940
DG
970 struct lttng_ht_node_str *node =
971 caa_container_of(head, struct lttng_ht_node_str, head);
f6a9efaa
DG
972 struct ltt_ust_channel *channel =
973 caa_container_of(node, struct ltt_ust_channel, node);
974
36b588ed
MD
975 _trace_ust_destroy_channel(channel);
976}
977
978void trace_ust_destroy_channel(struct ltt_ust_channel *channel)
979{
627cbbe7
MD
980 /* Destroying all events of the channel */
981 destroy_events(channel->events);
982 /* Destroying all context of the channel */
983 destroy_contexts(channel->ctx);
984
36b588ed 985 call_rcu(&channel->node.head, destroy_channel_rcu);
97ee3a89
DG
986}
987
d5979e4a
DG
988/*
989 * Remove an UST channel from a channel HT.
990 */
991void trace_ust_delete_channel(struct lttng_ht *ht,
992 struct ltt_ust_channel *channel)
993{
994 int ret;
995 struct lttng_ht_iter iter;
996
997 assert(ht);
998 assert(channel);
999
1000 iter.iter.node = &channel->node.node;
1001 ret = lttng_ht_del(ht, &iter);
1002 assert(!ret);
1003}
1004
97ee3a89 1005/*
f6a9efaa 1006 * Iterate over a hash table containing channels and cleanup safely.
97ee3a89 1007 */
bec39940 1008static void destroy_channels(struct lttng_ht *channels)
f6a9efaa 1009{
bec39940
DG
1010 struct lttng_ht_node_str *node;
1011 struct lttng_ht_iter iter;
f6a9efaa 1012
0525e9ae
DG
1013 assert(channels);
1014
24d1723f 1015 rcu_read_lock();
bec39940 1016 cds_lfht_for_each_entry(channels->ht, &iter.iter, node, node) {
627cbbe7
MD
1017 struct ltt_ust_channel *chan =
1018 caa_container_of(node, struct ltt_ust_channel, node);
1019
1020 trace_ust_delete_channel(channels, chan);
1021 trace_ust_destroy_channel(chan);
f6a9efaa 1022 }
36b588ed 1023 rcu_read_unlock();
ed52805d 1024
0b2dc8df 1025 ht_cleanup_push(channels);
f6a9efaa
DG
1026}
1027
f6a9efaa
DG
1028/*
1029 * Cleanup UST global domain.
1030 */
1031static void destroy_domain_global(struct ltt_ust_domain_global *dom)
1032{
0525e9ae
DG
1033 assert(dom);
1034
f6a9efaa
DG
1035 destroy_channels(dom->channels);
1036}
97ee3a89 1037
f6a9efaa
DG
1038/*
1039 * Cleanup ust session structure
36b588ed
MD
1040 *
1041 * Should *NOT* be called with RCU read-side lock held.
f6a9efaa
DG
1042 */
1043void trace_ust_destroy_session(struct ltt_ust_session *session)
1044{
fefd409b 1045 struct agent *agt;
7972aab2 1046 struct buffer_reg_uid *reg, *sreg;
fefd409b 1047 struct lttng_ht_iter iter;
7972aab2 1048
0525e9ae 1049 assert(session);
97ee3a89 1050
d9bf3ca4 1051 DBG2("Trace UST destroy session %" PRIu64, session->id);
f6a9efaa 1052
f6a9efaa
DG
1053 /* Cleaning up UST domain */
1054 destroy_domain_global(&session->domain_global);
fefd409b 1055
0c0fcd77 1056 rcu_read_lock();
fefd409b 1057 cds_lfht_for_each_entry(session->agents->ht, &iter.iter, agt, node.node) {
d0edf546
JG
1058 int ret = lttng_ht_del(session->agents, &iter);
1059
1060 assert(!ret);
fefd409b
DG
1061 agent_destroy(agt);
1062 }
0c0fcd77 1063 rcu_read_unlock();
7972aab2 1064
8ada2175
MD
1065 ht_cleanup_push(session->agents);
1066
7972aab2
DG
1067 /* Cleanup UID buffer registry object(s). */
1068 cds_list_for_each_entry_safe(reg, sreg, &session->buffer_reg_uid_list,
1069 lnode) {
1070 cds_list_del(&reg->lnode);
1071 buffer_reg_uid_remove(reg);
1072 buffer_reg_uid_destroy(reg, session->consumer);
1073 }
44d3bd01 1074
6addfa37 1075 consumer_output_put(session->consumer);
3f8e211f 1076
a9ad0c8f
MD
1077 fini_pid_tracker(&session->pid_tracker);
1078
97ee3a89
DG
1079 free(session);
1080}
This page took 0.093596 seconds and 4 git commands to generate.