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