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