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