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