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