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