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