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