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