Fix: remove logically dead code in send_channel_uid_to_ust
[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 }
2610 goto error_stream_unlock;
2611 }
2612
2613 /*
2614 * The return value is not important here. This function will output an
2615 * error if needed.
2616 */
2617 (void) release_ust_app_stream(-1, &stream, app);
2618 }
2619 ua_chan->is_sent = 1;
2620
2621 error_stream_unlock:
2622 pthread_mutex_unlock(&reg_chan->stream_list_lock);
2623 error:
2624 return ret;
2625 }
2626
2627 /*
2628 * Create and send to the application the created buffers with per UID buffers.
2629 *
2630 * Return 0 on success else a negative value.
2631 */
2632 static int create_channel_per_uid(struct ust_app *app,
2633 struct ltt_ust_session *usess, struct ust_app_session *ua_sess,
2634 struct ust_app_channel *ua_chan)
2635 {
2636 int ret;
2637 struct buffer_reg_uid *reg_uid;
2638 struct buffer_reg_channel *reg_chan;
2639
2640 assert(app);
2641 assert(usess);
2642 assert(ua_sess);
2643 assert(ua_chan);
2644
2645 DBG("UST app creating channel %s with per UID buffers", ua_chan->name);
2646
2647 reg_uid = buffer_reg_uid_find(usess->id, app->bits_per_long, app->uid);
2648 /*
2649 * The session creation handles the creation of this global registry
2650 * object. If none can be find, there is a code flow problem or a
2651 * teardown race.
2652 */
2653 assert(reg_uid);
2654
2655 reg_chan = buffer_reg_channel_find(ua_chan->tracing_channel_id,
2656 reg_uid);
2657 if (!reg_chan) {
2658 /* Create the buffer registry channel object. */
2659 ret = create_buffer_reg_channel(reg_uid->registry, ua_chan, &reg_chan);
2660 if (ret < 0) {
2661 ERR("Error creating the UST channel \"%s\" registry instance",
2662 ua_chan->name);
2663 goto error;
2664 }
2665 assert(reg_chan);
2666
2667 /*
2668 * Create the buffers on the consumer side. This call populates the
2669 * ust app channel object with all streams and data object.
2670 */
2671 ret = do_consumer_create_channel(usess, ua_sess, ua_chan,
2672 app->bits_per_long, reg_uid->registry->reg.ust);
2673 if (ret < 0) {
2674 ERR("Error creating UST channel \"%s\" on the consumer daemon",
2675 ua_chan->name);
2676
2677 /*
2678 * Let's remove the previously created buffer registry channel so
2679 * it's not visible anymore in the session registry.
2680 */
2681 ust_registry_channel_del_free(reg_uid->registry->reg.ust,
2682 ua_chan->tracing_channel_id);
2683 buffer_reg_channel_remove(reg_uid->registry, reg_chan);
2684 buffer_reg_channel_destroy(reg_chan, LTTNG_DOMAIN_UST);
2685 goto error;
2686 }
2687
2688 /*
2689 * Setup the streams and add it to the session registry.
2690 */
2691 ret = setup_buffer_reg_channel(reg_uid->registry,
2692 ua_chan, reg_chan, app);
2693 if (ret < 0) {
2694 ERR("Error setting up UST channel \"%s\"",
2695 ua_chan->name);
2696 goto error;
2697 }
2698
2699 }
2700
2701 /* Send buffers to the application. */
2702 ret = send_channel_uid_to_ust(reg_chan, app, ua_sess, ua_chan);
2703 if (ret < 0) {
2704 if (ret != -ENOTCONN) {
2705 ERR("Error sending channel to application");
2706 }
2707 goto error;
2708 }
2709
2710 error:
2711 return ret;
2712 }
2713
2714 /*
2715 * Create and send to the application the created buffers with per PID buffers.
2716 *
2717 * Return 0 on success else a negative value.
2718 */
2719 static int create_channel_per_pid(struct ust_app *app,
2720 struct ltt_ust_session *usess, struct ust_app_session *ua_sess,
2721 struct ust_app_channel *ua_chan)
2722 {
2723 int ret;
2724 struct ust_registry_session *registry;
2725
2726 assert(app);
2727 assert(usess);
2728 assert(ua_sess);
2729 assert(ua_chan);
2730
2731 DBG("UST app creating channel %s with per PID buffers", ua_chan->name);
2732
2733 rcu_read_lock();
2734
2735 registry = get_session_registry(ua_sess);
2736 assert(registry);
2737
2738 /* Create and add a new channel registry to session. */
2739 ret = ust_registry_channel_add(registry, ua_chan->key);
2740 if (ret < 0) {
2741 ERR("Error creating the UST channel \"%s\" registry instance",
2742 ua_chan->name);
2743 goto error;
2744 }
2745
2746 /* Create and get channel on the consumer side. */
2747 ret = do_consumer_create_channel(usess, ua_sess, ua_chan,
2748 app->bits_per_long, registry);
2749 if (ret < 0) {
2750 ERR("Error creating UST channel \"%s\" on the consumer daemon",
2751 ua_chan->name);
2752 goto error;
2753 }
2754
2755 ret = send_channel_pid_to_ust(app, ua_sess, ua_chan);
2756 if (ret < 0) {
2757 if (ret != -ENOTCONN) {
2758 ERR("Error sending channel to application");
2759 }
2760 goto error;
2761 }
2762
2763 error:
2764 rcu_read_unlock();
2765 return ret;
2766 }
2767
2768 /*
2769 * From an already allocated ust app channel, create the channel buffers if
2770 * need and send it to the application. This MUST be called with a RCU read
2771 * side lock acquired.
2772 *
2773 * Return 0 on success or else a negative value. Returns -ENOTCONN if
2774 * the application exited concurrently.
2775 */
2776 static int do_create_channel(struct ust_app *app,
2777 struct ltt_ust_session *usess, struct ust_app_session *ua_sess,
2778 struct ust_app_channel *ua_chan)
2779 {
2780 int ret;
2781
2782 assert(app);
2783 assert(usess);
2784 assert(ua_sess);
2785 assert(ua_chan);
2786
2787 /* Handle buffer type before sending the channel to the application. */
2788 switch (usess->buffer_type) {
2789 case LTTNG_BUFFER_PER_UID:
2790 {
2791 ret = create_channel_per_uid(app, usess, ua_sess, ua_chan);
2792 if (ret < 0) {
2793 goto error;
2794 }
2795 break;
2796 }
2797 case LTTNG_BUFFER_PER_PID:
2798 {
2799 ret = create_channel_per_pid(app, usess, ua_sess, ua_chan);
2800 if (ret < 0) {
2801 goto error;
2802 }
2803 break;
2804 }
2805 default:
2806 assert(0);
2807 ret = -EINVAL;
2808 goto error;
2809 }
2810
2811 /* Initialize ust objd object using the received handle and add it. */
2812 lttng_ht_node_init_ulong(&ua_chan->ust_objd_node, ua_chan->handle);
2813 lttng_ht_add_unique_ulong(app->ust_objd, &ua_chan->ust_objd_node);
2814
2815 /* If channel is not enabled, disable it on the tracer */
2816 if (!ua_chan->enabled) {
2817 ret = disable_ust_channel(app, ua_sess, ua_chan);
2818 if (ret < 0) {
2819 goto error;
2820 }
2821 }
2822
2823 error:
2824 return ret;
2825 }
2826
2827 /*
2828 * Create UST app channel and create it on the tracer. Set ua_chanp of the
2829 * newly created channel if not NULL.
2830 *
2831 * Called with UST app session lock and RCU read-side lock held.
2832 *
2833 * Return 0 on success or else a negative value. Returns -ENOTCONN if
2834 * the application exited concurrently.
2835 */
2836 static int create_ust_app_channel(struct ust_app_session *ua_sess,
2837 struct ltt_ust_channel *uchan, struct ust_app *app,
2838 enum lttng_ust_chan_type type, struct ltt_ust_session *usess,
2839 struct ust_app_channel **ua_chanp)
2840 {
2841 int ret = 0;
2842 struct lttng_ht_iter iter;
2843 struct lttng_ht_node_str *ua_chan_node;
2844 struct ust_app_channel *ua_chan;
2845
2846 /* Lookup channel in the ust app session */
2847 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &iter);
2848 ua_chan_node = lttng_ht_iter_get_node_str(&iter);
2849 if (ua_chan_node != NULL) {
2850 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node);
2851 goto end;
2852 }
2853
2854 ua_chan = alloc_ust_app_channel(uchan->name, ua_sess, &uchan->attr);
2855 if (ua_chan == NULL) {
2856 /* Only malloc can fail here */
2857 ret = -ENOMEM;
2858 goto error_alloc;
2859 }
2860 shadow_copy_channel(ua_chan, uchan);
2861
2862 /* Set channel type. */
2863 ua_chan->attr.type = type;
2864
2865 ret = do_create_channel(app, usess, ua_sess, ua_chan);
2866 if (ret < 0) {
2867 goto error;
2868 }
2869
2870 DBG2("UST app create channel %s for PID %d completed", ua_chan->name,
2871 app->pid);
2872
2873 /* Only add the channel if successful on the tracer side. */
2874 lttng_ht_add_unique_str(ua_sess->channels, &ua_chan->node);
2875
2876 end:
2877 if (ua_chanp) {
2878 *ua_chanp = ua_chan;
2879 }
2880
2881 /* Everything went well. */
2882 return 0;
2883
2884 error:
2885 delete_ust_app_channel(ua_chan->is_sent ? app->sock : -1, ua_chan, app);
2886 error_alloc:
2887 return ret;
2888 }
2889
2890 /*
2891 * Create UST app event and create it on the tracer side.
2892 *
2893 * Called with ust app session mutex held.
2894 */
2895 static
2896 int create_ust_app_event(struct ust_app_session *ua_sess,
2897 struct ust_app_channel *ua_chan, struct ltt_ust_event *uevent,
2898 struct ust_app *app)
2899 {
2900 int ret = 0;
2901 struct ust_app_event *ua_event;
2902
2903 /* Get event node */
2904 ua_event = find_ust_app_event(ua_chan->events, uevent->attr.name,
2905 uevent->filter, uevent->attr.loglevel, uevent->exclusion);
2906 if (ua_event != NULL) {
2907 ret = -EEXIST;
2908 goto end;
2909 }
2910
2911 /* Does not exist so create one */
2912 ua_event = alloc_ust_app_event(uevent->attr.name, &uevent->attr);
2913 if (ua_event == NULL) {
2914 /* Only malloc can failed so something is really wrong */
2915 ret = -ENOMEM;
2916 goto end;
2917 }
2918 shadow_copy_event(ua_event, uevent);
2919
2920 /* Create it on the tracer side */
2921 ret = create_ust_event(app, ua_sess, ua_chan, ua_event);
2922 if (ret < 0) {
2923 /* Not found previously means that it does not exist on the tracer */
2924 assert(ret != -LTTNG_UST_ERR_EXIST);
2925 goto error;
2926 }
2927
2928 add_unique_ust_app_event(ua_chan, ua_event);
2929
2930 DBG2("UST app create event %s for PID %d completed", ua_event->name,
2931 app->pid);
2932
2933 end:
2934 return ret;
2935
2936 error:
2937 /* Valid. Calling here is already in a read side lock */
2938 delete_ust_app_event(-1, ua_event, app);
2939 return ret;
2940 }
2941
2942 /*
2943 * Create UST metadata and open it on the tracer side.
2944 *
2945 * Called with UST app session lock held and RCU read side lock.
2946 */
2947 static int create_ust_app_metadata(struct ust_app_session *ua_sess,
2948 struct ust_app *app, struct consumer_output *consumer)
2949 {
2950 int ret = 0;
2951 struct ust_app_channel *metadata;
2952 struct consumer_socket *socket;
2953 struct ust_registry_session *registry;
2954
2955 assert(ua_sess);
2956 assert(app);
2957 assert(consumer);
2958
2959 registry = get_session_registry(ua_sess);
2960 assert(registry);
2961
2962 pthread_mutex_lock(&registry->lock);
2963
2964 /* Metadata already exists for this registry or it was closed previously */
2965 if (registry->metadata_key || registry->metadata_closed) {
2966 ret = 0;
2967 goto error;
2968 }
2969
2970 /* Allocate UST metadata */
2971 metadata = alloc_ust_app_channel(DEFAULT_METADATA_NAME, ua_sess, NULL);
2972 if (!metadata) {
2973 /* malloc() failed */
2974 ret = -ENOMEM;
2975 goto error;
2976 }
2977
2978 memcpy(&metadata->attr, &ua_sess->metadata_attr, sizeof(metadata->attr));
2979
2980 /* Need one fd for the channel. */
2981 ret = lttng_fd_get(LTTNG_FD_APPS, 1);
2982 if (ret < 0) {
2983 ERR("Exhausted number of available FD upon create metadata");
2984 goto error;
2985 }
2986
2987 /* Get the right consumer socket for the application. */
2988 socket = consumer_find_socket_by_bitness(app->bits_per_long, consumer);
2989 if (!socket) {
2990 ret = -EINVAL;
2991 goto error_consumer;
2992 }
2993
2994 /*
2995 * Keep metadata key so we can identify it on the consumer side. Assign it
2996 * to the registry *before* we ask the consumer so we avoid the race of the
2997 * consumer requesting the metadata and the ask_channel call on our side
2998 * did not returned yet.
2999 */
3000 registry->metadata_key = metadata->key;
3001
3002 /*
3003 * Ask the metadata channel creation to the consumer. The metadata object
3004 * will be created by the consumer and kept their. However, the stream is
3005 * never added or monitored until we do a first push metadata to the
3006 * consumer.
3007 */
3008 ret = ust_consumer_ask_channel(ua_sess, metadata, consumer, socket,
3009 registry);
3010 if (ret < 0) {
3011 /* Nullify the metadata key so we don't try to close it later on. */
3012 registry->metadata_key = 0;
3013 goto error_consumer;
3014 }
3015
3016 /*
3017 * The setup command will make the metadata stream be sent to the relayd,
3018 * if applicable, and the thread managing the metadatas. This is important
3019 * because after this point, if an error occurs, the only way the stream
3020 * can be deleted is to be monitored in the consumer.
3021 */
3022 ret = consumer_setup_metadata(socket, metadata->key);
3023 if (ret < 0) {
3024 /* Nullify the metadata key so we don't try to close it later on. */
3025 registry->metadata_key = 0;
3026 goto error_consumer;
3027 }
3028
3029 DBG2("UST metadata with key %" PRIu64 " created for app pid %d",
3030 metadata->key, app->pid);
3031
3032 error_consumer:
3033 lttng_fd_put(LTTNG_FD_APPS, 1);
3034 delete_ust_app_channel(-1, metadata, app);
3035 error:
3036 pthread_mutex_unlock(&registry->lock);
3037 return ret;
3038 }
3039
3040 /*
3041 * Return ust app pointer or NULL if not found. RCU read side lock MUST be
3042 * acquired before calling this function.
3043 */
3044 struct ust_app *ust_app_find_by_pid(pid_t pid)
3045 {
3046 struct ust_app *app = NULL;
3047 struct lttng_ht_node_ulong *node;
3048 struct lttng_ht_iter iter;
3049
3050 lttng_ht_lookup(ust_app_ht, (void *)((unsigned long) pid), &iter);
3051 node = lttng_ht_iter_get_node_ulong(&iter);
3052 if (node == NULL) {
3053 DBG2("UST app no found with pid %d", pid);
3054 goto error;
3055 }
3056
3057 DBG2("Found UST app by pid %d", pid);
3058
3059 app = caa_container_of(node, struct ust_app, pid_n);
3060
3061 error:
3062 return app;
3063 }
3064
3065 /*
3066 * Allocate and init an UST app object using the registration information and
3067 * the command socket. This is called when the command socket connects to the
3068 * session daemon.
3069 *
3070 * The object is returned on success or else NULL.
3071 */
3072 struct ust_app *ust_app_create(struct ust_register_msg *msg, int sock)
3073 {
3074 struct ust_app *lta = NULL;
3075
3076 assert(msg);
3077 assert(sock >= 0);
3078
3079 DBG3("UST app creating application for socket %d", sock);
3080
3081 if ((msg->bits_per_long == 64 &&
3082 (uatomic_read(&ust_consumerd64_fd) == -EINVAL))
3083 || (msg->bits_per_long == 32 &&
3084 (uatomic_read(&ust_consumerd32_fd) == -EINVAL))) {
3085 ERR("Registration failed: application \"%s\" (pid: %d) has "
3086 "%d-bit long, but no consumerd for this size is available.\n",
3087 msg->name, msg->pid, msg->bits_per_long);
3088 goto error;
3089 }
3090
3091 lta = zmalloc(sizeof(struct ust_app));
3092 if (lta == NULL) {
3093 PERROR("malloc");
3094 goto error;
3095 }
3096
3097 lta->ppid = msg->ppid;
3098 lta->uid = msg->uid;
3099 lta->gid = msg->gid;
3100
3101 lta->bits_per_long = msg->bits_per_long;
3102 lta->uint8_t_alignment = msg->uint8_t_alignment;
3103 lta->uint16_t_alignment = msg->uint16_t_alignment;
3104 lta->uint32_t_alignment = msg->uint32_t_alignment;
3105 lta->uint64_t_alignment = msg->uint64_t_alignment;
3106 lta->long_alignment = msg->long_alignment;
3107 lta->byte_order = msg->byte_order;
3108
3109 lta->v_major = msg->major;
3110 lta->v_minor = msg->minor;
3111 lta->sessions = lttng_ht_new(0, LTTNG_HT_TYPE_U64);
3112 lta->ust_objd = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
3113 lta->notify_sock = -1;
3114
3115 /* Copy name and make sure it's NULL terminated. */
3116 strncpy(lta->name, msg->name, sizeof(lta->name));
3117 lta->name[UST_APP_PROCNAME_LEN] = '\0';
3118
3119 /*
3120 * Before this can be called, when receiving the registration information,
3121 * the application compatibility is checked. So, at this point, the
3122 * application can work with this session daemon.
3123 */
3124 lta->compatible = 1;
3125
3126 lta->pid = msg->pid;
3127 lttng_ht_node_init_ulong(&lta->pid_n, (unsigned long) lta->pid);
3128 lta->sock = sock;
3129 pthread_mutex_init(&lta->sock_lock, NULL);
3130 lttng_ht_node_init_ulong(&lta->sock_n, (unsigned long) lta->sock);
3131
3132 CDS_INIT_LIST_HEAD(&lta->teardown_head);
3133 error:
3134 return lta;
3135 }
3136
3137 /*
3138 * For a given application object, add it to every hash table.
3139 */
3140 void ust_app_add(struct ust_app *app)
3141 {
3142 assert(app);
3143 assert(app->notify_sock >= 0);
3144
3145 rcu_read_lock();
3146
3147 /*
3148 * On a re-registration, we want to kick out the previous registration of
3149 * that pid
3150 */
3151 lttng_ht_add_replace_ulong(ust_app_ht, &app->pid_n);
3152
3153 /*
3154 * The socket _should_ be unique until _we_ call close. So, a add_unique
3155 * for the ust_app_ht_by_sock is used which asserts fail if the entry was
3156 * already in the table.
3157 */
3158 lttng_ht_add_unique_ulong(ust_app_ht_by_sock, &app->sock_n);
3159
3160 /* Add application to the notify socket hash table. */
3161 lttng_ht_node_init_ulong(&app->notify_sock_n, app->notify_sock);
3162 lttng_ht_add_unique_ulong(ust_app_ht_by_notify_sock, &app->notify_sock_n);
3163
3164 DBG("App registered with pid:%d ppid:%d uid:%d gid:%d sock:%d name:%s "
3165 "notify_sock:%d (version %d.%d)", app->pid, app->ppid, app->uid,
3166 app->gid, app->sock, app->name, app->notify_sock, app->v_major,
3167 app->v_minor);
3168
3169 rcu_read_unlock();
3170 }
3171
3172 /*
3173 * Set the application version into the object.
3174 *
3175 * Return 0 on success else a negative value either an errno code or a
3176 * LTTng-UST error code.
3177 */
3178 int ust_app_version(struct ust_app *app)
3179 {
3180 int ret;
3181
3182 assert(app);
3183
3184 pthread_mutex_lock(&app->sock_lock);
3185 ret = ustctl_tracer_version(app->sock, &app->version);
3186 pthread_mutex_unlock(&app->sock_lock);
3187 if (ret < 0) {
3188 if (ret != -LTTNG_UST_ERR_EXITING && ret != -EPIPE) {
3189 ERR("UST app %d version failed with ret %d", app->sock, ret);
3190 } else {
3191 DBG3("UST app %d version failed. Application is dead", app->sock);
3192 }
3193 }
3194
3195 return ret;
3196 }
3197
3198 /*
3199 * Unregister app by removing it from the global traceable app list and freeing
3200 * the data struct.
3201 *
3202 * The socket is already closed at this point so no close to sock.
3203 */
3204 void ust_app_unregister(int sock)
3205 {
3206 struct ust_app *lta;
3207 struct lttng_ht_node_ulong *node;
3208 struct lttng_ht_iter ust_app_sock_iter;
3209 struct lttng_ht_iter iter;
3210 struct ust_app_session *ua_sess;
3211 int ret;
3212
3213 rcu_read_lock();
3214
3215 /* Get the node reference for a call_rcu */
3216 lttng_ht_lookup(ust_app_ht_by_sock, (void *)((unsigned long) sock), &ust_app_sock_iter);
3217 node = lttng_ht_iter_get_node_ulong(&ust_app_sock_iter);
3218 assert(node);
3219
3220 lta = caa_container_of(node, struct ust_app, sock_n);
3221 DBG("PID %d unregistering with sock %d", lta->pid, sock);
3222
3223 /*
3224 * For per-PID buffers, perform "push metadata" and flush all
3225 * application streams before removing app from hash tables,
3226 * ensuring proper behavior of data_pending check.
3227 * Remove sessions so they are not visible during deletion.
3228 */
3229 cds_lfht_for_each_entry(lta->sessions->ht, &iter.iter, ua_sess,
3230 node.node) {
3231 struct ust_registry_session *registry;
3232
3233 ret = lttng_ht_del(lta->sessions, &iter);
3234 if (ret) {
3235 /* The session was already removed so scheduled for teardown. */
3236 continue;
3237 }
3238
3239 if (ua_sess->buffer_type == LTTNG_BUFFER_PER_PID) {
3240 (void) ust_app_flush_app_session(lta, ua_sess);
3241 }
3242
3243 /*
3244 * Add session to list for teardown. This is safe since at this point we
3245 * are the only one using this list.
3246 */
3247 pthread_mutex_lock(&ua_sess->lock);
3248
3249 if (ua_sess->deleted) {
3250 pthread_mutex_unlock(&ua_sess->lock);
3251 continue;
3252 }
3253
3254 /*
3255 * Normally, this is done in the delete session process which is
3256 * executed in the call rcu below. However, upon registration we can't
3257 * afford to wait for the grace period before pushing data or else the
3258 * data pending feature can race between the unregistration and stop
3259 * command where the data pending command is sent *before* the grace
3260 * period ended.
3261 *
3262 * The close metadata below nullifies the metadata pointer in the
3263 * session so the delete session will NOT push/close a second time.
3264 */
3265 registry = get_session_registry(ua_sess);
3266 if (registry) {
3267 /* Push metadata for application before freeing the application. */
3268 (void) push_metadata(registry, ua_sess->consumer);
3269
3270 /*
3271 * Don't ask to close metadata for global per UID buffers. Close
3272 * metadata only on destroy trace session in this case. Also, the
3273 * previous push metadata could have flag the metadata registry to
3274 * close so don't send a close command if closed.
3275 */
3276 if (ua_sess->buffer_type != LTTNG_BUFFER_PER_UID) {
3277 /* And ask to close it for this session registry. */
3278 (void) close_metadata(registry, ua_sess->consumer);
3279 }
3280 }
3281 cds_list_add(&ua_sess->teardown_node, &lta->teardown_head);
3282
3283 pthread_mutex_unlock(&ua_sess->lock);
3284 }
3285
3286 /* Remove application from PID hash table */
3287 ret = lttng_ht_del(ust_app_ht_by_sock, &ust_app_sock_iter);
3288 assert(!ret);
3289
3290 /*
3291 * Remove application from notify hash table. The thread handling the
3292 * notify socket could have deleted the node so ignore on error because
3293 * either way it's valid. The close of that socket is handled by the other
3294 * thread.
3295 */
3296 iter.iter.node = &lta->notify_sock_n.node;
3297 (void) lttng_ht_del(ust_app_ht_by_notify_sock, &iter);
3298
3299 /*
3300 * Ignore return value since the node might have been removed before by an
3301 * add replace during app registration because the PID can be reassigned by
3302 * the OS.
3303 */
3304 iter.iter.node = &lta->pid_n.node;
3305 ret = lttng_ht_del(ust_app_ht, &iter);
3306 if (ret) {
3307 DBG3("Unregister app by PID %d failed. This can happen on pid reuse",
3308 lta->pid);
3309 }
3310
3311 /* Free memory */
3312 call_rcu(&lta->pid_n.head, delete_ust_app_rcu);
3313
3314 rcu_read_unlock();
3315 return;
3316 }
3317
3318 /*
3319 * Fill events array with all events name of all registered apps.
3320 */
3321 int ust_app_list_events(struct lttng_event **events)
3322 {
3323 int ret, handle;
3324 size_t nbmem, count = 0;
3325 struct lttng_ht_iter iter;
3326 struct ust_app *app;
3327 struct lttng_event *tmp_event;
3328
3329 nbmem = UST_APP_EVENT_LIST_SIZE;
3330 tmp_event = zmalloc(nbmem * sizeof(struct lttng_event));
3331 if (tmp_event == NULL) {
3332 PERROR("zmalloc ust app events");
3333 ret = -ENOMEM;
3334 goto error;
3335 }
3336
3337 rcu_read_lock();
3338
3339 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
3340 struct lttng_ust_tracepoint_iter uiter;
3341
3342 health_code_update();
3343
3344 if (!app->compatible) {
3345 /*
3346 * TODO: In time, we should notice the caller of this error by
3347 * telling him that this is a version error.
3348 */
3349 continue;
3350 }
3351 pthread_mutex_lock(&app->sock_lock);
3352 handle = ustctl_tracepoint_list(app->sock);
3353 if (handle < 0) {
3354 if (handle != -EPIPE && handle != -LTTNG_UST_ERR_EXITING) {
3355 ERR("UST app list events getting handle failed for app pid %d",
3356 app->pid);
3357 }
3358 pthread_mutex_unlock(&app->sock_lock);
3359 continue;
3360 }
3361
3362 while ((ret = ustctl_tracepoint_list_get(app->sock, handle,
3363 &uiter)) != -LTTNG_UST_ERR_NOENT) {
3364 /* Handle ustctl error. */
3365 if (ret < 0) {
3366 int release_ret;
3367
3368 if (ret != -LTTNG_UST_ERR_EXITING && ret != -EPIPE) {
3369 ERR("UST app tp list get failed for app %d with ret %d",
3370 app->sock, ret);
3371 } else {
3372 DBG3("UST app tp list get failed. Application is dead");
3373 /*
3374 * This is normal behavior, an application can die during the
3375 * creation process. Don't report an error so the execution can
3376 * continue normally. Continue normal execution.
3377 */
3378 break;
3379 }
3380 free(tmp_event);
3381 release_ret = ustctl_release_handle(app->sock, handle);
3382 if (release_ret < 0 &&
3383 release_ret != -LTTNG_UST_ERR_EXITING &&
3384 release_ret != -EPIPE) {
3385 ERR("Error releasing app handle for app %d with ret %d", app->sock, release_ret);
3386 }
3387 pthread_mutex_unlock(&app->sock_lock);
3388 goto rcu_error;
3389 }
3390
3391 health_code_update();
3392 if (count >= nbmem) {
3393 /* In case the realloc fails, we free the memory */
3394 struct lttng_event *new_tmp_event;
3395 size_t new_nbmem;
3396
3397 new_nbmem = nbmem << 1;
3398 DBG2("Reallocating event list from %zu to %zu entries",
3399 nbmem, new_nbmem);
3400 new_tmp_event = realloc(tmp_event,
3401 new_nbmem * sizeof(struct lttng_event));
3402 if (new_tmp_event == NULL) {
3403 int release_ret;
3404
3405 PERROR("realloc ust app events");
3406 free(tmp_event);
3407 ret = -ENOMEM;
3408 release_ret = ustctl_release_handle(app->sock, handle);
3409 if (release_ret < 0 &&
3410 release_ret != -LTTNG_UST_ERR_EXITING &&
3411 release_ret != -EPIPE) {
3412 ERR("Error releasing app handle for app %d with ret %d", app->sock, release_ret);
3413 }
3414 pthread_mutex_unlock(&app->sock_lock);
3415 goto rcu_error;
3416 }
3417 /* Zero the new memory */
3418 memset(new_tmp_event + nbmem, 0,
3419 (new_nbmem - nbmem) * sizeof(struct lttng_event));
3420 nbmem = new_nbmem;
3421 tmp_event = new_tmp_event;
3422 }
3423 memcpy(tmp_event[count].name, uiter.name, LTTNG_UST_SYM_NAME_LEN);
3424 tmp_event[count].loglevel = uiter.loglevel;
3425 tmp_event[count].type = (enum lttng_event_type) LTTNG_UST_TRACEPOINT;
3426 tmp_event[count].pid = app->pid;
3427 tmp_event[count].enabled = -1;
3428 count++;
3429 }
3430 ret = ustctl_release_handle(app->sock, handle);
3431 pthread_mutex_unlock(&app->sock_lock);
3432 if (ret < 0 && ret != -LTTNG_UST_ERR_EXITING && ret != -EPIPE) {
3433 ERR("Error releasing app handle for app %d with ret %d", app->sock, ret);
3434 }
3435 }
3436
3437 ret = count;
3438 *events = tmp_event;
3439
3440 DBG2("UST app list events done (%zu events)", count);
3441
3442 rcu_error:
3443 rcu_read_unlock();
3444 error:
3445 health_code_update();
3446 return ret;
3447 }
3448
3449 /*
3450 * Fill events array with all events name of all registered apps.
3451 */
3452 int ust_app_list_event_fields(struct lttng_event_field **fields)
3453 {
3454 int ret, handle;
3455 size_t nbmem, count = 0;
3456 struct lttng_ht_iter iter;
3457 struct ust_app *app;
3458 struct lttng_event_field *tmp_event;
3459
3460 nbmem = UST_APP_EVENT_LIST_SIZE;
3461 tmp_event = zmalloc(nbmem * sizeof(struct lttng_event_field));
3462 if (tmp_event == NULL) {
3463 PERROR("zmalloc ust app event fields");
3464 ret = -ENOMEM;
3465 goto error;
3466 }
3467
3468 rcu_read_lock();
3469
3470 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
3471 struct lttng_ust_field_iter uiter;
3472
3473 health_code_update();
3474
3475 if (!app->compatible) {
3476 /*
3477 * TODO: In time, we should notice the caller of this error by
3478 * telling him that this is a version error.
3479 */
3480 continue;
3481 }
3482 pthread_mutex_lock(&app->sock_lock);
3483 handle = ustctl_tracepoint_field_list(app->sock);
3484 if (handle < 0) {
3485 if (handle != -EPIPE && handle != -LTTNG_UST_ERR_EXITING) {
3486 ERR("UST app list field getting handle failed for app pid %d",
3487 app->pid);
3488 }
3489 pthread_mutex_unlock(&app->sock_lock);
3490 continue;
3491 }
3492
3493 while ((ret = ustctl_tracepoint_field_list_get(app->sock, handle,
3494 &uiter)) != -LTTNG_UST_ERR_NOENT) {
3495 /* Handle ustctl error. */
3496 if (ret < 0) {
3497 int release_ret;
3498
3499 if (ret != -LTTNG_UST_ERR_EXITING && ret != -EPIPE) {
3500 ERR("UST app tp list field failed for app %d with ret %d",
3501 app->sock, ret);
3502 } else {
3503 DBG3("UST app tp list field failed. Application is dead");
3504 /*
3505 * This is normal behavior, an application can die during the
3506 * creation process. Don't report an error so the execution can
3507 * continue normally. Reset list and count for next app.
3508 */
3509 break;
3510 }
3511 free(tmp_event);
3512 release_ret = ustctl_release_handle(app->sock, handle);
3513 pthread_mutex_unlock(&app->sock_lock);
3514 if (release_ret < 0 &&
3515 release_ret != -LTTNG_UST_ERR_EXITING &&
3516 release_ret != -EPIPE) {
3517 ERR("Error releasing app handle for app %d with ret %d", app->sock, release_ret);
3518 }
3519 goto rcu_error;
3520 }
3521
3522 health_code_update();
3523 if (count >= nbmem) {
3524 /* In case the realloc fails, we free the memory */
3525 struct lttng_event_field *new_tmp_event;
3526 size_t new_nbmem;
3527
3528 new_nbmem = nbmem << 1;
3529 DBG2("Reallocating event field list from %zu to %zu entries",
3530 nbmem, new_nbmem);
3531 new_tmp_event = realloc(tmp_event,
3532 new_nbmem * sizeof(struct lttng_event_field));
3533 if (new_tmp_event == NULL) {
3534 int release_ret;
3535
3536 PERROR("realloc ust app event fields");
3537 free(tmp_event);
3538 ret = -ENOMEM;
3539 release_ret = ustctl_release_handle(app->sock, handle);
3540 pthread_mutex_unlock(&app->sock_lock);
3541 if (release_ret &&
3542 release_ret != -LTTNG_UST_ERR_EXITING &&
3543 release_ret != -EPIPE) {
3544 ERR("Error releasing app handle for app %d with ret %d", app->sock, release_ret);
3545 }
3546 goto rcu_error;
3547 }
3548 /* Zero the new memory */
3549 memset(new_tmp_event + nbmem, 0,
3550 (new_nbmem - nbmem) * sizeof(struct lttng_event_field));
3551 nbmem = new_nbmem;
3552 tmp_event = new_tmp_event;
3553 }
3554
3555 memcpy(tmp_event[count].field_name, uiter.field_name, LTTNG_UST_SYM_NAME_LEN);
3556 /* Mapping between these enums matches 1 to 1. */
3557 tmp_event[count].type = (enum lttng_event_field_type) uiter.type;
3558 tmp_event[count].nowrite = uiter.nowrite;
3559
3560 memcpy(tmp_event[count].event.name, uiter.event_name, LTTNG_UST_SYM_NAME_LEN);
3561 tmp_event[count].event.loglevel = uiter.loglevel;
3562 tmp_event[count].event.type = LTTNG_EVENT_TRACEPOINT;
3563 tmp_event[count].event.pid = app->pid;
3564 tmp_event[count].event.enabled = -1;
3565 count++;
3566 }
3567 ret = ustctl_release_handle(app->sock, handle);
3568 pthread_mutex_unlock(&app->sock_lock);
3569 if (ret < 0 &&
3570 ret != -LTTNG_UST_ERR_EXITING &&
3571 ret != -EPIPE) {
3572 ERR("Error releasing app handle for app %d with ret %d", app->sock, ret);
3573 }
3574 }
3575
3576 ret = count;
3577 *fields = tmp_event;
3578
3579 DBG2("UST app list event fields done (%zu events)", count);
3580
3581 rcu_error:
3582 rcu_read_unlock();
3583 error:
3584 health_code_update();
3585 return ret;
3586 }
3587
3588 /*
3589 * Free and clean all traceable apps of the global list.
3590 *
3591 * Should _NOT_ be called with RCU read-side lock held.
3592 */
3593 void ust_app_clean_list(void)
3594 {
3595 int ret;
3596 struct ust_app *app;
3597 struct lttng_ht_iter iter;
3598
3599 DBG2("UST app cleaning registered apps hash table");
3600
3601 rcu_read_lock();
3602
3603 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
3604 ret = lttng_ht_del(ust_app_ht, &iter);
3605 assert(!ret);
3606 call_rcu(&app->pid_n.head, delete_ust_app_rcu);
3607 }
3608
3609 /* Cleanup socket hash table */
3610 cds_lfht_for_each_entry(ust_app_ht_by_sock->ht, &iter.iter, app,
3611 sock_n.node) {
3612 ret = lttng_ht_del(ust_app_ht_by_sock, &iter);
3613 assert(!ret);
3614 }
3615
3616 /* Cleanup notify socket hash table */
3617 cds_lfht_for_each_entry(ust_app_ht_by_notify_sock->ht, &iter.iter, app,
3618 notify_sock_n.node) {
3619 ret = lttng_ht_del(ust_app_ht_by_notify_sock, &iter);
3620 assert(!ret);
3621 }
3622 rcu_read_unlock();
3623
3624 /* Destroy is done only when the ht is empty */
3625 ht_cleanup_push(ust_app_ht);
3626 ht_cleanup_push(ust_app_ht_by_sock);
3627 ht_cleanup_push(ust_app_ht_by_notify_sock);
3628 }
3629
3630 /*
3631 * Init UST app hash table.
3632 */
3633 void ust_app_ht_alloc(void)
3634 {
3635 ust_app_ht = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
3636 ust_app_ht_by_sock = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
3637 ust_app_ht_by_notify_sock = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
3638 }
3639
3640 /*
3641 * For a specific UST session, disable the channel for all registered apps.
3642 */
3643 int ust_app_disable_channel_glb(struct ltt_ust_session *usess,
3644 struct ltt_ust_channel *uchan)
3645 {
3646 int ret = 0;
3647 struct lttng_ht_iter iter;
3648 struct lttng_ht_node_str *ua_chan_node;
3649 struct ust_app *app;
3650 struct ust_app_session *ua_sess;
3651 struct ust_app_channel *ua_chan;
3652
3653 if (usess == NULL || uchan == NULL) {
3654 ERR("Disabling UST global channel with NULL values");
3655 ret = -1;
3656 goto error;
3657 }
3658
3659 DBG2("UST app disabling channel %s from global domain for session id %" PRIu64,
3660 uchan->name, usess->id);
3661
3662 rcu_read_lock();
3663
3664 /* For every registered applications */
3665 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
3666 struct lttng_ht_iter uiter;
3667 if (!app->compatible) {
3668 /*
3669 * TODO: In time, we should notice the caller of this error by
3670 * telling him that this is a version error.
3671 */
3672 continue;
3673 }
3674 ua_sess = lookup_session_by_app(usess, app);
3675 if (ua_sess == NULL) {
3676 continue;
3677 }
3678
3679 /* Get channel */
3680 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &uiter);
3681 ua_chan_node = lttng_ht_iter_get_node_str(&uiter);
3682 /* If the session if found for the app, the channel must be there */
3683 assert(ua_chan_node);
3684
3685 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node);
3686 /* The channel must not be already disabled */
3687 assert(ua_chan->enabled == 1);
3688
3689 /* Disable channel onto application */
3690 ret = disable_ust_app_channel(ua_sess, ua_chan, app);
3691 if (ret < 0) {
3692 /* XXX: We might want to report this error at some point... */
3693 continue;
3694 }
3695 }
3696
3697 rcu_read_unlock();
3698
3699 error:
3700 return ret;
3701 }
3702
3703 /*
3704 * For a specific UST session, enable the channel for all registered apps.
3705 */
3706 int ust_app_enable_channel_glb(struct ltt_ust_session *usess,
3707 struct ltt_ust_channel *uchan)
3708 {
3709 int ret = 0;
3710 struct lttng_ht_iter iter;
3711 struct ust_app *app;
3712 struct ust_app_session *ua_sess;
3713
3714 if (usess == NULL || uchan == NULL) {
3715 ERR("Adding UST global channel to NULL values");
3716 ret = -1;
3717 goto error;
3718 }
3719
3720 DBG2("UST app enabling channel %s to global domain for session id %" PRIu64,
3721 uchan->name, usess->id);
3722
3723 rcu_read_lock();
3724
3725 /* For every registered applications */
3726 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
3727 if (!app->compatible) {
3728 /*
3729 * TODO: In time, we should notice the caller of this error by
3730 * telling him that this is a version error.
3731 */
3732 continue;
3733 }
3734 ua_sess = lookup_session_by_app(usess, app);
3735 if (ua_sess == NULL) {
3736 continue;
3737 }
3738
3739 /* Enable channel onto application */
3740 ret = enable_ust_app_channel(ua_sess, uchan, app);
3741 if (ret < 0) {
3742 /* XXX: We might want to report this error at some point... */
3743 continue;
3744 }
3745 }
3746
3747 rcu_read_unlock();
3748
3749 error:
3750 return ret;
3751 }
3752
3753 /*
3754 * Disable an event in a channel and for a specific session.
3755 */
3756 int ust_app_disable_event_glb(struct ltt_ust_session *usess,
3757 struct ltt_ust_channel *uchan, struct ltt_ust_event *uevent)
3758 {
3759 int ret = 0;
3760 struct lttng_ht_iter iter, uiter;
3761 struct lttng_ht_node_str *ua_chan_node;
3762 struct ust_app *app;
3763 struct ust_app_session *ua_sess;
3764 struct ust_app_channel *ua_chan;
3765 struct ust_app_event *ua_event;
3766
3767 DBG("UST app disabling event %s for all apps in channel "
3768 "%s for session id %" PRIu64,
3769 uevent->attr.name, uchan->name, usess->id);
3770
3771 rcu_read_lock();
3772
3773 /* For all registered applications */
3774 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
3775 if (!app->compatible) {
3776 /*
3777 * TODO: In time, we should notice the caller of this error by
3778 * telling him that this is a version error.
3779 */
3780 continue;
3781 }
3782 ua_sess = lookup_session_by_app(usess, app);
3783 if (ua_sess == NULL) {
3784 /* Next app */
3785 continue;
3786 }
3787
3788 /* Lookup channel in the ust app session */
3789 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &uiter);
3790 ua_chan_node = lttng_ht_iter_get_node_str(&uiter);
3791 if (ua_chan_node == NULL) {
3792 DBG2("Channel %s not found in session id %" PRIu64 " for app pid %d."
3793 "Skipping", uchan->name, usess->id, app->pid);
3794 continue;
3795 }
3796 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node);
3797
3798 ua_event = find_ust_app_event(ua_chan->events, uevent->attr.name,
3799 uevent->filter, uevent->attr.loglevel,
3800 uevent->exclusion);
3801 if (ua_event == NULL) {
3802 DBG2("Event %s not found in channel %s for app pid %d."
3803 "Skipping", uevent->attr.name, uchan->name, app->pid);
3804 continue;
3805 }
3806
3807 ret = disable_ust_app_event(ua_sess, ua_event, app);
3808 if (ret < 0) {
3809 /* XXX: Report error someday... */
3810 continue;
3811 }
3812 }
3813
3814 rcu_read_unlock();
3815
3816 return ret;
3817 }
3818
3819 /*
3820 * For a specific UST session, create the channel for all registered apps.
3821 */
3822 int ust_app_create_channel_glb(struct ltt_ust_session *usess,
3823 struct ltt_ust_channel *uchan)
3824 {
3825 int ret = 0, created;
3826 struct lttng_ht_iter iter;
3827 struct ust_app *app;
3828 struct ust_app_session *ua_sess = NULL;
3829
3830 /* Very wrong code flow */
3831 assert(usess);
3832 assert(uchan);
3833
3834 DBG2("UST app adding channel %s to UST domain for session id %" PRIu64,
3835 uchan->name, usess->id);
3836
3837 rcu_read_lock();
3838
3839 /* For every registered applications */
3840 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
3841 if (!app->compatible) {
3842 /*
3843 * TODO: In time, we should notice the caller of this error by
3844 * telling him that this is a version error.
3845 */
3846 continue;
3847 }
3848 /*
3849 * Create session on the tracer side and add it to app session HT. Note
3850 * that if session exist, it will simply return a pointer to the ust
3851 * app session.
3852 */
3853 ret = create_ust_app_session(usess, app, &ua_sess, &created);
3854 if (ret < 0) {
3855 switch (ret) {
3856 case -ENOTCONN:
3857 /*
3858 * The application's socket is not valid. Either a bad socket
3859 * or a timeout on it. We can't inform the caller that for a
3860 * specific app, the session failed so lets continue here.
3861 */
3862 ret = 0; /* Not an error. */
3863 continue;
3864 case -ENOMEM:
3865 default:
3866 goto error_rcu_unlock;
3867 }
3868 }
3869 assert(ua_sess);
3870
3871 pthread_mutex_lock(&ua_sess->lock);
3872
3873 if (ua_sess->deleted) {
3874 pthread_mutex_unlock(&ua_sess->lock);
3875 continue;
3876 }
3877
3878 if (!strncmp(uchan->name, DEFAULT_METADATA_NAME,
3879 sizeof(uchan->name))) {
3880 copy_channel_attr_to_ustctl(&ua_sess->metadata_attr, &uchan->attr);
3881 ret = 0;
3882 } else {
3883 /* Create channel onto application. We don't need the chan ref. */
3884 ret = create_ust_app_channel(ua_sess, uchan, app,
3885 LTTNG_UST_CHAN_PER_CPU, usess, NULL);
3886 }
3887 pthread_mutex_unlock(&ua_sess->lock);
3888 if (ret < 0) {
3889 /* Cleanup the created session if it's the case. */
3890 if (created) {
3891 destroy_app_session(app, ua_sess);
3892 }
3893 switch (ret) {
3894 case -ENOTCONN:
3895 /*
3896 * The application's socket is not valid. Either a bad socket
3897 * or a timeout on it. We can't inform the caller that for a
3898 * specific app, the session failed so lets continue here.
3899 */
3900 ret = 0; /* Not an error. */
3901 continue;
3902 case -ENOMEM:
3903 default:
3904 goto error_rcu_unlock;
3905 }
3906 }
3907 }
3908
3909 error_rcu_unlock:
3910 rcu_read_unlock();
3911 return ret;
3912 }
3913
3914 /*
3915 * Enable event for a specific session and channel on the tracer.
3916 */
3917 int ust_app_enable_event_glb(struct ltt_ust_session *usess,
3918 struct ltt_ust_channel *uchan, struct ltt_ust_event *uevent)
3919 {
3920 int ret = 0;
3921 struct lttng_ht_iter iter, uiter;
3922 struct lttng_ht_node_str *ua_chan_node;
3923 struct ust_app *app;
3924 struct ust_app_session *ua_sess;
3925 struct ust_app_channel *ua_chan;
3926 struct ust_app_event *ua_event;
3927
3928 DBG("UST app enabling event %s for all apps for session id %" PRIu64,
3929 uevent->attr.name, usess->id);
3930
3931 /*
3932 * NOTE: At this point, this function is called only if the session and
3933 * channel passed are already created for all apps. and enabled on the
3934 * tracer also.
3935 */
3936
3937 rcu_read_lock();
3938
3939 /* For all registered applications */
3940 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
3941 if (!app->compatible) {
3942 /*
3943 * TODO: In time, we should notice the caller of this error by
3944 * telling him that this is a version error.
3945 */
3946 continue;
3947 }
3948 ua_sess = lookup_session_by_app(usess, app);
3949 if (!ua_sess) {
3950 /* The application has problem or is probably dead. */
3951 continue;
3952 }
3953
3954 pthread_mutex_lock(&ua_sess->lock);
3955
3956 if (ua_sess->deleted) {
3957 pthread_mutex_unlock(&ua_sess->lock);
3958 continue;
3959 }
3960
3961 /* Lookup channel in the ust app session */
3962 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &uiter);
3963 ua_chan_node = lttng_ht_iter_get_node_str(&uiter);
3964 /*
3965 * It is possible that the channel cannot be found is
3966 * the channel/event creation occurs concurrently with
3967 * an application exit.
3968 */
3969 if (!ua_chan_node) {
3970 pthread_mutex_unlock(&ua_sess->lock);
3971 continue;
3972 }
3973
3974 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node);
3975
3976 /* Get event node */
3977 ua_event = find_ust_app_event(ua_chan->events, uevent->attr.name,
3978 uevent->filter, uevent->attr.loglevel, uevent->exclusion);
3979 if (ua_event == NULL) {
3980 DBG3("UST app enable event %s not found for app PID %d."
3981 "Skipping app", uevent->attr.name, app->pid);
3982 goto next_app;
3983 }
3984
3985 ret = enable_ust_app_event(ua_sess, ua_event, app);
3986 if (ret < 0) {
3987 pthread_mutex_unlock(&ua_sess->lock);
3988 goto error;
3989 }
3990 next_app:
3991 pthread_mutex_unlock(&ua_sess->lock);
3992 }
3993
3994 error:
3995 rcu_read_unlock();
3996 return ret;
3997 }
3998
3999 /*
4000 * For a specific existing UST session and UST channel, creates the event for
4001 * all registered apps.
4002 */
4003 int ust_app_create_event_glb(struct ltt_ust_session *usess,
4004 struct ltt_ust_channel *uchan, struct ltt_ust_event *uevent)
4005 {
4006 int ret = 0;
4007 struct lttng_ht_iter iter, uiter;
4008 struct lttng_ht_node_str *ua_chan_node;
4009 struct ust_app *app;
4010 struct ust_app_session *ua_sess;
4011 struct ust_app_channel *ua_chan;
4012
4013 DBG("UST app creating event %s for all apps for session id %" PRIu64,
4014 uevent->attr.name, usess->id);
4015
4016 rcu_read_lock();
4017
4018 /* For all registered applications */
4019 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
4020 if (!app->compatible) {
4021 /*
4022 * TODO: In time, we should notice the caller of this error by
4023 * telling him that this is a version error.
4024 */
4025 continue;
4026 }
4027 ua_sess = lookup_session_by_app(usess, app);
4028 if (!ua_sess) {
4029 /* The application has problem or is probably dead. */
4030 continue;
4031 }
4032
4033 pthread_mutex_lock(&ua_sess->lock);
4034
4035 if (ua_sess->deleted) {
4036 pthread_mutex_unlock(&ua_sess->lock);
4037 continue;
4038 }
4039
4040 /* Lookup channel in the ust app session */
4041 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &uiter);
4042 ua_chan_node = lttng_ht_iter_get_node_str(&uiter);
4043 /* If the channel is not found, there is a code flow error */
4044 assert(ua_chan_node);
4045
4046 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node);
4047
4048 ret = create_ust_app_event(ua_sess, ua_chan, uevent, app);
4049 pthread_mutex_unlock(&ua_sess->lock);
4050 if (ret < 0) {
4051 if (ret != -LTTNG_UST_ERR_EXIST) {
4052 /* Possible value at this point: -ENOMEM. If so, we stop! */
4053 break;
4054 }
4055 DBG2("UST app event %s already exist on app PID %d",
4056 uevent->attr.name, app->pid);
4057 continue;
4058 }
4059 }
4060
4061 rcu_read_unlock();
4062
4063 return ret;
4064 }
4065
4066 /*
4067 * Start tracing for a specific UST session and app.
4068 */
4069 static
4070 int ust_app_start_trace(struct ltt_ust_session *usess, struct ust_app *app)
4071 {
4072 int ret = 0;
4073 struct ust_app_session *ua_sess;
4074
4075 DBG("Starting tracing for ust app pid %d", app->pid);
4076
4077 rcu_read_lock();
4078
4079 if (!app->compatible) {
4080 goto end;
4081 }
4082
4083 ua_sess = lookup_session_by_app(usess, app);
4084 if (ua_sess == NULL) {
4085 /* The session is in teardown process. Ignore and continue. */
4086 goto end;
4087 }
4088
4089 pthread_mutex_lock(&ua_sess->lock);
4090
4091 if (ua_sess->deleted) {
4092 pthread_mutex_unlock(&ua_sess->lock);
4093 goto end;
4094 }
4095
4096 /* Upon restart, we skip the setup, already done */
4097 if (ua_sess->started) {
4098 goto skip_setup;
4099 }
4100
4101 /* Create directories if consumer is LOCAL and has a path defined. */
4102 if (usess->consumer->type == CONSUMER_DST_LOCAL &&
4103 strlen(usess->consumer->dst.trace_path) > 0) {
4104 ret = run_as_mkdir_recursive(usess->consumer->dst.trace_path,
4105 S_IRWXU | S_IRWXG, ua_sess->euid, ua_sess->egid);
4106 if (ret < 0) {
4107 if (errno != EEXIST) {
4108 ERR("Trace directory creation error");
4109 goto error_unlock;
4110 }
4111 }
4112 }
4113
4114 /*
4115 * Create the metadata for the application. This returns gracefully if a
4116 * metadata was already set for the session.
4117 */
4118 ret = create_ust_app_metadata(ua_sess, app, usess->consumer);
4119 if (ret < 0) {
4120 goto error_unlock;
4121 }
4122
4123 health_code_update();
4124
4125 skip_setup:
4126 /* This start the UST tracing */
4127 pthread_mutex_lock(&app->sock_lock);
4128 ret = ustctl_start_session(app->sock, ua_sess->handle);
4129 pthread_mutex_unlock(&app->sock_lock);
4130 if (ret < 0) {
4131 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
4132 ERR("Error starting tracing for app pid: %d (ret: %d)",
4133 app->pid, ret);
4134 } else {
4135 DBG("UST app start session failed. Application is dead.");
4136 /*
4137 * This is normal behavior, an application can die during the
4138 * creation process. Don't report an error so the execution can
4139 * continue normally.
4140 */
4141 pthread_mutex_unlock(&ua_sess->lock);
4142 goto end;
4143 }
4144 goto error_unlock;
4145 }
4146
4147 /* Indicate that the session has been started once */
4148 ua_sess->started = 1;
4149
4150 pthread_mutex_unlock(&ua_sess->lock);
4151
4152 health_code_update();
4153
4154 /* Quiescent wait after starting trace */
4155 pthread_mutex_lock(&app->sock_lock);
4156 ret = ustctl_wait_quiescent(app->sock);
4157 pthread_mutex_unlock(&app->sock_lock);
4158 if (ret < 0 && ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
4159 ERR("UST app wait quiescent failed for app pid %d ret %d",
4160 app->pid, ret);
4161 }
4162
4163 end:
4164 rcu_read_unlock();
4165 health_code_update();
4166 return 0;
4167
4168 error_unlock:
4169 pthread_mutex_unlock(&ua_sess->lock);
4170 rcu_read_unlock();
4171 health_code_update();
4172 return -1;
4173 }
4174
4175 /*
4176 * Stop tracing for a specific UST session and app.
4177 */
4178 static
4179 int ust_app_stop_trace(struct ltt_ust_session *usess, struct ust_app *app)
4180 {
4181 int ret = 0;
4182 struct ust_app_session *ua_sess;
4183 struct ust_registry_session *registry;
4184
4185 DBG("Stopping tracing for ust app pid %d", app->pid);
4186
4187 rcu_read_lock();
4188
4189 if (!app->compatible) {
4190 goto end_no_session;
4191 }
4192
4193 ua_sess = lookup_session_by_app(usess, app);
4194 if (ua_sess == NULL) {
4195 goto end_no_session;
4196 }
4197
4198 pthread_mutex_lock(&ua_sess->lock);
4199
4200 if (ua_sess->deleted) {
4201 pthread_mutex_unlock(&ua_sess->lock);
4202 goto end_no_session;
4203 }
4204
4205 /*
4206 * If started = 0, it means that stop trace has been called for a session
4207 * that was never started. It's possible since we can have a fail start
4208 * from either the application manager thread or the command thread. Simply
4209 * indicate that this is a stop error.
4210 */
4211 if (!ua_sess->started) {
4212 goto error_rcu_unlock;
4213 }
4214
4215 health_code_update();
4216
4217 /* This inhibits UST tracing */
4218 pthread_mutex_lock(&app->sock_lock);
4219 ret = ustctl_stop_session(app->sock, ua_sess->handle);
4220 pthread_mutex_unlock(&app->sock_lock);
4221 if (ret < 0) {
4222 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
4223 ERR("Error stopping tracing for app pid: %d (ret: %d)",
4224 app->pid, ret);
4225 } else {
4226 DBG("UST app stop session failed. Application is dead.");
4227 /*
4228 * This is normal behavior, an application can die during the
4229 * creation process. Don't report an error so the execution can
4230 * continue normally.
4231 */
4232 goto end_unlock;
4233 }
4234 goto error_rcu_unlock;
4235 }
4236
4237 health_code_update();
4238
4239 /* Quiescent wait after stopping trace */
4240 pthread_mutex_lock(&app->sock_lock);
4241 ret = ustctl_wait_quiescent(app->sock);
4242 pthread_mutex_unlock(&app->sock_lock);
4243 if (ret < 0 && ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
4244 ERR("UST app wait quiescent failed for app pid %d ret %d",
4245 app->pid, ret);
4246 }
4247
4248 health_code_update();
4249
4250 registry = get_session_registry(ua_sess);
4251 assert(registry);
4252
4253 /* Push metadata for application before freeing the application. */
4254 (void) push_metadata(registry, ua_sess->consumer);
4255
4256 end_unlock:
4257 pthread_mutex_unlock(&ua_sess->lock);
4258 end_no_session:
4259 rcu_read_unlock();
4260 health_code_update();
4261 return 0;
4262
4263 error_rcu_unlock:
4264 pthread_mutex_unlock(&ua_sess->lock);
4265 rcu_read_unlock();
4266 health_code_update();
4267 return -1;
4268 }
4269
4270 static
4271 int ust_app_flush_app_session(struct ust_app *app,
4272 struct ust_app_session *ua_sess)
4273 {
4274 int ret, retval = 0;
4275 struct lttng_ht_iter iter;
4276 struct ust_app_channel *ua_chan;
4277 struct consumer_socket *socket;
4278
4279 DBG("Flushing app session buffers for ust app pid %d", app->pid);
4280
4281 rcu_read_lock();
4282
4283 if (!app->compatible) {
4284 goto end_not_compatible;
4285 }
4286
4287 pthread_mutex_lock(&ua_sess->lock);
4288
4289 if (ua_sess->deleted) {
4290 goto end_deleted;
4291 }
4292
4293 health_code_update();
4294
4295 /* Flushing buffers */
4296 socket = consumer_find_socket_by_bitness(app->bits_per_long,
4297 ua_sess->consumer);
4298
4299 /* Flush buffers and push metadata. */
4300 switch (ua_sess->buffer_type) {
4301 case LTTNG_BUFFER_PER_PID:
4302 cds_lfht_for_each_entry(ua_sess->channels->ht, &iter.iter, ua_chan,
4303 node.node) {
4304 health_code_update();
4305 assert(ua_chan->is_sent);
4306 ret = consumer_flush_channel(socket, ua_chan->key);
4307 if (ret) {
4308 ERR("Error flushing consumer channel");
4309 retval = -1;
4310 continue;
4311 }
4312 }
4313 break;
4314 case LTTNG_BUFFER_PER_UID:
4315 default:
4316 assert(0);
4317 break;
4318 }
4319
4320 health_code_update();
4321
4322 end_deleted:
4323 pthread_mutex_unlock(&ua_sess->lock);
4324
4325 end_not_compatible:
4326 rcu_read_unlock();
4327 health_code_update();
4328 return retval;
4329 }
4330
4331 /*
4332 * Flush buffers for all applications for a specific UST session.
4333 * Called with UST session lock held.
4334 */
4335 static
4336 int ust_app_flush_session(struct ltt_ust_session *usess)
4337
4338 {
4339 int ret = 0;
4340
4341 DBG("Flushing session buffers for all ust apps");
4342
4343 rcu_read_lock();
4344
4345 /* Flush buffers and push metadata. */
4346 switch (usess->buffer_type) {
4347 case LTTNG_BUFFER_PER_UID:
4348 {
4349 struct buffer_reg_uid *reg;
4350 struct lttng_ht_iter iter;
4351
4352 /* Flush all per UID buffers associated to that session. */
4353 cds_list_for_each_entry(reg, &usess->buffer_reg_uid_list, lnode) {
4354 struct ust_registry_session *ust_session_reg;
4355 struct buffer_reg_channel *reg_chan;
4356 struct consumer_socket *socket;
4357
4358 /* Get consumer socket to use to push the metadata.*/
4359 socket = consumer_find_socket_by_bitness(reg->bits_per_long,
4360 usess->consumer);
4361 if (!socket) {
4362 /* Ignore request if no consumer is found for the session. */
4363 continue;
4364 }
4365
4366 cds_lfht_for_each_entry(reg->registry->channels->ht, &iter.iter,
4367 reg_chan, node.node) {
4368 /*
4369 * The following call will print error values so the return
4370 * code is of little importance because whatever happens, we
4371 * have to try them all.
4372 */
4373 (void) consumer_flush_channel(socket, reg_chan->consumer_key);
4374 }
4375
4376 ust_session_reg = reg->registry->reg.ust;
4377 /* Push metadata. */
4378 (void) push_metadata(ust_session_reg, usess->consumer);
4379 }
4380 break;
4381 }
4382 case LTTNG_BUFFER_PER_PID:
4383 {
4384 struct ust_app_session *ua_sess;
4385 struct lttng_ht_iter iter;
4386 struct ust_app *app;
4387
4388 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
4389 ua_sess = lookup_session_by_app(usess, app);
4390 if (ua_sess == NULL) {
4391 continue;
4392 }
4393 (void) ust_app_flush_app_session(app, ua_sess);
4394 }
4395 break;
4396 }
4397 default:
4398 ret = -1;
4399 assert(0);
4400 break;
4401 }
4402
4403 rcu_read_unlock();
4404 health_code_update();
4405 return ret;
4406 }
4407
4408 /*
4409 * Destroy a specific UST session in apps.
4410 */
4411 static int destroy_trace(struct ltt_ust_session *usess, struct ust_app *app)
4412 {
4413 int ret;
4414 struct ust_app_session *ua_sess;
4415 struct lttng_ht_iter iter;
4416 struct lttng_ht_node_u64 *node;
4417
4418 DBG("Destroy tracing for ust app pid %d", app->pid);
4419
4420 rcu_read_lock();
4421
4422 if (!app->compatible) {
4423 goto end;
4424 }
4425
4426 __lookup_session_by_app(usess, app, &iter);
4427 node = lttng_ht_iter_get_node_u64(&iter);
4428 if (node == NULL) {
4429 /* Session is being or is deleted. */
4430 goto end;
4431 }
4432 ua_sess = caa_container_of(node, struct ust_app_session, node);
4433
4434 health_code_update();
4435 destroy_app_session(app, ua_sess);
4436
4437 health_code_update();
4438
4439 /* Quiescent wait after stopping trace */
4440 pthread_mutex_lock(&app->sock_lock);
4441 ret = ustctl_wait_quiescent(app->sock);
4442 pthread_mutex_unlock(&app->sock_lock);
4443 if (ret < 0 && ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
4444 ERR("UST app wait quiescent failed for app pid %d ret %d",
4445 app->pid, ret);
4446 }
4447 end:
4448 rcu_read_unlock();
4449 health_code_update();
4450 return 0;
4451 }
4452
4453 /*
4454 * Start tracing for the UST session.
4455 */
4456 int ust_app_start_trace_all(struct ltt_ust_session *usess)
4457 {
4458 int ret = 0;
4459 struct lttng_ht_iter iter;
4460 struct ust_app *app;
4461
4462 DBG("Starting all UST traces");
4463
4464 rcu_read_lock();
4465
4466 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
4467 ret = ust_app_start_trace(usess, app);
4468 if (ret < 0) {
4469 /* Continue to next apps even on error */
4470 continue;
4471 }
4472 }
4473
4474 rcu_read_unlock();
4475
4476 return 0;
4477 }
4478
4479 /*
4480 * Start tracing for the UST session.
4481 * Called with UST session lock held.
4482 */
4483 int ust_app_stop_trace_all(struct ltt_ust_session *usess)
4484 {
4485 int ret = 0;
4486 struct lttng_ht_iter iter;
4487 struct ust_app *app;
4488
4489 DBG("Stopping all UST traces");
4490
4491 rcu_read_lock();
4492
4493 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
4494 ret = ust_app_stop_trace(usess, app);
4495 if (ret < 0) {
4496 /* Continue to next apps even on error */
4497 continue;
4498 }
4499 }
4500
4501 (void) ust_app_flush_session(usess);
4502
4503 rcu_read_unlock();
4504
4505 return 0;
4506 }
4507
4508 /*
4509 * Destroy app UST session.
4510 */
4511 int ust_app_destroy_trace_all(struct ltt_ust_session *usess)
4512 {
4513 int ret = 0;
4514 struct lttng_ht_iter iter;
4515 struct ust_app *app;
4516
4517 DBG("Destroy all UST traces");
4518
4519 rcu_read_lock();
4520
4521 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
4522 ret = destroy_trace(usess, app);
4523 if (ret < 0) {
4524 /* Continue to next apps even on error */
4525 continue;
4526 }
4527 }
4528
4529 rcu_read_unlock();
4530
4531 return 0;
4532 }
4533
4534 /*
4535 * Add channels/events from UST global domain to registered apps at sock.
4536 */
4537 void ust_app_global_update(struct ltt_ust_session *usess, int sock)
4538 {
4539 int ret = 0;
4540 struct lttng_ht_iter iter, uiter;
4541 struct ust_app *app;
4542 struct ust_app_session *ua_sess = NULL;
4543 struct ust_app_channel *ua_chan;
4544 struct ust_app_event *ua_event;
4545 struct ust_app_ctx *ua_ctx;
4546
4547 assert(usess);
4548 assert(sock >= 0);
4549
4550 DBG2("UST app global update for app sock %d for session id %" PRIu64, sock,
4551 usess->id);
4552
4553 rcu_read_lock();
4554
4555 app = ust_app_find_by_sock(sock);
4556 if (app == NULL) {
4557 /*
4558 * Application can be unregistered before so this is possible hence
4559 * simply stopping the update.
4560 */
4561 DBG3("UST app update failed to find app sock %d", sock);
4562 goto error;
4563 }
4564
4565 if (!app->compatible) {
4566 goto error;
4567 }
4568
4569 ret = create_ust_app_session(usess, app, &ua_sess, NULL);
4570 if (ret < 0) {
4571 /* Tracer is probably gone or ENOMEM. */
4572 goto error;
4573 }
4574 assert(ua_sess);
4575
4576 pthread_mutex_lock(&ua_sess->lock);
4577
4578 if (ua_sess->deleted) {
4579 pthread_mutex_unlock(&ua_sess->lock);
4580 goto error;
4581 }
4582
4583 /*
4584 * We can iterate safely here over all UST app session since the create ust
4585 * app session above made a shadow copy of the UST global domain from the
4586 * ltt ust session.
4587 */
4588 cds_lfht_for_each_entry(ua_sess->channels->ht, &iter.iter, ua_chan,
4589 node.node) {
4590 ret = do_create_channel(app, usess, ua_sess, ua_chan);
4591 if (ret < 0 && ret != -ENOTCONN) {
4592 /*
4593 * Stop everything. On error, the application
4594 * failed, no more file descriptor are available
4595 * or ENOMEM so stopping here is the only thing
4596 * we can do for now. The only exception is
4597 * -ENOTCONN, which indicates that the application
4598 * has exit.
4599 */
4600 goto error_unlock;
4601 }
4602
4603 /*
4604 * Add context using the list so they are enabled in the same order the
4605 * user added them.
4606 */
4607 cds_list_for_each_entry(ua_ctx, &ua_chan->ctx_list, list) {
4608 ret = create_ust_channel_context(ua_chan, ua_ctx, app);
4609 if (ret < 0) {
4610 goto error_unlock;
4611 }
4612 }
4613
4614
4615 /* For each events */
4616 cds_lfht_for_each_entry(ua_chan->events->ht, &uiter.iter, ua_event,
4617 node.node) {
4618 ret = create_ust_event(app, ua_sess, ua_chan, ua_event);
4619 if (ret < 0) {
4620 goto error_unlock;
4621 }
4622 }
4623 }
4624
4625 pthread_mutex_unlock(&ua_sess->lock);
4626
4627 if (usess->active) {
4628 ret = ust_app_start_trace(usess, app);
4629 if (ret < 0) {
4630 goto error;
4631 }
4632
4633 DBG2("UST trace started for app pid %d", app->pid);
4634 }
4635
4636 /* Everything went well at this point. */
4637 rcu_read_unlock();
4638 return;
4639
4640 error_unlock:
4641 pthread_mutex_unlock(&ua_sess->lock);
4642 error:
4643 if (ua_sess) {
4644 destroy_app_session(app, ua_sess);
4645 }
4646 rcu_read_unlock();
4647 return;
4648 }
4649
4650 /*
4651 * Add context to a specific channel for global UST domain.
4652 */
4653 int ust_app_add_ctx_channel_glb(struct ltt_ust_session *usess,
4654 struct ltt_ust_channel *uchan, struct ltt_ust_context *uctx)
4655 {
4656 int ret = 0;
4657 struct lttng_ht_node_str *ua_chan_node;
4658 struct lttng_ht_iter iter, uiter;
4659 struct ust_app_channel *ua_chan = NULL;
4660 struct ust_app_session *ua_sess;
4661 struct ust_app *app;
4662
4663 rcu_read_lock();
4664
4665 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
4666 if (!app->compatible) {
4667 /*
4668 * TODO: In time, we should notice the caller of this error by
4669 * telling him that this is a version error.
4670 */
4671 continue;
4672 }
4673 ua_sess = lookup_session_by_app(usess, app);
4674 if (ua_sess == NULL) {
4675 continue;
4676 }
4677
4678 pthread_mutex_lock(&ua_sess->lock);
4679
4680 if (ua_sess->deleted) {
4681 pthread_mutex_unlock(&ua_sess->lock);
4682 continue;
4683 }
4684
4685 /* Lookup channel in the ust app session */
4686 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &uiter);
4687 ua_chan_node = lttng_ht_iter_get_node_str(&uiter);
4688 if (ua_chan_node == NULL) {
4689 goto next_app;
4690 }
4691 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel,
4692 node);
4693 ret = create_ust_app_channel_context(ua_sess, ua_chan, &uctx->ctx, app);
4694 if (ret < 0) {
4695 goto next_app;
4696 }
4697 next_app:
4698 pthread_mutex_unlock(&ua_sess->lock);
4699 }
4700
4701 rcu_read_unlock();
4702 return ret;
4703 }
4704
4705 /*
4706 * Enable event for a channel from a UST session for a specific PID.
4707 */
4708 int ust_app_enable_event_pid(struct ltt_ust_session *usess,
4709 struct ltt_ust_channel *uchan, struct ltt_ust_event *uevent, pid_t pid)
4710 {
4711 int ret = 0;
4712 struct lttng_ht_iter iter;
4713 struct lttng_ht_node_str *ua_chan_node;
4714 struct ust_app *app;
4715 struct ust_app_session *ua_sess;
4716 struct ust_app_channel *ua_chan;
4717 struct ust_app_event *ua_event;
4718
4719 DBG("UST app enabling event %s for PID %d", uevent->attr.name, pid);
4720
4721 rcu_read_lock();
4722
4723 app = ust_app_find_by_pid(pid);
4724 if (app == NULL) {
4725 ERR("UST app enable event per PID %d not found", pid);
4726 ret = -1;
4727 goto end;
4728 }
4729
4730 if (!app->compatible) {
4731 ret = 0;
4732 goto end;
4733 }
4734
4735 ua_sess = lookup_session_by_app(usess, app);
4736 if (!ua_sess) {
4737 /* The application has problem or is probably dead. */
4738 ret = 0;
4739 goto end;
4740 }
4741
4742 pthread_mutex_lock(&ua_sess->lock);
4743
4744 if (ua_sess->deleted) {
4745 ret = 0;
4746 goto end_unlock;
4747 }
4748
4749 /* Lookup channel in the ust app session */
4750 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &iter);
4751 ua_chan_node = lttng_ht_iter_get_node_str(&iter);
4752 /* If the channel is not found, there is a code flow error */
4753 assert(ua_chan_node);
4754
4755 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node);
4756
4757 ua_event = find_ust_app_event(ua_chan->events, uevent->attr.name,
4758 uevent->filter, uevent->attr.loglevel, uevent->exclusion);
4759 if (ua_event == NULL) {
4760 ret = create_ust_app_event(ua_sess, ua_chan, uevent, app);
4761 if (ret < 0) {
4762 goto end_unlock;
4763 }
4764 } else {
4765 ret = enable_ust_app_event(ua_sess, ua_event, app);
4766 if (ret < 0) {
4767 goto end_unlock;
4768 }
4769 }
4770
4771 end_unlock:
4772 pthread_mutex_unlock(&ua_sess->lock);
4773 end:
4774 rcu_read_unlock();
4775 return ret;
4776 }
4777
4778 /*
4779 * Calibrate registered applications.
4780 */
4781 int ust_app_calibrate_glb(struct lttng_ust_calibrate *calibrate)
4782 {
4783 int ret = 0;
4784 struct lttng_ht_iter iter;
4785 struct ust_app *app;
4786
4787 rcu_read_lock();
4788
4789 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
4790 if (!app->compatible) {
4791 /*
4792 * TODO: In time, we should notice the caller of this error by
4793 * telling him that this is a version error.
4794 */
4795 continue;
4796 }
4797
4798 health_code_update();
4799
4800 pthread_mutex_lock(&app->sock_lock);
4801 ret = ustctl_calibrate(app->sock, calibrate);
4802 pthread_mutex_unlock(&app->sock_lock);
4803 if (ret < 0) {
4804 switch (ret) {
4805 case -ENOSYS:
4806 /* Means that it's not implemented on the tracer side. */
4807 ret = 0;
4808 break;
4809 default:
4810 DBG2("Calibrate app PID %d returned with error %d",
4811 app->pid, ret);
4812 break;
4813 }
4814 }
4815 }
4816
4817 DBG("UST app global domain calibration finished");
4818
4819 rcu_read_unlock();
4820
4821 health_code_update();
4822
4823 return ret;
4824 }
4825
4826 /*
4827 * Receive registration and populate the given msg structure.
4828 *
4829 * On success return 0 else a negative value returned by the ustctl call.
4830 */
4831 int ust_app_recv_registration(int sock, struct ust_register_msg *msg)
4832 {
4833 int ret;
4834 uint32_t pid, ppid, uid, gid;
4835
4836 assert(msg);
4837
4838 ret = ustctl_recv_reg_msg(sock, &msg->type, &msg->major, &msg->minor,
4839 &pid, &ppid, &uid, &gid,
4840 &msg->bits_per_long,
4841 &msg->uint8_t_alignment,
4842 &msg->uint16_t_alignment,
4843 &msg->uint32_t_alignment,
4844 &msg->uint64_t_alignment,
4845 &msg->long_alignment,
4846 &msg->byte_order,
4847 msg->name);
4848 if (ret < 0) {
4849 switch (-ret) {
4850 case EPIPE:
4851 case ECONNRESET:
4852 case LTTNG_UST_ERR_EXITING:
4853 DBG3("UST app recv reg message failed. Application died");
4854 break;
4855 case LTTNG_UST_ERR_UNSUP_MAJOR:
4856 ERR("UST app recv reg unsupported version %d.%d. Supporting %d.%d",
4857 msg->major, msg->minor, LTTNG_UST_ABI_MAJOR_VERSION,
4858 LTTNG_UST_ABI_MINOR_VERSION);
4859 break;
4860 default:
4861 ERR("UST app recv reg message failed with ret %d", ret);
4862 break;
4863 }
4864 goto error;
4865 }
4866 msg->pid = (pid_t) pid;
4867 msg->ppid = (pid_t) ppid;
4868 msg->uid = (uid_t) uid;
4869 msg->gid = (gid_t) gid;
4870
4871 error:
4872 return ret;
4873 }
4874
4875 /*
4876 * Return a ust app channel object using the application object and the channel
4877 * object descriptor has a key. If not found, NULL is returned. A RCU read side
4878 * lock MUST be acquired before calling this function.
4879 */
4880 static struct ust_app_channel *find_channel_by_objd(struct ust_app *app,
4881 int objd)
4882 {
4883 struct lttng_ht_node_ulong *node;
4884 struct lttng_ht_iter iter;
4885 struct ust_app_channel *ua_chan = NULL;
4886
4887 assert(app);
4888
4889 lttng_ht_lookup(app->ust_objd, (void *)((unsigned long) objd), &iter);
4890 node = lttng_ht_iter_get_node_ulong(&iter);
4891 if (node == NULL) {
4892 DBG2("UST app channel find by objd %d not found", objd);
4893 goto error;
4894 }
4895
4896 ua_chan = caa_container_of(node, struct ust_app_channel, ust_objd_node);
4897
4898 error:
4899 return ua_chan;
4900 }
4901
4902 /*
4903 * Reply to a register channel notification from an application on the notify
4904 * socket. The channel metadata is also created.
4905 *
4906 * The session UST registry lock is acquired in this function.
4907 *
4908 * On success 0 is returned else a negative value.
4909 */
4910 static int reply_ust_register_channel(int sock, int sobjd, int cobjd,
4911 size_t nr_fields, struct ustctl_field *fields)
4912 {
4913 int ret, ret_code = 0;
4914 uint32_t chan_id, reg_count;
4915 uint64_t chan_reg_key;
4916 enum ustctl_channel_header type;
4917 struct ust_app *app;
4918 struct ust_app_channel *ua_chan;
4919 struct ust_app_session *ua_sess;
4920 struct ust_registry_session *registry;
4921 struct ust_registry_channel *chan_reg;
4922
4923 rcu_read_lock();
4924
4925 /* Lookup application. If not found, there is a code flow error. */
4926 app = find_app_by_notify_sock(sock);
4927 if (!app) {
4928 DBG("Application socket %d is being teardown. Abort event notify",
4929 sock);
4930 ret = 0;
4931 free(fields);
4932 goto error_rcu_unlock;
4933 }
4934
4935 /* Lookup channel by UST object descriptor. */
4936 ua_chan = find_channel_by_objd(app, cobjd);
4937 if (!ua_chan) {
4938 DBG("Application channel is being teardown. Abort event notify");
4939 ret = 0;
4940 free(fields);
4941 goto error_rcu_unlock;
4942 }
4943
4944 assert(ua_chan->session);
4945 ua_sess = ua_chan->session;
4946
4947 /* Get right session registry depending on the session buffer type. */
4948 registry = get_session_registry(ua_sess);
4949 assert(registry);
4950
4951 /* Depending on the buffer type, a different channel key is used. */
4952 if (ua_sess->buffer_type == LTTNG_BUFFER_PER_UID) {
4953 chan_reg_key = ua_chan->tracing_channel_id;
4954 } else {
4955 chan_reg_key = ua_chan->key;
4956 }
4957
4958 pthread_mutex_lock(&registry->lock);
4959
4960 chan_reg = ust_registry_channel_find(registry, chan_reg_key);
4961 assert(chan_reg);
4962
4963 if (!chan_reg->register_done) {
4964 reg_count = ust_registry_get_event_count(chan_reg);
4965 if (reg_count < 31) {
4966 type = USTCTL_CHANNEL_HEADER_COMPACT;
4967 } else {
4968 type = USTCTL_CHANNEL_HEADER_LARGE;
4969 }
4970
4971 chan_reg->nr_ctx_fields = nr_fields;
4972 chan_reg->ctx_fields = fields;
4973 chan_reg->header_type = type;
4974 } else {
4975 /* Get current already assigned values. */
4976 type = chan_reg->header_type;
4977 free(fields);
4978 /* Set to NULL so the error path does not do a double free. */
4979 fields = NULL;
4980 }
4981 /* Channel id is set during the object creation. */
4982 chan_id = chan_reg->chan_id;
4983
4984 /* Append to metadata */
4985 if (!chan_reg->metadata_dumped) {
4986 ret_code = ust_metadata_channel_statedump(registry, chan_reg);
4987 if (ret_code) {
4988 ERR("Error appending channel metadata (errno = %d)", ret_code);
4989 goto reply;
4990 }
4991 }
4992
4993 reply:
4994 DBG3("UST app replying to register channel key %" PRIu64
4995 " with id %u, type: %d, ret: %d", chan_reg_key, chan_id, type,
4996 ret_code);
4997
4998 ret = ustctl_reply_register_channel(sock, chan_id, type, ret_code);
4999 if (ret < 0) {
5000 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
5001 ERR("UST app reply channel failed with ret %d", ret);
5002 } else {
5003 DBG3("UST app reply channel failed. Application died");
5004 }
5005 goto error;
5006 }
5007
5008 /* This channel registry registration is completed. */
5009 chan_reg->register_done = 1;
5010
5011 error:
5012 pthread_mutex_unlock(&registry->lock);
5013 error_rcu_unlock:
5014 rcu_read_unlock();
5015 if (ret) {
5016 free(fields);
5017 }
5018 return ret;
5019 }
5020
5021 /*
5022 * Add event to the UST channel registry. When the event is added to the
5023 * registry, the metadata is also created. Once done, this replies to the
5024 * application with the appropriate error code.
5025 *
5026 * The session UST registry lock is acquired in the function.
5027 *
5028 * On success 0 is returned else a negative value.
5029 */
5030 static int add_event_ust_registry(int sock, int sobjd, int cobjd, char *name,
5031 char *sig, size_t nr_fields, struct ustctl_field *fields, int loglevel,
5032 char *model_emf_uri)
5033 {
5034 int ret, ret_code;
5035 uint32_t event_id = 0;
5036 uint64_t chan_reg_key;
5037 struct ust_app *app;
5038 struct ust_app_channel *ua_chan;
5039 struct ust_app_session *ua_sess;
5040 struct ust_registry_session *registry;
5041
5042 rcu_read_lock();
5043
5044 /* Lookup application. If not found, there is a code flow error. */
5045 app = find_app_by_notify_sock(sock);
5046 if (!app) {
5047 DBG("Application socket %d is being teardown. Abort event notify",
5048 sock);
5049 ret = 0;
5050 free(sig);
5051 free(fields);
5052 free(model_emf_uri);
5053 goto error_rcu_unlock;
5054 }
5055
5056 /* Lookup channel by UST object descriptor. */
5057 ua_chan = find_channel_by_objd(app, cobjd);
5058 if (!ua_chan) {
5059 DBG("Application channel is being teardown. Abort event notify");
5060 ret = 0;
5061 free(sig);
5062 free(fields);
5063 free(model_emf_uri);
5064 goto error_rcu_unlock;
5065 }
5066
5067 assert(ua_chan->session);
5068 ua_sess = ua_chan->session;
5069
5070 registry = get_session_registry(ua_sess);
5071 assert(registry);
5072
5073 if (ua_sess->buffer_type == LTTNG_BUFFER_PER_UID) {
5074 chan_reg_key = ua_chan->tracing_channel_id;
5075 } else {
5076 chan_reg_key = ua_chan->key;
5077 }
5078
5079 pthread_mutex_lock(&registry->lock);
5080
5081 /*
5082 * From this point on, this call acquires the ownership of the sig, fields
5083 * and model_emf_uri meaning any free are done inside it if needed. These
5084 * three variables MUST NOT be read/write after this.
5085 */
5086 ret_code = ust_registry_create_event(registry, chan_reg_key,
5087 sobjd, cobjd, name, sig, nr_fields, fields, loglevel,
5088 model_emf_uri, ua_sess->buffer_type, &event_id,
5089 app);
5090
5091 /*
5092 * The return value is returned to ustctl so in case of an error, the
5093 * application can be notified. In case of an error, it's important not to
5094 * return a negative error or else the application will get closed.
5095 */
5096 ret = ustctl_reply_register_event(sock, event_id, ret_code);
5097 if (ret < 0) {
5098 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
5099 ERR("UST app reply event failed with ret %d", ret);
5100 } else {
5101 DBG3("UST app reply event failed. Application died");
5102 }
5103 /*
5104 * No need to wipe the create event since the application socket will
5105 * get close on error hence cleaning up everything by itself.
5106 */
5107 goto error;
5108 }
5109
5110 DBG3("UST registry event %s with id %" PRId32 " added successfully",
5111 name, event_id);
5112
5113 error:
5114 pthread_mutex_unlock(&registry->lock);
5115 error_rcu_unlock:
5116 rcu_read_unlock();
5117 return ret;
5118 }
5119
5120 /*
5121 * Handle application notification through the given notify socket.
5122 *
5123 * Return 0 on success or else a negative value.
5124 */
5125 int ust_app_recv_notify(int sock)
5126 {
5127 int ret;
5128 enum ustctl_notify_cmd cmd;
5129
5130 DBG3("UST app receiving notify from sock %d", sock);
5131
5132 ret = ustctl_recv_notify(sock, &cmd);
5133 if (ret < 0) {
5134 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
5135 ERR("UST app recv notify failed with ret %d", ret);
5136 } else {
5137 DBG3("UST app recv notify failed. Application died");
5138 }
5139 goto error;
5140 }
5141
5142 switch (cmd) {
5143 case USTCTL_NOTIFY_CMD_EVENT:
5144 {
5145 int sobjd, cobjd, loglevel;
5146 char name[LTTNG_UST_SYM_NAME_LEN], *sig, *model_emf_uri;
5147 size_t nr_fields;
5148 struct ustctl_field *fields;
5149
5150 DBG2("UST app ustctl register event received");
5151
5152 ret = ustctl_recv_register_event(sock, &sobjd, &cobjd, name, &loglevel,
5153 &sig, &nr_fields, &fields, &model_emf_uri);
5154 if (ret < 0) {
5155 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
5156 ERR("UST app recv event failed with ret %d", ret);
5157 } else {
5158 DBG3("UST app recv event failed. Application died");
5159 }
5160 goto error;
5161 }
5162
5163 /*
5164 * Add event to the UST registry coming from the notify socket. This
5165 * call will free if needed the sig, fields and model_emf_uri. This
5166 * code path loses the ownsership of these variables and transfer them
5167 * to the this function.
5168 */
5169 ret = add_event_ust_registry(sock, sobjd, cobjd, name, sig, nr_fields,
5170 fields, loglevel, model_emf_uri);
5171 if (ret < 0) {
5172 goto error;
5173 }
5174
5175 break;
5176 }
5177 case USTCTL_NOTIFY_CMD_CHANNEL:
5178 {
5179 int sobjd, cobjd;
5180 size_t nr_fields;
5181 struct ustctl_field *fields;
5182
5183 DBG2("UST app ustctl register channel received");
5184
5185 ret = ustctl_recv_register_channel(sock, &sobjd, &cobjd, &nr_fields,
5186 &fields);
5187 if (ret < 0) {
5188 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
5189 ERR("UST app recv channel failed with ret %d", ret);
5190 } else {
5191 DBG3("UST app recv channel failed. Application died");
5192 }
5193 goto error;
5194 }
5195
5196 /*
5197 * The fields ownership are transfered to this function call meaning
5198 * that if needed it will be freed. After this, it's invalid to access
5199 * fields or clean it up.
5200 */
5201 ret = reply_ust_register_channel(sock, sobjd, cobjd, nr_fields,
5202 fields);
5203 if (ret < 0) {
5204 goto error;
5205 }
5206
5207 break;
5208 }
5209 default:
5210 /* Should NEVER happen. */
5211 assert(0);
5212 }
5213
5214 error:
5215 return ret;
5216 }
5217
5218 /*
5219 * Once the notify socket hangs up, this is called. First, it tries to find the
5220 * corresponding application. On failure, the call_rcu to close the socket is
5221 * executed. If an application is found, it tries to delete it from the notify
5222 * socket hash table. Whathever the result, it proceeds to the call_rcu.
5223 *
5224 * Note that an object needs to be allocated here so on ENOMEM failure, the
5225 * call RCU is not done but the rest of the cleanup is.
5226 */
5227 void ust_app_notify_sock_unregister(int sock)
5228 {
5229 int err_enomem = 0;
5230 struct lttng_ht_iter iter;
5231 struct ust_app *app;
5232 struct ust_app_notify_sock_obj *obj;
5233
5234 assert(sock >= 0);
5235
5236 rcu_read_lock();
5237
5238 obj = zmalloc(sizeof(*obj));
5239 if (!obj) {
5240 /*
5241 * An ENOMEM is kind of uncool. If this strikes we continue the
5242 * procedure but the call_rcu will not be called. In this case, we
5243 * accept the fd leak rather than possibly creating an unsynchronized
5244 * state between threads.
5245 *
5246 * TODO: The notify object should be created once the notify socket is
5247 * registered and stored independantely from the ust app object. The
5248 * tricky part is to synchronize the teardown of the application and
5249 * this notify object. Let's keep that in mind so we can avoid this
5250 * kind of shenanigans with ENOMEM in the teardown path.
5251 */
5252 err_enomem = 1;
5253 } else {
5254 obj->fd = sock;
5255 }
5256
5257 DBG("UST app notify socket unregister %d", sock);
5258
5259 /*
5260 * Lookup application by notify socket. If this fails, this means that the
5261 * hash table delete has already been done by the application
5262 * unregistration process so we can safely close the notify socket in a
5263 * call RCU.
5264 */
5265 app = find_app_by_notify_sock(sock);
5266 if (!app) {
5267 goto close_socket;
5268 }
5269
5270 iter.iter.node = &app->notify_sock_n.node;
5271
5272 /*
5273 * Whatever happens here either we fail or succeed, in both cases we have
5274 * to close the socket after a grace period to continue to the call RCU
5275 * here. If the deletion is successful, the application is not visible
5276 * anymore by other threads and is it fails it means that it was already
5277 * deleted from the hash table so either way we just have to close the
5278 * socket.
5279 */
5280 (void) lttng_ht_del(ust_app_ht_by_notify_sock, &iter);
5281
5282 close_socket:
5283 rcu_read_unlock();
5284
5285 /*
5286 * Close socket after a grace period to avoid for the socket to be reused
5287 * before the application object is freed creating potential race between
5288 * threads trying to add unique in the global hash table.
5289 */
5290 if (!err_enomem) {
5291 call_rcu(&obj->head, close_notify_sock_rcu);
5292 }
5293 }
5294
5295 /*
5296 * Destroy a ust app data structure and free its memory.
5297 */
5298 void ust_app_destroy(struct ust_app *app)
5299 {
5300 if (!app) {
5301 return;
5302 }
5303
5304 call_rcu(&app->pid_n.head, delete_ust_app_rcu);
5305 }
5306
5307 /*
5308 * Take a snapshot for a given UST session. The snapshot is sent to the given
5309 * output.
5310 *
5311 * Return 0 on success or else a negative value.
5312 */
5313 int ust_app_snapshot_record(struct ltt_ust_session *usess,
5314 struct snapshot_output *output, int wait,
5315 uint64_t nb_packets_per_stream)
5316 {
5317 int ret = 0;
5318 struct lttng_ht_iter iter;
5319 struct ust_app *app;
5320 char pathname[PATH_MAX];
5321
5322 assert(usess);
5323 assert(output);
5324
5325 rcu_read_lock();
5326
5327 switch (usess->buffer_type) {
5328 case LTTNG_BUFFER_PER_UID:
5329 {
5330 struct buffer_reg_uid *reg;
5331
5332 cds_list_for_each_entry(reg, &usess->buffer_reg_uid_list, lnode) {
5333 struct buffer_reg_channel *reg_chan;
5334 struct consumer_socket *socket;
5335
5336 /* Get consumer socket to use to push the metadata.*/
5337 socket = consumer_find_socket_by_bitness(reg->bits_per_long,
5338 usess->consumer);
5339 if (!socket) {
5340 ret = -EINVAL;
5341 goto error;
5342 }
5343
5344 memset(pathname, 0, sizeof(pathname));
5345 ret = snprintf(pathname, sizeof(pathname),
5346 DEFAULT_UST_TRACE_DIR "/" DEFAULT_UST_TRACE_UID_PATH,
5347 reg->uid, reg->bits_per_long);
5348 if (ret < 0) {
5349 PERROR("snprintf snapshot path");
5350 goto error;
5351 }
5352
5353 /* Add the UST default trace dir to path. */
5354 cds_lfht_for_each_entry(reg->registry->channels->ht, &iter.iter,
5355 reg_chan, node.node) {
5356 ret = consumer_snapshot_channel(socket, reg_chan->consumer_key,
5357 output, 0, usess->uid, usess->gid, pathname, wait,
5358 nb_packets_per_stream);
5359 if (ret < 0) {
5360 goto error;
5361 }
5362 }
5363 ret = consumer_snapshot_channel(socket,
5364 reg->registry->reg.ust->metadata_key, output, 1,
5365 usess->uid, usess->gid, pathname, wait, 0);
5366 if (ret < 0) {
5367 goto error;
5368 }
5369 }
5370 break;
5371 }
5372 case LTTNG_BUFFER_PER_PID:
5373 {
5374 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
5375 struct consumer_socket *socket;
5376 struct lttng_ht_iter chan_iter;
5377 struct ust_app_channel *ua_chan;
5378 struct ust_app_session *ua_sess;
5379 struct ust_registry_session *registry;
5380
5381 ua_sess = lookup_session_by_app(usess, app);
5382 if (!ua_sess) {
5383 /* Session not associated with this app. */
5384 continue;
5385 }
5386
5387 /* Get the right consumer socket for the application. */
5388 socket = consumer_find_socket_by_bitness(app->bits_per_long,
5389 output->consumer);
5390 if (!socket) {
5391 ret = -EINVAL;
5392 goto error;
5393 }
5394
5395 /* Add the UST default trace dir to path. */
5396 memset(pathname, 0, sizeof(pathname));
5397 ret = snprintf(pathname, sizeof(pathname), DEFAULT_UST_TRACE_DIR "/%s",
5398 ua_sess->path);
5399 if (ret < 0) {
5400 PERROR("snprintf snapshot path");
5401 goto error;
5402 }
5403
5404 cds_lfht_for_each_entry(ua_sess->channels->ht, &chan_iter.iter,
5405 ua_chan, node.node) {
5406 ret = consumer_snapshot_channel(socket, ua_chan->key, output,
5407 0, ua_sess->euid, ua_sess->egid, pathname, wait,
5408 nb_packets_per_stream);
5409 if (ret < 0) {
5410 goto error;
5411 }
5412 }
5413
5414 registry = get_session_registry(ua_sess);
5415 assert(registry);
5416 ret = consumer_snapshot_channel(socket, registry->metadata_key, output,
5417 1, ua_sess->euid, ua_sess->egid, pathname, wait, 0);
5418 if (ret < 0) {
5419 goto error;
5420 }
5421 }
5422 break;
5423 }
5424 default:
5425 assert(0);
5426 break;
5427 }
5428
5429 error:
5430 rcu_read_unlock();
5431 return ret;
5432 }
5433
5434 /*
5435 * Return the size taken by one more packet per stream.
5436 */
5437 uint64_t ust_app_get_size_one_more_packet_per_stream(struct ltt_ust_session *usess,
5438 uint64_t cur_nr_packets)
5439 {
5440 uint64_t tot_size = 0;
5441 struct ust_app *app;
5442 struct lttng_ht_iter iter;
5443
5444 assert(usess);
5445
5446 switch (usess->buffer_type) {
5447 case LTTNG_BUFFER_PER_UID:
5448 {
5449 struct buffer_reg_uid *reg;
5450
5451 cds_list_for_each_entry(reg, &usess->buffer_reg_uid_list, lnode) {
5452 struct buffer_reg_channel *reg_chan;
5453
5454 rcu_read_lock();
5455 cds_lfht_for_each_entry(reg->registry->channels->ht, &iter.iter,
5456 reg_chan, node.node) {
5457 if (cur_nr_packets >= reg_chan->num_subbuf) {
5458 /*
5459 * Don't take channel into account if we
5460 * already grab all its packets.
5461 */
5462 continue;
5463 }
5464 tot_size += reg_chan->subbuf_size * reg_chan->stream_count;
5465 }
5466 rcu_read_unlock();
5467 }
5468 break;
5469 }
5470 case LTTNG_BUFFER_PER_PID:
5471 {
5472 rcu_read_lock();
5473 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
5474 struct ust_app_channel *ua_chan;
5475 struct ust_app_session *ua_sess;
5476 struct lttng_ht_iter chan_iter;
5477
5478 ua_sess = lookup_session_by_app(usess, app);
5479 if (!ua_sess) {
5480 /* Session not associated with this app. */
5481 continue;
5482 }
5483
5484 cds_lfht_for_each_entry(ua_sess->channels->ht, &chan_iter.iter,
5485 ua_chan, node.node) {
5486 if (cur_nr_packets >= ua_chan->attr.num_subbuf) {
5487 /*
5488 * Don't take channel into account if we
5489 * already grab all its packets.
5490 */
5491 continue;
5492 }
5493 tot_size += ua_chan->attr.subbuf_size * ua_chan->streams.count;
5494 }
5495 }
5496 rcu_read_unlock();
5497 break;
5498 }
5499 default:
5500 assert(0);
5501 break;
5502 }
5503
5504 return tot_size;
5505 }
This page took 0.135169 seconds and 5 git commands to generate.