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