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