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