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