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