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