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