Copy exclusion data in shadow_copy_event
[lttng-tools.git] / src / bin / lttng-sessiond / ust-app.c
CommitLineData
91d76f53
DG
1/*
2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
3 *
d14d33bf
AM
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License, version 2 only,
6 * as published by the Free Software Foundation.
91d76f53
DG
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
d14d33bf
AM
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
91d76f53
DG
16 */
17
18#define _GNU_SOURCE
19#include <errno.h>
7972aab2 20#include <inttypes.h>
91d76f53
DG
21#include <pthread.h>
22#include <stdio.h>
23#include <stdlib.h>
099e26bd 24#include <string.h>
aba8e916
DG
25#include <sys/stat.h>
26#include <sys/types.h>
099e26bd 27#include <unistd.h>
0df502fd 28#include <urcu/compiler.h>
fb54cdbf 29#include <lttng/ust-error.h>
331744e3 30#include <signal.h>
bec39940 31
990570ed 32#include <common/common.h>
86acf0da 33#include <common/sessiond-comm/sessiond-comm.h>
1e307fab 34
7972aab2 35#include "buffer-registry.h"
86acf0da 36#include "fd-limit.h"
8782cc74 37#include "health-sessiond.h"
56fff090 38#include "ust-app.h"
48842b30 39#include "ust-consumer.h"
d80a6244 40#include "ust-ctl.h"
0b2dc8df 41#include "utils.h"
d80a6244 42
d9bf3ca4
MD
43/* Next available channel key. Access under next_channel_key_lock. */
44static uint64_t _next_channel_key;
45static pthread_mutex_t next_channel_key_lock = PTHREAD_MUTEX_INITIALIZER;
46
47/* Next available session ID. Access under next_session_id_lock. */
48static uint64_t _next_session_id;
49static pthread_mutex_t next_session_id_lock = PTHREAD_MUTEX_INITIALIZER;
ffe60014
DG
50
51/*
d9bf3ca4 52 * Return the incremented value of next_channel_key.
ffe60014 53 */
d9bf3ca4 54static uint64_t get_next_channel_key(void)
ffe60014 55{
d9bf3ca4
MD
56 uint64_t ret;
57
58 pthread_mutex_lock(&next_channel_key_lock);
59 ret = ++_next_channel_key;
60 pthread_mutex_unlock(&next_channel_key_lock);
61 return ret;
ffe60014
DG
62}
63
64/*
7972aab2 65 * Return the atomically incremented value of next_session_id.
ffe60014 66 */
d9bf3ca4 67static uint64_t get_next_session_id(void)
ffe60014 68{
d9bf3ca4
MD
69 uint64_t ret;
70
71 pthread_mutex_lock(&next_session_id_lock);
72 ret = ++_next_session_id;
73 pthread_mutex_unlock(&next_session_id_lock);
74 return ret;
ffe60014
DG
75}
76
d65d2de8
DG
77static void copy_channel_attr_to_ustctl(
78 struct ustctl_consumer_channel_attr *attr,
79 struct lttng_ust_channel_attr *uattr)
80{
81 /* Copy event attributes since the layout is different. */
82 attr->subbuf_size = uattr->subbuf_size;
83 attr->num_subbuf = uattr->num_subbuf;
84 attr->overwrite = uattr->overwrite;
85 attr->switch_timer_interval = uattr->switch_timer_interval;
86 attr->read_timer_interval = uattr->read_timer_interval;
87 attr->output = uattr->output;
88}
89
025faf73
DG
90/*
91 * Match function for the hash table lookup.
92 *
93 * It matches an ust app event based on three attributes which are the event
94 * name, the filter bytecode and the loglevel.
95 */
18eace3b
DG
96static int ht_match_ust_app_event(struct cds_lfht_node *node, const void *_key)
97{
98 struct ust_app_event *event;
99 const struct ust_app_ht_key *key;
100
101 assert(node);
102 assert(_key);
103
104 event = caa_container_of(node, struct ust_app_event, node.node);
105 key = _key;
106
1af53eb5 107 /* Match the 4 elements of the key: name, filter, loglevel, exclusions */
18eace3b
DG
108
109 /* Event name */
110 if (strncmp(event->attr.name, key->name, sizeof(event->attr.name)) != 0) {
111 goto no_match;
112 }
113
114 /* Event loglevel. */
115 if (event->attr.loglevel != key->loglevel) {
025faf73
DG
116 if (event->attr.loglevel_type == LTTNG_UST_LOGLEVEL_ALL
117 && key->loglevel == 0 && event->attr.loglevel == -1) {
118 /*
119 * Match is accepted. This is because on event creation, the
120 * loglevel is set to -1 if the event loglevel type is ALL so 0 and
121 * -1 are accepted for this loglevel type since 0 is the one set by
122 * the API when receiving an enable event.
123 */
124 } else {
125 goto no_match;
126 }
18eace3b
DG
127 }
128
129 /* One of the filters is NULL, fail. */
130 if ((key->filter && !event->filter) || (!key->filter && event->filter)) {
131 goto no_match;
132 }
133
025faf73
DG
134 if (key->filter && event->filter) {
135 /* Both filters exists, check length followed by the bytecode. */
136 if (event->filter->len != key->filter->len ||
137 memcmp(event->filter->data, key->filter->data,
138 event->filter->len) != 0) {
139 goto no_match;
140 }
18eace3b
DG
141 }
142
1af53eb5
JI
143 /* One of the exclusions is NULL, fail. */
144 if ((key->exclusion && !event->exclusion) || (!key->exclusion && event->exclusion)) {
145 goto no_match;
146 }
147
148 if (key->exclusion && event->exclusion) {
149 /* Both exclusions exists, check count followed by the names. */
150 if (event->exclusion->count != key->exclusion->count ||
151 memcmp(event->exclusion->names, key->exclusion->names,
152 event->exclusion->count * LTTNG_UST_SYM_NAME_LEN) != 0) {
153 goto no_match;
154 }
155 }
156
157
025faf73 158 /* Match. */
18eace3b
DG
159 return 1;
160
161no_match:
162 return 0;
18eace3b
DG
163}
164
025faf73
DG
165/*
166 * Unique add of an ust app event in the given ht. This uses the custom
167 * ht_match_ust_app_event match function and the event name as hash.
168 */
d0b96690 169static void add_unique_ust_app_event(struct ust_app_channel *ua_chan,
18eace3b
DG
170 struct ust_app_event *event)
171{
172 struct cds_lfht_node *node_ptr;
173 struct ust_app_ht_key key;
d0b96690 174 struct lttng_ht *ht;
18eace3b 175
d0b96690
DG
176 assert(ua_chan);
177 assert(ua_chan->events);
18eace3b
DG
178 assert(event);
179
d0b96690 180 ht = ua_chan->events;
18eace3b
DG
181 key.name = event->attr.name;
182 key.filter = event->filter;
183 key.loglevel = event->attr.loglevel;
91c89f23 184 key.exclusion = event->exclusion;
18eace3b
DG
185
186 node_ptr = cds_lfht_add_unique(ht->ht,
187 ht->hash_fct(event->node.key, lttng_ht_seed),
188 ht_match_ust_app_event, &key, &event->node.node);
189 assert(node_ptr == &event->node.node);
190}
191
d88aee68
DG
192/*
193 * Close the notify socket from the given RCU head object. This MUST be called
194 * through a call_rcu().
195 */
196static void close_notify_sock_rcu(struct rcu_head *head)
197{
198 int ret;
199 struct ust_app_notify_sock_obj *obj =
200 caa_container_of(head, struct ust_app_notify_sock_obj, head);
201
202 /* Must have a valid fd here. */
203 assert(obj->fd >= 0);
204
205 ret = close(obj->fd);
206 if (ret) {
207 ERR("close notify sock %d RCU", obj->fd);
208 }
209 lttng_fd_put(LTTNG_FD_APPS, 1);
210
211 free(obj);
212}
213
7972aab2
DG
214/*
215 * Return the session registry according to the buffer type of the given
216 * session.
217 *
218 * A registry per UID object MUST exists before calling this function or else
219 * it assert() if not found. RCU read side lock must be acquired.
220 */
221static struct ust_registry_session *get_session_registry(
222 struct ust_app_session *ua_sess)
223{
224 struct ust_registry_session *registry = NULL;
225
226 assert(ua_sess);
227
228 switch (ua_sess->buffer_type) {
229 case LTTNG_BUFFER_PER_PID:
230 {
231 struct buffer_reg_pid *reg_pid = buffer_reg_pid_find(ua_sess->id);
232 if (!reg_pid) {
233 goto error;
234 }
235 registry = reg_pid->registry->reg.ust;
236 break;
237 }
238 case LTTNG_BUFFER_PER_UID:
239 {
240 struct buffer_reg_uid *reg_uid = buffer_reg_uid_find(
241 ua_sess->tracing_id, ua_sess->bits_per_long, ua_sess->uid);
242 if (!reg_uid) {
243 goto error;
244 }
245 registry = reg_uid->registry->reg.ust;
246 break;
247 }
248 default:
249 assert(0);
250 };
251
252error:
253 return registry;
254}
255
55cc08a6
DG
256/*
257 * Delete ust context safely. RCU read lock must be held before calling
258 * this function.
259 */
260static
261void delete_ust_app_ctx(int sock, struct ust_app_ctx *ua_ctx)
262{
ffe60014
DG
263 int ret;
264
265 assert(ua_ctx);
266
55cc08a6 267 if (ua_ctx->obj) {
ffe60014 268 ret = ustctl_release_object(sock, ua_ctx->obj);
d0b96690
DG
269 if (ret < 0 && ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
270 ERR("UST app sock %d release ctx obj handle %d failed with ret %d",
271 sock, ua_ctx->obj->handle, ret);
ffe60014 272 }
55cc08a6
DG
273 free(ua_ctx->obj);
274 }
275 free(ua_ctx);
276}
277
d80a6244
DG
278/*
279 * Delete ust app event safely. RCU read lock must be held before calling
280 * this function.
281 */
8b366481
DG
282static
283void delete_ust_app_event(int sock, struct ust_app_event *ua_event)
d80a6244 284{
ffe60014
DG
285 int ret;
286
287 assert(ua_event);
288
53a80697 289 free(ua_event->filter);
951f0b71
JI
290 if (ua_event->exclusion != NULL)
291 free(ua_event->exclusion);
edb67388 292 if (ua_event->obj != NULL) {
ffe60014
DG
293 ret = ustctl_release_object(sock, ua_event->obj);
294 if (ret < 0 && ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
295 ERR("UST app sock %d release event obj failed with ret %d",
296 sock, ret);
297 }
edb67388
DG
298 free(ua_event->obj);
299 }
d80a6244
DG
300 free(ua_event);
301}
302
303/*
7972aab2
DG
304 * Release ust data object of the given stream.
305 *
306 * Return 0 on success or else a negative value.
d80a6244 307 */
7972aab2 308static int release_ust_app_stream(int sock, struct ust_app_stream *stream)
d80a6244 309{
7972aab2 310 int ret = 0;
ffe60014
DG
311
312 assert(stream);
313
8b366481 314 if (stream->obj) {
ffe60014
DG
315 ret = ustctl_release_object(sock, stream->obj);
316 if (ret < 0 && ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
317 ERR("UST app sock %d release stream obj failed with ret %d",
318 sock, ret);
319 }
4063050c 320 lttng_fd_put(LTTNG_FD_APPS, 2);
8b366481
DG
321 free(stream->obj);
322 }
7972aab2
DG
323
324 return ret;
325}
326
327/*
328 * Delete ust app stream safely. RCU read lock must be held before calling
329 * this function.
330 */
331static
332void delete_ust_app_stream(int sock, struct ust_app_stream *stream)
333{
334 assert(stream);
335
336 (void) release_ust_app_stream(sock, stream);
84cd17c6 337 free(stream);
d80a6244
DG
338}
339
36b588ed
MD
340/*
341 * We need to execute ht_destroy outside of RCU read-side critical
0b2dc8df
MD
342 * section and outside of call_rcu thread, so we postpone its execution
343 * using ht_cleanup_push. It is simpler than to change the semantic of
344 * the many callers of delete_ust_app_session().
36b588ed
MD
345 */
346static
347void delete_ust_app_channel_rcu(struct rcu_head *head)
348{
349 struct ust_app_channel *ua_chan =
350 caa_container_of(head, struct ust_app_channel, rcu_head);
351
0b2dc8df
MD
352 ht_cleanup_push(ua_chan->ctx);
353 ht_cleanup_push(ua_chan->events);
36b588ed
MD
354 free(ua_chan);
355}
356
d80a6244
DG
357/*
358 * Delete ust app channel safely. RCU read lock must be held before calling
359 * this function.
360 */
8b366481 361static
d0b96690
DG
362void delete_ust_app_channel(int sock, struct ust_app_channel *ua_chan,
363 struct ust_app *app)
d80a6244
DG
364{
365 int ret;
bec39940 366 struct lttng_ht_iter iter;
d80a6244 367 struct ust_app_event *ua_event;
55cc08a6 368 struct ust_app_ctx *ua_ctx;
030a66fa 369 struct ust_app_stream *stream, *stmp;
7972aab2 370 struct ust_registry_session *registry;
d80a6244 371
ffe60014
DG
372 assert(ua_chan);
373
374 DBG3("UST app deleting channel %s", ua_chan->name);
375
55cc08a6 376 /* Wipe stream */
d80a6244 377 cds_list_for_each_entry_safe(stream, stmp, &ua_chan->streams.head, list) {
84cd17c6 378 cds_list_del(&stream->list);
d80a6244
DG
379 delete_ust_app_stream(sock, stream);
380 }
381
55cc08a6 382 /* Wipe context */
bec39940 383 cds_lfht_for_each_entry(ua_chan->ctx->ht, &iter.iter, ua_ctx, node.node) {
31746f93 384 cds_list_del(&ua_ctx->list);
bec39940 385 ret = lttng_ht_del(ua_chan->ctx, &iter);
55cc08a6
DG
386 assert(!ret);
387 delete_ust_app_ctx(sock, ua_ctx);
388 }
d80a6244 389
55cc08a6 390 /* Wipe events */
bec39940
DG
391 cds_lfht_for_each_entry(ua_chan->events->ht, &iter.iter, ua_event,
392 node.node) {
393 ret = lttng_ht_del(ua_chan->events, &iter);
525b0740 394 assert(!ret);
d80a6244
DG
395 delete_ust_app_event(sock, ua_event);
396 }
edb67388 397
c8335706
MD
398 if (ua_chan->session->buffer_type == LTTNG_BUFFER_PER_PID) {
399 /* Wipe and free registry from session registry. */
400 registry = get_session_registry(ua_chan->session);
401 if (registry) {
402 ust_registry_channel_del_free(registry, ua_chan->key);
403 }
7972aab2 404 }
d0b96690 405
edb67388 406 if (ua_chan->obj != NULL) {
d0b96690
DG
407 /* Remove channel from application UST object descriptor. */
408 iter.iter.node = &ua_chan->ust_objd_node.node;
409 lttng_ht_del(app->ust_objd, &iter);
ffe60014
DG
410 ret = ustctl_release_object(sock, ua_chan->obj);
411 if (ret < 0 && ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
412 ERR("UST app sock %d release channel obj failed with ret %d",
413 sock, ret);
414 }
7972aab2 415 lttng_fd_put(LTTNG_FD_APPS, 1);
edb67388
DG
416 free(ua_chan->obj);
417 }
36b588ed 418 call_rcu(&ua_chan->rcu_head, delete_ust_app_channel_rcu);
d80a6244
DG
419}
420
331744e3 421/*
1b532a60
DG
422 * Push metadata to consumer socket.
423 *
424 * The socket lock MUST be acquired.
425 * The ust app session lock MUST be acquired.
331744e3
JD
426 *
427 * On success, return the len of metadata pushed or else a negative value.
428 */
429ssize_t ust_app_push_metadata(struct ust_registry_session *registry,
430 struct consumer_socket *socket, int send_zero_data)
431{
432 int ret;
433 char *metadata_str = NULL;
434 size_t len, offset;
435 ssize_t ret_val;
436
437 assert(registry);
438 assert(socket);
1b532a60
DG
439
440 /*
441 * On a push metadata error either the consumer is dead or the metadata
442 * channel has been destroyed because its endpoint might have died (e.g:
443 * relayd). If so, the metadata closed flag is set to 1 so we deny pushing
444 * metadata again which is not valid anymore on the consumer side.
445 *
446 * The ust app session mutex locked allows us to make this check without
447 * the registry lock.
448 */
449 if (registry->metadata_closed) {
450 return -EPIPE;
451 }
331744e3
JD
452
453 pthread_mutex_lock(&registry->lock);
454
455 offset = registry->metadata_len_sent;
456 len = registry->metadata_len - registry->metadata_len_sent;
457 if (len == 0) {
458 DBG3("No metadata to push for metadata key %" PRIu64,
459 registry->metadata_key);
460 ret_val = len;
461 if (send_zero_data) {
462 DBG("No metadata to push");
463 goto push_data;
464 }
465 goto end;
466 }
467
468 /* Allocate only what we have to send. */
469 metadata_str = zmalloc(len);
470 if (!metadata_str) {
471 PERROR("zmalloc ust app metadata string");
472 ret_val = -ENOMEM;
473 goto error;
474 }
475 /* Copy what we haven't send out. */
476 memcpy(metadata_str, registry->metadata + offset, len);
477 registry->metadata_len_sent += len;
478
479push_data:
480 pthread_mutex_unlock(&registry->lock);
481 ret = consumer_push_metadata(socket, registry->metadata_key,
482 metadata_str, len, offset);
483 if (ret < 0) {
484 ret_val = ret;
485 goto error_push;
486 }
487
488 free(metadata_str);
489 return len;
490
491end:
492error:
493 pthread_mutex_unlock(&registry->lock);
494error_push:
495 free(metadata_str);
496 return ret_val;
497}
498
d88aee68
DG
499/*
500 * For a given application and session, push metadata to consumer. The session
501 * lock MUST be acquired here before calling this.
331744e3
JD
502 * Either sock or consumer is required : if sock is NULL, the default
503 * socket to send the metadata is retrieved from consumer, if sock
504 * is not NULL we use it to send the metadata.
d88aee68
DG
505 *
506 * Return 0 on success else a negative error.
507 */
7972aab2
DG
508static int push_metadata(struct ust_registry_session *registry,
509 struct consumer_output *consumer)
d88aee68 510{
331744e3
JD
511 int ret_val;
512 ssize_t ret;
d88aee68
DG
513 struct consumer_socket *socket;
514
7972aab2
DG
515 assert(registry);
516 assert(consumer);
517
518 rcu_read_lock();
d88aee68 519
7972aab2
DG
520 /*
521 * Means that no metadata was assigned to the session. This can happens if
522 * no start has been done previously.
523 */
524 if (!registry->metadata_key) {
331744e3 525 ret_val = 0;
1b532a60 526 goto end_rcu_unlock;
d88aee68
DG
527 }
528
d88aee68 529 /* Get consumer socket to use to push the metadata.*/
7972aab2
DG
530 socket = consumer_find_socket_by_bitness(registry->bits_per_long,
531 consumer);
d88aee68 532 if (!socket) {
331744e3 533 ret_val = -1;
d88aee68
DG
534 goto error_rcu_unlock;
535 }
536
537 /*
538 * TODO: Currently, we hold the socket lock around sampling of the next
539 * metadata segment to ensure we send metadata over the consumer socket in
540 * the correct order. This makes the registry lock nest inside the socket
541 * lock.
542 *
543 * Please note that this is a temporary measure: we should move this lock
544 * back into ust_consumer_push_metadata() when the consumer gets the
545 * ability to reorder the metadata it receives.
546 */
547 pthread_mutex_lock(socket->lock);
331744e3
JD
548 ret = ust_app_push_metadata(registry, socket, 0);
549 pthread_mutex_unlock(socket->lock);
d88aee68 550 if (ret < 0) {
331744e3 551 ret_val = ret;
d88aee68
DG
552 goto error_rcu_unlock;
553 }
554
d88aee68 555 rcu_read_unlock();
d88aee68
DG
556 return 0;
557
d88aee68 558error_rcu_unlock:
1b532a60
DG
559 /*
560 * On error, flag the registry that the metadata is closed. We were unable
561 * to push anything and this means that either the consumer is not
562 * responding or the metadata cache has been destroyed on the consumer.
563 */
564 registry->metadata_closed = 1;
565end_rcu_unlock:
d88aee68 566 rcu_read_unlock();
331744e3 567 return ret_val;
d88aee68
DG
568}
569
570/*
571 * Send to the consumer a close metadata command for the given session. Once
572 * done, the metadata channel is deleted and the session metadata pointer is
573 * nullified. The session lock MUST be acquired here unless the application is
574 * in the destroy path.
575 *
576 * Return 0 on success else a negative value.
577 */
7972aab2
DG
578static int close_metadata(struct ust_registry_session *registry,
579 struct consumer_output *consumer)
d88aee68
DG
580{
581 int ret;
582 struct consumer_socket *socket;
583
7972aab2
DG
584 assert(registry);
585 assert(consumer);
d88aee68 586
7972aab2
DG
587 rcu_read_lock();
588
589 if (!registry->metadata_key || registry->metadata_closed) {
d88aee68 590 ret = 0;
1b532a60 591 goto end;
d88aee68
DG
592 }
593
d88aee68 594 /* Get consumer socket to use to push the metadata.*/
7972aab2
DG
595 socket = consumer_find_socket_by_bitness(registry->bits_per_long,
596 consumer);
d88aee68
DG
597 if (!socket) {
598 ret = -1;
7972aab2 599 goto error;
d88aee68
DG
600 }
601
7972aab2 602 ret = consumer_close_metadata(socket, registry->metadata_key);
d88aee68 603 if (ret < 0) {
7972aab2 604 goto error;
d88aee68
DG
605 }
606
d88aee68 607error:
1b532a60
DG
608 /*
609 * Metadata closed. Even on error this means that the consumer is not
610 * responding or not found so either way a second close should NOT be emit
611 * for this registry.
612 */
613 registry->metadata_closed = 1;
614end:
7972aab2 615 rcu_read_unlock();
d88aee68
DG
616 return ret;
617}
618
36b588ed
MD
619/*
620 * We need to execute ht_destroy outside of RCU read-side critical
0b2dc8df
MD
621 * section and outside of call_rcu thread, so we postpone its execution
622 * using ht_cleanup_push. It is simpler than to change the semantic of
623 * the many callers of delete_ust_app_session().
36b588ed
MD
624 */
625static
626void delete_ust_app_session_rcu(struct rcu_head *head)
627{
628 struct ust_app_session *ua_sess =
629 caa_container_of(head, struct ust_app_session, rcu_head);
630
0b2dc8df 631 ht_cleanup_push(ua_sess->channels);
36b588ed
MD
632 free(ua_sess);
633}
634
d80a6244
DG
635/*
636 * Delete ust app session safely. RCU read lock must be held before calling
637 * this function.
638 */
8b366481 639static
d0b96690
DG
640void delete_ust_app_session(int sock, struct ust_app_session *ua_sess,
641 struct ust_app *app)
d80a6244
DG
642{
643 int ret;
bec39940 644 struct lttng_ht_iter iter;
d80a6244 645 struct ust_app_channel *ua_chan;
7972aab2 646 struct ust_registry_session *registry;
d80a6244 647
d88aee68
DG
648 assert(ua_sess);
649
1b532a60
DG
650 pthread_mutex_lock(&ua_sess->lock);
651
7972aab2 652 registry = get_session_registry(ua_sess);
1b532a60 653 if (registry && !registry->metadata_closed) {
d88aee68 654 /* Push metadata for application before freeing the application. */
7972aab2 655 (void) push_metadata(registry, ua_sess->consumer);
d88aee68 656
7972aab2
DG
657 /*
658 * Don't ask to close metadata for global per UID buffers. Close
1b532a60
DG
659 * metadata only on destroy trace session in this case. Also, the
660 * previous push metadata could have flag the metadata registry to
661 * close so don't send a close command if closed.
7972aab2 662 */
1b532a60
DG
663 if (ua_sess->buffer_type != LTTNG_BUFFER_PER_UID &&
664 !registry->metadata_closed) {
7972aab2
DG
665 /* And ask to close it for this session registry. */
666 (void) close_metadata(registry, ua_sess->consumer);
667 }
d80a6244
DG
668 }
669
bec39940
DG
670 cds_lfht_for_each_entry(ua_sess->channels->ht, &iter.iter, ua_chan,
671 node.node) {
672 ret = lttng_ht_del(ua_sess->channels, &iter);
525b0740 673 assert(!ret);
d0b96690 674 delete_ust_app_channel(sock, ua_chan, app);
d80a6244 675 }
d80a6244 676
7972aab2
DG
677 /* In case of per PID, the registry is kept in the session. */
678 if (ua_sess->buffer_type == LTTNG_BUFFER_PER_PID) {
679 struct buffer_reg_pid *reg_pid = buffer_reg_pid_find(ua_sess->id);
680 if (reg_pid) {
681 buffer_reg_pid_remove(reg_pid);
682 buffer_reg_pid_destroy(reg_pid);
683 }
684 }
d0b96690 685
aee6bafd 686 if (ua_sess->handle != -1) {
ffe60014
DG
687 ret = ustctl_release_handle(sock, ua_sess->handle);
688 if (ret < 0 && ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
689 ERR("UST app sock %d release session handle failed with ret %d",
690 sock, ret);
691 }
aee6bafd 692 }
1b532a60
DG
693 pthread_mutex_unlock(&ua_sess->lock);
694
36b588ed 695 call_rcu(&ua_sess->rcu_head, delete_ust_app_session_rcu);
d80a6244 696}
91d76f53
DG
697
698/*
284d8f55
DG
699 * Delete a traceable application structure from the global list. Never call
700 * this function outside of a call_rcu call.
36b588ed
MD
701 *
702 * RCU read side lock should _NOT_ be held when calling this function.
91d76f53 703 */
8b366481
DG
704static
705void delete_ust_app(struct ust_app *app)
91d76f53 706{
8b366481 707 int ret, sock;
d42f20df 708 struct ust_app_session *ua_sess, *tmp_ua_sess;
44d3bd01 709
d80a6244 710 /* Delete ust app sessions info */
852d0037
DG
711 sock = app->sock;
712 app->sock = -1;
d80a6244 713
8b366481 714 /* Wipe sessions */
d42f20df
DG
715 cds_list_for_each_entry_safe(ua_sess, tmp_ua_sess, &app->teardown_head,
716 teardown_node) {
717 /* Free every object in the session and the session. */
36b588ed 718 rcu_read_lock();
d0b96690 719 delete_ust_app_session(sock, ua_sess, app);
36b588ed 720 rcu_read_unlock();
d80a6244 721 }
36b588ed 722
0b2dc8df
MD
723 ht_cleanup_push(app->sessions);
724 ht_cleanup_push(app->ust_objd);
d80a6244 725
6414a713 726 /*
852d0037
DG
727 * Wait until we have deleted the application from the sock hash table
728 * before closing this socket, otherwise an application could re-use the
729 * socket ID and race with the teardown, using the same hash table entry.
730 *
731 * It's OK to leave the close in call_rcu. We want it to stay unique for
732 * all RCU readers that could run concurrently with unregister app,
733 * therefore we _need_ to only close that socket after a grace period. So
734 * it should stay in this RCU callback.
735 *
736 * This close() is a very important step of the synchronization model so
737 * every modification to this function must be carefully reviewed.
6414a713 738 */
799e2c4f
MD
739 ret = close(sock);
740 if (ret) {
741 PERROR("close");
742 }
4063050c 743 lttng_fd_put(LTTNG_FD_APPS, 1);
d80a6244 744
852d0037 745 DBG2("UST app pid %d deleted", app->pid);
284d8f55 746 free(app);
099e26bd
DG
747}
748
749/*
f6a9efaa 750 * URCU intermediate call to delete an UST app.
099e26bd 751 */
8b366481
DG
752static
753void delete_ust_app_rcu(struct rcu_head *head)
099e26bd 754{
bec39940
DG
755 struct lttng_ht_node_ulong *node =
756 caa_container_of(head, struct lttng_ht_node_ulong, head);
f6a9efaa 757 struct ust_app *app =
852d0037 758 caa_container_of(node, struct ust_app, pid_n);
f6a9efaa 759
852d0037 760 DBG3("Call RCU deleting app PID %d", app->pid);
f6a9efaa 761 delete_ust_app(app);
099e26bd
DG
762}
763
ffe60014
DG
764/*
765 * Delete the session from the application ht and delete the data structure by
766 * freeing every object inside and releasing them.
767 */
d0b96690 768static void destroy_app_session(struct ust_app *app,
ffe60014
DG
769 struct ust_app_session *ua_sess)
770{
771 int ret;
772 struct lttng_ht_iter iter;
773
774 assert(app);
775 assert(ua_sess);
776
777 iter.iter.node = &ua_sess->node.node;
778 ret = lttng_ht_del(app->sessions, &iter);
779 if (ret) {
780 /* Already scheduled for teardown. */
781 goto end;
782 }
783
784 /* Once deleted, free the data structure. */
d0b96690 785 delete_ust_app_session(app->sock, ua_sess, app);
ffe60014
DG
786
787end:
788 return;
789}
790
8b366481
DG
791/*
792 * Alloc new UST app session.
793 */
794static
d0b96690 795struct ust_app_session *alloc_ust_app_session(struct ust_app *app)
8b366481
DG
796{
797 struct ust_app_session *ua_sess;
798
799 /* Init most of the default value by allocating and zeroing */
800 ua_sess = zmalloc(sizeof(struct ust_app_session));
801 if (ua_sess == NULL) {
802 PERROR("malloc");
ffe60014 803 goto error_free;
8b366481
DG
804 }
805
806 ua_sess->handle = -1;
bec39940 807 ua_sess->channels = lttng_ht_new(0, LTTNG_HT_TYPE_STRING);
d0b96690 808 pthread_mutex_init(&ua_sess->lock, NULL);
ffe60014 809
8b366481
DG
810 return ua_sess;
811
ffe60014 812error_free:
8b366481
DG
813 return NULL;
814}
815
816/*
817 * Alloc new UST app channel.
818 */
819static
820struct ust_app_channel *alloc_ust_app_channel(char *name,
d0b96690 821 struct ust_app_session *ua_sess,
ffe60014 822 struct lttng_ust_channel_attr *attr)
8b366481
DG
823{
824 struct ust_app_channel *ua_chan;
825
826 /* Init most of the default value by allocating and zeroing */
827 ua_chan = zmalloc(sizeof(struct ust_app_channel));
828 if (ua_chan == NULL) {
829 PERROR("malloc");
830 goto error;
831 }
832
833 /* Setup channel name */
834 strncpy(ua_chan->name, name, sizeof(ua_chan->name));
835 ua_chan->name[sizeof(ua_chan->name) - 1] = '\0';
836
837 ua_chan->enabled = 1;
838 ua_chan->handle = -1;
45893984 839 ua_chan->session = ua_sess;
ffe60014 840 ua_chan->key = get_next_channel_key();
bec39940
DG
841 ua_chan->ctx = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
842 ua_chan->events = lttng_ht_new(0, LTTNG_HT_TYPE_STRING);
843 lttng_ht_node_init_str(&ua_chan->node, ua_chan->name);
8b366481
DG
844
845 CDS_INIT_LIST_HEAD(&ua_chan->streams.head);
31746f93 846 CDS_INIT_LIST_HEAD(&ua_chan->ctx_list);
8b366481
DG
847
848 /* Copy attributes */
849 if (attr) {
ffe60014 850 /* Translate from lttng_ust_channel to ustctl_consumer_channel_attr. */
2fe6e7f5
DG
851 ua_chan->attr.subbuf_size = attr->subbuf_size;
852 ua_chan->attr.num_subbuf = attr->num_subbuf;
853 ua_chan->attr.overwrite = attr->overwrite;
854 ua_chan->attr.switch_timer_interval = attr->switch_timer_interval;
855 ua_chan->attr.read_timer_interval = attr->read_timer_interval;
856 ua_chan->attr.output = attr->output;
8b366481 857 }
ffe60014
DG
858 /* By default, the channel is a per cpu channel. */
859 ua_chan->attr.type = LTTNG_UST_CHAN_PER_CPU;
8b366481
DG
860
861 DBG3("UST app channel %s allocated", ua_chan->name);
862
863 return ua_chan;
864
865error:
866 return NULL;
867}
868
37f1c236
DG
869/*
870 * Allocate and initialize a UST app stream.
871 *
872 * Return newly allocated stream pointer or NULL on error.
873 */
ffe60014 874struct ust_app_stream *ust_app_alloc_stream(void)
37f1c236
DG
875{
876 struct ust_app_stream *stream = NULL;
877
878 stream = zmalloc(sizeof(*stream));
879 if (stream == NULL) {
880 PERROR("zmalloc ust app stream");
881 goto error;
882 }
883
884 /* Zero could be a valid value for a handle so flag it to -1. */
885 stream->handle = -1;
886
887error:
888 return stream;
889}
890
8b366481
DG
891/*
892 * Alloc new UST app event.
893 */
894static
895struct ust_app_event *alloc_ust_app_event(char *name,
896 struct lttng_ust_event *attr)
897{
898 struct ust_app_event *ua_event;
899
900 /* Init most of the default value by allocating and zeroing */
901 ua_event = zmalloc(sizeof(struct ust_app_event));
902 if (ua_event == NULL) {
903 PERROR("malloc");
904 goto error;
905 }
906
907 ua_event->enabled = 1;
908 strncpy(ua_event->name, name, sizeof(ua_event->name));
909 ua_event->name[sizeof(ua_event->name) - 1] = '\0';
bec39940 910 lttng_ht_node_init_str(&ua_event->node, ua_event->name);
8b366481
DG
911
912 /* Copy attributes */
913 if (attr) {
914 memcpy(&ua_event->attr, attr, sizeof(ua_event->attr));
915 }
916
917 DBG3("UST app event %s allocated", ua_event->name);
918
919 return ua_event;
920
921error:
922 return NULL;
923}
924
925/*
926 * Alloc new UST app context.
927 */
928static
929struct ust_app_ctx *alloc_ust_app_ctx(struct lttng_ust_context *uctx)
930{
931 struct ust_app_ctx *ua_ctx;
932
933 ua_ctx = zmalloc(sizeof(struct ust_app_ctx));
934 if (ua_ctx == NULL) {
935 goto error;
936 }
937
31746f93
DG
938 CDS_INIT_LIST_HEAD(&ua_ctx->list);
939
8b366481
DG
940 if (uctx) {
941 memcpy(&ua_ctx->ctx, uctx, sizeof(ua_ctx->ctx));
942 }
943
944 DBG3("UST app context %d allocated", ua_ctx->ctx.ctx);
945
946error:
947 return ua_ctx;
948}
949
025faf73
DG
950/*
951 * Allocate a filter and copy the given original filter.
952 *
953 * Return allocated filter or NULL on error.
954 */
955static struct lttng_ust_filter_bytecode *alloc_copy_ust_app_filter(
956 struct lttng_ust_filter_bytecode *orig_f)
957{
958 struct lttng_ust_filter_bytecode *filter = NULL;
959
960 /* Copy filter bytecode */
961 filter = zmalloc(sizeof(*filter) + orig_f->len);
962 if (!filter) {
963 PERROR("zmalloc alloc ust app filter");
964 goto error;
965 }
966
967 memcpy(filter, orig_f, sizeof(*filter) + orig_f->len);
968
969error:
970 return filter;
971}
972
099e26bd 973/*
421cb601
DG
974 * Find an ust_app using the sock and return it. RCU read side lock must be
975 * held before calling this helper function.
099e26bd 976 */
f20baf8e 977struct ust_app *ust_app_find_by_sock(int sock)
099e26bd 978{
bec39940 979 struct lttng_ht_node_ulong *node;
bec39940 980 struct lttng_ht_iter iter;
f6a9efaa 981
852d0037 982 lttng_ht_lookup(ust_app_ht_by_sock, (void *)((unsigned long) sock), &iter);
bec39940 983 node = lttng_ht_iter_get_node_ulong(&iter);
f6a9efaa
DG
984 if (node == NULL) {
985 DBG2("UST app find by sock %d not found", sock);
f6a9efaa
DG
986 goto error;
987 }
852d0037
DG
988
989 return caa_container_of(node, struct ust_app, sock_n);
f6a9efaa
DG
990
991error:
992 return NULL;
099e26bd
DG
993}
994
d0b96690
DG
995/*
996 * Find an ust_app using the notify sock and return it. RCU read side lock must
997 * be held before calling this helper function.
998 */
999static struct ust_app *find_app_by_notify_sock(int sock)
1000{
1001 struct lttng_ht_node_ulong *node;
1002 struct lttng_ht_iter iter;
1003
1004 lttng_ht_lookup(ust_app_ht_by_notify_sock, (void *)((unsigned long) sock),
1005 &iter);
1006 node = lttng_ht_iter_get_node_ulong(&iter);
1007 if (node == NULL) {
1008 DBG2("UST app find by notify sock %d not found", sock);
1009 goto error;
1010 }
1011
1012 return caa_container_of(node, struct ust_app, notify_sock_n);
1013
1014error:
1015 return NULL;
1016}
1017
025faf73
DG
1018/*
1019 * Lookup for an ust app event based on event name, filter bytecode and the
1020 * event loglevel.
1021 *
1022 * Return an ust_app_event object or NULL on error.
1023 */
18eace3b 1024static struct ust_app_event *find_ust_app_event(struct lttng_ht *ht,
39c5a3a7
JI
1025 char *name, struct lttng_ust_filter_bytecode *filter, int loglevel,
1026 const struct lttng_event_exclusion *exclusion)
18eace3b
DG
1027{
1028 struct lttng_ht_iter iter;
1029 struct lttng_ht_node_str *node;
1030 struct ust_app_event *event = NULL;
1031 struct ust_app_ht_key key;
18eace3b
DG
1032
1033 assert(name);
1034 assert(ht);
1035
1036 /* Setup key for event lookup. */
1037 key.name = name;
1038 key.filter = filter;
1039 key.loglevel = loglevel;
39c5a3a7
JI
1040 /* lttng_event_exclusion and lttng_ust_event_exclusion structures are similar */
1041 key.exclusion = (struct lttng_ust_event_exclusion *)exclusion;
18eace3b 1042
025faf73
DG
1043 /* Lookup using the event name as hash and a custom match fct. */
1044 cds_lfht_lookup(ht->ht, ht->hash_fct((void *) name, lttng_ht_seed),
1045 ht_match_ust_app_event, &key, &iter.iter);
18eace3b
DG
1046 node = lttng_ht_iter_get_node_str(&iter);
1047 if (node == NULL) {
1048 goto end;
1049 }
1050
1051 event = caa_container_of(node, struct ust_app_event, node);
1052
1053end:
18eace3b
DG
1054 return event;
1055}
1056
55cc08a6
DG
1057/*
1058 * Create the channel context on the tracer.
d0b96690
DG
1059 *
1060 * Called with UST app session lock held.
55cc08a6
DG
1061 */
1062static
1063int create_ust_channel_context(struct ust_app_channel *ua_chan,
1064 struct ust_app_ctx *ua_ctx, struct ust_app *app)
1065{
1066 int ret;
1067
840cb59c 1068 health_code_update();
86acf0da 1069
852d0037 1070 ret = ustctl_add_context(app->sock, &ua_ctx->ctx,
55cc08a6
DG
1071 ua_chan->obj, &ua_ctx->obj);
1072 if (ret < 0) {
ffe60014
DG
1073 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
1074 ERR("UST app create channel context failed for app (pid: %d) "
1075 "with ret %d", app->pid, ret);
1076 } else {
3757b385
DG
1077 /*
1078 * This is normal behavior, an application can die during the
1079 * creation process. Don't report an error so the execution can
1080 * continue normally.
1081 */
1082 ret = 0;
ffe60014
DG
1083 DBG3("UST app disable event failed. Application is dead.");
1084 }
55cc08a6
DG
1085 goto error;
1086 }
1087
1088 ua_ctx->handle = ua_ctx->obj->handle;
1089
d0b96690
DG
1090 DBG2("UST app context handle %d created successfully for channel %s",
1091 ua_ctx->handle, ua_chan->name);
55cc08a6
DG
1092
1093error:
840cb59c 1094 health_code_update();
55cc08a6
DG
1095 return ret;
1096}
1097
53a80697
MD
1098/*
1099 * Set the filter on the tracer.
1100 */
1101static
1102int set_ust_event_filter(struct ust_app_event *ua_event,
1103 struct ust_app *app)
1104{
1105 int ret;
1106
840cb59c 1107 health_code_update();
86acf0da 1108
53a80697 1109 if (!ua_event->filter) {
86acf0da
DG
1110 ret = 0;
1111 goto error;
53a80697
MD
1112 }
1113
1114 ret = ustctl_set_filter(app->sock, ua_event->filter,
1115 ua_event->obj);
1116 if (ret < 0) {
ffe60014
DG
1117 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
1118 ERR("UST app event %s filter failed for app (pid: %d) "
1119 "with ret %d", ua_event->attr.name, app->pid, ret);
1120 } else {
3757b385
DG
1121 /*
1122 * This is normal behavior, an application can die during the
1123 * creation process. Don't report an error so the execution can
1124 * continue normally.
1125 */
1126 ret = 0;
ffe60014
DG
1127 DBG3("UST app filter event failed. Application is dead.");
1128 }
53a80697
MD
1129 goto error;
1130 }
1131
1132 DBG2("UST filter set successfully for event %s", ua_event->name);
1133
1134error:
840cb59c 1135 health_code_update();
53a80697
MD
1136 return ret;
1137}
1138
9730260e
DG
1139/*
1140 * Disable the specified event on to UST tracer for the UST session.
1141 */
1142static int disable_ust_event(struct ust_app *app,
1143 struct ust_app_session *ua_sess, struct ust_app_event *ua_event)
1144{
1145 int ret;
1146
840cb59c 1147 health_code_update();
86acf0da 1148
852d0037 1149 ret = ustctl_disable(app->sock, ua_event->obj);
9730260e 1150 if (ret < 0) {
ffe60014
DG
1151 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
1152 ERR("UST app event %s disable failed for app (pid: %d) "
1153 "and session handle %d with ret %d",
1154 ua_event->attr.name, app->pid, ua_sess->handle, ret);
1155 } else {
3757b385
DG
1156 /*
1157 * This is normal behavior, an application can die during the
1158 * creation process. Don't report an error so the execution can
1159 * continue normally.
1160 */
1161 ret = 0;
ffe60014
DG
1162 DBG3("UST app disable event failed. Application is dead.");
1163 }
9730260e
DG
1164 goto error;
1165 }
1166
1167 DBG2("UST app event %s disabled successfully for app (pid: %d)",
852d0037 1168 ua_event->attr.name, app->pid);
9730260e
DG
1169
1170error:
840cb59c 1171 health_code_update();
9730260e
DG
1172 return ret;
1173}
1174
78f0bacd
DG
1175/*
1176 * Disable the specified channel on to UST tracer for the UST session.
1177 */
1178static int disable_ust_channel(struct ust_app *app,
1179 struct ust_app_session *ua_sess, struct ust_app_channel *ua_chan)
1180{
1181 int ret;
1182
840cb59c 1183 health_code_update();
86acf0da 1184
852d0037 1185 ret = ustctl_disable(app->sock, ua_chan->obj);
78f0bacd 1186 if (ret < 0) {
ffe60014
DG
1187 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
1188 ERR("UST app channel %s disable failed for app (pid: %d) "
1189 "and session handle %d with ret %d",
1190 ua_chan->name, app->pid, ua_sess->handle, ret);
1191 } else {
3757b385
DG
1192 /*
1193 * This is normal behavior, an application can die during the
1194 * creation process. Don't report an error so the execution can
1195 * continue normally.
1196 */
1197 ret = 0;
ffe60014
DG
1198 DBG3("UST app disable channel failed. Application is dead.");
1199 }
78f0bacd
DG
1200 goto error;
1201 }
1202
78f0bacd 1203 DBG2("UST app channel %s disabled successfully for app (pid: %d)",
852d0037 1204 ua_chan->name, app->pid);
78f0bacd
DG
1205
1206error:
840cb59c 1207 health_code_update();
78f0bacd
DG
1208 return ret;
1209}
1210
1211/*
1212 * Enable the specified channel on to UST tracer for the UST session.
1213 */
1214static int enable_ust_channel(struct ust_app *app,
1215 struct ust_app_session *ua_sess, struct ust_app_channel *ua_chan)
1216{
1217 int ret;
1218
840cb59c 1219 health_code_update();
86acf0da 1220
852d0037 1221 ret = ustctl_enable(app->sock, ua_chan->obj);
78f0bacd 1222 if (ret < 0) {
ffe60014
DG
1223 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
1224 ERR("UST app channel %s enable failed for app (pid: %d) "
1225 "and session handle %d with ret %d",
1226 ua_chan->name, app->pid, ua_sess->handle, ret);
1227 } else {
3757b385
DG
1228 /*
1229 * This is normal behavior, an application can die during the
1230 * creation process. Don't report an error so the execution can
1231 * continue normally.
1232 */
1233 ret = 0;
ffe60014
DG
1234 DBG3("UST app enable channel failed. Application is dead.");
1235 }
78f0bacd
DG
1236 goto error;
1237 }
1238
1239 ua_chan->enabled = 1;
1240
1241 DBG2("UST app channel %s enabled successfully for app (pid: %d)",
852d0037 1242 ua_chan->name, app->pid);
78f0bacd
DG
1243
1244error:
840cb59c 1245 health_code_update();
78f0bacd
DG
1246 return ret;
1247}
1248
edb67388
DG
1249/*
1250 * Enable the specified event on to UST tracer for the UST session.
1251 */
1252static int enable_ust_event(struct ust_app *app,
1253 struct ust_app_session *ua_sess, struct ust_app_event *ua_event)
1254{
1255 int ret;
1256
840cb59c 1257 health_code_update();
86acf0da 1258
852d0037 1259 ret = ustctl_enable(app->sock, ua_event->obj);
edb67388 1260 if (ret < 0) {
ffe60014
DG
1261 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
1262 ERR("UST app event %s enable failed for app (pid: %d) "
1263 "and session handle %d with ret %d",
1264 ua_event->attr.name, app->pid, ua_sess->handle, ret);
1265 } else {
3757b385
DG
1266 /*
1267 * This is normal behavior, an application can die during the
1268 * creation process. Don't report an error so the execution can
1269 * continue normally.
1270 */
1271 ret = 0;
ffe60014
DG
1272 DBG3("UST app enable event failed. Application is dead.");
1273 }
edb67388
DG
1274 goto error;
1275 }
1276
1277 DBG2("UST app event %s enabled successfully for app (pid: %d)",
852d0037 1278 ua_event->attr.name, app->pid);
edb67388
DG
1279
1280error:
840cb59c 1281 health_code_update();
edb67388
DG
1282 return ret;
1283}
1284
099e26bd 1285/*
7972aab2 1286 * Send channel and stream buffer to application.
4f3ab6ee 1287 *
ffe60014 1288 * Return 0 on success. On error, a negative value is returned.
4f3ab6ee 1289 */
7972aab2
DG
1290static int send_channel_pid_to_ust(struct ust_app *app,
1291 struct ust_app_session *ua_sess, struct ust_app_channel *ua_chan)
4f3ab6ee
DG
1292{
1293 int ret;
ffe60014 1294 struct ust_app_stream *stream, *stmp;
4f3ab6ee
DG
1295
1296 assert(app);
ffe60014 1297 assert(ua_sess);
4f3ab6ee 1298 assert(ua_chan);
4f3ab6ee 1299
840cb59c 1300 health_code_update();
4f3ab6ee 1301
7972aab2
DG
1302 DBG("UST app sending channel %s to UST app sock %d", ua_chan->name,
1303 app->sock);
86acf0da 1304
ffe60014
DG
1305 /* Send channel to the application. */
1306 ret = ust_consumer_send_channel_to_ust(app, ua_sess, ua_chan);
5b4a0ec0 1307 if (ret < 0) {
b551a063
DG
1308 goto error;
1309 }
1310
d88aee68
DG
1311 health_code_update();
1312
ffe60014
DG
1313 /* Send all streams to application. */
1314 cds_list_for_each_entry_safe(stream, stmp, &ua_chan->streams.head, list) {
1315 ret = ust_consumer_send_stream_to_ust(app, ua_chan, stream);
1316 if (ret < 0) {
1317 goto error;
1318 }
1319 /* We don't need the stream anymore once sent to the tracer. */
1320 cds_list_del(&stream->list);
1321 delete_ust_app_stream(-1, stream);
1322 }
ffe60014
DG
1323 /* Flag the channel that it is sent to the application. */
1324 ua_chan->is_sent = 1;
ffe60014 1325
b551a063 1326error:
840cb59c 1327 health_code_update();
b551a063
DG
1328 return ret;
1329}
1330
91d76f53 1331/*
5b4a0ec0 1332 * Create the specified event onto the UST tracer for a UST session.
d0b96690
DG
1333 *
1334 * Should be called with session mutex held.
91d76f53 1335 */
edb67388
DG
1336static
1337int create_ust_event(struct ust_app *app, struct ust_app_session *ua_sess,
1338 struct ust_app_channel *ua_chan, struct ust_app_event *ua_event)
91d76f53 1339{
5b4a0ec0 1340 int ret = 0;
284d8f55 1341
840cb59c 1342 health_code_update();
86acf0da 1343
5b4a0ec0 1344 /* Create UST event on tracer */
852d0037 1345 ret = ustctl_create_event(app->sock, &ua_event->attr, ua_chan->obj,
5b4a0ec0
DG
1346 &ua_event->obj);
1347 if (ret < 0) {
ffe60014
DG
1348 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
1349 ERR("Error ustctl create event %s for app pid: %d with ret %d",
1350 ua_event->attr.name, app->pid, ret);
1351 } else {
3757b385
DG
1352 /*
1353 * This is normal behavior, an application can die during the
1354 * creation process. Don't report an error so the execution can
1355 * continue normally.
1356 */
1357 ret = 0;
ffe60014
DG
1358 DBG3("UST app create event failed. Application is dead.");
1359 }
5b4a0ec0 1360 goto error;
91d76f53 1361 }
f6a9efaa 1362
5b4a0ec0 1363 ua_event->handle = ua_event->obj->handle;
284d8f55 1364
5b4a0ec0 1365 DBG2("UST app event %s created successfully for pid:%d",
852d0037 1366 ua_event->attr.name, app->pid);
f6a9efaa 1367
840cb59c 1368 health_code_update();
86acf0da 1369
025faf73
DG
1370 /* Set filter if one is present. */
1371 if (ua_event->filter) {
1372 ret = set_ust_event_filter(ua_event, app);
1373 if (ret < 0) {
1374 goto error;
1375 }
1376 }
1377
8535a6d9 1378 /* If event not enabled, disable it on the tracer */
fc34caaa 1379 if (ua_event->enabled == 0) {
8535a6d9
DG
1380 ret = disable_ust_event(app, ua_sess, ua_event);
1381 if (ret < 0) {
fc34caaa
DG
1382 /*
1383 * If we hit an EPERM, something is wrong with our disable call. If
1384 * we get an EEXIST, there is a problem on the tracer side since we
1385 * just created it.
1386 */
1387 switch (ret) {
49c336c1 1388 case -LTTNG_UST_ERR_PERM:
fc34caaa
DG
1389 /* Code flow problem */
1390 assert(0);
49c336c1 1391 case -LTTNG_UST_ERR_EXIST:
fc34caaa
DG
1392 /* It's OK for our use case. */
1393 ret = 0;
1394 break;
1395 default:
1396 break;
1397 }
8535a6d9
DG
1398 goto error;
1399 }
1400 }
1401
5b4a0ec0 1402error:
840cb59c 1403 health_code_update();
5b4a0ec0 1404 return ret;
91d76f53 1405}
48842b30 1406
5b4a0ec0
DG
1407/*
1408 * Copy data between an UST app event and a LTT event.
1409 */
421cb601 1410static void shadow_copy_event(struct ust_app_event *ua_event,
48842b30
DG
1411 struct ltt_ust_event *uevent)
1412{
b4ffad32
JI
1413 size_t exclusion_alloc_size;
1414
48842b30
DG
1415 strncpy(ua_event->name, uevent->attr.name, sizeof(ua_event->name));
1416 ua_event->name[sizeof(ua_event->name) - 1] = '\0';
1417
fc34caaa
DG
1418 ua_event->enabled = uevent->enabled;
1419
5b4a0ec0
DG
1420 /* Copy event attributes */
1421 memcpy(&ua_event->attr, &uevent->attr, sizeof(ua_event->attr));
1422
53a80697
MD
1423 /* Copy filter bytecode */
1424 if (uevent->filter) {
025faf73
DG
1425 ua_event->filter = alloc_copy_ust_app_filter(uevent->filter);
1426 /* Filter might be NULL here in case of ENONEM. */
53a80697 1427 }
b4ffad32
JI
1428
1429 /* Copy exclusion data */
1430 if (uevent->exclusion) {
1431 exclusion_alloc_size = sizeof(struct lttng_ust_event_exclusion) +
1432 LTTNG_UST_SYM_NAME_LEN * uevent->exclusion->count;
1433 ua_event->exclusion = zmalloc(exclusion_alloc_size);
1434 if (ua_event->exclusion) {
1435 memcpy(ua_event->exclusion, uevent->exclusion, exclusion_alloc_size);
1436 }
1437 }
48842b30
DG
1438}
1439
5b4a0ec0
DG
1440/*
1441 * Copy data between an UST app channel and a LTT channel.
1442 */
421cb601 1443static void shadow_copy_channel(struct ust_app_channel *ua_chan,
48842b30
DG
1444 struct ltt_ust_channel *uchan)
1445{
bec39940 1446 struct lttng_ht_iter iter;
48842b30 1447 struct ltt_ust_event *uevent;
55cc08a6 1448 struct ltt_ust_context *uctx;
48842b30 1449 struct ust_app_event *ua_event;
55cc08a6 1450 struct ust_app_ctx *ua_ctx;
48842b30 1451
fc34caaa 1452 DBG2("UST app shadow copy of channel %s started", ua_chan->name);
48842b30
DG
1453
1454 strncpy(ua_chan->name, uchan->name, sizeof(ua_chan->name));
1455 ua_chan->name[sizeof(ua_chan->name) - 1] = '\0';
ffe60014 1456
1624d5b7
JD
1457 ua_chan->tracefile_size = uchan->tracefile_size;
1458 ua_chan->tracefile_count = uchan->tracefile_count;
1459
ffe60014
DG
1460 /* Copy event attributes since the layout is different. */
1461 ua_chan->attr.subbuf_size = uchan->attr.subbuf_size;
1462 ua_chan->attr.num_subbuf = uchan->attr.num_subbuf;
1463 ua_chan->attr.overwrite = uchan->attr.overwrite;
1464 ua_chan->attr.switch_timer_interval = uchan->attr.switch_timer_interval;
1465 ua_chan->attr.read_timer_interval = uchan->attr.read_timer_interval;
1466 ua_chan->attr.output = uchan->attr.output;
1467 /*
1468 * Note that the attribute channel type is not set since the channel on the
1469 * tracing registry side does not have this information.
1470 */
48842b30 1471
fc34caaa 1472 ua_chan->enabled = uchan->enabled;
7972aab2 1473 ua_chan->tracing_channel_id = uchan->id;
fc34caaa 1474
31746f93 1475 cds_list_for_each_entry(uctx, &uchan->ctx_list, list) {
55cc08a6
DG
1476 ua_ctx = alloc_ust_app_ctx(&uctx->ctx);
1477 if (ua_ctx == NULL) {
1478 continue;
1479 }
bec39940
DG
1480 lttng_ht_node_init_ulong(&ua_ctx->node,
1481 (unsigned long) ua_ctx->ctx.ctx);
1482 lttng_ht_add_unique_ulong(ua_chan->ctx, &ua_ctx->node);
31746f93 1483 cds_list_add_tail(&ua_ctx->list, &ua_chan->ctx_list);
55cc08a6 1484 }
48842b30 1485
421cb601 1486 /* Copy all events from ltt ust channel to ust app channel */
bec39940 1487 cds_lfht_for_each_entry(uchan->events->ht, &iter.iter, uevent, node.node) {
18eace3b 1488 ua_event = find_ust_app_event(ua_chan->events, uevent->attr.name,
39c5a3a7 1489 uevent->filter, uevent->attr.loglevel, uevent->exclusion);
18eace3b 1490 if (ua_event == NULL) {
421cb601 1491 DBG2("UST event %s not found on shadow copy channel",
48842b30 1492 uevent->attr.name);
284d8f55 1493 ua_event = alloc_ust_app_event(uevent->attr.name, &uevent->attr);
48842b30 1494 if (ua_event == NULL) {
5b4a0ec0 1495 continue;
48842b30 1496 }
421cb601 1497 shadow_copy_event(ua_event, uevent);
d0b96690 1498 add_unique_ust_app_event(ua_chan, ua_event);
48842b30 1499 }
48842b30
DG
1500 }
1501
fc34caaa 1502 DBG3("UST app shadow copy of channel %s done", ua_chan->name);
48842b30
DG
1503}
1504
5b4a0ec0
DG
1505/*
1506 * Copy data between a UST app session and a regular LTT session.
1507 */
421cb601 1508static void shadow_copy_session(struct ust_app_session *ua_sess,
bec39940 1509 struct ltt_ust_session *usess, struct ust_app *app)
48842b30 1510{
bec39940
DG
1511 struct lttng_ht_node_str *ua_chan_node;
1512 struct lttng_ht_iter iter;
48842b30
DG
1513 struct ltt_ust_channel *uchan;
1514 struct ust_app_channel *ua_chan;
477d7741
MD
1515 time_t rawtime;
1516 struct tm *timeinfo;
1517 char datetime[16];
1518 int ret;
1519
1520 /* Get date and time for unique app path */
1521 time(&rawtime);
1522 timeinfo = localtime(&rawtime);
1523 strftime(datetime, sizeof(datetime), "%Y%m%d-%H%M%S", timeinfo);
48842b30 1524
421cb601 1525 DBG2("Shadow copy of session handle %d", ua_sess->handle);
48842b30 1526
7972aab2
DG
1527 ua_sess->tracing_id = usess->id;
1528 ua_sess->id = get_next_session_id();
1529 ua_sess->uid = app->uid;
1530 ua_sess->gid = app->gid;
1531 ua_sess->euid = usess->uid;
1532 ua_sess->egid = usess->gid;
1533 ua_sess->buffer_type = usess->buffer_type;
1534 ua_sess->bits_per_long = app->bits_per_long;
1535 /* There is only one consumer object per session possible. */
1536 ua_sess->consumer = usess->consumer;
2bba9e53 1537 ua_sess->output_traces = usess->output_traces;
ecc48a90 1538 ua_sess->live_timer_interval = usess->live_timer_interval;
7972aab2
DG
1539
1540 switch (ua_sess->buffer_type) {
1541 case LTTNG_BUFFER_PER_PID:
1542 ret = snprintf(ua_sess->path, sizeof(ua_sess->path),
dec56f6c 1543 DEFAULT_UST_TRACE_PID_PATH "/%s-%d-%s", app->name, app->pid,
7972aab2
DG
1544 datetime);
1545 break;
1546 case LTTNG_BUFFER_PER_UID:
1547 ret = snprintf(ua_sess->path, sizeof(ua_sess->path),
1548 DEFAULT_UST_TRACE_UID_PATH, ua_sess->uid, app->bits_per_long);
1549 break;
1550 default:
1551 assert(0);
1552 goto error;
1553 }
477d7741
MD
1554 if (ret < 0) {
1555 PERROR("asprintf UST shadow copy session");
477d7741 1556 assert(0);
7972aab2 1557 goto error;
477d7741
MD
1558 }
1559
48842b30 1560 /* Iterate over all channels in global domain. */
bec39940
DG
1561 cds_lfht_for_each_entry(usess->domain_global.channels->ht, &iter.iter,
1562 uchan, node.node) {
1563 struct lttng_ht_iter uiter;
ba767faf 1564
bec39940
DG
1565 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &uiter);
1566 ua_chan_node = lttng_ht_iter_get_node_str(&uiter);
5b4a0ec0 1567 if (ua_chan_node != NULL) {
fc34caaa 1568 /* Session exist. Contiuing. */
5b4a0ec0
DG
1569 continue;
1570 }
421cb601 1571
5b4a0ec0
DG
1572 DBG2("Channel %s not found on shadow session copy, creating it",
1573 uchan->name);
d0b96690 1574 ua_chan = alloc_ust_app_channel(uchan->name, ua_sess, &uchan->attr);
5b4a0ec0 1575 if (ua_chan == NULL) {
fc34caaa 1576 /* malloc failed FIXME: Might want to do handle ENOMEM .. */
5b4a0ec0 1577 continue;
48842b30 1578 }
5b4a0ec0 1579 shadow_copy_channel(ua_chan, uchan);
ffe60014
DG
1580 /*
1581 * The concept of metadata channel does not exist on the tracing
1582 * registry side of the session daemon so this can only be a per CPU
1583 * channel and not metadata.
1584 */
1585 ua_chan->attr.type = LTTNG_UST_CHAN_PER_CPU;
1586
bec39940 1587 lttng_ht_add_unique_str(ua_sess->channels, &ua_chan->node);
48842b30 1588 }
7972aab2
DG
1589
1590error:
1591 return;
48842b30
DG
1592}
1593
78f0bacd
DG
1594/*
1595 * Lookup sesison wrapper.
1596 */
84cd17c6
MD
1597static
1598void __lookup_session_by_app(struct ltt_ust_session *usess,
bec39940 1599 struct ust_app *app, struct lttng_ht_iter *iter)
84cd17c6
MD
1600{
1601 /* Get right UST app session from app */
d9bf3ca4 1602 lttng_ht_lookup(app->sessions, &usess->id, iter);
84cd17c6
MD
1603}
1604
421cb601
DG
1605/*
1606 * Return ust app session from the app session hashtable using the UST session
a991f516 1607 * id.
421cb601 1608 */
48842b30
DG
1609static struct ust_app_session *lookup_session_by_app(
1610 struct ltt_ust_session *usess, struct ust_app *app)
1611{
bec39940 1612 struct lttng_ht_iter iter;
d9bf3ca4 1613 struct lttng_ht_node_u64 *node;
48842b30 1614
84cd17c6 1615 __lookup_session_by_app(usess, app, &iter);
d9bf3ca4 1616 node = lttng_ht_iter_get_node_u64(&iter);
48842b30
DG
1617 if (node == NULL) {
1618 goto error;
1619 }
1620
1621 return caa_container_of(node, struct ust_app_session, node);
1622
1623error:
1624 return NULL;
1625}
1626
7972aab2
DG
1627/*
1628 * Setup buffer registry per PID for the given session and application. If none
1629 * is found, a new one is created, added to the global registry and
1630 * initialized. If regp is valid, it's set with the newly created object.
1631 *
1632 * Return 0 on success or else a negative value.
1633 */
1634static int setup_buffer_reg_pid(struct ust_app_session *ua_sess,
1635 struct ust_app *app, struct buffer_reg_pid **regp)
1636{
1637 int ret = 0;
1638 struct buffer_reg_pid *reg_pid;
1639
1640 assert(ua_sess);
1641 assert(app);
1642
1643 rcu_read_lock();
1644
1645 reg_pid = buffer_reg_pid_find(ua_sess->id);
1646 if (!reg_pid) {
1647 /*
1648 * This is the create channel path meaning that if there is NO
1649 * registry available, we have to create one for this session.
1650 */
1651 ret = buffer_reg_pid_create(ua_sess->id, &reg_pid);
1652 if (ret < 0) {
1653 goto error;
1654 }
1655 buffer_reg_pid_add(reg_pid);
1656 } else {
1657 goto end;
1658 }
1659
1660 /* Initialize registry. */
1661 ret = ust_registry_session_init(&reg_pid->registry->reg.ust, app,
1662 app->bits_per_long, app->uint8_t_alignment,
1663 app->uint16_t_alignment, app->uint32_t_alignment,
af6142cf
MD
1664 app->uint64_t_alignment, app->long_alignment,
1665 app->byte_order, app->version.major,
1666 app->version.minor);
7972aab2
DG
1667 if (ret < 0) {
1668 goto error;
1669 }
1670
1671 DBG3("UST app buffer registry per PID created successfully");
1672
1673end:
1674 if (regp) {
1675 *regp = reg_pid;
1676 }
1677error:
1678 rcu_read_unlock();
1679 return ret;
1680}
1681
1682/*
1683 * Setup buffer registry per UID for the given session and application. If none
1684 * is found, a new one is created, added to the global registry and
1685 * initialized. If regp is valid, it's set with the newly created object.
1686 *
1687 * Return 0 on success or else a negative value.
1688 */
1689static int setup_buffer_reg_uid(struct ltt_ust_session *usess,
1690 struct ust_app *app, struct buffer_reg_uid **regp)
1691{
1692 int ret = 0;
1693 struct buffer_reg_uid *reg_uid;
1694
1695 assert(usess);
1696 assert(app);
1697
1698 rcu_read_lock();
1699
1700 reg_uid = buffer_reg_uid_find(usess->id, app->bits_per_long, app->uid);
1701 if (!reg_uid) {
1702 /*
1703 * This is the create channel path meaning that if there is NO
1704 * registry available, we have to create one for this session.
1705 */
1706 ret = buffer_reg_uid_create(usess->id, app->bits_per_long, app->uid,
1707 LTTNG_DOMAIN_UST, &reg_uid);
1708 if (ret < 0) {
1709 goto error;
1710 }
1711 buffer_reg_uid_add(reg_uid);
1712 } else {
1713 goto end;
1714 }
1715
1716 /* Initialize registry. */
af6142cf 1717 ret = ust_registry_session_init(&reg_uid->registry->reg.ust, NULL,
7972aab2
DG
1718 app->bits_per_long, app->uint8_t_alignment,
1719 app->uint16_t_alignment, app->uint32_t_alignment,
af6142cf
MD
1720 app->uint64_t_alignment, app->long_alignment,
1721 app->byte_order, app->version.major,
1722 app->version.minor);
7972aab2
DG
1723 if (ret < 0) {
1724 goto error;
1725 }
1726 /* Add node to teardown list of the session. */
1727 cds_list_add(&reg_uid->lnode, &usess->buffer_reg_uid_list);
1728
1729 DBG3("UST app buffer registry per UID created successfully");
1730
1731end:
1732 if (regp) {
1733 *regp = reg_uid;
1734 }
1735error:
1736 rcu_read_unlock();
1737 return ret;
1738}
1739
421cb601 1740/*
3d8ca23b 1741 * Create a session on the tracer side for the given app.
421cb601 1742 *
3d8ca23b
DG
1743 * On success, ua_sess_ptr is populated with the session pointer or else left
1744 * untouched. If the session was created, is_created is set to 1. On error,
1745 * it's left untouched. Note that ua_sess_ptr is mandatory but is_created can
1746 * be NULL.
1747 *
1748 * Returns 0 on success or else a negative code which is either -ENOMEM or
1749 * -ENOTCONN which is the default code if the ustctl_create_session fails.
421cb601 1750 */
3d8ca23b
DG
1751static int create_ust_app_session(struct ltt_ust_session *usess,
1752 struct ust_app *app, struct ust_app_session **ua_sess_ptr,
1753 int *is_created)
421cb601 1754{
3d8ca23b 1755 int ret, created = 0;
421cb601
DG
1756 struct ust_app_session *ua_sess;
1757
3d8ca23b
DG
1758 assert(usess);
1759 assert(app);
1760 assert(ua_sess_ptr);
1761
840cb59c 1762 health_code_update();
86acf0da 1763
421cb601
DG
1764 ua_sess = lookup_session_by_app(usess, app);
1765 if (ua_sess == NULL) {
d9bf3ca4 1766 DBG2("UST app pid: %d session id %" PRIu64 " not found, creating it",
852d0037 1767 app->pid, usess->id);
d0b96690 1768 ua_sess = alloc_ust_app_session(app);
421cb601
DG
1769 if (ua_sess == NULL) {
1770 /* Only malloc can failed so something is really wrong */
3d8ca23b
DG
1771 ret = -ENOMEM;
1772 goto error;
421cb601 1773 }
477d7741 1774 shadow_copy_session(ua_sess, usess, app);
3d8ca23b 1775 created = 1;
421cb601
DG
1776 }
1777
7972aab2
DG
1778 switch (usess->buffer_type) {
1779 case LTTNG_BUFFER_PER_PID:
1780 /* Init local registry. */
1781 ret = setup_buffer_reg_pid(ua_sess, app, NULL);
421cb601 1782 if (ret < 0) {
7972aab2
DG
1783 goto error;
1784 }
1785 break;
1786 case LTTNG_BUFFER_PER_UID:
1787 /* Look for a global registry. If none exists, create one. */
1788 ret = setup_buffer_reg_uid(usess, app, NULL);
1789 if (ret < 0) {
1790 goto error;
1791 }
1792 break;
1793 default:
1794 assert(0);
1795 ret = -EINVAL;
1796 goto error;
1797 }
1798
1799 health_code_update();
1800
1801 if (ua_sess->handle == -1) {
1802 ret = ustctl_create_session(app->sock);
1803 if (ret < 0) {
1804 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
1805 ERR("Creating session for app pid %d with ret %d",
ffe60014
DG
1806 app->pid, ret);
1807 } else {
1808 DBG("UST app creating session failed. Application is dead");
3757b385
DG
1809 /*
1810 * This is normal behavior, an application can die during the
1811 * creation process. Don't report an error so the execution can
1812 * continue normally. This will get flagged ENOTCONN and the
1813 * caller will handle it.
1814 */
1815 ret = 0;
ffe60014 1816 }
d0b96690 1817 delete_ust_app_session(-1, ua_sess, app);
3d8ca23b
DG
1818 if (ret != -ENOMEM) {
1819 /*
1820 * Tracer is probably gone or got an internal error so let's
1821 * behave like it will soon unregister or not usable.
1822 */
1823 ret = -ENOTCONN;
1824 }
1825 goto error;
421cb601
DG
1826 }
1827
7972aab2
DG
1828 ua_sess->handle = ret;
1829
1830 /* Add ust app session to app's HT */
d9bf3ca4
MD
1831 lttng_ht_node_init_u64(&ua_sess->node,
1832 ua_sess->tracing_id);
1833 lttng_ht_add_unique_u64(app->sessions, &ua_sess->node);
7972aab2
DG
1834
1835 DBG2("UST app session created successfully with handle %d", ret);
1836 }
1837
1838 *ua_sess_ptr = ua_sess;
1839 if (is_created) {
1840 *is_created = created;
1841 }
1842
1843 /* Everything went well. */
1844 ret = 0;
1845
1846error:
1847 health_code_update();
1848 return ret;
1849}
1850
1851/*
1852 * Create a context for the channel on the tracer.
1853 *
1854 * Called with UST app session lock held and a RCU read side lock.
1855 */
1856static
1857int create_ust_app_channel_context(struct ust_app_session *ua_sess,
1858 struct ust_app_channel *ua_chan, struct lttng_ust_context *uctx,
1859 struct ust_app *app)
1860{
1861 int ret = 0;
1862 struct lttng_ht_iter iter;
1863 struct lttng_ht_node_ulong *node;
1864 struct ust_app_ctx *ua_ctx;
1865
1866 DBG2("UST app adding context to channel %s", ua_chan->name);
1867
1868 lttng_ht_lookup(ua_chan->ctx, (void *)((unsigned long)uctx->ctx), &iter);
1869 node = lttng_ht_iter_get_node_ulong(&iter);
1870 if (node != NULL) {
1871 ret = -EEXIST;
1872 goto error;
1873 }
1874
1875 ua_ctx = alloc_ust_app_ctx(uctx);
1876 if (ua_ctx == NULL) {
1877 /* malloc failed */
1878 ret = -1;
1879 goto error;
1880 }
1881
1882 lttng_ht_node_init_ulong(&ua_ctx->node, (unsigned long) ua_ctx->ctx.ctx);
1883 lttng_ht_add_unique_ulong(ua_chan->ctx, &ua_ctx->node);
31746f93 1884 cds_list_add_tail(&ua_ctx->list, &ua_chan->ctx_list);
7972aab2
DG
1885
1886 ret = create_ust_channel_context(ua_chan, ua_ctx, app);
1887 if (ret < 0) {
1888 goto error;
1889 }
1890
1891error:
1892 return ret;
1893}
1894
1895/*
1896 * Enable on the tracer side a ust app event for the session and channel.
1897 *
1898 * Called with UST app session lock held.
1899 */
1900static
1901int enable_ust_app_event(struct ust_app_session *ua_sess,
1902 struct ust_app_event *ua_event, struct ust_app *app)
1903{
1904 int ret;
1905
1906 ret = enable_ust_event(app, ua_sess, ua_event);
1907 if (ret < 0) {
1908 goto error;
1909 }
1910
1911 ua_event->enabled = 1;
1912
1913error:
1914 return ret;
1915}
1916
1917/*
1918 * Disable on the tracer side a ust app event for the session and channel.
1919 */
1920static int disable_ust_app_event(struct ust_app_session *ua_sess,
1921 struct ust_app_event *ua_event, struct ust_app *app)
1922{
1923 int ret;
1924
1925 ret = disable_ust_event(app, ua_sess, ua_event);
1926 if (ret < 0) {
1927 goto error;
1928 }
1929
1930 ua_event->enabled = 0;
1931
1932error:
1933 return ret;
1934}
1935
1936/*
1937 * Lookup ust app channel for session and disable it on the tracer side.
1938 */
1939static
1940int disable_ust_app_channel(struct ust_app_session *ua_sess,
1941 struct ust_app_channel *ua_chan, struct ust_app *app)
1942{
1943 int ret;
1944
1945 ret = disable_ust_channel(app, ua_sess, ua_chan);
1946 if (ret < 0) {
1947 goto error;
1948 }
1949
1950 ua_chan->enabled = 0;
1951
1952error:
1953 return ret;
1954}
1955
1956/*
1957 * Lookup ust app channel for session and enable it on the tracer side. This
1958 * MUST be called with a RCU read side lock acquired.
1959 */
1960static int enable_ust_app_channel(struct ust_app_session *ua_sess,
1961 struct ltt_ust_channel *uchan, struct ust_app *app)
1962{
1963 int ret = 0;
1964 struct lttng_ht_iter iter;
1965 struct lttng_ht_node_str *ua_chan_node;
1966 struct ust_app_channel *ua_chan;
1967
1968 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &iter);
1969 ua_chan_node = lttng_ht_iter_get_node_str(&iter);
1970 if (ua_chan_node == NULL) {
d9bf3ca4 1971 DBG2("Unable to find channel %s in ust session id %" PRIu64,
7972aab2
DG
1972 uchan->name, ua_sess->tracing_id);
1973 goto error;
1974 }
1975
1976 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node);
1977
1978 ret = enable_ust_channel(app, ua_sess, ua_chan);
1979 if (ret < 0) {
1980 goto error;
1981 }
1982
1983error:
1984 return ret;
1985}
1986
1987/*
1988 * Ask the consumer to create a channel and get it if successful.
1989 *
1990 * Return 0 on success or else a negative value.
1991 */
1992static int do_consumer_create_channel(struct ltt_ust_session *usess,
1993 struct ust_app_session *ua_sess, struct ust_app_channel *ua_chan,
1994 int bitness, struct ust_registry_session *registry)
1995{
1996 int ret;
1997 unsigned int nb_fd = 0;
1998 struct consumer_socket *socket;
1999
2000 assert(usess);
2001 assert(ua_sess);
2002 assert(ua_chan);
2003 assert(registry);
2004
2005 rcu_read_lock();
2006 health_code_update();
2007
2008 /* Get the right consumer socket for the application. */
2009 socket = consumer_find_socket_by_bitness(bitness, usess->consumer);
2010 if (!socket) {
2011 ret = -EINVAL;
2012 goto error;
2013 }
2014
2015 health_code_update();
2016
2017 /* Need one fd for the channel. */
2018 ret = lttng_fd_get(LTTNG_FD_APPS, 1);
2019 if (ret < 0) {
2020 ERR("Exhausted number of available FD upon create channel");
2021 goto error;
2022 }
2023
2024 /*
2025 * Ask consumer to create channel. The consumer will return the number of
2026 * stream we have to expect.
2027 */
2028 ret = ust_consumer_ask_channel(ua_sess, ua_chan, usess->consumer, socket,
2029 registry);
2030 if (ret < 0) {
2031 goto error_ask;
2032 }
2033
2034 /*
2035 * Compute the number of fd needed before receiving them. It must be 2 per
2036 * stream (2 being the default value here).
2037 */
2038 nb_fd = DEFAULT_UST_STREAM_FD_NUM * ua_chan->expected_stream_count;
2039
2040 /* Reserve the amount of file descriptor we need. */
2041 ret = lttng_fd_get(LTTNG_FD_APPS, nb_fd);
2042 if (ret < 0) {
2043 ERR("Exhausted number of available FD upon create channel");
2044 goto error_fd_get_stream;
2045 }
2046
2047 health_code_update();
2048
2049 /*
2050 * Now get the channel from the consumer. This call wil populate the stream
2051 * list of that channel and set the ust objects.
2052 */
d9078d0c
DG
2053 if (usess->consumer->enabled) {
2054 ret = ust_consumer_get_channel(socket, ua_chan);
2055 if (ret < 0) {
2056 goto error_destroy;
2057 }
7972aab2
DG
2058 }
2059
2060 rcu_read_unlock();
2061 return 0;
2062
2063error_destroy:
2064 lttng_fd_put(LTTNG_FD_APPS, nb_fd);
2065error_fd_get_stream:
2066 /*
2067 * Initiate a destroy channel on the consumer since we had an error
2068 * handling it on our side. The return value is of no importance since we
2069 * already have a ret value set by the previous error that we need to
2070 * return.
2071 */
2072 (void) ust_consumer_destroy_channel(socket, ua_chan);
2073error_ask:
2074 lttng_fd_put(LTTNG_FD_APPS, 1);
2075error:
2076 health_code_update();
2077 rcu_read_unlock();
2078 return ret;
2079}
2080
2081/*
2082 * Duplicate the ust data object of the ust app stream and save it in the
2083 * buffer registry stream.
2084 *
2085 * Return 0 on success or else a negative value.
2086 */
2087static int duplicate_stream_object(struct buffer_reg_stream *reg_stream,
2088 struct ust_app_stream *stream)
2089{
2090 int ret;
2091
2092 assert(reg_stream);
2093 assert(stream);
2094
2095 /* Reserve the amount of file descriptor we need. */
2096 ret = lttng_fd_get(LTTNG_FD_APPS, 2);
2097 if (ret < 0) {
2098 ERR("Exhausted number of available FD upon duplicate stream");
2099 goto error;
2100 }
2101
2102 /* Duplicate object for stream once the original is in the registry. */
2103 ret = ustctl_duplicate_ust_object_data(&stream->obj,
2104 reg_stream->obj.ust);
2105 if (ret < 0) {
2106 ERR("Duplicate stream obj from %p to %p failed with ret %d",
2107 reg_stream->obj.ust, stream->obj, ret);
2108 lttng_fd_put(LTTNG_FD_APPS, 2);
2109 goto error;
2110 }
2111 stream->handle = stream->obj->handle;
2112
2113error:
2114 return ret;
2115}
2116
2117/*
2118 * Duplicate the ust data object of the ust app. channel and save it in the
2119 * buffer registry channel.
2120 *
2121 * Return 0 on success or else a negative value.
2122 */
2123static int duplicate_channel_object(struct buffer_reg_channel *reg_chan,
2124 struct ust_app_channel *ua_chan)
2125{
2126 int ret;
2127
2128 assert(reg_chan);
2129 assert(ua_chan);
2130
2131 /* Need two fds for the channel. */
2132 ret = lttng_fd_get(LTTNG_FD_APPS, 1);
2133 if (ret < 0) {
2134 ERR("Exhausted number of available FD upon duplicate channel");
2135 goto error_fd_get;
2136 }
2137
2138 /* Duplicate object for stream once the original is in the registry. */
2139 ret = ustctl_duplicate_ust_object_data(&ua_chan->obj, reg_chan->obj.ust);
2140 if (ret < 0) {
2141 ERR("Duplicate channel obj from %p to %p failed with ret: %d",
2142 reg_chan->obj.ust, ua_chan->obj, ret);
2143 goto error;
2144 }
2145 ua_chan->handle = ua_chan->obj->handle;
2146
2147 return 0;
2148
2149error:
2150 lttng_fd_put(LTTNG_FD_APPS, 1);
2151error_fd_get:
2152 return ret;
2153}
2154
2155/*
2156 * For a given channel buffer registry, setup all streams of the given ust
2157 * application channel.
2158 *
2159 * Return 0 on success or else a negative value.
2160 */
2161static int setup_buffer_reg_streams(struct buffer_reg_channel *reg_chan,
2162 struct ust_app_channel *ua_chan)
2163{
2164 int ret = 0;
2165 struct ust_app_stream *stream, *stmp;
2166
2167 assert(reg_chan);
2168 assert(ua_chan);
2169
2170 DBG2("UST app setup buffer registry stream");
2171
2172 /* Send all streams to application. */
2173 cds_list_for_each_entry_safe(stream, stmp, &ua_chan->streams.head, list) {
2174 struct buffer_reg_stream *reg_stream;
2175
2176 ret = buffer_reg_stream_create(&reg_stream);
2177 if (ret < 0) {
2178 goto error;
2179 }
2180
2181 /*
2182 * Keep original pointer and nullify it in the stream so the delete
2183 * stream call does not release the object.
2184 */
2185 reg_stream->obj.ust = stream->obj;
2186 stream->obj = NULL;
2187 buffer_reg_stream_add(reg_stream, reg_chan);
421cb601 2188
7972aab2
DG
2189 /* We don't need the streams anymore. */
2190 cds_list_del(&stream->list);
2191 delete_ust_app_stream(-1, stream);
2192 }
421cb601 2193
7972aab2
DG
2194error:
2195 return ret;
2196}
2197
2198/*
2199 * Create a buffer registry channel for the given session registry and
2200 * application channel object. If regp pointer is valid, it's set with the
2201 * created object. Important, the created object is NOT added to the session
2202 * registry hash table.
2203 *
2204 * Return 0 on success else a negative value.
2205 */
2206static int create_buffer_reg_channel(struct buffer_reg_session *reg_sess,
2207 struct ust_app_channel *ua_chan, struct buffer_reg_channel **regp)
2208{
2209 int ret;
2210 struct buffer_reg_channel *reg_chan = NULL;
2211
2212 assert(reg_sess);
2213 assert(ua_chan);
2214
2215 DBG2("UST app creating buffer registry channel for %s", ua_chan->name);
2216
2217 /* Create buffer registry channel. */
2218 ret = buffer_reg_channel_create(ua_chan->tracing_channel_id, &reg_chan);
2219 if (ret < 0) {
2220 goto error_create;
421cb601 2221 }
7972aab2
DG
2222 assert(reg_chan);
2223 reg_chan->consumer_key = ua_chan->key;
8c924c7b 2224 reg_chan->subbuf_size = ua_chan->attr.subbuf_size;
421cb601 2225
7972aab2
DG
2226 /* Create and add a channel registry to session. */
2227 ret = ust_registry_channel_add(reg_sess->reg.ust,
2228 ua_chan->tracing_channel_id);
2229 if (ret < 0) {
2230 goto error;
d88aee68 2231 }
7972aab2 2232 buffer_reg_channel_add(reg_sess, reg_chan);
d88aee68 2233
7972aab2
DG
2234 if (regp) {
2235 *regp = reg_chan;
3d8ca23b 2236 }
d88aee68 2237
7972aab2 2238 return 0;
3d8ca23b
DG
2239
2240error:
7972aab2
DG
2241 /* Safe because the registry channel object was not added to any HT. */
2242 buffer_reg_channel_destroy(reg_chan, LTTNG_DOMAIN_UST);
2243error_create:
3d8ca23b 2244 return ret;
421cb601
DG
2245}
2246
55cc08a6 2247/*
7972aab2
DG
2248 * Setup buffer registry channel for the given session registry and application
2249 * channel object. If regp pointer is valid, it's set with the created object.
d0b96690 2250 *
7972aab2 2251 * Return 0 on success else a negative value.
55cc08a6 2252 */
7972aab2
DG
2253static int setup_buffer_reg_channel(struct buffer_reg_session *reg_sess,
2254 struct ust_app_channel *ua_chan, struct buffer_reg_channel *reg_chan)
55cc08a6 2255{
7972aab2 2256 int ret;
55cc08a6 2257
7972aab2
DG
2258 assert(reg_sess);
2259 assert(reg_chan);
2260 assert(ua_chan);
2261 assert(ua_chan->obj);
55cc08a6 2262
7972aab2 2263 DBG2("UST app setup buffer registry channel for %s", ua_chan->name);
55cc08a6 2264
7972aab2
DG
2265 /* Setup all streams for the registry. */
2266 ret = setup_buffer_reg_streams(reg_chan, ua_chan);
2267 if (ret < 0) {
55cc08a6
DG
2268 goto error;
2269 }
2270
7972aab2
DG
2271 reg_chan->obj.ust = ua_chan->obj;
2272 ua_chan->obj = NULL;
55cc08a6 2273
7972aab2 2274 return 0;
55cc08a6
DG
2275
2276error:
7972aab2
DG
2277 buffer_reg_channel_remove(reg_sess, reg_chan);
2278 buffer_reg_channel_destroy(reg_chan, LTTNG_DOMAIN_UST);
55cc08a6
DG
2279 return ret;
2280}
2281
edb67388 2282/*
7972aab2 2283 * Send buffer registry channel to the application.
d0b96690 2284 *
7972aab2 2285 * Return 0 on success else a negative value.
edb67388 2286 */
7972aab2
DG
2287static int send_channel_uid_to_ust(struct buffer_reg_channel *reg_chan,
2288 struct ust_app *app, struct ust_app_session *ua_sess,
2289 struct ust_app_channel *ua_chan)
edb67388
DG
2290{
2291 int ret;
7972aab2 2292 struct buffer_reg_stream *reg_stream;
edb67388 2293
7972aab2
DG
2294 assert(reg_chan);
2295 assert(app);
2296 assert(ua_sess);
2297 assert(ua_chan);
2298
2299 DBG("UST app sending buffer registry channel to ust sock %d", app->sock);
2300
2301 ret = duplicate_channel_object(reg_chan, ua_chan);
edb67388
DG
2302 if (ret < 0) {
2303 goto error;
2304 }
2305
7972aab2
DG
2306 /* Send channel to the application. */
2307 ret = ust_consumer_send_channel_to_ust(app, ua_sess, ua_chan);
2308 if (ret < 0) {
2309 goto error;
2310 }
2311
2312 health_code_update();
2313
2314 /* Send all streams to application. */
2315 pthread_mutex_lock(&reg_chan->stream_list_lock);
2316 cds_list_for_each_entry(reg_stream, &reg_chan->streams, lnode) {
2317 struct ust_app_stream stream;
2318
2319 ret = duplicate_stream_object(reg_stream, &stream);
2320 if (ret < 0) {
2321 goto error_stream_unlock;
2322 }
2323
2324 ret = ust_consumer_send_stream_to_ust(app, ua_chan, &stream);
2325 if (ret < 0) {
8c067051 2326 (void) release_ust_app_stream(-1, &stream);
7972aab2
DG
2327 goto error_stream_unlock;
2328 }
edb67388 2329
7972aab2
DG
2330 /*
2331 * The return value is not important here. This function will output an
2332 * error if needed.
2333 */
2334 (void) release_ust_app_stream(-1, &stream);
2335 }
2336 ua_chan->is_sent = 1;
2337
2338error_stream_unlock:
2339 pthread_mutex_unlock(&reg_chan->stream_list_lock);
edb67388
DG
2340error:
2341 return ret;
2342}
2343
9730260e 2344/*
7972aab2
DG
2345 * Create and send to the application the created buffers with per UID buffers.
2346 *
2347 * Return 0 on success else a negative value.
9730260e 2348 */
7972aab2
DG
2349static int create_channel_per_uid(struct ust_app *app,
2350 struct ltt_ust_session *usess, struct ust_app_session *ua_sess,
2351 struct ust_app_channel *ua_chan)
9730260e
DG
2352{
2353 int ret;
7972aab2
DG
2354 struct buffer_reg_uid *reg_uid;
2355 struct buffer_reg_channel *reg_chan;
9730260e 2356
7972aab2
DG
2357 assert(app);
2358 assert(usess);
2359 assert(ua_sess);
2360 assert(ua_chan);
2361
2362 DBG("UST app creating channel %s with per UID buffers", ua_chan->name);
2363
2364 reg_uid = buffer_reg_uid_find(usess->id, app->bits_per_long, app->uid);
2365 /*
2366 * The session creation handles the creation of this global registry
2367 * object. If none can be find, there is a code flow problem or a
2368 * teardown race.
2369 */
2370 assert(reg_uid);
2371
2372 reg_chan = buffer_reg_channel_find(ua_chan->tracing_channel_id,
2373 reg_uid);
2374 if (!reg_chan) {
2375 /* Create the buffer registry channel object. */
2376 ret = create_buffer_reg_channel(reg_uid->registry, ua_chan, &reg_chan);
2377 if (ret < 0) {
2378 goto error;
2379 }
2380 assert(reg_chan);
2381
2382 /*
2383 * Create the buffers on the consumer side. This call populates the
2384 * ust app channel object with all streams and data object.
2385 */
2386 ret = do_consumer_create_channel(usess, ua_sess, ua_chan,
2387 app->bits_per_long, reg_uid->registry->reg.ust);
2388 if (ret < 0) {
07d2ae95
DG
2389 /*
2390 * Let's remove the previously created buffer registry channel so
2391 * it's not visible anymore in the session registry.
2392 */
2393 ust_registry_channel_del_free(reg_uid->registry->reg.ust,
2394 ua_chan->tracing_channel_id);
2395 buffer_reg_channel_remove(reg_uid->registry, reg_chan);
2396 buffer_reg_channel_destroy(reg_chan, LTTNG_DOMAIN_UST);
7972aab2
DG
2397 goto error;
2398 }
2399
2400 /*
2401 * Setup the streams and add it to the session registry.
2402 */
2403 ret = setup_buffer_reg_channel(reg_uid->registry, ua_chan, reg_chan);
2404 if (ret < 0) {
2405 goto error;
2406 }
2407
2408 }
2409
2410 /* Send buffers to the application. */
2411 ret = send_channel_uid_to_ust(reg_chan, app, ua_sess, ua_chan);
9730260e
DG
2412 if (ret < 0) {
2413 goto error;
2414 }
2415
9730260e
DG
2416error:
2417 return ret;
2418}
2419
78f0bacd 2420/*
7972aab2
DG
2421 * Create and send to the application the created buffers with per PID buffers.
2422 *
2423 * Return 0 on success else a negative value.
78f0bacd 2424 */
7972aab2
DG
2425static int create_channel_per_pid(struct ust_app *app,
2426 struct ltt_ust_session *usess, struct ust_app_session *ua_sess,
2427 struct ust_app_channel *ua_chan)
78f0bacd 2428{
8535a6d9 2429 int ret;
7972aab2 2430 struct ust_registry_session *registry;
78f0bacd 2431
7972aab2
DG
2432 assert(app);
2433 assert(usess);
2434 assert(ua_sess);
2435 assert(ua_chan);
2436
2437 DBG("UST app creating channel %s with per PID buffers", ua_chan->name);
2438
2439 rcu_read_lock();
2440
2441 registry = get_session_registry(ua_sess);
2442 assert(registry);
2443
2444 /* Create and add a new channel registry to session. */
2445 ret = ust_registry_channel_add(registry, ua_chan->key);
78f0bacd
DG
2446 if (ret < 0) {
2447 goto error;
2448 }
2449
7972aab2
DG
2450 /* Create and get channel on the consumer side. */
2451 ret = do_consumer_create_channel(usess, ua_sess, ua_chan,
2452 app->bits_per_long, registry);
2453 if (ret < 0) {
2454 goto error;
2455 }
2456
2457 ret = send_channel_pid_to_ust(app, ua_sess, ua_chan);
2458 if (ret < 0) {
2459 goto error;
2460 }
8535a6d9 2461
78f0bacd 2462error:
7972aab2 2463 rcu_read_unlock();
78f0bacd
DG
2464 return ret;
2465}
2466
2467/*
7972aab2
DG
2468 * From an already allocated ust app channel, create the channel buffers if
2469 * need and send it to the application. This MUST be called with a RCU read
2470 * side lock acquired.
2471 *
2472 * Return 0 on success or else a negative value.
78f0bacd 2473 */
7972aab2
DG
2474static int do_create_channel(struct ust_app *app,
2475 struct ltt_ust_session *usess, struct ust_app_session *ua_sess,
2476 struct ust_app_channel *ua_chan)
78f0bacd 2477{
7972aab2 2478 int ret;
78f0bacd 2479
7972aab2
DG
2480 assert(app);
2481 assert(usess);
2482 assert(ua_sess);
2483 assert(ua_chan);
2484
2485 /* Handle buffer type before sending the channel to the application. */
2486 switch (usess->buffer_type) {
2487 case LTTNG_BUFFER_PER_UID:
2488 {
2489 ret = create_channel_per_uid(app, usess, ua_sess, ua_chan);
2490 if (ret < 0) {
2491 goto error;
2492 }
2493 break;
2494 }
2495 case LTTNG_BUFFER_PER_PID:
2496 {
2497 ret = create_channel_per_pid(app, usess, ua_sess, ua_chan);
2498 if (ret < 0) {
2499 goto error;
2500 }
2501 break;
2502 }
2503 default:
2504 assert(0);
2505 ret = -EINVAL;
78f0bacd
DG
2506 goto error;
2507 }
2508
7972aab2
DG
2509 /* Initialize ust objd object using the received handle and add it. */
2510 lttng_ht_node_init_ulong(&ua_chan->ust_objd_node, ua_chan->handle);
2511 lttng_ht_add_unique_ulong(app->ust_objd, &ua_chan->ust_objd_node);
78f0bacd 2512
7972aab2
DG
2513 /* If channel is not enabled, disable it on the tracer */
2514 if (!ua_chan->enabled) {
2515 ret = disable_ust_channel(app, ua_sess, ua_chan);
2516 if (ret < 0) {
2517 goto error;
2518 }
78f0bacd
DG
2519 }
2520
2521error:
2522 return ret;
2523}
2524
284d8f55 2525/*
4d710ac2
DG
2526 * Create UST app channel and create it on the tracer. Set ua_chanp of the
2527 * newly created channel if not NULL.
d0b96690 2528 *
36b588ed 2529 * Called with UST app session lock and RCU read-side lock held.
7972aab2
DG
2530 *
2531 * Return 0 on success or else a negative value.
284d8f55 2532 */
4d710ac2
DG
2533static int create_ust_app_channel(struct ust_app_session *ua_sess,
2534 struct ltt_ust_channel *uchan, struct ust_app *app,
7972aab2 2535 enum lttng_ust_chan_type type, struct ltt_ust_session *usess,
4d710ac2 2536 struct ust_app_channel **ua_chanp)
5b4a0ec0
DG
2537{
2538 int ret = 0;
bec39940
DG
2539 struct lttng_ht_iter iter;
2540 struct lttng_ht_node_str *ua_chan_node;
5b4a0ec0
DG
2541 struct ust_app_channel *ua_chan;
2542
2543 /* Lookup channel in the ust app session */
bec39940
DG
2544 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &iter);
2545 ua_chan_node = lttng_ht_iter_get_node_str(&iter);
fc34caaa 2546 if (ua_chan_node != NULL) {
5b4a0ec0 2547 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node);
fc34caaa 2548 goto end;
5b4a0ec0
DG
2549 }
2550
d0b96690 2551 ua_chan = alloc_ust_app_channel(uchan->name, ua_sess, &uchan->attr);
fc34caaa
DG
2552 if (ua_chan == NULL) {
2553 /* Only malloc can fail here */
4d710ac2 2554 ret = -ENOMEM;
094d1690 2555 goto error_alloc;
fc34caaa
DG
2556 }
2557 shadow_copy_channel(ua_chan, uchan);
2558
ffe60014
DG
2559 /* Set channel type. */
2560 ua_chan->attr.type = type;
2561
7972aab2 2562 ret = do_create_channel(app, usess, ua_sess, ua_chan);
5b4a0ec0
DG
2563 if (ret < 0) {
2564 goto error;
2565 }
2566
fc34caaa 2567 DBG2("UST app create channel %s for PID %d completed", ua_chan->name,
852d0037 2568 app->pid);
fc34caaa 2569
d0b96690
DG
2570 /* Only add the channel if successful on the tracer side. */
2571 lttng_ht_add_unique_str(ua_sess->channels, &ua_chan->node);
2572
fc34caaa 2573end:
4d710ac2
DG
2574 if (ua_chanp) {
2575 *ua_chanp = ua_chan;
2576 }
2577
2578 /* Everything went well. */
2579 return 0;
5b4a0ec0
DG
2580
2581error:
d0b96690 2582 delete_ust_app_channel(ua_chan->is_sent ? app->sock : -1, ua_chan, app);
094d1690 2583error_alloc:
4d710ac2 2584 return ret;
5b4a0ec0
DG
2585}
2586
2587/*
2588 * Create UST app event and create it on the tracer side.
d0b96690
DG
2589 *
2590 * Called with ust app session mutex held.
5b4a0ec0 2591 */
edb67388
DG
2592static
2593int create_ust_app_event(struct ust_app_session *ua_sess,
2594 struct ust_app_channel *ua_chan, struct ltt_ust_event *uevent,
2595 struct ust_app *app)
284d8f55 2596{
edb67388 2597 int ret = 0;
5b4a0ec0 2598 struct ust_app_event *ua_event;
284d8f55 2599
5b4a0ec0 2600 /* Get event node */
18eace3b 2601 ua_event = find_ust_app_event(ua_chan->events, uevent->attr.name,
39c5a3a7 2602 uevent->filter, uevent->attr.loglevel, uevent->exclusion);
18eace3b 2603 if (ua_event != NULL) {
fc34caaa 2604 ret = -EEXIST;
edb67388
DG
2605 goto end;
2606 }
5b4a0ec0 2607
edb67388
DG
2608 /* Does not exist so create one */
2609 ua_event = alloc_ust_app_event(uevent->attr.name, &uevent->attr);
2610 if (ua_event == NULL) {
2611 /* Only malloc can failed so something is really wrong */
2612 ret = -ENOMEM;
fc34caaa 2613 goto end;
5b4a0ec0 2614 }
edb67388 2615 shadow_copy_event(ua_event, uevent);
5b4a0ec0 2616
edb67388 2617 /* Create it on the tracer side */
5b4a0ec0 2618 ret = create_ust_event(app, ua_sess, ua_chan, ua_event);
284d8f55 2619 if (ret < 0) {
fc34caaa 2620 /* Not found previously means that it does not exist on the tracer */
76f66f63 2621 assert(ret != -LTTNG_UST_ERR_EXIST);
284d8f55
DG
2622 goto error;
2623 }
2624
d0b96690 2625 add_unique_ust_app_event(ua_chan, ua_event);
284d8f55 2626
fc34caaa 2627 DBG2("UST app create event %s for PID %d completed", ua_event->name,
852d0037 2628 app->pid);
7f79d3a1 2629
edb67388 2630end:
fc34caaa
DG
2631 return ret;
2632
5b4a0ec0 2633error:
fc34caaa
DG
2634 /* Valid. Calling here is already in a read side lock */
2635 delete_ust_app_event(-1, ua_event);
edb67388 2636 return ret;
5b4a0ec0
DG
2637}
2638
2639/*
2640 * Create UST metadata and open it on the tracer side.
d0b96690 2641 *
7972aab2 2642 * Called with UST app session lock held and RCU read side lock.
5b4a0ec0
DG
2643 */
2644static int create_ust_app_metadata(struct ust_app_session *ua_sess,
d65d2de8
DG
2645 struct ust_app *app, struct consumer_output *consumer,
2646 struct ustctl_consumer_channel_attr *attr)
5b4a0ec0
DG
2647{
2648 int ret = 0;
ffe60014 2649 struct ust_app_channel *metadata;
d88aee68 2650 struct consumer_socket *socket;
7972aab2 2651 struct ust_registry_session *registry;
5b4a0ec0 2652
ffe60014
DG
2653 assert(ua_sess);
2654 assert(app);
d88aee68 2655 assert(consumer);
5b4a0ec0 2656
7972aab2
DG
2657 registry = get_session_registry(ua_sess);
2658 assert(registry);
2659
1b532a60
DG
2660 /* Metadata already exists for this registry or it was closed previously */
2661 if (registry->metadata_key || registry->metadata_closed) {
7972aab2
DG
2662 ret = 0;
2663 goto error;
5b4a0ec0
DG
2664 }
2665
ffe60014 2666 /* Allocate UST metadata */
d0b96690 2667 metadata = alloc_ust_app_channel(DEFAULT_METADATA_NAME, ua_sess, NULL);
ffe60014
DG
2668 if (!metadata) {
2669 /* malloc() failed */
2670 ret = -ENOMEM;
2671 goto error;
2672 }
5b4a0ec0 2673
d65d2de8
DG
2674 if (!attr) {
2675 /* Set default attributes for metadata. */
2676 metadata->attr.overwrite = DEFAULT_CHANNEL_OVERWRITE;
2677 metadata->attr.subbuf_size = default_get_metadata_subbuf_size();
2678 metadata->attr.num_subbuf = DEFAULT_METADATA_SUBBUF_NUM;
0a9c6494
DG
2679 metadata->attr.switch_timer_interval = DEFAULT_METADATA_SWITCH_TIMER;
2680 metadata->attr.read_timer_interval = DEFAULT_METADATA_READ_TIMER;
d65d2de8
DG
2681 metadata->attr.output = LTTNG_UST_MMAP;
2682 metadata->attr.type = LTTNG_UST_CHAN_METADATA;
2683 } else {
2684 memcpy(&metadata->attr, attr, sizeof(metadata->attr));
2685 metadata->attr.output = LTTNG_UST_MMAP;
2686 metadata->attr.type = LTTNG_UST_CHAN_METADATA;
2687 }
5b4a0ec0 2688
7972aab2
DG
2689 /* Need one fd for the channel. */
2690 ret = lttng_fd_get(LTTNG_FD_APPS, 1);
2691 if (ret < 0) {
2692 ERR("Exhausted number of available FD upon create metadata");
2693 goto error;
2694 }
2695
4dc3dfc5
DG
2696 /* Get the right consumer socket for the application. */
2697 socket = consumer_find_socket_by_bitness(app->bits_per_long, consumer);
2698 if (!socket) {
2699 ret = -EINVAL;
2700 goto error_consumer;
2701 }
2702
331744e3
JD
2703 /*
2704 * Keep metadata key so we can identify it on the consumer side. Assign it
2705 * to the registry *before* we ask the consumer so we avoid the race of the
2706 * consumer requesting the metadata and the ask_channel call on our side
2707 * did not returned yet.
2708 */
2709 registry->metadata_key = metadata->key;
2710
d88aee68
DG
2711 /*
2712 * Ask the metadata channel creation to the consumer. The metadata object
2713 * will be created by the consumer and kept their. However, the stream is
2714 * never added or monitored until we do a first push metadata to the
2715 * consumer.
2716 */
7972aab2
DG
2717 ret = ust_consumer_ask_channel(ua_sess, metadata, consumer, socket,
2718 registry);
d88aee68 2719 if (ret < 0) {
f2a444f1
DG
2720 /* Nullify the metadata key so we don't try to close it later on. */
2721 registry->metadata_key = 0;
d88aee68
DG
2722 goto error_consumer;
2723 }
2724
2725 /*
2726 * The setup command will make the metadata stream be sent to the relayd,
2727 * if applicable, and the thread managing the metadatas. This is important
2728 * because after this point, if an error occurs, the only way the stream
2729 * can be deleted is to be monitored in the consumer.
2730 */
7972aab2 2731 ret = consumer_setup_metadata(socket, metadata->key);
ffe60014 2732 if (ret < 0) {
f2a444f1
DG
2733 /* Nullify the metadata key so we don't try to close it later on. */
2734 registry->metadata_key = 0;
d88aee68 2735 goto error_consumer;
5b4a0ec0
DG
2736 }
2737
7972aab2
DG
2738 DBG2("UST metadata with key %" PRIu64 " created for app pid %d",
2739 metadata->key, app->pid);
5b4a0ec0 2740
d88aee68 2741error_consumer:
b80f0b6c 2742 lttng_fd_put(LTTNG_FD_APPS, 1);
d88aee68 2743 delete_ust_app_channel(-1, metadata, app);
5b4a0ec0 2744error:
ffe60014 2745 return ret;
5b4a0ec0
DG
2746}
2747
2748/*
2749 * Return pointer to traceable apps list.
2750 */
bec39940 2751struct lttng_ht *ust_app_get_ht(void)
5b4a0ec0
DG
2752{
2753 return ust_app_ht;
2754}
2755
2756/*
d88aee68
DG
2757 * Return ust app pointer or NULL if not found. RCU read side lock MUST be
2758 * acquired before calling this function.
5b4a0ec0
DG
2759 */
2760struct ust_app *ust_app_find_by_pid(pid_t pid)
2761{
d88aee68 2762 struct ust_app *app = NULL;
bec39940
DG
2763 struct lttng_ht_node_ulong *node;
2764 struct lttng_ht_iter iter;
5b4a0ec0 2765
bec39940
DG
2766 lttng_ht_lookup(ust_app_ht, (void *)((unsigned long) pid), &iter);
2767 node = lttng_ht_iter_get_node_ulong(&iter);
5b4a0ec0
DG
2768 if (node == NULL) {
2769 DBG2("UST app no found with pid %d", pid);
2770 goto error;
2771 }
5b4a0ec0
DG
2772
2773 DBG2("Found UST app by pid %d", pid);
2774
d88aee68 2775 app = caa_container_of(node, struct ust_app, pid_n);
5b4a0ec0
DG
2776
2777error:
d88aee68 2778 return app;
5b4a0ec0
DG
2779}
2780
d88aee68
DG
2781/*
2782 * Allocate and init an UST app object using the registration information and
2783 * the command socket. This is called when the command socket connects to the
2784 * session daemon.
2785 *
2786 * The object is returned on success or else NULL.
2787 */
d0b96690 2788struct ust_app *ust_app_create(struct ust_register_msg *msg, int sock)
5b4a0ec0 2789{
d0b96690
DG
2790 struct ust_app *lta = NULL;
2791
2792 assert(msg);
2793 assert(sock >= 0);
2794
2795 DBG3("UST app creating application for socket %d", sock);
5b4a0ec0 2796
173af62f
DG
2797 if ((msg->bits_per_long == 64 &&
2798 (uatomic_read(&ust_consumerd64_fd) == -EINVAL))
2799 || (msg->bits_per_long == 32 &&
2800 (uatomic_read(&ust_consumerd32_fd) == -EINVAL))) {
f943b0fb 2801 ERR("Registration failed: application \"%s\" (pid: %d) has "
d0b96690
DG
2802 "%d-bit long, but no consumerd for this size is available.\n",
2803 msg->name, msg->pid, msg->bits_per_long);
2804 goto error;
3f2c5fcc 2805 }
d0b96690 2806
5b4a0ec0
DG
2807 lta = zmalloc(sizeof(struct ust_app));
2808 if (lta == NULL) {
2809 PERROR("malloc");
d0b96690 2810 goto error;
5b4a0ec0
DG
2811 }
2812
2813 lta->ppid = msg->ppid;
2814 lta->uid = msg->uid;
2815 lta->gid = msg->gid;
d0b96690 2816
7753dea8 2817 lta->bits_per_long = msg->bits_per_long;
d0b96690
DG
2818 lta->uint8_t_alignment = msg->uint8_t_alignment;
2819 lta->uint16_t_alignment = msg->uint16_t_alignment;
2820 lta->uint32_t_alignment = msg->uint32_t_alignment;
2821 lta->uint64_t_alignment = msg->uint64_t_alignment;
2822 lta->long_alignment = msg->long_alignment;
2823 lta->byte_order = msg->byte_order;
2824
5b4a0ec0
DG
2825 lta->v_major = msg->major;
2826 lta->v_minor = msg->minor;
d9bf3ca4 2827 lta->sessions = lttng_ht_new(0, LTTNG_HT_TYPE_U64);
d0b96690
DG
2828 lta->ust_objd = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
2829 lta->notify_sock = -1;
d88aee68
DG
2830
2831 /* Copy name and make sure it's NULL terminated. */
2832 strncpy(lta->name, msg->name, sizeof(lta->name));
2833 lta->name[UST_APP_PROCNAME_LEN] = '\0';
2834
2835 /*
2836 * Before this can be called, when receiving the registration information,
2837 * the application compatibility is checked. So, at this point, the
2838 * application can work with this session daemon.
2839 */
d0b96690 2840 lta->compatible = 1;
5b4a0ec0 2841
852d0037 2842 lta->pid = msg->pid;
d0b96690 2843 lttng_ht_node_init_ulong(&lta->pid_n, (unsigned long) lta->pid);
852d0037 2844 lta->sock = sock;
d0b96690 2845 lttng_ht_node_init_ulong(&lta->sock_n, (unsigned long) lta->sock);
5b4a0ec0 2846
d42f20df
DG
2847 CDS_INIT_LIST_HEAD(&lta->teardown_head);
2848
d0b96690
DG
2849error:
2850 return lta;
2851}
2852
d88aee68
DG
2853/*
2854 * For a given application object, add it to every hash table.
2855 */
d0b96690
DG
2856void ust_app_add(struct ust_app *app)
2857{
2858 assert(app);
2859 assert(app->notify_sock >= 0);
2860
5b4a0ec0 2861 rcu_read_lock();
852d0037
DG
2862
2863 /*
2864 * On a re-registration, we want to kick out the previous registration of
2865 * that pid
2866 */
d0b96690 2867 lttng_ht_add_replace_ulong(ust_app_ht, &app->pid_n);
852d0037
DG
2868
2869 /*
2870 * The socket _should_ be unique until _we_ call close. So, a add_unique
2871 * for the ust_app_ht_by_sock is used which asserts fail if the entry was
2872 * already in the table.
2873 */
d0b96690 2874 lttng_ht_add_unique_ulong(ust_app_ht_by_sock, &app->sock_n);
852d0037 2875
d0b96690
DG
2876 /* Add application to the notify socket hash table. */
2877 lttng_ht_node_init_ulong(&app->notify_sock_n, app->notify_sock);
2878 lttng_ht_add_unique_ulong(ust_app_ht_by_notify_sock, &app->notify_sock_n);
5b4a0ec0 2879
d0b96690 2880 DBG("App registered with pid:%d ppid:%d uid:%d gid:%d sock:%d name:%s "
d88aee68
DG
2881 "notify_sock:%d (version %d.%d)", app->pid, app->ppid, app->uid,
2882 app->gid, app->sock, app->name, app->notify_sock, app->v_major,
2883 app->v_minor);
5b4a0ec0 2884
d0b96690
DG
2885 rcu_read_unlock();
2886}
2887
d88aee68
DG
2888/*
2889 * Set the application version into the object.
2890 *
2891 * Return 0 on success else a negative value either an errno code or a
2892 * LTTng-UST error code.
2893 */
d0b96690
DG
2894int ust_app_version(struct ust_app *app)
2895{
d88aee68
DG
2896 int ret;
2897
d0b96690 2898 assert(app);
d88aee68
DG
2899
2900 ret = ustctl_tracer_version(app->sock, &app->version);
2901 if (ret < 0) {
2902 if (ret != -LTTNG_UST_ERR_EXITING && ret != -EPIPE) {
2903 ERR("UST app %d verson failed with ret %d", app->sock, ret);
2904 } else {
2905 DBG3("UST app %d verion failed. Application is dead", app->sock);
2906 }
2907 }
2908
2909 return ret;
5b4a0ec0
DG
2910}
2911
2912/*
2913 * Unregister app by removing it from the global traceable app list and freeing
2914 * the data struct.
2915 *
2916 * The socket is already closed at this point so no close to sock.
2917 */
2918void ust_app_unregister(int sock)
2919{
2920 struct ust_app *lta;
bec39940
DG
2921 struct lttng_ht_node_ulong *node;
2922 struct lttng_ht_iter iter;
d42f20df 2923 struct ust_app_session *ua_sess;
525b0740 2924 int ret;
5b4a0ec0
DG
2925
2926 rcu_read_lock();
886459c6 2927
5b4a0ec0 2928 /* Get the node reference for a call_rcu */
852d0037 2929 lttng_ht_lookup(ust_app_ht_by_sock, (void *)((unsigned long) sock), &iter);
bec39940 2930 node = lttng_ht_iter_get_node_ulong(&iter);
d0b96690 2931 assert(node);
284d8f55 2932
852d0037 2933 lta = caa_container_of(node, struct ust_app, sock_n);
852d0037
DG
2934 DBG("PID %d unregistering with sock %d", lta->pid, sock);
2935
886459c6 2936 /* Remove application from PID hash table */
852d0037
DG
2937 ret = lttng_ht_del(ust_app_ht_by_sock, &iter);
2938 assert(!ret);
2939
d88aee68
DG
2940 /*
2941 * Remove application from notify hash table. The thread handling the
2942 * notify socket could have deleted the node so ignore on error because
2943 * either way it's valid. The close of that socket is handled by the other
2944 * thread.
2945 */
d0b96690 2946 iter.iter.node = &lta->notify_sock_n.node;
d88aee68 2947 (void) lttng_ht_del(ust_app_ht_by_notify_sock, &iter);
852d0037 2948
5b98a774
DG
2949 /*
2950 * Ignore return value since the node might have been removed before by an
2951 * add replace during app registration because the PID can be reassigned by
2952 * the OS.
2953 */
d0b96690 2954 iter.iter.node = &lta->pid_n.node;
bec39940 2955 ret = lttng_ht_del(ust_app_ht, &iter);
5b98a774
DG
2956 if (ret) {
2957 DBG3("Unregister app by PID %d failed. This can happen on pid reuse",
2958 lta->pid);
2959 }
852d0037 2960
d42f20df
DG
2961 /* Remove sessions so they are not visible during deletion.*/
2962 cds_lfht_for_each_entry(lta->sessions->ht, &iter.iter, ua_sess,
2963 node.node) {
7972aab2
DG
2964 struct ust_registry_session *registry;
2965
d42f20df
DG
2966 ret = lttng_ht_del(lta->sessions, &iter);
2967 if (ret) {
2968 /* The session was already removed so scheduled for teardown. */
2969 continue;
2970 }
2971
2972 /*
2973 * Add session to list for teardown. This is safe since at this point we
2974 * are the only one using this list.
2975 */
d88aee68
DG
2976 pthread_mutex_lock(&ua_sess->lock);
2977
2978 /*
2979 * Normally, this is done in the delete session process which is
2980 * executed in the call rcu below. However, upon registration we can't
2981 * afford to wait for the grace period before pushing data or else the
2982 * data pending feature can race between the unregistration and stop
2983 * command where the data pending command is sent *before* the grace
2984 * period ended.
2985 *
2986 * The close metadata below nullifies the metadata pointer in the
2987 * session so the delete session will NOT push/close a second time.
2988 */
7972aab2 2989 registry = get_session_registry(ua_sess);
1b532a60 2990 if (registry && !registry->metadata_closed) {
7972aab2
DG
2991 /* Push metadata for application before freeing the application. */
2992 (void) push_metadata(registry, ua_sess->consumer);
2993
2994 /*
2995 * Don't ask to close metadata for global per UID buffers. Close
1b532a60
DG
2996 * metadata only on destroy trace session in this case. Also, the
2997 * previous push metadata could have flag the metadata registry to
2998 * close so don't send a close command if closed.
7972aab2 2999 */
1b532a60
DG
3000 if (ua_sess->buffer_type != LTTNG_BUFFER_PER_UID &&
3001 !registry->metadata_closed) {
7972aab2
DG
3002 /* And ask to close it for this session registry. */
3003 (void) close_metadata(registry, ua_sess->consumer);
3004 }
3005 }
d88aee68 3006
d42f20df 3007 cds_list_add(&ua_sess->teardown_node, &lta->teardown_head);
d88aee68 3008 pthread_mutex_unlock(&ua_sess->lock);
d42f20df
DG
3009 }
3010
852d0037
DG
3011 /* Free memory */
3012 call_rcu(&lta->pid_n.head, delete_ust_app_rcu);
3013
5b4a0ec0
DG
3014 rcu_read_unlock();
3015 return;
284d8f55
DG
3016}
3017
3018/*
5b4a0ec0 3019 * Return traceable_app_count
284d8f55 3020 */
5b4a0ec0 3021unsigned long ust_app_list_count(void)
284d8f55 3022{
5b4a0ec0 3023 unsigned long count;
284d8f55 3024
5b4a0ec0 3025 rcu_read_lock();
bec39940 3026 count = lttng_ht_get_count(ust_app_ht);
5b4a0ec0 3027 rcu_read_unlock();
284d8f55 3028
5b4a0ec0 3029 return count;
284d8f55
DG
3030}
3031
5b4a0ec0
DG
3032/*
3033 * Fill events array with all events name of all registered apps.
3034 */
3035int ust_app_list_events(struct lttng_event **events)
421cb601 3036{
5b4a0ec0
DG
3037 int ret, handle;
3038 size_t nbmem, count = 0;
bec39940 3039 struct lttng_ht_iter iter;
5b4a0ec0 3040 struct ust_app *app;
c617c0c6 3041 struct lttng_event *tmp_event;
421cb601 3042
5b4a0ec0 3043 nbmem = UST_APP_EVENT_LIST_SIZE;
c617c0c6
MD
3044 tmp_event = zmalloc(nbmem * sizeof(struct lttng_event));
3045 if (tmp_event == NULL) {
5b4a0ec0
DG
3046 PERROR("zmalloc ust app events");
3047 ret = -ENOMEM;
421cb601
DG
3048 goto error;
3049 }
3050
5b4a0ec0 3051 rcu_read_lock();
421cb601 3052
852d0037 3053 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
90eaa0d2 3054 struct lttng_ust_tracepoint_iter uiter;
ac3bd9c0 3055
840cb59c 3056 health_code_update();
86acf0da 3057
e0c7ec2b
DG
3058 if (!app->compatible) {
3059 /*
3060 * TODO: In time, we should notice the caller of this error by
3061 * telling him that this is a version error.
3062 */
3063 continue;
3064 }
852d0037 3065 handle = ustctl_tracepoint_list(app->sock);
5b4a0ec0 3066 if (handle < 0) {
ffe60014
DG
3067 if (handle != -EPIPE && handle != -LTTNG_UST_ERR_EXITING) {
3068 ERR("UST app list events getting handle failed for app pid %d",
3069 app->pid);
3070 }
5b4a0ec0
DG
3071 continue;
3072 }
421cb601 3073
852d0037 3074 while ((ret = ustctl_tracepoint_list_get(app->sock, handle,
fb54cdbf 3075 &uiter)) != -LTTNG_UST_ERR_NOENT) {
ffe60014
DG
3076 /* Handle ustctl error. */
3077 if (ret < 0) {
3078 free(tmp_event);
3079 if (ret != -LTTNG_UST_ERR_EXITING || ret != -EPIPE) {
3080 ERR("UST app tp list get failed for app %d with ret %d",
3081 app->sock, ret);
3082 } else {
3083 DBG3("UST app tp list get failed. Application is dead");
3757b385
DG
3084 /*
3085 * This is normal behavior, an application can die during the
3086 * creation process. Don't report an error so the execution can
3087 * continue normally. Continue normal execution.
3088 */
3089 break;
ffe60014
DG
3090 }
3091 goto rcu_error;
3092 }
3093
840cb59c 3094 health_code_update();
815564d8 3095 if (count >= nbmem) {
d7b3776f 3096 /* In case the realloc fails, we free the memory */
c617c0c6
MD
3097 void *ptr;
3098
815564d8
MD
3099 DBG2("Reallocating event list from %zu to %zu entries", nbmem,
3100 2 * nbmem);
3101 nbmem *= 2;
c617c0c6
MD
3102 ptr = realloc(tmp_event, nbmem * sizeof(struct lttng_event));
3103 if (ptr == NULL) {
5b4a0ec0 3104 PERROR("realloc ust app events");
c617c0c6 3105 free(tmp_event);
5b4a0ec0
DG
3106 ret = -ENOMEM;
3107 goto rcu_error;
3108 }
c617c0c6 3109 tmp_event = ptr;
5b4a0ec0 3110 }
c617c0c6
MD
3111 memcpy(tmp_event[count].name, uiter.name, LTTNG_UST_SYM_NAME_LEN);
3112 tmp_event[count].loglevel = uiter.loglevel;
3113 tmp_event[count].type = (enum lttng_event_type) LTTNG_UST_TRACEPOINT;
3114 tmp_event[count].pid = app->pid;
3115 tmp_event[count].enabled = -1;
5b4a0ec0 3116 count++;
421cb601 3117 }
421cb601
DG
3118 }
3119
5b4a0ec0 3120 ret = count;
c617c0c6 3121 *events = tmp_event;
421cb601 3122
5b4a0ec0 3123 DBG2("UST app list events done (%zu events)", count);
421cb601 3124
5b4a0ec0
DG
3125rcu_error:
3126 rcu_read_unlock();
421cb601 3127error:
840cb59c 3128 health_code_update();
5b4a0ec0 3129 return ret;
421cb601
DG
3130}
3131
f37d259d
MD
3132/*
3133 * Fill events array with all events name of all registered apps.
3134 */
3135int ust_app_list_event_fields(struct lttng_event_field **fields)
3136{
3137 int ret, handle;
3138 size_t nbmem, count = 0;
3139 struct lttng_ht_iter iter;
3140 struct ust_app *app;
c617c0c6 3141 struct lttng_event_field *tmp_event;
f37d259d
MD
3142
3143 nbmem = UST_APP_EVENT_LIST_SIZE;
c617c0c6
MD
3144 tmp_event = zmalloc(nbmem * sizeof(struct lttng_event_field));
3145 if (tmp_event == NULL) {
f37d259d
MD
3146 PERROR("zmalloc ust app event fields");
3147 ret = -ENOMEM;
3148 goto error;
3149 }
3150
3151 rcu_read_lock();
3152
3153 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
3154 struct lttng_ust_field_iter uiter;
3155
840cb59c 3156 health_code_update();
86acf0da 3157
f37d259d
MD
3158 if (!app->compatible) {
3159 /*
3160 * TODO: In time, we should notice the caller of this error by
3161 * telling him that this is a version error.
3162 */
3163 continue;
3164 }
3165 handle = ustctl_tracepoint_field_list(app->sock);
3166 if (handle < 0) {
ffe60014
DG
3167 if (handle != -EPIPE && handle != -LTTNG_UST_ERR_EXITING) {
3168 ERR("UST app list field getting handle failed for app pid %d",
3169 app->pid);
3170 }
f37d259d
MD
3171 continue;
3172 }
3173
3174 while ((ret = ustctl_tracepoint_field_list_get(app->sock, handle,
fb54cdbf 3175 &uiter)) != -LTTNG_UST_ERR_NOENT) {
ffe60014
DG
3176 /* Handle ustctl error. */
3177 if (ret < 0) {
3178 free(tmp_event);
3179 if (ret != -LTTNG_UST_ERR_EXITING || ret != -EPIPE) {
3180 ERR("UST app tp list field failed for app %d with ret %d",
3181 app->sock, ret);
3182 } else {
3183 DBG3("UST app tp list field failed. Application is dead");
3757b385
DG
3184 /*
3185 * This is normal behavior, an application can die during the
3186 * creation process. Don't report an error so the execution can
3187 * continue normally.
3188 */
3189 break;
ffe60014
DG
3190 }
3191 goto rcu_error;
3192 }
3193
840cb59c 3194 health_code_update();
f37d259d 3195 if (count >= nbmem) {
d7b3776f 3196 /* In case the realloc fails, we free the memory */
c617c0c6
MD
3197 void *ptr;
3198
f37d259d
MD
3199 DBG2("Reallocating event field list from %zu to %zu entries", nbmem,
3200 2 * nbmem);
3201 nbmem *= 2;
c617c0c6
MD
3202 ptr = realloc(tmp_event, nbmem * sizeof(struct lttng_event_field));
3203 if (ptr == NULL) {
f37d259d 3204 PERROR("realloc ust app event fields");
c617c0c6 3205 free(tmp_event);
f37d259d
MD
3206 ret = -ENOMEM;
3207 goto rcu_error;
3208 }
c617c0c6 3209 tmp_event = ptr;
f37d259d 3210 }
f37d259d 3211
c617c0c6
MD
3212 memcpy(tmp_event[count].field_name, uiter.field_name, LTTNG_UST_SYM_NAME_LEN);
3213 tmp_event[count].type = uiter.type;
3214 tmp_event[count].nowrite = uiter.nowrite;
f37d259d 3215
c617c0c6
MD
3216 memcpy(tmp_event[count].event.name, uiter.event_name, LTTNG_UST_SYM_NAME_LEN);
3217 tmp_event[count].event.loglevel = uiter.loglevel;
3218 tmp_event[count].event.type = LTTNG_UST_TRACEPOINT;
3219 tmp_event[count].event.pid = app->pid;
3220 tmp_event[count].event.enabled = -1;
f37d259d
MD
3221 count++;
3222 }
3223 }
3224
3225 ret = count;
c617c0c6 3226 *fields = tmp_event;
f37d259d
MD
3227
3228 DBG2("UST app list event fields done (%zu events)", count);
3229
3230rcu_error:
3231 rcu_read_unlock();
3232error:
840cb59c 3233 health_code_update();
f37d259d
MD
3234 return ret;
3235}
3236
5b4a0ec0
DG
3237/*
3238 * Free and clean all traceable apps of the global list.
36b588ed
MD
3239 *
3240 * Should _NOT_ be called with RCU read-side lock held.
5b4a0ec0
DG
3241 */
3242void ust_app_clean_list(void)
421cb601 3243{
5b4a0ec0 3244 int ret;
659ed79f 3245 struct ust_app *app;
bec39940 3246 struct lttng_ht_iter iter;
421cb601 3247
5b4a0ec0 3248 DBG2("UST app cleaning registered apps hash table");
421cb601 3249
5b4a0ec0 3250 rcu_read_lock();
421cb601 3251
659ed79f 3252 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
bec39940 3253 ret = lttng_ht_del(ust_app_ht, &iter);
525b0740 3254 assert(!ret);
659ed79f 3255 call_rcu(&app->pid_n.head, delete_ust_app_rcu);
421cb601
DG
3256 }
3257
852d0037 3258 /* Cleanup socket hash table */
659ed79f
DG
3259 cds_lfht_for_each_entry(ust_app_ht_by_sock->ht, &iter.iter, app,
3260 sock_n.node) {
852d0037 3261 ret = lttng_ht_del(ust_app_ht_by_sock, &iter);
bec39940
DG
3262 assert(!ret);
3263 }
852d0037 3264
d88aee68
DG
3265 /* Cleanup notify socket hash table */
3266 cds_lfht_for_each_entry(ust_app_ht_by_notify_sock->ht, &iter.iter, app,
3267 notify_sock_n.node) {
3268 ret = lttng_ht_del(ust_app_ht_by_notify_sock, &iter);
3269 assert(!ret);
3270 }
36b588ed 3271 rcu_read_unlock();
d88aee68 3272
bec39940 3273 /* Destroy is done only when the ht is empty */
0b2dc8df
MD
3274 ht_cleanup_push(ust_app_ht);
3275 ht_cleanup_push(ust_app_ht_by_sock);
3276 ht_cleanup_push(ust_app_ht_by_notify_sock);
5b4a0ec0
DG
3277}
3278
3279/*
3280 * Init UST app hash table.
3281 */
3282void ust_app_ht_alloc(void)
3283{
bec39940 3284 ust_app_ht = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
852d0037 3285 ust_app_ht_by_sock = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
d0b96690 3286 ust_app_ht_by_notify_sock = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
421cb601
DG
3287}
3288
78f0bacd
DG
3289/*
3290 * For a specific UST session, disable the channel for all registered apps.
3291 */
35a9059d 3292int ust_app_disable_channel_glb(struct ltt_ust_session *usess,
78f0bacd
DG
3293 struct ltt_ust_channel *uchan)
3294{
3295 int ret = 0;
bec39940
DG
3296 struct lttng_ht_iter iter;
3297 struct lttng_ht_node_str *ua_chan_node;
78f0bacd
DG
3298 struct ust_app *app;
3299 struct ust_app_session *ua_sess;
8535a6d9 3300 struct ust_app_channel *ua_chan;
78f0bacd
DG
3301
3302 if (usess == NULL || uchan == NULL) {
3303 ERR("Disabling UST global channel with NULL values");
3304 ret = -1;
3305 goto error;
3306 }
3307
d9bf3ca4 3308 DBG2("UST app disabling channel %s from global domain for session id %" PRIu64,
a991f516 3309 uchan->name, usess->id);
78f0bacd
DG
3310
3311 rcu_read_lock();
3312
3313 /* For every registered applications */
852d0037 3314 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
bec39940 3315 struct lttng_ht_iter uiter;
e0c7ec2b
DG
3316 if (!app->compatible) {
3317 /*
3318 * TODO: In time, we should notice the caller of this error by
3319 * telling him that this is a version error.
3320 */
3321 continue;
3322 }
78f0bacd
DG
3323 ua_sess = lookup_session_by_app(usess, app);
3324 if (ua_sess == NULL) {
3325 continue;
3326 }
3327
8535a6d9 3328 /* Get channel */
bec39940
DG
3329 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &uiter);
3330 ua_chan_node = lttng_ht_iter_get_node_str(&uiter);
8535a6d9
DG
3331 /* If the session if found for the app, the channel must be there */
3332 assert(ua_chan_node);
3333
3334 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node);
3335 /* The channel must not be already disabled */
3336 assert(ua_chan->enabled == 1);
3337
3338 /* Disable channel onto application */
3339 ret = disable_ust_app_channel(ua_sess, ua_chan, app);
78f0bacd
DG
3340 if (ret < 0) {
3341 /* XXX: We might want to report this error at some point... */
3342 continue;
3343 }
3344 }
3345
3346 rcu_read_unlock();
3347
3348error:
3349 return ret;
3350}
3351
3352/*
3353 * For a specific UST session, enable the channel for all registered apps.
3354 */
35a9059d 3355int ust_app_enable_channel_glb(struct ltt_ust_session *usess,
78f0bacd
DG
3356 struct ltt_ust_channel *uchan)
3357{
3358 int ret = 0;
bec39940 3359 struct lttng_ht_iter iter;
78f0bacd
DG
3360 struct ust_app *app;
3361 struct ust_app_session *ua_sess;
3362
3363 if (usess == NULL || uchan == NULL) {
3364 ERR("Adding UST global channel to NULL values");
3365 ret = -1;
3366 goto error;
3367 }
3368
d9bf3ca4 3369 DBG2("UST app enabling channel %s to global domain for session id %" PRIu64,
a991f516 3370 uchan->name, usess->id);
78f0bacd
DG
3371
3372 rcu_read_lock();
3373
3374 /* For every registered applications */
852d0037 3375 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
e0c7ec2b
DG
3376 if (!app->compatible) {
3377 /*
3378 * TODO: In time, we should notice the caller of this error by
3379 * telling him that this is a version error.
3380 */
3381 continue;
3382 }
78f0bacd
DG
3383 ua_sess = lookup_session_by_app(usess, app);
3384 if (ua_sess == NULL) {
3385 continue;
3386 }
3387
3388 /* Enable channel onto application */
3389 ret = enable_ust_app_channel(ua_sess, uchan, app);
3390 if (ret < 0) {
3391 /* XXX: We might want to report this error at some point... */
3392 continue;
3393 }
3394 }
3395
3396 rcu_read_unlock();
3397
3398error:
3399 return ret;
3400}
3401
b0a40d28
DG
3402/*
3403 * Disable an event in a channel and for a specific session.
3404 */
35a9059d
DG
3405int ust_app_disable_event_glb(struct ltt_ust_session *usess,
3406 struct ltt_ust_channel *uchan, struct ltt_ust_event *uevent)
b0a40d28
DG
3407{
3408 int ret = 0;
bec39940
DG
3409 struct lttng_ht_iter iter, uiter;
3410 struct lttng_ht_node_str *ua_chan_node, *ua_event_node;
b0a40d28
DG
3411 struct ust_app *app;
3412 struct ust_app_session *ua_sess;
3413 struct ust_app_channel *ua_chan;
3414 struct ust_app_event *ua_event;
3415
3416 DBG("UST app disabling event %s for all apps in channel "
d9bf3ca4
MD
3417 "%s for session id %" PRIu64,
3418 uevent->attr.name, uchan->name, usess->id);
b0a40d28
DG
3419
3420 rcu_read_lock();
3421
3422 /* For all registered applications */
852d0037 3423 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
e0c7ec2b
DG
3424 if (!app->compatible) {
3425 /*
3426 * TODO: In time, we should notice the caller of this error by
3427 * telling him that this is a version error.
3428 */
3429 continue;
3430 }
b0a40d28
DG
3431 ua_sess = lookup_session_by_app(usess, app);
3432 if (ua_sess == NULL) {
3433 /* Next app */
3434 continue;
3435 }
3436
3437 /* Lookup channel in the ust app session */
bec39940
DG
3438 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &uiter);
3439 ua_chan_node = lttng_ht_iter_get_node_str(&uiter);
b0a40d28 3440 if (ua_chan_node == NULL) {
d9bf3ca4 3441 DBG2("Channel %s not found in session id %" PRIu64 " for app pid %d."
852d0037 3442 "Skipping", uchan->name, usess->id, app->pid);
b0a40d28
DG
3443 continue;
3444 }
3445 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node);
3446
bec39940
DG
3447 lttng_ht_lookup(ua_chan->events, (void *)uevent->attr.name, &uiter);
3448 ua_event_node = lttng_ht_iter_get_node_str(&uiter);
b0a40d28
DG
3449 if (ua_event_node == NULL) {
3450 DBG2("Event %s not found in channel %s for app pid %d."
852d0037 3451 "Skipping", uevent->attr.name, uchan->name, app->pid);
b0a40d28
DG
3452 continue;
3453 }
3454 ua_event = caa_container_of(ua_event_node, struct ust_app_event, node);
3455
7f79d3a1 3456 ret = disable_ust_app_event(ua_sess, ua_event, app);
b0a40d28
DG
3457 if (ret < 0) {
3458 /* XXX: Report error someday... */
3459 continue;
3460 }
3461 }
3462
3463 rcu_read_unlock();
3464
3465 return ret;
3466}
3467
9730260e 3468/*
edb67388 3469 * For a specific UST session and UST channel, the event for all
9730260e
DG
3470 * registered apps.
3471 */
35a9059d 3472int ust_app_disable_all_event_glb(struct ltt_ust_session *usess,
9730260e
DG
3473 struct ltt_ust_channel *uchan)
3474{
3475 int ret = 0;
bec39940
DG
3476 struct lttng_ht_iter iter, uiter;
3477 struct lttng_ht_node_str *ua_chan_node;
9730260e
DG
3478 struct ust_app *app;
3479 struct ust_app_session *ua_sess;
3480 struct ust_app_channel *ua_chan;
3481 struct ust_app_event *ua_event;
3482
3483 DBG("UST app disabling all event for all apps in channel "
d9bf3ca4 3484 "%s for session id %" PRIu64, uchan->name, usess->id);
9730260e
DG
3485
3486 rcu_read_lock();
3487
3488 /* For all registered applications */
852d0037 3489 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
e0c7ec2b
DG
3490 if (!app->compatible) {
3491 /*
3492 * TODO: In time, we should notice the caller of this error by
3493 * telling him that this is a version error.
3494 */
3495 continue;
3496 }
9730260e 3497 ua_sess = lookup_session_by_app(usess, app);
c4a1715b
DG
3498 if (!ua_sess) {
3499 /* The application has problem or is probably dead. */
3500 continue;
3501 }
9730260e
DG
3502
3503 /* Lookup channel in the ust app session */
bec39940
DG
3504 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &uiter);
3505 ua_chan_node = lttng_ht_iter_get_node_str(&uiter);
edb67388
DG
3506 /* If the channel is not found, there is a code flow error */
3507 assert(ua_chan_node);
3508
9730260e
DG
3509 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node);
3510
3511 /* Disable each events of channel */
bec39940
DG
3512 cds_lfht_for_each_entry(ua_chan->events->ht, &uiter.iter, ua_event,
3513 node.node) {
7f79d3a1 3514 ret = disable_ust_app_event(ua_sess, ua_event, app);
9730260e
DG
3515 if (ret < 0) {
3516 /* XXX: Report error someday... */
3517 continue;
3518 }
3519 }
3520 }
3521
3522 rcu_read_unlock();
3523
3524 return ret;
3525}
3526
421cb601 3527/*
5b4a0ec0 3528 * For a specific UST session, create the channel for all registered apps.
421cb601 3529 */
35a9059d 3530int ust_app_create_channel_glb(struct ltt_ust_session *usess,
48842b30
DG
3531 struct ltt_ust_channel *uchan)
3532{
3d8ca23b 3533 int ret = 0, created;
bec39940 3534 struct lttng_ht_iter iter;
48842b30 3535 struct ust_app *app;
3d8ca23b 3536 struct ust_app_session *ua_sess = NULL;
48842b30 3537
fc34caaa
DG
3538 /* Very wrong code flow */
3539 assert(usess);
3540 assert(uchan);
421cb601 3541
d9bf3ca4 3542 DBG2("UST app adding channel %s to UST domain for session id %" PRIu64,
a991f516 3543 uchan->name, usess->id);
48842b30
DG
3544
3545 rcu_read_lock();
421cb601 3546
5b4a0ec0 3547 /* For every registered applications */
852d0037 3548 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
e0c7ec2b
DG
3549 if (!app->compatible) {
3550 /*
3551 * TODO: In time, we should notice the caller of this error by
3552 * telling him that this is a version error.
3553 */
3554 continue;
3555 }
edb67388
DG
3556 /*
3557 * Create session on the tracer side and add it to app session HT. Note
3558 * that if session exist, it will simply return a pointer to the ust
3559 * app session.
3560 */
3d8ca23b
DG
3561 ret = create_ust_app_session(usess, app, &ua_sess, &created);
3562 if (ret < 0) {
3563 switch (ret) {
3564 case -ENOTCONN:
3565 /*
3566 * The application's socket is not valid. Either a bad socket
3567 * or a timeout on it. We can't inform the caller that for a
3568 * specific app, the session failed so lets continue here.
3569 */
3570 continue;
3571 case -ENOMEM:
3572 default:
3573 goto error_rcu_unlock;
3574 }
48842b30 3575 }
3d8ca23b 3576 assert(ua_sess);
48842b30 3577
d0b96690 3578 pthread_mutex_lock(&ua_sess->lock);
d65d2de8
DG
3579 if (!strncmp(uchan->name, DEFAULT_METADATA_NAME,
3580 sizeof(uchan->name))) {
3581 struct ustctl_consumer_channel_attr attr;
3582 copy_channel_attr_to_ustctl(&attr, &uchan->attr);
3583 ret = create_ust_app_metadata(ua_sess, app, usess->consumer,
3584 &attr);
3585 } else {
3586 /* Create channel onto application. We don't need the chan ref. */
3587 ret = create_ust_app_channel(ua_sess, uchan, app,
3588 LTTNG_UST_CHAN_PER_CPU, usess, NULL);
3589 }
d0b96690 3590 pthread_mutex_unlock(&ua_sess->lock);
3d8ca23b
DG
3591 if (ret < 0) {
3592 if (ret == -ENOMEM) {
3593 /* No more memory is a fatal error. Stop right now. */
3594 goto error_rcu_unlock;
3595 }
3596 /* Cleanup the created session if it's the case. */
3597 if (created) {
d0b96690 3598 destroy_app_session(app, ua_sess);
3d8ca23b 3599 }
48842b30 3600 }
48842b30 3601 }
5b4a0ec0 3602
95e047ff 3603error_rcu_unlock:
48842b30 3604 rcu_read_unlock();
3c14c33f 3605 return ret;
48842b30
DG
3606}
3607
5b4a0ec0 3608/*
edb67388 3609 * Enable event for a specific session and channel on the tracer.
5b4a0ec0 3610 */
35a9059d 3611int ust_app_enable_event_glb(struct ltt_ust_session *usess,
48842b30
DG
3612 struct ltt_ust_channel *uchan, struct ltt_ust_event *uevent)
3613{
3614 int ret = 0;
bec39940 3615 struct lttng_ht_iter iter, uiter;
18eace3b 3616 struct lttng_ht_node_str *ua_chan_node;
48842b30
DG
3617 struct ust_app *app;
3618 struct ust_app_session *ua_sess;
3619 struct ust_app_channel *ua_chan;
3620 struct ust_app_event *ua_event;
48842b30 3621
d9bf3ca4 3622 DBG("UST app enabling event %s for all apps for session id %" PRIu64,
a991f516 3623 uevent->attr.name, usess->id);
48842b30 3624
edb67388
DG
3625 /*
3626 * NOTE: At this point, this function is called only if the session and
3627 * channel passed are already created for all apps. and enabled on the
3628 * tracer also.
3629 */
3630
48842b30 3631 rcu_read_lock();
421cb601
DG
3632
3633 /* For all registered applications */
852d0037 3634 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
e0c7ec2b
DG
3635 if (!app->compatible) {
3636 /*
3637 * TODO: In time, we should notice the caller of this error by
3638 * telling him that this is a version error.
3639 */
3640 continue;
3641 }
edb67388 3642 ua_sess = lookup_session_by_app(usess, app);
c4a1715b
DG
3643 if (!ua_sess) {
3644 /* The application has problem or is probably dead. */
3645 continue;
3646 }
ba767faf 3647
d0b96690
DG
3648 pthread_mutex_lock(&ua_sess->lock);
3649
edb67388 3650 /* Lookup channel in the ust app session */
bec39940
DG
3651 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &uiter);
3652 ua_chan_node = lttng_ht_iter_get_node_str(&uiter);
edb67388
DG
3653 /* If the channel is not found, there is a code flow error */
3654 assert(ua_chan_node);
3655
3656 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node);
3657
18eace3b
DG
3658 /* Get event node */
3659 ua_event = find_ust_app_event(ua_chan->events, uevent->attr.name,
39c5a3a7 3660 uevent->filter, uevent->attr.loglevel, uevent->exclusion);
18eace3b 3661 if (ua_event == NULL) {
7f79d3a1 3662 DBG3("UST app enable event %s not found for app PID %d."
852d0037 3663 "Skipping app", uevent->attr.name, app->pid);
d0b96690 3664 goto next_app;
35a9059d 3665 }
35a9059d
DG
3666
3667 ret = enable_ust_app_event(ua_sess, ua_event, app);
3668 if (ret < 0) {
d0b96690 3669 pthread_mutex_unlock(&ua_sess->lock);
7f79d3a1 3670 goto error;
48842b30 3671 }
d0b96690
DG
3672 next_app:
3673 pthread_mutex_unlock(&ua_sess->lock);
edb67388
DG
3674 }
3675
7f79d3a1 3676error:
edb67388 3677 rcu_read_unlock();
edb67388
DG
3678 return ret;
3679}
3680
3681/*
3682 * For a specific existing UST session and UST channel, creates the event for
3683 * all registered apps.
3684 */
35a9059d 3685int ust_app_create_event_glb(struct ltt_ust_session *usess,
edb67388
DG
3686 struct ltt_ust_channel *uchan, struct ltt_ust_event *uevent)
3687{
3688 int ret = 0;
bec39940
DG
3689 struct lttng_ht_iter iter, uiter;
3690 struct lttng_ht_node_str *ua_chan_node;
edb67388
DG
3691 struct ust_app *app;
3692 struct ust_app_session *ua_sess;
3693 struct ust_app_channel *ua_chan;
3694
d9bf3ca4 3695 DBG("UST app creating event %s for all apps for session id %" PRIu64,
a991f516 3696 uevent->attr.name, usess->id);
edb67388 3697
edb67388
DG
3698 rcu_read_lock();
3699
3700 /* For all registered applications */
852d0037 3701 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
e0c7ec2b
DG
3702 if (!app->compatible) {
3703 /*
3704 * TODO: In time, we should notice the caller of this error by
3705 * telling him that this is a version error.
3706 */
3707 continue;
3708 }
edb67388 3709 ua_sess = lookup_session_by_app(usess, app);
c4a1715b
DG
3710 if (!ua_sess) {
3711 /* The application has problem or is probably dead. */
3712 continue;
3713 }
48842b30 3714
d0b96690 3715 pthread_mutex_lock(&ua_sess->lock);
48842b30 3716 /* Lookup channel in the ust app session */
bec39940
DG
3717 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &uiter);
3718 ua_chan_node = lttng_ht_iter_get_node_str(&uiter);
edb67388
DG
3719 /* If the channel is not found, there is a code flow error */
3720 assert(ua_chan_node);
3721
48842b30
DG
3722 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node);
3723
edb67388 3724 ret = create_ust_app_event(ua_sess, ua_chan, uevent, app);
d0b96690 3725 pthread_mutex_unlock(&ua_sess->lock);
edb67388 3726 if (ret < 0) {
49c336c1 3727 if (ret != -LTTNG_UST_ERR_EXIST) {
fc34caaa
DG
3728 /* Possible value at this point: -ENOMEM. If so, we stop! */
3729 break;
3730 }
3731 DBG2("UST app event %s already exist on app PID %d",
852d0037 3732 uevent->attr.name, app->pid);
5b4a0ec0 3733 continue;
48842b30 3734 }
48842b30 3735 }
5b4a0ec0 3736
48842b30
DG
3737 rcu_read_unlock();
3738
3739 return ret;
3740}
3741
5b4a0ec0
DG
3742/*
3743 * Start tracing for a specific UST session and app.
3744 */
b34cbebf 3745static
421cb601 3746int ust_app_start_trace(struct ltt_ust_session *usess, struct ust_app *app)
48842b30
DG
3747{
3748 int ret = 0;
48842b30 3749 struct ust_app_session *ua_sess;
48842b30 3750
852d0037 3751 DBG("Starting tracing for ust app pid %d", app->pid);
5cf5d0e7 3752
509cbaf8
MD
3753 rcu_read_lock();
3754
e0c7ec2b
DG
3755 if (!app->compatible) {
3756 goto end;
3757 }
3758
421cb601
DG
3759 ua_sess = lookup_session_by_app(usess, app);
3760 if (ua_sess == NULL) {
d42f20df
DG
3761 /* The session is in teardown process. Ignore and continue. */
3762 goto end;
421cb601 3763 }
48842b30 3764
d0b96690
DG
3765 pthread_mutex_lock(&ua_sess->lock);
3766
aea829b3
DG
3767 /* Upon restart, we skip the setup, already done */
3768 if (ua_sess->started) {
8be98f9a 3769 goto skip_setup;
aea829b3 3770 }
8be98f9a 3771
a4b92340
DG
3772 /* Create directories if consumer is LOCAL and has a path defined. */
3773 if (usess->consumer->type == CONSUMER_DST_LOCAL &&
3774 strlen(usess->consumer->dst.trace_path) > 0) {
3775 ret = run_as_mkdir_recursive(usess->consumer->dst.trace_path,
7972aab2 3776 S_IRWXU | S_IRWXG, ua_sess->euid, ua_sess->egid);
a4b92340
DG
3777 if (ret < 0) {
3778 if (ret != -EEXIST) {
3779 ERR("Trace directory creation error");
d0b96690 3780 goto error_unlock;
421cb601 3781 }
173af62f 3782 }
7753dea8 3783 }
aea829b3 3784
d65d2de8
DG
3785 /*
3786 * Create the metadata for the application. This returns gracefully if a
3787 * metadata was already set for the session.
3788 */
3789 ret = create_ust_app_metadata(ua_sess, app, usess->consumer, NULL);
421cb601 3790 if (ret < 0) {
d0b96690 3791 goto error_unlock;
421cb601 3792 }
48842b30 3793
840cb59c 3794 health_code_update();
86acf0da 3795
8be98f9a 3796skip_setup:
421cb601 3797 /* This start the UST tracing */
852d0037 3798 ret = ustctl_start_session(app->sock, ua_sess->handle);
421cb601 3799 if (ret < 0) {
ffe60014
DG
3800 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
3801 ERR("Error starting tracing for app pid: %d (ret: %d)",
3802 app->pid, ret);
3803 } else {
3804 DBG("UST app start session failed. Application is dead.");
3757b385
DG
3805 /*
3806 * This is normal behavior, an application can die during the
3807 * creation process. Don't report an error so the execution can
3808 * continue normally.
3809 */
3810 pthread_mutex_unlock(&ua_sess->lock);
3811 goto end;
ffe60014 3812 }
d0b96690 3813 goto error_unlock;
421cb601 3814 }
5b4a0ec0 3815
55c3953d
DG
3816 /* Indicate that the session has been started once */
3817 ua_sess->started = 1;
3818
d0b96690
DG
3819 pthread_mutex_unlock(&ua_sess->lock);
3820
840cb59c 3821 health_code_update();
86acf0da 3822
421cb601 3823 /* Quiescent wait after starting trace */
ffe60014
DG
3824 ret = ustctl_wait_quiescent(app->sock);
3825 if (ret < 0 && ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
3826 ERR("UST app wait quiescent failed for app pid %d ret %d",
3827 app->pid, ret);
3828 }
48842b30 3829
e0c7ec2b
DG
3830end:
3831 rcu_read_unlock();
840cb59c 3832 health_code_update();
421cb601 3833 return 0;
48842b30 3834
d0b96690
DG
3835error_unlock:
3836 pthread_mutex_unlock(&ua_sess->lock);
509cbaf8 3837 rcu_read_unlock();
840cb59c 3838 health_code_update();
421cb601
DG
3839 return -1;
3840}
48842b30 3841
8be98f9a
MD
3842/*
3843 * Stop tracing for a specific UST session and app.
3844 */
b34cbebf 3845static
8be98f9a
MD
3846int ust_app_stop_trace(struct ltt_ust_session *usess, struct ust_app *app)
3847{
3848 int ret = 0;
3849 struct ust_app_session *ua_sess;
7972aab2 3850 struct ust_registry_session *registry;
8be98f9a 3851
852d0037 3852 DBG("Stopping tracing for ust app pid %d", app->pid);
8be98f9a
MD
3853
3854 rcu_read_lock();
3855
e0c7ec2b 3856 if (!app->compatible) {
d88aee68 3857 goto end_no_session;
e0c7ec2b
DG
3858 }
3859
8be98f9a
MD
3860 ua_sess = lookup_session_by_app(usess, app);
3861 if (ua_sess == NULL) {
d88aee68 3862 goto end_no_session;
8be98f9a
MD
3863 }
3864
d88aee68
DG
3865 pthread_mutex_lock(&ua_sess->lock);
3866
9bc07046
DG
3867 /*
3868 * If started = 0, it means that stop trace has been called for a session
c45536e1
DG
3869 * that was never started. It's possible since we can have a fail start
3870 * from either the application manager thread or the command thread. Simply
3871 * indicate that this is a stop error.
9bc07046 3872 */
f9dfc3d9 3873 if (!ua_sess->started) {
c45536e1
DG
3874 goto error_rcu_unlock;
3875 }
7db205b5 3876
840cb59c 3877 health_code_update();
86acf0da 3878
9d6c7d3f 3879 /* This inhibits UST tracing */
852d0037 3880 ret = ustctl_stop_session(app->sock, ua_sess->handle);
9d6c7d3f 3881 if (ret < 0) {
ffe60014
DG
3882 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
3883 ERR("Error stopping tracing for app pid: %d (ret: %d)",
3884 app->pid, ret);
3885 } else {
3886 DBG("UST app stop session failed. Application is dead.");
3757b385
DG
3887 /*
3888 * This is normal behavior, an application can die during the
3889 * creation process. Don't report an error so the execution can
3890 * continue normally.
3891 */
3892 goto end_unlock;
ffe60014 3893 }
9d6c7d3f
DG
3894 goto error_rcu_unlock;
3895 }
3896
840cb59c 3897 health_code_update();
86acf0da 3898
9d6c7d3f 3899 /* Quiescent wait after stopping trace */
ffe60014
DG
3900 ret = ustctl_wait_quiescent(app->sock);
3901 if (ret < 0 && ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
3902 ERR("UST app wait quiescent failed for app pid %d ret %d",
3903 app->pid, ret);
3904 }
9d6c7d3f 3905
840cb59c 3906 health_code_update();
86acf0da 3907
b34cbebf
MD
3908 registry = get_session_registry(ua_sess);
3909 assert(registry);
1b532a60
DG
3910
3911 if (!registry->metadata_closed) {
3912 /* Push metadata for application before freeing the application. */
3913 (void) push_metadata(registry, ua_sess->consumer);
3914 }
b34cbebf 3915
3757b385 3916end_unlock:
b34cbebf
MD
3917 pthread_mutex_unlock(&ua_sess->lock);
3918end_no_session:
3919 rcu_read_unlock();
3920 health_code_update();
3921 return 0;
3922
3923error_rcu_unlock:
3924 pthread_mutex_unlock(&ua_sess->lock);
3925 rcu_read_unlock();
3926 health_code_update();
3927 return -1;
3928}
3929
3930/*
3931 * Flush buffers for a specific UST session and app.
3932 */
3933static
3934int ust_app_flush_trace(struct ltt_ust_session *usess, struct ust_app *app)
3935{
3936 int ret = 0;
3937 struct lttng_ht_iter iter;
3938 struct ust_app_session *ua_sess;
3939 struct ust_app_channel *ua_chan;
3940
3941 DBG("Flushing buffers for ust app pid %d", app->pid);
3942
3943 rcu_read_lock();
3944
3945 if (!app->compatible) {
3946 goto end_no_session;
3947 }
3948
3949 ua_sess = lookup_session_by_app(usess, app);
3950 if (ua_sess == NULL) {
3951 goto end_no_session;
3952 }
3953
3954 pthread_mutex_lock(&ua_sess->lock);
3955
3956 health_code_update();
3957
9d6c7d3f 3958 /* Flushing buffers */
bec39940
DG
3959 cds_lfht_for_each_entry(ua_sess->channels->ht, &iter.iter, ua_chan,
3960 node.node) {
840cb59c 3961 health_code_update();
ffe60014 3962 assert(ua_chan->is_sent);
852d0037 3963 ret = ustctl_sock_flush_buffer(app->sock, ua_chan->obj);
8be98f9a 3964 if (ret < 0) {
ffe60014
DG
3965 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
3966 ERR("UST app PID %d channel %s flush failed with ret %d",
3967 app->pid, ua_chan->name, ret);
3968 } else {
3969 DBG3("UST app failed to flush %s. Application is dead.",
3970 ua_chan->name);
3757b385
DG
3971 /*
3972 * This is normal behavior, an application can die during the
3973 * creation process. Don't report an error so the execution can
3974 * continue normally.
3975 */
ffe60014 3976 }
6d3686da
DG
3977 /* Continuing flushing all buffers */
3978 continue;
8be98f9a
MD
3979 }
3980 }
8be98f9a 3981
840cb59c 3982 health_code_update();
86acf0da 3983
d88aee68
DG
3984 pthread_mutex_unlock(&ua_sess->lock);
3985end_no_session:
7db205b5 3986 rcu_read_unlock();
840cb59c 3987 health_code_update();
8be98f9a 3988 return 0;
8be98f9a
MD
3989}
3990
84cd17c6
MD
3991/*
3992 * Destroy a specific UST session in apps.
3993 */
3353de95 3994static int destroy_trace(struct ltt_ust_session *usess, struct ust_app *app)
84cd17c6 3995{
ffe60014 3996 int ret;
84cd17c6 3997 struct ust_app_session *ua_sess;
bec39940 3998 struct lttng_ht_iter iter;
d9bf3ca4 3999 struct lttng_ht_node_u64 *node;
84cd17c6 4000
852d0037 4001 DBG("Destroy tracing for ust app pid %d", app->pid);
84cd17c6
MD
4002
4003 rcu_read_lock();
4004
e0c7ec2b
DG
4005 if (!app->compatible) {
4006 goto end;
4007 }
4008
84cd17c6 4009 __lookup_session_by_app(usess, app, &iter);
d9bf3ca4 4010 node = lttng_ht_iter_get_node_u64(&iter);
84cd17c6 4011 if (node == NULL) {
d42f20df
DG
4012 /* Session is being or is deleted. */
4013 goto end;
84cd17c6
MD
4014 }
4015 ua_sess = caa_container_of(node, struct ust_app_session, node);
c4a1715b 4016
840cb59c 4017 health_code_update();
d0b96690 4018 destroy_app_session(app, ua_sess);
84cd17c6 4019
840cb59c 4020 health_code_update();
7db205b5 4021
84cd17c6 4022 /* Quiescent wait after stopping trace */
ffe60014
DG
4023 ret = ustctl_wait_quiescent(app->sock);
4024 if (ret < 0 && ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
4025 ERR("UST app wait quiescent failed for app pid %d ret %d",
4026 app->pid, ret);
4027 }
e0c7ec2b
DG
4028end:
4029 rcu_read_unlock();
840cb59c 4030 health_code_update();
84cd17c6 4031 return 0;
84cd17c6
MD
4032}
4033
5b4a0ec0
DG
4034/*
4035 * Start tracing for the UST session.
4036 */
421cb601
DG
4037int ust_app_start_trace_all(struct ltt_ust_session *usess)
4038{
4039 int ret = 0;
bec39940 4040 struct lttng_ht_iter iter;
421cb601 4041 struct ust_app *app;
48842b30 4042
421cb601
DG
4043 DBG("Starting all UST traces");
4044
4045 rcu_read_lock();
421cb601 4046
852d0037 4047 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
421cb601 4048 ret = ust_app_start_trace(usess, app);
48842b30 4049 if (ret < 0) {
5b4a0ec0
DG
4050 /* Continue to next apps even on error */
4051 continue;
48842b30 4052 }
48842b30 4053 }
5b4a0ec0 4054
48842b30
DG
4055 rcu_read_unlock();
4056
4057 return 0;
4058}
487cf67c 4059
8be98f9a
MD
4060/*
4061 * Start tracing for the UST session.
4062 */
4063int ust_app_stop_trace_all(struct ltt_ust_session *usess)
4064{
4065 int ret = 0;
bec39940 4066 struct lttng_ht_iter iter;
8be98f9a
MD
4067 struct ust_app *app;
4068
4069 DBG("Stopping all UST traces");
4070
4071 rcu_read_lock();
4072
b34cbebf
MD
4073 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
4074 ret = ust_app_stop_trace(usess, app);
4075 if (ret < 0) {
4076 /* Continue to next apps even on error */
4077 continue;
4078 }
4079 }
4080
b0a5f0fb 4081 /* Flush buffers and push metadata (for UID buffers). */
b34cbebf
MD
4082 switch (usess->buffer_type) {
4083 case LTTNG_BUFFER_PER_UID:
4084 {
7972aab2 4085 struct buffer_reg_uid *reg;
b34cbebf
MD
4086
4087 /* Flush all per UID buffers associated to that session. */
7972aab2 4088 cds_list_for_each_entry(reg, &usess->buffer_reg_uid_list, lnode) {
b0a5f0fb 4089 struct ust_registry_session *ust_session_reg;
7972aab2
DG
4090 struct buffer_reg_channel *reg_chan;
4091 struct consumer_socket *socket;
4092
4093 /* Get consumer socket to use to push the metadata.*/
4094 socket = consumer_find_socket_by_bitness(reg->bits_per_long,
4095 usess->consumer);
4096 if (!socket) {
4097 /* Ignore request if no consumer is found for the session. */
4098 continue;
4099 }
4100
4101 cds_lfht_for_each_entry(reg->registry->channels->ht, &iter.iter,
4102 reg_chan, node.node) {
4103 /*
4104 * The following call will print error values so the return
4105 * code is of little importance because whatever happens, we
4106 * have to try them all.
4107 */
4108 (void) consumer_flush_channel(socket, reg_chan->consumer_key);
4109 }
b0a5f0fb
MD
4110
4111 ust_session_reg = reg->registry->reg.ust;
4112 if (!ust_session_reg->metadata_closed) {
4113 /* Push metadata. */
4114 (void) push_metadata(ust_session_reg, usess->consumer);
4115 }
7972aab2 4116 }
b0a5f0fb 4117
b34cbebf 4118 break;
7972aab2 4119 }
b34cbebf
MD
4120 case LTTNG_BUFFER_PER_PID:
4121 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
4122 ret = ust_app_flush_trace(usess, app);
4123 if (ret < 0) {
4124 /* Continue to next apps even on error */
4125 continue;
4126 }
8be98f9a 4127 }
b34cbebf
MD
4128 break;
4129 default:
4130 assert(0);
4131 break;
8be98f9a
MD
4132 }
4133
4134 rcu_read_unlock();
4135
4136 return 0;
4137}
4138
84cd17c6
MD
4139/*
4140 * Destroy app UST session.
4141 */
4142int ust_app_destroy_trace_all(struct ltt_ust_session *usess)
4143{
4144 int ret = 0;
bec39940 4145 struct lttng_ht_iter iter;
84cd17c6
MD
4146 struct ust_app *app;
4147
4148 DBG("Destroy all UST traces");
4149
4150 rcu_read_lock();
4151
852d0037 4152 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
3353de95 4153 ret = destroy_trace(usess, app);
84cd17c6
MD
4154 if (ret < 0) {
4155 /* Continue to next apps even on error */
4156 continue;
4157 }
4158 }
4159
4160 rcu_read_unlock();
4161
4162 return 0;
4163}
4164
5b4a0ec0
DG
4165/*
4166 * Add channels/events from UST global domain to registered apps at sock.
4167 */
487cf67c
DG
4168void ust_app_global_update(struct ltt_ust_session *usess, int sock)
4169{
55c54cce 4170 int ret = 0;
31746f93 4171 struct lttng_ht_iter iter, uiter;
487cf67c 4172 struct ust_app *app;
3d8ca23b 4173 struct ust_app_session *ua_sess = NULL;
487cf67c
DG
4174 struct ust_app_channel *ua_chan;
4175 struct ust_app_event *ua_event;
727d5404 4176 struct ust_app_ctx *ua_ctx;
1f3580c7 4177
95e047ff 4178 assert(usess);
ffe60014 4179 assert(sock >= 0);
1f3580c7 4180
d9bf3ca4 4181 DBG2("UST app global update for app sock %d for session id %" PRIu64, sock,
a991f516 4182 usess->id);
487cf67c 4183
284d8f55
DG
4184 rcu_read_lock();
4185
f20baf8e 4186 app = ust_app_find_by_sock(sock);
487cf67c 4187 if (app == NULL) {
d88aee68
DG
4188 /*
4189 * Application can be unregistered before so this is possible hence
4190 * simply stopping the update.
4191 */
4192 DBG3("UST app update failed to find app sock %d", sock);
487cf67c
DG
4193 goto error;
4194 }
4195
e0c7ec2b
DG
4196 if (!app->compatible) {
4197 goto error;
4198 }
4199
3d8ca23b
DG
4200 ret = create_ust_app_session(usess, app, &ua_sess, NULL);
4201 if (ret < 0) {
4202 /* Tracer is probably gone or ENOMEM. */
487cf67c
DG
4203 goto error;
4204 }
3d8ca23b 4205 assert(ua_sess);
487cf67c 4206
d0b96690
DG
4207 pthread_mutex_lock(&ua_sess->lock);
4208
284d8f55 4209 /*
d0b96690 4210 * We can iterate safely here over all UST app session since the create ust
284d8f55
DG
4211 * app session above made a shadow copy of the UST global domain from the
4212 * ltt ust session.
4213 */
bec39940
DG
4214 cds_lfht_for_each_entry(ua_sess->channels->ht, &iter.iter, ua_chan,
4215 node.node) {
d65d2de8
DG
4216 /*
4217 * For a metadata channel, handle it differently.
4218 */
4219 if (!strncmp(ua_chan->name, DEFAULT_METADATA_NAME,
4220 sizeof(ua_chan->name))) {
4221 ret = create_ust_app_metadata(ua_sess, app, usess->consumer,
4222 &ua_chan->attr);
c7a339aa
DG
4223 if (ret < 0) {
4224 goto error_unlock;
4225 }
d65d2de8
DG
4226 /* Remove it from the hash table and continue!. */
4227 ret = lttng_ht_del(ua_sess->channels, &iter);
4228 assert(!ret);
4229 delete_ust_app_channel(-1, ua_chan, app);
4230 continue;
4231 } else {
4232 ret = do_create_channel(app, usess, ua_sess, ua_chan);
c7a339aa
DG
4233 if (ret < 0) {
4234 /*
4235 * Stop everything. On error, the application failed, no more
4236 * file descriptor are available or ENOMEM so stopping here is
4237 * the only thing we can do for now.
4238 */
4239 goto error_unlock;
4240 }
487cf67c
DG
4241 }
4242
31746f93
DG
4243 /*
4244 * Add context using the list so they are enabled in the same order the
4245 * user added them.
4246 */
4247 cds_list_for_each_entry(ua_ctx, &ua_chan->ctx_list, list) {
727d5404
DG
4248 ret = create_ust_channel_context(ua_chan, ua_ctx, app);
4249 if (ret < 0) {
d0b96690 4250 goto error_unlock;
727d5404
DG
4251 }
4252 }
4253
4254
284d8f55 4255 /* For each events */
bec39940
DG
4256 cds_lfht_for_each_entry(ua_chan->events->ht, &uiter.iter, ua_event,
4257 node.node) {
284d8f55
DG
4258 ret = create_ust_event(app, ua_sess, ua_chan, ua_event);
4259 if (ret < 0) {
d0b96690 4260 goto error_unlock;
487cf67c 4261 }
36dc12cc 4262 }
487cf67c
DG
4263 }
4264
d0b96690
DG
4265 pthread_mutex_unlock(&ua_sess->lock);
4266
36dc12cc 4267 if (usess->start_trace) {
421cb601 4268 ret = ust_app_start_trace(usess, app);
36dc12cc 4269 if (ret < 0) {
36dc12cc
DG
4270 goto error;
4271 }
4272
852d0037 4273 DBG2("UST trace started for app pid %d", app->pid);
36dc12cc
DG
4274 }
4275
ffe60014
DG
4276 /* Everything went well at this point. */
4277 rcu_read_unlock();
4278 return;
4279
d0b96690
DG
4280error_unlock:
4281 pthread_mutex_unlock(&ua_sess->lock);
487cf67c 4282error:
ffe60014 4283 if (ua_sess) {
d0b96690 4284 destroy_app_session(app, ua_sess);
ffe60014 4285 }
487cf67c
DG
4286 rcu_read_unlock();
4287 return;
4288}
55cc08a6
DG
4289
4290/*
4291 * Add context to a specific channel for global UST domain.
4292 */
4293int ust_app_add_ctx_channel_glb(struct ltt_ust_session *usess,
4294 struct ltt_ust_channel *uchan, struct ltt_ust_context *uctx)
4295{
4296 int ret = 0;
bec39940
DG
4297 struct lttng_ht_node_str *ua_chan_node;
4298 struct lttng_ht_iter iter, uiter;
55cc08a6
DG
4299 struct ust_app_channel *ua_chan = NULL;
4300 struct ust_app_session *ua_sess;
4301 struct ust_app *app;
4302
4303 rcu_read_lock();
4304
852d0037 4305 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
e0c7ec2b
DG
4306 if (!app->compatible) {
4307 /*
4308 * TODO: In time, we should notice the caller of this error by
4309 * telling him that this is a version error.
4310 */
4311 continue;
4312 }
55cc08a6
DG
4313 ua_sess = lookup_session_by_app(usess, app);
4314 if (ua_sess == NULL) {
4315 continue;
4316 }
4317
d0b96690 4318 pthread_mutex_lock(&ua_sess->lock);
55cc08a6 4319 /* Lookup channel in the ust app session */
bec39940
DG
4320 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &uiter);
4321 ua_chan_node = lttng_ht_iter_get_node_str(&uiter);
55cc08a6 4322 if (ua_chan_node == NULL) {
d0b96690 4323 goto next_app;
55cc08a6
DG
4324 }
4325 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel,
4326 node);
55cc08a6
DG
4327 ret = create_ust_app_channel_context(ua_sess, ua_chan, &uctx->ctx, app);
4328 if (ret < 0) {
d0b96690 4329 goto next_app;
55cc08a6 4330 }
d0b96690
DG
4331 next_app:
4332 pthread_mutex_unlock(&ua_sess->lock);
55cc08a6
DG
4333 }
4334
55cc08a6
DG
4335 rcu_read_unlock();
4336 return ret;
4337}
4338
76d45b40
DG
4339/*
4340 * Enable event for a channel from a UST session for a specific PID.
4341 */
4342int ust_app_enable_event_pid(struct ltt_ust_session *usess,
4343 struct ltt_ust_channel *uchan, struct ltt_ust_event *uevent, pid_t pid)
4344{
4345 int ret = 0;
bec39940 4346 struct lttng_ht_iter iter;
18eace3b 4347 struct lttng_ht_node_str *ua_chan_node;
76d45b40
DG
4348 struct ust_app *app;
4349 struct ust_app_session *ua_sess;
4350 struct ust_app_channel *ua_chan;
4351 struct ust_app_event *ua_event;
4352
4353 DBG("UST app enabling event %s for PID %d", uevent->attr.name, pid);
4354
4355 rcu_read_lock();
4356
4357 app = ust_app_find_by_pid(pid);
4358 if (app == NULL) {
4359 ERR("UST app enable event per PID %d not found", pid);
4360 ret = -1;
d0b96690 4361 goto end;
76d45b40
DG
4362 }
4363
e0c7ec2b
DG
4364 if (!app->compatible) {
4365 ret = 0;
d0b96690 4366 goto end;
e0c7ec2b
DG
4367 }
4368
76d45b40 4369 ua_sess = lookup_session_by_app(usess, app);
c4a1715b
DG
4370 if (!ua_sess) {
4371 /* The application has problem or is probably dead. */
d0b96690
DG
4372 ret = 0;
4373 goto end;
c4a1715b 4374 }
76d45b40 4375
d0b96690 4376 pthread_mutex_lock(&ua_sess->lock);
76d45b40 4377 /* Lookup channel in the ust app session */
bec39940
DG
4378 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &iter);
4379 ua_chan_node = lttng_ht_iter_get_node_str(&iter);
76d45b40
DG
4380 /* If the channel is not found, there is a code flow error */
4381 assert(ua_chan_node);
4382
4383 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node);
4384
18eace3b 4385 ua_event = find_ust_app_event(ua_chan->events, uevent->attr.name,
39c5a3a7 4386 uevent->filter, uevent->attr.loglevel, uevent->exclusion);
18eace3b 4387 if (ua_event == NULL) {
76d45b40
DG
4388 ret = create_ust_app_event(ua_sess, ua_chan, uevent, app);
4389 if (ret < 0) {
d0b96690 4390 goto end_unlock;
76d45b40
DG
4391 }
4392 } else {
76d45b40
DG
4393 ret = enable_ust_app_event(ua_sess, ua_event, app);
4394 if (ret < 0) {
d0b96690 4395 goto end_unlock;
76d45b40
DG
4396 }
4397 }
4398
d0b96690
DG
4399end_unlock:
4400 pthread_mutex_unlock(&ua_sess->lock);
4401end:
76d45b40
DG
4402 rcu_read_unlock();
4403 return ret;
4404}
7f79d3a1
DG
4405
4406/*
4407 * Disable event for a channel from a UST session for a specific PID.
4408 */
4409int ust_app_disable_event_pid(struct ltt_ust_session *usess,
4410 struct ltt_ust_channel *uchan, struct ltt_ust_event *uevent, pid_t pid)
4411{
4412 int ret = 0;
bec39940
DG
4413 struct lttng_ht_iter iter;
4414 struct lttng_ht_node_str *ua_chan_node, *ua_event_node;
7f79d3a1
DG
4415 struct ust_app *app;
4416 struct ust_app_session *ua_sess;
4417 struct ust_app_channel *ua_chan;
4418 struct ust_app_event *ua_event;
4419
4420 DBG("UST app disabling event %s for PID %d", uevent->attr.name, pid);
4421
4422 rcu_read_lock();
4423
4424 app = ust_app_find_by_pid(pid);
4425 if (app == NULL) {
4426 ERR("UST app disable event per PID %d not found", pid);
4427 ret = -1;
4428 goto error;
4429 }
4430
e0c7ec2b
DG
4431 if (!app->compatible) {
4432 ret = 0;
4433 goto error;
4434 }
4435
7f79d3a1 4436 ua_sess = lookup_session_by_app(usess, app);
c4a1715b
DG
4437 if (!ua_sess) {
4438 /* The application has problem or is probably dead. */
4439 goto error;
4440 }
7f79d3a1
DG
4441
4442 /* Lookup channel in the ust app session */
bec39940
DG
4443 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &iter);
4444 ua_chan_node = lttng_ht_iter_get_node_str(&iter);
7f79d3a1
DG
4445 if (ua_chan_node == NULL) {
4446 /* Channel does not exist, skip disabling */
4447 goto error;
4448 }
4449 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node);
4450
bec39940
DG
4451 lttng_ht_lookup(ua_chan->events, (void *)uevent->attr.name, &iter);
4452 ua_event_node = lttng_ht_iter_get_node_str(&iter);
7f79d3a1
DG
4453 if (ua_event_node == NULL) {
4454 /* Event does not exist, skip disabling */
4455 goto error;
4456 }
4457 ua_event = caa_container_of(ua_event_node, struct ust_app_event, node);
4458
4459 ret = disable_ust_app_event(ua_sess, ua_event, app);
4460 if (ret < 0) {
4461 goto error;
4462 }
4463
4464error:
4465 rcu_read_unlock();
4466 return ret;
4467}
e0c7ec2b 4468
4466912f
DG
4469/*
4470 * Calibrate registered applications.
4471 */
4472int ust_app_calibrate_glb(struct lttng_ust_calibrate *calibrate)
4473{
4474 int ret = 0;
4475 struct lttng_ht_iter iter;
4476 struct ust_app *app;
4477
4478 rcu_read_lock();
4479
852d0037 4480 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
4466912f
DG
4481 if (!app->compatible) {
4482 /*
4483 * TODO: In time, we should notice the caller of this error by
4484 * telling him that this is a version error.
4485 */
4486 continue;
4487 }
4488
840cb59c 4489 health_code_update();
86acf0da 4490
852d0037 4491 ret = ustctl_calibrate(app->sock, calibrate);
4466912f
DG
4492 if (ret < 0) {
4493 switch (ret) {
4494 case -ENOSYS:
4495 /* Means that it's not implemented on the tracer side. */
4496 ret = 0;
4497 break;
4498 default:
4466912f 4499 DBG2("Calibrate app PID %d returned with error %d",
852d0037 4500 app->pid, ret);
4466912f
DG
4501 break;
4502 }
4503 }
4504 }
4505
4506 DBG("UST app global domain calibration finished");
4507
4508 rcu_read_unlock();
4509
840cb59c 4510 health_code_update();
86acf0da 4511
4466912f
DG
4512 return ret;
4513}
d0b96690
DG
4514
4515/*
4516 * Receive registration and populate the given msg structure.
4517 *
4518 * On success return 0 else a negative value returned by the ustctl call.
4519 */
4520int ust_app_recv_registration(int sock, struct ust_register_msg *msg)
4521{
4522 int ret;
4523 uint32_t pid, ppid, uid, gid;
4524
4525 assert(msg);
4526
4527 ret = ustctl_recv_reg_msg(sock, &msg->type, &msg->major, &msg->minor,
4528 &pid, &ppid, &uid, &gid,
4529 &msg->bits_per_long,
4530 &msg->uint8_t_alignment,
4531 &msg->uint16_t_alignment,
4532 &msg->uint32_t_alignment,
4533 &msg->uint64_t_alignment,
4534 &msg->long_alignment,
4535 &msg->byte_order,
4536 msg->name);
4537 if (ret < 0) {
4538 switch (-ret) {
4539 case EPIPE:
4540 case ECONNRESET:
4541 case LTTNG_UST_ERR_EXITING:
4542 DBG3("UST app recv reg message failed. Application died");
4543 break;
4544 case LTTNG_UST_ERR_UNSUP_MAJOR:
4545 ERR("UST app recv reg unsupported version %d.%d. Supporting %d.%d",
4546 msg->major, msg->minor, LTTNG_UST_ABI_MAJOR_VERSION,
4547 LTTNG_UST_ABI_MINOR_VERSION);
4548 break;
4549 default:
4550 ERR("UST app recv reg message failed with ret %d", ret);
4551 break;
4552 }
4553 goto error;
4554 }
4555 msg->pid = (pid_t) pid;
4556 msg->ppid = (pid_t) ppid;
4557 msg->uid = (uid_t) uid;
4558 msg->gid = (gid_t) gid;
4559
4560error:
4561 return ret;
4562}
4563
d88aee68
DG
4564/*
4565 * Return a ust app channel object using the application object and the channel
4566 * object descriptor has a key. If not found, NULL is returned. A RCU read side
4567 * lock MUST be acquired before calling this function.
4568 */
d0b96690
DG
4569static struct ust_app_channel *find_channel_by_objd(struct ust_app *app,
4570 int objd)
4571{
4572 struct lttng_ht_node_ulong *node;
4573 struct lttng_ht_iter iter;
4574 struct ust_app_channel *ua_chan = NULL;
4575
4576 assert(app);
4577
4578 lttng_ht_lookup(app->ust_objd, (void *)((unsigned long) objd), &iter);
4579 node = lttng_ht_iter_get_node_ulong(&iter);
4580 if (node == NULL) {
4581 DBG2("UST app channel find by objd %d not found", objd);
4582 goto error;
4583 }
4584
4585 ua_chan = caa_container_of(node, struct ust_app_channel, ust_objd_node);
4586
4587error:
4588 return ua_chan;
4589}
4590
d88aee68
DG
4591/*
4592 * Reply to a register channel notification from an application on the notify
4593 * socket. The channel metadata is also created.
4594 *
4595 * The session UST registry lock is acquired in this function.
4596 *
4597 * On success 0 is returned else a negative value.
4598 */
d0b96690
DG
4599static int reply_ust_register_channel(int sock, int sobjd, int cobjd,
4600 size_t nr_fields, struct ustctl_field *fields)
4601{
4602 int ret, ret_code = 0;
4603 uint32_t chan_id, reg_count;
7972aab2 4604 uint64_t chan_reg_key;
d0b96690
DG
4605 enum ustctl_channel_header type;
4606 struct ust_app *app;
4607 struct ust_app_channel *ua_chan;
4608 struct ust_app_session *ua_sess;
7972aab2 4609 struct ust_registry_session *registry;
45893984 4610 struct ust_registry_channel *chan_reg;
d0b96690
DG
4611
4612 rcu_read_lock();
4613
4614 /* Lookup application. If not found, there is a code flow error. */
4615 app = find_app_by_notify_sock(sock);
d88aee68
DG
4616 if (!app) {
4617 DBG("Application socket %d is being teardown. Abort event notify",
4618 sock);
4619 ret = 0;
d5d629b5 4620 free(fields);
d88aee68
DG
4621 goto error_rcu_unlock;
4622 }
d0b96690 4623
4950b860 4624 /* Lookup channel by UST object descriptor. */
d0b96690 4625 ua_chan = find_channel_by_objd(app, cobjd);
4950b860
MD
4626 if (!ua_chan) {
4627 DBG("Application channel is being teardown. Abort event notify");
4628 ret = 0;
d5d629b5 4629 free(fields);
4950b860
MD
4630 goto error_rcu_unlock;
4631 }
4632
d0b96690
DG
4633 assert(ua_chan->session);
4634 ua_sess = ua_chan->session;
d0b96690 4635
7972aab2
DG
4636 /* Get right session registry depending on the session buffer type. */
4637 registry = get_session_registry(ua_sess);
4638 assert(registry);
45893984 4639
7972aab2
DG
4640 /* Depending on the buffer type, a different channel key is used. */
4641 if (ua_sess->buffer_type == LTTNG_BUFFER_PER_UID) {
4642 chan_reg_key = ua_chan->tracing_channel_id;
d0b96690 4643 } else {
7972aab2 4644 chan_reg_key = ua_chan->key;
d0b96690
DG
4645 }
4646
7972aab2
DG
4647 pthread_mutex_lock(&registry->lock);
4648
4649 chan_reg = ust_registry_channel_find(registry, chan_reg_key);
4650 assert(chan_reg);
4651
4652 if (!chan_reg->register_done) {
4653 reg_count = ust_registry_get_event_count(chan_reg);
4654 if (reg_count < 31) {
4655 type = USTCTL_CHANNEL_HEADER_COMPACT;
4656 } else {
4657 type = USTCTL_CHANNEL_HEADER_LARGE;
4658 }
4659
4660 chan_reg->nr_ctx_fields = nr_fields;
4661 chan_reg->ctx_fields = fields;
4662 chan_reg->header_type = type;
d0b96690 4663 } else {
7972aab2
DG
4664 /* Get current already assigned values. */
4665 type = chan_reg->header_type;
d5d629b5
DG
4666 free(fields);
4667 /* Set to NULL so the error path does not do a double free. */
4668 fields = NULL;
d0b96690 4669 }
7972aab2
DG
4670 /* Channel id is set during the object creation. */
4671 chan_id = chan_reg->chan_id;
d0b96690
DG
4672
4673 /* Append to metadata */
7972aab2
DG
4674 if (!chan_reg->metadata_dumped) {
4675 ret_code = ust_metadata_channel_statedump(registry, chan_reg);
d0b96690
DG
4676 if (ret_code) {
4677 ERR("Error appending channel metadata (errno = %d)", ret_code);
4678 goto reply;
4679 }
4680 }
4681
4682reply:
7972aab2
DG
4683 DBG3("UST app replying to register channel key %" PRIu64
4684 " with id %u, type: %d, ret: %d", chan_reg_key, chan_id, type,
4685 ret_code);
d0b96690
DG
4686
4687 ret = ustctl_reply_register_channel(sock, chan_id, type, ret_code);
4688 if (ret < 0) {
4689 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
4690 ERR("UST app reply channel failed with ret %d", ret);
4691 } else {
4692 DBG3("UST app reply channel failed. Application died");
4693 }
4694 goto error;
4695 }
4696
7972aab2
DG
4697 /* This channel registry registration is completed. */
4698 chan_reg->register_done = 1;
4699
d0b96690 4700error:
7972aab2 4701 pthread_mutex_unlock(&registry->lock);
d88aee68 4702error_rcu_unlock:
d0b96690 4703 rcu_read_unlock();
d5d629b5
DG
4704 if (ret) {
4705 free(fields);
4706 }
d0b96690
DG
4707 return ret;
4708}
4709
d88aee68
DG
4710/*
4711 * Add event to the UST channel registry. When the event is added to the
4712 * registry, the metadata is also created. Once done, this replies to the
4713 * application with the appropriate error code.
4714 *
4715 * The session UST registry lock is acquired in the function.
4716 *
4717 * On success 0 is returned else a negative value.
4718 */
d0b96690
DG
4719static int add_event_ust_registry(int sock, int sobjd, int cobjd, char *name,
4720 char *sig, size_t nr_fields, struct ustctl_field *fields, int loglevel,
4721 char *model_emf_uri)
4722{
4723 int ret, ret_code;
4724 uint32_t event_id = 0;
7972aab2 4725 uint64_t chan_reg_key;
d0b96690
DG
4726 struct ust_app *app;
4727 struct ust_app_channel *ua_chan;
4728 struct ust_app_session *ua_sess;
7972aab2 4729 struct ust_registry_session *registry;
d0b96690
DG
4730
4731 rcu_read_lock();
4732
4733 /* Lookup application. If not found, there is a code flow error. */
4734 app = find_app_by_notify_sock(sock);
d88aee68
DG
4735 if (!app) {
4736 DBG("Application socket %d is being teardown. Abort event notify",
4737 sock);
4738 ret = 0;
d5d629b5
DG
4739 free(sig);
4740 free(fields);
4741 free(model_emf_uri);
d88aee68
DG
4742 goto error_rcu_unlock;
4743 }
d0b96690 4744
4950b860 4745 /* Lookup channel by UST object descriptor. */
d0b96690 4746 ua_chan = find_channel_by_objd(app, cobjd);
4950b860
MD
4747 if (!ua_chan) {
4748 DBG("Application channel is being teardown. Abort event notify");
4749 ret = 0;
d5d629b5
DG
4750 free(sig);
4751 free(fields);
4752 free(model_emf_uri);
4950b860
MD
4753 goto error_rcu_unlock;
4754 }
4755
d0b96690
DG
4756 assert(ua_chan->session);
4757 ua_sess = ua_chan->session;
4758
7972aab2
DG
4759 registry = get_session_registry(ua_sess);
4760 assert(registry);
4761
4762 if (ua_sess->buffer_type == LTTNG_BUFFER_PER_UID) {
4763 chan_reg_key = ua_chan->tracing_channel_id;
4764 } else {
4765 chan_reg_key = ua_chan->key;
4766 }
4767
4768 pthread_mutex_lock(&registry->lock);
d0b96690 4769
d5d629b5
DG
4770 /*
4771 * From this point on, this call acquires the ownership of the sig, fields
4772 * and model_emf_uri meaning any free are done inside it if needed. These
4773 * three variables MUST NOT be read/write after this.
4774 */
7972aab2 4775 ret_code = ust_registry_create_event(registry, chan_reg_key,
45893984 4776 sobjd, cobjd, name, sig, nr_fields, fields, loglevel,
8494bda5
MD
4777 model_emf_uri, ua_sess->buffer_type, &event_id,
4778 app);
d0b96690
DG
4779
4780 /*
4781 * The return value is returned to ustctl so in case of an error, the
4782 * application can be notified. In case of an error, it's important not to
4783 * return a negative error or else the application will get closed.
4784 */
4785 ret = ustctl_reply_register_event(sock, event_id, ret_code);
4786 if (ret < 0) {
4787 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
4788 ERR("UST app reply event failed with ret %d", ret);
4789 } else {
4790 DBG3("UST app reply event failed. Application died");
4791 }
4792 /*
4793 * No need to wipe the create event since the application socket will
4794 * get close on error hence cleaning up everything by itself.
4795 */
4796 goto error;
4797 }
4798
7972aab2
DG
4799 DBG3("UST registry event %s with id %" PRId32 " added successfully",
4800 name, event_id);
d88aee68 4801
d0b96690 4802error:
7972aab2 4803 pthread_mutex_unlock(&registry->lock);
d88aee68 4804error_rcu_unlock:
d0b96690
DG
4805 rcu_read_unlock();
4806 return ret;
4807}
4808
d88aee68
DG
4809/*
4810 * Handle application notification through the given notify socket.
4811 *
4812 * Return 0 on success or else a negative value.
4813 */
d0b96690
DG
4814int ust_app_recv_notify(int sock)
4815{
4816 int ret;
4817 enum ustctl_notify_cmd cmd;
4818
4819 DBG3("UST app receiving notify from sock %d", sock);
4820
4821 ret = ustctl_recv_notify(sock, &cmd);
4822 if (ret < 0) {
4823 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
4824 ERR("UST app recv notify failed with ret %d", ret);
4825 } else {
4826 DBG3("UST app recv notify failed. Application died");
4827 }
4828 goto error;
4829 }
4830
4831 switch (cmd) {
4832 case USTCTL_NOTIFY_CMD_EVENT:
4833 {
4834 int sobjd, cobjd, loglevel;
4835 char name[LTTNG_UST_SYM_NAME_LEN], *sig, *model_emf_uri;
4836 size_t nr_fields;
4837 struct ustctl_field *fields;
4838
4839 DBG2("UST app ustctl register event received");
4840
4841 ret = ustctl_recv_register_event(sock, &sobjd, &cobjd, name, &loglevel,
4842 &sig, &nr_fields, &fields, &model_emf_uri);
4843 if (ret < 0) {
4844 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
4845 ERR("UST app recv event failed with ret %d", ret);
4846 } else {
4847 DBG3("UST app recv event failed. Application died");
4848 }
4849 goto error;
4850 }
4851
d5d629b5
DG
4852 /*
4853 * Add event to the UST registry coming from the notify socket. This
4854 * call will free if needed the sig, fields and model_emf_uri. This
4855 * code path loses the ownsership of these variables and transfer them
4856 * to the this function.
4857 */
d0b96690
DG
4858 ret = add_event_ust_registry(sock, sobjd, cobjd, name, sig, nr_fields,
4859 fields, loglevel, model_emf_uri);
4860 if (ret < 0) {
4861 goto error;
4862 }
4863
4864 break;
4865 }
4866 case USTCTL_NOTIFY_CMD_CHANNEL:
4867 {
4868 int sobjd, cobjd;
4869 size_t nr_fields;
4870 struct ustctl_field *fields;
4871
4872 DBG2("UST app ustctl register channel received");
4873
4874 ret = ustctl_recv_register_channel(sock, &sobjd, &cobjd, &nr_fields,
4875 &fields);
4876 if (ret < 0) {
4877 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
4878 ERR("UST app recv channel failed with ret %d", ret);
4879 } else {
4880 DBG3("UST app recv channel failed. Application died");
4881 }
4882 goto error;
4883 }
4884
d5d629b5
DG
4885 /*
4886 * The fields ownership are transfered to this function call meaning
4887 * that if needed it will be freed. After this, it's invalid to access
4888 * fields or clean it up.
4889 */
d0b96690
DG
4890 ret = reply_ust_register_channel(sock, sobjd, cobjd, nr_fields,
4891 fields);
4892 if (ret < 0) {
4893 goto error;
4894 }
4895
4896 break;
4897 }
4898 default:
4899 /* Should NEVER happen. */
4900 assert(0);
4901 }
4902
4903error:
4904 return ret;
4905}
d88aee68
DG
4906
4907/*
4908 * Once the notify socket hangs up, this is called. First, it tries to find the
4909 * corresponding application. On failure, the call_rcu to close the socket is
4910 * executed. If an application is found, it tries to delete it from the notify
4911 * socket hash table. Whathever the result, it proceeds to the call_rcu.
4912 *
4913 * Note that an object needs to be allocated here so on ENOMEM failure, the
4914 * call RCU is not done but the rest of the cleanup is.
4915 */
4916void ust_app_notify_sock_unregister(int sock)
4917{
4918 int err_enomem = 0;
4919 struct lttng_ht_iter iter;
4920 struct ust_app *app;
4921 struct ust_app_notify_sock_obj *obj;
4922
4923 assert(sock >= 0);
4924
4925 rcu_read_lock();
4926
4927 obj = zmalloc(sizeof(*obj));
4928 if (!obj) {
4929 /*
4930 * An ENOMEM is kind of uncool. If this strikes we continue the
4931 * procedure but the call_rcu will not be called. In this case, we
4932 * accept the fd leak rather than possibly creating an unsynchronized
4933 * state between threads.
4934 *
4935 * TODO: The notify object should be created once the notify socket is
4936 * registered and stored independantely from the ust app object. The
4937 * tricky part is to synchronize the teardown of the application and
4938 * this notify object. Let's keep that in mind so we can avoid this
4939 * kind of shenanigans with ENOMEM in the teardown path.
4940 */
4941 err_enomem = 1;
4942 } else {
4943 obj->fd = sock;
4944 }
4945
4946 DBG("UST app notify socket unregister %d", sock);
4947
4948 /*
4949 * Lookup application by notify socket. If this fails, this means that the
4950 * hash table delete has already been done by the application
4951 * unregistration process so we can safely close the notify socket in a
4952 * call RCU.
4953 */
4954 app = find_app_by_notify_sock(sock);
4955 if (!app) {
4956 goto close_socket;
4957 }
4958
4959 iter.iter.node = &app->notify_sock_n.node;
4960
4961 /*
4962 * Whatever happens here either we fail or succeed, in both cases we have
4963 * to close the socket after a grace period to continue to the call RCU
4964 * here. If the deletion is successful, the application is not visible
4965 * anymore by other threads and is it fails it means that it was already
4966 * deleted from the hash table so either way we just have to close the
4967 * socket.
4968 */
4969 (void) lttng_ht_del(ust_app_ht_by_notify_sock, &iter);
4970
4971close_socket:
4972 rcu_read_unlock();
4973
4974 /*
4975 * Close socket after a grace period to avoid for the socket to be reused
4976 * before the application object is freed creating potential race between
4977 * threads trying to add unique in the global hash table.
4978 */
4979 if (!err_enomem) {
4980 call_rcu(&obj->head, close_notify_sock_rcu);
4981 }
4982}
f45e313d
DG
4983
4984/*
4985 * Destroy a ust app data structure and free its memory.
4986 */
4987void ust_app_destroy(struct ust_app *app)
4988{
4989 if (!app) {
4990 return;
4991 }
4992
4993 call_rcu(&app->pid_n.head, delete_ust_app_rcu);
4994}
6dc3064a
DG
4995
4996/*
4997 * Take a snapshot for a given UST session. The snapshot is sent to the given
4998 * output.
4999 *
5000 * Return 0 on success or else a negative value.
5001 */
5002int ust_app_snapshot_record(struct ltt_ust_session *usess,
5c786ded 5003 struct snapshot_output *output, int wait, unsigned int nb_streams)
6dc3064a
DG
5004{
5005 int ret = 0;
5006 struct lttng_ht_iter iter;
5007 struct ust_app *app;
af706bb7 5008 char pathname[PATH_MAX];
5c786ded 5009 uint64_t max_stream_size = 0;
6dc3064a
DG
5010
5011 assert(usess);
5012 assert(output);
5013
5014 rcu_read_lock();
5015
5c786ded
JD
5016 /*
5017 * Compute the maximum size of a single stream if a max size is asked by
5018 * the caller.
5019 */
5020 if (output->max_size > 0 && nb_streams > 0) {
5021 max_stream_size = output->max_size / nb_streams;
5022 }
5023
8c924c7b
MD
5024 switch (usess->buffer_type) {
5025 case LTTNG_BUFFER_PER_UID:
5026 {
5027 struct buffer_reg_uid *reg;
6dc3064a 5028
8c924c7b
MD
5029 cds_list_for_each_entry(reg, &usess->buffer_reg_uid_list, lnode) {
5030 struct buffer_reg_channel *reg_chan;
5031 struct consumer_socket *socket;
6dc3064a 5032
8c924c7b
MD
5033 /* Get consumer socket to use to push the metadata.*/
5034 socket = consumer_find_socket_by_bitness(reg->bits_per_long,
5035 usess->consumer);
5036 if (!socket) {
5037 ret = -EINVAL;
5038 goto error;
5039 }
6dc3064a 5040
8c924c7b
MD
5041 memset(pathname, 0, sizeof(pathname));
5042 ret = snprintf(pathname, sizeof(pathname),
5043 DEFAULT_UST_TRACE_DIR "/" DEFAULT_UST_TRACE_UID_PATH,
5044 reg->uid, reg->bits_per_long);
5045 if (ret < 0) {
5046 PERROR("snprintf snapshot path");
5047 goto error;
5048 }
5049
5050 /* Add the UST default trace dir to path. */
5051 cds_lfht_for_each_entry(reg->registry->channels->ht, &iter.iter,
5052 reg_chan, node.node) {
5053
5054 /*
5055 * Make sure the maximum stream size is not lower than the
5056 * subbuffer size or else it's an error since we won't be able to
5057 * snapshot anything.
5058 */
5059 if (max_stream_size &&
5060 reg_chan->subbuf_size > max_stream_size) {
5061 ret = -EINVAL;
5062 DBG3("UST app snapshot record maximum stream size %" PRIu64
6a00837f 5063 " is smaller than subbuffer size of %zu",
8c924c7b
MD
5064 max_stream_size, reg_chan->subbuf_size);
5065 goto error;
5066 }
5067 ret = consumer_snapshot_channel(socket, reg_chan->consumer_key, output, 0,
5068 usess->uid, usess->gid, pathname, wait,
5069 max_stream_size);
5070 if (ret < 0) {
5071 goto error;
5072 }
5073 }
5074 ret = consumer_snapshot_channel(socket, reg->registry->reg.ust->metadata_key, output,
5075 1, usess->uid, usess->gid, pathname, wait,
5076 max_stream_size);
5077 if (ret < 0) {
5078 goto error;
5079 }
af706bb7 5080 }
8c924c7b
MD
5081 break;
5082 }
5083 case LTTNG_BUFFER_PER_PID:
5084 {
5085 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
5086 struct consumer_socket *socket;
5087 struct lttng_ht_iter chan_iter;
5088 struct ust_app_channel *ua_chan;
5089 struct ust_app_session *ua_sess;
5090 struct ust_registry_session *registry;
5091
5092 ua_sess = lookup_session_by_app(usess, app);
5093 if (!ua_sess) {
5094 /* Session not associated with this app. */
5095 continue;
5096 }
af706bb7 5097
8c924c7b
MD
5098 /* Get the right consumer socket for the application. */
5099 socket = consumer_find_socket_by_bitness(app->bits_per_long,
5100 output->consumer);
5101 if (!socket) {
5c786ded 5102 ret = -EINVAL;
5c786ded
JD
5103 goto error;
5104 }
5105
8c924c7b
MD
5106 /* Add the UST default trace dir to path. */
5107 memset(pathname, 0, sizeof(pathname));
5108 ret = snprintf(pathname, sizeof(pathname), DEFAULT_UST_TRACE_DIR "/%s",
5109 ua_sess->path);
6dc3064a 5110 if (ret < 0) {
8c924c7b 5111 PERROR("snprintf snapshot path");
6dc3064a
DG
5112 goto error;
5113 }
6dc3064a 5114
8c924c7b
MD
5115 cds_lfht_for_each_entry(ua_sess->channels->ht, &chan_iter.iter,
5116 ua_chan, node.node) {
5117 /*
5118 * Make sure the maximum stream size is not lower than the
5119 * subbuffer size or else it's an error since we won't be able to
5120 * snapshot anything.
5121 */
5122 if (max_stream_size &&
5123 ua_chan->attr.subbuf_size > max_stream_size) {
5124 ret = -EINVAL;
5125 DBG3("UST app snapshot record maximum stream size %" PRIu64
5126 " is smaller than subbuffer size of %" PRIu64,
5127 max_stream_size, ua_chan->attr.subbuf_size);
5128 goto error;
5129 }
6dc3064a 5130
8c924c7b
MD
5131 ret = consumer_snapshot_channel(socket, ua_chan->key, output, 0,
5132 ua_sess->euid, ua_sess->egid, pathname, wait,
5133 max_stream_size);
5134 if (ret < 0) {
5135 goto error;
5136 }
5137 }
5138
5139 registry = get_session_registry(ua_sess);
5140 assert(registry);
5141 ret = consumer_snapshot_channel(socket, registry->metadata_key, output,
5142 1, ua_sess->euid, ua_sess->egid, pathname, wait,
5143 max_stream_size);
5144 if (ret < 0) {
5145 goto error;
5146 }
5147 }
5148 break;
5149 }
5150 default:
5151 assert(0);
5152 break;
6dc3064a
DG
5153 }
5154
5155error:
5156 rcu_read_unlock();
5157 return ret;
5158}
5c786ded
JD
5159
5160/*
5161 * Return the number of streams for a UST session.
5162 */
5163unsigned int ust_app_get_nb_stream(struct ltt_ust_session *usess)
5164{
5165 unsigned int ret = 0;
5166 struct ust_app *app;
5167 struct lttng_ht_iter iter;
5168
5169 assert(usess);
5170
5171 switch (usess->buffer_type) {
5172 case LTTNG_BUFFER_PER_UID:
5173 {
5174 struct buffer_reg_uid *reg;
5175
5176 cds_list_for_each_entry(reg, &usess->buffer_reg_uid_list, lnode) {
5177 struct buffer_reg_channel *reg_chan;
5178
5179 cds_lfht_for_each_entry(reg->registry->channels->ht, &iter.iter,
5180 reg_chan, node.node) {
5181 ret += reg_chan->stream_count;
5182 }
5183 }
5184 break;
5185 }
5186 case LTTNG_BUFFER_PER_PID:
5187 {
5188 rcu_read_lock();
5189 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
5190 struct ust_app_channel *ua_chan;
5191 struct ust_app_session *ua_sess;
5192 struct lttng_ht_iter chan_iter;
5193
5194 ua_sess = lookup_session_by_app(usess, app);
5195 if (!ua_sess) {
5196 /* Session not associated with this app. */
5197 continue;
5198 }
5199
5200 cds_lfht_for_each_entry(ua_sess->channels->ht, &chan_iter.iter,
5201 ua_chan, node.node) {
5202 ret += ua_chan->streams.count;
5203 }
5204 }
5205 rcu_read_unlock();
5206 break;
5207 }
5208 default:
5209 assert(0);
5210 break;
5211 }
5212
5213 return ret;
5214}
This page took 0.329066 seconds and 5 git commands to generate.