c9a5f52618089fdbf48d5ab7364141ecf99a699b
[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_unique_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 * Create a context for the channel on the tracer.
1963 *
1964 * Called with UST app session lock held and a RCU read side lock.
1965 */
1966 static
1967 int create_ust_app_channel_context(struct ust_app_session *ua_sess,
1968 struct ust_app_channel *ua_chan, struct lttng_ust_context *uctx,
1969 struct ust_app *app)
1970 {
1971 int ret = 0;
1972 struct lttng_ht_iter iter;
1973 struct lttng_ht_node_ulong *node;
1974 struct ust_app_ctx *ua_ctx;
1975
1976 DBG2("UST app adding context to channel %s", ua_chan->name);
1977
1978 lttng_ht_lookup(ua_chan->ctx, (void *)((unsigned long)uctx->ctx), &iter);
1979 node = lttng_ht_iter_get_node_ulong(&iter);
1980 if (node != NULL) {
1981 ret = -EEXIST;
1982 goto error;
1983 }
1984
1985 ua_ctx = alloc_ust_app_ctx(uctx);
1986 if (ua_ctx == NULL) {
1987 /* malloc failed */
1988 ret = -1;
1989 goto error;
1990 }
1991
1992 lttng_ht_node_init_ulong(&ua_ctx->node, (unsigned long) ua_ctx->ctx.ctx);
1993 lttng_ht_add_unique_ulong(ua_chan->ctx, &ua_ctx->node);
1994 cds_list_add_tail(&ua_ctx->list, &ua_chan->ctx_list);
1995
1996 ret = create_ust_channel_context(ua_chan, ua_ctx, app);
1997 if (ret < 0) {
1998 goto error;
1999 }
2000
2001 error:
2002 return ret;
2003 }
2004
2005 /*
2006 * Enable on the tracer side a ust app event for the session and channel.
2007 *
2008 * Called with UST app session lock held.
2009 */
2010 static
2011 int enable_ust_app_event(struct ust_app_session *ua_sess,
2012 struct ust_app_event *ua_event, struct ust_app *app)
2013 {
2014 int ret;
2015
2016 ret = enable_ust_event(app, ua_sess, ua_event);
2017 if (ret < 0) {
2018 goto error;
2019 }
2020
2021 ua_event->enabled = 1;
2022
2023 error:
2024 return ret;
2025 }
2026
2027 /*
2028 * Disable on the tracer side a ust app event for the session and channel.
2029 */
2030 static int disable_ust_app_event(struct ust_app_session *ua_sess,
2031 struct ust_app_event *ua_event, struct ust_app *app)
2032 {
2033 int ret;
2034
2035 ret = disable_ust_event(app, ua_sess, ua_event);
2036 if (ret < 0) {
2037 goto error;
2038 }
2039
2040 ua_event->enabled = 0;
2041
2042 error:
2043 return ret;
2044 }
2045
2046 /*
2047 * Lookup ust app channel for session and disable it on the tracer side.
2048 */
2049 static
2050 int disable_ust_app_channel(struct ust_app_session *ua_sess,
2051 struct ust_app_channel *ua_chan, struct ust_app *app)
2052 {
2053 int ret;
2054
2055 ret = disable_ust_channel(app, ua_sess, ua_chan);
2056 if (ret < 0) {
2057 goto error;
2058 }
2059
2060 ua_chan->enabled = 0;
2061
2062 error:
2063 return ret;
2064 }
2065
2066 /*
2067 * Lookup ust app channel for session and enable it on the tracer side. This
2068 * MUST be called with a RCU read side lock acquired.
2069 */
2070 static int enable_ust_app_channel(struct ust_app_session *ua_sess,
2071 struct ltt_ust_channel *uchan, struct ust_app *app)
2072 {
2073 int ret = 0;
2074 struct lttng_ht_iter iter;
2075 struct lttng_ht_node_str *ua_chan_node;
2076 struct ust_app_channel *ua_chan;
2077
2078 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &iter);
2079 ua_chan_node = lttng_ht_iter_get_node_str(&iter);
2080 if (ua_chan_node == NULL) {
2081 DBG2("Unable to find channel %s in ust session id %" PRIu64,
2082 uchan->name, ua_sess->tracing_id);
2083 goto error;
2084 }
2085
2086 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node);
2087
2088 ret = enable_ust_channel(app, ua_sess, ua_chan);
2089 if (ret < 0) {
2090 goto error;
2091 }
2092
2093 error:
2094 return ret;
2095 }
2096
2097 /*
2098 * Ask the consumer to create a channel and get it if successful.
2099 *
2100 * Return 0 on success or else a negative value.
2101 */
2102 static int do_consumer_create_channel(struct ltt_ust_session *usess,
2103 struct ust_app_session *ua_sess, struct ust_app_channel *ua_chan,
2104 int bitness, struct ust_registry_session *registry)
2105 {
2106 int ret;
2107 unsigned int nb_fd = 0;
2108 struct consumer_socket *socket;
2109
2110 assert(usess);
2111 assert(ua_sess);
2112 assert(ua_chan);
2113 assert(registry);
2114
2115 rcu_read_lock();
2116 health_code_update();
2117
2118 /* Get the right consumer socket for the application. */
2119 socket = consumer_find_socket_by_bitness(bitness, usess->consumer);
2120 if (!socket) {
2121 ret = -EINVAL;
2122 goto error;
2123 }
2124
2125 health_code_update();
2126
2127 /* Need one fd for the channel. */
2128 ret = lttng_fd_get(LTTNG_FD_APPS, 1);
2129 if (ret < 0) {
2130 ERR("Exhausted number of available FD upon create channel");
2131 goto error;
2132 }
2133
2134 /*
2135 * Ask consumer to create channel. The consumer will return the number of
2136 * stream we have to expect.
2137 */
2138 ret = ust_consumer_ask_channel(ua_sess, ua_chan, usess->consumer, socket,
2139 registry);
2140 if (ret < 0) {
2141 goto error_ask;
2142 }
2143
2144 /*
2145 * Compute the number of fd needed before receiving them. It must be 2 per
2146 * stream (2 being the default value here).
2147 */
2148 nb_fd = DEFAULT_UST_STREAM_FD_NUM * ua_chan->expected_stream_count;
2149
2150 /* Reserve the amount of file descriptor we need. */
2151 ret = lttng_fd_get(LTTNG_FD_APPS, nb_fd);
2152 if (ret < 0) {
2153 ERR("Exhausted number of available FD upon create channel");
2154 goto error_fd_get_stream;
2155 }
2156
2157 health_code_update();
2158
2159 /*
2160 * Now get the channel from the consumer. This call wil populate the stream
2161 * list of that channel and set the ust objects.
2162 */
2163 if (usess->consumer->enabled) {
2164 ret = ust_consumer_get_channel(socket, ua_chan);
2165 if (ret < 0) {
2166 goto error_destroy;
2167 }
2168 }
2169
2170 rcu_read_unlock();
2171 return 0;
2172
2173 error_destroy:
2174 lttng_fd_put(LTTNG_FD_APPS, nb_fd);
2175 error_fd_get_stream:
2176 /*
2177 * Initiate a destroy channel on the consumer since we had an error
2178 * handling it on our side. The return value is of no importance since we
2179 * already have a ret value set by the previous error that we need to
2180 * return.
2181 */
2182 (void) ust_consumer_destroy_channel(socket, ua_chan);
2183 error_ask:
2184 lttng_fd_put(LTTNG_FD_APPS, 1);
2185 error:
2186 health_code_update();
2187 rcu_read_unlock();
2188 return ret;
2189 }
2190
2191 /*
2192 * Duplicate the ust data object of the ust app stream and save it in the
2193 * buffer registry stream.
2194 *
2195 * Return 0 on success or else a negative value.
2196 */
2197 static int duplicate_stream_object(struct buffer_reg_stream *reg_stream,
2198 struct ust_app_stream *stream)
2199 {
2200 int ret;
2201
2202 assert(reg_stream);
2203 assert(stream);
2204
2205 /* Reserve the amount of file descriptor we need. */
2206 ret = lttng_fd_get(LTTNG_FD_APPS, 2);
2207 if (ret < 0) {
2208 ERR("Exhausted number of available FD upon duplicate stream");
2209 goto error;
2210 }
2211
2212 /* Duplicate object for stream once the original is in the registry. */
2213 ret = ustctl_duplicate_ust_object_data(&stream->obj,
2214 reg_stream->obj.ust);
2215 if (ret < 0) {
2216 ERR("Duplicate stream obj from %p to %p failed with ret %d",
2217 reg_stream->obj.ust, stream->obj, ret);
2218 lttng_fd_put(LTTNG_FD_APPS, 2);
2219 goto error;
2220 }
2221 stream->handle = stream->obj->handle;
2222
2223 error:
2224 return ret;
2225 }
2226
2227 /*
2228 * Duplicate the ust data object of the ust app. channel and save it in the
2229 * buffer registry channel.
2230 *
2231 * Return 0 on success or else a negative value.
2232 */
2233 static int duplicate_channel_object(struct buffer_reg_channel *reg_chan,
2234 struct ust_app_channel *ua_chan)
2235 {
2236 int ret;
2237
2238 assert(reg_chan);
2239 assert(ua_chan);
2240
2241 /* Need two fds for the channel. */
2242 ret = lttng_fd_get(LTTNG_FD_APPS, 1);
2243 if (ret < 0) {
2244 ERR("Exhausted number of available FD upon duplicate channel");
2245 goto error_fd_get;
2246 }
2247
2248 /* Duplicate object for stream once the original is in the registry. */
2249 ret = ustctl_duplicate_ust_object_data(&ua_chan->obj, reg_chan->obj.ust);
2250 if (ret < 0) {
2251 ERR("Duplicate channel obj from %p to %p failed with ret: %d",
2252 reg_chan->obj.ust, ua_chan->obj, ret);
2253 goto error;
2254 }
2255 ua_chan->handle = ua_chan->obj->handle;
2256
2257 return 0;
2258
2259 error:
2260 lttng_fd_put(LTTNG_FD_APPS, 1);
2261 error_fd_get:
2262 return ret;
2263 }
2264
2265 /*
2266 * For a given channel buffer registry, setup all streams of the given ust
2267 * application channel.
2268 *
2269 * Return 0 on success or else a negative value.
2270 */
2271 static int setup_buffer_reg_streams(struct buffer_reg_channel *reg_chan,
2272 struct ust_app_channel *ua_chan)
2273 {
2274 int ret = 0;
2275 struct ust_app_stream *stream, *stmp;
2276
2277 assert(reg_chan);
2278 assert(ua_chan);
2279
2280 DBG2("UST app setup buffer registry stream");
2281
2282 /* Send all streams to application. */
2283 cds_list_for_each_entry_safe(stream, stmp, &ua_chan->streams.head, list) {
2284 struct buffer_reg_stream *reg_stream;
2285
2286 ret = buffer_reg_stream_create(&reg_stream);
2287 if (ret < 0) {
2288 goto error;
2289 }
2290
2291 /*
2292 * Keep original pointer and nullify it in the stream so the delete
2293 * stream call does not release the object.
2294 */
2295 reg_stream->obj.ust = stream->obj;
2296 stream->obj = NULL;
2297 buffer_reg_stream_add(reg_stream, reg_chan);
2298
2299 /* We don't need the streams anymore. */
2300 cds_list_del(&stream->list);
2301 delete_ust_app_stream(-1, stream);
2302 }
2303
2304 error:
2305 return ret;
2306 }
2307
2308 /*
2309 * Create a buffer registry channel for the given session registry and
2310 * application channel object. If regp pointer is valid, it's set with the
2311 * created object. Important, the created object is NOT added to the session
2312 * registry hash table.
2313 *
2314 * Return 0 on success else a negative value.
2315 */
2316 static int create_buffer_reg_channel(struct buffer_reg_session *reg_sess,
2317 struct ust_app_channel *ua_chan, struct buffer_reg_channel **regp)
2318 {
2319 int ret;
2320 struct buffer_reg_channel *reg_chan = NULL;
2321
2322 assert(reg_sess);
2323 assert(ua_chan);
2324
2325 DBG2("UST app creating buffer registry channel for %s", ua_chan->name);
2326
2327 /* Create buffer registry channel. */
2328 ret = buffer_reg_channel_create(ua_chan->tracing_channel_id, &reg_chan);
2329 if (ret < 0) {
2330 goto error_create;
2331 }
2332 assert(reg_chan);
2333 reg_chan->consumer_key = ua_chan->key;
2334 reg_chan->subbuf_size = ua_chan->attr.subbuf_size;
2335 reg_chan->num_subbuf = ua_chan->attr.num_subbuf;
2336
2337 /* Create and add a channel registry to session. */
2338 ret = ust_registry_channel_add(reg_sess->reg.ust,
2339 ua_chan->tracing_channel_id);
2340 if (ret < 0) {
2341 goto error;
2342 }
2343 buffer_reg_channel_add(reg_sess, reg_chan);
2344
2345 if (regp) {
2346 *regp = reg_chan;
2347 }
2348
2349 return 0;
2350
2351 error:
2352 /* Safe because the registry channel object was not added to any HT. */
2353 buffer_reg_channel_destroy(reg_chan, LTTNG_DOMAIN_UST);
2354 error_create:
2355 return ret;
2356 }
2357
2358 /*
2359 * Setup buffer registry channel for the given session registry and application
2360 * channel object. If regp pointer is valid, it's set with the created object.
2361 *
2362 * Return 0 on success else a negative value.
2363 */
2364 static int setup_buffer_reg_channel(struct buffer_reg_session *reg_sess,
2365 struct ust_app_channel *ua_chan, struct buffer_reg_channel *reg_chan)
2366 {
2367 int ret;
2368
2369 assert(reg_sess);
2370 assert(reg_chan);
2371 assert(ua_chan);
2372 assert(ua_chan->obj);
2373
2374 DBG2("UST app setup buffer registry channel for %s", ua_chan->name);
2375
2376 /* Setup all streams for the registry. */
2377 ret = setup_buffer_reg_streams(reg_chan, ua_chan);
2378 if (ret < 0) {
2379 goto error;
2380 }
2381
2382 reg_chan->obj.ust = ua_chan->obj;
2383 ua_chan->obj = NULL;
2384
2385 return 0;
2386
2387 error:
2388 buffer_reg_channel_remove(reg_sess, reg_chan);
2389 buffer_reg_channel_destroy(reg_chan, LTTNG_DOMAIN_UST);
2390 return ret;
2391 }
2392
2393 /*
2394 * Send buffer registry channel to the application.
2395 *
2396 * Return 0 on success else a negative value.
2397 */
2398 static int send_channel_uid_to_ust(struct buffer_reg_channel *reg_chan,
2399 struct ust_app *app, struct ust_app_session *ua_sess,
2400 struct ust_app_channel *ua_chan)
2401 {
2402 int ret;
2403 struct buffer_reg_stream *reg_stream;
2404
2405 assert(reg_chan);
2406 assert(app);
2407 assert(ua_sess);
2408 assert(ua_chan);
2409
2410 DBG("UST app sending buffer registry channel to ust sock %d", app->sock);
2411
2412 ret = duplicate_channel_object(reg_chan, ua_chan);
2413 if (ret < 0) {
2414 goto error;
2415 }
2416
2417 /* Send channel to the application. */
2418 ret = ust_consumer_send_channel_to_ust(app, ua_sess, ua_chan);
2419 if (ret < 0) {
2420 goto error;
2421 }
2422
2423 health_code_update();
2424
2425 /* Send all streams to application. */
2426 pthread_mutex_lock(&reg_chan->stream_list_lock);
2427 cds_list_for_each_entry(reg_stream, &reg_chan->streams, lnode) {
2428 struct ust_app_stream stream;
2429
2430 ret = duplicate_stream_object(reg_stream, &stream);
2431 if (ret < 0) {
2432 goto error_stream_unlock;
2433 }
2434
2435 ret = ust_consumer_send_stream_to_ust(app, ua_chan, &stream);
2436 if (ret < 0) {
2437 (void) release_ust_app_stream(-1, &stream);
2438 goto error_stream_unlock;
2439 }
2440
2441 /*
2442 * The return value is not important here. This function will output an
2443 * error if needed.
2444 */
2445 (void) release_ust_app_stream(-1, &stream);
2446 }
2447 ua_chan->is_sent = 1;
2448
2449 error_stream_unlock:
2450 pthread_mutex_unlock(&reg_chan->stream_list_lock);
2451 error:
2452 return ret;
2453 }
2454
2455 /*
2456 * Create and send to the application the created buffers with per UID buffers.
2457 *
2458 * Return 0 on success else a negative value.
2459 */
2460 static int create_channel_per_uid(struct ust_app *app,
2461 struct ltt_ust_session *usess, struct ust_app_session *ua_sess,
2462 struct ust_app_channel *ua_chan)
2463 {
2464 int ret;
2465 struct buffer_reg_uid *reg_uid;
2466 struct buffer_reg_channel *reg_chan;
2467
2468 assert(app);
2469 assert(usess);
2470 assert(ua_sess);
2471 assert(ua_chan);
2472
2473 DBG("UST app creating channel %s with per UID buffers", ua_chan->name);
2474
2475 reg_uid = buffer_reg_uid_find(usess->id, app->bits_per_long, app->uid);
2476 /*
2477 * The session creation handles the creation of this global registry
2478 * object. If none can be find, there is a code flow problem or a
2479 * teardown race.
2480 */
2481 assert(reg_uid);
2482
2483 reg_chan = buffer_reg_channel_find(ua_chan->tracing_channel_id,
2484 reg_uid);
2485 if (!reg_chan) {
2486 /* Create the buffer registry channel object. */
2487 ret = create_buffer_reg_channel(reg_uid->registry, ua_chan, &reg_chan);
2488 if (ret < 0) {
2489 goto error;
2490 }
2491 assert(reg_chan);
2492
2493 /*
2494 * Create the buffers on the consumer side. This call populates the
2495 * ust app channel object with all streams and data object.
2496 */
2497 ret = do_consumer_create_channel(usess, ua_sess, ua_chan,
2498 app->bits_per_long, reg_uid->registry->reg.ust);
2499 if (ret < 0) {
2500 /*
2501 * Let's remove the previously created buffer registry channel so
2502 * it's not visible anymore in the session registry.
2503 */
2504 ust_registry_channel_del_free(reg_uid->registry->reg.ust,
2505 ua_chan->tracing_channel_id);
2506 buffer_reg_channel_remove(reg_uid->registry, reg_chan);
2507 buffer_reg_channel_destroy(reg_chan, LTTNG_DOMAIN_UST);
2508 goto error;
2509 }
2510
2511 /*
2512 * Setup the streams and add it to the session registry.
2513 */
2514 ret = setup_buffer_reg_channel(reg_uid->registry, ua_chan, reg_chan);
2515 if (ret < 0) {
2516 goto error;
2517 }
2518
2519 }
2520
2521 /* Send buffers to the application. */
2522 ret = send_channel_uid_to_ust(reg_chan, app, ua_sess, ua_chan);
2523 if (ret < 0) {
2524 goto error;
2525 }
2526
2527 error:
2528 return ret;
2529 }
2530
2531 /*
2532 * Create and send to the application the created buffers with per PID buffers.
2533 *
2534 * Return 0 on success else a negative value.
2535 */
2536 static int create_channel_per_pid(struct ust_app *app,
2537 struct ltt_ust_session *usess, struct ust_app_session *ua_sess,
2538 struct ust_app_channel *ua_chan)
2539 {
2540 int ret;
2541 struct ust_registry_session *registry;
2542
2543 assert(app);
2544 assert(usess);
2545 assert(ua_sess);
2546 assert(ua_chan);
2547
2548 DBG("UST app creating channel %s with per PID buffers", ua_chan->name);
2549
2550 rcu_read_lock();
2551
2552 registry = get_session_registry(ua_sess);
2553 assert(registry);
2554
2555 /* Create and add a new channel registry to session. */
2556 ret = ust_registry_channel_add(registry, ua_chan->key);
2557 if (ret < 0) {
2558 goto error;
2559 }
2560
2561 /* Create and get channel on the consumer side. */
2562 ret = do_consumer_create_channel(usess, ua_sess, ua_chan,
2563 app->bits_per_long, registry);
2564 if (ret < 0) {
2565 goto error;
2566 }
2567
2568 ret = send_channel_pid_to_ust(app, ua_sess, ua_chan);
2569 if (ret < 0) {
2570 goto error;
2571 }
2572
2573 error:
2574 rcu_read_unlock();
2575 return ret;
2576 }
2577
2578 /*
2579 * From an already allocated ust app channel, create the channel buffers if
2580 * need and send it to the application. This MUST be called with a RCU read
2581 * side lock acquired.
2582 *
2583 * Return 0 on success or else a negative value.
2584 */
2585 static int do_create_channel(struct ust_app *app,
2586 struct ltt_ust_session *usess, struct ust_app_session *ua_sess,
2587 struct ust_app_channel *ua_chan)
2588 {
2589 int ret;
2590
2591 assert(app);
2592 assert(usess);
2593 assert(ua_sess);
2594 assert(ua_chan);
2595
2596 /* Handle buffer type before sending the channel to the application. */
2597 switch (usess->buffer_type) {
2598 case LTTNG_BUFFER_PER_UID:
2599 {
2600 ret = create_channel_per_uid(app, usess, ua_sess, ua_chan);
2601 if (ret < 0) {
2602 goto error;
2603 }
2604 break;
2605 }
2606 case LTTNG_BUFFER_PER_PID:
2607 {
2608 ret = create_channel_per_pid(app, usess, ua_sess, ua_chan);
2609 if (ret < 0) {
2610 goto error;
2611 }
2612 break;
2613 }
2614 default:
2615 assert(0);
2616 ret = -EINVAL;
2617 goto error;
2618 }
2619
2620 /* Initialize ust objd object using the received handle and add it. */
2621 lttng_ht_node_init_ulong(&ua_chan->ust_objd_node, ua_chan->handle);
2622 lttng_ht_add_unique_ulong(app->ust_objd, &ua_chan->ust_objd_node);
2623
2624 /* If channel is not enabled, disable it on the tracer */
2625 if (!ua_chan->enabled) {
2626 ret = disable_ust_channel(app, ua_sess, ua_chan);
2627 if (ret < 0) {
2628 goto error;
2629 }
2630 }
2631
2632 error:
2633 return ret;
2634 }
2635
2636 /*
2637 * Create UST app channel and create it on the tracer. Set ua_chanp of the
2638 * newly created channel if not NULL.
2639 *
2640 * Called with UST app session lock and RCU read-side lock held.
2641 *
2642 * Return 0 on success or else a negative value.
2643 */
2644 static int create_ust_app_channel(struct ust_app_session *ua_sess,
2645 struct ltt_ust_channel *uchan, struct ust_app *app,
2646 enum lttng_ust_chan_type type, struct ltt_ust_session *usess,
2647 struct ust_app_channel **ua_chanp)
2648 {
2649 int ret = 0;
2650 struct lttng_ht_iter iter;
2651 struct lttng_ht_node_str *ua_chan_node;
2652 struct ust_app_channel *ua_chan;
2653
2654 /* Lookup channel in the ust app session */
2655 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &iter);
2656 ua_chan_node = lttng_ht_iter_get_node_str(&iter);
2657 if (ua_chan_node != NULL) {
2658 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node);
2659 goto end;
2660 }
2661
2662 ua_chan = alloc_ust_app_channel(uchan->name, ua_sess, &uchan->attr);
2663 if (ua_chan == NULL) {
2664 /* Only malloc can fail here */
2665 ret = -ENOMEM;
2666 goto error_alloc;
2667 }
2668 shadow_copy_channel(ua_chan, uchan);
2669
2670 /* Set channel type. */
2671 ua_chan->attr.type = type;
2672
2673 ret = do_create_channel(app, usess, ua_sess, ua_chan);
2674 if (ret < 0) {
2675 goto error;
2676 }
2677
2678 DBG2("UST app create channel %s for PID %d completed", ua_chan->name,
2679 app->pid);
2680
2681 /* Only add the channel if successful on the tracer side. */
2682 lttng_ht_add_unique_str(ua_sess->channels, &ua_chan->node);
2683
2684 end:
2685 if (ua_chanp) {
2686 *ua_chanp = ua_chan;
2687 }
2688
2689 /* Everything went well. */
2690 return 0;
2691
2692 error:
2693 delete_ust_app_channel(ua_chan->is_sent ? app->sock : -1, ua_chan, app);
2694 error_alloc:
2695 return ret;
2696 }
2697
2698 /*
2699 * Create UST app event and create it on the tracer side.
2700 *
2701 * Called with ust app session mutex held.
2702 */
2703 static
2704 int create_ust_app_event(struct ust_app_session *ua_sess,
2705 struct ust_app_channel *ua_chan, struct ltt_ust_event *uevent,
2706 struct ust_app *app)
2707 {
2708 int ret = 0;
2709 struct ust_app_event *ua_event;
2710
2711 /* Get event node */
2712 ua_event = find_ust_app_event(ua_chan->events, uevent->attr.name,
2713 uevent->filter, uevent->attr.loglevel, uevent->exclusion);
2714 if (ua_event != NULL) {
2715 ret = -EEXIST;
2716 goto end;
2717 }
2718
2719 /* Does not exist so create one */
2720 ua_event = alloc_ust_app_event(uevent->attr.name, &uevent->attr);
2721 if (ua_event == NULL) {
2722 /* Only malloc can failed so something is really wrong */
2723 ret = -ENOMEM;
2724 goto end;
2725 }
2726 shadow_copy_event(ua_event, uevent);
2727
2728 /* Create it on the tracer side */
2729 ret = create_ust_event(app, ua_sess, ua_chan, ua_event);
2730 if (ret < 0) {
2731 /* Not found previously means that it does not exist on the tracer */
2732 assert(ret != -LTTNG_UST_ERR_EXIST);
2733 goto error;
2734 }
2735
2736 add_unique_ust_app_event(ua_chan, ua_event);
2737
2738 DBG2("UST app create event %s for PID %d completed", ua_event->name,
2739 app->pid);
2740
2741 end:
2742 return ret;
2743
2744 error:
2745 /* Valid. Calling here is already in a read side lock */
2746 delete_ust_app_event(-1, ua_event);
2747 return ret;
2748 }
2749
2750 /*
2751 * Create UST metadata and open it on the tracer side.
2752 *
2753 * Called with UST app session lock held and RCU read side lock.
2754 */
2755 static int create_ust_app_metadata(struct ust_app_session *ua_sess,
2756 struct ust_app *app, struct consumer_output *consumer)
2757 {
2758 int ret = 0;
2759 struct ust_app_channel *metadata;
2760 struct consumer_socket *socket;
2761 struct ust_registry_session *registry;
2762
2763 assert(ua_sess);
2764 assert(app);
2765 assert(consumer);
2766
2767 registry = get_session_registry(ua_sess);
2768 assert(registry);
2769
2770 pthread_mutex_lock(&registry->lock);
2771
2772 /* Metadata already exists for this registry or it was closed previously */
2773 if (registry->metadata_key || registry->metadata_closed) {
2774 ret = 0;
2775 goto error;
2776 }
2777
2778 /* Allocate UST metadata */
2779 metadata = alloc_ust_app_channel(DEFAULT_METADATA_NAME, ua_sess, NULL);
2780 if (!metadata) {
2781 /* malloc() failed */
2782 ret = -ENOMEM;
2783 goto error;
2784 }
2785
2786 memcpy(&metadata->attr, &ua_sess->metadata_attr, sizeof(metadata->attr));
2787
2788 /* Need one fd for the channel. */
2789 ret = lttng_fd_get(LTTNG_FD_APPS, 1);
2790 if (ret < 0) {
2791 ERR("Exhausted number of available FD upon create metadata");
2792 goto error;
2793 }
2794
2795 /* Get the right consumer socket for the application. */
2796 socket = consumer_find_socket_by_bitness(app->bits_per_long, consumer);
2797 if (!socket) {
2798 ret = -EINVAL;
2799 goto error_consumer;
2800 }
2801
2802 /*
2803 * Keep metadata key so we can identify it on the consumer side. Assign it
2804 * to the registry *before* we ask the consumer so we avoid the race of the
2805 * consumer requesting the metadata and the ask_channel call on our side
2806 * did not returned yet.
2807 */
2808 registry->metadata_key = metadata->key;
2809
2810 /*
2811 * Ask the metadata channel creation to the consumer. The metadata object
2812 * will be created by the consumer and kept their. However, the stream is
2813 * never added or monitored until we do a first push metadata to the
2814 * consumer.
2815 */
2816 ret = ust_consumer_ask_channel(ua_sess, metadata, consumer, socket,
2817 registry);
2818 if (ret < 0) {
2819 /* Nullify the metadata key so we don't try to close it later on. */
2820 registry->metadata_key = 0;
2821 goto error_consumer;
2822 }
2823
2824 /*
2825 * The setup command will make the metadata stream be sent to the relayd,
2826 * if applicable, and the thread managing the metadatas. This is important
2827 * because after this point, if an error occurs, the only way the stream
2828 * can be deleted is to be monitored in the consumer.
2829 */
2830 ret = consumer_setup_metadata(socket, metadata->key);
2831 if (ret < 0) {
2832 /* Nullify the metadata key so we don't try to close it later on. */
2833 registry->metadata_key = 0;
2834 goto error_consumer;
2835 }
2836
2837 DBG2("UST metadata with key %" PRIu64 " created for app pid %d",
2838 metadata->key, app->pid);
2839
2840 error_consumer:
2841 lttng_fd_put(LTTNG_FD_APPS, 1);
2842 delete_ust_app_channel(-1, metadata, app);
2843 error:
2844 pthread_mutex_unlock(&registry->lock);
2845 return ret;
2846 }
2847
2848 /*
2849 * Return ust app pointer or NULL if not found. RCU read side lock MUST be
2850 * acquired before calling this function.
2851 */
2852 struct ust_app *ust_app_find_by_pid(pid_t pid)
2853 {
2854 struct ust_app *app = NULL;
2855 struct lttng_ht_node_ulong *node;
2856 struct lttng_ht_iter iter;
2857
2858 lttng_ht_lookup(ust_app_ht, (void *)((unsigned long) pid), &iter);
2859 node = lttng_ht_iter_get_node_ulong(&iter);
2860 if (node == NULL) {
2861 DBG2("UST app no found with pid %d", pid);
2862 goto error;
2863 }
2864
2865 DBG2("Found UST app by pid %d", pid);
2866
2867 app = caa_container_of(node, struct ust_app, pid_n);
2868
2869 error:
2870 return app;
2871 }
2872
2873 /*
2874 * Allocate and init an UST app object using the registration information and
2875 * the command socket. This is called when the command socket connects to the
2876 * session daemon.
2877 *
2878 * The object is returned on success or else NULL.
2879 */
2880 struct ust_app *ust_app_create(struct ust_register_msg *msg, int sock)
2881 {
2882 struct ust_app *lta = NULL;
2883
2884 assert(msg);
2885 assert(sock >= 0);
2886
2887 DBG3("UST app creating application for socket %d", sock);
2888
2889 if ((msg->bits_per_long == 64 &&
2890 (uatomic_read(&ust_consumerd64_fd) == -EINVAL))
2891 || (msg->bits_per_long == 32 &&
2892 (uatomic_read(&ust_consumerd32_fd) == -EINVAL))) {
2893 ERR("Registration failed: application \"%s\" (pid: %d) has "
2894 "%d-bit long, but no consumerd for this size is available.\n",
2895 msg->name, msg->pid, msg->bits_per_long);
2896 goto error;
2897 }
2898
2899 lta = zmalloc(sizeof(struct ust_app));
2900 if (lta == NULL) {
2901 PERROR("malloc");
2902 goto error;
2903 }
2904
2905 lta->ppid = msg->ppid;
2906 lta->uid = msg->uid;
2907 lta->gid = msg->gid;
2908
2909 lta->bits_per_long = msg->bits_per_long;
2910 lta->uint8_t_alignment = msg->uint8_t_alignment;
2911 lta->uint16_t_alignment = msg->uint16_t_alignment;
2912 lta->uint32_t_alignment = msg->uint32_t_alignment;
2913 lta->uint64_t_alignment = msg->uint64_t_alignment;
2914 lta->long_alignment = msg->long_alignment;
2915 lta->byte_order = msg->byte_order;
2916
2917 lta->v_major = msg->major;
2918 lta->v_minor = msg->minor;
2919 lta->sessions = lttng_ht_new(0, LTTNG_HT_TYPE_U64);
2920 lta->ust_objd = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
2921 lta->notify_sock = -1;
2922
2923 /* Copy name and make sure it's NULL terminated. */
2924 strncpy(lta->name, msg->name, sizeof(lta->name));
2925 lta->name[UST_APP_PROCNAME_LEN] = '\0';
2926
2927 /*
2928 * Before this can be called, when receiving the registration information,
2929 * the application compatibility is checked. So, at this point, the
2930 * application can work with this session daemon.
2931 */
2932 lta->compatible = 1;
2933
2934 lta->pid = msg->pid;
2935 lttng_ht_node_init_ulong(&lta->pid_n, (unsigned long) lta->pid);
2936 lta->sock = sock;
2937 lttng_ht_node_init_ulong(&lta->sock_n, (unsigned long) lta->sock);
2938
2939 CDS_INIT_LIST_HEAD(&lta->teardown_head);
2940
2941 error:
2942 return lta;
2943 }
2944
2945 /*
2946 * For a given application object, add it to every hash table.
2947 */
2948 void ust_app_add(struct ust_app *app)
2949 {
2950 assert(app);
2951 assert(app->notify_sock >= 0);
2952
2953 rcu_read_lock();
2954
2955 /*
2956 * On a re-registration, we want to kick out the previous registration of
2957 * that pid
2958 */
2959 lttng_ht_add_replace_ulong(ust_app_ht, &app->pid_n);
2960
2961 /*
2962 * The socket _should_ be unique until _we_ call close. So, a add_unique
2963 * for the ust_app_ht_by_sock is used which asserts fail if the entry was
2964 * already in the table.
2965 */
2966 lttng_ht_add_unique_ulong(ust_app_ht_by_sock, &app->sock_n);
2967
2968 /* Add application to the notify socket hash table. */
2969 lttng_ht_node_init_ulong(&app->notify_sock_n, app->notify_sock);
2970 lttng_ht_add_unique_ulong(ust_app_ht_by_notify_sock, &app->notify_sock_n);
2971
2972 DBG("App registered with pid:%d ppid:%d uid:%d gid:%d sock:%d name:%s "
2973 "notify_sock:%d (version %d.%d)", app->pid, app->ppid, app->uid,
2974 app->gid, app->sock, app->name, app->notify_sock, app->v_major,
2975 app->v_minor);
2976
2977 rcu_read_unlock();
2978 }
2979
2980 /*
2981 * Set the application version into the object.
2982 *
2983 * Return 0 on success else a negative value either an errno code or a
2984 * LTTng-UST error code.
2985 */
2986 int ust_app_version(struct ust_app *app)
2987 {
2988 int ret;
2989
2990 assert(app);
2991
2992 ret = ustctl_tracer_version(app->sock, &app->version);
2993 if (ret < 0) {
2994 if (ret != -LTTNG_UST_ERR_EXITING && ret != -EPIPE) {
2995 ERR("UST app %d verson failed with ret %d", app->sock, ret);
2996 } else {
2997 DBG3("UST app %d verion failed. Application is dead", app->sock);
2998 }
2999 }
3000
3001 return ret;
3002 }
3003
3004 /*
3005 * Unregister app by removing it from the global traceable app list and freeing
3006 * the data struct.
3007 *
3008 * The socket is already closed at this point so no close to sock.
3009 */
3010 void ust_app_unregister(int sock)
3011 {
3012 struct ust_app *lta;
3013 struct lttng_ht_node_ulong *node;
3014 struct lttng_ht_iter ust_app_sock_iter;
3015 struct lttng_ht_iter iter;
3016 struct ust_app_session *ua_sess;
3017 int ret;
3018
3019 rcu_read_lock();
3020
3021 /* Get the node reference for a call_rcu */
3022 lttng_ht_lookup(ust_app_ht_by_sock, (void *)((unsigned long) sock), &ust_app_sock_iter);
3023 node = lttng_ht_iter_get_node_ulong(&ust_app_sock_iter);
3024 assert(node);
3025
3026 lta = caa_container_of(node, struct ust_app, sock_n);
3027 DBG("PID %d unregistering with sock %d", lta->pid, sock);
3028
3029 /*
3030 * For per-PID buffers, perform "push metadata" and flush all
3031 * application streams before removing app from hash tables,
3032 * ensuring proper behavior of data_pending check.
3033 * Remove sessions so they are not visible during deletion.
3034 */
3035 cds_lfht_for_each_entry(lta->sessions->ht, &iter.iter, ua_sess,
3036 node.node) {
3037 struct ust_registry_session *registry;
3038
3039 ret = lttng_ht_del(lta->sessions, &iter);
3040 if (ret) {
3041 /* The session was already removed so scheduled for teardown. */
3042 continue;
3043 }
3044
3045 if (ua_sess->buffer_type == LTTNG_BUFFER_PER_PID) {
3046 (void) ust_app_flush_app_session(lta, ua_sess);
3047 }
3048
3049 /*
3050 * Add session to list for teardown. This is safe since at this point we
3051 * are the only one using this list.
3052 */
3053 pthread_mutex_lock(&ua_sess->lock);
3054
3055 /*
3056 * Normally, this is done in the delete session process which is
3057 * executed in the call rcu below. However, upon registration we can't
3058 * afford to wait for the grace period before pushing data or else the
3059 * data pending feature can race between the unregistration and stop
3060 * command where the data pending command is sent *before* the grace
3061 * period ended.
3062 *
3063 * The close metadata below nullifies the metadata pointer in the
3064 * session so the delete session will NOT push/close a second time.
3065 */
3066 registry = get_session_registry(ua_sess);
3067 if (registry) {
3068 /* Push metadata for application before freeing the application. */
3069 (void) push_metadata(registry, ua_sess->consumer);
3070
3071 /*
3072 * Don't ask to close metadata for global per UID buffers. Close
3073 * metadata only on destroy trace session in this case. Also, the
3074 * previous push metadata could have flag the metadata registry to
3075 * close so don't send a close command if closed.
3076 */
3077 if (ua_sess->buffer_type != LTTNG_BUFFER_PER_UID) {
3078 /* And ask to close it for this session registry. */
3079 (void) close_metadata(registry, ua_sess->consumer);
3080 }
3081 }
3082 cds_list_add(&ua_sess->teardown_node, &lta->teardown_head);
3083
3084 pthread_mutex_unlock(&ua_sess->lock);
3085 }
3086
3087 /* Remove application from PID hash table */
3088 ret = lttng_ht_del(ust_app_ht_by_sock, &ust_app_sock_iter);
3089 assert(!ret);
3090
3091 /*
3092 * Remove application from notify hash table. The thread handling the
3093 * notify socket could have deleted the node so ignore on error because
3094 * either way it's valid. The close of that socket is handled by the other
3095 * thread.
3096 */
3097 iter.iter.node = &lta->notify_sock_n.node;
3098 (void) lttng_ht_del(ust_app_ht_by_notify_sock, &iter);
3099
3100 /*
3101 * Ignore return value since the node might have been removed before by an
3102 * add replace during app registration because the PID can be reassigned by
3103 * the OS.
3104 */
3105 iter.iter.node = &lta->pid_n.node;
3106 ret = lttng_ht_del(ust_app_ht, &iter);
3107 if (ret) {
3108 DBG3("Unregister app by PID %d failed. This can happen on pid reuse",
3109 lta->pid);
3110 }
3111
3112 /* Free memory */
3113 call_rcu(&lta->pid_n.head, delete_ust_app_rcu);
3114
3115 rcu_read_unlock();
3116 return;
3117 }
3118
3119 /*
3120 * Fill events array with all events name of all registered apps.
3121 */
3122 int ust_app_list_events(struct lttng_event **events)
3123 {
3124 int ret, handle;
3125 size_t nbmem, count = 0;
3126 struct lttng_ht_iter iter;
3127 struct ust_app *app;
3128 struct lttng_event *tmp_event;
3129
3130 nbmem = UST_APP_EVENT_LIST_SIZE;
3131 tmp_event = zmalloc(nbmem * sizeof(struct lttng_event));
3132 if (tmp_event == NULL) {
3133 PERROR("zmalloc ust app events");
3134 ret = -ENOMEM;
3135 goto error;
3136 }
3137
3138 rcu_read_lock();
3139
3140 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
3141 struct lttng_ust_tracepoint_iter uiter;
3142
3143 health_code_update();
3144
3145 if (!app->compatible) {
3146 /*
3147 * TODO: In time, we should notice the caller of this error by
3148 * telling him that this is a version error.
3149 */
3150 continue;
3151 }
3152 handle = ustctl_tracepoint_list(app->sock);
3153 if (handle < 0) {
3154 if (handle != -EPIPE && handle != -LTTNG_UST_ERR_EXITING) {
3155 ERR("UST app list events getting handle failed for app pid %d",
3156 app->pid);
3157 }
3158 continue;
3159 }
3160
3161 while ((ret = ustctl_tracepoint_list_get(app->sock, handle,
3162 &uiter)) != -LTTNG_UST_ERR_NOENT) {
3163 /* Handle ustctl error. */
3164 if (ret < 0) {
3165 if (ret != -LTTNG_UST_ERR_EXITING && ret != -EPIPE) {
3166 ERR("UST app tp list get failed for app %d with ret %d",
3167 app->sock, ret);
3168 } else {
3169 DBG3("UST app tp list get failed. Application is dead");
3170 /*
3171 * This is normal behavior, an application can die during the
3172 * creation process. Don't report an error so the execution can
3173 * continue normally. Continue normal execution.
3174 */
3175 break;
3176 }
3177 free(tmp_event);
3178 goto rcu_error;
3179 }
3180
3181 health_code_update();
3182 if (count >= nbmem) {
3183 /* In case the realloc fails, we free the memory */
3184 struct lttng_event *new_tmp_event;
3185 size_t new_nbmem;
3186
3187 new_nbmem = nbmem << 1;
3188 DBG2("Reallocating event list from %zu to %zu entries",
3189 nbmem, new_nbmem);
3190 new_tmp_event = realloc(tmp_event,
3191 new_nbmem * sizeof(struct lttng_event));
3192 if (new_tmp_event == NULL) {
3193 PERROR("realloc ust app events");
3194 free(tmp_event);
3195 ret = -ENOMEM;
3196 goto rcu_error;
3197 }
3198 /* Zero the new memory */
3199 memset(new_tmp_event + nbmem, 0,
3200 (new_nbmem - nbmem) * sizeof(struct lttng_event));
3201 nbmem = new_nbmem;
3202 tmp_event = new_tmp_event;
3203 }
3204 memcpy(tmp_event[count].name, uiter.name, LTTNG_UST_SYM_NAME_LEN);
3205 tmp_event[count].loglevel = uiter.loglevel;
3206 tmp_event[count].type = (enum lttng_event_type) LTTNG_UST_TRACEPOINT;
3207 tmp_event[count].pid = app->pid;
3208 tmp_event[count].enabled = -1;
3209 count++;
3210 }
3211 }
3212
3213 ret = count;
3214 *events = tmp_event;
3215
3216 DBG2("UST app list events done (%zu events)", count);
3217
3218 rcu_error:
3219 rcu_read_unlock();
3220 error:
3221 health_code_update();
3222 return ret;
3223 }
3224
3225 /*
3226 * Fill events array with all events name of all registered apps.
3227 */
3228 int ust_app_list_event_fields(struct lttng_event_field **fields)
3229 {
3230 int ret, handle;
3231 size_t nbmem, count = 0;
3232 struct lttng_ht_iter iter;
3233 struct ust_app *app;
3234 struct lttng_event_field *tmp_event;
3235
3236 nbmem = UST_APP_EVENT_LIST_SIZE;
3237 tmp_event = zmalloc(nbmem * sizeof(struct lttng_event_field));
3238 if (tmp_event == NULL) {
3239 PERROR("zmalloc ust app event fields");
3240 ret = -ENOMEM;
3241 goto error;
3242 }
3243
3244 rcu_read_lock();
3245
3246 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
3247 struct lttng_ust_field_iter uiter;
3248
3249 health_code_update();
3250
3251 if (!app->compatible) {
3252 /*
3253 * TODO: In time, we should notice the caller of this error by
3254 * telling him that this is a version error.
3255 */
3256 continue;
3257 }
3258 handle = ustctl_tracepoint_field_list(app->sock);
3259 if (handle < 0) {
3260 if (handle != -EPIPE && handle != -LTTNG_UST_ERR_EXITING) {
3261 ERR("UST app list field getting handle failed for app pid %d",
3262 app->pid);
3263 }
3264 continue;
3265 }
3266
3267 while ((ret = ustctl_tracepoint_field_list_get(app->sock, handle,
3268 &uiter)) != -LTTNG_UST_ERR_NOENT) {
3269 /* Handle ustctl error. */
3270 if (ret < 0) {
3271 if (ret != -LTTNG_UST_ERR_EXITING && ret != -EPIPE) {
3272 ERR("UST app tp list field failed for app %d with ret %d",
3273 app->sock, ret);
3274 } else {
3275 DBG3("UST app tp list field failed. Application is dead");
3276 /*
3277 * This is normal behavior, an application can die during the
3278 * creation process. Don't report an error so the execution can
3279 * continue normally. Reset list and count for next app.
3280 */
3281 break;
3282 }
3283 free(tmp_event);
3284 goto rcu_error;
3285 }
3286
3287 health_code_update();
3288 if (count >= nbmem) {
3289 /* In case the realloc fails, we free the memory */
3290 struct lttng_event_field *new_tmp_event;
3291 size_t new_nbmem;
3292
3293 new_nbmem = nbmem << 1;
3294 DBG2("Reallocating event field list from %zu to %zu entries",
3295 nbmem, new_nbmem);
3296 new_tmp_event = realloc(tmp_event,
3297 new_nbmem * sizeof(struct lttng_event_field));
3298 if (new_tmp_event == NULL) {
3299 PERROR("realloc ust app event fields");
3300 free(tmp_event);
3301 ret = -ENOMEM;
3302 goto rcu_error;
3303 }
3304 /* Zero the new memory */
3305 memset(new_tmp_event + nbmem, 0,
3306 (new_nbmem - nbmem) * sizeof(struct lttng_event_field));
3307 nbmem = new_nbmem;
3308 tmp_event = new_tmp_event;
3309 }
3310
3311 memcpy(tmp_event[count].field_name, uiter.field_name, LTTNG_UST_SYM_NAME_LEN);
3312 /* Mapping between these enums matches 1 to 1. */
3313 tmp_event[count].type = (enum lttng_event_field_type) uiter.type;
3314 tmp_event[count].nowrite = uiter.nowrite;
3315
3316 memcpy(tmp_event[count].event.name, uiter.event_name, LTTNG_UST_SYM_NAME_LEN);
3317 tmp_event[count].event.loglevel = uiter.loglevel;
3318 tmp_event[count].event.type = LTTNG_EVENT_TRACEPOINT;
3319 tmp_event[count].event.pid = app->pid;
3320 tmp_event[count].event.enabled = -1;
3321 count++;
3322 }
3323 }
3324
3325 ret = count;
3326 *fields = tmp_event;
3327
3328 DBG2("UST app list event fields done (%zu events)", count);
3329
3330 rcu_error:
3331 rcu_read_unlock();
3332 error:
3333 health_code_update();
3334 return ret;
3335 }
3336
3337 /*
3338 * Free and clean all traceable apps of the global list.
3339 *
3340 * Should _NOT_ be called with RCU read-side lock held.
3341 */
3342 void ust_app_clean_list(void)
3343 {
3344 int ret;
3345 struct ust_app *app;
3346 struct lttng_ht_iter iter;
3347
3348 DBG2("UST app cleaning registered apps hash table");
3349
3350 rcu_read_lock();
3351
3352 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
3353 ret = lttng_ht_del(ust_app_ht, &iter);
3354 assert(!ret);
3355 call_rcu(&app->pid_n.head, delete_ust_app_rcu);
3356 }
3357
3358 /* Cleanup socket hash table */
3359 cds_lfht_for_each_entry(ust_app_ht_by_sock->ht, &iter.iter, app,
3360 sock_n.node) {
3361 ret = lttng_ht_del(ust_app_ht_by_sock, &iter);
3362 assert(!ret);
3363 }
3364
3365 /* Cleanup notify socket hash table */
3366 cds_lfht_for_each_entry(ust_app_ht_by_notify_sock->ht, &iter.iter, app,
3367 notify_sock_n.node) {
3368 ret = lttng_ht_del(ust_app_ht_by_notify_sock, &iter);
3369 assert(!ret);
3370 }
3371 rcu_read_unlock();
3372
3373 /* Destroy is done only when the ht is empty */
3374 ht_cleanup_push(ust_app_ht);
3375 ht_cleanup_push(ust_app_ht_by_sock);
3376 ht_cleanup_push(ust_app_ht_by_notify_sock);
3377 }
3378
3379 /*
3380 * Init UST app hash table.
3381 */
3382 void ust_app_ht_alloc(void)
3383 {
3384 ust_app_ht = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
3385 ust_app_ht_by_sock = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
3386 ust_app_ht_by_notify_sock = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
3387 }
3388
3389 /*
3390 * For a specific UST session, disable the channel for all registered apps.
3391 */
3392 int ust_app_disable_channel_glb(struct ltt_ust_session *usess,
3393 struct ltt_ust_channel *uchan)
3394 {
3395 int ret = 0;
3396 struct lttng_ht_iter iter;
3397 struct lttng_ht_node_str *ua_chan_node;
3398 struct ust_app *app;
3399 struct ust_app_session *ua_sess;
3400 struct ust_app_channel *ua_chan;
3401
3402 if (usess == NULL || uchan == NULL) {
3403 ERR("Disabling UST global channel with NULL values");
3404 ret = -1;
3405 goto error;
3406 }
3407
3408 DBG2("UST app disabling channel %s from global domain for session id %" PRIu64,
3409 uchan->name, usess->id);
3410
3411 rcu_read_lock();
3412
3413 /* For every registered applications */
3414 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
3415 struct lttng_ht_iter uiter;
3416 if (!app->compatible) {
3417 /*
3418 * TODO: In time, we should notice the caller of this error by
3419 * telling him that this is a version error.
3420 */
3421 continue;
3422 }
3423 ua_sess = lookup_session_by_app(usess, app);
3424 if (ua_sess == NULL) {
3425 continue;
3426 }
3427
3428 /* Get channel */
3429 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &uiter);
3430 ua_chan_node = lttng_ht_iter_get_node_str(&uiter);
3431 /* If the session if found for the app, the channel must be there */
3432 assert(ua_chan_node);
3433
3434 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node);
3435 /* The channel must not be already disabled */
3436 assert(ua_chan->enabled == 1);
3437
3438 /* Disable channel onto application */
3439 ret = disable_ust_app_channel(ua_sess, ua_chan, app);
3440 if (ret < 0) {
3441 /* XXX: We might want to report this error at some point... */
3442 continue;
3443 }
3444 }
3445
3446 rcu_read_unlock();
3447
3448 error:
3449 return ret;
3450 }
3451
3452 /*
3453 * For a specific UST session, enable the channel for all registered apps.
3454 */
3455 int ust_app_enable_channel_glb(struct ltt_ust_session *usess,
3456 struct ltt_ust_channel *uchan)
3457 {
3458 int ret = 0;
3459 struct lttng_ht_iter iter;
3460 struct ust_app *app;
3461 struct ust_app_session *ua_sess;
3462
3463 if (usess == NULL || uchan == NULL) {
3464 ERR("Adding UST global channel to NULL values");
3465 ret = -1;
3466 goto error;
3467 }
3468
3469 DBG2("UST app enabling channel %s to global domain for session id %" PRIu64,
3470 uchan->name, usess->id);
3471
3472 rcu_read_lock();
3473
3474 /* For every registered applications */
3475 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
3476 if (!app->compatible) {
3477 /*
3478 * TODO: In time, we should notice the caller of this error by
3479 * telling him that this is a version error.
3480 */
3481 continue;
3482 }
3483 ua_sess = lookup_session_by_app(usess, app);
3484 if (ua_sess == NULL) {
3485 continue;
3486 }
3487
3488 /* Enable channel onto application */
3489 ret = enable_ust_app_channel(ua_sess, uchan, app);
3490 if (ret < 0) {
3491 /* XXX: We might want to report this error at some point... */
3492 continue;
3493 }
3494 }
3495
3496 rcu_read_unlock();
3497
3498 error:
3499 return ret;
3500 }
3501
3502 /*
3503 * Disable an event in a channel and for a specific session.
3504 */
3505 int ust_app_disable_event_glb(struct ltt_ust_session *usess,
3506 struct ltt_ust_channel *uchan, struct ltt_ust_event *uevent)
3507 {
3508 int ret = 0;
3509 struct lttng_ht_iter iter, uiter;
3510 struct lttng_ht_node_str *ua_chan_node, *ua_event_node;
3511 struct ust_app *app;
3512 struct ust_app_session *ua_sess;
3513 struct ust_app_channel *ua_chan;
3514 struct ust_app_event *ua_event;
3515
3516 DBG("UST app disabling event %s for all apps in channel "
3517 "%s for session id %" PRIu64,
3518 uevent->attr.name, uchan->name, usess->id);
3519
3520 rcu_read_lock();
3521
3522 /* For all registered applications */
3523 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
3524 if (!app->compatible) {
3525 /*
3526 * TODO: In time, we should notice the caller of this error by
3527 * telling him that this is a version error.
3528 */
3529 continue;
3530 }
3531 ua_sess = lookup_session_by_app(usess, app);
3532 if (ua_sess == NULL) {
3533 /* Next app */
3534 continue;
3535 }
3536
3537 /* Lookup channel in the ust app session */
3538 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &uiter);
3539 ua_chan_node = lttng_ht_iter_get_node_str(&uiter);
3540 if (ua_chan_node == NULL) {
3541 DBG2("Channel %s not found in session id %" PRIu64 " for app pid %d."
3542 "Skipping", uchan->name, usess->id, app->pid);
3543 continue;
3544 }
3545 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node);
3546
3547 lttng_ht_lookup(ua_chan->events, (void *)uevent->attr.name, &uiter);
3548 ua_event_node = lttng_ht_iter_get_node_str(&uiter);
3549 if (ua_event_node == NULL) {
3550 DBG2("Event %s not found in channel %s for app pid %d."
3551 "Skipping", uevent->attr.name, uchan->name, app->pid);
3552 continue;
3553 }
3554 ua_event = caa_container_of(ua_event_node, struct ust_app_event, node);
3555
3556 ret = disable_ust_app_event(ua_sess, ua_event, app);
3557 if (ret < 0) {
3558 /* XXX: Report error someday... */
3559 continue;
3560 }
3561 }
3562
3563 rcu_read_unlock();
3564
3565 return ret;
3566 }
3567
3568 /*
3569 * For a specific UST session, create the channel for all registered apps.
3570 */
3571 int ust_app_create_channel_glb(struct ltt_ust_session *usess,
3572 struct ltt_ust_channel *uchan)
3573 {
3574 int ret = 0, created;
3575 struct lttng_ht_iter iter;
3576 struct ust_app *app;
3577 struct ust_app_session *ua_sess = NULL;
3578
3579 /* Very wrong code flow */
3580 assert(usess);
3581 assert(uchan);
3582
3583 DBG2("UST app adding channel %s to UST domain for session id %" PRIu64,
3584 uchan->name, usess->id);
3585
3586 rcu_read_lock();
3587
3588 /* For every 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 /*
3598 * Create session on the tracer side and add it to app session HT. Note
3599 * that if session exist, it will simply return a pointer to the ust
3600 * app session.
3601 */
3602 ret = create_ust_app_session(usess, app, &ua_sess, &created);
3603 if (ret < 0) {
3604 switch (ret) {
3605 case -ENOTCONN:
3606 /*
3607 * The application's socket is not valid. Either a bad socket
3608 * or a timeout on it. We can't inform the caller that for a
3609 * specific app, the session failed so lets continue here.
3610 */
3611 continue;
3612 case -ENOMEM:
3613 default:
3614 goto error_rcu_unlock;
3615 }
3616 }
3617 assert(ua_sess);
3618
3619 pthread_mutex_lock(&ua_sess->lock);
3620 if (!strncmp(uchan->name, DEFAULT_METADATA_NAME,
3621 sizeof(uchan->name))) {
3622 copy_channel_attr_to_ustctl(&ua_sess->metadata_attr, &uchan->attr);
3623 ret = 0;
3624 } else {
3625 /* Create channel onto application. We don't need the chan ref. */
3626 ret = create_ust_app_channel(ua_sess, uchan, app,
3627 LTTNG_UST_CHAN_PER_CPU, usess, NULL);
3628 }
3629 pthread_mutex_unlock(&ua_sess->lock);
3630 if (ret < 0) {
3631 if (ret == -ENOMEM) {
3632 /* No more memory is a fatal error. Stop right now. */
3633 goto error_rcu_unlock;
3634 }
3635 /* Cleanup the created session if it's the case. */
3636 if (created) {
3637 destroy_app_session(app, ua_sess);
3638 }
3639 }
3640 }
3641
3642 error_rcu_unlock:
3643 rcu_read_unlock();
3644 return ret;
3645 }
3646
3647 /*
3648 * Enable event for a specific session and channel on the tracer.
3649 */
3650 int ust_app_enable_event_glb(struct ltt_ust_session *usess,
3651 struct ltt_ust_channel *uchan, struct ltt_ust_event *uevent)
3652 {
3653 int ret = 0;
3654 struct lttng_ht_iter iter, uiter;
3655 struct lttng_ht_node_str *ua_chan_node;
3656 struct ust_app *app;
3657 struct ust_app_session *ua_sess;
3658 struct ust_app_channel *ua_chan;
3659 struct ust_app_event *ua_event;
3660
3661 DBG("UST app enabling event %s for all apps for session id %" PRIu64,
3662 uevent->attr.name, usess->id);
3663
3664 /*
3665 * NOTE: At this point, this function is called only if the session and
3666 * channel passed are already created for all apps. and enabled on the
3667 * tracer also.
3668 */
3669
3670 rcu_read_lock();
3671
3672 /* For all registered applications */
3673 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
3674 if (!app->compatible) {
3675 /*
3676 * TODO: In time, we should notice the caller of this error by
3677 * telling him that this is a version error.
3678 */
3679 continue;
3680 }
3681 ua_sess = lookup_session_by_app(usess, app);
3682 if (!ua_sess) {
3683 /* The application has problem or is probably dead. */
3684 continue;
3685 }
3686
3687 pthread_mutex_lock(&ua_sess->lock);
3688
3689 /* Lookup channel in the ust app session */
3690 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &uiter);
3691 ua_chan_node = lttng_ht_iter_get_node_str(&uiter);
3692 /* If the channel is not found, there is a code flow error */
3693 assert(ua_chan_node);
3694
3695 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node);
3696
3697 /* Get event node */
3698 ua_event = find_ust_app_event(ua_chan->events, uevent->attr.name,
3699 uevent->filter, uevent->attr.loglevel, uevent->exclusion);
3700 if (ua_event == NULL) {
3701 DBG3("UST app enable event %s not found for app PID %d."
3702 "Skipping app", uevent->attr.name, app->pid);
3703 goto next_app;
3704 }
3705
3706 ret = enable_ust_app_event(ua_sess, ua_event, app);
3707 if (ret < 0) {
3708 pthread_mutex_unlock(&ua_sess->lock);
3709 goto error;
3710 }
3711 next_app:
3712 pthread_mutex_unlock(&ua_sess->lock);
3713 }
3714
3715 error:
3716 rcu_read_unlock();
3717 return ret;
3718 }
3719
3720 /*
3721 * For a specific existing UST session and UST channel, creates the event for
3722 * all registered apps.
3723 */
3724 int ust_app_create_event_glb(struct ltt_ust_session *usess,
3725 struct ltt_ust_channel *uchan, struct ltt_ust_event *uevent)
3726 {
3727 int ret = 0;
3728 struct lttng_ht_iter iter, uiter;
3729 struct lttng_ht_node_str *ua_chan_node;
3730 struct ust_app *app;
3731 struct ust_app_session *ua_sess;
3732 struct ust_app_channel *ua_chan;
3733
3734 DBG("UST app creating event %s for all apps for session id %" PRIu64,
3735 uevent->attr.name, usess->id);
3736
3737 rcu_read_lock();
3738
3739 /* For all registered applications */
3740 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
3741 if (!app->compatible) {
3742 /*
3743 * TODO: In time, we should notice the caller of this error by
3744 * telling him that this is a version error.
3745 */
3746 continue;
3747 }
3748 ua_sess = lookup_session_by_app(usess, app);
3749 if (!ua_sess) {
3750 /* The application has problem or is probably dead. */
3751 continue;
3752 }
3753
3754 pthread_mutex_lock(&ua_sess->lock);
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 ret = create_ust_app_event(ua_sess, ua_chan, uevent, app);
3764 pthread_mutex_unlock(&ua_sess->lock);
3765 if (ret < 0) {
3766 if (ret != -LTTNG_UST_ERR_EXIST) {
3767 /* Possible value at this point: -ENOMEM. If so, we stop! */
3768 break;
3769 }
3770 DBG2("UST app event %s already exist on app PID %d",
3771 uevent->attr.name, app->pid);
3772 continue;
3773 }
3774 }
3775
3776 rcu_read_unlock();
3777
3778 return ret;
3779 }
3780
3781 /*
3782 * Start tracing for a specific UST session and app.
3783 */
3784 static
3785 int ust_app_start_trace(struct ltt_ust_session *usess, struct ust_app *app)
3786 {
3787 int ret = 0;
3788 struct ust_app_session *ua_sess;
3789
3790 DBG("Starting tracing for ust app pid %d", app->pid);
3791
3792 rcu_read_lock();
3793
3794 if (!app->compatible) {
3795 goto end;
3796 }
3797
3798 ua_sess = lookup_session_by_app(usess, app);
3799 if (ua_sess == NULL) {
3800 /* The session is in teardown process. Ignore and continue. */
3801 goto end;
3802 }
3803
3804 pthread_mutex_lock(&ua_sess->lock);
3805
3806 /* Upon restart, we skip the setup, already done */
3807 if (ua_sess->started) {
3808 goto skip_setup;
3809 }
3810
3811 /* Create directories if consumer is LOCAL and has a path defined. */
3812 if (usess->consumer->type == CONSUMER_DST_LOCAL &&
3813 strlen(usess->consumer->dst.trace_path) > 0) {
3814 ret = run_as_mkdir_recursive(usess->consumer->dst.trace_path,
3815 S_IRWXU | S_IRWXG, ua_sess->euid, ua_sess->egid);
3816 if (ret < 0) {
3817 if (ret != -EEXIST) {
3818 ERR("Trace directory creation error");
3819 goto error_unlock;
3820 }
3821 }
3822 }
3823
3824 /*
3825 * Create the metadata for the application. This returns gracefully if a
3826 * metadata was already set for the session.
3827 */
3828 ret = create_ust_app_metadata(ua_sess, app, usess->consumer);
3829 if (ret < 0) {
3830 goto error_unlock;
3831 }
3832
3833 health_code_update();
3834
3835 skip_setup:
3836 /* This start the UST tracing */
3837 ret = ustctl_start_session(app->sock, ua_sess->handle);
3838 if (ret < 0) {
3839 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
3840 ERR("Error starting tracing for app pid: %d (ret: %d)",
3841 app->pid, ret);
3842 } else {
3843 DBG("UST app start session failed. Application is dead.");
3844 /*
3845 * This is normal behavior, an application can die during the
3846 * creation process. Don't report an error so the execution can
3847 * continue normally.
3848 */
3849 pthread_mutex_unlock(&ua_sess->lock);
3850 goto end;
3851 }
3852 goto error_unlock;
3853 }
3854
3855 /* Indicate that the session has been started once */
3856 ua_sess->started = 1;
3857
3858 pthread_mutex_unlock(&ua_sess->lock);
3859
3860 health_code_update();
3861
3862 /* Quiescent wait after starting trace */
3863 ret = ustctl_wait_quiescent(app->sock);
3864 if (ret < 0 && ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
3865 ERR("UST app wait quiescent failed for app pid %d ret %d",
3866 app->pid, ret);
3867 }
3868
3869 end:
3870 rcu_read_unlock();
3871 health_code_update();
3872 return 0;
3873
3874 error_unlock:
3875 pthread_mutex_unlock(&ua_sess->lock);
3876 rcu_read_unlock();
3877 health_code_update();
3878 return -1;
3879 }
3880
3881 /*
3882 * Stop tracing for a specific UST session and app.
3883 */
3884 static
3885 int ust_app_stop_trace(struct ltt_ust_session *usess, struct ust_app *app)
3886 {
3887 int ret = 0;
3888 struct ust_app_session *ua_sess;
3889 struct ust_registry_session *registry;
3890
3891 DBG("Stopping tracing for ust app pid %d", app->pid);
3892
3893 rcu_read_lock();
3894
3895 if (!app->compatible) {
3896 goto end_no_session;
3897 }
3898
3899 ua_sess = lookup_session_by_app(usess, app);
3900 if (ua_sess == NULL) {
3901 goto end_no_session;
3902 }
3903
3904 pthread_mutex_lock(&ua_sess->lock);
3905
3906 /*
3907 * If started = 0, it means that stop trace has been called for a session
3908 * that was never started. It's possible since we can have a fail start
3909 * from either the application manager thread or the command thread. Simply
3910 * indicate that this is a stop error.
3911 */
3912 if (!ua_sess->started) {
3913 goto error_rcu_unlock;
3914 }
3915
3916 health_code_update();
3917
3918 /* This inhibits UST tracing */
3919 ret = ustctl_stop_session(app->sock, ua_sess->handle);
3920 if (ret < 0) {
3921 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
3922 ERR("Error stopping tracing for app pid: %d (ret: %d)",
3923 app->pid, ret);
3924 } else {
3925 DBG("UST app stop session failed. Application is dead.");
3926 /*
3927 * This is normal behavior, an application can die during the
3928 * creation process. Don't report an error so the execution can
3929 * continue normally.
3930 */
3931 goto end_unlock;
3932 }
3933 goto error_rcu_unlock;
3934 }
3935
3936 health_code_update();
3937
3938 /* Quiescent wait after stopping trace */
3939 ret = ustctl_wait_quiescent(app->sock);
3940 if (ret < 0 && ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
3941 ERR("UST app wait quiescent failed for app pid %d ret %d",
3942 app->pid, ret);
3943 }
3944
3945 health_code_update();
3946
3947 registry = get_session_registry(ua_sess);
3948 assert(registry);
3949
3950 /* Push metadata for application before freeing the application. */
3951 (void) push_metadata(registry, ua_sess->consumer);
3952
3953 end_unlock:
3954 pthread_mutex_unlock(&ua_sess->lock);
3955 end_no_session:
3956 rcu_read_unlock();
3957 health_code_update();
3958 return 0;
3959
3960 error_rcu_unlock:
3961 pthread_mutex_unlock(&ua_sess->lock);
3962 rcu_read_unlock();
3963 health_code_update();
3964 return -1;
3965 }
3966
3967 static
3968 int ust_app_flush_app_session(struct ust_app *app,
3969 struct ust_app_session *ua_sess)
3970 {
3971 int ret, retval = 0;
3972 struct lttng_ht_iter iter;
3973 struct ust_app_channel *ua_chan;
3974 struct consumer_socket *socket;
3975
3976 DBG("Flushing app session buffers for ust app pid %d", app->pid);
3977
3978 rcu_read_lock();
3979
3980 if (!app->compatible) {
3981 goto end_not_compatible;
3982 }
3983
3984 pthread_mutex_lock(&ua_sess->lock);
3985
3986 health_code_update();
3987
3988 /* Flushing buffers */
3989 socket = consumer_find_socket_by_bitness(app->bits_per_long,
3990 ua_sess->consumer);
3991
3992 /* Flush buffers and push metadata. */
3993 switch (ua_sess->buffer_type) {
3994 case LTTNG_BUFFER_PER_PID:
3995 cds_lfht_for_each_entry(ua_sess->channels->ht, &iter.iter, ua_chan,
3996 node.node) {
3997 health_code_update();
3998 assert(ua_chan->is_sent);
3999 ret = consumer_flush_channel(socket, ua_chan->key);
4000 if (ret) {
4001 ERR("Error flushing consumer channel");
4002 retval = -1;
4003 continue;
4004 }
4005 }
4006 break;
4007 case LTTNG_BUFFER_PER_UID:
4008 default:
4009 assert(0);
4010 break;
4011 }
4012
4013 health_code_update();
4014
4015 pthread_mutex_unlock(&ua_sess->lock);
4016
4017 end_not_compatible:
4018 rcu_read_unlock();
4019 health_code_update();
4020 return retval;
4021 }
4022
4023 /*
4024 * Flush buffers for all applications for a specific UST session.
4025 * Called with UST session lock held.
4026 */
4027 static
4028 int ust_app_flush_session(struct ltt_ust_session *usess)
4029
4030 {
4031 int ret;
4032
4033 DBG("Flushing session buffers for all ust apps");
4034
4035 rcu_read_lock();
4036
4037 /* Flush buffers and push metadata. */
4038 switch (usess->buffer_type) {
4039 case LTTNG_BUFFER_PER_UID:
4040 {
4041 struct buffer_reg_uid *reg;
4042 struct lttng_ht_iter iter;
4043
4044 /* Flush all per UID buffers associated to that session. */
4045 cds_list_for_each_entry(reg, &usess->buffer_reg_uid_list, lnode) {
4046 struct ust_registry_session *ust_session_reg;
4047 struct buffer_reg_channel *reg_chan;
4048 struct consumer_socket *socket;
4049
4050 /* Get consumer socket to use to push the metadata.*/
4051 socket = consumer_find_socket_by_bitness(reg->bits_per_long,
4052 usess->consumer);
4053 if (!socket) {
4054 /* Ignore request if no consumer is found for the session. */
4055 continue;
4056 }
4057
4058 cds_lfht_for_each_entry(reg->registry->channels->ht, &iter.iter,
4059 reg_chan, node.node) {
4060 /*
4061 * The following call will print error values so the return
4062 * code is of little importance because whatever happens, we
4063 * have to try them all.
4064 */
4065 (void) consumer_flush_channel(socket, reg_chan->consumer_key);
4066 }
4067
4068 ust_session_reg = reg->registry->reg.ust;
4069 /* Push metadata. */
4070 (void) push_metadata(ust_session_reg, usess->consumer);
4071 }
4072 ret = 0;
4073 break;
4074 }
4075 case LTTNG_BUFFER_PER_PID:
4076 {
4077 struct ust_app_session *ua_sess;
4078 struct lttng_ht_iter iter;
4079 struct ust_app *app;
4080
4081 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
4082 ua_sess = lookup_session_by_app(usess, app);
4083 if (ua_sess == NULL) {
4084 continue;
4085 }
4086 (void) ust_app_flush_app_session(app, ua_sess);
4087 }
4088 break;
4089 }
4090 default:
4091 assert(0);
4092 break;
4093 }
4094
4095 end_no_session:
4096 rcu_read_unlock();
4097 health_code_update();
4098 return ret;
4099 }
4100
4101 /*
4102 * Destroy a specific UST session in apps.
4103 */
4104 static int destroy_trace(struct ltt_ust_session *usess, struct ust_app *app)
4105 {
4106 int ret;
4107 struct ust_app_session *ua_sess;
4108 struct lttng_ht_iter iter;
4109 struct lttng_ht_node_u64 *node;
4110
4111 DBG("Destroy tracing for ust app pid %d", app->pid);
4112
4113 rcu_read_lock();
4114
4115 if (!app->compatible) {
4116 goto end;
4117 }
4118
4119 __lookup_session_by_app(usess, app, &iter);
4120 node = lttng_ht_iter_get_node_u64(&iter);
4121 if (node == NULL) {
4122 /* Session is being or is deleted. */
4123 goto end;
4124 }
4125 ua_sess = caa_container_of(node, struct ust_app_session, node);
4126
4127 health_code_update();
4128 destroy_app_session(app, ua_sess);
4129
4130 health_code_update();
4131
4132 /* Quiescent wait after stopping trace */
4133 ret = ustctl_wait_quiescent(app->sock);
4134 if (ret < 0 && ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
4135 ERR("UST app wait quiescent failed for app pid %d ret %d",
4136 app->pid, ret);
4137 }
4138 end:
4139 rcu_read_unlock();
4140 health_code_update();
4141 return 0;
4142 }
4143
4144 /*
4145 * Start tracing for the UST session.
4146 */
4147 int ust_app_start_trace_all(struct ltt_ust_session *usess)
4148 {
4149 int ret = 0;
4150 struct lttng_ht_iter iter;
4151 struct ust_app *app;
4152
4153 DBG("Starting all UST traces");
4154
4155 rcu_read_lock();
4156
4157 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
4158 ret = ust_app_start_trace(usess, app);
4159 if (ret < 0) {
4160 /* Continue to next apps even on error */
4161 continue;
4162 }
4163 }
4164
4165 rcu_read_unlock();
4166
4167 return 0;
4168 }
4169
4170 /*
4171 * Start tracing for the UST session.
4172 * Called with UST session lock held.
4173 */
4174 int ust_app_stop_trace_all(struct ltt_ust_session *usess)
4175 {
4176 int ret = 0;
4177 struct lttng_ht_iter iter;
4178 struct ust_app *app;
4179
4180 DBG("Stopping all UST traces");
4181
4182 rcu_read_lock();
4183
4184 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
4185 ret = ust_app_stop_trace(usess, app);
4186 if (ret < 0) {
4187 /* Continue to next apps even on error */
4188 continue;
4189 }
4190 }
4191
4192 (void) ust_app_flush_session(usess);
4193
4194 rcu_read_unlock();
4195
4196 return 0;
4197 }
4198
4199 /*
4200 * Destroy app UST session.
4201 */
4202 int ust_app_destroy_trace_all(struct ltt_ust_session *usess)
4203 {
4204 int ret = 0;
4205 struct lttng_ht_iter iter;
4206 struct ust_app *app;
4207
4208 DBG("Destroy all UST traces");
4209
4210 rcu_read_lock();
4211
4212 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
4213 ret = destroy_trace(usess, app);
4214 if (ret < 0) {
4215 /* Continue to next apps even on error */
4216 continue;
4217 }
4218 }
4219
4220 rcu_read_unlock();
4221
4222 return 0;
4223 }
4224
4225 /*
4226 * Add channels/events from UST global domain to registered apps at sock.
4227 */
4228 void ust_app_global_update(struct ltt_ust_session *usess, int sock)
4229 {
4230 int ret = 0;
4231 struct lttng_ht_iter iter, uiter;
4232 struct ust_app *app;
4233 struct ust_app_session *ua_sess = NULL;
4234 struct ust_app_channel *ua_chan;
4235 struct ust_app_event *ua_event;
4236 struct ust_app_ctx *ua_ctx;
4237
4238 assert(usess);
4239 assert(sock >= 0);
4240
4241 DBG2("UST app global update for app sock %d for session id %" PRIu64, sock,
4242 usess->id);
4243
4244 rcu_read_lock();
4245
4246 app = ust_app_find_by_sock(sock);
4247 if (app == NULL) {
4248 /*
4249 * Application can be unregistered before so this is possible hence
4250 * simply stopping the update.
4251 */
4252 DBG3("UST app update failed to find app sock %d", sock);
4253 goto error;
4254 }
4255
4256 if (!app->compatible) {
4257 goto error;
4258 }
4259
4260 ret = create_ust_app_session(usess, app, &ua_sess, NULL);
4261 if (ret < 0) {
4262 /* Tracer is probably gone or ENOMEM. */
4263 goto error;
4264 }
4265 assert(ua_sess);
4266
4267 pthread_mutex_lock(&ua_sess->lock);
4268
4269 /*
4270 * We can iterate safely here over all UST app session since the create ust
4271 * app session above made a shadow copy of the UST global domain from the
4272 * ltt ust session.
4273 */
4274 cds_lfht_for_each_entry(ua_sess->channels->ht, &iter.iter, ua_chan,
4275 node.node) {
4276 ret = do_create_channel(app, usess, ua_sess, ua_chan);
4277 if (ret < 0) {
4278 /*
4279 * Stop everything. On error, the application failed, no more
4280 * file descriptor are available or ENOMEM so stopping here is
4281 * the only thing we can do for now.
4282 */
4283 goto error_unlock;
4284 }
4285
4286 /*
4287 * Add context using the list so they are enabled in the same order the
4288 * user added them.
4289 */
4290 cds_list_for_each_entry(ua_ctx, &ua_chan->ctx_list, list) {
4291 ret = create_ust_channel_context(ua_chan, ua_ctx, app);
4292 if (ret < 0) {
4293 goto error_unlock;
4294 }
4295 }
4296
4297
4298 /* For each events */
4299 cds_lfht_for_each_entry(ua_chan->events->ht, &uiter.iter, ua_event,
4300 node.node) {
4301 ret = create_ust_event(app, ua_sess, ua_chan, ua_event);
4302 if (ret < 0) {
4303 goto error_unlock;
4304 }
4305 }
4306 }
4307
4308 pthread_mutex_unlock(&ua_sess->lock);
4309
4310 if (usess->start_trace) {
4311 ret = ust_app_start_trace(usess, app);
4312 if (ret < 0) {
4313 goto error;
4314 }
4315
4316 DBG2("UST trace started for app pid %d", app->pid);
4317 }
4318
4319 /* Everything went well at this point. */
4320 rcu_read_unlock();
4321 return;
4322
4323 error_unlock:
4324 pthread_mutex_unlock(&ua_sess->lock);
4325 error:
4326 if (ua_sess) {
4327 destroy_app_session(app, ua_sess);
4328 }
4329 rcu_read_unlock();
4330 return;
4331 }
4332
4333 /*
4334 * Add context to a specific channel for global UST domain.
4335 */
4336 int ust_app_add_ctx_channel_glb(struct ltt_ust_session *usess,
4337 struct ltt_ust_channel *uchan, struct ltt_ust_context *uctx)
4338 {
4339 int ret = 0;
4340 struct lttng_ht_node_str *ua_chan_node;
4341 struct lttng_ht_iter iter, uiter;
4342 struct ust_app_channel *ua_chan = NULL;
4343 struct ust_app_session *ua_sess;
4344 struct ust_app *app;
4345
4346 rcu_read_lock();
4347
4348 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
4349 if (!app->compatible) {
4350 /*
4351 * TODO: In time, we should notice the caller of this error by
4352 * telling him that this is a version error.
4353 */
4354 continue;
4355 }
4356 ua_sess = lookup_session_by_app(usess, app);
4357 if (ua_sess == NULL) {
4358 continue;
4359 }
4360
4361 pthread_mutex_lock(&ua_sess->lock);
4362 /* Lookup channel in the ust app session */
4363 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &uiter);
4364 ua_chan_node = lttng_ht_iter_get_node_str(&uiter);
4365 if (ua_chan_node == NULL) {
4366 goto next_app;
4367 }
4368 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel,
4369 node);
4370 ret = create_ust_app_channel_context(ua_sess, ua_chan, &uctx->ctx, app);
4371 if (ret < 0) {
4372 goto next_app;
4373 }
4374 next_app:
4375 pthread_mutex_unlock(&ua_sess->lock);
4376 }
4377
4378 rcu_read_unlock();
4379 return ret;
4380 }
4381
4382 /*
4383 * Enable event for a channel from a UST session for a specific PID.
4384 */
4385 int ust_app_enable_event_pid(struct ltt_ust_session *usess,
4386 struct ltt_ust_channel *uchan, struct ltt_ust_event *uevent, pid_t pid)
4387 {
4388 int ret = 0;
4389 struct lttng_ht_iter iter;
4390 struct lttng_ht_node_str *ua_chan_node;
4391 struct ust_app *app;
4392 struct ust_app_session *ua_sess;
4393 struct ust_app_channel *ua_chan;
4394 struct ust_app_event *ua_event;
4395
4396 DBG("UST app enabling event %s for PID %d", uevent->attr.name, pid);
4397
4398 rcu_read_lock();
4399
4400 app = ust_app_find_by_pid(pid);
4401 if (app == NULL) {
4402 ERR("UST app enable event per PID %d not found", pid);
4403 ret = -1;
4404 goto end;
4405 }
4406
4407 if (!app->compatible) {
4408 ret = 0;
4409 goto end;
4410 }
4411
4412 ua_sess = lookup_session_by_app(usess, app);
4413 if (!ua_sess) {
4414 /* The application has problem or is probably dead. */
4415 ret = 0;
4416 goto end;
4417 }
4418
4419 pthread_mutex_lock(&ua_sess->lock);
4420 /* Lookup channel in the ust app session */
4421 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &iter);
4422 ua_chan_node = lttng_ht_iter_get_node_str(&iter);
4423 /* If the channel is not found, there is a code flow error */
4424 assert(ua_chan_node);
4425
4426 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node);
4427
4428 ua_event = find_ust_app_event(ua_chan->events, uevent->attr.name,
4429 uevent->filter, uevent->attr.loglevel, uevent->exclusion);
4430 if (ua_event == NULL) {
4431 ret = create_ust_app_event(ua_sess, ua_chan, uevent, app);
4432 if (ret < 0) {
4433 goto end_unlock;
4434 }
4435 } else {
4436 ret = enable_ust_app_event(ua_sess, ua_event, app);
4437 if (ret < 0) {
4438 goto end_unlock;
4439 }
4440 }
4441
4442 end_unlock:
4443 pthread_mutex_unlock(&ua_sess->lock);
4444 end:
4445 rcu_read_unlock();
4446 return ret;
4447 }
4448
4449 /*
4450 * Calibrate registered applications.
4451 */
4452 int ust_app_calibrate_glb(struct lttng_ust_calibrate *calibrate)
4453 {
4454 int ret = 0;
4455 struct lttng_ht_iter iter;
4456 struct ust_app *app;
4457
4458 rcu_read_lock();
4459
4460 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
4461 if (!app->compatible) {
4462 /*
4463 * TODO: In time, we should notice the caller of this error by
4464 * telling him that this is a version error.
4465 */
4466 continue;
4467 }
4468
4469 health_code_update();
4470
4471 ret = ustctl_calibrate(app->sock, calibrate);
4472 if (ret < 0) {
4473 switch (ret) {
4474 case -ENOSYS:
4475 /* Means that it's not implemented on the tracer side. */
4476 ret = 0;
4477 break;
4478 default:
4479 DBG2("Calibrate app PID %d returned with error %d",
4480 app->pid, ret);
4481 break;
4482 }
4483 }
4484 }
4485
4486 DBG("UST app global domain calibration finished");
4487
4488 rcu_read_unlock();
4489
4490 health_code_update();
4491
4492 return ret;
4493 }
4494
4495 /*
4496 * Receive registration and populate the given msg structure.
4497 *
4498 * On success return 0 else a negative value returned by the ustctl call.
4499 */
4500 int ust_app_recv_registration(int sock, struct ust_register_msg *msg)
4501 {
4502 int ret;
4503 uint32_t pid, ppid, uid, gid;
4504
4505 assert(msg);
4506
4507 ret = ustctl_recv_reg_msg(sock, &msg->type, &msg->major, &msg->minor,
4508 &pid, &ppid, &uid, &gid,
4509 &msg->bits_per_long,
4510 &msg->uint8_t_alignment,
4511 &msg->uint16_t_alignment,
4512 &msg->uint32_t_alignment,
4513 &msg->uint64_t_alignment,
4514 &msg->long_alignment,
4515 &msg->byte_order,
4516 msg->name);
4517 if (ret < 0) {
4518 switch (-ret) {
4519 case EPIPE:
4520 case ECONNRESET:
4521 case LTTNG_UST_ERR_EXITING:
4522 DBG3("UST app recv reg message failed. Application died");
4523 break;
4524 case LTTNG_UST_ERR_UNSUP_MAJOR:
4525 ERR("UST app recv reg unsupported version %d.%d. Supporting %d.%d",
4526 msg->major, msg->minor, LTTNG_UST_ABI_MAJOR_VERSION,
4527 LTTNG_UST_ABI_MINOR_VERSION);
4528 break;
4529 default:
4530 ERR("UST app recv reg message failed with ret %d", ret);
4531 break;
4532 }
4533 goto error;
4534 }
4535 msg->pid = (pid_t) pid;
4536 msg->ppid = (pid_t) ppid;
4537 msg->uid = (uid_t) uid;
4538 msg->gid = (gid_t) gid;
4539
4540 error:
4541 return ret;
4542 }
4543
4544 /*
4545 * Return a ust app channel object using the application object and the channel
4546 * object descriptor has a key. If not found, NULL is returned. A RCU read side
4547 * lock MUST be acquired before calling this function.
4548 */
4549 static struct ust_app_channel *find_channel_by_objd(struct ust_app *app,
4550 int objd)
4551 {
4552 struct lttng_ht_node_ulong *node;
4553 struct lttng_ht_iter iter;
4554 struct ust_app_channel *ua_chan = NULL;
4555
4556 assert(app);
4557
4558 lttng_ht_lookup(app->ust_objd, (void *)((unsigned long) objd), &iter);
4559 node = lttng_ht_iter_get_node_ulong(&iter);
4560 if (node == NULL) {
4561 DBG2("UST app channel find by objd %d not found", objd);
4562 goto error;
4563 }
4564
4565 ua_chan = caa_container_of(node, struct ust_app_channel, ust_objd_node);
4566
4567 error:
4568 return ua_chan;
4569 }
4570
4571 /*
4572 * Reply to a register channel notification from an application on the notify
4573 * socket. The channel metadata is also created.
4574 *
4575 * The session UST registry lock is acquired in this function.
4576 *
4577 * On success 0 is returned else a negative value.
4578 */
4579 static int reply_ust_register_channel(int sock, int sobjd, int cobjd,
4580 size_t nr_fields, struct ustctl_field *fields)
4581 {
4582 int ret, ret_code = 0;
4583 uint32_t chan_id, reg_count;
4584 uint64_t chan_reg_key;
4585 enum ustctl_channel_header type;
4586 struct ust_app *app;
4587 struct ust_app_channel *ua_chan;
4588 struct ust_app_session *ua_sess;
4589 struct ust_registry_session *registry;
4590 struct ust_registry_channel *chan_reg;
4591
4592 rcu_read_lock();
4593
4594 /* Lookup application. If not found, there is a code flow error. */
4595 app = find_app_by_notify_sock(sock);
4596 if (!app) {
4597 DBG("Application socket %d is being teardown. Abort event notify",
4598 sock);
4599 ret = 0;
4600 free(fields);
4601 goto error_rcu_unlock;
4602 }
4603
4604 /* Lookup channel by UST object descriptor. */
4605 ua_chan = find_channel_by_objd(app, cobjd);
4606 if (!ua_chan) {
4607 DBG("Application channel is being teardown. Abort event notify");
4608 ret = 0;
4609 free(fields);
4610 goto error_rcu_unlock;
4611 }
4612
4613 assert(ua_chan->session);
4614 ua_sess = ua_chan->session;
4615
4616 /* Get right session registry depending on the session buffer type. */
4617 registry = get_session_registry(ua_sess);
4618 assert(registry);
4619
4620 /* Depending on the buffer type, a different channel key is used. */
4621 if (ua_sess->buffer_type == LTTNG_BUFFER_PER_UID) {
4622 chan_reg_key = ua_chan->tracing_channel_id;
4623 } else {
4624 chan_reg_key = ua_chan->key;
4625 }
4626
4627 pthread_mutex_lock(&registry->lock);
4628
4629 chan_reg = ust_registry_channel_find(registry, chan_reg_key);
4630 assert(chan_reg);
4631
4632 if (!chan_reg->register_done) {
4633 reg_count = ust_registry_get_event_count(chan_reg);
4634 if (reg_count < 31) {
4635 type = USTCTL_CHANNEL_HEADER_COMPACT;
4636 } else {
4637 type = USTCTL_CHANNEL_HEADER_LARGE;
4638 }
4639
4640 chan_reg->nr_ctx_fields = nr_fields;
4641 chan_reg->ctx_fields = fields;
4642 chan_reg->header_type = type;
4643 } else {
4644 /* Get current already assigned values. */
4645 type = chan_reg->header_type;
4646 free(fields);
4647 /* Set to NULL so the error path does not do a double free. */
4648 fields = NULL;
4649 }
4650 /* Channel id is set during the object creation. */
4651 chan_id = chan_reg->chan_id;
4652
4653 /* Append to metadata */
4654 if (!chan_reg->metadata_dumped) {
4655 ret_code = ust_metadata_channel_statedump(registry, chan_reg);
4656 if (ret_code) {
4657 ERR("Error appending channel metadata (errno = %d)", ret_code);
4658 goto reply;
4659 }
4660 }
4661
4662 reply:
4663 DBG3("UST app replying to register channel key %" PRIu64
4664 " with id %u, type: %d, ret: %d", chan_reg_key, chan_id, type,
4665 ret_code);
4666
4667 ret = ustctl_reply_register_channel(sock, chan_id, type, ret_code);
4668 if (ret < 0) {
4669 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
4670 ERR("UST app reply channel failed with ret %d", ret);
4671 } else {
4672 DBG3("UST app reply channel failed. Application died");
4673 }
4674 goto error;
4675 }
4676
4677 /* This channel registry registration is completed. */
4678 chan_reg->register_done = 1;
4679
4680 error:
4681 pthread_mutex_unlock(&registry->lock);
4682 error_rcu_unlock:
4683 rcu_read_unlock();
4684 if (ret) {
4685 free(fields);
4686 }
4687 return ret;
4688 }
4689
4690 /*
4691 * Add event to the UST channel registry. When the event is added to the
4692 * registry, the metadata is also created. Once done, this replies to the
4693 * application with the appropriate error code.
4694 *
4695 * The session UST registry lock is acquired in the function.
4696 *
4697 * On success 0 is returned else a negative value.
4698 */
4699 static int add_event_ust_registry(int sock, int sobjd, int cobjd, char *name,
4700 char *sig, size_t nr_fields, struct ustctl_field *fields, int loglevel,
4701 char *model_emf_uri)
4702 {
4703 int ret, ret_code;
4704 uint32_t event_id = 0;
4705 uint64_t chan_reg_key;
4706 struct ust_app *app;
4707 struct ust_app_channel *ua_chan;
4708 struct ust_app_session *ua_sess;
4709 struct ust_registry_session *registry;
4710
4711 rcu_read_lock();
4712
4713 /* Lookup application. If not found, there is a code flow error. */
4714 app = find_app_by_notify_sock(sock);
4715 if (!app) {
4716 DBG("Application socket %d is being teardown. Abort event notify",
4717 sock);
4718 ret = 0;
4719 free(sig);
4720 free(fields);
4721 free(model_emf_uri);
4722 goto error_rcu_unlock;
4723 }
4724
4725 /* Lookup channel by UST object descriptor. */
4726 ua_chan = find_channel_by_objd(app, cobjd);
4727 if (!ua_chan) {
4728 DBG("Application channel is being teardown. Abort event notify");
4729 ret = 0;
4730 free(sig);
4731 free(fields);
4732 free(model_emf_uri);
4733 goto error_rcu_unlock;
4734 }
4735
4736 assert(ua_chan->session);
4737 ua_sess = ua_chan->session;
4738
4739 registry = get_session_registry(ua_sess);
4740 assert(registry);
4741
4742 if (ua_sess->buffer_type == LTTNG_BUFFER_PER_UID) {
4743 chan_reg_key = ua_chan->tracing_channel_id;
4744 } else {
4745 chan_reg_key = ua_chan->key;
4746 }
4747
4748 pthread_mutex_lock(&registry->lock);
4749
4750 /*
4751 * From this point on, this call acquires the ownership of the sig, fields
4752 * and model_emf_uri meaning any free are done inside it if needed. These
4753 * three variables MUST NOT be read/write after this.
4754 */
4755 ret_code = ust_registry_create_event(registry, chan_reg_key,
4756 sobjd, cobjd, name, sig, nr_fields, fields, loglevel,
4757 model_emf_uri, ua_sess->buffer_type, &event_id,
4758 app);
4759
4760 /*
4761 * The return value is returned to ustctl so in case of an error, the
4762 * application can be notified. In case of an error, it's important not to
4763 * return a negative error or else the application will get closed.
4764 */
4765 ret = ustctl_reply_register_event(sock, event_id, ret_code);
4766 if (ret < 0) {
4767 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
4768 ERR("UST app reply event failed with ret %d", ret);
4769 } else {
4770 DBG3("UST app reply event failed. Application died");
4771 }
4772 /*
4773 * No need to wipe the create event since the application socket will
4774 * get close on error hence cleaning up everything by itself.
4775 */
4776 goto error;
4777 }
4778
4779 DBG3("UST registry event %s with id %" PRId32 " added successfully",
4780 name, event_id);
4781
4782 error:
4783 pthread_mutex_unlock(&registry->lock);
4784 error_rcu_unlock:
4785 rcu_read_unlock();
4786 return ret;
4787 }
4788
4789 /*
4790 * Handle application notification through the given notify socket.
4791 *
4792 * Return 0 on success or else a negative value.
4793 */
4794 int ust_app_recv_notify(int sock)
4795 {
4796 int ret;
4797 enum ustctl_notify_cmd cmd;
4798
4799 DBG3("UST app receiving notify from sock %d", sock);
4800
4801 ret = ustctl_recv_notify(sock, &cmd);
4802 if (ret < 0) {
4803 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
4804 ERR("UST app recv notify failed with ret %d", ret);
4805 } else {
4806 DBG3("UST app recv notify failed. Application died");
4807 }
4808 goto error;
4809 }
4810
4811 switch (cmd) {
4812 case USTCTL_NOTIFY_CMD_EVENT:
4813 {
4814 int sobjd, cobjd, loglevel;
4815 char name[LTTNG_UST_SYM_NAME_LEN], *sig, *model_emf_uri;
4816 size_t nr_fields;
4817 struct ustctl_field *fields;
4818
4819 DBG2("UST app ustctl register event received");
4820
4821 ret = ustctl_recv_register_event(sock, &sobjd, &cobjd, name, &loglevel,
4822 &sig, &nr_fields, &fields, &model_emf_uri);
4823 if (ret < 0) {
4824 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
4825 ERR("UST app recv event failed with ret %d", ret);
4826 } else {
4827 DBG3("UST app recv event failed. Application died");
4828 }
4829 goto error;
4830 }
4831
4832 /*
4833 * Add event to the UST registry coming from the notify socket. This
4834 * call will free if needed the sig, fields and model_emf_uri. This
4835 * code path loses the ownsership of these variables and transfer them
4836 * to the this function.
4837 */
4838 ret = add_event_ust_registry(sock, sobjd, cobjd, name, sig, nr_fields,
4839 fields, loglevel, model_emf_uri);
4840 if (ret < 0) {
4841 goto error;
4842 }
4843
4844 break;
4845 }
4846 case USTCTL_NOTIFY_CMD_CHANNEL:
4847 {
4848 int sobjd, cobjd;
4849 size_t nr_fields;
4850 struct ustctl_field *fields;
4851
4852 DBG2("UST app ustctl register channel received");
4853
4854 ret = ustctl_recv_register_channel(sock, &sobjd, &cobjd, &nr_fields,
4855 &fields);
4856 if (ret < 0) {
4857 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
4858 ERR("UST app recv channel failed with ret %d", ret);
4859 } else {
4860 DBG3("UST app recv channel failed. Application died");
4861 }
4862 goto error;
4863 }
4864
4865 /*
4866 * The fields ownership are transfered to this function call meaning
4867 * that if needed it will be freed. After this, it's invalid to access
4868 * fields or clean it up.
4869 */
4870 ret = reply_ust_register_channel(sock, sobjd, cobjd, nr_fields,
4871 fields);
4872 if (ret < 0) {
4873 goto error;
4874 }
4875
4876 break;
4877 }
4878 default:
4879 /* Should NEVER happen. */
4880 assert(0);
4881 }
4882
4883 error:
4884 return ret;
4885 }
4886
4887 /*
4888 * Once the notify socket hangs up, this is called. First, it tries to find the
4889 * corresponding application. On failure, the call_rcu to close the socket is
4890 * executed. If an application is found, it tries to delete it from the notify
4891 * socket hash table. Whathever the result, it proceeds to the call_rcu.
4892 *
4893 * Note that an object needs to be allocated here so on ENOMEM failure, the
4894 * call RCU is not done but the rest of the cleanup is.
4895 */
4896 void ust_app_notify_sock_unregister(int sock)
4897 {
4898 int err_enomem = 0;
4899 struct lttng_ht_iter iter;
4900 struct ust_app *app;
4901 struct ust_app_notify_sock_obj *obj;
4902
4903 assert(sock >= 0);
4904
4905 rcu_read_lock();
4906
4907 obj = zmalloc(sizeof(*obj));
4908 if (!obj) {
4909 /*
4910 * An ENOMEM is kind of uncool. If this strikes we continue the
4911 * procedure but the call_rcu will not be called. In this case, we
4912 * accept the fd leak rather than possibly creating an unsynchronized
4913 * state between threads.
4914 *
4915 * TODO: The notify object should be created once the notify socket is
4916 * registered and stored independantely from the ust app object. The
4917 * tricky part is to synchronize the teardown of the application and
4918 * this notify object. Let's keep that in mind so we can avoid this
4919 * kind of shenanigans with ENOMEM in the teardown path.
4920 */
4921 err_enomem = 1;
4922 } else {
4923 obj->fd = sock;
4924 }
4925
4926 DBG("UST app notify socket unregister %d", sock);
4927
4928 /*
4929 * Lookup application by notify socket. If this fails, this means that the
4930 * hash table delete has already been done by the application
4931 * unregistration process so we can safely close the notify socket in a
4932 * call RCU.
4933 */
4934 app = find_app_by_notify_sock(sock);
4935 if (!app) {
4936 goto close_socket;
4937 }
4938
4939 iter.iter.node = &app->notify_sock_n.node;
4940
4941 /*
4942 * Whatever happens here either we fail or succeed, in both cases we have
4943 * to close the socket after a grace period to continue to the call RCU
4944 * here. If the deletion is successful, the application is not visible
4945 * anymore by other threads and is it fails it means that it was already
4946 * deleted from the hash table so either way we just have to close the
4947 * socket.
4948 */
4949 (void) lttng_ht_del(ust_app_ht_by_notify_sock, &iter);
4950
4951 close_socket:
4952 rcu_read_unlock();
4953
4954 /*
4955 * Close socket after a grace period to avoid for the socket to be reused
4956 * before the application object is freed creating potential race between
4957 * threads trying to add unique in the global hash table.
4958 */
4959 if (!err_enomem) {
4960 call_rcu(&obj->head, close_notify_sock_rcu);
4961 }
4962 }
4963
4964 /*
4965 * Destroy a ust app data structure and free its memory.
4966 */
4967 void ust_app_destroy(struct ust_app *app)
4968 {
4969 if (!app) {
4970 return;
4971 }
4972
4973 call_rcu(&app->pid_n.head, delete_ust_app_rcu);
4974 }
4975
4976 /*
4977 * Take a snapshot for a given UST session. The snapshot is sent to the given
4978 * output.
4979 *
4980 * Return 0 on success or else a negative value.
4981 */
4982 int ust_app_snapshot_record(struct ltt_ust_session *usess,
4983 struct snapshot_output *output, int wait,
4984 uint64_t nb_packets_per_stream)
4985 {
4986 int ret = 0;
4987 unsigned int snapshot_done = 0;
4988 struct lttng_ht_iter iter;
4989 struct ust_app *app;
4990 char pathname[PATH_MAX];
4991 uint64_t max_stream_size = 0;
4992
4993 assert(usess);
4994 assert(output);
4995
4996 rcu_read_lock();
4997
4998 switch (usess->buffer_type) {
4999 case LTTNG_BUFFER_PER_UID:
5000 {
5001 struct buffer_reg_uid *reg;
5002
5003 cds_list_for_each_entry(reg, &usess->buffer_reg_uid_list, lnode) {
5004 struct buffer_reg_channel *reg_chan;
5005 struct consumer_socket *socket;
5006
5007 /* Get consumer socket to use to push the metadata.*/
5008 socket = consumer_find_socket_by_bitness(reg->bits_per_long,
5009 usess->consumer);
5010 if (!socket) {
5011 ret = -EINVAL;
5012 goto error;
5013 }
5014
5015 memset(pathname, 0, sizeof(pathname));
5016 ret = snprintf(pathname, sizeof(pathname),
5017 DEFAULT_UST_TRACE_DIR "/" DEFAULT_UST_TRACE_UID_PATH,
5018 reg->uid, reg->bits_per_long);
5019 if (ret < 0) {
5020 PERROR("snprintf snapshot path");
5021 goto error;
5022 }
5023
5024 /* Add the UST default trace dir to path. */
5025 cds_lfht_for_each_entry(reg->registry->channels->ht, &iter.iter,
5026 reg_chan, node.node) {
5027 ret = consumer_snapshot_channel(socket, reg_chan->consumer_key,
5028 output, 0, usess->uid, usess->gid, pathname, wait,
5029 nb_packets_per_stream);
5030 if (ret < 0) {
5031 goto error;
5032 }
5033 }
5034 ret = consumer_snapshot_channel(socket,
5035 reg->registry->reg.ust->metadata_key, output, 1,
5036 usess->uid, usess->gid, pathname, wait, 0);
5037 if (ret < 0) {
5038 goto error;
5039 }
5040 snapshot_done = 1;
5041 }
5042 break;
5043 }
5044 case LTTNG_BUFFER_PER_PID:
5045 {
5046 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
5047 struct consumer_socket *socket;
5048 struct lttng_ht_iter chan_iter;
5049 struct ust_app_channel *ua_chan;
5050 struct ust_app_session *ua_sess;
5051 struct ust_registry_session *registry;
5052
5053 ua_sess = lookup_session_by_app(usess, app);
5054 if (!ua_sess) {
5055 /* Session not associated with this app. */
5056 continue;
5057 }
5058
5059 /* Get the right consumer socket for the application. */
5060 socket = consumer_find_socket_by_bitness(app->bits_per_long,
5061 output->consumer);
5062 if (!socket) {
5063 ret = -EINVAL;
5064 goto error;
5065 }
5066
5067 /* Add the UST default trace dir to path. */
5068 memset(pathname, 0, sizeof(pathname));
5069 ret = snprintf(pathname, sizeof(pathname), DEFAULT_UST_TRACE_DIR "/%s",
5070 ua_sess->path);
5071 if (ret < 0) {
5072 PERROR("snprintf snapshot path");
5073 goto error;
5074 }
5075
5076 cds_lfht_for_each_entry(ua_sess->channels->ht, &chan_iter.iter,
5077 ua_chan, node.node) {
5078 ret = consumer_snapshot_channel(socket, ua_chan->key, output,
5079 0, ua_sess->euid, ua_sess->egid, pathname, wait,
5080 nb_packets_per_stream);
5081 if (ret < 0) {
5082 goto error;
5083 }
5084 }
5085
5086 registry = get_session_registry(ua_sess);
5087 assert(registry);
5088 ret = consumer_snapshot_channel(socket, registry->metadata_key, output,
5089 1, ua_sess->euid, ua_sess->egid, pathname, wait, 0);
5090 if (ret < 0) {
5091 goto error;
5092 }
5093 snapshot_done = 1;
5094 }
5095 break;
5096 }
5097 default:
5098 assert(0);
5099 break;
5100 }
5101
5102 if (!snapshot_done) {
5103 /*
5104 * If no snapshot was made and we are not in the error path, this means
5105 * that there are no buffers thus no (prior) application to snapshot
5106 * data from so we have simply NO data.
5107 */
5108 ret = -ENODATA;
5109 }
5110
5111 error:
5112 rcu_read_unlock();
5113 return ret;
5114 }
5115
5116 /*
5117 * Return the size taken by one more packet per stream.
5118 */
5119 uint64_t ust_app_get_size_one_more_packet_per_stream(struct ltt_ust_session *usess,
5120 uint64_t cur_nr_packets)
5121 {
5122 uint64_t tot_size = 0;
5123 struct ust_app *app;
5124 struct lttng_ht_iter iter;
5125
5126 assert(usess);
5127
5128 switch (usess->buffer_type) {
5129 case LTTNG_BUFFER_PER_UID:
5130 {
5131 struct buffer_reg_uid *reg;
5132
5133 cds_list_for_each_entry(reg, &usess->buffer_reg_uid_list, lnode) {
5134 struct buffer_reg_channel *reg_chan;
5135
5136 rcu_read_lock();
5137 cds_lfht_for_each_entry(reg->registry->channels->ht, &iter.iter,
5138 reg_chan, node.node) {
5139 if (cur_nr_packets >= reg_chan->num_subbuf) {
5140 /*
5141 * Don't take channel into account if we
5142 * already grab all its packets.
5143 */
5144 continue;
5145 }
5146 tot_size += reg_chan->subbuf_size * reg_chan->stream_count;
5147 }
5148 rcu_read_unlock();
5149 }
5150 break;
5151 }
5152 case LTTNG_BUFFER_PER_PID:
5153 {
5154 rcu_read_lock();
5155 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
5156 struct ust_app_channel *ua_chan;
5157 struct ust_app_session *ua_sess;
5158 struct lttng_ht_iter chan_iter;
5159
5160 ua_sess = lookup_session_by_app(usess, app);
5161 if (!ua_sess) {
5162 /* Session not associated with this app. */
5163 continue;
5164 }
5165
5166 cds_lfht_for_each_entry(ua_sess->channels->ht, &chan_iter.iter,
5167 ua_chan, node.node) {
5168 if (cur_nr_packets >= ua_chan->attr.num_subbuf) {
5169 /*
5170 * Don't take channel into account if we
5171 * already grab all its packets.
5172 */
5173 continue;
5174 }
5175 tot_size += ua_chan->attr.subbuf_size * ua_chan->streams.count;
5176 }
5177 }
5178 rcu_read_unlock();
5179 break;
5180 }
5181 default:
5182 assert(0);
5183 break;
5184 }
5185
5186 return tot_size;
5187 }
This page took 0.137395 seconds and 3 git commands to generate.