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