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