Fix: fd leak on error
[lttng-tools.git] / src / bin / lttng-sessiond / ust-app.c
CommitLineData
91d76f53
DG
1/*
2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
3 *
d14d33bf
AM
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.
91d76f53
DG
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 *
d14d33bf
AM
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.
91d76f53
DG
16 */
17
18#define _GNU_SOURCE
19#include <errno.h>
7972aab2 20#include <inttypes.h>
91d76f53
DG
21#include <pthread.h>
22#include <stdio.h>
23#include <stdlib.h>
099e26bd 24#include <string.h>
aba8e916
DG
25#include <sys/stat.h>
26#include <sys/types.h>
099e26bd 27#include <unistd.h>
0df502fd 28#include <urcu/compiler.h>
fb54cdbf 29#include <lttng/ust-error.h>
331744e3 30#include <signal.h>
bec39940 31
990570ed 32#include <common/common.h>
86acf0da 33#include <common/sessiond-comm/sessiond-comm.h>
1e307fab 34
7972aab2 35#include "buffer-registry.h"
86acf0da
DG
36#include "fd-limit.h"
37#include "health.h"
56fff090 38#include "ust-app.h"
48842b30 39#include "ust-consumer.h"
d80a6244
DG
40#include "ust-ctl.h"
41
ffe60014
DG
42/* Next available channel key. */
43static unsigned long next_channel_key;
7972aab2 44static unsigned long next_session_id;
ffe60014
DG
45
46/*
47 * Return the atomically incremented value of next_channel_key.
48 */
49static inline unsigned long get_next_channel_key(void)
50{
51 return uatomic_add_return(&next_channel_key, 1);
52}
53
54/*
7972aab2 55 * Return the atomically incremented value of next_session_id.
ffe60014 56 */
7972aab2 57static inline unsigned long get_next_session_id(void)
ffe60014 58{
7972aab2 59 return uatomic_add_return(&next_session_id, 1);
ffe60014
DG
60}
61
d65d2de8
DG
62static 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
025faf73
DG
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 */
18eace3b
DG
81static 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) {
025faf73
DG
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 }
18eace3b
DG
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
025faf73
DG
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 }
18eace3b
DG
126 }
127
025faf73 128 /* Match. */
18eace3b
DG
129 return 1;
130
131no_match:
132 return 0;
18eace3b
DG
133}
134
025faf73
DG
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 */
d0b96690 139static void add_unique_ust_app_event(struct ust_app_channel *ua_chan,
18eace3b
DG
140 struct ust_app_event *event)
141{
142 struct cds_lfht_node *node_ptr;
143 struct ust_app_ht_key key;
d0b96690 144 struct lttng_ht *ht;
18eace3b 145
d0b96690
DG
146 assert(ua_chan);
147 assert(ua_chan->events);
18eace3b
DG
148 assert(event);
149
d0b96690 150 ht = ua_chan->events;
18eace3b
DG
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
d88aee68
DG
161/*
162 * Close the notify socket from the given RCU head object. This MUST be called
163 * through a call_rcu().
164 */
165static 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
7972aab2
DG
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 */
190static 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
221error:
222 return registry;
223}
224
55cc08a6
DG
225/*
226 * Delete ust context safely. RCU read lock must be held before calling
227 * this function.
228 */
229static
230void delete_ust_app_ctx(int sock, struct ust_app_ctx *ua_ctx)
231{
ffe60014
DG
232 int ret;
233
234 assert(ua_ctx);
235
55cc08a6 236 if (ua_ctx->obj) {
ffe60014 237 ret = ustctl_release_object(sock, ua_ctx->obj);
d0b96690
DG
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);
ffe60014 241 }
55cc08a6
DG
242 free(ua_ctx->obj);
243 }
244 free(ua_ctx);
245}
246
d80a6244
DG
247/*
248 * Delete ust app event safely. RCU read lock must be held before calling
249 * this function.
250 */
8b366481
DG
251static
252void delete_ust_app_event(int sock, struct ust_app_event *ua_event)
d80a6244 253{
ffe60014
DG
254 int ret;
255
256 assert(ua_event);
257
53a80697 258 free(ua_event->filter);
d80a6244 259
edb67388 260 if (ua_event->obj != NULL) {
ffe60014
DG
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 }
edb67388
DG
266 free(ua_event->obj);
267 }
d80a6244
DG
268 free(ua_event);
269}
270
271/*
7972aab2
DG
272 * Release ust data object of the given stream.
273 *
274 * Return 0 on success or else a negative value.
d80a6244 275 */
7972aab2 276static int release_ust_app_stream(int sock, struct ust_app_stream *stream)
d80a6244 277{
7972aab2 278 int ret = 0;
ffe60014
DG
279
280 assert(stream);
281
8b366481 282 if (stream->obj) {
ffe60014
DG
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 }
4063050c 288 lttng_fd_put(LTTNG_FD_APPS, 2);
8b366481
DG
289 free(stream->obj);
290 }
7972aab2
DG
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 */
299static
300void delete_ust_app_stream(int sock, struct ust_app_stream *stream)
301{
302 assert(stream);
303
304 (void) release_ust_app_stream(sock, stream);
84cd17c6 305 free(stream);
d80a6244
DG
306}
307
36b588ed
MD
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 */
314static
315void 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
d80a6244
DG
325/*
326 * Delete ust app channel safely. RCU read lock must be held before calling
327 * this function.
328 */
8b366481 329static
d0b96690
DG
330void delete_ust_app_channel(int sock, struct ust_app_channel *ua_chan,
331 struct ust_app *app)
d80a6244
DG
332{
333 int ret;
bec39940 334 struct lttng_ht_iter iter;
d80a6244 335 struct ust_app_event *ua_event;
55cc08a6 336 struct ust_app_ctx *ua_ctx;
030a66fa 337 struct ust_app_stream *stream, *stmp;
7972aab2 338 struct ust_registry_session *registry;
d80a6244 339
ffe60014
DG
340 assert(ua_chan);
341
342 DBG3("UST app deleting channel %s", ua_chan->name);
343
55cc08a6 344 /* Wipe stream */
d80a6244 345 cds_list_for_each_entry_safe(stream, stmp, &ua_chan->streams.head, list) {
84cd17c6 346 cds_list_del(&stream->list);
d80a6244
DG
347 delete_ust_app_stream(sock, stream);
348 }
349
55cc08a6 350 /* Wipe context */
bec39940
DG
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);
55cc08a6
DG
353 assert(!ret);
354 delete_ust_app_ctx(sock, ua_ctx);
355 }
d80a6244 356
55cc08a6 357 /* Wipe events */
bec39940
DG
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);
525b0740 361 assert(!ret);
d80a6244
DG
362 delete_ust_app_event(sock, ua_event);
363 }
edb67388 364
45893984 365 /* Wipe and free registry from session registry. */
7972aab2
DG
366 registry = get_session_registry(ua_chan->session);
367 if (registry) {
368 ust_registry_channel_del_free(registry, ua_chan->key);
369 }
d0b96690 370
edb67388 371 if (ua_chan->obj != NULL) {
d0b96690
DG
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);
ffe60014
DG
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 }
7972aab2 380 lttng_fd_put(LTTNG_FD_APPS, 1);
edb67388
DG
381 free(ua_chan->obj);
382 }
36b588ed 383 call_rcu(&ua_chan->rcu_head, delete_ust_app_channel_rcu);
d80a6244
DG
384}
385
331744e3
JD
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 */
391ssize_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
430push_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
442end:
443error:
444 pthread_mutex_unlock(&registry->lock);
445error_push:
446 free(metadata_str);
447 return ret_val;
448}
449
d88aee68
DG
450/*
451 * For a given application and session, push metadata to consumer. The session
452 * lock MUST be acquired here before calling this.
331744e3
JD
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.
d88aee68
DG
456 *
457 * Return 0 on success else a negative error.
458 */
7972aab2
DG
459static int push_metadata(struct ust_registry_session *registry,
460 struct consumer_output *consumer)
d88aee68 461{
331744e3
JD
462 int ret_val;
463 ssize_t ret;
d88aee68
DG
464 struct consumer_socket *socket;
465
7972aab2
DG
466 assert(registry);
467 assert(consumer);
468
469 rcu_read_lock();
d88aee68 470
7972aab2
DG
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) {
331744e3 476 ret_val = 0;
7972aab2 477 goto error_rcu_unlock;
d88aee68
DG
478 }
479
d88aee68 480 /* Get consumer socket to use to push the metadata.*/
7972aab2
DG
481 socket = consumer_find_socket_by_bitness(registry->bits_per_long,
482 consumer);
d88aee68 483 if (!socket) {
331744e3 484 ret_val = -1;
d88aee68
DG
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);
331744e3
JD
499 ret = ust_app_push_metadata(registry, socket, 0);
500 pthread_mutex_unlock(socket->lock);
d88aee68 501 if (ret < 0) {
331744e3 502 ret_val = ret;
d88aee68
DG
503 goto error_rcu_unlock;
504 }
505
d88aee68 506 rcu_read_unlock();
d88aee68
DG
507 return 0;
508
d88aee68
DG
509error_rcu_unlock:
510 rcu_read_unlock();
331744e3 511 return ret_val;
d88aee68
DG
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 */
7972aab2
DG
522static int close_metadata(struct ust_registry_session *registry,
523 struct consumer_output *consumer)
d88aee68
DG
524{
525 int ret;
526 struct consumer_socket *socket;
527
7972aab2
DG
528 assert(registry);
529 assert(consumer);
d88aee68 530
7972aab2
DG
531 rcu_read_lock();
532
533 if (!registry->metadata_key || registry->metadata_closed) {
d88aee68
DG
534 ret = 0;
535 goto error;
536 }
537
d88aee68 538 /* Get consumer socket to use to push the metadata.*/
7972aab2
DG
539 socket = consumer_find_socket_by_bitness(registry->bits_per_long,
540 consumer);
d88aee68
DG
541 if (!socket) {
542 ret = -1;
7972aab2 543 goto error;
d88aee68
DG
544 }
545
7972aab2 546 ret = consumer_close_metadata(socket, registry->metadata_key);
d88aee68 547 if (ret < 0) {
7972aab2 548 goto error;
d88aee68
DG
549 }
550
7972aab2
DG
551 /* Metadata successfully closed. Flag the registry. */
552 registry->metadata_closed = 1;
d88aee68 553
d88aee68 554error:
7972aab2 555 rcu_read_unlock();
d88aee68
DG
556 return ret;
557}
558
36b588ed
MD
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 */
565static
566void 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
d80a6244
DG
575/*
576 * Delete ust app session safely. RCU read lock must be held before calling
577 * this function.
578 */
8b366481 579static
d0b96690
DG
580void delete_ust_app_session(int sock, struct ust_app_session *ua_sess,
581 struct ust_app *app)
d80a6244
DG
582{
583 int ret;
bec39940 584 struct lttng_ht_iter iter;
d80a6244 585 struct ust_app_channel *ua_chan;
7972aab2 586 struct ust_registry_session *registry;
d80a6244 587
d88aee68
DG
588 assert(ua_sess);
589
7972aab2
DG
590 registry = get_session_registry(ua_sess);
591 if (registry) {
d88aee68 592 /* Push metadata for application before freeing the application. */
7972aab2 593 (void) push_metadata(registry, ua_sess->consumer);
d88aee68 594
7972aab2
DG
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 }
d80a6244
DG
603 }
604
bec39940
DG
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);
525b0740 608 assert(!ret);
d0b96690 609 delete_ust_app_channel(sock, ua_chan, app);
d80a6244 610 }
d80a6244 611
7972aab2
DG
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 }
d0b96690 620
aee6bafd 621 if (ua_sess->handle != -1) {
ffe60014
DG
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 }
aee6bafd 627 }
36b588ed 628 call_rcu(&ua_sess->rcu_head, delete_ust_app_session_rcu);
d80a6244 629}
91d76f53
DG
630
631/*
284d8f55
DG
632 * Delete a traceable application structure from the global list. Never call
633 * this function outside of a call_rcu call.
36b588ed
MD
634 *
635 * RCU read side lock should _NOT_ be held when calling this function.
91d76f53 636 */
8b366481
DG
637static
638void delete_ust_app(struct ust_app *app)
91d76f53 639{
8b366481 640 int ret, sock;
d42f20df 641 struct ust_app_session *ua_sess, *tmp_ua_sess;
44d3bd01 642
d80a6244 643 /* Delete ust app sessions info */
852d0037
DG
644 sock = app->sock;
645 app->sock = -1;
d80a6244 646
8b366481 647 /* Wipe sessions */
d42f20df
DG
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. */
36b588ed 651 rcu_read_lock();
d0b96690 652 delete_ust_app_session(sock, ua_sess, app);
36b588ed 653 rcu_read_unlock();
d80a6244 654 }
36b588ed
MD
655
656 lttng_ht_destroy(app->sessions);
7972aab2 657 lttng_ht_destroy(app->ust_objd);
d80a6244 658
6414a713 659 /*
852d0037
DG
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.
6414a713 671 */
799e2c4f
MD
672 ret = close(sock);
673 if (ret) {
674 PERROR("close");
675 }
4063050c 676 lttng_fd_put(LTTNG_FD_APPS, 1);
d80a6244 677
852d0037 678 DBG2("UST app pid %d deleted", app->pid);
284d8f55 679 free(app);
099e26bd
DG
680}
681
682/*
f6a9efaa 683 * URCU intermediate call to delete an UST app.
099e26bd 684 */
8b366481
DG
685static
686void delete_ust_app_rcu(struct rcu_head *head)
099e26bd 687{
bec39940
DG
688 struct lttng_ht_node_ulong *node =
689 caa_container_of(head, struct lttng_ht_node_ulong, head);
f6a9efaa 690 struct ust_app *app =
852d0037 691 caa_container_of(node, struct ust_app, pid_n);
f6a9efaa 692
852d0037 693 DBG3("Call RCU deleting app PID %d", app->pid);
f6a9efaa 694 delete_ust_app(app);
099e26bd
DG
695}
696
ffe60014
DG
697/*
698 * Delete the session from the application ht and delete the data structure by
699 * freeing every object inside and releasing them.
700 */
d0b96690 701static void destroy_app_session(struct ust_app *app,
ffe60014
DG
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. */
d0b96690 718 delete_ust_app_session(app->sock, ua_sess, app);
ffe60014
DG
719
720end:
721 return;
722}
723
8b366481
DG
724/*
725 * Alloc new UST app session.
726 */
727static
d0b96690 728struct ust_app_session *alloc_ust_app_session(struct ust_app *app)
8b366481
DG
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");
ffe60014 736 goto error_free;
8b366481
DG
737 }
738
739 ua_sess->handle = -1;
bec39940 740 ua_sess->channels = lttng_ht_new(0, LTTNG_HT_TYPE_STRING);
d0b96690 741 pthread_mutex_init(&ua_sess->lock, NULL);
ffe60014 742
8b366481
DG
743 return ua_sess;
744
ffe60014 745error_free:
8b366481
DG
746 return NULL;
747}
748
749/*
750 * Alloc new UST app channel.
751 */
752static
753struct ust_app_channel *alloc_ust_app_channel(char *name,
d0b96690 754 struct ust_app_session *ua_sess,
ffe60014 755 struct lttng_ust_channel_attr *attr)
8b366481
DG
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;
45893984 772 ua_chan->session = ua_sess;
ffe60014 773 ua_chan->key = get_next_channel_key();
bec39940
DG
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);
8b366481
DG
777
778 CDS_INIT_LIST_HEAD(&ua_chan->streams.head);
779
780 /* Copy attributes */
781 if (attr) {
ffe60014 782 /* Translate from lttng_ust_channel to ustctl_consumer_channel_attr. */
2fe6e7f5
DG
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;
8b366481 789 }
ffe60014
DG
790 /* By default, the channel is a per cpu channel. */
791 ua_chan->attr.type = LTTNG_UST_CHAN_PER_CPU;
8b366481
DG
792
793 DBG3("UST app channel %s allocated", ua_chan->name);
794
795 return ua_chan;
796
797error:
798 return NULL;
799}
800
37f1c236
DG
801/*
802 * Allocate and initialize a UST app stream.
803 *
804 * Return newly allocated stream pointer or NULL on error.
805 */
ffe60014 806struct ust_app_stream *ust_app_alloc_stream(void)
37f1c236
DG
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
819error:
820 return stream;
821}
822
8b366481
DG
823/*
824 * Alloc new UST app event.
825 */
826static
827struct 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';
bec39940 842 lttng_ht_node_init_str(&ua_event->node, ua_event->name);
8b366481
DG
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
853error:
854 return NULL;
855}
856
857/*
858 * Alloc new UST app context.
859 */
860static
861struct 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
876error:
877 return ua_ctx;
878}
879
025faf73
DG
880/*
881 * Allocate a filter and copy the given original filter.
882 *
883 * Return allocated filter or NULL on error.
884 */
885static 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
899error:
900 return filter;
901}
902
099e26bd 903/*
421cb601
DG
904 * Find an ust_app using the sock and return it. RCU read side lock must be
905 * held before calling this helper function.
099e26bd 906 */
8b366481
DG
907static
908struct ust_app *find_app_by_sock(int sock)
099e26bd 909{
bec39940 910 struct lttng_ht_node_ulong *node;
bec39940 911 struct lttng_ht_iter iter;
f6a9efaa 912
852d0037 913 lttng_ht_lookup(ust_app_ht_by_sock, (void *)((unsigned long) sock), &iter);
bec39940 914 node = lttng_ht_iter_get_node_ulong(&iter);
f6a9efaa
DG
915 if (node == NULL) {
916 DBG2("UST app find by sock %d not found", sock);
f6a9efaa
DG
917 goto error;
918 }
852d0037
DG
919
920 return caa_container_of(node, struct ust_app, sock_n);
f6a9efaa
DG
921
922error:
923 return NULL;
099e26bd
DG
924}
925
d0b96690
DG
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 */
930static 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
945error:
946 return NULL;
947}
948
025faf73
DG
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 */
18eace3b
DG
955static 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;
18eace3b
DG
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
025faf73
DG
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);
18eace3b
DG
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
981end:
18eace3b
DG
982 return event;
983}
984
55cc08a6
DG
985/*
986 * Create the channel context on the tracer.
d0b96690
DG
987 *
988 * Called with UST app session lock held.
55cc08a6
DG
989 */
990static
991int 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
840cb59c 996 health_code_update();
86acf0da 997
852d0037 998 ret = ustctl_add_context(app->sock, &ua_ctx->ctx,
55cc08a6
DG
999 ua_chan->obj, &ua_ctx->obj);
1000 if (ret < 0) {
ffe60014
DG
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 }
55cc08a6
DG
1007 goto error;
1008 }
1009
1010 ua_ctx->handle = ua_ctx->obj->handle;
1011
d0b96690
DG
1012 DBG2("UST app context handle %d created successfully for channel %s",
1013 ua_ctx->handle, ua_chan->name);
55cc08a6
DG
1014
1015error:
840cb59c 1016 health_code_update();
55cc08a6
DG
1017 return ret;
1018}
1019
53a80697
MD
1020/*
1021 * Set the filter on the tracer.
1022 */
1023static
1024int set_ust_event_filter(struct ust_app_event *ua_event,
1025 struct ust_app *app)
1026{
1027 int ret;
1028
840cb59c 1029 health_code_update();
86acf0da 1030
53a80697 1031 if (!ua_event->filter) {
86acf0da
DG
1032 ret = 0;
1033 goto error;
53a80697
MD
1034 }
1035
1036 ret = ustctl_set_filter(app->sock, ua_event->filter,
1037 ua_event->obj);
1038 if (ret < 0) {
ffe60014
DG
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 }
53a80697
MD
1045 goto error;
1046 }
1047
1048 DBG2("UST filter set successfully for event %s", ua_event->name);
1049
1050error:
840cb59c 1051 health_code_update();
53a80697
MD
1052 return ret;
1053}
1054
9730260e
DG
1055/*
1056 * Disable the specified event on to UST tracer for the UST session.
1057 */
1058static 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
840cb59c 1063 health_code_update();
86acf0da 1064
852d0037 1065 ret = ustctl_disable(app->sock, ua_event->obj);
9730260e 1066 if (ret < 0) {
ffe60014
DG
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 }
9730260e
DG
1074 goto error;
1075 }
1076
1077 DBG2("UST app event %s disabled successfully for app (pid: %d)",
852d0037 1078 ua_event->attr.name, app->pid);
9730260e
DG
1079
1080error:
840cb59c 1081 health_code_update();
9730260e
DG
1082 return ret;
1083}
1084
78f0bacd
DG
1085/*
1086 * Disable the specified channel on to UST tracer for the UST session.
1087 */
1088static 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
840cb59c 1093 health_code_update();
86acf0da 1094
852d0037 1095 ret = ustctl_disable(app->sock, ua_chan->obj);
78f0bacd 1096 if (ret < 0) {
ffe60014
DG
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 }
78f0bacd
DG
1104 goto error;
1105 }
1106
78f0bacd 1107 DBG2("UST app channel %s disabled successfully for app (pid: %d)",
852d0037 1108 ua_chan->name, app->pid);
78f0bacd
DG
1109
1110error:
840cb59c 1111 health_code_update();
78f0bacd
DG
1112 return ret;
1113}
1114
1115/*
1116 * Enable the specified channel on to UST tracer for the UST session.
1117 */
1118static 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
840cb59c 1123 health_code_update();
86acf0da 1124
852d0037 1125 ret = ustctl_enable(app->sock, ua_chan->obj);
78f0bacd 1126 if (ret < 0) {
ffe60014
DG
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 }
78f0bacd
DG
1134 goto error;
1135 }
1136
1137 ua_chan->enabled = 1;
1138
1139 DBG2("UST app channel %s enabled successfully for app (pid: %d)",
852d0037 1140 ua_chan->name, app->pid);
78f0bacd
DG
1141
1142error:
840cb59c 1143 health_code_update();
78f0bacd
DG
1144 return ret;
1145}
1146
edb67388
DG
1147/*
1148 * Enable the specified event on to UST tracer for the UST session.
1149 */
1150static 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
840cb59c 1155 health_code_update();
86acf0da 1156
852d0037 1157 ret = ustctl_enable(app->sock, ua_event->obj);
edb67388 1158 if (ret < 0) {
ffe60014
DG
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 }
edb67388
DG
1166 goto error;
1167 }
1168
1169 DBG2("UST app event %s enabled successfully for app (pid: %d)",
852d0037 1170 ua_event->attr.name, app->pid);
edb67388
DG
1171
1172error:
840cb59c 1173 health_code_update();
edb67388
DG
1174 return ret;
1175}
1176
099e26bd 1177/*
7972aab2 1178 * Send channel and stream buffer to application.
4f3ab6ee 1179 *
ffe60014 1180 * Return 0 on success. On error, a negative value is returned.
4f3ab6ee 1181 */
7972aab2
DG
1182static int send_channel_pid_to_ust(struct ust_app *app,
1183 struct ust_app_session *ua_sess, struct ust_app_channel *ua_chan)
4f3ab6ee
DG
1184{
1185 int ret;
ffe60014 1186 struct ust_app_stream *stream, *stmp;
4f3ab6ee
DG
1187
1188 assert(app);
ffe60014 1189 assert(ua_sess);
4f3ab6ee 1190 assert(ua_chan);
4f3ab6ee 1191
840cb59c 1192 health_code_update();
4f3ab6ee 1193
7972aab2
DG
1194 DBG("UST app sending channel %s to UST app sock %d", ua_chan->name,
1195 app->sock);
86acf0da 1196
ffe60014
DG
1197 /* Send channel to the application. */
1198 ret = ust_consumer_send_channel_to_ust(app, ua_sess, ua_chan);
5b4a0ec0 1199 if (ret < 0) {
b551a063
DG
1200 goto error;
1201 }
1202
d88aee68
DG
1203 health_code_update();
1204
ffe60014
DG
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 }
ffe60014
DG
1215 /* Flag the channel that it is sent to the application. */
1216 ua_chan->is_sent = 1;
ffe60014 1217
b551a063 1218error:
840cb59c 1219 health_code_update();
b551a063
DG
1220 return ret;
1221}
1222
91d76f53 1223/*
5b4a0ec0 1224 * Create the specified event onto the UST tracer for a UST session.
d0b96690
DG
1225 *
1226 * Should be called with session mutex held.
91d76f53 1227 */
edb67388
DG
1228static
1229int 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)
91d76f53 1231{
5b4a0ec0 1232 int ret = 0;
284d8f55 1233
840cb59c 1234 health_code_update();
86acf0da 1235
5b4a0ec0 1236 /* Create UST event on tracer */
852d0037 1237 ret = ustctl_create_event(app->sock, &ua_event->attr, ua_chan->obj,
5b4a0ec0
DG
1238 &ua_event->obj);
1239 if (ret < 0) {
ffe60014
DG
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 }
5b4a0ec0 1246 goto error;
91d76f53 1247 }
f6a9efaa 1248
5b4a0ec0 1249 ua_event->handle = ua_event->obj->handle;
284d8f55 1250
5b4a0ec0 1251 DBG2("UST app event %s created successfully for pid:%d",
852d0037 1252 ua_event->attr.name, app->pid);
f6a9efaa 1253
840cb59c 1254 health_code_update();
86acf0da 1255
025faf73
DG
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
8535a6d9 1264 /* If event not enabled, disable it on the tracer */
fc34caaa 1265 if (ua_event->enabled == 0) {
8535a6d9
DG
1266 ret = disable_ust_event(app, ua_sess, ua_event);
1267 if (ret < 0) {
fc34caaa
DG
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) {
49c336c1 1274 case -LTTNG_UST_ERR_PERM:
fc34caaa
DG
1275 /* Code flow problem */
1276 assert(0);
49c336c1 1277 case -LTTNG_UST_ERR_EXIST:
fc34caaa
DG
1278 /* It's OK for our use case. */
1279 ret = 0;
1280 break;
1281 default:
1282 break;
1283 }
8535a6d9
DG
1284 goto error;
1285 }
1286 }
1287
5b4a0ec0 1288error:
840cb59c 1289 health_code_update();
5b4a0ec0 1290 return ret;
91d76f53 1291}
48842b30 1292
5b4a0ec0
DG
1293/*
1294 * Copy data between an UST app event and a LTT event.
1295 */
421cb601 1296static void shadow_copy_event(struct ust_app_event *ua_event,
48842b30
DG
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
fc34caaa
DG
1302 ua_event->enabled = uevent->enabled;
1303
5b4a0ec0
DG
1304 /* Copy event attributes */
1305 memcpy(&ua_event->attr, &uevent->attr, sizeof(ua_event->attr));
1306
53a80697
MD
1307 /* Copy filter bytecode */
1308 if (uevent->filter) {
025faf73
DG
1309 ua_event->filter = alloc_copy_ust_app_filter(uevent->filter);
1310 /* Filter might be NULL here in case of ENONEM. */
53a80697 1311 }
48842b30
DG
1312}
1313
5b4a0ec0
DG
1314/*
1315 * Copy data between an UST app channel and a LTT channel.
1316 */
421cb601 1317static void shadow_copy_channel(struct ust_app_channel *ua_chan,
48842b30
DG
1318 struct ltt_ust_channel *uchan)
1319{
bec39940 1320 struct lttng_ht_iter iter;
48842b30 1321 struct ltt_ust_event *uevent;
55cc08a6 1322 struct ltt_ust_context *uctx;
48842b30 1323 struct ust_app_event *ua_event;
55cc08a6 1324 struct ust_app_ctx *ua_ctx;
48842b30 1325
fc34caaa 1326 DBG2("UST app shadow copy of channel %s started", ua_chan->name);
48842b30
DG
1327
1328 strncpy(ua_chan->name, uchan->name, sizeof(ua_chan->name));
1329 ua_chan->name[sizeof(ua_chan->name) - 1] = '\0';
ffe60014 1330
1624d5b7
JD
1331 ua_chan->tracefile_size = uchan->tracefile_size;
1332 ua_chan->tracefile_count = uchan->tracefile_count;
1333
ffe60014
DG
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 */
48842b30 1345
fc34caaa 1346 ua_chan->enabled = uchan->enabled;
7972aab2 1347 ua_chan->tracing_channel_id = uchan->id;
fc34caaa 1348
bec39940 1349 cds_lfht_for_each_entry(uchan->ctx->ht, &iter.iter, uctx, node.node) {
55cc08a6
DG
1350 ua_ctx = alloc_ust_app_ctx(&uctx->ctx);
1351 if (ua_ctx == NULL) {
1352 continue;
1353 }
bec39940
DG
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);
55cc08a6 1357 }
48842b30 1358
421cb601 1359 /* Copy all events from ltt ust channel to ust app channel */
bec39940 1360 cds_lfht_for_each_entry(uchan->events->ht, &iter.iter, uevent, node.node) {
18eace3b
DG
1361 ua_event = find_ust_app_event(ua_chan->events, uevent->attr.name,
1362 uevent->filter, uevent->attr.loglevel);
1363 if (ua_event == NULL) {
421cb601 1364 DBG2("UST event %s not found on shadow copy channel",
48842b30 1365 uevent->attr.name);
284d8f55 1366 ua_event = alloc_ust_app_event(uevent->attr.name, &uevent->attr);
48842b30 1367 if (ua_event == NULL) {
5b4a0ec0 1368 continue;
48842b30 1369 }
421cb601 1370 shadow_copy_event(ua_event, uevent);
d0b96690 1371 add_unique_ust_app_event(ua_chan, ua_event);
48842b30 1372 }
48842b30
DG
1373 }
1374
fc34caaa 1375 DBG3("UST app shadow copy of channel %s done", ua_chan->name);
48842b30
DG
1376}
1377
5b4a0ec0
DG
1378/*
1379 * Copy data between a UST app session and a regular LTT session.
1380 */
421cb601 1381static void shadow_copy_session(struct ust_app_session *ua_sess,
bec39940 1382 struct ltt_ust_session *usess, struct ust_app *app)
48842b30 1383{
bec39940
DG
1384 struct lttng_ht_node_str *ua_chan_node;
1385 struct lttng_ht_iter iter;
48842b30
DG
1386 struct ltt_ust_channel *uchan;
1387 struct ust_app_channel *ua_chan;
477d7741
MD
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);
48842b30 1397
421cb601 1398 DBG2("Shadow copy of session handle %d", ua_sess->handle);
48842b30 1399
7972aab2
DG
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),
dec56f6c 1414 DEFAULT_UST_TRACE_PID_PATH "/%s-%d-%s", app->name, app->pid,
7972aab2
DG
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 }
477d7741
MD
1425 if (ret < 0) {
1426 PERROR("asprintf UST shadow copy session");
477d7741 1427 assert(0);
7972aab2 1428 goto error;
477d7741
MD
1429 }
1430
48842b30 1431 /* Iterate over all channels in global domain. */
bec39940
DG
1432 cds_lfht_for_each_entry(usess->domain_global.channels->ht, &iter.iter,
1433 uchan, node.node) {
1434 struct lttng_ht_iter uiter;
ba767faf 1435
bec39940
DG
1436 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &uiter);
1437 ua_chan_node = lttng_ht_iter_get_node_str(&uiter);
5b4a0ec0 1438 if (ua_chan_node != NULL) {
fc34caaa 1439 /* Session exist. Contiuing. */
5b4a0ec0
DG
1440 continue;
1441 }
421cb601 1442
5b4a0ec0
DG
1443 DBG2("Channel %s not found on shadow session copy, creating it",
1444 uchan->name);
d0b96690 1445 ua_chan = alloc_ust_app_channel(uchan->name, ua_sess, &uchan->attr);
5b4a0ec0 1446 if (ua_chan == NULL) {
fc34caaa 1447 /* malloc failed FIXME: Might want to do handle ENOMEM .. */
5b4a0ec0 1448 continue;
48842b30 1449 }
5b4a0ec0 1450 shadow_copy_channel(ua_chan, uchan);
ffe60014
DG
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
bec39940 1458 lttng_ht_add_unique_str(ua_sess->channels, &ua_chan->node);
48842b30 1459 }
7972aab2
DG
1460
1461error:
1462 return;
48842b30
DG
1463}
1464
78f0bacd
DG
1465/*
1466 * Lookup sesison wrapper.
1467 */
84cd17c6
MD
1468static
1469void __lookup_session_by_app(struct ltt_ust_session *usess,
bec39940 1470 struct ust_app *app, struct lttng_ht_iter *iter)
84cd17c6
MD
1471{
1472 /* Get right UST app session from app */
2c348c10 1473 lttng_ht_lookup(app->sessions, (void *)((unsigned long) usess->id), iter);
84cd17c6
MD
1474}
1475
421cb601
DG
1476/*
1477 * Return ust app session from the app session hashtable using the UST session
a991f516 1478 * id.
421cb601 1479 */
48842b30
DG
1480static struct ust_app_session *lookup_session_by_app(
1481 struct ltt_ust_session *usess, struct ust_app *app)
1482{
bec39940
DG
1483 struct lttng_ht_iter iter;
1484 struct lttng_ht_node_ulong *node;
48842b30 1485
84cd17c6 1486 __lookup_session_by_app(usess, app, &iter);
bec39940 1487 node = lttng_ht_iter_get_node_ulong(&iter);
48842b30
DG
1488 if (node == NULL) {
1489 goto error;
1490 }
1491
1492 return caa_container_of(node, struct ust_app_session, node);
1493
1494error:
1495 return NULL;
1496}
1497
7972aab2
DG
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 */
1505static 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,
af6142cf
MD
1535 app->uint64_t_alignment, app->long_alignment,
1536 app->byte_order, app->version.major,
1537 app->version.minor);
7972aab2
DG
1538 if (ret < 0) {
1539 goto error;
1540 }
1541
1542 DBG3("UST app buffer registry per PID created successfully");
1543
1544end:
1545 if (regp) {
1546 *regp = reg_pid;
1547 }
1548error:
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 */
1560static 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. */
af6142cf 1588 ret = ust_registry_session_init(&reg_uid->registry->reg.ust, NULL,
7972aab2
DG
1589 app->bits_per_long, app->uint8_t_alignment,
1590 app->uint16_t_alignment, app->uint32_t_alignment,
af6142cf
MD
1591 app->uint64_t_alignment, app->long_alignment,
1592 app->byte_order, app->version.major,
1593 app->version.minor);
7972aab2
DG
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
1602end:
1603 if (regp) {
1604 *regp = reg_uid;
1605 }
1606error:
1607 rcu_read_unlock();
1608 return ret;
1609}
1610
421cb601 1611/*
3d8ca23b 1612 * Create a session on the tracer side for the given app.
421cb601 1613 *
3d8ca23b
DG
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.
421cb601 1621 */
3d8ca23b
DG
1622static 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)
421cb601 1625{
3d8ca23b 1626 int ret, created = 0;
421cb601
DG
1627 struct ust_app_session *ua_sess;
1628
3d8ca23b
DG
1629 assert(usess);
1630 assert(app);
1631 assert(ua_sess_ptr);
1632
840cb59c 1633 health_code_update();
86acf0da 1634
421cb601
DG
1635 ua_sess = lookup_session_by_app(usess, app);
1636 if (ua_sess == NULL) {
a991f516 1637 DBG2("UST app pid: %d session id %d not found, creating it",
852d0037 1638 app->pid, usess->id);
d0b96690 1639 ua_sess = alloc_ust_app_session(app);
421cb601
DG
1640 if (ua_sess == NULL) {
1641 /* Only malloc can failed so something is really wrong */
3d8ca23b
DG
1642 ret = -ENOMEM;
1643 goto error;
421cb601 1644 }
477d7741 1645 shadow_copy_session(ua_sess, usess, app);
3d8ca23b 1646 created = 1;
421cb601
DG
1647 }
1648
7972aab2
DG
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);
421cb601 1653 if (ret < 0) {
7972aab2
DG
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",
ffe60014
DG
1677 app->pid, ret);
1678 } else {
1679 DBG("UST app creating session failed. Application is dead");
1680 }
d0b96690 1681 delete_ust_app_session(-1, ua_sess, app);
3d8ca23b
DG
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;
421cb601
DG
1690 }
1691
7972aab2
DG
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
1710error:
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 */
1720static
1721int 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
1754error:
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 */
1763static
1764int 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
1776error:
1777 return ret;
1778}
1779
1780/*
1781 * Disable on the tracer side a ust app event for the session and channel.
1782 */
1783static 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
1795error:
1796 return ret;
1797}
1798
1799/*
1800 * Lookup ust app channel for session and disable it on the tracer side.
1801 */
1802static
1803int 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
1815error:
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 */
1823static 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
1846error:
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 */
1855static 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
1924error_destroy:
1925 lttng_fd_put(LTTNG_FD_APPS, nb_fd);
1926error_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);
1934error_ask:
1935 lttng_fd_put(LTTNG_FD_APPS, 1);
1936error:
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 */
1948static 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
1974error:
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 */
1984static 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
2010error:
2011 lttng_fd_put(LTTNG_FD_APPS, 1);
2012error_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 */
2022static 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);
421cb601 2049
7972aab2
DG
2050 /* We don't need the streams anymore. */
2051 cds_list_del(&stream->list);
2052 delete_ust_app_stream(-1, stream);
2053 }
421cb601 2054
7972aab2
DG
2055error:
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 */
2067static 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;
421cb601 2082 }
7972aab2
DG
2083 assert(reg_chan);
2084 reg_chan->consumer_key = ua_chan->key;
421cb601 2085
7972aab2
DG
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;
d88aee68 2091 }
7972aab2 2092 buffer_reg_channel_add(reg_sess, reg_chan);
d88aee68 2093
7972aab2
DG
2094 if (regp) {
2095 *regp = reg_chan;
3d8ca23b 2096 }
d88aee68 2097
7972aab2 2098 return 0;
3d8ca23b
DG
2099
2100error:
7972aab2
DG
2101 /* Safe because the registry channel object was not added to any HT. */
2102 buffer_reg_channel_destroy(reg_chan, LTTNG_DOMAIN_UST);
2103error_create:
3d8ca23b 2104 return ret;
421cb601
DG
2105}
2106
55cc08a6 2107/*
7972aab2
DG
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.
d0b96690 2110 *
7972aab2 2111 * Return 0 on success else a negative value.
55cc08a6 2112 */
7972aab2
DG
2113static int setup_buffer_reg_channel(struct buffer_reg_session *reg_sess,
2114 struct ust_app_channel *ua_chan, struct buffer_reg_channel *reg_chan)
55cc08a6 2115{
7972aab2 2116 int ret;
55cc08a6 2117
7972aab2
DG
2118 assert(reg_sess);
2119 assert(reg_chan);
2120 assert(ua_chan);
2121 assert(ua_chan->obj);
55cc08a6 2122
7972aab2 2123 DBG2("UST app setup buffer registry channel for %s", ua_chan->name);
55cc08a6 2124
7972aab2
DG
2125 /* Setup all streams for the registry. */
2126 ret = setup_buffer_reg_streams(reg_chan, ua_chan);
2127 if (ret < 0) {
55cc08a6
DG
2128 goto error;
2129 }
2130
7972aab2
DG
2131 reg_chan->obj.ust = ua_chan->obj;
2132 ua_chan->obj = NULL;
55cc08a6 2133
7972aab2 2134 return 0;
55cc08a6
DG
2135
2136error:
7972aab2
DG
2137 buffer_reg_channel_remove(reg_sess, reg_chan);
2138 buffer_reg_channel_destroy(reg_chan, LTTNG_DOMAIN_UST);
55cc08a6
DG
2139 return ret;
2140}
2141
edb67388 2142/*
7972aab2 2143 * Send buffer registry channel to the application.
d0b96690 2144 *
7972aab2 2145 * Return 0 on success else a negative value.
edb67388 2146 */
7972aab2
DG
2147static 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)
edb67388
DG
2150{
2151 int ret;
7972aab2 2152 struct buffer_reg_stream *reg_stream;
edb67388 2153
7972aab2
DG
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);
edb67388
DG
2162 if (ret < 0) {
2163 goto error;
2164 }
2165
7972aab2
DG
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) {
8c067051 2186 (void) release_ust_app_stream(-1, &stream);
7972aab2
DG
2187 goto error_stream_unlock;
2188 }
edb67388 2189
7972aab2
DG
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
2198error_stream_unlock:
2199 pthread_mutex_unlock(&reg_chan->stream_list_lock);
edb67388
DG
2200error:
2201 return ret;
2202}
2203
9730260e 2204/*
7972aab2
DG
2205 * Create and send to the application the created buffers with per UID buffers.
2206 *
2207 * Return 0 on success else a negative value.
9730260e 2208 */
7972aab2
DG
2209static 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)
9730260e
DG
2212{
2213 int ret;
7972aab2
DG
2214 struct buffer_reg_uid *reg_uid;
2215 struct buffer_reg_channel *reg_chan;
9730260e 2216
7972aab2
DG
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 goto error;
2250 }
2251
2252 /*
2253 * Setup the streams and add it to the session registry.
2254 */
2255 ret = setup_buffer_reg_channel(reg_uid->registry, ua_chan, reg_chan);
2256 if (ret < 0) {
2257 goto error;
2258 }
2259
2260 }
2261
2262 /* Send buffers to the application. */
2263 ret = send_channel_uid_to_ust(reg_chan, app, ua_sess, ua_chan);
9730260e
DG
2264 if (ret < 0) {
2265 goto error;
2266 }
2267
9730260e
DG
2268error:
2269 return ret;
2270}
2271
78f0bacd 2272/*
7972aab2
DG
2273 * Create and send to the application the created buffers with per PID buffers.
2274 *
2275 * Return 0 on success else a negative value.
78f0bacd 2276 */
7972aab2
DG
2277static int create_channel_per_pid(struct ust_app *app,
2278 struct ltt_ust_session *usess, struct ust_app_session *ua_sess,
2279 struct ust_app_channel *ua_chan)
78f0bacd 2280{
8535a6d9 2281 int ret;
7972aab2 2282 struct ust_registry_session *registry;
78f0bacd 2283
7972aab2
DG
2284 assert(app);
2285 assert(usess);
2286 assert(ua_sess);
2287 assert(ua_chan);
2288
2289 DBG("UST app creating channel %s with per PID buffers", ua_chan->name);
2290
2291 rcu_read_lock();
2292
2293 registry = get_session_registry(ua_sess);
2294 assert(registry);
2295
2296 /* Create and add a new channel registry to session. */
2297 ret = ust_registry_channel_add(registry, ua_chan->key);
78f0bacd
DG
2298 if (ret < 0) {
2299 goto error;
2300 }
2301
7972aab2
DG
2302 /* Create and get channel on the consumer side. */
2303 ret = do_consumer_create_channel(usess, ua_sess, ua_chan,
2304 app->bits_per_long, registry);
2305 if (ret < 0) {
2306 goto error;
2307 }
2308
2309 ret = send_channel_pid_to_ust(app, ua_sess, ua_chan);
2310 if (ret < 0) {
2311 goto error;
2312 }
8535a6d9 2313
78f0bacd 2314error:
7972aab2 2315 rcu_read_unlock();
78f0bacd
DG
2316 return ret;
2317}
2318
2319/*
7972aab2
DG
2320 * From an already allocated ust app channel, create the channel buffers if
2321 * need and send it to the application. This MUST be called with a RCU read
2322 * side lock acquired.
2323 *
2324 * Return 0 on success or else a negative value.
78f0bacd 2325 */
7972aab2
DG
2326static int do_create_channel(struct ust_app *app,
2327 struct ltt_ust_session *usess, struct ust_app_session *ua_sess,
2328 struct ust_app_channel *ua_chan)
78f0bacd 2329{
7972aab2 2330 int ret;
78f0bacd 2331
7972aab2
DG
2332 assert(app);
2333 assert(usess);
2334 assert(ua_sess);
2335 assert(ua_chan);
2336
2337 /* Handle buffer type before sending the channel to the application. */
2338 switch (usess->buffer_type) {
2339 case LTTNG_BUFFER_PER_UID:
2340 {
2341 ret = create_channel_per_uid(app, usess, ua_sess, ua_chan);
2342 if (ret < 0) {
2343 goto error;
2344 }
2345 break;
2346 }
2347 case LTTNG_BUFFER_PER_PID:
2348 {
2349 ret = create_channel_per_pid(app, usess, ua_sess, ua_chan);
2350 if (ret < 0) {
2351 goto error;
2352 }
2353 break;
2354 }
2355 default:
2356 assert(0);
2357 ret = -EINVAL;
78f0bacd
DG
2358 goto error;
2359 }
2360
7972aab2
DG
2361 /* Initialize ust objd object using the received handle and add it. */
2362 lttng_ht_node_init_ulong(&ua_chan->ust_objd_node, ua_chan->handle);
2363 lttng_ht_add_unique_ulong(app->ust_objd, &ua_chan->ust_objd_node);
78f0bacd 2364
7972aab2
DG
2365 /* If channel is not enabled, disable it on the tracer */
2366 if (!ua_chan->enabled) {
2367 ret = disable_ust_channel(app, ua_sess, ua_chan);
2368 if (ret < 0) {
2369 goto error;
2370 }
78f0bacd
DG
2371 }
2372
2373error:
2374 return ret;
2375}
2376
284d8f55 2377/*
4d710ac2
DG
2378 * Create UST app channel and create it on the tracer. Set ua_chanp of the
2379 * newly created channel if not NULL.
d0b96690 2380 *
36b588ed 2381 * Called with UST app session lock and RCU read-side lock held.
7972aab2
DG
2382 *
2383 * Return 0 on success or else a negative value.
284d8f55 2384 */
4d710ac2
DG
2385static int create_ust_app_channel(struct ust_app_session *ua_sess,
2386 struct ltt_ust_channel *uchan, struct ust_app *app,
7972aab2 2387 enum lttng_ust_chan_type type, struct ltt_ust_session *usess,
4d710ac2 2388 struct ust_app_channel **ua_chanp)
5b4a0ec0
DG
2389{
2390 int ret = 0;
bec39940
DG
2391 struct lttng_ht_iter iter;
2392 struct lttng_ht_node_str *ua_chan_node;
5b4a0ec0
DG
2393 struct ust_app_channel *ua_chan;
2394
2395 /* Lookup channel in the ust app session */
bec39940
DG
2396 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &iter);
2397 ua_chan_node = lttng_ht_iter_get_node_str(&iter);
fc34caaa 2398 if (ua_chan_node != NULL) {
5b4a0ec0 2399 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node);
fc34caaa 2400 goto end;
5b4a0ec0
DG
2401 }
2402
d0b96690 2403 ua_chan = alloc_ust_app_channel(uchan->name, ua_sess, &uchan->attr);
fc34caaa
DG
2404 if (ua_chan == NULL) {
2405 /* Only malloc can fail here */
4d710ac2 2406 ret = -ENOMEM;
fc34caaa
DG
2407 goto error;
2408 }
2409 shadow_copy_channel(ua_chan, uchan);
2410
ffe60014
DG
2411 /* Set channel type. */
2412 ua_chan->attr.type = type;
2413
7972aab2 2414 ret = do_create_channel(app, usess, ua_sess, ua_chan);
5b4a0ec0
DG
2415 if (ret < 0) {
2416 goto error;
2417 }
2418
fc34caaa 2419 DBG2("UST app create channel %s for PID %d completed", ua_chan->name,
852d0037 2420 app->pid);
fc34caaa 2421
d0b96690
DG
2422 /* Only add the channel if successful on the tracer side. */
2423 lttng_ht_add_unique_str(ua_sess->channels, &ua_chan->node);
2424
fc34caaa 2425end:
4d710ac2
DG
2426 if (ua_chanp) {
2427 *ua_chanp = ua_chan;
2428 }
2429
2430 /* Everything went well. */
2431 return 0;
5b4a0ec0
DG
2432
2433error:
d0b96690 2434 delete_ust_app_channel(ua_chan->is_sent ? app->sock : -1, ua_chan, app);
4d710ac2 2435 return ret;
5b4a0ec0
DG
2436}
2437
2438/*
2439 * Create UST app event and create it on the tracer side.
d0b96690
DG
2440 *
2441 * Called with ust app session mutex held.
5b4a0ec0 2442 */
edb67388
DG
2443static
2444int create_ust_app_event(struct ust_app_session *ua_sess,
2445 struct ust_app_channel *ua_chan, struct ltt_ust_event *uevent,
2446 struct ust_app *app)
284d8f55 2447{
edb67388 2448 int ret = 0;
5b4a0ec0 2449 struct ust_app_event *ua_event;
284d8f55 2450
5b4a0ec0 2451 /* Get event node */
18eace3b
DG
2452 ua_event = find_ust_app_event(ua_chan->events, uevent->attr.name,
2453 uevent->filter, uevent->attr.loglevel);
2454 if (ua_event != NULL) {
fc34caaa 2455 ret = -EEXIST;
edb67388
DG
2456 goto end;
2457 }
5b4a0ec0 2458
edb67388
DG
2459 /* Does not exist so create one */
2460 ua_event = alloc_ust_app_event(uevent->attr.name, &uevent->attr);
2461 if (ua_event == NULL) {
2462 /* Only malloc can failed so something is really wrong */
2463 ret = -ENOMEM;
fc34caaa 2464 goto end;
5b4a0ec0 2465 }
edb67388 2466 shadow_copy_event(ua_event, uevent);
5b4a0ec0 2467
edb67388 2468 /* Create it on the tracer side */
5b4a0ec0 2469 ret = create_ust_event(app, ua_sess, ua_chan, ua_event);
284d8f55 2470 if (ret < 0) {
fc34caaa 2471 /* Not found previously means that it does not exist on the tracer */
76f66f63 2472 assert(ret != -LTTNG_UST_ERR_EXIST);
284d8f55
DG
2473 goto error;
2474 }
2475
d0b96690 2476 add_unique_ust_app_event(ua_chan, ua_event);
284d8f55 2477
fc34caaa 2478 DBG2("UST app create event %s for PID %d completed", ua_event->name,
852d0037 2479 app->pid);
7f79d3a1 2480
edb67388 2481end:
fc34caaa
DG
2482 return ret;
2483
5b4a0ec0 2484error:
fc34caaa
DG
2485 /* Valid. Calling here is already in a read side lock */
2486 delete_ust_app_event(-1, ua_event);
edb67388 2487 return ret;
5b4a0ec0
DG
2488}
2489
2490/*
2491 * Create UST metadata and open it on the tracer side.
d0b96690 2492 *
7972aab2 2493 * Called with UST app session lock held and RCU read side lock.
5b4a0ec0
DG
2494 */
2495static int create_ust_app_metadata(struct ust_app_session *ua_sess,
d65d2de8
DG
2496 struct ust_app *app, struct consumer_output *consumer,
2497 struct ustctl_consumer_channel_attr *attr)
5b4a0ec0
DG
2498{
2499 int ret = 0;
ffe60014 2500 struct ust_app_channel *metadata;
d88aee68 2501 struct consumer_socket *socket;
7972aab2 2502 struct ust_registry_session *registry;
5b4a0ec0 2503
ffe60014
DG
2504 assert(ua_sess);
2505 assert(app);
d88aee68 2506 assert(consumer);
5b4a0ec0 2507
7972aab2
DG
2508 registry = get_session_registry(ua_sess);
2509 assert(registry);
2510
2511 /* Metadata already exists for this registry. */
2512 if (registry->metadata_key) {
2513 ret = 0;
2514 goto error;
5b4a0ec0
DG
2515 }
2516
ffe60014 2517 /* Allocate UST metadata */
d0b96690 2518 metadata = alloc_ust_app_channel(DEFAULT_METADATA_NAME, ua_sess, NULL);
ffe60014
DG
2519 if (!metadata) {
2520 /* malloc() failed */
2521 ret = -ENOMEM;
2522 goto error;
2523 }
5b4a0ec0 2524
d65d2de8
DG
2525 if (!attr) {
2526 /* Set default attributes for metadata. */
2527 metadata->attr.overwrite = DEFAULT_CHANNEL_OVERWRITE;
2528 metadata->attr.subbuf_size = default_get_metadata_subbuf_size();
2529 metadata->attr.num_subbuf = DEFAULT_METADATA_SUBBUF_NUM;
2530 metadata->attr.switch_timer_interval = DEFAULT_UST_CHANNEL_SWITCH_TIMER;
2531 metadata->attr.read_timer_interval = DEFAULT_UST_CHANNEL_READ_TIMER;
2532 metadata->attr.output = LTTNG_UST_MMAP;
2533 metadata->attr.type = LTTNG_UST_CHAN_METADATA;
2534 } else {
2535 memcpy(&metadata->attr, attr, sizeof(metadata->attr));
2536 metadata->attr.output = LTTNG_UST_MMAP;
2537 metadata->attr.type = LTTNG_UST_CHAN_METADATA;
2538 }
5b4a0ec0 2539
d88aee68 2540 /* Get the right consumer socket for the application. */
7972aab2 2541 socket = consumer_find_socket_by_bitness(app->bits_per_long, consumer);
d88aee68
DG
2542 if (!socket) {
2543 ret = -EINVAL;
2544 goto error_consumer;
2545 }
2546
7972aab2
DG
2547 /* Need one fd for the channel. */
2548 ret = lttng_fd_get(LTTNG_FD_APPS, 1);
2549 if (ret < 0) {
2550 ERR("Exhausted number of available FD upon create metadata");
2551 goto error;
2552 }
2553
331744e3
JD
2554 /*
2555 * Keep metadata key so we can identify it on the consumer side. Assign it
2556 * to the registry *before* we ask the consumer so we avoid the race of the
2557 * consumer requesting the metadata and the ask_channel call on our side
2558 * did not returned yet.
2559 */
2560 registry->metadata_key = metadata->key;
2561
d88aee68
DG
2562 /*
2563 * Ask the metadata channel creation to the consumer. The metadata object
2564 * will be created by the consumer and kept their. However, the stream is
2565 * never added or monitored until we do a first push metadata to the
2566 * consumer.
2567 */
7972aab2
DG
2568 ret = ust_consumer_ask_channel(ua_sess, metadata, consumer, socket,
2569 registry);
d88aee68 2570 if (ret < 0) {
7972aab2
DG
2571 /*
2572 * Safe because the metadata obj pointer is not set so the delete below
2573 * will not put a FD back again.
2574 */
2575 lttng_fd_put(LTTNG_FD_APPS, 1);
d88aee68
DG
2576 goto error_consumer;
2577 }
2578
2579 /*
2580 * The setup command will make the metadata stream be sent to the relayd,
2581 * if applicable, and the thread managing the metadatas. This is important
2582 * because after this point, if an error occurs, the only way the stream
2583 * can be deleted is to be monitored in the consumer.
2584 */
7972aab2 2585 ret = consumer_setup_metadata(socket, metadata->key);
ffe60014 2586 if (ret < 0) {
7972aab2
DG
2587 /*
2588 * Safe because the metadata obj pointer is not set so the delete below
2589 * will not put a FD back again.
2590 */
2591 lttng_fd_put(LTTNG_FD_APPS, 1);
d88aee68 2592 goto error_consumer;
5b4a0ec0
DG
2593 }
2594
7972aab2
DG
2595 DBG2("UST metadata with key %" PRIu64 " created for app pid %d",
2596 metadata->key, app->pid);
5b4a0ec0 2597
d88aee68
DG
2598error_consumer:
2599 delete_ust_app_channel(-1, metadata, app);
5b4a0ec0 2600error:
ffe60014 2601 return ret;
5b4a0ec0
DG
2602}
2603
2604/*
2605 * Return pointer to traceable apps list.
2606 */
bec39940 2607struct lttng_ht *ust_app_get_ht(void)
5b4a0ec0
DG
2608{
2609 return ust_app_ht;
2610}
2611
2612/*
d88aee68
DG
2613 * Return ust app pointer or NULL if not found. RCU read side lock MUST be
2614 * acquired before calling this function.
5b4a0ec0
DG
2615 */
2616struct ust_app *ust_app_find_by_pid(pid_t pid)
2617{
d88aee68 2618 struct ust_app *app = NULL;
bec39940
DG
2619 struct lttng_ht_node_ulong *node;
2620 struct lttng_ht_iter iter;
5b4a0ec0 2621
bec39940
DG
2622 lttng_ht_lookup(ust_app_ht, (void *)((unsigned long) pid), &iter);
2623 node = lttng_ht_iter_get_node_ulong(&iter);
5b4a0ec0
DG
2624 if (node == NULL) {
2625 DBG2("UST app no found with pid %d", pid);
2626 goto error;
2627 }
5b4a0ec0
DG
2628
2629 DBG2("Found UST app by pid %d", pid);
2630
d88aee68 2631 app = caa_container_of(node, struct ust_app, pid_n);
5b4a0ec0
DG
2632
2633error:
d88aee68 2634 return app;
5b4a0ec0
DG
2635}
2636
d88aee68
DG
2637/*
2638 * Allocate and init an UST app object using the registration information and
2639 * the command socket. This is called when the command socket connects to the
2640 * session daemon.
2641 *
2642 * The object is returned on success or else NULL.
2643 */
d0b96690 2644struct ust_app *ust_app_create(struct ust_register_msg *msg, int sock)
5b4a0ec0 2645{
d0b96690
DG
2646 struct ust_app *lta = NULL;
2647
2648 assert(msg);
2649 assert(sock >= 0);
2650
2651 DBG3("UST app creating application for socket %d", sock);
5b4a0ec0 2652
173af62f
DG
2653 if ((msg->bits_per_long == 64 &&
2654 (uatomic_read(&ust_consumerd64_fd) == -EINVAL))
2655 || (msg->bits_per_long == 32 &&
2656 (uatomic_read(&ust_consumerd32_fd) == -EINVAL))) {
f943b0fb 2657 ERR("Registration failed: application \"%s\" (pid: %d) has "
d0b96690
DG
2658 "%d-bit long, but no consumerd for this size is available.\n",
2659 msg->name, msg->pid, msg->bits_per_long);
2660 goto error;
3f2c5fcc 2661 }
d0b96690 2662
5b4a0ec0
DG
2663 lta = zmalloc(sizeof(struct ust_app));
2664 if (lta == NULL) {
2665 PERROR("malloc");
d0b96690 2666 goto error;
5b4a0ec0
DG
2667 }
2668
2669 lta->ppid = msg->ppid;
2670 lta->uid = msg->uid;
2671 lta->gid = msg->gid;
d0b96690 2672
7753dea8 2673 lta->bits_per_long = msg->bits_per_long;
d0b96690
DG
2674 lta->uint8_t_alignment = msg->uint8_t_alignment;
2675 lta->uint16_t_alignment = msg->uint16_t_alignment;
2676 lta->uint32_t_alignment = msg->uint32_t_alignment;
2677 lta->uint64_t_alignment = msg->uint64_t_alignment;
2678 lta->long_alignment = msg->long_alignment;
2679 lta->byte_order = msg->byte_order;
2680
5b4a0ec0
DG
2681 lta->v_major = msg->major;
2682 lta->v_minor = msg->minor;
bec39940 2683 lta->sessions = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
d0b96690
DG
2684 lta->ust_objd = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
2685 lta->notify_sock = -1;
d88aee68
DG
2686
2687 /* Copy name and make sure it's NULL terminated. */
2688 strncpy(lta->name, msg->name, sizeof(lta->name));
2689 lta->name[UST_APP_PROCNAME_LEN] = '\0';
2690
2691 /*
2692 * Before this can be called, when receiving the registration information,
2693 * the application compatibility is checked. So, at this point, the
2694 * application can work with this session daemon.
2695 */
d0b96690 2696 lta->compatible = 1;
5b4a0ec0 2697
852d0037 2698 lta->pid = msg->pid;
d0b96690 2699 lttng_ht_node_init_ulong(&lta->pid_n, (unsigned long) lta->pid);
852d0037 2700 lta->sock = sock;
d0b96690 2701 lttng_ht_node_init_ulong(&lta->sock_n, (unsigned long) lta->sock);
5b4a0ec0 2702
d42f20df
DG
2703 CDS_INIT_LIST_HEAD(&lta->teardown_head);
2704
d0b96690
DG
2705error:
2706 return lta;
2707}
2708
d88aee68
DG
2709/*
2710 * For a given application object, add it to every hash table.
2711 */
d0b96690
DG
2712void ust_app_add(struct ust_app *app)
2713{
2714 assert(app);
2715 assert(app->notify_sock >= 0);
2716
5b4a0ec0 2717 rcu_read_lock();
852d0037
DG
2718
2719 /*
2720 * On a re-registration, we want to kick out the previous registration of
2721 * that pid
2722 */
d0b96690 2723 lttng_ht_add_replace_ulong(ust_app_ht, &app->pid_n);
852d0037
DG
2724
2725 /*
2726 * The socket _should_ be unique until _we_ call close. So, a add_unique
2727 * for the ust_app_ht_by_sock is used which asserts fail if the entry was
2728 * already in the table.
2729 */
d0b96690 2730 lttng_ht_add_unique_ulong(ust_app_ht_by_sock, &app->sock_n);
852d0037 2731
d0b96690
DG
2732 /* Add application to the notify socket hash table. */
2733 lttng_ht_node_init_ulong(&app->notify_sock_n, app->notify_sock);
2734 lttng_ht_add_unique_ulong(ust_app_ht_by_notify_sock, &app->notify_sock_n);
5b4a0ec0 2735
d0b96690 2736 DBG("App registered with pid:%d ppid:%d uid:%d gid:%d sock:%d name:%s "
d88aee68
DG
2737 "notify_sock:%d (version %d.%d)", app->pid, app->ppid, app->uid,
2738 app->gid, app->sock, app->name, app->notify_sock, app->v_major,
2739 app->v_minor);
5b4a0ec0 2740
d0b96690
DG
2741 rcu_read_unlock();
2742}
2743
d88aee68
DG
2744/*
2745 * Set the application version into the object.
2746 *
2747 * Return 0 on success else a negative value either an errno code or a
2748 * LTTng-UST error code.
2749 */
d0b96690
DG
2750int ust_app_version(struct ust_app *app)
2751{
d88aee68
DG
2752 int ret;
2753
d0b96690 2754 assert(app);
d88aee68
DG
2755
2756 ret = ustctl_tracer_version(app->sock, &app->version);
2757 if (ret < 0) {
2758 if (ret != -LTTNG_UST_ERR_EXITING && ret != -EPIPE) {
2759 ERR("UST app %d verson failed with ret %d", app->sock, ret);
2760 } else {
2761 DBG3("UST app %d verion failed. Application is dead", app->sock);
2762 }
2763 }
2764
2765 return ret;
5b4a0ec0
DG
2766}
2767
2768/*
2769 * Unregister app by removing it from the global traceable app list and freeing
2770 * the data struct.
2771 *
2772 * The socket is already closed at this point so no close to sock.
2773 */
2774void ust_app_unregister(int sock)
2775{
2776 struct ust_app *lta;
bec39940
DG
2777 struct lttng_ht_node_ulong *node;
2778 struct lttng_ht_iter iter;
d42f20df 2779 struct ust_app_session *ua_sess;
525b0740 2780 int ret;
5b4a0ec0
DG
2781
2782 rcu_read_lock();
886459c6 2783
5b4a0ec0 2784 /* Get the node reference for a call_rcu */
852d0037 2785 lttng_ht_lookup(ust_app_ht_by_sock, (void *)((unsigned long) sock), &iter);
bec39940 2786 node = lttng_ht_iter_get_node_ulong(&iter);
d0b96690 2787 assert(node);
284d8f55 2788
852d0037 2789 lta = caa_container_of(node, struct ust_app, sock_n);
852d0037
DG
2790 DBG("PID %d unregistering with sock %d", lta->pid, sock);
2791
886459c6 2792 /* Remove application from PID hash table */
852d0037
DG
2793 ret = lttng_ht_del(ust_app_ht_by_sock, &iter);
2794 assert(!ret);
2795
d88aee68
DG
2796 /*
2797 * Remove application from notify hash table. The thread handling the
2798 * notify socket could have deleted the node so ignore on error because
2799 * either way it's valid. The close of that socket is handled by the other
2800 * thread.
2801 */
d0b96690 2802 iter.iter.node = &lta->notify_sock_n.node;
d88aee68 2803 (void) lttng_ht_del(ust_app_ht_by_notify_sock, &iter);
852d0037 2804
5b98a774
DG
2805 /*
2806 * Ignore return value since the node might have been removed before by an
2807 * add replace during app registration because the PID can be reassigned by
2808 * the OS.
2809 */
d0b96690 2810 iter.iter.node = &lta->pid_n.node;
bec39940 2811 ret = lttng_ht_del(ust_app_ht, &iter);
5b98a774
DG
2812 if (ret) {
2813 DBG3("Unregister app by PID %d failed. This can happen on pid reuse",
2814 lta->pid);
2815 }
852d0037 2816
d42f20df
DG
2817 /* Remove sessions so they are not visible during deletion.*/
2818 cds_lfht_for_each_entry(lta->sessions->ht, &iter.iter, ua_sess,
2819 node.node) {
7972aab2
DG
2820 struct ust_registry_session *registry;
2821
d42f20df
DG
2822 ret = lttng_ht_del(lta->sessions, &iter);
2823 if (ret) {
2824 /* The session was already removed so scheduled for teardown. */
2825 continue;
2826 }
2827
2828 /*
2829 * Add session to list for teardown. This is safe since at this point we
2830 * are the only one using this list.
2831 */
d88aee68
DG
2832 pthread_mutex_lock(&ua_sess->lock);
2833
2834 /*
2835 * Normally, this is done in the delete session process which is
2836 * executed in the call rcu below. However, upon registration we can't
2837 * afford to wait for the grace period before pushing data or else the
2838 * data pending feature can race between the unregistration and stop
2839 * command where the data pending command is sent *before* the grace
2840 * period ended.
2841 *
2842 * The close metadata below nullifies the metadata pointer in the
2843 * session so the delete session will NOT push/close a second time.
2844 */
7972aab2
DG
2845 registry = get_session_registry(ua_sess);
2846 if (registry) {
2847 /* Push metadata for application before freeing the application. */
2848 (void) push_metadata(registry, ua_sess->consumer);
2849
2850 /*
2851 * Don't ask to close metadata for global per UID buffers. Close
2852 * metadata only on destroy trace session in this case.
2853 */
2854 if (ua_sess->buffer_type != LTTNG_BUFFER_PER_UID) {
2855 /* And ask to close it for this session registry. */
2856 (void) close_metadata(registry, ua_sess->consumer);
2857 }
2858 }
d88aee68 2859
d42f20df 2860 cds_list_add(&ua_sess->teardown_node, &lta->teardown_head);
d88aee68 2861 pthread_mutex_unlock(&ua_sess->lock);
d42f20df
DG
2862 }
2863
852d0037
DG
2864 /* Free memory */
2865 call_rcu(&lta->pid_n.head, delete_ust_app_rcu);
2866
5b4a0ec0
DG
2867 rcu_read_unlock();
2868 return;
284d8f55
DG
2869}
2870
2871/*
5b4a0ec0 2872 * Return traceable_app_count
284d8f55 2873 */
5b4a0ec0 2874unsigned long ust_app_list_count(void)
284d8f55 2875{
5b4a0ec0 2876 unsigned long count;
284d8f55 2877
5b4a0ec0 2878 rcu_read_lock();
bec39940 2879 count = lttng_ht_get_count(ust_app_ht);
5b4a0ec0 2880 rcu_read_unlock();
284d8f55 2881
5b4a0ec0 2882 return count;
284d8f55
DG
2883}
2884
5b4a0ec0
DG
2885/*
2886 * Fill events array with all events name of all registered apps.
2887 */
2888int ust_app_list_events(struct lttng_event **events)
421cb601 2889{
5b4a0ec0
DG
2890 int ret, handle;
2891 size_t nbmem, count = 0;
bec39940 2892 struct lttng_ht_iter iter;
5b4a0ec0 2893 struct ust_app *app;
c617c0c6 2894 struct lttng_event *tmp_event;
421cb601 2895
5b4a0ec0 2896 nbmem = UST_APP_EVENT_LIST_SIZE;
c617c0c6
MD
2897 tmp_event = zmalloc(nbmem * sizeof(struct lttng_event));
2898 if (tmp_event == NULL) {
5b4a0ec0
DG
2899 PERROR("zmalloc ust app events");
2900 ret = -ENOMEM;
421cb601
DG
2901 goto error;
2902 }
2903
5b4a0ec0 2904 rcu_read_lock();
421cb601 2905
852d0037 2906 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
90eaa0d2 2907 struct lttng_ust_tracepoint_iter uiter;
ac3bd9c0 2908
840cb59c 2909 health_code_update();
86acf0da 2910
e0c7ec2b
DG
2911 if (!app->compatible) {
2912 /*
2913 * TODO: In time, we should notice the caller of this error by
2914 * telling him that this is a version error.
2915 */
2916 continue;
2917 }
852d0037 2918 handle = ustctl_tracepoint_list(app->sock);
5b4a0ec0 2919 if (handle < 0) {
ffe60014
DG
2920 if (handle != -EPIPE && handle != -LTTNG_UST_ERR_EXITING) {
2921 ERR("UST app list events getting handle failed for app pid %d",
2922 app->pid);
2923 }
5b4a0ec0
DG
2924 continue;
2925 }
421cb601 2926
852d0037 2927 while ((ret = ustctl_tracepoint_list_get(app->sock, handle,
fb54cdbf 2928 &uiter)) != -LTTNG_UST_ERR_NOENT) {
ffe60014
DG
2929 /* Handle ustctl error. */
2930 if (ret < 0) {
2931 free(tmp_event);
2932 if (ret != -LTTNG_UST_ERR_EXITING || ret != -EPIPE) {
2933 ERR("UST app tp list get failed for app %d with ret %d",
2934 app->sock, ret);
2935 } else {
2936 DBG3("UST app tp list get failed. Application is dead");
2937 }
2938 goto rcu_error;
2939 }
2940
840cb59c 2941 health_code_update();
815564d8 2942 if (count >= nbmem) {
d7b3776f 2943 /* In case the realloc fails, we free the memory */
c617c0c6
MD
2944 void *ptr;
2945
815564d8
MD
2946 DBG2("Reallocating event list from %zu to %zu entries", nbmem,
2947 2 * nbmem);
2948 nbmem *= 2;
c617c0c6
MD
2949 ptr = realloc(tmp_event, nbmem * sizeof(struct lttng_event));
2950 if (ptr == NULL) {
5b4a0ec0 2951 PERROR("realloc ust app events");
c617c0c6 2952 free(tmp_event);
5b4a0ec0
DG
2953 ret = -ENOMEM;
2954 goto rcu_error;
2955 }
c617c0c6 2956 tmp_event = ptr;
5b4a0ec0 2957 }
c617c0c6
MD
2958 memcpy(tmp_event[count].name, uiter.name, LTTNG_UST_SYM_NAME_LEN);
2959 tmp_event[count].loglevel = uiter.loglevel;
2960 tmp_event[count].type = (enum lttng_event_type) LTTNG_UST_TRACEPOINT;
2961 tmp_event[count].pid = app->pid;
2962 tmp_event[count].enabled = -1;
5b4a0ec0 2963 count++;
421cb601 2964 }
421cb601
DG
2965 }
2966
5b4a0ec0 2967 ret = count;
c617c0c6 2968 *events = tmp_event;
421cb601 2969
5b4a0ec0 2970 DBG2("UST app list events done (%zu events)", count);
421cb601 2971
5b4a0ec0
DG
2972rcu_error:
2973 rcu_read_unlock();
421cb601 2974error:
840cb59c 2975 health_code_update();
5b4a0ec0 2976 return ret;
421cb601
DG
2977}
2978
f37d259d
MD
2979/*
2980 * Fill events array with all events name of all registered apps.
2981 */
2982int ust_app_list_event_fields(struct lttng_event_field **fields)
2983{
2984 int ret, handle;
2985 size_t nbmem, count = 0;
2986 struct lttng_ht_iter iter;
2987 struct ust_app *app;
c617c0c6 2988 struct lttng_event_field *tmp_event;
f37d259d
MD
2989
2990 nbmem = UST_APP_EVENT_LIST_SIZE;
c617c0c6
MD
2991 tmp_event = zmalloc(nbmem * sizeof(struct lttng_event_field));
2992 if (tmp_event == NULL) {
f37d259d
MD
2993 PERROR("zmalloc ust app event fields");
2994 ret = -ENOMEM;
2995 goto error;
2996 }
2997
2998 rcu_read_lock();
2999
3000 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
3001 struct lttng_ust_field_iter uiter;
3002
840cb59c 3003 health_code_update();
86acf0da 3004
f37d259d
MD
3005 if (!app->compatible) {
3006 /*
3007 * TODO: In time, we should notice the caller of this error by
3008 * telling him that this is a version error.
3009 */
3010 continue;
3011 }
3012 handle = ustctl_tracepoint_field_list(app->sock);
3013 if (handle < 0) {
ffe60014
DG
3014 if (handle != -EPIPE && handle != -LTTNG_UST_ERR_EXITING) {
3015 ERR("UST app list field getting handle failed for app pid %d",
3016 app->pid);
3017 }
f37d259d
MD
3018 continue;
3019 }
3020
3021 while ((ret = ustctl_tracepoint_field_list_get(app->sock, handle,
fb54cdbf 3022 &uiter)) != -LTTNG_UST_ERR_NOENT) {
ffe60014
DG
3023 /* Handle ustctl error. */
3024 if (ret < 0) {
3025 free(tmp_event);
3026 if (ret != -LTTNG_UST_ERR_EXITING || ret != -EPIPE) {
3027 ERR("UST app tp list field failed for app %d with ret %d",
3028 app->sock, ret);
3029 } else {
3030 DBG3("UST app tp list field failed. Application is dead");
3031 }
3032 goto rcu_error;
3033 }
3034
840cb59c 3035 health_code_update();
f37d259d 3036 if (count >= nbmem) {
d7b3776f 3037 /* In case the realloc fails, we free the memory */
c617c0c6
MD
3038 void *ptr;
3039
f37d259d
MD
3040 DBG2("Reallocating event field list from %zu to %zu entries", nbmem,
3041 2 * nbmem);
3042 nbmem *= 2;
c617c0c6
MD
3043 ptr = realloc(tmp_event, nbmem * sizeof(struct lttng_event_field));
3044 if (ptr == NULL) {
f37d259d 3045 PERROR("realloc ust app event fields");
c617c0c6 3046 free(tmp_event);
f37d259d
MD
3047 ret = -ENOMEM;
3048 goto rcu_error;
3049 }
c617c0c6 3050 tmp_event = ptr;
f37d259d 3051 }
f37d259d 3052
c617c0c6
MD
3053 memcpy(tmp_event[count].field_name, uiter.field_name, LTTNG_UST_SYM_NAME_LEN);
3054 tmp_event[count].type = uiter.type;
3055 tmp_event[count].nowrite = uiter.nowrite;
f37d259d 3056
c617c0c6
MD
3057 memcpy(tmp_event[count].event.name, uiter.event_name, LTTNG_UST_SYM_NAME_LEN);
3058 tmp_event[count].event.loglevel = uiter.loglevel;
3059 tmp_event[count].event.type = LTTNG_UST_TRACEPOINT;
3060 tmp_event[count].event.pid = app->pid;
3061 tmp_event[count].event.enabled = -1;
f37d259d
MD
3062 count++;
3063 }
3064 }
3065
3066 ret = count;
c617c0c6 3067 *fields = tmp_event;
f37d259d
MD
3068
3069 DBG2("UST app list event fields done (%zu events)", count);
3070
3071rcu_error:
3072 rcu_read_unlock();
3073error:
840cb59c 3074 health_code_update();
f37d259d
MD
3075 return ret;
3076}
3077
5b4a0ec0
DG
3078/*
3079 * Free and clean all traceable apps of the global list.
36b588ed
MD
3080 *
3081 * Should _NOT_ be called with RCU read-side lock held.
5b4a0ec0
DG
3082 */
3083void ust_app_clean_list(void)
421cb601 3084{
5b4a0ec0 3085 int ret;
659ed79f 3086 struct ust_app *app;
bec39940 3087 struct lttng_ht_iter iter;
421cb601 3088
5b4a0ec0 3089 DBG2("UST app cleaning registered apps hash table");
421cb601 3090
5b4a0ec0 3091 rcu_read_lock();
421cb601 3092
659ed79f 3093 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
bec39940 3094 ret = lttng_ht_del(ust_app_ht, &iter);
525b0740 3095 assert(!ret);
659ed79f 3096 call_rcu(&app->pid_n.head, delete_ust_app_rcu);
421cb601
DG
3097 }
3098
852d0037 3099 /* Cleanup socket hash table */
659ed79f
DG
3100 cds_lfht_for_each_entry(ust_app_ht_by_sock->ht, &iter.iter, app,
3101 sock_n.node) {
852d0037 3102 ret = lttng_ht_del(ust_app_ht_by_sock, &iter);
bec39940
DG
3103 assert(!ret);
3104 }
852d0037 3105
d88aee68
DG
3106 /* Cleanup notify socket hash table */
3107 cds_lfht_for_each_entry(ust_app_ht_by_notify_sock->ht, &iter.iter, app,
3108 notify_sock_n.node) {
3109 ret = lttng_ht_del(ust_app_ht_by_notify_sock, &iter);
3110 assert(!ret);
3111 }
36b588ed 3112 rcu_read_unlock();
d88aee68 3113
bec39940 3114 /* Destroy is done only when the ht is empty */
852d0037
DG
3115 lttng_ht_destroy(ust_app_ht);
3116 lttng_ht_destroy(ust_app_ht_by_sock);
d88aee68 3117 lttng_ht_destroy(ust_app_ht_by_notify_sock);
5b4a0ec0
DG
3118}
3119
3120/*
3121 * Init UST app hash table.
3122 */
3123void ust_app_ht_alloc(void)
3124{
bec39940 3125 ust_app_ht = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
852d0037 3126 ust_app_ht_by_sock = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
d0b96690 3127 ust_app_ht_by_notify_sock = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
421cb601
DG
3128}
3129
78f0bacd
DG
3130/*
3131 * For a specific UST session, disable the channel for all registered apps.
3132 */
35a9059d 3133int ust_app_disable_channel_glb(struct ltt_ust_session *usess,
78f0bacd
DG
3134 struct ltt_ust_channel *uchan)
3135{
3136 int ret = 0;
bec39940
DG
3137 struct lttng_ht_iter iter;
3138 struct lttng_ht_node_str *ua_chan_node;
78f0bacd
DG
3139 struct ust_app *app;
3140 struct ust_app_session *ua_sess;
8535a6d9 3141 struct ust_app_channel *ua_chan;
78f0bacd
DG
3142
3143 if (usess == NULL || uchan == NULL) {
3144 ERR("Disabling UST global channel with NULL values");
3145 ret = -1;
3146 goto error;
3147 }
3148
a991f516
MD
3149 DBG2("UST app disabling channel %s from global domain for session id %d",
3150 uchan->name, usess->id);
78f0bacd
DG
3151
3152 rcu_read_lock();
3153
3154 /* For every registered applications */
852d0037 3155 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
bec39940 3156 struct lttng_ht_iter uiter;
e0c7ec2b
DG
3157 if (!app->compatible) {
3158 /*
3159 * TODO: In time, we should notice the caller of this error by
3160 * telling him that this is a version error.
3161 */
3162 continue;
3163 }
78f0bacd
DG
3164 ua_sess = lookup_session_by_app(usess, app);
3165 if (ua_sess == NULL) {
3166 continue;
3167 }
3168
8535a6d9 3169 /* Get channel */
bec39940
DG
3170 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &uiter);
3171 ua_chan_node = lttng_ht_iter_get_node_str(&uiter);
8535a6d9
DG
3172 /* If the session if found for the app, the channel must be there */
3173 assert(ua_chan_node);
3174
3175 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node);
3176 /* The channel must not be already disabled */
3177 assert(ua_chan->enabled == 1);
3178
3179 /* Disable channel onto application */
3180 ret = disable_ust_app_channel(ua_sess, ua_chan, app);
78f0bacd
DG
3181 if (ret < 0) {
3182 /* XXX: We might want to report this error at some point... */
3183 continue;
3184 }
3185 }
3186
3187 rcu_read_unlock();
3188
3189error:
3190 return ret;
3191}
3192
3193/*
3194 * For a specific UST session, enable the channel for all registered apps.
3195 */
35a9059d 3196int ust_app_enable_channel_glb(struct ltt_ust_session *usess,
78f0bacd
DG
3197 struct ltt_ust_channel *uchan)
3198{
3199 int ret = 0;
bec39940 3200 struct lttng_ht_iter iter;
78f0bacd
DG
3201 struct ust_app *app;
3202 struct ust_app_session *ua_sess;
3203
3204 if (usess == NULL || uchan == NULL) {
3205 ERR("Adding UST global channel to NULL values");
3206 ret = -1;
3207 goto error;
3208 }
3209
a991f516
MD
3210 DBG2("UST app enabling channel %s to global domain for session id %d",
3211 uchan->name, usess->id);
78f0bacd
DG
3212
3213 rcu_read_lock();
3214
3215 /* For every registered applications */
852d0037 3216 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
e0c7ec2b
DG
3217 if (!app->compatible) {
3218 /*
3219 * TODO: In time, we should notice the caller of this error by
3220 * telling him that this is a version error.
3221 */
3222 continue;
3223 }
78f0bacd
DG
3224 ua_sess = lookup_session_by_app(usess, app);
3225 if (ua_sess == NULL) {
3226 continue;
3227 }
3228
3229 /* Enable channel onto application */
3230 ret = enable_ust_app_channel(ua_sess, uchan, app);
3231 if (ret < 0) {
3232 /* XXX: We might want to report this error at some point... */
3233 continue;
3234 }
3235 }
3236
3237 rcu_read_unlock();
3238
3239error:
3240 return ret;
3241}
3242
b0a40d28
DG
3243/*
3244 * Disable an event in a channel and for a specific session.
3245 */
35a9059d
DG
3246int ust_app_disable_event_glb(struct ltt_ust_session *usess,
3247 struct ltt_ust_channel *uchan, struct ltt_ust_event *uevent)
b0a40d28
DG
3248{
3249 int ret = 0;
bec39940
DG
3250 struct lttng_ht_iter iter, uiter;
3251 struct lttng_ht_node_str *ua_chan_node, *ua_event_node;
b0a40d28
DG
3252 struct ust_app *app;
3253 struct ust_app_session *ua_sess;
3254 struct ust_app_channel *ua_chan;
3255 struct ust_app_event *ua_event;
3256
3257 DBG("UST app disabling event %s for all apps in channel "
a991f516 3258 "%s for session id %d", uevent->attr.name, uchan->name, usess->id);
b0a40d28
DG
3259
3260 rcu_read_lock();
3261
3262 /* For all registered applications */
852d0037 3263 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
e0c7ec2b
DG
3264 if (!app->compatible) {
3265 /*
3266 * TODO: In time, we should notice the caller of this error by
3267 * telling him that this is a version error.
3268 */
3269 continue;
3270 }
b0a40d28
DG
3271 ua_sess = lookup_session_by_app(usess, app);
3272 if (ua_sess == NULL) {
3273 /* Next app */
3274 continue;
3275 }
3276
3277 /* Lookup channel in the ust app session */
bec39940
DG
3278 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &uiter);
3279 ua_chan_node = lttng_ht_iter_get_node_str(&uiter);
b0a40d28 3280 if (ua_chan_node == NULL) {
a991f516 3281 DBG2("Channel %s not found in session id %d for app pid %d."
852d0037 3282 "Skipping", uchan->name, usess->id, app->pid);
b0a40d28
DG
3283 continue;
3284 }
3285 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node);
3286
bec39940
DG
3287 lttng_ht_lookup(ua_chan->events, (void *)uevent->attr.name, &uiter);
3288 ua_event_node = lttng_ht_iter_get_node_str(&uiter);
b0a40d28
DG
3289 if (ua_event_node == NULL) {
3290 DBG2("Event %s not found in channel %s for app pid %d."
852d0037 3291 "Skipping", uevent->attr.name, uchan->name, app->pid);
b0a40d28
DG
3292 continue;
3293 }
3294 ua_event = caa_container_of(ua_event_node, struct ust_app_event, node);
3295
7f79d3a1 3296 ret = disable_ust_app_event(ua_sess, ua_event, app);
b0a40d28
DG
3297 if (ret < 0) {
3298 /* XXX: Report error someday... */
3299 continue;
3300 }
3301 }
3302
3303 rcu_read_unlock();
3304
3305 return ret;
3306}
3307
9730260e 3308/*
edb67388 3309 * For a specific UST session and UST channel, the event for all
9730260e
DG
3310 * registered apps.
3311 */
35a9059d 3312int ust_app_disable_all_event_glb(struct ltt_ust_session *usess,
9730260e
DG
3313 struct ltt_ust_channel *uchan)
3314{
3315 int ret = 0;
bec39940
DG
3316 struct lttng_ht_iter iter, uiter;
3317 struct lttng_ht_node_str *ua_chan_node;
9730260e
DG
3318 struct ust_app *app;
3319 struct ust_app_session *ua_sess;
3320 struct ust_app_channel *ua_chan;
3321 struct ust_app_event *ua_event;
3322
3323 DBG("UST app disabling all event for all apps in channel "
a991f516 3324 "%s for session id %d", uchan->name, usess->id);
9730260e
DG
3325
3326 rcu_read_lock();
3327
3328 /* For all registered applications */
852d0037 3329 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
e0c7ec2b
DG
3330 if (!app->compatible) {
3331 /*
3332 * TODO: In time, we should notice the caller of this error by
3333 * telling him that this is a version error.
3334 */
3335 continue;
3336 }
9730260e 3337 ua_sess = lookup_session_by_app(usess, app);
c4a1715b
DG
3338 if (!ua_sess) {
3339 /* The application has problem or is probably dead. */
3340 continue;
3341 }
9730260e
DG
3342
3343 /* Lookup channel in the ust app session */
bec39940
DG
3344 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &uiter);
3345 ua_chan_node = lttng_ht_iter_get_node_str(&uiter);
edb67388
DG
3346 /* If the channel is not found, there is a code flow error */
3347 assert(ua_chan_node);
3348
9730260e
DG
3349 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node);
3350
3351 /* Disable each events of channel */
bec39940
DG
3352 cds_lfht_for_each_entry(ua_chan->events->ht, &uiter.iter, ua_event,
3353 node.node) {
7f79d3a1 3354 ret = disable_ust_app_event(ua_sess, ua_event, app);
9730260e
DG
3355 if (ret < 0) {
3356 /* XXX: Report error someday... */
3357 continue;
3358 }
3359 }
3360 }
3361
3362 rcu_read_unlock();
3363
3364 return ret;
3365}
3366
421cb601 3367/*
5b4a0ec0 3368 * For a specific UST session, create the channel for all registered apps.
421cb601 3369 */
35a9059d 3370int ust_app_create_channel_glb(struct ltt_ust_session *usess,
48842b30
DG
3371 struct ltt_ust_channel *uchan)
3372{
3d8ca23b 3373 int ret = 0, created;
bec39940 3374 struct lttng_ht_iter iter;
48842b30 3375 struct ust_app *app;
3d8ca23b 3376 struct ust_app_session *ua_sess = NULL;
48842b30 3377
fc34caaa
DG
3378 /* Very wrong code flow */
3379 assert(usess);
3380 assert(uchan);
421cb601 3381
7972aab2 3382 DBG2("UST app adding channel %s to UST domain for session id %d",
a991f516 3383 uchan->name, usess->id);
48842b30
DG
3384
3385 rcu_read_lock();
421cb601 3386
5b4a0ec0 3387 /* For every registered applications */
852d0037 3388 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
e0c7ec2b
DG
3389 if (!app->compatible) {
3390 /*
3391 * TODO: In time, we should notice the caller of this error by
3392 * telling him that this is a version error.
3393 */
3394 continue;
3395 }
edb67388
DG
3396 /*
3397 * Create session on the tracer side and add it to app session HT. Note
3398 * that if session exist, it will simply return a pointer to the ust
3399 * app session.
3400 */
3d8ca23b
DG
3401 ret = create_ust_app_session(usess, app, &ua_sess, &created);
3402 if (ret < 0) {
3403 switch (ret) {
3404 case -ENOTCONN:
3405 /*
3406 * The application's socket is not valid. Either a bad socket
3407 * or a timeout on it. We can't inform the caller that for a
3408 * specific app, the session failed so lets continue here.
3409 */
3410 continue;
3411 case -ENOMEM:
3412 default:
3413 goto error_rcu_unlock;
3414 }
48842b30 3415 }
3d8ca23b 3416 assert(ua_sess);
48842b30 3417
d0b96690 3418 pthread_mutex_lock(&ua_sess->lock);
d65d2de8
DG
3419 if (!strncmp(uchan->name, DEFAULT_METADATA_NAME,
3420 sizeof(uchan->name))) {
3421 struct ustctl_consumer_channel_attr attr;
3422 copy_channel_attr_to_ustctl(&attr, &uchan->attr);
3423 ret = create_ust_app_metadata(ua_sess, app, usess->consumer,
3424 &attr);
3425 } else {
3426 /* Create channel onto application. We don't need the chan ref. */
3427 ret = create_ust_app_channel(ua_sess, uchan, app,
3428 LTTNG_UST_CHAN_PER_CPU, usess, NULL);
3429 }
d0b96690 3430 pthread_mutex_unlock(&ua_sess->lock);
3d8ca23b
DG
3431 if (ret < 0) {
3432 if (ret == -ENOMEM) {
3433 /* No more memory is a fatal error. Stop right now. */
3434 goto error_rcu_unlock;
3435 }
3436 /* Cleanup the created session if it's the case. */
3437 if (created) {
d0b96690 3438 destroy_app_session(app, ua_sess);
3d8ca23b 3439 }
48842b30 3440 }
48842b30 3441 }
5b4a0ec0 3442
95e047ff 3443error_rcu_unlock:
48842b30 3444 rcu_read_unlock();
3c14c33f 3445 return ret;
48842b30
DG
3446}
3447
5b4a0ec0 3448/*
edb67388 3449 * Enable event for a specific session and channel on the tracer.
5b4a0ec0 3450 */
35a9059d 3451int ust_app_enable_event_glb(struct ltt_ust_session *usess,
48842b30
DG
3452 struct ltt_ust_channel *uchan, struct ltt_ust_event *uevent)
3453{
3454 int ret = 0;
bec39940 3455 struct lttng_ht_iter iter, uiter;
18eace3b 3456 struct lttng_ht_node_str *ua_chan_node;
48842b30
DG
3457 struct ust_app *app;
3458 struct ust_app_session *ua_sess;
3459 struct ust_app_channel *ua_chan;
3460 struct ust_app_event *ua_event;
48842b30 3461
a991f516
MD
3462 DBG("UST app enabling event %s for all apps for session id %d",
3463 uevent->attr.name, usess->id);
48842b30 3464
edb67388
DG
3465 /*
3466 * NOTE: At this point, this function is called only if the session and
3467 * channel passed are already created for all apps. and enabled on the
3468 * tracer also.
3469 */
3470
48842b30 3471 rcu_read_lock();
421cb601
DG
3472
3473 /* For all registered applications */
852d0037 3474 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
e0c7ec2b
DG
3475 if (!app->compatible) {
3476 /*
3477 * TODO: In time, we should notice the caller of this error by
3478 * telling him that this is a version error.
3479 */
3480 continue;
3481 }
edb67388 3482 ua_sess = lookup_session_by_app(usess, app);
c4a1715b
DG
3483 if (!ua_sess) {
3484 /* The application has problem or is probably dead. */
3485 continue;
3486 }
ba767faf 3487
d0b96690
DG
3488 pthread_mutex_lock(&ua_sess->lock);
3489
edb67388 3490 /* Lookup channel in the ust app session */
bec39940
DG
3491 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &uiter);
3492 ua_chan_node = lttng_ht_iter_get_node_str(&uiter);
edb67388
DG
3493 /* If the channel is not found, there is a code flow error */
3494 assert(ua_chan_node);
3495
3496 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node);
3497
18eace3b
DG
3498 /* Get event node */
3499 ua_event = find_ust_app_event(ua_chan->events, uevent->attr.name,
3500 uevent->filter, uevent->attr.loglevel);
3501 if (ua_event == NULL) {
7f79d3a1 3502 DBG3("UST app enable event %s not found for app PID %d."
852d0037 3503 "Skipping app", uevent->attr.name, app->pid);
d0b96690 3504 goto next_app;
35a9059d 3505 }
35a9059d
DG
3506
3507 ret = enable_ust_app_event(ua_sess, ua_event, app);
3508 if (ret < 0) {
d0b96690 3509 pthread_mutex_unlock(&ua_sess->lock);
7f79d3a1 3510 goto error;
48842b30 3511 }
d0b96690
DG
3512 next_app:
3513 pthread_mutex_unlock(&ua_sess->lock);
edb67388
DG
3514 }
3515
7f79d3a1 3516error:
edb67388 3517 rcu_read_unlock();
edb67388
DG
3518 return ret;
3519}
3520
3521/*
3522 * For a specific existing UST session and UST channel, creates the event for
3523 * all registered apps.
3524 */
35a9059d 3525int ust_app_create_event_glb(struct ltt_ust_session *usess,
edb67388
DG
3526 struct ltt_ust_channel *uchan, struct ltt_ust_event *uevent)
3527{
3528 int ret = 0;
bec39940
DG
3529 struct lttng_ht_iter iter, uiter;
3530 struct lttng_ht_node_str *ua_chan_node;
edb67388
DG
3531 struct ust_app *app;
3532 struct ust_app_session *ua_sess;
3533 struct ust_app_channel *ua_chan;
3534
a991f516
MD
3535 DBG("UST app creating event %s for all apps for session id %d",
3536 uevent->attr.name, usess->id);
edb67388 3537
edb67388
DG
3538 rcu_read_lock();
3539
3540 /* For all registered applications */
852d0037 3541 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
e0c7ec2b
DG
3542 if (!app->compatible) {
3543 /*
3544 * TODO: In time, we should notice the caller of this error by
3545 * telling him that this is a version error.
3546 */
3547 continue;
3548 }
edb67388 3549 ua_sess = lookup_session_by_app(usess, app);
c4a1715b
DG
3550 if (!ua_sess) {
3551 /* The application has problem or is probably dead. */
3552 continue;
3553 }
48842b30 3554
d0b96690 3555 pthread_mutex_lock(&ua_sess->lock);
48842b30 3556 /* Lookup channel in the ust app session */
bec39940
DG
3557 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &uiter);
3558 ua_chan_node = lttng_ht_iter_get_node_str(&uiter);
edb67388
DG
3559 /* If the channel is not found, there is a code flow error */
3560 assert(ua_chan_node);
3561
48842b30
DG
3562 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node);
3563
edb67388 3564 ret = create_ust_app_event(ua_sess, ua_chan, uevent, app);
d0b96690 3565 pthread_mutex_unlock(&ua_sess->lock);
edb67388 3566 if (ret < 0) {
49c336c1 3567 if (ret != -LTTNG_UST_ERR_EXIST) {
fc34caaa
DG
3568 /* Possible value at this point: -ENOMEM. If so, we stop! */
3569 break;
3570 }
3571 DBG2("UST app event %s already exist on app PID %d",
852d0037 3572 uevent->attr.name, app->pid);
5b4a0ec0 3573 continue;
48842b30 3574 }
48842b30 3575 }
5b4a0ec0 3576
48842b30
DG
3577 rcu_read_unlock();
3578
3579 return ret;
3580}
3581
5b4a0ec0
DG
3582/*
3583 * Start tracing for a specific UST session and app.
3584 */
b34cbebf 3585static
421cb601 3586int ust_app_start_trace(struct ltt_ust_session *usess, struct ust_app *app)
48842b30
DG
3587{
3588 int ret = 0;
48842b30 3589 struct ust_app_session *ua_sess;
48842b30 3590
852d0037 3591 DBG("Starting tracing for ust app pid %d", app->pid);
5cf5d0e7 3592
509cbaf8
MD
3593 rcu_read_lock();
3594
e0c7ec2b
DG
3595 if (!app->compatible) {
3596 goto end;
3597 }
3598
421cb601
DG
3599 ua_sess = lookup_session_by_app(usess, app);
3600 if (ua_sess == NULL) {
d42f20df
DG
3601 /* The session is in teardown process. Ignore and continue. */
3602 goto end;
421cb601 3603 }
48842b30 3604
d0b96690
DG
3605 pthread_mutex_lock(&ua_sess->lock);
3606
aea829b3
DG
3607 /* Upon restart, we skip the setup, already done */
3608 if (ua_sess->started) {
8be98f9a 3609 goto skip_setup;
aea829b3 3610 }
8be98f9a 3611
a4b92340
DG
3612 /* Create directories if consumer is LOCAL and has a path defined. */
3613 if (usess->consumer->type == CONSUMER_DST_LOCAL &&
3614 strlen(usess->consumer->dst.trace_path) > 0) {
3615 ret = run_as_mkdir_recursive(usess->consumer->dst.trace_path,
7972aab2 3616 S_IRWXU | S_IRWXG, ua_sess->euid, ua_sess->egid);
a4b92340
DG
3617 if (ret < 0) {
3618 if (ret != -EEXIST) {
3619 ERR("Trace directory creation error");
d0b96690 3620 goto error_unlock;
421cb601 3621 }
173af62f 3622 }
7753dea8 3623 }
aea829b3 3624
d65d2de8
DG
3625 /*
3626 * Create the metadata for the application. This returns gracefully if a
3627 * metadata was already set for the session.
3628 */
3629 ret = create_ust_app_metadata(ua_sess, app, usess->consumer, NULL);
421cb601 3630 if (ret < 0) {
d0b96690 3631 goto error_unlock;
421cb601 3632 }
48842b30 3633
840cb59c 3634 health_code_update();
86acf0da 3635
8be98f9a 3636skip_setup:
421cb601 3637 /* This start the UST tracing */
852d0037 3638 ret = ustctl_start_session(app->sock, ua_sess->handle);
421cb601 3639 if (ret < 0) {
ffe60014
DG
3640 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
3641 ERR("Error starting tracing for app pid: %d (ret: %d)",
3642 app->pid, ret);
3643 } else {
3644 DBG("UST app start session failed. Application is dead.");
3645 }
d0b96690 3646 goto error_unlock;
421cb601 3647 }
5b4a0ec0 3648
55c3953d
DG
3649 /* Indicate that the session has been started once */
3650 ua_sess->started = 1;
3651
d0b96690
DG
3652 pthread_mutex_unlock(&ua_sess->lock);
3653
840cb59c 3654 health_code_update();
86acf0da 3655
421cb601 3656 /* Quiescent wait after starting trace */
ffe60014
DG
3657 ret = ustctl_wait_quiescent(app->sock);
3658 if (ret < 0 && ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
3659 ERR("UST app wait quiescent failed for app pid %d ret %d",
3660 app->pid, ret);
3661 }
48842b30 3662
e0c7ec2b
DG
3663end:
3664 rcu_read_unlock();
840cb59c 3665 health_code_update();
421cb601 3666 return 0;
48842b30 3667
d0b96690
DG
3668error_unlock:
3669 pthread_mutex_unlock(&ua_sess->lock);
509cbaf8 3670 rcu_read_unlock();
840cb59c 3671 health_code_update();
421cb601
DG
3672 return -1;
3673}
48842b30 3674
8be98f9a
MD
3675/*
3676 * Stop tracing for a specific UST session and app.
3677 */
b34cbebf 3678static
8be98f9a
MD
3679int ust_app_stop_trace(struct ltt_ust_session *usess, struct ust_app *app)
3680{
3681 int ret = 0;
3682 struct ust_app_session *ua_sess;
7972aab2 3683 struct ust_registry_session *registry;
8be98f9a 3684
852d0037 3685 DBG("Stopping tracing for ust app pid %d", app->pid);
8be98f9a
MD
3686
3687 rcu_read_lock();
3688
e0c7ec2b 3689 if (!app->compatible) {
d88aee68 3690 goto end_no_session;
e0c7ec2b
DG
3691 }
3692
8be98f9a
MD
3693 ua_sess = lookup_session_by_app(usess, app);
3694 if (ua_sess == NULL) {
d88aee68 3695 goto end_no_session;
8be98f9a
MD
3696 }
3697
d88aee68
DG
3698 pthread_mutex_lock(&ua_sess->lock);
3699
9bc07046
DG
3700 /*
3701 * If started = 0, it means that stop trace has been called for a session
c45536e1
DG
3702 * that was never started. It's possible since we can have a fail start
3703 * from either the application manager thread or the command thread. Simply
3704 * indicate that this is a stop error.
9bc07046 3705 */
f9dfc3d9 3706 if (!ua_sess->started) {
c45536e1
DG
3707 goto error_rcu_unlock;
3708 }
7db205b5 3709
840cb59c 3710 health_code_update();
86acf0da 3711
9d6c7d3f 3712 /* This inhibits UST tracing */
852d0037 3713 ret = ustctl_stop_session(app->sock, ua_sess->handle);
9d6c7d3f 3714 if (ret < 0) {
ffe60014
DG
3715 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
3716 ERR("Error stopping tracing for app pid: %d (ret: %d)",
3717 app->pid, ret);
3718 } else {
3719 DBG("UST app stop session failed. Application is dead.");
3720 }
9d6c7d3f
DG
3721 goto error_rcu_unlock;
3722 }
3723
840cb59c 3724 health_code_update();
86acf0da 3725
9d6c7d3f 3726 /* Quiescent wait after stopping trace */
ffe60014
DG
3727 ret = ustctl_wait_quiescent(app->sock);
3728 if (ret < 0 && ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
3729 ERR("UST app wait quiescent failed for app pid %d ret %d",
3730 app->pid, ret);
3731 }
9d6c7d3f 3732
840cb59c 3733 health_code_update();
86acf0da 3734
b34cbebf
MD
3735 registry = get_session_registry(ua_sess);
3736 assert(registry);
3737 /* Push metadata for application before freeing the application. */
3738 (void) push_metadata(registry, ua_sess->consumer);
3739
3740 pthread_mutex_unlock(&ua_sess->lock);
3741end_no_session:
3742 rcu_read_unlock();
3743 health_code_update();
3744 return 0;
3745
3746error_rcu_unlock:
3747 pthread_mutex_unlock(&ua_sess->lock);
3748 rcu_read_unlock();
3749 health_code_update();
3750 return -1;
3751}
3752
3753/*
3754 * Flush buffers for a specific UST session and app.
3755 */
3756static
3757int ust_app_flush_trace(struct ltt_ust_session *usess, struct ust_app *app)
3758{
3759 int ret = 0;
3760 struct lttng_ht_iter iter;
3761 struct ust_app_session *ua_sess;
3762 struct ust_app_channel *ua_chan;
3763
3764 DBG("Flushing buffers for ust app pid %d", app->pid);
3765
3766 rcu_read_lock();
3767
3768 if (!app->compatible) {
3769 goto end_no_session;
3770 }
3771
3772 ua_sess = lookup_session_by_app(usess, app);
3773 if (ua_sess == NULL) {
3774 goto end_no_session;
3775 }
3776
3777 pthread_mutex_lock(&ua_sess->lock);
3778
3779 health_code_update();
3780
9d6c7d3f 3781 /* Flushing buffers */
bec39940
DG
3782 cds_lfht_for_each_entry(ua_sess->channels->ht, &iter.iter, ua_chan,
3783 node.node) {
840cb59c 3784 health_code_update();
ffe60014 3785 assert(ua_chan->is_sent);
852d0037 3786 ret = ustctl_sock_flush_buffer(app->sock, ua_chan->obj);
8be98f9a 3787 if (ret < 0) {
ffe60014
DG
3788 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
3789 ERR("UST app PID %d channel %s flush failed with ret %d",
3790 app->pid, ua_chan->name, ret);
3791 } else {
3792 DBG3("UST app failed to flush %s. Application is dead.",
3793 ua_chan->name);
3794 /* No need to continue. */
d88aee68 3795 break;
ffe60014 3796 }
6d3686da
DG
3797 /* Continuing flushing all buffers */
3798 continue;
8be98f9a
MD
3799 }
3800 }
8be98f9a 3801
840cb59c 3802 health_code_update();
86acf0da 3803
d88aee68
DG
3804 pthread_mutex_unlock(&ua_sess->lock);
3805end_no_session:
7db205b5 3806 rcu_read_unlock();
840cb59c 3807 health_code_update();
8be98f9a 3808 return 0;
8be98f9a
MD
3809}
3810
84cd17c6
MD
3811/*
3812 * Destroy a specific UST session in apps.
3813 */
3353de95 3814static int destroy_trace(struct ltt_ust_session *usess, struct ust_app *app)
84cd17c6 3815{
ffe60014 3816 int ret;
84cd17c6 3817 struct ust_app_session *ua_sess;
bec39940
DG
3818 struct lttng_ht_iter iter;
3819 struct lttng_ht_node_ulong *node;
84cd17c6 3820
852d0037 3821 DBG("Destroy tracing for ust app pid %d", app->pid);
84cd17c6
MD
3822
3823 rcu_read_lock();
3824
e0c7ec2b
DG
3825 if (!app->compatible) {
3826 goto end;
3827 }
3828
84cd17c6 3829 __lookup_session_by_app(usess, app, &iter);
bec39940 3830 node = lttng_ht_iter_get_node_ulong(&iter);
84cd17c6 3831 if (node == NULL) {
d42f20df
DG
3832 /* Session is being or is deleted. */
3833 goto end;
84cd17c6
MD
3834 }
3835 ua_sess = caa_container_of(node, struct ust_app_session, node);
c4a1715b 3836
840cb59c 3837 health_code_update();
d0b96690 3838 destroy_app_session(app, ua_sess);
84cd17c6 3839
840cb59c 3840 health_code_update();
7db205b5 3841
84cd17c6 3842 /* Quiescent wait after stopping trace */
ffe60014
DG
3843 ret = ustctl_wait_quiescent(app->sock);
3844 if (ret < 0 && ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
3845 ERR("UST app wait quiescent failed for app pid %d ret %d",
3846 app->pid, ret);
3847 }
e0c7ec2b
DG
3848end:
3849 rcu_read_unlock();
840cb59c 3850 health_code_update();
84cd17c6 3851 return 0;
84cd17c6
MD
3852}
3853
5b4a0ec0
DG
3854/*
3855 * Start tracing for the UST session.
3856 */
421cb601
DG
3857int ust_app_start_trace_all(struct ltt_ust_session *usess)
3858{
3859 int ret = 0;
bec39940 3860 struct lttng_ht_iter iter;
421cb601 3861 struct ust_app *app;
48842b30 3862
421cb601
DG
3863 DBG("Starting all UST traces");
3864
3865 rcu_read_lock();
421cb601 3866
852d0037 3867 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
421cb601 3868 ret = ust_app_start_trace(usess, app);
48842b30 3869 if (ret < 0) {
5b4a0ec0
DG
3870 /* Continue to next apps even on error */
3871 continue;
48842b30 3872 }
48842b30 3873 }
5b4a0ec0 3874
48842b30
DG
3875 rcu_read_unlock();
3876
3877 return 0;
3878}
487cf67c 3879
8be98f9a
MD
3880/*
3881 * Start tracing for the UST session.
3882 */
3883int ust_app_stop_trace_all(struct ltt_ust_session *usess)
3884{
3885 int ret = 0;
bec39940 3886 struct lttng_ht_iter iter;
8be98f9a
MD
3887 struct ust_app *app;
3888
3889 DBG("Stopping all UST traces");
3890
3891 rcu_read_lock();
3892
b34cbebf
MD
3893 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
3894 ret = ust_app_stop_trace(usess, app);
3895 if (ret < 0) {
3896 /* Continue to next apps even on error */
3897 continue;
3898 }
3899 }
3900
3901 /* Flush buffers */
3902 switch (usess->buffer_type) {
3903 case LTTNG_BUFFER_PER_UID:
3904 {
7972aab2 3905 struct buffer_reg_uid *reg;
b34cbebf
MD
3906
3907 /* Flush all per UID buffers associated to that session. */
7972aab2
DG
3908 cds_list_for_each_entry(reg, &usess->buffer_reg_uid_list, lnode) {
3909 struct buffer_reg_channel *reg_chan;
3910 struct consumer_socket *socket;
3911
3912 /* Get consumer socket to use to push the metadata.*/
3913 socket = consumer_find_socket_by_bitness(reg->bits_per_long,
3914 usess->consumer);
3915 if (!socket) {
3916 /* Ignore request if no consumer is found for the session. */
3917 continue;
3918 }
3919
3920 cds_lfht_for_each_entry(reg->registry->channels->ht, &iter.iter,
3921 reg_chan, node.node) {
3922 /*
3923 * The following call will print error values so the return
3924 * code is of little importance because whatever happens, we
3925 * have to try them all.
3926 */
3927 (void) consumer_flush_channel(socket, reg_chan->consumer_key);
3928 }
3929 }
b34cbebf 3930 break;
7972aab2 3931 }
b34cbebf
MD
3932 case LTTNG_BUFFER_PER_PID:
3933 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
3934 ret = ust_app_flush_trace(usess, app);
3935 if (ret < 0) {
3936 /* Continue to next apps even on error */
3937 continue;
3938 }
8be98f9a 3939 }
b34cbebf
MD
3940 break;
3941 default:
3942 assert(0);
3943 break;
8be98f9a
MD
3944 }
3945
3946 rcu_read_unlock();
3947
3948 return 0;
3949}
3950
84cd17c6
MD
3951/*
3952 * Destroy app UST session.
3953 */
3954int ust_app_destroy_trace_all(struct ltt_ust_session *usess)
3955{
3956 int ret = 0;
bec39940 3957 struct lttng_ht_iter iter;
84cd17c6
MD
3958 struct ust_app *app;
3959
3960 DBG("Destroy all UST traces");
3961
3962 rcu_read_lock();
3963
852d0037 3964 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
3353de95 3965 ret = destroy_trace(usess, app);
84cd17c6
MD
3966 if (ret < 0) {
3967 /* Continue to next apps even on error */
3968 continue;
3969 }
3970 }
3971
3972 rcu_read_unlock();
3973
3974 return 0;
3975}
3976
5b4a0ec0
DG
3977/*
3978 * Add channels/events from UST global domain to registered apps at sock.
3979 */
487cf67c
DG
3980void ust_app_global_update(struct ltt_ust_session *usess, int sock)
3981{
55c54cce 3982 int ret = 0;
727d5404 3983 struct lttng_ht_iter iter, uiter, iter_ctx;
487cf67c 3984 struct ust_app *app;
3d8ca23b 3985 struct ust_app_session *ua_sess = NULL;
487cf67c
DG
3986 struct ust_app_channel *ua_chan;
3987 struct ust_app_event *ua_event;
727d5404 3988 struct ust_app_ctx *ua_ctx;
1f3580c7 3989
95e047ff 3990 assert(usess);
ffe60014 3991 assert(sock >= 0);
1f3580c7 3992
a991f516
MD
3993 DBG2("UST app global update for app sock %d for session id %d", sock,
3994 usess->id);
487cf67c 3995
284d8f55
DG
3996 rcu_read_lock();
3997
487cf67c
DG
3998 app = find_app_by_sock(sock);
3999 if (app == NULL) {
d88aee68
DG
4000 /*
4001 * Application can be unregistered before so this is possible hence
4002 * simply stopping the update.
4003 */
4004 DBG3("UST app update failed to find app sock %d", sock);
487cf67c
DG
4005 goto error;
4006 }
4007
e0c7ec2b
DG
4008 if (!app->compatible) {
4009 goto error;
4010 }
4011
3d8ca23b
DG
4012 ret = create_ust_app_session(usess, app, &ua_sess, NULL);
4013 if (ret < 0) {
4014 /* Tracer is probably gone or ENOMEM. */
487cf67c
DG
4015 goto error;
4016 }
3d8ca23b 4017 assert(ua_sess);
487cf67c 4018
d0b96690
DG
4019 pthread_mutex_lock(&ua_sess->lock);
4020
284d8f55 4021 /*
d0b96690 4022 * We can iterate safely here over all UST app session since the create ust
284d8f55
DG
4023 * app session above made a shadow copy of the UST global domain from the
4024 * ltt ust session.
4025 */
bec39940
DG
4026 cds_lfht_for_each_entry(ua_sess->channels->ht, &iter.iter, ua_chan,
4027 node.node) {
d65d2de8
DG
4028 /*
4029 * For a metadata channel, handle it differently.
4030 */
4031 if (!strncmp(ua_chan->name, DEFAULT_METADATA_NAME,
4032 sizeof(ua_chan->name))) {
4033 ret = create_ust_app_metadata(ua_sess, app, usess->consumer,
4034 &ua_chan->attr);
c7a339aa
DG
4035 if (ret < 0) {
4036 goto error_unlock;
4037 }
d65d2de8
DG
4038 /* Remove it from the hash table and continue!. */
4039 ret = lttng_ht_del(ua_sess->channels, &iter);
4040 assert(!ret);
4041 delete_ust_app_channel(-1, ua_chan, app);
4042 continue;
4043 } else {
4044 ret = do_create_channel(app, usess, ua_sess, ua_chan);
c7a339aa
DG
4045 if (ret < 0) {
4046 /*
4047 * Stop everything. On error, the application failed, no more
4048 * file descriptor are available or ENOMEM so stopping here is
4049 * the only thing we can do for now.
4050 */
4051 goto error_unlock;
4052 }
487cf67c
DG
4053 }
4054
727d5404
DG
4055 cds_lfht_for_each_entry(ua_chan->ctx->ht, &iter_ctx.iter, ua_ctx,
4056 node.node) {
4057 ret = create_ust_channel_context(ua_chan, ua_ctx, app);
4058 if (ret < 0) {
d0b96690 4059 goto error_unlock;
727d5404
DG
4060 }
4061 }
4062
4063
284d8f55 4064 /* For each events */
bec39940
DG
4065 cds_lfht_for_each_entry(ua_chan->events->ht, &uiter.iter, ua_event,
4066 node.node) {
284d8f55
DG
4067 ret = create_ust_event(app, ua_sess, ua_chan, ua_event);
4068 if (ret < 0) {
d0b96690 4069 goto error_unlock;
487cf67c 4070 }
36dc12cc 4071 }
487cf67c
DG
4072 }
4073
d0b96690
DG
4074 pthread_mutex_unlock(&ua_sess->lock);
4075
36dc12cc 4076 if (usess->start_trace) {
421cb601 4077 ret = ust_app_start_trace(usess, app);
36dc12cc 4078 if (ret < 0) {
36dc12cc
DG
4079 goto error;
4080 }
4081
852d0037 4082 DBG2("UST trace started for app pid %d", app->pid);
36dc12cc
DG
4083 }
4084
ffe60014
DG
4085 /* Everything went well at this point. */
4086 rcu_read_unlock();
4087 return;
4088
d0b96690
DG
4089error_unlock:
4090 pthread_mutex_unlock(&ua_sess->lock);
487cf67c 4091error:
ffe60014 4092 if (ua_sess) {
d0b96690 4093 destroy_app_session(app, ua_sess);
ffe60014 4094 }
487cf67c
DG
4095 rcu_read_unlock();
4096 return;
4097}
55cc08a6
DG
4098
4099/*
4100 * Add context to a specific channel for global UST domain.
4101 */
4102int ust_app_add_ctx_channel_glb(struct ltt_ust_session *usess,
4103 struct ltt_ust_channel *uchan, struct ltt_ust_context *uctx)
4104{
4105 int ret = 0;
bec39940
DG
4106 struct lttng_ht_node_str *ua_chan_node;
4107 struct lttng_ht_iter iter, uiter;
55cc08a6
DG
4108 struct ust_app_channel *ua_chan = NULL;
4109 struct ust_app_session *ua_sess;
4110 struct ust_app *app;
4111
4112 rcu_read_lock();
4113
852d0037 4114 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
e0c7ec2b
DG
4115 if (!app->compatible) {
4116 /*
4117 * TODO: In time, we should notice the caller of this error by
4118 * telling him that this is a version error.
4119 */
4120 continue;
4121 }
55cc08a6
DG
4122 ua_sess = lookup_session_by_app(usess, app);
4123 if (ua_sess == NULL) {
4124 continue;
4125 }
4126
d0b96690 4127 pthread_mutex_lock(&ua_sess->lock);
55cc08a6 4128 /* Lookup channel in the ust app session */
bec39940
DG
4129 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &uiter);
4130 ua_chan_node = lttng_ht_iter_get_node_str(&uiter);
55cc08a6 4131 if (ua_chan_node == NULL) {
d0b96690 4132 goto next_app;
55cc08a6
DG
4133 }
4134 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel,
4135 node);
55cc08a6
DG
4136 ret = create_ust_app_channel_context(ua_sess, ua_chan, &uctx->ctx, app);
4137 if (ret < 0) {
d0b96690 4138 goto next_app;
55cc08a6 4139 }
d0b96690
DG
4140 next_app:
4141 pthread_mutex_unlock(&ua_sess->lock);
55cc08a6
DG
4142 }
4143
55cc08a6
DG
4144 rcu_read_unlock();
4145 return ret;
4146}
4147
76d45b40
DG
4148/*
4149 * Enable event for a channel from a UST session for a specific PID.
4150 */
4151int ust_app_enable_event_pid(struct ltt_ust_session *usess,
4152 struct ltt_ust_channel *uchan, struct ltt_ust_event *uevent, pid_t pid)
4153{
4154 int ret = 0;
bec39940 4155 struct lttng_ht_iter iter;
18eace3b 4156 struct lttng_ht_node_str *ua_chan_node;
76d45b40
DG
4157 struct ust_app *app;
4158 struct ust_app_session *ua_sess;
4159 struct ust_app_channel *ua_chan;
4160 struct ust_app_event *ua_event;
4161
4162 DBG("UST app enabling event %s for PID %d", uevent->attr.name, pid);
4163
4164 rcu_read_lock();
4165
4166 app = ust_app_find_by_pid(pid);
4167 if (app == NULL) {
4168 ERR("UST app enable event per PID %d not found", pid);
4169 ret = -1;
d0b96690 4170 goto end;
76d45b40
DG
4171 }
4172
e0c7ec2b
DG
4173 if (!app->compatible) {
4174 ret = 0;
d0b96690 4175 goto end;
e0c7ec2b
DG
4176 }
4177
76d45b40 4178 ua_sess = lookup_session_by_app(usess, app);
c4a1715b
DG
4179 if (!ua_sess) {
4180 /* The application has problem or is probably dead. */
d0b96690
DG
4181 ret = 0;
4182 goto end;
c4a1715b 4183 }
76d45b40 4184
d0b96690 4185 pthread_mutex_lock(&ua_sess->lock);
76d45b40 4186 /* Lookup channel in the ust app session */
bec39940
DG
4187 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &iter);
4188 ua_chan_node = lttng_ht_iter_get_node_str(&iter);
76d45b40
DG
4189 /* If the channel is not found, there is a code flow error */
4190 assert(ua_chan_node);
4191
4192 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node);
4193
18eace3b
DG
4194 ua_event = find_ust_app_event(ua_chan->events, uevent->attr.name,
4195 uevent->filter, uevent->attr.loglevel);
4196 if (ua_event == NULL) {
76d45b40
DG
4197 ret = create_ust_app_event(ua_sess, ua_chan, uevent, app);
4198 if (ret < 0) {
d0b96690 4199 goto end_unlock;
76d45b40
DG
4200 }
4201 } else {
76d45b40
DG
4202 ret = enable_ust_app_event(ua_sess, ua_event, app);
4203 if (ret < 0) {
d0b96690 4204 goto end_unlock;
76d45b40
DG
4205 }
4206 }
4207
d0b96690
DG
4208end_unlock:
4209 pthread_mutex_unlock(&ua_sess->lock);
4210end:
76d45b40
DG
4211 rcu_read_unlock();
4212 return ret;
4213}
7f79d3a1
DG
4214
4215/*
4216 * Disable event for a channel from a UST session for a specific PID.
4217 */
4218int ust_app_disable_event_pid(struct ltt_ust_session *usess,
4219 struct ltt_ust_channel *uchan, struct ltt_ust_event *uevent, pid_t pid)
4220{
4221 int ret = 0;
bec39940
DG
4222 struct lttng_ht_iter iter;
4223 struct lttng_ht_node_str *ua_chan_node, *ua_event_node;
7f79d3a1
DG
4224 struct ust_app *app;
4225 struct ust_app_session *ua_sess;
4226 struct ust_app_channel *ua_chan;
4227 struct ust_app_event *ua_event;
4228
4229 DBG("UST app disabling event %s for PID %d", uevent->attr.name, pid);
4230
4231 rcu_read_lock();
4232
4233 app = ust_app_find_by_pid(pid);
4234 if (app == NULL) {
4235 ERR("UST app disable event per PID %d not found", pid);
4236 ret = -1;
4237 goto error;
4238 }
4239
e0c7ec2b
DG
4240 if (!app->compatible) {
4241 ret = 0;
4242 goto error;
4243 }
4244
7f79d3a1 4245 ua_sess = lookup_session_by_app(usess, app);
c4a1715b
DG
4246 if (!ua_sess) {
4247 /* The application has problem or is probably dead. */
4248 goto error;
4249 }
7f79d3a1
DG
4250
4251 /* Lookup channel in the ust app session */
bec39940
DG
4252 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &iter);
4253 ua_chan_node = lttng_ht_iter_get_node_str(&iter);
7f79d3a1
DG
4254 if (ua_chan_node == NULL) {
4255 /* Channel does not exist, skip disabling */
4256 goto error;
4257 }
4258 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node);
4259
bec39940
DG
4260 lttng_ht_lookup(ua_chan->events, (void *)uevent->attr.name, &iter);
4261 ua_event_node = lttng_ht_iter_get_node_str(&iter);
7f79d3a1
DG
4262 if (ua_event_node == NULL) {
4263 /* Event does not exist, skip disabling */
4264 goto error;
4265 }
4266 ua_event = caa_container_of(ua_event_node, struct ust_app_event, node);
4267
4268 ret = disable_ust_app_event(ua_sess, ua_event, app);
4269 if (ret < 0) {
4270 goto error;
4271 }
4272
4273error:
4274 rcu_read_unlock();
4275 return ret;
4276}
e0c7ec2b 4277
4466912f
DG
4278/*
4279 * Calibrate registered applications.
4280 */
4281int ust_app_calibrate_glb(struct lttng_ust_calibrate *calibrate)
4282{
4283 int ret = 0;
4284 struct lttng_ht_iter iter;
4285 struct ust_app *app;
4286
4287 rcu_read_lock();
4288
852d0037 4289 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
4466912f
DG
4290 if (!app->compatible) {
4291 /*
4292 * TODO: In time, we should notice the caller of this error by
4293 * telling him that this is a version error.
4294 */
4295 continue;
4296 }
4297
840cb59c 4298 health_code_update();
86acf0da 4299
852d0037 4300 ret = ustctl_calibrate(app->sock, calibrate);
4466912f
DG
4301 if (ret < 0) {
4302 switch (ret) {
4303 case -ENOSYS:
4304 /* Means that it's not implemented on the tracer side. */
4305 ret = 0;
4306 break;
4307 default:
4466912f 4308 DBG2("Calibrate app PID %d returned with error %d",
852d0037 4309 app->pid, ret);
4466912f
DG
4310 break;
4311 }
4312 }
4313 }
4314
4315 DBG("UST app global domain calibration finished");
4316
4317 rcu_read_unlock();
4318
840cb59c 4319 health_code_update();
86acf0da 4320
4466912f
DG
4321 return ret;
4322}
d0b96690
DG
4323
4324/*
4325 * Receive registration and populate the given msg structure.
4326 *
4327 * On success return 0 else a negative value returned by the ustctl call.
4328 */
4329int ust_app_recv_registration(int sock, struct ust_register_msg *msg)
4330{
4331 int ret;
4332 uint32_t pid, ppid, uid, gid;
4333
4334 assert(msg);
4335
4336 ret = ustctl_recv_reg_msg(sock, &msg->type, &msg->major, &msg->minor,
4337 &pid, &ppid, &uid, &gid,
4338 &msg->bits_per_long,
4339 &msg->uint8_t_alignment,
4340 &msg->uint16_t_alignment,
4341 &msg->uint32_t_alignment,
4342 &msg->uint64_t_alignment,
4343 &msg->long_alignment,
4344 &msg->byte_order,
4345 msg->name);
4346 if (ret < 0) {
4347 switch (-ret) {
4348 case EPIPE:
4349 case ECONNRESET:
4350 case LTTNG_UST_ERR_EXITING:
4351 DBG3("UST app recv reg message failed. Application died");
4352 break;
4353 case LTTNG_UST_ERR_UNSUP_MAJOR:
4354 ERR("UST app recv reg unsupported version %d.%d. Supporting %d.%d",
4355 msg->major, msg->minor, LTTNG_UST_ABI_MAJOR_VERSION,
4356 LTTNG_UST_ABI_MINOR_VERSION);
4357 break;
4358 default:
4359 ERR("UST app recv reg message failed with ret %d", ret);
4360 break;
4361 }
4362 goto error;
4363 }
4364 msg->pid = (pid_t) pid;
4365 msg->ppid = (pid_t) ppid;
4366 msg->uid = (uid_t) uid;
4367 msg->gid = (gid_t) gid;
4368
4369error:
4370 return ret;
4371}
4372
d88aee68
DG
4373/*
4374 * Return a ust app channel object using the application object and the channel
4375 * object descriptor has a key. If not found, NULL is returned. A RCU read side
4376 * lock MUST be acquired before calling this function.
4377 */
d0b96690
DG
4378static struct ust_app_channel *find_channel_by_objd(struct ust_app *app,
4379 int objd)
4380{
4381 struct lttng_ht_node_ulong *node;
4382 struct lttng_ht_iter iter;
4383 struct ust_app_channel *ua_chan = NULL;
4384
4385 assert(app);
4386
4387 lttng_ht_lookup(app->ust_objd, (void *)((unsigned long) objd), &iter);
4388 node = lttng_ht_iter_get_node_ulong(&iter);
4389 if (node == NULL) {
4390 DBG2("UST app channel find by objd %d not found", objd);
4391 goto error;
4392 }
4393
4394 ua_chan = caa_container_of(node, struct ust_app_channel, ust_objd_node);
4395
4396error:
4397 return ua_chan;
4398}
4399
d88aee68
DG
4400/*
4401 * Reply to a register channel notification from an application on the notify
4402 * socket. The channel metadata is also created.
4403 *
4404 * The session UST registry lock is acquired in this function.
4405 *
4406 * On success 0 is returned else a negative value.
4407 */
d0b96690
DG
4408static int reply_ust_register_channel(int sock, int sobjd, int cobjd,
4409 size_t nr_fields, struct ustctl_field *fields)
4410{
4411 int ret, ret_code = 0;
4412 uint32_t chan_id, reg_count;
7972aab2 4413 uint64_t chan_reg_key;
d0b96690
DG
4414 enum ustctl_channel_header type;
4415 struct ust_app *app;
4416 struct ust_app_channel *ua_chan;
4417 struct ust_app_session *ua_sess;
7972aab2 4418 struct ust_registry_session *registry;
45893984 4419 struct ust_registry_channel *chan_reg;
d0b96690
DG
4420
4421 rcu_read_lock();
4422
4423 /* Lookup application. If not found, there is a code flow error. */
4424 app = find_app_by_notify_sock(sock);
d88aee68
DG
4425 if (!app) {
4426 DBG("Application socket %d is being teardown. Abort event notify",
4427 sock);
4428 ret = 0;
4429 goto error_rcu_unlock;
4430 }
d0b96690
DG
4431
4432 /* Lookup channel by UST object descriptor. Should always be found. */
4433 ua_chan = find_channel_by_objd(app, cobjd);
4434 assert(ua_chan);
4435 assert(ua_chan->session);
4436 ua_sess = ua_chan->session;
d0b96690 4437
7972aab2
DG
4438 /* Get right session registry depending on the session buffer type. */
4439 registry = get_session_registry(ua_sess);
4440 assert(registry);
45893984 4441
7972aab2
DG
4442 /* Depending on the buffer type, a different channel key is used. */
4443 if (ua_sess->buffer_type == LTTNG_BUFFER_PER_UID) {
4444 chan_reg_key = ua_chan->tracing_channel_id;
d0b96690 4445 } else {
7972aab2 4446 chan_reg_key = ua_chan->key;
d0b96690
DG
4447 }
4448
7972aab2
DG
4449 pthread_mutex_lock(&registry->lock);
4450
4451 chan_reg = ust_registry_channel_find(registry, chan_reg_key);
4452 assert(chan_reg);
4453
4454 if (!chan_reg->register_done) {
4455 reg_count = ust_registry_get_event_count(chan_reg);
4456 if (reg_count < 31) {
4457 type = USTCTL_CHANNEL_HEADER_COMPACT;
4458 } else {
4459 type = USTCTL_CHANNEL_HEADER_LARGE;
4460 }
4461
4462 chan_reg->nr_ctx_fields = nr_fields;
4463 chan_reg->ctx_fields = fields;
4464 chan_reg->header_type = type;
d0b96690 4465 } else {
7972aab2
DG
4466 /* Get current already assigned values. */
4467 type = chan_reg->header_type;
d0b96690 4468 }
7972aab2
DG
4469 /* Channel id is set during the object creation. */
4470 chan_id = chan_reg->chan_id;
d0b96690
DG
4471
4472 /* Append to metadata */
7972aab2
DG
4473 if (!chan_reg->metadata_dumped) {
4474 ret_code = ust_metadata_channel_statedump(registry, chan_reg);
d0b96690
DG
4475 if (ret_code) {
4476 ERR("Error appending channel metadata (errno = %d)", ret_code);
4477 goto reply;
4478 }
4479 }
4480
4481reply:
7972aab2
DG
4482 DBG3("UST app replying to register channel key %" PRIu64
4483 " with id %u, type: %d, ret: %d", chan_reg_key, chan_id, type,
4484 ret_code);
d0b96690
DG
4485
4486 ret = ustctl_reply_register_channel(sock, chan_id, type, ret_code);
4487 if (ret < 0) {
4488 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
4489 ERR("UST app reply channel failed with ret %d", ret);
4490 } else {
4491 DBG3("UST app reply channel failed. Application died");
4492 }
4493 goto error;
4494 }
4495
7972aab2
DG
4496 /* This channel registry registration is completed. */
4497 chan_reg->register_done = 1;
4498
d0b96690 4499error:
7972aab2 4500 pthread_mutex_unlock(&registry->lock);
d88aee68 4501error_rcu_unlock:
d0b96690
DG
4502 rcu_read_unlock();
4503 return ret;
4504}
4505
d88aee68
DG
4506/*
4507 * Add event to the UST channel registry. When the event is added to the
4508 * registry, the metadata is also created. Once done, this replies to the
4509 * application with the appropriate error code.
4510 *
4511 * The session UST registry lock is acquired in the function.
4512 *
4513 * On success 0 is returned else a negative value.
4514 */
d0b96690
DG
4515static int add_event_ust_registry(int sock, int sobjd, int cobjd, char *name,
4516 char *sig, size_t nr_fields, struct ustctl_field *fields, int loglevel,
4517 char *model_emf_uri)
4518{
4519 int ret, ret_code;
4520 uint32_t event_id = 0;
7972aab2 4521 uint64_t chan_reg_key;
d0b96690
DG
4522 struct ust_app *app;
4523 struct ust_app_channel *ua_chan;
4524 struct ust_app_session *ua_sess;
7972aab2 4525 struct ust_registry_session *registry;
d0b96690
DG
4526
4527 rcu_read_lock();
4528
4529 /* Lookup application. If not found, there is a code flow error. */
4530 app = find_app_by_notify_sock(sock);
d88aee68
DG
4531 if (!app) {
4532 DBG("Application socket %d is being teardown. Abort event notify",
4533 sock);
4534 ret = 0;
4535 goto error_rcu_unlock;
4536 }
d0b96690
DG
4537
4538 /* Lookup channel by UST object descriptor. Should always be found. */
4539 ua_chan = find_channel_by_objd(app, cobjd);
4540 assert(ua_chan);
4541 assert(ua_chan->session);
4542 ua_sess = ua_chan->session;
4543
7972aab2
DG
4544 registry = get_session_registry(ua_sess);
4545 assert(registry);
4546
4547 if (ua_sess->buffer_type == LTTNG_BUFFER_PER_UID) {
4548 chan_reg_key = ua_chan->tracing_channel_id;
4549 } else {
4550 chan_reg_key = ua_chan->key;
4551 }
4552
4553 pthread_mutex_lock(&registry->lock);
d0b96690 4554
7972aab2 4555 ret_code = ust_registry_create_event(registry, chan_reg_key,
45893984 4556 sobjd, cobjd, name, sig, nr_fields, fields, loglevel,
7972aab2 4557 model_emf_uri, ua_sess->buffer_type, &event_id);
d0b96690
DG
4558
4559 /*
4560 * The return value is returned to ustctl so in case of an error, the
4561 * application can be notified. In case of an error, it's important not to
4562 * return a negative error or else the application will get closed.
4563 */
4564 ret = ustctl_reply_register_event(sock, event_id, ret_code);
4565 if (ret < 0) {
4566 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
4567 ERR("UST app reply event failed with ret %d", ret);
4568 } else {
4569 DBG3("UST app reply event failed. Application died");
4570 }
4571 /*
4572 * No need to wipe the create event since the application socket will
4573 * get close on error hence cleaning up everything by itself.
4574 */
4575 goto error;
4576 }
4577
7972aab2
DG
4578 DBG3("UST registry event %s with id %" PRId32 " added successfully",
4579 name, event_id);
d88aee68 4580
d0b96690 4581error:
7972aab2 4582 pthread_mutex_unlock(&registry->lock);
d88aee68 4583error_rcu_unlock:
d0b96690
DG
4584 rcu_read_unlock();
4585 return ret;
4586}
4587
d88aee68
DG
4588/*
4589 * Handle application notification through the given notify socket.
4590 *
4591 * Return 0 on success or else a negative value.
4592 */
d0b96690
DG
4593int ust_app_recv_notify(int sock)
4594{
4595 int ret;
4596 enum ustctl_notify_cmd cmd;
4597
4598 DBG3("UST app receiving notify from sock %d", sock);
4599
4600 ret = ustctl_recv_notify(sock, &cmd);
4601 if (ret < 0) {
4602 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
4603 ERR("UST app recv notify failed with ret %d", ret);
4604 } else {
4605 DBG3("UST app recv notify failed. Application died");
4606 }
4607 goto error;
4608 }
4609
4610 switch (cmd) {
4611 case USTCTL_NOTIFY_CMD_EVENT:
4612 {
4613 int sobjd, cobjd, loglevel;
4614 char name[LTTNG_UST_SYM_NAME_LEN], *sig, *model_emf_uri;
4615 size_t nr_fields;
4616 struct ustctl_field *fields;
4617
4618 DBG2("UST app ustctl register event received");
4619
4620 ret = ustctl_recv_register_event(sock, &sobjd, &cobjd, name, &loglevel,
4621 &sig, &nr_fields, &fields, &model_emf_uri);
4622 if (ret < 0) {
4623 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
4624 ERR("UST app recv event failed with ret %d", ret);
4625 } else {
4626 DBG3("UST app recv event failed. Application died");
4627 }
4628 goto error;
4629 }
4630
4631 /* Add event to the UST registry coming from the notify socket. */
4632 ret = add_event_ust_registry(sock, sobjd, cobjd, name, sig, nr_fields,
4633 fields, loglevel, model_emf_uri);
4634 if (ret < 0) {
4635 goto error;
4636 }
4637
4638 break;
4639 }
4640 case USTCTL_NOTIFY_CMD_CHANNEL:
4641 {
4642 int sobjd, cobjd;
4643 size_t nr_fields;
4644 struct ustctl_field *fields;
4645
4646 DBG2("UST app ustctl register channel received");
4647
4648 ret = ustctl_recv_register_channel(sock, &sobjd, &cobjd, &nr_fields,
4649 &fields);
4650 if (ret < 0) {
4651 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
4652 ERR("UST app recv channel failed with ret %d", ret);
4653 } else {
4654 DBG3("UST app recv channel failed. Application died");
4655 }
4656 goto error;
4657 }
4658
4659 ret = reply_ust_register_channel(sock, sobjd, cobjd, nr_fields,
4660 fields);
4661 if (ret < 0) {
4662 goto error;
4663 }
4664
4665 break;
4666 }
4667 default:
4668 /* Should NEVER happen. */
4669 assert(0);
4670 }
4671
4672error:
4673 return ret;
4674}
d88aee68
DG
4675
4676/*
4677 * Once the notify socket hangs up, this is called. First, it tries to find the
4678 * corresponding application. On failure, the call_rcu to close the socket is
4679 * executed. If an application is found, it tries to delete it from the notify
4680 * socket hash table. Whathever the result, it proceeds to the call_rcu.
4681 *
4682 * Note that an object needs to be allocated here so on ENOMEM failure, the
4683 * call RCU is not done but the rest of the cleanup is.
4684 */
4685void ust_app_notify_sock_unregister(int sock)
4686{
4687 int err_enomem = 0;
4688 struct lttng_ht_iter iter;
4689 struct ust_app *app;
4690 struct ust_app_notify_sock_obj *obj;
4691
4692 assert(sock >= 0);
4693
4694 rcu_read_lock();
4695
4696 obj = zmalloc(sizeof(*obj));
4697 if (!obj) {
4698 /*
4699 * An ENOMEM is kind of uncool. If this strikes we continue the
4700 * procedure but the call_rcu will not be called. In this case, we
4701 * accept the fd leak rather than possibly creating an unsynchronized
4702 * state between threads.
4703 *
4704 * TODO: The notify object should be created once the notify socket is
4705 * registered and stored independantely from the ust app object. The
4706 * tricky part is to synchronize the teardown of the application and
4707 * this notify object. Let's keep that in mind so we can avoid this
4708 * kind of shenanigans with ENOMEM in the teardown path.
4709 */
4710 err_enomem = 1;
4711 } else {
4712 obj->fd = sock;
4713 }
4714
4715 DBG("UST app notify socket unregister %d", sock);
4716
4717 /*
4718 * Lookup application by notify socket. If this fails, this means that the
4719 * hash table delete has already been done by the application
4720 * unregistration process so we can safely close the notify socket in a
4721 * call RCU.
4722 */
4723 app = find_app_by_notify_sock(sock);
4724 if (!app) {
4725 goto close_socket;
4726 }
4727
4728 iter.iter.node = &app->notify_sock_n.node;
4729
4730 /*
4731 * Whatever happens here either we fail or succeed, in both cases we have
4732 * to close the socket after a grace period to continue to the call RCU
4733 * here. If the deletion is successful, the application is not visible
4734 * anymore by other threads and is it fails it means that it was already
4735 * deleted from the hash table so either way we just have to close the
4736 * socket.
4737 */
4738 (void) lttng_ht_del(ust_app_ht_by_notify_sock, &iter);
4739
4740close_socket:
4741 rcu_read_unlock();
4742
4743 /*
4744 * Close socket after a grace period to avoid for the socket to be reused
4745 * before the application object is freed creating potential race between
4746 * threads trying to add unique in the global hash table.
4747 */
4748 if (!err_enomem) {
4749 call_rcu(&obj->head, close_notify_sock_rcu);
4750 }
4751}
This page took 0.28529 seconds and 4 git commands to generate.