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