hashtable: replace non-const iterator node accessors by a const version
[lttng-tools.git] / src / bin / lttng-sessiond / ust-app.cpp
CommitLineData
91d76f53 1/*
21cf9b6b 2 * Copyright (C) 2011 EfficiOS Inc.
ab5be9fa 3 * Copyright (C) 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
91d76f53 4 *
ab5be9fa 5 * SPDX-License-Identifier: GPL-2.0-only
91d76f53 6 *
91d76f53
DG
7 */
8
6c1c0768 9#define _LGPL_SOURCE
d7bfb9b0
JG
10
11#include "buffer-registry.hpp"
12#include "condition-internal.hpp"
13#include "event-notifier-error-accounting.hpp"
14#include "event.hpp"
15#include "fd-limit.hpp"
16#include "field.hpp"
17#include "health-sessiond.hpp"
18#include "lttng-sessiond.hpp"
19#include "lttng-ust-ctl.hpp"
20#include "lttng-ust-error.hpp"
21#include "notification-thread-commands.hpp"
d7bfb9b0
JG
22#include "session.hpp"
23#include "ust-app.hpp"
24#include "ust-consumer.hpp"
25#include "ust-field-convert.hpp"
26#include "utils.hpp"
27
28#include <common/bytecode/bytecode.hpp>
29#include <common/common.hpp>
30#include <common/compat/errno.hpp>
31#include <common/exception.hpp>
32#include <common/format.hpp>
33#include <common/hashtable/utils.hpp>
34#include <common/make-unique.hpp>
a7db814e 35#include <common/pthread-lock.hpp>
d7bfb9b0
JG
36#include <common/sessiond-comm/sessiond-comm.hpp>
37#include <common/urcu.hpp>
38
39#include <lttng/condition/condition.h>
40#include <lttng/condition/event-rule-matches-internal.hpp>
41#include <lttng/condition/event-rule-matches.h>
42#include <lttng/event-rule/event-rule-internal.hpp>
43#include <lttng/event-rule/event-rule.h>
44#include <lttng/event-rule/user-tracepoint.h>
45#include <lttng/trigger/trigger-internal.hpp>
46
533a90fb
FD
47#include <errno.h>
48#include <fcntl.h>
7972aab2 49#include <inttypes.h>
91d76f53 50#include <pthread.h>
d7bfb9b0 51#include <signal.h>
91d76f53
DG
52#include <stdio.h>
53#include <stdlib.h>
099e26bd 54#include <string.h>
533a90fb 55#include <sys/mman.h>
aba8e916
DG
56#include <sys/stat.h>
57#include <sys/types.h>
099e26bd 58#include <unistd.h>
0df502fd 59#include <urcu/compiler.h>
d7bfb9b0 60#include <vector>
bec39940 61
d7bfb9b0
JG
62namespace lsu = lttng::sessiond::ust;
63namespace lst = lttng::sessiond::trace;
d80a6244 64
44cdb3a2
MJ
65struct lttng_ht *ust_app_ht;
66struct lttng_ht *ust_app_ht_by_sock;
67struct lttng_ht *ust_app_ht_by_notify_sock;
68
a7db814e 69static int ust_app_flush_app_session(ust_app& app, ust_app_session& ua_sess);
c4b88406 70
d9bf3ca4
MD
71/* Next available channel key. Access under next_channel_key_lock. */
72static uint64_t _next_channel_key;
73static pthread_mutex_t next_channel_key_lock = PTHREAD_MUTEX_INITIALIZER;
74
75/* Next available session ID. Access under next_session_id_lock. */
76static uint64_t _next_session_id;
77static pthread_mutex_t next_session_id_lock = PTHREAD_MUTEX_INITIALIZER;
ffe60014 78
d7bfb9b0
JG
79namespace {
80
81/*
82 * Return the session registry according to the buffer type of the given
83 * session.
84 *
85 * A registry per UID object MUST exists before calling this function or else
86 * it LTTNG_ASSERT() if not found. RCU read side lock must be acquired.
87 */
62256275 88lsu::registry_session *get_session_registry(const struct ust_app_session *ua_sess)
d7bfb9b0 89{
cd9adb8b 90 lsu::registry_session *registry = nullptr;
d7bfb9b0
JG
91
92 LTTNG_ASSERT(ua_sess);
93
94 switch (ua_sess->buffer_type) {
95 case LTTNG_BUFFER_PER_PID:
96 {
97 struct buffer_reg_pid *reg_pid = buffer_reg_pid_find(ua_sess->id);
98 if (!reg_pid) {
99 goto error;
100 }
101 registry = reg_pid->registry->reg.ust;
102 break;
103 }
104 case LTTNG_BUFFER_PER_UID:
105 {
28ab034a
JG
106 struct buffer_reg_uid *reg_uid =
107 buffer_reg_uid_find(ua_sess->tracing_id,
108 ua_sess->bits_per_long,
109 lttng_credentials_get_uid(&ua_sess->real_credentials));
d7bfb9b0
JG
110 if (!reg_uid) {
111 goto error;
112 }
113 registry = reg_uid->registry->reg.ust;
114 break;
115 }
116 default:
117 abort();
118 };
119
120error:
121 return registry;
122}
123
77682be9 124lsu::registry_session::locked_ref get_locked_session_registry(const struct ust_app_session *ua_sess)
d7bfb9b0
JG
125{
126 auto session = get_session_registry(ua_sess);
127 if (session) {
128 pthread_mutex_lock(&session->_lock);
129 }
130
77682be9 131 return lsu::registry_session::locked_ref{ session };
d7bfb9b0
JG
132}
133} /* namespace */
134
ffe60014 135/*
d9bf3ca4 136 * Return the incremented value of next_channel_key.
ffe60014 137 */
cd9adb8b 138static uint64_t get_next_channel_key()
ffe60014 139{
d9bf3ca4
MD
140 uint64_t ret;
141
142 pthread_mutex_lock(&next_channel_key_lock);
143 ret = ++_next_channel_key;
144 pthread_mutex_unlock(&next_channel_key_lock);
145 return ret;
ffe60014
DG
146}
147
148/*
7972aab2 149 * Return the atomically incremented value of next_session_id.
ffe60014 150 */
cd9adb8b 151static uint64_t get_next_session_id()
ffe60014 152{
d9bf3ca4
MD
153 uint64_t ret;
154
155 pthread_mutex_lock(&next_session_id_lock);
156 ret = ++_next_session_id;
157 pthread_mutex_unlock(&next_session_id_lock);
158 return ret;
ffe60014
DG
159}
160
28ab034a
JG
161static void copy_channel_attr_to_ustctl(struct lttng_ust_ctl_consumer_channel_attr *attr,
162 struct lttng_ust_abi_channel_attr *uattr)
d65d2de8
DG
163{
164 /* Copy event attributes since the layout is different. */
165 attr->subbuf_size = uattr->subbuf_size;
166 attr->num_subbuf = uattr->num_subbuf;
167 attr->overwrite = uattr->overwrite;
168 attr->switch_timer_interval = uattr->switch_timer_interval;
169 attr->read_timer_interval = uattr->read_timer_interval;
7966af57 170 attr->output = (lttng_ust_abi_output) uattr->output;
491d1539 171 attr->blocking_timeout = uattr->u.s.blocking_timeout;
d65d2de8
DG
172}
173
025faf73
DG
174/*
175 * Match function for the hash table lookup.
176 *
177 * It matches an ust app event based on three attributes which are the event
178 * name, the filter bytecode and the loglevel.
179 */
18eace3b
DG
180static int ht_match_ust_app_event(struct cds_lfht_node *node, const void *_key)
181{
182 struct ust_app_event *event;
183 const struct ust_app_ht_key *key;
184
a0377dfe
FD
185 LTTNG_ASSERT(node);
186 LTTNG_ASSERT(_key);
18eace3b
DG
187
188 event = caa_container_of(node, struct ust_app_event, node.node);
7966af57 189 key = (ust_app_ht_key *) _key;
18eace3b 190
1af53eb5 191 /* Match the 4 elements of the key: name, filter, loglevel, exclusions */
18eace3b
DG
192
193 /* Event name */
194 if (strncmp(event->attr.name, key->name, sizeof(event->attr.name)) != 0) {
195 goto no_match;
196 }
197
198 /* Event loglevel. */
dcd24bbf
JG
199 if (!loglevels_match(event->attr.loglevel_type,
200 event->attr.loglevel,
201 key->loglevel_type,
202 key->loglevel_value,
203 LTTNG_UST_ABI_LOGLEVEL_ALL)) {
204 goto no_match;
18eace3b
DG
205 }
206
207 /* One of the filters is NULL, fail. */
208 if ((key->filter && !event->filter) || (!key->filter && event->filter)) {
209 goto no_match;
210 }
211
025faf73
DG
212 if (key->filter && event->filter) {
213 /* Both filters exists, check length followed by the bytecode. */
214 if (event->filter->len != key->filter->len ||
28ab034a 215 memcmp(event->filter->data, key->filter->data, event->filter->len) != 0) {
025faf73
DG
216 goto no_match;
217 }
18eace3b
DG
218 }
219
1af53eb5
JI
220 /* One of the exclusions is NULL, fail. */
221 if ((key->exclusion && !event->exclusion) || (!key->exclusion && event->exclusion)) {
222 goto no_match;
223 }
224
225 if (key->exclusion && event->exclusion) {
226 /* Both exclusions exists, check count followed by the names. */
227 if (event->exclusion->count != key->exclusion->count ||
28ab034a
JG
228 memcmp(event->exclusion->names,
229 key->exclusion->names,
230 event->exclusion->count * LTTNG_UST_ABI_SYM_NAME_LEN) != 0) {
1af53eb5
JI
231 goto no_match;
232 }
233 }
234
025faf73 235 /* Match. */
18eace3b
DG
236 return 1;
237
238no_match:
239 return 0;
18eace3b
DG
240}
241
025faf73
DG
242/*
243 * Unique add of an ust app event in the given ht. This uses the custom
244 * ht_match_ust_app_event match function and the event name as hash.
245 */
28ab034a 246static void add_unique_ust_app_event(struct ust_app_channel *ua_chan, struct ust_app_event *event)
18eace3b
DG
247{
248 struct cds_lfht_node *node_ptr;
249 struct ust_app_ht_key key;
d0b96690 250 struct lttng_ht *ht;
18eace3b 251
a0377dfe
FD
252 LTTNG_ASSERT(ua_chan);
253 LTTNG_ASSERT(ua_chan->events);
254 LTTNG_ASSERT(event);
18eace3b 255
d0b96690 256 ht = ua_chan->events;
18eace3b
DG
257 key.name = event->attr.name;
258 key.filter = event->filter;
dcd24bbf
JG
259 key.loglevel_type = (lttng_ust_abi_loglevel_type) event->attr.loglevel_type;
260 key.loglevel_value = event->attr.loglevel;
91c89f23 261 key.exclusion = event->exclusion;
18eace3b
DG
262
263 node_ptr = cds_lfht_add_unique(ht->ht,
28ab034a
JG
264 ht->hash_fct(event->node.key, lttng_ht_seed),
265 ht_match_ust_app_event,
266 &key,
267 &event->node.node);
a0377dfe 268 LTTNG_ASSERT(node_ptr == &event->node.node);
18eace3b
DG
269}
270
d88aee68
DG
271/*
272 * Close the notify socket from the given RCU head object. This MUST be called
273 * through a call_rcu().
274 */
275static void close_notify_sock_rcu(struct rcu_head *head)
276{
277 int ret;
278 struct ust_app_notify_sock_obj *obj =
0114db0e 279 lttng::utils::container_of(head, &ust_app_notify_sock_obj::head);
d88aee68
DG
280
281 /* Must have a valid fd here. */
a0377dfe 282 LTTNG_ASSERT(obj->fd >= 0);
d88aee68
DG
283
284 ret = close(obj->fd);
285 if (ret) {
286 ERR("close notify sock %d RCU", obj->fd);
287 }
288 lttng_fd_put(LTTNG_FD_APPS, 1);
289
290 free(obj);
291}
292
55cc08a6
DG
293/*
294 * Delete ust context safely. RCU read lock must be held before calling
295 * this function.
296 */
28ab034a 297static void delete_ust_app_ctx(int sock, struct ust_app_ctx *ua_ctx, struct ust_app *app)
55cc08a6 298{
ffe60014
DG
299 int ret;
300
a0377dfe 301 LTTNG_ASSERT(ua_ctx);
48b7cdc2 302 ASSERT_RCU_READ_LOCKED();
ffe60014 303
55cc08a6 304 if (ua_ctx->obj) {
fb45065e 305 pthread_mutex_lock(&app->sock_lock);
b623cb6a 306 ret = lttng_ust_ctl_release_object(sock, ua_ctx->obj);
fb45065e 307 pthread_mutex_unlock(&app->sock_lock);
be355079
JR
308 if (ret < 0) {
309 if (ret == -EPIPE || ret == -LTTNG_UST_ERR_EXITING) {
310 DBG3("UST app release ctx failed. Application is dead: pid = %d, sock = %d",
28ab034a
JG
311 app->pid,
312 app->sock);
be355079
JR
313 } else if (ret == -EAGAIN) {
314 WARN("UST app release ctx failed. Communication time out: pid = %d, sock = %d",
28ab034a
JG
315 app->pid,
316 app->sock);
be355079
JR
317 } else {
318 ERR("UST app release ctx obj handle %d failed with ret %d: pid = %d, sock = %d",
28ab034a
JG
319 ua_ctx->obj->handle,
320 ret,
321 app->pid,
322 app->sock);
be355079 323 }
ffe60014 324 }
55cc08a6
DG
325 free(ua_ctx->obj);
326 }
0a05887d
JG
327
328 if (ua_ctx->ctx.ctx == LTTNG_UST_ABI_CONTEXT_APP_CONTEXT) {
329 free(ua_ctx->ctx.u.app_ctx.provider_name);
330 free(ua_ctx->ctx.u.app_ctx.ctx_name);
331 }
332
55cc08a6
DG
333 free(ua_ctx);
334}
335
d80a6244
DG
336/*
337 * Delete ust app event safely. RCU read lock must be held before calling
338 * this function.
339 */
28ab034a 340static void delete_ust_app_event(int sock, struct ust_app_event *ua_event, struct ust_app *app)
d80a6244 341{
ffe60014
DG
342 int ret;
343
a0377dfe 344 LTTNG_ASSERT(ua_event);
48b7cdc2 345 ASSERT_RCU_READ_LOCKED();
ffe60014 346
53a80697 347 free(ua_event->filter);
cd9adb8b 348 if (ua_event->exclusion != nullptr)
951f0b71 349 free(ua_event->exclusion);
cd9adb8b 350 if (ua_event->obj != nullptr) {
fb45065e 351 pthread_mutex_lock(&app->sock_lock);
b623cb6a 352 ret = lttng_ust_ctl_release_object(sock, ua_event->obj);
fb45065e 353 pthread_mutex_unlock(&app->sock_lock);
be355079
JR
354 if (ret < 0) {
355 if (ret == -EPIPE || ret == -LTTNG_UST_ERR_EXITING) {
356 DBG3("UST app release event failed. Application is dead: pid = %d, sock = %d",
28ab034a
JG
357 app->pid,
358 app->sock);
be355079
JR
359 } else if (ret == -EAGAIN) {
360 WARN("UST app release event failed. Communication time out: pid = %d, sock = %d",
28ab034a
JG
361 app->pid,
362 app->sock);
be355079
JR
363 } else {
364 ERR("UST app release event obj failed with ret %d: pid = %d, sock = %d",
28ab034a
JG
365 ret,
366 app->pid,
367 app->sock);
be355079 368 }
ffe60014 369 }
edb67388
DG
370 free(ua_event->obj);
371 }
d80a6244
DG
372 free(ua_event);
373}
374
993578ff
JR
375/*
376 * Delayed reclaim of a ust_app_event_notifier_rule object. This MUST be called
377 * through a call_rcu().
378 */
28ab034a 379static void free_ust_app_event_notifier_rule_rcu(struct rcu_head *head)
993578ff 380{
28ab034a
JG
381 struct ust_app_event_notifier_rule *obj =
382 lttng::utils::container_of(head, &ust_app_event_notifier_rule::rcu_head);
993578ff
JR
383
384 free(obj);
385}
386
387/*
388 * Delete ust app event notifier rule safely.
389 */
28ab034a
JG
390static void delete_ust_app_event_notifier_rule(
391 int sock, struct ust_app_event_notifier_rule *ua_event_notifier_rule, struct ust_app *app)
993578ff
JR
392{
393 int ret;
394
a0377dfe 395 LTTNG_ASSERT(ua_event_notifier_rule);
993578ff 396
cd9adb8b 397 if (ua_event_notifier_rule->exclusion != nullptr) {
993578ff
JR
398 free(ua_event_notifier_rule->exclusion);
399 }
400
cd9adb8b 401 if (ua_event_notifier_rule->obj != nullptr) {
993578ff 402 pthread_mutex_lock(&app->sock_lock);
b623cb6a 403 ret = lttng_ust_ctl_release_object(sock, ua_event_notifier_rule->obj);
993578ff 404 pthread_mutex_unlock(&app->sock_lock);
be355079
JR
405 if (ret < 0) {
406 if (ret == -EPIPE || ret == -LTTNG_UST_ERR_EXITING) {
407 DBG3("UST app release event notifier failed. Application is dead: pid = %d, sock = %d",
28ab034a
JG
408 app->pid,
409 app->sock);
be355079
JR
410 } else if (ret == -EAGAIN) {
411 WARN("UST app release event notifier failed. Communication time out: pid = %d, sock = %d",
28ab034a
JG
412 app->pid,
413 app->sock);
be355079
JR
414 } else {
415 ERR("UST app release event notifier failed with ret %d: pid = %d, sock = %d",
28ab034a
JG
416 ret,
417 app->pid,
418 app->sock);
be355079 419 }
993578ff
JR
420 }
421
422 free(ua_event_notifier_rule->obj);
423 }
424
267d66aa 425 lttng_trigger_put(ua_event_notifier_rule->trigger);
28ab034a 426 call_rcu(&ua_event_notifier_rule->rcu_head, free_ust_app_event_notifier_rule_rcu);
993578ff
JR
427}
428
d80a6244 429/*
7972aab2
DG
430 * Release ust data object of the given stream.
431 *
432 * Return 0 on success or else a negative value.
d80a6244 433 */
28ab034a 434static int release_ust_app_stream(int sock, struct ust_app_stream *stream, struct ust_app *app)
d80a6244 435{
7972aab2 436 int ret = 0;
ffe60014 437
a0377dfe 438 LTTNG_ASSERT(stream);
ffe60014 439
8b366481 440 if (stream->obj) {
fb45065e 441 pthread_mutex_lock(&app->sock_lock);
b623cb6a 442 ret = lttng_ust_ctl_release_object(sock, stream->obj);
fb45065e 443 pthread_mutex_unlock(&app->sock_lock);
be355079
JR
444 if (ret < 0) {
445 if (ret == -EPIPE || ret == -LTTNG_UST_ERR_EXITING) {
446 DBG3("UST app release stream failed. Application is dead: pid = %d, sock = %d",
28ab034a
JG
447 app->pid,
448 app->sock);
be355079
JR
449 } else if (ret == -EAGAIN) {
450 WARN("UST app release stream failed. Communication time out: pid = %d, sock = %d",
28ab034a
JG
451 app->pid,
452 app->sock);
be355079
JR
453 } else {
454 ERR("UST app release stream obj failed with ret %d: pid = %d, sock = %d",
28ab034a
JG
455 ret,
456 app->pid,
457 app->sock);
be355079 458 }
ffe60014 459 }
4063050c 460 lttng_fd_put(LTTNG_FD_APPS, 2);
8b366481
DG
461 free(stream->obj);
462 }
7972aab2
DG
463
464 return ret;
465}
466
467/*
468 * Delete ust app stream safely. RCU read lock must be held before calling
469 * this function.
470 */
28ab034a 471static void delete_ust_app_stream(int sock, struct ust_app_stream *stream, struct ust_app *app)
7972aab2 472{
a0377dfe 473 LTTNG_ASSERT(stream);
48b7cdc2 474 ASSERT_RCU_READ_LOCKED();
7972aab2 475
fb45065e 476 (void) release_ust_app_stream(sock, stream, app);
84cd17c6 477 free(stream);
d80a6244
DG
478}
479
28ab034a 480static void delete_ust_app_channel_rcu(struct rcu_head *head)
36b588ed
MD
481{
482 struct ust_app_channel *ua_chan =
0114db0e 483 lttng::utils::container_of(head, &ust_app_channel::rcu_head);
36b588ed 484
3c339053
FD
485 lttng_ht_destroy(ua_chan->ctx);
486 lttng_ht_destroy(ua_chan->events);
36b588ed
MD
487 free(ua_chan);
488}
489
fb83fe64
JD
490/*
491 * Extract the lost packet or discarded events counter when the channel is
492 * being deleted and store the value in the parent channel so we can
493 * access it from lttng list and at stop/destroy.
82cac6d2
JG
494 *
495 * The session list lock must be held by the caller.
fb83fe64 496 */
28ab034a 497static void save_per_pid_lost_discarded_counters(struct ust_app_channel *ua_chan)
fb83fe64
JD
498{
499 uint64_t discarded = 0, lost = 0;
fb83fe64
JD
500 struct ltt_ust_channel *uchan;
501
fc4b93fa 502 if (ua_chan->attr.type != LTTNG_UST_ABI_CHAN_PER_CPU) {
fb83fe64
JD
503 return;
504 }
505
56047f5a 506 lttng::urcu::read_lock_guard read_lock;
d9a970b7 507
d9a970b7 508 try {
a0a4f314
JG
509 const auto session = ltt_session::find_session(ua_chan->session->tracing_id);
510
511 if (!session->ust_session) {
512 /*
513 * Not finding the session is not an error because there are
514 * multiple ways the channels can be torn down.
515 *
516 * 1) The session daemon can initiate the destruction of the
517 * ust app session after receiving a destroy command or
518 * during its shutdown/teardown.
519 * 2) The application, since we are in per-pid tracing, is
520 * unregistering and tearing down its ust app session.
521 *
522 * Both paths are protected by the session list lock which
523 * ensures that the accounting of lost packets and discarded
524 * events is done exactly once. The session is then unpublished
525 * from the session list, resulting in this condition.
526 */
527 return;
528 }
529
530 if (ua_chan->attr.overwrite) {
531 consumer_get_lost_packets(ua_chan->session->tracing_id,
532 ua_chan->key,
533 session->ust_session->consumer,
534 &lost);
535 } else {
536 consumer_get_discarded_events(ua_chan->session->tracing_id,
537 ua_chan->key,
538 session->ust_session->consumer,
539 &discarded);
540 }
541 uchan = trace_ust_find_channel_by_name(session->ust_session->domain_global.channels,
542 ua_chan->name);
543 if (!uchan) {
544 ERR("Missing UST channel to store discarded counters");
545 return;
546 }
d9a970b7
JG
547 } catch (const lttng::sessiond::exceptions::session_not_found_error& ex) {
548 DBG_FMT("Failed to save per-pid lost/discarded counters: {}, location='{}'",
549 ex.what(),
550 ex.source_location);
d9a970b7 551 return;
fb83fe64
JD
552 }
553
554 uchan->per_pid_closed_app_discarded += discarded;
555 uchan->per_pid_closed_app_lost += lost;
fb83fe64
JD
556}
557
d80a6244
DG
558/*
559 * Delete ust app channel safely. RCU read lock must be held before calling
560 * this function.
82cac6d2
JG
561 *
562 * The session list lock must be held by the caller.
d80a6244 563 */
d7bfb9b0 564static void delete_ust_app_channel(int sock,
28ab034a
JG
565 struct ust_app_channel *ua_chan,
566 struct ust_app *app,
77682be9 567 const lsu::registry_session::locked_ref& locked_registry)
d80a6244
DG
568{
569 int ret;
bec39940 570 struct lttng_ht_iter iter;
d80a6244 571 struct ust_app_event *ua_event;
55cc08a6 572 struct ust_app_ctx *ua_ctx;
030a66fa 573 struct ust_app_stream *stream, *stmp;
d80a6244 574
a0377dfe 575 LTTNG_ASSERT(ua_chan);
48b7cdc2 576 ASSERT_RCU_READ_LOCKED();
ffe60014
DG
577
578 DBG3("UST app deleting channel %s", ua_chan->name);
579
55cc08a6 580 /* Wipe stream */
28ab034a 581 cds_list_for_each_entry_safe (stream, stmp, &ua_chan->streams.head, list) {
84cd17c6 582 cds_list_del(&stream->list);
fb45065e 583 delete_ust_app_stream(sock, stream, app);
d80a6244
DG
584 }
585
55cc08a6 586 /* Wipe context */
28ab034a 587 cds_lfht_for_each_entry (ua_chan->ctx->ht, &iter.iter, ua_ctx, node.node) {
31746f93 588 cds_list_del(&ua_ctx->list);
bec39940 589 ret = lttng_ht_del(ua_chan->ctx, &iter);
a0377dfe 590 LTTNG_ASSERT(!ret);
fb45065e 591 delete_ust_app_ctx(sock, ua_ctx, app);
55cc08a6 592 }
d80a6244 593
55cc08a6 594 /* Wipe events */
28ab034a 595 cds_lfht_for_each_entry (ua_chan->events->ht, &iter.iter, ua_event, node.node) {
bec39940 596 ret = lttng_ht_del(ua_chan->events, &iter);
a0377dfe 597 LTTNG_ASSERT(!ret);
fb45065e 598 delete_ust_app_event(sock, ua_event, app);
d80a6244 599 }
edb67388 600
c8335706
MD
601 if (ua_chan->session->buffer_type == LTTNG_BUFFER_PER_PID) {
602 /* Wipe and free registry from session registry. */
d7bfb9b0
JG
603 if (locked_registry) {
604 try {
605 locked_registry->remove_channel(ua_chan->key, sock >= 0);
28ab034a 606 } catch (const std::exception& ex) {
d7bfb9b0
JG
607 DBG("Could not find channel for removal: %s", ex.what());
608 }
e38d96f9 609 }
d7bfb9b0 610
45798a31
JG
611 /*
612 * A negative socket can be used by the caller when
613 * cleaning-up a ua_chan in an error path. Skip the
614 * accounting in this case.
615 */
e38d96f9
MD
616 if (sock >= 0) {
617 save_per_pid_lost_discarded_counters(ua_chan);
c8335706 618 }
7972aab2 619 }
d0b96690 620
cd9adb8b 621 if (ua_chan->obj != nullptr) {
d0b96690
DG
622 /* Remove channel from application UST object descriptor. */
623 iter.iter.node = &ua_chan->ust_objd_node.node;
c6e62271 624 ret = lttng_ht_del(app->ust_objd, &iter);
a0377dfe 625 LTTNG_ASSERT(!ret);
fb45065e 626 pthread_mutex_lock(&app->sock_lock);
b623cb6a 627 ret = lttng_ust_ctl_release_object(sock, ua_chan->obj);
fb45065e 628 pthread_mutex_unlock(&app->sock_lock);
be355079
JR
629 if (ret < 0) {
630 if (ret == -EPIPE || ret == -LTTNG_UST_ERR_EXITING) {
631 DBG3("UST app channel %s release failed. Application is dead: pid = %d, sock = %d",
28ab034a
JG
632 ua_chan->name,
633 app->pid,
634 app->sock);
be355079
JR
635 } else if (ret == -EAGAIN) {
636 WARN("UST app channel %s release failed. Communication time out: pid = %d, sock = %d",
28ab034a
JG
637 ua_chan->name,
638 app->pid,
639 app->sock);
be355079
JR
640 } else {
641 ERR("UST app channel %s release failed with ret %d: pid = %d, sock = %d",
28ab034a
JG
642 ua_chan->name,
643 ret,
644 app->pid,
645 app->sock);
be355079 646 }
ffe60014 647 }
7972aab2 648 lttng_fd_put(LTTNG_FD_APPS, 1);
edb67388
DG
649 free(ua_chan->obj);
650 }
36b588ed 651 call_rcu(&ua_chan->rcu_head, delete_ust_app_channel_rcu);
d80a6244
DG
652}
653
fb45065e
MD
654int ust_app_register_done(struct ust_app *app)
655{
656 int ret;
657
658 pthread_mutex_lock(&app->sock_lock);
b623cb6a 659 ret = lttng_ust_ctl_register_done(app->sock);
fb45065e
MD
660 pthread_mutex_unlock(&app->sock_lock);
661 return ret;
662}
663
fc4b93fa 664int ust_app_release_object(struct ust_app *app, struct lttng_ust_abi_object_data *data)
fb45065e
MD
665{
666 int ret, sock;
667
668 if (app) {
669 pthread_mutex_lock(&app->sock_lock);
670 sock = app->sock;
671 } else {
672 sock = -1;
673 }
b623cb6a 674 ret = lttng_ust_ctl_release_object(sock, data);
fb45065e
MD
675 if (app) {
676 pthread_mutex_unlock(&app->sock_lock);
677 }
678 return ret;
679}
680
331744e3 681/*
1b532a60
DG
682 * Push metadata to consumer socket.
683 *
0f1b1d25 684 * RCU read-side lock must be held to guarantee existence of socket.
dc2bbdae
MD
685 * Must be called with the ust app session lock held.
686 * Must be called with the registry lock held.
331744e3
JD
687 *
688 * On success, return the len of metadata pushed or else a negative value.
2c57e06d
MD
689 * Returning a -EPIPE return value means we could not send the metadata,
690 * but it can be caused by recoverable errors (e.g. the application has
691 * terminated concurrently).
331744e3 692 */
77682be9 693ssize_t ust_app_push_metadata(const lsu::registry_session::locked_ref& locked_registry,
28ab034a
JG
694 struct consumer_socket *socket,
695 int send_zero_data)
331744e3
JD
696{
697 int ret;
cd9adb8b 698 char *metadata_str = nullptr;
c585821b 699 size_t len, offset, new_metadata_len_sent;
331744e3 700 ssize_t ret_val;
93ec662e 701 uint64_t metadata_key, metadata_version;
331744e3 702
d7bfb9b0 703 LTTNG_ASSERT(locked_registry);
a0377dfe 704 LTTNG_ASSERT(socket);
48b7cdc2 705 ASSERT_RCU_READ_LOCKED();
1b532a60 706
d7bfb9b0 707 metadata_key = locked_registry->_metadata_key;
c585821b 708
ce34fcd0 709 /*
dc2bbdae
MD
710 * Means that no metadata was assigned to the session. This can
711 * happens if no start has been done previously.
ce34fcd0 712 */
c585821b 713 if (!metadata_key) {
ce34fcd0
MD
714 return 0;
715 }
716
d7bfb9b0
JG
717 offset = locked_registry->_metadata_len_sent;
718 len = locked_registry->_metadata_len - locked_registry->_metadata_len_sent;
719 new_metadata_len_sent = locked_registry->_metadata_len;
720 metadata_version = locked_registry->_metadata_version;
331744e3
JD
721 if (len == 0) {
722 DBG3("No metadata to push for metadata key %" PRIu64,
28ab034a 723 locked_registry->_metadata_key);
331744e3
JD
724 ret_val = len;
725 if (send_zero_data) {
726 DBG("No metadata to push");
727 goto push_data;
728 }
729 goto end;
730 }
731
732 /* Allocate only what we have to send. */
64803277 733 metadata_str = calloc<char>(len);
331744e3
JD
734 if (!metadata_str) {
735 PERROR("zmalloc ust app metadata string");
736 ret_val = -ENOMEM;
737 goto error;
738 }
c585821b 739 /* Copy what we haven't sent out. */
d7bfb9b0 740 memcpy(metadata_str, locked_registry->_metadata + offset, len);
331744e3
JD
741
742push_data:
d7bfb9b0 743 pthread_mutex_unlock(&locked_registry->_lock);
c585821b
MD
744 /*
745 * We need to unlock the registry while we push metadata to
746 * break a circular dependency between the consumerd metadata
747 * lock and the sessiond registry lock. Indeed, pushing metadata
748 * to the consumerd awaits that it gets pushed all the way to
749 * relayd, but doing so requires grabbing the metadata lock. If
750 * a concurrent metadata request is being performed by
751 * consumerd, this can try to grab the registry lock on the
752 * sessiond while holding the metadata lock on the consumer
753 * daemon. Those push and pull schemes are performed on two
754 * different bidirectionnal communication sockets.
755 */
28ab034a
JG
756 ret = consumer_push_metadata(
757 socket, metadata_key, metadata_str, len, offset, metadata_version);
d7bfb9b0 758 pthread_mutex_lock(&locked_registry->_lock);
331744e3 759 if (ret < 0) {
000baf6a 760 /*
dc2bbdae
MD
761 * There is an acceptable race here between the registry
762 * metadata key assignment and the creation on the
763 * consumer. The session daemon can concurrently push
764 * metadata for this registry while being created on the
765 * consumer since the metadata key of the registry is
766 * assigned *before* it is setup to avoid the consumer
767 * to ask for metadata that could possibly be not found
768 * in the session daemon.
000baf6a 769 *
dc2bbdae
MD
770 * The metadata will get pushed either by the session
771 * being stopped or the consumer requesting metadata if
772 * that race is triggered.
000baf6a
DG
773 */
774 if (ret == -LTTCOMM_CONSUMERD_CHANNEL_FAIL) {
775 ret = 0;
c585821b
MD
776 } else {
777 ERR("Error pushing metadata to consumer");
000baf6a 778 }
331744e3
JD
779 ret_val = ret;
780 goto error_push;
c585821b
MD
781 } else {
782 /*
783 * Metadata may have been concurrently pushed, since
784 * we're not holding the registry lock while pushing to
785 * consumer. This is handled by the fact that we send
786 * the metadata content, size, and the offset at which
787 * that metadata belongs. This may arrive out of order
788 * on the consumer side, and the consumer is able to
789 * deal with overlapping fragments. The consumer
790 * supports overlapping fragments, which must be
791 * contiguous starting from offset 0. We keep the
792 * largest metadata_len_sent value of the concurrent
793 * send.
794 */
d7bfb9b0 795 locked_registry->_metadata_len_sent =
28ab034a 796 std::max(locked_registry->_metadata_len_sent, new_metadata_len_sent);
331744e3 797 }
331744e3
JD
798 free(metadata_str);
799 return len;
800
801end:
802error:
ce34fcd0
MD
803 if (ret_val) {
804 /*
dc2bbdae
MD
805 * On error, flag the registry that the metadata is
806 * closed. We were unable to push anything and this
807 * means that either the consumer is not responding or
808 * the metadata cache has been destroyed on the
809 * consumer.
ce34fcd0 810 */
d7bfb9b0 811 locked_registry->_metadata_closed = true;
ce34fcd0 812 }
331744e3
JD
813error_push:
814 free(metadata_str);
815 return ret_val;
816}
817
d88aee68 818/*
ce34fcd0 819 * For a given application and session, push metadata to consumer.
331744e3
JD
820 * Either sock or consumer is required : if sock is NULL, the default
821 * socket to send the metadata is retrieved from consumer, if sock
822 * is not NULL we use it to send the metadata.
ce34fcd0 823 * RCU read-side lock must be held while calling this function,
0f1b1d25 824 * therefore ensuring existence of registry. It also ensures existence
dc2bbdae 825 * of socket throughout this function.
d88aee68
DG
826 *
827 * Return 0 on success else a negative error.
2c57e06d
MD
828 * Returning a -EPIPE return value means we could not send the metadata,
829 * but it can be caused by recoverable errors (e.g. the application has
830 * terminated concurrently).
d88aee68 831 */
77682be9 832static int push_metadata(const lsu::registry_session::locked_ref& locked_registry,
28ab034a 833 struct consumer_output *consumer)
d88aee68 834{
331744e3
JD
835 int ret_val;
836 ssize_t ret;
d88aee68
DG
837 struct consumer_socket *socket;
838
d7bfb9b0 839 LTTNG_ASSERT(locked_registry);
a0377dfe 840 LTTNG_ASSERT(consumer);
48b7cdc2 841 ASSERT_RCU_READ_LOCKED();
7972aab2 842
d7bfb9b0 843 if (locked_registry->_metadata_closed) {
dc2bbdae
MD
844 ret_val = -EPIPE;
845 goto error;
d88aee68
DG
846 }
847
d88aee68 848 /* Get consumer socket to use to push the metadata.*/
28ab034a 849 socket = consumer_find_socket_by_bitness(locked_registry->abi.bits_per_long, consumer);
d88aee68 850 if (!socket) {
331744e3 851 ret_val = -1;
ce34fcd0 852 goto error;
d88aee68
DG
853 }
854
d7bfb9b0 855 ret = ust_app_push_metadata(locked_registry, socket, 0);
d88aee68 856 if (ret < 0) {
331744e3 857 ret_val = ret;
ce34fcd0 858 goto error;
d88aee68 859 }
d88aee68
DG
860 return 0;
861
ce34fcd0 862error:
331744e3 863 return ret_val;
d88aee68
DG
864}
865
866/*
867 * Send to the consumer a close metadata command for the given session. Once
868 * done, the metadata channel is deleted and the session metadata pointer is
dc2bbdae 869 * nullified. The session lock MUST be held unless the application is
d88aee68
DG
870 * in the destroy path.
871 *
a70ac2f4
MD
872 * Do not hold the registry lock while communicating with the consumerd, because
873 * doing so causes inter-process deadlocks between consumerd and sessiond with
874 * the metadata request notification.
875 *
d88aee68
DG
876 * Return 0 on success else a negative value.
877 */
28ab034a
JG
878static int close_metadata(uint64_t metadata_key,
879 unsigned int consumer_bitness,
880 struct consumer_output *consumer)
d88aee68
DG
881{
882 int ret;
883 struct consumer_socket *socket;
d7bfb9b0 884 lttng::urcu::read_lock_guard read_lock_guard;
d88aee68 885
a0377dfe 886 LTTNG_ASSERT(consumer);
d88aee68 887
d7bfb9b0 888 /* Get consumer socket to use to push the metadata. */
28ab034a 889 socket = consumer_find_socket_by_bitness(consumer_bitness, consumer);
d88aee68
DG
890 if (!socket) {
891 ret = -1;
a70ac2f4 892 goto end;
d88aee68
DG
893 }
894
a70ac2f4 895 ret = consumer_close_metadata(socket, metadata_key);
d88aee68 896 if (ret < 0) {
a70ac2f4 897 goto end;
d88aee68
DG
898 }
899
1b532a60 900end:
d88aee68
DG
901 return ret;
902}
903
28ab034a 904static void delete_ust_app_session_rcu(struct rcu_head *head)
36b588ed
MD
905{
906 struct ust_app_session *ua_sess =
0114db0e 907 lttng::utils::container_of(head, &ust_app_session::rcu_head);
36b588ed 908
3c339053 909 lttng_ht_destroy(ua_sess->channels);
36b588ed
MD
910 free(ua_sess);
911}
912
d80a6244
DG
913/*
914 * Delete ust app session safely. RCU read lock must be held before calling
915 * this function.
82cac6d2
JG
916 *
917 * The session list lock must be held by the caller.
d80a6244 918 */
28ab034a 919static void delete_ust_app_session(int sock, struct ust_app_session *ua_sess, struct ust_app *app)
d80a6244
DG
920{
921 int ret;
bec39940 922 struct lttng_ht_iter iter;
d80a6244
DG
923 struct ust_app_channel *ua_chan;
924
a0377dfe 925 LTTNG_ASSERT(ua_sess);
48b7cdc2 926 ASSERT_RCU_READ_LOCKED();
d88aee68 927
1b532a60
DG
928 pthread_mutex_lock(&ua_sess->lock);
929
a0377dfe 930 LTTNG_ASSERT(!ua_sess->deleted);
b161602a
MD
931 ua_sess->deleted = true;
932
d7bfb9b0 933 auto locked_registry = get_locked_session_registry(ua_sess);
fad1ed2f 934 /* Registry can be null on error path during initialization. */
d7bfb9b0 935 if (locked_registry) {
d88aee68 936 /* Push metadata for application before freeing the application. */
d7bfb9b0
JG
937 (void) push_metadata(locked_registry, ua_sess->consumer);
938 }
d88aee68 939
28ab034a 940 cds_lfht_for_each_entry (ua_sess->channels->ht, &iter.iter, ua_chan, node.node) {
d7bfb9b0
JG
941 ret = lttng_ht_del(ua_sess->channels, &iter);
942 LTTNG_ASSERT(!ret);
943 delete_ust_app_channel(sock, ua_chan, app, locked_registry);
944 }
945
946 if (locked_registry) {
7972aab2
DG
947 /*
948 * Don't ask to close metadata for global per UID buffers. Close
1b532a60
DG
949 * metadata only on destroy trace session in this case. Also, the
950 * previous push metadata could have flag the metadata registry to
951 * close so don't send a close command if closed.
7972aab2 952 */
ce34fcd0 953 if (ua_sess->buffer_type != LTTNG_BUFFER_PER_UID) {
d7bfb9b0
JG
954 const auto metadata_key = locked_registry->_metadata_key;
955 const auto consumer_bitness = locked_registry->abi.bits_per_long;
d80a6244 956
d7bfb9b0
JG
957 if (!locked_registry->_metadata_closed && metadata_key != 0) {
958 locked_registry->_metadata_closed = true;
959 }
960
961 /* Release lock before communication, see comments in close_metadata(). */
962 locked_registry.reset();
963 (void) close_metadata(metadata_key, consumer_bitness, ua_sess->consumer);
964 }
d80a6244 965 }
d80a6244 966
7972aab2
DG
967 /* In case of per PID, the registry is kept in the session. */
968 if (ua_sess->buffer_type == LTTNG_BUFFER_PER_PID) {
969 struct buffer_reg_pid *reg_pid = buffer_reg_pid_find(ua_sess->id);
970 if (reg_pid) {
fad1ed2f
JR
971 /*
972 * Registry can be null on error path during
973 * initialization.
974 */
7972aab2
DG
975 buffer_reg_pid_remove(reg_pid);
976 buffer_reg_pid_destroy(reg_pid);
977 }
978 }
d0b96690 979
aee6bafd 980 if (ua_sess->handle != -1) {
fb45065e 981 pthread_mutex_lock(&app->sock_lock);
b623cb6a 982 ret = lttng_ust_ctl_release_handle(sock, ua_sess->handle);
fb45065e 983 pthread_mutex_unlock(&app->sock_lock);
be355079
JR
984 if (ret < 0) {
985 if (ret == -EPIPE || ret == -LTTNG_UST_ERR_EXITING) {
986 DBG3("UST app release session handle failed. Application is dead: pid = %d, sock = %d",
28ab034a
JG
987 app->pid,
988 app->sock);
be355079
JR
989 } else if (ret == -EAGAIN) {
990 WARN("UST app release session handle failed. Communication time out: pid = %d, sock = %d",
28ab034a
JG
991 app->pid,
992 app->sock);
be355079
JR
993 } else {
994 ERR("UST app release session handle failed with ret %d: pid = %d, sock = %d",
28ab034a
JG
995 ret,
996 app->pid,
997 app->sock);
be355079 998 }
ffe60014 999 }
be355079 1000
10b56aef
MD
1001 /* Remove session from application UST object descriptor. */
1002 iter.iter.node = &ua_sess->ust_objd_node.node;
1003 ret = lttng_ht_del(app->ust_sessions_objd, &iter);
a0377dfe 1004 LTTNG_ASSERT(!ret);
aee6bafd 1005 }
10b56aef 1006
1b532a60
DG
1007 pthread_mutex_unlock(&ua_sess->lock);
1008
6addfa37
MD
1009 consumer_output_put(ua_sess->consumer);
1010
36b588ed 1011 call_rcu(&ua_sess->rcu_head, delete_ust_app_session_rcu);
d80a6244 1012}
91d76f53
DG
1013
1014/*
284d8f55
DG
1015 * Delete a traceable application structure from the global list. Never call
1016 * this function outside of a call_rcu call.
91d76f53 1017 */
28ab034a 1018static void delete_ust_app(struct ust_app *app)
91d76f53 1019{
8b366481 1020 int ret, sock;
d42f20df 1021 struct ust_app_session *ua_sess, *tmp_ua_sess;
993578ff
JR
1022 struct lttng_ht_iter iter;
1023 struct ust_app_event_notifier_rule *event_notifier_rule;
5e2abfaf 1024 bool event_notifier_write_fd_is_open;
44d3bd01 1025
82cac6d2
JG
1026 /*
1027 * The session list lock must be held during this function to guarantee
1028 * the existence of ua_sess.
1029 */
d9a970b7 1030 const auto list_lock = lttng::sessiond::lock_session_list();
d80a6244 1031 /* Delete ust app sessions info */
852d0037
DG
1032 sock = app->sock;
1033 app->sock = -1;
d80a6244 1034
8b366481 1035 /* Wipe sessions */
28ab034a 1036 cds_list_for_each_entry_safe (ua_sess, tmp_ua_sess, &app->teardown_head, teardown_node) {
d42f20df 1037 /* Free every object in the session and the session. */
56047f5a 1038 lttng::urcu::read_lock_guard read_lock;
d0b96690 1039 delete_ust_app_session(sock, ua_sess, app);
d80a6244 1040 }
36b588ed 1041
993578ff 1042 /* Remove the event notifier rules associated with this app. */
56047f5a
JG
1043 {
1044 lttng::urcu::read_lock_guard read_lock;
993578ff 1045
56047f5a
JG
1046 cds_lfht_for_each_entry (app->token_to_event_notifier_rule_ht->ht,
1047 &iter.iter,
1048 event_notifier_rule,
1049 node.node) {
1050 ret = lttng_ht_del(app->token_to_event_notifier_rule_ht, &iter);
1051 LTTNG_ASSERT(!ret);
993578ff 1052
56047f5a
JG
1053 delete_ust_app_event_notifier_rule(app->sock, event_notifier_rule, app);
1054 }
1055 }
993578ff 1056
3c339053
FD
1057 lttng_ht_destroy(app->sessions);
1058 lttng_ht_destroy(app->ust_sessions_objd);
1059 lttng_ht_destroy(app->ust_objd);
1060 lttng_ht_destroy(app->token_to_event_notifier_rule_ht);
d80a6244 1061
da873412
JR
1062 /*
1063 * This could be NULL if the event notifier setup failed (e.g the app
1064 * was killed or the tracer does not support this feature).
1065 */
1066 if (app->event_notifier_group.object) {
1067 enum lttng_error_code ret_code;
533a90fb
FD
1068 enum event_notifier_error_accounting_status status;
1069
28ab034a
JG
1070 const int event_notifier_read_fd =
1071 lttng_pipe_get_readfd(app->event_notifier_group.event_pipe);
da873412
JR
1072
1073 ret_code = notification_thread_command_remove_tracer_event_source(
28ab034a 1074 the_notification_thread_handle, event_notifier_read_fd);
da873412
JR
1075 if (ret_code != LTTNG_OK) {
1076 ERR("Failed to remove application tracer event source from notification thread");
1077 }
1078
533a90fb
FD
1079 status = event_notifier_error_accounting_unregister_app(app);
1080 if (status != EVENT_NOTIFIER_ERROR_ACCOUNTING_STATUS_OK) {
1081 ERR("Error unregistering app from event notifier error accounting");
1082 }
1083
b623cb6a 1084 lttng_ust_ctl_release_object(sock, app->event_notifier_group.object);
da873412
JR
1085 free(app->event_notifier_group.object);
1086 }
1087
28ab034a
JG
1088 event_notifier_write_fd_is_open =
1089 lttng_pipe_is_write_open(app->event_notifier_group.event_pipe);
da873412 1090 lttng_pipe_destroy(app->event_notifier_group.event_pipe);
5e2abfaf
JG
1091 /*
1092 * Release the file descriptors reserved for the event notifier pipe.
1093 * The app could be destroyed before the write end of the pipe could be
1094 * passed to the application (and closed). In that case, both file
1095 * descriptors must be released.
1096 */
1097 lttng_fd_put(LTTNG_FD_APPS, event_notifier_write_fd_is_open ? 2 : 1);
da873412 1098
6414a713 1099 /*
852d0037
DG
1100 * Wait until we have deleted the application from the sock hash table
1101 * before closing this socket, otherwise an application could re-use the
1102 * socket ID and race with the teardown, using the same hash table entry.
1103 *
1104 * It's OK to leave the close in call_rcu. We want it to stay unique for
1105 * all RCU readers that could run concurrently with unregister app,
1106 * therefore we _need_ to only close that socket after a grace period. So
1107 * it should stay in this RCU callback.
1108 *
1109 * This close() is a very important step of the synchronization model so
1110 * every modification to this function must be carefully reviewed.
6414a713 1111 */
799e2c4f
MD
1112 ret = close(sock);
1113 if (ret) {
1114 PERROR("close");
1115 }
4063050c 1116 lttng_fd_put(LTTNG_FD_APPS, 1);
d80a6244 1117
852d0037 1118 DBG2("UST app pid %d deleted", app->pid);
284d8f55 1119 free(app);
099e26bd
DG
1120}
1121
1122/*
f6a9efaa 1123 * URCU intermediate call to delete an UST app.
099e26bd 1124 */
28ab034a 1125static void delete_ust_app_rcu(struct rcu_head *head)
099e26bd 1126{
bec39940 1127 struct lttng_ht_node_ulong *node =
0114db0e 1128 lttng::utils::container_of(head, &lttng_ht_node_ulong::head);
28ab034a 1129 struct ust_app *app = lttng::utils::container_of(node, &ust_app::pid_n);
f6a9efaa 1130
852d0037 1131 DBG3("Call RCU deleting app PID %d", app->pid);
f6a9efaa 1132 delete_ust_app(app);
099e26bd
DG
1133}
1134
ffe60014
DG
1135/*
1136 * Delete the session from the application ht and delete the data structure by
1137 * freeing every object inside and releasing them.
82cac6d2
JG
1138 *
1139 * The session list lock must be held by the caller.
ffe60014 1140 */
28ab034a 1141static void destroy_app_session(struct ust_app *app, struct ust_app_session *ua_sess)
ffe60014
DG
1142{
1143 int ret;
1144 struct lttng_ht_iter iter;
1145
a0377dfe
FD
1146 LTTNG_ASSERT(app);
1147 LTTNG_ASSERT(ua_sess);
ffe60014
DG
1148
1149 iter.iter.node = &ua_sess->node.node;
1150 ret = lttng_ht_del(app->sessions, &iter);
1151 if (ret) {
1152 /* Already scheduled for teardown. */
1153 goto end;
1154 }
1155
1156 /* Once deleted, free the data structure. */
d0b96690 1157 delete_ust_app_session(app->sock, ua_sess, app);
ffe60014
DG
1158
1159end:
1160 return;
1161}
1162
8b366481
DG
1163/*
1164 * Alloc new UST app session.
1165 */
cd9adb8b 1166static struct ust_app_session *alloc_ust_app_session()
8b366481
DG
1167{
1168 struct ust_app_session *ua_sess;
1169
1170 /* Init most of the default value by allocating and zeroing */
64803277 1171 ua_sess = zmalloc<ust_app_session>();
cd9adb8b 1172 if (ua_sess == nullptr) {
8b366481 1173 PERROR("malloc");
ffe60014 1174 goto error_free;
8b366481
DG
1175 }
1176
1177 ua_sess->handle = -1;
bec39940 1178 ua_sess->channels = lttng_ht_new(0, LTTNG_HT_TYPE_STRING);
fc4b93fa 1179 ua_sess->metadata_attr.type = LTTNG_UST_ABI_CHAN_METADATA;
cd9adb8b 1180 pthread_mutex_init(&ua_sess->lock, nullptr);
ad7a9107 1181
8b366481
DG
1182 return ua_sess;
1183
ffe60014 1184error_free:
cd9adb8b 1185 return nullptr;
8b366481
DG
1186}
1187
1188/*
1189 * Alloc new UST app channel.
1190 */
28ab034a
JG
1191static struct ust_app_channel *alloc_ust_app_channel(const char *name,
1192 struct ust_app_session *ua_sess,
1193 struct lttng_ust_abi_channel_attr *attr)
8b366481
DG
1194{
1195 struct ust_app_channel *ua_chan;
1196
1197 /* Init most of the default value by allocating and zeroing */
64803277 1198 ua_chan = zmalloc<ust_app_channel>();
cd9adb8b 1199 if (ua_chan == nullptr) {
8b366481
DG
1200 PERROR("malloc");
1201 goto error;
1202 }
1203
1204 /* Setup channel name */
1205 strncpy(ua_chan->name, name, sizeof(ua_chan->name));
1206 ua_chan->name[sizeof(ua_chan->name) - 1] = '\0';
1207
66cefebd 1208 ua_chan->enabled = true;
8b366481 1209 ua_chan->handle = -1;
45893984 1210 ua_chan->session = ua_sess;
ffe60014 1211 ua_chan->key = get_next_channel_key();
bec39940
DG
1212 ua_chan->ctx = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
1213 ua_chan->events = lttng_ht_new(0, LTTNG_HT_TYPE_STRING);
1214 lttng_ht_node_init_str(&ua_chan->node, ua_chan->name);
8b366481
DG
1215
1216 CDS_INIT_LIST_HEAD(&ua_chan->streams.head);
31746f93 1217 CDS_INIT_LIST_HEAD(&ua_chan->ctx_list);
8b366481
DG
1218
1219 /* Copy attributes */
1220 if (attr) {
b623cb6a 1221 /* Translate from lttng_ust_channel to lttng_ust_ctl_consumer_channel_attr. */
2fe6e7f5
DG
1222 ua_chan->attr.subbuf_size = attr->subbuf_size;
1223 ua_chan->attr.num_subbuf = attr->num_subbuf;
1224 ua_chan->attr.overwrite = attr->overwrite;
1225 ua_chan->attr.switch_timer_interval = attr->switch_timer_interval;
1226 ua_chan->attr.read_timer_interval = attr->read_timer_interval;
7966af57 1227 ua_chan->attr.output = (lttng_ust_abi_output) attr->output;
491d1539 1228 ua_chan->attr.blocking_timeout = attr->u.s.blocking_timeout;
8b366481 1229 }
ffe60014 1230 /* By default, the channel is a per cpu channel. */
fc4b93fa 1231 ua_chan->attr.type = LTTNG_UST_ABI_CHAN_PER_CPU;
8b366481
DG
1232
1233 DBG3("UST app channel %s allocated", ua_chan->name);
1234
1235 return ua_chan;
1236
1237error:
cd9adb8b 1238 return nullptr;
8b366481
DG
1239}
1240
37f1c236
DG
1241/*
1242 * Allocate and initialize a UST app stream.
1243 *
1244 * Return newly allocated stream pointer or NULL on error.
1245 */
cd9adb8b 1246struct ust_app_stream *ust_app_alloc_stream()
37f1c236 1247{
cd9adb8b 1248 struct ust_app_stream *stream = nullptr;
37f1c236 1249
64803277 1250 stream = zmalloc<ust_app_stream>();
cd9adb8b 1251 if (stream == nullptr) {
37f1c236
DG
1252 PERROR("zmalloc ust app stream");
1253 goto error;
1254 }
1255
1256 /* Zero could be a valid value for a handle so flag it to -1. */
1257 stream->handle = -1;
1258
1259error:
1260 return stream;
1261}
1262
8b366481
DG
1263/*
1264 * Alloc new UST app event.
1265 */
28ab034a 1266static struct ust_app_event *alloc_ust_app_event(char *name, struct lttng_ust_abi_event *attr)
8b366481
DG
1267{
1268 struct ust_app_event *ua_event;
1269
1270 /* Init most of the default value by allocating and zeroing */
64803277 1271 ua_event = zmalloc<ust_app_event>();
cd9adb8b 1272 if (ua_event == nullptr) {
20533947 1273 PERROR("Failed to allocate ust_app_event structure");
8b366481
DG
1274 goto error;
1275 }
1276
66cefebd 1277 ua_event->enabled = true;
8b366481
DG
1278 strncpy(ua_event->name, name, sizeof(ua_event->name));
1279 ua_event->name[sizeof(ua_event->name) - 1] = '\0';
bec39940 1280 lttng_ht_node_init_str(&ua_event->node, ua_event->name);
8b366481
DG
1281
1282 /* Copy attributes */
1283 if (attr) {
1284 memcpy(&ua_event->attr, attr, sizeof(ua_event->attr));
1285 }
1286
1287 DBG3("UST app event %s allocated", ua_event->name);
1288
1289 return ua_event;
1290
1291error:
cd9adb8b 1292 return nullptr;
8b366481
DG
1293}
1294
993578ff
JR
1295/*
1296 * Allocate a new UST app event notifier rule.
1297 */
28ab034a
JG
1298static struct ust_app_event_notifier_rule *
1299alloc_ust_app_event_notifier_rule(struct lttng_trigger *trigger)
993578ff 1300{
28ab034a 1301 enum lttng_event_rule_generate_exclusions_status generate_exclusion_status;
cc3b9644 1302 enum lttng_condition_status cond_status;
993578ff 1303 struct ust_app_event_notifier_rule *ua_event_notifier_rule;
cd9adb8b
JG
1304 struct lttng_condition *condition = nullptr;
1305 const struct lttng_event_rule *event_rule = nullptr;
993578ff 1306
64803277 1307 ua_event_notifier_rule = zmalloc<ust_app_event_notifier_rule>();
cd9adb8b 1308 if (ua_event_notifier_rule == nullptr) {
993578ff
JR
1309 PERROR("Failed to allocate ust_app_event_notifier_rule structure");
1310 goto error;
1311 }
1312
66cefebd 1313 ua_event_notifier_rule->enabled = true;
267d66aa 1314 ua_event_notifier_rule->token = lttng_trigger_get_tracer_token(trigger);
28ab034a 1315 lttng_ht_node_init_u64(&ua_event_notifier_rule->node, ua_event_notifier_rule->token);
993578ff 1316
267d66aa 1317 condition = lttng_trigger_get_condition(trigger);
a0377dfe
FD
1318 LTTNG_ASSERT(condition);
1319 LTTNG_ASSERT(lttng_condition_get_type(condition) ==
28ab034a 1320 LTTNG_CONDITION_TYPE_EVENT_RULE_MATCHES);
267d66aa 1321
28ab034a 1322 cond_status = lttng_condition_event_rule_matches_get_rule(condition, &event_rule);
a0377dfe
FD
1323 LTTNG_ASSERT(cond_status == LTTNG_CONDITION_STATUS_OK);
1324 LTTNG_ASSERT(event_rule);
993578ff 1325
46e9a5fb 1326 ua_event_notifier_rule->error_counter_index =
28ab034a 1327 lttng_condition_event_rule_matches_get_error_counter_index(condition);
267d66aa
JR
1328 /* Acquire the event notifier's reference to the trigger. */
1329 lttng_trigger_get(trigger);
1330
1331 ua_event_notifier_rule->trigger = trigger;
993578ff
JR
1332 ua_event_notifier_rule->filter = lttng_event_rule_get_filter_bytecode(event_rule);
1333 generate_exclusion_status = lttng_event_rule_generate_exclusions(
28ab034a 1334 event_rule, &ua_event_notifier_rule->exclusion);
993578ff
JR
1335 switch (generate_exclusion_status) {
1336 case LTTNG_EVENT_RULE_GENERATE_EXCLUSIONS_STATUS_OK:
1337 case LTTNG_EVENT_RULE_GENERATE_EXCLUSIONS_STATUS_NONE:
1338 break;
1339 default:
8f0646a0 1340 /* Error occurred. */
267d66aa
JR
1341 ERR("Failed to generate exclusions from trigger while allocating an event notifier rule");
1342 goto error_put_trigger;
993578ff
JR
1343 }
1344
1345 DBG3("UST app event notifier rule allocated: token = %" PRIu64,
28ab034a 1346 ua_event_notifier_rule->token);
993578ff
JR
1347
1348 return ua_event_notifier_rule;
1349
267d66aa
JR
1350error_put_trigger:
1351 lttng_trigger_put(trigger);
993578ff
JR
1352error:
1353 free(ua_event_notifier_rule);
cd9adb8b 1354 return nullptr;
993578ff
JR
1355}
1356
8b366481
DG
1357/*
1358 * Alloc new UST app context.
1359 */
28ab034a 1360static struct ust_app_ctx *alloc_ust_app_ctx(struct lttng_ust_context_attr *uctx)
8b366481
DG
1361{
1362 struct ust_app_ctx *ua_ctx;
1363
64803277 1364 ua_ctx = zmalloc<ust_app_ctx>();
cd9adb8b 1365 if (ua_ctx == nullptr) {
8b366481
DG
1366 goto error;
1367 }
1368
31746f93
DG
1369 CDS_INIT_LIST_HEAD(&ua_ctx->list);
1370
8b366481
DG
1371 if (uctx) {
1372 memcpy(&ua_ctx->ctx, uctx, sizeof(ua_ctx->ctx));
fc4b93fa 1373 if (uctx->ctx == LTTNG_UST_ABI_CONTEXT_APP_CONTEXT) {
cd9adb8b 1374 char *provider_name = nullptr, *ctx_name = nullptr;
bdf64013
JG
1375
1376 provider_name = strdup(uctx->u.app_ctx.provider_name);
1377 ctx_name = strdup(uctx->u.app_ctx.ctx_name);
1378 if (!provider_name || !ctx_name) {
1379 free(provider_name);
1380 free(ctx_name);
1381 goto error;
1382 }
1383
1384 ua_ctx->ctx.u.app_ctx.provider_name = provider_name;
1385 ua_ctx->ctx.u.app_ctx.ctx_name = ctx_name;
1386 }
8b366481
DG
1387 }
1388
1389 DBG3("UST app context %d allocated", ua_ctx->ctx.ctx);
8b366481 1390 return ua_ctx;
bdf64013
JG
1391error:
1392 free(ua_ctx);
cd9adb8b 1393 return nullptr;
8b366481
DG
1394}
1395
51755dc8
JG
1396/*
1397 * Create a liblttng-ust filter bytecode from given bytecode.
1398 *
1399 * Return allocated filter or NULL on error.
1400 */
28ab034a
JG
1401static struct lttng_ust_abi_filter_bytecode *
1402create_ust_filter_bytecode_from_bytecode(const struct lttng_bytecode *orig_f)
51755dc8 1403{
cd9adb8b 1404 struct lttng_ust_abi_filter_bytecode *filter = nullptr;
51755dc8 1405
f2eafd2d 1406 /* Copy filter bytecode. */
64803277 1407 filter = zmalloc<lttng_ust_abi_filter_bytecode>(sizeof(*filter) + orig_f->len);
51755dc8 1408 if (!filter) {
28ab034a
JG
1409 PERROR("Failed to allocate lttng_ust_filter_bytecode: bytecode len = %" PRIu32
1410 " bytes",
1411 orig_f->len);
51755dc8
JG
1412 goto error;
1413 }
1414
28ab034a 1415 LTTNG_ASSERT(sizeof(struct lttng_bytecode) == sizeof(struct lttng_ust_abi_filter_bytecode));
51755dc8
JG
1416 memcpy(filter, orig_f, sizeof(*filter) + orig_f->len);
1417error:
1418 return filter;
1419}
1420
f2eafd2d
JR
1421/*
1422 * Create a liblttng-ust capture bytecode from given bytecode.
1423 *
1424 * Return allocated filter or NULL on error.
1425 */
fc4b93fa 1426static struct lttng_ust_abi_capture_bytecode *
f2eafd2d
JR
1427create_ust_capture_bytecode_from_bytecode(const struct lttng_bytecode *orig_f)
1428{
cd9adb8b 1429 struct lttng_ust_abi_capture_bytecode *capture = nullptr;
f2eafd2d
JR
1430
1431 /* Copy capture bytecode. */
64803277 1432 capture = zmalloc<lttng_ust_abi_capture_bytecode>(sizeof(*capture) + orig_f->len);
f2eafd2d 1433 if (!capture) {
28ab034a
JG
1434 PERROR("Failed to allocate lttng_ust_abi_capture_bytecode: bytecode len = %" PRIu32
1435 " bytes",
1436 orig_f->len);
f2eafd2d
JR
1437 goto error;
1438 }
1439
a0377dfe 1440 LTTNG_ASSERT(sizeof(struct lttng_bytecode) ==
28ab034a 1441 sizeof(struct lttng_ust_abi_capture_bytecode));
f2eafd2d
JR
1442 memcpy(capture, orig_f, sizeof(*capture) + orig_f->len);
1443error:
1444 return capture;
1445}
1446
099e26bd 1447/*
421cb601
DG
1448 * Find an ust_app using the sock and return it. RCU read side lock must be
1449 * held before calling this helper function.
099e26bd 1450 */
f20baf8e 1451struct ust_app *ust_app_find_by_sock(int sock)
099e26bd 1452{
bec39940 1453 struct lttng_ht_node_ulong *node;
bec39940 1454 struct lttng_ht_iter iter;
f6a9efaa 1455
48b7cdc2
FD
1456 ASSERT_RCU_READ_LOCKED();
1457
28ab034a 1458 lttng_ht_lookup(ust_app_ht_by_sock, (void *) ((unsigned long) sock), &iter);
00d7d903 1459 node = lttng_ht_iter_get_node<lttng_ht_node_ulong>(&iter);
cd9adb8b 1460 if (node == nullptr) {
f6a9efaa 1461 DBG2("UST app find by sock %d not found", sock);
f6a9efaa
DG
1462 goto error;
1463 }
852d0037 1464
0114db0e 1465 return lttng::utils::container_of(node, &ust_app::sock_n);
f6a9efaa
DG
1466
1467error:
cd9adb8b 1468 return nullptr;
099e26bd
DG
1469}
1470
d0b96690
DG
1471/*
1472 * Find an ust_app using the notify sock and return it. RCU read side lock must
1473 * be held before calling this helper function.
1474 */
1475static struct ust_app *find_app_by_notify_sock(int sock)
1476{
1477 struct lttng_ht_node_ulong *node;
1478 struct lttng_ht_iter iter;
1479
48b7cdc2
FD
1480 ASSERT_RCU_READ_LOCKED();
1481
28ab034a 1482 lttng_ht_lookup(ust_app_ht_by_notify_sock, (void *) ((unsigned long) sock), &iter);
00d7d903 1483 node = lttng_ht_iter_get_node<lttng_ht_node_ulong>(&iter);
cd9adb8b 1484 if (node == nullptr) {
d0b96690
DG
1485 DBG2("UST app find by notify sock %d not found", sock);
1486 goto error;
1487 }
1488
0114db0e 1489 return lttng::utils::container_of(node, &ust_app::notify_sock_n);
d0b96690
DG
1490
1491error:
cd9adb8b 1492 return nullptr;
d0b96690
DG
1493}
1494
025faf73
DG
1495/*
1496 * Lookup for an ust app event based on event name, filter bytecode and the
1497 * event loglevel.
1498 *
1499 * Return an ust_app_event object or NULL on error.
1500 */
18eace3b 1501static struct ust_app_event *find_ust_app_event(struct lttng_ht *ht,
28ab034a
JG
1502 const char *name,
1503 const struct lttng_bytecode *filter,
dcd24bbf 1504 lttng_ust_abi_loglevel_type loglevel_type,
28ab034a
JG
1505 int loglevel_value,
1506 const struct lttng_event_exclusion *exclusion)
18eace3b
DG
1507{
1508 struct lttng_ht_iter iter;
1509 struct lttng_ht_node_str *node;
cd9adb8b 1510 struct ust_app_event *event = nullptr;
18eace3b 1511 struct ust_app_ht_key key;
18eace3b 1512
a0377dfe
FD
1513 LTTNG_ASSERT(name);
1514 LTTNG_ASSERT(ht);
18eace3b
DG
1515
1516 /* Setup key for event lookup. */
1517 key.name = name;
1518 key.filter = filter;
dcd24bbf
JG
1519 key.loglevel_type = loglevel_type;
1520 key.loglevel_value = loglevel_value;
39c5a3a7 1521 /* lttng_event_exclusion and lttng_ust_event_exclusion structures are similar */
51755dc8 1522 key.exclusion = exclusion;
18eace3b 1523
025faf73 1524 /* Lookup using the event name as hash and a custom match fct. */
28ab034a
JG
1525 cds_lfht_lookup(ht->ht,
1526 ht->hash_fct((void *) name, lttng_ht_seed),
1527 ht_match_ust_app_event,
1528 &key,
1529 &iter.iter);
00d7d903 1530 node = lttng_ht_iter_get_node<lttng_ht_node_str>(&iter);
cd9adb8b 1531 if (node == nullptr) {
18eace3b
DG
1532 goto end;
1533 }
1534
0114db0e 1535 event = lttng::utils::container_of(node, &ust_app_event::node);
18eace3b
DG
1536
1537end:
18eace3b
DG
1538 return event;
1539}
1540
993578ff
JR
1541/*
1542 * Look-up an event notifier rule based on its token id.
1543 *
1544 * Must be called with the RCU read lock held.
1545 * Return an ust_app_event_notifier_rule object or NULL on error.
1546 */
28ab034a
JG
1547static struct ust_app_event_notifier_rule *find_ust_app_event_notifier_rule(struct lttng_ht *ht,
1548 uint64_t token)
993578ff
JR
1549{
1550 struct lttng_ht_iter iter;
1551 struct lttng_ht_node_u64 *node;
cd9adb8b 1552 struct ust_app_event_notifier_rule *event_notifier_rule = nullptr;
993578ff 1553
a0377dfe 1554 LTTNG_ASSERT(ht);
48b7cdc2 1555 ASSERT_RCU_READ_LOCKED();
993578ff
JR
1556
1557 lttng_ht_lookup(ht, &token, &iter);
00d7d903 1558 node = lttng_ht_iter_get_node<lttng_ht_node_u64>(&iter);
cd9adb8b 1559 if (node == nullptr) {
28ab034a 1560 DBG2("UST app event notifier rule token not found: token = %" PRIu64, token);
993578ff
JR
1561 goto end;
1562 }
1563
28ab034a 1564 event_notifier_rule = lttng::utils::container_of(node, &ust_app_event_notifier_rule::node);
993578ff
JR
1565end:
1566 return event_notifier_rule;
1567}
1568
55cc08a6
DG
1569/*
1570 * Create the channel context on the tracer.
d0b96690
DG
1571 *
1572 * Called with UST app session lock held.
55cc08a6 1573 */
28ab034a
JG
1574static int create_ust_channel_context(struct ust_app_channel *ua_chan,
1575 struct ust_app_ctx *ua_ctx,
1576 struct ust_app *app)
55cc08a6
DG
1577{
1578 int ret;
1579
840cb59c 1580 health_code_update();
86acf0da 1581
fb45065e 1582 pthread_mutex_lock(&app->sock_lock);
28ab034a 1583 ret = lttng_ust_ctl_add_context(app->sock, &ua_ctx->ctx, ua_chan->obj, &ua_ctx->obj);
fb45065e 1584 pthread_mutex_unlock(&app->sock_lock);
55cc08a6 1585 if (ret < 0) {
be355079
JR
1586 if (ret == -EPIPE || ret == -LTTNG_UST_ERR_EXITING) {
1587 ret = 0;
1588 DBG3("UST app create channel context failed. Application is dead: pid = %d, sock = %d",
28ab034a
JG
1589 app->pid,
1590 app->sock);
be355079 1591 } else if (ret == -EAGAIN) {
3757b385 1592 ret = 0;
be355079 1593 WARN("UST app create channel context failed. Communication time out: pid = %d, sock = %d",
28ab034a
JG
1594 app->pid,
1595 app->sock);
be355079
JR
1596 } else {
1597 ERR("UST app create channel context failed with ret %d: pid = %d, sock = %d",
28ab034a
JG
1598 ret,
1599 app->pid,
1600 app->sock);
ffe60014 1601 }
55cc08a6
DG
1602 goto error;
1603 }
1604
1605 ua_ctx->handle = ua_ctx->obj->handle;
1606
d0b96690 1607 DBG2("UST app context handle %d created successfully for channel %s",
28ab034a
JG
1608 ua_ctx->handle,
1609 ua_chan->name);
55cc08a6
DG
1610
1611error:
840cb59c 1612 health_code_update();
55cc08a6
DG
1613 return ret;
1614}
1615
53a80697
MD
1616/*
1617 * Set the filter on the tracer.
1618 */
a154c7b8 1619static int set_ust_object_filter(struct ust_app *app,
28ab034a
JG
1620 const struct lttng_bytecode *bytecode,
1621 struct lttng_ust_abi_object_data *ust_object)
53a80697
MD
1622{
1623 int ret;
cd9adb8b 1624 struct lttng_ust_abi_filter_bytecode *ust_bytecode = nullptr;
53a80697 1625
840cb59c 1626 health_code_update();
86acf0da 1627
f2eafd2d 1628 ust_bytecode = create_ust_filter_bytecode_from_bytecode(bytecode);
51755dc8
JG
1629 if (!ust_bytecode) {
1630 ret = -LTTNG_ERR_NOMEM;
1631 goto error;
1632 }
fb45065e 1633 pthread_mutex_lock(&app->sock_lock);
28ab034a 1634 ret = lttng_ust_ctl_set_filter(app->sock, ust_bytecode, ust_object);
fb45065e 1635 pthread_mutex_unlock(&app->sock_lock);
53a80697 1636 if (ret < 0) {
be355079 1637 if (ret == -EPIPE || ret == -LTTNG_UST_ERR_EXITING) {
3757b385 1638 ret = 0;
be355079 1639 DBG3("UST app set filter failed. Application is dead: pid = %d, sock = %d",
28ab034a
JG
1640 app->pid,
1641 app->sock);
be355079
JR
1642 } else if (ret == -EAGAIN) {
1643 ret = 0;
1644 WARN("UST app set filter failed. Communication time out: pid = %d, sock = %d",
28ab034a
JG
1645 app->pid,
1646 app->sock);
be355079
JR
1647 } else {
1648 ERR("UST app set filter failed with ret %d: pid = %d, sock = %d, object = %p",
28ab034a
JG
1649 ret,
1650 app->pid,
1651 app->sock,
1652 ust_object);
ffe60014 1653 }
53a80697
MD
1654 goto error;
1655 }
1656
f2eafd2d
JR
1657 DBG2("UST filter successfully set: object = %p", ust_object);
1658
1659error:
1660 health_code_update();
1661 free(ust_bytecode);
1662 return ret;
1663}
1664
1665/*
1666 * Set a capture bytecode for the passed object.
11f6ce94
JR
1667 * The sequence number enforces the ordering at runtime and on reception of
1668 * the captured payloads.
f2eafd2d
JR
1669 */
1670static int set_ust_capture(struct ust_app *app,
28ab034a
JG
1671 const struct lttng_bytecode *bytecode,
1672 unsigned int capture_seqnum,
1673 struct lttng_ust_abi_object_data *ust_object)
f2eafd2d
JR
1674{
1675 int ret;
cd9adb8b 1676 struct lttng_ust_abi_capture_bytecode *ust_bytecode = nullptr;
f2eafd2d
JR
1677
1678 health_code_update();
1679
1680 ust_bytecode = create_ust_capture_bytecode_from_bytecode(bytecode);
1681 if (!ust_bytecode) {
1682 ret = -LTTNG_ERR_NOMEM;
1683 goto error;
1684 }
1685
11f6ce94
JR
1686 /*
1687 * Set the sequence number to ensure the capture of fields is ordered.
1688 */
1689 ust_bytecode->seqnum = capture_seqnum;
1690
f2eafd2d 1691 pthread_mutex_lock(&app->sock_lock);
28ab034a 1692 ret = lttng_ust_ctl_set_capture(app->sock, ust_bytecode, ust_object);
f2eafd2d
JR
1693 pthread_mutex_unlock(&app->sock_lock);
1694 if (ret < 0) {
be355079
JR
1695 if (ret == -EPIPE || ret == -LTTNG_UST_ERR_EXITING) {
1696 ret = 0;
1697 DBG3("UST app set capture failed. Application is dead: pid = %d, sock = %d",
28ab034a
JG
1698 app->pid,
1699 app->sock);
be355079 1700 } else if (ret == -EAGAIN) {
f2eafd2d 1701 ret = 0;
be355079 1702 DBG3("UST app set capture failed. Communication timeout: pid = %d, sock = %d",
28ab034a
JG
1703 app->pid,
1704 app->sock);
be355079
JR
1705 } else {
1706 ERR("UST app event set capture failed with ret %d: pid = %d, sock = %d",
28ab034a
JG
1707 ret,
1708 app->pid,
1709 app->sock);
f2eafd2d
JR
1710 }
1711
1712 goto error;
1713 }
1714
1715 DBG2("UST capture successfully set: object = %p", ust_object);
53a80697
MD
1716
1717error:
840cb59c 1718 health_code_update();
51755dc8 1719 free(ust_bytecode);
53a80697
MD
1720 return ret;
1721}
1722
28ab034a
JG
1723static struct lttng_ust_abi_event_exclusion *
1724create_ust_exclusion_from_exclusion(const struct lttng_event_exclusion *exclusion)
51755dc8 1725{
cd9adb8b 1726 struct lttng_ust_abi_event_exclusion *ust_exclusion = nullptr;
fc4b93fa
MD
1727 size_t exclusion_alloc_size = sizeof(struct lttng_ust_abi_event_exclusion) +
1728 LTTNG_UST_ABI_SYM_NAME_LEN * exclusion->count;
51755dc8 1729
64803277 1730 ust_exclusion = zmalloc<lttng_ust_abi_event_exclusion>(exclusion_alloc_size);
51755dc8
JG
1731 if (!ust_exclusion) {
1732 PERROR("malloc");
1733 goto end;
1734 }
1735
a0377dfe 1736 LTTNG_ASSERT(sizeof(struct lttng_event_exclusion) ==
28ab034a 1737 sizeof(struct lttng_ust_abi_event_exclusion));
51755dc8
JG
1738 memcpy(ust_exclusion, exclusion, exclusion_alloc_size);
1739end:
1740 return ust_exclusion;
1741}
1742
7cc9a73c
JI
1743/*
1744 * Set event exclusions on the tracer.
1745 */
c0901ffa 1746static int set_ust_object_exclusions(struct ust_app *app,
28ab034a
JG
1747 const struct lttng_event_exclusion *exclusions,
1748 struct lttng_ust_abi_object_data *ust_object)
7cc9a73c
JI
1749{
1750 int ret;
cd9adb8b 1751 struct lttng_ust_abi_event_exclusion *ust_exclusions = nullptr;
7cc9a73c 1752
a0377dfe 1753 LTTNG_ASSERT(exclusions && exclusions->count > 0);
7cc9a73c 1754
c0901ffa 1755 health_code_update();
7cc9a73c 1756
28ab034a 1757 ust_exclusions = create_ust_exclusion_from_exclusion(exclusions);
c0901ffa 1758 if (!ust_exclusions) {
51755dc8
JG
1759 ret = -LTTNG_ERR_NOMEM;
1760 goto error;
1761 }
fb45065e 1762 pthread_mutex_lock(&app->sock_lock);
b623cb6a 1763 ret = lttng_ust_ctl_set_exclusion(app->sock, ust_exclusions, ust_object);
fb45065e 1764 pthread_mutex_unlock(&app->sock_lock);
7cc9a73c 1765 if (ret < 0) {
be355079
JR
1766 if (ret == -EPIPE || ret == -LTTNG_UST_ERR_EXITING) {
1767 ret = 0;
1768 DBG3("UST app event exclusion failed. Application is dead: pid = %d, sock = %d",
28ab034a
JG
1769 app->pid,
1770 app->sock);
be355079 1771 } else if (ret == -EAGAIN) {
7cc9a73c 1772 ret = 0;
be355079 1773 WARN("UST app event exclusion failed. Communication time out(pid: %d, sock = %d",
28ab034a
JG
1774 app->pid,
1775 app->sock);
be355079
JR
1776 } else {
1777 ERR("UST app event exclusions failed with ret %d: pid = %d, sock = %d, object = %p",
28ab034a
JG
1778 ret,
1779 app->pid,
1780 app->sock,
1781 ust_object);
7cc9a73c
JI
1782 }
1783 goto error;
1784 }
1785
c0901ffa 1786 DBG2("UST exclusions set successfully for object %p", ust_object);
7cc9a73c
JI
1787
1788error:
1789 health_code_update();
c0901ffa 1790 free(ust_exclusions);
7cc9a73c
JI
1791 return ret;
1792}
1793
9730260e
DG
1794/*
1795 * Disable the specified event on to UST tracer for the UST session.
1796 */
28ab034a 1797static int disable_ust_object(struct ust_app *app, struct lttng_ust_abi_object_data *object)
9730260e
DG
1798{
1799 int ret;
1800
840cb59c 1801 health_code_update();
86acf0da 1802
fb45065e 1803 pthread_mutex_lock(&app->sock_lock);
b623cb6a 1804 ret = lttng_ust_ctl_disable(app->sock, object);
fb45065e 1805 pthread_mutex_unlock(&app->sock_lock);
9730260e 1806 if (ret < 0) {
be355079 1807 if (ret == -EPIPE || ret == -LTTNG_UST_ERR_EXITING) {
3757b385 1808 ret = 0;
be355079 1809 DBG3("UST app disable object failed. Application is dead: pid = %d, sock = %d",
28ab034a
JG
1810 app->pid,
1811 app->sock);
be355079
JR
1812 } else if (ret == -EAGAIN) {
1813 ret = 0;
1814 WARN("UST app disable object failed. Communication time out: pid = %d, sock = %d",
28ab034a
JG
1815 app->pid,
1816 app->sock);
be355079
JR
1817 } else {
1818 ERR("UST app disable object failed with ret %d: pid = %d, sock = %d, object = %p",
28ab034a
JG
1819 ret,
1820 app->pid,
1821 app->sock,
1822 object);
ffe60014 1823 }
9730260e
DG
1824 goto error;
1825 }
1826
28ab034a 1827 DBG2("UST app object %p disabled successfully for app: pid = %d", object, app->pid);
9730260e
DG
1828
1829error:
840cb59c 1830 health_code_update();
9730260e
DG
1831 return ret;
1832}
1833
78f0bacd
DG
1834/*
1835 * Disable the specified channel on to UST tracer for the UST session.
1836 */
1837static int disable_ust_channel(struct ust_app *app,
28ab034a
JG
1838 struct ust_app_session *ua_sess,
1839 struct ust_app_channel *ua_chan)
78f0bacd
DG
1840{
1841 int ret;
1842
840cb59c 1843 health_code_update();
86acf0da 1844
fb45065e 1845 pthread_mutex_lock(&app->sock_lock);
b623cb6a 1846 ret = lttng_ust_ctl_disable(app->sock, ua_chan->obj);
fb45065e 1847 pthread_mutex_unlock(&app->sock_lock);
78f0bacd 1848 if (ret < 0) {
be355079
JR
1849 if (ret == -EPIPE || ret == -LTTNG_UST_ERR_EXITING) {
1850 ret = 0;
1851 DBG3("UST app disable channel failed. Application is dead: pid = %d, sock = %d",
28ab034a
JG
1852 app->pid,
1853 app->sock);
be355079 1854 } else if (ret == -EAGAIN) {
3757b385 1855 ret = 0;
be355079 1856 WARN("UST app disable channel failed. Communication time out: pid = %d, sock = %d",
28ab034a
JG
1857 app->pid,
1858 app->sock);
be355079
JR
1859 } else {
1860 ERR("UST app channel %s disable failed, session handle %d, with ret %d: pid = %d, sock = %d",
28ab034a
JG
1861 ua_chan->name,
1862 ua_sess->handle,
1863 ret,
1864 app->pid,
1865 app->sock);
ffe60014 1866 }
78f0bacd
DG
1867 goto error;
1868 }
1869
28ab034a 1870 DBG2("UST app channel %s disabled successfully for app: pid = %d", ua_chan->name, app->pid);
78f0bacd
DG
1871
1872error:
840cb59c 1873 health_code_update();
78f0bacd
DG
1874 return ret;
1875}
1876
1877/*
1878 * Enable the specified channel on to UST tracer for the UST session.
1879 */
1880static int enable_ust_channel(struct ust_app *app,
28ab034a
JG
1881 struct ust_app_session *ua_sess,
1882 struct ust_app_channel *ua_chan)
78f0bacd
DG
1883{
1884 int ret;
1885
840cb59c 1886 health_code_update();
86acf0da 1887
fb45065e 1888 pthread_mutex_lock(&app->sock_lock);
b623cb6a 1889 ret = lttng_ust_ctl_enable(app->sock, ua_chan->obj);
fb45065e 1890 pthread_mutex_unlock(&app->sock_lock);
78f0bacd 1891 if (ret < 0) {
be355079
JR
1892 if (ret == -EPIPE || ret == -LTTNG_UST_ERR_EXITING) {
1893 ret = 0;
1894 DBG3("UST app channel %s enable failed. Application is dead: pid = %d, sock = %d",
28ab034a
JG
1895 ua_chan->name,
1896 app->pid,
1897 app->sock);
be355079 1898 } else if (ret == -EAGAIN) {
3757b385 1899 ret = 0;
be355079 1900 WARN("UST app channel %s enable failed. Communication time out: pid = %d, sock = %d",
28ab034a
JG
1901 ua_chan->name,
1902 app->pid,
1903 app->sock);
be355079
JR
1904 } else {
1905 ERR("UST app channel %s enable failed, session handle %d, with ret %d: pid = %d, sock = %d",
28ab034a
JG
1906 ua_chan->name,
1907 ua_sess->handle,
1908 ret,
1909 app->pid,
1910 app->sock);
ffe60014 1911 }
78f0bacd
DG
1912 goto error;
1913 }
1914
66cefebd 1915 ua_chan->enabled = true;
78f0bacd 1916
28ab034a 1917 DBG2("UST app channel %s enabled successfully for app: pid = %d", ua_chan->name, app->pid);
78f0bacd
DG
1918
1919error:
840cb59c 1920 health_code_update();
78f0bacd
DG
1921 return ret;
1922}
1923
edb67388
DG
1924/*
1925 * Enable the specified event on to UST tracer for the UST session.
1926 */
28ab034a 1927static int enable_ust_object(struct ust_app *app, struct lttng_ust_abi_object_data *ust_object)
edb67388
DG
1928{
1929 int ret;
1930
840cb59c 1931 health_code_update();
86acf0da 1932
fb45065e 1933 pthread_mutex_lock(&app->sock_lock);
b623cb6a 1934 ret = lttng_ust_ctl_enable(app->sock, ust_object);
fb45065e 1935 pthread_mutex_unlock(&app->sock_lock);
edb67388 1936 if (ret < 0) {
be355079 1937 if (ret == -EPIPE || ret == -LTTNG_UST_ERR_EXITING) {
3757b385 1938 ret = 0;
be355079 1939 DBG3("UST app enable object failed. Application is dead: pid = %d, sock = %d",
28ab034a
JG
1940 app->pid,
1941 app->sock);
be355079
JR
1942 } else if (ret == -EAGAIN) {
1943 ret = 0;
1944 WARN("UST app enable object failed. Communication time out: pid = %d, sock = %d",
28ab034a
JG
1945 app->pid,
1946 app->sock);
be355079
JR
1947 } else {
1948 ERR("UST app enable object failed with ret %d: pid = %d, sock = %d, object = %p",
28ab034a
JG
1949 ret,
1950 app->pid,
1951 app->sock,
1952 ust_object);
ffe60014 1953 }
edb67388
DG
1954 goto error;
1955 }
1956
28ab034a 1957 DBG2("UST app object %p enabled successfully for app: pid = %d", ust_object, app->pid);
edb67388
DG
1958
1959error:
840cb59c 1960 health_code_update();
edb67388
DG
1961 return ret;
1962}
1963
099e26bd 1964/*
7972aab2 1965 * Send channel and stream buffer to application.
4f3ab6ee 1966 *
ffe60014 1967 * Return 0 on success. On error, a negative value is returned.
4f3ab6ee 1968 */
7972aab2 1969static int send_channel_pid_to_ust(struct ust_app *app,
28ab034a
JG
1970 struct ust_app_session *ua_sess,
1971 struct ust_app_channel *ua_chan)
4f3ab6ee
DG
1972{
1973 int ret;
ffe60014 1974 struct ust_app_stream *stream, *stmp;
4f3ab6ee 1975
a0377dfe
FD
1976 LTTNG_ASSERT(app);
1977 LTTNG_ASSERT(ua_sess);
1978 LTTNG_ASSERT(ua_chan);
4f3ab6ee 1979
840cb59c 1980 health_code_update();
4f3ab6ee 1981
28ab034a 1982 DBG("UST app sending channel %s to UST app sock %d", ua_chan->name, app->sock);
86acf0da 1983
ffe60014
DG
1984 /* Send channel to the application. */
1985 ret = ust_consumer_send_channel_to_ust(app, ua_sess, ua_chan);
a7169585 1986 if (ret == -EPIPE || ret == -LTTNG_UST_ERR_EXITING) {
28ab034a 1987 ret = -ENOTCONN; /* Caused by app exiting. */
a7169585 1988 goto error;
be355079
JR
1989 } else if (ret == -EAGAIN) {
1990 /* Caused by timeout. */
28ab034a
JG
1991 WARN("Communication with application %d timed out on send_channel for channel \"%s\" of session \"%" PRIu64
1992 "\".",
1993 app->pid,
1994 ua_chan->name,
1995 ua_sess->tracing_id);
be355079
JR
1996 /* Treat this the same way as an application that is exiting. */
1997 ret = -ENOTCONN;
1998 goto error;
a7169585 1999 } else if (ret < 0) {
b551a063
DG
2000 goto error;
2001 }
2002
d88aee68
DG
2003 health_code_update();
2004
ffe60014 2005 /* Send all streams to application. */
28ab034a 2006 cds_list_for_each_entry_safe (stream, stmp, &ua_chan->streams.head, list) {
ffe60014 2007 ret = ust_consumer_send_stream_to_ust(app, ua_chan, stream);
a7169585 2008 if (ret == -EPIPE || ret == -LTTNG_UST_ERR_EXITING) {
be355079 2009 ret = -ENOTCONN; /* Caused by app exiting. */
a7169585 2010 goto error;
be355079
JR
2011 } else if (ret == -EAGAIN) {
2012 /* Caused by timeout. */
28ab034a
JG
2013 WARN("Communication with application %d timed out on send_stream for stream \"%s\" of channel \"%s\" of session \"%" PRIu64
2014 "\".",
2015 app->pid,
2016 stream->name,
2017 ua_chan->name,
2018 ua_sess->tracing_id);
acfb63a8
JR
2019 /*
2020 * Treat this the same way as an application that is
2021 * exiting.
2022 */
be355079 2023 ret = -ENOTCONN;
a7169585 2024 } else if (ret < 0) {
ffe60014
DG
2025 goto error;
2026 }
2027 /* We don't need the stream anymore once sent to the tracer. */
2028 cds_list_del(&stream->list);
fb45065e 2029 delete_ust_app_stream(-1, stream, app);
ffe60014 2030 }
ffe60014 2031
b551a063 2032error:
840cb59c 2033 health_code_update();
b551a063
DG
2034 return ret;
2035}
2036
91d76f53 2037/*
5b4a0ec0 2038 * Create the specified event onto the UST tracer for a UST session.
d0b96690
DG
2039 *
2040 * Should be called with session mutex held.
91d76f53 2041 */
28ab034a
JG
2042static int create_ust_event(struct ust_app *app,
2043 struct ust_app_channel *ua_chan,
2044 struct ust_app_event *ua_event)
91d76f53 2045{
5b4a0ec0 2046 int ret = 0;
284d8f55 2047
840cb59c 2048 health_code_update();
86acf0da 2049
5b4a0ec0 2050 /* Create UST event on tracer */
fb45065e 2051 pthread_mutex_lock(&app->sock_lock);
28ab034a 2052 ret = lttng_ust_ctl_create_event(app->sock, &ua_event->attr, ua_chan->obj, &ua_event->obj);
fb45065e 2053 pthread_mutex_unlock(&app->sock_lock);
5b4a0ec0 2054 if (ret < 0) {
be355079
JR
2055 if (ret == -EPIPE || ret == -LTTNG_UST_ERR_EXITING) {
2056 ret = 0;
2057 DBG3("UST app create event failed. Application is dead: pid = %d, sock = %d",
28ab034a
JG
2058 app->pid,
2059 app->sock);
be355079 2060 } else if (ret == -EAGAIN) {
3757b385 2061 ret = 0;
be355079 2062 WARN("UST app create event failed. Communication time out: pid = %d, sock = %d",
28ab034a
JG
2063 app->pid,
2064 app->sock);
be355079
JR
2065 } else {
2066 ERR("UST app create event '%s' failed with ret %d: pid = %d, sock = %d",
28ab034a
JG
2067 ua_event->attr.name,
2068 ret,
2069 app->pid,
2070 app->sock);
ffe60014 2071 }
5b4a0ec0 2072 goto error;
91d76f53 2073 }
f6a9efaa 2074
5b4a0ec0 2075 ua_event->handle = ua_event->obj->handle;
284d8f55 2076
be355079 2077 DBG2("UST app event %s created successfully for pid:%d object = %p",
28ab034a
JG
2078 ua_event->attr.name,
2079 app->pid,
2080 ua_event->obj);
f6a9efaa 2081
840cb59c 2082 health_code_update();
86acf0da 2083
025faf73
DG
2084 /* Set filter if one is present. */
2085 if (ua_event->filter) {
a154c7b8 2086 ret = set_ust_object_filter(app, ua_event->filter, ua_event->obj);
025faf73
DG
2087 if (ret < 0) {
2088 goto error;
2089 }
2090 }
2091
7cc9a73c
JI
2092 /* Set exclusions for the event */
2093 if (ua_event->exclusion) {
c0901ffa 2094 ret = set_ust_object_exclusions(app, ua_event->exclusion, ua_event->obj);
7cc9a73c
JI
2095 if (ret < 0) {
2096 goto error;
2097 }
2098 }
2099
8535a6d9 2100 /* If event not enabled, disable it on the tracer */
40113787
MD
2101 if (ua_event->enabled) {
2102 /*
2103 * We now need to explicitly enable the event, since it
2104 * is now disabled at creation.
2105 */
3428a1b7 2106 ret = enable_ust_object(app, ua_event->obj);
40113787
MD
2107 if (ret < 0) {
2108 /*
2109 * If we hit an EPERM, something is wrong with our enable call. If
2110 * we get an EEXIST, there is a problem on the tracer side since we
2111 * just created it.
2112 */
2113 switch (ret) {
2114 case -LTTNG_UST_ERR_PERM:
2115 /* Code flow problem */
a0377dfe 2116 abort();
40113787
MD
2117 case -LTTNG_UST_ERR_EXIST:
2118 /* It's OK for our use case. */
2119 ret = 0;
2120 break;
2121 default:
2122 break;
2123 }
2124 goto error;
2125 }
8535a6d9
DG
2126 }
2127
5b4a0ec0 2128error:
840cb59c 2129 health_code_update();
5b4a0ec0 2130 return ret;
91d76f53 2131}
48842b30 2132
28ab034a
JG
2133static int
2134init_ust_event_notifier_from_event_rule(const struct lttng_event_rule *rule,
2135 struct lttng_ust_abi_event_notifier *event_notifier)
993578ff
JR
2136{
2137 enum lttng_event_rule_status status;
fc4b93fa 2138 enum lttng_ust_abi_loglevel_type ust_loglevel_type = LTTNG_UST_ABI_LOGLEVEL_ALL;
993578ff
JR
2139 int loglevel = -1, ret = 0;
2140 const char *pattern;
2141
993578ff
JR
2142 memset(event_notifier, 0, sizeof(*event_notifier));
2143
44760c20
JR
2144 if (lttng_event_rule_targets_agent_domain(rule)) {
2145 /*
2146 * Special event for agents
2147 * The actual meat of the event is in the filter that will be
2148 * attached later on.
2149 * Set the default values for the agent event.
2150 */
28ab034a 2151 pattern = event_get_default_agent_ust_name(lttng_event_rule_get_domain_type(rule));
44760c20 2152 loglevel = 0;
fc4b93fa 2153 ust_loglevel_type = LTTNG_UST_ABI_LOGLEVEL_ALL;
44760c20 2154 } else {
85b05318 2155 const struct lttng_log_level_rule *log_level_rule;
993578ff 2156
a0377dfe 2157 LTTNG_ASSERT(lttng_event_rule_get_type(rule) ==
28ab034a 2158 LTTNG_EVENT_RULE_TYPE_USER_TRACEPOINT);
695f7044
JR
2159
2160 status = lttng_event_rule_user_tracepoint_get_name_pattern(rule, &pattern);
44760c20
JR
2161 if (status != LTTNG_EVENT_RULE_STATUS_OK) {
2162 /* At this point, this is a fatal error. */
2163 abort();
2164 }
993578ff 2165
28ab034a 2166 status = lttng_event_rule_user_tracepoint_get_log_level_rule(rule, &log_level_rule);
85b05318 2167 if (status == LTTNG_EVENT_RULE_STATUS_UNSET) {
fc4b93fa 2168 ust_loglevel_type = LTTNG_UST_ABI_LOGLEVEL_ALL;
85b05318
JR
2169 } else if (status == LTTNG_EVENT_RULE_STATUS_OK) {
2170 enum lttng_log_level_rule_status llr_status;
2171
2172 switch (lttng_log_level_rule_get_type(log_level_rule)) {
2173 case LTTNG_LOG_LEVEL_RULE_TYPE_EXACTLY:
2174 ust_loglevel_type = LTTNG_UST_ABI_LOGLEVEL_SINGLE;
28ab034a
JG
2175 llr_status = lttng_log_level_rule_exactly_get_level(log_level_rule,
2176 &loglevel);
85b05318
JR
2177 break;
2178 case LTTNG_LOG_LEVEL_RULE_TYPE_AT_LEAST_AS_SEVERE_AS:
2179 ust_loglevel_type = LTTNG_UST_ABI_LOGLEVEL_RANGE;
2180 llr_status = lttng_log_level_rule_at_least_as_severe_as_get_level(
28ab034a 2181 log_level_rule, &loglevel);
85b05318
JR
2182 break;
2183 default:
2184 abort();
2185 }
993578ff 2186
a0377dfe 2187 LTTNG_ASSERT(llr_status == LTTNG_LOG_LEVEL_RULE_STATUS_OK);
85b05318
JR
2188 } else {
2189 /* At this point this is a fatal error. */
2190 abort();
44760c20 2191 }
993578ff
JR
2192 }
2193
fc4b93fa 2194 event_notifier->event.instrumentation = LTTNG_UST_ABI_TRACEPOINT;
28ab034a
JG
2195 ret = lttng_strncpy(
2196 event_notifier->event.name, pattern, sizeof(event_notifier->event.name));
993578ff 2197 if (ret) {
28ab034a 2198 ERR("Failed to copy event rule pattern to notifier: pattern = '%s' ", pattern);
993578ff
JR
2199 goto end;
2200 }
2201
2202 event_notifier->event.loglevel_type = ust_loglevel_type;
2203 event_notifier->event.loglevel = loglevel;
2204end:
2205 return ret;
2206}
2207
2208/*
2209 * Create the specified event notifier against the user space tracer of a
2210 * given application.
2211 */
2212static int create_ust_event_notifier(struct ust_app *app,
28ab034a 2213 struct ust_app_event_notifier_rule *ua_event_notifier_rule)
993578ff
JR
2214{
2215 int ret = 0;
267d66aa 2216 enum lttng_condition_status condition_status;
cd9adb8b 2217 const struct lttng_condition *condition = nullptr;
fc4b93fa 2218 struct lttng_ust_abi_event_notifier event_notifier;
cd9adb8b 2219 const struct lttng_event_rule *event_rule = nullptr;
f83be61d
JR
2220 unsigned int capture_bytecode_count = 0, i;
2221 enum lttng_condition_status cond_status;
695f7044 2222 enum lttng_event_rule_type event_rule_type;
993578ff
JR
2223
2224 health_code_update();
a0377dfe 2225 LTTNG_ASSERT(app->event_notifier_group.object);
993578ff 2226
28ab034a 2227 condition = lttng_trigger_get_const_condition(ua_event_notifier_rule->trigger);
a0377dfe
FD
2228 LTTNG_ASSERT(condition);
2229 LTTNG_ASSERT(lttng_condition_get_type(condition) ==
28ab034a 2230 LTTNG_CONDITION_TYPE_EVENT_RULE_MATCHES);
993578ff 2231
28ab034a 2232 condition_status = lttng_condition_event_rule_matches_get_rule(condition, &event_rule);
a0377dfe 2233 LTTNG_ASSERT(condition_status == LTTNG_CONDITION_STATUS_OK);
d602bd6a 2234
a0377dfe 2235 LTTNG_ASSERT(event_rule);
695f7044
JR
2236
2237 event_rule_type = lttng_event_rule_get_type(event_rule);
a0377dfe 2238 LTTNG_ASSERT(event_rule_type == LTTNG_EVENT_RULE_TYPE_USER_TRACEPOINT ||
28ab034a
JG
2239 event_rule_type == LTTNG_EVENT_RULE_TYPE_JUL_LOGGING ||
2240 event_rule_type == LTTNG_EVENT_RULE_TYPE_LOG4J_LOGGING ||
2241 event_rule_type == LTTNG_EVENT_RULE_TYPE_PYTHON_LOGGING);
267d66aa
JR
2242
2243 init_ust_event_notifier_from_event_rule(event_rule, &event_notifier);
993578ff 2244 event_notifier.event.token = ua_event_notifier_rule->token;
533a90fb 2245 event_notifier.error_counter_index = ua_event_notifier_rule->error_counter_index;
993578ff
JR
2246
2247 /* Create UST event notifier against the tracer. */
2248 pthread_mutex_lock(&app->sock_lock);
28ab034a
JG
2249 ret = lttng_ust_ctl_create_event_notifier(app->sock,
2250 &event_notifier,
2251 app->event_notifier_group.object,
2252 &ua_event_notifier_rule->obj);
993578ff
JR
2253 pthread_mutex_unlock(&app->sock_lock);
2254 if (ret < 0) {
be355079 2255 if (ret == -EPIPE || ret == -LTTNG_UST_ERR_EXITING) {
993578ff 2256 ret = 0;
be355079 2257 DBG3("UST app create event notifier failed. Application is dead: pid = %d, sock = %d",
28ab034a
JG
2258 app->pid,
2259 app->sock);
be355079
JR
2260 } else if (ret == -EAGAIN) {
2261 ret = 0;
2262 WARN("UST app create event notifier failed. Communication time out: pid = %d, sock = %d",
28ab034a
JG
2263 app->pid,
2264 app->sock);
be355079
JR
2265 } else {
2266 ERR("UST app create event notifier '%s' failed with ret %d: pid = %d, sock = %d",
28ab034a
JG
2267 event_notifier.event.name,
2268 ret,
2269 app->pid,
2270 app->sock);
993578ff 2271 }
993578ff
JR
2272 goto error;
2273 }
2274
2275 ua_event_notifier_rule->handle = ua_event_notifier_rule->obj->handle;
2276
9324443a 2277 DBG2("UST app event notifier %s created successfully: app = '%s': pid = %d, object = %p",
28ab034a
JG
2278 event_notifier.event.name,
2279 app->name,
2280 app->pid,
2281 ua_event_notifier_rule->obj);
993578ff
JR
2282
2283 health_code_update();
2284
2285 /* Set filter if one is present. */
2286 if (ua_event_notifier_rule->filter) {
28ab034a
JG
2287 ret = set_ust_object_filter(
2288 app, ua_event_notifier_rule->filter, ua_event_notifier_rule->obj);
993578ff
JR
2289 if (ret < 0) {
2290 goto error;
2291 }
2292 }
2293
2294 /* Set exclusions for the event. */
2295 if (ua_event_notifier_rule->exclusion) {
28ab034a
JG
2296 ret = set_ust_object_exclusions(
2297 app, ua_event_notifier_rule->exclusion, ua_event_notifier_rule->obj);
993578ff
JR
2298 if (ret < 0) {
2299 goto error;
2300 }
2301 }
f83be61d
JR
2302
2303 /* Set the capture bytecodes. */
8dbb86b8 2304 cond_status = lttng_condition_event_rule_matches_get_capture_descriptor_count(
28ab034a 2305 condition, &capture_bytecode_count);
a0377dfe 2306 LTTNG_ASSERT(cond_status == LTTNG_CONDITION_STATUS_OK);
f83be61d
JR
2307
2308 for (i = 0; i < capture_bytecode_count; i++) {
2309 const struct lttng_bytecode *capture_bytecode =
28ab034a
JG
2310 lttng_condition_event_rule_matches_get_capture_bytecode_at_index(condition,
2311 i);
f83be61d 2312
28ab034a 2313 ret = set_ust_capture(app, capture_bytecode, i, ua_event_notifier_rule->obj);
f83be61d
JR
2314 if (ret < 0) {
2315 goto error;
2316 }
2317 }
993578ff
JR
2318
2319 /*
2320 * We now need to explicitly enable the event, since it
2321 * is disabled at creation.
2322 */
2323 ret = enable_ust_object(app, ua_event_notifier_rule->obj);
2324 if (ret < 0) {
2325 /*
2326 * If we hit an EPERM, something is wrong with our enable call.
2327 * If we get an EEXIST, there is a problem on the tracer side
2328 * since we just created it.
2329 */
2330 switch (ret) {
2331 case -LTTNG_UST_ERR_PERM:
2332 /* Code flow problem. */
2333 abort();
2334 case -LTTNG_UST_ERR_EXIST:
2335 /* It's OK for our use case. */
2336 ret = 0;
2337 break;
2338 default:
2339 break;
2340 }
2341
2342 goto error;
2343 }
2344
2345 ua_event_notifier_rule->enabled = true;
2346
2347error:
2348 health_code_update();
2349 return ret;
2350}
2351
5b4a0ec0
DG
2352/*
2353 * Copy data between an UST app event and a LTT event.
2354 */
28ab034a 2355static void shadow_copy_event(struct ust_app_event *ua_event, struct ltt_ust_event *uevent)
48842b30 2356{
b4ffad32
JI
2357 size_t exclusion_alloc_size;
2358
48842b30
DG
2359 strncpy(ua_event->name, uevent->attr.name, sizeof(ua_event->name));
2360 ua_event->name[sizeof(ua_event->name) - 1] = '\0';
2361
fc34caaa
DG
2362 ua_event->enabled = uevent->enabled;
2363
5b4a0ec0
DG
2364 /* Copy event attributes */
2365 memcpy(&ua_event->attr, &uevent->attr, sizeof(ua_event->attr));
2366
53a80697
MD
2367 /* Copy filter bytecode */
2368 if (uevent->filter) {
2b00d462 2369 ua_event->filter = lttng_bytecode_copy(uevent->filter);
025faf73 2370 /* Filter might be NULL here in case of ENONEM. */
53a80697 2371 }
b4ffad32
JI
2372
2373 /* Copy exclusion data */
2374 if (uevent->exclusion) {
51755dc8 2375 exclusion_alloc_size = sizeof(struct lttng_event_exclusion) +
28ab034a 2376 LTTNG_UST_ABI_SYM_NAME_LEN * uevent->exclusion->count;
64803277 2377 ua_event->exclusion = zmalloc<lttng_event_exclusion>(exclusion_alloc_size);
cd9adb8b 2378 if (ua_event->exclusion == nullptr) {
5f8df26c
JI
2379 PERROR("malloc");
2380 } else {
28ab034a 2381 memcpy(ua_event->exclusion, uevent->exclusion, exclusion_alloc_size);
b4ffad32
JI
2382 }
2383 }
48842b30
DG
2384}
2385
5b4a0ec0
DG
2386/*
2387 * Copy data between an UST app channel and a LTT channel.
2388 */
28ab034a 2389static void shadow_copy_channel(struct ust_app_channel *ua_chan, struct ltt_ust_channel *uchan)
48842b30 2390{
fc34caaa 2391 DBG2("UST app shadow copy of channel %s started", ua_chan->name);
48842b30
DG
2392
2393 strncpy(ua_chan->name, uchan->name, sizeof(ua_chan->name));
2394 ua_chan->name[sizeof(ua_chan->name) - 1] = '\0';
ffe60014 2395
1624d5b7
JD
2396 ua_chan->tracefile_size = uchan->tracefile_size;
2397 ua_chan->tracefile_count = uchan->tracefile_count;
2398
ffe60014
DG
2399 /* Copy event attributes since the layout is different. */
2400 ua_chan->attr.subbuf_size = uchan->attr.subbuf_size;
2401 ua_chan->attr.num_subbuf = uchan->attr.num_subbuf;
2402 ua_chan->attr.overwrite = uchan->attr.overwrite;
2403 ua_chan->attr.switch_timer_interval = uchan->attr.switch_timer_interval;
2404 ua_chan->attr.read_timer_interval = uchan->attr.read_timer_interval;
e9404c27 2405 ua_chan->monitor_timer_interval = uchan->monitor_timer_interval;
7966af57 2406 ua_chan->attr.output = (lttng_ust_abi_output) uchan->attr.output;
491d1539
MD
2407 ua_chan->attr.blocking_timeout = uchan->attr.u.s.blocking_timeout;
2408
ffe60014
DG
2409 /*
2410 * Note that the attribute channel type is not set since the channel on the
2411 * tracing registry side does not have this information.
2412 */
48842b30 2413
fc34caaa 2414 ua_chan->enabled = uchan->enabled;
7972aab2 2415 ua_chan->tracing_channel_id = uchan->id;
fc34caaa 2416
fc34caaa 2417 DBG3("UST app shadow copy of channel %s done", ua_chan->name);
48842b30
DG
2418}
2419
5b4a0ec0
DG
2420/*
2421 * Copy data between a UST app session and a regular LTT session.
2422 */
421cb601 2423static void shadow_copy_session(struct ust_app_session *ua_sess,
28ab034a
JG
2424 struct ltt_ust_session *usess,
2425 struct ust_app *app)
48842b30 2426{
477d7741
MD
2427 struct tm *timeinfo;
2428 char datetime[16];
2429 int ret;
d7ba1388 2430 char tmp_shm_path[PATH_MAX];
477d7741 2431
940c4592 2432 timeinfo = localtime(&app->registration_time);
477d7741 2433 strftime(datetime, sizeof(datetime), "%Y%m%d-%H%M%S", timeinfo);
48842b30 2434
421cb601 2435 DBG2("Shadow copy of session handle %d", ua_sess->handle);
48842b30 2436
7972aab2
DG
2437 ua_sess->tracing_id = usess->id;
2438 ua_sess->id = get_next_session_id();
ff588497
JR
2439 LTTNG_OPTIONAL_SET(&ua_sess->real_credentials.uid, app->uid);
2440 LTTNG_OPTIONAL_SET(&ua_sess->real_credentials.gid, app->gid);
2441 LTTNG_OPTIONAL_SET(&ua_sess->effective_credentials.uid, usess->uid);
2442 LTTNG_OPTIONAL_SET(&ua_sess->effective_credentials.gid, usess->gid);
7972aab2 2443 ua_sess->buffer_type = usess->buffer_type;
d7bfb9b0 2444 ua_sess->bits_per_long = app->abi.bits_per_long;
6addfa37 2445
7972aab2 2446 /* There is only one consumer object per session possible. */
6addfa37 2447 consumer_output_get(usess->consumer);
7972aab2 2448 ua_sess->consumer = usess->consumer;
6addfa37 2449
2bba9e53 2450 ua_sess->output_traces = usess->output_traces;
ecc48a90 2451 ua_sess->live_timer_interval = usess->live_timer_interval;
28ab034a 2452 copy_channel_attr_to_ustctl(&ua_sess->metadata_attr, &usess->metadata_attr);
7972aab2
DG
2453
2454 switch (ua_sess->buffer_type) {
2455 case LTTNG_BUFFER_PER_PID:
28ab034a
JG
2456 ret = snprintf(ua_sess->path,
2457 sizeof(ua_sess->path),
2458 DEFAULT_UST_TRACE_PID_PATH "/%s-%d-%s",
2459 app->name,
2460 app->pid,
2461 datetime);
7972aab2
DG
2462 break;
2463 case LTTNG_BUFFER_PER_UID:
28ab034a
JG
2464 ret = snprintf(ua_sess->path,
2465 sizeof(ua_sess->path),
2466 DEFAULT_UST_TRACE_UID_PATH,
2467 lttng_credentials_get_uid(&ua_sess->real_credentials),
2468 app->abi.bits_per_long);
7972aab2
DG
2469 break;
2470 default:
a0377dfe 2471 abort();
7972aab2
DG
2472 goto error;
2473 }
477d7741
MD
2474 if (ret < 0) {
2475 PERROR("asprintf UST shadow copy session");
a0377dfe 2476 abort();
7972aab2 2477 goto error;
477d7741
MD
2478 }
2479
28ab034a 2480 strncpy(ua_sess->root_shm_path, usess->root_shm_path, sizeof(ua_sess->root_shm_path));
3d071855 2481 ua_sess->root_shm_path[sizeof(ua_sess->root_shm_path) - 1] = '\0';
28ab034a 2482 strncpy(ua_sess->shm_path, usess->shm_path, sizeof(ua_sess->shm_path));
d7ba1388
MD
2483 ua_sess->shm_path[sizeof(ua_sess->shm_path) - 1] = '\0';
2484 if (ua_sess->shm_path[0]) {
2485 switch (ua_sess->buffer_type) {
2486 case LTTNG_BUFFER_PER_PID:
28ab034a
JG
2487 ret = snprintf(tmp_shm_path,
2488 sizeof(tmp_shm_path),
2489 "/" DEFAULT_UST_TRACE_PID_PATH "/%s-%d-%s",
2490 app->name,
2491 app->pid,
2492 datetime);
d7ba1388
MD
2493 break;
2494 case LTTNG_BUFFER_PER_UID:
28ab034a
JG
2495 ret = snprintf(tmp_shm_path,
2496 sizeof(tmp_shm_path),
2497 "/" DEFAULT_UST_TRACE_UID_PATH,
2498 app->uid,
2499 app->abi.bits_per_long);
d7ba1388
MD
2500 break;
2501 default:
a0377dfe 2502 abort();
d7ba1388
MD
2503 goto error;
2504 }
2505 if (ret < 0) {
2506 PERROR("sprintf UST shadow copy session");
a0377dfe 2507 abort();
d7ba1388
MD
2508 goto error;
2509 }
28ab034a
JG
2510 strncat(ua_sess->shm_path,
2511 tmp_shm_path,
d7ba1388
MD
2512 sizeof(ua_sess->shm_path) - strlen(ua_sess->shm_path) - 1);
2513 ua_sess->shm_path[sizeof(ua_sess->shm_path) - 1] = '\0';
2514 }
6addfa37 2515 return;
7972aab2
DG
2516
2517error:
6addfa37 2518 consumer_output_put(ua_sess->consumer);
48842b30
DG
2519}
2520
78f0bacd
DG
2521/*
2522 * Lookup sesison wrapper.
2523 */
28ab034a
JG
2524static void __lookup_session_by_app(const struct ltt_ust_session *usess,
2525 struct ust_app *app,
2526 struct lttng_ht_iter *iter)
84cd17c6
MD
2527{
2528 /* Get right UST app session from app */
d9bf3ca4 2529 lttng_ht_lookup(app->sessions, &usess->id, iter);
84cd17c6
MD
2530}
2531
421cb601
DG
2532/*
2533 * Return ust app session from the app session hashtable using the UST session
a991f516 2534 * id.
421cb601 2535 */
28ab034a
JG
2536static struct ust_app_session *lookup_session_by_app(const struct ltt_ust_session *usess,
2537 struct ust_app *app)
48842b30 2538{
bec39940 2539 struct lttng_ht_iter iter;
d9bf3ca4 2540 struct lttng_ht_node_u64 *node;
48842b30 2541
84cd17c6 2542 __lookup_session_by_app(usess, app, &iter);
00d7d903 2543 node = lttng_ht_iter_get_node<lttng_ht_node_u64>(&iter);
cd9adb8b 2544 if (node == nullptr) {
48842b30
DG
2545 goto error;
2546 }
2547
0114db0e 2548 return lttng::utils::container_of(node, &ust_app_session::node);
48842b30
DG
2549
2550error:
cd9adb8b 2551 return nullptr;
48842b30
DG
2552}
2553
7972aab2
DG
2554/*
2555 * Setup buffer registry per PID for the given session and application. If none
2556 * is found, a new one is created, added to the global registry and
2557 * initialized. If regp is valid, it's set with the newly created object.
2558 *
2559 * Return 0 on success or else a negative value.
2560 */
2561static int setup_buffer_reg_pid(struct ust_app_session *ua_sess,
28ab034a
JG
2562 struct ust_app *app,
2563 struct buffer_reg_pid **regp)
7972aab2
DG
2564{
2565 int ret = 0;
2566 struct buffer_reg_pid *reg_pid;
2567
a0377dfe
FD
2568 LTTNG_ASSERT(ua_sess);
2569 LTTNG_ASSERT(app);
7972aab2 2570
56047f5a 2571 lttng::urcu::read_lock_guard read_lock;
7972aab2
DG
2572
2573 reg_pid = buffer_reg_pid_find(ua_sess->id);
2574 if (!reg_pid) {
2575 /*
2576 * This is the create channel path meaning that if there is NO
2577 * registry available, we have to create one for this session.
2578 */
28ab034a
JG
2579 ret = buffer_reg_pid_create(
2580 ua_sess->id, &reg_pid, ua_sess->root_shm_path, ua_sess->shm_path);
7972aab2
DG
2581 if (ret < 0) {
2582 goto error;
2583 }
7972aab2
DG
2584 } else {
2585 goto end;
2586 }
2587
2588 /* Initialize registry. */
28ab034a
JG
2589 reg_pid->registry->reg.ust = ust_registry_session_per_pid_create(
2590 app,
2591 app->abi,
2592 app->version.major,
2593 app->version.minor,
2594 reg_pid->root_shm_path,
2595 reg_pid->shm_path,
2596 lttng_credentials_get_uid(&ua_sess->effective_credentials),
2597 lttng_credentials_get_gid(&ua_sess->effective_credentials),
2598 ua_sess->tracing_id);
aeeb48c6 2599 if (!reg_pid->registry->reg.ust) {
286c991a
MD
2600 /*
2601 * reg_pid->registry->reg.ust is NULL upon error, so we need to
2602 * destroy the buffer registry, because it is always expected
2603 * that if the buffer registry can be found, its ust registry is
2604 * non-NULL.
2605 */
2606 buffer_reg_pid_destroy(reg_pid);
7972aab2
DG
2607 goto error;
2608 }
2609
286c991a
MD
2610 buffer_reg_pid_add(reg_pid);
2611
7972aab2
DG
2612 DBG3("UST app buffer registry per PID created successfully");
2613
2614end:
2615 if (regp) {
2616 *regp = reg_pid;
2617 }
2618error:
7972aab2
DG
2619 return ret;
2620}
2621
2622/*
2623 * Setup buffer registry per UID for the given session and application. If none
2624 * is found, a new one is created, added to the global registry and
2625 * initialized. If regp is valid, it's set with the newly created object.
2626 *
2627 * Return 0 on success or else a negative value.
2628 */
2629static int setup_buffer_reg_uid(struct ltt_ust_session *usess,
28ab034a
JG
2630 struct ust_app_session *ua_sess,
2631 struct ust_app *app,
2632 struct buffer_reg_uid **regp)
7972aab2
DG
2633{
2634 int ret = 0;
2635 struct buffer_reg_uid *reg_uid;
2636
a0377dfe
FD
2637 LTTNG_ASSERT(usess);
2638 LTTNG_ASSERT(app);
7972aab2 2639
56047f5a 2640 lttng::urcu::read_lock_guard read_lock;
7972aab2 2641
d7bfb9b0 2642 reg_uid = buffer_reg_uid_find(usess->id, app->abi.bits_per_long, app->uid);
7972aab2
DG
2643 if (!reg_uid) {
2644 /*
2645 * This is the create channel path meaning that if there is NO
2646 * registry available, we have to create one for this session.
2647 */
28ab034a
JG
2648 ret = buffer_reg_uid_create(usess->id,
2649 app->abi.bits_per_long,
2650 app->uid,
2651 LTTNG_DOMAIN_UST,
2652 &reg_uid,
2653 ua_sess->root_shm_path,
2654 ua_sess->shm_path);
7972aab2
DG
2655 if (ret < 0) {
2656 goto error;
2657 }
7972aab2
DG
2658 } else {
2659 goto end;
2660 }
2661
2662 /* Initialize registry. */
d7bfb9b0 2663 reg_uid->registry->reg.ust = ust_registry_session_per_uid_create(app->abi,
28ab034a
JG
2664 app->version.major,
2665 app->version.minor,
2666 reg_uid->root_shm_path,
2667 reg_uid->shm_path,
2668 usess->uid,
2669 usess->gid,
2670 ua_sess->tracing_id,
2671 app->uid);
aeeb48c6 2672 if (!reg_uid->registry->reg.ust) {
286c991a
MD
2673 /*
2674 * reg_uid->registry->reg.ust is NULL upon error, so we need to
2675 * destroy the buffer registry, because it is always expected
2676 * that if the buffer registry can be found, its ust registry is
2677 * non-NULL.
2678 */
cd9adb8b 2679 buffer_reg_uid_destroy(reg_uid, nullptr);
7972aab2
DG
2680 goto error;
2681 }
aeeb48c6 2682
7972aab2
DG
2683 /* Add node to teardown list of the session. */
2684 cds_list_add(&reg_uid->lnode, &usess->buffer_reg_uid_list);
2685
286c991a 2686 buffer_reg_uid_add(reg_uid);
7972aab2 2687
286c991a 2688 DBG3("UST app buffer registry per UID created successfully");
7972aab2
DG
2689end:
2690 if (regp) {
2691 *regp = reg_uid;
2692 }
2693error:
7972aab2
DG
2694 return ret;
2695}
2696
421cb601 2697/*
3d8ca23b 2698 * Create a session on the tracer side for the given app.
421cb601 2699 *
3d8ca23b
DG
2700 * On success, ua_sess_ptr is populated with the session pointer or else left
2701 * untouched. If the session was created, is_created is set to 1. On error,
2702 * it's left untouched. Note that ua_sess_ptr is mandatory but is_created can
2703 * be NULL.
2704 *
2705 * Returns 0 on success or else a negative code which is either -ENOMEM or
b623cb6a 2706 * -ENOTCONN which is the default code if the lttng_ust_ctl_create_session fails.
421cb601 2707 */
03f91eaa 2708static int find_or_create_ust_app_session(struct ltt_ust_session *usess,
28ab034a
JG
2709 struct ust_app *app,
2710 struct ust_app_session **ua_sess_ptr,
2711 int *is_created)
421cb601 2712{
3d8ca23b 2713 int ret, created = 0;
421cb601
DG
2714 struct ust_app_session *ua_sess;
2715
a0377dfe
FD
2716 LTTNG_ASSERT(usess);
2717 LTTNG_ASSERT(app);
2718 LTTNG_ASSERT(ua_sess_ptr);
3d8ca23b 2719
840cb59c 2720 health_code_update();
86acf0da 2721
421cb601 2722 ua_sess = lookup_session_by_app(usess, app);
cd9adb8b 2723 if (ua_sess == nullptr) {
d9bf3ca4 2724 DBG2("UST app pid: %d session id %" PRIu64 " not found, creating it",
28ab034a
JG
2725 app->pid,
2726 usess->id);
40bbd087 2727 ua_sess = alloc_ust_app_session();
cd9adb8b 2728 if (ua_sess == nullptr) {
421cb601 2729 /* Only malloc can failed so something is really wrong */
3d8ca23b
DG
2730 ret = -ENOMEM;
2731 goto error;
421cb601 2732 }
477d7741 2733 shadow_copy_session(ua_sess, usess, app);
3d8ca23b 2734 created = 1;
421cb601
DG
2735 }
2736
7972aab2
DG
2737 switch (usess->buffer_type) {
2738 case LTTNG_BUFFER_PER_PID:
2739 /* Init local registry. */
cd9adb8b 2740 ret = setup_buffer_reg_pid(ua_sess, app, nullptr);
421cb601 2741 if (ret < 0) {
e64207cf 2742 delete_ust_app_session(-1, ua_sess, app);
7972aab2
DG
2743 goto error;
2744 }
2745 break;
2746 case LTTNG_BUFFER_PER_UID:
2747 /* Look for a global registry. If none exists, create one. */
cd9adb8b 2748 ret = setup_buffer_reg_uid(usess, ua_sess, app, nullptr);
7972aab2 2749 if (ret < 0) {
e64207cf 2750 delete_ust_app_session(-1, ua_sess, app);
7972aab2
DG
2751 goto error;
2752 }
2753 break;
2754 default:
a0377dfe 2755 abort();
7972aab2
DG
2756 ret = -EINVAL;
2757 goto error;
2758 }
2759
2760 health_code_update();
2761
2762 if (ua_sess->handle == -1) {
fb45065e 2763 pthread_mutex_lock(&app->sock_lock);
b623cb6a 2764 ret = lttng_ust_ctl_create_session(app->sock);
fb45065e 2765 pthread_mutex_unlock(&app->sock_lock);
7972aab2 2766 if (ret < 0) {
be355079
JR
2767 if (ret == -EPIPE || ret == -LTTNG_UST_ERR_EXITING) {
2768 DBG("UST app creating session failed. Application is dead: pid = %d, sock = %d",
28ab034a
JG
2769 app->pid,
2770 app->sock);
be355079
JR
2771 ret = 0;
2772 } else if (ret == -EAGAIN) {
2773 DBG("UST app creating session failed. Communication time out: pid = %d, sock = %d",
28ab034a
JG
2774 app->pid,
2775 app->sock);
3757b385 2776 ret = 0;
be355079
JR
2777 } else {
2778 ERR("UST app creating session failed with ret %d: pid = %d, sock =%d",
28ab034a
JG
2779 ret,
2780 app->pid,
2781 app->sock);
ffe60014 2782 }
d0b96690 2783 delete_ust_app_session(-1, ua_sess, app);
3d8ca23b
DG
2784 if (ret != -ENOMEM) {
2785 /*
2786 * Tracer is probably gone or got an internal error so let's
2787 * behave like it will soon unregister or not usable.
2788 */
2789 ret = -ENOTCONN;
2790 }
2791 goto error;
421cb601
DG
2792 }
2793
7972aab2
DG
2794 ua_sess->handle = ret;
2795
2796 /* Add ust app session to app's HT */
28ab034a 2797 lttng_ht_node_init_u64(&ua_sess->node, ua_sess->tracing_id);
d9bf3ca4 2798 lttng_ht_add_unique_u64(app->sessions, &ua_sess->node);
10b56aef 2799 lttng_ht_node_init_ulong(&ua_sess->ust_objd_node, ua_sess->handle);
28ab034a 2800 lttng_ht_add_unique_ulong(app->ust_sessions_objd, &ua_sess->ust_objd_node);
7972aab2
DG
2801
2802 DBG2("UST app session created successfully with handle %d", ret);
2803 }
2804
2805 *ua_sess_ptr = ua_sess;
2806 if (is_created) {
2807 *is_created = created;
2808 }
2809
2810 /* Everything went well. */
2811 ret = 0;
2812
2813error:
2814 health_code_update();
2815 return ret;
2816}
2817
6a6b2068
JG
2818/*
2819 * Match function for a hash table lookup of ust_app_ctx.
2820 *
2821 * It matches an ust app context based on the context type and, in the case
2822 * of perf counters, their name.
2823 */
2824static int ht_match_ust_app_ctx(struct cds_lfht_node *node, const void *_key)
2825{
2826 struct ust_app_ctx *ctx;
bdf64013 2827 const struct lttng_ust_context_attr *key;
6a6b2068 2828
a0377dfe
FD
2829 LTTNG_ASSERT(node);
2830 LTTNG_ASSERT(_key);
6a6b2068
JG
2831
2832 ctx = caa_container_of(node, struct ust_app_ctx, node.node);
7966af57 2833 key = (lttng_ust_context_attr *) _key;
6a6b2068
JG
2834
2835 /* Context type */
2836 if (ctx->ctx.ctx != key->ctx) {
2837 goto no_match;
2838 }
2839
28ab034a 2840 switch (key->ctx) {
fc4b93fa 2841 case LTTNG_UST_ABI_CONTEXT_PERF_THREAD_COUNTER:
6a6b2068 2842 if (strncmp(key->u.perf_counter.name,
28ab034a 2843 ctx->ctx.u.perf_counter.name,
5c7248cd 2844 sizeof(key->u.perf_counter.name)) != 0) {
bdf64013
JG
2845 goto no_match;
2846 }
2847 break;
fc4b93fa 2848 case LTTNG_UST_ABI_CONTEXT_APP_CONTEXT:
5c7248cd
JG
2849 if (strcmp(key->u.app_ctx.provider_name, ctx->ctx.u.app_ctx.provider_name) != 0 ||
2850 strcmp(key->u.app_ctx.ctx_name, ctx->ctx.u.app_ctx.ctx_name) != 0) {
6a6b2068
JG
2851 goto no_match;
2852 }
bdf64013
JG
2853 break;
2854 default:
2855 break;
6a6b2068
JG
2856 }
2857
2858 /* Match. */
2859 return 1;
2860
2861no_match:
2862 return 0;
2863}
2864
2865/*
2866 * Lookup for an ust app context from an lttng_ust_context.
2867 *
be184a0f 2868 * Must be called while holding RCU read side lock.
6a6b2068
JG
2869 * Return an ust_app_ctx object or NULL on error.
2870 */
28ab034a
JG
2871static struct ust_app_ctx *find_ust_app_context(struct lttng_ht *ht,
2872 struct lttng_ust_context_attr *uctx)
6a6b2068
JG
2873{
2874 struct lttng_ht_iter iter;
2875 struct lttng_ht_node_ulong *node;
cd9adb8b 2876 struct ust_app_ctx *app_ctx = nullptr;
6a6b2068 2877
a0377dfe
FD
2878 LTTNG_ASSERT(uctx);
2879 LTTNG_ASSERT(ht);
48b7cdc2 2880 ASSERT_RCU_READ_LOCKED();
6a6b2068
JG
2881
2882 /* Lookup using the lttng_ust_context_type and a custom match fct. */
28ab034a
JG
2883 cds_lfht_lookup(ht->ht,
2884 ht->hash_fct((void *) uctx->ctx, lttng_ht_seed),
2885 ht_match_ust_app_ctx,
2886 uctx,
2887 &iter.iter);
00d7d903 2888 node = lttng_ht_iter_get_node<lttng_ht_node_ulong>(&iter);
6a6b2068
JG
2889 if (!node) {
2890 goto end;
2891 }
2892
0114db0e 2893 app_ctx = lttng::utils::container_of(node, &ust_app_ctx::node);
6a6b2068
JG
2894
2895end:
2896 return app_ctx;
2897}
2898
7972aab2
DG
2899/*
2900 * Create a context for the channel on the tracer.
2901 *
2902 * Called with UST app session lock held and a RCU read side lock.
2903 */
28ab034a
JG
2904static int create_ust_app_channel_context(struct ust_app_channel *ua_chan,
2905 struct lttng_ust_context_attr *uctx,
2906 struct ust_app *app)
7972aab2
DG
2907{
2908 int ret = 0;
7972aab2
DG
2909 struct ust_app_ctx *ua_ctx;
2910
48b7cdc2
FD
2911 ASSERT_RCU_READ_LOCKED();
2912
7972aab2
DG
2913 DBG2("UST app adding context to channel %s", ua_chan->name);
2914
6a6b2068
JG
2915 ua_ctx = find_ust_app_context(ua_chan->ctx, uctx);
2916 if (ua_ctx) {
7972aab2
DG
2917 ret = -EEXIST;
2918 goto error;
2919 }
2920
2921 ua_ctx = alloc_ust_app_ctx(uctx);
cd9adb8b 2922 if (ua_ctx == nullptr) {
7972aab2 2923 /* malloc failed */
7682f304 2924 ret = -ENOMEM;
7972aab2
DG
2925 goto error;
2926 }
2927
2928 lttng_ht_node_init_ulong(&ua_ctx->node, (unsigned long) ua_ctx->ctx.ctx);
aa3514e9 2929 lttng_ht_add_ulong(ua_chan->ctx, &ua_ctx->node);
31746f93 2930 cds_list_add_tail(&ua_ctx->list, &ua_chan->ctx_list);
7972aab2
DG
2931
2932 ret = create_ust_channel_context(ua_chan, ua_ctx, app);
2933 if (ret < 0) {
2934 goto error;
2935 }
2936
2937error:
2938 return ret;
2939}
2940
2941/*
2942 * Enable on the tracer side a ust app event for the session and channel.
2943 *
2944 * Called with UST app session lock held.
2945 */
28ab034a 2946static int enable_ust_app_event(struct ust_app_event *ua_event, struct ust_app *app)
7972aab2
DG
2947{
2948 int ret;
2949
3428a1b7 2950 ret = enable_ust_object(app, ua_event->obj);
7972aab2
DG
2951 if (ret < 0) {
2952 goto error;
2953 }
2954
66cefebd 2955 ua_event->enabled = true;
7972aab2
DG
2956
2957error:
2958 return ret;
2959}
2960
2961/*
2962 * Disable on the tracer side a ust app event for the session and channel.
2963 */
28ab034a 2964static int disable_ust_app_event(struct ust_app_event *ua_event, struct ust_app *app)
7972aab2
DG
2965{
2966 int ret;
2967
e2456d0a 2968 ret = disable_ust_object(app, ua_event->obj);
7972aab2
DG
2969 if (ret < 0) {
2970 goto error;
2971 }
2972
66cefebd 2973 ua_event->enabled = false;
7972aab2
DG
2974
2975error:
2976 return ret;
2977}
2978
2979/*
2980 * Lookup ust app channel for session and disable it on the tracer side.
2981 */
28ab034a
JG
2982static int disable_ust_app_channel(struct ust_app_session *ua_sess,
2983 struct ust_app_channel *ua_chan,
2984 struct ust_app *app)
7972aab2
DG
2985{
2986 int ret;
2987
2988 ret = disable_ust_channel(app, ua_sess, ua_chan);
2989 if (ret < 0) {
2990 goto error;
2991 }
2992
66cefebd 2993 ua_chan->enabled = false;
7972aab2
DG
2994
2995error:
2996 return ret;
2997}
2998
2999/*
3000 * Lookup ust app channel for session and enable it on the tracer side. This
3001 * MUST be called with a RCU read side lock acquired.
3002 */
3003static int enable_ust_app_channel(struct ust_app_session *ua_sess,
28ab034a
JG
3004 struct ltt_ust_channel *uchan,
3005 struct ust_app *app)
7972aab2
DG
3006{
3007 int ret = 0;
3008 struct lttng_ht_iter iter;
3009 struct lttng_ht_node_str *ua_chan_node;
3010 struct ust_app_channel *ua_chan;
3011
48b7cdc2
FD
3012 ASSERT_RCU_READ_LOCKED();
3013
28ab034a 3014 lttng_ht_lookup(ua_sess->channels, (void *) uchan->name, &iter);
00d7d903 3015 ua_chan_node = lttng_ht_iter_get_node<lttng_ht_node_str>(&iter);
cd9adb8b 3016 if (ua_chan_node == nullptr) {
d9bf3ca4 3017 DBG2("Unable to find channel %s in ust session id %" PRIu64,
28ab034a
JG
3018 uchan->name,
3019 ua_sess->tracing_id);
7972aab2
DG
3020 goto error;
3021 }
3022
0114db0e 3023 ua_chan = lttng::utils::container_of(ua_chan_node, &ust_app_channel::node);
7972aab2
DG
3024
3025 ret = enable_ust_channel(app, ua_sess, ua_chan);
3026 if (ret < 0) {
3027 goto error;
3028 }
3029
3030error:
3031 return ret;
3032}
3033
3034/*
3035 * Ask the consumer to create a channel and get it if successful.
3036 *
fad1ed2f
JR
3037 * Called with UST app session lock held.
3038 *
7972aab2
DG
3039 * Return 0 on success or else a negative value.
3040 */
3041static int do_consumer_create_channel(struct ltt_ust_session *usess,
28ab034a
JG
3042 struct ust_app_session *ua_sess,
3043 struct ust_app_channel *ua_chan,
3044 int bitness,
3045 lsu::registry_session *registry)
7972aab2
DG
3046{
3047 int ret;
3048 unsigned int nb_fd = 0;
3049 struct consumer_socket *socket;
3050
a0377dfe
FD
3051 LTTNG_ASSERT(usess);
3052 LTTNG_ASSERT(ua_sess);
3053 LTTNG_ASSERT(ua_chan);
3054 LTTNG_ASSERT(registry);
7972aab2 3055
56047f5a 3056 lttng::urcu::read_lock_guard read_lock;
7972aab2
DG
3057 health_code_update();
3058
3059 /* Get the right consumer socket for the application. */
3060 socket = consumer_find_socket_by_bitness(bitness, usess->consumer);
3061 if (!socket) {
3062 ret = -EINVAL;
3063 goto error;
3064 }
3065
3066 health_code_update();
3067
3068 /* Need one fd for the channel. */
3069 ret = lttng_fd_get(LTTNG_FD_APPS, 1);
3070 if (ret < 0) {
3071 ERR("Exhausted number of available FD upon create channel");
3072 goto error;
3073 }
3074
3075 /*
3076 * Ask consumer to create channel. The consumer will return the number of
3077 * stream we have to expect.
3078 */
28ab034a
JG
3079 ret = ust_consumer_ask_channel(
3080 ua_sess, ua_chan, usess->consumer, socket, registry, usess->current_trace_chunk);
7972aab2
DG
3081 if (ret < 0) {
3082 goto error_ask;
3083 }
3084
3085 /*
3086 * Compute the number of fd needed before receiving them. It must be 2 per
3087 * stream (2 being the default value here).
3088 */
3089 nb_fd = DEFAULT_UST_STREAM_FD_NUM * ua_chan->expected_stream_count;
3090
3091 /* Reserve the amount of file descriptor we need. */
3092 ret = lttng_fd_get(LTTNG_FD_APPS, nb_fd);
3093 if (ret < 0) {
3094 ERR("Exhausted number of available FD upon create channel");
3095 goto error_fd_get_stream;
3096 }
3097
3098 health_code_update();
3099
3100 /*
db786d44 3101 * Now get the channel from the consumer. This call will populate the stream
7972aab2
DG
3102 * list of that channel and set the ust objects.
3103 */
d9078d0c
DG
3104 if (usess->consumer->enabled) {
3105 ret = ust_consumer_get_channel(socket, ua_chan);
3106 if (ret < 0) {
3107 goto error_destroy;
3108 }
7972aab2
DG
3109 }
3110
7972aab2
DG
3111 return 0;
3112
3113error_destroy:
3114 lttng_fd_put(LTTNG_FD_APPS, nb_fd);
3115error_fd_get_stream:
3116 /*
3117 * Initiate a destroy channel on the consumer since we had an error
3118 * handling it on our side. The return value is of no importance since we
3119 * already have a ret value set by the previous error that we need to
3120 * return.
3121 */
3122 (void) ust_consumer_destroy_channel(socket, ua_chan);
3123error_ask:
3124 lttng_fd_put(LTTNG_FD_APPS, 1);
3125error:
3126 health_code_update();
7972aab2
DG
3127 return ret;
3128}
3129
3130/*
3131 * Duplicate the ust data object of the ust app stream and save it in the
3132 * buffer registry stream.
3133 *
3134 * Return 0 on success or else a negative value.
3135 */
3136static int duplicate_stream_object(struct buffer_reg_stream *reg_stream,
28ab034a 3137 struct ust_app_stream *stream)
7972aab2
DG
3138{
3139 int ret;
3140
a0377dfe
FD
3141 LTTNG_ASSERT(reg_stream);
3142 LTTNG_ASSERT(stream);
7972aab2 3143
86ba1e22 3144 /* Duplicating a stream requires 2 new fds. Reserve them. */
7972aab2
DG
3145 ret = lttng_fd_get(LTTNG_FD_APPS, 2);
3146 if (ret < 0) {
3147 ERR("Exhausted number of available FD upon duplicate stream");
3148 goto error;
3149 }
3150
3151 /* Duplicate object for stream once the original is in the registry. */
28ab034a 3152 ret = lttng_ust_ctl_duplicate_ust_object_data(&stream->obj, reg_stream->obj.ust);
7972aab2
DG
3153 if (ret < 0) {
3154 ERR("Duplicate stream obj from %p to %p failed with ret %d",
28ab034a
JG
3155 reg_stream->obj.ust,
3156 stream->obj,
3157 ret);
7972aab2
DG
3158 lttng_fd_put(LTTNG_FD_APPS, 2);
3159 goto error;
3160 }
3161 stream->handle = stream->obj->handle;
3162
3163error:
3164 return ret;
3165}
3166
3167/*
3168 * Duplicate the ust data object of the ust app. channel and save it in the
3169 * buffer registry channel.
3170 *
3171 * Return 0 on success or else a negative value.
3172 */
3273699d 3173static int duplicate_channel_object(struct buffer_reg_channel *buf_reg_chan,
28ab034a 3174 struct ust_app_channel *ua_chan)
7972aab2
DG
3175{
3176 int ret;
3177
a0377dfe
FD
3178 LTTNG_ASSERT(buf_reg_chan);
3179 LTTNG_ASSERT(ua_chan);
7972aab2 3180
86ba1e22 3181 /* Duplicating a channel requires 1 new fd. Reserve it. */
7972aab2
DG
3182 ret = lttng_fd_get(LTTNG_FD_APPS, 1);
3183 if (ret < 0) {
3184 ERR("Exhausted number of available FD upon duplicate channel");
3185 goto error_fd_get;
3186 }
3187
3188 /* Duplicate object for stream once the original is in the registry. */
b623cb6a 3189 ret = lttng_ust_ctl_duplicate_ust_object_data(&ua_chan->obj, buf_reg_chan->obj.ust);
7972aab2
DG
3190 if (ret < 0) {
3191 ERR("Duplicate channel obj from %p to %p failed with ret: %d",
28ab034a
JG
3192 buf_reg_chan->obj.ust,
3193 ua_chan->obj,
3194 ret);
7972aab2
DG
3195 goto error;
3196 }
3197 ua_chan->handle = ua_chan->obj->handle;
3198
3199 return 0;
3200
3201error:
3202 lttng_fd_put(LTTNG_FD_APPS, 1);
3203error_fd_get:
3204 return ret;
3205}
3206
3207/*
3208 * For a given channel buffer registry, setup all streams of the given ust
3209 * application channel.
3210 *
3211 * Return 0 on success or else a negative value.
3212 */
3273699d 3213static int setup_buffer_reg_streams(struct buffer_reg_channel *buf_reg_chan,
28ab034a
JG
3214 struct ust_app_channel *ua_chan,
3215 struct ust_app *app)
7972aab2
DG
3216{
3217 int ret = 0;
3218 struct ust_app_stream *stream, *stmp;
3219
a0377dfe
FD
3220 LTTNG_ASSERT(buf_reg_chan);
3221 LTTNG_ASSERT(ua_chan);
7972aab2
DG
3222
3223 DBG2("UST app setup buffer registry stream");
3224
3225 /* Send all streams to application. */
28ab034a 3226 cds_list_for_each_entry_safe (stream, stmp, &ua_chan->streams.head, list) {
7972aab2
DG
3227 struct buffer_reg_stream *reg_stream;
3228
3229 ret = buffer_reg_stream_create(&reg_stream);
3230 if (ret < 0) {
3231 goto error;
3232 }
3233
3234 /*
3235 * Keep original pointer and nullify it in the stream so the delete
3236 * stream call does not release the object.
3237 */
3238 reg_stream->obj.ust = stream->obj;
cd9adb8b 3239 stream->obj = nullptr;
3273699d 3240 buffer_reg_stream_add(reg_stream, buf_reg_chan);
421cb601 3241
7972aab2
DG
3242 /* We don't need the streams anymore. */
3243 cds_list_del(&stream->list);
fb45065e 3244 delete_ust_app_stream(-1, stream, app);
7972aab2 3245 }
421cb601 3246
7972aab2
DG
3247error:
3248 return ret;
3249}
3250
3251/*
3252 * Create a buffer registry channel for the given session registry and
3253 * application channel object. If regp pointer is valid, it's set with the
3254 * created object. Important, the created object is NOT added to the session
3255 * registry hash table.
3256 *
3257 * Return 0 on success else a negative value.
3258 */
3259static int create_buffer_reg_channel(struct buffer_reg_session *reg_sess,
28ab034a
JG
3260 struct ust_app_channel *ua_chan,
3261 struct buffer_reg_channel **regp)
7972aab2
DG
3262{
3263 int ret;
cd9adb8b 3264 struct buffer_reg_channel *buf_reg_chan = nullptr;
7972aab2 3265
a0377dfe
FD
3266 LTTNG_ASSERT(reg_sess);
3267 LTTNG_ASSERT(ua_chan);
7972aab2
DG
3268
3269 DBG2("UST app creating buffer registry channel for %s", ua_chan->name);
3270
3271 /* Create buffer registry channel. */
3273699d 3272 ret = buffer_reg_channel_create(ua_chan->tracing_channel_id, &buf_reg_chan);
7972aab2
DG
3273 if (ret < 0) {
3274 goto error_create;
421cb601 3275 }
a0377dfe 3276 LTTNG_ASSERT(buf_reg_chan);
3273699d
FD
3277 buf_reg_chan->consumer_key = ua_chan->key;
3278 buf_reg_chan->subbuf_size = ua_chan->attr.subbuf_size;
3279 buf_reg_chan->num_subbuf = ua_chan->attr.num_subbuf;
421cb601 3280
7972aab2 3281 /* Create and add a channel registry to session. */
d7bfb9b0
JG
3282 try {
3283 reg_sess->reg.ust->add_channel(ua_chan->tracing_channel_id);
3284 } catch (const std::exception& ex) {
28ab034a
JG
3285 ERR("Failed to add a channel registry to userspace registry session: %s",
3286 ex.what());
d7bfb9b0 3287 ret = -1;
7972aab2 3288 goto error;
d88aee68 3289 }
d7bfb9b0 3290
3273699d 3291 buffer_reg_channel_add(reg_sess, buf_reg_chan);
d88aee68 3292
7972aab2 3293 if (regp) {
3273699d 3294 *regp = buf_reg_chan;
3d8ca23b 3295 }
d88aee68 3296
7972aab2 3297 return 0;
3d8ca23b
DG
3298
3299error:
7972aab2 3300 /* Safe because the registry channel object was not added to any HT. */
3273699d 3301 buffer_reg_channel_destroy(buf_reg_chan, LTTNG_DOMAIN_UST);
7972aab2 3302error_create:
3d8ca23b 3303 return ret;
421cb601
DG
3304}
3305
55cc08a6 3306/*
7972aab2
DG
3307 * Setup buffer registry channel for the given session registry and application
3308 * channel object. If regp pointer is valid, it's set with the created object.
d0b96690 3309 *
7972aab2 3310 * Return 0 on success else a negative value.
55cc08a6 3311 */
7972aab2 3312static int setup_buffer_reg_channel(struct buffer_reg_session *reg_sess,
28ab034a
JG
3313 struct ust_app_channel *ua_chan,
3314 struct buffer_reg_channel *buf_reg_chan,
3315 struct ust_app *app)
55cc08a6 3316{
7972aab2 3317 int ret;
55cc08a6 3318
a0377dfe
FD
3319 LTTNG_ASSERT(reg_sess);
3320 LTTNG_ASSERT(buf_reg_chan);
3321 LTTNG_ASSERT(ua_chan);
3322 LTTNG_ASSERT(ua_chan->obj);
55cc08a6 3323
7972aab2 3324 DBG2("UST app setup buffer registry channel for %s", ua_chan->name);
55cc08a6 3325
7972aab2 3326 /* Setup all streams for the registry. */
3273699d 3327 ret = setup_buffer_reg_streams(buf_reg_chan, ua_chan, app);
7972aab2 3328 if (ret < 0) {
55cc08a6
DG
3329 goto error;
3330 }
3331
3273699d 3332 buf_reg_chan->obj.ust = ua_chan->obj;
cd9adb8b 3333 ua_chan->obj = nullptr;
55cc08a6 3334
7972aab2 3335 return 0;
55cc08a6
DG
3336
3337error:
3273699d
FD
3338 buffer_reg_channel_remove(reg_sess, buf_reg_chan);
3339 buffer_reg_channel_destroy(buf_reg_chan, LTTNG_DOMAIN_UST);
55cc08a6
DG
3340 return ret;
3341}
3342
edb67388 3343/*
7972aab2 3344 * Send buffer registry channel to the application.
d0b96690 3345 *
7972aab2 3346 * Return 0 on success else a negative value.
edb67388 3347 */
3273699d 3348static int send_channel_uid_to_ust(struct buffer_reg_channel *buf_reg_chan,
28ab034a
JG
3349 struct ust_app *app,
3350 struct ust_app_session *ua_sess,
3351 struct ust_app_channel *ua_chan)
edb67388
DG
3352{
3353 int ret;
7972aab2 3354 struct buffer_reg_stream *reg_stream;
edb67388 3355
a0377dfe
FD
3356 LTTNG_ASSERT(buf_reg_chan);
3357 LTTNG_ASSERT(app);
3358 LTTNG_ASSERT(ua_sess);
3359 LTTNG_ASSERT(ua_chan);
7972aab2
DG
3360
3361 DBG("UST app sending buffer registry channel to ust sock %d", app->sock);
3362
3273699d 3363 ret = duplicate_channel_object(buf_reg_chan, ua_chan);
edb67388
DG
3364 if (ret < 0) {
3365 goto error;
3366 }
3367
7972aab2
DG
3368 /* Send channel to the application. */
3369 ret = ust_consumer_send_channel_to_ust(app, ua_sess, ua_chan);
a7169585 3370 if (ret == -EPIPE || ret == -LTTNG_UST_ERR_EXITING) {
28ab034a 3371 ret = -ENOTCONN; /* Caused by app exiting. */
a7169585 3372 goto error;
be355079
JR
3373 } else if (ret == -EAGAIN) {
3374 /* Caused by timeout. */
28ab034a
JG
3375 WARN("Communication with application %d timed out on send_channel for channel \"%s\" of session \"%" PRIu64
3376 "\".",
3377 app->pid,
3378 ua_chan->name,
3379 ua_sess->tracing_id);
be355079
JR
3380 /* Treat this the same way as an application that is exiting. */
3381 ret = -ENOTCONN;
3382 goto error;
a7169585 3383 } else if (ret < 0) {
7972aab2
DG
3384 goto error;
3385 }
3386
3387 health_code_update();
3388
3389 /* Send all streams to application. */
3273699d 3390 pthread_mutex_lock(&buf_reg_chan->stream_list_lock);
28ab034a 3391 cds_list_for_each_entry (reg_stream, &buf_reg_chan->streams, lnode) {
9ee61e74 3392 struct ust_app_stream stream = {};
7972aab2
DG
3393
3394 ret = duplicate_stream_object(reg_stream, &stream);
3395 if (ret < 0) {
3396 goto error_stream_unlock;
3397 }
3398
3399 ret = ust_consumer_send_stream_to_ust(app, ua_chan, &stream);
3400 if (ret < 0) {
a7169585
MD
3401 if (ret == -EPIPE || ret == -LTTNG_UST_ERR_EXITING) {
3402 ret = -ENOTCONN; /* Caused by app exiting. */
be355079
JR
3403 } else if (ret == -EAGAIN) {
3404 /*
3405 * Caused by timeout.
3406 * Treat this the same way as an application
3407 * that is exiting.
3408 */
28ab034a
JG
3409 WARN("Communication with application %d timed out on send_stream for stream of channel \"%s\" of session \"%" PRIu64
3410 "\".",
3411 app->pid,
3412 ua_chan->name,
3413 ua_sess->tracing_id);
be355079 3414 ret = -ENOTCONN;
a7169585 3415 }
be355079 3416 (void) release_ust_app_stream(-1, &stream, app);
7972aab2
DG
3417 goto error_stream_unlock;
3418 }
edb67388 3419
7972aab2
DG
3420 /*
3421 * The return value is not important here. This function will output an
3422 * error if needed.
3423 */
fb45065e 3424 (void) release_ust_app_stream(-1, &stream, app);
7972aab2 3425 }
7972aab2
DG
3426
3427error_stream_unlock:
3273699d 3428 pthread_mutex_unlock(&buf_reg_chan->stream_list_lock);
edb67388
DG
3429error:
3430 return ret;
3431}
3432
9730260e 3433/*
7972aab2
DG
3434 * Create and send to the application the created buffers with per UID buffers.
3435 *
9acdc1d6 3436 * This MUST be called with a RCU read side lock acquired.
71e0a100 3437 * The session list lock and the session's lock must be acquired.
9acdc1d6 3438 *
7972aab2 3439 * Return 0 on success else a negative value.
9730260e 3440 */
7972aab2 3441static int create_channel_per_uid(struct ust_app *app,
28ab034a
JG
3442 struct ltt_ust_session *usess,
3443 struct ust_app_session *ua_sess,
3444 struct ust_app_channel *ua_chan)
9730260e
DG
3445{
3446 int ret;
7972aab2 3447 struct buffer_reg_uid *reg_uid;
3273699d 3448 struct buffer_reg_channel *buf_reg_chan;
e098433c 3449 enum lttng_error_code notification_ret;
9730260e 3450
a0377dfe
FD
3451 LTTNG_ASSERT(app);
3452 LTTNG_ASSERT(usess);
3453 LTTNG_ASSERT(ua_sess);
3454 LTTNG_ASSERT(ua_chan);
48b7cdc2 3455 ASSERT_RCU_READ_LOCKED();
7972aab2
DG
3456
3457 DBG("UST app creating channel %s with per UID buffers", ua_chan->name);
3458
a0a4f314
JG
3459 /* Guaranteed to exist; will not throw. */
3460 const auto session = ltt_session::find_session(ua_sess->tracing_id);
3461 ASSERT_SESSION_LIST_LOCKED();
3462
d7bfb9b0 3463 reg_uid = buffer_reg_uid_find(usess->id, app->abi.bits_per_long, app->uid);
7972aab2
DG
3464 /*
3465 * The session creation handles the creation of this global registry
3466 * object. If none can be find, there is a code flow problem or a
3467 * teardown race.
3468 */
a0377dfe 3469 LTTNG_ASSERT(reg_uid);
7972aab2 3470
28ab034a 3471 buf_reg_chan = buffer_reg_channel_find(ua_chan->tracing_channel_id, reg_uid);
3273699d 3472 if (buf_reg_chan) {
2721f7ea
JG
3473 goto send_channel;
3474 }
7972aab2 3475
2721f7ea 3476 /* Create the buffer registry channel object. */
3273699d 3477 ret = create_buffer_reg_channel(reg_uid->registry, ua_chan, &buf_reg_chan);
2721f7ea 3478 if (ret < 0) {
28ab034a 3479 ERR("Error creating the UST channel \"%s\" registry instance", ua_chan->name);
2721f7ea
JG
3480 goto error;
3481 }
f14256d6 3482
2721f7ea
JG
3483 /*
3484 * Create the buffers on the consumer side. This call populates the
3485 * ust app channel object with all streams and data object.
3486 */
28ab034a
JG
3487 ret = do_consumer_create_channel(
3488 usess, ua_sess, ua_chan, app->abi.bits_per_long, reg_uid->registry->reg.ust);
2721f7ea 3489 if (ret < 0) {
28ab034a 3490 ERR("Error creating UST channel \"%s\" on the consumer daemon", ua_chan->name);
7972aab2
DG
3491
3492 /*
2721f7ea
JG
3493 * Let's remove the previously created buffer registry channel so
3494 * it's not visible anymore in the session registry.
7972aab2 3495 */
d7bfb9b0
JG
3496 auto locked_registry = reg_uid->registry->reg.ust->lock();
3497 try {
3498 locked_registry->remove_channel(ua_chan->tracing_channel_id, false);
28ab034a 3499 } catch (const std::exception& ex) {
d7bfb9b0
JG
3500 DBG("Could not find channel for removal: %s", ex.what());
3501 }
3273699d
FD
3502 buffer_reg_channel_remove(reg_uid->registry, buf_reg_chan);
3503 buffer_reg_channel_destroy(buf_reg_chan, LTTNG_DOMAIN_UST);
2721f7ea 3504 goto error;
7972aab2
DG
3505 }
3506
2721f7ea
JG
3507 /*
3508 * Setup the streams and add it to the session registry.
3509 */
28ab034a 3510 ret = setup_buffer_reg_channel(reg_uid->registry, ua_chan, buf_reg_chan, app);
2721f7ea
JG
3511 if (ret < 0) {
3512 ERR("Error setting up UST channel \"%s\"", ua_chan->name);
3513 goto error;
3514 }
3515
d7bfb9b0
JG
3516 {
3517 auto locked_registry = reg_uid->registry->reg.ust->lock();
4bcf2294 3518 auto& ust_reg_chan = locked_registry->channel(ua_chan->tracing_channel_id);
e9404c27 3519
d7bfb9b0
JG
3520 ust_reg_chan._consumer_key = ua_chan->key;
3521 }
3522
3523 /* Notify the notification subsystem of the channel's creation. */
e098433c 3524 notification_ret = notification_thread_command_add_channel(
28ab034a
JG
3525 the_notification_thread_handle,
3526 session->id,
3527 ua_chan->name,
3528 ua_chan->key,
3529 LTTNG_DOMAIN_UST,
3530 ua_chan->attr.subbuf_size * ua_chan->attr.num_subbuf);
e098433c 3531 if (notification_ret != LTTNG_OK) {
28ab034a 3532 ret = -(int) notification_ret;
e098433c
JG
3533 ERR("Failed to add channel to notification thread");
3534 goto error;
e9404c27
JG
3535 }
3536
2721f7ea 3537send_channel:
66ff8e3f 3538 /* Send buffers to the application. */
3273699d 3539 ret = send_channel_uid_to_ust(buf_reg_chan, app, ua_sess, ua_chan);
66ff8e3f
JG
3540 if (ret < 0) {
3541 if (ret != -ENOTCONN) {
3542 ERR("Error sending channel to application");
3543 }
3544 goto error;
3545 }
3546
9730260e
DG
3547error:
3548 return ret;
3549}
3550
78f0bacd 3551/*
7972aab2
DG
3552 * Create and send to the application the created buffers with per PID buffers.
3553 *
fad1ed2f 3554 * Called with UST app session lock held.
71e0a100 3555 * The session list lock and the session's lock must be acquired.
fad1ed2f 3556 *
7972aab2 3557 * Return 0 on success else a negative value.
78f0bacd 3558 */
7972aab2 3559static int create_channel_per_pid(struct ust_app *app,
28ab034a
JG
3560 struct ltt_ust_session *usess,
3561 struct ust_app_session *ua_sess,
3562 struct ust_app_channel *ua_chan)
78f0bacd 3563{
8535a6d9 3564 int ret;
b0f2e8db 3565 lsu::registry_session *registry;
e9404c27 3566 enum lttng_error_code cmd_ret;
e9404c27 3567 uint64_t chan_reg_key;
78f0bacd 3568
a0377dfe
FD
3569 LTTNG_ASSERT(app);
3570 LTTNG_ASSERT(usess);
3571 LTTNG_ASSERT(ua_sess);
3572 LTTNG_ASSERT(ua_chan);
7972aab2
DG
3573
3574 DBG("UST app creating channel %s with per PID buffers", ua_chan->name);
3575
56047f5a 3576 lttng::urcu::read_lock_guard read_lock;
7972aab2
DG
3577
3578 registry = get_session_registry(ua_sess);
fad1ed2f 3579 /* The UST app session lock is held, registry shall not be null. */
a0377dfe 3580 LTTNG_ASSERT(registry);
7972aab2 3581
a0a4f314
JG
3582 /* Guaranteed to exist; will not throw. */
3583 const auto session = ltt_session::find_session(ua_sess->tracing_id);
3584 ASSERT_LOCKED(session->_lock);
3585 ASSERT_SESSION_LIST_LOCKED();
3586
7972aab2 3587 /* Create and add a new channel registry to session. */
d7bfb9b0
JG
3588 try {
3589 registry->add_channel(ua_chan->key);
3590 } catch (const std::exception& ex) {
28ab034a
JG
3591 ERR("Error creating the UST channel \"%s\" registry instance: %s",
3592 ua_chan->name,
3593 ex.what());
d7bfb9b0 3594 ret = -1;
78f0bacd
DG
3595 goto error;
3596 }
3597
7972aab2 3598 /* Create and get channel on the consumer side. */
28ab034a 3599 ret = do_consumer_create_channel(usess, ua_sess, ua_chan, app->abi.bits_per_long, registry);
7972aab2 3600 if (ret < 0) {
28ab034a 3601 ERR("Error creating UST channel \"%s\" on the consumer daemon", ua_chan->name);
5b951542 3602 goto error_remove_from_registry;
7972aab2
DG
3603 }
3604
3605 ret = send_channel_pid_to_ust(app, ua_sess, ua_chan);
3606 if (ret < 0) {
a7169585
MD
3607 if (ret != -ENOTCONN) {
3608 ERR("Error sending channel to application");
3609 }
5b951542 3610 goto error_remove_from_registry;
7972aab2 3611 }
8535a6d9 3612
e9404c27 3613 chan_reg_key = ua_chan->key;
d7bfb9b0
JG
3614 {
3615 auto locked_registry = registry->lock();
3616
4bcf2294 3617 auto& ust_reg_chan = locked_registry->channel(chan_reg_key);
d7bfb9b0
JG
3618 ust_reg_chan._consumer_key = ua_chan->key;
3619 }
e9404c27 3620
28ab034a
JG
3621 cmd_ret = notification_thread_command_add_channel(the_notification_thread_handle,
3622 session->id,
3623 ua_chan->name,
3624 ua_chan->key,
3625 LTTNG_DOMAIN_UST,
3626 ua_chan->attr.subbuf_size *
3627 ua_chan->attr.num_subbuf);
e9404c27 3628 if (cmd_ret != LTTNG_OK) {
28ab034a 3629 ret = -(int) cmd_ret;
e9404c27 3630 ERR("Failed to add channel to notification thread");
5b951542 3631 goto error_remove_from_registry;
e9404c27
JG
3632 }
3633
5b951542
MD
3634error_remove_from_registry:
3635 if (ret) {
d7bfb9b0
JG
3636 try {
3637 auto locked_registry = registry->lock();
3638 locked_registry->remove_channel(ua_chan->key, false);
3639 } catch (const std::exception& ex) {
3640 DBG("Could not find channel for removal: %s", ex.what());
3641 }
5b951542 3642 }
78f0bacd
DG
3643error:
3644 return ret;
3645}
3646
3647/*
7972aab2 3648 * From an already allocated ust app channel, create the channel buffers if
88e3c2f5 3649 * needed and send them to the application. This MUST be called with a RCU read
7972aab2
DG
3650 * side lock acquired.
3651 *
fad1ed2f
JR
3652 * Called with UST app session lock held.
3653 *
a7169585
MD
3654 * Return 0 on success or else a negative value. Returns -ENOTCONN if
3655 * the application exited concurrently.
78f0bacd 3656 */
88e3c2f5 3657static int ust_app_channel_send(struct ust_app *app,
28ab034a
JG
3658 struct ltt_ust_session *usess,
3659 struct ust_app_session *ua_sess,
3660 struct ust_app_channel *ua_chan)
78f0bacd 3661{
7972aab2 3662 int ret;
78f0bacd 3663
a0377dfe
FD
3664 LTTNG_ASSERT(app);
3665 LTTNG_ASSERT(usess);
3666 LTTNG_ASSERT(usess->active);
3667 LTTNG_ASSERT(ua_sess);
3668 LTTNG_ASSERT(ua_chan);
48b7cdc2 3669 ASSERT_RCU_READ_LOCKED();
7972aab2
DG
3670
3671 /* Handle buffer type before sending the channel to the application. */
3672 switch (usess->buffer_type) {
3673 case LTTNG_BUFFER_PER_UID:
3674 {
3675 ret = create_channel_per_uid(app, usess, ua_sess, ua_chan);
3676 if (ret < 0) {
3677 goto error;
3678 }
3679 break;
3680 }
3681 case LTTNG_BUFFER_PER_PID:
3682 {
3683 ret = create_channel_per_pid(app, usess, ua_sess, ua_chan);
3684 if (ret < 0) {
3685 goto error;
3686 }
3687 break;
3688 }
3689 default:
a0377dfe 3690 abort();
7972aab2 3691 ret = -EINVAL;
78f0bacd
DG
3692 goto error;
3693 }
3694
7972aab2
DG
3695 /* Initialize ust objd object using the received handle and add it. */
3696 lttng_ht_node_init_ulong(&ua_chan->ust_objd_node, ua_chan->handle);
3697 lttng_ht_add_unique_ulong(app->ust_objd, &ua_chan->ust_objd_node);
78f0bacd 3698
7972aab2
DG
3699 /* If channel is not enabled, disable it on the tracer */
3700 if (!ua_chan->enabled) {
3701 ret = disable_ust_channel(app, ua_sess, ua_chan);
3702 if (ret < 0) {
3703 goto error;
3704 }
78f0bacd
DG
3705 }
3706
3707error:
3708 return ret;
3709}
3710
284d8f55 3711/*
88e3c2f5 3712 * Create UST app channel and return it through ua_chanp if not NULL.
d0b96690 3713 *
36b588ed 3714 * Called with UST app session lock and RCU read-side lock held.
7972aab2 3715 *
88e3c2f5 3716 * Return 0 on success or else a negative value.
284d8f55 3717 */
88e3c2f5 3718static int ust_app_channel_allocate(struct ust_app_session *ua_sess,
28ab034a
JG
3719 struct ltt_ust_channel *uchan,
3720 enum lttng_ust_abi_chan_type type,
3721 struct ltt_ust_session *usess __attribute__((unused)),
3722 struct ust_app_channel **ua_chanp)
5b4a0ec0
DG
3723{
3724 int ret = 0;
bec39940
DG
3725 struct lttng_ht_iter iter;
3726 struct lttng_ht_node_str *ua_chan_node;
5b4a0ec0
DG
3727 struct ust_app_channel *ua_chan;
3728
48b7cdc2
FD
3729 ASSERT_RCU_READ_LOCKED();
3730
5b4a0ec0 3731 /* Lookup channel in the ust app session */
28ab034a 3732 lttng_ht_lookup(ua_sess->channels, (void *) uchan->name, &iter);
00d7d903 3733 ua_chan_node = lttng_ht_iter_get_node<lttng_ht_node_str>(&iter);
cd9adb8b 3734 if (ua_chan_node != nullptr) {
0114db0e 3735 ua_chan = lttng::utils::container_of(ua_chan_node, &ust_app_channel::node);
fc34caaa 3736 goto end;
5b4a0ec0
DG
3737 }
3738
d0b96690 3739 ua_chan = alloc_ust_app_channel(uchan->name, ua_sess, &uchan->attr);
cd9adb8b 3740 if (ua_chan == nullptr) {
fc34caaa 3741 /* Only malloc can fail here */
4d710ac2 3742 ret = -ENOMEM;
88e3c2f5 3743 goto error;
fc34caaa
DG
3744 }
3745 shadow_copy_channel(ua_chan, uchan);
3746
ffe60014
DG
3747 /* Set channel type. */
3748 ua_chan->attr.type = type;
3749
d0b96690
DG
3750 /* Only add the channel if successful on the tracer side. */
3751 lttng_ht_add_unique_str(ua_sess->channels, &ua_chan->node);
fc34caaa 3752end:
4d710ac2
DG
3753 if (ua_chanp) {
3754 *ua_chanp = ua_chan;
3755 }
3756
3757 /* Everything went well. */
3758 return 0;
5b4a0ec0
DG
3759
3760error:
4d710ac2 3761 return ret;
5b4a0ec0
DG
3762}
3763
3764/*
3765 * Create UST app event and create it on the tracer side.
d0b96690 3766 *
993578ff 3767 * Must be called with the RCU read side lock held.
d0b96690 3768 * Called with ust app session mutex held.
5b4a0ec0 3769 */
28ab034a
JG
3770static int create_ust_app_event(struct ust_app_channel *ua_chan,
3771 struct ltt_ust_event *uevent,
3772 struct ust_app *app)
284d8f55 3773{
edb67388 3774 int ret = 0;
5b4a0ec0 3775 struct ust_app_event *ua_event;
284d8f55 3776
48b7cdc2
FD
3777 ASSERT_RCU_READ_LOCKED();
3778
edb67388 3779 ua_event = alloc_ust_app_event(uevent->attr.name, &uevent->attr);
cd9adb8b 3780 if (ua_event == nullptr) {
20533947 3781 /* Only failure mode of alloc_ust_app_event(). */
edb67388 3782 ret = -ENOMEM;
fc34caaa 3783 goto end;
5b4a0ec0 3784 }
edb67388 3785 shadow_copy_event(ua_event, uevent);
5b4a0ec0 3786
edb67388 3787 /* Create it on the tracer side */
f46376a1 3788 ret = create_ust_event(app, ua_chan, ua_event);
284d8f55 3789 if (ret < 0) {
e9f11505
JG
3790 /*
3791 * Not found previously means that it does not exist on the
3792 * tracer. If the application reports that the event existed,
3793 * it means there is a bug in the sessiond or lttng-ust
3794 * (or corruption, etc.)
3795 */
3796 if (ret == -LTTNG_UST_ERR_EXIST) {
3797 ERR("Tracer for application reported that an event being created already existed: "
28ab034a
JG
3798 "event_name = \"%s\", pid = %d, ppid = %d, uid = %d, gid = %d",
3799 uevent->attr.name,
3800 app->pid,
3801 app->ppid,
3802 app->uid,
3803 app->gid);
e9f11505 3804 }
284d8f55
DG
3805 goto error;
3806 }
3807
d0b96690 3808 add_unique_ust_app_event(ua_chan, ua_event);
284d8f55 3809
28ab034a 3810 DBG2("UST app create event completed: app = '%s' pid = %d", app->name, app->pid);
7f79d3a1 3811
edb67388 3812end:
fc34caaa
DG
3813 return ret;
3814
5b4a0ec0 3815error:
fc34caaa 3816 /* Valid. Calling here is already in a read side lock */
fb45065e 3817 delete_ust_app_event(-1, ua_event, app);
edb67388 3818 return ret;
5b4a0ec0
DG
3819}
3820
993578ff
JR
3821/*
3822 * Create UST app event notifier rule and create it on the tracer side.
3823 *
3824 * Must be called with the RCU read side lock held.
3825 * Called with ust app session mutex held.
3826 */
28ab034a 3827static int create_ust_app_event_notifier_rule(struct lttng_trigger *trigger, struct ust_app *app)
993578ff
JR
3828{
3829 int ret = 0;
3830 struct ust_app_event_notifier_rule *ua_event_notifier_rule;
3831
48b7cdc2
FD
3832 ASSERT_RCU_READ_LOCKED();
3833
267d66aa 3834 ua_event_notifier_rule = alloc_ust_app_event_notifier_rule(trigger);
cd9adb8b 3835 if (ua_event_notifier_rule == nullptr) {
993578ff
JR
3836 ret = -ENOMEM;
3837 goto end;
3838 }
3839
3840 /* Create it on the tracer side. */
3841 ret = create_ust_event_notifier(app, ua_event_notifier_rule);
3842 if (ret < 0) {
3843 /*
3844 * Not found previously means that it does not exist on the
3845 * tracer. If the application reports that the event existed,
3846 * it means there is a bug in the sessiond or lttng-ust
3847 * (or corruption, etc.)
3848 */
3849 if (ret == -LTTNG_UST_ERR_EXIST) {
3850 ERR("Tracer for application reported that an event notifier being created already exists: "
28ab034a
JG
3851 "token = \"%" PRIu64 "\", pid = %d, ppid = %d, uid = %d, gid = %d",
3852 lttng_trigger_get_tracer_token(trigger),
3853 app->pid,
3854 app->ppid,
3855 app->uid,
3856 app->gid);
993578ff
JR
3857 }
3858 goto error;
3859 }
3860
3861 lttng_ht_add_unique_u64(app->token_to_event_notifier_rule_ht,
28ab034a 3862 &ua_event_notifier_rule->node);
993578ff 3863
9324443a 3864 DBG2("UST app create token event rule completed: app = '%s', pid = %d, token = %" PRIu64,
28ab034a
JG
3865 app->name,
3866 app->pid,
3867 lttng_trigger_get_tracer_token(trigger));
993578ff 3868
533a90fb 3869 goto end;
993578ff
JR
3870
3871error:
3872 /* The RCU read side lock is already being held by the caller. */
3873 delete_ust_app_event_notifier_rule(-1, ua_event_notifier_rule, app);
533a90fb 3874end:
993578ff
JR
3875 return ret;
3876}
3877
5b4a0ec0
DG
3878/*
3879 * Create UST metadata and open it on the tracer side.
d0b96690 3880 *
7972aab2 3881 * Called with UST app session lock held and RCU read side lock.
5b4a0ec0
DG
3882 */
3883static int create_ust_app_metadata(struct ust_app_session *ua_sess,
28ab034a
JG
3884 struct ust_app *app,
3885 struct consumer_output *consumer)
5b4a0ec0
DG
3886{
3887 int ret = 0;
ffe60014 3888 struct ust_app_channel *metadata;
d88aee68 3889 struct consumer_socket *socket;
5b4a0ec0 3890
a0377dfe
FD
3891 LTTNG_ASSERT(ua_sess);
3892 LTTNG_ASSERT(app);
3893 LTTNG_ASSERT(consumer);
48b7cdc2 3894 ASSERT_RCU_READ_LOCKED();
5b4a0ec0 3895
d7bfb9b0 3896 auto locked_registry = get_locked_session_registry(ua_sess);
fad1ed2f 3897 /* The UST app session is held registry shall not be null. */
d7bfb9b0 3898 LTTNG_ASSERT(locked_registry);
ce34fcd0 3899
a0a4f314
JG
3900 /* Guaranteed to exist; will not throw. */
3901 const auto session = ltt_session::find_session(ua_sess->tracing_id);
3902 ASSERT_LOCKED(session->_lock);
3903 ASSERT_SESSION_LIST_LOCKED();
3904
1b532a60 3905 /* Metadata already exists for this registry or it was closed previously */
d7bfb9b0 3906 if (locked_registry->_metadata_key || locked_registry->_metadata_closed) {
7972aab2
DG
3907 ret = 0;
3908 goto error;
5b4a0ec0
DG
3909 }
3910
ffe60014 3911 /* Allocate UST metadata */
cd9adb8b 3912 metadata = alloc_ust_app_channel(DEFAULT_METADATA_NAME, ua_sess, nullptr);
ffe60014
DG
3913 if (!metadata) {
3914 /* malloc() failed */
3915 ret = -ENOMEM;
3916 goto error;
3917 }
5b4a0ec0 3918
ad7a9107 3919 memcpy(&metadata->attr, &ua_sess->metadata_attr, sizeof(metadata->attr));
5b4a0ec0 3920
7972aab2
DG
3921 /* Need one fd for the channel. */
3922 ret = lttng_fd_get(LTTNG_FD_APPS, 1);
3923 if (ret < 0) {
3924 ERR("Exhausted number of available FD upon create metadata");
3925 goto error;
3926 }
3927
4dc3dfc5 3928 /* Get the right consumer socket for the application. */
d7bfb9b0 3929 socket = consumer_find_socket_by_bitness(app->abi.bits_per_long, consumer);
4dc3dfc5
DG
3930 if (!socket) {
3931 ret = -EINVAL;
3932 goto error_consumer;
3933 }
3934
331744e3
JD
3935 /*
3936 * Keep metadata key so we can identify it on the consumer side. Assign it
3937 * to the registry *before* we ask the consumer so we avoid the race of the
3938 * consumer requesting the metadata and the ask_channel call on our side
3939 * did not returned yet.
3940 */
d7bfb9b0 3941 locked_registry->_metadata_key = metadata->key;
331744e3 3942
d88aee68
DG
3943 /*
3944 * Ask the metadata channel creation to the consumer. The metadata object
3945 * will be created by the consumer and kept their. However, the stream is
3946 * never added or monitored until we do a first push metadata to the
3947 * consumer.
3948 */
28ab034a
JG
3949 ret = ust_consumer_ask_channel(ua_sess,
3950 metadata,
3951 consumer,
3952 socket,
3953 locked_registry.get(),
3954 session->current_trace_chunk);
d88aee68 3955 if (ret < 0) {
f2a444f1 3956 /* Nullify the metadata key so we don't try to close it later on. */
d7bfb9b0 3957 locked_registry->_metadata_key = 0;
d88aee68
DG
3958 goto error_consumer;
3959 }
3960
3961 /*
3962 * The setup command will make the metadata stream be sent to the relayd,
3963 * if applicable, and the thread managing the metadatas. This is important
3964 * because after this point, if an error occurs, the only way the stream
3965 * can be deleted is to be monitored in the consumer.
3966 */
7972aab2 3967 ret = consumer_setup_metadata(socket, metadata->key);
ffe60014 3968 if (ret < 0) {
f2a444f1 3969 /* Nullify the metadata key so we don't try to close it later on. */
d7bfb9b0 3970 locked_registry->_metadata_key = 0;
d88aee68 3971 goto error_consumer;
5b4a0ec0
DG
3972 }
3973
28ab034a 3974 DBG2("UST metadata with key %" PRIu64 " created for app pid %d", metadata->key, app->pid);
5b4a0ec0 3975
d88aee68 3976error_consumer:
b80f0b6c 3977 lttng_fd_put(LTTNG_FD_APPS, 1);
d7bfb9b0 3978 delete_ust_app_channel(-1, metadata, app, locked_registry);
5b4a0ec0 3979error:
ffe60014 3980 return ret;
5b4a0ec0
DG
3981}
3982
5b4a0ec0 3983/*
d88aee68
DG
3984 * Return ust app pointer or NULL if not found. RCU read side lock MUST be
3985 * acquired before calling this function.
5b4a0ec0
DG
3986 */
3987struct ust_app *ust_app_find_by_pid(pid_t pid)
3988{
cd9adb8b 3989 struct ust_app *app = nullptr;
bec39940
DG
3990 struct lttng_ht_node_ulong *node;
3991 struct lttng_ht_iter iter;
5b4a0ec0 3992
28ab034a 3993 lttng_ht_lookup(ust_app_ht, (void *) ((unsigned long) pid), &iter);
00d7d903 3994 node = lttng_ht_iter_get_node<lttng_ht_node_ulong>(&iter);
cd9adb8b 3995 if (node == nullptr) {
5b4a0ec0
DG
3996 DBG2("UST app no found with pid %d", pid);
3997 goto error;
3998 }
5b4a0ec0
DG
3999
4000 DBG2("Found UST app by pid %d", pid);
4001
0114db0e 4002 app = lttng::utils::container_of(node, &ust_app::pid_n);
5b4a0ec0
DG
4003
4004error:
d88aee68 4005 return app;
5b4a0ec0
DG
4006}
4007
d88aee68
DG
4008/*
4009 * Allocate and init an UST app object using the registration information and
4010 * the command socket. This is called when the command socket connects to the
4011 * session daemon.
4012 *
4013 * The object is returned on success or else NULL.
4014 */
d0b96690 4015struct ust_app *ust_app_create(struct ust_register_msg *msg, int sock)
5b4a0ec0 4016{
5e2abfaf 4017 int ret;
cd9adb8b
JG
4018 struct ust_app *lta = nullptr;
4019 struct lttng_pipe *event_notifier_event_source_pipe = nullptr;
d0b96690 4020
a0377dfe
FD
4021 LTTNG_ASSERT(msg);
4022 LTTNG_ASSERT(sock >= 0);
d0b96690
DG
4023
4024 DBG3("UST app creating application for socket %d", sock);
5b4a0ec0 4025
28ab034a
JG
4026 if ((msg->bits_per_long == 64 && (uatomic_read(&the_ust_consumerd64_fd) == -EINVAL)) ||
4027 (msg->bits_per_long == 32 && (uatomic_read(&the_ust_consumerd32_fd) == -EINVAL))) {
f943b0fb 4028 ERR("Registration failed: application \"%s\" (pid: %d) has "
28ab034a
JG
4029 "%d-bit long, but no consumerd for this size is available.\n",
4030 msg->name,
4031 msg->pid,
4032 msg->bits_per_long);
d0b96690 4033 goto error;
3f2c5fcc 4034 }
d0b96690 4035
5e2abfaf
JG
4036 /*
4037 * Reserve the two file descriptors of the event source pipe. The write
4038 * end will be closed once it is passed to the application, at which
4039 * point a single 'put' will be performed.
4040 */
4041 ret = lttng_fd_get(LTTNG_FD_APPS, 2);
4042 if (ret) {
be355079 4043 ERR("Failed to reserve two file descriptors for the event source pipe while creating a new application instance: app = '%s', pid = %d",
28ab034a
JG
4044 msg->name,
4045 (int) msg->pid);
5e2abfaf
JG
4046 goto error;
4047 }
4048
da873412
JR
4049 event_notifier_event_source_pipe = lttng_pipe_open(FD_CLOEXEC);
4050 if (!event_notifier_event_source_pipe) {
be355079 4051 PERROR("Failed to open application event source pipe: '%s' (pid = %d)",
28ab034a
JG
4052 msg->name,
4053 msg->pid);
da873412
JR
4054 goto error;
4055 }
4056
64803277 4057 lta = zmalloc<ust_app>();
cd9adb8b 4058 if (lta == nullptr) {
5b4a0ec0 4059 PERROR("malloc");
da873412 4060 goto error_free_pipe;
5b4a0ec0
DG
4061 }
4062
a7db814e
JG
4063 urcu_ref_init(&lta->ref);
4064
da873412
JR
4065 lta->event_notifier_group.event_pipe = event_notifier_event_source_pipe;
4066
5b4a0ec0
DG
4067 lta->ppid = msg->ppid;
4068 lta->uid = msg->uid;
4069 lta->gid = msg->gid;
d0b96690 4070
d7bfb9b0
JG
4071 lta->abi = {
4072 .bits_per_long = msg->bits_per_long,
4073 .long_alignment = msg->long_alignment,
4074 .uint8_t_alignment = msg->uint8_t_alignment,
4075 .uint16_t_alignment = msg->uint16_t_alignment,
4076 .uint32_t_alignment = msg->uint32_t_alignment,
4077 .uint64_t_alignment = msg->uint64_t_alignment,
4078 .byte_order = msg->byte_order == LITTLE_ENDIAN ?
28ab034a
JG
4079 lttng::sessiond::trace::byte_order::LITTLE_ENDIAN_ :
4080 lttng::sessiond::trace::byte_order::BIG_ENDIAN_,
d7bfb9b0 4081 };
d0b96690 4082
5b4a0ec0
DG
4083 lta->v_major = msg->major;
4084 lta->v_minor = msg->minor;
d9bf3ca4 4085 lta->sessions = lttng_ht_new(0, LTTNG_HT_TYPE_U64);
d0b96690 4086 lta->ust_objd = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
10b56aef 4087 lta->ust_sessions_objd = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
d0b96690 4088 lta->notify_sock = -1;
993578ff 4089 lta->token_to_event_notifier_rule_ht = lttng_ht_new(0, LTTNG_HT_TYPE_U64);
d88aee68
DG
4090
4091 /* Copy name and make sure it's NULL terminated. */
4092 strncpy(lta->name, msg->name, sizeof(lta->name));
4093 lta->name[UST_APP_PROCNAME_LEN] = '\0';
4094
4095 /*
4096 * Before this can be called, when receiving the registration information,
4097 * the application compatibility is checked. So, at this point, the
4098 * application can work with this session daemon.
4099 */
d0b96690 4100 lta->compatible = 1;
5b4a0ec0 4101
852d0037 4102 lta->pid = msg->pid;
d0b96690 4103 lttng_ht_node_init_ulong(&lta->pid_n, (unsigned long) lta->pid);
852d0037 4104 lta->sock = sock;
cd9adb8b 4105 pthread_mutex_init(&lta->sock_lock, nullptr);
d0b96690 4106 lttng_ht_node_init_ulong(&lta->sock_n, (unsigned long) lta->sock);
5b4a0ec0 4107
d42f20df 4108 CDS_INIT_LIST_HEAD(&lta->teardown_head);
d0b96690 4109 return lta;
da873412
JR
4110
4111error_free_pipe:
4112 lttng_pipe_destroy(event_notifier_event_source_pipe);
5e2abfaf 4113 lttng_fd_put(LTTNG_FD_APPS, 2);
da873412 4114error:
cd9adb8b 4115 return nullptr;
d0b96690
DG
4116}
4117
d88aee68
DG
4118/*
4119 * For a given application object, add it to every hash table.
4120 */
d0b96690
DG
4121void ust_app_add(struct ust_app *app)
4122{
a0377dfe
FD
4123 LTTNG_ASSERT(app);
4124 LTTNG_ASSERT(app->notify_sock >= 0);
d0b96690 4125
cd9adb8b 4126 app->registration_time = time(nullptr);
940c4592 4127
56047f5a 4128 lttng::urcu::read_lock_guard read_lock;
852d0037
DG
4129
4130 /*
4131 * On a re-registration, we want to kick out the previous registration of
4132 * that pid
4133 */
d0b96690 4134 lttng_ht_add_replace_ulong(ust_app_ht, &app->pid_n);
852d0037
DG
4135
4136 /*
4137 * The socket _should_ be unique until _we_ call close. So, a add_unique
4138 * for the ust_app_ht_by_sock is used which asserts fail if the entry was
4139 * already in the table.
4140 */
d0b96690 4141 lttng_ht_add_unique_ulong(ust_app_ht_by_sock, &app->sock_n);
852d0037 4142
d0b96690
DG
4143 /* Add application to the notify socket hash table. */
4144 lttng_ht_node_init_ulong(&app->notify_sock_n, app->notify_sock);
4145 lttng_ht_add_unique_ulong(ust_app_ht_by_notify_sock, &app->notify_sock_n);
5b4a0ec0 4146
be355079 4147 DBG("App registered with pid:%d ppid:%d uid:%d gid:%d sock =%d name:%s "
28ab034a
JG
4148 "notify_sock =%d (version %d.%d)",
4149 app->pid,
4150 app->ppid,
4151 app->uid,
4152 app->gid,
4153 app->sock,
4154 app->name,
4155 app->notify_sock,
4156 app->v_major,
4157 app->v_minor);
d0b96690
DG
4158}
4159
d88aee68
DG
4160/*
4161 * Set the application version into the object.
4162 *
4163 * Return 0 on success else a negative value either an errno code or a
4164 * LTTng-UST error code.
4165 */
d0b96690
DG
4166int ust_app_version(struct ust_app *app)
4167{
d88aee68
DG
4168 int ret;
4169
a0377dfe 4170 LTTNG_ASSERT(app);
d88aee68 4171
fb45065e 4172 pthread_mutex_lock(&app->sock_lock);
b623cb6a 4173 ret = lttng_ust_ctl_tracer_version(app->sock, &app->version);
fb45065e 4174 pthread_mutex_unlock(&app->sock_lock);
d88aee68 4175 if (ret < 0) {
be355079
JR
4176 if (ret == -LTTNG_UST_ERR_EXITING || ret == -EPIPE) {
4177 DBG3("UST app version failed. Application is dead: pid = %d, sock = %d",
28ab034a
JG
4178 app->pid,
4179 app->sock);
be355079
JR
4180 } else if (ret == -EAGAIN) {
4181 WARN("UST app version failed. Communication time out: pid = %d, sock = %d",
28ab034a
JG
4182 app->pid,
4183 app->sock);
d88aee68 4184 } else {
be355079 4185 ERR("UST app version failed with ret %d: pid = %d, sock = %d",
28ab034a
JG
4186 ret,
4187 app->pid,
4188 app->sock);
d88aee68
DG
4189 }
4190 }
4191
4192 return ret;
5b4a0ec0
DG
4193}
4194
783db316
MD
4195bool ust_app_supports_notifiers(const struct ust_app *app)
4196{
4197 return app->v_major >= 9;
4198}
4199
4200bool ust_app_supports_counters(const struct ust_app *app)
4201{
4202 return app->v_major >= 9;
4203}
4204
da873412
JR
4205/*
4206 * Setup the base event notifier group.
4207 *
4208 * Return 0 on success else a negative value either an errno code or a
4209 * LTTng-UST error code.
4210 */
4211int ust_app_setup_event_notifier_group(struct ust_app *app)
4212{
4213 int ret;
4214 int event_pipe_write_fd;
cd9adb8b 4215 struct lttng_ust_abi_object_data *event_notifier_group = nullptr;
da873412 4216 enum lttng_error_code lttng_ret;
533a90fb 4217 enum event_notifier_error_accounting_status event_notifier_error_accounting_status;
da873412 4218
a0377dfe 4219 LTTNG_ASSERT(app);
da873412 4220
783db316
MD
4221 if (!ust_app_supports_notifiers(app)) {
4222 ret = -ENOSYS;
4223 goto error;
4224 }
4225
da873412 4226 /* Get the write side of the pipe. */
28ab034a 4227 event_pipe_write_fd = lttng_pipe_get_writefd(app->event_notifier_group.event_pipe);
da873412
JR
4228
4229 pthread_mutex_lock(&app->sock_lock);
28ab034a
JG
4230 ret = lttng_ust_ctl_create_event_notifier_group(
4231 app->sock, event_pipe_write_fd, &event_notifier_group);
da873412
JR
4232 pthread_mutex_unlock(&app->sock_lock);
4233 if (ret < 0) {
be355079
JR
4234 if (ret == -EPIPE || ret == -LTTNG_UST_ERR_EXITING) {
4235 ret = 0;
4236 DBG3("UST app create event notifier group failed. Application is dead: pid = %d, sock = %d",
28ab034a
JG
4237 app->pid,
4238 app->sock);
be355079
JR
4239 } else if (ret == -EAGAIN) {
4240 ret = 0;
4241 WARN("UST app create event notifier group failed. Communication time out: pid = %d, sock = %d",
28ab034a
JG
4242 app->pid,
4243 app->sock);
da873412 4244 } else {
be355079 4245 ERR("UST app create event notifier group failed with ret %d: pid = %d, sock = %d, event_pipe_write_fd: %d",
28ab034a
JG
4246 ret,
4247 app->pid,
4248 app->sock,
4249 event_pipe_write_fd);
da873412 4250 }
da873412
JR
4251 goto error;
4252 }
4253
5d4193fd
JG
4254 ret = lttng_pipe_write_close(app->event_notifier_group.event_pipe);
4255 if (ret) {
be355079 4256 ERR("Failed to close write end of the application's event source pipe: app = '%s' (pid = %d)",
28ab034a
JG
4257 app->name,
4258 app->pid);
5d4193fd
JG
4259 goto error;
4260 }
4261
5e2abfaf
JG
4262 /*
4263 * Release the file descriptor that was reserved for the write-end of
4264 * the pipe.
4265 */
4266 lttng_fd_put(LTTNG_FD_APPS, 1);
4267
da873412 4268 lttng_ret = notification_thread_command_add_tracer_event_source(
28ab034a
JG
4269 the_notification_thread_handle,
4270 lttng_pipe_get_readfd(app->event_notifier_group.event_pipe),
4271 LTTNG_DOMAIN_UST);
da873412
JR
4272 if (lttng_ret != LTTNG_OK) {
4273 ERR("Failed to add tracer event source to notification thread");
28ab034a 4274 ret = -1;
da873412
JR
4275 goto error;
4276 }
4277
4278 /* Assign handle only when the complete setup is valid. */
4279 app->event_notifier_group.object = event_notifier_group;
533a90fb 4280
28ab034a 4281 event_notifier_error_accounting_status = event_notifier_error_accounting_register_app(app);
783db316
MD
4282 switch (event_notifier_error_accounting_status) {
4283 case EVENT_NOTIFIER_ERROR_ACCOUNTING_STATUS_OK:
4284 break;
4285 case EVENT_NOTIFIER_ERROR_ACCOUNTING_STATUS_UNSUPPORTED:
be355079 4286 DBG3("Failed to setup event notifier error accounting (application does not support notifier error accounting): app socket fd = %d, app name = '%s', app pid = %d",
28ab034a
JG
4287 app->sock,
4288 app->name,
4289 (int) app->pid);
783db316
MD
4290 ret = 0;
4291 goto error_accounting;
4292 case EVENT_NOTIFIER_ERROR_ACCOUNTING_STATUS_APP_DEAD:
be355079 4293 DBG3("Failed to setup event notifier error accounting (application is dead): app socket fd = %d, app name = '%s', app pid = %d",
28ab034a
JG
4294 app->sock,
4295 app->name,
4296 (int) app->pid);
783db316
MD
4297 ret = 0;
4298 goto error_accounting;
4299 default:
533a90fb
FD
4300 ERR("Failed to setup event notifier error accounting for app");
4301 ret = -1;
cd9c532c 4302 goto error_accounting;
533a90fb
FD
4303 }
4304
da873412
JR
4305 return ret;
4306
cd9c532c
FD
4307error_accounting:
4308 lttng_ret = notification_thread_command_remove_tracer_event_source(
28ab034a
JG
4309 the_notification_thread_handle,
4310 lttng_pipe_get_readfd(app->event_notifier_group.event_pipe));
cd9c532c
FD
4311 if (lttng_ret != LTTNG_OK) {
4312 ERR("Failed to remove application tracer event source from notification thread");
4313 }
4314
da873412 4315error:
b623cb6a 4316 lttng_ust_ctl_release_object(app->sock, app->event_notifier_group.object);
da873412 4317 free(app->event_notifier_group.object);
cd9adb8b 4318 app->event_notifier_group.object = nullptr;
da873412
JR
4319 return ret;
4320}
4321
a7db814e 4322static void ust_app_unregister(ust_app& app)
5b4a0ec0 4323{
bec39940 4324 struct lttng_ht_iter iter;
d42f20df 4325 struct ust_app_session *ua_sess;
5b4a0ec0 4326
56047f5a 4327 lttng::urcu::read_lock_guard read_lock;
886459c6 4328
d88aee68 4329 /*
ce34fcd0
MD
4330 * For per-PID buffers, perform "push metadata" and flush all
4331 * application streams before removing app from hash tables,
4332 * ensuring proper behavior of data_pending check.
c4b88406 4333 * Remove sessions so they are not visible during deletion.
d88aee68 4334 */
a7db814e
JG
4335 cds_lfht_for_each_entry (app.sessions->ht, &iter.iter, ua_sess, node.node) {
4336 const auto del_ret = lttng_ht_del(app.sessions, &iter);
4337 if (del_ret) {
d42f20df
DG
4338 /* The session was already removed so scheduled for teardown. */
4339 continue;
4340 }
4341
ce34fcd0 4342 if (ua_sess->buffer_type == LTTNG_BUFFER_PER_PID) {
a7db814e 4343 (void) ust_app_flush_app_session(app, *ua_sess);
ce34fcd0 4344 }
c4b88406 4345
d42f20df
DG
4346 /*
4347 * Add session to list for teardown. This is safe since at this point we
4348 * are the only one using this list.
4349 */
a7db814e 4350 lttng::pthread::lock_guard ust_app_session_lock(ua_sess->lock);
d88aee68 4351
b161602a 4352 if (ua_sess->deleted) {
b161602a
MD
4353 continue;
4354 }
4355
d88aee68
DG
4356 /*
4357 * Normally, this is done in the delete session process which is
4358 * executed in the call rcu below. However, upon registration we can't
4359 * afford to wait for the grace period before pushing data or else the
4360 * data pending feature can race between the unregistration and stop
4361 * command where the data pending command is sent *before* the grace
4362 * period ended.
4363 *
4364 * The close metadata below nullifies the metadata pointer in the
4365 * session so the delete session will NOT push/close a second time.
4366 */
d7bfb9b0
JG
4367 auto locked_registry = get_locked_session_registry(ua_sess);
4368 if (locked_registry) {
7972aab2 4369 /* Push metadata for application before freeing the application. */
d7bfb9b0 4370 (void) push_metadata(locked_registry, ua_sess->consumer);
7972aab2
DG
4371
4372 /*
4373 * Don't ask to close metadata for global per UID buffers. Close
1b532a60
DG
4374 * metadata only on destroy trace session in this case. Also, the
4375 * previous push metadata could have flag the metadata registry to
4376 * close so don't send a close command if closed.
7972aab2 4377 */
ce34fcd0 4378 if (ua_sess->buffer_type != LTTNG_BUFFER_PER_UID) {
d7bfb9b0
JG
4379 const auto metadata_key = locked_registry->_metadata_key;
4380 const auto consumer_bitness = locked_registry->abi.bits_per_long;
4381
4382 if (!locked_registry->_metadata_closed && metadata_key != 0) {
4383 locked_registry->_metadata_closed = true;
4384 }
4385
28ab034a
JG
4386 /* Release lock before communication, see comments in
4387 * close_metadata(). */
d7bfb9b0 4388 locked_registry.reset();
28ab034a
JG
4389 (void) close_metadata(
4390 metadata_key, consumer_bitness, ua_sess->consumer);
d7bfb9b0
JG
4391 } else {
4392 locked_registry.reset();
7972aab2
DG
4393 }
4394 }
c4b88406 4395
a7db814e 4396 cds_list_add(&ua_sess->teardown_node, &app.teardown_head);
d42f20df
DG
4397 }
4398
c4b88406
MD
4399 /*
4400 * Remove application from notify hash table. The thread handling the
4401 * notify socket could have deleted the node so ignore on error because
c48239ca
JG
4402 * either way it's valid. The close of that socket is handled by the
4403 * apps_notify_thread.
c4b88406 4404 */
a7db814e 4405 iter.iter.node = &app.notify_sock_n.node;
c4b88406
MD
4406 (void) lttng_ht_del(ust_app_ht_by_notify_sock, &iter);
4407
4408 /*
4409 * Ignore return value since the node might have been removed before by an
4410 * add replace during app registration because the PID can be reassigned by
4411 * the OS.
4412 */
a7db814e
JG
4413 iter.iter.node = &app.pid_n.node;
4414 if (lttng_ht_del(ust_app_ht, &iter)) {
4415 DBG3("Unregister app by PID %d failed. This can happen on pid reuse", app.pid);
c4b88406 4416 }
a7db814e 4417}
c4b88406 4418
a7db814e
JG
4419/*
4420 * Unregister app by removing it from the global traceable app list and freeing
4421 * the data struct.
4422 *
4423 * The socket is already closed at this point, so there is no need to close it.
4424 */
4425void ust_app_unregister_by_socket(int sock_fd)
4426{
4427 struct ust_app *app;
4428 struct lttng_ht_node_ulong *node;
4429 struct lttng_ht_iter ust_app_sock_iter;
4430 int ret;
852d0037 4431
a7db814e
JG
4432 lttng::urcu::read_lock_guard read_lock;
4433
4434 /* Get the node reference for a call_rcu */
4435 lttng_ht_lookup(ust_app_ht_by_sock, (void *) ((unsigned long) sock_fd), &ust_app_sock_iter);
00d7d903 4436 node = lttng_ht_iter_get_node<lttng_ht_node_ulong>(&ust_app_sock_iter);
a7db814e
JG
4437 assert(node);
4438
4439 app = caa_container_of(node, struct ust_app, sock_n);
4440
4441 DBG_FMT("Application unregistering after socket activity: pid={}, socket_fd={}",
4442 app->pid,
4443 sock_fd);
4444
4445 /* Remove application from socket hash table */
4446 ret = lttng_ht_del(ust_app_ht_by_sock, &ust_app_sock_iter);
4447 assert(!ret);
4448
4449 /*
4450 * The socket is closed: release its reference to the application
4451 * to trigger its eventual teardown.
4452 */
4453 ust_app_put(app);
284d8f55
DG
4454}
4455
5b4a0ec0
DG
4456/*
4457 * Fill events array with all events name of all registered apps.
4458 */
4459int ust_app_list_events(struct lttng_event **events)
421cb601 4460{
5b4a0ec0
DG
4461 int ret, handle;
4462 size_t nbmem, count = 0;
bec39940 4463 struct lttng_ht_iter iter;
5b4a0ec0 4464 struct ust_app *app;
c617c0c6 4465 struct lttng_event *tmp_event;
421cb601 4466
5b4a0ec0 4467 nbmem = UST_APP_EVENT_LIST_SIZE;
64803277 4468 tmp_event = calloc<lttng_event>(nbmem);
cd9adb8b 4469 if (tmp_event == nullptr) {
5b4a0ec0
DG
4470 PERROR("zmalloc ust app events");
4471 ret = -ENOMEM;
421cb601
DG
4472 goto error;
4473 }
4474
56047f5a
JG
4475 {
4476 lttng::urcu::read_lock_guard read_lock;
421cb601 4477
56047f5a
JG
4478 cds_lfht_for_each_entry (ust_app_ht->ht, &iter.iter, app, pid_n.node) {
4479 struct lttng_ust_abi_tracepoint_iter uiter;
ac3bd9c0 4480
56047f5a 4481 health_code_update();
86acf0da 4482
56047f5a
JG
4483 if (!app->compatible) {
4484 /*
4485 * TODO: In time, we should notice the caller of this error by
4486 * telling him that this is a version error.
4487 */
4488 continue;
ffe60014 4489 }
421cb601 4490
56047f5a
JG
4491 pthread_mutex_lock(&app->sock_lock);
4492 handle = lttng_ust_ctl_tracepoint_list(app->sock);
4493 if (handle < 0) {
4494 if (handle != -EPIPE && handle != -LTTNG_UST_ERR_EXITING) {
4495 ERR("UST app list events getting handle failed for app pid %d",
4496 app->pid);
fb45065e
MD
4497 }
4498 pthread_mutex_unlock(&app->sock_lock);
56047f5a 4499 continue;
ffe60014
DG
4500 }
4501
56047f5a
JG
4502 while ((ret = lttng_ust_ctl_tracepoint_list_get(
4503 app->sock, handle, &uiter)) != -LTTNG_UST_ERR_NOENT) {
4504 /* Handle ustctl error. */
4505 if (ret < 0) {
fb45065e
MD
4506 int release_ret;
4507
56047f5a
JG
4508 if (ret != -LTTNG_UST_ERR_EXITING && ret != -EPIPE) {
4509 ERR("UST app tp list get failed for app %d with ret %d",
4510 app->sock,
4511 ret);
4512 } else {
4513 DBG3("UST app tp list get failed. Application is dead");
4514 break;
4515 }
4516
c617c0c6 4517 free(tmp_event);
28ab034a
JG
4518 release_ret =
4519 lttng_ust_ctl_release_handle(app->sock, handle);
68313703 4520 if (release_ret < 0 &&
28ab034a
JG
4521 release_ret != -LTTNG_UST_ERR_EXITING &&
4522 release_ret != -EPIPE) {
4523 ERR("Error releasing app handle for app %d with ret %d",
4524 app->sock,
4525 release_ret);
fb45065e 4526 }
56047f5a 4527
fb45065e 4528 pthread_mutex_unlock(&app->sock_lock);
5b4a0ec0
DG
4529 goto rcu_error;
4530 }
56047f5a
JG
4531
4532 health_code_update();
4533 if (count >= nbmem) {
4534 /* In case the realloc fails, we free the memory */
4535 struct lttng_event *new_tmp_event;
4536 size_t new_nbmem;
4537
4538 new_nbmem = nbmem << 1;
4539 DBG2("Reallocating event list from %zu to %zu entries",
4540 nbmem,
4541 new_nbmem);
4542 new_tmp_event = (lttng_event *) realloc(
4543 tmp_event, new_nbmem * sizeof(struct lttng_event));
4544 if (new_tmp_event == nullptr) {
4545 int release_ret;
4546
4547 PERROR("realloc ust app events");
4548 free(tmp_event);
4549 ret = -ENOMEM;
4550 release_ret = lttng_ust_ctl_release_handle(
4551 app->sock, handle);
4552 if (release_ret < 0 &&
4553 release_ret != -LTTNG_UST_ERR_EXITING &&
4554 release_ret != -EPIPE) {
4555 ERR("Error releasing app handle for app %d with ret %d",
4556 app->sock,
4557 release_ret);
4558 }
4559
4560 pthread_mutex_unlock(&app->sock_lock);
4561 goto rcu_error;
4562 }
4563 /* Zero the new memory */
4564 memset(new_tmp_event + nbmem,
4565 0,
4566 (new_nbmem - nbmem) * sizeof(struct lttng_event));
4567 nbmem = new_nbmem;
4568 tmp_event = new_tmp_event;
4569 }
4570
4571 memcpy(tmp_event[count].name,
4572 uiter.name,
4573 LTTNG_UST_ABI_SYM_NAME_LEN);
4574 tmp_event[count].loglevel = uiter.loglevel;
4575 tmp_event[count].type =
4576 (enum lttng_event_type) LTTNG_UST_ABI_TRACEPOINT;
4577 tmp_event[count].pid = app->pid;
4578 tmp_event[count].enabled = -1;
4579 count++;
5b4a0ec0 4580 }
56047f5a
JG
4581
4582 ret = lttng_ust_ctl_release_handle(app->sock, handle);
4583 pthread_mutex_unlock(&app->sock_lock);
4584 if (ret < 0) {
4585 if (ret == -EPIPE || ret == -LTTNG_UST_ERR_EXITING) {
4586 DBG3("Error releasing app handle. Application died: pid = %d, sock = %d",
4587 app->pid,
4588 app->sock);
4589 } else if (ret == -EAGAIN) {
4590 WARN("Error releasing app handle. Communication time out: pid = %d, sock = %d",
4591 app->pid,
4592 app->sock);
4593 } else {
4594 ERR("Error releasing app handle with ret %d: pid = %d, sock = %d",
4595 ret,
4596 app->pid,
4597 app->sock);
4598 }
be355079 4599 }
fb45065e 4600 }
421cb601
DG
4601 }
4602
5b4a0ec0 4603 ret = count;
c617c0c6 4604 *events = tmp_event;
421cb601 4605
5b4a0ec0 4606 DBG2("UST app list events done (%zu events)", count);
421cb601 4607
5b4a0ec0 4608rcu_error:
421cb601 4609error:
840cb59c 4610 health_code_update();
5b4a0ec0 4611 return ret;
421cb601
DG
4612}
4613
f37d259d
MD
4614/*
4615 * Fill events array with all events name of all registered apps.
4616 */
4617int ust_app_list_event_fields(struct lttng_event_field **fields)
4618{
4619 int ret, handle;
4620 size_t nbmem, count = 0;
4621 struct lttng_ht_iter iter;
4622 struct ust_app *app;
c617c0c6 4623 struct lttng_event_field *tmp_event;
f37d259d
MD
4624
4625 nbmem = UST_APP_EVENT_LIST_SIZE;
64803277 4626 tmp_event = calloc<lttng_event_field>(nbmem);
cd9adb8b 4627 if (tmp_event == nullptr) {
f37d259d
MD
4628 PERROR("zmalloc ust app event fields");
4629 ret = -ENOMEM;
4630 goto error;
4631 }
4632
56047f5a
JG
4633 {
4634 lttng::urcu::read_lock_guard read_lock;
f37d259d 4635
56047f5a
JG
4636 cds_lfht_for_each_entry (ust_app_ht->ht, &iter.iter, app, pid_n.node) {
4637 struct lttng_ust_abi_field_iter uiter;
f37d259d 4638
56047f5a 4639 health_code_update();
86acf0da 4640
56047f5a
JG
4641 if (!app->compatible) {
4642 /*
4643 * TODO: In time, we should notice the caller of this error by
4644 * telling him that this is a version error.
4645 */
4646 continue;
ffe60014 4647 }
fb45065e 4648
56047f5a
JG
4649 pthread_mutex_lock(&app->sock_lock);
4650 handle = lttng_ust_ctl_tracepoint_field_list(app->sock);
4651 if (handle < 0) {
4652 if (handle != -EPIPE && handle != -LTTNG_UST_ERR_EXITING) {
4653 ERR("UST app list field getting handle failed for app pid %d",
4654 app->pid);
ffe60014 4655 }
fb45065e 4656 pthread_mutex_unlock(&app->sock_lock);
56047f5a 4657 continue;
ffe60014
DG
4658 }
4659
56047f5a
JG
4660 while ((ret = lttng_ust_ctl_tracepoint_field_list_get(
4661 app->sock, handle, &uiter)) != -LTTNG_UST_ERR_NOENT) {
4662 /* Handle ustctl error. */
4663 if (ret < 0) {
fb45065e
MD
4664 int release_ret;
4665
56047f5a
JG
4666 if (ret != -LTTNG_UST_ERR_EXITING && ret != -EPIPE) {
4667 ERR("UST app tp list field failed for app %d with ret %d",
4668 app->sock,
4669 ret);
4670 } else {
4671 DBG3("UST app tp list field failed. Application is dead");
4672 break;
4673 }
4674
c617c0c6 4675 free(tmp_event);
28ab034a
JG
4676 release_ret =
4677 lttng_ust_ctl_release_handle(app->sock, handle);
fb45065e 4678 pthread_mutex_unlock(&app->sock_lock);
56047f5a
JG
4679 if (release_ret < 0 &&
4680 release_ret != -LTTNG_UST_ERR_EXITING &&
28ab034a
JG
4681 release_ret != -EPIPE) {
4682 ERR("Error releasing app handle for app %d with ret %d",
4683 app->sock,
4684 release_ret);
fb45065e 4685 }
56047f5a 4686
f37d259d
MD
4687 goto rcu_error;
4688 }
56047f5a
JG
4689
4690 health_code_update();
4691 if (count >= nbmem) {
4692 /* In case the realloc fails, we free the memory */
4693 struct lttng_event_field *new_tmp_event;
4694 size_t new_nbmem;
4695
4696 new_nbmem = nbmem << 1;
4697 DBG2("Reallocating event field list from %zu to %zu entries",
4698 nbmem,
4699 new_nbmem);
4700 new_tmp_event = (lttng_event_field *) realloc(
4701 tmp_event,
4702 new_nbmem * sizeof(struct lttng_event_field));
4703 if (new_tmp_event == nullptr) {
4704 int release_ret;
4705
4706 PERROR("realloc ust app event fields");
4707 free(tmp_event);
4708 ret = -ENOMEM;
4709 release_ret = lttng_ust_ctl_release_handle(
4710 app->sock, handle);
4711 pthread_mutex_unlock(&app->sock_lock);
4712 if (release_ret &&
4713 release_ret != -LTTNG_UST_ERR_EXITING &&
4714 release_ret != -EPIPE) {
4715 ERR("Error releasing app handle for app %d with ret %d",
4716 app->sock,
4717 release_ret);
4718 }
4719
4720 goto rcu_error;
4721 }
4722
4723 /* Zero the new memory */
4724 memset(new_tmp_event + nbmem,
4725 0,
4726 (new_nbmem - nbmem) *
4727 sizeof(struct lttng_event_field));
4728 nbmem = new_nbmem;
4729 tmp_event = new_tmp_event;
4730 }
4731
4732 memcpy(tmp_event[count].field_name,
4733 uiter.field_name,
4734 LTTNG_UST_ABI_SYM_NAME_LEN);
4735 /* Mapping between these enums matches 1 to 1. */
4736 tmp_event[count].type = (enum lttng_event_field_type) uiter.type;
4737 tmp_event[count].nowrite = uiter.nowrite;
4738
4739 memcpy(tmp_event[count].event.name,
4740 uiter.event_name,
4741 LTTNG_UST_ABI_SYM_NAME_LEN);
4742 tmp_event[count].event.loglevel = uiter.loglevel;
4743 tmp_event[count].event.type = LTTNG_EVENT_TRACEPOINT;
4744 tmp_event[count].event.pid = app->pid;
4745 tmp_event[count].event.enabled = -1;
4746 count++;
f37d259d 4747 }
f37d259d 4748
56047f5a
JG
4749 ret = lttng_ust_ctl_release_handle(app->sock, handle);
4750 pthread_mutex_unlock(&app->sock_lock);
4751 if (ret < 0 && ret != -LTTNG_UST_ERR_EXITING && ret != -EPIPE) {
4752 ERR("Error releasing app handle for app %d with ret %d",
4753 app->sock,
4754 ret);
4755 }
fb45065e 4756 }
f37d259d
MD
4757 }
4758
4759 ret = count;
c617c0c6 4760 *fields = tmp_event;
f37d259d
MD
4761
4762 DBG2("UST app list event fields done (%zu events)", count);
4763
4764rcu_error:
f37d259d 4765error:
840cb59c 4766 health_code_update();
f37d259d
MD
4767 return ret;
4768}
4769
5b4a0ec0
DG
4770/*
4771 * Free and clean all traceable apps of the global list.
4772 */
cd9adb8b 4773void ust_app_clean_list()
421cb601 4774{
5b4a0ec0 4775 int ret;
659ed79f 4776 struct ust_app *app;
bec39940 4777 struct lttng_ht_iter iter;
421cb601 4778
5b4a0ec0 4779 DBG2("UST app cleaning registered apps hash table");
421cb601 4780
faadaa3a
JG
4781 /* Cleanup notify socket hash table */
4782 if (ust_app_ht_by_notify_sock) {
56047f5a
JG
4783 lttng::urcu::read_lock_guard read_lock;
4784
28ab034a
JG
4785 cds_lfht_for_each_entry (
4786 ust_app_ht_by_notify_sock->ht, &iter.iter, app, notify_sock_n.node) {
b69a1b40
JG
4787 /*
4788 * Assert that all notifiers are gone as all triggers
4789 * are unregistered prior to this clean-up.
4790 */
a0377dfe 4791 LTTNG_ASSERT(lttng_ht_get_count(app->token_to_event_notifier_rule_ht) == 0);
faadaa3a
JG
4792 ust_app_notify_sock_unregister(app->notify_sock);
4793 }
4794 }
4795
852d0037 4796 /* Cleanup socket hash table */
f1b711c4 4797 if (ust_app_ht_by_sock) {
56047f5a
JG
4798 lttng::urcu::read_lock_guard read_lock;
4799
28ab034a 4800 cds_lfht_for_each_entry (ust_app_ht_by_sock->ht, &iter.iter, app, sock_n.node) {
f1b711c4 4801 ret = lttng_ht_del(ust_app_ht_by_sock, &iter);
a0377dfe 4802 LTTNG_ASSERT(!ret);
a7db814e 4803 ust_app_put(app);
f1b711c4 4804 }
bec39940 4805 }
852d0037 4806
bec39940 4807 /* Destroy is done only when the ht is empty */
f1b711c4 4808 if (ust_app_ht) {
3c339053 4809 lttng_ht_destroy(ust_app_ht);
f1b711c4
MD
4810 }
4811 if (ust_app_ht_by_sock) {
3c339053 4812 lttng_ht_destroy(ust_app_ht_by_sock);
f1b711c4
MD
4813 }
4814 if (ust_app_ht_by_notify_sock) {
3c339053 4815 lttng_ht_destroy(ust_app_ht_by_notify_sock);
f1b711c4 4816 }
5b4a0ec0
DG
4817}
4818
4819/*
4820 * Init UST app hash table.
4821 */
cd9adb8b 4822int ust_app_ht_alloc()
5b4a0ec0 4823{
bec39940 4824 ust_app_ht = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
57703f6e
MD
4825 if (!ust_app_ht) {
4826 return -1;
4827 }
852d0037 4828 ust_app_ht_by_sock = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
57703f6e
MD
4829 if (!ust_app_ht_by_sock) {
4830 return -1;
4831 }
d0b96690 4832 ust_app_ht_by_notify_sock = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
57703f6e
MD
4833 if (!ust_app_ht_by_notify_sock) {
4834 return -1;
4835 }
4836 return 0;
421cb601
DG
4837}
4838
78f0bacd
DG
4839/*
4840 * For a specific UST session, disable the channel for all registered apps.
4841 */
28ab034a 4842int ust_app_disable_channel_glb(struct ltt_ust_session *usess, struct ltt_ust_channel *uchan)
78f0bacd
DG
4843{
4844 int ret = 0;
bec39940
DG
4845 struct lttng_ht_iter iter;
4846 struct lttng_ht_node_str *ua_chan_node;
78f0bacd
DG
4847 struct ust_app *app;
4848 struct ust_app_session *ua_sess;
8535a6d9 4849 struct ust_app_channel *ua_chan;
78f0bacd 4850
a0377dfe 4851 LTTNG_ASSERT(usess->active);
d9bf3ca4 4852 DBG2("UST app disabling channel %s from global domain for session id %" PRIu64,
28ab034a
JG
4853 uchan->name,
4854 usess->id);
78f0bacd 4855
56047f5a
JG
4856 {
4857 lttng::urcu::read_lock_guard read_lock;
78f0bacd 4858
56047f5a
JG
4859 /* For every registered applications */
4860 cds_lfht_for_each_entry (ust_app_ht->ht, &iter.iter, app, pid_n.node) {
4861 struct lttng_ht_iter uiter;
4862 if (!app->compatible) {
4863 /*
4864 * TODO: In time, we should notice the caller of this error by
4865 * telling him that this is a version error.
4866 */
4867 continue;
4868 }
4869 ua_sess = lookup_session_by_app(usess, app);
4870 if (ua_sess == nullptr) {
4871 continue;
4872 }
78f0bacd 4873
56047f5a
JG
4874 /* Get channel */
4875 lttng_ht_lookup(ua_sess->channels, (void *) uchan->name, &uiter);
00d7d903 4876 ua_chan_node = lttng_ht_iter_get_node<lttng_ht_node_str>(&uiter);
56047f5a
JG
4877 /* If the session if found for the app, the channel must be there */
4878 LTTNG_ASSERT(ua_chan_node);
8535a6d9 4879
56047f5a
JG
4880 ua_chan = lttng::utils::container_of(ua_chan_node, &ust_app_channel::node);
4881 /* The channel must not be already disabled */
4882 LTTNG_ASSERT(ua_chan->enabled);
8535a6d9 4883
56047f5a
JG
4884 /* Disable channel onto application */
4885 ret = disable_ust_app_channel(ua_sess, ua_chan, app);
4886 if (ret < 0) {
4887 /* XXX: We might want to report this error at some point... */
4888 continue;
4889 }
78f0bacd
DG
4890 }
4891 }
4892
78f0bacd
DG
4893 return ret;
4894}
4895
4896/*
4897 * For a specific UST session, enable the channel for all registered apps.
4898 */
28ab034a 4899int ust_app_enable_channel_glb(struct ltt_ust_session *usess, struct ltt_ust_channel *uchan)
78f0bacd
DG
4900{
4901 int ret = 0;
bec39940 4902 struct lttng_ht_iter iter;
78f0bacd
DG
4903 struct ust_app *app;
4904 struct ust_app_session *ua_sess;
4905
a0377dfe 4906 LTTNG_ASSERT(usess->active);
d9bf3ca4 4907 DBG2("UST app enabling channel %s to global domain for session id %" PRIu64,
28ab034a
JG
4908 uchan->name,
4909 usess->id);
78f0bacd 4910
56047f5a
JG
4911 {
4912 lttng::urcu::read_lock_guard read_lock;
78f0bacd 4913
56047f5a
JG
4914 /* For every registered applications */
4915 cds_lfht_for_each_entry (ust_app_ht->ht, &iter.iter, app, pid_n.node) {
4916 if (!app->compatible) {
4917 /*
4918 * TODO: In time, we should notice the caller of this error by
4919 * telling him that this is a version error.
4920 */
4921 continue;
4922 }
4923 ua_sess = lookup_session_by_app(usess, app);
4924 if (ua_sess == nullptr) {
4925 continue;
4926 }
78f0bacd 4927
56047f5a
JG
4928 /* Enable channel onto application */
4929 ret = enable_ust_app_channel(ua_sess, uchan, app);
4930 if (ret < 0) {
4931 /* XXX: We might want to report this error at some point... */
4932 continue;
4933 }
78f0bacd
DG
4934 }
4935 }
4936
78f0bacd
DG
4937 return ret;
4938}
4939
b0a40d28
DG
4940/*
4941 * Disable an event in a channel and for a specific session.
4942 */
35a9059d 4943int ust_app_disable_event_glb(struct ltt_ust_session *usess,
28ab034a
JG
4944 struct ltt_ust_channel *uchan,
4945 struct ltt_ust_event *uevent)
b0a40d28
DG
4946{
4947 int ret = 0;
bec39940 4948 struct lttng_ht_iter iter, uiter;
700c5a9d 4949 struct lttng_ht_node_str *ua_chan_node;
b0a40d28
DG
4950 struct ust_app *app;
4951 struct ust_app_session *ua_sess;
4952 struct ust_app_channel *ua_chan;
4953 struct ust_app_event *ua_event;
4954
a0377dfe 4955 LTTNG_ASSERT(usess->active);
b0a40d28 4956 DBG("UST app disabling event %s for all apps in channel "
28ab034a
JG
4957 "%s for session id %" PRIu64,
4958 uevent->attr.name,
4959 uchan->name,
4960 usess->id);
b0a40d28 4961
56047f5a
JG
4962 {
4963 lttng::urcu::read_lock_guard read_lock;
b0a40d28 4964
56047f5a
JG
4965 /* For all registered applications */
4966 cds_lfht_for_each_entry (ust_app_ht->ht, &iter.iter, app, pid_n.node) {
4967 if (!app->compatible) {
4968 /*
4969 * TODO: In time, we should notice the caller of this error by
4970 * telling him that this is a version error.
4971 */
4972 continue;
4973 }
4974 ua_sess = lookup_session_by_app(usess, app);
4975 if (ua_sess == nullptr) {
4976 /* Next app */
4977 continue;
4978 }
b0a40d28 4979
56047f5a
JG
4980 /* Lookup channel in the ust app session */
4981 lttng_ht_lookup(ua_sess->channels, (void *) uchan->name, &uiter);
00d7d903 4982 ua_chan_node = lttng_ht_iter_get_node<lttng_ht_node_str>(&uiter);
56047f5a
JG
4983 if (ua_chan_node == nullptr) {
4984 DBG2("Channel %s not found in session id %" PRIu64
4985 " for app pid %d."
4986 "Skipping",
4987 uchan->name,
4988 usess->id,
4989 app->pid);
4990 continue;
4991 }
4992 ua_chan = lttng::utils::container_of(ua_chan_node, &ust_app_channel::node);
4993
dcd24bbf
JG
4994 ua_event = find_ust_app_event(
4995 ua_chan->events,
4996 uevent->attr.name,
4997 uevent->filter,
4998 (enum lttng_ust_abi_loglevel_type) uevent->attr.loglevel_type,
4999 uevent->attr.loglevel,
5000 uevent->exclusion);
56047f5a
JG
5001 if (ua_event == nullptr) {
5002 DBG2("Event %s not found in channel %s for app pid %d."
5003 "Skipping",
5004 uevent->attr.name,
5005 uchan->name,
5006 app->pid);
5007 continue;
5008 }
b0a40d28 5009
56047f5a
JG
5010 ret = disable_ust_app_event(ua_event, app);
5011 if (ret < 0) {
5012 /* XXX: Report error someday... */
5013 continue;
5014 }
b0a40d28
DG
5015 }
5016 }
5017
88e3c2f5
JG
5018 return ret;
5019}
5020
5021/* The ua_sess lock must be held by the caller. */
28ab034a
JG
5022static int ust_app_channel_create(struct ltt_ust_session *usess,
5023 struct ust_app_session *ua_sess,
5024 struct ltt_ust_channel *uchan,
5025 struct ust_app *app,
5026 struct ust_app_channel **_ua_chan)
88e3c2f5
JG
5027{
5028 int ret = 0;
cd9adb8b 5029 struct ust_app_channel *ua_chan = nullptr;
88e3c2f5 5030
a0377dfe 5031 LTTNG_ASSERT(ua_sess);
88e3c2f5
JG
5032 ASSERT_LOCKED(ua_sess->lock);
5033
28ab034a
JG
5034 if (!strncmp(uchan->name, DEFAULT_METADATA_NAME, sizeof(uchan->name))) {
5035 copy_channel_attr_to_ustctl(&ua_sess->metadata_attr, &uchan->attr);
88e3c2f5
JG
5036 ret = 0;
5037 } else {
cd9adb8b 5038 struct ltt_ust_context *uctx = nullptr;
88e3c2f5
JG
5039
5040 /*
5041 * Create channel onto application and synchronize its
5042 * configuration.
5043 */
28ab034a
JG
5044 ret = ust_app_channel_allocate(
5045 ua_sess, uchan, LTTNG_UST_ABI_CHAN_PER_CPU, usess, &ua_chan);
88ebf5a7
JR
5046 if (ret < 0) {
5047 goto error;
5048 }
5049
28ab034a 5050 ret = ust_app_channel_send(app, usess, ua_sess, ua_chan);
88ebf5a7
JR
5051 if (ret) {
5052 goto error;
88e3c2f5
JG
5053 }
5054
5055 /* Add contexts. */
28ab034a
JG
5056 cds_list_for_each_entry (uctx, &uchan->ctx_list, list) {
5057 ret = create_ust_app_channel_context(ua_chan, &uctx->ctx, app);
88e3c2f5 5058 if (ret) {
88ebf5a7 5059 goto error;
88e3c2f5
JG
5060 }
5061 }
5062 }
88ebf5a7
JR
5063
5064error:
88e3c2f5
JG
5065 if (ret < 0) {
5066 switch (ret) {
5067 case -ENOTCONN:
5068 /*
5069 * The application's socket is not valid. Either a bad socket
5070 * or a timeout on it. We can't inform the caller that for a
5071 * specific app, the session failed so lets continue here.
5072 */
28ab034a 5073 ret = 0; /* Not an error. */
88e3c2f5
JG
5074 break;
5075 case -ENOMEM:
5076 default:
5077 break;
5078 }
5079 }
88ebf5a7 5080
88e3c2f5
JG
5081 if (ret == 0 && _ua_chan) {
5082 /*
5083 * Only return the application's channel on success. Note
5084 * that the channel can still be part of the application's
5085 * channel hashtable on error.
5086 */
5087 *_ua_chan = ua_chan;
5088 }
b0a40d28
DG
5089 return ret;
5090}
5091
5b4a0ec0 5092/*
edb67388 5093 * Enable event for a specific session and channel on the tracer.
5b4a0ec0 5094 */
35a9059d 5095int ust_app_enable_event_glb(struct ltt_ust_session *usess,
28ab034a
JG
5096 struct ltt_ust_channel *uchan,
5097 struct ltt_ust_event *uevent)
48842b30
DG
5098{
5099 int ret = 0;
bec39940 5100 struct lttng_ht_iter iter, uiter;
18eace3b 5101 struct lttng_ht_node_str *ua_chan_node;
48842b30
DG
5102 struct ust_app *app;
5103 struct ust_app_session *ua_sess;
5104 struct ust_app_channel *ua_chan;
5105 struct ust_app_event *ua_event;
48842b30 5106
a0377dfe 5107 LTTNG_ASSERT(usess->active);
d9bf3ca4 5108 DBG("UST app enabling event %s for all apps for session id %" PRIu64,
28ab034a
JG
5109 uevent->attr.name,
5110 usess->id);
48842b30 5111
edb67388
DG
5112 /*
5113 * NOTE: At this point, this function is called only if the session and
5114 * channel passed are already created for all apps. and enabled on the
5115 * tracer also.
5116 */
5117
56047f5a
JG
5118 {
5119 lttng::urcu::read_lock_guard read_lock;
421cb601 5120
56047f5a
JG
5121 /* For all registered applications */
5122 cds_lfht_for_each_entry (ust_app_ht->ht, &iter.iter, app, pid_n.node) {
5123 if (!app->compatible) {
5124 /*
5125 * TODO: In time, we should notice the caller of this error by
5126 * telling him that this is a version error.
5127 */
5128 continue;
5129 }
5130 ua_sess = lookup_session_by_app(usess, app);
5131 if (!ua_sess) {
5132 /* The application has problem or is probably dead. */
5133 continue;
5134 }
ba767faf 5135
56047f5a 5136 pthread_mutex_lock(&ua_sess->lock);
d0b96690 5137
56047f5a
JG
5138 if (ua_sess->deleted) {
5139 pthread_mutex_unlock(&ua_sess->lock);
5140 continue;
5141 }
b161602a 5142
56047f5a
JG
5143 /* Lookup channel in the ust app session */
5144 lttng_ht_lookup(ua_sess->channels, (void *) uchan->name, &uiter);
00d7d903 5145 ua_chan_node = lttng_ht_iter_get_node<lttng_ht_node_str>(&uiter);
56047f5a
JG
5146 /*
5147 * It is possible that the channel cannot be found is
5148 * the channel/event creation occurs concurrently with
5149 * an application exit.
5150 */
5151 if (!ua_chan_node) {
5152 pthread_mutex_unlock(&ua_sess->lock);
5153 continue;
5154 }
edb67388 5155
56047f5a
JG
5156 ua_chan = lttng::utils::container_of(ua_chan_node, &ust_app_channel::node);
5157
5158 /* Get event node */
dcd24bbf
JG
5159 ua_event = find_ust_app_event(
5160 ua_chan->events,
5161 uevent->attr.name,
5162 uevent->filter,
5163 (enum lttng_ust_abi_loglevel_type) uevent->attr.loglevel_type,
5164 uevent->attr.loglevel,
5165 uevent->exclusion);
56047f5a
JG
5166 if (ua_event == nullptr) {
5167 DBG3("UST app enable event %s not found for app PID %d."
5168 "Skipping app",
5169 uevent->attr.name,
5170 app->pid);
5171 goto next_app;
5172 }
edb67388 5173
56047f5a
JG
5174 ret = enable_ust_app_event(ua_event, app);
5175 if (ret < 0) {
5176 pthread_mutex_unlock(&ua_sess->lock);
5177 goto error;
5178 }
5179 next_app:
d0b96690 5180 pthread_mutex_unlock(&ua_sess->lock);
48842b30 5181 }
edb67388 5182 }
7f79d3a1 5183error:
edb67388
DG
5184 return ret;
5185}
5186
5187/*
5188 * For a specific existing UST session and UST channel, creates the event for
5189 * all registered apps.
5190 */
35a9059d 5191int ust_app_create_event_glb(struct ltt_ust_session *usess,
28ab034a
JG
5192 struct ltt_ust_channel *uchan,
5193 struct ltt_ust_event *uevent)
edb67388
DG
5194{
5195 int ret = 0;
bec39940
DG
5196 struct lttng_ht_iter iter, uiter;
5197 struct lttng_ht_node_str *ua_chan_node;
edb67388
DG
5198 struct ust_app *app;
5199 struct ust_app_session *ua_sess;
5200 struct ust_app_channel *ua_chan;
5201
a0377dfe 5202 LTTNG_ASSERT(usess->active);
d9bf3ca4 5203 DBG("UST app creating event %s for all apps for session id %" PRIu64,
28ab034a
JG
5204 uevent->attr.name,
5205 usess->id);
edb67388 5206
56047f5a
JG
5207 {
5208 lttng::urcu::read_lock_guard read_lock;
edb67388 5209
56047f5a
JG
5210 /* For all registered applications */
5211 cds_lfht_for_each_entry (ust_app_ht->ht, &iter.iter, app, pid_n.node) {
5212 if (!app->compatible) {
5213 /*
5214 * TODO: In time, we should notice the caller of this error by
5215 * telling him that this is a version error.
5216 */
5217 continue;
5218 }
48842b30 5219
56047f5a
JG
5220 ua_sess = lookup_session_by_app(usess, app);
5221 if (!ua_sess) {
5222 /* The application has problem or is probably dead. */
5223 continue;
5224 }
b161602a 5225
56047f5a 5226 pthread_mutex_lock(&ua_sess->lock);
b161602a 5227
56047f5a
JG
5228 if (ua_sess->deleted) {
5229 pthread_mutex_unlock(&ua_sess->lock);
5230 continue;
5231 }
edb67388 5232
56047f5a
JG
5233 /* Lookup channel in the ust app session */
5234 lttng_ht_lookup(ua_sess->channels, (void *) uchan->name, &uiter);
00d7d903 5235 ua_chan_node = lttng_ht_iter_get_node<lttng_ht_node_str>(&uiter);
56047f5a
JG
5236 /* If the channel is not found, there is a code flow error */
5237 LTTNG_ASSERT(ua_chan_node);
48842b30 5238
56047f5a
JG
5239 ua_chan = lttng::utils::container_of(ua_chan_node, &ust_app_channel::node);
5240
5241 ret = create_ust_app_event(ua_chan, uevent, app);
5242 pthread_mutex_unlock(&ua_sess->lock);
5243 if (ret < 0) {
5244 if (ret != -LTTNG_UST_ERR_EXIST) {
5245 /* Possible value at this point: -ENOMEM. If so, we stop! */
5246 break;
5247 }
5248
5249 DBG2("UST app event %s already exist on app PID %d",
5250 uevent->attr.name,
5251 app->pid);
5252 continue;
fc34caaa 5253 }
48842b30 5254 }
48842b30 5255 }
5b4a0ec0 5256
48842b30
DG
5257 return ret;
5258}
5259
5b4a0ec0
DG
5260/*
5261 * Start tracing for a specific UST session and app.
fad1ed2f
JR
5262 *
5263 * Called with UST app session lock held.
5264 *
5b4a0ec0 5265 */
28ab034a 5266static int ust_app_start_trace(struct ltt_ust_session *usess, struct ust_app *app)
48842b30
DG
5267{
5268 int ret = 0;
48842b30 5269 struct ust_app_session *ua_sess;
48842b30 5270
852d0037 5271 DBG("Starting tracing for ust app pid %d", app->pid);
5cf5d0e7 5272
56047f5a 5273 lttng::urcu::read_lock_guard read_lock;
509cbaf8 5274
e0c7ec2b
DG
5275 if (!app->compatible) {
5276 goto end;
5277 }
5278
421cb601 5279 ua_sess = lookup_session_by_app(usess, app);
cd9adb8b 5280 if (ua_sess == nullptr) {
d42f20df
DG
5281 /* The session is in teardown process. Ignore and continue. */
5282 goto end;
421cb601 5283 }
48842b30 5284
d0b96690
DG
5285 pthread_mutex_lock(&ua_sess->lock);
5286
b161602a
MD
5287 if (ua_sess->deleted) {
5288 pthread_mutex_unlock(&ua_sess->lock);
5289 goto end;
5290 }
5291
b0a1c741
JR
5292 if (ua_sess->enabled) {
5293 pthread_mutex_unlock(&ua_sess->lock);
5294 goto end;
5295 }
5296
aea829b3
DG
5297 /* Upon restart, we skip the setup, already done */
5298 if (ua_sess->started) {
8be98f9a 5299 goto skip_setup;
aea829b3 5300 }
8be98f9a 5301
840cb59c 5302 health_code_update();
86acf0da 5303
8be98f9a 5304skip_setup:
a945cdc7 5305 /* This starts the UST tracing */
fb45065e 5306 pthread_mutex_lock(&app->sock_lock);
b623cb6a 5307 ret = lttng_ust_ctl_start_session(app->sock, ua_sess->handle);
fb45065e 5308 pthread_mutex_unlock(&app->sock_lock);
421cb601 5309 if (ret < 0) {
be355079
JR
5310 if (ret == -EPIPE || ret == -LTTNG_UST_ERR_EXITING) {
5311 DBG3("UST app start session failed. Application is dead: pid = %d, sock = %d",
28ab034a
JG
5312 app->pid,
5313 app->sock);
be355079
JR
5314 pthread_mutex_unlock(&ua_sess->lock);
5315 goto end;
5316 } else if (ret == -EAGAIN) {
5317 WARN("UST app start session failed. Communication time out: pid = %d, sock = %d",
28ab034a
JG
5318 app->pid,
5319 app->sock);
3757b385
DG
5320 pthread_mutex_unlock(&ua_sess->lock);
5321 goto end;
be355079
JR
5322
5323 } else {
5324 ERR("UST app start session failed with ret %d: pid = %d, sock = %d",
28ab034a
JG
5325 ret,
5326 app->pid,
5327 app->sock);
ffe60014 5328 }
d0b96690 5329 goto error_unlock;
421cb601 5330 }
5b4a0ec0 5331
55c3953d 5332 /* Indicate that the session has been started once */
66cefebd
JG
5333 ua_sess->started = true;
5334 ua_sess->enabled = true;
55c3953d 5335
d0b96690
DG
5336 pthread_mutex_unlock(&ua_sess->lock);
5337
840cb59c 5338 health_code_update();
86acf0da 5339
421cb601 5340 /* Quiescent wait after starting trace */
fb45065e 5341 pthread_mutex_lock(&app->sock_lock);
b623cb6a 5342 ret = lttng_ust_ctl_wait_quiescent(app->sock);
fb45065e 5343 pthread_mutex_unlock(&app->sock_lock);
be355079
JR
5344 if (ret < 0) {
5345 if (ret == -EPIPE || ret == -LTTNG_UST_ERR_EXITING) {
5346 DBG3("UST app wait quiescent failed. Application is dead: pid = %d, sock = %d",
28ab034a
JG
5347 app->pid,
5348 app->sock);
be355079
JR
5349 } else if (ret == -EAGAIN) {
5350 WARN("UST app wait quiescent failed. Communication time out: pid = %d, sock = %d",
28ab034a
JG
5351 app->pid,
5352 app->sock);
be355079
JR
5353 } else {
5354 ERR("UST app wait quiescent failed with ret %d: pid %d, sock = %d",
28ab034a
JG
5355 ret,
5356 app->pid,
5357 app->sock);
be355079 5358 }
ffe60014 5359 }
48842b30 5360
e0c7ec2b 5361end:
840cb59c 5362 health_code_update();
421cb601 5363 return 0;
48842b30 5364
d0b96690
DG
5365error_unlock:
5366 pthread_mutex_unlock(&ua_sess->lock);
840cb59c 5367 health_code_update();
421cb601
DG
5368 return -1;
5369}
48842b30 5370
8be98f9a
MD
5371/*
5372 * Stop tracing for a specific UST session and app.
5373 */
28ab034a 5374static int ust_app_stop_trace(struct ltt_ust_session *usess, struct ust_app *app)
8be98f9a
MD
5375{
5376 int ret = 0;
5377 struct ust_app_session *ua_sess;
5378
852d0037 5379 DBG("Stopping tracing for ust app pid %d", app->pid);
8be98f9a 5380
56047f5a 5381 lttng::urcu::read_lock_guard read_lock;
8be98f9a 5382
e0c7ec2b 5383 if (!app->compatible) {
d88aee68 5384 goto end_no_session;
e0c7ec2b
DG
5385 }
5386
8be98f9a 5387 ua_sess = lookup_session_by_app(usess, app);
cd9adb8b 5388 if (ua_sess == nullptr) {
d88aee68 5389 goto end_no_session;
8be98f9a
MD
5390 }
5391
d88aee68
DG
5392 pthread_mutex_lock(&ua_sess->lock);
5393
b161602a
MD
5394 if (ua_sess->deleted) {
5395 pthread_mutex_unlock(&ua_sess->lock);
5396 goto end_no_session;
5397 }
5398
9bc07046
DG
5399 /*
5400 * If started = 0, it means that stop trace has been called for a session
c45536e1
DG
5401 * that was never started. It's possible since we can have a fail start
5402 * from either the application manager thread or the command thread. Simply
5403 * indicate that this is a stop error.
9bc07046 5404 */
f9dfc3d9 5405 if (!ua_sess->started) {
c45536e1
DG
5406 goto error_rcu_unlock;
5407 }
7db205b5 5408
840cb59c 5409 health_code_update();
86acf0da 5410
9d6c7d3f 5411 /* This inhibits UST tracing */
fb45065e 5412 pthread_mutex_lock(&app->sock_lock);
b623cb6a 5413 ret = lttng_ust_ctl_stop_session(app->sock, ua_sess->handle);
fb45065e 5414 pthread_mutex_unlock(&app->sock_lock);
9d6c7d3f 5415 if (ret < 0) {
be355079
JR
5416 if (ret == -EPIPE || ret == -LTTNG_UST_ERR_EXITING) {
5417 DBG3("UST app stop session failed. Application is dead: pid = %d, sock = %d",
28ab034a
JG
5418 app->pid,
5419 app->sock);
3757b385 5420 goto end_unlock;
be355079
JR
5421 } else if (ret == -EAGAIN) {
5422 WARN("UST app stop session failed. Communication time out: pid = %d, sock = %d",
28ab034a
JG
5423 app->pid,
5424 app->sock);
be355079
JR
5425 goto end_unlock;
5426
5427 } else {
5428 ERR("UST app stop session failed with ret %d: pid = %d, sock = %d",
28ab034a
JG
5429 ret,
5430 app->pid,
5431 app->sock);
ffe60014 5432 }
9d6c7d3f
DG
5433 goto error_rcu_unlock;
5434 }
5435
840cb59c 5436 health_code_update();
66cefebd 5437 ua_sess->enabled = false;
86acf0da 5438
9d6c7d3f 5439 /* Quiescent wait after stopping trace */
fb45065e 5440 pthread_mutex_lock(&app->sock_lock);
b623cb6a 5441 ret = lttng_ust_ctl_wait_quiescent(app->sock);
fb45065e 5442 pthread_mutex_unlock(&app->sock_lock);
be355079
JR
5443 if (ret < 0) {
5444 if (ret == -EPIPE || ret == -LTTNG_UST_ERR_EXITING) {
9324443a 5445 DBG3("UST app wait quiescent failed. Application is dead: pid= %d, sock = %d",
28ab034a
JG
5446 app->pid,
5447 app->sock);
be355079 5448 } else if (ret == -EAGAIN) {
9324443a 5449 WARN("UST app wait quiescent failed. Communication time out: pid= %d, sock = %d",
28ab034a
JG
5450 app->pid,
5451 app->sock);
be355079 5452 } else {
9324443a 5453 ERR("UST app wait quiescent failed with ret %d: pid= %d, sock = %d",
28ab034a
JG
5454 ret,
5455 app->pid,
5456 app->sock);
be355079 5457 }
ffe60014 5458 }
9d6c7d3f 5459
840cb59c 5460 health_code_update();
86acf0da 5461
d7bfb9b0
JG
5462 {
5463 auto locked_registry = get_locked_session_registry(ua_sess);
fad1ed2f 5464
d7bfb9b0
JG
5465 /* The UST app session is held registry shall not be null. */
5466 LTTNG_ASSERT(locked_registry);
1b532a60 5467
d7bfb9b0
JG
5468 /* Push metadata for application before freeing the application. */
5469 (void) push_metadata(locked_registry, ua_sess->consumer);
5470 }
b34cbebf 5471
3757b385 5472end_unlock:
b34cbebf
MD
5473 pthread_mutex_unlock(&ua_sess->lock);
5474end_no_session:
b34cbebf
MD
5475 health_code_update();
5476 return 0;
5477
5478error_rcu_unlock:
5479 pthread_mutex_unlock(&ua_sess->lock);
b34cbebf
MD
5480 health_code_update();
5481 return -1;
5482}
5483
a7db814e 5484static int ust_app_flush_app_session(ust_app& app, ust_app_session& ua_sess)
b34cbebf 5485{
c4b88406 5486 int ret, retval = 0;
b34cbebf 5487 struct lttng_ht_iter iter;
b34cbebf 5488 struct ust_app_channel *ua_chan;
c4b88406 5489 struct consumer_socket *socket;
b34cbebf 5490
a7db814e 5491 DBG("Flushing app session buffers for ust app pid %d", app.pid);
b34cbebf 5492
a7db814e 5493 if (!app.compatible) {
c4b88406 5494 goto end_not_compatible;
b34cbebf
MD
5495 }
5496
a7db814e 5497 pthread_mutex_lock(&ua_sess.lock);
b34cbebf 5498
a7db814e 5499 if (ua_sess.deleted) {
b161602a
MD
5500 goto end_deleted;
5501 }
5502
b34cbebf
MD
5503 health_code_update();
5504
9d6c7d3f 5505 /* Flushing buffers */
a7db814e 5506 socket = consumer_find_socket_by_bitness(app.abi.bits_per_long, ua_sess.consumer);
ce34fcd0
MD
5507
5508 /* Flush buffers and push metadata. */
a7db814e 5509 switch (ua_sess.buffer_type) {
ce34fcd0 5510 case LTTNG_BUFFER_PER_PID:
56047f5a
JG
5511 {
5512 lttng::urcu::read_lock_guard read_lock;
5513
a7db814e 5514 cds_lfht_for_each_entry (ua_sess.channels->ht, &iter.iter, ua_chan, node.node) {
ce34fcd0 5515 health_code_update();
ce34fcd0
MD
5516 ret = consumer_flush_channel(socket, ua_chan->key);
5517 if (ret) {
5518 ERR("Error flushing consumer channel");
5519 retval = -1;
5520 continue;
5521 }
8be98f9a 5522 }
56047f5a 5523
ce34fcd0 5524 break;
56047f5a 5525 }
ce34fcd0
MD
5526 case LTTNG_BUFFER_PER_UID:
5527 default:
a0377dfe 5528 abort();
ce34fcd0 5529 break;
8be98f9a 5530 }
8be98f9a 5531
840cb59c 5532 health_code_update();
86acf0da 5533
b161602a 5534end_deleted:
a7db814e 5535 pthread_mutex_unlock(&ua_sess.lock);
ce34fcd0 5536
c4b88406 5537end_not_compatible:
c4b88406
MD
5538 health_code_update();
5539 return retval;
5540}
5541
5542/*
ce34fcd0
MD
5543 * Flush buffers for all applications for a specific UST session.
5544 * Called with UST session lock held.
c4b88406 5545 */
28ab034a 5546static int ust_app_flush_session(struct ltt_ust_session *usess)
c4b88406
MD
5547
5548{
99b1411c 5549 int ret = 0;
c4b88406 5550
ce34fcd0 5551 DBG("Flushing session buffers for all ust apps");
c4b88406 5552
ce34fcd0
MD
5553 /* Flush buffers and push metadata. */
5554 switch (usess->buffer_type) {
5555 case LTTNG_BUFFER_PER_UID:
5556 {
5557 struct buffer_reg_uid *reg;
5558 struct lttng_ht_iter iter;
5559
5560 /* Flush all per UID buffers associated to that session. */
28ab034a 5561 cds_list_for_each_entry (reg, &usess->buffer_reg_uid_list, lnode) {
56047f5a 5562 lttng::urcu::read_lock_guard read_lock;
b0f2e8db 5563 lsu::registry_session *ust_session_reg;
3273699d 5564 struct buffer_reg_channel *buf_reg_chan;
ce34fcd0
MD
5565 struct consumer_socket *socket;
5566
5567 /* Get consumer socket to use to push the metadata.*/
5568 socket = consumer_find_socket_by_bitness(reg->bits_per_long,
28ab034a 5569 usess->consumer);
ce34fcd0
MD
5570 if (!socket) {
5571 /* Ignore request if no consumer is found for the session. */
5572 continue;
5573 }
5574
28ab034a
JG
5575 cds_lfht_for_each_entry (
5576 reg->registry->channels->ht, &iter.iter, buf_reg_chan, node.node) {
ce34fcd0
MD
5577 /*
5578 * The following call will print error values so the return
5579 * code is of little importance because whatever happens, we
5580 * have to try them all.
5581 */
3273699d 5582 (void) consumer_flush_channel(socket, buf_reg_chan->consumer_key);
ce34fcd0
MD
5583 }
5584
5585 ust_session_reg = reg->registry->reg.ust;
5586 /* Push metadata. */
d7bfb9b0
JG
5587 auto locked_registry = ust_session_reg->lock();
5588 (void) push_metadata(locked_registry, usess->consumer);
ce34fcd0 5589 }
56047f5a 5590
ce34fcd0
MD
5591 break;
5592 }
5593 case LTTNG_BUFFER_PER_PID:
5594 {
5595 struct ust_app_session *ua_sess;
5596 struct lttng_ht_iter iter;
5597 struct ust_app *app;
56047f5a 5598 lttng::urcu::read_lock_guard read_lock;
ce34fcd0 5599
28ab034a 5600 cds_lfht_for_each_entry (ust_app_ht->ht, &iter.iter, app, pid_n.node) {
ce34fcd0 5601 ua_sess = lookup_session_by_app(usess, app);
cd9adb8b 5602 if (ua_sess == nullptr) {
ce34fcd0
MD
5603 continue;
5604 }
56047f5a 5605
a7db814e 5606 (void) ust_app_flush_app_session(*app, *ua_sess);
ce34fcd0 5607 }
56047f5a 5608
ce34fcd0
MD
5609 break;
5610 }
5611 default:
99b1411c 5612 ret = -1;
a0377dfe 5613 abort();
ce34fcd0 5614 break;
c4b88406 5615 }
c4b88406 5616
840cb59c 5617 health_code_update();
c4b88406 5618 return ret;
8be98f9a
MD
5619}
5620
28ab034a 5621static int ust_app_clear_quiescent_app_session(struct ust_app *app, struct ust_app_session *ua_sess)
0dd01979
MD
5622{
5623 int ret = 0;
5624 struct lttng_ht_iter iter;
5625 struct ust_app_channel *ua_chan;
5626 struct consumer_socket *socket;
5627
5628 DBG("Clearing stream quiescent state for ust app pid %d", app->pid);
5629
56047f5a 5630 lttng::urcu::read_lock_guard read_lock;
0dd01979
MD
5631
5632 if (!app->compatible) {
5633 goto end_not_compatible;
5634 }
5635
5636 pthread_mutex_lock(&ua_sess->lock);
5637
5638 if (ua_sess->deleted) {
5639 goto end_unlock;
5640 }
5641
5642 health_code_update();
5643
28ab034a 5644 socket = consumer_find_socket_by_bitness(app->abi.bits_per_long, ua_sess->consumer);
0dd01979 5645 if (!socket) {
28ab034a 5646 ERR("Failed to find consumer (%" PRIu32 ") socket", app->abi.bits_per_long);
0dd01979
MD
5647 ret = -1;
5648 goto end_unlock;
5649 }
5650
5651 /* Clear quiescent state. */
5652 switch (ua_sess->buffer_type) {
5653 case LTTNG_BUFFER_PER_PID:
28ab034a 5654 cds_lfht_for_each_entry (ua_sess->channels->ht, &iter.iter, ua_chan, node.node) {
0dd01979 5655 health_code_update();
28ab034a 5656 ret = consumer_clear_quiescent_channel(socket, ua_chan->key);
0dd01979
MD
5657 if (ret) {
5658 ERR("Error clearing quiescent state for consumer channel");
5659 ret = -1;
5660 continue;
5661 }
5662 }
5663 break;
5664 case LTTNG_BUFFER_PER_UID:
5665 default:
a0377dfe 5666 abort();
0dd01979
MD
5667 ret = -1;
5668 break;
5669 }
5670
5671 health_code_update();
5672
5673end_unlock:
5674 pthread_mutex_unlock(&ua_sess->lock);
5675
5676end_not_compatible:
0dd01979
MD
5677 health_code_update();
5678 return ret;
5679}
5680
5681/*
5682 * Clear quiescent state in each stream for all applications for a
5683 * specific UST session.
5684 * Called with UST session lock held.
5685 */
28ab034a 5686static int ust_app_clear_quiescent_session(struct ltt_ust_session *usess)
0dd01979
MD
5687
5688{
5689 int ret = 0;
5690
5691 DBG("Clearing stream quiescent state for all ust apps");
5692
0dd01979
MD
5693 switch (usess->buffer_type) {
5694 case LTTNG_BUFFER_PER_UID:
5695 {
5696 struct lttng_ht_iter iter;
5697 struct buffer_reg_uid *reg;
5698
5699 /*
5700 * Clear quiescent for all per UID buffers associated to
5701 * that session.
5702 */
28ab034a 5703 cds_list_for_each_entry (reg, &usess->buffer_reg_uid_list, lnode) {
0dd01979 5704 struct consumer_socket *socket;
3273699d 5705 struct buffer_reg_channel *buf_reg_chan;
56047f5a 5706 lttng::urcu::read_lock_guard read_lock;
0dd01979
MD
5707
5708 /* Get associated consumer socket.*/
28ab034a
JG
5709 socket = consumer_find_socket_by_bitness(reg->bits_per_long,
5710 usess->consumer);
0dd01979
MD
5711 if (!socket) {
5712 /*
5713 * Ignore request if no consumer is found for
5714 * the session.
5715 */
5716 continue;
5717 }
5718
28ab034a
JG
5719 cds_lfht_for_each_entry (
5720 reg->registry->channels->ht, &iter.iter, buf_reg_chan, node.node) {
0dd01979
MD
5721 /*
5722 * The following call will print error values so
5723 * the return code is of little importance
5724 * because whatever happens, we have to try them
5725 * all.
5726 */
5727 (void) consumer_clear_quiescent_channel(socket,
28ab034a 5728 buf_reg_chan->consumer_key);
0dd01979
MD
5729 }
5730 }
56047f5a 5731
0dd01979
MD
5732 break;
5733 }
5734 case LTTNG_BUFFER_PER_PID:
5735 {
5736 struct ust_app_session *ua_sess;
5737 struct lttng_ht_iter iter;
5738 struct ust_app *app;
56047f5a 5739 lttng::urcu::read_lock_guard read_lock;
0dd01979 5740
28ab034a 5741 cds_lfht_for_each_entry (ust_app_ht->ht, &iter.iter, app, pid_n.node) {
0dd01979 5742 ua_sess = lookup_session_by_app(usess, app);
cd9adb8b 5743 if (ua_sess == nullptr) {
0dd01979
MD
5744 continue;
5745 }
28ab034a 5746 (void) ust_app_clear_quiescent_app_session(app, ua_sess);
0dd01979 5747 }
56047f5a 5748
0dd01979
MD
5749 break;
5750 }
5751 default:
5752 ret = -1;
a0377dfe 5753 abort();
0dd01979
MD
5754 break;
5755 }
5756
0dd01979
MD
5757 health_code_update();
5758 return ret;
5759}
5760
84cd17c6
MD
5761/*
5762 * Destroy a specific UST session in apps.
5763 */
3353de95 5764static int destroy_trace(struct ltt_ust_session *usess, struct ust_app *app)
84cd17c6 5765{
ffe60014 5766 int ret;
84cd17c6 5767 struct ust_app_session *ua_sess;
bec39940 5768 struct lttng_ht_iter iter;
d9bf3ca4 5769 struct lttng_ht_node_u64 *node;
84cd17c6 5770
852d0037 5771 DBG("Destroy tracing for ust app pid %d", app->pid);
84cd17c6 5772
56047f5a 5773 lttng::urcu::read_lock_guard read_lock;
84cd17c6 5774
e0c7ec2b
DG
5775 if (!app->compatible) {
5776 goto end;
5777 }
5778
84cd17c6 5779 __lookup_session_by_app(usess, app, &iter);
00d7d903 5780 node = lttng_ht_iter_get_node<lttng_ht_node_u64>(&iter);
cd9adb8b 5781 if (node == nullptr) {
d42f20df
DG
5782 /* Session is being or is deleted. */
5783 goto end;
84cd17c6 5784 }
0114db0e 5785 ua_sess = lttng::utils::container_of(node, &ust_app_session::node);
c4a1715b 5786
840cb59c 5787 health_code_update();
d0b96690 5788 destroy_app_session(app, ua_sess);
84cd17c6 5789
840cb59c 5790 health_code_update();
7db205b5 5791
84cd17c6 5792 /* Quiescent wait after stopping trace */
fb45065e 5793 pthread_mutex_lock(&app->sock_lock);
b623cb6a 5794 ret = lttng_ust_ctl_wait_quiescent(app->sock);
fb45065e 5795 pthread_mutex_unlock(&app->sock_lock);
be355079
JR
5796 if (ret < 0) {
5797 if (ret == -EPIPE || ret == -LTTNG_UST_ERR_EXITING) {
9324443a 5798 DBG3("UST app wait quiescent failed. Application is dead: pid= %d, sock = %d",
28ab034a
JG
5799 app->pid,
5800 app->sock);
be355079 5801 } else if (ret == -EAGAIN) {
9324443a 5802 WARN("UST app wait quiescent failed. Communication time out: pid= %d, sock = %d",
28ab034a
JG
5803 app->pid,
5804 app->sock);
be355079 5805 } else {
9324443a 5806 ERR("UST app wait quiescent failed with ret %d: pid= %d, sock = %d",
28ab034a
JG
5807 ret,
5808 app->pid,
5809 app->sock);
be355079 5810 }
ffe60014 5811 }
e0c7ec2b 5812end:
840cb59c 5813 health_code_update();
84cd17c6 5814 return 0;
84cd17c6
MD
5815}
5816
5b4a0ec0
DG
5817/*
5818 * Start tracing for the UST session.
5819 */
421cb601
DG
5820int ust_app_start_trace_all(struct ltt_ust_session *usess)
5821{
bec39940 5822 struct lttng_ht_iter iter;
421cb601 5823 struct ust_app *app;
48842b30 5824
421cb601
DG
5825 DBG("Starting all UST traces");
5826
bb2452c8
MD
5827 /*
5828 * Even though the start trace might fail, flag this session active so
5829 * other application coming in are started by default.
5830 */
66cefebd 5831 usess->active = true;
bb2452c8 5832
0dd01979
MD
5833 /*
5834 * In a start-stop-start use-case, we need to clear the quiescent state
5835 * of each channel set by the prior stop command, thus ensuring that a
5836 * following stop or destroy is sure to grab a timestamp_end near those
5837 * operations, even if the packet is empty.
5838 */
5839 (void) ust_app_clear_quiescent_session(usess);
5840
56047f5a
JG
5841 {
5842 lttng::urcu::read_lock_guard read_lock;
0498a00c 5843
56047f5a
JG
5844 cds_lfht_for_each_entry (ust_app_ht->ht, &iter.iter, app, pid_n.node) {
5845 ust_app_global_update(usess, app);
5846 }
5847 }
48842b30
DG
5848
5849 return 0;
5850}
487cf67c 5851
8be98f9a
MD
5852/*
5853 * Start tracing for the UST session.
ce34fcd0 5854 * Called with UST session lock held.
8be98f9a
MD
5855 */
5856int ust_app_stop_trace_all(struct ltt_ust_session *usess)
5857{
5858 int ret = 0;
bec39940 5859 struct lttng_ht_iter iter;
8be98f9a
MD
5860 struct ust_app *app;
5861
5862 DBG("Stopping all UST traces");
5863
bb2452c8
MD
5864 /*
5865 * Even though the stop trace might fail, flag this session inactive so
5866 * other application coming in are not started by default.
5867 */
66cefebd 5868 usess->active = false;
bb2452c8 5869
56047f5a
JG
5870 {
5871 lttng::urcu::read_lock_guard read_lock;
8be98f9a 5872
56047f5a
JG
5873 cds_lfht_for_each_entry (ust_app_ht->ht, &iter.iter, app, pid_n.node) {
5874 ret = ust_app_stop_trace(usess, app);
5875 if (ret < 0) {
5876 /* Continue to next apps even on error */
5877 continue;
5878 }
b34cbebf
MD
5879 }
5880 }
5881
ce34fcd0 5882 (void) ust_app_flush_session(usess);
8be98f9a 5883
8be98f9a
MD
5884 return 0;
5885}
5886
84cd17c6
MD
5887/*
5888 * Destroy app UST session.
5889 */
5890int ust_app_destroy_trace_all(struct ltt_ust_session *usess)
5891{
5892 int ret = 0;
bec39940 5893 struct lttng_ht_iter iter;
84cd17c6
MD
5894 struct ust_app *app;
5895
5896 DBG("Destroy all UST traces");
5897
56047f5a
JG
5898 {
5899 lttng::urcu::read_lock_guard read_lock;
84cd17c6 5900
56047f5a
JG
5901 cds_lfht_for_each_entry (ust_app_ht->ht, &iter.iter, app, pid_n.node) {
5902 ret = destroy_trace(usess, app);
5903 if (ret < 0) {
5904 /* Continue to next apps even on error */
5905 continue;
5906 }
84cd17c6
MD
5907 }
5908 }
5909
84cd17c6
MD
5910 return 0;
5911}
5912
88e3c2f5 5913/* The ua_sess lock must be held by the caller. */
28ab034a
JG
5914static int find_or_create_ust_app_channel(struct ltt_ust_session *usess,
5915 struct ust_app_session *ua_sess,
5916 struct ust_app *app,
5917 struct ltt_ust_channel *uchan,
5918 struct ust_app_channel **ua_chan)
487cf67c 5919{
55c54cce 5920 int ret = 0;
88e3c2f5
JG
5921 struct lttng_ht_iter iter;
5922 struct lttng_ht_node_str *ua_chan_node;
5923
5924 lttng_ht_lookup(ua_sess->channels, (void *) uchan->name, &iter);
00d7d903 5925 ua_chan_node = lttng_ht_iter_get_node<lttng_ht_node_str>(&iter);
88e3c2f5 5926 if (ua_chan_node) {
28ab034a 5927 *ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node);
88e3c2f5
JG
5928 goto end;
5929 }
5930
5931 ret = ust_app_channel_create(usess, ua_sess, uchan, app, ua_chan);
5932 if (ret) {
5933 goto end;
5934 }
5935end:
5936 return ret;
5937}
5938
28ab034a
JG
5939static int ust_app_channel_synchronize_event(struct ust_app_channel *ua_chan,
5940 struct ltt_ust_event *uevent,
5941 struct ust_app *app)
88e3c2f5
JG
5942{
5943 int ret = 0;
cd9adb8b 5944 struct ust_app_event *ua_event = nullptr;
88e3c2f5 5945
28ab034a
JG
5946 ua_event = find_ust_app_event(ua_chan->events,
5947 uevent->attr.name,
5948 uevent->filter,
dcd24bbf 5949 (enum lttng_ust_abi_loglevel_type) uevent->attr.loglevel_type,
28ab034a
JG
5950 uevent->attr.loglevel,
5951 uevent->exclusion);
88e3c2f5 5952 if (!ua_event) {
f46376a1 5953 ret = create_ust_app_event(ua_chan, uevent, app);
88e3c2f5
JG
5954 if (ret < 0) {
5955 goto end;
5956 }
5957 } else {
5958 if (ua_event->enabled != uevent->enabled) {
28ab034a
JG
5959 ret = uevent->enabled ? enable_ust_app_event(ua_event, app) :
5960 disable_ust_app_event(ua_event, app);
88e3c2f5
JG
5961 }
5962 }
5963
5964end:
5965 return ret;
5966}
5967
993578ff 5968/* Called with RCU read-side lock held. */
28ab034a 5969static void ust_app_synchronize_event_notifier_rules(struct ust_app *app)
993578ff
JR
5970{
5971 int ret = 0;
5972 enum lttng_error_code ret_code;
5973 enum lttng_trigger_status t_status;
5974 struct lttng_ht_iter app_trigger_iter;
cd9adb8b 5975 struct lttng_triggers *triggers = nullptr;
993578ff
JR
5976 struct ust_app_event_notifier_rule *event_notifier_rule;
5977 unsigned int count, i;
5978
48b7cdc2
FD
5979 ASSERT_RCU_READ_LOCKED();
5980
783db316
MD
5981 if (!ust_app_supports_notifiers(app)) {
5982 goto end;
5983 }
5984
993578ff
JR
5985 /*
5986 * Currrently, registering or unregistering a trigger with an
5987 * event rule condition causes a full synchronization of the event
5988 * notifiers.
5989 *
5990 * The first step attempts to add an event notifier for all registered
5991 * triggers that apply to the user space tracers. Then, the
5992 * application's event notifiers rules are all checked against the list
5993 * of registered triggers. Any event notifier that doesn't have a
5994 * matching trigger can be assumed to have been disabled.
5995 *
5996 * All of this is inefficient, but is put in place to get the feature
5997 * rolling as it is simpler at this moment. It will be optimized Soon™
5998 * to allow the state of enabled
5999 * event notifiers to be synchronized in a piece-wise way.
6000 */
6001
6002 /* Get all triggers using uid 0 (root) */
6003 ret_code = notification_thread_command_list_triggers(
28ab034a 6004 the_notification_thread_handle, 0, &triggers);
993578ff 6005 if (ret_code != LTTNG_OK) {
993578ff
JR
6006 goto end;
6007 }
6008
a0377dfe 6009 LTTNG_ASSERT(triggers);
993578ff
JR
6010
6011 t_status = lttng_triggers_get_count(triggers, &count);
6012 if (t_status != LTTNG_TRIGGER_STATUS_OK) {
993578ff
JR
6013 goto end;
6014 }
6015
6016 for (i = 0; i < count; i++) {
c61231cc
JR
6017 const struct lttng_condition *condition;
6018 const struct lttng_event_rule *event_rule;
993578ff
JR
6019 struct lttng_trigger *trigger;
6020 const struct ust_app_event_notifier_rule *looked_up_event_notifier_rule;
6021 enum lttng_condition_status condition_status;
6022 uint64_t token;
6023
6024 trigger = lttng_triggers_borrow_mutable_at_index(triggers, i);
a0377dfe 6025 LTTNG_ASSERT(trigger);
993578ff
JR
6026
6027 token = lttng_trigger_get_tracer_token(trigger);
c61231cc 6028 condition = lttng_trigger_get_const_condition(trigger);
993578ff 6029
8dbb86b8 6030 if (lttng_condition_get_type(condition) !=
28ab034a 6031 LTTNG_CONDITION_TYPE_EVENT_RULE_MATCHES) {
993578ff
JR
6032 /* Does not apply */
6033 continue;
6034 }
6035
c61231cc
JR
6036 condition_status =
6037 lttng_condition_event_rule_matches_get_rule(condition, &event_rule);
a0377dfe 6038 LTTNG_ASSERT(condition_status == LTTNG_CONDITION_STATUS_OK);
993578ff
JR
6039
6040 if (lttng_event_rule_get_domain_type(event_rule) == LTTNG_DOMAIN_KERNEL) {
6041 /* Skip kernel related triggers. */
6042 continue;
6043 }
6044
6045 /*
6046 * Find or create the associated token event rule. The caller
6047 * holds the RCU read lock, so this is safe to call without
6048 * explicitly acquiring it here.
6049 */
6050 looked_up_event_notifier_rule = find_ust_app_event_notifier_rule(
28ab034a 6051 app->token_to_event_notifier_rule_ht, token);
993578ff 6052 if (!looked_up_event_notifier_rule) {
267d66aa 6053 ret = create_ust_app_event_notifier_rule(trigger, app);
993578ff
JR
6054 if (ret < 0) {
6055 goto end;
6056 }
6057 }
6058 }
6059
56047f5a
JG
6060 {
6061 lttng::urcu::read_lock_guard read_lock;
6062
6063 /* Remove all unknown event sources from the app. */
6064 cds_lfht_for_each_entry (app->token_to_event_notifier_rule_ht->ht,
6065 &app_trigger_iter.iter,
6066 event_notifier_rule,
6067 node.node) {
6068 const uint64_t app_token = event_notifier_rule->token;
6069 bool found = false;
993578ff 6070
56047f5a
JG
6071 /*
6072 * Check if the app event trigger still exists on the
6073 * notification side.
6074 */
6075 for (i = 0; i < count; i++) {
6076 uint64_t notification_thread_token;
6077 const struct lttng_trigger *trigger =
6078 lttng_triggers_get_at_index(triggers, i);
993578ff 6079
56047f5a 6080 LTTNG_ASSERT(trigger);
993578ff 6081
56047f5a 6082 notification_thread_token = lttng_trigger_get_tracer_token(trigger);
993578ff 6083
56047f5a
JG
6084 if (notification_thread_token == app_token) {
6085 found = true;
6086 break;
6087 }
993578ff 6088 }
993578ff 6089
56047f5a
JG
6090 if (found) {
6091 /* Still valid. */
6092 continue;
6093 }
993578ff 6094
56047f5a
JG
6095 /*
6096 * This trigger was unregistered, disable it on the tracer's
6097 * side.
6098 */
6099 ret = lttng_ht_del(app->token_to_event_notifier_rule_ht, &app_trigger_iter);
6100 LTTNG_ASSERT(ret == 0);
993578ff 6101
56047f5a
JG
6102 /* Callee logs errors. */
6103 (void) disable_ust_object(app, event_notifier_rule->obj);
993578ff 6104
56047f5a
JG
6105 delete_ust_app_event_notifier_rule(app->sock, event_notifier_rule, app);
6106 }
993578ff
JR
6107 }
6108
993578ff
JR
6109end:
6110 lttng_triggers_destroy(triggers);
6111 return;
6112}
6113
88e3c2f5 6114/*
a84d1024 6115 * RCU read lock must be held by the caller.
88e3c2f5 6116 */
28ab034a
JG
6117static void ust_app_synchronize_all_channels(struct ltt_ust_session *usess,
6118 struct ust_app_session *ua_sess,
6119 struct ust_app *app)
88e3c2f5
JG
6120{
6121 int ret = 0;
6122 struct cds_lfht_iter uchan_iter;
6123 struct ltt_ust_channel *uchan;
1f3580c7 6124
a0377dfe
FD
6125 LTTNG_ASSERT(usess);
6126 LTTNG_ASSERT(ua_sess);
6127 LTTNG_ASSERT(app);
48b7cdc2 6128 ASSERT_RCU_READ_LOCKED();
ef67c072 6129
28ab034a 6130 cds_lfht_for_each_entry (usess->domain_global.channels->ht, &uchan_iter, uchan, node.node) {
88e3c2f5
JG
6131 struct ust_app_channel *ua_chan;
6132 struct cds_lfht_iter uevent_iter;
6133 struct ltt_ust_event *uevent;
487cf67c 6134
31746f93 6135 /*
88e3c2f5
JG
6136 * Search for a matching ust_app_channel. If none is found,
6137 * create it. Creating the channel will cause the ua_chan
6138 * structure to be allocated, the channel buffers to be
6139 * allocated (if necessary) and sent to the application, and
6140 * all enabled contexts will be added to the channel.
31746f93 6141 */
28ab034a 6142 ret = find_or_create_ust_app_channel(usess, ua_sess, app, uchan, &ua_chan);
88e3c2f5
JG
6143 if (ret) {
6144 /* Tracer is probably gone or ENOMEM. */
a84d1024 6145 goto end;
727d5404
DG
6146 }
6147
88e3c2f5
JG
6148 if (!ua_chan) {
6149 /* ua_chan will be NULL for the metadata channel */
6150 continue;
6151 }
727d5404 6152
28ab034a
JG
6153 cds_lfht_for_each_entry (uchan->events->ht, &uevent_iter, uevent, node.node) {
6154 ret = ust_app_channel_synchronize_event(ua_chan, uevent, app);
88e3c2f5 6155 if (ret) {
a84d1024 6156 goto end;
487cf67c 6157 }
36dc12cc 6158 }
d0b96690 6159
88e3c2f5 6160 if (ua_chan->enabled != uchan->enabled) {
28ab034a
JG
6161 ret = uchan->enabled ? enable_ust_app_channel(ua_sess, uchan, app) :
6162 disable_ust_app_channel(ua_sess, ua_chan, app);
88e3c2f5 6163 if (ret) {
a84d1024 6164 goto end;
88e3c2f5
JG
6165 }
6166 }
36dc12cc 6167 }
a84d1024
FD
6168end:
6169 return;
6170}
6171
6172/*
6173 * The caller must ensure that the application is compatible and is tracked
6174 * by the process attribute trackers.
6175 */
28ab034a 6176static void ust_app_synchronize(struct ltt_ust_session *usess, struct ust_app *app)
a84d1024
FD
6177{
6178 int ret = 0;
cd9adb8b 6179 struct ust_app_session *ua_sess = nullptr;
a84d1024
FD
6180
6181 /*
6182 * The application's configuration should only be synchronized for
6183 * active sessions.
6184 */
a0377dfe 6185 LTTNG_ASSERT(usess->active);
a84d1024 6186
cd9adb8b 6187 ret = find_or_create_ust_app_session(usess, app, &ua_sess, nullptr);
a84d1024
FD
6188 if (ret < 0) {
6189 /* Tracer is probably gone or ENOMEM. */
50f71cad 6190 goto end;
a84d1024 6191 }
6d2f8aae 6192
a0377dfe 6193 LTTNG_ASSERT(ua_sess);
a84d1024
FD
6194
6195 pthread_mutex_lock(&ua_sess->lock);
6196 if (ua_sess->deleted) {
50f71cad 6197 goto deleted_session;
a84d1024
FD
6198 }
6199
56047f5a
JG
6200 {
6201 lttng::urcu::read_lock_guard read_lock;
a84d1024 6202
56047f5a 6203 ust_app_synchronize_all_channels(usess, ua_sess, app);
ef67c072 6204
56047f5a
JG
6205 /*
6206 * Create the metadata for the application. This returns gracefully if a
6207 * metadata was already set for the session.
6208 *
6209 * The metadata channel must be created after the data channels as the
6210 * consumer daemon assumes this ordering. When interacting with a relay
6211 * daemon, the consumer will use this assumption to send the
6212 * "STREAMS_SENT" message to the relay daemon.
6213 */
6214 ret = create_ust_app_metadata(ua_sess, app, usess->consumer);
6215 if (ret < 0) {
6216 ERR("Metadata creation failed for app sock %d for session id %" PRIu64,
6217 app->sock,
6218 usess->id);
6219 }
ef67c072
JG
6220 }
6221
50f71cad 6222deleted_session:
d0b96690 6223 pthread_mutex_unlock(&ua_sess->lock);
50f71cad 6224end:
487cf67c
DG
6225 return;
6226}
55cc08a6 6227
28ab034a 6228static void ust_app_global_destroy(struct ltt_ust_session *usess, struct ust_app *app)
a9ad0c8f
MD
6229{
6230 struct ust_app_session *ua_sess;
6231
6232 ua_sess = lookup_session_by_app(usess, app);
cd9adb8b 6233 if (ua_sess == nullptr) {
a9ad0c8f
MD
6234 return;
6235 }
6236 destroy_app_session(app, ua_sess);
6237}
6238
6239/*
6240 * Add channels/events from UST global domain to registered apps at sock.
6241 *
6242 * Called with session lock held.
6243 * Called with RCU read-side lock held.
6244 */
6245void ust_app_global_update(struct ltt_ust_session *usess, struct ust_app *app)
6246{
a0377dfe
FD
6247 LTTNG_ASSERT(usess);
6248 LTTNG_ASSERT(usess->active);
48b7cdc2 6249 ASSERT_RCU_READ_LOCKED();
a9ad0c8f 6250
28ab034a 6251 DBG2("UST app global update for app sock %d for session id %" PRIu64, app->sock, usess->id);
a9ad0c8f
MD
6252
6253 if (!app->compatible) {
6254 return;
6255 }
28ab034a
JG
6256 if (trace_ust_id_tracker_lookup(LTTNG_PROCESS_ATTR_VIRTUAL_PROCESS_ID, usess, app->pid) &&
6257 trace_ust_id_tracker_lookup(LTTNG_PROCESS_ATTR_VIRTUAL_USER_ID, usess, app->uid) &&
6258 trace_ust_id_tracker_lookup(LTTNG_PROCESS_ATTR_VIRTUAL_GROUP_ID, usess, app->gid)) {
88e3c2f5
JG
6259 /*
6260 * Synchronize the application's internal tracing configuration
6261 * and start tracing.
6262 */
6263 ust_app_synchronize(usess, app);
6264 ust_app_start_trace(usess, app);
a9ad0c8f
MD
6265 } else {
6266 ust_app_global_destroy(usess, app);
6267 }
6268}
6269
993578ff
JR
6270/*
6271 * Add all event notifiers to an application.
6272 *
6273 * Called with session lock held.
6274 * Called with RCU read-side lock held.
6275 */
6276void ust_app_global_update_event_notifier_rules(struct ust_app *app)
6277{
48b7cdc2
FD
6278 ASSERT_RCU_READ_LOCKED();
6279
9324443a 6280 DBG2("UST application global event notifier rules update: app = '%s', pid = %d",
28ab034a
JG
6281 app->name,
6282 app->pid);
993578ff 6283
783db316 6284 if (!app->compatible || !ust_app_supports_notifiers(app)) {
993578ff
JR
6285 return;
6286 }
6287
cd9adb8b 6288 if (app->event_notifier_group.object == nullptr) {
9324443a 6289 WARN("UST app global update of event notifiers for app skipped since communication handle is null: app = '%s', pid = %d",
28ab034a
JG
6290 app->name,
6291 app->pid);
993578ff
JR
6292 return;
6293 }
6294
6295 ust_app_synchronize_event_notifier_rules(app);
6296}
6297
a9ad0c8f
MD
6298/*
6299 * Called with session lock held.
6300 */
6301void ust_app_global_update_all(struct ltt_ust_session *usess)
6302{
6303 struct lttng_ht_iter iter;
6304 struct ust_app *app;
6305
56047f5a
JG
6306 {
6307 lttng::urcu::read_lock_guard read_lock;
6308
6309 cds_lfht_for_each_entry (ust_app_ht->ht, &iter.iter, app, pid_n.node) {
6310 ust_app_global_update(usess, app);
6311 }
a9ad0c8f 6312 }
a9ad0c8f
MD
6313}
6314
cd9adb8b 6315void ust_app_global_update_all_event_notifier_rules()
993578ff
JR
6316{
6317 struct lttng_ht_iter iter;
6318 struct ust_app *app;
6319
56047f5a 6320 lttng::urcu::read_lock_guard read_lock;
28ab034a 6321 cds_lfht_for_each_entry (ust_app_ht->ht, &iter.iter, app, pid_n.node) {
993578ff
JR
6322 ust_app_global_update_event_notifier_rules(app);
6323 }
993578ff
JR
6324}
6325
55cc08a6
DG
6326/*
6327 * Add context to a specific channel for global UST domain.
6328 */
6329int ust_app_add_ctx_channel_glb(struct ltt_ust_session *usess,
28ab034a
JG
6330 struct ltt_ust_channel *uchan,
6331 struct ltt_ust_context *uctx)
55cc08a6
DG
6332{
6333 int ret = 0;
bec39940
DG
6334 struct lttng_ht_node_str *ua_chan_node;
6335 struct lttng_ht_iter iter, uiter;
cd9adb8b 6336 struct ust_app_channel *ua_chan = nullptr;
55cc08a6
DG
6337 struct ust_app_session *ua_sess;
6338 struct ust_app *app;
6339
a0377dfe 6340 LTTNG_ASSERT(usess->active);
0498a00c 6341
56047f5a
JG
6342 {
6343 lttng::urcu::read_lock_guard read_lock;
6344 cds_lfht_for_each_entry (ust_app_ht->ht, &iter.iter, app, pid_n.node) {
6345 if (!app->compatible) {
6346 /*
6347 * TODO: In time, we should notice the caller of this error by
6348 * telling him that this is a version error.
6349 */
6350 continue;
6351 }
6352 ua_sess = lookup_session_by_app(usess, app);
6353 if (ua_sess == nullptr) {
6354 continue;
6355 }
55cc08a6 6356
56047f5a 6357 pthread_mutex_lock(&ua_sess->lock);
b161602a 6358
56047f5a
JG
6359 if (ua_sess->deleted) {
6360 pthread_mutex_unlock(&ua_sess->lock);
6361 continue;
6362 }
b161602a 6363
56047f5a
JG
6364 /* Lookup channel in the ust app session */
6365 lttng_ht_lookup(ua_sess->channels, (void *) uchan->name, &uiter);
00d7d903 6366 ua_chan_node = lttng_ht_iter_get_node<lttng_ht_node_str>(&uiter);
56047f5a
JG
6367 if (ua_chan_node == nullptr) {
6368 goto next_app;
6369 }
6370 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node);
6371 ret = create_ust_app_channel_context(ua_chan, &uctx->ctx, app);
6372 if (ret < 0) {
6373 goto next_app;
6374 }
6375 next_app:
6376 pthread_mutex_unlock(&ua_sess->lock);
55cc08a6
DG
6377 }
6378 }
6379
76d45b40
DG
6380 return ret;
6381}
7f79d3a1 6382
d0b96690
DG
6383/*
6384 * Receive registration and populate the given msg structure.
6385 *
6386 * On success return 0 else a negative value returned by the ustctl call.
6387 */
6388int ust_app_recv_registration(int sock, struct ust_register_msg *msg)
6389{
6390 int ret;
6391 uint32_t pid, ppid, uid, gid;
6392
a0377dfe 6393 LTTNG_ASSERT(msg);
d0b96690 6394
28ab034a
JG
6395 ret = lttng_ust_ctl_recv_reg_msg(sock,
6396 &msg->type,
6397 &msg->major,
6398 &msg->minor,
6399 &pid,
6400 &ppid,
6401 &uid,
6402 &gid,
6403 &msg->bits_per_long,
6404 &msg->uint8_t_alignment,
6405 &msg->uint16_t_alignment,
6406 &msg->uint32_t_alignment,
6407 &msg->uint64_t_alignment,
6408 &msg->long_alignment,
6409 &msg->byte_order,
6410 msg->name);
d0b96690
DG
6411 if (ret < 0) {
6412 switch (-ret) {
6413 case EPIPE:
6414 case ECONNRESET:
6415 case LTTNG_UST_ERR_EXITING:
6416 DBG3("UST app recv reg message failed. Application died");
6417 break;
6418 case LTTNG_UST_ERR_UNSUP_MAJOR:
6419 ERR("UST app recv reg unsupported version %d.%d. Supporting %d.%d",
28ab034a
JG
6420 msg->major,
6421 msg->minor,
6422 LTTNG_UST_ABI_MAJOR_VERSION,
6423 LTTNG_UST_ABI_MINOR_VERSION);
d0b96690
DG
6424 break;
6425 default:
6426 ERR("UST app recv reg message failed with ret %d", ret);
6427 break;
6428 }
6429 goto error;
6430 }
6431 msg->pid = (pid_t) pid;
6432 msg->ppid = (pid_t) ppid;
6433 msg->uid = (uid_t) uid;
6434 msg->gid = (gid_t) gid;
6435
6436error:
6437 return ret;
6438}
6439
10b56aef
MD
6440/*
6441 * Return a ust app session object using the application object and the
6442 * session object descriptor has a key. If not found, NULL is returned.
6443 * A RCU read side lock MUST be acquired when calling this function.
28ab034a
JG
6444 */
6445static struct ust_app_session *find_session_by_objd(struct ust_app *app, int objd)
10b56aef
MD
6446{
6447 struct lttng_ht_node_ulong *node;
6448 struct lttng_ht_iter iter;
cd9adb8b 6449 struct ust_app_session *ua_sess = nullptr;
10b56aef 6450
a0377dfe 6451 LTTNG_ASSERT(app);
48b7cdc2 6452 ASSERT_RCU_READ_LOCKED();
10b56aef 6453
28ab034a 6454 lttng_ht_lookup(app->ust_sessions_objd, (void *) ((unsigned long) objd), &iter);
00d7d903 6455 node = lttng_ht_iter_get_node<lttng_ht_node_ulong>(&iter);
cd9adb8b 6456 if (node == nullptr) {
10b56aef
MD
6457 DBG2("UST app session find by objd %d not found", objd);
6458 goto error;
6459 }
6460
0114db0e 6461 ua_sess = lttng::utils::container_of(node, &ust_app_session::ust_objd_node);
10b56aef
MD
6462
6463error:
6464 return ua_sess;
6465}
6466
d88aee68
DG
6467/*
6468 * Return a ust app channel object using the application object and the channel
6469 * object descriptor has a key. If not found, NULL is returned. A RCU read side
6470 * lock MUST be acquired before calling this function.
6471 */
28ab034a 6472static struct ust_app_channel *find_channel_by_objd(struct ust_app *app, int objd)
d0b96690
DG
6473{
6474 struct lttng_ht_node_ulong *node;
6475 struct lttng_ht_iter iter;
cd9adb8b 6476 struct ust_app_channel *ua_chan = nullptr;
d0b96690 6477
a0377dfe 6478 LTTNG_ASSERT(app);
48b7cdc2 6479 ASSERT_RCU_READ_LOCKED();
d0b96690 6480
28ab034a 6481 lttng_ht_lookup(app->ust_objd, (void *) ((unsigned long) objd), &iter);
00d7d903 6482 node = lttng_ht_iter_get_node<lttng_ht_node_ulong>(&iter);
cd9adb8b 6483 if (node == nullptr) {
d0b96690
DG
6484 DBG2("UST app channel find by objd %d not found", objd);
6485 goto error;
6486 }
6487
0114db0e 6488 ua_chan = lttng::utils::container_of(node, &ust_app_channel::ust_objd_node);
d0b96690
DG
6489
6490error:
6491 return ua_chan;
6492}
6493
d88aee68
DG
6494/*
6495 * Reply to a register channel notification from an application on the notify
6496 * socket. The channel metadata is also created.
6497 *
6498 * The session UST registry lock is acquired in this function.
6499 *
6500 * On success 0 is returned else a negative value.
6501 */
d7bfb9b0 6502static int handle_app_register_channel_notification(int sock,
28ab034a
JG
6503 int cobjd,
6504 struct lttng_ust_ctl_field *raw_context_fields,
6505 size_t context_field_count)
d0b96690
DG
6506{
6507 int ret, ret_code = 0;
294e218e 6508 uint32_t chan_id;
7972aab2 6509 uint64_t chan_reg_key;
d0b96690
DG
6510 struct ust_app *app;
6511 struct ust_app_channel *ua_chan;
6512 struct ust_app_session *ua_sess;
28ab034a 6513 auto ust_ctl_context_fields =
303ac4ed
JG
6514 lttng::make_unique_wrapper<lttng_ust_ctl_field, lttng::memory::free>(
6515 raw_context_fields);
d0b96690 6516
d7bfb9b0 6517 lttng::urcu::read_lock_guard read_lock_guard;
d0b96690
DG
6518
6519 /* Lookup application. If not found, there is a code flow error. */
6520 app = find_app_by_notify_sock(sock);
d88aee68 6521 if (!app) {
28ab034a 6522 DBG("Application socket %d is being torn down. Abort event notify", sock);
d7bfb9b0 6523 return -1;
d88aee68 6524 }
d0b96690 6525
4950b860 6526 /* Lookup channel by UST object descriptor. */
d0b96690 6527 ua_chan = find_channel_by_objd(app, cobjd);
4950b860 6528 if (!ua_chan) {
fad1ed2f 6529 DBG("Application channel is being torn down. Abort event notify");
d7bfb9b0 6530 return 0;
4950b860
MD
6531 }
6532
a0377dfe 6533 LTTNG_ASSERT(ua_chan->session);
d0b96690 6534 ua_sess = ua_chan->session;
d0b96690 6535
7972aab2 6536 /* Get right session registry depending on the session buffer type. */
d7bfb9b0
JG
6537 auto locked_registry_session = get_locked_session_registry(ua_sess);
6538 if (!locked_registry_session) {
fad1ed2f 6539 DBG("Application session is being torn down. Abort event notify");
d7bfb9b0 6540 return 0;
fad1ed2f 6541 };
45893984 6542
7972aab2
DG
6543 /* Depending on the buffer type, a different channel key is used. */
6544 if (ua_sess->buffer_type == LTTNG_BUFFER_PER_UID) {
6545 chan_reg_key = ua_chan->tracing_channel_id;
d0b96690 6546 } else {
7972aab2 6547 chan_reg_key = ua_chan->key;
d0b96690
DG
6548 }
6549
4bcf2294 6550 auto& ust_reg_chan = locked_registry_session->channel(chan_reg_key);
7972aab2 6551
fb277293 6552 /* Channel id is set during the object creation. */
d7bfb9b0 6553 chan_id = ust_reg_chan.id;
fb277293 6554
d7bfb9b0
JG
6555 /*
6556 * The application returns the typing information of the channel's
6557 * context fields. In per-PID buffering mode, this is the first and only
6558 * time we get this information. It is our chance to finalize the
6559 * initialiation of the channel and serialize it's layout's description
6560 * to the trace's metadata.
6561 *
6562 * However, in per-UID buffering mode, every application will provide
6563 * this information (redundantly). The first time will allow us to
6564 * complete the initialization. The following times, we simply validate
6565 * that all apps provide the same typing for the context fields as a
6566 * sanity check.
6567 */
24ed18f2
JG
6568 try {
6569 auto app_context_fields = lsu::create_trace_fields_from_ust_ctl_fields(
28ab034a
JG
6570 *locked_registry_session,
6571 ust_ctl_context_fields.get(),
6572 context_field_count,
6573 lst::field_location::root::EVENT_RECORD_COMMON_CONTEXT,
6574 lsu::ctl_field_quirks::UNDERSCORE_PREFIXED_VARIANT_TAG_MAPPINGS);
d7bfb9b0 6575
24ed18f2
JG
6576 if (!ust_reg_chan.is_registered()) {
6577 lst::type::cuptr event_context = app_context_fields.size() ?
28ab034a
JG
6578 lttng::make_unique<lst::structure_type>(
6579 0, std::move(app_context_fields)) :
6580 nullptr;
24ed18f2 6581
4bcf2294 6582 ust_reg_chan.event_context(std::move(event_context));
24ed18f2
JG
6583 } else {
6584 /*
6585 * Validate that the context fields match between
6586 * registry and newcoming application.
6587 */
6588 bool context_fields_match;
4bcf2294 6589 const auto *previous_event_context = ust_reg_chan.event_context();
24ed18f2
JG
6590
6591 if (!previous_event_context) {
6592 context_fields_match = app_context_fields.size() == 0;
6593 } else {
6594 const lst::structure_type app_event_context_struct(
28ab034a 6595 0, std::move(app_context_fields));
24ed18f2
JG
6596
6597 context_fields_match = *previous_event_context ==
28ab034a 6598 app_event_context_struct;
24ed18f2
JG
6599 }
6600
6601 if (!context_fields_match) {
6602 ERR("Registering application channel due to context field mismatch: pid = %d, sock = %d",
28ab034a
JG
6603 app->pid,
6604 app->sock);
24ed18f2
JG
6605 ret_code = -EINVAL;
6606 goto reply;
6607 }
fb277293 6608 }
5b9eda8a 6609 } catch (const std::exception& ex) {
24ed18f2
JG
6610 ERR("Failed to handle application context: %s", ex.what());
6611 ret_code = -EINVAL;
6612 goto reply;
d0b96690 6613 }
d0b96690 6614
d0b96690 6615reply:
28ab034a
JG
6616 DBG3("UST app replying to register channel key %" PRIu64 " with id %u, ret = %d",
6617 chan_reg_key,
6618 chan_id,
6619 ret_code);
6620
6621 ret = lttng_ust_ctl_reply_register_channel(
6622 sock,
6623 chan_id,
6624 ust_reg_chan.header_type_ == lst::stream_class::header_type::COMPACT ?
6625 LTTNG_UST_CTL_CHANNEL_HEADER_COMPACT :
6626 LTTNG_UST_CTL_CHANNEL_HEADER_LARGE,
6627 ret_code);
d0b96690 6628 if (ret < 0) {
be355079
JR
6629 if (ret == -EPIPE || ret == -LTTNG_UST_ERR_EXITING) {
6630 DBG3("UST app reply channel failed. Application died: pid = %d, sock = %d",
28ab034a
JG
6631 app->pid,
6632 app->sock);
be355079
JR
6633 } else if (ret == -EAGAIN) {
6634 WARN("UST app reply channel failed. Communication time out: pid = %d, sock = %d",
28ab034a
JG
6635 app->pid,
6636 app->sock);
d0b96690 6637 } else {
be355079 6638 ERR("UST app reply channel failed with ret %d: pid = %d, sock = %d",
28ab034a
JG
6639 ret,
6640 app->pid,
6641 app->sock);
d0b96690 6642 }
d7bfb9b0
JG
6643
6644 return ret;
d0b96690
DG
6645 }
6646
d7bfb9b0
JG
6647 /* This channel registry's registration is completed. */
6648 ust_reg_chan.set_as_registered();
7972aab2 6649
d0b96690
DG
6650 return ret;
6651}
6652
d88aee68
DG
6653/*
6654 * Add event to the UST channel registry. When the event is added to the
6655 * registry, the metadata is also created. Once done, this replies to the
6656 * application with the appropriate error code.
6657 *
6658 * The session UST registry lock is acquired in the function.
6659 *
6660 * On success 0 is returned else a negative value.
6661 */
28ab034a
JG
6662static int add_event_ust_registry(int sock,
6663 int sobjd,
6664 int cobjd,
6665 const char *name,
6666 char *raw_signature,
6667 size_t nr_fields,
6668 struct lttng_ust_ctl_field *raw_fields,
6669 int loglevel_value,
6670 char *raw_model_emf_uri)
d0b96690
DG
6671{
6672 int ret, ret_code;
6673 uint32_t event_id = 0;
7972aab2 6674 uint64_t chan_reg_key;
d0b96690
DG
6675 struct ust_app *app;
6676 struct ust_app_channel *ua_chan;
6677 struct ust_app_session *ua_sess;
d7bfb9b0 6678 lttng::urcu::read_lock_guard rcu_lock;
303ac4ed
JG
6679 auto signature = lttng::make_unique_wrapper<char, lttng::memory::free>(raw_signature);
6680 auto fields =
6681 lttng::make_unique_wrapper<lttng_ust_ctl_field, lttng::memory::free>(raw_fields);
6682 auto model_emf_uri =
6683 lttng::make_unique_wrapper<char, lttng::memory::free>(raw_model_emf_uri);
d0b96690
DG
6684
6685 /* Lookup application. If not found, there is a code flow error. */
6686 app = find_app_by_notify_sock(sock);
d88aee68 6687 if (!app) {
28ab034a 6688 DBG("Application socket %d is being torn down. Abort event notify", sock);
d7bfb9b0 6689 return -1;
d88aee68 6690 }
d0b96690 6691
4950b860 6692 /* Lookup channel by UST object descriptor. */
d0b96690 6693 ua_chan = find_channel_by_objd(app, cobjd);
4950b860 6694 if (!ua_chan) {
fad1ed2f 6695 DBG("Application channel is being torn down. Abort event notify");
d7bfb9b0 6696 return 0;
4950b860
MD
6697 }
6698
a0377dfe 6699 LTTNG_ASSERT(ua_chan->session);
d0b96690
DG
6700 ua_sess = ua_chan->session;
6701
7972aab2
DG
6702 if (ua_sess->buffer_type == LTTNG_BUFFER_PER_UID) {
6703 chan_reg_key = ua_chan->tracing_channel_id;
6704 } else {
6705 chan_reg_key = ua_chan->key;
6706 }
6707
d7bfb9b0
JG
6708 {
6709 auto locked_registry = get_locked_session_registry(ua_sess);
6710 if (locked_registry) {
6711 /*
6712 * From this point on, this call acquires the ownership of the signature,
6713 * fields and model_emf_uri meaning any free are done inside it if needed.
6714 * These three variables MUST NOT be read/write after this.
6715 */
6716 try {
4bcf2294 6717 auto& channel = locked_registry->channel(chan_reg_key);
d7bfb9b0
JG
6718
6719 /* event_id is set on success. */
28ab034a
JG
6720 channel.add_event(
6721 sobjd,
6722 cobjd,
6723 name,
6724 signature.get(),
6725 lsu::create_trace_fields_from_ust_ctl_fields(
6726 *locked_registry,
6727 fields.get(),
6728 nr_fields,
6729 lst::field_location::root::EVENT_RECORD_PAYLOAD,
6730 lsu::ctl_field_quirks::
6731 UNDERSCORE_PREFIXED_VARIANT_TAG_MAPPINGS),
6732 loglevel_value,
6733 model_emf_uri.get() ?
6734 nonstd::optional<std::string>(model_emf_uri.get()) :
6735 nonstd::nullopt,
6736 ua_sess->buffer_type,
6737 *app,
6738 event_id);
d7bfb9b0
JG
6739 ret_code = 0;
6740 } catch (const std::exception& ex) {
28ab034a
JG
6741 ERR("Failed to add event `%s` to registry session: %s",
6742 name,
6743 ex.what());
d7bfb9b0
JG
6744 /* Inform the application of the error; don't return directly. */
6745 ret_code = -EINVAL;
6746 }
6747 } else {
6748 DBG("Application session is being torn down. Abort event notify");
6749 return 0;
6750 }
6751 }
d0b96690
DG
6752
6753 /*
6754 * The return value is returned to ustctl so in case of an error, the
6755 * application can be notified. In case of an error, it's important not to
6756 * return a negative error or else the application will get closed.
6757 */
b623cb6a 6758 ret = lttng_ust_ctl_reply_register_event(sock, event_id, ret_code);
d0b96690 6759 if (ret < 0) {
be355079
JR
6760 if (ret == -EPIPE || ret == -LTTNG_UST_ERR_EXITING) {
6761 DBG3("UST app reply event failed. Application died: pid = %d, sock = %d.",
28ab034a
JG
6762 app->pid,
6763 app->sock);
be355079
JR
6764 } else if (ret == -EAGAIN) {
6765 WARN("UST app reply event failed. Communication time out: pid = %d, sock = %d",
28ab034a
JG
6766 app->pid,
6767 app->sock);
d0b96690 6768 } else {
be355079 6769 ERR("UST app reply event failed with ret %d: pid = %d, sock = %d",
28ab034a
JG
6770 ret,
6771 app->pid,
6772 app->sock);
d0b96690
DG
6773 }
6774 /*
6775 * No need to wipe the create event since the application socket will
6776 * get close on error hence cleaning up everything by itself.
6777 */
d7bfb9b0 6778 return ret;
d0b96690
DG
6779 }
6780
28ab034a 6781 DBG3("UST registry event %s with id %" PRId32 " added successfully", name, event_id);
d0b96690
DG
6782 return ret;
6783}
6784
10b56aef
MD
6785/*
6786 * Add enum to the UST session registry. Once done, this replies to the
6787 * application with the appropriate error code.
6788 *
6789 * The session UST registry lock is acquired within this function.
6790 *
6791 * On success 0 is returned else a negative value.
6792 */
28ab034a
JG
6793static int add_enum_ust_registry(int sock,
6794 int sobjd,
6795 const char *name,
6796 struct lttng_ust_ctl_enum_entry *raw_entries,
6797 size_t nr_entries)
10b56aef 6798{
97f630d4 6799 int ret = 0;
10b56aef
MD
6800 struct ust_app *app;
6801 struct ust_app_session *ua_sess;
10b56aef 6802 uint64_t enum_id = -1ULL;
97f630d4 6803 lttng::urcu::read_lock_guard read_lock_guard;
303ac4ed
JG
6804 auto entries =
6805 lttng::make_unique_wrapper<struct lttng_ust_ctl_enum_entry, lttng::memory::free>(
6806 raw_entries);
10b56aef
MD
6807
6808 /* Lookup application. If not found, there is a code flow error. */
6809 app = find_app_by_notify_sock(sock);
6810 if (!app) {
6811 /* Return an error since this is not an error */
28ab034a 6812 DBG("Application socket %d is being torn down. Aborting enum registration", sock);
97f630d4 6813 return -1;
10b56aef
MD
6814 }
6815
6816 /* Lookup session by UST object descriptor. */
6817 ua_sess = find_session_by_objd(app, sobjd);
6818 if (!ua_sess) {
6819 /* Return an error since this is not an error */
acfb63a8 6820 DBG("Application session is being torn down (session not found). Aborting enum registration.");
97f630d4 6821 return 0;
10b56aef
MD
6822 }
6823
97f630d4
JG
6824 auto locked_registry = get_locked_session_registry(ua_sess);
6825 if (!locked_registry) {
acfb63a8 6826 DBG("Application session is being torn down (registry not found). Aborting enum registration.");
97f630d4 6827 return 0;
fad1ed2f 6828 }
10b56aef 6829
10b56aef
MD
6830 /*
6831 * From this point on, the callee acquires the ownership of
6832 * entries. The variable entries MUST NOT be read/written after
6833 * call.
6834 */
97f630d4
JG
6835 int application_reply_code;
6836 try {
6837 locked_registry->create_or_find_enum(
28ab034a 6838 sobjd, name, entries.release(), nr_entries, &enum_id);
97f630d4
JG
6839 application_reply_code = 0;
6840 } catch (const std::exception& ex) {
28ab034a 6841 ERR("%s: %s",
f9a41357 6842 lttng::format(
28ab034a
JG
6843 "Failed to create or find enumeration provided by application: app = {}, enumeration name = {}",
6844 *app,
6845 name)
6846 .c_str(),
6847 ex.what());
97f630d4
JG
6848 application_reply_code = -1;
6849 }
10b56aef
MD
6850
6851 /*
6852 * The return value is returned to ustctl so in case of an error, the
6853 * application can be notified. In case of an error, it's important not to
6854 * return a negative error or else the application will get closed.
6855 */
97f630d4 6856 ret = lttng_ust_ctl_reply_register_enum(sock, enum_id, application_reply_code);
10b56aef 6857 if (ret < 0) {
be355079
JR
6858 if (ret == -EPIPE || ret == -LTTNG_UST_ERR_EXITING) {
6859 DBG3("UST app reply enum failed. Application died: pid = %d, sock = %d",
28ab034a
JG
6860 app->pid,
6861 app->sock);
be355079
JR
6862 } else if (ret == -EAGAIN) {
6863 WARN("UST app reply enum failed. Communication time out: pid = %d, sock = %d",
28ab034a
JG
6864 app->pid,
6865 app->sock);
10b56aef 6866 } else {
be355079 6867 ERR("UST app reply enum failed with ret %d: pid = %d, sock = %d",
28ab034a
JG
6868 ret,
6869 app->pid,
6870 app->sock);
10b56aef
MD
6871 }
6872 /*
6873 * No need to wipe the create enum since the application socket will
6874 * get close on error hence cleaning up everything by itself.
6875 */
97f630d4 6876 return ret;
10b56aef
MD
6877 }
6878
6879 DBG3("UST registry enum %s added successfully or already found", name);
97f630d4 6880 return 0;
10b56aef
MD
6881}
6882
d88aee68
DG
6883/*
6884 * Handle application notification through the given notify socket.
6885 *
6886 * Return 0 on success or else a negative value.
6887 */
d0b96690
DG
6888int ust_app_recv_notify(int sock)
6889{
6890 int ret;
b623cb6a 6891 enum lttng_ust_ctl_notify_cmd cmd;
d0b96690
DG
6892
6893 DBG3("UST app receiving notify from sock %d", sock);
6894
b623cb6a 6895 ret = lttng_ust_ctl_recv_notify(sock, &cmd);
d0b96690 6896 if (ret < 0) {
be355079 6897 if (ret == -EPIPE || ret == -LTTNG_UST_ERR_EXITING) {
28ab034a 6898 DBG3("UST app recv notify failed. Application died: sock = %d", sock);
be355079 6899 } else if (ret == -EAGAIN) {
28ab034a 6900 WARN("UST app recv notify failed. Communication time out: sock = %d", sock);
d0b96690 6901 } else {
28ab034a 6902 ERR("UST app recv notify failed with ret %d: sock = %d", ret, sock);
d0b96690
DG
6903 }
6904 goto error;
6905 }
6906
6907 switch (cmd) {
b623cb6a 6908 case LTTNG_UST_CTL_NOTIFY_CMD_EVENT:
d0b96690 6909 {
2106efa0 6910 int sobjd, cobjd, loglevel_value;
fc4b93fa 6911 char name[LTTNG_UST_ABI_SYM_NAME_LEN], *sig, *model_emf_uri;
d0b96690 6912 size_t nr_fields;
b623cb6a 6913 struct lttng_ust_ctl_field *fields;
d0b96690
DG
6914
6915 DBG2("UST app ustctl register event received");
6916
28ab034a
JG
6917 ret = lttng_ust_ctl_recv_register_event(sock,
6918 &sobjd,
6919 &cobjd,
6920 name,
6921 &loglevel_value,
6922 &sig,
6923 &nr_fields,
6924 &fields,
6925 &model_emf_uri);
d0b96690 6926 if (ret < 0) {
be355079
JR
6927 if (ret == -EPIPE || ret == -LTTNG_UST_ERR_EXITING) {
6928 DBG3("UST app recv event failed. Application died: sock = %d",
28ab034a 6929 sock);
be355079
JR
6930 } else if (ret == -EAGAIN) {
6931 WARN("UST app recv event failed. Communication time out: sock = %d",
28ab034a 6932 sock);
d0b96690 6933 } else {
28ab034a 6934 ERR("UST app recv event failed with ret %d: sock = %d", ret, sock);
d0b96690
DG
6935 }
6936 goto error;
6937 }
6938
d7bfb9b0
JG
6939 {
6940 lttng::urcu::read_lock_guard rcu_lock;
6941 const struct ust_app *app = find_app_by_notify_sock(sock);
6942 if (!app) {
28ab034a
JG
6943 DBG("Application socket %d is being torn down. Abort event notify",
6944 sock);
d7bfb9b0
JG
6945 ret = -1;
6946 goto error;
6947 }
6948 }
6949
6950 if ((!fields && nr_fields > 0) || (fields && nr_fields == 0)) {
6951 ERR("Invalid return value from lttng_ust_ctl_recv_register_event: fields = %p, nr_fields = %zu",
28ab034a
JG
6952 fields,
6953 nr_fields);
d7bfb9b0
JG
6954 ret = -1;
6955 free(fields);
6956 goto error;
6957 }
6958
d5d629b5
DG
6959 /*
6960 * Add event to the UST registry coming from the notify socket. This
6961 * call will free if needed the sig, fields and model_emf_uri. This
6962 * code path loses the ownsership of these variables and transfer them
6963 * to the this function.
6964 */
28ab034a
JG
6965 ret = add_event_ust_registry(sock,
6966 sobjd,
6967 cobjd,
6968 name,
6969 sig,
6970 nr_fields,
6971 fields,
6972 loglevel_value,
6973 model_emf_uri);
d0b96690
DG
6974 if (ret < 0) {
6975 goto error;
6976 }
6977
6978 break;
6979 }
b623cb6a 6980 case LTTNG_UST_CTL_NOTIFY_CMD_CHANNEL:
d0b96690
DG
6981 {
6982 int sobjd, cobjd;
d7bfb9b0
JG
6983 size_t field_count;
6984 struct lttng_ust_ctl_field *context_fields;
d0b96690
DG
6985
6986 DBG2("UST app ustctl register channel received");
6987
d7bfb9b0 6988 ret = lttng_ust_ctl_recv_register_channel(
28ab034a 6989 sock, &sobjd, &cobjd, &field_count, &context_fields);
d0b96690 6990 if (ret < 0) {
be355079
JR
6991 if (ret == -EPIPE || ret == -LTTNG_UST_ERR_EXITING) {
6992 DBG3("UST app recv channel failed. Application died: sock = %d",
28ab034a 6993 sock);
be355079
JR
6994 } else if (ret == -EAGAIN) {
6995 WARN("UST app recv channel failed. Communication time out: sock = %d",
28ab034a 6996 sock);
d0b96690 6997 } else {
28ab034a
JG
6998 ERR("UST app recv channel failed with ret %d: sock = %d",
6999 ret,
7000 sock);
d0b96690
DG
7001 }
7002 goto error;
7003 }
7004
d5d629b5
DG
7005 /*
7006 * The fields ownership are transfered to this function call meaning
7007 * that if needed it will be freed. After this, it's invalid to access
d7bfb9b0 7008 * fields or clean them up.
d5d629b5 7009 */
28ab034a
JG
7010 ret = handle_app_register_channel_notification(
7011 sock, cobjd, context_fields, field_count);
d0b96690
DG
7012 if (ret < 0) {
7013 goto error;
7014 }
7015
7016 break;
7017 }
b623cb6a 7018 case LTTNG_UST_CTL_NOTIFY_CMD_ENUM:
10b56aef
MD
7019 {
7020 int sobjd;
fc4b93fa 7021 char name[LTTNG_UST_ABI_SYM_NAME_LEN];
10b56aef 7022 size_t nr_entries;
b623cb6a 7023 struct lttng_ust_ctl_enum_entry *entries;
10b56aef
MD
7024
7025 DBG2("UST app ustctl register enum received");
7026
28ab034a 7027 ret = lttng_ust_ctl_recv_register_enum(sock, &sobjd, name, &entries, &nr_entries);
10b56aef 7028 if (ret < 0) {
be355079 7029 if (ret == -EPIPE || ret == -LTTNG_UST_ERR_EXITING) {
28ab034a 7030 DBG3("UST app recv enum failed. Application died: sock = %d", sock);
be355079
JR
7031 } else if (ret == -EAGAIN) {
7032 WARN("UST app recv enum failed. Communication time out: sock = %d",
28ab034a 7033 sock);
10b56aef 7034 } else {
28ab034a 7035 ERR("UST app recv enum failed with ret %d: sock = %d", ret, sock);
10b56aef
MD
7036 }
7037 goto error;
7038 }
7039
d7bfb9b0 7040 /* Callee assumes ownership of entries. */
28ab034a 7041 ret = add_enum_ust_registry(sock, sobjd, name, entries, nr_entries);
10b56aef
MD
7042 if (ret < 0) {
7043 goto error;
7044 }
7045
7046 break;
7047 }
d0b96690
DG
7048 default:
7049 /* Should NEVER happen. */
a0377dfe 7050 abort();
d0b96690
DG
7051 }
7052
7053error:
7054 return ret;
7055}
d88aee68
DG
7056
7057/*
7058 * Once the notify socket hangs up, this is called. First, it tries to find the
7059 * corresponding application. On failure, the call_rcu to close the socket is
7060 * executed. If an application is found, it tries to delete it from the notify
7061 * socket hash table. Whathever the result, it proceeds to the call_rcu.
7062 *
7063 * Note that an object needs to be allocated here so on ENOMEM failure, the
7064 * call RCU is not done but the rest of the cleanup is.
7065 */
7066void ust_app_notify_sock_unregister(int sock)
7067{
7068 int err_enomem = 0;
7069 struct lttng_ht_iter iter;
7070 struct ust_app *app;
7071 struct ust_app_notify_sock_obj *obj;
7072
a0377dfe 7073 LTTNG_ASSERT(sock >= 0);
d88aee68 7074
56047f5a 7075 lttng::urcu::read_lock_guard read_lock;
d88aee68 7076
64803277 7077 obj = zmalloc<ust_app_notify_sock_obj>();
d88aee68
DG
7078 if (!obj) {
7079 /*
7080 * An ENOMEM is kind of uncool. If this strikes we continue the
7081 * procedure but the call_rcu will not be called. In this case, we
7082 * accept the fd leak rather than possibly creating an unsynchronized
7083 * state between threads.
7084 *
7085 * TODO: The notify object should be created once the notify socket is
7086 * registered and stored independantely from the ust app object. The
7087 * tricky part is to synchronize the teardown of the application and
7088 * this notify object. Let's keep that in mind so we can avoid this
7089 * kind of shenanigans with ENOMEM in the teardown path.
7090 */
7091 err_enomem = 1;
7092 } else {
7093 obj->fd = sock;
7094 }
7095
7096 DBG("UST app notify socket unregister %d", sock);
7097
7098 /*
7099 * Lookup application by notify socket. If this fails, this means that the
7100 * hash table delete has already been done by the application
7101 * unregistration process so we can safely close the notify socket in a
7102 * call RCU.
7103 */
7104 app = find_app_by_notify_sock(sock);
7105 if (!app) {
7106 goto close_socket;
7107 }
7108
7109 iter.iter.node = &app->notify_sock_n.node;
7110
7111 /*
7112 * Whatever happens here either we fail or succeed, in both cases we have
7113 * to close the socket after a grace period to continue to the call RCU
7114 * here. If the deletion is successful, the application is not visible
7115 * anymore by other threads and is it fails it means that it was already
7116 * deleted from the hash table so either way we just have to close the
7117 * socket.
7118 */
7119 (void) lttng_ht_del(ust_app_ht_by_notify_sock, &iter);
7120
7121close_socket:
d88aee68
DG
7122
7123 /*
7124 * Close socket after a grace period to avoid for the socket to be reused
7125 * before the application object is freed creating potential race between
7126 * threads trying to add unique in the global hash table.
7127 */
7128 if (!err_enomem) {
7129 call_rcu(&obj->head, close_notify_sock_rcu);
7130 }
7131}
f45e313d
DG
7132
7133/*
7134 * Destroy a ust app data structure and free its memory.
7135 */
a7db814e 7136static void ust_app_destroy(ust_app& app)
f45e313d 7137{
a7db814e 7138 call_rcu(&app.pid_n.head, delete_ust_app_rcu);
f45e313d 7139}
6dc3064a
DG
7140
7141/*
7142 * Take a snapshot for a given UST session. The snapshot is sent to the given
7143 * output.
7144 *
9a654598 7145 * Returns LTTNG_OK on success or a LTTNG_ERR error code.
6dc3064a 7146 */
28ab034a
JG
7147enum lttng_error_code ust_app_snapshot_record(const struct ltt_ust_session *usess,
7148 const struct consumer_output *output,
7149 uint64_t nb_packets_per_stream)
6dc3064a
DG
7150{
7151 int ret = 0;
9a654598 7152 enum lttng_error_code status = LTTNG_OK;
6dc3064a
DG
7153 struct lttng_ht_iter iter;
7154 struct ust_app *app;
cd9adb8b 7155 char *trace_path = nullptr;
6dc3064a 7156
a0377dfe
FD
7157 LTTNG_ASSERT(usess);
7158 LTTNG_ASSERT(output);
6dc3064a 7159
8c924c7b
MD
7160 switch (usess->buffer_type) {
7161 case LTTNG_BUFFER_PER_UID:
7162 {
7163 struct buffer_reg_uid *reg;
6dc3064a 7164
56047f5a
JG
7165 lttng::urcu::read_lock_guard read_lock;
7166
28ab034a 7167 cds_list_for_each_entry (reg, &usess->buffer_reg_uid_list, lnode) {
3273699d 7168 struct buffer_reg_channel *buf_reg_chan;
8c924c7b 7169 struct consumer_socket *socket;
3b967712 7170 char pathname[PATH_MAX];
5da88b0f 7171 size_t consumer_path_offset = 0;
6dc3064a 7172
aeeb48c6 7173 if (!reg->registry->reg.ust->_metadata_key) {
2b269489
JR
7174 /* Skip since no metadata is present */
7175 continue;
7176 }
7177
8c924c7b
MD
7178 /* Get consumer socket to use to push the metadata.*/
7179 socket = consumer_find_socket_by_bitness(reg->bits_per_long,
28ab034a 7180 usess->consumer);
8c924c7b 7181 if (!socket) {
9a654598 7182 status = LTTNG_ERR_INVALID;
8c924c7b
MD
7183 goto error;
7184 }
6dc3064a 7185
8c924c7b 7186 memset(pathname, 0, sizeof(pathname));
28ab034a
JG
7187 ret = snprintf(pathname,
7188 sizeof(pathname),
7189 DEFAULT_UST_TRACE_UID_PATH,
7190 reg->uid,
7191 reg->bits_per_long);
8c924c7b
MD
7192 if (ret < 0) {
7193 PERROR("snprintf snapshot path");
9a654598 7194 status = LTTNG_ERR_INVALID;
8c924c7b
MD
7195 goto error;
7196 }
affce97e
JG
7197 /* Free path allowed on previous iteration. */
7198 free(trace_path);
28ab034a
JG
7199 trace_path = setup_channel_trace_path(
7200 usess->consumer, pathname, &consumer_path_offset);
3b967712
MD
7201 if (!trace_path) {
7202 status = LTTNG_ERR_INVALID;
7203 goto error;
7204 }
f3db82be 7205 /* Add the UST default trace dir to path. */
28ab034a
JG
7206 cds_lfht_for_each_entry (
7207 reg->registry->channels->ht, &iter.iter, buf_reg_chan, node.node) {
7208 status =
7209 consumer_snapshot_channel(socket,
7210 buf_reg_chan->consumer_key,
7211 output,
7212 0,
7213 &trace_path[consumer_path_offset],
7214 nb_packets_per_stream);
9a654598 7215 if (status != LTTNG_OK) {
8c924c7b
MD
7216 goto error;
7217 }
7218 }
9a654598 7219 status = consumer_snapshot_channel(socket,
28ab034a
JG
7220 reg->registry->reg.ust->_metadata_key,
7221 output,
7222 1,
7223 &trace_path[consumer_path_offset],
7224 0);
9a654598 7225 if (status != LTTNG_OK) {
8c924c7b
MD
7226 goto error;
7227 }
af706bb7 7228 }
56047f5a 7229
8c924c7b
MD
7230 break;
7231 }
7232 case LTTNG_BUFFER_PER_PID:
7233 {
56047f5a
JG
7234 lttng::urcu::read_lock_guard read_lock;
7235
28ab034a 7236 cds_lfht_for_each_entry (ust_app_ht->ht, &iter.iter, app, pid_n.node) {
8c924c7b
MD
7237 struct consumer_socket *socket;
7238 struct lttng_ht_iter chan_iter;
7239 struct ust_app_channel *ua_chan;
7240 struct ust_app_session *ua_sess;
b0f2e8db 7241 lsu::registry_session *registry;
3b967712 7242 char pathname[PATH_MAX];
5da88b0f 7243 size_t consumer_path_offset = 0;
8c924c7b
MD
7244
7245 ua_sess = lookup_session_by_app(usess, app);
7246 if (!ua_sess) {
7247 /* Session not associated with this app. */
7248 continue;
7249 }
af706bb7 7250
8c924c7b 7251 /* Get the right consumer socket for the application. */
28ab034a 7252 socket = consumer_find_socket_by_bitness(app->abi.bits_per_long, output);
8c924c7b 7253 if (!socket) {
9a654598 7254 status = LTTNG_ERR_INVALID;
5c786ded
JD
7255 goto error;
7256 }
7257
8c924c7b
MD
7258 /* Add the UST default trace dir to path. */
7259 memset(pathname, 0, sizeof(pathname));
28ab034a 7260 ret = snprintf(pathname, sizeof(pathname), "%s", ua_sess->path);
6dc3064a 7261 if (ret < 0) {
9a654598 7262 status = LTTNG_ERR_INVALID;
8c924c7b 7263 PERROR("snprintf snapshot path");
6dc3064a
DG
7264 goto error;
7265 }
affce97e
JG
7266 /* Free path allowed on previous iteration. */
7267 free(trace_path);
28ab034a
JG
7268 trace_path = setup_channel_trace_path(
7269 usess->consumer, pathname, &consumer_path_offset);
3b967712
MD
7270 if (!trace_path) {
7271 status = LTTNG_ERR_INVALID;
7272 goto error;
7273 }
28ab034a
JG
7274 cds_lfht_for_each_entry (
7275 ua_sess->channels->ht, &chan_iter.iter, ua_chan, node.node) {
7276 status =
7277 consumer_snapshot_channel(socket,
7278 ua_chan->key,
7279 output,
7280 0,
7281 &trace_path[consumer_path_offset],
7282 nb_packets_per_stream);
9a654598
JG
7283 switch (status) {
7284 case LTTNG_OK:
7285 break;
7286 case LTTNG_ERR_CHAN_NOT_FOUND:
7287 continue;
7288 default:
8c924c7b
MD
7289 goto error;
7290 }
7291 }
7292
7293 registry = get_session_registry(ua_sess);
fad1ed2f 7294 if (!registry) {
9bbfb88c
MD
7295 DBG("Application session is being torn down. Skip application.");
7296 continue;
fad1ed2f 7297 }
9a654598 7298 status = consumer_snapshot_channel(socket,
28ab034a
JG
7299 registry->_metadata_key,
7300 output,
7301 1,
7302 &trace_path[consumer_path_offset],
7303 0);
9a654598
JG
7304 switch (status) {
7305 case LTTNG_OK:
7306 break;
7307 case LTTNG_ERR_CHAN_NOT_FOUND:
7308 continue;
7309 default:
8c924c7b
MD
7310 goto error;
7311 }
7312 }
7313 break;
7314 }
7315 default:
a0377dfe 7316 abort();
8c924c7b 7317 break;
6dc3064a
DG
7318 }
7319
7320error:
affce97e 7321 free(trace_path);
9a654598 7322 return status;
6dc3064a 7323}
5c786ded
JD
7324
7325/*
d07ceecd 7326 * Return the size taken by one more packet per stream.
5c786ded 7327 */
28ab034a
JG
7328uint64_t ust_app_get_size_one_more_packet_per_stream(const struct ltt_ust_session *usess,
7329 uint64_t cur_nr_packets)
5c786ded 7330{
d07ceecd 7331 uint64_t tot_size = 0;
5c786ded
JD
7332 struct ust_app *app;
7333 struct lttng_ht_iter iter;
7334
a0377dfe 7335 LTTNG_ASSERT(usess);
5c786ded
JD
7336
7337 switch (usess->buffer_type) {
7338 case LTTNG_BUFFER_PER_UID:
7339 {
7340 struct buffer_reg_uid *reg;
7341
28ab034a 7342 cds_list_for_each_entry (reg, &usess->buffer_reg_uid_list, lnode) {
3273699d 7343 struct buffer_reg_channel *buf_reg_chan;
5c786ded 7344
56047f5a
JG
7345 lttng::urcu::read_lock_guard read_lock;
7346
28ab034a
JG
7347 cds_lfht_for_each_entry (
7348 reg->registry->channels->ht, &iter.iter, buf_reg_chan, node.node) {
3273699d 7349 if (cur_nr_packets >= buf_reg_chan->num_subbuf) {
d07ceecd
MD
7350 /*
7351 * Don't take channel into account if we
7352 * already grab all its packets.
7353 */
7354 continue;
7355 }
3273699d 7356 tot_size += buf_reg_chan->subbuf_size * buf_reg_chan->stream_count;
5c786ded
JD
7357 }
7358 }
7359 break;
7360 }
7361 case LTTNG_BUFFER_PER_PID:
7362 {
56047f5a
JG
7363 lttng::urcu::read_lock_guard read_lock;
7364
28ab034a 7365 cds_lfht_for_each_entry (ust_app_ht->ht, &iter.iter, app, pid_n.node) {
5c786ded
JD
7366 struct ust_app_channel *ua_chan;
7367 struct ust_app_session *ua_sess;
7368 struct lttng_ht_iter chan_iter;
7369
7370 ua_sess = lookup_session_by_app(usess, app);
7371 if (!ua_sess) {
7372 /* Session not associated with this app. */
7373 continue;
7374 }
7375
28ab034a
JG
7376 cds_lfht_for_each_entry (
7377 ua_sess->channels->ht, &chan_iter.iter, ua_chan, node.node) {
d07ceecd
MD
7378 if (cur_nr_packets >= ua_chan->attr.num_subbuf) {
7379 /*
7380 * Don't take channel into account if we
7381 * already grab all its packets.
7382 */
7383 continue;
7384 }
7385 tot_size += ua_chan->attr.subbuf_size * ua_chan->streams.count;
5c786ded
JD
7386 }
7387 }
5c786ded
JD
7388 break;
7389 }
7390 default:
a0377dfe 7391 abort();
5c786ded
JD
7392 break;
7393 }
7394
d07ceecd 7395 return tot_size;
5c786ded 7396}
fb83fe64
JD
7397
7398int ust_app_uid_get_channel_runtime_stats(uint64_t ust_session_id,
28ab034a
JG
7399 struct cds_list_head *buffer_reg_uid_list,
7400 struct consumer_output *consumer,
7401 uint64_t uchan_id,
7402 int overwrite,
7403 uint64_t *discarded,
7404 uint64_t *lost)
fb83fe64
JD
7405{
7406 int ret;
7407 uint64_t consumer_chan_key;
7408
70dd8162
MD
7409 *discarded = 0;
7410 *lost = 0;
7411
fb83fe64 7412 ret = buffer_reg_uid_consumer_channel_key(
28ab034a 7413 buffer_reg_uid_list, uchan_id, &consumer_chan_key);
fb83fe64 7414 if (ret < 0) {
70dd8162
MD
7415 /* Not found */
7416 ret = 0;
fb83fe64
JD
7417 goto end;
7418 }
7419
7420 if (overwrite) {
28ab034a 7421 ret = consumer_get_lost_packets(ust_session_id, consumer_chan_key, consumer, lost);
fb83fe64 7422 } else {
28ab034a
JG
7423 ret = consumer_get_discarded_events(
7424 ust_session_id, consumer_chan_key, consumer, discarded);
fb83fe64
JD
7425 }
7426
7427end:
7428 return ret;
7429}
7430
7431int ust_app_pid_get_channel_runtime_stats(struct ltt_ust_session *usess,
28ab034a
JG
7432 struct ltt_ust_channel *uchan,
7433 struct consumer_output *consumer,
7434 int overwrite,
7435 uint64_t *discarded,
7436 uint64_t *lost)
fb83fe64
JD
7437{
7438 int ret = 0;
7439 struct lttng_ht_iter iter;
7440 struct lttng_ht_node_str *ua_chan_node;
7441 struct ust_app *app;
7442 struct ust_app_session *ua_sess;
7443 struct ust_app_channel *ua_chan;
7444
70dd8162
MD
7445 *discarded = 0;
7446 *lost = 0;
7447
fb83fe64 7448 /*
70dd8162
MD
7449 * Iterate over every registered applications. Sum counters for
7450 * all applications containing requested session and channel.
fb83fe64 7451 */
56047f5a
JG
7452 lttng::urcu::read_lock_guard read_lock;
7453
28ab034a 7454 cds_lfht_for_each_entry (ust_app_ht->ht, &iter.iter, app, pid_n.node) {
fb83fe64
JD
7455 struct lttng_ht_iter uiter;
7456
7457 ua_sess = lookup_session_by_app(usess, app);
cd9adb8b 7458 if (ua_sess == nullptr) {
fb83fe64
JD
7459 continue;
7460 }
7461
7462 /* Get channel */
ee022399 7463 lttng_ht_lookup(ua_sess->channels, (void *) uchan->name, &uiter);
00d7d903 7464 ua_chan_node = lttng_ht_iter_get_node<lttng_ht_node_str>(&uiter);
fb83fe64 7465 /* If the session is found for the app, the channel must be there */
a0377dfe 7466 LTTNG_ASSERT(ua_chan_node);
fb83fe64 7467
0114db0e 7468 ua_chan = lttng::utils::container_of(ua_chan_node, &ust_app_channel::node);
fb83fe64
JD
7469
7470 if (overwrite) {
70dd8162
MD
7471 uint64_t _lost;
7472
28ab034a 7473 ret = consumer_get_lost_packets(usess->id, ua_chan->key, consumer, &_lost);
70dd8162
MD
7474 if (ret < 0) {
7475 break;
7476 }
7477 (*lost) += _lost;
fb83fe64 7478 } else {
70dd8162
MD
7479 uint64_t _discarded;
7480
28ab034a
JG
7481 ret = consumer_get_discarded_events(
7482 usess->id, ua_chan->key, consumer, &_discarded);
70dd8162
MD
7483 if (ret < 0) {
7484 break;
7485 }
7486 (*discarded) += _discarded;
fb83fe64 7487 }
fb83fe64
JD
7488 }
7489
fb83fe64
JD
7490 return ret;
7491}
c2561365 7492
28ab034a 7493static int ust_app_regenerate_statedump(struct ltt_ust_session *usess, struct ust_app *app)
c2561365
JD
7494{
7495 int ret = 0;
7496 struct ust_app_session *ua_sess;
7497
7498 DBG("Regenerating the metadata for ust app pid %d", app->pid);
7499
56047f5a 7500 lttng::urcu::read_lock_guard read_lock;
c2561365
JD
7501
7502 ua_sess = lookup_session_by_app(usess, app);
cd9adb8b 7503 if (ua_sess == nullptr) {
c2561365
JD
7504 /* The session is in teardown process. Ignore and continue. */
7505 goto end;
7506 }
7507
7508 pthread_mutex_lock(&ua_sess->lock);
7509
7510 if (ua_sess->deleted) {
7511 goto end_unlock;
7512 }
7513
7514 pthread_mutex_lock(&app->sock_lock);
b623cb6a 7515 ret = lttng_ust_ctl_regenerate_statedump(app->sock, ua_sess->handle);
c2561365
JD
7516 pthread_mutex_unlock(&app->sock_lock);
7517
7518end_unlock:
7519 pthread_mutex_unlock(&ua_sess->lock);
7520
7521end:
c2561365
JD
7522 health_code_update();
7523 return ret;
7524}
7525
7526/*
7527 * Regenerate the statedump for each app in the session.
7528 */
7529int ust_app_regenerate_statedump_all(struct ltt_ust_session *usess)
7530{
7531 int ret = 0;
7532 struct lttng_ht_iter iter;
7533 struct ust_app *app;
7534
7535 DBG("Regenerating the metadata for all UST apps");
7536
56047f5a 7537 lttng::urcu::read_lock_guard read_lock;
c2561365 7538
28ab034a 7539 cds_lfht_for_each_entry (ust_app_ht->ht, &iter.iter, app, pid_n.node) {
c2561365
JD
7540 if (!app->compatible) {
7541 continue;
7542 }
7543
7544 ret = ust_app_regenerate_statedump(usess, app);
7545 if (ret < 0) {
7546 /* Continue to the next app even on error */
7547 continue;
7548 }
7549 }
7550
c2561365
JD
7551 return 0;
7552}
5c408ad8
JD
7553
7554/*
7555 * Rotate all the channels of a session.
7556 *
6f6d3b69 7557 * Return LTTNG_OK on success or else an LTTng error code.
5c408ad8 7558 */
a0a4f314 7559enum lttng_error_code ust_app_rotate_session(const ltt_session::locked_ref& session)
5c408ad8 7560{
6f6d3b69
MD
7561 int ret;
7562 enum lttng_error_code cmd_ret = LTTNG_OK;
5c408ad8 7563 struct lttng_ht_iter iter;
5c408ad8 7564 struct ltt_ust_session *usess = session->ust_session;
5c408ad8 7565
a0377dfe 7566 LTTNG_ASSERT(usess);
5c408ad8 7567
5c408ad8
JD
7568 switch (usess->buffer_type) {
7569 case LTTNG_BUFFER_PER_UID:
7570 {
7571 struct buffer_reg_uid *reg;
7572
28ab034a 7573 cds_list_for_each_entry (reg, &usess->buffer_reg_uid_list, lnode) {
3273699d 7574 struct buffer_reg_channel *buf_reg_chan;
5c408ad8 7575 struct consumer_socket *socket;
56047f5a 7576 lttng::urcu::read_lock_guard read_lock;
5c408ad8
JD
7577
7578 /* Get consumer socket to use to push the metadata.*/
7579 socket = consumer_find_socket_by_bitness(reg->bits_per_long,
28ab034a 7580 usess->consumer);
5c408ad8 7581 if (!socket) {
6f6d3b69 7582 cmd_ret = LTTNG_ERR_INVALID;
5c408ad8
JD
7583 goto error;
7584 }
7585
5c408ad8 7586 /* Rotate the data channels. */
28ab034a
JG
7587 cds_lfht_for_each_entry (
7588 reg->registry->channels->ht, &iter.iter, buf_reg_chan, node.node) {
5c408ad8 7589 ret = consumer_rotate_channel(socket,
28ab034a
JG
7590 buf_reg_chan->consumer_key,
7591 usess->consumer,
7592 /* is_metadata_channel */ false);
5c408ad8 7593 if (ret < 0) {
6f6d3b69 7594 cmd_ret = LTTNG_ERR_ROTATION_FAIL_CONSUMER;
5c408ad8
JD
7595 goto error;
7596 }
7597 }
7598
db786d44
JR
7599 /*
7600 * The metadata channel might not be present.
7601 *
7602 * Consumer stream allocation can be done
7603 * asynchronously and can fail on intermediary
7604 * operations (i.e add context) and lead to data
7605 * channels created with no metadata channel.
7606 */
aeeb48c6 7607 if (!reg->registry->reg.ust->_metadata_key) {
db786d44
JR
7608 /* Skip since no metadata is present. */
7609 continue;
7610 }
7611
d7bfb9b0
JG
7612 {
7613 auto locked_registry = reg->registry->reg.ust->lock();
7614 (void) push_metadata(locked_registry, usess->consumer);
7615 }
5c408ad8
JD
7616
7617 ret = consumer_rotate_channel(socket,
28ab034a
JG
7618 reg->registry->reg.ust->_metadata_key,
7619 usess->consumer,
7620 /* is_metadata_channel */ true);
5c408ad8 7621 if (ret < 0) {
6f6d3b69 7622 cmd_ret = LTTNG_ERR_ROTATION_FAIL_CONSUMER;
5c408ad8
JD
7623 goto error;
7624 }
5c408ad8
JD
7625 }
7626 break;
7627 }
7628 case LTTNG_BUFFER_PER_PID:
7629 {
56047f5a 7630 lttng::urcu::read_lock_guard read_lock;
a7db814e 7631 ust_app *raw_app;
56047f5a 7632
a7db814e 7633 cds_lfht_for_each_entry (ust_app_ht->ht, &iter.iter, raw_app, pid_n.node) {
5c408ad8
JD
7634 struct consumer_socket *socket;
7635 struct lttng_ht_iter chan_iter;
7636 struct ust_app_channel *ua_chan;
7637 struct ust_app_session *ua_sess;
b0f2e8db 7638 lsu::registry_session *registry;
a7db814e 7639 bool app_reference_taken;
5c408ad8 7640
a7db814e
JG
7641 app_reference_taken = ust_app_get(*raw_app);
7642 if (!app_reference_taken) {
7643 /* Application unregistered concurrently, skip it. */
7644 DBG("Could not get application reference as it is being torn down; skipping application");
7645 continue;
7646 }
7647
7648 ust_app_reference app(raw_app);
7649 raw_app = nullptr;
7650
7651 ua_sess = lookup_session_by_app(usess, app.get());
5c408ad8
JD
7652 if (!ua_sess) {
7653 /* Session not associated with this app. */
7654 continue;
7655 }
5c408ad8
JD
7656
7657 /* Get the right consumer socket for the application. */
d7bfb9b0 7658 socket = consumer_find_socket_by_bitness(app->abi.bits_per_long,
28ab034a 7659 usess->consumer);
5c408ad8 7660 if (!socket) {
6f6d3b69 7661 cmd_ret = LTTNG_ERR_INVALID;
5c408ad8
JD
7662 goto error;
7663 }
7664
7665 registry = get_session_registry(ua_sess);
a7db814e 7666 LTTNG_ASSERT(registry);
5c408ad8 7667
5c408ad8 7668 /* Rotate the data channels. */
28ab034a
JG
7669 cds_lfht_for_each_entry (
7670 ua_sess->channels->ht, &chan_iter.iter, ua_chan, node.node) {
470cc211 7671 ret = consumer_rotate_channel(socket,
28ab034a
JG
7672 ua_chan->key,
7673 ua_sess->consumer,
7674 /* is_metadata_channel */ false);
5c408ad8 7675 if (ret < 0) {
6f6d3b69 7676 cmd_ret = LTTNG_ERR_ROTATION_FAIL_CONSUMER;
5c408ad8
JD
7677 goto error;
7678 }
7679 }
7680
7681 /* Rotate the metadata channel. */
d7bfb9b0
JG
7682 {
7683 auto locked_registry = registry->lock();
7684
7685 (void) push_metadata(locked_registry, usess->consumer);
7686 }
a7db814e 7687
470cc211 7688 ret = consumer_rotate_channel(socket,
28ab034a
JG
7689 registry->_metadata_key,
7690 ua_sess->consumer,
7691 /* is_metadata_channel */ true);
5c408ad8 7692 if (ret < 0) {
6f6d3b69 7693 cmd_ret = LTTNG_ERR_ROTATION_FAIL_CONSUMER;
5c408ad8
JD
7694 goto error;
7695 }
5c408ad8 7696 }
a7db814e 7697
5c408ad8
JD
7698 break;
7699 }
7700 default:
a0377dfe 7701 abort();
5c408ad8
JD
7702 break;
7703 }
7704
6f6d3b69 7705 cmd_ret = LTTNG_OK;
5c408ad8
JD
7706
7707error:
6f6d3b69 7708 return cmd_ret;
5c408ad8 7709}
d2956687 7710
28ab034a 7711enum lttng_error_code ust_app_create_channel_subdirectories(const struct ltt_ust_session *usess)
d2956687
JG
7712{
7713 enum lttng_error_code ret = LTTNG_OK;
7714 struct lttng_ht_iter iter;
7715 enum lttng_trace_chunk_status chunk_status;
7716 char *pathname_index;
7717 int fmt_ret;
7718
a0377dfe 7719 LTTNG_ASSERT(usess->current_trace_chunk);
d2956687
JG
7720
7721 switch (usess->buffer_type) {
7722 case LTTNG_BUFFER_PER_UID:
7723 {
7724 struct buffer_reg_uid *reg;
56047f5a 7725 lttng::urcu::read_lock_guard read_lock;
d2956687 7726
28ab034a 7727 cds_list_for_each_entry (reg, &usess->buffer_reg_uid_list, lnode) {
d2956687 7728 fmt_ret = asprintf(&pathname_index,
28ab034a
JG
7729 DEFAULT_UST_TRACE_DIR "/" DEFAULT_UST_TRACE_UID_PATH
7730 "/" DEFAULT_INDEX_DIR,
7731 reg->uid,
7732 reg->bits_per_long);
d2956687
JG
7733 if (fmt_ret < 0) {
7734 ERR("Failed to format channel index directory");
7735 ret = LTTNG_ERR_CREATE_DIR_FAIL;
7736 goto error;
7737 }
7738
7739 /*
7740 * Create the index subdirectory which will take care
7741 * of implicitly creating the channel's path.
7742 */
7743 chunk_status = lttng_trace_chunk_create_subdirectory(
28ab034a 7744 usess->current_trace_chunk, pathname_index);
d2956687
JG
7745 free(pathname_index);
7746 if (chunk_status != LTTNG_TRACE_CHUNK_STATUS_OK) {
7747 ret = LTTNG_ERR_CREATE_DIR_FAIL;
7748 goto error;
7749 }
7750 }
7751 break;
7752 }
7753 case LTTNG_BUFFER_PER_PID:
7754 {
7755 struct ust_app *app;
56047f5a 7756 lttng::urcu::read_lock_guard read_lock;
d2956687 7757
495dece5
MD
7758 /*
7759 * Create the toplevel ust/ directory in case no apps are running.
7760 */
28ab034a
JG
7761 chunk_status = lttng_trace_chunk_create_subdirectory(usess->current_trace_chunk,
7762 DEFAULT_UST_TRACE_DIR);
495dece5
MD
7763 if (chunk_status != LTTNG_TRACE_CHUNK_STATUS_OK) {
7764 ret = LTTNG_ERR_CREATE_DIR_FAIL;
7765 goto error;
7766 }
7767
28ab034a 7768 cds_lfht_for_each_entry (ust_app_ht->ht, &iter.iter, app, pid_n.node) {
d2956687 7769 struct ust_app_session *ua_sess;
b0f2e8db 7770 lsu::registry_session *registry;
d2956687
JG
7771
7772 ua_sess = lookup_session_by_app(usess, app);
7773 if (!ua_sess) {
7774 /* Session not associated with this app. */
7775 continue;
7776 }
7777
7778 registry = get_session_registry(ua_sess);
7779 if (!registry) {
7780 DBG("Application session is being torn down. Skip application.");
7781 continue;
7782 }
7783
7784 fmt_ret = asprintf(&pathname_index,
28ab034a
JG
7785 DEFAULT_UST_TRACE_DIR "/%s/" DEFAULT_INDEX_DIR,
7786 ua_sess->path);
d2956687
JG
7787 if (fmt_ret < 0) {
7788 ERR("Failed to format channel index directory");
7789 ret = LTTNG_ERR_CREATE_DIR_FAIL;
7790 goto error;
7791 }
7792 /*
7793 * Create the index subdirectory which will take care
7794 * of implicitly creating the channel's path.
7795 */
7796 chunk_status = lttng_trace_chunk_create_subdirectory(
28ab034a 7797 usess->current_trace_chunk, pathname_index);
d2956687
JG
7798 free(pathname_index);
7799 if (chunk_status != LTTNG_TRACE_CHUNK_STATUS_OK) {
7800 ret = LTTNG_ERR_CREATE_DIR_FAIL;
7801 goto error;
7802 }
7803 }
7804 break;
7805 }
7806 default:
7807 abort();
7808 }
7809
7810 ret = LTTNG_OK;
7811error:
d2956687
JG
7812 return ret;
7813}
4a9b9759
MD
7814
7815/*
7816 * Clear all the channels of a session.
7817 *
7818 * Return LTTNG_OK on success or else an LTTng error code.
7819 */
a0a4f314 7820enum lttng_error_code ust_app_clear_session(const ltt_session::locked_ref& session)
4a9b9759
MD
7821{
7822 int ret;
7823 enum lttng_error_code cmd_ret = LTTNG_OK;
7824 struct lttng_ht_iter iter;
7825 struct ust_app *app;
7826 struct ltt_ust_session *usess = session->ust_session;
7827
a0377dfe 7828 LTTNG_ASSERT(usess);
4a9b9759 7829
4a9b9759
MD
7830 if (usess->active) {
7831 ERR("Expecting inactive session %s (%" PRIu64 ")", session->name, session->id);
7832 cmd_ret = LTTNG_ERR_FATAL;
7833 goto end;
7834 }
7835
7836 switch (usess->buffer_type) {
7837 case LTTNG_BUFFER_PER_UID:
7838 {
7839 struct buffer_reg_uid *reg;
56047f5a 7840 lttng::urcu::read_lock_guard read_lock;
4a9b9759 7841
28ab034a 7842 cds_list_for_each_entry (reg, &usess->buffer_reg_uid_list, lnode) {
3273699d 7843 struct buffer_reg_channel *buf_reg_chan;
4a9b9759
MD
7844 struct consumer_socket *socket;
7845
7846 /* Get consumer socket to use to push the metadata.*/
7847 socket = consumer_find_socket_by_bitness(reg->bits_per_long,
28ab034a 7848 usess->consumer);
4a9b9759
MD
7849 if (!socket) {
7850 cmd_ret = LTTNG_ERR_INVALID;
7851 goto error_socket;
7852 }
7853
7854 /* Clear the data channels. */
28ab034a
JG
7855 cds_lfht_for_each_entry (
7856 reg->registry->channels->ht, &iter.iter, buf_reg_chan, node.node) {
7857 ret = consumer_clear_channel(socket, buf_reg_chan->consumer_key);
4a9b9759
MD
7858 if (ret < 0) {
7859 goto error;
7860 }
7861 }
7862
d7bfb9b0
JG
7863 {
7864 auto locked_registry = reg->registry->reg.ust->lock();
7865 (void) push_metadata(locked_registry, usess->consumer);
7866 }
4a9b9759
MD
7867
7868 /*
7869 * Clear the metadata channel.
7870 * Metadata channel is not cleared per se but we still need to
7871 * perform a rotation operation on it behind the scene.
7872 */
28ab034a 7873 ret = consumer_clear_channel(socket, reg->registry->reg.ust->_metadata_key);
4a9b9759
MD
7874 if (ret < 0) {
7875 goto error;
7876 }
7877 }
7878 break;
7879 }
7880 case LTTNG_BUFFER_PER_PID:
7881 {
56047f5a
JG
7882 lttng::urcu::read_lock_guard read_lock;
7883
28ab034a 7884 cds_lfht_for_each_entry (ust_app_ht->ht, &iter.iter, app, pid_n.node) {
4a9b9759
MD
7885 struct consumer_socket *socket;
7886 struct lttng_ht_iter chan_iter;
7887 struct ust_app_channel *ua_chan;
7888 struct ust_app_session *ua_sess;
b0f2e8db 7889 lsu::registry_session *registry;
4a9b9759
MD
7890
7891 ua_sess = lookup_session_by_app(usess, app);
7892 if (!ua_sess) {
7893 /* Session not associated with this app. */
7894 continue;
7895 }
7896
7897 /* Get the right consumer socket for the application. */
d7bfb9b0 7898 socket = consumer_find_socket_by_bitness(app->abi.bits_per_long,
28ab034a 7899 usess->consumer);
4a9b9759
MD
7900 if (!socket) {
7901 cmd_ret = LTTNG_ERR_INVALID;
7902 goto error_socket;
7903 }
7904
7905 registry = get_session_registry(ua_sess);
7906 if (!registry) {
7907 DBG("Application session is being torn down. Skip application.");
7908 continue;
7909 }
7910
7911 /* Clear the data channels. */
28ab034a
JG
7912 cds_lfht_for_each_entry (
7913 ua_sess->channels->ht, &chan_iter.iter, ua_chan, node.node) {
4a9b9759
MD
7914 ret = consumer_clear_channel(socket, ua_chan->key);
7915 if (ret < 0) {
7916 /* Per-PID buffer and application going away. */
7917 if (ret == -LTTNG_ERR_CHAN_NOT_FOUND) {
7918 continue;
7919 }
7920 goto error;
7921 }
7922 }
7923
d7bfb9b0
JG
7924 {
7925 auto locked_registry = registry->lock();
7926 (void) push_metadata(locked_registry, usess->consumer);
7927 }
4a9b9759
MD
7928
7929 /*
7930 * Clear the metadata channel.
7931 * Metadata channel is not cleared per se but we still need to
7932 * perform rotation operation on it behind the scene.
7933 */
aeeb48c6 7934 ret = consumer_clear_channel(socket, registry->_metadata_key);
4a9b9759
MD
7935 if (ret < 0) {
7936 /* Per-PID buffer and application going away. */
7937 if (ret == -LTTNG_ERR_CHAN_NOT_FOUND) {
7938 continue;
7939 }
7940 goto error;
7941 }
7942 }
7943 break;
7944 }
7945 default:
a0377dfe 7946 abort();
4a9b9759
MD
7947 break;
7948 }
7949
7950 cmd_ret = LTTNG_OK;
7951 goto end;
7952
7953error:
7954 switch (-ret) {
7955 case LTTCOMM_CONSUMERD_RELAYD_CLEAR_DISALLOWED:
7956 cmd_ret = LTTNG_ERR_CLEAR_RELAY_DISALLOWED;
7957 break;
7958 default:
7959 cmd_ret = LTTNG_ERR_CLEAR_FAIL_CONSUMER;
7960 }
7961
7962error_socket:
7963end:
4a9b9759
MD
7964 return cmd_ret;
7965}
04ed9e10
JG
7966
7967/*
7968 * This function skips the metadata channel as the begin/end timestamps of a
7969 * metadata packet are useless.
7970 *
7971 * Moreover, opening a packet after a "clear" will cause problems for live
7972 * sessions as it will introduce padding that was not part of the first trace
7973 * chunk. The relay daemon expects the content of the metadata stream of
7974 * successive metadata trace chunks to be strict supersets of one another.
7975 *
7976 * For example, flushing a packet at the beginning of the metadata stream of
7977 * a trace chunk resulting from a "clear" session command will cause the
7978 * size of the metadata stream of the new trace chunk to not match the size of
7979 * the metadata stream of the original chunk. This will confuse the relay
7980 * daemon as the same "offset" in a metadata stream will no longer point
7981 * to the same content.
7982 */
a0a4f314 7983enum lttng_error_code ust_app_open_packets(const ltt_session::locked_ref& session)
04ed9e10
JG
7984{
7985 enum lttng_error_code ret = LTTNG_OK;
7986 struct lttng_ht_iter iter;
7987 struct ltt_ust_session *usess = session->ust_session;
7988
a0377dfe 7989 LTTNG_ASSERT(usess);
04ed9e10 7990
04ed9e10
JG
7991 switch (usess->buffer_type) {
7992 case LTTNG_BUFFER_PER_UID:
7993 {
7994 struct buffer_reg_uid *reg;
7995
28ab034a 7996 cds_list_for_each_entry (reg, &usess->buffer_reg_uid_list, lnode) {
3273699d 7997 struct buffer_reg_channel *buf_reg_chan;
04ed9e10 7998 struct consumer_socket *socket;
56047f5a 7999 lttng::urcu::read_lock_guard read_lock;
04ed9e10 8000
28ab034a
JG
8001 socket = consumer_find_socket_by_bitness(reg->bits_per_long,
8002 usess->consumer);
04ed9e10
JG
8003 if (!socket) {
8004 ret = LTTNG_ERR_FATAL;
8005 goto error;
8006 }
8007
28ab034a
JG
8008 cds_lfht_for_each_entry (
8009 reg->registry->channels->ht, &iter.iter, buf_reg_chan, node.node) {
8010 const int open_ret = consumer_open_channel_packets(
8011 socket, buf_reg_chan->consumer_key);
04ed9e10
JG
8012
8013 if (open_ret < 0) {
8014 ret = LTTNG_ERR_UNK;
8015 goto error;
8016 }
8017 }
8018 }
8019 break;
8020 }
8021 case LTTNG_BUFFER_PER_PID:
8022 {
8023 struct ust_app *app;
56047f5a 8024 lttng::urcu::read_lock_guard read_lock;
04ed9e10 8025
28ab034a 8026 cds_lfht_for_each_entry (ust_app_ht->ht, &iter.iter, app, pid_n.node) {
04ed9e10
JG
8027 struct consumer_socket *socket;
8028 struct lttng_ht_iter chan_iter;
8029 struct ust_app_channel *ua_chan;
8030 struct ust_app_session *ua_sess;
b0f2e8db 8031 lsu::registry_session *registry;
04ed9e10
JG
8032
8033 ua_sess = lookup_session_by_app(usess, app);
8034 if (!ua_sess) {
8035 /* Session not associated with this app. */
8036 continue;
8037 }
8038
8039 /* Get the right consumer socket for the application. */
28ab034a
JG
8040 socket = consumer_find_socket_by_bitness(app->abi.bits_per_long,
8041 usess->consumer);
04ed9e10
JG
8042 if (!socket) {
8043 ret = LTTNG_ERR_FATAL;
8044 goto error;
8045 }
8046
8047 registry = get_session_registry(ua_sess);
8048 if (!registry) {
8049 DBG("Application session is being torn down. Skip application.");
8050 continue;
8051 }
8052
28ab034a
JG
8053 cds_lfht_for_each_entry (
8054 ua_sess->channels->ht, &chan_iter.iter, ua_chan, node.node) {
04ed9e10 8055 const int open_ret =
28ab034a 8056 consumer_open_channel_packets(socket, ua_chan->key);
04ed9e10
JG
8057
8058 if (open_ret < 0) {
8059 /*
8060 * Per-PID buffer and application going
8061 * away.
8062 */
97a171e1 8063 if (open_ret == -LTTNG_ERR_CHAN_NOT_FOUND) {
04ed9e10
JG
8064 continue;
8065 }
8066
8067 ret = LTTNG_ERR_UNK;
8068 goto error;
8069 }
8070 }
8071 }
8072 break;
8073 }
8074 default:
8075 abort();
8076 break;
8077 }
8078
8079error:
04ed9e10
JG
8080 return ret;
8081}
b6bbb1d6
JG
8082
8083lsu::ctl_field_quirks ust_app::ctl_field_quirks() const
8084{
8085 /*
8086 * Application contexts are expressed as variants. LTTng-UST announces
8087 * those by registering an enumeration named `..._tag`. It then registers a
8088 * variant as part of the event context that contains the various possible
8089 * types.
8090 *
8091 * Unfortunately, the names used in the enumeration and variant don't
8092 * match: the enumeration names are all prefixed with an underscore while
8093 * the variant type tag fields aren't.
8094 *
8095 * While the CTF 1.8.3 specification mentions that
8096 * underscores *should* (not *must*) be removed by CTF readers. Babeltrace
8097 * 1.x (and possibly others) expect a perfect match between the names used
8098 * by tags and variants.
8099 *
8100 * When the UNDERSCORE_PREFIXED_VARIANT_TAG_MAPPINGS quirk is enabled,
8101 * the variant's fields are modified to match the mappings of its tag.
8102 *
8103 * From ABI version >= 10.x, the variant fields and tag mapping names
8104 * correctly match, making this quirk unnecessary.
8105 */
8106 return v_major <= 9 ? lsu::ctl_field_quirks::UNDERSCORE_PREFIXED_VARIANT_TAG_MAPPINGS :
28ab034a 8107 lsu::ctl_field_quirks::NONE;
56047f5a 8108}
a7db814e
JG
8109
8110static void ust_app_release(urcu_ref *ref)
8111{
8112 auto& app = *lttng::utils::container_of(ref, &ust_app::ref);
8113
8114 ust_app_unregister(app);
8115 ust_app_destroy(app);
8116}
8117
8118bool ust_app_get(ust_app& app)
8119{
8120 return urcu_ref_get_unless_zero(&app.ref);
8121}
8122
8123void ust_app_put(struct ust_app *app)
8124{
8125 if (!app) {
8126 return;
8127 }
8128
8129 urcu_ref_put(&app->ref, ust_app_release);
8130}
This page took 0.688367 seconds and 4 git commands to generate.