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