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