Fix: sessiond: disable: match app event by name
[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. */
2609 goto error_stream_unlock;
2610 } else if (ret < 0) {
2611 goto error_stream_unlock;
2612 }
7972aab2
DG
2613 goto error_stream_unlock;
2614 }
edb67388 2615
7972aab2
DG
2616 /*
2617 * The return value is not important here. This function will output an
2618 * error if needed.
2619 */
c9d4793f 2620 (void) release_ust_app_stream(-1, &stream, app);
7972aab2
DG
2621 }
2622 ua_chan->is_sent = 1;
2623
2624error_stream_unlock:
2625 pthread_mutex_unlock(&reg_chan->stream_list_lock);
edb67388
DG
2626error:
2627 return ret;
2628}
2629
9730260e 2630/*
7972aab2
DG
2631 * Create and send to the application the created buffers with per UID buffers.
2632 *
2633 * Return 0 on success else a negative value.
9730260e 2634 */
7972aab2
DG
2635static int create_channel_per_uid(struct ust_app *app,
2636 struct ltt_ust_session *usess, struct ust_app_session *ua_sess,
2637 struct ust_app_channel *ua_chan)
9730260e
DG
2638{
2639 int ret;
7972aab2
DG
2640 struct buffer_reg_uid *reg_uid;
2641 struct buffer_reg_channel *reg_chan;
9730260e 2642
7972aab2
DG
2643 assert(app);
2644 assert(usess);
2645 assert(ua_sess);
2646 assert(ua_chan);
2647
2648 DBG("UST app creating channel %s with per UID buffers", ua_chan->name);
2649
2650 reg_uid = buffer_reg_uid_find(usess->id, app->bits_per_long, app->uid);
2651 /*
2652 * The session creation handles the creation of this global registry
2653 * object. If none can be find, there is a code flow problem or a
2654 * teardown race.
2655 */
2656 assert(reg_uid);
2657
2658 reg_chan = buffer_reg_channel_find(ua_chan->tracing_channel_id,
2659 reg_uid);
2660 if (!reg_chan) {
2661 /* Create the buffer registry channel object. */
2662 ret = create_buffer_reg_channel(reg_uid->registry, ua_chan, &reg_chan);
2663 if (ret < 0) {
f14256d6
MD
2664 ERR("Error creating the UST channel \"%s\" registry instance",
2665 ua_chan->name);
7972aab2
DG
2666 goto error;
2667 }
2668 assert(reg_chan);
2669
2670 /*
2671 * Create the buffers on the consumer side. This call populates the
2672 * ust app channel object with all streams and data object.
2673 */
2674 ret = do_consumer_create_channel(usess, ua_sess, ua_chan,
2675 app->bits_per_long, reg_uid->registry->reg.ust);
2676 if (ret < 0) {
f14256d6
MD
2677 ERR("Error creating UST channel \"%s\" on the consumer daemon",
2678 ua_chan->name);
2679
07d2ae95
DG
2680 /*
2681 * Let's remove the previously created buffer registry channel so
2682 * it's not visible anymore in the session registry.
2683 */
2684 ust_registry_channel_del_free(reg_uid->registry->reg.ust,
2685 ua_chan->tracing_channel_id);
2686 buffer_reg_channel_remove(reg_uid->registry, reg_chan);
2687 buffer_reg_channel_destroy(reg_chan, LTTNG_DOMAIN_UST);
7972aab2
DG
2688 goto error;
2689 }
2690
2691 /*
2692 * Setup the streams and add it to the session registry.
2693 */
c9d4793f
MD
2694 ret = setup_buffer_reg_channel(reg_uid->registry,
2695 ua_chan, reg_chan, app);
7972aab2 2696 if (ret < 0) {
f14256d6
MD
2697 ERR("Error setting up UST channel \"%s\"",
2698 ua_chan->name);
7972aab2
DG
2699 goto error;
2700 }
2701
2702 }
2703
2704 /* Send buffers to the application. */
2705 ret = send_channel_uid_to_ust(reg_chan, app, ua_sess, ua_chan);
9730260e 2706 if (ret < 0) {
31cb5470
MD
2707 if (ret != -ENOTCONN) {
2708 ERR("Error sending channel to application");
2709 }
9730260e
DG
2710 goto error;
2711 }
2712
9730260e
DG
2713error:
2714 return ret;
2715}
2716
78f0bacd 2717/*
7972aab2
DG
2718 * Create and send to the application the created buffers with per PID buffers.
2719 *
2720 * Return 0 on success else a negative value.
78f0bacd 2721 */
7972aab2
DG
2722static int create_channel_per_pid(struct ust_app *app,
2723 struct ltt_ust_session *usess, struct ust_app_session *ua_sess,
2724 struct ust_app_channel *ua_chan)
78f0bacd 2725{
8535a6d9 2726 int ret;
7972aab2 2727 struct ust_registry_session *registry;
78f0bacd 2728
7972aab2
DG
2729 assert(app);
2730 assert(usess);
2731 assert(ua_sess);
2732 assert(ua_chan);
2733
2734 DBG("UST app creating channel %s with per PID buffers", ua_chan->name);
2735
2736 rcu_read_lock();
2737
2738 registry = get_session_registry(ua_sess);
2739 assert(registry);
2740
2741 /* Create and add a new channel registry to session. */
2742 ret = ust_registry_channel_add(registry, ua_chan->key);
78f0bacd 2743 if (ret < 0) {
f14256d6
MD
2744 ERR("Error creating the UST channel \"%s\" registry instance",
2745 ua_chan->name);
78f0bacd
DG
2746 goto error;
2747 }
2748
7972aab2
DG
2749 /* Create and get channel on the consumer side. */
2750 ret = do_consumer_create_channel(usess, ua_sess, ua_chan,
2751 app->bits_per_long, registry);
2752 if (ret < 0) {
f14256d6
MD
2753 ERR("Error creating UST channel \"%s\" on the consumer daemon",
2754 ua_chan->name);
7972aab2
DG
2755 goto error;
2756 }
2757
2758 ret = send_channel_pid_to_ust(app, ua_sess, ua_chan);
2759 if (ret < 0) {
31cb5470
MD
2760 if (ret != -ENOTCONN) {
2761 ERR("Error sending channel to application");
2762 }
7972aab2
DG
2763 goto error;
2764 }
8535a6d9 2765
78f0bacd 2766error:
7972aab2 2767 rcu_read_unlock();
78f0bacd
DG
2768 return ret;
2769}
2770
2771/*
7972aab2
DG
2772 * From an already allocated ust app channel, create the channel buffers if
2773 * need and send it to the application. This MUST be called with a RCU read
2774 * side lock acquired.
2775 *
31cb5470
MD
2776 * Return 0 on success or else a negative value. Returns -ENOTCONN if
2777 * the application exited concurrently.
78f0bacd 2778 */
7972aab2
DG
2779static int do_create_channel(struct ust_app *app,
2780 struct ltt_ust_session *usess, struct ust_app_session *ua_sess,
2781 struct ust_app_channel *ua_chan)
78f0bacd 2782{
7972aab2 2783 int ret;
78f0bacd 2784
7972aab2
DG
2785 assert(app);
2786 assert(usess);
2787 assert(ua_sess);
2788 assert(ua_chan);
2789
2790 /* Handle buffer type before sending the channel to the application. */
2791 switch (usess->buffer_type) {
2792 case LTTNG_BUFFER_PER_UID:
2793 {
2794 ret = create_channel_per_uid(app, usess, ua_sess, ua_chan);
2795 if (ret < 0) {
2796 goto error;
2797 }
2798 break;
2799 }
2800 case LTTNG_BUFFER_PER_PID:
2801 {
2802 ret = create_channel_per_pid(app, usess, ua_sess, ua_chan);
2803 if (ret < 0) {
2804 goto error;
2805 }
2806 break;
2807 }
2808 default:
2809 assert(0);
2810 ret = -EINVAL;
78f0bacd
DG
2811 goto error;
2812 }
2813
7972aab2
DG
2814 /* Initialize ust objd object using the received handle and add it. */
2815 lttng_ht_node_init_ulong(&ua_chan->ust_objd_node, ua_chan->handle);
2816 lttng_ht_add_unique_ulong(app->ust_objd, &ua_chan->ust_objd_node);
78f0bacd 2817
7972aab2
DG
2818 /* If channel is not enabled, disable it on the tracer */
2819 if (!ua_chan->enabled) {
2820 ret = disable_ust_channel(app, ua_sess, ua_chan);
2821 if (ret < 0) {
2822 goto error;
2823 }
78f0bacd
DG
2824 }
2825
2826error:
2827 return ret;
2828}
2829
284d8f55 2830/*
4d710ac2
DG
2831 * Create UST app channel and create it on the tracer. Set ua_chanp of the
2832 * newly created channel if not NULL.
d0b96690 2833 *
36b588ed 2834 * Called with UST app session lock and RCU read-side lock held.
7972aab2 2835 *
31cb5470
MD
2836 * Return 0 on success or else a negative value. Returns -ENOTCONN if
2837 * the application exited concurrently.
284d8f55 2838 */
4d710ac2
DG
2839static int create_ust_app_channel(struct ust_app_session *ua_sess,
2840 struct ltt_ust_channel *uchan, struct ust_app *app,
7972aab2 2841 enum lttng_ust_chan_type type, struct ltt_ust_session *usess,
4d710ac2 2842 struct ust_app_channel **ua_chanp)
5b4a0ec0
DG
2843{
2844 int ret = 0;
bec39940
DG
2845 struct lttng_ht_iter iter;
2846 struct lttng_ht_node_str *ua_chan_node;
5b4a0ec0
DG
2847 struct ust_app_channel *ua_chan;
2848
2849 /* Lookup channel in the ust app session */
bec39940
DG
2850 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &iter);
2851 ua_chan_node = lttng_ht_iter_get_node_str(&iter);
fc34caaa 2852 if (ua_chan_node != NULL) {
5b4a0ec0 2853 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node);
fc34caaa 2854 goto end;
5b4a0ec0
DG
2855 }
2856
d0b96690 2857 ua_chan = alloc_ust_app_channel(uchan->name, ua_sess, &uchan->attr);
fc34caaa
DG
2858 if (ua_chan == NULL) {
2859 /* Only malloc can fail here */
4d710ac2 2860 ret = -ENOMEM;
094d1690 2861 goto error_alloc;
fc34caaa
DG
2862 }
2863 shadow_copy_channel(ua_chan, uchan);
2864
ffe60014
DG
2865 /* Set channel type. */
2866 ua_chan->attr.type = type;
2867
7972aab2 2868 ret = do_create_channel(app, usess, ua_sess, ua_chan);
5b4a0ec0
DG
2869 if (ret < 0) {
2870 goto error;
2871 }
2872
fc34caaa 2873 DBG2("UST app create channel %s for PID %d completed", ua_chan->name,
852d0037 2874 app->pid);
fc34caaa 2875
d0b96690
DG
2876 /* Only add the channel if successful on the tracer side. */
2877 lttng_ht_add_unique_str(ua_sess->channels, &ua_chan->node);
2878
fc34caaa 2879end:
4d710ac2
DG
2880 if (ua_chanp) {
2881 *ua_chanp = ua_chan;
2882 }
2883
2884 /* Everything went well. */
2885 return 0;
5b4a0ec0
DG
2886
2887error:
d0b96690 2888 delete_ust_app_channel(ua_chan->is_sent ? app->sock : -1, ua_chan, app);
094d1690 2889error_alloc:
4d710ac2 2890 return ret;
5b4a0ec0
DG
2891}
2892
2893/*
2894 * Create UST app event and create it on the tracer side.
d0b96690
DG
2895 *
2896 * Called with ust app session mutex held.
5b4a0ec0 2897 */
edb67388
DG
2898static
2899int create_ust_app_event(struct ust_app_session *ua_sess,
2900 struct ust_app_channel *ua_chan, struct ltt_ust_event *uevent,
2901 struct ust_app *app)
284d8f55 2902{
edb67388 2903 int ret = 0;
5b4a0ec0 2904 struct ust_app_event *ua_event;
284d8f55 2905
5b4a0ec0 2906 /* Get event node */
18eace3b 2907 ua_event = find_ust_app_event(ua_chan->events, uevent->attr.name,
39c5a3a7 2908 uevent->filter, uevent->attr.loglevel, uevent->exclusion);
18eace3b 2909 if (ua_event != NULL) {
fc34caaa 2910 ret = -EEXIST;
edb67388
DG
2911 goto end;
2912 }
5b4a0ec0 2913
edb67388
DG
2914 /* Does not exist so create one */
2915 ua_event = alloc_ust_app_event(uevent->attr.name, &uevent->attr);
2916 if (ua_event == NULL) {
2917 /* Only malloc can failed so something is really wrong */
2918 ret = -ENOMEM;
fc34caaa 2919 goto end;
5b4a0ec0 2920 }
edb67388 2921 shadow_copy_event(ua_event, uevent);
5b4a0ec0 2922
edb67388 2923 /* Create it on the tracer side */
5b4a0ec0 2924 ret = create_ust_event(app, ua_sess, ua_chan, ua_event);
284d8f55 2925 if (ret < 0) {
fc34caaa 2926 /* Not found previously means that it does not exist on the tracer */
76f66f63 2927 assert(ret != -LTTNG_UST_ERR_EXIST);
284d8f55
DG
2928 goto error;
2929 }
2930
d0b96690 2931 add_unique_ust_app_event(ua_chan, ua_event);
284d8f55 2932
fc34caaa 2933 DBG2("UST app create event %s for PID %d completed", ua_event->name,
852d0037 2934 app->pid);
7f79d3a1 2935
edb67388 2936end:
fc34caaa
DG
2937 return ret;
2938
5b4a0ec0 2939error:
fc34caaa 2940 /* Valid. Calling here is already in a read side lock */
c9d4793f 2941 delete_ust_app_event(-1, ua_event, app);
edb67388 2942 return ret;
5b4a0ec0
DG
2943}
2944
2945/*
2946 * Create UST metadata and open it on the tracer side.
d0b96690 2947 *
7972aab2 2948 * Called with UST app session lock held and RCU read side lock.
5b4a0ec0
DG
2949 */
2950static int create_ust_app_metadata(struct ust_app_session *ua_sess,
ad7a9107 2951 struct ust_app *app, struct consumer_output *consumer)
5b4a0ec0
DG
2952{
2953 int ret = 0;
ffe60014 2954 struct ust_app_channel *metadata;
d88aee68 2955 struct consumer_socket *socket;
7972aab2 2956 struct ust_registry_session *registry;
5b4a0ec0 2957
ffe60014
DG
2958 assert(ua_sess);
2959 assert(app);
d88aee68 2960 assert(consumer);
5b4a0ec0 2961
7972aab2
DG
2962 registry = get_session_registry(ua_sess);
2963 assert(registry);
2964
e3ae3c71
MD
2965 pthread_mutex_lock(&registry->lock);
2966
1b532a60
DG
2967 /* Metadata already exists for this registry or it was closed previously */
2968 if (registry->metadata_key || registry->metadata_closed) {
7972aab2
DG
2969 ret = 0;
2970 goto error;
5b4a0ec0
DG
2971 }
2972
ffe60014 2973 /* Allocate UST metadata */
d0b96690 2974 metadata = alloc_ust_app_channel(DEFAULT_METADATA_NAME, ua_sess, NULL);
ffe60014
DG
2975 if (!metadata) {
2976 /* malloc() failed */
2977 ret = -ENOMEM;
2978 goto error;
2979 }
5b4a0ec0 2980
ad7a9107 2981 memcpy(&metadata->attr, &ua_sess->metadata_attr, sizeof(metadata->attr));
5b4a0ec0 2982
7972aab2
DG
2983 /* Need one fd for the channel. */
2984 ret = lttng_fd_get(LTTNG_FD_APPS, 1);
2985 if (ret < 0) {
2986 ERR("Exhausted number of available FD upon create metadata");
2987 goto error;
2988 }
2989
4dc3dfc5
DG
2990 /* Get the right consumer socket for the application. */
2991 socket = consumer_find_socket_by_bitness(app->bits_per_long, consumer);
2992 if (!socket) {
2993 ret = -EINVAL;
2994 goto error_consumer;
2995 }
2996
331744e3
JD
2997 /*
2998 * Keep metadata key so we can identify it on the consumer side. Assign it
2999 * to the registry *before* we ask the consumer so we avoid the race of the
3000 * consumer requesting the metadata and the ask_channel call on our side
3001 * did not returned yet.
3002 */
3003 registry->metadata_key = metadata->key;
3004
d88aee68
DG
3005 /*
3006 * Ask the metadata channel creation to the consumer. The metadata object
3007 * will be created by the consumer and kept their. However, the stream is
3008 * never added or monitored until we do a first push metadata to the
3009 * consumer.
3010 */
7972aab2
DG
3011 ret = ust_consumer_ask_channel(ua_sess, metadata, consumer, socket,
3012 registry);
d88aee68 3013 if (ret < 0) {
f2a444f1
DG
3014 /* Nullify the metadata key so we don't try to close it later on. */
3015 registry->metadata_key = 0;
d88aee68
DG
3016 goto error_consumer;
3017 }
3018
3019 /*
3020 * The setup command will make the metadata stream be sent to the relayd,
3021 * if applicable, and the thread managing the metadatas. This is important
3022 * because after this point, if an error occurs, the only way the stream
3023 * can be deleted is to be monitored in the consumer.
3024 */
7972aab2 3025 ret = consumer_setup_metadata(socket, metadata->key);
ffe60014 3026 if (ret < 0) {
f2a444f1
DG
3027 /* Nullify the metadata key so we don't try to close it later on. */
3028 registry->metadata_key = 0;
d88aee68 3029 goto error_consumer;
5b4a0ec0
DG
3030 }
3031
7972aab2
DG
3032 DBG2("UST metadata with key %" PRIu64 " created for app pid %d",
3033 metadata->key, app->pid);
5b4a0ec0 3034
d88aee68 3035error_consumer:
b80f0b6c 3036 lttng_fd_put(LTTNG_FD_APPS, 1);
d88aee68 3037 delete_ust_app_channel(-1, metadata, app);
5b4a0ec0 3038error:
e3ae3c71 3039 pthread_mutex_unlock(&registry->lock);
ffe60014 3040 return ret;
5b4a0ec0
DG
3041}
3042
5b4a0ec0 3043/*
d88aee68
DG
3044 * Return ust app pointer or NULL if not found. RCU read side lock MUST be
3045 * acquired before calling this function.
5b4a0ec0
DG
3046 */
3047struct ust_app *ust_app_find_by_pid(pid_t pid)
3048{
d88aee68 3049 struct ust_app *app = NULL;
bec39940
DG
3050 struct lttng_ht_node_ulong *node;
3051 struct lttng_ht_iter iter;
5b4a0ec0 3052
bec39940
DG
3053 lttng_ht_lookup(ust_app_ht, (void *)((unsigned long) pid), &iter);
3054 node = lttng_ht_iter_get_node_ulong(&iter);
5b4a0ec0
DG
3055 if (node == NULL) {
3056 DBG2("UST app no found with pid %d", pid);
3057 goto error;
3058 }
5b4a0ec0
DG
3059
3060 DBG2("Found UST app by pid %d", pid);
3061
d88aee68 3062 app = caa_container_of(node, struct ust_app, pid_n);
5b4a0ec0
DG
3063
3064error:
d88aee68 3065 return app;
5b4a0ec0
DG
3066}
3067
d88aee68
DG
3068/*
3069 * Allocate and init an UST app object using the registration information and
3070 * the command socket. This is called when the command socket connects to the
3071 * session daemon.
3072 *
3073 * The object is returned on success or else NULL.
3074 */
d0b96690 3075struct ust_app *ust_app_create(struct ust_register_msg *msg, int sock)
5b4a0ec0 3076{
d0b96690
DG
3077 struct ust_app *lta = NULL;
3078
3079 assert(msg);
3080 assert(sock >= 0);
3081
3082 DBG3("UST app creating application for socket %d", sock);
5b4a0ec0 3083
173af62f
DG
3084 if ((msg->bits_per_long == 64 &&
3085 (uatomic_read(&ust_consumerd64_fd) == -EINVAL))
3086 || (msg->bits_per_long == 32 &&
3087 (uatomic_read(&ust_consumerd32_fd) == -EINVAL))) {
f943b0fb 3088 ERR("Registration failed: application \"%s\" (pid: %d) has "
d0b96690
DG
3089 "%d-bit long, but no consumerd for this size is available.\n",
3090 msg->name, msg->pid, msg->bits_per_long);
3091 goto error;
3f2c5fcc 3092 }
d0b96690 3093
5b4a0ec0
DG
3094 lta = zmalloc(sizeof(struct ust_app));
3095 if (lta == NULL) {
3096 PERROR("malloc");
d0b96690 3097 goto error;
5b4a0ec0
DG
3098 }
3099
3100 lta->ppid = msg->ppid;
3101 lta->uid = msg->uid;
3102 lta->gid = msg->gid;
d0b96690 3103
7753dea8 3104 lta->bits_per_long = msg->bits_per_long;
d0b96690
DG
3105 lta->uint8_t_alignment = msg->uint8_t_alignment;
3106 lta->uint16_t_alignment = msg->uint16_t_alignment;
3107 lta->uint32_t_alignment = msg->uint32_t_alignment;
3108 lta->uint64_t_alignment = msg->uint64_t_alignment;
3109 lta->long_alignment = msg->long_alignment;
3110 lta->byte_order = msg->byte_order;
3111
5b4a0ec0
DG
3112 lta->v_major = msg->major;
3113 lta->v_minor = msg->minor;
d9bf3ca4 3114 lta->sessions = lttng_ht_new(0, LTTNG_HT_TYPE_U64);
d0b96690
DG
3115 lta->ust_objd = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
3116 lta->notify_sock = -1;
d88aee68
DG
3117
3118 /* Copy name and make sure it's NULL terminated. */
3119 strncpy(lta->name, msg->name, sizeof(lta->name));
3120 lta->name[UST_APP_PROCNAME_LEN] = '\0';
3121
3122 /*
3123 * Before this can be called, when receiving the registration information,
3124 * the application compatibility is checked. So, at this point, the
3125 * application can work with this session daemon.
3126 */
d0b96690 3127 lta->compatible = 1;
5b4a0ec0 3128
852d0037 3129 lta->pid = msg->pid;
d0b96690 3130 lttng_ht_node_init_ulong(&lta->pid_n, (unsigned long) lta->pid);
852d0037 3131 lta->sock = sock;
c9d4793f 3132 pthread_mutex_init(&lta->sock_lock, NULL);
d0b96690 3133 lttng_ht_node_init_ulong(&lta->sock_n, (unsigned long) lta->sock);
5b4a0ec0 3134
d42f20df 3135 CDS_INIT_LIST_HEAD(&lta->teardown_head);
d0b96690
DG
3136error:
3137 return lta;
3138}
3139
d88aee68
DG
3140/*
3141 * For a given application object, add it to every hash table.
3142 */
d0b96690
DG
3143void ust_app_add(struct ust_app *app)
3144{
3145 assert(app);
3146 assert(app->notify_sock >= 0);
3147
5b4a0ec0 3148 rcu_read_lock();
852d0037
DG
3149
3150 /*
3151 * On a re-registration, we want to kick out the previous registration of
3152 * that pid
3153 */
d0b96690 3154 lttng_ht_add_replace_ulong(ust_app_ht, &app->pid_n);
852d0037
DG
3155
3156 /*
3157 * The socket _should_ be unique until _we_ call close. So, a add_unique
3158 * for the ust_app_ht_by_sock is used which asserts fail if the entry was
3159 * already in the table.
3160 */
d0b96690 3161 lttng_ht_add_unique_ulong(ust_app_ht_by_sock, &app->sock_n);
852d0037 3162
d0b96690
DG
3163 /* Add application to the notify socket hash table. */
3164 lttng_ht_node_init_ulong(&app->notify_sock_n, app->notify_sock);
3165 lttng_ht_add_unique_ulong(ust_app_ht_by_notify_sock, &app->notify_sock_n);
5b4a0ec0 3166
d0b96690 3167 DBG("App registered with pid:%d ppid:%d uid:%d gid:%d sock:%d name:%s "
d88aee68
DG
3168 "notify_sock:%d (version %d.%d)", app->pid, app->ppid, app->uid,
3169 app->gid, app->sock, app->name, app->notify_sock, app->v_major,
3170 app->v_minor);
5b4a0ec0 3171
d0b96690
DG
3172 rcu_read_unlock();
3173}
3174
d88aee68
DG
3175/*
3176 * Set the application version into the object.
3177 *
3178 * Return 0 on success else a negative value either an errno code or a
3179 * LTTng-UST error code.
3180 */
d0b96690
DG
3181int ust_app_version(struct ust_app *app)
3182{
d88aee68
DG
3183 int ret;
3184
d0b96690 3185 assert(app);
d88aee68 3186
c9d4793f 3187 pthread_mutex_lock(&app->sock_lock);
d88aee68 3188 ret = ustctl_tracer_version(app->sock, &app->version);
c9d4793f 3189 pthread_mutex_unlock(&app->sock_lock);
d88aee68
DG
3190 if (ret < 0) {
3191 if (ret != -LTTNG_UST_ERR_EXITING && ret != -EPIPE) {
5368d366 3192 ERR("UST app %d version failed with ret %d", app->sock, ret);
d88aee68 3193 } else {
5368d366 3194 DBG3("UST app %d version failed. Application is dead", app->sock);
d88aee68
DG
3195 }
3196 }
3197
3198 return ret;
5b4a0ec0
DG
3199}
3200
3201/*
3202 * Unregister app by removing it from the global traceable app list and freeing
3203 * the data struct.
3204 *
3205 * The socket is already closed at this point so no close to sock.
3206 */
3207void ust_app_unregister(int sock)
3208{
3209 struct ust_app *lta;
bec39940 3210 struct lttng_ht_node_ulong *node;
99090057 3211 struct lttng_ht_iter ust_app_sock_iter;
bec39940 3212 struct lttng_ht_iter iter;
d42f20df 3213 struct ust_app_session *ua_sess;
525b0740 3214 int ret;
5b4a0ec0
DG
3215
3216 rcu_read_lock();
886459c6 3217
5b4a0ec0 3218 /* Get the node reference for a call_rcu */
99090057
MD
3219 lttng_ht_lookup(ust_app_ht_by_sock, (void *)((unsigned long) sock), &ust_app_sock_iter);
3220 node = lttng_ht_iter_get_node_ulong(&ust_app_sock_iter);
d0b96690 3221 assert(node);
284d8f55 3222
852d0037 3223 lta = caa_container_of(node, struct ust_app, sock_n);
852d0037
DG
3224 DBG("PID %d unregistering with sock %d", lta->pid, sock);
3225
d88aee68 3226 /*
e3ae3c71
MD
3227 * For per-PID buffers, perform "push metadata" and flush all
3228 * application streams before removing app from hash tables,
3229 * ensuring proper behavior of data_pending check.
99090057 3230 * Remove sessions so they are not visible during deletion.
d88aee68 3231 */
d42f20df
DG
3232 cds_lfht_for_each_entry(lta->sessions->ht, &iter.iter, ua_sess,
3233 node.node) {
7972aab2
DG
3234 struct ust_registry_session *registry;
3235
d42f20df
DG
3236 ret = lttng_ht_del(lta->sessions, &iter);
3237 if (ret) {
3238 /* The session was already removed so scheduled for teardown. */
3239 continue;
3240 }
3241
e3ae3c71
MD
3242 if (ua_sess->buffer_type == LTTNG_BUFFER_PER_PID) {
3243 (void) ust_app_flush_app_session(lta, ua_sess);
3244 }
99090057 3245
d42f20df
DG
3246 /*
3247 * Add session to list for teardown. This is safe since at this point we
3248 * are the only one using this list.
3249 */
d88aee68
DG
3250 pthread_mutex_lock(&ua_sess->lock);
3251
d4769e14
MD
3252 if (ua_sess->deleted) {
3253 pthread_mutex_unlock(&ua_sess->lock);
3254 continue;
3255 }
3256
d88aee68
DG
3257 /*
3258 * Normally, this is done in the delete session process which is
3259 * executed in the call rcu below. However, upon registration we can't
3260 * afford to wait for the grace period before pushing data or else the
3261 * data pending feature can race between the unregistration and stop
3262 * command where the data pending command is sent *before* the grace
3263 * period ended.
3264 *
3265 * The close metadata below nullifies the metadata pointer in the
3266 * session so the delete session will NOT push/close a second time.
3267 */
7972aab2 3268 registry = get_session_registry(ua_sess);
e3ae3c71 3269 if (registry) {
7972aab2
DG
3270 /* Push metadata for application before freeing the application. */
3271 (void) push_metadata(registry, ua_sess->consumer);
3272
3273 /*
3274 * Don't ask to close metadata for global per UID buffers. Close
1b532a60
DG
3275 * metadata only on destroy trace session in this case. Also, the
3276 * previous push metadata could have flag the metadata registry to
3277 * close so don't send a close command if closed.
7972aab2 3278 */
e3ae3c71 3279 if (ua_sess->buffer_type != LTTNG_BUFFER_PER_UID) {
7972aab2
DG
3280 /* And ask to close it for this session registry. */
3281 (void) close_metadata(registry, ua_sess->consumer);
3282 }
3283 }
d42f20df 3284 cds_list_add(&ua_sess->teardown_node, &lta->teardown_head);
99090057 3285
d88aee68 3286 pthread_mutex_unlock(&ua_sess->lock);
d42f20df
DG
3287 }
3288
99090057
MD
3289 /* Remove application from PID hash table */
3290 ret = lttng_ht_del(ust_app_ht_by_sock, &ust_app_sock_iter);
3291 assert(!ret);
3292
3293 /*
3294 * Remove application from notify hash table. The thread handling the
3295 * notify socket could have deleted the node so ignore on error because
3296 * either way it's valid. The close of that socket is handled by the other
3297 * thread.
3298 */
3299 iter.iter.node = &lta->notify_sock_n.node;
3300 (void) lttng_ht_del(ust_app_ht_by_notify_sock, &iter);
3301
3302 /*
3303 * Ignore return value since the node might have been removed before by an
3304 * add replace during app registration because the PID can be reassigned by
3305 * the OS.
3306 */
3307 iter.iter.node = &lta->pid_n.node;
3308 ret = lttng_ht_del(ust_app_ht, &iter);
3309 if (ret) {
3310 DBG3("Unregister app by PID %d failed. This can happen on pid reuse",
3311 lta->pid);
3312 }
3313
852d0037
DG
3314 /* Free memory */
3315 call_rcu(&lta->pid_n.head, delete_ust_app_rcu);
3316
5b4a0ec0
DG
3317 rcu_read_unlock();
3318 return;
284d8f55
DG
3319}
3320
5b4a0ec0
DG
3321/*
3322 * Fill events array with all events name of all registered apps.
3323 */
3324int ust_app_list_events(struct lttng_event **events)
421cb601 3325{
5b4a0ec0
DG
3326 int ret, handle;
3327 size_t nbmem, count = 0;
bec39940 3328 struct lttng_ht_iter iter;
5b4a0ec0 3329 struct ust_app *app;
c617c0c6 3330 struct lttng_event *tmp_event;
421cb601 3331
5b4a0ec0 3332 nbmem = UST_APP_EVENT_LIST_SIZE;
c617c0c6
MD
3333 tmp_event = zmalloc(nbmem * sizeof(struct lttng_event));
3334 if (tmp_event == NULL) {
5b4a0ec0
DG
3335 PERROR("zmalloc ust app events");
3336 ret = -ENOMEM;
421cb601
DG
3337 goto error;
3338 }
3339
5b4a0ec0 3340 rcu_read_lock();
421cb601 3341
852d0037 3342 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
90eaa0d2 3343 struct lttng_ust_tracepoint_iter uiter;
ac3bd9c0 3344
840cb59c 3345 health_code_update();
86acf0da 3346
e0c7ec2b
DG
3347 if (!app->compatible) {
3348 /*
3349 * TODO: In time, we should notice the caller of this error by
3350 * telling him that this is a version error.
3351 */
3352 continue;
3353 }
c9d4793f 3354 pthread_mutex_lock(&app->sock_lock);
852d0037 3355 handle = ustctl_tracepoint_list(app->sock);
5b4a0ec0 3356 if (handle < 0) {
ffe60014
DG
3357 if (handle != -EPIPE && handle != -LTTNG_UST_ERR_EXITING) {
3358 ERR("UST app list events getting handle failed for app pid %d",
3359 app->pid);
3360 }
c9d4793f 3361 pthread_mutex_unlock(&app->sock_lock);
5b4a0ec0
DG
3362 continue;
3363 }
421cb601 3364
852d0037 3365 while ((ret = ustctl_tracepoint_list_get(app->sock, handle,
fb54cdbf 3366 &uiter)) != -LTTNG_UST_ERR_NOENT) {
ffe60014
DG
3367 /* Handle ustctl error. */
3368 if (ret < 0) {
c9d4793f
MD
3369 int release_ret;
3370
a2ba1ab0 3371 if (ret != -LTTNG_UST_ERR_EXITING && ret != -EPIPE) {
ffe60014
DG
3372 ERR("UST app tp list get failed for app %d with ret %d",
3373 app->sock, ret);
3374 } else {
3375 DBG3("UST app tp list get failed. Application is dead");
3757b385
DG
3376 /*
3377 * This is normal behavior, an application can die during the
3378 * creation process. Don't report an error so the execution can
3379 * continue normally. Continue normal execution.
3380 */
3381 break;
ffe60014 3382 }
98f595d4 3383 free(tmp_event);
c9d4793f
MD
3384 release_ret = ustctl_release_handle(app->sock, handle);
3385 if (release_ret != -LTTNG_UST_ERR_EXITING && release_ret != -EPIPE) {
3386 ERR("Error releasing app handle for app %d with ret %d", app->sock, release_ret);
3387 }
3388 pthread_mutex_unlock(&app->sock_lock);
ffe60014
DG
3389 goto rcu_error;
3390 }
3391
840cb59c 3392 health_code_update();
815564d8 3393 if (count >= nbmem) {
d7b3776f 3394 /* In case the realloc fails, we free the memory */
53efb85a
MD
3395 struct lttng_event *new_tmp_event;
3396 size_t new_nbmem;
3397
3398 new_nbmem = nbmem << 1;
3399 DBG2("Reallocating event list from %zu to %zu entries",
3400 nbmem, new_nbmem);
3401 new_tmp_event = realloc(tmp_event,
3402 new_nbmem * sizeof(struct lttng_event));
3403 if (new_tmp_event == NULL) {
c9d4793f
MD
3404 int release_ret;
3405
5b4a0ec0 3406 PERROR("realloc ust app events");
c617c0c6 3407 free(tmp_event);
5b4a0ec0 3408 ret = -ENOMEM;
c9d4793f
MD
3409 release_ret = ustctl_release_handle(app->sock, handle);
3410 if (release_ret != -LTTNG_UST_ERR_EXITING && release_ret != -EPIPE) {
3411 ERR("Error releasing app handle for app %d with ret %d", app->sock, release_ret);
3412 }
3413 pthread_mutex_unlock(&app->sock_lock);
5b4a0ec0
DG
3414 goto rcu_error;
3415 }
53efb85a
MD
3416 /* Zero the new memory */
3417 memset(new_tmp_event + nbmem, 0,
3418 (new_nbmem - nbmem) * sizeof(struct lttng_event));
3419 nbmem = new_nbmem;
3420 tmp_event = new_tmp_event;
5b4a0ec0 3421 }
c617c0c6
MD
3422 memcpy(tmp_event[count].name, uiter.name, LTTNG_UST_SYM_NAME_LEN);
3423 tmp_event[count].loglevel = uiter.loglevel;
3424 tmp_event[count].type = (enum lttng_event_type) LTTNG_UST_TRACEPOINT;
3425 tmp_event[count].pid = app->pid;
3426 tmp_event[count].enabled = -1;
5b4a0ec0 3427 count++;
421cb601 3428 }
c9d4793f
MD
3429 ret = ustctl_release_handle(app->sock, handle);
3430 pthread_mutex_unlock(&app->sock_lock);
3431 if (ret != -LTTNG_UST_ERR_EXITING && ret != -EPIPE) {
3432 ERR("Error releasing app handle for app %d with ret %d", app->sock, ret);
3433 }
421cb601
DG
3434 }
3435
5b4a0ec0 3436 ret = count;
c617c0c6 3437 *events = tmp_event;
421cb601 3438
5b4a0ec0 3439 DBG2("UST app list events done (%zu events)", count);
421cb601 3440
5b4a0ec0
DG
3441rcu_error:
3442 rcu_read_unlock();
421cb601 3443error:
840cb59c 3444 health_code_update();
5b4a0ec0 3445 return ret;
421cb601
DG
3446}
3447
f37d259d
MD
3448/*
3449 * Fill events array with all events name of all registered apps.
3450 */
3451int ust_app_list_event_fields(struct lttng_event_field **fields)
3452{
3453 int ret, handle;
3454 size_t nbmem, count = 0;
3455 struct lttng_ht_iter iter;
3456 struct ust_app *app;
c617c0c6 3457 struct lttng_event_field *tmp_event;
f37d259d
MD
3458
3459 nbmem = UST_APP_EVENT_LIST_SIZE;
c617c0c6
MD
3460 tmp_event = zmalloc(nbmem * sizeof(struct lttng_event_field));
3461 if (tmp_event == NULL) {
f37d259d
MD
3462 PERROR("zmalloc ust app event fields");
3463 ret = -ENOMEM;
3464 goto error;
3465 }
3466
3467 rcu_read_lock();
3468
3469 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
3470 struct lttng_ust_field_iter uiter;
3471
840cb59c 3472 health_code_update();
86acf0da 3473
f37d259d
MD
3474 if (!app->compatible) {
3475 /*
3476 * TODO: In time, we should notice the caller of this error by
3477 * telling him that this is a version error.
3478 */
3479 continue;
3480 }
c9d4793f 3481 pthread_mutex_lock(&app->sock_lock);
f37d259d
MD
3482 handle = ustctl_tracepoint_field_list(app->sock);
3483 if (handle < 0) {
ffe60014
DG
3484 if (handle != -EPIPE && handle != -LTTNG_UST_ERR_EXITING) {
3485 ERR("UST app list field getting handle failed for app pid %d",
3486 app->pid);
3487 }
c9d4793f 3488 pthread_mutex_unlock(&app->sock_lock);
f37d259d
MD
3489 continue;
3490 }
3491
3492 while ((ret = ustctl_tracepoint_field_list_get(app->sock, handle,
fb54cdbf 3493 &uiter)) != -LTTNG_UST_ERR_NOENT) {
ffe60014
DG
3494 /* Handle ustctl error. */
3495 if (ret < 0) {
c9d4793f
MD
3496 int release_ret;
3497
a2ba1ab0 3498 if (ret != -LTTNG_UST_ERR_EXITING && ret != -EPIPE) {
ffe60014
DG
3499 ERR("UST app tp list field failed for app %d with ret %d",
3500 app->sock, ret);
3501 } else {
3502 DBG3("UST app tp list field failed. Application is dead");
3757b385
DG
3503 /*
3504 * This is normal behavior, an application can die during the
3505 * creation process. Don't report an error so the execution can
98f595d4 3506 * continue normally. Reset list and count for next app.
3757b385
DG
3507 */
3508 break;
ffe60014 3509 }
98f595d4 3510 free(tmp_event);
c9d4793f
MD
3511 release_ret = ustctl_release_handle(app->sock, handle);
3512 pthread_mutex_unlock(&app->sock_lock);
3513 if (release_ret != -LTTNG_UST_ERR_EXITING && release_ret != -EPIPE) {
3514 ERR("Error releasing app handle for app %d with ret %d", app->sock, release_ret);
3515 }
ffe60014
DG
3516 goto rcu_error;
3517 }
3518
840cb59c 3519 health_code_update();
f37d259d 3520 if (count >= nbmem) {
d7b3776f 3521 /* In case the realloc fails, we free the memory */
53efb85a
MD
3522 struct lttng_event_field *new_tmp_event;
3523 size_t new_nbmem;
3524
3525 new_nbmem = nbmem << 1;
3526 DBG2("Reallocating event field list from %zu to %zu entries",
3527 nbmem, new_nbmem);
3528 new_tmp_event = realloc(tmp_event,
3529 new_nbmem * sizeof(struct lttng_event_field));
3530 if (new_tmp_event == NULL) {
c9d4793f
MD
3531 int release_ret;
3532
f37d259d 3533 PERROR("realloc ust app event fields");
c617c0c6 3534 free(tmp_event);
f37d259d 3535 ret = -ENOMEM;
c9d4793f
MD
3536 release_ret = ustctl_release_handle(app->sock, handle);
3537 pthread_mutex_unlock(&app->sock_lock);
3538 if (release_ret != -LTTNG_UST_ERR_EXITING && release_ret != -EPIPE) {
3539 ERR("Error releasing app handle for app %d with ret %d", app->sock, release_ret);
3540 }
f37d259d
MD
3541 goto rcu_error;
3542 }
53efb85a
MD
3543 /* Zero the new memory */
3544 memset(new_tmp_event + nbmem, 0,
3545 (new_nbmem - nbmem) * sizeof(struct lttng_event_field));
3546 nbmem = new_nbmem;
3547 tmp_event = new_tmp_event;
f37d259d 3548 }
f37d259d 3549
c617c0c6 3550 memcpy(tmp_event[count].field_name, uiter.field_name, LTTNG_UST_SYM_NAME_LEN);
2e84128e
DG
3551 /* Mapping between these enums matches 1 to 1. */
3552 tmp_event[count].type = (enum lttng_event_field_type) uiter.type;
c617c0c6 3553 tmp_event[count].nowrite = uiter.nowrite;
f37d259d 3554
c617c0c6
MD
3555 memcpy(tmp_event[count].event.name, uiter.event_name, LTTNG_UST_SYM_NAME_LEN);
3556 tmp_event[count].event.loglevel = uiter.loglevel;
2e84128e 3557 tmp_event[count].event.type = LTTNG_EVENT_TRACEPOINT;
c617c0c6
MD
3558 tmp_event[count].event.pid = app->pid;
3559 tmp_event[count].event.enabled = -1;
f37d259d
MD
3560 count++;
3561 }
c9d4793f
MD
3562 ret = ustctl_release_handle(app->sock, handle);
3563 pthread_mutex_unlock(&app->sock_lock);
3564 if (ret != -LTTNG_UST_ERR_EXITING && ret != -EPIPE) {
3565 ERR("Error releasing app handle for app %d with ret %d", app->sock, ret);
3566 }
f37d259d
MD
3567 }
3568
3569 ret = count;
c617c0c6 3570 *fields = tmp_event;
f37d259d
MD
3571
3572 DBG2("UST app list event fields done (%zu events)", count);
3573
3574rcu_error:
3575 rcu_read_unlock();
3576error:
840cb59c 3577 health_code_update();
f37d259d
MD
3578 return ret;
3579}
3580
5b4a0ec0
DG
3581/*
3582 * Free and clean all traceable apps of the global list.
36b588ed
MD
3583 *
3584 * Should _NOT_ be called with RCU read-side lock held.
5b4a0ec0
DG
3585 */
3586void ust_app_clean_list(void)
421cb601 3587{
5b4a0ec0 3588 int ret;
659ed79f 3589 struct ust_app *app;
bec39940 3590 struct lttng_ht_iter iter;
421cb601 3591
5b4a0ec0 3592 DBG2("UST app cleaning registered apps hash table");
421cb601 3593
5b4a0ec0 3594 rcu_read_lock();
421cb601 3595
659ed79f 3596 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
bec39940 3597 ret = lttng_ht_del(ust_app_ht, &iter);
525b0740 3598 assert(!ret);
659ed79f 3599 call_rcu(&app->pid_n.head, delete_ust_app_rcu);
421cb601
DG
3600 }
3601
852d0037 3602 /* Cleanup socket hash table */
659ed79f
DG
3603 cds_lfht_for_each_entry(ust_app_ht_by_sock->ht, &iter.iter, app,
3604 sock_n.node) {
852d0037 3605 ret = lttng_ht_del(ust_app_ht_by_sock, &iter);
bec39940
DG
3606 assert(!ret);
3607 }
852d0037 3608
d88aee68
DG
3609 /* Cleanup notify socket hash table */
3610 cds_lfht_for_each_entry(ust_app_ht_by_notify_sock->ht, &iter.iter, app,
3611 notify_sock_n.node) {
3612 ret = lttng_ht_del(ust_app_ht_by_notify_sock, &iter);
3613 assert(!ret);
3614 }
36b588ed 3615 rcu_read_unlock();
d88aee68 3616
bec39940 3617 /* Destroy is done only when the ht is empty */
0b2dc8df
MD
3618 ht_cleanup_push(ust_app_ht);
3619 ht_cleanup_push(ust_app_ht_by_sock);
3620 ht_cleanup_push(ust_app_ht_by_notify_sock);
5b4a0ec0
DG
3621}
3622
3623/*
3624 * Init UST app hash table.
3625 */
3626void ust_app_ht_alloc(void)
3627{
bec39940 3628 ust_app_ht = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
852d0037 3629 ust_app_ht_by_sock = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
d0b96690 3630 ust_app_ht_by_notify_sock = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
421cb601
DG
3631}
3632
78f0bacd
DG
3633/*
3634 * For a specific UST session, disable the channel for all registered apps.
3635 */
35a9059d 3636int ust_app_disable_channel_glb(struct ltt_ust_session *usess,
78f0bacd
DG
3637 struct ltt_ust_channel *uchan)
3638{
3639 int ret = 0;
bec39940
DG
3640 struct lttng_ht_iter iter;
3641 struct lttng_ht_node_str *ua_chan_node;
78f0bacd
DG
3642 struct ust_app *app;
3643 struct ust_app_session *ua_sess;
8535a6d9 3644 struct ust_app_channel *ua_chan;
78f0bacd
DG
3645
3646 if (usess == NULL || uchan == NULL) {
3647 ERR("Disabling UST global channel with NULL values");
3648 ret = -1;
3649 goto error;
3650 }
3651
d9bf3ca4 3652 DBG2("UST app disabling channel %s from global domain for session id %" PRIu64,
a991f516 3653 uchan->name, usess->id);
78f0bacd
DG
3654
3655 rcu_read_lock();
3656
3657 /* For every registered applications */
852d0037 3658 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
bec39940 3659 struct lttng_ht_iter uiter;
e0c7ec2b
DG
3660 if (!app->compatible) {
3661 /*
3662 * TODO: In time, we should notice the caller of this error by
3663 * telling him that this is a version error.
3664 */
3665 continue;
3666 }
78f0bacd
DG
3667 ua_sess = lookup_session_by_app(usess, app);
3668 if (ua_sess == NULL) {
3669 continue;
3670 }
3671
8535a6d9 3672 /* Get channel */
bec39940
DG
3673 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &uiter);
3674 ua_chan_node = lttng_ht_iter_get_node_str(&uiter);
8535a6d9
DG
3675 /* If the session if found for the app, the channel must be there */
3676 assert(ua_chan_node);
3677
3678 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node);
3679 /* The channel must not be already disabled */
3680 assert(ua_chan->enabled == 1);
3681
3682 /* Disable channel onto application */
3683 ret = disable_ust_app_channel(ua_sess, ua_chan, app);
78f0bacd
DG
3684 if (ret < 0) {
3685 /* XXX: We might want to report this error at some point... */
3686 continue;
3687 }
3688 }
3689
3690 rcu_read_unlock();
3691
3692error:
3693 return ret;
3694}
3695
3696/*
3697 * For a specific UST session, enable the channel for all registered apps.
3698 */
35a9059d 3699int ust_app_enable_channel_glb(struct ltt_ust_session *usess,
78f0bacd
DG
3700 struct ltt_ust_channel *uchan)
3701{
3702 int ret = 0;
bec39940 3703 struct lttng_ht_iter iter;
78f0bacd
DG
3704 struct ust_app *app;
3705 struct ust_app_session *ua_sess;
3706
3707 if (usess == NULL || uchan == NULL) {
3708 ERR("Adding UST global channel to NULL values");
3709 ret = -1;
3710 goto error;
3711 }
3712
d9bf3ca4 3713 DBG2("UST app enabling channel %s to global domain for session id %" PRIu64,
a991f516 3714 uchan->name, usess->id);
78f0bacd
DG
3715
3716 rcu_read_lock();
3717
3718 /* For every registered applications */
852d0037 3719 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
e0c7ec2b
DG
3720 if (!app->compatible) {
3721 /*
3722 * TODO: In time, we should notice the caller of this error by
3723 * telling him that this is a version error.
3724 */
3725 continue;
3726 }
78f0bacd
DG
3727 ua_sess = lookup_session_by_app(usess, app);
3728 if (ua_sess == NULL) {
3729 continue;
3730 }
3731
3732 /* Enable channel onto application */
3733 ret = enable_ust_app_channel(ua_sess, uchan, app);
3734 if (ret < 0) {
3735 /* XXX: We might want to report this error at some point... */
3736 continue;
3737 }
3738 }
3739
3740 rcu_read_unlock();
3741
3742error:
3743 return ret;
3744}
3745
b0a40d28
DG
3746/*
3747 * Disable an event in a channel and for a specific session.
3748 */
35a9059d
DG
3749int ust_app_disable_event_glb(struct ltt_ust_session *usess,
3750 struct ltt_ust_channel *uchan, struct ltt_ust_event *uevent)
b0a40d28
DG
3751{
3752 int ret = 0;
bec39940 3753 struct lttng_ht_iter iter, uiter;
7e3ed934 3754 struct lttng_ht_node_str *ua_chan_node;
b0a40d28
DG
3755 struct ust_app *app;
3756 struct ust_app_session *ua_sess;
3757 struct ust_app_channel *ua_chan;
3758 struct ust_app_event *ua_event;
3759
3760 DBG("UST app disabling event %s for all apps in channel "
d9bf3ca4
MD
3761 "%s for session id %" PRIu64,
3762 uevent->attr.name, uchan->name, usess->id);
b0a40d28
DG
3763
3764 rcu_read_lock();
3765
3766 /* For all registered applications */
852d0037 3767 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
e0c7ec2b
DG
3768 if (!app->compatible) {
3769 /*
3770 * TODO: In time, we should notice the caller of this error by
3771 * telling him that this is a version error.
3772 */
3773 continue;
3774 }
b0a40d28
DG
3775 ua_sess = lookup_session_by_app(usess, app);
3776 if (ua_sess == NULL) {
3777 /* Next app */
3778 continue;
3779 }
3780
3781 /* Lookup channel in the ust app session */
bec39940
DG
3782 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &uiter);
3783 ua_chan_node = lttng_ht_iter_get_node_str(&uiter);
b0a40d28 3784 if (ua_chan_node == NULL) {
d9bf3ca4 3785 DBG2("Channel %s not found in session id %" PRIu64 " for app pid %d."
852d0037 3786 "Skipping", uchan->name, usess->id, app->pid);
b0a40d28
DG
3787 continue;
3788 }
3789 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node);
3790
7e3ed934
JR
3791 ua_event = find_ust_app_event(ua_chan->events, uevent->attr.name,
3792 uevent->filter, uevent->attr.loglevel,
3793 uevent->exclusion);
3794 if (ua_event == NULL) {
b0a40d28 3795 DBG2("Event %s not found in channel %s for app pid %d."
852d0037 3796 "Skipping", uevent->attr.name, uchan->name, app->pid);
b0a40d28
DG
3797 continue;
3798 }
b0a40d28 3799
7f79d3a1 3800 ret = disable_ust_app_event(ua_sess, ua_event, app);
b0a40d28
DG
3801 if (ret < 0) {
3802 /* XXX: Report error someday... */
3803 continue;
3804 }
3805 }
3806
3807 rcu_read_unlock();
3808
3809 return ret;
3810}
3811
421cb601 3812/*
5b4a0ec0 3813 * For a specific UST session, create the channel for all registered apps.
421cb601 3814 */
35a9059d 3815int ust_app_create_channel_glb(struct ltt_ust_session *usess,
48842b30
DG
3816 struct ltt_ust_channel *uchan)
3817{
3d8ca23b 3818 int ret = 0, created;
bec39940 3819 struct lttng_ht_iter iter;
48842b30 3820 struct ust_app *app;
3d8ca23b 3821 struct ust_app_session *ua_sess = NULL;
48842b30 3822
fc34caaa
DG
3823 /* Very wrong code flow */
3824 assert(usess);
3825 assert(uchan);
421cb601 3826
d9bf3ca4 3827 DBG2("UST app adding channel %s to UST domain for session id %" PRIu64,
a991f516 3828 uchan->name, usess->id);
48842b30
DG
3829
3830 rcu_read_lock();
421cb601 3831
5b4a0ec0 3832 /* For every registered applications */
852d0037 3833 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
e0c7ec2b
DG
3834 if (!app->compatible) {
3835 /*
3836 * TODO: In time, we should notice the caller of this error by
3837 * telling him that this is a version error.
3838 */
3839 continue;
3840 }
edb67388
DG
3841 /*
3842 * Create session on the tracer side and add it to app session HT. Note
3843 * that if session exist, it will simply return a pointer to the ust
3844 * app session.
3845 */
3d8ca23b
DG
3846 ret = create_ust_app_session(usess, app, &ua_sess, &created);
3847 if (ret < 0) {
3848 switch (ret) {
3849 case -ENOTCONN:
3850 /*
3851 * The application's socket is not valid. Either a bad socket
3852 * or a timeout on it. We can't inform the caller that for a
3853 * specific app, the session failed so lets continue here.
3854 */
31cb5470 3855 ret = 0; /* Not an error. */
3d8ca23b
DG
3856 continue;
3857 case -ENOMEM:
3858 default:
3859 goto error_rcu_unlock;
3860 }
48842b30 3861 }
3d8ca23b 3862 assert(ua_sess);
48842b30 3863
d0b96690 3864 pthread_mutex_lock(&ua_sess->lock);
d4769e14
MD
3865
3866 if (ua_sess->deleted) {
3867 pthread_mutex_unlock(&ua_sess->lock);
3868 continue;
3869 }
3870
d65d2de8
DG
3871 if (!strncmp(uchan->name, DEFAULT_METADATA_NAME,
3872 sizeof(uchan->name))) {
ad7a9107
DG
3873 copy_channel_attr_to_ustctl(&ua_sess->metadata_attr, &uchan->attr);
3874 ret = 0;
d65d2de8
DG
3875 } else {
3876 /* Create channel onto application. We don't need the chan ref. */
3877 ret = create_ust_app_channel(ua_sess, uchan, app,
3878 LTTNG_UST_CHAN_PER_CPU, usess, NULL);
3879 }
d0b96690 3880 pthread_mutex_unlock(&ua_sess->lock);
3d8ca23b 3881 if (ret < 0) {
3d8ca23b
DG
3882 /* Cleanup the created session if it's the case. */
3883 if (created) {
d0b96690 3884 destroy_app_session(app, ua_sess);
3d8ca23b 3885 }
31cb5470
MD
3886 switch (ret) {
3887 case -ENOTCONN:
3888 /*
3889 * The application's socket is not valid. Either a bad socket
3890 * or a timeout on it. We can't inform the caller that for a
3891 * specific app, the session failed so lets continue here.
3892 */
3893 ret = 0; /* Not an error. */
3894 continue;
3895 case -ENOMEM:
3896 default:
3897 goto error_rcu_unlock;
3898 }
48842b30 3899 }
48842b30 3900 }
5b4a0ec0 3901
95e047ff 3902error_rcu_unlock:
48842b30 3903 rcu_read_unlock();
3c14c33f 3904 return ret;
48842b30
DG
3905}
3906
5b4a0ec0 3907/*
edb67388 3908 * Enable event for a specific session and channel on the tracer.
5b4a0ec0 3909 */
35a9059d 3910int ust_app_enable_event_glb(struct ltt_ust_session *usess,
48842b30
DG
3911 struct ltt_ust_channel *uchan, struct ltt_ust_event *uevent)
3912{
3913 int ret = 0;
bec39940 3914 struct lttng_ht_iter iter, uiter;
18eace3b 3915 struct lttng_ht_node_str *ua_chan_node;
48842b30
DG
3916 struct ust_app *app;
3917 struct ust_app_session *ua_sess;
3918 struct ust_app_channel *ua_chan;
3919 struct ust_app_event *ua_event;
48842b30 3920
d9bf3ca4 3921 DBG("UST app enabling event %s for all apps for session id %" PRIu64,
a991f516 3922 uevent->attr.name, usess->id);
48842b30 3923
edb67388
DG
3924 /*
3925 * NOTE: At this point, this function is called only if the session and
3926 * channel passed are already created for all apps. and enabled on the
3927 * tracer also.
3928 */
3929
48842b30 3930 rcu_read_lock();
421cb601
DG
3931
3932 /* For all registered applications */
852d0037 3933 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
e0c7ec2b
DG
3934 if (!app->compatible) {
3935 /*
3936 * TODO: In time, we should notice the caller of this error by
3937 * telling him that this is a version error.
3938 */
3939 continue;
3940 }
edb67388 3941 ua_sess = lookup_session_by_app(usess, app);
c4a1715b
DG
3942 if (!ua_sess) {
3943 /* The application has problem or is probably dead. */
3944 continue;
3945 }
ba767faf 3946
d0b96690
DG
3947 pthread_mutex_lock(&ua_sess->lock);
3948
d4769e14
MD
3949 if (ua_sess->deleted) {
3950 pthread_mutex_unlock(&ua_sess->lock);
3951 continue;
3952 }
3953
edb67388 3954 /* Lookup channel in the ust app session */
bec39940
DG
3955 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &uiter);
3956 ua_chan_node = lttng_ht_iter_get_node_str(&uiter);
31cb5470
MD
3957 /*
3958 * It is possible that the channel cannot be found is
3959 * the channel/event creation occurs concurrently with
3960 * an application exit.
3961 */
3962 if (!ua_chan_node) {
3963 pthread_mutex_unlock(&ua_sess->lock);
3964 continue;
3965 }
edb67388
DG
3966
3967 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node);
3968
18eace3b
DG
3969 /* Get event node */
3970 ua_event = find_ust_app_event(ua_chan->events, uevent->attr.name,
39c5a3a7 3971 uevent->filter, uevent->attr.loglevel, uevent->exclusion);
18eace3b 3972 if (ua_event == NULL) {
7f79d3a1 3973 DBG3("UST app enable event %s not found for app PID %d."
852d0037 3974 "Skipping app", uevent->attr.name, app->pid);
d0b96690 3975 goto next_app;
35a9059d 3976 }
35a9059d
DG
3977
3978 ret = enable_ust_app_event(ua_sess, ua_event, app);
3979 if (ret < 0) {
d0b96690 3980 pthread_mutex_unlock(&ua_sess->lock);
7f79d3a1 3981 goto error;
48842b30 3982 }
d0b96690
DG
3983 next_app:
3984 pthread_mutex_unlock(&ua_sess->lock);
edb67388
DG
3985 }
3986
7f79d3a1 3987error:
edb67388 3988 rcu_read_unlock();
edb67388
DG
3989 return ret;
3990}
3991
3992/*
3993 * For a specific existing UST session and UST channel, creates the event for
3994 * all registered apps.
3995 */
35a9059d 3996int ust_app_create_event_glb(struct ltt_ust_session *usess,
edb67388
DG
3997 struct ltt_ust_channel *uchan, struct ltt_ust_event *uevent)
3998{
3999 int ret = 0;
bec39940
DG
4000 struct lttng_ht_iter iter, uiter;
4001 struct lttng_ht_node_str *ua_chan_node;
edb67388
DG
4002 struct ust_app *app;
4003 struct ust_app_session *ua_sess;
4004 struct ust_app_channel *ua_chan;
4005
d9bf3ca4 4006 DBG("UST app creating event %s for all apps for session id %" PRIu64,
a991f516 4007 uevent->attr.name, usess->id);
edb67388 4008
edb67388
DG
4009 rcu_read_lock();
4010
4011 /* For all registered applications */
852d0037 4012 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
e0c7ec2b
DG
4013 if (!app->compatible) {
4014 /*
4015 * TODO: In time, we should notice the caller of this error by
4016 * telling him that this is a version error.
4017 */
4018 continue;
4019 }
edb67388 4020 ua_sess = lookup_session_by_app(usess, app);
c4a1715b
DG
4021 if (!ua_sess) {
4022 /* The application has problem or is probably dead. */
4023 continue;
4024 }
48842b30 4025
d0b96690 4026 pthread_mutex_lock(&ua_sess->lock);
d4769e14
MD
4027
4028 if (ua_sess->deleted) {
4029 pthread_mutex_unlock(&ua_sess->lock);
4030 continue;
4031 }
4032
48842b30 4033 /* Lookup channel in the ust app session */
bec39940
DG
4034 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &uiter);
4035 ua_chan_node = lttng_ht_iter_get_node_str(&uiter);
edb67388
DG
4036 /* If the channel is not found, there is a code flow error */
4037 assert(ua_chan_node);
4038
48842b30
DG
4039 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node);
4040
edb67388 4041 ret = create_ust_app_event(ua_sess, ua_chan, uevent, app);
d0b96690 4042 pthread_mutex_unlock(&ua_sess->lock);
edb67388 4043 if (ret < 0) {
49c336c1 4044 if (ret != -LTTNG_UST_ERR_EXIST) {
fc34caaa
DG
4045 /* Possible value at this point: -ENOMEM. If so, we stop! */
4046 break;
4047 }
4048 DBG2("UST app event %s already exist on app PID %d",
852d0037 4049 uevent->attr.name, app->pid);
5b4a0ec0 4050 continue;
48842b30 4051 }
48842b30 4052 }
5b4a0ec0 4053
48842b30
DG
4054 rcu_read_unlock();
4055
4056 return ret;
4057}
4058
5b4a0ec0
DG
4059/*
4060 * Start tracing for a specific UST session and app.
4061 */
b34cbebf 4062static
421cb601 4063int ust_app_start_trace(struct ltt_ust_session *usess, struct ust_app *app)
48842b30
DG
4064{
4065 int ret = 0;
48842b30 4066 struct ust_app_session *ua_sess;
48842b30 4067
852d0037 4068 DBG("Starting tracing for ust app pid %d", app->pid);
5cf5d0e7 4069
509cbaf8
MD
4070 rcu_read_lock();
4071
e0c7ec2b
DG
4072 if (!app->compatible) {
4073 goto end;
4074 }
4075
421cb601
DG
4076 ua_sess = lookup_session_by_app(usess, app);
4077 if (ua_sess == NULL) {
d42f20df
DG
4078 /* The session is in teardown process. Ignore and continue. */
4079 goto end;
421cb601 4080 }
48842b30 4081
d0b96690
DG
4082 pthread_mutex_lock(&ua_sess->lock);
4083
d4769e14
MD
4084 if (ua_sess->deleted) {
4085 pthread_mutex_unlock(&ua_sess->lock);
4086 goto end;
4087 }
4088
aea829b3
DG
4089 /* Upon restart, we skip the setup, already done */
4090 if (ua_sess->started) {
8be98f9a 4091 goto skip_setup;
aea829b3 4092 }
8be98f9a 4093
a4b92340
DG
4094 /* Create directories if consumer is LOCAL and has a path defined. */
4095 if (usess->consumer->type == CONSUMER_DST_LOCAL &&
4096 strlen(usess->consumer->dst.trace_path) > 0) {
4097 ret = run_as_mkdir_recursive(usess->consumer->dst.trace_path,
7972aab2 4098 S_IRWXU | S_IRWXG, ua_sess->euid, ua_sess->egid);
a4b92340 4099 if (ret < 0) {
4ffbac14 4100 if (errno != EEXIST) {
a4b92340 4101 ERR("Trace directory creation error");
d0b96690 4102 goto error_unlock;
421cb601 4103 }
173af62f 4104 }
7753dea8 4105 }
aea829b3 4106
d65d2de8
DG
4107 /*
4108 * Create the metadata for the application. This returns gracefully if a
4109 * metadata was already set for the session.
4110 */
ad7a9107 4111 ret = create_ust_app_metadata(ua_sess, app, usess->consumer);
421cb601 4112 if (ret < 0) {
d0b96690 4113 goto error_unlock;
421cb601 4114 }
48842b30 4115
840cb59c 4116 health_code_update();
86acf0da 4117
8be98f9a 4118skip_setup:
421cb601 4119 /* This start the UST tracing */
c9d4793f 4120 pthread_mutex_lock(&app->sock_lock);
852d0037 4121 ret = ustctl_start_session(app->sock, ua_sess->handle);
c9d4793f 4122 pthread_mutex_unlock(&app->sock_lock);
421cb601 4123 if (ret < 0) {
ffe60014
DG
4124 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
4125 ERR("Error starting tracing for app pid: %d (ret: %d)",
4126 app->pid, ret);
4127 } else {
4128 DBG("UST app start session failed. Application is dead.");
3757b385
DG
4129 /*
4130 * This is normal behavior, an application can die during the
4131 * creation process. Don't report an error so the execution can
4132 * continue normally.
4133 */
4134 pthread_mutex_unlock(&ua_sess->lock);
4135 goto end;
ffe60014 4136 }
d0b96690 4137 goto error_unlock;
421cb601 4138 }
5b4a0ec0 4139
55c3953d
DG
4140 /* Indicate that the session has been started once */
4141 ua_sess->started = 1;
4142
d0b96690
DG
4143 pthread_mutex_unlock(&ua_sess->lock);
4144
840cb59c 4145 health_code_update();
86acf0da 4146
421cb601 4147 /* Quiescent wait after starting trace */
c9d4793f 4148 pthread_mutex_lock(&app->sock_lock);
ffe60014 4149 ret = ustctl_wait_quiescent(app->sock);
c9d4793f 4150 pthread_mutex_unlock(&app->sock_lock);
ffe60014
DG
4151 if (ret < 0 && ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
4152 ERR("UST app wait quiescent failed for app pid %d ret %d",
4153 app->pid, ret);
4154 }
48842b30 4155
e0c7ec2b
DG
4156end:
4157 rcu_read_unlock();
840cb59c 4158 health_code_update();
421cb601 4159 return 0;
48842b30 4160
d0b96690
DG
4161error_unlock:
4162 pthread_mutex_unlock(&ua_sess->lock);
509cbaf8 4163 rcu_read_unlock();
840cb59c 4164 health_code_update();
421cb601
DG
4165 return -1;
4166}
48842b30 4167
8be98f9a
MD
4168/*
4169 * Stop tracing for a specific UST session and app.
4170 */
b34cbebf 4171static
8be98f9a
MD
4172int ust_app_stop_trace(struct ltt_ust_session *usess, struct ust_app *app)
4173{
4174 int ret = 0;
4175 struct ust_app_session *ua_sess;
7972aab2 4176 struct ust_registry_session *registry;
8be98f9a 4177
852d0037 4178 DBG("Stopping tracing for ust app pid %d", app->pid);
8be98f9a
MD
4179
4180 rcu_read_lock();
4181
e0c7ec2b 4182 if (!app->compatible) {
d88aee68 4183 goto end_no_session;
e0c7ec2b
DG
4184 }
4185
8be98f9a
MD
4186 ua_sess = lookup_session_by_app(usess, app);
4187 if (ua_sess == NULL) {
d88aee68 4188 goto end_no_session;
8be98f9a
MD
4189 }
4190
d88aee68
DG
4191 pthread_mutex_lock(&ua_sess->lock);
4192
d4769e14
MD
4193 if (ua_sess->deleted) {
4194 pthread_mutex_unlock(&ua_sess->lock);
4195 goto end_no_session;
4196 }
4197
9bc07046
DG
4198 /*
4199 * If started = 0, it means that stop trace has been called for a session
c45536e1
DG
4200 * that was never started. It's possible since we can have a fail start
4201 * from either the application manager thread or the command thread. Simply
4202 * indicate that this is a stop error.
9bc07046 4203 */
f9dfc3d9 4204 if (!ua_sess->started) {
c45536e1
DG
4205 goto error_rcu_unlock;
4206 }
7db205b5 4207
840cb59c 4208 health_code_update();
86acf0da 4209
9d6c7d3f 4210 /* This inhibits UST tracing */
c9d4793f 4211 pthread_mutex_lock(&app->sock_lock);
852d0037 4212 ret = ustctl_stop_session(app->sock, ua_sess->handle);
c9d4793f 4213 pthread_mutex_unlock(&app->sock_lock);
9d6c7d3f 4214 if (ret < 0) {
ffe60014
DG
4215 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
4216 ERR("Error stopping tracing for app pid: %d (ret: %d)",
4217 app->pid, ret);
4218 } else {
4219 DBG("UST app stop session failed. Application is dead.");
3757b385
DG
4220 /*
4221 * This is normal behavior, an application can die during the
4222 * creation process. Don't report an error so the execution can
4223 * continue normally.
4224 */
4225 goto end_unlock;
ffe60014 4226 }
9d6c7d3f
DG
4227 goto error_rcu_unlock;
4228 }
4229
840cb59c 4230 health_code_update();
86acf0da 4231
9d6c7d3f 4232 /* Quiescent wait after stopping trace */
c9d4793f 4233 pthread_mutex_lock(&app->sock_lock);
ffe60014 4234 ret = ustctl_wait_quiescent(app->sock);
c9d4793f 4235 pthread_mutex_unlock(&app->sock_lock);
ffe60014
DG
4236 if (ret < 0 && ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
4237 ERR("UST app wait quiescent failed for app pid %d ret %d",
4238 app->pid, ret);
4239 }
9d6c7d3f 4240
840cb59c 4241 health_code_update();
86acf0da 4242
b34cbebf
MD
4243 registry = get_session_registry(ua_sess);
4244 assert(registry);
1b532a60 4245
e3ae3c71
MD
4246 /* Push metadata for application before freeing the application. */
4247 (void) push_metadata(registry, ua_sess->consumer);
b34cbebf 4248
3757b385 4249end_unlock:
b34cbebf
MD
4250 pthread_mutex_unlock(&ua_sess->lock);
4251end_no_session:
4252 rcu_read_unlock();
4253 health_code_update();
4254 return 0;
4255
4256error_rcu_unlock:
4257 pthread_mutex_unlock(&ua_sess->lock);
4258 rcu_read_unlock();
4259 health_code_update();
4260 return -1;
4261}
4262
b34cbebf 4263static
99090057
MD
4264int ust_app_flush_app_session(struct ust_app *app,
4265 struct ust_app_session *ua_sess)
b34cbebf 4266{
99090057 4267 int ret, retval = 0;
b34cbebf 4268 struct lttng_ht_iter iter;
b34cbebf 4269 struct ust_app_channel *ua_chan;
99090057 4270 struct consumer_socket *socket;
b34cbebf 4271
99090057 4272 DBG("Flushing app session buffers for ust app pid %d", app->pid);
b34cbebf
MD
4273
4274 rcu_read_lock();
4275
4276 if (!app->compatible) {
99090057 4277 goto end_not_compatible;
b34cbebf
MD
4278 }
4279
4280 pthread_mutex_lock(&ua_sess->lock);
4281
d4769e14
MD
4282 if (ua_sess->deleted) {
4283 goto end_deleted;
4284 }
4285
b34cbebf
MD
4286 health_code_update();
4287
9d6c7d3f 4288 /* Flushing buffers */
99090057
MD
4289 socket = consumer_find_socket_by_bitness(app->bits_per_long,
4290 ua_sess->consumer);
e3ae3c71
MD
4291
4292 /* Flush buffers and push metadata. */
4293 switch (ua_sess->buffer_type) {
4294 case LTTNG_BUFFER_PER_PID:
4295 cds_lfht_for_each_entry(ua_sess->channels->ht, &iter.iter, ua_chan,
4296 node.node) {
4297 health_code_update();
4298 assert(ua_chan->is_sent);
4299 ret = consumer_flush_channel(socket, ua_chan->key);
4300 if (ret) {
4301 ERR("Error flushing consumer channel");
4302 retval = -1;
4303 continue;
4304 }
8be98f9a 4305 }
e3ae3c71
MD
4306 break;
4307 case LTTNG_BUFFER_PER_UID:
4308 default:
4309 assert(0);
4310 break;
8be98f9a 4311 }
8be98f9a 4312
840cb59c 4313 health_code_update();
86acf0da 4314
d4769e14 4315end_deleted:
d88aee68 4316 pthread_mutex_unlock(&ua_sess->lock);
e3ae3c71 4317
99090057
MD
4318end_not_compatible:
4319 rcu_read_unlock();
4320 health_code_update();
4321 return retval;
4322}
4323
4324/*
e3ae3c71
MD
4325 * Flush buffers for all applications for a specific UST session.
4326 * Called with UST session lock held.
99090057
MD
4327 */
4328static
e3ae3c71 4329int ust_app_flush_session(struct ltt_ust_session *usess)
99090057
MD
4330
4331{
17b1ec27 4332 int ret = 0;
99090057 4333
e3ae3c71 4334 DBG("Flushing session buffers for all ust apps");
99090057
MD
4335
4336 rcu_read_lock();
4337
e3ae3c71
MD
4338 /* Flush buffers and push metadata. */
4339 switch (usess->buffer_type) {
4340 case LTTNG_BUFFER_PER_UID:
4341 {
4342 struct buffer_reg_uid *reg;
4343 struct lttng_ht_iter iter;
4344
4345 /* Flush all per UID buffers associated to that session. */
4346 cds_list_for_each_entry(reg, &usess->buffer_reg_uid_list, lnode) {
4347 struct ust_registry_session *ust_session_reg;
4348 struct buffer_reg_channel *reg_chan;
4349 struct consumer_socket *socket;
4350
4351 /* Get consumer socket to use to push the metadata.*/
4352 socket = consumer_find_socket_by_bitness(reg->bits_per_long,
4353 usess->consumer);
4354 if (!socket) {
4355 /* Ignore request if no consumer is found for the session. */
4356 continue;
4357 }
4358
4359 cds_lfht_for_each_entry(reg->registry->channels->ht, &iter.iter,
4360 reg_chan, node.node) {
4361 /*
4362 * The following call will print error values so the return
4363 * code is of little importance because whatever happens, we
4364 * have to try them all.
4365 */
4366 (void) consumer_flush_channel(socket, reg_chan->consumer_key);
4367 }
4368
4369 ust_session_reg = reg->registry->reg.ust;
4370 /* Push metadata. */
4371 (void) push_metadata(ust_session_reg, usess->consumer);
4372 }
e3ae3c71
MD
4373 break;
4374 }
4375 case LTTNG_BUFFER_PER_PID:
4376 {
4377 struct ust_app_session *ua_sess;
4378 struct lttng_ht_iter iter;
4379 struct ust_app *app;
4380
4381 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
4382 ua_sess = lookup_session_by_app(usess, app);
4383 if (ua_sess == NULL) {
4384 continue;
4385 }
4386 (void) ust_app_flush_app_session(app, ua_sess);
4387 }
4388 break;
4389 }
4390 default:
17b1ec27 4391 ret = -1;
e3ae3c71
MD
4392 assert(0);
4393 break;
99090057 4394 }
99090057 4395
7db205b5 4396 rcu_read_unlock();
840cb59c 4397 health_code_update();
99090057 4398 return ret;
8be98f9a
MD
4399}
4400
84cd17c6
MD
4401/*
4402 * Destroy a specific UST session in apps.
4403 */
3353de95 4404static int destroy_trace(struct ltt_ust_session *usess, struct ust_app *app)
84cd17c6 4405{
ffe60014 4406 int ret;
84cd17c6 4407 struct ust_app_session *ua_sess;
bec39940 4408 struct lttng_ht_iter iter;
d9bf3ca4 4409 struct lttng_ht_node_u64 *node;
84cd17c6 4410
852d0037 4411 DBG("Destroy tracing for ust app pid %d", app->pid);
84cd17c6
MD
4412
4413 rcu_read_lock();
4414
e0c7ec2b
DG
4415 if (!app->compatible) {
4416 goto end;
4417 }
4418
84cd17c6 4419 __lookup_session_by_app(usess, app, &iter);
d9bf3ca4 4420 node = lttng_ht_iter_get_node_u64(&iter);
84cd17c6 4421 if (node == NULL) {
d42f20df
DG
4422 /* Session is being or is deleted. */
4423 goto end;
84cd17c6
MD
4424 }
4425 ua_sess = caa_container_of(node, struct ust_app_session, node);
c4a1715b 4426
840cb59c 4427 health_code_update();
d0b96690 4428 destroy_app_session(app, ua_sess);
84cd17c6 4429
840cb59c 4430 health_code_update();
7db205b5 4431
84cd17c6 4432 /* Quiescent wait after stopping trace */
c9d4793f 4433 pthread_mutex_lock(&app->sock_lock);
ffe60014 4434 ret = ustctl_wait_quiescent(app->sock);
c9d4793f 4435 pthread_mutex_unlock(&app->sock_lock);
ffe60014
DG
4436 if (ret < 0 && ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
4437 ERR("UST app wait quiescent failed for app pid %d ret %d",
4438 app->pid, ret);
4439 }
e0c7ec2b
DG
4440end:
4441 rcu_read_unlock();
840cb59c 4442 health_code_update();
84cd17c6 4443 return 0;
84cd17c6
MD
4444}
4445
5b4a0ec0
DG
4446/*
4447 * Start tracing for the UST session.
4448 */
421cb601
DG
4449int ust_app_start_trace_all(struct ltt_ust_session *usess)
4450{
4451 int ret = 0;
bec39940 4452 struct lttng_ht_iter iter;
421cb601 4453 struct ust_app *app;
48842b30 4454
421cb601
DG
4455 DBG("Starting all UST traces");
4456
4457 rcu_read_lock();
421cb601 4458
852d0037 4459 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
421cb601 4460 ret = ust_app_start_trace(usess, app);
48842b30 4461 if (ret < 0) {
5b4a0ec0
DG
4462 /* Continue to next apps even on error */
4463 continue;
48842b30 4464 }
48842b30 4465 }
5b4a0ec0 4466
48842b30
DG
4467 rcu_read_unlock();
4468
4469 return 0;
4470}
487cf67c 4471
8be98f9a
MD
4472/*
4473 * Start tracing for the UST session.
e3ae3c71 4474 * Called with UST session lock held.
8be98f9a
MD
4475 */
4476int ust_app_stop_trace_all(struct ltt_ust_session *usess)
4477{
4478 int ret = 0;
bec39940 4479 struct lttng_ht_iter iter;
8be98f9a
MD
4480 struct ust_app *app;
4481
4482 DBG("Stopping all UST traces");
4483
4484 rcu_read_lock();
4485
b34cbebf
MD
4486 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
4487 ret = ust_app_stop_trace(usess, app);
4488 if (ret < 0) {
4489 /* Continue to next apps even on error */
4490 continue;
4491 }
4492 }
4493
e3ae3c71 4494 (void) ust_app_flush_session(usess);
8be98f9a
MD
4495
4496 rcu_read_unlock();
4497
4498 return 0;
4499}
4500
84cd17c6
MD
4501/*
4502 * Destroy app UST session.
4503 */
4504int ust_app_destroy_trace_all(struct ltt_ust_session *usess)
4505{
4506 int ret = 0;
bec39940 4507 struct lttng_ht_iter iter;
84cd17c6
MD
4508 struct ust_app *app;
4509
4510 DBG("Destroy all UST traces");
4511
4512 rcu_read_lock();
4513
852d0037 4514 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
3353de95 4515 ret = destroy_trace(usess, app);
84cd17c6
MD
4516 if (ret < 0) {
4517 /* Continue to next apps even on error */
4518 continue;
4519 }
4520 }
4521
4522 rcu_read_unlock();
4523
4524 return 0;
4525}
4526
5b4a0ec0
DG
4527/*
4528 * Add channels/events from UST global domain to registered apps at sock.
4529 */
487cf67c
DG
4530void ust_app_global_update(struct ltt_ust_session *usess, int sock)
4531{
55c54cce 4532 int ret = 0;
31746f93 4533 struct lttng_ht_iter iter, uiter;
487cf67c 4534 struct ust_app *app;
3d8ca23b 4535 struct ust_app_session *ua_sess = NULL;
487cf67c
DG
4536 struct ust_app_channel *ua_chan;
4537 struct ust_app_event *ua_event;
727d5404 4538 struct ust_app_ctx *ua_ctx;
1f3580c7 4539
95e047ff 4540 assert(usess);
ffe60014 4541 assert(sock >= 0);
1f3580c7 4542
d9bf3ca4 4543 DBG2("UST app global update for app sock %d for session id %" PRIu64, sock,
a991f516 4544 usess->id);
487cf67c 4545
284d8f55
DG
4546 rcu_read_lock();
4547
f20baf8e 4548 app = ust_app_find_by_sock(sock);
487cf67c 4549 if (app == NULL) {
d88aee68
DG
4550 /*
4551 * Application can be unregistered before so this is possible hence
4552 * simply stopping the update.
4553 */
4554 DBG3("UST app update failed to find app sock %d", sock);
487cf67c
DG
4555 goto error;
4556 }
4557
e0c7ec2b
DG
4558 if (!app->compatible) {
4559 goto error;
4560 }
4561
3d8ca23b
DG
4562 ret = create_ust_app_session(usess, app, &ua_sess, NULL);
4563 if (ret < 0) {
4564 /* Tracer is probably gone or ENOMEM. */
487cf67c
DG
4565 goto error;
4566 }
3d8ca23b 4567 assert(ua_sess);
487cf67c 4568
d0b96690
DG
4569 pthread_mutex_lock(&ua_sess->lock);
4570
d4769e14
MD
4571 if (ua_sess->deleted) {
4572 pthread_mutex_unlock(&ua_sess->lock);
4573 goto error;
4574 }
4575
284d8f55 4576 /*
d0b96690 4577 * We can iterate safely here over all UST app session since the create ust
284d8f55
DG
4578 * app session above made a shadow copy of the UST global domain from the
4579 * ltt ust session.
4580 */
bec39940
DG
4581 cds_lfht_for_each_entry(ua_sess->channels->ht, &iter.iter, ua_chan,
4582 node.node) {
ad7a9107 4583 ret = do_create_channel(app, usess, ua_sess, ua_chan);
31cb5470 4584 if (ret < 0 && ret != -ENOTCONN) {
ad7a9107 4585 /*
31cb5470
MD
4586 * Stop everything. On error, the application
4587 * failed, no more file descriptor are available
4588 * or ENOMEM so stopping here is the only thing
4589 * we can do for now. The only exception is
4590 * -ENOTCONN, which indicates that the application
4591 * has exit.
ad7a9107
DG
4592 */
4593 goto error_unlock;
487cf67c
DG
4594 }
4595
31746f93
DG
4596 /*
4597 * Add context using the list so they are enabled in the same order the
4598 * user added them.
4599 */
4600 cds_list_for_each_entry(ua_ctx, &ua_chan->ctx_list, list) {
727d5404
DG
4601 ret = create_ust_channel_context(ua_chan, ua_ctx, app);
4602 if (ret < 0) {
d0b96690 4603 goto error_unlock;
727d5404
DG
4604 }
4605 }
4606
4607
284d8f55 4608 /* For each events */
bec39940
DG
4609 cds_lfht_for_each_entry(ua_chan->events->ht, &uiter.iter, ua_event,
4610 node.node) {
284d8f55
DG
4611 ret = create_ust_event(app, ua_sess, ua_chan, ua_event);
4612 if (ret < 0) {
d0b96690 4613 goto error_unlock;
487cf67c 4614 }
36dc12cc 4615 }
487cf67c
DG
4616 }
4617
d0b96690
DG
4618 pthread_mutex_unlock(&ua_sess->lock);
4619
14fb1ebe 4620 if (usess->active) {
421cb601 4621 ret = ust_app_start_trace(usess, app);
36dc12cc 4622 if (ret < 0) {
36dc12cc
DG
4623 goto error;
4624 }
4625
852d0037 4626 DBG2("UST trace started for app pid %d", app->pid);
36dc12cc
DG
4627 }
4628
ffe60014
DG
4629 /* Everything went well at this point. */
4630 rcu_read_unlock();
4631 return;
4632
d0b96690
DG
4633error_unlock:
4634 pthread_mutex_unlock(&ua_sess->lock);
487cf67c 4635error:
ffe60014 4636 if (ua_sess) {
d0b96690 4637 destroy_app_session(app, ua_sess);
ffe60014 4638 }
487cf67c
DG
4639 rcu_read_unlock();
4640 return;
4641}
55cc08a6
DG
4642
4643/*
4644 * Add context to a specific channel for global UST domain.
4645 */
4646int ust_app_add_ctx_channel_glb(struct ltt_ust_session *usess,
4647 struct ltt_ust_channel *uchan, struct ltt_ust_context *uctx)
4648{
4649 int ret = 0;
bec39940
DG
4650 struct lttng_ht_node_str *ua_chan_node;
4651 struct lttng_ht_iter iter, uiter;
55cc08a6
DG
4652 struct ust_app_channel *ua_chan = NULL;
4653 struct ust_app_session *ua_sess;
4654 struct ust_app *app;
4655
4656 rcu_read_lock();
4657
852d0037 4658 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
e0c7ec2b
DG
4659 if (!app->compatible) {
4660 /*
4661 * TODO: In time, we should notice the caller of this error by
4662 * telling him that this is a version error.
4663 */
4664 continue;
4665 }
55cc08a6
DG
4666 ua_sess = lookup_session_by_app(usess, app);
4667 if (ua_sess == NULL) {
4668 continue;
4669 }
4670
d0b96690 4671 pthread_mutex_lock(&ua_sess->lock);
d4769e14
MD
4672
4673 if (ua_sess->deleted) {
4674 pthread_mutex_unlock(&ua_sess->lock);
4675 continue;
4676 }
4677
55cc08a6 4678 /* Lookup channel in the ust app session */
bec39940
DG
4679 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &uiter);
4680 ua_chan_node = lttng_ht_iter_get_node_str(&uiter);
55cc08a6 4681 if (ua_chan_node == NULL) {
d0b96690 4682 goto next_app;
55cc08a6
DG
4683 }
4684 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel,
4685 node);
55cc08a6
DG
4686 ret = create_ust_app_channel_context(ua_sess, ua_chan, &uctx->ctx, app);
4687 if (ret < 0) {
d0b96690 4688 goto next_app;
55cc08a6 4689 }
d0b96690
DG
4690 next_app:
4691 pthread_mutex_unlock(&ua_sess->lock);
55cc08a6
DG
4692 }
4693
55cc08a6
DG
4694 rcu_read_unlock();
4695 return ret;
4696}
4697
76d45b40
DG
4698/*
4699 * Enable event for a channel from a UST session for a specific PID.
4700 */
4701int ust_app_enable_event_pid(struct ltt_ust_session *usess,
4702 struct ltt_ust_channel *uchan, struct ltt_ust_event *uevent, pid_t pid)
4703{
4704 int ret = 0;
bec39940 4705 struct lttng_ht_iter iter;
18eace3b 4706 struct lttng_ht_node_str *ua_chan_node;
76d45b40
DG
4707 struct ust_app *app;
4708 struct ust_app_session *ua_sess;
4709 struct ust_app_channel *ua_chan;
4710 struct ust_app_event *ua_event;
4711
4712 DBG("UST app enabling event %s for PID %d", uevent->attr.name, pid);
4713
4714 rcu_read_lock();
4715
4716 app = ust_app_find_by_pid(pid);
4717 if (app == NULL) {
4718 ERR("UST app enable event per PID %d not found", pid);
4719 ret = -1;
d0b96690 4720 goto end;
76d45b40
DG
4721 }
4722
e0c7ec2b
DG
4723 if (!app->compatible) {
4724 ret = 0;
d0b96690 4725 goto end;
e0c7ec2b
DG
4726 }
4727
76d45b40 4728 ua_sess = lookup_session_by_app(usess, app);
c4a1715b
DG
4729 if (!ua_sess) {
4730 /* The application has problem or is probably dead. */
d0b96690
DG
4731 ret = 0;
4732 goto end;
c4a1715b 4733 }
76d45b40 4734
d0b96690 4735 pthread_mutex_lock(&ua_sess->lock);
d4769e14
MD
4736
4737 if (ua_sess->deleted) {
4738 ret = 0;
4739 goto end_unlock;
4740 }
4741
76d45b40 4742 /* Lookup channel in the ust app session */
bec39940
DG
4743 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &iter);
4744 ua_chan_node = lttng_ht_iter_get_node_str(&iter);
76d45b40
DG
4745 /* If the channel is not found, there is a code flow error */
4746 assert(ua_chan_node);
4747
4748 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node);
4749
18eace3b 4750 ua_event = find_ust_app_event(ua_chan->events, uevent->attr.name,
39c5a3a7 4751 uevent->filter, uevent->attr.loglevel, uevent->exclusion);
18eace3b 4752 if (ua_event == NULL) {
76d45b40
DG
4753 ret = create_ust_app_event(ua_sess, ua_chan, uevent, app);
4754 if (ret < 0) {
d0b96690 4755 goto end_unlock;
76d45b40
DG
4756 }
4757 } else {
76d45b40
DG
4758 ret = enable_ust_app_event(ua_sess, ua_event, app);
4759 if (ret < 0) {
d0b96690 4760 goto end_unlock;
76d45b40
DG
4761 }
4762 }
4763
d0b96690
DG
4764end_unlock:
4765 pthread_mutex_unlock(&ua_sess->lock);
4766end:
76d45b40
DG
4767 rcu_read_unlock();
4768 return ret;
4769}
7f79d3a1 4770
4466912f
DG
4771/*
4772 * Calibrate registered applications.
4773 */
4774int ust_app_calibrate_glb(struct lttng_ust_calibrate *calibrate)
4775{
4776 int ret = 0;
4777 struct lttng_ht_iter iter;
4778 struct ust_app *app;
4779
4780 rcu_read_lock();
4781
852d0037 4782 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
4466912f
DG
4783 if (!app->compatible) {
4784 /*
4785 * TODO: In time, we should notice the caller of this error by
4786 * telling him that this is a version error.
4787 */
4788 continue;
4789 }
4790
840cb59c 4791 health_code_update();
86acf0da 4792
c9d4793f 4793 pthread_mutex_lock(&app->sock_lock);
852d0037 4794 ret = ustctl_calibrate(app->sock, calibrate);
c9d4793f 4795 pthread_mutex_unlock(&app->sock_lock);
4466912f
DG
4796 if (ret < 0) {
4797 switch (ret) {
4798 case -ENOSYS:
4799 /* Means that it's not implemented on the tracer side. */
4800 ret = 0;
4801 break;
4802 default:
4466912f 4803 DBG2("Calibrate app PID %d returned with error %d",
852d0037 4804 app->pid, ret);
4466912f
DG
4805 break;
4806 }
4807 }
4808 }
4809
4810 DBG("UST app global domain calibration finished");
4811
4812 rcu_read_unlock();
4813
840cb59c 4814 health_code_update();
86acf0da 4815
4466912f
DG
4816 return ret;
4817}
d0b96690
DG
4818
4819/*
4820 * Receive registration and populate the given msg structure.
4821 *
4822 * On success return 0 else a negative value returned by the ustctl call.
4823 */
4824int ust_app_recv_registration(int sock, struct ust_register_msg *msg)
4825{
4826 int ret;
4827 uint32_t pid, ppid, uid, gid;
4828
4829 assert(msg);
4830
4831 ret = ustctl_recv_reg_msg(sock, &msg->type, &msg->major, &msg->minor,
4832 &pid, &ppid, &uid, &gid,
4833 &msg->bits_per_long,
4834 &msg->uint8_t_alignment,
4835 &msg->uint16_t_alignment,
4836 &msg->uint32_t_alignment,
4837 &msg->uint64_t_alignment,
4838 &msg->long_alignment,
4839 &msg->byte_order,
4840 msg->name);
4841 if (ret < 0) {
4842 switch (-ret) {
4843 case EPIPE:
4844 case ECONNRESET:
4845 case LTTNG_UST_ERR_EXITING:
4846 DBG3("UST app recv reg message failed. Application died");
4847 break;
4848 case LTTNG_UST_ERR_UNSUP_MAJOR:
4849 ERR("UST app recv reg unsupported version %d.%d. Supporting %d.%d",
4850 msg->major, msg->minor, LTTNG_UST_ABI_MAJOR_VERSION,
4851 LTTNG_UST_ABI_MINOR_VERSION);
4852 break;
4853 default:
4854 ERR("UST app recv reg message failed with ret %d", ret);
4855 break;
4856 }
4857 goto error;
4858 }
4859 msg->pid = (pid_t) pid;
4860 msg->ppid = (pid_t) ppid;
4861 msg->uid = (uid_t) uid;
4862 msg->gid = (gid_t) gid;
4863
4864error:
4865 return ret;
4866}
4867
d88aee68
DG
4868/*
4869 * Return a ust app channel object using the application object and the channel
4870 * object descriptor has a key. If not found, NULL is returned. A RCU read side
4871 * lock MUST be acquired before calling this function.
4872 */
d0b96690
DG
4873static struct ust_app_channel *find_channel_by_objd(struct ust_app *app,
4874 int objd)
4875{
4876 struct lttng_ht_node_ulong *node;
4877 struct lttng_ht_iter iter;
4878 struct ust_app_channel *ua_chan = NULL;
4879
4880 assert(app);
4881
4882 lttng_ht_lookup(app->ust_objd, (void *)((unsigned long) objd), &iter);
4883 node = lttng_ht_iter_get_node_ulong(&iter);
4884 if (node == NULL) {
4885 DBG2("UST app channel find by objd %d not found", objd);
4886 goto error;
4887 }
4888
4889 ua_chan = caa_container_of(node, struct ust_app_channel, ust_objd_node);
4890
4891error:
4892 return ua_chan;
4893}
4894
d88aee68
DG
4895/*
4896 * Reply to a register channel notification from an application on the notify
4897 * socket. The channel metadata is also created.
4898 *
4899 * The session UST registry lock is acquired in this function.
4900 *
4901 * On success 0 is returned else a negative value.
4902 */
d0b96690
DG
4903static int reply_ust_register_channel(int sock, int sobjd, int cobjd,
4904 size_t nr_fields, struct ustctl_field *fields)
4905{
4906 int ret, ret_code = 0;
4907 uint32_t chan_id, reg_count;
7972aab2 4908 uint64_t chan_reg_key;
d0b96690
DG
4909 enum ustctl_channel_header type;
4910 struct ust_app *app;
4911 struct ust_app_channel *ua_chan;
4912 struct ust_app_session *ua_sess;
7972aab2 4913 struct ust_registry_session *registry;
45893984 4914 struct ust_registry_channel *chan_reg;
d0b96690
DG
4915
4916 rcu_read_lock();
4917
4918 /* Lookup application. If not found, there is a code flow error. */
4919 app = find_app_by_notify_sock(sock);
d88aee68
DG
4920 if (!app) {
4921 DBG("Application socket %d is being teardown. Abort event notify",
4922 sock);
4923 ret = 0;
d5d629b5 4924 free(fields);
d88aee68
DG
4925 goto error_rcu_unlock;
4926 }
d0b96690 4927
4950b860 4928 /* Lookup channel by UST object descriptor. */
d0b96690 4929 ua_chan = find_channel_by_objd(app, cobjd);
4950b860
MD
4930 if (!ua_chan) {
4931 DBG("Application channel is being teardown. Abort event notify");
4932 ret = 0;
d5d629b5 4933 free(fields);
4950b860
MD
4934 goto error_rcu_unlock;
4935 }
4936
d0b96690
DG
4937 assert(ua_chan->session);
4938 ua_sess = ua_chan->session;
d0b96690 4939
7972aab2
DG
4940 /* Get right session registry depending on the session buffer type. */
4941 registry = get_session_registry(ua_sess);
4942 assert(registry);
45893984 4943
7972aab2
DG
4944 /* Depending on the buffer type, a different channel key is used. */
4945 if (ua_sess->buffer_type == LTTNG_BUFFER_PER_UID) {
4946 chan_reg_key = ua_chan->tracing_channel_id;
d0b96690 4947 } else {
7972aab2 4948 chan_reg_key = ua_chan->key;
d0b96690
DG
4949 }
4950
7972aab2
DG
4951 pthread_mutex_lock(&registry->lock);
4952
4953 chan_reg = ust_registry_channel_find(registry, chan_reg_key);
4954 assert(chan_reg);
4955
4956 if (!chan_reg->register_done) {
4957 reg_count = ust_registry_get_event_count(chan_reg);
4958 if (reg_count < 31) {
4959 type = USTCTL_CHANNEL_HEADER_COMPACT;
4960 } else {
4961 type = USTCTL_CHANNEL_HEADER_LARGE;
4962 }
4963
4964 chan_reg->nr_ctx_fields = nr_fields;
4965 chan_reg->ctx_fields = fields;
4966 chan_reg->header_type = type;
d0b96690 4967 } else {
7972aab2
DG
4968 /* Get current already assigned values. */
4969 type = chan_reg->header_type;
d5d629b5
DG
4970 free(fields);
4971 /* Set to NULL so the error path does not do a double free. */
4972 fields = NULL;
d0b96690 4973 }
7972aab2
DG
4974 /* Channel id is set during the object creation. */
4975 chan_id = chan_reg->chan_id;
d0b96690
DG
4976
4977 /* Append to metadata */
7972aab2
DG
4978 if (!chan_reg->metadata_dumped) {
4979 ret_code = ust_metadata_channel_statedump(registry, chan_reg);
d0b96690
DG
4980 if (ret_code) {
4981 ERR("Error appending channel metadata (errno = %d)", ret_code);
4982 goto reply;
4983 }
4984 }
4985
4986reply:
7972aab2
DG
4987 DBG3("UST app replying to register channel key %" PRIu64
4988 " with id %u, type: %d, ret: %d", chan_reg_key, chan_id, type,
4989 ret_code);
d0b96690
DG
4990
4991 ret = ustctl_reply_register_channel(sock, chan_id, type, ret_code);
4992 if (ret < 0) {
4993 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
4994 ERR("UST app reply channel failed with ret %d", ret);
4995 } else {
4996 DBG3("UST app reply channel failed. Application died");
4997 }
4998 goto error;
4999 }
5000
7972aab2
DG
5001 /* This channel registry registration is completed. */
5002 chan_reg->register_done = 1;
5003
d0b96690 5004error:
7972aab2 5005 pthread_mutex_unlock(&registry->lock);
d88aee68 5006error_rcu_unlock:
d0b96690 5007 rcu_read_unlock();
d5d629b5
DG
5008 if (ret) {
5009 free(fields);
5010 }
d0b96690
DG
5011 return ret;
5012}
5013
d88aee68
DG
5014/*
5015 * Add event to the UST channel registry. When the event is added to the
5016 * registry, the metadata is also created. Once done, this replies to the
5017 * application with the appropriate error code.
5018 *
5019 * The session UST registry lock is acquired in the function.
5020 *
5021 * On success 0 is returned else a negative value.
5022 */
d0b96690
DG
5023static int add_event_ust_registry(int sock, int sobjd, int cobjd, char *name,
5024 char *sig, size_t nr_fields, struct ustctl_field *fields, int loglevel,
5025 char *model_emf_uri)
5026{
5027 int ret, ret_code;
5028 uint32_t event_id = 0;
7972aab2 5029 uint64_t chan_reg_key;
d0b96690
DG
5030 struct ust_app *app;
5031 struct ust_app_channel *ua_chan;
5032 struct ust_app_session *ua_sess;
7972aab2 5033 struct ust_registry_session *registry;
d0b96690
DG
5034
5035 rcu_read_lock();
5036
5037 /* Lookup application. If not found, there is a code flow error. */
5038 app = find_app_by_notify_sock(sock);
d88aee68
DG
5039 if (!app) {
5040 DBG("Application socket %d is being teardown. Abort event notify",
5041 sock);
5042 ret = 0;
d5d629b5
DG
5043 free(sig);
5044 free(fields);
5045 free(model_emf_uri);
d88aee68
DG
5046 goto error_rcu_unlock;
5047 }
d0b96690 5048
4950b860 5049 /* Lookup channel by UST object descriptor. */
d0b96690 5050 ua_chan = find_channel_by_objd(app, cobjd);
4950b860
MD
5051 if (!ua_chan) {
5052 DBG("Application channel is being teardown. Abort event notify");
5053 ret = 0;
d5d629b5
DG
5054 free(sig);
5055 free(fields);
5056 free(model_emf_uri);
4950b860
MD
5057 goto error_rcu_unlock;
5058 }
5059
d0b96690
DG
5060 assert(ua_chan->session);
5061 ua_sess = ua_chan->session;
5062
7972aab2
DG
5063 registry = get_session_registry(ua_sess);
5064 assert(registry);
5065
5066 if (ua_sess->buffer_type == LTTNG_BUFFER_PER_UID) {
5067 chan_reg_key = ua_chan->tracing_channel_id;
5068 } else {
5069 chan_reg_key = ua_chan->key;
5070 }
5071
5072 pthread_mutex_lock(&registry->lock);
d0b96690 5073
d5d629b5
DG
5074 /*
5075 * From this point on, this call acquires the ownership of the sig, fields
5076 * and model_emf_uri meaning any free are done inside it if needed. These
5077 * three variables MUST NOT be read/write after this.
5078 */
7972aab2 5079 ret_code = ust_registry_create_event(registry, chan_reg_key,
45893984 5080 sobjd, cobjd, name, sig, nr_fields, fields, loglevel,
8494bda5
MD
5081 model_emf_uri, ua_sess->buffer_type, &event_id,
5082 app);
d0b96690
DG
5083
5084 /*
5085 * The return value is returned to ustctl so in case of an error, the
5086 * application can be notified. In case of an error, it's important not to
5087 * return a negative error or else the application will get closed.
5088 */
5089 ret = ustctl_reply_register_event(sock, event_id, ret_code);
5090 if (ret < 0) {
5091 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
5092 ERR("UST app reply event failed with ret %d", ret);
5093 } else {
5094 DBG3("UST app reply event failed. Application died");
5095 }
5096 /*
5097 * No need to wipe the create event since the application socket will
5098 * get close on error hence cleaning up everything by itself.
5099 */
5100 goto error;
5101 }
5102
7972aab2
DG
5103 DBG3("UST registry event %s with id %" PRId32 " added successfully",
5104 name, event_id);
d88aee68 5105
d0b96690 5106error:
7972aab2 5107 pthread_mutex_unlock(&registry->lock);
d88aee68 5108error_rcu_unlock:
d0b96690
DG
5109 rcu_read_unlock();
5110 return ret;
5111}
5112
d88aee68
DG
5113/*
5114 * Handle application notification through the given notify socket.
5115 *
5116 * Return 0 on success or else a negative value.
5117 */
d0b96690
DG
5118int ust_app_recv_notify(int sock)
5119{
5120 int ret;
5121 enum ustctl_notify_cmd cmd;
5122
5123 DBG3("UST app receiving notify from sock %d", sock);
5124
5125 ret = ustctl_recv_notify(sock, &cmd);
5126 if (ret < 0) {
5127 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
5128 ERR("UST app recv notify failed with ret %d", ret);
5129 } else {
5130 DBG3("UST app recv notify failed. Application died");
5131 }
5132 goto error;
5133 }
5134
5135 switch (cmd) {
5136 case USTCTL_NOTIFY_CMD_EVENT:
5137 {
5138 int sobjd, cobjd, loglevel;
5139 char name[LTTNG_UST_SYM_NAME_LEN], *sig, *model_emf_uri;
5140 size_t nr_fields;
5141 struct ustctl_field *fields;
5142
5143 DBG2("UST app ustctl register event received");
5144
5145 ret = ustctl_recv_register_event(sock, &sobjd, &cobjd, name, &loglevel,
5146 &sig, &nr_fields, &fields, &model_emf_uri);
5147 if (ret < 0) {
5148 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
5149 ERR("UST app recv event failed with ret %d", ret);
5150 } else {
5151 DBG3("UST app recv event failed. Application died");
5152 }
5153 goto error;
5154 }
5155
d5d629b5
DG
5156 /*
5157 * Add event to the UST registry coming from the notify socket. This
5158 * call will free if needed the sig, fields and model_emf_uri. This
5159 * code path loses the ownsership of these variables and transfer them
5160 * to the this function.
5161 */
d0b96690
DG
5162 ret = add_event_ust_registry(sock, sobjd, cobjd, name, sig, nr_fields,
5163 fields, loglevel, model_emf_uri);
5164 if (ret < 0) {
5165 goto error;
5166 }
5167
5168 break;
5169 }
5170 case USTCTL_NOTIFY_CMD_CHANNEL:
5171 {
5172 int sobjd, cobjd;
5173 size_t nr_fields;
5174 struct ustctl_field *fields;
5175
5176 DBG2("UST app ustctl register channel received");
5177
5178 ret = ustctl_recv_register_channel(sock, &sobjd, &cobjd, &nr_fields,
5179 &fields);
5180 if (ret < 0) {
5181 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
5182 ERR("UST app recv channel failed with ret %d", ret);
5183 } else {
5184 DBG3("UST app recv channel failed. Application died");
5185 }
5186 goto error;
5187 }
5188
d5d629b5
DG
5189 /*
5190 * The fields ownership are transfered to this function call meaning
5191 * that if needed it will be freed. After this, it's invalid to access
5192 * fields or clean it up.
5193 */
d0b96690
DG
5194 ret = reply_ust_register_channel(sock, sobjd, cobjd, nr_fields,
5195 fields);
5196 if (ret < 0) {
5197 goto error;
5198 }
5199
5200 break;
5201 }
5202 default:
5203 /* Should NEVER happen. */
5204 assert(0);
5205 }
5206
5207error:
5208 return ret;
5209}
d88aee68
DG
5210
5211/*
5212 * Once the notify socket hangs up, this is called. First, it tries to find the
5213 * corresponding application. On failure, the call_rcu to close the socket is
5214 * executed. If an application is found, it tries to delete it from the notify
5215 * socket hash table. Whathever the result, it proceeds to the call_rcu.
5216 *
5217 * Note that an object needs to be allocated here so on ENOMEM failure, the
5218 * call RCU is not done but the rest of the cleanup is.
5219 */
5220void ust_app_notify_sock_unregister(int sock)
5221{
5222 int err_enomem = 0;
5223 struct lttng_ht_iter iter;
5224 struct ust_app *app;
5225 struct ust_app_notify_sock_obj *obj;
5226
5227 assert(sock >= 0);
5228
5229 rcu_read_lock();
5230
5231 obj = zmalloc(sizeof(*obj));
5232 if (!obj) {
5233 /*
5234 * An ENOMEM is kind of uncool. If this strikes we continue the
5235 * procedure but the call_rcu will not be called. In this case, we
5236 * accept the fd leak rather than possibly creating an unsynchronized
5237 * state between threads.
5238 *
5239 * TODO: The notify object should be created once the notify socket is
5240 * registered and stored independantely from the ust app object. The
5241 * tricky part is to synchronize the teardown of the application and
5242 * this notify object. Let's keep that in mind so we can avoid this
5243 * kind of shenanigans with ENOMEM in the teardown path.
5244 */
5245 err_enomem = 1;
5246 } else {
5247 obj->fd = sock;
5248 }
5249
5250 DBG("UST app notify socket unregister %d", sock);
5251
5252 /*
5253 * Lookup application by notify socket. If this fails, this means that the
5254 * hash table delete has already been done by the application
5255 * unregistration process so we can safely close the notify socket in a
5256 * call RCU.
5257 */
5258 app = find_app_by_notify_sock(sock);
5259 if (!app) {
5260 goto close_socket;
5261 }
5262
5263 iter.iter.node = &app->notify_sock_n.node;
5264
5265 /*
5266 * Whatever happens here either we fail or succeed, in both cases we have
5267 * to close the socket after a grace period to continue to the call RCU
5268 * here. If the deletion is successful, the application is not visible
5269 * anymore by other threads and is it fails it means that it was already
5270 * deleted from the hash table so either way we just have to close the
5271 * socket.
5272 */
5273 (void) lttng_ht_del(ust_app_ht_by_notify_sock, &iter);
5274
5275close_socket:
5276 rcu_read_unlock();
5277
5278 /*
5279 * Close socket after a grace period to avoid for the socket to be reused
5280 * before the application object is freed creating potential race between
5281 * threads trying to add unique in the global hash table.
5282 */
5283 if (!err_enomem) {
5284 call_rcu(&obj->head, close_notify_sock_rcu);
5285 }
5286}
f45e313d
DG
5287
5288/*
5289 * Destroy a ust app data structure and free its memory.
5290 */
5291void ust_app_destroy(struct ust_app *app)
5292{
5293 if (!app) {
5294 return;
5295 }
5296
5297 call_rcu(&app->pid_n.head, delete_ust_app_rcu);
5298}
6dc3064a
DG
5299
5300/*
5301 * Take a snapshot for a given UST session. The snapshot is sent to the given
5302 * output.
5303 *
5304 * Return 0 on success or else a negative value.
5305 */
5306int ust_app_snapshot_record(struct ltt_ust_session *usess,
135347bd
MD
5307 struct snapshot_output *output, int wait,
5308 uint64_t nb_packets_per_stream)
6dc3064a
DG
5309{
5310 int ret = 0;
7badf927 5311 unsigned int snapshot_done = 0;
6dc3064a
DG
5312 struct lttng_ht_iter iter;
5313 struct ust_app *app;
af706bb7 5314 char pathname[PATH_MAX];
6dc3064a
DG
5315
5316 assert(usess);
5317 assert(output);
5318
5319 rcu_read_lock();
5320
8c924c7b
MD
5321 switch (usess->buffer_type) {
5322 case LTTNG_BUFFER_PER_UID:
5323 {
5324 struct buffer_reg_uid *reg;
6dc3064a 5325
8c924c7b
MD
5326 cds_list_for_each_entry(reg, &usess->buffer_reg_uid_list, lnode) {
5327 struct buffer_reg_channel *reg_chan;
5328 struct consumer_socket *socket;
6dc3064a 5329
8c924c7b
MD
5330 /* Get consumer socket to use to push the metadata.*/
5331 socket = consumer_find_socket_by_bitness(reg->bits_per_long,
5332 usess->consumer);
5333 if (!socket) {
5334 ret = -EINVAL;
5335 goto error;
5336 }
6dc3064a 5337
8c924c7b
MD
5338 memset(pathname, 0, sizeof(pathname));
5339 ret = snprintf(pathname, sizeof(pathname),
5340 DEFAULT_UST_TRACE_DIR "/" DEFAULT_UST_TRACE_UID_PATH,
5341 reg->uid, reg->bits_per_long);
5342 if (ret < 0) {
5343 PERROR("snprintf snapshot path");
5344 goto error;
5345 }
5346
5347 /* Add the UST default trace dir to path. */
5348 cds_lfht_for_each_entry(reg->registry->channels->ht, &iter.iter,
5349 reg_chan, node.node) {
68808f4e
DG
5350 ret = consumer_snapshot_channel(socket, reg_chan->consumer_key,
5351 output, 0, usess->uid, usess->gid, pathname, wait,
135347bd 5352 nb_packets_per_stream);
8c924c7b
MD
5353 if (ret < 0) {
5354 goto error;
5355 }
5356 }
68808f4e
DG
5357 ret = consumer_snapshot_channel(socket,
5358 reg->registry->reg.ust->metadata_key, output, 1,
135347bd 5359 usess->uid, usess->gid, pathname, wait, 0);
8c924c7b
MD
5360 if (ret < 0) {
5361 goto error;
5362 }
7badf927 5363 snapshot_done = 1;
af706bb7 5364 }
8c924c7b
MD
5365 break;
5366 }
5367 case LTTNG_BUFFER_PER_PID:
5368 {
5369 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
5370 struct consumer_socket *socket;
5371 struct lttng_ht_iter chan_iter;
5372 struct ust_app_channel *ua_chan;
5373 struct ust_app_session *ua_sess;
5374 struct ust_registry_session *registry;
5375
5376 ua_sess = lookup_session_by_app(usess, app);
5377 if (!ua_sess) {
5378 /* Session not associated with this app. */
5379 continue;
5380 }
af706bb7 5381
8c924c7b
MD
5382 /* Get the right consumer socket for the application. */
5383 socket = consumer_find_socket_by_bitness(app->bits_per_long,
5384 output->consumer);
5385 if (!socket) {
5c786ded 5386 ret = -EINVAL;
5c786ded
JD
5387 goto error;
5388 }
5389
8c924c7b
MD
5390 /* Add the UST default trace dir to path. */
5391 memset(pathname, 0, sizeof(pathname));
5392 ret = snprintf(pathname, sizeof(pathname), DEFAULT_UST_TRACE_DIR "/%s",
5393 ua_sess->path);
6dc3064a 5394 if (ret < 0) {
8c924c7b 5395 PERROR("snprintf snapshot path");
6dc3064a
DG
5396 goto error;
5397 }
6dc3064a 5398
8c924c7b
MD
5399 cds_lfht_for_each_entry(ua_sess->channels->ht, &chan_iter.iter,
5400 ua_chan, node.node) {
68808f4e
DG
5401 ret = consumer_snapshot_channel(socket, ua_chan->key, output,
5402 0, ua_sess->euid, ua_sess->egid, pathname, wait,
135347bd 5403 nb_packets_per_stream);
8c924c7b
MD
5404 if (ret < 0) {
5405 goto error;
5406 }
5407 }
5408
5409 registry = get_session_registry(ua_sess);
5410 assert(registry);
5411 ret = consumer_snapshot_channel(socket, registry->metadata_key, output,
135347bd 5412 1, ua_sess->euid, ua_sess->egid, pathname, wait, 0);
8c924c7b
MD
5413 if (ret < 0) {
5414 goto error;
5415 }
7badf927 5416 snapshot_done = 1;
8c924c7b
MD
5417 }
5418 break;
5419 }
5420 default:
5421 assert(0);
5422 break;
6dc3064a
DG
5423 }
5424
7badf927
DG
5425 if (!snapshot_done) {
5426 /*
5427 * If no snapshot was made and we are not in the error path, this means
5428 * that there are no buffers thus no (prior) application to snapshot
5429 * data from so we have simply NO data.
5430 */
5431 ret = -ENODATA;
5432 }
5433
6dc3064a
DG
5434error:
5435 rcu_read_unlock();
5436 return ret;
5437}
5c786ded
JD
5438
5439/*
135347bd 5440 * Return the size taken by one more packet per stream.
5c786ded 5441 */
135347bd
MD
5442uint64_t ust_app_get_size_one_more_packet_per_stream(struct ltt_ust_session *usess,
5443 uint64_t cur_nr_packets)
5c786ded 5444{
135347bd 5445 uint64_t tot_size = 0;
5c786ded
JD
5446 struct ust_app *app;
5447 struct lttng_ht_iter iter;
5448
5449 assert(usess);
5450
5451 switch (usess->buffer_type) {
5452 case LTTNG_BUFFER_PER_UID:
5453 {
5454 struct buffer_reg_uid *reg;
5455
5456 cds_list_for_each_entry(reg, &usess->buffer_reg_uid_list, lnode) {
5457 struct buffer_reg_channel *reg_chan;
5458
71f3589f 5459 rcu_read_lock();
5c786ded
JD
5460 cds_lfht_for_each_entry(reg->registry->channels->ht, &iter.iter,
5461 reg_chan, node.node) {
135347bd
MD
5462 if (cur_nr_packets >= reg_chan->num_subbuf) {
5463 /*
5464 * Don't take channel into account if we
5465 * already grab all its packets.
5466 */
5467 continue;
5468 }
5469 tot_size += reg_chan->subbuf_size * reg_chan->stream_count;
5c786ded 5470 }
71f3589f 5471 rcu_read_unlock();
5c786ded
JD
5472 }
5473 break;
5474 }
5475 case LTTNG_BUFFER_PER_PID:
5476 {
5477 rcu_read_lock();
5478 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
5479 struct ust_app_channel *ua_chan;
5480 struct ust_app_session *ua_sess;
5481 struct lttng_ht_iter chan_iter;
5482
5483 ua_sess = lookup_session_by_app(usess, app);
5484 if (!ua_sess) {
5485 /* Session not associated with this app. */
5486 continue;
5487 }
5488
5489 cds_lfht_for_each_entry(ua_sess->channels->ht, &chan_iter.iter,
5490 ua_chan, node.node) {
135347bd
MD
5491 if (cur_nr_packets >= ua_chan->attr.num_subbuf) {
5492 /*
5493 * Don't take channel into account if we
5494 * already grab all its packets.
5495 */
5496 continue;
5497 }
5498 tot_size += ua_chan->attr.subbuf_size * ua_chan->streams.count;
5c786ded
JD
5499 }
5500 }
5501 rcu_read_unlock();
5502 break;
5503 }
5504 default:
5505 assert(0);
5506 break;
5507 }
5508
135347bd 5509 return tot_size;
5c786ded 5510}
This page took 0.35957 seconds and 4 git commands to generate.