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