Metadata: add vpid_datetime field to metadta env
[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,
88e3c2f5 1263 const char *name, const struct lttng_filter_bytecode *filter,
2106efa0 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;
88e3c2f5 1324 DBG3("UST app add context failed. Application is dead.");
ffe60014 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 1685 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
88e3c2f5 1686 abort();
ffe60014
DG
1687 ERR("Error ustctl create event %s for app pid: %d with ret %d",
1688 ua_event->attr.name, app->pid, ret);
1689 } else {
3757b385
DG
1690 /*
1691 * This is normal behavior, an application can die during the
1692 * creation process. Don't report an error so the execution can
1693 * continue normally.
1694 */
1695 ret = 0;
ffe60014
DG
1696 DBG3("UST app create event failed. Application is dead.");
1697 }
5b4a0ec0 1698 goto error;
91d76f53 1699 }
f6a9efaa 1700
5b4a0ec0 1701 ua_event->handle = ua_event->obj->handle;
284d8f55 1702
5b4a0ec0 1703 DBG2("UST app event %s created successfully for pid:%d",
852d0037 1704 ua_event->attr.name, app->pid);
f6a9efaa 1705
840cb59c 1706 health_code_update();
86acf0da 1707
025faf73
DG
1708 /* Set filter if one is present. */
1709 if (ua_event->filter) {
1710 ret = set_ust_event_filter(ua_event, app);
1711 if (ret < 0) {
1712 goto error;
1713 }
1714 }
1715
7cc9a73c
JI
1716 /* Set exclusions for the event */
1717 if (ua_event->exclusion) {
1718 ret = set_ust_event_exclusion(ua_event, app);
1719 if (ret < 0) {
1720 goto error;
1721 }
1722 }
1723
8535a6d9 1724 /* If event not enabled, disable it on the tracer */
40113787
MD
1725 if (ua_event->enabled) {
1726 /*
1727 * We now need to explicitly enable the event, since it
1728 * is now disabled at creation.
1729 */
1730 ret = enable_ust_event(app, ua_sess, ua_event);
1731 if (ret < 0) {
1732 /*
1733 * If we hit an EPERM, something is wrong with our enable call. If
1734 * we get an EEXIST, there is a problem on the tracer side since we
1735 * just created it.
1736 */
1737 switch (ret) {
1738 case -LTTNG_UST_ERR_PERM:
1739 /* Code flow problem */
1740 assert(0);
1741 case -LTTNG_UST_ERR_EXIST:
1742 /* It's OK for our use case. */
1743 ret = 0;
1744 break;
1745 default:
1746 break;
1747 }
1748 goto error;
1749 }
8535a6d9
DG
1750 }
1751
5b4a0ec0 1752error:
840cb59c 1753 health_code_update();
5b4a0ec0 1754 return ret;
91d76f53 1755}
48842b30 1756
5b4a0ec0
DG
1757/*
1758 * Copy data between an UST app event and a LTT event.
1759 */
421cb601 1760static void shadow_copy_event(struct ust_app_event *ua_event,
48842b30
DG
1761 struct ltt_ust_event *uevent)
1762{
b4ffad32
JI
1763 size_t exclusion_alloc_size;
1764
48842b30
DG
1765 strncpy(ua_event->name, uevent->attr.name, sizeof(ua_event->name));
1766 ua_event->name[sizeof(ua_event->name) - 1] = '\0';
1767
fc34caaa
DG
1768 ua_event->enabled = uevent->enabled;
1769
5b4a0ec0
DG
1770 /* Copy event attributes */
1771 memcpy(&ua_event->attr, &uevent->attr, sizeof(ua_event->attr));
1772
53a80697
MD
1773 /* Copy filter bytecode */
1774 if (uevent->filter) {
51755dc8 1775 ua_event->filter = copy_filter_bytecode(uevent->filter);
025faf73 1776 /* Filter might be NULL here in case of ENONEM. */
53a80697 1777 }
b4ffad32
JI
1778
1779 /* Copy exclusion data */
1780 if (uevent->exclusion) {
51755dc8 1781 exclusion_alloc_size = sizeof(struct lttng_event_exclusion) +
b4ffad32
JI
1782 LTTNG_UST_SYM_NAME_LEN * uevent->exclusion->count;
1783 ua_event->exclusion = zmalloc(exclusion_alloc_size);
5f8df26c
JI
1784 if (ua_event->exclusion == NULL) {
1785 PERROR("malloc");
1786 } else {
1787 memcpy(ua_event->exclusion, uevent->exclusion,
1788 exclusion_alloc_size);
b4ffad32
JI
1789 }
1790 }
48842b30
DG
1791}
1792
5b4a0ec0
DG
1793/*
1794 * Copy data between an UST app channel and a LTT channel.
1795 */
421cb601 1796static void shadow_copy_channel(struct ust_app_channel *ua_chan,
48842b30
DG
1797 struct ltt_ust_channel *uchan)
1798{
fc34caaa 1799 DBG2("UST app shadow copy of channel %s started", ua_chan->name);
48842b30
DG
1800
1801 strncpy(ua_chan->name, uchan->name, sizeof(ua_chan->name));
1802 ua_chan->name[sizeof(ua_chan->name) - 1] = '\0';
ffe60014 1803
1624d5b7
JD
1804 ua_chan->tracefile_size = uchan->tracefile_size;
1805 ua_chan->tracefile_count = uchan->tracefile_count;
1806
ffe60014
DG
1807 /* Copy event attributes since the layout is different. */
1808 ua_chan->attr.subbuf_size = uchan->attr.subbuf_size;
1809 ua_chan->attr.num_subbuf = uchan->attr.num_subbuf;
1810 ua_chan->attr.overwrite = uchan->attr.overwrite;
1811 ua_chan->attr.switch_timer_interval = uchan->attr.switch_timer_interval;
1812 ua_chan->attr.read_timer_interval = uchan->attr.read_timer_interval;
e9404c27 1813 ua_chan->monitor_timer_interval = uchan->monitor_timer_interval;
ffe60014 1814 ua_chan->attr.output = uchan->attr.output;
491d1539
MD
1815 ua_chan->attr.blocking_timeout = uchan->attr.u.s.blocking_timeout;
1816
ffe60014
DG
1817 /*
1818 * Note that the attribute channel type is not set since the channel on the
1819 * tracing registry side does not have this information.
1820 */
48842b30 1821
fc34caaa 1822 ua_chan->enabled = uchan->enabled;
7972aab2 1823 ua_chan->tracing_channel_id = uchan->id;
fc34caaa 1824
fc34caaa 1825 DBG3("UST app shadow copy of channel %s done", ua_chan->name);
48842b30
DG
1826}
1827
5b4a0ec0
DG
1828/*
1829 * Copy data between a UST app session and a regular LTT session.
1830 */
421cb601 1831static void shadow_copy_session(struct ust_app_session *ua_sess,
bec39940 1832 struct ltt_ust_session *usess, struct ust_app *app)
48842b30 1833{
477d7741
MD
1834 struct tm *timeinfo;
1835 char datetime[16];
1836 int ret;
d7ba1388 1837 char tmp_shm_path[PATH_MAX];
477d7741 1838
d7912dd1 1839 timeinfo = localtime(&app->registration_time);
477d7741 1840 strftime(datetime, sizeof(datetime), "%Y%m%d-%H%M%S", timeinfo);
48842b30 1841
421cb601 1842 DBG2("Shadow copy of session handle %d", ua_sess->handle);
48842b30 1843
7972aab2
DG
1844 ua_sess->tracing_id = usess->id;
1845 ua_sess->id = get_next_session_id();
1846 ua_sess->uid = app->uid;
1847 ua_sess->gid = app->gid;
1848 ua_sess->euid = usess->uid;
1849 ua_sess->egid = usess->gid;
1850 ua_sess->buffer_type = usess->buffer_type;
1851 ua_sess->bits_per_long = app->bits_per_long;
6addfa37 1852
7972aab2 1853 /* There is only one consumer object per session possible. */
6addfa37 1854 consumer_output_get(usess->consumer);
7972aab2 1855 ua_sess->consumer = usess->consumer;
6addfa37 1856
2bba9e53 1857 ua_sess->output_traces = usess->output_traces;
ecc48a90 1858 ua_sess->live_timer_interval = usess->live_timer_interval;
84ad93e8
DG
1859 copy_channel_attr_to_ustctl(&ua_sess->metadata_attr,
1860 &usess->metadata_attr);
7972aab2
DG
1861
1862 switch (ua_sess->buffer_type) {
1863 case LTTNG_BUFFER_PER_PID:
1864 ret = snprintf(ua_sess->path, sizeof(ua_sess->path),
dec56f6c 1865 DEFAULT_UST_TRACE_PID_PATH "/%s-%d-%s", app->name, app->pid,
7972aab2
DG
1866 datetime);
1867 break;
1868 case LTTNG_BUFFER_PER_UID:
1869 ret = snprintf(ua_sess->path, sizeof(ua_sess->path),
1870 DEFAULT_UST_TRACE_UID_PATH, ua_sess->uid, app->bits_per_long);
1871 break;
1872 default:
1873 assert(0);
1874 goto error;
1875 }
477d7741
MD
1876 if (ret < 0) {
1877 PERROR("asprintf UST shadow copy session");
477d7741 1878 assert(0);
7972aab2 1879 goto error;
477d7741
MD
1880 }
1881
3d071855
MD
1882 strncpy(ua_sess->root_shm_path, usess->root_shm_path,
1883 sizeof(ua_sess->root_shm_path));
1884 ua_sess->root_shm_path[sizeof(ua_sess->root_shm_path) - 1] = '\0';
d7ba1388
MD
1885 strncpy(ua_sess->shm_path, usess->shm_path,
1886 sizeof(ua_sess->shm_path));
1887 ua_sess->shm_path[sizeof(ua_sess->shm_path) - 1] = '\0';
1888 if (ua_sess->shm_path[0]) {
1889 switch (ua_sess->buffer_type) {
1890 case LTTNG_BUFFER_PER_PID:
1891 ret = snprintf(tmp_shm_path, sizeof(tmp_shm_path),
1892 DEFAULT_UST_TRACE_PID_PATH "/%s-%d-%s",
1893 app->name, app->pid, datetime);
1894 break;
1895 case LTTNG_BUFFER_PER_UID:
1896 ret = snprintf(tmp_shm_path, sizeof(tmp_shm_path),
1897 DEFAULT_UST_TRACE_UID_PATH,
1898 app->uid, app->bits_per_long);
1899 break;
1900 default:
1901 assert(0);
1902 goto error;
1903 }
1904 if (ret < 0) {
1905 PERROR("sprintf UST shadow copy session");
1906 assert(0);
1907 goto error;
1908 }
1909 strncat(ua_sess->shm_path, tmp_shm_path,
1910 sizeof(ua_sess->shm_path) - strlen(ua_sess->shm_path) - 1);
1911 ua_sess->shm_path[sizeof(ua_sess->shm_path) - 1] = '\0';
1912 }
6addfa37 1913 return;
7972aab2
DG
1914
1915error:
6addfa37 1916 consumer_output_put(ua_sess->consumer);
48842b30
DG
1917}
1918
78f0bacd
DG
1919/*
1920 * Lookup sesison wrapper.
1921 */
84cd17c6
MD
1922static
1923void __lookup_session_by_app(struct ltt_ust_session *usess,
bec39940 1924 struct ust_app *app, struct lttng_ht_iter *iter)
84cd17c6
MD
1925{
1926 /* Get right UST app session from app */
d9bf3ca4 1927 lttng_ht_lookup(app->sessions, &usess->id, iter);
84cd17c6
MD
1928}
1929
421cb601
DG
1930/*
1931 * Return ust app session from the app session hashtable using the UST session
a991f516 1932 * id.
421cb601 1933 */
48842b30
DG
1934static struct ust_app_session *lookup_session_by_app(
1935 struct ltt_ust_session *usess, struct ust_app *app)
1936{
bec39940 1937 struct lttng_ht_iter iter;
d9bf3ca4 1938 struct lttng_ht_node_u64 *node;
48842b30 1939
84cd17c6 1940 __lookup_session_by_app(usess, app, &iter);
d9bf3ca4 1941 node = lttng_ht_iter_get_node_u64(&iter);
48842b30
DG
1942 if (node == NULL) {
1943 goto error;
1944 }
1945
1946 return caa_container_of(node, struct ust_app_session, node);
1947
1948error:
1949 return NULL;
1950}
1951
7972aab2
DG
1952/*
1953 * Setup buffer registry per PID for the given session and application. If none
1954 * is found, a new one is created, added to the global registry and
1955 * initialized. If regp is valid, it's set with the newly created object.
1956 *
1957 * Return 0 on success or else a negative value.
1958 */
1959static int setup_buffer_reg_pid(struct ust_app_session *ua_sess,
1960 struct ust_app *app, struct buffer_reg_pid **regp)
1961{
1962 int ret = 0;
1963 struct buffer_reg_pid *reg_pid;
1964
1965 assert(ua_sess);
1966 assert(app);
1967
1968 rcu_read_lock();
1969
1970 reg_pid = buffer_reg_pid_find(ua_sess->id);
1971 if (!reg_pid) {
1972 /*
1973 * This is the create channel path meaning that if there is NO
1974 * registry available, we have to create one for this session.
1975 */
d7ba1388 1976 ret = buffer_reg_pid_create(ua_sess->id, &reg_pid,
3d071855 1977 ua_sess->root_shm_path, ua_sess->shm_path);
7972aab2
DG
1978 if (ret < 0) {
1979 goto error;
1980 }
7972aab2
DG
1981 } else {
1982 goto end;
1983 }
1984
1985 /* Initialize registry. */
1986 ret = ust_registry_session_init(&reg_pid->registry->reg.ust, app,
1987 app->bits_per_long, app->uint8_t_alignment,
1988 app->uint16_t_alignment, app->uint32_t_alignment,
af6142cf
MD
1989 app->uint64_t_alignment, app->long_alignment,
1990 app->byte_order, app->version.major,
3d071855
MD
1991 app->version.minor, reg_pid->root_shm_path,
1992 reg_pid->shm_path,
d77fb8c7 1993 ua_sess->euid, ua_sess->egid, ua_sess->tracing_id, app->uid);
7972aab2 1994 if (ret < 0) {
286c991a
MD
1995 /*
1996 * reg_pid->registry->reg.ust is NULL upon error, so we need to
1997 * destroy the buffer registry, because it is always expected
1998 * that if the buffer registry can be found, its ust registry is
1999 * non-NULL.
2000 */
2001 buffer_reg_pid_destroy(reg_pid);
7972aab2
DG
2002 goto error;
2003 }
2004
286c991a
MD
2005 buffer_reg_pid_add(reg_pid);
2006
7972aab2
DG
2007 DBG3("UST app buffer registry per PID created successfully");
2008
2009end:
2010 if (regp) {
2011 *regp = reg_pid;
2012 }
2013error:
2014 rcu_read_unlock();
2015 return ret;
2016}
2017
2018/*
2019 * Setup buffer registry per UID for the given session and application. If none
2020 * is found, a new one is created, added to the global registry and
2021 * initialized. If regp is valid, it's set with the newly created object.
2022 *
2023 * Return 0 on success or else a negative value.
2024 */
2025static int setup_buffer_reg_uid(struct ltt_ust_session *usess,
d7ba1388 2026 struct ust_app_session *ua_sess,
7972aab2
DG
2027 struct ust_app *app, struct buffer_reg_uid **regp)
2028{
2029 int ret = 0;
2030 struct buffer_reg_uid *reg_uid;
2031
2032 assert(usess);
2033 assert(app);
2034
2035 rcu_read_lock();
2036
2037 reg_uid = buffer_reg_uid_find(usess->id, app->bits_per_long, app->uid);
2038 if (!reg_uid) {
2039 /*
2040 * This is the create channel path meaning that if there is NO
2041 * registry available, we have to create one for this session.
2042 */
2043 ret = buffer_reg_uid_create(usess->id, app->bits_per_long, app->uid,
3d071855
MD
2044 LTTNG_DOMAIN_UST, &reg_uid,
2045 ua_sess->root_shm_path, ua_sess->shm_path);
7972aab2
DG
2046 if (ret < 0) {
2047 goto error;
2048 }
7972aab2
DG
2049 } else {
2050 goto end;
2051 }
2052
2053 /* Initialize registry. */
af6142cf 2054 ret = ust_registry_session_init(&reg_uid->registry->reg.ust, NULL,
7972aab2
DG
2055 app->bits_per_long, app->uint8_t_alignment,
2056 app->uint16_t_alignment, app->uint32_t_alignment,
af6142cf
MD
2057 app->uint64_t_alignment, app->long_alignment,
2058 app->byte_order, app->version.major,
3d071855 2059 app->version.minor, reg_uid->root_shm_path,
d77fb8c7
JR
2060 reg_uid->shm_path, usess->uid, usess->gid,
2061 ua_sess->tracing_id, app->uid);
7972aab2 2062 if (ret < 0) {
286c991a
MD
2063 /*
2064 * reg_uid->registry->reg.ust is NULL upon error, so we need to
2065 * destroy the buffer registry, because it is always expected
2066 * that if the buffer registry can be found, its ust registry is
2067 * non-NULL.
2068 */
2069 buffer_reg_uid_destroy(reg_uid, NULL);
7972aab2
DG
2070 goto error;
2071 }
2072 /* Add node to teardown list of the session. */
2073 cds_list_add(&reg_uid->lnode, &usess->buffer_reg_uid_list);
2074
286c991a 2075 buffer_reg_uid_add(reg_uid);
7972aab2 2076
286c991a 2077 DBG3("UST app buffer registry per UID created successfully");
7972aab2
DG
2078end:
2079 if (regp) {
2080 *regp = reg_uid;
2081 }
2082error:
2083 rcu_read_unlock();
2084 return ret;
2085}
2086
421cb601 2087/*
3d8ca23b 2088 * Create a session on the tracer side for the given app.
421cb601 2089 *
3d8ca23b
DG
2090 * On success, ua_sess_ptr is populated with the session pointer or else left
2091 * untouched. If the session was created, is_created is set to 1. On error,
2092 * it's left untouched. Note that ua_sess_ptr is mandatory but is_created can
2093 * be NULL.
2094 *
2095 * Returns 0 on success or else a negative code which is either -ENOMEM or
2096 * -ENOTCONN which is the default code if the ustctl_create_session fails.
421cb601 2097 */
03f91eaa 2098static int find_or_create_ust_app_session(struct ltt_ust_session *usess,
3d8ca23b
DG
2099 struct ust_app *app, struct ust_app_session **ua_sess_ptr,
2100 int *is_created)
421cb601 2101{
3d8ca23b 2102 int ret, created = 0;
421cb601
DG
2103 struct ust_app_session *ua_sess;
2104
3d8ca23b
DG
2105 assert(usess);
2106 assert(app);
2107 assert(ua_sess_ptr);
2108
840cb59c 2109 health_code_update();
86acf0da 2110
421cb601
DG
2111 ua_sess = lookup_session_by_app(usess, app);
2112 if (ua_sess == NULL) {
d9bf3ca4 2113 DBG2("UST app pid: %d session id %" PRIu64 " not found, creating it",
852d0037 2114 app->pid, usess->id);
40bbd087 2115 ua_sess = alloc_ust_app_session();
421cb601
DG
2116 if (ua_sess == NULL) {
2117 /* Only malloc can failed so something is really wrong */
3d8ca23b
DG
2118 ret = -ENOMEM;
2119 goto error;
421cb601 2120 }
477d7741 2121 shadow_copy_session(ua_sess, usess, app);
3d8ca23b 2122 created = 1;
421cb601
DG
2123 }
2124
7972aab2
DG
2125 switch (usess->buffer_type) {
2126 case LTTNG_BUFFER_PER_PID:
2127 /* Init local registry. */
2128 ret = setup_buffer_reg_pid(ua_sess, app, NULL);
421cb601 2129 if (ret < 0) {
e64207cf 2130 delete_ust_app_session(-1, ua_sess, app);
7972aab2
DG
2131 goto error;
2132 }
2133 break;
2134 case LTTNG_BUFFER_PER_UID:
2135 /* Look for a global registry. If none exists, create one. */
d7ba1388 2136 ret = setup_buffer_reg_uid(usess, ua_sess, app, NULL);
7972aab2 2137 if (ret < 0) {
e64207cf 2138 delete_ust_app_session(-1, ua_sess, app);
7972aab2
DG
2139 goto error;
2140 }
2141 break;
2142 default:
2143 assert(0);
2144 ret = -EINVAL;
2145 goto error;
2146 }
2147
2148 health_code_update();
2149
2150 if (ua_sess->handle == -1) {
fb45065e 2151 pthread_mutex_lock(&app->sock_lock);
7972aab2 2152 ret = ustctl_create_session(app->sock);
fb45065e 2153 pthread_mutex_unlock(&app->sock_lock);
7972aab2
DG
2154 if (ret < 0) {
2155 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
2156 ERR("Creating session for app pid %d with ret %d",
ffe60014
DG
2157 app->pid, ret);
2158 } else {
2159 DBG("UST app creating session failed. Application is dead");
3757b385
DG
2160 /*
2161 * This is normal behavior, an application can die during the
2162 * creation process. Don't report an error so the execution can
2163 * continue normally. This will get flagged ENOTCONN and the
2164 * caller will handle it.
2165 */
2166 ret = 0;
ffe60014 2167 }
d0b96690 2168 delete_ust_app_session(-1, ua_sess, app);
3d8ca23b
DG
2169 if (ret != -ENOMEM) {
2170 /*
2171 * Tracer is probably gone or got an internal error so let's
2172 * behave like it will soon unregister or not usable.
2173 */
2174 ret = -ENOTCONN;
2175 }
2176 goto error;
421cb601
DG
2177 }
2178
7972aab2
DG
2179 ua_sess->handle = ret;
2180
2181 /* Add ust app session to app's HT */
d9bf3ca4
MD
2182 lttng_ht_node_init_u64(&ua_sess->node,
2183 ua_sess->tracing_id);
2184 lttng_ht_add_unique_u64(app->sessions, &ua_sess->node);
10b56aef
MD
2185 lttng_ht_node_init_ulong(&ua_sess->ust_objd_node, ua_sess->handle);
2186 lttng_ht_add_unique_ulong(app->ust_sessions_objd,
2187 &ua_sess->ust_objd_node);
7972aab2
DG
2188
2189 DBG2("UST app session created successfully with handle %d", ret);
2190 }
2191
2192 *ua_sess_ptr = ua_sess;
2193 if (is_created) {
2194 *is_created = created;
2195 }
2196
2197 /* Everything went well. */
2198 ret = 0;
2199
2200error:
2201 health_code_update();
2202 return ret;
2203}
2204
6a6b2068
JG
2205/*
2206 * Match function for a hash table lookup of ust_app_ctx.
2207 *
2208 * It matches an ust app context based on the context type and, in the case
2209 * of perf counters, their name.
2210 */
2211static int ht_match_ust_app_ctx(struct cds_lfht_node *node, const void *_key)
2212{
2213 struct ust_app_ctx *ctx;
bdf64013 2214 const struct lttng_ust_context_attr *key;
6a6b2068
JG
2215
2216 assert(node);
2217 assert(_key);
2218
2219 ctx = caa_container_of(node, struct ust_app_ctx, node.node);
2220 key = _key;
2221
2222 /* Context type */
2223 if (ctx->ctx.ctx != key->ctx) {
2224 goto no_match;
2225 }
2226
bdf64013
JG
2227 switch(key->ctx) {
2228 case LTTNG_UST_CONTEXT_PERF_THREAD_COUNTER:
6a6b2068 2229 if (strncmp(key->u.perf_counter.name,
bdf64013
JG
2230 ctx->ctx.u.perf_counter.name,
2231 sizeof(key->u.perf_counter.name))) {
2232 goto no_match;
2233 }
2234 break;
2235 case LTTNG_UST_CONTEXT_APP_CONTEXT:
2236 if (strcmp(key->u.app_ctx.provider_name,
2237 ctx->ctx.u.app_ctx.provider_name) ||
2238 strcmp(key->u.app_ctx.ctx_name,
2239 ctx->ctx.u.app_ctx.ctx_name)) {
6a6b2068
JG
2240 goto no_match;
2241 }
bdf64013
JG
2242 break;
2243 default:
2244 break;
6a6b2068
JG
2245 }
2246
2247 /* Match. */
2248 return 1;
2249
2250no_match:
2251 return 0;
2252}
2253
2254/*
2255 * Lookup for an ust app context from an lttng_ust_context.
2256 *
be184a0f 2257 * Must be called while holding RCU read side lock.
6a6b2068
JG
2258 * Return an ust_app_ctx object or NULL on error.
2259 */
2260static
2261struct ust_app_ctx *find_ust_app_context(struct lttng_ht *ht,
bdf64013 2262 struct lttng_ust_context_attr *uctx)
6a6b2068
JG
2263{
2264 struct lttng_ht_iter iter;
2265 struct lttng_ht_node_ulong *node;
2266 struct ust_app_ctx *app_ctx = NULL;
2267
2268 assert(uctx);
2269 assert(ht);
2270
2271 /* Lookup using the lttng_ust_context_type and a custom match fct. */
2272 cds_lfht_lookup(ht->ht, ht->hash_fct((void *) uctx->ctx, lttng_ht_seed),
2273 ht_match_ust_app_ctx, uctx, &iter.iter);
2274 node = lttng_ht_iter_get_node_ulong(&iter);
2275 if (!node) {
2276 goto end;
2277 }
2278
2279 app_ctx = caa_container_of(node, struct ust_app_ctx, node);
2280
2281end:
2282 return app_ctx;
2283}
2284
7972aab2
DG
2285/*
2286 * Create a context for the channel on the tracer.
2287 *
2288 * Called with UST app session lock held and a RCU read side lock.
2289 */
2290static
c9edf082 2291int create_ust_app_channel_context(struct ust_app_channel *ua_chan,
bdf64013 2292 struct lttng_ust_context_attr *uctx,
7972aab2
DG
2293 struct ust_app *app)
2294{
2295 int ret = 0;
7972aab2
DG
2296 struct ust_app_ctx *ua_ctx;
2297
2298 DBG2("UST app adding context to channel %s", ua_chan->name);
2299
6a6b2068
JG
2300 ua_ctx = find_ust_app_context(ua_chan->ctx, uctx);
2301 if (ua_ctx) {
7972aab2
DG
2302 ret = -EEXIST;
2303 goto error;
2304 }
2305
2306 ua_ctx = alloc_ust_app_ctx(uctx);
2307 if (ua_ctx == NULL) {
2308 /* malloc failed */
7682f304 2309 ret = -ENOMEM;
7972aab2
DG
2310 goto error;
2311 }
2312
2313 lttng_ht_node_init_ulong(&ua_ctx->node, (unsigned long) ua_ctx->ctx.ctx);
aa3514e9 2314 lttng_ht_add_ulong(ua_chan->ctx, &ua_ctx->node);
31746f93 2315 cds_list_add_tail(&ua_ctx->list, &ua_chan->ctx_list);
7972aab2
DG
2316
2317 ret = create_ust_channel_context(ua_chan, ua_ctx, app);
2318 if (ret < 0) {
2319 goto error;
2320 }
2321
2322error:
2323 return ret;
2324}
2325
2326/*
2327 * Enable on the tracer side a ust app event for the session and channel.
2328 *
2329 * Called with UST app session lock held.
2330 */
2331static
2332int enable_ust_app_event(struct ust_app_session *ua_sess,
2333 struct ust_app_event *ua_event, struct ust_app *app)
2334{
2335 int ret;
2336
2337 ret = enable_ust_event(app, ua_sess, ua_event);
2338 if (ret < 0) {
2339 goto error;
2340 }
2341
2342 ua_event->enabled = 1;
2343
2344error:
2345 return ret;
2346}
2347
2348/*
2349 * Disable on the tracer side a ust app event for the session and channel.
2350 */
2351static int disable_ust_app_event(struct ust_app_session *ua_sess,
2352 struct ust_app_event *ua_event, struct ust_app *app)
2353{
2354 int ret;
2355
2356 ret = disable_ust_event(app, ua_sess, ua_event);
2357 if (ret < 0) {
2358 goto error;
2359 }
2360
2361 ua_event->enabled = 0;
2362
2363error:
2364 return ret;
2365}
2366
2367/*
2368 * Lookup ust app channel for session and disable it on the tracer side.
2369 */
2370static
2371int disable_ust_app_channel(struct ust_app_session *ua_sess,
2372 struct ust_app_channel *ua_chan, struct ust_app *app)
2373{
2374 int ret;
2375
2376 ret = disable_ust_channel(app, ua_sess, ua_chan);
2377 if (ret < 0) {
2378 goto error;
2379 }
2380
2381 ua_chan->enabled = 0;
2382
2383error:
2384 return ret;
2385}
2386
2387/*
2388 * Lookup ust app channel for session and enable it on the tracer side. This
2389 * MUST be called with a RCU read side lock acquired.
2390 */
2391static int enable_ust_app_channel(struct ust_app_session *ua_sess,
2392 struct ltt_ust_channel *uchan, struct ust_app *app)
2393{
2394 int ret = 0;
2395 struct lttng_ht_iter iter;
2396 struct lttng_ht_node_str *ua_chan_node;
2397 struct ust_app_channel *ua_chan;
2398
2399 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &iter);
2400 ua_chan_node = lttng_ht_iter_get_node_str(&iter);
2401 if (ua_chan_node == NULL) {
d9bf3ca4 2402 DBG2("Unable to find channel %s in ust session id %" PRIu64,
7972aab2
DG
2403 uchan->name, ua_sess->tracing_id);
2404 goto error;
2405 }
2406
2407 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node);
2408
2409 ret = enable_ust_channel(app, ua_sess, ua_chan);
2410 if (ret < 0) {
2411 goto error;
2412 }
2413
2414error:
2415 return ret;
2416}
2417
2418/*
2419 * Ask the consumer to create a channel and get it if successful.
2420 *
fad1ed2f
JR
2421 * Called with UST app session lock held.
2422 *
7972aab2
DG
2423 * Return 0 on success or else a negative value.
2424 */
2425static int do_consumer_create_channel(struct ltt_ust_session *usess,
2426 struct ust_app_session *ua_sess, struct ust_app_channel *ua_chan,
e098433c
JG
2427 int bitness, struct ust_registry_session *registry,
2428 uint64_t trace_archive_id)
7972aab2
DG
2429{
2430 int ret;
2431 unsigned int nb_fd = 0;
2432 struct consumer_socket *socket;
2433
2434 assert(usess);
2435 assert(ua_sess);
2436 assert(ua_chan);
2437 assert(registry);
2438
2439 rcu_read_lock();
2440 health_code_update();
2441
2442 /* Get the right consumer socket for the application. */
2443 socket = consumer_find_socket_by_bitness(bitness, usess->consumer);
2444 if (!socket) {
2445 ret = -EINVAL;
2446 goto error;
2447 }
2448
2449 health_code_update();
2450
2451 /* Need one fd for the channel. */
2452 ret = lttng_fd_get(LTTNG_FD_APPS, 1);
2453 if (ret < 0) {
2454 ERR("Exhausted number of available FD upon create channel");
2455 goto error;
2456 }
2457
2458 /*
2459 * Ask consumer to create channel. The consumer will return the number of
2460 * stream we have to expect.
2461 */
2462 ret = ust_consumer_ask_channel(ua_sess, ua_chan, usess->consumer, socket,
e098433c 2463 registry, trace_archive_id);
7972aab2
DG
2464 if (ret < 0) {
2465 goto error_ask;
2466 }
2467
2468 /*
2469 * Compute the number of fd needed before receiving them. It must be 2 per
2470 * stream (2 being the default value here).
2471 */
2472 nb_fd = DEFAULT_UST_STREAM_FD_NUM * ua_chan->expected_stream_count;
2473
2474 /* Reserve the amount of file descriptor we need. */
2475 ret = lttng_fd_get(LTTNG_FD_APPS, nb_fd);
2476 if (ret < 0) {
2477 ERR("Exhausted number of available FD upon create channel");
2478 goto error_fd_get_stream;
2479 }
2480
2481 health_code_update();
2482
2483 /*
2484 * Now get the channel from the consumer. This call wil populate the stream
2485 * list of that channel and set the ust objects.
2486 */
d9078d0c
DG
2487 if (usess->consumer->enabled) {
2488 ret = ust_consumer_get_channel(socket, ua_chan);
2489 if (ret < 0) {
2490 goto error_destroy;
2491 }
7972aab2
DG
2492 }
2493
2494 rcu_read_unlock();
2495 return 0;
2496
2497error_destroy:
2498 lttng_fd_put(LTTNG_FD_APPS, nb_fd);
2499error_fd_get_stream:
2500 /*
2501 * Initiate a destroy channel on the consumer since we had an error
2502 * handling it on our side. The return value is of no importance since we
2503 * already have a ret value set by the previous error that we need to
2504 * return.
2505 */
2506 (void) ust_consumer_destroy_channel(socket, ua_chan);
2507error_ask:
2508 lttng_fd_put(LTTNG_FD_APPS, 1);
2509error:
2510 health_code_update();
2511 rcu_read_unlock();
2512 return ret;
2513}
2514
2515/*
2516 * Duplicate the ust data object of the ust app stream and save it in the
2517 * buffer registry stream.
2518 *
2519 * Return 0 on success or else a negative value.
2520 */
2521static int duplicate_stream_object(struct buffer_reg_stream *reg_stream,
2522 struct ust_app_stream *stream)
2523{
2524 int ret;
2525
2526 assert(reg_stream);
2527 assert(stream);
2528
2529 /* Reserve the amount of file descriptor we need. */
2530 ret = lttng_fd_get(LTTNG_FD_APPS, 2);
2531 if (ret < 0) {
2532 ERR("Exhausted number of available FD upon duplicate stream");
2533 goto error;
2534 }
2535
2536 /* Duplicate object for stream once the original is in the registry. */
2537 ret = ustctl_duplicate_ust_object_data(&stream->obj,
2538 reg_stream->obj.ust);
2539 if (ret < 0) {
2540 ERR("Duplicate stream obj from %p to %p failed with ret %d",
2541 reg_stream->obj.ust, stream->obj, ret);
2542 lttng_fd_put(LTTNG_FD_APPS, 2);
2543 goto error;
2544 }
2545 stream->handle = stream->obj->handle;
2546
2547error:
2548 return ret;
2549}
2550
2551/*
2552 * Duplicate the ust data object of the ust app. channel and save it in the
2553 * buffer registry channel.
2554 *
2555 * Return 0 on success or else a negative value.
2556 */
2557static int duplicate_channel_object(struct buffer_reg_channel *reg_chan,
2558 struct ust_app_channel *ua_chan)
2559{
2560 int ret;
2561
2562 assert(reg_chan);
2563 assert(ua_chan);
2564
2565 /* Need two fds for the channel. */
2566 ret = lttng_fd_get(LTTNG_FD_APPS, 1);
2567 if (ret < 0) {
2568 ERR("Exhausted number of available FD upon duplicate channel");
2569 goto error_fd_get;
2570 }
2571
2572 /* Duplicate object for stream once the original is in the registry. */
2573 ret = ustctl_duplicate_ust_object_data(&ua_chan->obj, reg_chan->obj.ust);
2574 if (ret < 0) {
2575 ERR("Duplicate channel obj from %p to %p failed with ret: %d",
2576 reg_chan->obj.ust, ua_chan->obj, ret);
2577 goto error;
2578 }
2579 ua_chan->handle = ua_chan->obj->handle;
2580
2581 return 0;
2582
2583error:
2584 lttng_fd_put(LTTNG_FD_APPS, 1);
2585error_fd_get:
2586 return ret;
2587}
2588
2589/*
2590 * For a given channel buffer registry, setup all streams of the given ust
2591 * application channel.
2592 *
2593 * Return 0 on success or else a negative value.
2594 */
2595static int setup_buffer_reg_streams(struct buffer_reg_channel *reg_chan,
fb45065e
MD
2596 struct ust_app_channel *ua_chan,
2597 struct ust_app *app)
7972aab2
DG
2598{
2599 int ret = 0;
2600 struct ust_app_stream *stream, *stmp;
2601
2602 assert(reg_chan);
2603 assert(ua_chan);
2604
2605 DBG2("UST app setup buffer registry stream");
2606
2607 /* Send all streams to application. */
2608 cds_list_for_each_entry_safe(stream, stmp, &ua_chan->streams.head, list) {
2609 struct buffer_reg_stream *reg_stream;
2610
2611 ret = buffer_reg_stream_create(&reg_stream);
2612 if (ret < 0) {
2613 goto error;
2614 }
2615
2616 /*
2617 * Keep original pointer and nullify it in the stream so the delete
2618 * stream call does not release the object.
2619 */
2620 reg_stream->obj.ust = stream->obj;
2621 stream->obj = NULL;
2622 buffer_reg_stream_add(reg_stream, reg_chan);
421cb601 2623
7972aab2
DG
2624 /* We don't need the streams anymore. */
2625 cds_list_del(&stream->list);
fb45065e 2626 delete_ust_app_stream(-1, stream, app);
7972aab2 2627 }
421cb601 2628
7972aab2
DG
2629error:
2630 return ret;
2631}
2632
2633/*
2634 * Create a buffer registry channel for the given session registry and
2635 * application channel object. If regp pointer is valid, it's set with the
2636 * created object. Important, the created object is NOT added to the session
2637 * registry hash table.
2638 *
2639 * Return 0 on success else a negative value.
2640 */
2641static int create_buffer_reg_channel(struct buffer_reg_session *reg_sess,
2642 struct ust_app_channel *ua_chan, struct buffer_reg_channel **regp)
2643{
2644 int ret;
2645 struct buffer_reg_channel *reg_chan = NULL;
2646
2647 assert(reg_sess);
2648 assert(ua_chan);
2649
2650 DBG2("UST app creating buffer registry channel for %s", ua_chan->name);
2651
2652 /* Create buffer registry channel. */
2653 ret = buffer_reg_channel_create(ua_chan->tracing_channel_id, &reg_chan);
2654 if (ret < 0) {
2655 goto error_create;
421cb601 2656 }
7972aab2
DG
2657 assert(reg_chan);
2658 reg_chan->consumer_key = ua_chan->key;
8c924c7b 2659 reg_chan->subbuf_size = ua_chan->attr.subbuf_size;
d07ceecd 2660 reg_chan->num_subbuf = ua_chan->attr.num_subbuf;
421cb601 2661
7972aab2
DG
2662 /* Create and add a channel registry to session. */
2663 ret = ust_registry_channel_add(reg_sess->reg.ust,
2664 ua_chan->tracing_channel_id);
2665 if (ret < 0) {
2666 goto error;
d88aee68 2667 }
7972aab2 2668 buffer_reg_channel_add(reg_sess, reg_chan);
d88aee68 2669
7972aab2
DG
2670 if (regp) {
2671 *regp = reg_chan;
3d8ca23b 2672 }
d88aee68 2673
7972aab2 2674 return 0;
3d8ca23b
DG
2675
2676error:
7972aab2
DG
2677 /* Safe because the registry channel object was not added to any HT. */
2678 buffer_reg_channel_destroy(reg_chan, LTTNG_DOMAIN_UST);
2679error_create:
3d8ca23b 2680 return ret;
421cb601
DG
2681}
2682
55cc08a6 2683/*
7972aab2
DG
2684 * Setup buffer registry channel for the given session registry and application
2685 * channel object. If regp pointer is valid, it's set with the created object.
d0b96690 2686 *
7972aab2 2687 * Return 0 on success else a negative value.
55cc08a6 2688 */
7972aab2 2689static int setup_buffer_reg_channel(struct buffer_reg_session *reg_sess,
fb45065e
MD
2690 struct ust_app_channel *ua_chan, struct buffer_reg_channel *reg_chan,
2691 struct ust_app *app)
55cc08a6 2692{
7972aab2 2693 int ret;
55cc08a6 2694
7972aab2
DG
2695 assert(reg_sess);
2696 assert(reg_chan);
2697 assert(ua_chan);
2698 assert(ua_chan->obj);
55cc08a6 2699
7972aab2 2700 DBG2("UST app setup buffer registry channel for %s", ua_chan->name);
55cc08a6 2701
7972aab2 2702 /* Setup all streams for the registry. */
fb45065e 2703 ret = setup_buffer_reg_streams(reg_chan, ua_chan, app);
7972aab2 2704 if (ret < 0) {
55cc08a6
DG
2705 goto error;
2706 }
2707
7972aab2
DG
2708 reg_chan->obj.ust = ua_chan->obj;
2709 ua_chan->obj = NULL;
55cc08a6 2710
7972aab2 2711 return 0;
55cc08a6
DG
2712
2713error:
7972aab2
DG
2714 buffer_reg_channel_remove(reg_sess, reg_chan);
2715 buffer_reg_channel_destroy(reg_chan, LTTNG_DOMAIN_UST);
55cc08a6
DG
2716 return ret;
2717}
2718
edb67388 2719/*
7972aab2 2720 * Send buffer registry channel to the application.
d0b96690 2721 *
7972aab2 2722 * Return 0 on success else a negative value.
edb67388 2723 */
7972aab2
DG
2724static int send_channel_uid_to_ust(struct buffer_reg_channel *reg_chan,
2725 struct ust_app *app, struct ust_app_session *ua_sess,
2726 struct ust_app_channel *ua_chan)
edb67388
DG
2727{
2728 int ret;
7972aab2 2729 struct buffer_reg_stream *reg_stream;
edb67388 2730
7972aab2
DG
2731 assert(reg_chan);
2732 assert(app);
2733 assert(ua_sess);
2734 assert(ua_chan);
2735
2736 DBG("UST app sending buffer registry channel to ust sock %d", app->sock);
2737
2738 ret = duplicate_channel_object(reg_chan, ua_chan);
edb67388
DG
2739 if (ret < 0) {
2740 goto error;
2741 }
2742
7972aab2
DG
2743 /* Send channel to the application. */
2744 ret = ust_consumer_send_channel_to_ust(app, ua_sess, ua_chan);
a7169585
MD
2745 if (ret == -EPIPE || ret == -LTTNG_UST_ERR_EXITING) {
2746 ret = -ENOTCONN; /* Caused by app exiting. */
2747 goto error;
2748 } else if (ret < 0) {
7972aab2
DG
2749 goto error;
2750 }
2751
2752 health_code_update();
2753
2754 /* Send all streams to application. */
2755 pthread_mutex_lock(&reg_chan->stream_list_lock);
2756 cds_list_for_each_entry(reg_stream, &reg_chan->streams, lnode) {
2757 struct ust_app_stream stream;
2758
2759 ret = duplicate_stream_object(reg_stream, &stream);
2760 if (ret < 0) {
2761 goto error_stream_unlock;
2762 }
2763
2764 ret = ust_consumer_send_stream_to_ust(app, ua_chan, &stream);
2765 if (ret < 0) {
fb45065e 2766 (void) release_ust_app_stream(-1, &stream, app);
a7169585
MD
2767 if (ret == -EPIPE || ret == -LTTNG_UST_ERR_EXITING) {
2768 ret = -ENOTCONN; /* Caused by app exiting. */
a7169585 2769 }
7972aab2
DG
2770 goto error_stream_unlock;
2771 }
edb67388 2772
7972aab2
DG
2773 /*
2774 * The return value is not important here. This function will output an
2775 * error if needed.
2776 */
fb45065e 2777 (void) release_ust_app_stream(-1, &stream, app);
7972aab2
DG
2778 }
2779 ua_chan->is_sent = 1;
2780
2781error_stream_unlock:
2782 pthread_mutex_unlock(&reg_chan->stream_list_lock);
edb67388
DG
2783error:
2784 return ret;
2785}
2786
9730260e 2787/*
7972aab2
DG
2788 * Create and send to the application the created buffers with per UID buffers.
2789 *
9acdc1d6 2790 * This MUST be called with a RCU read side lock acquired.
71e0a100 2791 * The session list lock and the session's lock must be acquired.
9acdc1d6 2792 *
7972aab2 2793 * Return 0 on success else a negative value.
9730260e 2794 */
7972aab2
DG
2795static int create_channel_per_uid(struct ust_app *app,
2796 struct ltt_ust_session *usess, struct ust_app_session *ua_sess,
2797 struct ust_app_channel *ua_chan)
9730260e
DG
2798{
2799 int ret;
7972aab2
DG
2800 struct buffer_reg_uid *reg_uid;
2801 struct buffer_reg_channel *reg_chan;
e32d7f27 2802 struct ltt_session *session = NULL;
e098433c
JG
2803 enum lttng_error_code notification_ret;
2804 struct ust_registry_channel *chan_reg;
9730260e 2805
7972aab2
DG
2806 assert(app);
2807 assert(usess);
2808 assert(ua_sess);
2809 assert(ua_chan);
2810
2811 DBG("UST app creating channel %s with per UID buffers", ua_chan->name);
2812
2813 reg_uid = buffer_reg_uid_find(usess->id, app->bits_per_long, app->uid);
2814 /*
2815 * The session creation handles the creation of this global registry
2816 * object. If none can be find, there is a code flow problem or a
2817 * teardown race.
2818 */
2819 assert(reg_uid);
2820
2821 reg_chan = buffer_reg_channel_find(ua_chan->tracing_channel_id,
2822 reg_uid);
2721f7ea
JG
2823 if (reg_chan) {
2824 goto send_channel;
2825 }
7972aab2 2826
2721f7ea
JG
2827 /* Create the buffer registry channel object. */
2828 ret = create_buffer_reg_channel(reg_uid->registry, ua_chan, &reg_chan);
2829 if (ret < 0) {
2830 ERR("Error creating the UST channel \"%s\" registry instance",
f14256d6 2831 ua_chan->name);
2721f7ea
JG
2832 goto error;
2833 }
f14256d6 2834
e098433c
JG
2835 session = session_find_by_id(ua_sess->tracing_id);
2836 assert(session);
2837 assert(pthread_mutex_trylock(&session->lock));
2838 assert(session_trylock_list());
2839
2721f7ea
JG
2840 /*
2841 * Create the buffers on the consumer side. This call populates the
2842 * ust app channel object with all streams and data object.
2843 */
2844 ret = do_consumer_create_channel(usess, ua_sess, ua_chan,
e098433c
JG
2845 app->bits_per_long, reg_uid->registry->reg.ust,
2846 session->current_archive_id);
2721f7ea
JG
2847 if (ret < 0) {
2848 ERR("Error creating UST channel \"%s\" on the consumer daemon",
2849 ua_chan->name);
7972aab2
DG
2850
2851 /*
2721f7ea
JG
2852 * Let's remove the previously created buffer registry channel so
2853 * it's not visible anymore in the session registry.
7972aab2 2854 */
2721f7ea
JG
2855 ust_registry_channel_del_free(reg_uid->registry->reg.ust,
2856 ua_chan->tracing_channel_id, false);
2857 buffer_reg_channel_remove(reg_uid->registry, reg_chan);
2858 buffer_reg_channel_destroy(reg_chan, LTTNG_DOMAIN_UST);
2859 goto error;
7972aab2
DG
2860 }
2861
2721f7ea
JG
2862 /*
2863 * Setup the streams and add it to the session registry.
2864 */
2865 ret = setup_buffer_reg_channel(reg_uid->registry,
2866 ua_chan, reg_chan, app);
2867 if (ret < 0) {
2868 ERR("Error setting up UST channel \"%s\"", ua_chan->name);
2869 goto error;
2870 }
2871
e098433c
JG
2872 /* Notify the notification subsystem of the channel's creation. */
2873 pthread_mutex_lock(&reg_uid->registry->reg.ust->lock);
2874 chan_reg = ust_registry_channel_find(reg_uid->registry->reg.ust,
2875 ua_chan->tracing_channel_id);
2876 assert(chan_reg);
2877 chan_reg->consumer_key = ua_chan->key;
2878 chan_reg = NULL;
2879 pthread_mutex_unlock(&reg_uid->registry->reg.ust->lock);
e9404c27 2880
e098433c
JG
2881 notification_ret = notification_thread_command_add_channel(
2882 notification_thread_handle, session->name,
2883 ua_sess->euid, ua_sess->egid,
2884 ua_chan->name,
2885 ua_chan->key,
2886 LTTNG_DOMAIN_UST,
2887 ua_chan->attr.subbuf_size * ua_chan->attr.num_subbuf);
2888 if (notification_ret != LTTNG_OK) {
2889 ret = - (int) notification_ret;
2890 ERR("Failed to add channel to notification thread");
2891 goto error;
e9404c27
JG
2892 }
2893
2721f7ea 2894send_channel:
66ff8e3f
JG
2895 /* Send buffers to the application. */
2896 ret = send_channel_uid_to_ust(reg_chan, app, ua_sess, ua_chan);
2897 if (ret < 0) {
2898 if (ret != -ENOTCONN) {
2899 ERR("Error sending channel to application");
2900 }
2901 goto error;
2902 }
2903
9730260e 2904error:
e32d7f27
JG
2905 if (session) {
2906 session_put(session);
2907 }
9730260e
DG
2908 return ret;
2909}
2910
78f0bacd 2911/*
7972aab2
DG
2912 * Create and send to the application the created buffers with per PID buffers.
2913 *
fad1ed2f 2914 * Called with UST app session lock held.
71e0a100 2915 * The session list lock and the session's lock must be acquired.
fad1ed2f 2916 *
7972aab2 2917 * Return 0 on success else a negative value.
78f0bacd 2918 */
7972aab2
DG
2919static int create_channel_per_pid(struct ust_app *app,
2920 struct ltt_ust_session *usess, struct ust_app_session *ua_sess,
2921 struct ust_app_channel *ua_chan)
78f0bacd 2922{
8535a6d9 2923 int ret;
7972aab2 2924 struct ust_registry_session *registry;
e9404c27 2925 enum lttng_error_code cmd_ret;
e32d7f27 2926 struct ltt_session *session = NULL;
e9404c27
JG
2927 uint64_t chan_reg_key;
2928 struct ust_registry_channel *chan_reg;
78f0bacd 2929
7972aab2
DG
2930 assert(app);
2931 assert(usess);
2932 assert(ua_sess);
2933 assert(ua_chan);
2934
2935 DBG("UST app creating channel %s with per PID buffers", ua_chan->name);
2936
2937 rcu_read_lock();
2938
2939 registry = get_session_registry(ua_sess);
fad1ed2f 2940 /* The UST app session lock is held, registry shall not be null. */
7972aab2
DG
2941 assert(registry);
2942
2943 /* Create and add a new channel registry to session. */
2944 ret = ust_registry_channel_add(registry, ua_chan->key);
78f0bacd 2945 if (ret < 0) {
f14256d6
MD
2946 ERR("Error creating the UST channel \"%s\" registry instance",
2947 ua_chan->name);
78f0bacd
DG
2948 goto error;
2949 }
2950
e098433c
JG
2951 session = session_find_by_id(ua_sess->tracing_id);
2952 assert(session);
2953
2954 assert(pthread_mutex_trylock(&session->lock));
2955 assert(session_trylock_list());
2956
7972aab2
DG
2957 /* Create and get channel on the consumer side. */
2958 ret = do_consumer_create_channel(usess, ua_sess, ua_chan,
e098433c
JG
2959 app->bits_per_long, registry,
2960 session->current_archive_id);
7972aab2 2961 if (ret < 0) {
f14256d6
MD
2962 ERR("Error creating UST channel \"%s\" on the consumer daemon",
2963 ua_chan->name);
5b951542 2964 goto error_remove_from_registry;
7972aab2
DG
2965 }
2966
2967 ret = send_channel_pid_to_ust(app, ua_sess, ua_chan);
2968 if (ret < 0) {
a7169585
MD
2969 if (ret != -ENOTCONN) {
2970 ERR("Error sending channel to application");
2971 }
5b951542 2972 goto error_remove_from_registry;
7972aab2 2973 }
8535a6d9 2974
e9404c27
JG
2975 chan_reg_key = ua_chan->key;
2976 pthread_mutex_lock(&registry->lock);
2977 chan_reg = ust_registry_channel_find(registry, chan_reg_key);
2978 assert(chan_reg);
2979 chan_reg->consumer_key = ua_chan->key;
2980 pthread_mutex_unlock(&registry->lock);
2981
2982 cmd_ret = notification_thread_command_add_channel(
2983 notification_thread_handle, session->name,
2984 ua_sess->euid, ua_sess->egid,
2985 ua_chan->name,
2986 ua_chan->key,
2987 LTTNG_DOMAIN_UST,
2988 ua_chan->attr.subbuf_size * ua_chan->attr.num_subbuf);
2989 if (cmd_ret != LTTNG_OK) {
2990 ret = - (int) cmd_ret;
2991 ERR("Failed to add channel to notification thread");
5b951542 2992 goto error_remove_from_registry;
e9404c27
JG
2993 }
2994
5b951542
MD
2995error_remove_from_registry:
2996 if (ret) {
2997 ust_registry_channel_del_free(registry, ua_chan->key, false);
2998 }
78f0bacd 2999error:
7972aab2 3000 rcu_read_unlock();
e32d7f27
JG
3001 if (session) {
3002 session_put(session);
3003 }
78f0bacd
DG
3004 return ret;
3005}
3006
3007/*
7972aab2 3008 * From an already allocated ust app channel, create the channel buffers if
88e3c2f5 3009 * needed and send them to the application. This MUST be called with a RCU read
7972aab2
DG
3010 * side lock acquired.
3011 *
fad1ed2f
JR
3012 * Called with UST app session lock held.
3013 *
a7169585
MD
3014 * Return 0 on success or else a negative value. Returns -ENOTCONN if
3015 * the application exited concurrently.
78f0bacd 3016 */
88e3c2f5 3017static int ust_app_channel_send(struct ust_app *app,
7972aab2
DG
3018 struct ltt_ust_session *usess, struct ust_app_session *ua_sess,
3019 struct ust_app_channel *ua_chan)
78f0bacd 3020{
7972aab2 3021 int ret;
78f0bacd 3022
7972aab2
DG
3023 assert(app);
3024 assert(usess);
88e3c2f5 3025 assert(usess->active);
7972aab2
DG
3026 assert(ua_sess);
3027 assert(ua_chan);
3028
3029 /* Handle buffer type before sending the channel to the application. */
3030 switch (usess->buffer_type) {
3031 case LTTNG_BUFFER_PER_UID:
3032 {
3033 ret = create_channel_per_uid(app, usess, ua_sess, ua_chan);
3034 if (ret < 0) {
3035 goto error;
3036 }
3037 break;
3038 }
3039 case LTTNG_BUFFER_PER_PID:
3040 {
3041 ret = create_channel_per_pid(app, usess, ua_sess, ua_chan);
3042 if (ret < 0) {
3043 goto error;
3044 }
3045 break;
3046 }
3047 default:
3048 assert(0);
3049 ret = -EINVAL;
78f0bacd
DG
3050 goto error;
3051 }
3052
7972aab2
DG
3053 /* Initialize ust objd object using the received handle and add it. */
3054 lttng_ht_node_init_ulong(&ua_chan->ust_objd_node, ua_chan->handle);
3055 lttng_ht_add_unique_ulong(app->ust_objd, &ua_chan->ust_objd_node);
78f0bacd 3056
7972aab2
DG
3057 /* If channel is not enabled, disable it on the tracer */
3058 if (!ua_chan->enabled) {
3059 ret = disable_ust_channel(app, ua_sess, ua_chan);
3060 if (ret < 0) {
3061 goto error;
3062 }
78f0bacd
DG
3063 }
3064
3065error:
3066 return ret;
3067}
3068
284d8f55 3069/*
88e3c2f5 3070 * Create UST app channel and return it through ua_chanp if not NULL.
d0b96690 3071 *
36b588ed 3072 * Called with UST app session lock and RCU read-side lock held.
7972aab2 3073 *
88e3c2f5 3074 * Return 0 on success or else a negative value.
284d8f55 3075 */
88e3c2f5
JG
3076static int ust_app_channel_allocate(struct ust_app_session *ua_sess,
3077 struct ltt_ust_channel *uchan,
7972aab2 3078 enum lttng_ust_chan_type type, struct ltt_ust_session *usess,
4d710ac2 3079 struct ust_app_channel **ua_chanp)
5b4a0ec0
DG
3080{
3081 int ret = 0;
bec39940
DG
3082 struct lttng_ht_iter iter;
3083 struct lttng_ht_node_str *ua_chan_node;
5b4a0ec0
DG
3084 struct ust_app_channel *ua_chan;
3085
3086 /* Lookup channel in the ust app session */
bec39940
DG
3087 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &iter);
3088 ua_chan_node = lttng_ht_iter_get_node_str(&iter);
fc34caaa 3089 if (ua_chan_node != NULL) {
5b4a0ec0 3090 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node);
fc34caaa 3091 goto end;
5b4a0ec0
DG
3092 }
3093
d0b96690 3094 ua_chan = alloc_ust_app_channel(uchan->name, ua_sess, &uchan->attr);
fc34caaa
DG
3095 if (ua_chan == NULL) {
3096 /* Only malloc can fail here */
4d710ac2 3097 ret = -ENOMEM;
88e3c2f5 3098 goto error;
fc34caaa
DG
3099 }
3100 shadow_copy_channel(ua_chan, uchan);
3101
ffe60014
DG
3102 /* Set channel type. */
3103 ua_chan->attr.type = type;
3104
d0b96690
DG
3105 /* Only add the channel if successful on the tracer side. */
3106 lttng_ht_add_unique_str(ua_sess->channels, &ua_chan->node);
fc34caaa 3107end:
4d710ac2
DG
3108 if (ua_chanp) {
3109 *ua_chanp = ua_chan;
3110 }
3111
3112 /* Everything went well. */
3113 return 0;
5b4a0ec0
DG
3114
3115error:
4d710ac2 3116 return ret;
5b4a0ec0
DG
3117}
3118
3119/*
3120 * Create UST app event and create it on the tracer side.
d0b96690
DG
3121 *
3122 * Called with ust app session mutex held.
5b4a0ec0 3123 */
edb67388
DG
3124static
3125int create_ust_app_event(struct ust_app_session *ua_sess,
3126 struct ust_app_channel *ua_chan, struct ltt_ust_event *uevent,
3127 struct ust_app *app)
284d8f55 3128{
edb67388 3129 int ret = 0;
5b4a0ec0 3130 struct ust_app_event *ua_event;
284d8f55 3131
edb67388
DG
3132 ua_event = alloc_ust_app_event(uevent->attr.name, &uevent->attr);
3133 if (ua_event == NULL) {
3134 /* Only malloc can failed so something is really wrong */
3135 ret = -ENOMEM;
fc34caaa 3136 goto end;
5b4a0ec0 3137 }
edb67388 3138 shadow_copy_event(ua_event, uevent);
5b4a0ec0 3139
edb67388 3140 /* Create it on the tracer side */
5b4a0ec0 3141 ret = create_ust_event(app, ua_sess, ua_chan, ua_event);
284d8f55 3142 if (ret < 0) {
fc34caaa 3143 /* Not found previously means that it does not exist on the tracer */
76f66f63 3144 assert(ret != -LTTNG_UST_ERR_EXIST);
284d8f55
DG
3145 goto error;
3146 }
3147
d0b96690 3148 add_unique_ust_app_event(ua_chan, ua_event);
284d8f55 3149
fc34caaa 3150 DBG2("UST app create event %s for PID %d completed", ua_event->name,
852d0037 3151 app->pid);
7f79d3a1 3152
edb67388 3153end:
fc34caaa
DG
3154 return ret;
3155
5b4a0ec0 3156error:
fc34caaa 3157 /* Valid. Calling here is already in a read side lock */
fb45065e 3158 delete_ust_app_event(-1, ua_event, app);
edb67388 3159 return ret;
5b4a0ec0
DG
3160}
3161
3162/*
3163 * Create UST metadata and open it on the tracer side.
d0b96690 3164 *
7972aab2 3165 * Called with UST app session lock held and RCU read side lock.
5b4a0ec0
DG
3166 */
3167static int create_ust_app_metadata(struct ust_app_session *ua_sess,
ad7a9107 3168 struct ust_app *app, struct consumer_output *consumer)
5b4a0ec0
DG
3169{
3170 int ret = 0;
ffe60014 3171 struct ust_app_channel *metadata;
d88aee68 3172 struct consumer_socket *socket;
7972aab2 3173 struct ust_registry_session *registry;
e32d7f27 3174 struct ltt_session *session = NULL;
5b4a0ec0 3175
ffe60014
DG
3176 assert(ua_sess);
3177 assert(app);
d88aee68 3178 assert(consumer);
5b4a0ec0 3179
7972aab2 3180 registry = get_session_registry(ua_sess);
fad1ed2f 3181 /* The UST app session is held registry shall not be null. */
7972aab2
DG
3182 assert(registry);
3183
ce34fcd0
MD
3184 pthread_mutex_lock(&registry->lock);
3185
1b532a60
DG
3186 /* Metadata already exists for this registry or it was closed previously */
3187 if (registry->metadata_key || registry->metadata_closed) {
7972aab2
DG
3188 ret = 0;
3189 goto error;
5b4a0ec0
DG
3190 }
3191
ffe60014 3192 /* Allocate UST metadata */
d0b96690 3193 metadata = alloc_ust_app_channel(DEFAULT_METADATA_NAME, ua_sess, NULL);
ffe60014
DG
3194 if (!metadata) {
3195 /* malloc() failed */
3196 ret = -ENOMEM;
3197 goto error;
3198 }
5b4a0ec0 3199
ad7a9107 3200 memcpy(&metadata->attr, &ua_sess->metadata_attr, sizeof(metadata->attr));
5b4a0ec0 3201
7972aab2
DG
3202 /* Need one fd for the channel. */
3203 ret = lttng_fd_get(LTTNG_FD_APPS, 1);
3204 if (ret < 0) {
3205 ERR("Exhausted number of available FD upon create metadata");
3206 goto error;
3207 }
3208
4dc3dfc5
DG
3209 /* Get the right consumer socket for the application. */
3210 socket = consumer_find_socket_by_bitness(app->bits_per_long, consumer);
3211 if (!socket) {
3212 ret = -EINVAL;
3213 goto error_consumer;
3214 }
3215
331744e3
JD
3216 /*
3217 * Keep metadata key so we can identify it on the consumer side. Assign it
3218 * to the registry *before* we ask the consumer so we avoid the race of the
3219 * consumer requesting the metadata and the ask_channel call on our side
3220 * did not returned yet.
3221 */
3222 registry->metadata_key = metadata->key;
3223
e098433c
JG
3224 session = session_find_by_id(ua_sess->tracing_id);
3225 assert(session);
3226
3227 assert(pthread_mutex_trylock(&session->lock));
3228 assert(session_trylock_list());
3229
d88aee68
DG
3230 /*
3231 * Ask the metadata channel creation to the consumer. The metadata object
3232 * will be created by the consumer and kept their. However, the stream is
3233 * never added or monitored until we do a first push metadata to the
3234 * consumer.
3235 */
7972aab2 3236 ret = ust_consumer_ask_channel(ua_sess, metadata, consumer, socket,
e098433c 3237 registry, session->current_archive_id);
d88aee68 3238 if (ret < 0) {
f2a444f1
DG
3239 /* Nullify the metadata key so we don't try to close it later on. */
3240 registry->metadata_key = 0;
d88aee68
DG
3241 goto error_consumer;
3242 }
3243
3244 /*
3245 * The setup command will make the metadata stream be sent to the relayd,
3246 * if applicable, and the thread managing the metadatas. This is important
3247 * because after this point, if an error occurs, the only way the stream
3248 * can be deleted is to be monitored in the consumer.
3249 */
7972aab2 3250 ret = consumer_setup_metadata(socket, metadata->key);
ffe60014 3251 if (ret < 0) {
f2a444f1
DG
3252 /* Nullify the metadata key so we don't try to close it later on. */
3253 registry->metadata_key = 0;
d88aee68 3254 goto error_consumer;
5b4a0ec0
DG
3255 }
3256
7972aab2
DG
3257 DBG2("UST metadata with key %" PRIu64 " created for app pid %d",
3258 metadata->key, app->pid);
5b4a0ec0 3259
d88aee68 3260error_consumer:
b80f0b6c 3261 lttng_fd_put(LTTNG_FD_APPS, 1);
d88aee68 3262 delete_ust_app_channel(-1, metadata, app);
5b4a0ec0 3263error:
ce34fcd0 3264 pthread_mutex_unlock(&registry->lock);
e32d7f27
JG
3265 if (session) {
3266 session_put(session);
3267 }
ffe60014 3268 return ret;
5b4a0ec0
DG
3269}
3270
5b4a0ec0 3271/*
d88aee68
DG
3272 * Return ust app pointer or NULL if not found. RCU read side lock MUST be
3273 * acquired before calling this function.
5b4a0ec0
DG
3274 */
3275struct ust_app *ust_app_find_by_pid(pid_t pid)
3276{
d88aee68 3277 struct ust_app *app = NULL;
bec39940
DG
3278 struct lttng_ht_node_ulong *node;
3279 struct lttng_ht_iter iter;
5b4a0ec0 3280
bec39940
DG
3281 lttng_ht_lookup(ust_app_ht, (void *)((unsigned long) pid), &iter);
3282 node = lttng_ht_iter_get_node_ulong(&iter);
5b4a0ec0
DG
3283 if (node == NULL) {
3284 DBG2("UST app no found with pid %d", pid);
3285 goto error;
3286 }
5b4a0ec0
DG
3287
3288 DBG2("Found UST app by pid %d", pid);
3289
d88aee68 3290 app = caa_container_of(node, struct ust_app, pid_n);
5b4a0ec0
DG
3291
3292error:
d88aee68 3293 return app;
5b4a0ec0
DG
3294}
3295
d88aee68
DG
3296/*
3297 * Allocate and init an UST app object using the registration information and
3298 * the command socket. This is called when the command socket connects to the
3299 * session daemon.
3300 *
3301 * The object is returned on success or else NULL.
3302 */
d0b96690 3303struct ust_app *ust_app_create(struct ust_register_msg *msg, int sock)
5b4a0ec0 3304{
d0b96690
DG
3305 struct ust_app *lta = NULL;
3306
3307 assert(msg);
3308 assert(sock >= 0);
3309
3310 DBG3("UST app creating application for socket %d", sock);
5b4a0ec0 3311
173af62f
DG
3312 if ((msg->bits_per_long == 64 &&
3313 (uatomic_read(&ust_consumerd64_fd) == -EINVAL))
3314 || (msg->bits_per_long == 32 &&
3315 (uatomic_read(&ust_consumerd32_fd) == -EINVAL))) {
f943b0fb 3316 ERR("Registration failed: application \"%s\" (pid: %d) has "
d0b96690
DG
3317 "%d-bit long, but no consumerd for this size is available.\n",
3318 msg->name, msg->pid, msg->bits_per_long);
3319 goto error;
3f2c5fcc 3320 }
d0b96690 3321
5b4a0ec0
DG
3322 lta = zmalloc(sizeof(struct ust_app));
3323 if (lta == NULL) {
3324 PERROR("malloc");
d0b96690 3325 goto error;
5b4a0ec0
DG
3326 }
3327
3328 lta->ppid = msg->ppid;
3329 lta->uid = msg->uid;
3330 lta->gid = msg->gid;
d0b96690 3331
7753dea8 3332 lta->bits_per_long = msg->bits_per_long;
d0b96690
DG
3333 lta->uint8_t_alignment = msg->uint8_t_alignment;
3334 lta->uint16_t_alignment = msg->uint16_t_alignment;
3335 lta->uint32_t_alignment = msg->uint32_t_alignment;
3336 lta->uint64_t_alignment = msg->uint64_t_alignment;
3337 lta->long_alignment = msg->long_alignment;
3338 lta->byte_order = msg->byte_order;
3339
5b4a0ec0
DG
3340 lta->v_major = msg->major;
3341 lta->v_minor = msg->minor;
d9bf3ca4 3342 lta->sessions = lttng_ht_new(0, LTTNG_HT_TYPE_U64);
d0b96690 3343 lta->ust_objd = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
10b56aef 3344 lta->ust_sessions_objd = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
d0b96690 3345 lta->notify_sock = -1;
d88aee68
DG
3346
3347 /* Copy name and make sure it's NULL terminated. */
3348 strncpy(lta->name, msg->name, sizeof(lta->name));
3349 lta->name[UST_APP_PROCNAME_LEN] = '\0';
3350
3351 /*
3352 * Before this can be called, when receiving the registration information,
3353 * the application compatibility is checked. So, at this point, the
3354 * application can work with this session daemon.
3355 */
d0b96690 3356 lta->compatible = 1;
5b4a0ec0 3357
852d0037 3358 lta->pid = msg->pid;
d0b96690 3359 lttng_ht_node_init_ulong(&lta->pid_n, (unsigned long) lta->pid);
852d0037 3360 lta->sock = sock;
fb45065e 3361 pthread_mutex_init(&lta->sock_lock, NULL);
d0b96690 3362 lttng_ht_node_init_ulong(&lta->sock_n, (unsigned long) lta->sock);
5b4a0ec0 3363
d42f20df 3364 CDS_INIT_LIST_HEAD(&lta->teardown_head);
d0b96690
DG
3365error:
3366 return lta;
3367}
3368
d88aee68
DG
3369/*
3370 * For a given application object, add it to every hash table.
3371 */
d0b96690
DG
3372void ust_app_add(struct ust_app *app)
3373{
3374 assert(app);
3375 assert(app->notify_sock >= 0);
3376
d7912dd1
JR
3377 app->registration_time = time(NULL);
3378
5b4a0ec0 3379 rcu_read_lock();
852d0037
DG
3380
3381 /*
3382 * On a re-registration, we want to kick out the previous registration of
3383 * that pid
3384 */
d0b96690 3385 lttng_ht_add_replace_ulong(ust_app_ht, &app->pid_n);
852d0037
DG
3386
3387 /*
3388 * The socket _should_ be unique until _we_ call close. So, a add_unique
3389 * for the ust_app_ht_by_sock is used which asserts fail if the entry was
3390 * already in the table.
3391 */
d0b96690 3392 lttng_ht_add_unique_ulong(ust_app_ht_by_sock, &app->sock_n);
852d0037 3393
d0b96690
DG
3394 /* Add application to the notify socket hash table. */
3395 lttng_ht_node_init_ulong(&app->notify_sock_n, app->notify_sock);
3396 lttng_ht_add_unique_ulong(ust_app_ht_by_notify_sock, &app->notify_sock_n);
5b4a0ec0 3397
d0b96690 3398 DBG("App registered with pid:%d ppid:%d uid:%d gid:%d sock:%d name:%s "
d88aee68
DG
3399 "notify_sock:%d (version %d.%d)", app->pid, app->ppid, app->uid,
3400 app->gid, app->sock, app->name, app->notify_sock, app->v_major,
3401 app->v_minor);
5b4a0ec0 3402
d0b96690
DG
3403 rcu_read_unlock();
3404}
3405
d88aee68
DG
3406/*
3407 * Set the application version into the object.
3408 *
3409 * Return 0 on success else a negative value either an errno code or a
3410 * LTTng-UST error code.
3411 */
d0b96690
DG
3412int ust_app_version(struct ust_app *app)
3413{
d88aee68
DG
3414 int ret;
3415
d0b96690 3416 assert(app);
d88aee68 3417
fb45065e 3418 pthread_mutex_lock(&app->sock_lock);
d88aee68 3419 ret = ustctl_tracer_version(app->sock, &app->version);
fb45065e 3420 pthread_mutex_unlock(&app->sock_lock);
d88aee68
DG
3421 if (ret < 0) {
3422 if (ret != -LTTNG_UST_ERR_EXITING && ret != -EPIPE) {
5368d366 3423 ERR("UST app %d version failed with ret %d", app->sock, ret);
d88aee68 3424 } else {
5368d366 3425 DBG3("UST app %d version failed. Application is dead", app->sock);
d88aee68
DG
3426 }
3427 }
3428
3429 return ret;
5b4a0ec0
DG
3430}
3431
3432/*
3433 * Unregister app by removing it from the global traceable app list and freeing
3434 * the data struct.
3435 *
3436 * The socket is already closed at this point so no close to sock.
3437 */
3438void ust_app_unregister(int sock)
3439{
3440 struct ust_app *lta;
bec39940 3441 struct lttng_ht_node_ulong *node;
c4b88406 3442 struct lttng_ht_iter ust_app_sock_iter;
bec39940 3443 struct lttng_ht_iter iter;
d42f20df 3444 struct ust_app_session *ua_sess;
525b0740 3445 int ret;
5b4a0ec0
DG
3446
3447 rcu_read_lock();
886459c6 3448
5b4a0ec0 3449 /* Get the node reference for a call_rcu */
c4b88406
MD
3450 lttng_ht_lookup(ust_app_ht_by_sock, (void *)((unsigned long) sock), &ust_app_sock_iter);
3451 node = lttng_ht_iter_get_node_ulong(&ust_app_sock_iter);
d0b96690 3452 assert(node);
284d8f55 3453
852d0037 3454 lta = caa_container_of(node, struct ust_app, sock_n);
852d0037
DG
3455 DBG("PID %d unregistering with sock %d", lta->pid, sock);
3456
d88aee68 3457 /*
ce34fcd0
MD
3458 * For per-PID buffers, perform "push metadata" and flush all
3459 * application streams before removing app from hash tables,
3460 * ensuring proper behavior of data_pending check.
c4b88406 3461 * Remove sessions so they are not visible during deletion.
d88aee68 3462 */
d42f20df
DG
3463 cds_lfht_for_each_entry(lta->sessions->ht, &iter.iter, ua_sess,
3464 node.node) {
7972aab2
DG
3465 struct ust_registry_session *registry;
3466
d42f20df
DG
3467 ret = lttng_ht_del(lta->sessions, &iter);
3468 if (ret) {
3469 /* The session was already removed so scheduled for teardown. */
3470 continue;
3471 }
3472
ce34fcd0
MD
3473 if (ua_sess->buffer_type == LTTNG_BUFFER_PER_PID) {
3474 (void) ust_app_flush_app_session(lta, ua_sess);
3475 }
c4b88406 3476
d42f20df
DG
3477 /*
3478 * Add session to list for teardown. This is safe since at this point we
3479 * are the only one using this list.
3480 */
d88aee68
DG
3481 pthread_mutex_lock(&ua_sess->lock);
3482
b161602a
MD
3483 if (ua_sess->deleted) {
3484 pthread_mutex_unlock(&ua_sess->lock);
3485 continue;
3486 }
3487
d88aee68
DG
3488 /*
3489 * Normally, this is done in the delete session process which is
3490 * executed in the call rcu below. However, upon registration we can't
3491 * afford to wait for the grace period before pushing data or else the
3492 * data pending feature can race between the unregistration and stop
3493 * command where the data pending command is sent *before* the grace
3494 * period ended.
3495 *
3496 * The close metadata below nullifies the metadata pointer in the
3497 * session so the delete session will NOT push/close a second time.
3498 */
7972aab2 3499 registry = get_session_registry(ua_sess);
ce34fcd0 3500 if (registry) {
7972aab2
DG
3501 /* Push metadata for application before freeing the application. */
3502 (void) push_metadata(registry, ua_sess->consumer);
3503
3504 /*
3505 * Don't ask to close metadata for global per UID buffers. Close
1b532a60
DG
3506 * metadata only on destroy trace session in this case. Also, the
3507 * previous push metadata could have flag the metadata registry to
3508 * close so don't send a close command if closed.
7972aab2 3509 */
ce34fcd0 3510 if (ua_sess->buffer_type != LTTNG_BUFFER_PER_UID) {
7972aab2
DG
3511 /* And ask to close it for this session registry. */
3512 (void) close_metadata(registry, ua_sess->consumer);
3513 }
3514 }
d42f20df 3515 cds_list_add(&ua_sess->teardown_node, &lta->teardown_head);
c4b88406 3516
d88aee68 3517 pthread_mutex_unlock(&ua_sess->lock);
d42f20df
DG
3518 }
3519
c4b88406
MD
3520 /* Remove application from PID hash table */
3521 ret = lttng_ht_del(ust_app_ht_by_sock, &ust_app_sock_iter);
3522 assert(!ret);
3523
3524 /*
3525 * Remove application from notify hash table. The thread handling the
3526 * notify socket could have deleted the node so ignore on error because
c48239ca
JG
3527 * either way it's valid. The close of that socket is handled by the
3528 * apps_notify_thread.
c4b88406
MD
3529 */
3530 iter.iter.node = &lta->notify_sock_n.node;
3531 (void) lttng_ht_del(ust_app_ht_by_notify_sock, &iter);
3532
3533 /*
3534 * Ignore return value since the node might have been removed before by an
3535 * add replace during app registration because the PID can be reassigned by
3536 * the OS.
3537 */
3538 iter.iter.node = &lta->pid_n.node;
3539 ret = lttng_ht_del(ust_app_ht, &iter);
3540 if (ret) {
3541 DBG3("Unregister app by PID %d failed. This can happen on pid reuse",
3542 lta->pid);
3543 }
3544
852d0037
DG
3545 /* Free memory */
3546 call_rcu(&lta->pid_n.head, delete_ust_app_rcu);
3547
5b4a0ec0
DG
3548 rcu_read_unlock();
3549 return;
284d8f55
DG
3550}
3551
5b4a0ec0
DG
3552/*
3553 * Fill events array with all events name of all registered apps.
3554 */
3555int ust_app_list_events(struct lttng_event **events)
421cb601 3556{
5b4a0ec0
DG
3557 int ret, handle;
3558 size_t nbmem, count = 0;
bec39940 3559 struct lttng_ht_iter iter;
5b4a0ec0 3560 struct ust_app *app;
c617c0c6 3561 struct lttng_event *tmp_event;
421cb601 3562
5b4a0ec0 3563 nbmem = UST_APP_EVENT_LIST_SIZE;
c617c0c6
MD
3564 tmp_event = zmalloc(nbmem * sizeof(struct lttng_event));
3565 if (tmp_event == NULL) {
5b4a0ec0
DG
3566 PERROR("zmalloc ust app events");
3567 ret = -ENOMEM;
421cb601
DG
3568 goto error;
3569 }
3570
5b4a0ec0 3571 rcu_read_lock();
421cb601 3572
852d0037 3573 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
90eaa0d2 3574 struct lttng_ust_tracepoint_iter uiter;
ac3bd9c0 3575
840cb59c 3576 health_code_update();
86acf0da 3577
e0c7ec2b
DG
3578 if (!app->compatible) {
3579 /*
3580 * TODO: In time, we should notice the caller of this error by
3581 * telling him that this is a version error.
3582 */
3583 continue;
3584 }
fb45065e 3585 pthread_mutex_lock(&app->sock_lock);
852d0037 3586 handle = ustctl_tracepoint_list(app->sock);
5b4a0ec0 3587 if (handle < 0) {
ffe60014
DG
3588 if (handle != -EPIPE && handle != -LTTNG_UST_ERR_EXITING) {
3589 ERR("UST app list events getting handle failed for app pid %d",
3590 app->pid);
3591 }
fb45065e 3592 pthread_mutex_unlock(&app->sock_lock);
5b4a0ec0
DG
3593 continue;
3594 }
421cb601 3595
852d0037 3596 while ((ret = ustctl_tracepoint_list_get(app->sock, handle,
fb54cdbf 3597 &uiter)) != -LTTNG_UST_ERR_NOENT) {
ffe60014
DG
3598 /* Handle ustctl error. */
3599 if (ret < 0) {
fb45065e
MD
3600 int release_ret;
3601
a2ba1ab0 3602 if (ret != -LTTNG_UST_ERR_EXITING && ret != -EPIPE) {
ffe60014
DG
3603 ERR("UST app tp list get failed for app %d with ret %d",
3604 app->sock, ret);
3605 } else {
3606 DBG3("UST app tp list get failed. Application is dead");
3757b385
DG
3607 /*
3608 * This is normal behavior, an application can die during the
3609 * creation process. Don't report an error so the execution can
3610 * continue normally. Continue normal execution.
3611 */
3612 break;
ffe60014 3613 }
98f595d4 3614 free(tmp_event);
fb45065e 3615 release_ret = ustctl_release_handle(app->sock, handle);
68313703
JG
3616 if (release_ret < 0 &&
3617 release_ret != -LTTNG_UST_ERR_EXITING &&
3618 release_ret != -EPIPE) {
fb45065e
MD
3619 ERR("Error releasing app handle for app %d with ret %d", app->sock, release_ret);
3620 }
3621 pthread_mutex_unlock(&app->sock_lock);
ffe60014
DG
3622 goto rcu_error;
3623 }
3624
840cb59c 3625 health_code_update();
815564d8 3626 if (count >= nbmem) {
d7b3776f 3627 /* In case the realloc fails, we free the memory */
53efb85a
MD
3628 struct lttng_event *new_tmp_event;
3629 size_t new_nbmem;
3630
3631 new_nbmem = nbmem << 1;
3632 DBG2("Reallocating event list from %zu to %zu entries",
3633 nbmem, new_nbmem);
3634 new_tmp_event = realloc(tmp_event,
3635 new_nbmem * sizeof(struct lttng_event));
3636 if (new_tmp_event == NULL) {
fb45065e
MD
3637 int release_ret;
3638
5b4a0ec0 3639 PERROR("realloc ust app events");
c617c0c6 3640 free(tmp_event);
5b4a0ec0 3641 ret = -ENOMEM;
fb45065e 3642 release_ret = ustctl_release_handle(app->sock, handle);
68313703
JG
3643 if (release_ret < 0 &&
3644 release_ret != -LTTNG_UST_ERR_EXITING &&
3645 release_ret != -EPIPE) {
fb45065e
MD
3646 ERR("Error releasing app handle for app %d with ret %d", app->sock, release_ret);
3647 }
3648 pthread_mutex_unlock(&app->sock_lock);
5b4a0ec0
DG
3649 goto rcu_error;
3650 }
53efb85a
MD
3651 /* Zero the new memory */
3652 memset(new_tmp_event + nbmem, 0,
3653 (new_nbmem - nbmem) * sizeof(struct lttng_event));
3654 nbmem = new_nbmem;
3655 tmp_event = new_tmp_event;
5b4a0ec0 3656 }
c617c0c6
MD
3657 memcpy(tmp_event[count].name, uiter.name, LTTNG_UST_SYM_NAME_LEN);
3658 tmp_event[count].loglevel = uiter.loglevel;
3659 tmp_event[count].type = (enum lttng_event_type) LTTNG_UST_TRACEPOINT;
3660 tmp_event[count].pid = app->pid;
3661 tmp_event[count].enabled = -1;
5b4a0ec0 3662 count++;
421cb601 3663 }
fb45065e
MD
3664 ret = ustctl_release_handle(app->sock, handle);
3665 pthread_mutex_unlock(&app->sock_lock);
68313703 3666 if (ret < 0 && ret != -LTTNG_UST_ERR_EXITING && ret != -EPIPE) {
fb45065e
MD
3667 ERR("Error releasing app handle for app %d with ret %d", app->sock, ret);
3668 }
421cb601
DG
3669 }
3670
5b4a0ec0 3671 ret = count;
c617c0c6 3672 *events = tmp_event;
421cb601 3673
5b4a0ec0 3674 DBG2("UST app list events done (%zu events)", count);
421cb601 3675
5b4a0ec0
DG
3676rcu_error:
3677 rcu_read_unlock();
421cb601 3678error:
840cb59c 3679 health_code_update();
5b4a0ec0 3680 return ret;
421cb601
DG
3681}
3682
f37d259d
MD
3683/*
3684 * Fill events array with all events name of all registered apps.
3685 */
3686int ust_app_list_event_fields(struct lttng_event_field **fields)
3687{
3688 int ret, handle;
3689 size_t nbmem, count = 0;
3690 struct lttng_ht_iter iter;
3691 struct ust_app *app;
c617c0c6 3692 struct lttng_event_field *tmp_event;
f37d259d
MD
3693
3694 nbmem = UST_APP_EVENT_LIST_SIZE;
c617c0c6
MD
3695 tmp_event = zmalloc(nbmem * sizeof(struct lttng_event_field));
3696 if (tmp_event == NULL) {
f37d259d
MD
3697 PERROR("zmalloc ust app event fields");
3698 ret = -ENOMEM;
3699 goto error;
3700 }
3701
3702 rcu_read_lock();
3703
3704 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
3705 struct lttng_ust_field_iter uiter;
3706
840cb59c 3707 health_code_update();
86acf0da 3708
f37d259d
MD
3709 if (!app->compatible) {
3710 /*
3711 * TODO: In time, we should notice the caller of this error by
3712 * telling him that this is a version error.
3713 */
3714 continue;
3715 }
fb45065e 3716 pthread_mutex_lock(&app->sock_lock);
f37d259d
MD
3717 handle = ustctl_tracepoint_field_list(app->sock);
3718 if (handle < 0) {
ffe60014
DG
3719 if (handle != -EPIPE && handle != -LTTNG_UST_ERR_EXITING) {
3720 ERR("UST app list field getting handle failed for app pid %d",
3721 app->pid);
3722 }
fb45065e 3723 pthread_mutex_unlock(&app->sock_lock);
f37d259d
MD
3724 continue;
3725 }
3726
3727 while ((ret = ustctl_tracepoint_field_list_get(app->sock, handle,
fb54cdbf 3728 &uiter)) != -LTTNG_UST_ERR_NOENT) {
ffe60014
DG
3729 /* Handle ustctl error. */
3730 if (ret < 0) {
fb45065e
MD
3731 int release_ret;
3732
a2ba1ab0 3733 if (ret != -LTTNG_UST_ERR_EXITING && ret != -EPIPE) {
ffe60014
DG
3734 ERR("UST app tp list field failed for app %d with ret %d",
3735 app->sock, ret);
3736 } else {
3737 DBG3("UST app tp list field failed. Application is dead");
3757b385
DG
3738 /*
3739 * This is normal behavior, an application can die during the
3740 * creation process. Don't report an error so the execution can
98f595d4 3741 * continue normally. Reset list and count for next app.
3757b385
DG
3742 */
3743 break;
ffe60014 3744 }
98f595d4 3745 free(tmp_event);
fb45065e
MD
3746 release_ret = ustctl_release_handle(app->sock, handle);
3747 pthread_mutex_unlock(&app->sock_lock);
68313703
JG
3748 if (release_ret < 0 &&
3749 release_ret != -LTTNG_UST_ERR_EXITING &&
3750 release_ret != -EPIPE) {
fb45065e
MD
3751 ERR("Error releasing app handle for app %d with ret %d", app->sock, release_ret);
3752 }
ffe60014
DG
3753 goto rcu_error;
3754 }
3755
840cb59c 3756 health_code_update();
f37d259d 3757 if (count >= nbmem) {
d7b3776f 3758 /* In case the realloc fails, we free the memory */
53efb85a
MD
3759 struct lttng_event_field *new_tmp_event;
3760 size_t new_nbmem;
3761
3762 new_nbmem = nbmem << 1;
3763 DBG2("Reallocating event field list from %zu to %zu entries",
3764 nbmem, new_nbmem);
3765 new_tmp_event = realloc(tmp_event,
3766 new_nbmem * sizeof(struct lttng_event_field));
3767 if (new_tmp_event == NULL) {
fb45065e
MD
3768 int release_ret;
3769
f37d259d 3770 PERROR("realloc ust app event fields");
c617c0c6 3771 free(tmp_event);
f37d259d 3772 ret = -ENOMEM;
fb45065e
MD
3773 release_ret = ustctl_release_handle(app->sock, handle);
3774 pthread_mutex_unlock(&app->sock_lock);
68313703
JG
3775 if (release_ret &&
3776 release_ret != -LTTNG_UST_ERR_EXITING &&
3777 release_ret != -EPIPE) {
fb45065e
MD
3778 ERR("Error releasing app handle for app %d with ret %d", app->sock, release_ret);
3779 }
f37d259d
MD
3780 goto rcu_error;
3781 }
53efb85a
MD
3782 /* Zero the new memory */
3783 memset(new_tmp_event + nbmem, 0,
3784 (new_nbmem - nbmem) * sizeof(struct lttng_event_field));
3785 nbmem = new_nbmem;
3786 tmp_event = new_tmp_event;
f37d259d 3787 }
f37d259d 3788
c617c0c6 3789 memcpy(tmp_event[count].field_name, uiter.field_name, LTTNG_UST_SYM_NAME_LEN);
2e84128e
DG
3790 /* Mapping between these enums matches 1 to 1. */
3791 tmp_event[count].type = (enum lttng_event_field_type) uiter.type;
c617c0c6 3792 tmp_event[count].nowrite = uiter.nowrite;
f37d259d 3793
c617c0c6
MD
3794 memcpy(tmp_event[count].event.name, uiter.event_name, LTTNG_UST_SYM_NAME_LEN);
3795 tmp_event[count].event.loglevel = uiter.loglevel;
2e84128e 3796 tmp_event[count].event.type = LTTNG_EVENT_TRACEPOINT;
c617c0c6
MD
3797 tmp_event[count].event.pid = app->pid;
3798 tmp_event[count].event.enabled = -1;
f37d259d
MD
3799 count++;
3800 }
fb45065e
MD
3801 ret = ustctl_release_handle(app->sock, handle);
3802 pthread_mutex_unlock(&app->sock_lock);
68313703
JG
3803 if (ret < 0 &&
3804 ret != -LTTNG_UST_ERR_EXITING &&
3805 ret != -EPIPE) {
fb45065e
MD
3806 ERR("Error releasing app handle for app %d with ret %d", app->sock, ret);
3807 }
f37d259d
MD
3808 }
3809
3810 ret = count;
c617c0c6 3811 *fields = tmp_event;
f37d259d
MD
3812
3813 DBG2("UST app list event fields done (%zu events)", count);
3814
3815rcu_error:
3816 rcu_read_unlock();
3817error:
840cb59c 3818 health_code_update();
f37d259d
MD
3819 return ret;
3820}
3821
5b4a0ec0
DG
3822/*
3823 * Free and clean all traceable apps of the global list.
36b588ed
MD
3824 *
3825 * Should _NOT_ be called with RCU read-side lock held.
5b4a0ec0
DG
3826 */
3827void ust_app_clean_list(void)
421cb601 3828{
5b4a0ec0 3829 int ret;
659ed79f 3830 struct ust_app *app;
bec39940 3831 struct lttng_ht_iter iter;
421cb601 3832
5b4a0ec0 3833 DBG2("UST app cleaning registered apps hash table");
421cb601 3834
5b4a0ec0 3835 rcu_read_lock();
421cb601 3836
faadaa3a
JG
3837 /* Cleanup notify socket hash table */
3838 if (ust_app_ht_by_notify_sock) {
3839 cds_lfht_for_each_entry(ust_app_ht_by_notify_sock->ht, &iter.iter, app,
3840 notify_sock_n.node) {
3841 struct cds_lfht_node *node;
3842 struct ust_app *app;
3843
3844 node = cds_lfht_iter_get_node(&iter.iter);
3845 if (!node) {
3846 continue;
3847 }
3848
3849 app = container_of(node, struct ust_app,
3850 notify_sock_n.node);
3851 ust_app_notify_sock_unregister(app->notify_sock);
3852 }
3853 }
3854
f1b711c4
MD
3855 if (ust_app_ht) {
3856 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
3857 ret = lttng_ht_del(ust_app_ht, &iter);
3858 assert(!ret);
3859 call_rcu(&app->pid_n.head, delete_ust_app_rcu);
3860 }
421cb601
DG
3861 }
3862
852d0037 3863 /* Cleanup socket hash table */
f1b711c4
MD
3864 if (ust_app_ht_by_sock) {
3865 cds_lfht_for_each_entry(ust_app_ht_by_sock->ht, &iter.iter, app,
3866 sock_n.node) {
3867 ret = lttng_ht_del(ust_app_ht_by_sock, &iter);
3868 assert(!ret);
3869 }
bec39940 3870 }
852d0037 3871
36b588ed 3872 rcu_read_unlock();
d88aee68 3873
bec39940 3874 /* Destroy is done only when the ht is empty */
f1b711c4
MD
3875 if (ust_app_ht) {
3876 ht_cleanup_push(ust_app_ht);
3877 }
3878 if (ust_app_ht_by_sock) {
3879 ht_cleanup_push(ust_app_ht_by_sock);
3880 }
3881 if (ust_app_ht_by_notify_sock) {
3882 ht_cleanup_push(ust_app_ht_by_notify_sock);
3883 }
5b4a0ec0
DG
3884}
3885
3886/*
3887 * Init UST app hash table.
3888 */
57703f6e 3889int ust_app_ht_alloc(void)
5b4a0ec0 3890{
bec39940 3891 ust_app_ht = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
57703f6e
MD
3892 if (!ust_app_ht) {
3893 return -1;
3894 }
852d0037 3895 ust_app_ht_by_sock = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
57703f6e
MD
3896 if (!ust_app_ht_by_sock) {
3897 return -1;
3898 }
d0b96690 3899 ust_app_ht_by_notify_sock = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
57703f6e
MD
3900 if (!ust_app_ht_by_notify_sock) {
3901 return -1;
3902 }
3903 return 0;
421cb601
DG
3904}
3905
78f0bacd
DG
3906/*
3907 * For a specific UST session, disable the channel for all registered apps.
3908 */
35a9059d 3909int ust_app_disable_channel_glb(struct ltt_ust_session *usess,
78f0bacd
DG
3910 struct ltt_ust_channel *uchan)
3911{
3912 int ret = 0;
bec39940
DG
3913 struct lttng_ht_iter iter;
3914 struct lttng_ht_node_str *ua_chan_node;
78f0bacd
DG
3915 struct ust_app *app;
3916 struct ust_app_session *ua_sess;
8535a6d9 3917 struct ust_app_channel *ua_chan;
78f0bacd 3918
88e3c2f5 3919 assert(usess->active);
d9bf3ca4 3920 DBG2("UST app disabling channel %s from global domain for session id %" PRIu64,
a991f516 3921 uchan->name, usess->id);
78f0bacd
DG
3922
3923 rcu_read_lock();
3924
3925 /* For every registered applications */
852d0037 3926 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
bec39940 3927 struct lttng_ht_iter uiter;
e0c7ec2b
DG
3928 if (!app->compatible) {
3929 /*
3930 * TODO: In time, we should notice the caller of this error by
3931 * telling him that this is a version error.
3932 */
3933 continue;
3934 }
78f0bacd
DG
3935 ua_sess = lookup_session_by_app(usess, app);
3936 if (ua_sess == NULL) {
3937 continue;
3938 }
3939
8535a6d9 3940 /* Get channel */
bec39940
DG
3941 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &uiter);
3942 ua_chan_node = lttng_ht_iter_get_node_str(&uiter);
8535a6d9
DG
3943 /* If the session if found for the app, the channel must be there */
3944 assert(ua_chan_node);
3945
3946 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node);
3947 /* The channel must not be already disabled */
3948 assert(ua_chan->enabled == 1);
3949
3950 /* Disable channel onto application */
3951 ret = disable_ust_app_channel(ua_sess, ua_chan, app);
78f0bacd
DG
3952 if (ret < 0) {
3953 /* XXX: We might want to report this error at some point... */
3954 continue;
3955 }
3956 }
3957
3958 rcu_read_unlock();
78f0bacd
DG
3959 return ret;
3960}
3961
3962/*
3963 * For a specific UST session, enable the channel for all registered apps.
3964 */
35a9059d 3965int ust_app_enable_channel_glb(struct ltt_ust_session *usess,
78f0bacd
DG
3966 struct ltt_ust_channel *uchan)
3967{
3968 int ret = 0;
bec39940 3969 struct lttng_ht_iter iter;
78f0bacd
DG
3970 struct ust_app *app;
3971 struct ust_app_session *ua_sess;
3972
88e3c2f5 3973 assert(usess->active);
d9bf3ca4 3974 DBG2("UST app enabling channel %s to global domain for session id %" PRIu64,
a991f516 3975 uchan->name, usess->id);
78f0bacd
DG
3976
3977 rcu_read_lock();
3978
3979 /* For every registered applications */
852d0037 3980 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
e0c7ec2b
DG
3981 if (!app->compatible) {
3982 /*
3983 * TODO: In time, we should notice the caller of this error by
3984 * telling him that this is a version error.
3985 */
3986 continue;
3987 }
78f0bacd
DG
3988 ua_sess = lookup_session_by_app(usess, app);
3989 if (ua_sess == NULL) {
3990 continue;
3991 }
3992
3993 /* Enable channel onto application */
3994 ret = enable_ust_app_channel(ua_sess, uchan, app);
3995 if (ret < 0) {
3996 /* XXX: We might want to report this error at some point... */
3997 continue;
3998 }
3999 }
4000
4001 rcu_read_unlock();
78f0bacd
DG
4002 return ret;
4003}
4004
b0a40d28
DG
4005/*
4006 * Disable an event in a channel and for a specific session.
4007 */
35a9059d
DG
4008int ust_app_disable_event_glb(struct ltt_ust_session *usess,
4009 struct ltt_ust_channel *uchan, struct ltt_ust_event *uevent)
b0a40d28
DG
4010{
4011 int ret = 0;
bec39940 4012 struct lttng_ht_iter iter, uiter;
700c5a9d 4013 struct lttng_ht_node_str *ua_chan_node;
b0a40d28
DG
4014 struct ust_app *app;
4015 struct ust_app_session *ua_sess;
4016 struct ust_app_channel *ua_chan;
4017 struct ust_app_event *ua_event;
4018
88e3c2f5 4019 assert(usess->active);
b0a40d28 4020 DBG("UST app disabling event %s for all apps in channel "
d9bf3ca4
MD
4021 "%s for session id %" PRIu64,
4022 uevent->attr.name, uchan->name, usess->id);
b0a40d28
DG
4023
4024 rcu_read_lock();
4025
4026 /* For all registered applications */
852d0037 4027 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
e0c7ec2b
DG
4028 if (!app->compatible) {
4029 /*
4030 * TODO: In time, we should notice the caller of this error by
4031 * telling him that this is a version error.
4032 */
4033 continue;
4034 }
b0a40d28
DG
4035 ua_sess = lookup_session_by_app(usess, app);
4036 if (ua_sess == NULL) {
4037 /* Next app */
4038 continue;
4039 }
4040
4041 /* Lookup channel in the ust app session */
bec39940
DG
4042 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &uiter);
4043 ua_chan_node = lttng_ht_iter_get_node_str(&uiter);
b0a40d28 4044 if (ua_chan_node == NULL) {
d9bf3ca4 4045 DBG2("Channel %s not found in session id %" PRIu64 " for app pid %d."
852d0037 4046 "Skipping", uchan->name, usess->id, app->pid);
b0a40d28
DG
4047 continue;
4048 }
4049 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node);
4050
700c5a9d
JR
4051 ua_event = find_ust_app_event(ua_chan->events, uevent->attr.name,
4052 uevent->filter, uevent->attr.loglevel,
4053 uevent->exclusion);
4054 if (ua_event == NULL) {
b0a40d28 4055 DBG2("Event %s not found in channel %s for app pid %d."
852d0037 4056 "Skipping", uevent->attr.name, uchan->name, app->pid);
b0a40d28
DG
4057 continue;
4058 }
b0a40d28 4059
7f79d3a1 4060 ret = disable_ust_app_event(ua_sess, ua_event, app);
b0a40d28
DG
4061 if (ret < 0) {
4062 /* XXX: Report error someday... */
4063 continue;
4064 }
4065 }
4066
4067 rcu_read_unlock();
88e3c2f5
JG
4068 return ret;
4069}
4070
4071/* The ua_sess lock must be held by the caller. */
4072static
4073int ust_app_channel_create(struct ltt_ust_session *usess,
4074 struct ust_app_session *ua_sess,
4075 struct ltt_ust_channel *uchan, struct ust_app *app,
4076 struct ust_app_channel **_ua_chan)
4077{
4078 int ret = 0;
4079 struct ust_app_channel *ua_chan = NULL;
4080
4081 assert(ua_sess);
4082 ASSERT_LOCKED(ua_sess->lock);
4083
4084 if (!strncmp(uchan->name, DEFAULT_METADATA_NAME,
4085 sizeof(uchan->name))) {
4086 copy_channel_attr_to_ustctl(&ua_sess->metadata_attr,
4087 &uchan->attr);
4088 ret = 0;
4089 } else {
4090 struct ltt_ust_context *uctx = NULL;
4091
4092 /*
4093 * Create channel onto application and synchronize its
4094 * configuration.
4095 */
4096 ret = ust_app_channel_allocate(ua_sess, uchan,
4097 LTTNG_UST_CHAN_PER_CPU, usess,
4098 &ua_chan);
4099 if (ret == 0) {
4100 ret = ust_app_channel_send(app, usess,
4101 ua_sess, ua_chan);
4102 } else {
4103 goto end;
4104 }
4105
4106 /* Add contexts. */
4107 cds_list_for_each_entry(uctx, &uchan->ctx_list, list) {
4108 ret = create_ust_app_channel_context(ua_chan,
4109 &uctx->ctx, app);
4110 if (ret) {
4111 goto end;
4112 }
4113 }
4114 }
4115 if (ret < 0) {
4116 switch (ret) {
4117 case -ENOTCONN:
4118 /*
4119 * The application's socket is not valid. Either a bad socket
4120 * or a timeout on it. We can't inform the caller that for a
4121 * specific app, the session failed so lets continue here.
4122 */
4123 ret = 0; /* Not an error. */
4124 break;
4125 case -ENOMEM:
4126 default:
4127 break;
4128 }
4129 }
0498a00c 4130end:
88e3c2f5
JG
4131 if (ret == 0 && _ua_chan) {
4132 /*
4133 * Only return the application's channel on success. Note
4134 * that the channel can still be part of the application's
4135 * channel hashtable on error.
4136 */
4137 *_ua_chan = ua_chan;
4138 }
b0a40d28
DG
4139 return ret;
4140}
4141
421cb601 4142/*
5b4a0ec0 4143 * For a specific UST session, create the channel for all registered apps.
421cb601 4144 */
35a9059d 4145int ust_app_create_channel_glb(struct ltt_ust_session *usess,
48842b30
DG
4146 struct ltt_ust_channel *uchan)
4147{
88e3c2f5
JG
4148 int ret = 0;
4149 struct cds_lfht_iter iter;
48842b30 4150 struct ust_app *app;
48842b30 4151
fc34caaa 4152 assert(usess);
88e3c2f5 4153 assert(usess->active);
fc34caaa 4154 assert(uchan);
421cb601 4155
d9bf3ca4 4156 DBG2("UST app adding channel %s to UST domain for session id %" PRIu64,
a991f516 4157 uchan->name, usess->id);
48842b30
DG
4158
4159 rcu_read_lock();
5b4a0ec0 4160 /* For every registered applications */
88e3c2f5
JG
4161 cds_lfht_for_each_entry(ust_app_ht->ht, &iter, app, pid_n.node) {
4162 struct ust_app_session *ua_sess;
4163 int session_was_created = 0;
4164
4165 if (!app->compatible ||
4166 !trace_ust_pid_tracker_lookup(usess, app->pid)) {
4167 goto error_rcu_unlock;
a9ad0c8f
MD
4168 }
4169
edb67388
DG
4170 /*
4171 * Create session on the tracer side and add it to app session HT. Note
4172 * that if session exist, it will simply return a pointer to the ust
4173 * app session.
4174 */
88e3c2f5
JG
4175 ret = find_or_create_ust_app_session(usess, app, &ua_sess,
4176 &session_was_created);
3d8ca23b
DG
4177 if (ret < 0) {
4178 switch (ret) {
4179 case -ENOTCONN:
4180 /*
88e3c2f5
JG
4181 * The application's socket is not valid. Either a bad
4182 * socket or a timeout on it. We can't inform the caller
4183 * that for a specific app, the session failed so lets
4184 * continue here; it is not an error.
3d8ca23b 4185 */
88e3c2f5
JG
4186 ret = 0;
4187 goto error_rcu_unlock;
3d8ca23b
DG
4188 case -ENOMEM:
4189 default:
4190 goto error_rcu_unlock;
4191 }
48842b30 4192 }
b161602a
MD
4193
4194 if (ua_sess->deleted) {
b161602a
MD
4195 continue;
4196 }
88e3c2f5
JG
4197 ret = ust_app_channel_create(usess, ua_sess, uchan, app, NULL);
4198 if (ret) {
4199 if (session_was_created) {
d0b96690 4200 destroy_app_session(app, ua_sess);
3d8ca23b 4201 }
88e3c2f5 4202 goto error_rcu_unlock;
48842b30 4203 }
48842b30 4204 }
5b4a0ec0 4205
95e047ff 4206error_rcu_unlock:
48842b30 4207 rcu_read_unlock();
3c14c33f 4208 return ret;
48842b30
DG
4209}
4210
5b4a0ec0 4211/*
edb67388 4212 * Enable event for a specific session and channel on the tracer.
5b4a0ec0 4213 */
35a9059d 4214int ust_app_enable_event_glb(struct ltt_ust_session *usess,
48842b30
DG
4215 struct ltt_ust_channel *uchan, struct ltt_ust_event *uevent)
4216{
4217 int ret = 0;
bec39940 4218 struct lttng_ht_iter iter, uiter;
18eace3b 4219 struct lttng_ht_node_str *ua_chan_node;
48842b30
DG
4220 struct ust_app *app;
4221 struct ust_app_session *ua_sess;
4222 struct ust_app_channel *ua_chan;
4223 struct ust_app_event *ua_event;
48842b30 4224
88e3c2f5 4225 assert(usess->active);
d9bf3ca4 4226 DBG("UST app enabling event %s for all apps for session id %" PRIu64,
a991f516 4227 uevent->attr.name, usess->id);
48842b30 4228
edb67388
DG
4229 /*
4230 * NOTE: At this point, this function is called only if the session and
4231 * channel passed are already created for all apps. and enabled on the
4232 * tracer also.
4233 */
4234
48842b30 4235 rcu_read_lock();
421cb601
DG
4236
4237 /* For all registered applications */
852d0037 4238 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
e0c7ec2b
DG
4239 if (!app->compatible) {
4240 /*
4241 * TODO: In time, we should notice the caller of this error by
4242 * telling him that this is a version error.
4243 */
4244 continue;
4245 }
edb67388 4246 ua_sess = lookup_session_by_app(usess, app);
c4a1715b
DG
4247 if (!ua_sess) {
4248 /* The application has problem or is probably dead. */
4249 continue;
4250 }
ba767faf 4251
d0b96690
DG
4252 pthread_mutex_lock(&ua_sess->lock);
4253
b161602a
MD
4254 if (ua_sess->deleted) {
4255 pthread_mutex_unlock(&ua_sess->lock);
4256 continue;
4257 }
4258
edb67388 4259 /* Lookup channel in the ust app session */
bec39940
DG
4260 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &uiter);
4261 ua_chan_node = lttng_ht_iter_get_node_str(&uiter);
a7169585
MD
4262 /*
4263 * It is possible that the channel cannot be found is
4264 * the channel/event creation occurs concurrently with
4265 * an application exit.
4266 */
4267 if (!ua_chan_node) {
4268 pthread_mutex_unlock(&ua_sess->lock);
4269 continue;
4270 }
edb67388
DG
4271
4272 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node);
4273
18eace3b
DG
4274 /* Get event node */
4275 ua_event = find_ust_app_event(ua_chan->events, uevent->attr.name,
39c5a3a7 4276 uevent->filter, uevent->attr.loglevel, uevent->exclusion);
18eace3b 4277 if (ua_event == NULL) {
7f79d3a1 4278 DBG3("UST app enable event %s not found for app PID %d."
852d0037 4279 "Skipping app", uevent->attr.name, app->pid);
d0b96690 4280 goto next_app;
35a9059d 4281 }
35a9059d
DG
4282
4283 ret = enable_ust_app_event(ua_sess, ua_event, app);
4284 if (ret < 0) {
d0b96690 4285 pthread_mutex_unlock(&ua_sess->lock);
7f79d3a1 4286 goto error;
48842b30 4287 }
d0b96690
DG
4288 next_app:
4289 pthread_mutex_unlock(&ua_sess->lock);
edb67388
DG
4290 }
4291
7f79d3a1 4292error:
edb67388 4293 rcu_read_unlock();
edb67388
DG
4294 return ret;
4295}
4296
4297/*
4298 * For a specific existing UST session and UST channel, creates the event for
4299 * all registered apps.
4300 */
35a9059d 4301int ust_app_create_event_glb(struct ltt_ust_session *usess,
edb67388
DG
4302 struct ltt_ust_channel *uchan, struct ltt_ust_event *uevent)
4303{
4304 int ret = 0;
bec39940
DG
4305 struct lttng_ht_iter iter, uiter;
4306 struct lttng_ht_node_str *ua_chan_node;
edb67388
DG
4307 struct ust_app *app;
4308 struct ust_app_session *ua_sess;
4309 struct ust_app_channel *ua_chan;
4310
88e3c2f5 4311 assert(usess->active);
d9bf3ca4 4312 DBG("UST app creating event %s for all apps for session id %" PRIu64,
a991f516 4313 uevent->attr.name, usess->id);
edb67388 4314
edb67388
DG
4315 rcu_read_lock();
4316
4317 /* For all registered applications */
852d0037 4318 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
e0c7ec2b
DG
4319 if (!app->compatible) {
4320 /*
4321 * TODO: In time, we should notice the caller of this error by
4322 * telling him that this is a version error.
4323 */
4324 continue;
4325 }
edb67388 4326 ua_sess = lookup_session_by_app(usess, app);
c4a1715b
DG
4327 if (!ua_sess) {
4328 /* The application has problem or is probably dead. */
4329 continue;
4330 }
48842b30 4331
d0b96690 4332 pthread_mutex_lock(&ua_sess->lock);
b161602a
MD
4333
4334 if (ua_sess->deleted) {
4335 pthread_mutex_unlock(&ua_sess->lock);
4336 continue;
4337 }
4338
48842b30 4339 /* Lookup channel in the ust app session */
bec39940
DG
4340 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &uiter);
4341 ua_chan_node = lttng_ht_iter_get_node_str(&uiter);
edb67388
DG
4342 /* If the channel is not found, there is a code flow error */
4343 assert(ua_chan_node);
4344
48842b30
DG
4345 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node);
4346
edb67388 4347 ret = create_ust_app_event(ua_sess, ua_chan, uevent, app);
d0b96690 4348 pthread_mutex_unlock(&ua_sess->lock);
edb67388 4349 if (ret < 0) {
49c336c1 4350 if (ret != -LTTNG_UST_ERR_EXIST) {
fc34caaa
DG
4351 /* Possible value at this point: -ENOMEM. If so, we stop! */
4352 break;
4353 }
4354 DBG2("UST app event %s already exist on app PID %d",
852d0037 4355 uevent->attr.name, app->pid);
5b4a0ec0 4356 continue;
48842b30 4357 }
48842b30 4358 }
5b4a0ec0 4359
48842b30 4360 rcu_read_unlock();
48842b30
DG
4361 return ret;
4362}
4363
5b4a0ec0
DG
4364/*
4365 * Start tracing for a specific UST session and app.
fad1ed2f
JR
4366 *
4367 * Called with UST app session lock held.
4368 *
5b4a0ec0 4369 */
b34cbebf 4370static
421cb601 4371int ust_app_start_trace(struct ltt_ust_session *usess, struct ust_app *app)
48842b30
DG
4372{
4373 int ret = 0;
48842b30 4374 struct ust_app_session *ua_sess;
48842b30 4375
852d0037 4376 DBG("Starting tracing for ust app pid %d", app->pid);
5cf5d0e7 4377
509cbaf8
MD
4378 rcu_read_lock();
4379
e0c7ec2b
DG
4380 if (!app->compatible) {
4381 goto end;
4382 }
4383
421cb601
DG
4384 ua_sess = lookup_session_by_app(usess, app);
4385 if (ua_sess == NULL) {
d42f20df
DG
4386 /* The session is in teardown process. Ignore and continue. */
4387 goto end;
421cb601 4388 }
48842b30 4389
d0b96690
DG
4390 pthread_mutex_lock(&ua_sess->lock);
4391
b161602a
MD
4392 if (ua_sess->deleted) {
4393 pthread_mutex_unlock(&ua_sess->lock);
4394 goto end;
4395 }
4396
aea829b3
DG
4397 /* Upon restart, we skip the setup, already done */
4398 if (ua_sess->started) {
8be98f9a 4399 goto skip_setup;
aea829b3 4400 }
8be98f9a 4401
a4b92340
DG
4402 /* Create directories if consumer is LOCAL and has a path defined. */
4403 if (usess->consumer->type == CONSUMER_DST_LOCAL &&
366a9222 4404 usess->consumer->dst.session_root_path[0] != '\0') {
b178f53e 4405 char tmp_path[LTTNG_PATH_MAX];
366a9222 4406
b178f53e 4407 ret = snprintf(tmp_path, sizeof(tmp_path), "%s/%s%s",
366a9222
JD
4408 usess->consumer->dst.session_root_path,
4409 usess->consumer->chunk_path,
b178f53e
JG
4410 usess->consumer->domain_subdir);
4411 if (ret >= sizeof(tmp_path)) {
4412 ERR("Local destination path exceeds the maximal allowed length of %zu bytes (needs %i bytes) with path = \"%s%s%s\"",
4413 sizeof(tmp_path), ret,
366a9222
JD
4414 usess->consumer->dst.session_root_path,
4415 usess->consumer->chunk_path,
b178f53e 4416 usess->consumer->domain_subdir);
366a9222
JD
4417 goto error_unlock;
4418 }
4419
4420 DBG("Creating directory path for local tracing: \"%s\"",
4421 tmp_path);
4422 ret = run_as_mkdir_recursive(tmp_path, S_IRWXU | S_IRWXG,
4423 ua_sess->euid, ua_sess->egid);
a4b92340 4424 if (ret < 0) {
df5b86c8 4425 if (errno != EEXIST) {
a4b92340 4426 ERR("Trace directory creation error");
d0b96690 4427 goto error_unlock;
421cb601 4428 }
173af62f 4429 }
7753dea8 4430 }
aea829b3 4431
d65d2de8
DG
4432 /*
4433 * Create the metadata for the application. This returns gracefully if a
4434 * metadata was already set for the session.
4435 */
ad7a9107 4436 ret = create_ust_app_metadata(ua_sess, app, usess->consumer);
421cb601 4437 if (ret < 0) {
d0b96690 4438 goto error_unlock;
421cb601 4439 }
48842b30 4440
840cb59c 4441 health_code_update();
86acf0da 4442
8be98f9a 4443skip_setup:
421cb601 4444 /* This start the UST tracing */
fb45065e 4445 pthread_mutex_lock(&app->sock_lock);
852d0037 4446 ret = ustctl_start_session(app->sock, ua_sess->handle);
fb45065e 4447 pthread_mutex_unlock(&app->sock_lock);
421cb601 4448 if (ret < 0) {
ffe60014
DG
4449 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
4450 ERR("Error starting tracing for app pid: %d (ret: %d)",
4451 app->pid, ret);
4452 } else {
4453 DBG("UST app start session failed. Application is dead.");
3757b385
DG
4454 /*
4455 * This is normal behavior, an application can die during the
4456 * creation process. Don't report an error so the execution can
4457 * continue normally.
4458 */
4459 pthread_mutex_unlock(&ua_sess->lock);
4460 goto end;
ffe60014 4461 }
d0b96690 4462 goto error_unlock;
421cb601 4463 }
5b4a0ec0 4464
55c3953d
DG
4465 /* Indicate that the session has been started once */
4466 ua_sess->started = 1;
4467
d0b96690
DG
4468 pthread_mutex_unlock(&ua_sess->lock);
4469
840cb59c 4470 health_code_update();
86acf0da 4471
421cb601 4472 /* Quiescent wait after starting trace */
fb45065e 4473 pthread_mutex_lock(&app->sock_lock);
ffe60014 4474 ret = ustctl_wait_quiescent(app->sock);
fb45065e 4475 pthread_mutex_unlock(&app->sock_lock);
ffe60014
DG
4476 if (ret < 0 && ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
4477 ERR("UST app wait quiescent failed for app pid %d ret %d",
4478 app->pid, ret);
4479 }
48842b30 4480
e0c7ec2b
DG
4481end:
4482 rcu_read_unlock();
840cb59c 4483 health_code_update();
421cb601 4484 return 0;
48842b30 4485
d0b96690
DG
4486error_unlock:
4487 pthread_mutex_unlock(&ua_sess->lock);
509cbaf8 4488 rcu_read_unlock();
840cb59c 4489 health_code_update();
421cb601
DG
4490 return -1;
4491}
48842b30 4492
8be98f9a
MD
4493/*
4494 * Stop tracing for a specific UST session and app.
4495 */
b34cbebf 4496static
8be98f9a
MD
4497int ust_app_stop_trace(struct ltt_ust_session *usess, struct ust_app *app)
4498{
4499 int ret = 0;
4500 struct ust_app_session *ua_sess;
7972aab2 4501 struct ust_registry_session *registry;
8be98f9a 4502
852d0037 4503 DBG("Stopping tracing for ust app pid %d", app->pid);
8be98f9a
MD
4504
4505 rcu_read_lock();
4506
e0c7ec2b 4507 if (!app->compatible) {
d88aee68 4508 goto end_no_session;
e0c7ec2b
DG
4509 }
4510
8be98f9a
MD
4511 ua_sess = lookup_session_by_app(usess, app);
4512 if (ua_sess == NULL) {
d88aee68 4513 goto end_no_session;
8be98f9a
MD
4514 }
4515
d88aee68
DG
4516 pthread_mutex_lock(&ua_sess->lock);
4517
b161602a
MD
4518 if (ua_sess->deleted) {
4519 pthread_mutex_unlock(&ua_sess->lock);
4520 goto end_no_session;
4521 }
4522
9bc07046
DG
4523 /*
4524 * If started = 0, it means that stop trace has been called for a session
c45536e1
DG
4525 * that was never started. It's possible since we can have a fail start
4526 * from either the application manager thread or the command thread. Simply
4527 * indicate that this is a stop error.
9bc07046 4528 */
f9dfc3d9 4529 if (!ua_sess->started) {
c45536e1
DG
4530 goto error_rcu_unlock;
4531 }
7db205b5 4532
840cb59c 4533 health_code_update();
86acf0da 4534
9d6c7d3f 4535 /* This inhibits UST tracing */
fb45065e 4536 pthread_mutex_lock(&app->sock_lock);
852d0037 4537 ret = ustctl_stop_session(app->sock, ua_sess->handle);
fb45065e 4538 pthread_mutex_unlock(&app->sock_lock);
9d6c7d3f 4539 if (ret < 0) {
ffe60014
DG
4540 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
4541 ERR("Error stopping tracing for app pid: %d (ret: %d)",
4542 app->pid, ret);
4543 } else {
4544 DBG("UST app stop session failed. Application is dead.");
3757b385
DG
4545 /*
4546 * This is normal behavior, an application can die during the
4547 * creation process. Don't report an error so the execution can
4548 * continue normally.
4549 */
4550 goto end_unlock;
ffe60014 4551 }
9d6c7d3f
DG
4552 goto error_rcu_unlock;
4553 }
4554
840cb59c 4555 health_code_update();
86acf0da 4556
9d6c7d3f 4557 /* Quiescent wait after stopping trace */
fb45065e 4558 pthread_mutex_lock(&app->sock_lock);
ffe60014 4559 ret = ustctl_wait_quiescent(app->sock);
fb45065e 4560 pthread_mutex_unlock(&app->sock_lock);
ffe60014
DG
4561 if (ret < 0 && ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
4562 ERR("UST app wait quiescent failed for app pid %d ret %d",
4563 app->pid, ret);
4564 }
9d6c7d3f 4565
840cb59c 4566 health_code_update();
86acf0da 4567
b34cbebf 4568 registry = get_session_registry(ua_sess);
fad1ed2f
JR
4569
4570 /* The UST app session is held registry shall not be null. */
b34cbebf 4571 assert(registry);
1b532a60 4572
ce34fcd0
MD
4573 /* Push metadata for application before freeing the application. */
4574 (void) push_metadata(registry, ua_sess->consumer);
b34cbebf 4575
3757b385 4576end_unlock:
b34cbebf
MD
4577 pthread_mutex_unlock(&ua_sess->lock);
4578end_no_session:
4579 rcu_read_unlock();
4580 health_code_update();
4581 return 0;
4582
4583error_rcu_unlock:
4584 pthread_mutex_unlock(&ua_sess->lock);
4585 rcu_read_unlock();
4586 health_code_update();
4587 return -1;
4588}
4589
b34cbebf 4590static
c4b88406
MD
4591int ust_app_flush_app_session(struct ust_app *app,
4592 struct ust_app_session *ua_sess)
b34cbebf 4593{
c4b88406 4594 int ret, retval = 0;
b34cbebf 4595 struct lttng_ht_iter iter;
b34cbebf 4596 struct ust_app_channel *ua_chan;
c4b88406 4597 struct consumer_socket *socket;
b34cbebf 4598
c4b88406 4599 DBG("Flushing app session buffers for ust app pid %d", app->pid);
b34cbebf
MD
4600
4601 rcu_read_lock();
4602
4603 if (!app->compatible) {
c4b88406 4604 goto end_not_compatible;
b34cbebf
MD
4605 }
4606
4607 pthread_mutex_lock(&ua_sess->lock);
4608
b161602a
MD
4609 if (ua_sess->deleted) {
4610 goto end_deleted;
4611 }
4612
b34cbebf
MD
4613 health_code_update();
4614
9d6c7d3f 4615 /* Flushing buffers */
c4b88406
MD
4616 socket = consumer_find_socket_by_bitness(app->bits_per_long,
4617 ua_sess->consumer);
ce34fcd0
MD
4618
4619 /* Flush buffers and push metadata. */
4620 switch (ua_sess->buffer_type) {
4621 case LTTNG_BUFFER_PER_PID:
4622 cds_lfht_for_each_entry(ua_sess->channels->ht, &iter.iter, ua_chan,
4623 node.node) {
4624 health_code_update();
ce34fcd0
MD
4625 ret = consumer_flush_channel(socket, ua_chan->key);
4626 if (ret) {
4627 ERR("Error flushing consumer channel");
4628 retval = -1;
4629 continue;
4630 }
8be98f9a 4631 }
ce34fcd0
MD
4632 break;
4633 case LTTNG_BUFFER_PER_UID:
4634 default:
4635 assert(0);
4636 break;
8be98f9a 4637 }
8be98f9a 4638
840cb59c 4639 health_code_update();
86acf0da 4640
b161602a 4641end_deleted:
d88aee68 4642 pthread_mutex_unlock(&ua_sess->lock);
ce34fcd0 4643
c4b88406
MD
4644end_not_compatible:
4645 rcu_read_unlock();
4646 health_code_update();
4647 return retval;
4648}
4649
4650/*
ce34fcd0
MD
4651 * Flush buffers for all applications for a specific UST session.
4652 * Called with UST session lock held.
c4b88406
MD
4653 */
4654static
ce34fcd0 4655int ust_app_flush_session(struct ltt_ust_session *usess)
c4b88406
MD
4656
4657{
99b1411c 4658 int ret = 0;
c4b88406 4659
ce34fcd0 4660 DBG("Flushing session buffers for all ust apps");
c4b88406
MD
4661
4662 rcu_read_lock();
4663
ce34fcd0
MD
4664 /* Flush buffers and push metadata. */
4665 switch (usess->buffer_type) {
4666 case LTTNG_BUFFER_PER_UID:
4667 {
4668 struct buffer_reg_uid *reg;
4669 struct lttng_ht_iter iter;
4670
4671 /* Flush all per UID buffers associated to that session. */
4672 cds_list_for_each_entry(reg, &usess->buffer_reg_uid_list, lnode) {
4673 struct ust_registry_session *ust_session_reg;
4674 struct buffer_reg_channel *reg_chan;
4675 struct consumer_socket *socket;
4676
4677 /* Get consumer socket to use to push the metadata.*/
4678 socket = consumer_find_socket_by_bitness(reg->bits_per_long,
4679 usess->consumer);
4680 if (!socket) {
4681 /* Ignore request if no consumer is found for the session. */
4682 continue;
4683 }
4684
4685 cds_lfht_for_each_entry(reg->registry->channels->ht, &iter.iter,
4686 reg_chan, node.node) {
4687 /*
4688 * The following call will print error values so the return
4689 * code is of little importance because whatever happens, we
4690 * have to try them all.
4691 */
4692 (void) consumer_flush_channel(socket, reg_chan->consumer_key);
4693 }
4694
4695 ust_session_reg = reg->registry->reg.ust;
4696 /* Push metadata. */
4697 (void) push_metadata(ust_session_reg, usess->consumer);
4698 }
ce34fcd0
MD
4699 break;
4700 }
4701 case LTTNG_BUFFER_PER_PID:
4702 {
4703 struct ust_app_session *ua_sess;
4704 struct lttng_ht_iter iter;
4705 struct ust_app *app;
4706
4707 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
4708 ua_sess = lookup_session_by_app(usess, app);
4709 if (ua_sess == NULL) {
4710 continue;
4711 }
4712 (void) ust_app_flush_app_session(app, ua_sess);
4713 }
4714 break;
4715 }
4716 default:
99b1411c 4717 ret = -1;
ce34fcd0
MD
4718 assert(0);
4719 break;
c4b88406 4720 }
c4b88406 4721
7db205b5 4722 rcu_read_unlock();
840cb59c 4723 health_code_update();
c4b88406 4724 return ret;
8be98f9a
MD
4725}
4726
0dd01979
MD
4727static
4728int ust_app_clear_quiescent_app_session(struct ust_app *app,
4729 struct ust_app_session *ua_sess)
4730{
4731 int ret = 0;
4732 struct lttng_ht_iter iter;
4733 struct ust_app_channel *ua_chan;
4734 struct consumer_socket *socket;
4735
4736 DBG("Clearing stream quiescent state for ust app pid %d", app->pid);
4737
4738 rcu_read_lock();
4739
4740 if (!app->compatible) {
4741 goto end_not_compatible;
4742 }
4743
4744 pthread_mutex_lock(&ua_sess->lock);
4745
4746 if (ua_sess->deleted) {
4747 goto end_unlock;
4748 }
4749
4750 health_code_update();
4751
4752 socket = consumer_find_socket_by_bitness(app->bits_per_long,
4753 ua_sess->consumer);
4754 if (!socket) {
4755 ERR("Failed to find consumer (%" PRIu32 ") socket",
4756 app->bits_per_long);
4757 ret = -1;
4758 goto end_unlock;
4759 }
4760
4761 /* Clear quiescent state. */
4762 switch (ua_sess->buffer_type) {
4763 case LTTNG_BUFFER_PER_PID:
4764 cds_lfht_for_each_entry(ua_sess->channels->ht, &iter.iter,
4765 ua_chan, node.node) {
4766 health_code_update();
4767 ret = consumer_clear_quiescent_channel(socket,
4768 ua_chan->key);
4769 if (ret) {
4770 ERR("Error clearing quiescent state for consumer channel");
4771 ret = -1;
4772 continue;
4773 }
4774 }
4775 break;
4776 case LTTNG_BUFFER_PER_UID:
4777 default:
4778 assert(0);
4779 ret = -1;
4780 break;
4781 }
4782
4783 health_code_update();
4784
4785end_unlock:
4786 pthread_mutex_unlock(&ua_sess->lock);
4787
4788end_not_compatible:
4789 rcu_read_unlock();
4790 health_code_update();
4791 return ret;
4792}
4793
4794/*
4795 * Clear quiescent state in each stream for all applications for a
4796 * specific UST session.
4797 * Called with UST session lock held.
4798 */
4799static
4800int ust_app_clear_quiescent_session(struct ltt_ust_session *usess)
4801
4802{
4803 int ret = 0;
4804
4805 DBG("Clearing stream quiescent state for all ust apps");
4806
4807 rcu_read_lock();
4808
4809 switch (usess->buffer_type) {
4810 case LTTNG_BUFFER_PER_UID:
4811 {
4812 struct lttng_ht_iter iter;
4813 struct buffer_reg_uid *reg;
4814
4815 /*
4816 * Clear quiescent for all per UID buffers associated to
4817 * that session.
4818 */
4819 cds_list_for_each_entry(reg, &usess->buffer_reg_uid_list, lnode) {
4820 struct consumer_socket *socket;
4821 struct buffer_reg_channel *reg_chan;
4822
4823 /* Get associated consumer socket.*/
4824 socket = consumer_find_socket_by_bitness(
4825 reg->bits_per_long, usess->consumer);
4826 if (!socket) {
4827 /*
4828 * Ignore request if no consumer is found for
4829 * the session.
4830 */
4831 continue;
4832 }
4833
4834 cds_lfht_for_each_entry(reg->registry->channels->ht,
4835 &iter.iter, reg_chan, node.node) {
4836 /*
4837 * The following call will print error values so
4838 * the return code is of little importance
4839 * because whatever happens, we have to try them
4840 * all.
4841 */
4842 (void) consumer_clear_quiescent_channel(socket,
4843 reg_chan->consumer_key);
4844 }
4845 }
4846 break;
4847 }
4848 case LTTNG_BUFFER_PER_PID:
4849 {
4850 struct ust_app_session *ua_sess;
4851 struct lttng_ht_iter iter;
4852 struct ust_app *app;
4853
4854 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app,
4855 pid_n.node) {
4856 ua_sess = lookup_session_by_app(usess, app);
4857 if (ua_sess == NULL) {
4858 continue;
4859 }
4860 (void) ust_app_clear_quiescent_app_session(app,
4861 ua_sess);
4862 }
4863 break;
4864 }
4865 default:
4866 ret = -1;
4867 assert(0);
4868 break;
4869 }
4870
4871 rcu_read_unlock();
4872 health_code_update();
4873 return ret;
4874}
4875
84cd17c6
MD
4876/*
4877 * Destroy a specific UST session in apps.
4878 */
3353de95 4879static int destroy_trace(struct ltt_ust_session *usess, struct ust_app *app)
84cd17c6 4880{
ffe60014 4881 int ret;
84cd17c6 4882 struct ust_app_session *ua_sess;
bec39940 4883 struct lttng_ht_iter iter;
d9bf3ca4 4884 struct lttng_ht_node_u64 *node;
84cd17c6 4885
852d0037 4886 DBG("Destroy tracing for ust app pid %d", app->pid);
84cd17c6
MD
4887
4888 rcu_read_lock();
4889
e0c7ec2b
DG
4890 if (!app->compatible) {
4891 goto end;
4892 }
4893
84cd17c6 4894 __lookup_session_by_app(usess, app, &iter);
d9bf3ca4 4895 node = lttng_ht_iter_get_node_u64(&iter);
84cd17c6 4896 if (node == NULL) {
d42f20df
DG
4897 /* Session is being or is deleted. */
4898 goto end;
84cd17c6
MD
4899 }
4900 ua_sess = caa_container_of(node, struct ust_app_session, node);
c4a1715b 4901
840cb59c 4902 health_code_update();
d0b96690 4903 destroy_app_session(app, ua_sess);
84cd17c6 4904
840cb59c 4905 health_code_update();
7db205b5 4906
84cd17c6 4907 /* Quiescent wait after stopping trace */
fb45065e 4908 pthread_mutex_lock(&app->sock_lock);
ffe60014 4909 ret = ustctl_wait_quiescent(app->sock);
fb45065e 4910 pthread_mutex_unlock(&app->sock_lock);
ffe60014
DG
4911 if (ret < 0 && ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
4912 ERR("UST app wait quiescent failed for app pid %d ret %d",
4913 app->pid, ret);
4914 }
e0c7ec2b
DG
4915end:
4916 rcu_read_unlock();
840cb59c 4917 health_code_update();
84cd17c6 4918 return 0;
84cd17c6
MD
4919}
4920
5b4a0ec0
DG
4921/*
4922 * Start tracing for the UST session.
4923 */
421cb601
DG
4924int ust_app_start_trace_all(struct ltt_ust_session *usess)
4925{
bec39940 4926 struct lttng_ht_iter iter;
421cb601 4927 struct ust_app *app;
48842b30 4928
421cb601
DG
4929 DBG("Starting all UST traces");
4930
bb2452c8
MD
4931 /*
4932 * Even though the start trace might fail, flag this session active so
4933 * other application coming in are started by default.
4934 */
4935 usess->active = 1;
4936
421cb601 4937 rcu_read_lock();
421cb601 4938
0dd01979
MD
4939 /*
4940 * In a start-stop-start use-case, we need to clear the quiescent state
4941 * of each channel set by the prior stop command, thus ensuring that a
4942 * following stop or destroy is sure to grab a timestamp_end near those
4943 * operations, even if the packet is empty.
4944 */
4945 (void) ust_app_clear_quiescent_session(usess);
4946
0498a00c
MD
4947 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
4948 ust_app_global_update(usess, app);
4949 }
4950
48842b30
DG
4951 rcu_read_unlock();
4952
4953 return 0;
4954}
487cf67c 4955
8be98f9a
MD
4956/*
4957 * Start tracing for the UST session.
ce34fcd0 4958 * Called with UST session lock held.
8be98f9a
MD
4959 */
4960int ust_app_stop_trace_all(struct ltt_ust_session *usess)
4961{
4962 int ret = 0;
bec39940 4963 struct lttng_ht_iter iter;
8be98f9a
MD
4964 struct ust_app *app;
4965
4966 DBG("Stopping all UST traces");
4967
bb2452c8
MD
4968 /*
4969 * Even though the stop trace might fail, flag this session inactive so
4970 * other application coming in are not started by default.
4971 */
4972 usess->active = 0;
4973
8be98f9a
MD
4974 rcu_read_lock();
4975
b34cbebf
MD
4976 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
4977 ret = ust_app_stop_trace(usess, app);
4978 if (ret < 0) {
4979 /* Continue to next apps even on error */
4980 continue;
4981 }
4982 }
4983
ce34fcd0 4984 (void) ust_app_flush_session(usess);
8be98f9a
MD
4985
4986 rcu_read_unlock();
4987
4988 return 0;
4989}
4990
84cd17c6
MD
4991/*
4992 * Destroy app UST session.
4993 */
4994int ust_app_destroy_trace_all(struct ltt_ust_session *usess)
4995{
4996 int ret = 0;
bec39940 4997 struct lttng_ht_iter iter;
84cd17c6
MD
4998 struct ust_app *app;
4999
5000 DBG("Destroy all UST traces");
5001
5002 rcu_read_lock();
5003
852d0037 5004 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
3353de95 5005 ret = destroy_trace(usess, app);
84cd17c6
MD
5006 if (ret < 0) {
5007 /* Continue to next apps even on error */
5008 continue;
5009 }
5010 }
5011
5012 rcu_read_unlock();
5013
5014 return 0;
5015}
5016
88e3c2f5 5017/* The ua_sess lock must be held by the caller. */
a9ad0c8f 5018static
88e3c2f5
JG
5019int find_or_create_ust_app_channel(
5020 struct ltt_ust_session *usess,
5021 struct ust_app_session *ua_sess,
5022 struct ust_app *app,
5023 struct ltt_ust_channel *uchan,
5024 struct ust_app_channel **ua_chan)
487cf67c 5025{
55c54cce 5026 int ret = 0;
88e3c2f5
JG
5027 struct lttng_ht_iter iter;
5028 struct lttng_ht_node_str *ua_chan_node;
5029
5030 lttng_ht_lookup(ua_sess->channels, (void *) uchan->name, &iter);
5031 ua_chan_node = lttng_ht_iter_get_node_str(&iter);
5032 if (ua_chan_node) {
5033 *ua_chan = caa_container_of(ua_chan_node,
5034 struct ust_app_channel, node);
5035 goto end;
5036 }
5037
5038 ret = ust_app_channel_create(usess, ua_sess, uchan, app, ua_chan);
5039 if (ret) {
5040 goto end;
5041 }
5042end:
5043 return ret;
5044}
5045
5046static
5047int ust_app_channel_synchronize_event(struct ust_app_channel *ua_chan,
5048 struct ltt_ust_event *uevent, struct ust_app_session *ua_sess,
5049 struct ust_app *app)
5050{
5051 int ret = 0;
5052 struct ust_app_event *ua_event = NULL;
5053
5054 ua_event = find_ust_app_event(ua_chan->events, uevent->attr.name,
5055 uevent->filter, uevent->attr.loglevel, uevent->exclusion);
5056 if (!ua_event) {
5057 ret = create_ust_app_event(ua_sess, ua_chan, uevent, app);
5058 if (ret < 0) {
5059 goto end;
5060 }
5061 } else {
5062 if (ua_event->enabled != uevent->enabled) {
5063 ret = uevent->enabled ?
5064 enable_ust_app_event(ua_sess, ua_event, app) :
5065 disable_ust_app_event(ua_sess, ua_event, app);
5066 }
5067 }
5068
5069end:
5070 return ret;
5071}
5072
5073/*
5074 * The caller must ensure that the application is compatible and is tracked
5075 * by the PID tracker.
5076 */
5077static
5078void ust_app_synchronize(struct ltt_ust_session *usess,
5079 struct ust_app *app)
5080{
5081 int ret = 0;
5082 struct cds_lfht_iter uchan_iter;
5083 struct ltt_ust_channel *uchan;
3d8ca23b 5084 struct ust_app_session *ua_sess = NULL;
1f3580c7 5085
88e3c2f5
JG
5086 /*
5087 * The application's configuration should only be synchronized for
5088 * active sessions.
5089 */
5090 assert(usess->active);
5091
5092 ret = find_or_create_ust_app_session(usess, app, &ua_sess, NULL);
3d8ca23b
DG
5093 if (ret < 0) {
5094 /* Tracer is probably gone or ENOMEM. */
487cf67c
DG
5095 goto error;
5096 }
3d8ca23b 5097 assert(ua_sess);
487cf67c 5098
d0b96690 5099 pthread_mutex_lock(&ua_sess->lock);
b161602a
MD
5100 if (ua_sess->deleted) {
5101 pthread_mutex_unlock(&ua_sess->lock);
5102 goto end;
5103 }
5104
88e3c2f5
JG
5105 rcu_read_lock();
5106 cds_lfht_for_each_entry(usess->domain_global.channels->ht, &uchan_iter,
5107 uchan, node.node) {
5108 struct ust_app_channel *ua_chan;
5109 struct cds_lfht_iter uevent_iter;
5110 struct ltt_ust_event *uevent;
487cf67c 5111
31746f93 5112 /*
88e3c2f5
JG
5113 * Search for a matching ust_app_channel. If none is found,
5114 * create it. Creating the channel will cause the ua_chan
5115 * structure to be allocated, the channel buffers to be
5116 * allocated (if necessary) and sent to the application, and
5117 * all enabled contexts will be added to the channel.
31746f93 5118 */
88e3c2f5
JG
5119 ret = find_or_create_ust_app_channel(usess, ua_sess,
5120 app, uchan, &ua_chan);
5121 if (ret) {
5122 /* Tracer is probably gone or ENOMEM. */
5123 goto error_unlock;
727d5404
DG
5124 }
5125
88e3c2f5
JG
5126 if (!ua_chan) {
5127 /* ua_chan will be NULL for the metadata channel */
5128 continue;
5129 }
727d5404 5130
88e3c2f5 5131 cds_lfht_for_each_entry(uchan->events->ht, &uevent_iter, uevent,
bec39940 5132 node.node) {
88e3c2f5
JG
5133 ret = ust_app_channel_synchronize_event(ua_chan,
5134 uevent, ua_sess, app);
5135 if (ret) {
d0b96690 5136 goto error_unlock;
487cf67c 5137 }
36dc12cc 5138 }
d0b96690 5139
88e3c2f5
JG
5140 if (ua_chan->enabled != uchan->enabled) {
5141 ret = uchan->enabled ?
5142 enable_ust_app_channel(ua_sess, uchan, app) :
5143 disable_ust_app_channel(ua_sess, ua_chan, app);
5144 if (ret) {
5145 goto error_unlock;
5146 }
5147 }
36dc12cc 5148 }
88e3c2f5 5149 rcu_read_unlock();
0498a00c 5150
a9ad0c8f 5151end:
88e3c2f5 5152 pthread_mutex_unlock(&ua_sess->lock);
ffe60014 5153 /* Everything went well at this point. */
ffe60014
DG
5154 return;
5155
d0b96690 5156error_unlock:
88e3c2f5 5157 rcu_read_unlock();
d0b96690 5158 pthread_mutex_unlock(&ua_sess->lock);
487cf67c 5159error:
ffe60014 5160 if (ua_sess) {
d0b96690 5161 destroy_app_session(app, ua_sess);
ffe60014 5162 }
487cf67c
DG
5163 return;
5164}
55cc08a6 5165
a9ad0c8f
MD
5166static
5167void ust_app_global_destroy(struct ltt_ust_session *usess, struct ust_app *app)
5168{
5169 struct ust_app_session *ua_sess;
5170
5171 ua_sess = lookup_session_by_app(usess, app);
5172 if (ua_sess == NULL) {
5173 return;
5174 }
5175 destroy_app_session(app, ua_sess);
5176}
5177
5178/*
5179 * Add channels/events from UST global domain to registered apps at sock.
5180 *
5181 * Called with session lock held.
5182 * Called with RCU read-side lock held.
5183 */
5184void ust_app_global_update(struct ltt_ust_session *usess, struct ust_app *app)
5185{
5186 assert(usess);
88e3c2f5 5187 assert(usess->active);
a9ad0c8f
MD
5188
5189 DBG2("UST app global update for app sock %d for session id %" PRIu64,
5190 app->sock, usess->id);
5191
5192 if (!app->compatible) {
5193 return;
5194 }
a9ad0c8f 5195 if (trace_ust_pid_tracker_lookup(usess, app->pid)) {
88e3c2f5
JG
5196 /*
5197 * Synchronize the application's internal tracing configuration
5198 * and start tracing.
5199 */
5200 ust_app_synchronize(usess, app);
5201 ust_app_start_trace(usess, app);
a9ad0c8f
MD
5202 } else {
5203 ust_app_global_destroy(usess, app);
5204 }
5205}
5206
5207/*
5208 * Called with session lock held.
5209 */
5210void ust_app_global_update_all(struct ltt_ust_session *usess)
5211{
5212 struct lttng_ht_iter iter;
5213 struct ust_app *app;
5214
5215 rcu_read_lock();
5216 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
5217 ust_app_global_update(usess, app);
5218 }
5219 rcu_read_unlock();
5220}
5221
55cc08a6
DG
5222/*
5223 * Add context to a specific channel for global UST domain.
5224 */
5225int ust_app_add_ctx_channel_glb(struct ltt_ust_session *usess,
5226 struct ltt_ust_channel *uchan, struct ltt_ust_context *uctx)
5227{
5228 int ret = 0;
bec39940
DG
5229 struct lttng_ht_node_str *ua_chan_node;
5230 struct lttng_ht_iter iter, uiter;
55cc08a6
DG
5231 struct ust_app_channel *ua_chan = NULL;
5232 struct ust_app_session *ua_sess;
5233 struct ust_app *app;
5234
88e3c2f5 5235 assert(usess->active);
0498a00c 5236
55cc08a6 5237 rcu_read_lock();
852d0037 5238 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
e0c7ec2b
DG
5239 if (!app->compatible) {
5240 /*
5241 * TODO: In time, we should notice the caller of this error by
5242 * telling him that this is a version error.
5243 */
5244 continue;
5245 }
55cc08a6
DG
5246 ua_sess = lookup_session_by_app(usess, app);
5247 if (ua_sess == NULL) {
5248 continue;
5249 }
5250
d0b96690 5251 pthread_mutex_lock(&ua_sess->lock);
b161602a
MD
5252
5253 if (ua_sess->deleted) {
5254 pthread_mutex_unlock(&ua_sess->lock);
5255 continue;
5256 }
5257
55cc08a6 5258 /* Lookup channel in the ust app session */
bec39940
DG
5259 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &uiter);
5260 ua_chan_node = lttng_ht_iter_get_node_str(&uiter);
55cc08a6 5261 if (ua_chan_node == NULL) {
d0b96690 5262 goto next_app;
55cc08a6
DG
5263 }
5264 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel,
5265 node);
c9edf082 5266 ret = create_ust_app_channel_context(ua_chan, &uctx->ctx, app);
55cc08a6 5267 if (ret < 0) {
d0b96690 5268 goto next_app;
55cc08a6 5269 }
d0b96690
DG
5270 next_app:
5271 pthread_mutex_unlock(&ua_sess->lock);
55cc08a6
DG
5272 }
5273
55cc08a6 5274 rcu_read_unlock();
76d45b40
DG
5275 return ret;
5276}
7f79d3a1 5277
d0b96690
DG
5278/*
5279 * Receive registration and populate the given msg structure.
5280 *
5281 * On success return 0 else a negative value returned by the ustctl call.
5282 */
5283int ust_app_recv_registration(int sock, struct ust_register_msg *msg)
5284{
5285 int ret;
5286 uint32_t pid, ppid, uid, gid;
5287
5288 assert(msg);
5289
5290 ret = ustctl_recv_reg_msg(sock, &msg->type, &msg->major, &msg->minor,
5291 &pid, &ppid, &uid, &gid,
5292 &msg->bits_per_long,
5293 &msg->uint8_t_alignment,
5294 &msg->uint16_t_alignment,
5295 &msg->uint32_t_alignment,
5296 &msg->uint64_t_alignment,
5297 &msg->long_alignment,
5298 &msg->byte_order,
5299 msg->name);
5300 if (ret < 0) {
5301 switch (-ret) {
5302 case EPIPE:
5303 case ECONNRESET:
5304 case LTTNG_UST_ERR_EXITING:
5305 DBG3("UST app recv reg message failed. Application died");
5306 break;
5307 case LTTNG_UST_ERR_UNSUP_MAJOR:
5308 ERR("UST app recv reg unsupported version %d.%d. Supporting %d.%d",
5309 msg->major, msg->minor, LTTNG_UST_ABI_MAJOR_VERSION,
5310 LTTNG_UST_ABI_MINOR_VERSION);
5311 break;
5312 default:
5313 ERR("UST app recv reg message failed with ret %d", ret);
5314 break;
5315 }
5316 goto error;
5317 }
5318 msg->pid = (pid_t) pid;
5319 msg->ppid = (pid_t) ppid;
5320 msg->uid = (uid_t) uid;
5321 msg->gid = (gid_t) gid;
5322
5323error:
5324 return ret;
5325}
5326
10b56aef
MD
5327/*
5328 * Return a ust app session object using the application object and the
5329 * session object descriptor has a key. If not found, NULL is returned.
5330 * A RCU read side lock MUST be acquired when calling this function.
5331*/
5332static struct ust_app_session *find_session_by_objd(struct ust_app *app,
5333 int objd)
5334{
5335 struct lttng_ht_node_ulong *node;
5336 struct lttng_ht_iter iter;
5337 struct ust_app_session *ua_sess = NULL;
5338
5339 assert(app);
5340
5341 lttng_ht_lookup(app->ust_sessions_objd, (void *)((unsigned long) objd), &iter);
5342 node = lttng_ht_iter_get_node_ulong(&iter);
5343 if (node == NULL) {
5344 DBG2("UST app session find by objd %d not found", objd);
5345 goto error;
5346 }
5347
5348 ua_sess = caa_container_of(node, struct ust_app_session, ust_objd_node);
5349
5350error:
5351 return ua_sess;
5352}
5353
d88aee68
DG
5354/*
5355 * Return a ust app channel object using the application object and the channel
5356 * object descriptor has a key. If not found, NULL is returned. A RCU read side
5357 * lock MUST be acquired before calling this function.
5358 */
d0b96690
DG
5359static struct ust_app_channel *find_channel_by_objd(struct ust_app *app,
5360 int objd)
5361{
5362 struct lttng_ht_node_ulong *node;
5363 struct lttng_ht_iter iter;
5364 struct ust_app_channel *ua_chan = NULL;
5365
5366 assert(app);
5367
5368 lttng_ht_lookup(app->ust_objd, (void *)((unsigned long) objd), &iter);
5369 node = lttng_ht_iter_get_node_ulong(&iter);
5370 if (node == NULL) {
5371 DBG2("UST app channel find by objd %d not found", objd);
5372 goto error;
5373 }
5374
5375 ua_chan = caa_container_of(node, struct ust_app_channel, ust_objd_node);
5376
5377error:
5378 return ua_chan;
5379}
5380
d88aee68
DG
5381/*
5382 * Reply to a register channel notification from an application on the notify
5383 * socket. The channel metadata is also created.
5384 *
5385 * The session UST registry lock is acquired in this function.
5386 *
5387 * On success 0 is returned else a negative value.
5388 */
8eede835 5389static int reply_ust_register_channel(int sock, int cobjd,
d0b96690
DG
5390 size_t nr_fields, struct ustctl_field *fields)
5391{
5392 int ret, ret_code = 0;
294e218e 5393 uint32_t chan_id;
7972aab2 5394 uint64_t chan_reg_key;
d0b96690
DG
5395 enum ustctl_channel_header type;
5396 struct ust_app *app;
5397 struct ust_app_channel *ua_chan;
5398 struct ust_app_session *ua_sess;
7972aab2 5399 struct ust_registry_session *registry;
45893984 5400 struct ust_registry_channel *chan_reg;
d0b96690
DG
5401
5402 rcu_read_lock();
5403
5404 /* Lookup application. If not found, there is a code flow error. */
5405 app = find_app_by_notify_sock(sock);
d88aee68 5406 if (!app) {
fad1ed2f 5407 DBG("Application socket %d is being torn down. Abort event notify",
d88aee68
DG
5408 sock);
5409 ret = 0;
5410 goto error_rcu_unlock;
5411 }
d0b96690 5412
4950b860 5413 /* Lookup channel by UST object descriptor. */
d0b96690 5414 ua_chan = find_channel_by_objd(app, cobjd);
4950b860 5415 if (!ua_chan) {
fad1ed2f 5416 DBG("Application channel is being torn down. Abort event notify");
4950b860
MD
5417 ret = 0;
5418 goto error_rcu_unlock;
5419 }
5420
d0b96690
DG
5421 assert(ua_chan->session);
5422 ua_sess = ua_chan->session;
d0b96690 5423
7972aab2
DG
5424 /* Get right session registry depending on the session buffer type. */
5425 registry = get_session_registry(ua_sess);
fad1ed2f
JR
5426 if (!registry) {
5427 DBG("Application session is being torn down. Abort event notify");
5428 ret = 0;
5429 goto error_rcu_unlock;
5430 };
45893984 5431
7972aab2
DG
5432 /* Depending on the buffer type, a different channel key is used. */
5433 if (ua_sess->buffer_type == LTTNG_BUFFER_PER_UID) {
5434 chan_reg_key = ua_chan->tracing_channel_id;
d0b96690 5435 } else {
7972aab2 5436 chan_reg_key = ua_chan->key;
d0b96690
DG
5437 }
5438
7972aab2
DG
5439 pthread_mutex_lock(&registry->lock);
5440
5441 chan_reg = ust_registry_channel_find(registry, chan_reg_key);
5442 assert(chan_reg);
5443
5444 if (!chan_reg->register_done) {
294e218e
MD
5445 /*
5446 * TODO: eventually use the registry event count for
5447 * this channel to better guess header type for per-pid
5448 * buffers.
5449 */
5450 type = USTCTL_CHANNEL_HEADER_LARGE;
7972aab2
DG
5451 chan_reg->nr_ctx_fields = nr_fields;
5452 chan_reg->ctx_fields = fields;
fad1ed2f 5453 fields = NULL;
7972aab2 5454 chan_reg->header_type = type;
d0b96690 5455 } else {
7972aab2
DG
5456 /* Get current already assigned values. */
5457 type = chan_reg->header_type;
d0b96690 5458 }
7972aab2
DG
5459 /* Channel id is set during the object creation. */
5460 chan_id = chan_reg->chan_id;
d0b96690
DG
5461
5462 /* Append to metadata */
7972aab2
DG
5463 if (!chan_reg->metadata_dumped) {
5464 ret_code = ust_metadata_channel_statedump(registry, chan_reg);
d0b96690
DG
5465 if (ret_code) {
5466 ERR("Error appending channel metadata (errno = %d)", ret_code);
5467 goto reply;
5468 }
5469 }
5470
5471reply:
7972aab2
DG
5472 DBG3("UST app replying to register channel key %" PRIu64
5473 " with id %u, type: %d, ret: %d", chan_reg_key, chan_id, type,
5474 ret_code);
d0b96690
DG
5475
5476 ret = ustctl_reply_register_channel(sock, chan_id, type, ret_code);
5477 if (ret < 0) {
5478 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
5479 ERR("UST app reply channel failed with ret %d", ret);
5480 } else {
5481 DBG3("UST app reply channel failed. Application died");
5482 }
5483 goto error;
5484 }
5485
7972aab2
DG
5486 /* This channel registry registration is completed. */
5487 chan_reg->register_done = 1;
5488
d0b96690 5489error:
7972aab2 5490 pthread_mutex_unlock(&registry->lock);
d88aee68 5491error_rcu_unlock:
d0b96690 5492 rcu_read_unlock();
fad1ed2f 5493 free(fields);
d0b96690
DG
5494 return ret;
5495}
5496
d88aee68
DG
5497/*
5498 * Add event to the UST channel registry. When the event is added to the
5499 * registry, the metadata is also created. Once done, this replies to the
5500 * application with the appropriate error code.
5501 *
5502 * The session UST registry lock is acquired in the function.
5503 *
5504 * On success 0 is returned else a negative value.
5505 */
d0b96690 5506static int add_event_ust_registry(int sock, int sobjd, int cobjd, char *name,
2106efa0
PP
5507 char *sig, size_t nr_fields, struct ustctl_field *fields,
5508 int loglevel_value, char *model_emf_uri)
d0b96690
DG
5509{
5510 int ret, ret_code;
5511 uint32_t event_id = 0;
7972aab2 5512 uint64_t chan_reg_key;
d0b96690
DG
5513 struct ust_app *app;
5514 struct ust_app_channel *ua_chan;
5515 struct ust_app_session *ua_sess;
7972aab2 5516 struct ust_registry_session *registry;
d0b96690
DG
5517
5518 rcu_read_lock();
5519
5520 /* Lookup application. If not found, there is a code flow error. */
5521 app = find_app_by_notify_sock(sock);
d88aee68 5522 if (!app) {
fad1ed2f 5523 DBG("Application socket %d is being torn down. Abort event notify",
d88aee68
DG
5524 sock);
5525 ret = 0;
5526 goto error_rcu_unlock;
5527 }
d0b96690 5528
4950b860 5529 /* Lookup channel by UST object descriptor. */
d0b96690 5530 ua_chan = find_channel_by_objd(app, cobjd);
4950b860 5531 if (!ua_chan) {
fad1ed2f 5532 DBG("Application channel is being torn down. Abort event notify");
4950b860
MD
5533 ret = 0;
5534 goto error_rcu_unlock;
5535 }
5536
d0b96690
DG
5537 assert(ua_chan->session);
5538 ua_sess = ua_chan->session;
5539
7972aab2 5540 registry = get_session_registry(ua_sess);
fad1ed2f
JR
5541 if (!registry) {
5542 DBG("Application session is being torn down. Abort event notify");
5543 ret = 0;
5544 goto error_rcu_unlock;
5545 }
7972aab2
DG
5546
5547 if (ua_sess->buffer_type == LTTNG_BUFFER_PER_UID) {
5548 chan_reg_key = ua_chan->tracing_channel_id;
5549 } else {
5550 chan_reg_key = ua_chan->key;
5551 }
5552
5553 pthread_mutex_lock(&registry->lock);
d0b96690 5554
d5d629b5
DG
5555 /*
5556 * From this point on, this call acquires the ownership of the sig, fields
5557 * and model_emf_uri meaning any free are done inside it if needed. These
5558 * three variables MUST NOT be read/write after this.
5559 */
7972aab2 5560 ret_code = ust_registry_create_event(registry, chan_reg_key,
2106efa0
PP
5561 sobjd, cobjd, name, sig, nr_fields, fields,
5562 loglevel_value, model_emf_uri, ua_sess->buffer_type,
5563 &event_id, app);
fad1ed2f
JR
5564 sig = NULL;
5565 fields = NULL;
5566 model_emf_uri = NULL;
d0b96690
DG
5567
5568 /*
5569 * The return value is returned to ustctl so in case of an error, the
5570 * application can be notified. In case of an error, it's important not to
5571 * return a negative error or else the application will get closed.
5572 */
5573 ret = ustctl_reply_register_event(sock, event_id, ret_code);
5574 if (ret < 0) {
5575 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
5576 ERR("UST app reply event failed with ret %d", ret);
5577 } else {
5578 DBG3("UST app reply event failed. Application died");
5579 }
5580 /*
5581 * No need to wipe the create event since the application socket will
5582 * get close on error hence cleaning up everything by itself.
5583 */
5584 goto error;
5585 }
5586
7972aab2
DG
5587 DBG3("UST registry event %s with id %" PRId32 " added successfully",
5588 name, event_id);
d88aee68 5589
d0b96690 5590error:
7972aab2 5591 pthread_mutex_unlock(&registry->lock);
d88aee68 5592error_rcu_unlock:
d0b96690 5593 rcu_read_unlock();
fad1ed2f
JR
5594 free(sig);
5595 free(fields);
5596 free(model_emf_uri);
d0b96690
DG
5597 return ret;
5598}
5599
10b56aef
MD
5600/*
5601 * Add enum to the UST session registry. Once done, this replies to the
5602 * application with the appropriate error code.
5603 *
5604 * The session UST registry lock is acquired within this function.
5605 *
5606 * On success 0 is returned else a negative value.
5607 */
5608static int add_enum_ust_registry(int sock, int sobjd, char *name,
5609 struct ustctl_enum_entry *entries, size_t nr_entries)
5610{
5611 int ret = 0, ret_code;
5612 struct ust_app *app;
5613 struct ust_app_session *ua_sess;
5614 struct ust_registry_session *registry;
5615 uint64_t enum_id = -1ULL;
5616
5617 rcu_read_lock();
5618
5619 /* Lookup application. If not found, there is a code flow error. */
5620 app = find_app_by_notify_sock(sock);
5621 if (!app) {
5622 /* Return an error since this is not an error */
5623 DBG("Application socket %d is being torn down. Aborting enum registration",
5624 sock);
5625 free(entries);
5626 goto error_rcu_unlock;
5627 }
5628
5629 /* Lookup session by UST object descriptor. */
5630 ua_sess = find_session_by_objd(app, sobjd);
5631 if (!ua_sess) {
5632 /* Return an error since this is not an error */
fad1ed2f 5633 DBG("Application session is being torn down (session not found). Aborting enum registration.");
10b56aef
MD
5634 free(entries);
5635 goto error_rcu_unlock;
5636 }
5637
5638 registry = get_session_registry(ua_sess);
fad1ed2f
JR
5639 if (!registry) {
5640 DBG("Application session is being torn down (registry not found). Aborting enum registration.");
5641 free(entries);
5642 goto error_rcu_unlock;
5643 }
10b56aef
MD
5644
5645 pthread_mutex_lock(&registry->lock);
5646
5647 /*
5648 * From this point on, the callee acquires the ownership of
5649 * entries. The variable entries MUST NOT be read/written after
5650 * call.
5651 */
5652 ret_code = ust_registry_create_or_find_enum(registry, sobjd, name,
5653 entries, nr_entries, &enum_id);
5654 entries = NULL;
5655
5656 /*
5657 * The return value is returned to ustctl so in case of an error, the
5658 * application can be notified. In case of an error, it's important not to
5659 * return a negative error or else the application will get closed.
5660 */
5661 ret = ustctl_reply_register_enum(sock, enum_id, ret_code);
5662 if (ret < 0) {
5663 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
5664 ERR("UST app reply enum failed with ret %d", ret);
5665 } else {
5666 DBG3("UST app reply enum failed. Application died");
5667 }
5668 /*
5669 * No need to wipe the create enum since the application socket will
5670 * get close on error hence cleaning up everything by itself.
5671 */
5672 goto error;
5673 }
5674
5675 DBG3("UST registry enum %s added successfully or already found", name);
5676
5677error:
5678 pthread_mutex_unlock(&registry->lock);
5679error_rcu_unlock:
5680 rcu_read_unlock();
5681 return ret;
5682}
5683
d88aee68
DG
5684/*
5685 * Handle application notification through the given notify socket.
5686 *
5687 * Return 0 on success or else a negative value.
5688 */
d0b96690
DG
5689int ust_app_recv_notify(int sock)
5690{
5691 int ret;
5692 enum ustctl_notify_cmd cmd;
5693
5694 DBG3("UST app receiving notify from sock %d", sock);
5695
5696 ret = ustctl_recv_notify(sock, &cmd);
5697 if (ret < 0) {
5698 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
5699 ERR("UST app recv notify failed with ret %d", ret);
5700 } else {
5701 DBG3("UST app recv notify failed. Application died");
5702 }
5703 goto error;
5704 }
5705
5706 switch (cmd) {
5707 case USTCTL_NOTIFY_CMD_EVENT:
5708 {
2106efa0 5709 int sobjd, cobjd, loglevel_value;
d0b96690
DG
5710 char name[LTTNG_UST_SYM_NAME_LEN], *sig, *model_emf_uri;
5711 size_t nr_fields;
5712 struct ustctl_field *fields;
5713
5714 DBG2("UST app ustctl register event received");
5715
2106efa0
PP
5716 ret = ustctl_recv_register_event(sock, &sobjd, &cobjd, name,
5717 &loglevel_value, &sig, &nr_fields, &fields,
5718 &model_emf_uri);
d0b96690
DG
5719 if (ret < 0) {
5720 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
5721 ERR("UST app recv event failed with ret %d", ret);
5722 } else {
5723 DBG3("UST app recv event failed. Application died");
5724 }
5725 goto error;
5726 }
5727
d5d629b5
DG
5728 /*
5729 * Add event to the UST registry coming from the notify socket. This
5730 * call will free if needed the sig, fields and model_emf_uri. This
5731 * code path loses the ownsership of these variables and transfer them
5732 * to the this function.
5733 */
d0b96690 5734 ret = add_event_ust_registry(sock, sobjd, cobjd, name, sig, nr_fields,
2106efa0 5735 fields, loglevel_value, model_emf_uri);
d0b96690
DG
5736 if (ret < 0) {
5737 goto error;
5738 }
5739
5740 break;
5741 }
5742 case USTCTL_NOTIFY_CMD_CHANNEL:
5743 {
5744 int sobjd, cobjd;
5745 size_t nr_fields;
5746 struct ustctl_field *fields;
5747
5748 DBG2("UST app ustctl register channel received");
5749
5750 ret = ustctl_recv_register_channel(sock, &sobjd, &cobjd, &nr_fields,
5751 &fields);
5752 if (ret < 0) {
5753 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
5754 ERR("UST app recv channel failed with ret %d", ret);
5755 } else {
5756 DBG3("UST app recv channel failed. Application died");
5757 }
5758 goto error;
5759 }
5760
d5d629b5
DG
5761 /*
5762 * The fields ownership are transfered to this function call meaning
5763 * that if needed it will be freed. After this, it's invalid to access
5764 * fields or clean it up.
5765 */
8eede835 5766 ret = reply_ust_register_channel(sock, cobjd, nr_fields,
d0b96690
DG
5767 fields);
5768 if (ret < 0) {
5769 goto error;
5770 }
5771
5772 break;
5773 }
10b56aef
MD
5774 case USTCTL_NOTIFY_CMD_ENUM:
5775 {
5776 int sobjd;
5777 char name[LTTNG_UST_SYM_NAME_LEN];
5778 size_t nr_entries;
5779 struct ustctl_enum_entry *entries;
5780
5781 DBG2("UST app ustctl register enum received");
5782
5783 ret = ustctl_recv_register_enum(sock, &sobjd, name,
5784 &entries, &nr_entries);
5785 if (ret < 0) {
5786 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
5787 ERR("UST app recv enum failed with ret %d", ret);
5788 } else {
5789 DBG3("UST app recv enum failed. Application died");
5790 }
5791 goto error;
5792 }
5793
5794 /* Callee assumes ownership of entries */
5795 ret = add_enum_ust_registry(sock, sobjd, name,
5796 entries, nr_entries);
5797 if (ret < 0) {
5798 goto error;
5799 }
5800
5801 break;
5802 }
d0b96690
DG
5803 default:
5804 /* Should NEVER happen. */
5805 assert(0);
5806 }
5807
5808error:
5809 return ret;
5810}
d88aee68
DG
5811
5812/*
5813 * Once the notify socket hangs up, this is called. First, it tries to find the
5814 * corresponding application. On failure, the call_rcu to close the socket is
5815 * executed. If an application is found, it tries to delete it from the notify
5816 * socket hash table. Whathever the result, it proceeds to the call_rcu.
5817 *
5818 * Note that an object needs to be allocated here so on ENOMEM failure, the
5819 * call RCU is not done but the rest of the cleanup is.
5820 */
5821void ust_app_notify_sock_unregister(int sock)
5822{
5823 int err_enomem = 0;
5824 struct lttng_ht_iter iter;
5825 struct ust_app *app;
5826 struct ust_app_notify_sock_obj *obj;
5827
5828 assert(sock >= 0);
5829
5830 rcu_read_lock();
5831
5832 obj = zmalloc(sizeof(*obj));
5833 if (!obj) {
5834 /*
5835 * An ENOMEM is kind of uncool. If this strikes we continue the
5836 * procedure but the call_rcu will not be called. In this case, we
5837 * accept the fd leak rather than possibly creating an unsynchronized
5838 * state between threads.
5839 *
5840 * TODO: The notify object should be created once the notify socket is
5841 * registered and stored independantely from the ust app object. The
5842 * tricky part is to synchronize the teardown of the application and
5843 * this notify object. Let's keep that in mind so we can avoid this
5844 * kind of shenanigans with ENOMEM in the teardown path.
5845 */
5846 err_enomem = 1;
5847 } else {
5848 obj->fd = sock;
5849 }
5850
5851 DBG("UST app notify socket unregister %d", sock);
5852
5853 /*
5854 * Lookup application by notify socket. If this fails, this means that the
5855 * hash table delete has already been done by the application
5856 * unregistration process so we can safely close the notify socket in a
5857 * call RCU.
5858 */
5859 app = find_app_by_notify_sock(sock);
5860 if (!app) {
5861 goto close_socket;
5862 }
5863
5864 iter.iter.node = &app->notify_sock_n.node;
5865
5866 /*
5867 * Whatever happens here either we fail or succeed, in both cases we have
5868 * to close the socket after a grace period to continue to the call RCU
5869 * here. If the deletion is successful, the application is not visible
5870 * anymore by other threads and is it fails it means that it was already
5871 * deleted from the hash table so either way we just have to close the
5872 * socket.
5873 */
5874 (void) lttng_ht_del(ust_app_ht_by_notify_sock, &iter);
5875
5876close_socket:
5877 rcu_read_unlock();
5878
5879 /*
5880 * Close socket after a grace period to avoid for the socket to be reused
5881 * before the application object is freed creating potential race between
5882 * threads trying to add unique in the global hash table.
5883 */
5884 if (!err_enomem) {
5885 call_rcu(&obj->head, close_notify_sock_rcu);
5886 }
5887}
f45e313d
DG
5888
5889/*
5890 * Destroy a ust app data structure and free its memory.
5891 */
5892void ust_app_destroy(struct ust_app *app)
5893{
5894 if (!app) {
5895 return;
5896 }
5897
5898 call_rcu(&app->pid_n.head, delete_ust_app_rcu);
5899}
6dc3064a
DG
5900
5901/*
5902 * Take a snapshot for a given UST session. The snapshot is sent to the given
5903 * output.
5904 *
9a654598 5905 * Returns LTTNG_OK on success or a LTTNG_ERR error code.
6dc3064a 5906 */
9a654598 5907enum lttng_error_code ust_app_snapshot_record(struct ltt_ust_session *usess,
d07ceecd
MD
5908 struct snapshot_output *output, int wait,
5909 uint64_t nb_packets_per_stream)
6dc3064a
DG
5910{
5911 int ret = 0;
9a654598 5912 enum lttng_error_code status = LTTNG_OK;
6dc3064a
DG
5913 struct lttng_ht_iter iter;
5914 struct ust_app *app;
af706bb7 5915 char pathname[PATH_MAX];
e32d7f27 5916 struct ltt_session *session = NULL;
e098433c 5917 uint64_t trace_archive_id;
6dc3064a
DG
5918
5919 assert(usess);
5920 assert(output);
5921
5922 rcu_read_lock();
5923
e098433c
JG
5924 session = session_find_by_id(usess->id);
5925 assert(session);
5926 assert(pthread_mutex_trylock(&session->lock));
5927 assert(session_trylock_list());
5928 trace_archive_id = session->current_archive_id;
5929
8c924c7b
MD
5930 switch (usess->buffer_type) {
5931 case LTTNG_BUFFER_PER_UID:
5932 {
5933 struct buffer_reg_uid *reg;
6dc3064a 5934
8c924c7b
MD
5935 cds_list_for_each_entry(reg, &usess->buffer_reg_uid_list, lnode) {
5936 struct buffer_reg_channel *reg_chan;
5937 struct consumer_socket *socket;
6dc3064a 5938
2b269489
JR
5939 if (!reg->registry->reg.ust->metadata_key) {
5940 /* Skip since no metadata is present */
5941 continue;
5942 }
5943
8c924c7b
MD
5944 /* Get consumer socket to use to push the metadata.*/
5945 socket = consumer_find_socket_by_bitness(reg->bits_per_long,
5946 usess->consumer);
5947 if (!socket) {
9a654598 5948 status = LTTNG_ERR_INVALID;
8c924c7b
MD
5949 goto error;
5950 }
6dc3064a 5951
8c924c7b
MD
5952 memset(pathname, 0, sizeof(pathname));
5953 ret = snprintf(pathname, sizeof(pathname),
5954 DEFAULT_UST_TRACE_DIR "/" DEFAULT_UST_TRACE_UID_PATH,
5955 reg->uid, reg->bits_per_long);
5956 if (ret < 0) {
5957 PERROR("snprintf snapshot path");
9a654598 5958 status = LTTNG_ERR_INVALID;
8c924c7b
MD
5959 goto error;
5960 }
5961
5962 /* Add the UST default trace dir to path. */
5963 cds_lfht_for_each_entry(reg->registry->channels->ht, &iter.iter,
5964 reg_chan, node.node) {
9a654598 5965 status = consumer_snapshot_channel(socket,
e098433c
JG
5966 reg_chan->consumer_key,
5967 output, 0, usess->uid,
5968 usess->gid, pathname, wait,
5969 nb_packets_per_stream,
5970 trace_archive_id);
9a654598 5971 if (status != LTTNG_OK) {
8c924c7b
MD
5972 goto error;
5973 }
5974 }
9a654598 5975 status = consumer_snapshot_channel(socket,
68808f4e 5976 reg->registry->reg.ust->metadata_key, output, 1,
e098433c
JG
5977 usess->uid, usess->gid, pathname, wait, 0,
5978 trace_archive_id);
9a654598 5979 if (status != LTTNG_OK) {
8c924c7b
MD
5980 goto error;
5981 }
af706bb7 5982 }
8c924c7b
MD
5983 break;
5984 }
5985 case LTTNG_BUFFER_PER_PID:
5986 {
5987 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
5988 struct consumer_socket *socket;
5989 struct lttng_ht_iter chan_iter;
5990 struct ust_app_channel *ua_chan;
5991 struct ust_app_session *ua_sess;
5992 struct ust_registry_session *registry;
5993
5994 ua_sess = lookup_session_by_app(usess, app);
5995 if (!ua_sess) {
5996 /* Session not associated with this app. */
5997 continue;
5998 }
af706bb7 5999
8c924c7b
MD
6000 /* Get the right consumer socket for the application. */
6001 socket = consumer_find_socket_by_bitness(app->bits_per_long,
6002 output->consumer);
6003 if (!socket) {
9a654598 6004 status = LTTNG_ERR_INVALID;
5c786ded
JD
6005 goto error;
6006 }
6007
8c924c7b
MD
6008 /* Add the UST default trace dir to path. */
6009 memset(pathname, 0, sizeof(pathname));
6010 ret = snprintf(pathname, sizeof(pathname), DEFAULT_UST_TRACE_DIR "/%s",
6011 ua_sess->path);
6dc3064a 6012 if (ret < 0) {
9a654598 6013 status = LTTNG_ERR_INVALID;
8c924c7b 6014 PERROR("snprintf snapshot path");
6dc3064a
DG
6015 goto error;
6016 }
6dc3064a 6017
8c924c7b
MD
6018 cds_lfht_for_each_entry(ua_sess->channels->ht, &chan_iter.iter,
6019 ua_chan, node.node) {
9a654598 6020 status = consumer_snapshot_channel(socket,
e098433c
JG
6021 ua_chan->key, output,
6022 0, ua_sess->euid, ua_sess->egid,
6023 pathname, wait,
6024 nb_packets_per_stream,
6025 trace_archive_id);
9a654598
JG
6026 switch (status) {
6027 case LTTNG_OK:
6028 break;
6029 case LTTNG_ERR_CHAN_NOT_FOUND:
6030 continue;
6031 default:
8c924c7b
MD
6032 goto error;
6033 }
6034 }
6035
6036 registry = get_session_registry(ua_sess);
fad1ed2f 6037 if (!registry) {
9bbfb88c
MD
6038 DBG("Application session is being torn down. Skip application.");
6039 continue;
fad1ed2f 6040 }
9a654598 6041 status = consumer_snapshot_channel(socket,
e098433c
JG
6042 registry->metadata_key, output,
6043 1, ua_sess->euid, ua_sess->egid,
6044 pathname, wait, 0,
6045 trace_archive_id);
9a654598
JG
6046 switch (status) {
6047 case LTTNG_OK:
6048 break;
6049 case LTTNG_ERR_CHAN_NOT_FOUND:
6050 continue;
6051 default:
8c924c7b
MD
6052 goto error;
6053 }
6054 }
6055 break;
6056 }
6057 default:
6058 assert(0);
6059 break;
6dc3064a
DG
6060 }
6061
6062error:
6063 rcu_read_unlock();
e32d7f27
JG
6064 if (session) {
6065 session_put(session);
6066 }
9a654598 6067 return status;
6dc3064a 6068}
5c786ded
JD
6069
6070/*
d07ceecd 6071 * Return the size taken by one more packet per stream.
5c786ded 6072 */
d07ceecd
MD
6073uint64_t ust_app_get_size_one_more_packet_per_stream(struct ltt_ust_session *usess,
6074 uint64_t cur_nr_packets)
5c786ded 6075{
d07ceecd 6076 uint64_t tot_size = 0;
5c786ded
JD
6077 struct ust_app *app;
6078 struct lttng_ht_iter iter;
6079
6080 assert(usess);
6081
6082 switch (usess->buffer_type) {
6083 case LTTNG_BUFFER_PER_UID:
6084 {
6085 struct buffer_reg_uid *reg;
6086
6087 cds_list_for_each_entry(reg, &usess->buffer_reg_uid_list, lnode) {
6088 struct buffer_reg_channel *reg_chan;
6089
b7064eaa 6090 rcu_read_lock();
5c786ded
JD
6091 cds_lfht_for_each_entry(reg->registry->channels->ht, &iter.iter,
6092 reg_chan, node.node) {
d07ceecd
MD
6093 if (cur_nr_packets >= reg_chan->num_subbuf) {
6094 /*
6095 * Don't take channel into account if we
6096 * already grab all its packets.
6097 */
6098 continue;
6099 }
6100 tot_size += reg_chan->subbuf_size * reg_chan->stream_count;
5c786ded 6101 }
b7064eaa 6102 rcu_read_unlock();
5c786ded
JD
6103 }
6104 break;
6105 }
6106 case LTTNG_BUFFER_PER_PID:
6107 {
6108 rcu_read_lock();
6109 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
6110 struct ust_app_channel *ua_chan;
6111 struct ust_app_session *ua_sess;
6112 struct lttng_ht_iter chan_iter;
6113
6114 ua_sess = lookup_session_by_app(usess, app);
6115 if (!ua_sess) {
6116 /* Session not associated with this app. */
6117 continue;
6118 }
6119
6120 cds_lfht_for_each_entry(ua_sess->channels->ht, &chan_iter.iter,
6121 ua_chan, node.node) {
d07ceecd
MD
6122 if (cur_nr_packets >= ua_chan->attr.num_subbuf) {
6123 /*
6124 * Don't take channel into account if we
6125 * already grab all its packets.
6126 */
6127 continue;
6128 }
6129 tot_size += ua_chan->attr.subbuf_size * ua_chan->streams.count;
5c786ded
JD
6130 }
6131 }
6132 rcu_read_unlock();
6133 break;
6134 }
6135 default:
6136 assert(0);
6137 break;
6138 }
6139
d07ceecd 6140 return tot_size;
5c786ded 6141}
fb83fe64
JD
6142
6143int ust_app_uid_get_channel_runtime_stats(uint64_t ust_session_id,
6144 struct cds_list_head *buffer_reg_uid_list,
6145 struct consumer_output *consumer, uint64_t uchan_id,
6146 int overwrite, uint64_t *discarded, uint64_t *lost)
6147{
6148 int ret;
6149 uint64_t consumer_chan_key;
6150
70dd8162
MD
6151 *discarded = 0;
6152 *lost = 0;
6153
fb83fe64 6154 ret = buffer_reg_uid_consumer_channel_key(
76604852 6155 buffer_reg_uid_list, uchan_id, &consumer_chan_key);
fb83fe64 6156 if (ret < 0) {
70dd8162
MD
6157 /* Not found */
6158 ret = 0;
fb83fe64
JD
6159 goto end;
6160 }
6161
6162 if (overwrite) {
6163 ret = consumer_get_lost_packets(ust_session_id,
6164 consumer_chan_key, consumer, lost);
6165 } else {
6166 ret = consumer_get_discarded_events(ust_session_id,
6167 consumer_chan_key, consumer, discarded);
6168 }
6169
6170end:
6171 return ret;
6172}
6173
6174int ust_app_pid_get_channel_runtime_stats(struct ltt_ust_session *usess,
6175 struct ltt_ust_channel *uchan,
6176 struct consumer_output *consumer, int overwrite,
6177 uint64_t *discarded, uint64_t *lost)
6178{
6179 int ret = 0;
6180 struct lttng_ht_iter iter;
6181 struct lttng_ht_node_str *ua_chan_node;
6182 struct ust_app *app;
6183 struct ust_app_session *ua_sess;
6184 struct ust_app_channel *ua_chan;
6185
70dd8162
MD
6186 *discarded = 0;
6187 *lost = 0;
6188
fb83fe64
JD
6189 rcu_read_lock();
6190 /*
70dd8162
MD
6191 * Iterate over every registered applications. Sum counters for
6192 * all applications containing requested session and channel.
fb83fe64
JD
6193 */
6194 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
6195 struct lttng_ht_iter uiter;
6196
6197 ua_sess = lookup_session_by_app(usess, app);
6198 if (ua_sess == NULL) {
6199 continue;
6200 }
6201
6202 /* Get channel */
ee022399 6203 lttng_ht_lookup(ua_sess->channels, (void *) uchan->name, &uiter);
fb83fe64
JD
6204 ua_chan_node = lttng_ht_iter_get_node_str(&uiter);
6205 /* If the session is found for the app, the channel must be there */
6206 assert(ua_chan_node);
6207
6208 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node);
6209
6210 if (overwrite) {
70dd8162
MD
6211 uint64_t _lost;
6212
fb83fe64 6213 ret = consumer_get_lost_packets(usess->id, ua_chan->key,
70dd8162
MD
6214 consumer, &_lost);
6215 if (ret < 0) {
6216 break;
6217 }
6218 (*lost) += _lost;
fb83fe64 6219 } else {
70dd8162
MD
6220 uint64_t _discarded;
6221
fb83fe64 6222 ret = consumer_get_discarded_events(usess->id,
70dd8162
MD
6223 ua_chan->key, consumer, &_discarded);
6224 if (ret < 0) {
6225 break;
6226 }
6227 (*discarded) += _discarded;
fb83fe64 6228 }
fb83fe64
JD
6229 }
6230
fb83fe64
JD
6231 rcu_read_unlock();
6232 return ret;
6233}
c2561365
JD
6234
6235static
6236int ust_app_regenerate_statedump(struct ltt_ust_session *usess,
6237 struct ust_app *app)
6238{
6239 int ret = 0;
6240 struct ust_app_session *ua_sess;
6241
6242 DBG("Regenerating the metadata for ust app pid %d", app->pid);
6243
6244 rcu_read_lock();
6245
6246 ua_sess = lookup_session_by_app(usess, app);
6247 if (ua_sess == NULL) {
6248 /* The session is in teardown process. Ignore and continue. */
6249 goto end;
6250 }
6251
6252 pthread_mutex_lock(&ua_sess->lock);
6253
6254 if (ua_sess->deleted) {
6255 goto end_unlock;
6256 }
6257
6258 pthread_mutex_lock(&app->sock_lock);
6259 ret = ustctl_regenerate_statedump(app->sock, ua_sess->handle);
6260 pthread_mutex_unlock(&app->sock_lock);
6261
6262end_unlock:
6263 pthread_mutex_unlock(&ua_sess->lock);
6264
6265end:
6266 rcu_read_unlock();
6267 health_code_update();
6268 return ret;
6269}
6270
6271/*
6272 * Regenerate the statedump for each app in the session.
6273 */
6274int ust_app_regenerate_statedump_all(struct ltt_ust_session *usess)
6275{
6276 int ret = 0;
6277 struct lttng_ht_iter iter;
6278 struct ust_app *app;
6279
6280 DBG("Regenerating the metadata for all UST apps");
6281
6282 rcu_read_lock();
6283
6284 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
6285 if (!app->compatible) {
6286 continue;
6287 }
6288
6289 ret = ust_app_regenerate_statedump(usess, app);
6290 if (ret < 0) {
6291 /* Continue to the next app even on error */
6292 continue;
6293 }
6294 }
6295
6296 rcu_read_unlock();
6297
6298 return 0;
6299}
5c408ad8
JD
6300
6301/*
6302 * Rotate all the channels of a session.
6303 *
6f6d3b69 6304 * Return LTTNG_OK on success or else an LTTng error code.
5c408ad8 6305 */
6f6d3b69 6306enum lttng_error_code ust_app_rotate_session(struct ltt_session *session)
5c408ad8 6307{
6f6d3b69
MD
6308 int ret;
6309 enum lttng_error_code cmd_ret = LTTNG_OK;
5c408ad8
JD
6310 struct lttng_ht_iter iter;
6311 struct ust_app *app;
6312 struct ltt_ust_session *usess = session->ust_session;
6313 char pathname[LTTNG_PATH_MAX];
6314
6315 assert(usess);
6316
6317 rcu_read_lock();
6318
6319 switch (usess->buffer_type) {
6320 case LTTNG_BUFFER_PER_UID:
6321 {
6322 struct buffer_reg_uid *reg;
6323
6324 cds_list_for_each_entry(reg, &usess->buffer_reg_uid_list, lnode) {
6325 struct buffer_reg_channel *reg_chan;
6326 struct consumer_socket *socket;
6327
6328 /* Get consumer socket to use to push the metadata.*/
6329 socket = consumer_find_socket_by_bitness(reg->bits_per_long,
6330 usess->consumer);
6331 if (!socket) {
6f6d3b69 6332 cmd_ret = LTTNG_ERR_INVALID;
5c408ad8
JD
6333 goto error;
6334 }
6335
5c408ad8
JD
6336 ret = snprintf(pathname, sizeof(pathname),
6337 DEFAULT_UST_TRACE_DIR "/" DEFAULT_UST_TRACE_UID_PATH,
6338 reg->uid, reg->bits_per_long);
b178f53e 6339 if (ret < 0 || ret >= sizeof(pathname)) {
5c408ad8 6340 PERROR("Failed to format rotation path");
6f6d3b69 6341 cmd_ret = LTTNG_ERR_INVALID;
5c408ad8
JD
6342 goto error;
6343 }
6344
6345 /* Rotate the data channels. */
6346 cds_lfht_for_each_entry(reg->registry->channels->ht, &iter.iter,
6347 reg_chan, node.node) {
5c408ad8
JD
6348 ret = consumer_rotate_channel(socket,
6349 reg_chan->consumer_key,
6350 usess->uid, usess->gid,
6351 usess->consumer, pathname,
6352 /* is_metadata_channel */ false,
92816cc3 6353 session->current_archive_id);
5c408ad8 6354 if (ret < 0) {
6f6d3b69 6355 cmd_ret = LTTNG_ERR_ROTATION_FAIL_CONSUMER;
5c408ad8
JD
6356 goto error;
6357 }
6358 }
6359
6360 (void) push_metadata(reg->registry->reg.ust, usess->consumer);
6361
6362 ret = consumer_rotate_channel(socket,
6363 reg->registry->reg.ust->metadata_key,
6364 usess->uid, usess->gid,
6365 usess->consumer, pathname,
6366 /* is_metadata_channel */ true,
92816cc3 6367 session->current_archive_id);
5c408ad8 6368 if (ret < 0) {
6f6d3b69 6369 cmd_ret = LTTNG_ERR_ROTATION_FAIL_CONSUMER;
5c408ad8
JD
6370 goto error;
6371 }
5c408ad8
JD
6372 }
6373 break;
6374 }
6375 case LTTNG_BUFFER_PER_PID:
6376 {
6377 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
6378 struct consumer_socket *socket;
6379 struct lttng_ht_iter chan_iter;
6380 struct ust_app_channel *ua_chan;
6381 struct ust_app_session *ua_sess;
6382 struct ust_registry_session *registry;
6383
6384 ua_sess = lookup_session_by_app(usess, app);
6385 if (!ua_sess) {
6386 /* Session not associated with this app. */
6387 continue;
6388 }
6389 ret = snprintf(pathname, sizeof(pathname),
6390 DEFAULT_UST_TRACE_DIR "/%s",
6391 ua_sess->path);
b178f53e 6392 if (ret < 0 || ret >= sizeof(pathname)) {
5c408ad8 6393 PERROR("Failed to format rotation path");
6f6d3b69 6394 cmd_ret = LTTNG_ERR_INVALID;
5c408ad8
JD
6395 goto error;
6396 }
6397
6398 /* Get the right consumer socket for the application. */
6399 socket = consumer_find_socket_by_bitness(app->bits_per_long,
6400 usess->consumer);
6401 if (!socket) {
6f6d3b69 6402 cmd_ret = LTTNG_ERR_INVALID;
5c408ad8
JD
6403 goto error;
6404 }
6405
6406 registry = get_session_registry(ua_sess);
6407 if (!registry) {
6f6d3b69
MD
6408 DBG("Application session is being torn down. Skip application.");
6409 continue;
5c408ad8
JD
6410 }
6411
5c408ad8
JD
6412
6413 /* Rotate the data channels. */
6414 cds_lfht_for_each_entry(ua_sess->channels->ht, &chan_iter.iter,
6415 ua_chan, node.node) {
5c408ad8
JD
6416 ret = consumer_rotate_channel(socket, ua_chan->key,
6417 ua_sess->euid, ua_sess->egid,
6418 ua_sess->consumer, pathname,
6419 /* is_metadata_channel */ false,
92816cc3 6420 session->current_archive_id);
5c408ad8 6421 if (ret < 0) {
6f6d3b69
MD
6422 /* Per-PID buffer and application going away. */
6423 if (ret == -LTTNG_ERR_CHAN_NOT_FOUND)
6424 continue;
6425 cmd_ret = LTTNG_ERR_ROTATION_FAIL_CONSUMER;
5c408ad8
JD
6426 goto error;
6427 }
6428 }
6429
6430 /* Rotate the metadata channel. */
6431 (void) push_metadata(registry, usess->consumer);
6432 ret = consumer_rotate_channel(socket, registry->metadata_key,
6433 ua_sess->euid, ua_sess->egid,
6434 ua_sess->consumer, pathname,
6435 /* is_metadata_channel */ true,
92816cc3 6436 session->current_archive_id);
5c408ad8 6437 if (ret < 0) {
6f6d3b69
MD
6438 /* Per-PID buffer and application going away. */
6439 if (ret == -LTTNG_ERR_CHAN_NOT_FOUND)
6440 continue;
6441 cmd_ret = LTTNG_ERR_ROTATION_FAIL_CONSUMER;
5c408ad8
JD
6442 goto error;
6443 }
5c408ad8
JD
6444 }
6445 break;
6446 }
6447 default:
6448 assert(0);
6449 break;
6450 }
6451
6f6d3b69 6452 cmd_ret = LTTNG_OK;
5c408ad8
JD
6453
6454error:
6455 rcu_read_unlock();
6f6d3b69 6456 return cmd_ret;
5c408ad8 6457}
This page took 0.479359 seconds and 5 git commands to generate.