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