Commit | Line | Data |
---|---|---|
91d76f53 | 1 | /* |
ab5be9fa MJ |
2 | * Copyright (C) 2011 David Goulet <david.goulet@polymtl.ca> |
3 | * Copyright (C) 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com> | |
91d76f53 | 4 | * |
ab5be9fa | 5 | * SPDX-License-Identifier: GPL-2.0-only |
91d76f53 | 6 | * |
91d76f53 DG |
7 | */ |
8 | ||
6c1c0768 | 9 | #define _LGPL_SOURCE |
91d76f53 | 10 | #include <errno.h> |
7972aab2 | 11 | #include <inttypes.h> |
91d76f53 DG |
12 | #include <pthread.h> |
13 | #include <stdio.h> | |
14 | #include <stdlib.h> | |
099e26bd | 15 | #include <string.h> |
aba8e916 DG |
16 | #include <sys/stat.h> |
17 | #include <sys/types.h> | |
099e26bd | 18 | #include <unistd.h> |
0df502fd | 19 | #include <urcu/compiler.h> |
331744e3 | 20 | #include <signal.h> |
bec39940 | 21 | |
990570ed | 22 | #include <common/common.h> |
86acf0da | 23 | #include <common/sessiond-comm/sessiond-comm.h> |
1e307fab | 24 | |
7972aab2 | 25 | #include "buffer-registry.h" |
86acf0da | 26 | #include "fd-limit.h" |
8782cc74 | 27 | #include "health-sessiond.h" |
56fff090 | 28 | #include "ust-app.h" |
48842b30 | 29 | #include "ust-consumer.h" |
75018ab6 JG |
30 | #include "lttng-ust-ctl.h" |
31 | #include "lttng-ust-error.h" | |
0b2dc8df | 32 | #include "utils.h" |
fb83fe64 | 33 | #include "session.h" |
e9404c27 JG |
34 | #include "lttng-sessiond.h" |
35 | #include "notification-thread-commands.h" | |
5c408ad8 | 36 | #include "rotate.h" |
d80a6244 | 37 | |
44cdb3a2 MJ |
38 | struct lttng_ht *ust_app_ht; |
39 | struct lttng_ht *ust_app_ht_by_sock; | |
40 | struct lttng_ht *ust_app_ht_by_notify_sock; | |
41 | ||
c4b88406 MD |
42 | static |
43 | int ust_app_flush_app_session(struct ust_app *app, struct ust_app_session *ua_sess); | |
44 | ||
d9bf3ca4 MD |
45 | /* Next available channel key. Access under next_channel_key_lock. */ |
46 | static uint64_t _next_channel_key; | |
47 | static pthread_mutex_t next_channel_key_lock = PTHREAD_MUTEX_INITIALIZER; | |
48 | ||
49 | /* Next available session ID. Access under next_session_id_lock. */ | |
50 | static uint64_t _next_session_id; | |
51 | static pthread_mutex_t next_session_id_lock = PTHREAD_MUTEX_INITIALIZER; | |
ffe60014 DG |
52 | |
53 | /* | |
d9bf3ca4 | 54 | * Return the incremented value of next_channel_key. |
ffe60014 | 55 | */ |
d9bf3ca4 | 56 | static uint64_t get_next_channel_key(void) |
ffe60014 | 57 | { |
d9bf3ca4 MD |
58 | uint64_t ret; |
59 | ||
60 | pthread_mutex_lock(&next_channel_key_lock); | |
61 | ret = ++_next_channel_key; | |
62 | pthread_mutex_unlock(&next_channel_key_lock); | |
63 | return ret; | |
ffe60014 DG |
64 | } |
65 | ||
66 | /* | |
7972aab2 | 67 | * Return the atomically incremented value of next_session_id. |
ffe60014 | 68 | */ |
d9bf3ca4 | 69 | static uint64_t get_next_session_id(void) |
ffe60014 | 70 | { |
d9bf3ca4 MD |
71 | uint64_t ret; |
72 | ||
73 | pthread_mutex_lock(&next_session_id_lock); | |
74 | ret = ++_next_session_id; | |
75 | pthread_mutex_unlock(&next_session_id_lock); | |
76 | return ret; | |
ffe60014 DG |
77 | } |
78 | ||
d65d2de8 DG |
79 | static void copy_channel_attr_to_ustctl( |
80 | struct ustctl_consumer_channel_attr *attr, | |
81 | struct lttng_ust_channel_attr *uattr) | |
82 | { | |
83 | /* Copy event attributes since the layout is different. */ | |
84 | attr->subbuf_size = uattr->subbuf_size; | |
85 | attr->num_subbuf = uattr->num_subbuf; | |
86 | attr->overwrite = uattr->overwrite; | |
87 | attr->switch_timer_interval = uattr->switch_timer_interval; | |
88 | attr->read_timer_interval = uattr->read_timer_interval; | |
89 | attr->output = uattr->output; | |
491d1539 | 90 | attr->blocking_timeout = uattr->u.s.blocking_timeout; |
d65d2de8 DG |
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 |
99 | static 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; | |
2106efa0 | 103 | int ev_loglevel_value; |
18eace3b DG |
104 | |
105 | assert(node); | |
106 | assert(_key); | |
107 | ||
108 | event = caa_container_of(node, struct ust_app_event, node.node); | |
109 | key = _key; | |
2106efa0 | 110 | ev_loglevel_value = event->attr.loglevel; |
18eace3b | 111 | |
1af53eb5 | 112 | /* Match the 4 elements of the key: name, filter, loglevel, exclusions */ |
18eace3b DG |
113 | |
114 | /* Event name */ | |
115 | if (strncmp(event->attr.name, key->name, sizeof(event->attr.name)) != 0) { | |
116 | goto no_match; | |
117 | } | |
118 | ||
119 | /* Event loglevel. */ | |
2106efa0 | 120 | if (ev_loglevel_value != key->loglevel_type) { |
025faf73 | 121 | if (event->attr.loglevel_type == LTTNG_UST_LOGLEVEL_ALL |
2106efa0 PP |
122 | && key->loglevel_type == 0 && |
123 | ev_loglevel_value == -1) { | |
025faf73 DG |
124 | /* |
125 | * Match is accepted. This is because on event creation, the | |
126 | * loglevel is set to -1 if the event loglevel type is ALL so 0 and | |
127 | * -1 are accepted for this loglevel type since 0 is the one set by | |
128 | * the API when receiving an enable event. | |
129 | */ | |
130 | } else { | |
131 | goto no_match; | |
132 | } | |
18eace3b DG |
133 | } |
134 | ||
135 | /* One of the filters is NULL, fail. */ | |
136 | if ((key->filter && !event->filter) || (!key->filter && event->filter)) { | |
137 | goto no_match; | |
138 | } | |
139 | ||
025faf73 DG |
140 | if (key->filter && event->filter) { |
141 | /* Both filters exists, check length followed by the bytecode. */ | |
142 | if (event->filter->len != key->filter->len || | |
143 | memcmp(event->filter->data, key->filter->data, | |
144 | event->filter->len) != 0) { | |
145 | goto no_match; | |
146 | } | |
18eace3b DG |
147 | } |
148 | ||
1af53eb5 JI |
149 | /* One of the exclusions is NULL, fail. */ |
150 | if ((key->exclusion && !event->exclusion) || (!key->exclusion && event->exclusion)) { | |
151 | goto no_match; | |
152 | } | |
153 | ||
154 | if (key->exclusion && event->exclusion) { | |
155 | /* Both exclusions exists, check count followed by the names. */ | |
156 | if (event->exclusion->count != key->exclusion->count || | |
157 | memcmp(event->exclusion->names, key->exclusion->names, | |
158 | event->exclusion->count * LTTNG_UST_SYM_NAME_LEN) != 0) { | |
159 | goto no_match; | |
160 | } | |
161 | } | |
162 | ||
163 | ||
025faf73 | 164 | /* Match. */ |
18eace3b DG |
165 | return 1; |
166 | ||
167 | no_match: | |
168 | return 0; | |
18eace3b DG |
169 | } |
170 | ||
025faf73 DG |
171 | /* |
172 | * Unique add of an ust app event in the given ht. This uses the custom | |
173 | * ht_match_ust_app_event match function and the event name as hash. | |
174 | */ | |
d0b96690 | 175 | static void add_unique_ust_app_event(struct ust_app_channel *ua_chan, |
18eace3b DG |
176 | struct ust_app_event *event) |
177 | { | |
178 | struct cds_lfht_node *node_ptr; | |
179 | struct ust_app_ht_key key; | |
d0b96690 | 180 | struct lttng_ht *ht; |
18eace3b | 181 | |
d0b96690 DG |
182 | assert(ua_chan); |
183 | assert(ua_chan->events); | |
18eace3b DG |
184 | assert(event); |
185 | ||
d0b96690 | 186 | ht = ua_chan->events; |
18eace3b DG |
187 | key.name = event->attr.name; |
188 | key.filter = event->filter; | |
2106efa0 | 189 | key.loglevel_type = event->attr.loglevel; |
91c89f23 | 190 | key.exclusion = event->exclusion; |
18eace3b DG |
191 | |
192 | node_ptr = cds_lfht_add_unique(ht->ht, | |
193 | ht->hash_fct(event->node.key, lttng_ht_seed), | |
194 | ht_match_ust_app_event, &key, &event->node.node); | |
195 | assert(node_ptr == &event->node.node); | |
196 | } | |
197 | ||
d88aee68 DG |
198 | /* |
199 | * Close the notify socket from the given RCU head object. This MUST be called | |
200 | * through a call_rcu(). | |
201 | */ | |
202 | static void close_notify_sock_rcu(struct rcu_head *head) | |
203 | { | |
204 | int ret; | |
205 | struct ust_app_notify_sock_obj *obj = | |
206 | caa_container_of(head, struct ust_app_notify_sock_obj, head); | |
207 | ||
208 | /* Must have a valid fd here. */ | |
209 | assert(obj->fd >= 0); | |
210 | ||
211 | ret = close(obj->fd); | |
212 | if (ret) { | |
213 | ERR("close notify sock %d RCU", obj->fd); | |
214 | } | |
215 | lttng_fd_put(LTTNG_FD_APPS, 1); | |
216 | ||
217 | free(obj); | |
218 | } | |
219 | ||
7972aab2 DG |
220 | /* |
221 | * Return the session registry according to the buffer type of the given | |
222 | * session. | |
223 | * | |
224 | * A registry per UID object MUST exists before calling this function or else | |
225 | * it assert() if not found. RCU read side lock must be acquired. | |
226 | */ | |
227 | static struct ust_registry_session *get_session_registry( | |
228 | struct ust_app_session *ua_sess) | |
229 | { | |
230 | struct ust_registry_session *registry = NULL; | |
231 | ||
232 | assert(ua_sess); | |
233 | ||
234 | switch (ua_sess->buffer_type) { | |
235 | case LTTNG_BUFFER_PER_PID: | |
236 | { | |
237 | struct buffer_reg_pid *reg_pid = buffer_reg_pid_find(ua_sess->id); | |
238 | if (!reg_pid) { | |
239 | goto error; | |
240 | } | |
241 | registry = reg_pid->registry->reg.ust; | |
242 | break; | |
243 | } | |
244 | case LTTNG_BUFFER_PER_UID: | |
245 | { | |
246 | struct buffer_reg_uid *reg_uid = buffer_reg_uid_find( | |
470cc211 JG |
247 | ua_sess->tracing_id, ua_sess->bits_per_long, |
248 | ua_sess->real_credentials.uid); | |
7972aab2 DG |
249 | if (!reg_uid) { |
250 | goto error; | |
251 | } | |
252 | registry = reg_uid->registry->reg.ust; | |
253 | break; | |
254 | } | |
255 | default: | |
256 | assert(0); | |
257 | }; | |
258 | ||
259 | error: | |
260 | return registry; | |
261 | } | |
262 | ||
55cc08a6 DG |
263 | /* |
264 | * Delete ust context safely. RCU read lock must be held before calling | |
265 | * this function. | |
266 | */ | |
267 | static | |
fb45065e MD |
268 | void delete_ust_app_ctx(int sock, struct ust_app_ctx *ua_ctx, |
269 | struct ust_app *app) | |
55cc08a6 | 270 | { |
ffe60014 DG |
271 | int ret; |
272 | ||
273 | assert(ua_ctx); | |
274 | ||
55cc08a6 | 275 | if (ua_ctx->obj) { |
fb45065e | 276 | pthread_mutex_lock(&app->sock_lock); |
ffe60014 | 277 | ret = ustctl_release_object(sock, ua_ctx->obj); |
fb45065e | 278 | pthread_mutex_unlock(&app->sock_lock); |
d0b96690 DG |
279 | if (ret < 0 && ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) { |
280 | ERR("UST app sock %d release ctx obj handle %d failed with ret %d", | |
281 | sock, ua_ctx->obj->handle, ret); | |
ffe60014 | 282 | } |
55cc08a6 DG |
283 | free(ua_ctx->obj); |
284 | } | |
285 | free(ua_ctx); | |
286 | } | |
287 | ||
d80a6244 DG |
288 | /* |
289 | * Delete ust app event safely. RCU read lock must be held before calling | |
290 | * this function. | |
291 | */ | |
8b366481 | 292 | static |
fb45065e MD |
293 | void delete_ust_app_event(int sock, struct ust_app_event *ua_event, |
294 | struct ust_app *app) | |
d80a6244 | 295 | { |
ffe60014 DG |
296 | int ret; |
297 | ||
298 | assert(ua_event); | |
299 | ||
53a80697 | 300 | free(ua_event->filter); |
951f0b71 JI |
301 | if (ua_event->exclusion != NULL) |
302 | free(ua_event->exclusion); | |
edb67388 | 303 | if (ua_event->obj != NULL) { |
fb45065e | 304 | pthread_mutex_lock(&app->sock_lock); |
ffe60014 | 305 | ret = ustctl_release_object(sock, ua_event->obj); |
fb45065e | 306 | pthread_mutex_unlock(&app->sock_lock); |
ffe60014 DG |
307 | if (ret < 0 && ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) { |
308 | ERR("UST app sock %d release event obj failed with ret %d", | |
309 | sock, ret); | |
310 | } | |
edb67388 DG |
311 | free(ua_event->obj); |
312 | } | |
d80a6244 DG |
313 | free(ua_event); |
314 | } | |
315 | ||
316 | /* | |
7972aab2 DG |
317 | * Release ust data object of the given stream. |
318 | * | |
319 | * Return 0 on success or else a negative value. | |
d80a6244 | 320 | */ |
fb45065e MD |
321 | static int release_ust_app_stream(int sock, struct ust_app_stream *stream, |
322 | struct ust_app *app) | |
d80a6244 | 323 | { |
7972aab2 | 324 | int ret = 0; |
ffe60014 DG |
325 | |
326 | assert(stream); | |
327 | ||
8b366481 | 328 | if (stream->obj) { |
fb45065e | 329 | pthread_mutex_lock(&app->sock_lock); |
ffe60014 | 330 | ret = ustctl_release_object(sock, stream->obj); |
fb45065e | 331 | pthread_mutex_unlock(&app->sock_lock); |
ffe60014 DG |
332 | if (ret < 0 && ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) { |
333 | ERR("UST app sock %d release stream obj failed with ret %d", | |
334 | sock, ret); | |
335 | } | |
4063050c | 336 | lttng_fd_put(LTTNG_FD_APPS, 2); |
8b366481 DG |
337 | free(stream->obj); |
338 | } | |
7972aab2 DG |
339 | |
340 | return ret; | |
341 | } | |
342 | ||
343 | /* | |
344 | * Delete ust app stream safely. RCU read lock must be held before calling | |
345 | * this function. | |
346 | */ | |
347 | static | |
fb45065e MD |
348 | void delete_ust_app_stream(int sock, struct ust_app_stream *stream, |
349 | struct ust_app *app) | |
7972aab2 DG |
350 | { |
351 | assert(stream); | |
352 | ||
fb45065e | 353 | (void) release_ust_app_stream(sock, stream, app); |
84cd17c6 | 354 | free(stream); |
d80a6244 DG |
355 | } |
356 | ||
36b588ed MD |
357 | /* |
358 | * We need to execute ht_destroy outside of RCU read-side critical | |
0b2dc8df MD |
359 | * section and outside of call_rcu thread, so we postpone its execution |
360 | * using ht_cleanup_push. It is simpler than to change the semantic of | |
361 | * the many callers of delete_ust_app_session(). | |
36b588ed MD |
362 | */ |
363 | static | |
364 | void delete_ust_app_channel_rcu(struct rcu_head *head) | |
365 | { | |
366 | struct ust_app_channel *ua_chan = | |
367 | caa_container_of(head, struct ust_app_channel, rcu_head); | |
368 | ||
0b2dc8df MD |
369 | ht_cleanup_push(ua_chan->ctx); |
370 | ht_cleanup_push(ua_chan->events); | |
36b588ed MD |
371 | free(ua_chan); |
372 | } | |
373 | ||
fb83fe64 JD |
374 | /* |
375 | * Extract the lost packet or discarded events counter when the channel is | |
376 | * being deleted and store the value in the parent channel so we can | |
377 | * access it from lttng list and at stop/destroy. | |
82cac6d2 JG |
378 | * |
379 | * The session list lock must be held by the caller. | |
fb83fe64 JD |
380 | */ |
381 | static | |
382 | void save_per_pid_lost_discarded_counters(struct ust_app_channel *ua_chan) | |
383 | { | |
384 | uint64_t discarded = 0, lost = 0; | |
385 | struct ltt_session *session; | |
386 | struct ltt_ust_channel *uchan; | |
387 | ||
388 | if (ua_chan->attr.type != LTTNG_UST_CHAN_PER_CPU) { | |
389 | return; | |
390 | } | |
391 | ||
392 | rcu_read_lock(); | |
393 | session = session_find_by_id(ua_chan->session->tracing_id); | |
d68ec974 JG |
394 | if (!session || !session->ust_session) { |
395 | /* | |
396 | * Not finding the session is not an error because there are | |
397 | * multiple ways the channels can be torn down. | |
398 | * | |
399 | * 1) The session daemon can initiate the destruction of the | |
400 | * ust app session after receiving a destroy command or | |
401 | * during its shutdown/teardown. | |
402 | * 2) The application, since we are in per-pid tracing, is | |
403 | * unregistering and tearing down its ust app session. | |
404 | * | |
405 | * Both paths are protected by the session list lock which | |
406 | * ensures that the accounting of lost packets and discarded | |
407 | * events is done exactly once. The session is then unpublished | |
408 | * from the session list, resulting in this condition. | |
409 | */ | |
fb83fe64 JD |
410 | goto end; |
411 | } | |
412 | ||
413 | if (ua_chan->attr.overwrite) { | |
414 | consumer_get_lost_packets(ua_chan->session->tracing_id, | |
415 | ua_chan->key, session->ust_session->consumer, | |
416 | &lost); | |
417 | } else { | |
418 | consumer_get_discarded_events(ua_chan->session->tracing_id, | |
419 | ua_chan->key, session->ust_session->consumer, | |
420 | &discarded); | |
421 | } | |
422 | uchan = trace_ust_find_channel_by_name( | |
423 | session->ust_session->domain_global.channels, | |
424 | ua_chan->name); | |
425 | if (!uchan) { | |
426 | ERR("Missing UST channel to store discarded counters"); | |
427 | goto end; | |
428 | } | |
429 | ||
430 | uchan->per_pid_closed_app_discarded += discarded; | |
431 | uchan->per_pid_closed_app_lost += lost; | |
432 | ||
433 | end: | |
434 | rcu_read_unlock(); | |
e32d7f27 JG |
435 | if (session) { |
436 | session_put(session); | |
437 | } | |
fb83fe64 JD |
438 | } |
439 | ||
d80a6244 DG |
440 | /* |
441 | * Delete ust app channel safely. RCU read lock must be held before calling | |
442 | * this function. | |
82cac6d2 JG |
443 | * |
444 | * The session list lock must be held by the caller. | |
d80a6244 | 445 | */ |
8b366481 | 446 | static |
d0b96690 DG |
447 | void delete_ust_app_channel(int sock, struct ust_app_channel *ua_chan, |
448 | struct ust_app *app) | |
d80a6244 DG |
449 | { |
450 | int ret; | |
bec39940 | 451 | struct lttng_ht_iter iter; |
d80a6244 | 452 | struct ust_app_event *ua_event; |
55cc08a6 | 453 | struct ust_app_ctx *ua_ctx; |
030a66fa | 454 | struct ust_app_stream *stream, *stmp; |
7972aab2 | 455 | struct ust_registry_session *registry; |
d80a6244 | 456 | |
ffe60014 DG |
457 | assert(ua_chan); |
458 | ||
459 | DBG3("UST app deleting channel %s", ua_chan->name); | |
460 | ||
55cc08a6 | 461 | /* Wipe stream */ |
d80a6244 | 462 | cds_list_for_each_entry_safe(stream, stmp, &ua_chan->streams.head, list) { |
84cd17c6 | 463 | cds_list_del(&stream->list); |
fb45065e | 464 | delete_ust_app_stream(sock, stream, app); |
d80a6244 DG |
465 | } |
466 | ||
55cc08a6 | 467 | /* Wipe context */ |
bec39940 | 468 | cds_lfht_for_each_entry(ua_chan->ctx->ht, &iter.iter, ua_ctx, node.node) { |
31746f93 | 469 | cds_list_del(&ua_ctx->list); |
bec39940 | 470 | ret = lttng_ht_del(ua_chan->ctx, &iter); |
55cc08a6 | 471 | assert(!ret); |
fb45065e | 472 | delete_ust_app_ctx(sock, ua_ctx, app); |
55cc08a6 | 473 | } |
d80a6244 | 474 | |
55cc08a6 | 475 | /* Wipe events */ |
bec39940 DG |
476 | cds_lfht_for_each_entry(ua_chan->events->ht, &iter.iter, ua_event, |
477 | node.node) { | |
478 | ret = lttng_ht_del(ua_chan->events, &iter); | |
525b0740 | 479 | assert(!ret); |
fb45065e | 480 | delete_ust_app_event(sock, ua_event, app); |
d80a6244 | 481 | } |
edb67388 | 482 | |
c8335706 MD |
483 | if (ua_chan->session->buffer_type == LTTNG_BUFFER_PER_PID) { |
484 | /* Wipe and free registry from session registry. */ | |
485 | registry = get_session_registry(ua_chan->session); | |
486 | if (registry) { | |
e9404c27 | 487 | ust_registry_channel_del_free(registry, ua_chan->key, |
e38d96f9 MD |
488 | sock >= 0); |
489 | } | |
45798a31 JG |
490 | /* |
491 | * A negative socket can be used by the caller when | |
492 | * cleaning-up a ua_chan in an error path. Skip the | |
493 | * accounting in this case. | |
494 | */ | |
e38d96f9 MD |
495 | if (sock >= 0) { |
496 | save_per_pid_lost_discarded_counters(ua_chan); | |
c8335706 | 497 | } |
7972aab2 | 498 | } |
d0b96690 | 499 | |
edb67388 | 500 | if (ua_chan->obj != NULL) { |
d0b96690 DG |
501 | /* Remove channel from application UST object descriptor. */ |
502 | iter.iter.node = &ua_chan->ust_objd_node.node; | |
c6e62271 DG |
503 | ret = lttng_ht_del(app->ust_objd, &iter); |
504 | assert(!ret); | |
fb45065e | 505 | pthread_mutex_lock(&app->sock_lock); |
ffe60014 | 506 | ret = ustctl_release_object(sock, ua_chan->obj); |
fb45065e | 507 | pthread_mutex_unlock(&app->sock_lock); |
ffe60014 DG |
508 | if (ret < 0 && ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) { |
509 | ERR("UST app sock %d release channel obj failed with ret %d", | |
510 | sock, ret); | |
511 | } | |
7972aab2 | 512 | lttng_fd_put(LTTNG_FD_APPS, 1); |
edb67388 DG |
513 | free(ua_chan->obj); |
514 | } | |
36b588ed | 515 | call_rcu(&ua_chan->rcu_head, delete_ust_app_channel_rcu); |
d80a6244 DG |
516 | } |
517 | ||
fb45065e MD |
518 | int ust_app_register_done(struct ust_app *app) |
519 | { | |
520 | int ret; | |
521 | ||
522 | pthread_mutex_lock(&app->sock_lock); | |
523 | ret = ustctl_register_done(app->sock); | |
524 | pthread_mutex_unlock(&app->sock_lock); | |
525 | return ret; | |
526 | } | |
527 | ||
528 | int ust_app_release_object(struct ust_app *app, struct lttng_ust_object_data *data) | |
529 | { | |
530 | int ret, sock; | |
531 | ||
532 | if (app) { | |
533 | pthread_mutex_lock(&app->sock_lock); | |
534 | sock = app->sock; | |
535 | } else { | |
536 | sock = -1; | |
537 | } | |
538 | ret = ustctl_release_object(sock, data); | |
539 | if (app) { | |
540 | pthread_mutex_unlock(&app->sock_lock); | |
541 | } | |
542 | return ret; | |
543 | } | |
544 | ||
331744e3 | 545 | /* |
1b532a60 DG |
546 | * Push metadata to consumer socket. |
547 | * | |
dc2bbdae MD |
548 | * RCU read-side lock must be held to guarantee existance of socket. |
549 | * Must be called with the ust app session lock held. | |
550 | * Must be called with the registry lock held. | |
331744e3 JD |
551 | * |
552 | * On success, return the len of metadata pushed or else a negative value. | |
2c57e06d MD |
553 | * Returning a -EPIPE return value means we could not send the metadata, |
554 | * but it can be caused by recoverable errors (e.g. the application has | |
555 | * terminated concurrently). | |
331744e3 JD |
556 | */ |
557 | ssize_t ust_app_push_metadata(struct ust_registry_session *registry, | |
558 | struct consumer_socket *socket, int send_zero_data) | |
559 | { | |
560 | int ret; | |
561 | char *metadata_str = NULL; | |
c585821b | 562 | size_t len, offset, new_metadata_len_sent; |
331744e3 | 563 | ssize_t ret_val; |
93ec662e | 564 | uint64_t metadata_key, metadata_version; |
331744e3 JD |
565 | |
566 | assert(registry); | |
567 | assert(socket); | |
1b532a60 | 568 | |
c585821b MD |
569 | metadata_key = registry->metadata_key; |
570 | ||
ce34fcd0 | 571 | /* |
dc2bbdae MD |
572 | * Means that no metadata was assigned to the session. This can |
573 | * happens if no start has been done previously. | |
ce34fcd0 | 574 | */ |
c585821b | 575 | if (!metadata_key) { |
ce34fcd0 MD |
576 | return 0; |
577 | } | |
578 | ||
331744e3 JD |
579 | offset = registry->metadata_len_sent; |
580 | len = registry->metadata_len - registry->metadata_len_sent; | |
c585821b | 581 | new_metadata_len_sent = registry->metadata_len; |
93ec662e | 582 | metadata_version = registry->metadata_version; |
331744e3 JD |
583 | if (len == 0) { |
584 | DBG3("No metadata to push for metadata key %" PRIu64, | |
585 | registry->metadata_key); | |
586 | ret_val = len; | |
587 | if (send_zero_data) { | |
588 | DBG("No metadata to push"); | |
589 | goto push_data; | |
590 | } | |
591 | goto end; | |
592 | } | |
593 | ||
594 | /* Allocate only what we have to send. */ | |
595 | metadata_str = zmalloc(len); | |
596 | if (!metadata_str) { | |
597 | PERROR("zmalloc ust app metadata string"); | |
598 | ret_val = -ENOMEM; | |
599 | goto error; | |
600 | } | |
c585821b | 601 | /* Copy what we haven't sent out. */ |
331744e3 | 602 | memcpy(metadata_str, registry->metadata + offset, len); |
331744e3 JD |
603 | |
604 | push_data: | |
c585821b MD |
605 | pthread_mutex_unlock(®istry->lock); |
606 | /* | |
607 | * We need to unlock the registry while we push metadata to | |
608 | * break a circular dependency between the consumerd metadata | |
609 | * lock and the sessiond registry lock. Indeed, pushing metadata | |
610 | * to the consumerd awaits that it gets pushed all the way to | |
611 | * relayd, but doing so requires grabbing the metadata lock. If | |
612 | * a concurrent metadata request is being performed by | |
613 | * consumerd, this can try to grab the registry lock on the | |
614 | * sessiond while holding the metadata lock on the consumer | |
615 | * daemon. Those push and pull schemes are performed on two | |
616 | * different bidirectionnal communication sockets. | |
617 | */ | |
618 | ret = consumer_push_metadata(socket, metadata_key, | |
93ec662e | 619 | metadata_str, len, offset, metadata_version); |
c585821b | 620 | pthread_mutex_lock(®istry->lock); |
331744e3 | 621 | if (ret < 0) { |
000baf6a | 622 | /* |
dc2bbdae MD |
623 | * There is an acceptable race here between the registry |
624 | * metadata key assignment and the creation on the | |
625 | * consumer. The session daemon can concurrently push | |
626 | * metadata for this registry while being created on the | |
627 | * consumer since the metadata key of the registry is | |
628 | * assigned *before* it is setup to avoid the consumer | |
629 | * to ask for metadata that could possibly be not found | |
630 | * in the session daemon. | |
000baf6a | 631 | * |
dc2bbdae MD |
632 | * The metadata will get pushed either by the session |
633 | * being stopped or the consumer requesting metadata if | |
634 | * that race is triggered. | |
000baf6a DG |
635 | */ |
636 | if (ret == -LTTCOMM_CONSUMERD_CHANNEL_FAIL) { | |
637 | ret = 0; | |
c585821b MD |
638 | } else { |
639 | ERR("Error pushing metadata to consumer"); | |
000baf6a | 640 | } |
331744e3 JD |
641 | ret_val = ret; |
642 | goto error_push; | |
c585821b MD |
643 | } else { |
644 | /* | |
645 | * Metadata may have been concurrently pushed, since | |
646 | * we're not holding the registry lock while pushing to | |
647 | * consumer. This is handled by the fact that we send | |
648 | * the metadata content, size, and the offset at which | |
649 | * that metadata belongs. This may arrive out of order | |
650 | * on the consumer side, and the consumer is able to | |
651 | * deal with overlapping fragments. The consumer | |
652 | * supports overlapping fragments, which must be | |
653 | * contiguous starting from offset 0. We keep the | |
654 | * largest metadata_len_sent value of the concurrent | |
655 | * send. | |
656 | */ | |
657 | registry->metadata_len_sent = | |
658 | max_t(size_t, registry->metadata_len_sent, | |
659 | new_metadata_len_sent); | |
331744e3 | 660 | } |
331744e3 JD |
661 | free(metadata_str); |
662 | return len; | |
663 | ||
664 | end: | |
665 | error: | |
ce34fcd0 MD |
666 | if (ret_val) { |
667 | /* | |
dc2bbdae MD |
668 | * On error, flag the registry that the metadata is |
669 | * closed. We were unable to push anything and this | |
670 | * means that either the consumer is not responding or | |
671 | * the metadata cache has been destroyed on the | |
672 | * consumer. | |
ce34fcd0 MD |
673 | */ |
674 | registry->metadata_closed = 1; | |
675 | } | |
331744e3 JD |
676 | error_push: |
677 | free(metadata_str); | |
678 | return ret_val; | |
679 | } | |
680 | ||
d88aee68 | 681 | /* |
ce34fcd0 | 682 | * For a given application and session, push metadata to consumer. |
331744e3 JD |
683 | * Either sock or consumer is required : if sock is NULL, the default |
684 | * socket to send the metadata is retrieved from consumer, if sock | |
685 | * is not NULL we use it to send the metadata. | |
ce34fcd0 | 686 | * RCU read-side lock must be held while calling this function, |
dc2bbdae MD |
687 | * therefore ensuring existance of registry. It also ensures existance |
688 | * of socket throughout this function. | |
d88aee68 DG |
689 | * |
690 | * Return 0 on success else a negative error. | |
2c57e06d MD |
691 | * Returning a -EPIPE return value means we could not send the metadata, |
692 | * but it can be caused by recoverable errors (e.g. the application has | |
693 | * terminated concurrently). | |
d88aee68 | 694 | */ |
7972aab2 DG |
695 | static int push_metadata(struct ust_registry_session *registry, |
696 | struct consumer_output *consumer) | |
d88aee68 | 697 | { |
331744e3 JD |
698 | int ret_val; |
699 | ssize_t ret; | |
d88aee68 DG |
700 | struct consumer_socket *socket; |
701 | ||
7972aab2 DG |
702 | assert(registry); |
703 | assert(consumer); | |
704 | ||
ce34fcd0 | 705 | pthread_mutex_lock(®istry->lock); |
ce34fcd0 | 706 | if (registry->metadata_closed) { |
dc2bbdae MD |
707 | ret_val = -EPIPE; |
708 | goto error; | |
d88aee68 DG |
709 | } |
710 | ||
d88aee68 | 711 | /* Get consumer socket to use to push the metadata.*/ |
7972aab2 DG |
712 | socket = consumer_find_socket_by_bitness(registry->bits_per_long, |
713 | consumer); | |
d88aee68 | 714 | if (!socket) { |
331744e3 | 715 | ret_val = -1; |
ce34fcd0 | 716 | goto error; |
d88aee68 DG |
717 | } |
718 | ||
331744e3 | 719 | ret = ust_app_push_metadata(registry, socket, 0); |
d88aee68 | 720 | if (ret < 0) { |
331744e3 | 721 | ret_val = ret; |
ce34fcd0 | 722 | goto error; |
d88aee68 | 723 | } |
dc2bbdae | 724 | pthread_mutex_unlock(®istry->lock); |
d88aee68 DG |
725 | return 0; |
726 | ||
ce34fcd0 | 727 | error: |
dc2bbdae | 728 | pthread_mutex_unlock(®istry->lock); |
331744e3 | 729 | return ret_val; |
d88aee68 DG |
730 | } |
731 | ||
732 | /* | |
733 | * Send to the consumer a close metadata command for the given session. Once | |
734 | * done, the metadata channel is deleted and the session metadata pointer is | |
dc2bbdae | 735 | * nullified. The session lock MUST be held unless the application is |
d88aee68 DG |
736 | * in the destroy path. |
737 | * | |
a70ac2f4 MD |
738 | * Do not hold the registry lock while communicating with the consumerd, because |
739 | * doing so causes inter-process deadlocks between consumerd and sessiond with | |
740 | * the metadata request notification. | |
741 | * | |
d88aee68 DG |
742 | * Return 0 on success else a negative value. |
743 | */ | |
7972aab2 DG |
744 | static int close_metadata(struct ust_registry_session *registry, |
745 | struct consumer_output *consumer) | |
d88aee68 DG |
746 | { |
747 | int ret; | |
748 | struct consumer_socket *socket; | |
a70ac2f4 MD |
749 | uint64_t metadata_key; |
750 | bool registry_was_already_closed; | |
d88aee68 | 751 | |
7972aab2 DG |
752 | assert(registry); |
753 | assert(consumer); | |
d88aee68 | 754 | |
7972aab2 DG |
755 | rcu_read_lock(); |
756 | ||
ce34fcd0 | 757 | pthread_mutex_lock(®istry->lock); |
a70ac2f4 MD |
758 | metadata_key = registry->metadata_key; |
759 | registry_was_already_closed = registry->metadata_closed; | |
760 | if (metadata_key != 0) { | |
761 | /* | |
762 | * Metadata closed. Even on error this means that the consumer | |
763 | * is not responding or not found so either way a second close | |
764 | * should NOT be emit for this registry. | |
765 | */ | |
766 | registry->metadata_closed = 1; | |
767 | } | |
768 | pthread_mutex_unlock(®istry->lock); | |
ce34fcd0 | 769 | |
a70ac2f4 | 770 | if (metadata_key == 0 || registry_was_already_closed) { |
d88aee68 | 771 | ret = 0; |
1b532a60 | 772 | goto end; |
d88aee68 DG |
773 | } |
774 | ||
d88aee68 | 775 | /* Get consumer socket to use to push the metadata.*/ |
7972aab2 DG |
776 | socket = consumer_find_socket_by_bitness(registry->bits_per_long, |
777 | consumer); | |
d88aee68 DG |
778 | if (!socket) { |
779 | ret = -1; | |
a70ac2f4 | 780 | goto end; |
d88aee68 DG |
781 | } |
782 | ||
a70ac2f4 | 783 | ret = consumer_close_metadata(socket, metadata_key); |
d88aee68 | 784 | if (ret < 0) { |
a70ac2f4 | 785 | goto end; |
d88aee68 DG |
786 | } |
787 | ||
1b532a60 | 788 | end: |
7972aab2 | 789 | rcu_read_unlock(); |
d88aee68 DG |
790 | return ret; |
791 | } | |
792 | ||
36b588ed MD |
793 | /* |
794 | * We need to execute ht_destroy outside of RCU read-side critical | |
0b2dc8df MD |
795 | * section and outside of call_rcu thread, so we postpone its execution |
796 | * using ht_cleanup_push. It is simpler than to change the semantic of | |
797 | * the many callers of delete_ust_app_session(). | |
36b588ed MD |
798 | */ |
799 | static | |
800 | void delete_ust_app_session_rcu(struct rcu_head *head) | |
801 | { | |
802 | struct ust_app_session *ua_sess = | |
803 | caa_container_of(head, struct ust_app_session, rcu_head); | |
804 | ||
0b2dc8df | 805 | ht_cleanup_push(ua_sess->channels); |
36b588ed MD |
806 | free(ua_sess); |
807 | } | |
808 | ||
d80a6244 DG |
809 | /* |
810 | * Delete ust app session safely. RCU read lock must be held before calling | |
811 | * this function. | |
82cac6d2 JG |
812 | * |
813 | * The session list lock must be held by the caller. | |
d80a6244 | 814 | */ |
8b366481 | 815 | static |
d0b96690 DG |
816 | void delete_ust_app_session(int sock, struct ust_app_session *ua_sess, |
817 | struct ust_app *app) | |
d80a6244 DG |
818 | { |
819 | int ret; | |
bec39940 | 820 | struct lttng_ht_iter iter; |
d80a6244 | 821 | struct ust_app_channel *ua_chan; |
7972aab2 | 822 | struct ust_registry_session *registry; |
d80a6244 | 823 | |
d88aee68 DG |
824 | assert(ua_sess); |
825 | ||
1b532a60 DG |
826 | pthread_mutex_lock(&ua_sess->lock); |
827 | ||
b161602a MD |
828 | assert(!ua_sess->deleted); |
829 | ua_sess->deleted = true; | |
830 | ||
7972aab2 | 831 | registry = get_session_registry(ua_sess); |
fad1ed2f | 832 | /* Registry can be null on error path during initialization. */ |
ce34fcd0 | 833 | if (registry) { |
d88aee68 | 834 | /* Push metadata for application before freeing the application. */ |
7972aab2 | 835 | (void) push_metadata(registry, ua_sess->consumer); |
d88aee68 | 836 | |
7972aab2 DG |
837 | /* |
838 | * Don't ask to close metadata for global per UID buffers. Close | |
1b532a60 DG |
839 | * metadata only on destroy trace session in this case. Also, the |
840 | * previous push metadata could have flag the metadata registry to | |
841 | * close so don't send a close command if closed. | |
7972aab2 | 842 | */ |
ce34fcd0 | 843 | if (ua_sess->buffer_type != LTTNG_BUFFER_PER_UID) { |
7972aab2 DG |
844 | /* And ask to close it for this session registry. */ |
845 | (void) close_metadata(registry, ua_sess->consumer); | |
846 | } | |
d80a6244 DG |
847 | } |
848 | ||
bec39940 DG |
849 | cds_lfht_for_each_entry(ua_sess->channels->ht, &iter.iter, ua_chan, |
850 | node.node) { | |
851 | ret = lttng_ht_del(ua_sess->channels, &iter); | |
525b0740 | 852 | assert(!ret); |
d0b96690 | 853 | delete_ust_app_channel(sock, ua_chan, app); |
d80a6244 | 854 | } |
d80a6244 | 855 | |
7972aab2 DG |
856 | /* In case of per PID, the registry is kept in the session. */ |
857 | if (ua_sess->buffer_type == LTTNG_BUFFER_PER_PID) { | |
858 | struct buffer_reg_pid *reg_pid = buffer_reg_pid_find(ua_sess->id); | |
859 | if (reg_pid) { | |
fad1ed2f JR |
860 | /* |
861 | * Registry can be null on error path during | |
862 | * initialization. | |
863 | */ | |
7972aab2 DG |
864 | buffer_reg_pid_remove(reg_pid); |
865 | buffer_reg_pid_destroy(reg_pid); | |
866 | } | |
867 | } | |
d0b96690 | 868 | |
aee6bafd | 869 | if (ua_sess->handle != -1) { |
fb45065e | 870 | pthread_mutex_lock(&app->sock_lock); |
ffe60014 | 871 | ret = ustctl_release_handle(sock, ua_sess->handle); |
fb45065e | 872 | pthread_mutex_unlock(&app->sock_lock); |
ffe60014 DG |
873 | if (ret < 0 && ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) { |
874 | ERR("UST app sock %d release session handle failed with ret %d", | |
875 | sock, ret); | |
876 | } | |
10b56aef MD |
877 | /* Remove session from application UST object descriptor. */ |
878 | iter.iter.node = &ua_sess->ust_objd_node.node; | |
879 | ret = lttng_ht_del(app->ust_sessions_objd, &iter); | |
880 | assert(!ret); | |
aee6bafd | 881 | } |
10b56aef | 882 | |
1b532a60 DG |
883 | pthread_mutex_unlock(&ua_sess->lock); |
884 | ||
6addfa37 MD |
885 | consumer_output_put(ua_sess->consumer); |
886 | ||
36b588ed | 887 | call_rcu(&ua_sess->rcu_head, delete_ust_app_session_rcu); |
d80a6244 | 888 | } |
91d76f53 DG |
889 | |
890 | /* | |
284d8f55 DG |
891 | * Delete a traceable application structure from the global list. Never call |
892 | * this function outside of a call_rcu call. | |
36b588ed MD |
893 | * |
894 | * RCU read side lock should _NOT_ be held when calling this function. | |
91d76f53 | 895 | */ |
8b366481 DG |
896 | static |
897 | void delete_ust_app(struct ust_app *app) | |
91d76f53 | 898 | { |
8b366481 | 899 | int ret, sock; |
d42f20df | 900 | struct ust_app_session *ua_sess, *tmp_ua_sess; |
44d3bd01 | 901 | |
82cac6d2 JG |
902 | /* |
903 | * The session list lock must be held during this function to guarantee | |
904 | * the existence of ua_sess. | |
905 | */ | |
906 | session_lock_list(); | |
d80a6244 | 907 | /* Delete ust app sessions info */ |
852d0037 DG |
908 | sock = app->sock; |
909 | app->sock = -1; | |
d80a6244 | 910 | |
8b366481 | 911 | /* Wipe sessions */ |
d42f20df DG |
912 | cds_list_for_each_entry_safe(ua_sess, tmp_ua_sess, &app->teardown_head, |
913 | teardown_node) { | |
914 | /* Free every object in the session and the session. */ | |
36b588ed | 915 | rcu_read_lock(); |
d0b96690 | 916 | delete_ust_app_session(sock, ua_sess, app); |
36b588ed | 917 | rcu_read_unlock(); |
d80a6244 | 918 | } |
36b588ed | 919 | |
0b2dc8df | 920 | ht_cleanup_push(app->sessions); |
10b56aef | 921 | ht_cleanup_push(app->ust_sessions_objd); |
0b2dc8df | 922 | ht_cleanup_push(app->ust_objd); |
d80a6244 | 923 | |
6414a713 | 924 | /* |
852d0037 DG |
925 | * Wait until we have deleted the application from the sock hash table |
926 | * before closing this socket, otherwise an application could re-use the | |
927 | * socket ID and race with the teardown, using the same hash table entry. | |
928 | * | |
929 | * It's OK to leave the close in call_rcu. We want it to stay unique for | |
930 | * all RCU readers that could run concurrently with unregister app, | |
931 | * therefore we _need_ to only close that socket after a grace period. So | |
932 | * it should stay in this RCU callback. | |
933 | * | |
934 | * This close() is a very important step of the synchronization model so | |
935 | * every modification to this function must be carefully reviewed. | |
6414a713 | 936 | */ |
799e2c4f MD |
937 | ret = close(sock); |
938 | if (ret) { | |
939 | PERROR("close"); | |
940 | } | |
4063050c | 941 | lttng_fd_put(LTTNG_FD_APPS, 1); |
d80a6244 | 942 | |
852d0037 | 943 | DBG2("UST app pid %d deleted", app->pid); |
284d8f55 | 944 | free(app); |
82cac6d2 | 945 | session_unlock_list(); |
099e26bd DG |
946 | } |
947 | ||
948 | /* | |
f6a9efaa | 949 | * URCU intermediate call to delete an UST app. |
099e26bd | 950 | */ |
8b366481 DG |
951 | static |
952 | void delete_ust_app_rcu(struct rcu_head *head) | |
099e26bd | 953 | { |
bec39940 DG |
954 | struct lttng_ht_node_ulong *node = |
955 | caa_container_of(head, struct lttng_ht_node_ulong, head); | |
f6a9efaa | 956 | struct ust_app *app = |
852d0037 | 957 | caa_container_of(node, struct ust_app, pid_n); |
f6a9efaa | 958 | |
852d0037 | 959 | DBG3("Call RCU deleting app PID %d", app->pid); |
f6a9efaa | 960 | delete_ust_app(app); |
099e26bd DG |
961 | } |
962 | ||
ffe60014 DG |
963 | /* |
964 | * Delete the session from the application ht and delete the data structure by | |
965 | * freeing every object inside and releasing them. | |
82cac6d2 JG |
966 | * |
967 | * The session list lock must be held by the caller. | |
ffe60014 | 968 | */ |
d0b96690 | 969 | static void destroy_app_session(struct ust_app *app, |
ffe60014 DG |
970 | struct ust_app_session *ua_sess) |
971 | { | |
972 | int ret; | |
973 | struct lttng_ht_iter iter; | |
974 | ||
975 | assert(app); | |
976 | assert(ua_sess); | |
977 | ||
978 | iter.iter.node = &ua_sess->node.node; | |
979 | ret = lttng_ht_del(app->sessions, &iter); | |
980 | if (ret) { | |
981 | /* Already scheduled for teardown. */ | |
982 | goto end; | |
983 | } | |
984 | ||
985 | /* Once deleted, free the data structure. */ | |
d0b96690 | 986 | delete_ust_app_session(app->sock, ua_sess, app); |
ffe60014 DG |
987 | |
988 | end: | |
989 | return; | |
990 | } | |
991 | ||
8b366481 DG |
992 | /* |
993 | * Alloc new UST app session. | |
994 | */ | |
995 | static | |
40bbd087 | 996 | struct ust_app_session *alloc_ust_app_session(void) |
8b366481 DG |
997 | { |
998 | struct ust_app_session *ua_sess; | |
999 | ||
1000 | /* Init most of the default value by allocating and zeroing */ | |
1001 | ua_sess = zmalloc(sizeof(struct ust_app_session)); | |
1002 | if (ua_sess == NULL) { | |
1003 | PERROR("malloc"); | |
ffe60014 | 1004 | goto error_free; |
8b366481 DG |
1005 | } |
1006 | ||
1007 | ua_sess->handle = -1; | |
bec39940 | 1008 | ua_sess->channels = lttng_ht_new(0, LTTNG_HT_TYPE_STRING); |
ad7a9107 | 1009 | ua_sess->metadata_attr.type = LTTNG_UST_CHAN_METADATA; |
84ad93e8 | 1010 | pthread_mutex_init(&ua_sess->lock, NULL); |
ad7a9107 | 1011 | |
8b366481 DG |
1012 | return ua_sess; |
1013 | ||
ffe60014 | 1014 | error_free: |
8b366481 DG |
1015 | return NULL; |
1016 | } | |
1017 | ||
1018 | /* | |
1019 | * Alloc new UST app channel. | |
1020 | */ | |
1021 | static | |
b53d4e59 | 1022 | struct ust_app_channel *alloc_ust_app_channel(const char *name, |
d0b96690 | 1023 | struct ust_app_session *ua_sess, |
ffe60014 | 1024 | struct lttng_ust_channel_attr *attr) |
8b366481 DG |
1025 | { |
1026 | struct ust_app_channel *ua_chan; | |
1027 | ||
1028 | /* Init most of the default value by allocating and zeroing */ | |
1029 | ua_chan = zmalloc(sizeof(struct ust_app_channel)); | |
1030 | if (ua_chan == NULL) { | |
1031 | PERROR("malloc"); | |
1032 | goto error; | |
1033 | } | |
1034 | ||
1035 | /* Setup channel name */ | |
1036 | strncpy(ua_chan->name, name, sizeof(ua_chan->name)); | |
1037 | ua_chan->name[sizeof(ua_chan->name) - 1] = '\0'; | |
1038 | ||
1039 | ua_chan->enabled = 1; | |
1040 | ua_chan->handle = -1; | |
45893984 | 1041 | ua_chan->session = ua_sess; |
ffe60014 | 1042 | ua_chan->key = get_next_channel_key(); |
bec39940 DG |
1043 | ua_chan->ctx = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG); |
1044 | ua_chan->events = lttng_ht_new(0, LTTNG_HT_TYPE_STRING); | |
1045 | lttng_ht_node_init_str(&ua_chan->node, ua_chan->name); | |
8b366481 DG |
1046 | |
1047 | CDS_INIT_LIST_HEAD(&ua_chan->streams.head); | |
31746f93 | 1048 | CDS_INIT_LIST_HEAD(&ua_chan->ctx_list); |
8b366481 DG |
1049 | |
1050 | /* Copy attributes */ | |
1051 | if (attr) { | |
ffe60014 | 1052 | /* Translate from lttng_ust_channel to ustctl_consumer_channel_attr. */ |
2fe6e7f5 DG |
1053 | ua_chan->attr.subbuf_size = attr->subbuf_size; |
1054 | ua_chan->attr.num_subbuf = attr->num_subbuf; | |
1055 | ua_chan->attr.overwrite = attr->overwrite; | |
1056 | ua_chan->attr.switch_timer_interval = attr->switch_timer_interval; | |
1057 | ua_chan->attr.read_timer_interval = attr->read_timer_interval; | |
1058 | ua_chan->attr.output = attr->output; | |
491d1539 | 1059 | ua_chan->attr.blocking_timeout = attr->u.s.blocking_timeout; |
8b366481 | 1060 | } |
ffe60014 DG |
1061 | /* By default, the channel is a per cpu channel. */ |
1062 | ua_chan->attr.type = LTTNG_UST_CHAN_PER_CPU; | |
8b366481 DG |
1063 | |
1064 | DBG3("UST app channel %s allocated", ua_chan->name); | |
1065 | ||
1066 | return ua_chan; | |
1067 | ||
1068 | error: | |
1069 | return NULL; | |
1070 | } | |
1071 | ||
37f1c236 DG |
1072 | /* |
1073 | * Allocate and initialize a UST app stream. | |
1074 | * | |
1075 | * Return newly allocated stream pointer or NULL on error. | |
1076 | */ | |
ffe60014 | 1077 | struct ust_app_stream *ust_app_alloc_stream(void) |
37f1c236 DG |
1078 | { |
1079 | struct ust_app_stream *stream = NULL; | |
1080 | ||
1081 | stream = zmalloc(sizeof(*stream)); | |
1082 | if (stream == NULL) { | |
1083 | PERROR("zmalloc ust app stream"); | |
1084 | goto error; | |
1085 | } | |
1086 | ||
1087 | /* Zero could be a valid value for a handle so flag it to -1. */ | |
1088 | stream->handle = -1; | |
1089 | ||
1090 | error: | |
1091 | return stream; | |
1092 | } | |
1093 | ||
8b366481 DG |
1094 | /* |
1095 | * Alloc new UST app event. | |
1096 | */ | |
1097 | static | |
1098 | struct ust_app_event *alloc_ust_app_event(char *name, | |
1099 | struct lttng_ust_event *attr) | |
1100 | { | |
1101 | struct ust_app_event *ua_event; | |
1102 | ||
1103 | /* Init most of the default value by allocating and zeroing */ | |
1104 | ua_event = zmalloc(sizeof(struct ust_app_event)); | |
1105 | if (ua_event == NULL) { | |
20533947 | 1106 | PERROR("Failed to allocate ust_app_event structure"); |
8b366481 DG |
1107 | goto error; |
1108 | } | |
1109 | ||
1110 | ua_event->enabled = 1; | |
1111 | strncpy(ua_event->name, name, sizeof(ua_event->name)); | |
1112 | ua_event->name[sizeof(ua_event->name) - 1] = '\0'; | |
bec39940 | 1113 | lttng_ht_node_init_str(&ua_event->node, ua_event->name); |
8b366481 DG |
1114 | |
1115 | /* Copy attributes */ | |
1116 | if (attr) { | |
1117 | memcpy(&ua_event->attr, attr, sizeof(ua_event->attr)); | |
1118 | } | |
1119 | ||
1120 | DBG3("UST app event %s allocated", ua_event->name); | |
1121 | ||
1122 | return ua_event; | |
1123 | ||
1124 | error: | |
1125 | return NULL; | |
1126 | } | |
1127 | ||
1128 | /* | |
1129 | * Alloc new UST app context. | |
1130 | */ | |
1131 | static | |
bdf64013 | 1132 | struct ust_app_ctx *alloc_ust_app_ctx(struct lttng_ust_context_attr *uctx) |
8b366481 DG |
1133 | { |
1134 | struct ust_app_ctx *ua_ctx; | |
1135 | ||
1136 | ua_ctx = zmalloc(sizeof(struct ust_app_ctx)); | |
1137 | if (ua_ctx == NULL) { | |
1138 | goto error; | |
1139 | } | |
1140 | ||
31746f93 DG |
1141 | CDS_INIT_LIST_HEAD(&ua_ctx->list); |
1142 | ||
8b366481 DG |
1143 | if (uctx) { |
1144 | memcpy(&ua_ctx->ctx, uctx, sizeof(ua_ctx->ctx)); | |
bdf64013 JG |
1145 | if (uctx->ctx == LTTNG_UST_CONTEXT_APP_CONTEXT) { |
1146 | char *provider_name = NULL, *ctx_name = NULL; | |
1147 | ||
1148 | provider_name = strdup(uctx->u.app_ctx.provider_name); | |
1149 | ctx_name = strdup(uctx->u.app_ctx.ctx_name); | |
1150 | if (!provider_name || !ctx_name) { | |
1151 | free(provider_name); | |
1152 | free(ctx_name); | |
1153 | goto error; | |
1154 | } | |
1155 | ||
1156 | ua_ctx->ctx.u.app_ctx.provider_name = provider_name; | |
1157 | ua_ctx->ctx.u.app_ctx.ctx_name = ctx_name; | |
1158 | } | |
8b366481 DG |
1159 | } |
1160 | ||
1161 | DBG3("UST app context %d allocated", ua_ctx->ctx.ctx); | |
8b366481 | 1162 | return ua_ctx; |
bdf64013 JG |
1163 | error: |
1164 | free(ua_ctx); | |
1165 | return NULL; | |
8b366481 DG |
1166 | } |
1167 | ||
025faf73 DG |
1168 | /* |
1169 | * Allocate a filter and copy the given original filter. | |
1170 | * | |
1171 | * Return allocated filter or NULL on error. | |
1172 | */ | |
51755dc8 JG |
1173 | static struct lttng_filter_bytecode *copy_filter_bytecode( |
1174 | struct lttng_filter_bytecode *orig_f) | |
025faf73 | 1175 | { |
51755dc8 | 1176 | struct lttng_filter_bytecode *filter = NULL; |
025faf73 DG |
1177 | |
1178 | /* Copy filter bytecode */ | |
1179 | filter = zmalloc(sizeof(*filter) + orig_f->len); | |
1180 | if (!filter) { | |
51755dc8 | 1181 | PERROR("zmalloc alloc filter bytecode"); |
025faf73 DG |
1182 | goto error; |
1183 | } | |
1184 | ||
1185 | memcpy(filter, orig_f, sizeof(*filter) + orig_f->len); | |
1186 | ||
1187 | error: | |
1188 | return filter; | |
1189 | } | |
1190 | ||
51755dc8 JG |
1191 | /* |
1192 | * Create a liblttng-ust filter bytecode from given bytecode. | |
1193 | * | |
1194 | * Return allocated filter or NULL on error. | |
1195 | */ | |
1196 | static struct lttng_ust_filter_bytecode *create_ust_bytecode_from_bytecode( | |
1197 | struct lttng_filter_bytecode *orig_f) | |
1198 | { | |
1199 | struct lttng_ust_filter_bytecode *filter = NULL; | |
1200 | ||
1201 | /* Copy filter bytecode */ | |
1202 | filter = zmalloc(sizeof(*filter) + orig_f->len); | |
1203 | if (!filter) { | |
1204 | PERROR("zmalloc alloc ust filter bytecode"); | |
1205 | goto error; | |
1206 | } | |
1207 | ||
1208 | assert(sizeof(struct lttng_filter_bytecode) == | |
1209 | sizeof(struct lttng_ust_filter_bytecode)); | |
1210 | memcpy(filter, orig_f, sizeof(*filter) + orig_f->len); | |
1211 | error: | |
1212 | return filter; | |
1213 | } | |
1214 | ||
099e26bd | 1215 | /* |
421cb601 DG |
1216 | * Find an ust_app using the sock and return it. RCU read side lock must be |
1217 | * held before calling this helper function. | |
099e26bd | 1218 | */ |
f20baf8e | 1219 | struct ust_app *ust_app_find_by_sock(int sock) |
099e26bd | 1220 | { |
bec39940 | 1221 | struct lttng_ht_node_ulong *node; |
bec39940 | 1222 | struct lttng_ht_iter iter; |
f6a9efaa | 1223 | |
852d0037 | 1224 | lttng_ht_lookup(ust_app_ht_by_sock, (void *)((unsigned long) sock), &iter); |
bec39940 | 1225 | node = lttng_ht_iter_get_node_ulong(&iter); |
f6a9efaa DG |
1226 | if (node == NULL) { |
1227 | DBG2("UST app find by sock %d not found", sock); | |
f6a9efaa DG |
1228 | goto error; |
1229 | } | |
852d0037 DG |
1230 | |
1231 | return caa_container_of(node, struct ust_app, sock_n); | |
f6a9efaa DG |
1232 | |
1233 | error: | |
1234 | return NULL; | |
099e26bd DG |
1235 | } |
1236 | ||
d0b96690 DG |
1237 | /* |
1238 | * Find an ust_app using the notify sock and return it. RCU read side lock must | |
1239 | * be held before calling this helper function. | |
1240 | */ | |
1241 | static struct ust_app *find_app_by_notify_sock(int sock) | |
1242 | { | |
1243 | struct lttng_ht_node_ulong *node; | |
1244 | struct lttng_ht_iter iter; | |
1245 | ||
1246 | lttng_ht_lookup(ust_app_ht_by_notify_sock, (void *)((unsigned long) sock), | |
1247 | &iter); | |
1248 | node = lttng_ht_iter_get_node_ulong(&iter); | |
1249 | if (node == NULL) { | |
1250 | DBG2("UST app find by notify sock %d not found", sock); | |
1251 | goto error; | |
1252 | } | |
1253 | ||
1254 | return caa_container_of(node, struct ust_app, notify_sock_n); | |
1255 | ||
1256 | error: | |
1257 | return NULL; | |
1258 | } | |
1259 | ||
025faf73 DG |
1260 | /* |
1261 | * Lookup for an ust app event based on event name, filter bytecode and the | |
1262 | * event loglevel. | |
1263 | * | |
1264 | * Return an ust_app_event object or NULL on error. | |
1265 | */ | |
18eace3b | 1266 | static struct ust_app_event *find_ust_app_event(struct lttng_ht *ht, |
88e3c2f5 | 1267 | const char *name, const struct lttng_filter_bytecode *filter, |
2106efa0 | 1268 | int loglevel_value, |
39c5a3a7 | 1269 | const struct lttng_event_exclusion *exclusion) |
18eace3b DG |
1270 | { |
1271 | struct lttng_ht_iter iter; | |
1272 | struct lttng_ht_node_str *node; | |
1273 | struct ust_app_event *event = NULL; | |
1274 | struct ust_app_ht_key key; | |
18eace3b DG |
1275 | |
1276 | assert(name); | |
1277 | assert(ht); | |
1278 | ||
1279 | /* Setup key for event lookup. */ | |
1280 | key.name = name; | |
1281 | key.filter = filter; | |
2106efa0 | 1282 | key.loglevel_type = loglevel_value; |
39c5a3a7 | 1283 | /* lttng_event_exclusion and lttng_ust_event_exclusion structures are similar */ |
51755dc8 | 1284 | key.exclusion = exclusion; |
18eace3b | 1285 | |
025faf73 DG |
1286 | /* Lookup using the event name as hash and a custom match fct. */ |
1287 | cds_lfht_lookup(ht->ht, ht->hash_fct((void *) name, lttng_ht_seed), | |
1288 | ht_match_ust_app_event, &key, &iter.iter); | |
18eace3b DG |
1289 | node = lttng_ht_iter_get_node_str(&iter); |
1290 | if (node == NULL) { | |
1291 | goto end; | |
1292 | } | |
1293 | ||
1294 | event = caa_container_of(node, struct ust_app_event, node); | |
1295 | ||
1296 | end: | |
18eace3b DG |
1297 | return event; |
1298 | } | |
1299 | ||
55cc08a6 DG |
1300 | /* |
1301 | * Create the channel context on the tracer. | |
d0b96690 DG |
1302 | * |
1303 | * Called with UST app session lock held. | |
55cc08a6 DG |
1304 | */ |
1305 | static | |
1306 | int create_ust_channel_context(struct ust_app_channel *ua_chan, | |
1307 | struct ust_app_ctx *ua_ctx, struct ust_app *app) | |
1308 | { | |
1309 | int ret; | |
1310 | ||
840cb59c | 1311 | health_code_update(); |
86acf0da | 1312 | |
fb45065e | 1313 | pthread_mutex_lock(&app->sock_lock); |
852d0037 | 1314 | ret = ustctl_add_context(app->sock, &ua_ctx->ctx, |
55cc08a6 | 1315 | ua_chan->obj, &ua_ctx->obj); |
fb45065e | 1316 | pthread_mutex_unlock(&app->sock_lock); |
55cc08a6 | 1317 | if (ret < 0) { |
ffe60014 DG |
1318 | if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) { |
1319 | ERR("UST app create channel context failed for app (pid: %d) " | |
1320 | "with ret %d", app->pid, ret); | |
1321 | } else { | |
3757b385 DG |
1322 | /* |
1323 | * This is normal behavior, an application can die during the | |
1324 | * creation process. Don't report an error so the execution can | |
1325 | * continue normally. | |
1326 | */ | |
1327 | ret = 0; | |
88e3c2f5 | 1328 | DBG3("UST app add context failed. Application is dead."); |
ffe60014 | 1329 | } |
55cc08a6 DG |
1330 | goto error; |
1331 | } | |
1332 | ||
1333 | ua_ctx->handle = ua_ctx->obj->handle; | |
1334 | ||
d0b96690 DG |
1335 | DBG2("UST app context handle %d created successfully for channel %s", |
1336 | ua_ctx->handle, ua_chan->name); | |
55cc08a6 DG |
1337 | |
1338 | error: | |
840cb59c | 1339 | health_code_update(); |
55cc08a6 DG |
1340 | return ret; |
1341 | } | |
1342 | ||
53a80697 MD |
1343 | /* |
1344 | * Set the filter on the tracer. | |
1345 | */ | |
1346 | static | |
1347 | int set_ust_event_filter(struct ust_app_event *ua_event, | |
1348 | struct ust_app *app) | |
1349 | { | |
1350 | int ret; | |
51755dc8 | 1351 | struct lttng_ust_filter_bytecode *ust_bytecode = NULL; |
53a80697 | 1352 | |
840cb59c | 1353 | health_code_update(); |
86acf0da | 1354 | |
53a80697 | 1355 | if (!ua_event->filter) { |
86acf0da DG |
1356 | ret = 0; |
1357 | goto error; | |
53a80697 MD |
1358 | } |
1359 | ||
51755dc8 JG |
1360 | ust_bytecode = create_ust_bytecode_from_bytecode(ua_event->filter); |
1361 | if (!ust_bytecode) { | |
1362 | ret = -LTTNG_ERR_NOMEM; | |
1363 | goto error; | |
1364 | } | |
fb45065e | 1365 | pthread_mutex_lock(&app->sock_lock); |
51755dc8 | 1366 | ret = ustctl_set_filter(app->sock, ust_bytecode, |
53a80697 | 1367 | ua_event->obj); |
fb45065e | 1368 | pthread_mutex_unlock(&app->sock_lock); |
53a80697 | 1369 | if (ret < 0) { |
ffe60014 DG |
1370 | if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) { |
1371 | ERR("UST app event %s filter failed for app (pid: %d) " | |
1372 | "with ret %d", ua_event->attr.name, app->pid, ret); | |
1373 | } else { | |
3757b385 DG |
1374 | /* |
1375 | * This is normal behavior, an application can die during the | |
1376 | * creation process. Don't report an error so the execution can | |
1377 | * continue normally. | |
1378 | */ | |
1379 | ret = 0; | |
ffe60014 DG |
1380 | DBG3("UST app filter event failed. Application is dead."); |
1381 | } | |
53a80697 MD |
1382 | goto error; |
1383 | } | |
1384 | ||
1385 | DBG2("UST filter set successfully for event %s", ua_event->name); | |
1386 | ||
1387 | error: | |
840cb59c | 1388 | health_code_update(); |
51755dc8 | 1389 | free(ust_bytecode); |
53a80697 MD |
1390 | return ret; |
1391 | } | |
1392 | ||
51755dc8 JG |
1393 | static |
1394 | struct lttng_ust_event_exclusion *create_ust_exclusion_from_exclusion( | |
1395 | struct lttng_event_exclusion *exclusion) | |
1396 | { | |
1397 | struct lttng_ust_event_exclusion *ust_exclusion = NULL; | |
1398 | size_t exclusion_alloc_size = sizeof(struct lttng_ust_event_exclusion) + | |
1399 | LTTNG_UST_SYM_NAME_LEN * exclusion->count; | |
1400 | ||
1401 | ust_exclusion = zmalloc(exclusion_alloc_size); | |
1402 | if (!ust_exclusion) { | |
1403 | PERROR("malloc"); | |
1404 | goto end; | |
1405 | } | |
1406 | ||
1407 | assert(sizeof(struct lttng_event_exclusion) == | |
1408 | sizeof(struct lttng_ust_event_exclusion)); | |
1409 | memcpy(ust_exclusion, exclusion, exclusion_alloc_size); | |
1410 | end: | |
1411 | return ust_exclusion; | |
1412 | } | |
1413 | ||
7cc9a73c JI |
1414 | /* |
1415 | * Set event exclusions on the tracer. | |
1416 | */ | |
1417 | static | |
1418 | int set_ust_event_exclusion(struct ust_app_event *ua_event, | |
1419 | struct ust_app *app) | |
1420 | { | |
1421 | int ret; | |
51755dc8 | 1422 | struct lttng_ust_event_exclusion *ust_exclusion = NULL; |
7cc9a73c JI |
1423 | |
1424 | health_code_update(); | |
1425 | ||
1426 | if (!ua_event->exclusion || !ua_event->exclusion->count) { | |
1427 | ret = 0; | |
1428 | goto error; | |
1429 | } | |
1430 | ||
51755dc8 JG |
1431 | ust_exclusion = create_ust_exclusion_from_exclusion( |
1432 | ua_event->exclusion); | |
1433 | if (!ust_exclusion) { | |
1434 | ret = -LTTNG_ERR_NOMEM; | |
1435 | goto error; | |
1436 | } | |
fb45065e | 1437 | pthread_mutex_lock(&app->sock_lock); |
51755dc8 | 1438 | ret = ustctl_set_exclusion(app->sock, ust_exclusion, ua_event->obj); |
fb45065e | 1439 | pthread_mutex_unlock(&app->sock_lock); |
7cc9a73c JI |
1440 | if (ret < 0) { |
1441 | if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) { | |
1442 | ERR("UST app event %s exclusions failed for app (pid: %d) " | |
1443 | "with ret %d", ua_event->attr.name, app->pid, ret); | |
1444 | } else { | |
1445 | /* | |
1446 | * This is normal behavior, an application can die during the | |
1447 | * creation process. Don't report an error so the execution can | |
1448 | * continue normally. | |
1449 | */ | |
1450 | ret = 0; | |
1451 | DBG3("UST app event exclusion failed. Application is dead."); | |
1452 | } | |
1453 | goto error; | |
1454 | } | |
1455 | ||
1456 | DBG2("UST exclusion set successfully for event %s", ua_event->name); | |
1457 | ||
1458 | error: | |
1459 | health_code_update(); | |
51755dc8 | 1460 | free(ust_exclusion); |
7cc9a73c JI |
1461 | return ret; |
1462 | } | |
1463 | ||
9730260e DG |
1464 | /* |
1465 | * Disable the specified event on to UST tracer for the UST session. | |
1466 | */ | |
1467 | static int disable_ust_event(struct ust_app *app, | |
1468 | struct ust_app_session *ua_sess, struct ust_app_event *ua_event) | |
1469 | { | |
1470 | int ret; | |
1471 | ||
840cb59c | 1472 | health_code_update(); |
86acf0da | 1473 | |
fb45065e | 1474 | pthread_mutex_lock(&app->sock_lock); |
852d0037 | 1475 | ret = ustctl_disable(app->sock, ua_event->obj); |
fb45065e | 1476 | pthread_mutex_unlock(&app->sock_lock); |
9730260e | 1477 | if (ret < 0) { |
ffe60014 DG |
1478 | if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) { |
1479 | ERR("UST app event %s disable failed for app (pid: %d) " | |
1480 | "and session handle %d with ret %d", | |
1481 | ua_event->attr.name, app->pid, ua_sess->handle, ret); | |
1482 | } else { | |
3757b385 DG |
1483 | /* |
1484 | * This is normal behavior, an application can die during the | |
1485 | * creation process. Don't report an error so the execution can | |
1486 | * continue normally. | |
1487 | */ | |
1488 | ret = 0; | |
ffe60014 DG |
1489 | DBG3("UST app disable event failed. Application is dead."); |
1490 | } | |
9730260e DG |
1491 | goto error; |
1492 | } | |
1493 | ||
1494 | DBG2("UST app event %s disabled successfully for app (pid: %d)", | |
852d0037 | 1495 | ua_event->attr.name, app->pid); |
9730260e DG |
1496 | |
1497 | error: | |
840cb59c | 1498 | health_code_update(); |
9730260e DG |
1499 | return ret; |
1500 | } | |
1501 | ||
78f0bacd DG |
1502 | /* |
1503 | * Disable the specified channel on to UST tracer for the UST session. | |
1504 | */ | |
1505 | static int disable_ust_channel(struct ust_app *app, | |
1506 | struct ust_app_session *ua_sess, struct ust_app_channel *ua_chan) | |
1507 | { | |
1508 | int ret; | |
1509 | ||
840cb59c | 1510 | health_code_update(); |
86acf0da | 1511 | |
fb45065e | 1512 | pthread_mutex_lock(&app->sock_lock); |
852d0037 | 1513 | ret = ustctl_disable(app->sock, ua_chan->obj); |
fb45065e | 1514 | pthread_mutex_unlock(&app->sock_lock); |
78f0bacd | 1515 | if (ret < 0) { |
ffe60014 DG |
1516 | if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) { |
1517 | ERR("UST app channel %s disable failed for app (pid: %d) " | |
1518 | "and session handle %d with ret %d", | |
1519 | ua_chan->name, app->pid, ua_sess->handle, ret); | |
1520 | } else { | |
3757b385 DG |
1521 | /* |
1522 | * This is normal behavior, an application can die during the | |
1523 | * creation process. Don't report an error so the execution can | |
1524 | * continue normally. | |
1525 | */ | |
1526 | ret = 0; | |
ffe60014 DG |
1527 | DBG3("UST app disable channel failed. Application is dead."); |
1528 | } | |
78f0bacd DG |
1529 | goto error; |
1530 | } | |
1531 | ||
78f0bacd | 1532 | DBG2("UST app channel %s disabled successfully for app (pid: %d)", |
852d0037 | 1533 | ua_chan->name, app->pid); |
78f0bacd DG |
1534 | |
1535 | error: | |
840cb59c | 1536 | health_code_update(); |
78f0bacd DG |
1537 | return ret; |
1538 | } | |
1539 | ||
1540 | /* | |
1541 | * Enable the specified channel on to UST tracer for the UST session. | |
1542 | */ | |
1543 | static int enable_ust_channel(struct ust_app *app, | |
1544 | struct ust_app_session *ua_sess, struct ust_app_channel *ua_chan) | |
1545 | { | |
1546 | int ret; | |
1547 | ||
840cb59c | 1548 | health_code_update(); |
86acf0da | 1549 | |
fb45065e | 1550 | pthread_mutex_lock(&app->sock_lock); |
852d0037 | 1551 | ret = ustctl_enable(app->sock, ua_chan->obj); |
fb45065e | 1552 | pthread_mutex_unlock(&app->sock_lock); |
78f0bacd | 1553 | if (ret < 0) { |
ffe60014 DG |
1554 | if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) { |
1555 | ERR("UST app channel %s enable failed for app (pid: %d) " | |
1556 | "and session handle %d with ret %d", | |
1557 | ua_chan->name, app->pid, ua_sess->handle, ret); | |
1558 | } else { | |
3757b385 DG |
1559 | /* |
1560 | * This is normal behavior, an application can die during the | |
1561 | * creation process. Don't report an error so the execution can | |
1562 | * continue normally. | |
1563 | */ | |
1564 | ret = 0; | |
ffe60014 DG |
1565 | DBG3("UST app enable channel failed. Application is dead."); |
1566 | } | |
78f0bacd DG |
1567 | goto error; |
1568 | } | |
1569 | ||
1570 | ua_chan->enabled = 1; | |
1571 | ||
1572 | DBG2("UST app channel %s enabled successfully for app (pid: %d)", | |
852d0037 | 1573 | ua_chan->name, app->pid); |
78f0bacd DG |
1574 | |
1575 | error: | |
840cb59c | 1576 | health_code_update(); |
78f0bacd DG |
1577 | return ret; |
1578 | } | |
1579 | ||
edb67388 DG |
1580 | /* |
1581 | * Enable the specified event on to UST tracer for the UST session. | |
1582 | */ | |
1583 | static int enable_ust_event(struct ust_app *app, | |
1584 | struct ust_app_session *ua_sess, struct ust_app_event *ua_event) | |
1585 | { | |
1586 | int ret; | |
1587 | ||
840cb59c | 1588 | health_code_update(); |
86acf0da | 1589 | |
fb45065e | 1590 | pthread_mutex_lock(&app->sock_lock); |
852d0037 | 1591 | ret = ustctl_enable(app->sock, ua_event->obj); |
fb45065e | 1592 | pthread_mutex_unlock(&app->sock_lock); |
edb67388 | 1593 | if (ret < 0) { |
ffe60014 DG |
1594 | if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) { |
1595 | ERR("UST app event %s enable failed for app (pid: %d) " | |
1596 | "and session handle %d with ret %d", | |
1597 | ua_event->attr.name, app->pid, ua_sess->handle, ret); | |
1598 | } else { | |
3757b385 DG |
1599 | /* |
1600 | * This is normal behavior, an application can die during the | |
1601 | * creation process. Don't report an error so the execution can | |
1602 | * continue normally. | |
1603 | */ | |
1604 | ret = 0; | |
ffe60014 DG |
1605 | DBG3("UST app enable event failed. Application is dead."); |
1606 | } | |
edb67388 DG |
1607 | goto error; |
1608 | } | |
1609 | ||
1610 | DBG2("UST app event %s enabled successfully for app (pid: %d)", | |
852d0037 | 1611 | ua_event->attr.name, app->pid); |
edb67388 DG |
1612 | |
1613 | error: | |
840cb59c | 1614 | health_code_update(); |
edb67388 DG |
1615 | return ret; |
1616 | } | |
1617 | ||
099e26bd | 1618 | /* |
7972aab2 | 1619 | * Send channel and stream buffer to application. |
4f3ab6ee | 1620 | * |
ffe60014 | 1621 | * Return 0 on success. On error, a negative value is returned. |
4f3ab6ee | 1622 | */ |
7972aab2 DG |
1623 | static int send_channel_pid_to_ust(struct ust_app *app, |
1624 | struct ust_app_session *ua_sess, struct ust_app_channel *ua_chan) | |
4f3ab6ee DG |
1625 | { |
1626 | int ret; | |
ffe60014 | 1627 | struct ust_app_stream *stream, *stmp; |
4f3ab6ee DG |
1628 | |
1629 | assert(app); | |
ffe60014 | 1630 | assert(ua_sess); |
4f3ab6ee | 1631 | assert(ua_chan); |
4f3ab6ee | 1632 | |
840cb59c | 1633 | health_code_update(); |
4f3ab6ee | 1634 | |
7972aab2 DG |
1635 | DBG("UST app sending channel %s to UST app sock %d", ua_chan->name, |
1636 | app->sock); | |
86acf0da | 1637 | |
ffe60014 DG |
1638 | /* Send channel to the application. */ |
1639 | ret = ust_consumer_send_channel_to_ust(app, ua_sess, ua_chan); | |
a7169585 MD |
1640 | if (ret == -EPIPE || ret == -LTTNG_UST_ERR_EXITING) { |
1641 | ret = -ENOTCONN; /* Caused by app exiting. */ | |
1642 | goto error; | |
1643 | } else if (ret < 0) { | |
b551a063 DG |
1644 | goto error; |
1645 | } | |
1646 | ||
d88aee68 DG |
1647 | health_code_update(); |
1648 | ||
ffe60014 DG |
1649 | /* Send all streams to application. */ |
1650 | cds_list_for_each_entry_safe(stream, stmp, &ua_chan->streams.head, list) { | |
1651 | ret = ust_consumer_send_stream_to_ust(app, ua_chan, stream); | |
a7169585 MD |
1652 | if (ret == -EPIPE || ret == -LTTNG_UST_ERR_EXITING) { |
1653 | ret = -ENOTCONN; /* Caused by app exiting. */ | |
1654 | goto error; | |
1655 | } else if (ret < 0) { | |
ffe60014 DG |
1656 | goto error; |
1657 | } | |
1658 | /* We don't need the stream anymore once sent to the tracer. */ | |
1659 | cds_list_del(&stream->list); | |
fb45065e | 1660 | delete_ust_app_stream(-1, stream, app); |
ffe60014 | 1661 | } |
ffe60014 DG |
1662 | /* Flag the channel that it is sent to the application. */ |
1663 | ua_chan->is_sent = 1; | |
ffe60014 | 1664 | |
b551a063 | 1665 | error: |
840cb59c | 1666 | health_code_update(); |
b551a063 DG |
1667 | return ret; |
1668 | } | |
1669 | ||
91d76f53 | 1670 | /* |
5b4a0ec0 | 1671 | * Create the specified event onto the UST tracer for a UST session. |
d0b96690 DG |
1672 | * |
1673 | * Should be called with session mutex held. | |
91d76f53 | 1674 | */ |
edb67388 DG |
1675 | static |
1676 | int create_ust_event(struct ust_app *app, struct ust_app_session *ua_sess, | |
1677 | struct ust_app_channel *ua_chan, struct ust_app_event *ua_event) | |
91d76f53 | 1678 | { |
5b4a0ec0 | 1679 | int ret = 0; |
284d8f55 | 1680 | |
840cb59c | 1681 | health_code_update(); |
86acf0da | 1682 | |
5b4a0ec0 | 1683 | /* Create UST event on tracer */ |
fb45065e | 1684 | pthread_mutex_lock(&app->sock_lock); |
852d0037 | 1685 | ret = ustctl_create_event(app->sock, &ua_event->attr, ua_chan->obj, |
5b4a0ec0 | 1686 | &ua_event->obj); |
fb45065e | 1687 | pthread_mutex_unlock(&app->sock_lock); |
5b4a0ec0 | 1688 | if (ret < 0) { |
ffe60014 | 1689 | if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) { |
88e3c2f5 | 1690 | abort(); |
ffe60014 DG |
1691 | ERR("Error ustctl create event %s for app pid: %d with ret %d", |
1692 | ua_event->attr.name, app->pid, ret); | |
1693 | } else { | |
3757b385 DG |
1694 | /* |
1695 | * This is normal behavior, an application can die during the | |
1696 | * creation process. Don't report an error so the execution can | |
1697 | * continue normally. | |
1698 | */ | |
1699 | ret = 0; | |
ffe60014 DG |
1700 | DBG3("UST app create event failed. Application is dead."); |
1701 | } | |
5b4a0ec0 | 1702 | goto error; |
91d76f53 | 1703 | } |
f6a9efaa | 1704 | |
5b4a0ec0 | 1705 | ua_event->handle = ua_event->obj->handle; |
284d8f55 | 1706 | |
5b4a0ec0 | 1707 | DBG2("UST app event %s created successfully for pid:%d", |
852d0037 | 1708 | ua_event->attr.name, app->pid); |
f6a9efaa | 1709 | |
840cb59c | 1710 | health_code_update(); |
86acf0da | 1711 | |
025faf73 DG |
1712 | /* Set filter if one is present. */ |
1713 | if (ua_event->filter) { | |
1714 | ret = set_ust_event_filter(ua_event, app); | |
1715 | if (ret < 0) { | |
1716 | goto error; | |
1717 | } | |
1718 | } | |
1719 | ||
7cc9a73c JI |
1720 | /* Set exclusions for the event */ |
1721 | if (ua_event->exclusion) { | |
1722 | ret = set_ust_event_exclusion(ua_event, app); | |
1723 | if (ret < 0) { | |
1724 | goto error; | |
1725 | } | |
1726 | } | |
1727 | ||
8535a6d9 | 1728 | /* If event not enabled, disable it on the tracer */ |
40113787 MD |
1729 | if (ua_event->enabled) { |
1730 | /* | |
1731 | * We now need to explicitly enable the event, since it | |
1732 | * is now disabled at creation. | |
1733 | */ | |
1734 | ret = enable_ust_event(app, ua_sess, ua_event); | |
1735 | if (ret < 0) { | |
1736 | /* | |
1737 | * If we hit an EPERM, something is wrong with our enable call. If | |
1738 | * we get an EEXIST, there is a problem on the tracer side since we | |
1739 | * just created it. | |
1740 | */ | |
1741 | switch (ret) { | |
1742 | case -LTTNG_UST_ERR_PERM: | |
1743 | /* Code flow problem */ | |
1744 | assert(0); | |
1745 | case -LTTNG_UST_ERR_EXIST: | |
1746 | /* It's OK for our use case. */ | |
1747 | ret = 0; | |
1748 | break; | |
1749 | default: | |
1750 | break; | |
1751 | } | |
1752 | goto error; | |
1753 | } | |
8535a6d9 DG |
1754 | } |
1755 | ||
5b4a0ec0 | 1756 | error: |
840cb59c | 1757 | health_code_update(); |
5b4a0ec0 | 1758 | return ret; |
91d76f53 | 1759 | } |
48842b30 | 1760 | |
5b4a0ec0 DG |
1761 | /* |
1762 | * Copy data between an UST app event and a LTT event. | |
1763 | */ | |
421cb601 | 1764 | static void shadow_copy_event(struct ust_app_event *ua_event, |
48842b30 DG |
1765 | struct ltt_ust_event *uevent) |
1766 | { | |
b4ffad32 JI |
1767 | size_t exclusion_alloc_size; |
1768 | ||
48842b30 DG |
1769 | strncpy(ua_event->name, uevent->attr.name, sizeof(ua_event->name)); |
1770 | ua_event->name[sizeof(ua_event->name) - 1] = '\0'; | |
1771 | ||
fc34caaa DG |
1772 | ua_event->enabled = uevent->enabled; |
1773 | ||
5b4a0ec0 DG |
1774 | /* Copy event attributes */ |
1775 | memcpy(&ua_event->attr, &uevent->attr, sizeof(ua_event->attr)); | |
1776 | ||
53a80697 MD |
1777 | /* Copy filter bytecode */ |
1778 | if (uevent->filter) { | |
51755dc8 | 1779 | ua_event->filter = copy_filter_bytecode(uevent->filter); |
025faf73 | 1780 | /* Filter might be NULL here in case of ENONEM. */ |
53a80697 | 1781 | } |
b4ffad32 JI |
1782 | |
1783 | /* Copy exclusion data */ | |
1784 | if (uevent->exclusion) { | |
51755dc8 | 1785 | exclusion_alloc_size = sizeof(struct lttng_event_exclusion) + |
b4ffad32 JI |
1786 | LTTNG_UST_SYM_NAME_LEN * uevent->exclusion->count; |
1787 | ua_event->exclusion = zmalloc(exclusion_alloc_size); | |
5f8df26c JI |
1788 | if (ua_event->exclusion == NULL) { |
1789 | PERROR("malloc"); | |
1790 | } else { | |
1791 | memcpy(ua_event->exclusion, uevent->exclusion, | |
1792 | exclusion_alloc_size); | |
b4ffad32 JI |
1793 | } |
1794 | } | |
48842b30 DG |
1795 | } |
1796 | ||
5b4a0ec0 DG |
1797 | /* |
1798 | * Copy data between an UST app channel and a LTT channel. | |
1799 | */ | |
421cb601 | 1800 | static void shadow_copy_channel(struct ust_app_channel *ua_chan, |
48842b30 DG |
1801 | struct ltt_ust_channel *uchan) |
1802 | { | |
fc34caaa | 1803 | DBG2("UST app shadow copy of channel %s started", ua_chan->name); |
48842b30 DG |
1804 | |
1805 | strncpy(ua_chan->name, uchan->name, sizeof(ua_chan->name)); | |
1806 | ua_chan->name[sizeof(ua_chan->name) - 1] = '\0'; | |
ffe60014 | 1807 | |
1624d5b7 JD |
1808 | ua_chan->tracefile_size = uchan->tracefile_size; |
1809 | ua_chan->tracefile_count = uchan->tracefile_count; | |
1810 | ||
ffe60014 DG |
1811 | /* Copy event attributes since the layout is different. */ |
1812 | ua_chan->attr.subbuf_size = uchan->attr.subbuf_size; | |
1813 | ua_chan->attr.num_subbuf = uchan->attr.num_subbuf; | |
1814 | ua_chan->attr.overwrite = uchan->attr.overwrite; | |
1815 | ua_chan->attr.switch_timer_interval = uchan->attr.switch_timer_interval; | |
1816 | ua_chan->attr.read_timer_interval = uchan->attr.read_timer_interval; | |
e9404c27 | 1817 | ua_chan->monitor_timer_interval = uchan->monitor_timer_interval; |
ffe60014 | 1818 | ua_chan->attr.output = uchan->attr.output; |
491d1539 MD |
1819 | ua_chan->attr.blocking_timeout = uchan->attr.u.s.blocking_timeout; |
1820 | ||
ffe60014 DG |
1821 | /* |
1822 | * Note that the attribute channel type is not set since the channel on the | |
1823 | * tracing registry side does not have this information. | |
1824 | */ | |
48842b30 | 1825 | |
fc34caaa | 1826 | ua_chan->enabled = uchan->enabled; |
7972aab2 | 1827 | ua_chan->tracing_channel_id = uchan->id; |
fc34caaa | 1828 | |
fc34caaa | 1829 | DBG3("UST app shadow copy of channel %s done", ua_chan->name); |
48842b30 DG |
1830 | } |
1831 | ||
5b4a0ec0 DG |
1832 | /* |
1833 | * Copy data between a UST app session and a regular LTT session. | |
1834 | */ | |
421cb601 | 1835 | static void shadow_copy_session(struct ust_app_session *ua_sess, |
bec39940 | 1836 | struct ltt_ust_session *usess, struct ust_app *app) |
48842b30 | 1837 | { |
477d7741 MD |
1838 | struct tm *timeinfo; |
1839 | char datetime[16]; | |
1840 | int ret; | |
d7ba1388 | 1841 | char tmp_shm_path[PATH_MAX]; |
477d7741 | 1842 | |
940c4592 | 1843 | timeinfo = localtime(&app->registration_time); |
477d7741 | 1844 | strftime(datetime, sizeof(datetime), "%Y%m%d-%H%M%S", timeinfo); |
48842b30 | 1845 | |
421cb601 | 1846 | DBG2("Shadow copy of session handle %d", ua_sess->handle); |
48842b30 | 1847 | |
7972aab2 DG |
1848 | ua_sess->tracing_id = usess->id; |
1849 | ua_sess->id = get_next_session_id(); | |
470cc211 JG |
1850 | ua_sess->real_credentials.uid = app->uid; |
1851 | ua_sess->real_credentials.gid = app->gid; | |
1852 | ua_sess->effective_credentials.uid = usess->uid; | |
1853 | ua_sess->effective_credentials.gid = usess->gid; | |
7972aab2 DG |
1854 | ua_sess->buffer_type = usess->buffer_type; |
1855 | ua_sess->bits_per_long = app->bits_per_long; | |
6addfa37 | 1856 | |
7972aab2 | 1857 | /* There is only one consumer object per session possible. */ |
6addfa37 | 1858 | consumer_output_get(usess->consumer); |
7972aab2 | 1859 | ua_sess->consumer = usess->consumer; |
6addfa37 | 1860 | |
2bba9e53 | 1861 | ua_sess->output_traces = usess->output_traces; |
ecc48a90 | 1862 | ua_sess->live_timer_interval = usess->live_timer_interval; |
84ad93e8 DG |
1863 | copy_channel_attr_to_ustctl(&ua_sess->metadata_attr, |
1864 | &usess->metadata_attr); | |
7972aab2 DG |
1865 | |
1866 | switch (ua_sess->buffer_type) { | |
1867 | case LTTNG_BUFFER_PER_PID: | |
1868 | ret = snprintf(ua_sess->path, sizeof(ua_sess->path), | |
dec56f6c | 1869 | DEFAULT_UST_TRACE_PID_PATH "/%s-%d-%s", app->name, app->pid, |
7972aab2 DG |
1870 | datetime); |
1871 | break; | |
1872 | case LTTNG_BUFFER_PER_UID: | |
1873 | ret = snprintf(ua_sess->path, sizeof(ua_sess->path), | |
470cc211 JG |
1874 | DEFAULT_UST_TRACE_UID_PATH, |
1875 | ua_sess->real_credentials.uid, | |
1876 | app->bits_per_long); | |
7972aab2 DG |
1877 | break; |
1878 | default: | |
1879 | assert(0); | |
1880 | goto error; | |
1881 | } | |
477d7741 MD |
1882 | if (ret < 0) { |
1883 | PERROR("asprintf UST shadow copy session"); | |
477d7741 | 1884 | assert(0); |
7972aab2 | 1885 | goto error; |
477d7741 MD |
1886 | } |
1887 | ||
3d071855 MD |
1888 | strncpy(ua_sess->root_shm_path, usess->root_shm_path, |
1889 | sizeof(ua_sess->root_shm_path)); | |
1890 | ua_sess->root_shm_path[sizeof(ua_sess->root_shm_path) - 1] = '\0'; | |
d7ba1388 MD |
1891 | strncpy(ua_sess->shm_path, usess->shm_path, |
1892 | sizeof(ua_sess->shm_path)); | |
1893 | ua_sess->shm_path[sizeof(ua_sess->shm_path) - 1] = '\0'; | |
1894 | if (ua_sess->shm_path[0]) { | |
1895 | switch (ua_sess->buffer_type) { | |
1896 | case LTTNG_BUFFER_PER_PID: | |
1897 | ret = snprintf(tmp_shm_path, sizeof(tmp_shm_path), | |
5da88b0f | 1898 | "/" DEFAULT_UST_TRACE_PID_PATH "/%s-%d-%s", |
d7ba1388 MD |
1899 | app->name, app->pid, datetime); |
1900 | break; | |
1901 | case LTTNG_BUFFER_PER_UID: | |
1902 | ret = snprintf(tmp_shm_path, sizeof(tmp_shm_path), | |
5da88b0f | 1903 | "/" DEFAULT_UST_TRACE_UID_PATH, |
d7ba1388 MD |
1904 | app->uid, app->bits_per_long); |
1905 | break; | |
1906 | default: | |
1907 | assert(0); | |
1908 | goto error; | |
1909 | } | |
1910 | if (ret < 0) { | |
1911 | PERROR("sprintf UST shadow copy session"); | |
1912 | assert(0); | |
1913 | goto error; | |
1914 | } | |
1915 | strncat(ua_sess->shm_path, tmp_shm_path, | |
1916 | sizeof(ua_sess->shm_path) - strlen(ua_sess->shm_path) - 1); | |
1917 | ua_sess->shm_path[sizeof(ua_sess->shm_path) - 1] = '\0'; | |
1918 | } | |
6addfa37 | 1919 | return; |
7972aab2 DG |
1920 | |
1921 | error: | |
6addfa37 | 1922 | consumer_output_put(ua_sess->consumer); |
48842b30 DG |
1923 | } |
1924 | ||
78f0bacd DG |
1925 | /* |
1926 | * Lookup sesison wrapper. | |
1927 | */ | |
84cd17c6 | 1928 | static |
fb9a95c4 | 1929 | void __lookup_session_by_app(const struct ltt_ust_session *usess, |
bec39940 | 1930 | struct ust_app *app, struct lttng_ht_iter *iter) |
84cd17c6 MD |
1931 | { |
1932 | /* Get right UST app session from app */ | |
d9bf3ca4 | 1933 | lttng_ht_lookup(app->sessions, &usess->id, iter); |
84cd17c6 MD |
1934 | } |
1935 | ||
421cb601 DG |
1936 | /* |
1937 | * Return ust app session from the app session hashtable using the UST session | |
a991f516 | 1938 | * id. |
421cb601 | 1939 | */ |
48842b30 | 1940 | static struct ust_app_session *lookup_session_by_app( |
fb9a95c4 | 1941 | const struct ltt_ust_session *usess, struct ust_app *app) |
48842b30 | 1942 | { |
bec39940 | 1943 | struct lttng_ht_iter iter; |
d9bf3ca4 | 1944 | struct lttng_ht_node_u64 *node; |
48842b30 | 1945 | |
84cd17c6 | 1946 | __lookup_session_by_app(usess, app, &iter); |
d9bf3ca4 | 1947 | node = lttng_ht_iter_get_node_u64(&iter); |
48842b30 DG |
1948 | if (node == NULL) { |
1949 | goto error; | |
1950 | } | |
1951 | ||
1952 | return caa_container_of(node, struct ust_app_session, node); | |
1953 | ||
1954 | error: | |
1955 | return NULL; | |
1956 | } | |
1957 | ||
7972aab2 DG |
1958 | /* |
1959 | * Setup buffer registry per PID for the given session and application. If none | |
1960 | * is found, a new one is created, added to the global registry and | |
1961 | * initialized. If regp is valid, it's set with the newly created object. | |
1962 | * | |
1963 | * Return 0 on success or else a negative value. | |
1964 | */ | |
1965 | static int setup_buffer_reg_pid(struct ust_app_session *ua_sess, | |
1966 | struct ust_app *app, struct buffer_reg_pid **regp) | |
1967 | { | |
1968 | int ret = 0; | |
1969 | struct buffer_reg_pid *reg_pid; | |
1970 | ||
1971 | assert(ua_sess); | |
1972 | assert(app); | |
1973 | ||
1974 | rcu_read_lock(); | |
1975 | ||
1976 | reg_pid = buffer_reg_pid_find(ua_sess->id); | |
1977 | if (!reg_pid) { | |
1978 | /* | |
1979 | * This is the create channel path meaning that if there is NO | |
1980 | * registry available, we have to create one for this session. | |
1981 | */ | |
d7ba1388 | 1982 | ret = buffer_reg_pid_create(ua_sess->id, ®_pid, |
3d071855 | 1983 | ua_sess->root_shm_path, ua_sess->shm_path); |
7972aab2 DG |
1984 | if (ret < 0) { |
1985 | goto error; | |
1986 | } | |
7972aab2 DG |
1987 | } else { |
1988 | goto end; | |
1989 | } | |
1990 | ||
1991 | /* Initialize registry. */ | |
1992 | ret = ust_registry_session_init(®_pid->registry->reg.ust, app, | |
1993 | app->bits_per_long, app->uint8_t_alignment, | |
1994 | app->uint16_t_alignment, app->uint32_t_alignment, | |
af6142cf | 1995 | app->uint64_t_alignment, app->long_alignment, |
470cc211 JG |
1996 | app->byte_order, app->version.major, app->version.minor, |
1997 | reg_pid->root_shm_path, reg_pid->shm_path, | |
1998 | ua_sess->effective_credentials.uid, | |
8de88061 JR |
1999 | ua_sess->effective_credentials.gid, ua_sess->tracing_id, |
2000 | app->uid); | |
7972aab2 | 2001 | if (ret < 0) { |
286c991a MD |
2002 | /* |
2003 | * reg_pid->registry->reg.ust is NULL upon error, so we need to | |
2004 | * destroy the buffer registry, because it is always expected | |
2005 | * that if the buffer registry can be found, its ust registry is | |
2006 | * non-NULL. | |
2007 | */ | |
2008 | buffer_reg_pid_destroy(reg_pid); | |
7972aab2 DG |
2009 | goto error; |
2010 | } | |
2011 | ||
286c991a MD |
2012 | buffer_reg_pid_add(reg_pid); |
2013 | ||
7972aab2 DG |
2014 | DBG3("UST app buffer registry per PID created successfully"); |
2015 | ||
2016 | end: | |
2017 | if (regp) { | |
2018 | *regp = reg_pid; | |
2019 | } | |
2020 | error: | |
2021 | rcu_read_unlock(); | |
2022 | return ret; | |
2023 | } | |
2024 | ||
2025 | /* | |
2026 | * Setup buffer registry per UID for the given session and application. If none | |
2027 | * is found, a new one is created, added to the global registry and | |
2028 | * initialized. If regp is valid, it's set with the newly created object. | |
2029 | * | |
2030 | * Return 0 on success or else a negative value. | |
2031 | */ | |
2032 | static int setup_buffer_reg_uid(struct ltt_ust_session *usess, | |
d7ba1388 | 2033 | struct ust_app_session *ua_sess, |
7972aab2 DG |
2034 | struct ust_app *app, struct buffer_reg_uid **regp) |
2035 | { | |
2036 | int ret = 0; | |
2037 | struct buffer_reg_uid *reg_uid; | |
2038 | ||
2039 | assert(usess); | |
2040 | assert(app); | |
2041 | ||
2042 | rcu_read_lock(); | |
2043 | ||
2044 | reg_uid = buffer_reg_uid_find(usess->id, app->bits_per_long, app->uid); | |
2045 | if (!reg_uid) { | |
2046 | /* | |
2047 | * This is the create channel path meaning that if there is NO | |
2048 | * registry available, we have to create one for this session. | |
2049 | */ | |
2050 | ret = buffer_reg_uid_create(usess->id, app->bits_per_long, app->uid, | |
3d071855 MD |
2051 | LTTNG_DOMAIN_UST, ®_uid, |
2052 | ua_sess->root_shm_path, ua_sess->shm_path); | |
7972aab2 DG |
2053 | if (ret < 0) { |
2054 | goto error; | |
2055 | } | |
7972aab2 DG |
2056 | } else { |
2057 | goto end; | |
2058 | } | |
2059 | ||
2060 | /* Initialize registry. */ | |
af6142cf | 2061 | ret = ust_registry_session_init(®_uid->registry->reg.ust, NULL, |
7972aab2 DG |
2062 | app->bits_per_long, app->uint8_t_alignment, |
2063 | app->uint16_t_alignment, app->uint32_t_alignment, | |
af6142cf MD |
2064 | app->uint64_t_alignment, app->long_alignment, |
2065 | app->byte_order, app->version.major, | |
3d071855 | 2066 | app->version.minor, reg_uid->root_shm_path, |
8de88061 JR |
2067 | reg_uid->shm_path, usess->uid, usess->gid, |
2068 | ua_sess->tracing_id, app->uid); | |
7972aab2 | 2069 | if (ret < 0) { |
286c991a MD |
2070 | /* |
2071 | * reg_uid->registry->reg.ust is NULL upon error, so we need to | |
2072 | * destroy the buffer registry, because it is always expected | |
2073 | * that if the buffer registry can be found, its ust registry is | |
2074 | * non-NULL. | |
2075 | */ | |
2076 | buffer_reg_uid_destroy(reg_uid, NULL); | |
7972aab2 DG |
2077 | goto error; |
2078 | } | |
2079 | /* Add node to teardown list of the session. */ | |
2080 | cds_list_add(®_uid->lnode, &usess->buffer_reg_uid_list); | |
2081 | ||
286c991a | 2082 | buffer_reg_uid_add(reg_uid); |
7972aab2 | 2083 | |
286c991a | 2084 | DBG3("UST app buffer registry per UID created successfully"); |
7972aab2 DG |
2085 | end: |
2086 | if (regp) { | |
2087 | *regp = reg_uid; | |
2088 | } | |
2089 | error: | |
2090 | rcu_read_unlock(); | |
2091 | return ret; | |
2092 | } | |
2093 | ||
421cb601 | 2094 | /* |
3d8ca23b | 2095 | * Create a session on the tracer side for the given app. |
421cb601 | 2096 | * |
3d8ca23b DG |
2097 | * On success, ua_sess_ptr is populated with the session pointer or else left |
2098 | * untouched. If the session was created, is_created is set to 1. On error, | |
2099 | * it's left untouched. Note that ua_sess_ptr is mandatory but is_created can | |
2100 | * be NULL. | |
2101 | * | |
2102 | * Returns 0 on success or else a negative code which is either -ENOMEM or | |
2103 | * -ENOTCONN which is the default code if the ustctl_create_session fails. | |
421cb601 | 2104 | */ |
03f91eaa | 2105 | static int find_or_create_ust_app_session(struct ltt_ust_session *usess, |
3d8ca23b DG |
2106 | struct ust_app *app, struct ust_app_session **ua_sess_ptr, |
2107 | int *is_created) | |
421cb601 | 2108 | { |
3d8ca23b | 2109 | int ret, created = 0; |
421cb601 DG |
2110 | struct ust_app_session *ua_sess; |
2111 | ||
3d8ca23b DG |
2112 | assert(usess); |
2113 | assert(app); | |
2114 | assert(ua_sess_ptr); | |
2115 | ||
840cb59c | 2116 | health_code_update(); |
86acf0da | 2117 | |
421cb601 DG |
2118 | ua_sess = lookup_session_by_app(usess, app); |
2119 | if (ua_sess == NULL) { | |
d9bf3ca4 | 2120 | DBG2("UST app pid: %d session id %" PRIu64 " not found, creating it", |
852d0037 | 2121 | app->pid, usess->id); |
40bbd087 | 2122 | ua_sess = alloc_ust_app_session(); |
421cb601 DG |
2123 | if (ua_sess == NULL) { |
2124 | /* Only malloc can failed so something is really wrong */ | |
3d8ca23b DG |
2125 | ret = -ENOMEM; |
2126 | goto error; | |
421cb601 | 2127 | } |
477d7741 | 2128 | shadow_copy_session(ua_sess, usess, app); |
3d8ca23b | 2129 | created = 1; |
421cb601 DG |
2130 | } |
2131 | ||
7972aab2 DG |
2132 | switch (usess->buffer_type) { |
2133 | case LTTNG_BUFFER_PER_PID: | |
2134 | /* Init local registry. */ | |
2135 | ret = setup_buffer_reg_pid(ua_sess, app, NULL); | |
421cb601 | 2136 | if (ret < 0) { |
e64207cf | 2137 | delete_ust_app_session(-1, ua_sess, app); |
7972aab2 DG |
2138 | goto error; |
2139 | } | |
2140 | break; | |
2141 | case LTTNG_BUFFER_PER_UID: | |
2142 | /* Look for a global registry. If none exists, create one. */ | |
d7ba1388 | 2143 | ret = setup_buffer_reg_uid(usess, ua_sess, app, NULL); |
7972aab2 | 2144 | if (ret < 0) { |
e64207cf | 2145 | delete_ust_app_session(-1, ua_sess, app); |
7972aab2 DG |
2146 | goto error; |
2147 | } | |
2148 | break; | |
2149 | default: | |
2150 | assert(0); | |
2151 | ret = -EINVAL; | |
2152 | goto error; | |
2153 | } | |
2154 | ||
2155 | health_code_update(); | |
2156 | ||
2157 | if (ua_sess->handle == -1) { | |
fb45065e | 2158 | pthread_mutex_lock(&app->sock_lock); |
7972aab2 | 2159 | ret = ustctl_create_session(app->sock); |
fb45065e | 2160 | pthread_mutex_unlock(&app->sock_lock); |
7972aab2 DG |
2161 | if (ret < 0) { |
2162 | if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) { | |
2163 | ERR("Creating session for app pid %d with ret %d", | |
ffe60014 DG |
2164 | app->pid, ret); |
2165 | } else { | |
2166 | DBG("UST app creating session failed. Application is dead"); | |
3757b385 DG |
2167 | /* |
2168 | * This is normal behavior, an application can die during the | |
2169 | * creation process. Don't report an error so the execution can | |
2170 | * continue normally. This will get flagged ENOTCONN and the | |
2171 | * caller will handle it. | |
2172 | */ | |
2173 | ret = 0; | |
ffe60014 | 2174 | } |
d0b96690 | 2175 | delete_ust_app_session(-1, ua_sess, app); |
3d8ca23b DG |
2176 | if (ret != -ENOMEM) { |
2177 | /* | |
2178 | * Tracer is probably gone or got an internal error so let's | |
2179 | * behave like it will soon unregister or not usable. | |
2180 | */ | |
2181 | ret = -ENOTCONN; | |
2182 | } | |
2183 | goto error; | |
421cb601 DG |
2184 | } |
2185 | ||
7972aab2 DG |
2186 | ua_sess->handle = ret; |
2187 | ||
2188 | /* Add ust app session to app's HT */ | |
d9bf3ca4 MD |
2189 | lttng_ht_node_init_u64(&ua_sess->node, |
2190 | ua_sess->tracing_id); | |
2191 | lttng_ht_add_unique_u64(app->sessions, &ua_sess->node); | |
10b56aef MD |
2192 | lttng_ht_node_init_ulong(&ua_sess->ust_objd_node, ua_sess->handle); |
2193 | lttng_ht_add_unique_ulong(app->ust_sessions_objd, | |
2194 | &ua_sess->ust_objd_node); | |
7972aab2 DG |
2195 | |
2196 | DBG2("UST app session created successfully with handle %d", ret); | |
2197 | } | |
2198 | ||
2199 | *ua_sess_ptr = ua_sess; | |
2200 | if (is_created) { | |
2201 | *is_created = created; | |
2202 | } | |
2203 | ||
2204 | /* Everything went well. */ | |
2205 | ret = 0; | |
2206 | ||
2207 | error: | |
2208 | health_code_update(); | |
2209 | return ret; | |
2210 | } | |
2211 | ||
6a6b2068 JG |
2212 | /* |
2213 | * Match function for a hash table lookup of ust_app_ctx. | |
2214 | * | |
2215 | * It matches an ust app context based on the context type and, in the case | |
2216 | * of perf counters, their name. | |
2217 | */ | |
2218 | static int ht_match_ust_app_ctx(struct cds_lfht_node *node, const void *_key) | |
2219 | { | |
2220 | struct ust_app_ctx *ctx; | |
bdf64013 | 2221 | const struct lttng_ust_context_attr *key; |
6a6b2068 JG |
2222 | |
2223 | assert(node); | |
2224 | assert(_key); | |
2225 | ||
2226 | ctx = caa_container_of(node, struct ust_app_ctx, node.node); | |
2227 | key = _key; | |
2228 | ||
2229 | /* Context type */ | |
2230 | if (ctx->ctx.ctx != key->ctx) { | |
2231 | goto no_match; | |
2232 | } | |
2233 | ||
bdf64013 JG |
2234 | switch(key->ctx) { |
2235 | case LTTNG_UST_CONTEXT_PERF_THREAD_COUNTER: | |
6a6b2068 | 2236 | if (strncmp(key->u.perf_counter.name, |
bdf64013 JG |
2237 | ctx->ctx.u.perf_counter.name, |
2238 | sizeof(key->u.perf_counter.name))) { | |
2239 | goto no_match; | |
2240 | } | |
2241 | break; | |
2242 | case LTTNG_UST_CONTEXT_APP_CONTEXT: | |
2243 | if (strcmp(key->u.app_ctx.provider_name, | |
2244 | ctx->ctx.u.app_ctx.provider_name) || | |
2245 | strcmp(key->u.app_ctx.ctx_name, | |
2246 | ctx->ctx.u.app_ctx.ctx_name)) { | |
6a6b2068 JG |
2247 | goto no_match; |
2248 | } | |
bdf64013 JG |
2249 | break; |
2250 | default: | |
2251 | break; | |
6a6b2068 JG |
2252 | } |
2253 | ||
2254 | /* Match. */ | |
2255 | return 1; | |
2256 | ||
2257 | no_match: | |
2258 | return 0; | |
2259 | } | |
2260 | ||
2261 | /* | |
2262 | * Lookup for an ust app context from an lttng_ust_context. | |
2263 | * | |
be184a0f | 2264 | * Must be called while holding RCU read side lock. |
6a6b2068 JG |
2265 | * Return an ust_app_ctx object or NULL on error. |
2266 | */ | |
2267 | static | |
2268 | struct ust_app_ctx *find_ust_app_context(struct lttng_ht *ht, | |
bdf64013 | 2269 | struct lttng_ust_context_attr *uctx) |
6a6b2068 JG |
2270 | { |
2271 | struct lttng_ht_iter iter; | |
2272 | struct lttng_ht_node_ulong *node; | |
2273 | struct ust_app_ctx *app_ctx = NULL; | |
2274 | ||
2275 | assert(uctx); | |
2276 | assert(ht); | |
2277 | ||
2278 | /* Lookup using the lttng_ust_context_type and a custom match fct. */ | |
2279 | cds_lfht_lookup(ht->ht, ht->hash_fct((void *) uctx->ctx, lttng_ht_seed), | |
2280 | ht_match_ust_app_ctx, uctx, &iter.iter); | |
2281 | node = lttng_ht_iter_get_node_ulong(&iter); | |
2282 | if (!node) { | |
2283 | goto end; | |
2284 | } | |
2285 | ||
2286 | app_ctx = caa_container_of(node, struct ust_app_ctx, node); | |
2287 | ||
2288 | end: | |
2289 | return app_ctx; | |
2290 | } | |
2291 | ||
7972aab2 DG |
2292 | /* |
2293 | * Create a context for the channel on the tracer. | |
2294 | * | |
2295 | * Called with UST app session lock held and a RCU read side lock. | |
2296 | */ | |
2297 | static | |
c9edf082 | 2298 | int create_ust_app_channel_context(struct ust_app_channel *ua_chan, |
bdf64013 | 2299 | struct lttng_ust_context_attr *uctx, |
7972aab2 DG |
2300 | struct ust_app *app) |
2301 | { | |
2302 | int ret = 0; | |
7972aab2 DG |
2303 | struct ust_app_ctx *ua_ctx; |
2304 | ||
2305 | DBG2("UST app adding context to channel %s", ua_chan->name); | |
2306 | ||
6a6b2068 JG |
2307 | ua_ctx = find_ust_app_context(ua_chan->ctx, uctx); |
2308 | if (ua_ctx) { | |
7972aab2 DG |
2309 | ret = -EEXIST; |
2310 | goto error; | |
2311 | } | |
2312 | ||
2313 | ua_ctx = alloc_ust_app_ctx(uctx); | |
2314 | if (ua_ctx == NULL) { | |
2315 | /* malloc failed */ | |
7682f304 | 2316 | ret = -ENOMEM; |
7972aab2 DG |
2317 | goto error; |
2318 | } | |
2319 | ||
2320 | lttng_ht_node_init_ulong(&ua_ctx->node, (unsigned long) ua_ctx->ctx.ctx); | |
aa3514e9 | 2321 | lttng_ht_add_ulong(ua_chan->ctx, &ua_ctx->node); |
31746f93 | 2322 | cds_list_add_tail(&ua_ctx->list, &ua_chan->ctx_list); |
7972aab2 DG |
2323 | |
2324 | ret = create_ust_channel_context(ua_chan, ua_ctx, app); | |
2325 | if (ret < 0) { | |
2326 | goto error; | |
2327 | } | |
2328 | ||
2329 | error: | |
2330 | return ret; | |
2331 | } | |
2332 | ||
2333 | /* | |
2334 | * Enable on the tracer side a ust app event for the session and channel. | |
2335 | * | |
2336 | * Called with UST app session lock held. | |
2337 | */ | |
2338 | static | |
2339 | int enable_ust_app_event(struct ust_app_session *ua_sess, | |
2340 | struct ust_app_event *ua_event, struct ust_app *app) | |
2341 | { | |
2342 | int ret; | |
2343 | ||
2344 | ret = enable_ust_event(app, ua_sess, ua_event); | |
2345 | if (ret < 0) { | |
2346 | goto error; | |
2347 | } | |
2348 | ||
2349 | ua_event->enabled = 1; | |
2350 | ||
2351 | error: | |
2352 | return ret; | |
2353 | } | |
2354 | ||
2355 | /* | |
2356 | * Disable on the tracer side a ust app event for the session and channel. | |
2357 | */ | |
2358 | static int disable_ust_app_event(struct ust_app_session *ua_sess, | |
2359 | struct ust_app_event *ua_event, struct ust_app *app) | |
2360 | { | |
2361 | int ret; | |
2362 | ||
2363 | ret = disable_ust_event(app, ua_sess, ua_event); | |
2364 | if (ret < 0) { | |
2365 | goto error; | |
2366 | } | |
2367 | ||
2368 | ua_event->enabled = 0; | |
2369 | ||
2370 | error: | |
2371 | return ret; | |
2372 | } | |
2373 | ||
2374 | /* | |
2375 | * Lookup ust app channel for session and disable it on the tracer side. | |
2376 | */ | |
2377 | static | |
2378 | int disable_ust_app_channel(struct ust_app_session *ua_sess, | |
2379 | struct ust_app_channel *ua_chan, struct ust_app *app) | |
2380 | { | |
2381 | int ret; | |
2382 | ||
2383 | ret = disable_ust_channel(app, ua_sess, ua_chan); | |
2384 | if (ret < 0) { | |
2385 | goto error; | |
2386 | } | |
2387 | ||
2388 | ua_chan->enabled = 0; | |
2389 | ||
2390 | error: | |
2391 | return ret; | |
2392 | } | |
2393 | ||
2394 | /* | |
2395 | * Lookup ust app channel for session and enable it on the tracer side. This | |
2396 | * MUST be called with a RCU read side lock acquired. | |
2397 | */ | |
2398 | static int enable_ust_app_channel(struct ust_app_session *ua_sess, | |
2399 | struct ltt_ust_channel *uchan, struct ust_app *app) | |
2400 | { | |
2401 | int ret = 0; | |
2402 | struct lttng_ht_iter iter; | |
2403 | struct lttng_ht_node_str *ua_chan_node; | |
2404 | struct ust_app_channel *ua_chan; | |
2405 | ||
2406 | lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &iter); | |
2407 | ua_chan_node = lttng_ht_iter_get_node_str(&iter); | |
2408 | if (ua_chan_node == NULL) { | |
d9bf3ca4 | 2409 | DBG2("Unable to find channel %s in ust session id %" PRIu64, |
7972aab2 DG |
2410 | uchan->name, ua_sess->tracing_id); |
2411 | goto error; | |
2412 | } | |
2413 | ||
2414 | ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node); | |
2415 | ||
2416 | ret = enable_ust_channel(app, ua_sess, ua_chan); | |
2417 | if (ret < 0) { | |
2418 | goto error; | |
2419 | } | |
2420 | ||
2421 | error: | |
2422 | return ret; | |
2423 | } | |
2424 | ||
2425 | /* | |
2426 | * Ask the consumer to create a channel and get it if successful. | |
2427 | * | |
fad1ed2f JR |
2428 | * Called with UST app session lock held. |
2429 | * | |
7972aab2 DG |
2430 | * Return 0 on success or else a negative value. |
2431 | */ | |
2432 | static int do_consumer_create_channel(struct ltt_ust_session *usess, | |
2433 | struct ust_app_session *ua_sess, struct ust_app_channel *ua_chan, | |
e098433c JG |
2434 | int bitness, struct ust_registry_session *registry, |
2435 | uint64_t trace_archive_id) | |
7972aab2 DG |
2436 | { |
2437 | int ret; | |
2438 | unsigned int nb_fd = 0; | |
2439 | struct consumer_socket *socket; | |
2440 | ||
2441 | assert(usess); | |
2442 | assert(ua_sess); | |
2443 | assert(ua_chan); | |
2444 | assert(registry); | |
2445 | ||
2446 | rcu_read_lock(); | |
2447 | health_code_update(); | |
2448 | ||
2449 | /* Get the right consumer socket for the application. */ | |
2450 | socket = consumer_find_socket_by_bitness(bitness, usess->consumer); | |
2451 | if (!socket) { | |
2452 | ret = -EINVAL; | |
2453 | goto error; | |
2454 | } | |
2455 | ||
2456 | health_code_update(); | |
2457 | ||
2458 | /* Need one fd for the channel. */ | |
2459 | ret = lttng_fd_get(LTTNG_FD_APPS, 1); | |
2460 | if (ret < 0) { | |
2461 | ERR("Exhausted number of available FD upon create channel"); | |
2462 | goto error; | |
2463 | } | |
2464 | ||
2465 | /* | |
2466 | * Ask consumer to create channel. The consumer will return the number of | |
2467 | * stream we have to expect. | |
2468 | */ | |
2469 | ret = ust_consumer_ask_channel(ua_sess, ua_chan, usess->consumer, socket, | |
d2956687 | 2470 | registry, usess->current_trace_chunk); |
7972aab2 DG |
2471 | if (ret < 0) { |
2472 | goto error_ask; | |
2473 | } | |
2474 | ||
2475 | /* | |
2476 | * Compute the number of fd needed before receiving them. It must be 2 per | |
2477 | * stream (2 being the default value here). | |
2478 | */ | |
2479 | nb_fd = DEFAULT_UST_STREAM_FD_NUM * ua_chan->expected_stream_count; | |
2480 | ||
2481 | /* Reserve the amount of file descriptor we need. */ | |
2482 | ret = lttng_fd_get(LTTNG_FD_APPS, nb_fd); | |
2483 | if (ret < 0) { | |
2484 | ERR("Exhausted number of available FD upon create channel"); | |
2485 | goto error_fd_get_stream; | |
2486 | } | |
2487 | ||
2488 | health_code_update(); | |
2489 | ||
2490 | /* | |
2491 | * Now get the channel from the consumer. This call wil populate the stream | |
2492 | * list of that channel and set the ust objects. | |
2493 | */ | |
d9078d0c DG |
2494 | if (usess->consumer->enabled) { |
2495 | ret = ust_consumer_get_channel(socket, ua_chan); | |
2496 | if (ret < 0) { | |
2497 | goto error_destroy; | |
2498 | } | |
7972aab2 DG |
2499 | } |
2500 | ||
2501 | rcu_read_unlock(); | |
2502 | return 0; | |
2503 | ||
2504 | error_destroy: | |
2505 | lttng_fd_put(LTTNG_FD_APPS, nb_fd); | |
2506 | error_fd_get_stream: | |
2507 | /* | |
2508 | * Initiate a destroy channel on the consumer since we had an error | |
2509 | * handling it on our side. The return value is of no importance since we | |
2510 | * already have a ret value set by the previous error that we need to | |
2511 | * return. | |
2512 | */ | |
2513 | (void) ust_consumer_destroy_channel(socket, ua_chan); | |
2514 | error_ask: | |
2515 | lttng_fd_put(LTTNG_FD_APPS, 1); | |
2516 | error: | |
2517 | health_code_update(); | |
2518 | rcu_read_unlock(); | |
2519 | return ret; | |
2520 | } | |
2521 | ||
2522 | /* | |
2523 | * Duplicate the ust data object of the ust app stream and save it in the | |
2524 | * buffer registry stream. | |
2525 | * | |
2526 | * Return 0 on success or else a negative value. | |
2527 | */ | |
2528 | static int duplicate_stream_object(struct buffer_reg_stream *reg_stream, | |
2529 | struct ust_app_stream *stream) | |
2530 | { | |
2531 | int ret; | |
2532 | ||
2533 | assert(reg_stream); | |
2534 | assert(stream); | |
2535 | ||
2536 | /* Reserve the amount of file descriptor we need. */ | |
2537 | ret = lttng_fd_get(LTTNG_FD_APPS, 2); | |
2538 | if (ret < 0) { | |
2539 | ERR("Exhausted number of available FD upon duplicate stream"); | |
2540 | goto error; | |
2541 | } | |
2542 | ||
2543 | /* Duplicate object for stream once the original is in the registry. */ | |
2544 | ret = ustctl_duplicate_ust_object_data(&stream->obj, | |
2545 | reg_stream->obj.ust); | |
2546 | if (ret < 0) { | |
2547 | ERR("Duplicate stream obj from %p to %p failed with ret %d", | |
2548 | reg_stream->obj.ust, stream->obj, ret); | |
2549 | lttng_fd_put(LTTNG_FD_APPS, 2); | |
2550 | goto error; | |
2551 | } | |
2552 | stream->handle = stream->obj->handle; | |
2553 | ||
2554 | error: | |
2555 | return ret; | |
2556 | } | |
2557 | ||
2558 | /* | |
2559 | * Duplicate the ust data object of the ust app. channel and save it in the | |
2560 | * buffer registry channel. | |
2561 | * | |
2562 | * Return 0 on success or else a negative value. | |
2563 | */ | |
2564 | static int duplicate_channel_object(struct buffer_reg_channel *reg_chan, | |
2565 | struct ust_app_channel *ua_chan) | |
2566 | { | |
2567 | int ret; | |
2568 | ||
2569 | assert(reg_chan); | |
2570 | assert(ua_chan); | |
2571 | ||
2572 | /* Need two fds for the channel. */ | |
2573 | ret = lttng_fd_get(LTTNG_FD_APPS, 1); | |
2574 | if (ret < 0) { | |
2575 | ERR("Exhausted number of available FD upon duplicate channel"); | |
2576 | goto error_fd_get; | |
2577 | } | |
2578 | ||
2579 | /* Duplicate object for stream once the original is in the registry. */ | |
2580 | ret = ustctl_duplicate_ust_object_data(&ua_chan->obj, reg_chan->obj.ust); | |
2581 | if (ret < 0) { | |
2582 | ERR("Duplicate channel obj from %p to %p failed with ret: %d", | |
2583 | reg_chan->obj.ust, ua_chan->obj, ret); | |
2584 | goto error; | |
2585 | } | |
2586 | ua_chan->handle = ua_chan->obj->handle; | |
2587 | ||
2588 | return 0; | |
2589 | ||
2590 | error: | |
2591 | lttng_fd_put(LTTNG_FD_APPS, 1); | |
2592 | error_fd_get: | |
2593 | return ret; | |
2594 | } | |
2595 | ||
2596 | /* | |
2597 | * For a given channel buffer registry, setup all streams of the given ust | |
2598 | * application channel. | |
2599 | * | |
2600 | * Return 0 on success or else a negative value. | |
2601 | */ | |
2602 | static int setup_buffer_reg_streams(struct buffer_reg_channel *reg_chan, | |
fb45065e MD |
2603 | struct ust_app_channel *ua_chan, |
2604 | struct ust_app *app) | |
7972aab2 DG |
2605 | { |
2606 | int ret = 0; | |
2607 | struct ust_app_stream *stream, *stmp; | |
2608 | ||
2609 | assert(reg_chan); | |
2610 | assert(ua_chan); | |
2611 | ||
2612 | DBG2("UST app setup buffer registry stream"); | |
2613 | ||
2614 | /* Send all streams to application. */ | |
2615 | cds_list_for_each_entry_safe(stream, stmp, &ua_chan->streams.head, list) { | |
2616 | struct buffer_reg_stream *reg_stream; | |
2617 | ||
2618 | ret = buffer_reg_stream_create(®_stream); | |
2619 | if (ret < 0) { | |
2620 | goto error; | |
2621 | } | |
2622 | ||
2623 | /* | |
2624 | * Keep original pointer and nullify it in the stream so the delete | |
2625 | * stream call does not release the object. | |
2626 | */ | |
2627 | reg_stream->obj.ust = stream->obj; | |
2628 | stream->obj = NULL; | |
2629 | buffer_reg_stream_add(reg_stream, reg_chan); | |
421cb601 | 2630 | |
7972aab2 DG |
2631 | /* We don't need the streams anymore. */ |
2632 | cds_list_del(&stream->list); | |
fb45065e | 2633 | delete_ust_app_stream(-1, stream, app); |
7972aab2 | 2634 | } |
421cb601 | 2635 | |
7972aab2 DG |
2636 | error: |
2637 | return ret; | |
2638 | } | |
2639 | ||
2640 | /* | |
2641 | * Create a buffer registry channel for the given session registry and | |
2642 | * application channel object. If regp pointer is valid, it's set with the | |
2643 | * created object. Important, the created object is NOT added to the session | |
2644 | * registry hash table. | |
2645 | * | |
2646 | * Return 0 on success else a negative value. | |
2647 | */ | |
2648 | static int create_buffer_reg_channel(struct buffer_reg_session *reg_sess, | |
2649 | struct ust_app_channel *ua_chan, struct buffer_reg_channel **regp) | |
2650 | { | |
2651 | int ret; | |
2652 | struct buffer_reg_channel *reg_chan = NULL; | |
2653 | ||
2654 | assert(reg_sess); | |
2655 | assert(ua_chan); | |
2656 | ||
2657 | DBG2("UST app creating buffer registry channel for %s", ua_chan->name); | |
2658 | ||
2659 | /* Create buffer registry channel. */ | |
2660 | ret = buffer_reg_channel_create(ua_chan->tracing_channel_id, ®_chan); | |
2661 | if (ret < 0) { | |
2662 | goto error_create; | |
421cb601 | 2663 | } |
7972aab2 DG |
2664 | assert(reg_chan); |
2665 | reg_chan->consumer_key = ua_chan->key; | |
8c924c7b | 2666 | reg_chan->subbuf_size = ua_chan->attr.subbuf_size; |
d07ceecd | 2667 | reg_chan->num_subbuf = ua_chan->attr.num_subbuf; |
421cb601 | 2668 | |
7972aab2 DG |
2669 | /* Create and add a channel registry to session. */ |
2670 | ret = ust_registry_channel_add(reg_sess->reg.ust, | |
2671 | ua_chan->tracing_channel_id); | |
2672 | if (ret < 0) { | |
2673 | goto error; | |
d88aee68 | 2674 | } |
7972aab2 | 2675 | buffer_reg_channel_add(reg_sess, reg_chan); |
d88aee68 | 2676 | |
7972aab2 DG |
2677 | if (regp) { |
2678 | *regp = reg_chan; | |
3d8ca23b | 2679 | } |
d88aee68 | 2680 | |
7972aab2 | 2681 | return 0; |
3d8ca23b DG |
2682 | |
2683 | error: | |
7972aab2 DG |
2684 | /* Safe because the registry channel object was not added to any HT. */ |
2685 | buffer_reg_channel_destroy(reg_chan, LTTNG_DOMAIN_UST); | |
2686 | error_create: | |
3d8ca23b | 2687 | return ret; |
421cb601 DG |
2688 | } |
2689 | ||
55cc08a6 | 2690 | /* |
7972aab2 DG |
2691 | * Setup buffer registry channel for the given session registry and application |
2692 | * channel object. If regp pointer is valid, it's set with the created object. | |
d0b96690 | 2693 | * |
7972aab2 | 2694 | * Return 0 on success else a negative value. |
55cc08a6 | 2695 | */ |
7972aab2 | 2696 | static int setup_buffer_reg_channel(struct buffer_reg_session *reg_sess, |
fb45065e MD |
2697 | struct ust_app_channel *ua_chan, struct buffer_reg_channel *reg_chan, |
2698 | struct ust_app *app) | |
55cc08a6 | 2699 | { |
7972aab2 | 2700 | int ret; |
55cc08a6 | 2701 | |
7972aab2 DG |
2702 | assert(reg_sess); |
2703 | assert(reg_chan); | |
2704 | assert(ua_chan); | |
2705 | assert(ua_chan->obj); | |
55cc08a6 | 2706 | |
7972aab2 | 2707 | DBG2("UST app setup buffer registry channel for %s", ua_chan->name); |
55cc08a6 | 2708 | |
7972aab2 | 2709 | /* Setup all streams for the registry. */ |
fb45065e | 2710 | ret = setup_buffer_reg_streams(reg_chan, ua_chan, app); |
7972aab2 | 2711 | if (ret < 0) { |
55cc08a6 DG |
2712 | goto error; |
2713 | } | |
2714 | ||
7972aab2 DG |
2715 | reg_chan->obj.ust = ua_chan->obj; |
2716 | ua_chan->obj = NULL; | |
55cc08a6 | 2717 | |
7972aab2 | 2718 | return 0; |
55cc08a6 DG |
2719 | |
2720 | error: | |
7972aab2 DG |
2721 | buffer_reg_channel_remove(reg_sess, reg_chan); |
2722 | buffer_reg_channel_destroy(reg_chan, LTTNG_DOMAIN_UST); | |
55cc08a6 DG |
2723 | return ret; |
2724 | } | |
2725 | ||
edb67388 | 2726 | /* |
7972aab2 | 2727 | * Send buffer registry channel to the application. |
d0b96690 | 2728 | * |
7972aab2 | 2729 | * Return 0 on success else a negative value. |
edb67388 | 2730 | */ |
7972aab2 DG |
2731 | static int send_channel_uid_to_ust(struct buffer_reg_channel *reg_chan, |
2732 | struct ust_app *app, struct ust_app_session *ua_sess, | |
2733 | struct ust_app_channel *ua_chan) | |
edb67388 DG |
2734 | { |
2735 | int ret; | |
7972aab2 | 2736 | struct buffer_reg_stream *reg_stream; |
edb67388 | 2737 | |
7972aab2 DG |
2738 | assert(reg_chan); |
2739 | assert(app); | |
2740 | assert(ua_sess); | |
2741 | assert(ua_chan); | |
2742 | ||
2743 | DBG("UST app sending buffer registry channel to ust sock %d", app->sock); | |
2744 | ||
2745 | ret = duplicate_channel_object(reg_chan, ua_chan); | |
edb67388 DG |
2746 | if (ret < 0) { |
2747 | goto error; | |
2748 | } | |
2749 | ||
7972aab2 DG |
2750 | /* Send channel to the application. */ |
2751 | ret = ust_consumer_send_channel_to_ust(app, ua_sess, ua_chan); | |
a7169585 MD |
2752 | if (ret == -EPIPE || ret == -LTTNG_UST_ERR_EXITING) { |
2753 | ret = -ENOTCONN; /* Caused by app exiting. */ | |
2754 | goto error; | |
2755 | } else if (ret < 0) { | |
7972aab2 DG |
2756 | goto error; |
2757 | } | |
2758 | ||
2759 | health_code_update(); | |
2760 | ||
2761 | /* Send all streams to application. */ | |
2762 | pthread_mutex_lock(®_chan->stream_list_lock); | |
2763 | cds_list_for_each_entry(reg_stream, ®_chan->streams, lnode) { | |
2764 | struct ust_app_stream stream; | |
2765 | ||
2766 | ret = duplicate_stream_object(reg_stream, &stream); | |
2767 | if (ret < 0) { | |
2768 | goto error_stream_unlock; | |
2769 | } | |
2770 | ||
2771 | ret = ust_consumer_send_stream_to_ust(app, ua_chan, &stream); | |
2772 | if (ret < 0) { | |
fb45065e | 2773 | (void) release_ust_app_stream(-1, &stream, app); |
a7169585 MD |
2774 | if (ret == -EPIPE || ret == -LTTNG_UST_ERR_EXITING) { |
2775 | ret = -ENOTCONN; /* Caused by app exiting. */ | |
a7169585 | 2776 | } |
7972aab2 DG |
2777 | goto error_stream_unlock; |
2778 | } | |
edb67388 | 2779 | |
7972aab2 DG |
2780 | /* |
2781 | * The return value is not important here. This function will output an | |
2782 | * error if needed. | |
2783 | */ | |
fb45065e | 2784 | (void) release_ust_app_stream(-1, &stream, app); |
7972aab2 DG |
2785 | } |
2786 | ua_chan->is_sent = 1; | |
2787 | ||
2788 | error_stream_unlock: | |
2789 | pthread_mutex_unlock(®_chan->stream_list_lock); | |
edb67388 DG |
2790 | error: |
2791 | return ret; | |
2792 | } | |
2793 | ||
9730260e | 2794 | /* |
7972aab2 DG |
2795 | * Create and send to the application the created buffers with per UID buffers. |
2796 | * | |
9acdc1d6 | 2797 | * This MUST be called with a RCU read side lock acquired. |
71e0a100 | 2798 | * The session list lock and the session's lock must be acquired. |
9acdc1d6 | 2799 | * |
7972aab2 | 2800 | * Return 0 on success else a negative value. |
9730260e | 2801 | */ |
7972aab2 DG |
2802 | static int create_channel_per_uid(struct ust_app *app, |
2803 | struct ltt_ust_session *usess, struct ust_app_session *ua_sess, | |
2804 | struct ust_app_channel *ua_chan) | |
9730260e DG |
2805 | { |
2806 | int ret; | |
7972aab2 DG |
2807 | struct buffer_reg_uid *reg_uid; |
2808 | struct buffer_reg_channel *reg_chan; | |
e32d7f27 | 2809 | struct ltt_session *session = NULL; |
e098433c JG |
2810 | enum lttng_error_code notification_ret; |
2811 | struct ust_registry_channel *chan_reg; | |
9730260e | 2812 | |
7972aab2 DG |
2813 | assert(app); |
2814 | assert(usess); | |
2815 | assert(ua_sess); | |
2816 | assert(ua_chan); | |
2817 | ||
2818 | DBG("UST app creating channel %s with per UID buffers", ua_chan->name); | |
2819 | ||
2820 | reg_uid = buffer_reg_uid_find(usess->id, app->bits_per_long, app->uid); | |
2821 | /* | |
2822 | * The session creation handles the creation of this global registry | |
2823 | * object. If none can be find, there is a code flow problem or a | |
2824 | * teardown race. | |
2825 | */ | |
2826 | assert(reg_uid); | |
2827 | ||
2828 | reg_chan = buffer_reg_channel_find(ua_chan->tracing_channel_id, | |
2829 | reg_uid); | |
2721f7ea JG |
2830 | if (reg_chan) { |
2831 | goto send_channel; | |
2832 | } | |
7972aab2 | 2833 | |
2721f7ea JG |
2834 | /* Create the buffer registry channel object. */ |
2835 | ret = create_buffer_reg_channel(reg_uid->registry, ua_chan, ®_chan); | |
2836 | if (ret < 0) { | |
2837 | ERR("Error creating the UST channel \"%s\" registry instance", | |
f14256d6 | 2838 | ua_chan->name); |
2721f7ea JG |
2839 | goto error; |
2840 | } | |
f14256d6 | 2841 | |
e098433c JG |
2842 | session = session_find_by_id(ua_sess->tracing_id); |
2843 | assert(session); | |
2844 | assert(pthread_mutex_trylock(&session->lock)); | |
2845 | assert(session_trylock_list()); | |
2846 | ||
2721f7ea JG |
2847 | /* |
2848 | * Create the buffers on the consumer side. This call populates the | |
2849 | * ust app channel object with all streams and data object. | |
2850 | */ | |
2851 | ret = do_consumer_create_channel(usess, ua_sess, ua_chan, | |
e098433c | 2852 | app->bits_per_long, reg_uid->registry->reg.ust, |
d2956687 | 2853 | session->most_recent_chunk_id.value); |
2721f7ea JG |
2854 | if (ret < 0) { |
2855 | ERR("Error creating UST channel \"%s\" on the consumer daemon", | |
2856 | ua_chan->name); | |
7972aab2 DG |
2857 | |
2858 | /* | |
2721f7ea JG |
2859 | * Let's remove the previously created buffer registry channel so |
2860 | * it's not visible anymore in the session registry. | |
7972aab2 | 2861 | */ |
2721f7ea JG |
2862 | ust_registry_channel_del_free(reg_uid->registry->reg.ust, |
2863 | ua_chan->tracing_channel_id, false); | |
2864 | buffer_reg_channel_remove(reg_uid->registry, reg_chan); | |
2865 | buffer_reg_channel_destroy(reg_chan, LTTNG_DOMAIN_UST); | |
2866 | goto error; | |
7972aab2 DG |
2867 | } |
2868 | ||
2721f7ea JG |
2869 | /* |
2870 | * Setup the streams and add it to the session registry. | |
2871 | */ | |
2872 | ret = setup_buffer_reg_channel(reg_uid->registry, | |
2873 | ua_chan, reg_chan, app); | |
2874 | if (ret < 0) { | |
2875 | ERR("Error setting up UST channel \"%s\"", ua_chan->name); | |
2876 | goto error; | |
2877 | } | |
2878 | ||
e098433c JG |
2879 | /* Notify the notification subsystem of the channel's creation. */ |
2880 | pthread_mutex_lock(®_uid->registry->reg.ust->lock); | |
2881 | chan_reg = ust_registry_channel_find(reg_uid->registry->reg.ust, | |
2882 | ua_chan->tracing_channel_id); | |
2883 | assert(chan_reg); | |
2884 | chan_reg->consumer_key = ua_chan->key; | |
2885 | chan_reg = NULL; | |
2886 | pthread_mutex_unlock(®_uid->registry->reg.ust->lock); | |
e9404c27 | 2887 | |
e098433c JG |
2888 | notification_ret = notification_thread_command_add_channel( |
2889 | notification_thread_handle, session->name, | |
470cc211 JG |
2890 | ua_sess->effective_credentials.uid, |
2891 | ua_sess->effective_credentials.gid, ua_chan->name, | |
2892 | ua_chan->key, LTTNG_DOMAIN_UST, | |
e098433c JG |
2893 | ua_chan->attr.subbuf_size * ua_chan->attr.num_subbuf); |
2894 | if (notification_ret != LTTNG_OK) { | |
2895 | ret = - (int) notification_ret; | |
2896 | ERR("Failed to add channel to notification thread"); | |
2897 | goto error; | |
e9404c27 JG |
2898 | } |
2899 | ||
2721f7ea | 2900 | send_channel: |
66ff8e3f JG |
2901 | /* Send buffers to the application. */ |
2902 | ret = send_channel_uid_to_ust(reg_chan, app, ua_sess, ua_chan); | |
2903 | if (ret < 0) { | |
2904 | if (ret != -ENOTCONN) { | |
2905 | ERR("Error sending channel to application"); | |
2906 | } | |
2907 | goto error; | |
2908 | } | |
2909 | ||
9730260e | 2910 | error: |
e32d7f27 JG |
2911 | if (session) { |
2912 | session_put(session); | |
2913 | } | |
9730260e DG |
2914 | return ret; |
2915 | } | |
2916 | ||
78f0bacd | 2917 | /* |
7972aab2 DG |
2918 | * Create and send to the application the created buffers with per PID buffers. |
2919 | * | |
fad1ed2f | 2920 | * Called with UST app session lock held. |
71e0a100 | 2921 | * The session list lock and the session's lock must be acquired. |
fad1ed2f | 2922 | * |
7972aab2 | 2923 | * Return 0 on success else a negative value. |
78f0bacd | 2924 | */ |
7972aab2 DG |
2925 | static int create_channel_per_pid(struct ust_app *app, |
2926 | struct ltt_ust_session *usess, struct ust_app_session *ua_sess, | |
2927 | struct ust_app_channel *ua_chan) | |
78f0bacd | 2928 | { |
8535a6d9 | 2929 | int ret; |
7972aab2 | 2930 | struct ust_registry_session *registry; |
e9404c27 | 2931 | enum lttng_error_code cmd_ret; |
e32d7f27 | 2932 | struct ltt_session *session = NULL; |
e9404c27 JG |
2933 | uint64_t chan_reg_key; |
2934 | struct ust_registry_channel *chan_reg; | |
78f0bacd | 2935 | |
7972aab2 DG |
2936 | assert(app); |
2937 | assert(usess); | |
2938 | assert(ua_sess); | |
2939 | assert(ua_chan); | |
2940 | ||
2941 | DBG("UST app creating channel %s with per PID buffers", ua_chan->name); | |
2942 | ||
2943 | rcu_read_lock(); | |
2944 | ||
2945 | registry = get_session_registry(ua_sess); | |
fad1ed2f | 2946 | /* The UST app session lock is held, registry shall not be null. */ |
7972aab2 DG |
2947 | assert(registry); |
2948 | ||
2949 | /* Create and add a new channel registry to session. */ | |
2950 | ret = ust_registry_channel_add(registry, ua_chan->key); | |
78f0bacd | 2951 | if (ret < 0) { |
f14256d6 MD |
2952 | ERR("Error creating the UST channel \"%s\" registry instance", |
2953 | ua_chan->name); | |
78f0bacd DG |
2954 | goto error; |
2955 | } | |
2956 | ||
e098433c JG |
2957 | session = session_find_by_id(ua_sess->tracing_id); |
2958 | assert(session); | |
2959 | ||
2960 | assert(pthread_mutex_trylock(&session->lock)); | |
2961 | assert(session_trylock_list()); | |
2962 | ||
7972aab2 DG |
2963 | /* Create and get channel on the consumer side. */ |
2964 | ret = do_consumer_create_channel(usess, ua_sess, ua_chan, | |
e098433c | 2965 | app->bits_per_long, registry, |
d2956687 | 2966 | session->most_recent_chunk_id.value); |
7972aab2 | 2967 | if (ret < 0) { |
f14256d6 MD |
2968 | ERR("Error creating UST channel \"%s\" on the consumer daemon", |
2969 | ua_chan->name); | |
5b951542 | 2970 | goto error_remove_from_registry; |
7972aab2 DG |
2971 | } |
2972 | ||
2973 | ret = send_channel_pid_to_ust(app, ua_sess, ua_chan); | |
2974 | if (ret < 0) { | |
a7169585 MD |
2975 | if (ret != -ENOTCONN) { |
2976 | ERR("Error sending channel to application"); | |
2977 | } | |
5b951542 | 2978 | goto error_remove_from_registry; |
7972aab2 | 2979 | } |
8535a6d9 | 2980 | |
e9404c27 JG |
2981 | chan_reg_key = ua_chan->key; |
2982 | pthread_mutex_lock(®istry->lock); | |
2983 | chan_reg = ust_registry_channel_find(registry, chan_reg_key); | |
2984 | assert(chan_reg); | |
2985 | chan_reg->consumer_key = ua_chan->key; | |
2986 | pthread_mutex_unlock(®istry->lock); | |
2987 | ||
2988 | cmd_ret = notification_thread_command_add_channel( | |
2989 | notification_thread_handle, session->name, | |
470cc211 JG |
2990 | ua_sess->effective_credentials.uid, |
2991 | ua_sess->effective_credentials.gid, ua_chan->name, | |
2992 | ua_chan->key, LTTNG_DOMAIN_UST, | |
e9404c27 JG |
2993 | ua_chan->attr.subbuf_size * ua_chan->attr.num_subbuf); |
2994 | if (cmd_ret != LTTNG_OK) { | |
2995 | ret = - (int) cmd_ret; | |
2996 | ERR("Failed to add channel to notification thread"); | |
5b951542 | 2997 | goto error_remove_from_registry; |
e9404c27 JG |
2998 | } |
2999 | ||
5b951542 MD |
3000 | error_remove_from_registry: |
3001 | if (ret) { | |
3002 | ust_registry_channel_del_free(registry, ua_chan->key, false); | |
3003 | } | |
78f0bacd | 3004 | error: |
7972aab2 | 3005 | rcu_read_unlock(); |
e32d7f27 JG |
3006 | if (session) { |
3007 | session_put(session); | |
3008 | } | |
78f0bacd DG |
3009 | return ret; |
3010 | } | |
3011 | ||
3012 | /* | |
7972aab2 | 3013 | * From an already allocated ust app channel, create the channel buffers if |
88e3c2f5 | 3014 | * needed and send them to the application. This MUST be called with a RCU read |
7972aab2 DG |
3015 | * side lock acquired. |
3016 | * | |
fad1ed2f JR |
3017 | * Called with UST app session lock held. |
3018 | * | |
a7169585 MD |
3019 | * Return 0 on success or else a negative value. Returns -ENOTCONN if |
3020 | * the application exited concurrently. | |
78f0bacd | 3021 | */ |
88e3c2f5 | 3022 | static int ust_app_channel_send(struct ust_app *app, |
7972aab2 DG |
3023 | struct ltt_ust_session *usess, struct ust_app_session *ua_sess, |
3024 | struct ust_app_channel *ua_chan) | |
78f0bacd | 3025 | { |
7972aab2 | 3026 | int ret; |
78f0bacd | 3027 | |
7972aab2 DG |
3028 | assert(app); |
3029 | assert(usess); | |
88e3c2f5 | 3030 | assert(usess->active); |
7972aab2 DG |
3031 | assert(ua_sess); |
3032 | assert(ua_chan); | |
3033 | ||
3034 | /* Handle buffer type before sending the channel to the application. */ | |
3035 | switch (usess->buffer_type) { | |
3036 | case LTTNG_BUFFER_PER_UID: | |
3037 | { | |
3038 | ret = create_channel_per_uid(app, usess, ua_sess, ua_chan); | |
3039 | if (ret < 0) { | |
3040 | goto error; | |
3041 | } | |
3042 | break; | |
3043 | } | |
3044 | case LTTNG_BUFFER_PER_PID: | |
3045 | { | |
3046 | ret = create_channel_per_pid(app, usess, ua_sess, ua_chan); | |
3047 | if (ret < 0) { | |
3048 | goto error; | |
3049 | } | |
3050 | break; | |
3051 | } | |
3052 | default: | |
3053 | assert(0); | |
3054 | ret = -EINVAL; | |
78f0bacd DG |
3055 | goto error; |
3056 | } | |
3057 | ||
7972aab2 DG |
3058 | /* Initialize ust objd object using the received handle and add it. */ |
3059 | lttng_ht_node_init_ulong(&ua_chan->ust_objd_node, ua_chan->handle); | |
3060 | lttng_ht_add_unique_ulong(app->ust_objd, &ua_chan->ust_objd_node); | |
78f0bacd | 3061 | |
7972aab2 DG |
3062 | /* If channel is not enabled, disable it on the tracer */ |
3063 | if (!ua_chan->enabled) { | |
3064 | ret = disable_ust_channel(app, ua_sess, ua_chan); | |
3065 | if (ret < 0) { | |
3066 | goto error; | |
3067 | } | |
78f0bacd DG |
3068 | } |
3069 | ||
3070 | error: | |
3071 | return ret; | |
3072 | } | |
3073 | ||
284d8f55 | 3074 | /* |
88e3c2f5 | 3075 | * Create UST app channel and return it through ua_chanp if not NULL. |
d0b96690 | 3076 | * |
36b588ed | 3077 | * Called with UST app session lock and RCU read-side lock held. |
7972aab2 | 3078 | * |
88e3c2f5 | 3079 | * Return 0 on success or else a negative value. |
284d8f55 | 3080 | */ |
88e3c2f5 JG |
3081 | static int ust_app_channel_allocate(struct ust_app_session *ua_sess, |
3082 | struct ltt_ust_channel *uchan, | |
7972aab2 | 3083 | enum lttng_ust_chan_type type, struct ltt_ust_session *usess, |
4d710ac2 | 3084 | struct ust_app_channel **ua_chanp) |
5b4a0ec0 DG |
3085 | { |
3086 | int ret = 0; | |
bec39940 DG |
3087 | struct lttng_ht_iter iter; |
3088 | struct lttng_ht_node_str *ua_chan_node; | |
5b4a0ec0 DG |
3089 | struct ust_app_channel *ua_chan; |
3090 | ||
3091 | /* Lookup channel in the ust app session */ | |
bec39940 DG |
3092 | lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &iter); |
3093 | ua_chan_node = lttng_ht_iter_get_node_str(&iter); | |
fc34caaa | 3094 | if (ua_chan_node != NULL) { |
5b4a0ec0 | 3095 | ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node); |
fc34caaa | 3096 | goto end; |
5b4a0ec0 DG |
3097 | } |
3098 | ||
d0b96690 | 3099 | ua_chan = alloc_ust_app_channel(uchan->name, ua_sess, &uchan->attr); |
fc34caaa DG |
3100 | if (ua_chan == NULL) { |
3101 | /* Only malloc can fail here */ | |
4d710ac2 | 3102 | ret = -ENOMEM; |
88e3c2f5 | 3103 | goto error; |
fc34caaa DG |
3104 | } |
3105 | shadow_copy_channel(ua_chan, uchan); | |
3106 | ||
ffe60014 DG |
3107 | /* Set channel type. */ |
3108 | ua_chan->attr.type = type; | |
3109 | ||
d0b96690 DG |
3110 | /* Only add the channel if successful on the tracer side. */ |
3111 | lttng_ht_add_unique_str(ua_sess->channels, &ua_chan->node); | |
fc34caaa | 3112 | end: |
4d710ac2 DG |
3113 | if (ua_chanp) { |
3114 | *ua_chanp = ua_chan; | |
3115 | } | |
3116 | ||
3117 | /* Everything went well. */ | |
3118 | return 0; | |
5b4a0ec0 DG |
3119 | |
3120 | error: | |
4d710ac2 | 3121 | return ret; |
5b4a0ec0 DG |
3122 | } |
3123 | ||
3124 | /* | |
3125 | * Create UST app event and create it on the tracer side. | |
d0b96690 DG |
3126 | * |
3127 | * Called with ust app session mutex held. | |
5b4a0ec0 | 3128 | */ |
edb67388 DG |
3129 | static |
3130 | int create_ust_app_event(struct ust_app_session *ua_sess, | |
3131 | struct ust_app_channel *ua_chan, struct ltt_ust_event *uevent, | |
3132 | struct ust_app *app) | |
284d8f55 | 3133 | { |
edb67388 | 3134 | int ret = 0; |
5b4a0ec0 | 3135 | struct ust_app_event *ua_event; |
284d8f55 | 3136 | |
edb67388 DG |
3137 | ua_event = alloc_ust_app_event(uevent->attr.name, &uevent->attr); |
3138 | if (ua_event == NULL) { | |
20533947 | 3139 | /* Only failure mode of alloc_ust_app_event(). */ |
edb67388 | 3140 | ret = -ENOMEM; |
fc34caaa | 3141 | goto end; |
5b4a0ec0 | 3142 | } |
edb67388 | 3143 | shadow_copy_event(ua_event, uevent); |
5b4a0ec0 | 3144 | |
edb67388 | 3145 | /* Create it on the tracer side */ |
5b4a0ec0 | 3146 | ret = create_ust_event(app, ua_sess, ua_chan, ua_event); |
284d8f55 | 3147 | if (ret < 0) { |
e9f11505 JG |
3148 | /* |
3149 | * Not found previously means that it does not exist on the | |
3150 | * tracer. If the application reports that the event existed, | |
3151 | * it means there is a bug in the sessiond or lttng-ust | |
3152 | * (or corruption, etc.) | |
3153 | */ | |
3154 | if (ret == -LTTNG_UST_ERR_EXIST) { | |
3155 | ERR("Tracer for application reported that an event being created already existed: " | |
3156 | "event_name = \"%s\", pid = %d, ppid = %d, uid = %d, gid = %d", | |
3157 | uevent->attr.name, | |
3158 | app->pid, app->ppid, app->uid, | |
3159 | app->gid); | |
3160 | } | |
284d8f55 DG |
3161 | goto error; |
3162 | } | |
3163 | ||
d0b96690 | 3164 | add_unique_ust_app_event(ua_chan, ua_event); |
284d8f55 | 3165 | |
fc34caaa | 3166 | DBG2("UST app create event %s for PID %d completed", ua_event->name, |
852d0037 | 3167 | app->pid); |
7f79d3a1 | 3168 | |
edb67388 | 3169 | end: |
fc34caaa DG |
3170 | return ret; |
3171 | ||
5b4a0ec0 | 3172 | error: |
fc34caaa | 3173 | /* Valid. Calling here is already in a read side lock */ |
fb45065e | 3174 | delete_ust_app_event(-1, ua_event, app); |
edb67388 | 3175 | return ret; |
5b4a0ec0 DG |
3176 | } |
3177 | ||
3178 | /* | |
3179 | * Create UST metadata and open it on the tracer side. | |
d0b96690 | 3180 | * |
7972aab2 | 3181 | * Called with UST app session lock held and RCU read side lock. |
5b4a0ec0 DG |
3182 | */ |
3183 | static int create_ust_app_metadata(struct ust_app_session *ua_sess, | |
ad7a9107 | 3184 | struct ust_app *app, struct consumer_output *consumer) |
5b4a0ec0 DG |
3185 | { |
3186 | int ret = 0; | |
ffe60014 | 3187 | struct ust_app_channel *metadata; |
d88aee68 | 3188 | struct consumer_socket *socket; |
7972aab2 | 3189 | struct ust_registry_session *registry; |
e32d7f27 | 3190 | struct ltt_session *session = NULL; |
5b4a0ec0 | 3191 | |
ffe60014 DG |
3192 | assert(ua_sess); |
3193 | assert(app); | |
d88aee68 | 3194 | assert(consumer); |
5b4a0ec0 | 3195 | |
7972aab2 | 3196 | registry = get_session_registry(ua_sess); |
fad1ed2f | 3197 | /* The UST app session is held registry shall not be null. */ |
7972aab2 DG |
3198 | assert(registry); |
3199 | ||
ce34fcd0 MD |
3200 | pthread_mutex_lock(®istry->lock); |
3201 | ||
1b532a60 DG |
3202 | /* Metadata already exists for this registry or it was closed previously */ |
3203 | if (registry->metadata_key || registry->metadata_closed) { | |
7972aab2 DG |
3204 | ret = 0; |
3205 | goto error; | |
5b4a0ec0 DG |
3206 | } |
3207 | ||
ffe60014 | 3208 | /* Allocate UST metadata */ |
d0b96690 | 3209 | metadata = alloc_ust_app_channel(DEFAULT_METADATA_NAME, ua_sess, NULL); |
ffe60014 DG |
3210 | if (!metadata) { |
3211 | /* malloc() failed */ | |
3212 | ret = -ENOMEM; | |
3213 | goto error; | |
3214 | } | |
5b4a0ec0 | 3215 | |
ad7a9107 | 3216 | memcpy(&metadata->attr, &ua_sess->metadata_attr, sizeof(metadata->attr)); |
5b4a0ec0 | 3217 | |
7972aab2 DG |
3218 | /* Need one fd for the channel. */ |
3219 | ret = lttng_fd_get(LTTNG_FD_APPS, 1); | |
3220 | if (ret < 0) { | |
3221 | ERR("Exhausted number of available FD upon create metadata"); | |
3222 | goto error; | |
3223 | } | |
3224 | ||
4dc3dfc5 DG |
3225 | /* Get the right consumer socket for the application. */ |
3226 | socket = consumer_find_socket_by_bitness(app->bits_per_long, consumer); | |
3227 | if (!socket) { | |
3228 | ret = -EINVAL; | |
3229 | goto error_consumer; | |
3230 | } | |
3231 | ||
331744e3 JD |
3232 | /* |
3233 | * Keep metadata key so we can identify it on the consumer side. Assign it | |
3234 | * to the registry *before* we ask the consumer so we avoid the race of the | |
3235 | * consumer requesting the metadata and the ask_channel call on our side | |
3236 | * did not returned yet. | |
3237 | */ | |
3238 | registry->metadata_key = metadata->key; | |
3239 | ||
e098433c JG |
3240 | session = session_find_by_id(ua_sess->tracing_id); |
3241 | assert(session); | |
3242 | ||
3243 | assert(pthread_mutex_trylock(&session->lock)); | |
3244 | assert(session_trylock_list()); | |
3245 | ||
d88aee68 DG |
3246 | /* |
3247 | * Ask the metadata channel creation to the consumer. The metadata object | |
3248 | * will be created by the consumer and kept their. However, the stream is | |
3249 | * never added or monitored until we do a first push metadata to the | |
3250 | * consumer. | |
3251 | */ | |
7972aab2 | 3252 | ret = ust_consumer_ask_channel(ua_sess, metadata, consumer, socket, |
d2956687 | 3253 | registry, session->current_trace_chunk); |
d88aee68 | 3254 | if (ret < 0) { |
f2a444f1 DG |
3255 | /* Nullify the metadata key so we don't try to close it later on. */ |
3256 | registry->metadata_key = 0; | |
d88aee68 DG |
3257 | goto error_consumer; |
3258 | } | |
3259 | ||
3260 | /* | |
3261 | * The setup command will make the metadata stream be sent to the relayd, | |
3262 | * if applicable, and the thread managing the metadatas. This is important | |
3263 | * because after this point, if an error occurs, the only way the stream | |
3264 | * can be deleted is to be monitored in the consumer. | |
3265 | */ | |
7972aab2 | 3266 | ret = consumer_setup_metadata(socket, metadata->key); |
ffe60014 | 3267 | if (ret < 0) { |
f2a444f1 DG |
3268 | /* Nullify the metadata key so we don't try to close it later on. */ |
3269 | registry->metadata_key = 0; | |
d88aee68 | 3270 | goto error_consumer; |
5b4a0ec0 DG |
3271 | } |
3272 | ||
7972aab2 DG |
3273 | DBG2("UST metadata with key %" PRIu64 " created for app pid %d", |
3274 | metadata->key, app->pid); | |
5b4a0ec0 | 3275 | |
d88aee68 | 3276 | error_consumer: |
b80f0b6c | 3277 | lttng_fd_put(LTTNG_FD_APPS, 1); |
d88aee68 | 3278 | delete_ust_app_channel(-1, metadata, app); |
5b4a0ec0 | 3279 | error: |
ce34fcd0 | 3280 | pthread_mutex_unlock(®istry->lock); |
e32d7f27 JG |
3281 | if (session) { |
3282 | session_put(session); | |
3283 | } | |
ffe60014 | 3284 | return ret; |
5b4a0ec0 DG |
3285 | } |
3286 | ||
5b4a0ec0 | 3287 | /* |
d88aee68 DG |
3288 | * Return ust app pointer or NULL if not found. RCU read side lock MUST be |
3289 | * acquired before calling this function. | |
5b4a0ec0 DG |
3290 | */ |
3291 | struct ust_app *ust_app_find_by_pid(pid_t pid) | |
3292 | { | |
d88aee68 | 3293 | struct ust_app *app = NULL; |
bec39940 DG |
3294 | struct lttng_ht_node_ulong *node; |
3295 | struct lttng_ht_iter iter; | |
5b4a0ec0 | 3296 | |
bec39940 DG |
3297 | lttng_ht_lookup(ust_app_ht, (void *)((unsigned long) pid), &iter); |
3298 | node = lttng_ht_iter_get_node_ulong(&iter); | |
5b4a0ec0 DG |
3299 | if (node == NULL) { |
3300 | DBG2("UST app no found with pid %d", pid); | |
3301 | goto error; | |
3302 | } | |
5b4a0ec0 DG |
3303 | |
3304 | DBG2("Found UST app by pid %d", pid); | |
3305 | ||
d88aee68 | 3306 | app = caa_container_of(node, struct ust_app, pid_n); |
5b4a0ec0 DG |
3307 | |
3308 | error: | |
d88aee68 | 3309 | return app; |
5b4a0ec0 DG |
3310 | } |
3311 | ||
d88aee68 DG |
3312 | /* |
3313 | * Allocate and init an UST app object using the registration information and | |
3314 | * the command socket. This is called when the command socket connects to the | |
3315 | * session daemon. | |
3316 | * | |
3317 | * The object is returned on success or else NULL. | |
3318 | */ | |
d0b96690 | 3319 | struct ust_app *ust_app_create(struct ust_register_msg *msg, int sock) |
5b4a0ec0 | 3320 | { |
d0b96690 DG |
3321 | struct ust_app *lta = NULL; |
3322 | ||
3323 | assert(msg); | |
3324 | assert(sock >= 0); | |
3325 | ||
3326 | DBG3("UST app creating application for socket %d", sock); | |
5b4a0ec0 | 3327 | |
173af62f DG |
3328 | if ((msg->bits_per_long == 64 && |
3329 | (uatomic_read(&ust_consumerd64_fd) == -EINVAL)) | |
3330 | || (msg->bits_per_long == 32 && | |
3331 | (uatomic_read(&ust_consumerd32_fd) == -EINVAL))) { | |
f943b0fb | 3332 | ERR("Registration failed: application \"%s\" (pid: %d) has " |
d0b96690 DG |
3333 | "%d-bit long, but no consumerd for this size is available.\n", |
3334 | msg->name, msg->pid, msg->bits_per_long); | |
3335 | goto error; | |
3f2c5fcc | 3336 | } |
d0b96690 | 3337 | |
5b4a0ec0 DG |
3338 | lta = zmalloc(sizeof(struct ust_app)); |
3339 | if (lta == NULL) { | |
3340 | PERROR("malloc"); | |
d0b96690 | 3341 | goto error; |
5b4a0ec0 DG |
3342 | } |
3343 | ||
3344 | lta->ppid = msg->ppid; | |
3345 | lta->uid = msg->uid; | |
3346 | lta->gid = msg->gid; | |
d0b96690 | 3347 | |
7753dea8 | 3348 | lta->bits_per_long = msg->bits_per_long; |
d0b96690 DG |
3349 | lta->uint8_t_alignment = msg->uint8_t_alignment; |
3350 | lta->uint16_t_alignment = msg->uint16_t_alignment; | |
3351 | lta->uint32_t_alignment = msg->uint32_t_alignment; | |
3352 | lta->uint64_t_alignment = msg->uint64_t_alignment; | |
3353 | lta->long_alignment = msg->long_alignment; | |
3354 | lta->byte_order = msg->byte_order; | |
3355 | ||
5b4a0ec0 DG |
3356 | lta->v_major = msg->major; |
3357 | lta->v_minor = msg->minor; | |
d9bf3ca4 | 3358 | lta->sessions = lttng_ht_new(0, LTTNG_HT_TYPE_U64); |
d0b96690 | 3359 | lta->ust_objd = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG); |
10b56aef | 3360 | lta->ust_sessions_objd = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG); |
d0b96690 | 3361 | lta->notify_sock = -1; |
d88aee68 DG |
3362 | |
3363 | /* Copy name and make sure it's NULL terminated. */ | |
3364 | strncpy(lta->name, msg->name, sizeof(lta->name)); | |
3365 | lta->name[UST_APP_PROCNAME_LEN] = '\0'; | |
3366 | ||
3367 | /* | |
3368 | * Before this can be called, when receiving the registration information, | |
3369 | * the application compatibility is checked. So, at this point, the | |
3370 | * application can work with this session daemon. | |
3371 | */ | |
d0b96690 | 3372 | lta->compatible = 1; |
5b4a0ec0 | 3373 | |
852d0037 | 3374 | lta->pid = msg->pid; |
d0b96690 | 3375 | lttng_ht_node_init_ulong(<a->pid_n, (unsigned long) lta->pid); |
852d0037 | 3376 | lta->sock = sock; |
fb45065e | 3377 | pthread_mutex_init(<a->sock_lock, NULL); |
d0b96690 | 3378 | lttng_ht_node_init_ulong(<a->sock_n, (unsigned long) lta->sock); |
5b4a0ec0 | 3379 | |
d42f20df | 3380 | CDS_INIT_LIST_HEAD(<a->teardown_head); |
d0b96690 DG |
3381 | error: |
3382 | return lta; | |
3383 | } | |
3384 | ||
d88aee68 DG |
3385 | /* |
3386 | * For a given application object, add it to every hash table. | |
3387 | */ | |
d0b96690 DG |
3388 | void ust_app_add(struct ust_app *app) |
3389 | { | |
3390 | assert(app); | |
3391 | assert(app->notify_sock >= 0); | |
3392 | ||
940c4592 JR |
3393 | app->registration_time = time(NULL); |
3394 | ||
5b4a0ec0 | 3395 | rcu_read_lock(); |
852d0037 DG |
3396 | |
3397 | /* | |
3398 | * On a re-registration, we want to kick out the previous registration of | |
3399 | * that pid | |
3400 | */ | |
d0b96690 | 3401 | lttng_ht_add_replace_ulong(ust_app_ht, &app->pid_n); |
852d0037 DG |
3402 | |
3403 | /* | |
3404 | * The socket _should_ be unique until _we_ call close. So, a add_unique | |
3405 | * for the ust_app_ht_by_sock is used which asserts fail if the entry was | |
3406 | * already in the table. | |
3407 | */ | |
d0b96690 | 3408 | lttng_ht_add_unique_ulong(ust_app_ht_by_sock, &app->sock_n); |
852d0037 | 3409 | |
d0b96690 DG |
3410 | /* Add application to the notify socket hash table. */ |
3411 | lttng_ht_node_init_ulong(&app->notify_sock_n, app->notify_sock); | |
3412 | lttng_ht_add_unique_ulong(ust_app_ht_by_notify_sock, &app->notify_sock_n); | |
5b4a0ec0 | 3413 | |
d0b96690 | 3414 | DBG("App registered with pid:%d ppid:%d uid:%d gid:%d sock:%d name:%s " |
d88aee68 DG |
3415 | "notify_sock:%d (version %d.%d)", app->pid, app->ppid, app->uid, |
3416 | app->gid, app->sock, app->name, app->notify_sock, app->v_major, | |
3417 | app->v_minor); | |
5b4a0ec0 | 3418 | |
d0b96690 DG |
3419 | rcu_read_unlock(); |
3420 | } | |
3421 | ||
d88aee68 DG |
3422 | /* |
3423 | * Set the application version into the object. | |
3424 | * | |
3425 | * Return 0 on success else a negative value either an errno code or a | |
3426 | * LTTng-UST error code. | |
3427 | */ | |
d0b96690 DG |
3428 | int ust_app_version(struct ust_app *app) |
3429 | { | |
d88aee68 DG |
3430 | int ret; |
3431 | ||
d0b96690 | 3432 | assert(app); |
d88aee68 | 3433 | |
fb45065e | 3434 | pthread_mutex_lock(&app->sock_lock); |
d88aee68 | 3435 | ret = ustctl_tracer_version(app->sock, &app->version); |
fb45065e | 3436 | pthread_mutex_unlock(&app->sock_lock); |
d88aee68 DG |
3437 | if (ret < 0) { |
3438 | if (ret != -LTTNG_UST_ERR_EXITING && ret != -EPIPE) { | |
5368d366 | 3439 | ERR("UST app %d version failed with ret %d", app->sock, ret); |
d88aee68 | 3440 | } else { |
5368d366 | 3441 | DBG3("UST app %d version failed. Application is dead", app->sock); |
d88aee68 DG |
3442 | } |
3443 | } | |
3444 | ||
3445 | return ret; | |
5b4a0ec0 DG |
3446 | } |
3447 | ||
3448 | /* | |
3449 | * Unregister app by removing it from the global traceable app list and freeing | |
3450 | * the data struct. | |
3451 | * | |
3452 | * The socket is already closed at this point so no close to sock. | |
3453 | */ | |
3454 | void ust_app_unregister(int sock) | |
3455 | { | |
3456 | struct ust_app *lta; | |
bec39940 | 3457 | struct lttng_ht_node_ulong *node; |
c4b88406 | 3458 | struct lttng_ht_iter ust_app_sock_iter; |
bec39940 | 3459 | struct lttng_ht_iter iter; |
d42f20df | 3460 | struct ust_app_session *ua_sess; |
525b0740 | 3461 | int ret; |
5b4a0ec0 DG |
3462 | |
3463 | rcu_read_lock(); | |
886459c6 | 3464 | |
5b4a0ec0 | 3465 | /* Get the node reference for a call_rcu */ |
c4b88406 MD |
3466 | lttng_ht_lookup(ust_app_ht_by_sock, (void *)((unsigned long) sock), &ust_app_sock_iter); |
3467 | node = lttng_ht_iter_get_node_ulong(&ust_app_sock_iter); | |
d0b96690 | 3468 | assert(node); |
284d8f55 | 3469 | |
852d0037 | 3470 | lta = caa_container_of(node, struct ust_app, sock_n); |
852d0037 DG |
3471 | DBG("PID %d unregistering with sock %d", lta->pid, sock); |
3472 | ||
d88aee68 | 3473 | /* |
ce34fcd0 MD |
3474 | * For per-PID buffers, perform "push metadata" and flush all |
3475 | * application streams before removing app from hash tables, | |
3476 | * ensuring proper behavior of data_pending check. | |
c4b88406 | 3477 | * Remove sessions so they are not visible during deletion. |
d88aee68 | 3478 | */ |
d42f20df DG |
3479 | cds_lfht_for_each_entry(lta->sessions->ht, &iter.iter, ua_sess, |
3480 | node.node) { | |
7972aab2 DG |
3481 | struct ust_registry_session *registry; |
3482 | ||
d42f20df DG |
3483 | ret = lttng_ht_del(lta->sessions, &iter); |
3484 | if (ret) { | |
3485 | /* The session was already removed so scheduled for teardown. */ | |
3486 | continue; | |
3487 | } | |
3488 | ||
ce34fcd0 MD |
3489 | if (ua_sess->buffer_type == LTTNG_BUFFER_PER_PID) { |
3490 | (void) ust_app_flush_app_session(lta, ua_sess); | |
3491 | } | |
c4b88406 | 3492 | |
d42f20df DG |
3493 | /* |
3494 | * Add session to list for teardown. This is safe since at this point we | |
3495 | * are the only one using this list. | |
3496 | */ | |
d88aee68 DG |
3497 | pthread_mutex_lock(&ua_sess->lock); |
3498 | ||
b161602a MD |
3499 | if (ua_sess->deleted) { |
3500 | pthread_mutex_unlock(&ua_sess->lock); | |
3501 | continue; | |
3502 | } | |
3503 | ||
d88aee68 DG |
3504 | /* |
3505 | * Normally, this is done in the delete session process which is | |
3506 | * executed in the call rcu below. However, upon registration we can't | |
3507 | * afford to wait for the grace period before pushing data or else the | |
3508 | * data pending feature can race between the unregistration and stop | |
3509 | * command where the data pending command is sent *before* the grace | |
3510 | * period ended. | |
3511 | * | |
3512 | * The close metadata below nullifies the metadata pointer in the | |
3513 | * session so the delete session will NOT push/close a second time. | |
3514 | */ | |
7972aab2 | 3515 | registry = get_session_registry(ua_sess); |
ce34fcd0 | 3516 | if (registry) { |
7972aab2 DG |
3517 | /* Push metadata for application before freeing the application. */ |
3518 | (void) push_metadata(registry, ua_sess->consumer); | |
3519 | ||
3520 | /* | |
3521 | * Don't ask to close metadata for global per UID buffers. Close | |
1b532a60 DG |
3522 | * metadata only on destroy trace session in this case. Also, the |
3523 | * previous push metadata could have flag the metadata registry to | |
3524 | * close so don't send a close command if closed. | |
7972aab2 | 3525 | */ |
ce34fcd0 | 3526 | if (ua_sess->buffer_type != LTTNG_BUFFER_PER_UID) { |
7972aab2 DG |
3527 | /* And ask to close it for this session registry. */ |
3528 | (void) close_metadata(registry, ua_sess->consumer); | |
3529 | } | |
3530 | } | |
d42f20df | 3531 | cds_list_add(&ua_sess->teardown_node, <a->teardown_head); |
c4b88406 | 3532 | |
d88aee68 | 3533 | pthread_mutex_unlock(&ua_sess->lock); |
d42f20df DG |
3534 | } |
3535 | ||
c4b88406 MD |
3536 | /* Remove application from PID hash table */ |
3537 | ret = lttng_ht_del(ust_app_ht_by_sock, &ust_app_sock_iter); | |
3538 | assert(!ret); | |
3539 | ||
3540 | /* | |
3541 | * Remove application from notify hash table. The thread handling the | |
3542 | * notify socket could have deleted the node so ignore on error because | |
c48239ca JG |
3543 | * either way it's valid. The close of that socket is handled by the |
3544 | * apps_notify_thread. | |
c4b88406 MD |
3545 | */ |
3546 | iter.iter.node = <a->notify_sock_n.node; | |
3547 | (void) lttng_ht_del(ust_app_ht_by_notify_sock, &iter); | |
3548 | ||
3549 | /* | |
3550 | * Ignore return value since the node might have been removed before by an | |
3551 | * add replace during app registration because the PID can be reassigned by | |
3552 | * the OS. | |
3553 | */ | |
3554 | iter.iter.node = <a->pid_n.node; | |
3555 | ret = lttng_ht_del(ust_app_ht, &iter); | |
3556 | if (ret) { | |
3557 | DBG3("Unregister app by PID %d failed. This can happen on pid reuse", | |
3558 | lta->pid); | |
3559 | } | |
3560 | ||
852d0037 DG |
3561 | /* Free memory */ |
3562 | call_rcu(<a->pid_n.head, delete_ust_app_rcu); | |
3563 | ||
5b4a0ec0 DG |
3564 | rcu_read_unlock(); |
3565 | return; | |
284d8f55 DG |
3566 | } |
3567 | ||
5b4a0ec0 DG |
3568 | /* |
3569 | * Fill events array with all events name of all registered apps. | |
3570 | */ | |
3571 | int ust_app_list_events(struct lttng_event **events) | |
421cb601 | 3572 | { |
5b4a0ec0 DG |
3573 | int ret, handle; |
3574 | size_t nbmem, count = 0; | |
bec39940 | 3575 | struct lttng_ht_iter iter; |
5b4a0ec0 | 3576 | struct ust_app *app; |
c617c0c6 | 3577 | struct lttng_event *tmp_event; |
421cb601 | 3578 | |
5b4a0ec0 | 3579 | nbmem = UST_APP_EVENT_LIST_SIZE; |
c617c0c6 MD |
3580 | tmp_event = zmalloc(nbmem * sizeof(struct lttng_event)); |
3581 | if (tmp_event == NULL) { | |
5b4a0ec0 DG |
3582 | PERROR("zmalloc ust app events"); |
3583 | ret = -ENOMEM; | |
421cb601 DG |
3584 | goto error; |
3585 | } | |
3586 | ||
5b4a0ec0 | 3587 | rcu_read_lock(); |
421cb601 | 3588 | |
852d0037 | 3589 | cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) { |
90eaa0d2 | 3590 | struct lttng_ust_tracepoint_iter uiter; |
ac3bd9c0 | 3591 | |
840cb59c | 3592 | health_code_update(); |
86acf0da | 3593 | |
e0c7ec2b DG |
3594 | if (!app->compatible) { |
3595 | /* | |
3596 | * TODO: In time, we should notice the caller of this error by | |
3597 | * telling him that this is a version error. | |
3598 | */ | |
3599 | continue; | |
3600 | } | |
fb45065e | 3601 | pthread_mutex_lock(&app->sock_lock); |
852d0037 | 3602 | handle = ustctl_tracepoint_list(app->sock); |
5b4a0ec0 | 3603 | if (handle < 0) { |
ffe60014 DG |
3604 | if (handle != -EPIPE && handle != -LTTNG_UST_ERR_EXITING) { |
3605 | ERR("UST app list events getting handle failed for app pid %d", | |
3606 | app->pid); | |
3607 | } | |
fb45065e | 3608 | pthread_mutex_unlock(&app->sock_lock); |
5b4a0ec0 DG |
3609 | continue; |
3610 | } | |
421cb601 | 3611 | |
852d0037 | 3612 | while ((ret = ustctl_tracepoint_list_get(app->sock, handle, |
fb54cdbf | 3613 | &uiter)) != -LTTNG_UST_ERR_NOENT) { |
ffe60014 DG |
3614 | /* Handle ustctl error. */ |
3615 | if (ret < 0) { | |
fb45065e MD |
3616 | int release_ret; |
3617 | ||
a2ba1ab0 | 3618 | if (ret != -LTTNG_UST_ERR_EXITING && ret != -EPIPE) { |
ffe60014 DG |
3619 | ERR("UST app tp list get failed for app %d with ret %d", |
3620 | app->sock, ret); | |
3621 | } else { | |
3622 | DBG3("UST app tp list get failed. Application is dead"); | |
3757b385 DG |
3623 | /* |
3624 | * This is normal behavior, an application can die during the | |
3625 | * creation process. Don't report an error so the execution can | |
3626 | * continue normally. Continue normal execution. | |
3627 | */ | |
3628 | break; | |
ffe60014 | 3629 | } |
98f595d4 | 3630 | free(tmp_event); |
fb45065e | 3631 | release_ret = ustctl_release_handle(app->sock, handle); |
68313703 JG |
3632 | if (release_ret < 0 && |
3633 | release_ret != -LTTNG_UST_ERR_EXITING && | |
3634 | release_ret != -EPIPE) { | |
fb45065e MD |
3635 | ERR("Error releasing app handle for app %d with ret %d", app->sock, release_ret); |
3636 | } | |
3637 | pthread_mutex_unlock(&app->sock_lock); | |
ffe60014 DG |
3638 | goto rcu_error; |
3639 | } | |
3640 | ||
840cb59c | 3641 | health_code_update(); |
815564d8 | 3642 | if (count >= nbmem) { |
d7b3776f | 3643 | /* In case the realloc fails, we free the memory */ |
53efb85a MD |
3644 | struct lttng_event *new_tmp_event; |
3645 | size_t new_nbmem; | |
3646 | ||
3647 | new_nbmem = nbmem << 1; | |
3648 | DBG2("Reallocating event list from %zu to %zu entries", | |
3649 | nbmem, new_nbmem); | |
3650 | new_tmp_event = realloc(tmp_event, | |
3651 | new_nbmem * sizeof(struct lttng_event)); | |
3652 | if (new_tmp_event == NULL) { | |
fb45065e MD |
3653 | int release_ret; |
3654 | ||
5b4a0ec0 | 3655 | PERROR("realloc ust app events"); |
c617c0c6 | 3656 | free(tmp_event); |
5b4a0ec0 | 3657 | ret = -ENOMEM; |
fb45065e | 3658 | release_ret = ustctl_release_handle(app->sock, handle); |
68313703 JG |
3659 | if (release_ret < 0 && |
3660 | release_ret != -LTTNG_UST_ERR_EXITING && | |
3661 | release_ret != -EPIPE) { | |
fb45065e MD |
3662 | ERR("Error releasing app handle for app %d with ret %d", app->sock, release_ret); |
3663 | } | |
3664 | pthread_mutex_unlock(&app->sock_lock); | |
5b4a0ec0 DG |
3665 | goto rcu_error; |
3666 | } | |
53efb85a MD |
3667 | /* Zero the new memory */ |
3668 | memset(new_tmp_event + nbmem, 0, | |
3669 | (new_nbmem - nbmem) * sizeof(struct lttng_event)); | |
3670 | nbmem = new_nbmem; | |
3671 | tmp_event = new_tmp_event; | |
5b4a0ec0 | 3672 | } |
c617c0c6 MD |
3673 | memcpy(tmp_event[count].name, uiter.name, LTTNG_UST_SYM_NAME_LEN); |
3674 | tmp_event[count].loglevel = uiter.loglevel; | |
3675 | tmp_event[count].type = (enum lttng_event_type) LTTNG_UST_TRACEPOINT; | |
3676 | tmp_event[count].pid = app->pid; | |
3677 | tmp_event[count].enabled = -1; | |
5b4a0ec0 | 3678 | count++; |
421cb601 | 3679 | } |
fb45065e MD |
3680 | ret = ustctl_release_handle(app->sock, handle); |
3681 | pthread_mutex_unlock(&app->sock_lock); | |
68313703 | 3682 | if (ret < 0 && ret != -LTTNG_UST_ERR_EXITING && ret != -EPIPE) { |
fb45065e MD |
3683 | ERR("Error releasing app handle for app %d with ret %d", app->sock, ret); |
3684 | } | |
421cb601 DG |
3685 | } |
3686 | ||
5b4a0ec0 | 3687 | ret = count; |
c617c0c6 | 3688 | *events = tmp_event; |
421cb601 | 3689 | |
5b4a0ec0 | 3690 | DBG2("UST app list events done (%zu events)", count); |
421cb601 | 3691 | |
5b4a0ec0 DG |
3692 | rcu_error: |
3693 | rcu_read_unlock(); | |
421cb601 | 3694 | error: |
840cb59c | 3695 | health_code_update(); |
5b4a0ec0 | 3696 | return ret; |
421cb601 DG |
3697 | } |
3698 | ||
f37d259d MD |
3699 | /* |
3700 | * Fill events array with all events name of all registered apps. | |
3701 | */ | |
3702 | int ust_app_list_event_fields(struct lttng_event_field **fields) | |
3703 | { | |
3704 | int ret, handle; | |
3705 | size_t nbmem, count = 0; | |
3706 | struct lttng_ht_iter iter; | |
3707 | struct ust_app *app; | |
c617c0c6 | 3708 | struct lttng_event_field *tmp_event; |
f37d259d MD |
3709 | |
3710 | nbmem = UST_APP_EVENT_LIST_SIZE; | |
c617c0c6 MD |
3711 | tmp_event = zmalloc(nbmem * sizeof(struct lttng_event_field)); |
3712 | if (tmp_event == NULL) { | |
f37d259d MD |
3713 | PERROR("zmalloc ust app event fields"); |
3714 | ret = -ENOMEM; | |
3715 | goto error; | |
3716 | } | |
3717 | ||
3718 | rcu_read_lock(); | |
3719 | ||
3720 | cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) { | |
3721 | struct lttng_ust_field_iter uiter; | |
3722 | ||
840cb59c | 3723 | health_code_update(); |
86acf0da | 3724 | |
f37d259d MD |
3725 | if (!app->compatible) { |
3726 | /* | |
3727 | * TODO: In time, we should notice the caller of this error by | |
3728 | * telling him that this is a version error. | |
3729 | */ | |
3730 | continue; | |
3731 | } | |
fb45065e | 3732 | pthread_mutex_lock(&app->sock_lock); |
f37d259d MD |
3733 | handle = ustctl_tracepoint_field_list(app->sock); |
3734 | if (handle < 0) { | |
ffe60014 DG |
3735 | if (handle != -EPIPE && handle != -LTTNG_UST_ERR_EXITING) { |
3736 | ERR("UST app list field getting handle failed for app pid %d", | |
3737 | app->pid); | |
3738 | } | |
fb45065e | 3739 | pthread_mutex_unlock(&app->sock_lock); |
f37d259d MD |
3740 | continue; |
3741 | } | |
3742 | ||
3743 | while ((ret = ustctl_tracepoint_field_list_get(app->sock, handle, | |
fb54cdbf | 3744 | &uiter)) != -LTTNG_UST_ERR_NOENT) { |
ffe60014 DG |
3745 | /* Handle ustctl error. */ |
3746 | if (ret < 0) { | |
fb45065e MD |
3747 | int release_ret; |
3748 | ||
a2ba1ab0 | 3749 | if (ret != -LTTNG_UST_ERR_EXITING && ret != -EPIPE) { |
ffe60014 DG |
3750 | ERR("UST app tp list field failed for app %d with ret %d", |
3751 | app->sock, ret); | |
3752 | } else { | |
3753 | DBG3("UST app tp list field failed. Application is dead"); | |
3757b385 DG |
3754 | /* |
3755 | * This is normal behavior, an application can die during the | |
3756 | * creation process. Don't report an error so the execution can | |
98f595d4 | 3757 | * continue normally. Reset list and count for next app. |
3757b385 DG |
3758 | */ |
3759 | break; | |
ffe60014 | 3760 | } |
98f595d4 | 3761 | free(tmp_event); |
fb45065e MD |
3762 | release_ret = ustctl_release_handle(app->sock, handle); |
3763 | pthread_mutex_unlock(&app->sock_lock); | |
68313703 JG |
3764 | if (release_ret < 0 && |
3765 | release_ret != -LTTNG_UST_ERR_EXITING && | |
3766 | release_ret != -EPIPE) { | |
fb45065e MD |
3767 | ERR("Error releasing app handle for app %d with ret %d", app->sock, release_ret); |
3768 | } | |
ffe60014 DG |
3769 | goto rcu_error; |
3770 | } | |
3771 | ||
840cb59c | 3772 | health_code_update(); |
f37d259d | 3773 | if (count >= nbmem) { |
d7b3776f | 3774 | /* In case the realloc fails, we free the memory */ |
53efb85a MD |
3775 | struct lttng_event_field *new_tmp_event; |
3776 | size_t new_nbmem; | |
3777 | ||
3778 | new_nbmem = nbmem << 1; | |
3779 | DBG2("Reallocating event field list from %zu to %zu entries", | |
3780 | nbmem, new_nbmem); | |
3781 | new_tmp_event = realloc(tmp_event, | |
3782 | new_nbmem * sizeof(struct lttng_event_field)); | |
3783 | if (new_tmp_event == NULL) { | |
fb45065e MD |
3784 | int release_ret; |
3785 | ||
f37d259d | 3786 | PERROR("realloc ust app event fields"); |
c617c0c6 | 3787 | free(tmp_event); |
f37d259d | 3788 | ret = -ENOMEM; |
fb45065e MD |
3789 | release_ret = ustctl_release_handle(app->sock, handle); |
3790 | pthread_mutex_unlock(&app->sock_lock); | |
68313703 JG |
3791 | if (release_ret && |
3792 | release_ret != -LTTNG_UST_ERR_EXITING && | |
3793 | release_ret != -EPIPE) { | |
fb45065e MD |
3794 | ERR("Error releasing app handle for app %d with ret %d", app->sock, release_ret); |
3795 | } | |
f37d259d MD |
3796 | goto rcu_error; |
3797 | } | |
53efb85a MD |
3798 | /* Zero the new memory */ |
3799 | memset(new_tmp_event + nbmem, 0, | |
3800 | (new_nbmem - nbmem) * sizeof(struct lttng_event_field)); | |
3801 | nbmem = new_nbmem; | |
3802 | tmp_event = new_tmp_event; | |
f37d259d | 3803 | } |
f37d259d | 3804 | |
c617c0c6 | 3805 | memcpy(tmp_event[count].field_name, uiter.field_name, LTTNG_UST_SYM_NAME_LEN); |
2e84128e DG |
3806 | /* Mapping between these enums matches 1 to 1. */ |
3807 | tmp_event[count].type = (enum lttng_event_field_type) uiter.type; | |
c617c0c6 | 3808 | tmp_event[count].nowrite = uiter.nowrite; |
f37d259d | 3809 | |
c617c0c6 MD |
3810 | memcpy(tmp_event[count].event.name, uiter.event_name, LTTNG_UST_SYM_NAME_LEN); |
3811 | tmp_event[count].event.loglevel = uiter.loglevel; | |
2e84128e | 3812 | tmp_event[count].event.type = LTTNG_EVENT_TRACEPOINT; |
c617c0c6 MD |
3813 | tmp_event[count].event.pid = app->pid; |
3814 | tmp_event[count].event.enabled = -1; | |
f37d259d MD |
3815 | count++; |
3816 | } | |
fb45065e MD |
3817 | ret = ustctl_release_handle(app->sock, handle); |
3818 | pthread_mutex_unlock(&app->sock_lock); | |
68313703 JG |
3819 | if (ret < 0 && |
3820 | ret != -LTTNG_UST_ERR_EXITING && | |
3821 | ret != -EPIPE) { | |
fb45065e MD |
3822 | ERR("Error releasing app handle for app %d with ret %d", app->sock, ret); |
3823 | } | |
f37d259d MD |
3824 | } |
3825 | ||
3826 | ret = count; | |
c617c0c6 | 3827 | *fields = tmp_event; |
f37d259d MD |
3828 | |
3829 | DBG2("UST app list event fields done (%zu events)", count); | |
3830 | ||
3831 | rcu_error: | |
3832 | rcu_read_unlock(); | |
3833 | error: | |
840cb59c | 3834 | health_code_update(); |
f37d259d MD |
3835 | return ret; |
3836 | } | |
3837 | ||
5b4a0ec0 DG |
3838 | /* |
3839 | * Free and clean all traceable apps of the global list. | |
36b588ed MD |
3840 | * |
3841 | * Should _NOT_ be called with RCU read-side lock held. | |
5b4a0ec0 DG |
3842 | */ |
3843 | void ust_app_clean_list(void) | |
421cb601 | 3844 | { |
5b4a0ec0 | 3845 | int ret; |
659ed79f | 3846 | struct ust_app *app; |
bec39940 | 3847 | struct lttng_ht_iter iter; |
421cb601 | 3848 | |
5b4a0ec0 | 3849 | DBG2("UST app cleaning registered apps hash table"); |
421cb601 | 3850 | |
5b4a0ec0 | 3851 | rcu_read_lock(); |
421cb601 | 3852 | |
faadaa3a JG |
3853 | /* Cleanup notify socket hash table */ |
3854 | if (ust_app_ht_by_notify_sock) { | |
3855 | cds_lfht_for_each_entry(ust_app_ht_by_notify_sock->ht, &iter.iter, app, | |
3856 | notify_sock_n.node) { | |
3857 | struct cds_lfht_node *node; | |
3858 | struct ust_app *app; | |
3859 | ||
3860 | node = cds_lfht_iter_get_node(&iter.iter); | |
3861 | if (!node) { | |
3862 | continue; | |
3863 | } | |
3864 | ||
3865 | app = container_of(node, struct ust_app, | |
3866 | notify_sock_n.node); | |
3867 | ust_app_notify_sock_unregister(app->notify_sock); | |
3868 | } | |
3869 | } | |
3870 | ||
f1b711c4 MD |
3871 | if (ust_app_ht) { |
3872 | cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) { | |
3873 | ret = lttng_ht_del(ust_app_ht, &iter); | |
3874 | assert(!ret); | |
3875 | call_rcu(&app->pid_n.head, delete_ust_app_rcu); | |
3876 | } | |
421cb601 DG |
3877 | } |
3878 | ||
852d0037 | 3879 | /* Cleanup socket hash table */ |
f1b711c4 MD |
3880 | if (ust_app_ht_by_sock) { |
3881 | cds_lfht_for_each_entry(ust_app_ht_by_sock->ht, &iter.iter, app, | |
3882 | sock_n.node) { | |
3883 | ret = lttng_ht_del(ust_app_ht_by_sock, &iter); | |
3884 | assert(!ret); | |
3885 | } | |
bec39940 | 3886 | } |
852d0037 | 3887 | |
36b588ed | 3888 | rcu_read_unlock(); |
d88aee68 | 3889 | |
bec39940 | 3890 | /* Destroy is done only when the ht is empty */ |
f1b711c4 MD |
3891 | if (ust_app_ht) { |
3892 | ht_cleanup_push(ust_app_ht); | |
3893 | } | |
3894 | if (ust_app_ht_by_sock) { | |
3895 | ht_cleanup_push(ust_app_ht_by_sock); | |
3896 | } | |
3897 | if (ust_app_ht_by_notify_sock) { | |
3898 | ht_cleanup_push(ust_app_ht_by_notify_sock); | |
3899 | } | |
5b4a0ec0 DG |
3900 | } |
3901 | ||
3902 | /* | |
3903 | * Init UST app hash table. | |
3904 | */ | |
57703f6e | 3905 | int ust_app_ht_alloc(void) |
5b4a0ec0 | 3906 | { |
bec39940 | 3907 | ust_app_ht = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG); |
57703f6e MD |
3908 | if (!ust_app_ht) { |
3909 | return -1; | |
3910 | } | |
852d0037 | 3911 | ust_app_ht_by_sock = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG); |
57703f6e MD |
3912 | if (!ust_app_ht_by_sock) { |
3913 | return -1; | |
3914 | } | |
d0b96690 | 3915 | ust_app_ht_by_notify_sock = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG); |
57703f6e MD |
3916 | if (!ust_app_ht_by_notify_sock) { |
3917 | return -1; | |
3918 | } | |
3919 | return 0; | |
421cb601 DG |
3920 | } |
3921 | ||
78f0bacd DG |
3922 | /* |
3923 | * For a specific UST session, disable the channel for all registered apps. | |
3924 | */ | |
35a9059d | 3925 | int ust_app_disable_channel_glb(struct ltt_ust_session *usess, |
78f0bacd DG |
3926 | struct ltt_ust_channel *uchan) |
3927 | { | |
3928 | int ret = 0; | |
bec39940 DG |
3929 | struct lttng_ht_iter iter; |
3930 | struct lttng_ht_node_str *ua_chan_node; | |
78f0bacd DG |
3931 | struct ust_app *app; |
3932 | struct ust_app_session *ua_sess; | |
8535a6d9 | 3933 | struct ust_app_channel *ua_chan; |
78f0bacd | 3934 | |
88e3c2f5 | 3935 | assert(usess->active); |
d9bf3ca4 | 3936 | DBG2("UST app disabling channel %s from global domain for session id %" PRIu64, |
a991f516 | 3937 | uchan->name, usess->id); |
78f0bacd DG |
3938 | |
3939 | rcu_read_lock(); | |
3940 | ||
3941 | /* For every registered applications */ | |
852d0037 | 3942 | cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) { |
bec39940 | 3943 | struct lttng_ht_iter uiter; |
e0c7ec2b DG |
3944 | if (!app->compatible) { |
3945 | /* | |
3946 | * TODO: In time, we should notice the caller of this error by | |
3947 | * telling him that this is a version error. | |
3948 | */ | |
3949 | continue; | |
3950 | } | |
78f0bacd DG |
3951 | ua_sess = lookup_session_by_app(usess, app); |
3952 | if (ua_sess == NULL) { | |
3953 | continue; | |
3954 | } | |
3955 | ||
8535a6d9 | 3956 | /* Get channel */ |
bec39940 DG |
3957 | lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &uiter); |
3958 | ua_chan_node = lttng_ht_iter_get_node_str(&uiter); | |
8535a6d9 DG |
3959 | /* If the session if found for the app, the channel must be there */ |
3960 | assert(ua_chan_node); | |
3961 | ||
3962 | ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node); | |
3963 | /* The channel must not be already disabled */ | |
3964 | assert(ua_chan->enabled == 1); | |
3965 | ||
3966 | /* Disable channel onto application */ | |
3967 | ret = disable_ust_app_channel(ua_sess, ua_chan, app); | |
78f0bacd DG |
3968 | if (ret < 0) { |
3969 | /* XXX: We might want to report this error at some point... */ | |
3970 | continue; | |
3971 | } | |
3972 | } | |
3973 | ||
3974 | rcu_read_unlock(); | |
78f0bacd DG |
3975 | return ret; |
3976 | } | |
3977 | ||
3978 | /* | |
3979 | * For a specific UST session, enable the channel for all registered apps. | |
3980 | */ | |
35a9059d | 3981 | int ust_app_enable_channel_glb(struct ltt_ust_session *usess, |
78f0bacd DG |
3982 | struct ltt_ust_channel *uchan) |
3983 | { | |
3984 | int ret = 0; | |
bec39940 | 3985 | struct lttng_ht_iter iter; |
78f0bacd DG |
3986 | struct ust_app *app; |
3987 | struct ust_app_session *ua_sess; | |
3988 | ||
88e3c2f5 | 3989 | assert(usess->active); |
d9bf3ca4 | 3990 | DBG2("UST app enabling channel %s to global domain for session id %" PRIu64, |
a991f516 | 3991 | uchan->name, usess->id); |
78f0bacd DG |
3992 | |
3993 | rcu_read_lock(); | |
3994 | ||
3995 | /* For every registered applications */ | |
852d0037 | 3996 | cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) { |
e0c7ec2b DG |
3997 | if (!app->compatible) { |
3998 | /* | |
3999 | * TODO: In time, we should notice the caller of this error by | |
4000 | * telling him that this is a version error. | |
4001 | */ | |
4002 | continue; | |
4003 | } | |
78f0bacd DG |
4004 | ua_sess = lookup_session_by_app(usess, app); |
4005 | if (ua_sess == NULL) { | |
4006 | continue; | |
4007 | } | |
4008 | ||
4009 | /* Enable channel onto application */ | |
4010 | ret = enable_ust_app_channel(ua_sess, uchan, app); | |
4011 | if (ret < 0) { | |
4012 | /* XXX: We might want to report this error at some point... */ | |
4013 | continue; | |
4014 | } | |
4015 | } | |
4016 | ||
4017 | rcu_read_unlock(); | |
78f0bacd DG |
4018 | return ret; |
4019 | } | |
4020 | ||
b0a40d28 DG |
4021 | /* |
4022 | * Disable an event in a channel and for a specific session. | |
4023 | */ | |
35a9059d DG |
4024 | int ust_app_disable_event_glb(struct ltt_ust_session *usess, |
4025 | struct ltt_ust_channel *uchan, struct ltt_ust_event *uevent) | |
b0a40d28 DG |
4026 | { |
4027 | int ret = 0; | |
bec39940 | 4028 | struct lttng_ht_iter iter, uiter; |
700c5a9d | 4029 | struct lttng_ht_node_str *ua_chan_node; |
b0a40d28 DG |
4030 | struct ust_app *app; |
4031 | struct ust_app_session *ua_sess; | |
4032 | struct ust_app_channel *ua_chan; | |
4033 | struct ust_app_event *ua_event; | |
4034 | ||
88e3c2f5 | 4035 | assert(usess->active); |
b0a40d28 | 4036 | DBG("UST app disabling event %s for all apps in channel " |
d9bf3ca4 MD |
4037 | "%s for session id %" PRIu64, |
4038 | uevent->attr.name, uchan->name, usess->id); | |
b0a40d28 DG |
4039 | |
4040 | rcu_read_lock(); | |
4041 | ||
4042 | /* For all registered applications */ | |
852d0037 | 4043 | cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) { |
e0c7ec2b DG |
4044 | if (!app->compatible) { |
4045 | /* | |
4046 | * TODO: In time, we should notice the caller of this error by | |
4047 | * telling him that this is a version error. | |
4048 | */ | |
4049 | continue; | |
4050 | } | |
b0a40d28 DG |
4051 | ua_sess = lookup_session_by_app(usess, app); |
4052 | if (ua_sess == NULL) { | |
4053 | /* Next app */ | |
4054 | continue; | |
4055 | } | |
4056 | ||
4057 | /* Lookup channel in the ust app session */ | |
bec39940 DG |
4058 | lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &uiter); |
4059 | ua_chan_node = lttng_ht_iter_get_node_str(&uiter); | |
b0a40d28 | 4060 | if (ua_chan_node == NULL) { |
d9bf3ca4 | 4061 | DBG2("Channel %s not found in session id %" PRIu64 " for app pid %d." |
852d0037 | 4062 | "Skipping", uchan->name, usess->id, app->pid); |
b0a40d28 DG |
4063 | continue; |
4064 | } | |
4065 | ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node); | |
4066 | ||
700c5a9d JR |
4067 | ua_event = find_ust_app_event(ua_chan->events, uevent->attr.name, |
4068 | uevent->filter, uevent->attr.loglevel, | |
4069 | uevent->exclusion); | |
4070 | if (ua_event == NULL) { | |
b0a40d28 | 4071 | DBG2("Event %s not found in channel %s for app pid %d." |
852d0037 | 4072 | "Skipping", uevent->attr.name, uchan->name, app->pid); |
b0a40d28 DG |
4073 | continue; |
4074 | } | |
b0a40d28 | 4075 | |
7f79d3a1 | 4076 | ret = disable_ust_app_event(ua_sess, ua_event, app); |
b0a40d28 DG |
4077 | if (ret < 0) { |
4078 | /* XXX: Report error someday... */ | |
4079 | continue; | |
4080 | } | |
4081 | } | |
4082 | ||
4083 | rcu_read_unlock(); | |
88e3c2f5 JG |
4084 | return ret; |
4085 | } | |
4086 | ||
4087 | /* The ua_sess lock must be held by the caller. */ | |
4088 | static | |
4089 | int ust_app_channel_create(struct ltt_ust_session *usess, | |
4090 | struct ust_app_session *ua_sess, | |
4091 | struct ltt_ust_channel *uchan, struct ust_app *app, | |
4092 | struct ust_app_channel **_ua_chan) | |
4093 | { | |
4094 | int ret = 0; | |
4095 | struct ust_app_channel *ua_chan = NULL; | |
4096 | ||
4097 | assert(ua_sess); | |
4098 | ASSERT_LOCKED(ua_sess->lock); | |
4099 | ||
4100 | if (!strncmp(uchan->name, DEFAULT_METADATA_NAME, | |
4101 | sizeof(uchan->name))) { | |
4102 | copy_channel_attr_to_ustctl(&ua_sess->metadata_attr, | |
4103 | &uchan->attr); | |
4104 | ret = 0; | |
4105 | } else { | |
4106 | struct ltt_ust_context *uctx = NULL; | |
4107 | ||
4108 | /* | |
4109 | * Create channel onto application and synchronize its | |
4110 | * configuration. | |
4111 | */ | |
4112 | ret = ust_app_channel_allocate(ua_sess, uchan, | |
4113 | LTTNG_UST_CHAN_PER_CPU, usess, | |
4114 | &ua_chan); | |
88ebf5a7 JR |
4115 | if (ret < 0) { |
4116 | goto error; | |
4117 | } | |
4118 | ||
4119 | ret = ust_app_channel_send(app, usess, | |
4120 | ua_sess, ua_chan); | |
4121 | if (ret) { | |
4122 | goto error; | |
88e3c2f5 JG |
4123 | } |
4124 | ||
4125 | /* Add contexts. */ | |
4126 | cds_list_for_each_entry(uctx, &uchan->ctx_list, list) { | |
4127 | ret = create_ust_app_channel_context(ua_chan, | |
4128 | &uctx->ctx, app); | |
4129 | if (ret) { | |
88ebf5a7 | 4130 | goto error; |
88e3c2f5 JG |
4131 | } |
4132 | } | |
4133 | } | |
88ebf5a7 JR |
4134 | |
4135 | error: | |
88e3c2f5 JG |
4136 | if (ret < 0) { |
4137 | switch (ret) { | |
4138 | case -ENOTCONN: | |
4139 | /* | |
4140 | * The application's socket is not valid. Either a bad socket | |
4141 | * or a timeout on it. We can't inform the caller that for a | |
4142 | * specific app, the session failed so lets continue here. | |
4143 | */ | |
4144 | ret = 0; /* Not an error. */ | |
4145 | break; | |
4146 | case -ENOMEM: | |
4147 | default: | |
4148 | break; | |
4149 | } | |
4150 | } | |
88ebf5a7 | 4151 | |
88e3c2f5 JG |
4152 | if (ret == 0 && _ua_chan) { |
4153 | /* | |
4154 | * Only return the application's channel on success. Note | |
4155 | * that the channel can still be part of the application's | |
4156 | * channel hashtable on error. | |
4157 | */ | |
4158 | *_ua_chan = ua_chan; | |
4159 | } | |
b0a40d28 DG |
4160 | return ret; |
4161 | } | |
4162 | ||
5b4a0ec0 | 4163 | /* |
edb67388 | 4164 | * Enable event for a specific session and channel on the tracer. |
5b4a0ec0 | 4165 | */ |
35a9059d | 4166 | int ust_app_enable_event_glb(struct ltt_ust_session *usess, |
48842b30 DG |
4167 | struct ltt_ust_channel *uchan, struct ltt_ust_event *uevent) |
4168 | { | |
4169 | int ret = 0; | |
bec39940 | 4170 | struct lttng_ht_iter iter, uiter; |
18eace3b | 4171 | struct lttng_ht_node_str *ua_chan_node; |
48842b30 DG |
4172 | struct ust_app *app; |
4173 | struct ust_app_session *ua_sess; | |
4174 | struct ust_app_channel *ua_chan; | |
4175 | struct ust_app_event *ua_event; | |
48842b30 | 4176 | |
88e3c2f5 | 4177 | assert(usess->active); |
d9bf3ca4 | 4178 | DBG("UST app enabling event %s for all apps for session id %" PRIu64, |
a991f516 | 4179 | uevent->attr.name, usess->id); |
48842b30 | 4180 | |
edb67388 DG |
4181 | /* |
4182 | * NOTE: At this point, this function is called only if the session and | |
4183 | * channel passed are already created for all apps. and enabled on the | |
4184 | * tracer also. | |
4185 | */ | |
4186 | ||
48842b30 | 4187 | rcu_read_lock(); |
421cb601 DG |
4188 | |
4189 | /* For all registered applications */ | |
852d0037 | 4190 | cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) { |
e0c7ec2b DG |
4191 | if (!app->compatible) { |
4192 | /* | |
4193 | * TODO: In time, we should notice the caller of this error by | |
4194 | * telling him that this is a version error. | |
4195 | */ | |
4196 | continue; | |
4197 | } | |
edb67388 | 4198 | ua_sess = lookup_session_by_app(usess, app); |
c4a1715b DG |
4199 | if (!ua_sess) { |
4200 | /* The application has problem or is probably dead. */ | |
4201 | continue; | |
4202 | } | |
ba767faf | 4203 | |
d0b96690 DG |
4204 | pthread_mutex_lock(&ua_sess->lock); |
4205 | ||
b161602a MD |
4206 | if (ua_sess->deleted) { |
4207 | pthread_mutex_unlock(&ua_sess->lock); | |
4208 | continue; | |
4209 | } | |
4210 | ||
edb67388 | 4211 | /* Lookup channel in the ust app session */ |
bec39940 DG |
4212 | lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &uiter); |
4213 | ua_chan_node = lttng_ht_iter_get_node_str(&uiter); | |
a7169585 MD |
4214 | /* |
4215 | * It is possible that the channel cannot be found is | |
4216 | * the channel/event creation occurs concurrently with | |
4217 | * an application exit. | |
4218 | */ | |
4219 | if (!ua_chan_node) { | |
4220 | pthread_mutex_unlock(&ua_sess->lock); | |
4221 | continue; | |
4222 | } | |
edb67388 DG |
4223 | |
4224 | ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node); | |
4225 | ||
18eace3b DG |
4226 | /* Get event node */ |
4227 | ua_event = find_ust_app_event(ua_chan->events, uevent->attr.name, | |
39c5a3a7 | 4228 | uevent->filter, uevent->attr.loglevel, uevent->exclusion); |
18eace3b | 4229 | if (ua_event == NULL) { |
7f79d3a1 | 4230 | DBG3("UST app enable event %s not found for app PID %d." |
852d0037 | 4231 | "Skipping app", uevent->attr.name, app->pid); |
d0b96690 | 4232 | goto next_app; |
35a9059d | 4233 | } |
35a9059d DG |
4234 | |
4235 | ret = enable_ust_app_event(ua_sess, ua_event, app); | |
4236 | if (ret < 0) { | |
d0b96690 | 4237 | pthread_mutex_unlock(&ua_sess->lock); |
7f79d3a1 | 4238 | goto error; |
48842b30 | 4239 | } |
d0b96690 DG |
4240 | next_app: |
4241 | pthread_mutex_unlock(&ua_sess->lock); | |
edb67388 DG |
4242 | } |
4243 | ||
7f79d3a1 | 4244 | error: |
edb67388 | 4245 | rcu_read_unlock(); |
edb67388 DG |
4246 | return ret; |
4247 | } | |
4248 | ||
4249 | /* | |
4250 | * For a specific existing UST session and UST channel, creates the event for | |
4251 | * all registered apps. | |
4252 | */ | |
35a9059d | 4253 | int ust_app_create_event_glb(struct ltt_ust_session *usess, |
edb67388 DG |
4254 | struct ltt_ust_channel *uchan, struct ltt_ust_event *uevent) |
4255 | { | |
4256 | int ret = 0; | |
bec39940 DG |
4257 | struct lttng_ht_iter iter, uiter; |
4258 | struct lttng_ht_node_str *ua_chan_node; | |
edb67388 DG |
4259 | struct ust_app *app; |
4260 | struct ust_app_session *ua_sess; | |
4261 | struct ust_app_channel *ua_chan; | |
4262 | ||
88e3c2f5 | 4263 | assert(usess->active); |
d9bf3ca4 | 4264 | DBG("UST app creating event %s for all apps for session id %" PRIu64, |
a991f516 | 4265 | uevent->attr.name, usess->id); |
edb67388 | 4266 | |
edb67388 DG |
4267 | rcu_read_lock(); |
4268 | ||
4269 | /* For all registered applications */ | |
852d0037 | 4270 | cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) { |
e0c7ec2b DG |
4271 | if (!app->compatible) { |
4272 | /* | |
4273 | * TODO: In time, we should notice the caller of this error by | |
4274 | * telling him that this is a version error. | |
4275 | */ | |
4276 | continue; | |
4277 | } | |
edb67388 | 4278 | ua_sess = lookup_session_by_app(usess, app); |
c4a1715b DG |
4279 | if (!ua_sess) { |
4280 | /* The application has problem or is probably dead. */ | |
4281 | continue; | |
4282 | } | |
48842b30 | 4283 | |
d0b96690 | 4284 | pthread_mutex_lock(&ua_sess->lock); |
b161602a MD |
4285 | |
4286 | if (ua_sess->deleted) { | |
4287 | pthread_mutex_unlock(&ua_sess->lock); | |
4288 | continue; | |
4289 | } | |
4290 | ||
48842b30 | 4291 | /* Lookup channel in the ust app session */ |
bec39940 DG |
4292 | lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &uiter); |
4293 | ua_chan_node = lttng_ht_iter_get_node_str(&uiter); | |
edb67388 DG |
4294 | /* If the channel is not found, there is a code flow error */ |
4295 | assert(ua_chan_node); | |
4296 | ||
48842b30 DG |
4297 | ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node); |
4298 | ||
edb67388 | 4299 | ret = create_ust_app_event(ua_sess, ua_chan, uevent, app); |
d0b96690 | 4300 | pthread_mutex_unlock(&ua_sess->lock); |
edb67388 | 4301 | if (ret < 0) { |
49c336c1 | 4302 | if (ret != -LTTNG_UST_ERR_EXIST) { |
fc34caaa DG |
4303 | /* Possible value at this point: -ENOMEM. If so, we stop! */ |
4304 | break; | |
4305 | } | |
4306 | DBG2("UST app event %s already exist on app PID %d", | |
852d0037 | 4307 | uevent->attr.name, app->pid); |
5b4a0ec0 | 4308 | continue; |
48842b30 | 4309 | } |
48842b30 | 4310 | } |
5b4a0ec0 | 4311 | |
48842b30 | 4312 | rcu_read_unlock(); |
48842b30 DG |
4313 | return ret; |
4314 | } | |
4315 | ||
5b4a0ec0 DG |
4316 | /* |
4317 | * Start tracing for a specific UST session and app. | |
fad1ed2f JR |
4318 | * |
4319 | * Called with UST app session lock held. | |
4320 | * | |
5b4a0ec0 | 4321 | */ |
b34cbebf | 4322 | static |
421cb601 | 4323 | int ust_app_start_trace(struct ltt_ust_session *usess, struct ust_app *app) |
48842b30 DG |
4324 | { |
4325 | int ret = 0; | |
48842b30 | 4326 | struct ust_app_session *ua_sess; |
48842b30 | 4327 | |
852d0037 | 4328 | DBG("Starting tracing for ust app pid %d", app->pid); |
5cf5d0e7 | 4329 | |
509cbaf8 MD |
4330 | rcu_read_lock(); |
4331 | ||
e0c7ec2b DG |
4332 | if (!app->compatible) { |
4333 | goto end; | |
4334 | } | |
4335 | ||
421cb601 DG |
4336 | ua_sess = lookup_session_by_app(usess, app); |
4337 | if (ua_sess == NULL) { | |
d42f20df DG |
4338 | /* The session is in teardown process. Ignore and continue. */ |
4339 | goto end; | |
421cb601 | 4340 | } |
48842b30 | 4341 | |
d0b96690 DG |
4342 | pthread_mutex_lock(&ua_sess->lock); |
4343 | ||
b161602a MD |
4344 | if (ua_sess->deleted) { |
4345 | pthread_mutex_unlock(&ua_sess->lock); | |
4346 | goto end; | |
4347 | } | |
4348 | ||
b0a1c741 JR |
4349 | if (ua_sess->enabled) { |
4350 | pthread_mutex_unlock(&ua_sess->lock); | |
4351 | goto end; | |
4352 | } | |
4353 | ||
aea829b3 DG |
4354 | /* Upon restart, we skip the setup, already done */ |
4355 | if (ua_sess->started) { | |
8be98f9a | 4356 | goto skip_setup; |
aea829b3 | 4357 | } |
8be98f9a | 4358 | |
d65d2de8 DG |
4359 | /* |
4360 | * Create the metadata for the application. This returns gracefully if a | |
4361 | * metadata was already set for the session. | |
4362 | */ | |
ad7a9107 | 4363 | ret = create_ust_app_metadata(ua_sess, app, usess->consumer); |
421cb601 | 4364 | if (ret < 0) { |
d0b96690 | 4365 | goto error_unlock; |
421cb601 | 4366 | } |
48842b30 | 4367 | |
840cb59c | 4368 | health_code_update(); |
86acf0da | 4369 | |
8be98f9a | 4370 | skip_setup: |
a945cdc7 | 4371 | /* This starts the UST tracing */ |
fb45065e | 4372 | pthread_mutex_lock(&app->sock_lock); |
852d0037 | 4373 | ret = ustctl_start_session(app->sock, ua_sess->handle); |
fb45065e | 4374 | pthread_mutex_unlock(&app->sock_lock); |
421cb601 | 4375 | if (ret < 0) { |
ffe60014 DG |
4376 | if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) { |
4377 | ERR("Error starting tracing for app pid: %d (ret: %d)", | |
4378 | app->pid, ret); | |
4379 | } else { | |
4380 | DBG("UST app start session failed. Application is dead."); | |
3757b385 DG |
4381 | /* |
4382 | * This is normal behavior, an application can die during the | |
4383 | * creation process. Don't report an error so the execution can | |
4384 | * continue normally. | |
4385 | */ | |
4386 | pthread_mutex_unlock(&ua_sess->lock); | |
4387 | goto end; | |
ffe60014 | 4388 | } |
d0b96690 | 4389 | goto error_unlock; |
421cb601 | 4390 | } |
5b4a0ec0 | 4391 | |
55c3953d DG |
4392 | /* Indicate that the session has been started once */ |
4393 | ua_sess->started = 1; | |
b0a1c741 | 4394 | ua_sess->enabled = 1; |
55c3953d | 4395 | |
d0b96690 DG |
4396 | pthread_mutex_unlock(&ua_sess->lock); |
4397 | ||
840cb59c | 4398 | health_code_update(); |
86acf0da | 4399 | |
421cb601 | 4400 | /* Quiescent wait after starting trace */ |
fb45065e | 4401 | pthread_mutex_lock(&app->sock_lock); |
ffe60014 | 4402 | ret = ustctl_wait_quiescent(app->sock); |
fb45065e | 4403 | pthread_mutex_unlock(&app->sock_lock); |
ffe60014 DG |
4404 | if (ret < 0 && ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) { |
4405 | ERR("UST app wait quiescent failed for app pid %d ret %d", | |
4406 | app->pid, ret); | |
4407 | } | |
48842b30 | 4408 | |
e0c7ec2b DG |
4409 | end: |
4410 | rcu_read_unlock(); | |
840cb59c | 4411 | health_code_update(); |
421cb601 | 4412 | return 0; |
48842b30 | 4413 | |
d0b96690 DG |
4414 | error_unlock: |
4415 | pthread_mutex_unlock(&ua_sess->lock); | |
509cbaf8 | 4416 | rcu_read_unlock(); |
840cb59c | 4417 | health_code_update(); |
421cb601 DG |
4418 | return -1; |
4419 | } | |
48842b30 | 4420 | |
8be98f9a MD |
4421 | /* |
4422 | * Stop tracing for a specific UST session and app. | |
4423 | */ | |
b34cbebf | 4424 | static |
8be98f9a MD |
4425 | int ust_app_stop_trace(struct ltt_ust_session *usess, struct ust_app *app) |
4426 | { | |
4427 | int ret = 0; | |
4428 | struct ust_app_session *ua_sess; | |
7972aab2 | 4429 | struct ust_registry_session *registry; |
8be98f9a | 4430 | |
852d0037 | 4431 | DBG("Stopping tracing for ust app pid %d", app->pid); |
8be98f9a MD |
4432 | |
4433 | rcu_read_lock(); | |
4434 | ||
e0c7ec2b | 4435 | if (!app->compatible) { |
d88aee68 | 4436 | goto end_no_session; |
e0c7ec2b DG |
4437 | } |
4438 | ||
8be98f9a MD |
4439 | ua_sess = lookup_session_by_app(usess, app); |
4440 | if (ua_sess == NULL) { | |
d88aee68 | 4441 | goto end_no_session; |
8be98f9a MD |
4442 | } |
4443 | ||
d88aee68 DG |
4444 | pthread_mutex_lock(&ua_sess->lock); |
4445 | ||
b161602a MD |
4446 | if (ua_sess->deleted) { |
4447 | pthread_mutex_unlock(&ua_sess->lock); | |
4448 | goto end_no_session; | |
4449 | } | |
4450 | ||
9bc07046 DG |
4451 | /* |
4452 | * If started = 0, it means that stop trace has been called for a session | |
c45536e1 DG |
4453 | * that was never started. It's possible since we can have a fail start |
4454 | * from either the application manager thread or the command thread. Simply | |
4455 | * indicate that this is a stop error. | |
9bc07046 | 4456 | */ |
f9dfc3d9 | 4457 | if (!ua_sess->started) { |
c45536e1 DG |
4458 | goto error_rcu_unlock; |
4459 | } | |
7db205b5 | 4460 | |
840cb59c | 4461 | health_code_update(); |
86acf0da | 4462 | |
9d6c7d3f | 4463 | /* This inhibits UST tracing */ |
fb45065e | 4464 | pthread_mutex_lock(&app->sock_lock); |
852d0037 | 4465 | ret = ustctl_stop_session(app->sock, ua_sess->handle); |
fb45065e | 4466 | pthread_mutex_unlock(&app->sock_lock); |
9d6c7d3f | 4467 | if (ret < 0) { |
ffe60014 DG |
4468 | if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) { |
4469 | ERR("Error stopping tracing for app pid: %d (ret: %d)", | |
4470 | app->pid, ret); | |
4471 | } else { | |
4472 | DBG("UST app stop session failed. Application is dead."); | |
3757b385 DG |
4473 | /* |
4474 | * This is normal behavior, an application can die during the | |
4475 | * creation process. Don't report an error so the execution can | |
4476 | * continue normally. | |
4477 | */ | |
4478 | goto end_unlock; | |
ffe60014 | 4479 | } |
9d6c7d3f DG |
4480 | goto error_rcu_unlock; |
4481 | } | |
4482 | ||
840cb59c | 4483 | health_code_update(); |
b0a1c741 | 4484 | ua_sess->enabled = 0; |
86acf0da | 4485 | |
9d6c7d3f | 4486 | /* Quiescent wait after stopping trace */ |
fb45065e | 4487 | pthread_mutex_lock(&app->sock_lock); |
ffe60014 | 4488 | ret = ustctl_wait_quiescent(app->sock); |
fb45065e | 4489 | pthread_mutex_unlock(&app->sock_lock); |
ffe60014 DG |
4490 | if (ret < 0 && ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) { |
4491 | ERR("UST app wait quiescent failed for app pid %d ret %d", | |
4492 | app->pid, ret); | |
4493 | } | |
9d6c7d3f | 4494 | |
840cb59c | 4495 | health_code_update(); |
86acf0da | 4496 | |
b34cbebf | 4497 | registry = get_session_registry(ua_sess); |
fad1ed2f JR |
4498 | |
4499 | /* The UST app session is held registry shall not be null. */ | |
b34cbebf | 4500 | assert(registry); |
1b532a60 | 4501 | |
ce34fcd0 MD |
4502 | /* Push metadata for application before freeing the application. */ |
4503 | (void) push_metadata(registry, ua_sess->consumer); | |
b34cbebf | 4504 | |
3757b385 | 4505 | end_unlock: |
b34cbebf MD |
4506 | pthread_mutex_unlock(&ua_sess->lock); |
4507 | end_no_session: | |
4508 | rcu_read_unlock(); | |
4509 | health_code_update(); | |
4510 | return 0; | |
4511 | ||
4512 | error_rcu_unlock: | |
4513 | pthread_mutex_unlock(&ua_sess->lock); | |
4514 | rcu_read_unlock(); | |
4515 | health_code_update(); | |
4516 | return -1; | |
4517 | } | |
4518 | ||
b34cbebf | 4519 | static |
c4b88406 MD |
4520 | int ust_app_flush_app_session(struct ust_app *app, |
4521 | struct ust_app_session *ua_sess) | |
b34cbebf | 4522 | { |
c4b88406 | 4523 | int ret, retval = 0; |
b34cbebf | 4524 | struct lttng_ht_iter iter; |
b34cbebf | 4525 | struct ust_app_channel *ua_chan; |
c4b88406 | 4526 | struct consumer_socket *socket; |
b34cbebf | 4527 | |
c4b88406 | 4528 | DBG("Flushing app session buffers for ust app pid %d", app->pid); |
b34cbebf MD |
4529 | |
4530 | rcu_read_lock(); | |
4531 | ||
4532 | if (!app->compatible) { | |
c4b88406 | 4533 | goto end_not_compatible; |
b34cbebf MD |
4534 | } |
4535 | ||
4536 | pthread_mutex_lock(&ua_sess->lock); | |
4537 | ||
b161602a MD |
4538 | if (ua_sess->deleted) { |
4539 | goto end_deleted; | |
4540 | } | |
4541 | ||
b34cbebf MD |
4542 | health_code_update(); |
4543 | ||
9d6c7d3f | 4544 | /* Flushing buffers */ |
c4b88406 MD |
4545 | socket = consumer_find_socket_by_bitness(app->bits_per_long, |
4546 | ua_sess->consumer); | |
ce34fcd0 MD |
4547 | |
4548 | /* Flush buffers and push metadata. */ | |
4549 | switch (ua_sess->buffer_type) { | |
4550 | case LTTNG_BUFFER_PER_PID: | |
4551 | cds_lfht_for_each_entry(ua_sess->channels->ht, &iter.iter, ua_chan, | |
4552 | node.node) { | |
4553 | health_code_update(); | |
ce34fcd0 MD |
4554 | ret = consumer_flush_channel(socket, ua_chan->key); |
4555 | if (ret) { | |
4556 | ERR("Error flushing consumer channel"); | |
4557 | retval = -1; | |
4558 | continue; | |
4559 | } | |
8be98f9a | 4560 | } |
ce34fcd0 MD |
4561 | break; |
4562 | case LTTNG_BUFFER_PER_UID: | |
4563 | default: | |
4564 | assert(0); | |
4565 | break; | |
8be98f9a | 4566 | } |
8be98f9a | 4567 | |
840cb59c | 4568 | health_code_update(); |
86acf0da | 4569 | |
b161602a | 4570 | end_deleted: |
d88aee68 | 4571 | pthread_mutex_unlock(&ua_sess->lock); |
ce34fcd0 | 4572 | |
c4b88406 MD |
4573 | end_not_compatible: |
4574 | rcu_read_unlock(); | |
4575 | health_code_update(); | |
4576 | return retval; | |
4577 | } | |
4578 | ||
4579 | /* | |
ce34fcd0 MD |
4580 | * Flush buffers for all applications for a specific UST session. |
4581 | * Called with UST session lock held. | |
c4b88406 MD |
4582 | */ |
4583 | static | |
ce34fcd0 | 4584 | int ust_app_flush_session(struct ltt_ust_session *usess) |
c4b88406 MD |
4585 | |
4586 | { | |
99b1411c | 4587 | int ret = 0; |
c4b88406 | 4588 | |
ce34fcd0 | 4589 | DBG("Flushing session buffers for all ust apps"); |
c4b88406 MD |
4590 | |
4591 | rcu_read_lock(); | |
4592 | ||
ce34fcd0 MD |
4593 | /* Flush buffers and push metadata. */ |
4594 | switch (usess->buffer_type) { | |
4595 | case LTTNG_BUFFER_PER_UID: | |
4596 | { | |
4597 | struct buffer_reg_uid *reg; | |
4598 | struct lttng_ht_iter iter; | |
4599 | ||
4600 | /* Flush all per UID buffers associated to that session. */ | |
4601 | cds_list_for_each_entry(reg, &usess->buffer_reg_uid_list, lnode) { | |
4602 | struct ust_registry_session *ust_session_reg; | |
4603 | struct buffer_reg_channel *reg_chan; | |
4604 | struct consumer_socket *socket; | |
4605 | ||
4606 | /* Get consumer socket to use to push the metadata.*/ | |
4607 | socket = consumer_find_socket_by_bitness(reg->bits_per_long, | |
4608 | usess->consumer); | |
4609 | if (!socket) { | |
4610 | /* Ignore request if no consumer is found for the session. */ | |
4611 | continue; | |
4612 | } | |
4613 | ||
4614 | cds_lfht_for_each_entry(reg->registry->channels->ht, &iter.iter, | |
4615 | reg_chan, node.node) { | |
4616 | /* | |
4617 | * The following call will print error values so the return | |
4618 | * code is of little importance because whatever happens, we | |
4619 | * have to try them all. | |
4620 | */ | |
4621 | (void) consumer_flush_channel(socket, reg_chan->consumer_key); | |
4622 | } | |
4623 | ||
4624 | ust_session_reg = reg->registry->reg.ust; | |
4625 | /* Push metadata. */ | |
4626 | (void) push_metadata(ust_session_reg, usess->consumer); | |
4627 | } | |
ce34fcd0 MD |
4628 | break; |
4629 | } | |
4630 | case LTTNG_BUFFER_PER_PID: | |
4631 | { | |
4632 | struct ust_app_session *ua_sess; | |
4633 | struct lttng_ht_iter iter; | |
4634 | struct ust_app *app; | |
4635 | ||
4636 | cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) { | |
4637 | ua_sess = lookup_session_by_app(usess, app); | |
4638 | if (ua_sess == NULL) { | |
4639 | continue; | |
4640 | } | |
4641 | (void) ust_app_flush_app_session(app, ua_sess); | |
4642 | } | |
4643 | break; | |
4644 | } | |
4645 | default: | |
99b1411c | 4646 | ret = -1; |
ce34fcd0 MD |
4647 | assert(0); |
4648 | break; | |
c4b88406 | 4649 | } |
c4b88406 | 4650 | |
7db205b5 | 4651 | rcu_read_unlock(); |
840cb59c | 4652 | health_code_update(); |
c4b88406 | 4653 | return ret; |
8be98f9a MD |
4654 | } |
4655 | ||
0dd01979 MD |
4656 | static |
4657 | int ust_app_clear_quiescent_app_session(struct ust_app *app, | |
4658 | struct ust_app_session *ua_sess) | |
4659 | { | |
4660 | int ret = 0; | |
4661 | struct lttng_ht_iter iter; | |
4662 | struct ust_app_channel *ua_chan; | |
4663 | struct consumer_socket *socket; | |
4664 | ||
4665 | DBG("Clearing stream quiescent state for ust app pid %d", app->pid); | |
4666 | ||
4667 | rcu_read_lock(); | |
4668 | ||
4669 | if (!app->compatible) { | |
4670 | goto end_not_compatible; | |
4671 | } | |
4672 | ||
4673 | pthread_mutex_lock(&ua_sess->lock); | |
4674 | ||
4675 | if (ua_sess->deleted) { | |
4676 | goto end_unlock; | |
4677 | } | |
4678 | ||
4679 | health_code_update(); | |
4680 | ||
4681 | socket = consumer_find_socket_by_bitness(app->bits_per_long, | |
4682 | ua_sess->consumer); | |
4683 | if (!socket) { | |
4684 | ERR("Failed to find consumer (%" PRIu32 ") socket", | |
4685 | app->bits_per_long); | |
4686 | ret = -1; | |
4687 | goto end_unlock; | |
4688 | } | |
4689 | ||
4690 | /* Clear quiescent state. */ | |
4691 | switch (ua_sess->buffer_type) { | |
4692 | case LTTNG_BUFFER_PER_PID: | |
4693 | cds_lfht_for_each_entry(ua_sess->channels->ht, &iter.iter, | |
4694 | ua_chan, node.node) { | |
4695 | health_code_update(); | |
4696 | ret = consumer_clear_quiescent_channel(socket, | |
4697 | ua_chan->key); | |
4698 | if (ret) { | |
4699 | ERR("Error clearing quiescent state for consumer channel"); | |
4700 | ret = -1; | |
4701 | continue; | |
4702 | } | |
4703 | } | |
4704 | break; | |
4705 | case LTTNG_BUFFER_PER_UID: | |
4706 | default: | |
4707 | assert(0); | |
4708 | ret = -1; | |
4709 | break; | |
4710 | } | |
4711 | ||
4712 | health_code_update(); | |
4713 | ||
4714 | end_unlock: | |
4715 | pthread_mutex_unlock(&ua_sess->lock); | |
4716 | ||
4717 | end_not_compatible: | |
4718 | rcu_read_unlock(); | |
4719 | health_code_update(); | |
4720 | return ret; | |
4721 | } | |
4722 | ||
4723 | /* | |
4724 | * Clear quiescent state in each stream for all applications for a | |
4725 | * specific UST session. | |
4726 | * Called with UST session lock held. | |
4727 | */ | |
4728 | static | |
4729 | int ust_app_clear_quiescent_session(struct ltt_ust_session *usess) | |
4730 | ||
4731 | { | |
4732 | int ret = 0; | |
4733 | ||
4734 | DBG("Clearing stream quiescent state for all ust apps"); | |
4735 | ||
4736 | rcu_read_lock(); | |
4737 | ||
4738 | switch (usess->buffer_type) { | |
4739 | case LTTNG_BUFFER_PER_UID: | |
4740 | { | |
4741 | struct lttng_ht_iter iter; | |
4742 | struct buffer_reg_uid *reg; | |
4743 | ||
4744 | /* | |
4745 | * Clear quiescent for all per UID buffers associated to | |
4746 | * that session. | |
4747 | */ | |
4748 | cds_list_for_each_entry(reg, &usess->buffer_reg_uid_list, lnode) { | |
4749 | struct consumer_socket *socket; | |
4750 | struct buffer_reg_channel *reg_chan; | |
4751 | ||
4752 | /* Get associated consumer socket.*/ | |
4753 | socket = consumer_find_socket_by_bitness( | |
4754 | reg->bits_per_long, usess->consumer); | |
4755 | if (!socket) { | |
4756 | /* | |
4757 | * Ignore request if no consumer is found for | |
4758 | * the session. | |
4759 | */ | |
4760 | continue; | |
4761 | } | |
4762 | ||
4763 | cds_lfht_for_each_entry(reg->registry->channels->ht, | |
4764 | &iter.iter, reg_chan, node.node) { | |
4765 | /* | |
4766 | * The following call will print error values so | |
4767 | * the return code is of little importance | |
4768 | * because whatever happens, we have to try them | |
4769 | * all. | |
4770 | */ | |
4771 | (void) consumer_clear_quiescent_channel(socket, | |
4772 | reg_chan->consumer_key); | |
4773 | } | |
4774 | } | |
4775 | break; | |
4776 | } | |
4777 | case LTTNG_BUFFER_PER_PID: | |
4778 | { | |
4779 | struct ust_app_session *ua_sess; | |
4780 | struct lttng_ht_iter iter; | |
4781 | struct ust_app *app; | |
4782 | ||
4783 | cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, | |
4784 | pid_n.node) { | |
4785 | ua_sess = lookup_session_by_app(usess, app); | |
4786 | if (ua_sess == NULL) { | |
4787 | continue; | |
4788 | } | |
4789 | (void) ust_app_clear_quiescent_app_session(app, | |
4790 | ua_sess); | |
4791 | } | |
4792 | break; | |
4793 | } | |
4794 | default: | |
4795 | ret = -1; | |
4796 | assert(0); | |
4797 | break; | |
4798 | } | |
4799 | ||
4800 | rcu_read_unlock(); | |
4801 | health_code_update(); | |
4802 | return ret; | |
4803 | } | |
4804 | ||
84cd17c6 MD |
4805 | /* |
4806 | * Destroy a specific UST session in apps. | |
4807 | */ | |
3353de95 | 4808 | static int destroy_trace(struct ltt_ust_session *usess, struct ust_app *app) |
84cd17c6 | 4809 | { |
ffe60014 | 4810 | int ret; |
84cd17c6 | 4811 | struct ust_app_session *ua_sess; |
bec39940 | 4812 | struct lttng_ht_iter iter; |
d9bf3ca4 | 4813 | struct lttng_ht_node_u64 *node; |
84cd17c6 | 4814 | |
852d0037 | 4815 | DBG("Destroy tracing for ust app pid %d", app->pid); |
84cd17c6 MD |
4816 | |
4817 | rcu_read_lock(); | |
4818 | ||
e0c7ec2b DG |
4819 | if (!app->compatible) { |
4820 | goto end; | |
4821 | } | |
4822 | ||
84cd17c6 | 4823 | __lookup_session_by_app(usess, app, &iter); |
d9bf3ca4 | 4824 | node = lttng_ht_iter_get_node_u64(&iter); |
84cd17c6 | 4825 | if (node == NULL) { |
d42f20df DG |
4826 | /* Session is being or is deleted. */ |
4827 | goto end; | |
84cd17c6 MD |
4828 | } |
4829 | ua_sess = caa_container_of(node, struct ust_app_session, node); | |
c4a1715b | 4830 | |
840cb59c | 4831 | health_code_update(); |
d0b96690 | 4832 | destroy_app_session(app, ua_sess); |
84cd17c6 | 4833 | |
840cb59c | 4834 | health_code_update(); |
7db205b5 | 4835 | |
84cd17c6 | 4836 | /* Quiescent wait after stopping trace */ |
fb45065e | 4837 | pthread_mutex_lock(&app->sock_lock); |
ffe60014 | 4838 | ret = ustctl_wait_quiescent(app->sock); |
fb45065e | 4839 | pthread_mutex_unlock(&app->sock_lock); |
ffe60014 DG |
4840 | if (ret < 0 && ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) { |
4841 | ERR("UST app wait quiescent failed for app pid %d ret %d", | |
4842 | app->pid, ret); | |
4843 | } | |
e0c7ec2b DG |
4844 | end: |
4845 | rcu_read_unlock(); | |
840cb59c | 4846 | health_code_update(); |
84cd17c6 | 4847 | return 0; |
84cd17c6 MD |
4848 | } |
4849 | ||
5b4a0ec0 DG |
4850 | /* |
4851 | * Start tracing for the UST session. | |
4852 | */ | |
421cb601 DG |
4853 | int ust_app_start_trace_all(struct ltt_ust_session *usess) |
4854 | { | |
bec39940 | 4855 | struct lttng_ht_iter iter; |
421cb601 | 4856 | struct ust_app *app; |
48842b30 | 4857 | |
421cb601 DG |
4858 | DBG("Starting all UST traces"); |
4859 | ||
bb2452c8 MD |
4860 | /* |
4861 | * Even though the start trace might fail, flag this session active so | |
4862 | * other application coming in are started by default. | |
4863 | */ | |
4864 | usess->active = 1; | |
4865 | ||
421cb601 | 4866 | rcu_read_lock(); |
421cb601 | 4867 | |
0dd01979 MD |
4868 | /* |
4869 | * In a start-stop-start use-case, we need to clear the quiescent state | |
4870 | * of each channel set by the prior stop command, thus ensuring that a | |
4871 | * following stop or destroy is sure to grab a timestamp_end near those | |
4872 | * operations, even if the packet is empty. | |
4873 | */ | |
4874 | (void) ust_app_clear_quiescent_session(usess); | |
4875 | ||
0498a00c MD |
4876 | cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) { |
4877 | ust_app_global_update(usess, app); | |
4878 | } | |
4879 | ||
48842b30 DG |
4880 | rcu_read_unlock(); |
4881 | ||
4882 | return 0; | |
4883 | } | |
487cf67c | 4884 | |
8be98f9a MD |
4885 | /* |
4886 | * Start tracing for the UST session. | |
ce34fcd0 | 4887 | * Called with UST session lock held. |
8be98f9a MD |
4888 | */ |
4889 | int ust_app_stop_trace_all(struct ltt_ust_session *usess) | |
4890 | { | |
4891 | int ret = 0; | |
bec39940 | 4892 | struct lttng_ht_iter iter; |
8be98f9a MD |
4893 | struct ust_app *app; |
4894 | ||
4895 | DBG("Stopping all UST traces"); | |
4896 | ||
bb2452c8 MD |
4897 | /* |
4898 | * Even though the stop trace might fail, flag this session inactive so | |
4899 | * other application coming in are not started by default. | |
4900 | */ | |
4901 | usess->active = 0; | |
4902 | ||
8be98f9a MD |
4903 | rcu_read_lock(); |
4904 | ||
b34cbebf MD |
4905 | cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) { |
4906 | ret = ust_app_stop_trace(usess, app); | |
4907 | if (ret < 0) { | |
4908 | /* Continue to next apps even on error */ | |
4909 | continue; | |
4910 | } | |
4911 | } | |
4912 | ||
ce34fcd0 | 4913 | (void) ust_app_flush_session(usess); |
8be98f9a MD |
4914 | |
4915 | rcu_read_unlock(); | |
4916 | ||
4917 | return 0; | |
4918 | } | |
4919 | ||
84cd17c6 MD |
4920 | /* |
4921 | * Destroy app UST session. | |
4922 | */ | |
4923 | int ust_app_destroy_trace_all(struct ltt_ust_session *usess) | |
4924 | { | |
4925 | int ret = 0; | |
bec39940 | 4926 | struct lttng_ht_iter iter; |
84cd17c6 MD |
4927 | struct ust_app *app; |
4928 | ||
4929 | DBG("Destroy all UST traces"); | |
4930 | ||
4931 | rcu_read_lock(); | |
4932 | ||
852d0037 | 4933 | cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) { |
3353de95 | 4934 | ret = destroy_trace(usess, app); |
84cd17c6 MD |
4935 | if (ret < 0) { |
4936 | /* Continue to next apps even on error */ | |
4937 | continue; | |
4938 | } | |
4939 | } | |
4940 | ||
4941 | rcu_read_unlock(); | |
4942 | ||
4943 | return 0; | |
4944 | } | |
4945 | ||
88e3c2f5 | 4946 | /* The ua_sess lock must be held by the caller. */ |
a9ad0c8f | 4947 | static |
88e3c2f5 JG |
4948 | int find_or_create_ust_app_channel( |
4949 | struct ltt_ust_session *usess, | |
4950 | struct ust_app_session *ua_sess, | |
4951 | struct ust_app *app, | |
4952 | struct ltt_ust_channel *uchan, | |
4953 | struct ust_app_channel **ua_chan) | |
487cf67c | 4954 | { |
55c54cce | 4955 | int ret = 0; |
88e3c2f5 JG |
4956 | struct lttng_ht_iter iter; |
4957 | struct lttng_ht_node_str *ua_chan_node; | |
4958 | ||
4959 | lttng_ht_lookup(ua_sess->channels, (void *) uchan->name, &iter); | |
4960 | ua_chan_node = lttng_ht_iter_get_node_str(&iter); | |
4961 | if (ua_chan_node) { | |
4962 | *ua_chan = caa_container_of(ua_chan_node, | |
4963 | struct ust_app_channel, node); | |
4964 | goto end; | |
4965 | } | |
4966 | ||
4967 | ret = ust_app_channel_create(usess, ua_sess, uchan, app, ua_chan); | |
4968 | if (ret) { | |
4969 | goto end; | |
4970 | } | |
4971 | end: | |
4972 | return ret; | |
4973 | } | |
4974 | ||
4975 | static | |
4976 | int ust_app_channel_synchronize_event(struct ust_app_channel *ua_chan, | |
4977 | struct ltt_ust_event *uevent, struct ust_app_session *ua_sess, | |
4978 | struct ust_app *app) | |
4979 | { | |
4980 | int ret = 0; | |
4981 | struct ust_app_event *ua_event = NULL; | |
4982 | ||
4983 | ua_event = find_ust_app_event(ua_chan->events, uevent->attr.name, | |
4984 | uevent->filter, uevent->attr.loglevel, uevent->exclusion); | |
4985 | if (!ua_event) { | |
4986 | ret = create_ust_app_event(ua_sess, ua_chan, uevent, app); | |
4987 | if (ret < 0) { | |
4988 | goto end; | |
4989 | } | |
4990 | } else { | |
4991 | if (ua_event->enabled != uevent->enabled) { | |
4992 | ret = uevent->enabled ? | |
4993 | enable_ust_app_event(ua_sess, ua_event, app) : | |
4994 | disable_ust_app_event(ua_sess, ua_event, app); | |
4995 | } | |
4996 | } | |
4997 | ||
4998 | end: | |
4999 | return ret; | |
5000 | } | |
5001 | ||
5002 | /* | |
5003 | * The caller must ensure that the application is compatible and is tracked | |
2a3a1a2b | 5004 | * by the process attribute trackers. |
88e3c2f5 JG |
5005 | */ |
5006 | static | |
5007 | void ust_app_synchronize(struct ltt_ust_session *usess, | |
5008 | struct ust_app *app) | |
5009 | { | |
5010 | int ret = 0; | |
5011 | struct cds_lfht_iter uchan_iter; | |
5012 | struct ltt_ust_channel *uchan; | |
3d8ca23b | 5013 | struct ust_app_session *ua_sess = NULL; |
1f3580c7 | 5014 | |
88e3c2f5 JG |
5015 | /* |
5016 | * The application's configuration should only be synchronized for | |
5017 | * active sessions. | |
5018 | */ | |
5019 | assert(usess->active); | |
5020 | ||
5021 | ret = find_or_create_ust_app_session(usess, app, &ua_sess, NULL); | |
3d8ca23b DG |
5022 | if (ret < 0) { |
5023 | /* Tracer is probably gone or ENOMEM. */ | |
487cf67c DG |
5024 | goto error; |
5025 | } | |
3d8ca23b | 5026 | assert(ua_sess); |
487cf67c | 5027 | |
d0b96690 | 5028 | pthread_mutex_lock(&ua_sess->lock); |
b161602a MD |
5029 | if (ua_sess->deleted) { |
5030 | pthread_mutex_unlock(&ua_sess->lock); | |
5031 | goto end; | |
5032 | } | |
5033 | ||
88e3c2f5 JG |
5034 | rcu_read_lock(); |
5035 | cds_lfht_for_each_entry(usess->domain_global.channels->ht, &uchan_iter, | |
5036 | uchan, node.node) { | |
5037 | struct ust_app_channel *ua_chan; | |
5038 | struct cds_lfht_iter uevent_iter; | |
5039 | struct ltt_ust_event *uevent; | |
487cf67c | 5040 | |
31746f93 | 5041 | /* |
88e3c2f5 JG |
5042 | * Search for a matching ust_app_channel. If none is found, |
5043 | * create it. Creating the channel will cause the ua_chan | |
5044 | * structure to be allocated, the channel buffers to be | |
5045 | * allocated (if necessary) and sent to the application, and | |
5046 | * all enabled contexts will be added to the channel. | |
31746f93 | 5047 | */ |
88e3c2f5 JG |
5048 | ret = find_or_create_ust_app_channel(usess, ua_sess, |
5049 | app, uchan, &ua_chan); | |
5050 | if (ret) { | |
5051 | /* Tracer is probably gone or ENOMEM. */ | |
5052 | goto error_unlock; | |
727d5404 DG |
5053 | } |
5054 | ||
88e3c2f5 JG |
5055 | if (!ua_chan) { |
5056 | /* ua_chan will be NULL for the metadata channel */ | |
5057 | continue; | |
5058 | } | |
727d5404 | 5059 | |
88e3c2f5 | 5060 | cds_lfht_for_each_entry(uchan->events->ht, &uevent_iter, uevent, |
bec39940 | 5061 | node.node) { |
88e3c2f5 JG |
5062 | ret = ust_app_channel_synchronize_event(ua_chan, |
5063 | uevent, ua_sess, app); | |
5064 | if (ret) { | |
d0b96690 | 5065 | goto error_unlock; |
487cf67c | 5066 | } |
36dc12cc | 5067 | } |
d0b96690 | 5068 | |
88e3c2f5 JG |
5069 | if (ua_chan->enabled != uchan->enabled) { |
5070 | ret = uchan->enabled ? | |
5071 | enable_ust_app_channel(ua_sess, uchan, app) : | |
5072 | disable_ust_app_channel(ua_sess, ua_chan, app); | |
5073 | if (ret) { | |
5074 | goto error_unlock; | |
5075 | } | |
5076 | } | |
36dc12cc | 5077 | } |
88e3c2f5 | 5078 | rcu_read_unlock(); |
0498a00c | 5079 | |
a9ad0c8f | 5080 | end: |
88e3c2f5 | 5081 | pthread_mutex_unlock(&ua_sess->lock); |
ffe60014 | 5082 | /* Everything went well at this point. */ |
ffe60014 DG |
5083 | return; |
5084 | ||
d0b96690 | 5085 | error_unlock: |
88e3c2f5 | 5086 | rcu_read_unlock(); |
d0b96690 | 5087 | pthread_mutex_unlock(&ua_sess->lock); |
487cf67c | 5088 | error: |
ffe60014 | 5089 | if (ua_sess) { |
d0b96690 | 5090 | destroy_app_session(app, ua_sess); |
ffe60014 | 5091 | } |
487cf67c DG |
5092 | return; |
5093 | } | |
55cc08a6 | 5094 | |
a9ad0c8f MD |
5095 | static |
5096 | void ust_app_global_destroy(struct ltt_ust_session *usess, struct ust_app *app) | |
5097 | { | |
5098 | struct ust_app_session *ua_sess; | |
5099 | ||
5100 | ua_sess = lookup_session_by_app(usess, app); | |
5101 | if (ua_sess == NULL) { | |
5102 | return; | |
5103 | } | |
5104 | destroy_app_session(app, ua_sess); | |
5105 | } | |
5106 | ||
5107 | /* | |
5108 | * Add channels/events from UST global domain to registered apps at sock. | |
5109 | * | |
5110 | * Called with session lock held. | |
5111 | * Called with RCU read-side lock held. | |
5112 | */ | |
5113 | void ust_app_global_update(struct ltt_ust_session *usess, struct ust_app *app) | |
5114 | { | |
5115 | assert(usess); | |
88e3c2f5 | 5116 | assert(usess->active); |
a9ad0c8f MD |
5117 | |
5118 | DBG2("UST app global update for app sock %d for session id %" PRIu64, | |
5119 | app->sock, usess->id); | |
5120 | ||
5121 | if (!app->compatible) { | |
5122 | return; | |
5123 | } | |
159b042f JG |
5124 | if (trace_ust_id_tracker_lookup(LTTNG_PROCESS_ATTR_VIRTUAL_PROCESS_ID, |
5125 | usess, app->pid) && | |
55c9e7ca | 5126 | trace_ust_id_tracker_lookup( |
159b042f JG |
5127 | LTTNG_PROCESS_ATTR_VIRTUAL_USER_ID, |
5128 | usess, app->uid) && | |
55c9e7ca | 5129 | trace_ust_id_tracker_lookup( |
159b042f JG |
5130 | LTTNG_PROCESS_ATTR_VIRTUAL_GROUP_ID, |
5131 | usess, app->gid)) { | |
88e3c2f5 JG |
5132 | /* |
5133 | * Synchronize the application's internal tracing configuration | |
5134 | * and start tracing. | |
5135 | */ | |
5136 | ust_app_synchronize(usess, app); | |
5137 | ust_app_start_trace(usess, app); | |
a9ad0c8f MD |
5138 | } else { |
5139 | ust_app_global_destroy(usess, app); | |
5140 | } | |
5141 | } | |
5142 | ||
5143 | /* | |
5144 | * Called with session lock held. | |
5145 | */ | |
5146 | void ust_app_global_update_all(struct ltt_ust_session *usess) | |
5147 | { | |
5148 | struct lttng_ht_iter iter; | |
5149 | struct ust_app *app; | |
5150 | ||
5151 | rcu_read_lock(); | |
5152 | cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) { | |
5153 | ust_app_global_update(usess, app); | |
5154 | } | |
5155 | rcu_read_unlock(); | |
5156 | } | |
5157 | ||
55cc08a6 DG |
5158 | /* |
5159 | * Add context to a specific channel for global UST domain. | |
5160 | */ | |
5161 | int ust_app_add_ctx_channel_glb(struct ltt_ust_session *usess, | |
5162 | struct ltt_ust_channel *uchan, struct ltt_ust_context *uctx) | |
5163 | { | |
5164 | int ret = 0; | |
bec39940 DG |
5165 | struct lttng_ht_node_str *ua_chan_node; |
5166 | struct lttng_ht_iter iter, uiter; | |
55cc08a6 DG |
5167 | struct ust_app_channel *ua_chan = NULL; |
5168 | struct ust_app_session *ua_sess; | |
5169 | struct ust_app *app; | |
5170 | ||
88e3c2f5 | 5171 | assert(usess->active); |
0498a00c | 5172 | |
55cc08a6 | 5173 | rcu_read_lock(); |
852d0037 | 5174 | cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) { |
e0c7ec2b DG |
5175 | if (!app->compatible) { |
5176 | /* | |
5177 | * TODO: In time, we should notice the caller of this error by | |
5178 | * telling him that this is a version error. | |
5179 | */ | |
5180 | continue; | |
5181 | } | |
55cc08a6 DG |
5182 | ua_sess = lookup_session_by_app(usess, app); |
5183 | if (ua_sess == NULL) { | |
5184 | continue; | |
5185 | } | |
5186 | ||
d0b96690 | 5187 | pthread_mutex_lock(&ua_sess->lock); |
b161602a MD |
5188 | |
5189 | if (ua_sess->deleted) { | |
5190 | pthread_mutex_unlock(&ua_sess->lock); | |
5191 | continue; | |
5192 | } | |
5193 | ||
55cc08a6 | 5194 | /* Lookup channel in the ust app session */ |
bec39940 DG |
5195 | lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &uiter); |
5196 | ua_chan_node = lttng_ht_iter_get_node_str(&uiter); | |
55cc08a6 | 5197 | if (ua_chan_node == NULL) { |
d0b96690 | 5198 | goto next_app; |
55cc08a6 DG |
5199 | } |
5200 | ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, | |
5201 | node); | |
c9edf082 | 5202 | ret = create_ust_app_channel_context(ua_chan, &uctx->ctx, app); |
55cc08a6 | 5203 | if (ret < 0) { |
d0b96690 | 5204 | goto next_app; |
55cc08a6 | 5205 | } |
d0b96690 DG |
5206 | next_app: |
5207 | pthread_mutex_unlock(&ua_sess->lock); | |
55cc08a6 DG |
5208 | } |
5209 | ||
55cc08a6 | 5210 | rcu_read_unlock(); |
76d45b40 DG |
5211 | return ret; |
5212 | } | |
7f79d3a1 | 5213 | |
d0b96690 DG |
5214 | /* |
5215 | * Receive registration and populate the given msg structure. | |
5216 | * | |
5217 | * On success return 0 else a negative value returned by the ustctl call. | |
5218 | */ | |
5219 | int ust_app_recv_registration(int sock, struct ust_register_msg *msg) | |
5220 | { | |
5221 | int ret; | |
5222 | uint32_t pid, ppid, uid, gid; | |
5223 | ||
5224 | assert(msg); | |
5225 | ||
5226 | ret = ustctl_recv_reg_msg(sock, &msg->type, &msg->major, &msg->minor, | |
5227 | &pid, &ppid, &uid, &gid, | |
5228 | &msg->bits_per_long, | |
5229 | &msg->uint8_t_alignment, | |
5230 | &msg->uint16_t_alignment, | |
5231 | &msg->uint32_t_alignment, | |
5232 | &msg->uint64_t_alignment, | |
5233 | &msg->long_alignment, | |
5234 | &msg->byte_order, | |
5235 | msg->name); | |
5236 | if (ret < 0) { | |
5237 | switch (-ret) { | |
5238 | case EPIPE: | |
5239 | case ECONNRESET: | |
5240 | case LTTNG_UST_ERR_EXITING: | |
5241 | DBG3("UST app recv reg message failed. Application died"); | |
5242 | break; | |
5243 | case LTTNG_UST_ERR_UNSUP_MAJOR: | |
5244 | ERR("UST app recv reg unsupported version %d.%d. Supporting %d.%d", | |
5245 | msg->major, msg->minor, LTTNG_UST_ABI_MAJOR_VERSION, | |
5246 | LTTNG_UST_ABI_MINOR_VERSION); | |
5247 | break; | |
5248 | default: | |
5249 | ERR("UST app recv reg message failed with ret %d", ret); | |
5250 | break; | |
5251 | } | |
5252 | goto error; | |
5253 | } | |
5254 | msg->pid = (pid_t) pid; | |
5255 | msg->ppid = (pid_t) ppid; | |
5256 | msg->uid = (uid_t) uid; | |
5257 | msg->gid = (gid_t) gid; | |
5258 | ||
5259 | error: | |
5260 | return ret; | |
5261 | } | |
5262 | ||
10b56aef MD |
5263 | /* |
5264 | * Return a ust app session object using the application object and the | |
5265 | * session object descriptor has a key. If not found, NULL is returned. | |
5266 | * A RCU read side lock MUST be acquired when calling this function. | |
5267 | */ | |
5268 | static struct ust_app_session *find_session_by_objd(struct ust_app *app, | |
5269 | int objd) | |
5270 | { | |
5271 | struct lttng_ht_node_ulong *node; | |
5272 | struct lttng_ht_iter iter; | |
5273 | struct ust_app_session *ua_sess = NULL; | |
5274 | ||
5275 | assert(app); | |
5276 | ||
5277 | lttng_ht_lookup(app->ust_sessions_objd, (void *)((unsigned long) objd), &iter); | |
5278 | node = lttng_ht_iter_get_node_ulong(&iter); | |
5279 | if (node == NULL) { | |
5280 | DBG2("UST app session find by objd %d not found", objd); | |
5281 | goto error; | |
5282 | } | |
5283 | ||
5284 | ua_sess = caa_container_of(node, struct ust_app_session, ust_objd_node); | |
5285 | ||
5286 | error: | |
5287 | return ua_sess; | |
5288 | } | |
5289 | ||
d88aee68 DG |
5290 | /* |
5291 | * Return a ust app channel object using the application object and the channel | |
5292 | * object descriptor has a key. If not found, NULL is returned. A RCU read side | |
5293 | * lock MUST be acquired before calling this function. | |
5294 | */ | |
d0b96690 DG |
5295 | static struct ust_app_channel *find_channel_by_objd(struct ust_app *app, |
5296 | int objd) | |
5297 | { | |
5298 | struct lttng_ht_node_ulong *node; | |
5299 | struct lttng_ht_iter iter; | |
5300 | struct ust_app_channel *ua_chan = NULL; | |
5301 | ||
5302 | assert(app); | |
5303 | ||
5304 | lttng_ht_lookup(app->ust_objd, (void *)((unsigned long) objd), &iter); | |
5305 | node = lttng_ht_iter_get_node_ulong(&iter); | |
5306 | if (node == NULL) { | |
5307 | DBG2("UST app channel find by objd %d not found", objd); | |
5308 | goto error; | |
5309 | } | |
5310 | ||
5311 | ua_chan = caa_container_of(node, struct ust_app_channel, ust_objd_node); | |
5312 | ||
5313 | error: | |
5314 | return ua_chan; | |
5315 | } | |
5316 | ||
d88aee68 DG |
5317 | /* |
5318 | * Reply to a register channel notification from an application on the notify | |
5319 | * socket. The channel metadata is also created. | |
5320 | * | |
5321 | * The session UST registry lock is acquired in this function. | |
5322 | * | |
5323 | * On success 0 is returned else a negative value. | |
5324 | */ | |
8eede835 | 5325 | static int reply_ust_register_channel(int sock, int cobjd, |
d0b96690 DG |
5326 | size_t nr_fields, struct ustctl_field *fields) |
5327 | { | |
5328 | int ret, ret_code = 0; | |
294e218e | 5329 | uint32_t chan_id; |
7972aab2 | 5330 | uint64_t chan_reg_key; |
d0b96690 DG |
5331 | enum ustctl_channel_header type; |
5332 | struct ust_app *app; | |
5333 | struct ust_app_channel *ua_chan; | |
5334 | struct ust_app_session *ua_sess; | |
7972aab2 | 5335 | struct ust_registry_session *registry; |
45893984 | 5336 | struct ust_registry_channel *chan_reg; |
d0b96690 DG |
5337 | |
5338 | rcu_read_lock(); | |
5339 | ||
5340 | /* Lookup application. If not found, there is a code flow error. */ | |
5341 | app = find_app_by_notify_sock(sock); | |
d88aee68 | 5342 | if (!app) { |
fad1ed2f | 5343 | DBG("Application socket %d is being torn down. Abort event notify", |
d88aee68 DG |
5344 | sock); |
5345 | ret = 0; | |
5346 | goto error_rcu_unlock; | |
5347 | } | |
d0b96690 | 5348 | |
4950b860 | 5349 | /* Lookup channel by UST object descriptor. */ |
d0b96690 | 5350 | ua_chan = find_channel_by_objd(app, cobjd); |
4950b860 | 5351 | if (!ua_chan) { |
fad1ed2f | 5352 | DBG("Application channel is being torn down. Abort event notify"); |
4950b860 MD |
5353 | ret = 0; |
5354 | goto error_rcu_unlock; | |
5355 | } | |
5356 | ||
d0b96690 DG |
5357 | assert(ua_chan->session); |
5358 | ua_sess = ua_chan->session; | |
d0b96690 | 5359 | |
7972aab2 DG |
5360 | /* Get right session registry depending on the session buffer type. */ |
5361 | registry = get_session_registry(ua_sess); | |
fad1ed2f JR |
5362 | if (!registry) { |
5363 | DBG("Application session is being torn down. Abort event notify"); | |
5364 | ret = 0; | |
5365 | goto error_rcu_unlock; | |
5366 | }; | |
45893984 | 5367 | |
7972aab2 DG |
5368 | /* Depending on the buffer type, a different channel key is used. */ |
5369 | if (ua_sess->buffer_type == LTTNG_BUFFER_PER_UID) { | |
5370 | chan_reg_key = ua_chan->tracing_channel_id; | |
d0b96690 | 5371 | } else { |
7972aab2 | 5372 | chan_reg_key = ua_chan->key; |
d0b96690 DG |
5373 | } |
5374 | ||
7972aab2 DG |
5375 | pthread_mutex_lock(®istry->lock); |
5376 | ||
5377 | chan_reg = ust_registry_channel_find(registry, chan_reg_key); | |
5378 | assert(chan_reg); | |
5379 | ||
5380 | if (!chan_reg->register_done) { | |
294e218e MD |
5381 | /* |
5382 | * TODO: eventually use the registry event count for | |
5383 | * this channel to better guess header type for per-pid | |
5384 | * buffers. | |
5385 | */ | |
5386 | type = USTCTL_CHANNEL_HEADER_LARGE; | |
7972aab2 DG |
5387 | chan_reg->nr_ctx_fields = nr_fields; |
5388 | chan_reg->ctx_fields = fields; | |
fad1ed2f | 5389 | fields = NULL; |
7972aab2 | 5390 | chan_reg->header_type = type; |
d0b96690 | 5391 | } else { |
7972aab2 DG |
5392 | /* Get current already assigned values. */ |
5393 | type = chan_reg->header_type; | |
d0b96690 | 5394 | } |
7972aab2 DG |
5395 | /* Channel id is set during the object creation. */ |
5396 | chan_id = chan_reg->chan_id; | |
d0b96690 DG |
5397 | |
5398 | /* Append to metadata */ | |
7972aab2 DG |
5399 | if (!chan_reg->metadata_dumped) { |
5400 | ret_code = ust_metadata_channel_statedump(registry, chan_reg); | |
d0b96690 DG |
5401 | if (ret_code) { |
5402 | ERR("Error appending channel metadata (errno = %d)", ret_code); | |
5403 | goto reply; | |
5404 | } | |
5405 | } | |
5406 | ||
5407 | reply: | |
7972aab2 DG |
5408 | DBG3("UST app replying to register channel key %" PRIu64 |
5409 | " with id %u, type: %d, ret: %d", chan_reg_key, chan_id, type, | |
5410 | ret_code); | |
d0b96690 DG |
5411 | |
5412 | ret = ustctl_reply_register_channel(sock, chan_id, type, ret_code); | |
5413 | if (ret < 0) { | |
5414 | if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) { | |
5415 | ERR("UST app reply channel failed with ret %d", ret); | |
5416 | } else { | |
5417 | DBG3("UST app reply channel failed. Application died"); | |
5418 | } | |
5419 | goto error; | |
5420 | } | |
5421 | ||
7972aab2 DG |
5422 | /* This channel registry registration is completed. */ |
5423 | chan_reg->register_done = 1; | |
5424 | ||
d0b96690 | 5425 | error: |
7972aab2 | 5426 | pthread_mutex_unlock(®istry->lock); |
d88aee68 | 5427 | error_rcu_unlock: |
d0b96690 | 5428 | rcu_read_unlock(); |
fad1ed2f | 5429 | free(fields); |
d0b96690 DG |
5430 | return ret; |
5431 | } | |
5432 | ||
d88aee68 DG |
5433 | /* |
5434 | * Add event to the UST channel registry. When the event is added to the | |
5435 | * registry, the metadata is also created. Once done, this replies to the | |
5436 | * application with the appropriate error code. | |
5437 | * | |
5438 | * The session UST registry lock is acquired in the function. | |
5439 | * | |
5440 | * On success 0 is returned else a negative value. | |
5441 | */ | |
d0b96690 | 5442 | static int add_event_ust_registry(int sock, int sobjd, int cobjd, char *name, |
2106efa0 PP |
5443 | char *sig, size_t nr_fields, struct ustctl_field *fields, |
5444 | int loglevel_value, char *model_emf_uri) | |
d0b96690 DG |
5445 | { |
5446 | int ret, ret_code; | |
5447 | uint32_t event_id = 0; | |
7972aab2 | 5448 | uint64_t chan_reg_key; |
d0b96690 DG |
5449 | struct ust_app *app; |
5450 | struct ust_app_channel *ua_chan; | |
5451 | struct ust_app_session *ua_sess; | |
7972aab2 | 5452 | struct ust_registry_session *registry; |
d0b96690 DG |
5453 | |
5454 | rcu_read_lock(); | |
5455 | ||
5456 | /* Lookup application. If not found, there is a code flow error. */ | |
5457 | app = find_app_by_notify_sock(sock); | |
d88aee68 | 5458 | if (!app) { |
fad1ed2f | 5459 | DBG("Application socket %d is being torn down. Abort event notify", |
d88aee68 DG |
5460 | sock); |
5461 | ret = 0; | |
5462 | goto error_rcu_unlock; | |
5463 | } | |
d0b96690 | 5464 | |
4950b860 | 5465 | /* Lookup channel by UST object descriptor. */ |
d0b96690 | 5466 | ua_chan = find_channel_by_objd(app, cobjd); |
4950b860 | 5467 | if (!ua_chan) { |
fad1ed2f | 5468 | DBG("Application channel is being torn down. Abort event notify"); |
4950b860 MD |
5469 | ret = 0; |
5470 | goto error_rcu_unlock; | |
5471 | } | |
5472 | ||
d0b96690 DG |
5473 | assert(ua_chan->session); |
5474 | ua_sess = ua_chan->session; | |
5475 | ||
7972aab2 | 5476 | registry = get_session_registry(ua_sess); |
fad1ed2f JR |
5477 | if (!registry) { |
5478 | DBG("Application session is being torn down. Abort event notify"); | |
5479 | ret = 0; | |
5480 | goto error_rcu_unlock; | |
5481 | } | |
7972aab2 DG |
5482 | |
5483 | if (ua_sess->buffer_type == LTTNG_BUFFER_PER_UID) { | |
5484 | chan_reg_key = ua_chan->tracing_channel_id; | |
5485 | } else { | |
5486 | chan_reg_key = ua_chan->key; | |
5487 | } | |
5488 | ||
5489 | pthread_mutex_lock(®istry->lock); | |
d0b96690 | 5490 | |
d5d629b5 DG |
5491 | /* |
5492 | * From this point on, this call acquires the ownership of the sig, fields | |
5493 | * and model_emf_uri meaning any free are done inside it if needed. These | |
5494 | * three variables MUST NOT be read/write after this. | |
5495 | */ | |
7972aab2 | 5496 | ret_code = ust_registry_create_event(registry, chan_reg_key, |
2106efa0 PP |
5497 | sobjd, cobjd, name, sig, nr_fields, fields, |
5498 | loglevel_value, model_emf_uri, ua_sess->buffer_type, | |
5499 | &event_id, app); | |
fad1ed2f JR |
5500 | sig = NULL; |
5501 | fields = NULL; | |
5502 | model_emf_uri = NULL; | |
d0b96690 DG |
5503 | |
5504 | /* | |
5505 | * The return value is returned to ustctl so in case of an error, the | |
5506 | * application can be notified. In case of an error, it's important not to | |
5507 | * return a negative error or else the application will get closed. | |
5508 | */ | |
5509 | ret = ustctl_reply_register_event(sock, event_id, ret_code); | |
5510 | if (ret < 0) { | |
5511 | if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) { | |
5512 | ERR("UST app reply event failed with ret %d", ret); | |
5513 | } else { | |
5514 | DBG3("UST app reply event failed. Application died"); | |
5515 | } | |
5516 | /* | |
5517 | * No need to wipe the create event since the application socket will | |
5518 | * get close on error hence cleaning up everything by itself. | |
5519 | */ | |
5520 | goto error; | |
5521 | } | |
5522 | ||
7972aab2 DG |
5523 | DBG3("UST registry event %s with id %" PRId32 " added successfully", |
5524 | name, event_id); | |
d88aee68 | 5525 | |
d0b96690 | 5526 | error: |
7972aab2 | 5527 | pthread_mutex_unlock(®istry->lock); |
d88aee68 | 5528 | error_rcu_unlock: |
d0b96690 | 5529 | rcu_read_unlock(); |
fad1ed2f JR |
5530 | free(sig); |
5531 | free(fields); | |
5532 | free(model_emf_uri); | |
d0b96690 DG |
5533 | return ret; |
5534 | } | |
5535 | ||
10b56aef MD |
5536 | /* |
5537 | * Add enum to the UST session registry. Once done, this replies to the | |
5538 | * application with the appropriate error code. | |
5539 | * | |
5540 | * The session UST registry lock is acquired within this function. | |
5541 | * | |
5542 | * On success 0 is returned else a negative value. | |
5543 | */ | |
5544 | static int add_enum_ust_registry(int sock, int sobjd, char *name, | |
5545 | struct ustctl_enum_entry *entries, size_t nr_entries) | |
5546 | { | |
5547 | int ret = 0, ret_code; | |
5548 | struct ust_app *app; | |
5549 | struct ust_app_session *ua_sess; | |
5550 | struct ust_registry_session *registry; | |
5551 | uint64_t enum_id = -1ULL; | |
5552 | ||
5553 | rcu_read_lock(); | |
5554 | ||
5555 | /* Lookup application. If not found, there is a code flow error. */ | |
5556 | app = find_app_by_notify_sock(sock); | |
5557 | if (!app) { | |
5558 | /* Return an error since this is not an error */ | |
5559 | DBG("Application socket %d is being torn down. Aborting enum registration", | |
5560 | sock); | |
5561 | free(entries); | |
5562 | goto error_rcu_unlock; | |
5563 | } | |
5564 | ||
5565 | /* Lookup session by UST object descriptor. */ | |
5566 | ua_sess = find_session_by_objd(app, sobjd); | |
5567 | if (!ua_sess) { | |
5568 | /* Return an error since this is not an error */ | |
fad1ed2f | 5569 | DBG("Application session is being torn down (session not found). Aborting enum registration."); |
10b56aef MD |
5570 | free(entries); |
5571 | goto error_rcu_unlock; | |
5572 | } | |
5573 | ||
5574 | registry = get_session_registry(ua_sess); | |
fad1ed2f JR |
5575 | if (!registry) { |
5576 | DBG("Application session is being torn down (registry not found). Aborting enum registration."); | |
5577 | free(entries); | |
5578 | goto error_rcu_unlock; | |
5579 | } | |
10b56aef MD |
5580 | |
5581 | pthread_mutex_lock(®istry->lock); | |
5582 | ||
5583 | /* | |
5584 | * From this point on, the callee acquires the ownership of | |
5585 | * entries. The variable entries MUST NOT be read/written after | |
5586 | * call. | |
5587 | */ | |
5588 | ret_code = ust_registry_create_or_find_enum(registry, sobjd, name, | |
5589 | entries, nr_entries, &enum_id); | |
5590 | entries = NULL; | |
5591 | ||
5592 | /* | |
5593 | * The return value is returned to ustctl so in case of an error, the | |
5594 | * application can be notified. In case of an error, it's important not to | |
5595 | * return a negative error or else the application will get closed. | |
5596 | */ | |
5597 | ret = ustctl_reply_register_enum(sock, enum_id, ret_code); | |
5598 | if (ret < 0) { | |
5599 | if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) { | |
5600 | ERR("UST app reply enum failed with ret %d", ret); | |
5601 | } else { | |
5602 | DBG3("UST app reply enum failed. Application died"); | |
5603 | } | |
5604 | /* | |
5605 | * No need to wipe the create enum since the application socket will | |
5606 | * get close on error hence cleaning up everything by itself. | |
5607 | */ | |
5608 | goto error; | |
5609 | } | |
5610 | ||
5611 | DBG3("UST registry enum %s added successfully or already found", name); | |
5612 | ||
5613 | error: | |
5614 | pthread_mutex_unlock(®istry->lock); | |
5615 | error_rcu_unlock: | |
5616 | rcu_read_unlock(); | |
5617 | return ret; | |
5618 | } | |
5619 | ||
d88aee68 DG |
5620 | /* |
5621 | * Handle application notification through the given notify socket. | |
5622 | * | |
5623 | * Return 0 on success or else a negative value. | |
5624 | */ | |
d0b96690 DG |
5625 | int ust_app_recv_notify(int sock) |
5626 | { | |
5627 | int ret; | |
5628 | enum ustctl_notify_cmd cmd; | |
5629 | ||
5630 | DBG3("UST app receiving notify from sock %d", sock); | |
5631 | ||
5632 | ret = ustctl_recv_notify(sock, &cmd); | |
5633 | if (ret < 0) { | |
5634 | if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) { | |
5635 | ERR("UST app recv notify failed with ret %d", ret); | |
5636 | } else { | |
5637 | DBG3("UST app recv notify failed. Application died"); | |
5638 | } | |
5639 | goto error; | |
5640 | } | |
5641 | ||
5642 | switch (cmd) { | |
5643 | case USTCTL_NOTIFY_CMD_EVENT: | |
5644 | { | |
2106efa0 | 5645 | int sobjd, cobjd, loglevel_value; |
d0b96690 DG |
5646 | char name[LTTNG_UST_SYM_NAME_LEN], *sig, *model_emf_uri; |
5647 | size_t nr_fields; | |
5648 | struct ustctl_field *fields; | |
5649 | ||
5650 | DBG2("UST app ustctl register event received"); | |
5651 | ||
2106efa0 PP |
5652 | ret = ustctl_recv_register_event(sock, &sobjd, &cobjd, name, |
5653 | &loglevel_value, &sig, &nr_fields, &fields, | |
5654 | &model_emf_uri); | |
d0b96690 DG |
5655 | if (ret < 0) { |
5656 | if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) { | |
5657 | ERR("UST app recv event failed with ret %d", ret); | |
5658 | } else { | |
5659 | DBG3("UST app recv event failed. Application died"); | |
5660 | } | |
5661 | goto error; | |
5662 | } | |
5663 | ||
d5d629b5 DG |
5664 | /* |
5665 | * Add event to the UST registry coming from the notify socket. This | |
5666 | * call will free if needed the sig, fields and model_emf_uri. This | |
5667 | * code path loses the ownsership of these variables and transfer them | |
5668 | * to the this function. | |
5669 | */ | |
d0b96690 | 5670 | ret = add_event_ust_registry(sock, sobjd, cobjd, name, sig, nr_fields, |
2106efa0 | 5671 | fields, loglevel_value, model_emf_uri); |
d0b96690 DG |
5672 | if (ret < 0) { |
5673 | goto error; | |
5674 | } | |
5675 | ||
5676 | break; | |
5677 | } | |
5678 | case USTCTL_NOTIFY_CMD_CHANNEL: | |
5679 | { | |
5680 | int sobjd, cobjd; | |
5681 | size_t nr_fields; | |
5682 | struct ustctl_field *fields; | |
5683 | ||
5684 | DBG2("UST app ustctl register channel received"); | |
5685 | ||
5686 | ret = ustctl_recv_register_channel(sock, &sobjd, &cobjd, &nr_fields, | |
5687 | &fields); | |
5688 | if (ret < 0) { | |
5689 | if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) { | |
5690 | ERR("UST app recv channel failed with ret %d", ret); | |
5691 | } else { | |
5692 | DBG3("UST app recv channel failed. Application died"); | |
5693 | } | |
5694 | goto error; | |
5695 | } | |
5696 | ||
d5d629b5 DG |
5697 | /* |
5698 | * The fields ownership are transfered to this function call meaning | |
5699 | * that if needed it will be freed. After this, it's invalid to access | |
5700 | * fields or clean it up. | |
5701 | */ | |
8eede835 | 5702 | ret = reply_ust_register_channel(sock, cobjd, nr_fields, |
d0b96690 DG |
5703 | fields); |
5704 | if (ret < 0) { | |
5705 | goto error; | |
5706 | } | |
5707 | ||
5708 | break; | |
5709 | } | |
10b56aef MD |
5710 | case USTCTL_NOTIFY_CMD_ENUM: |
5711 | { | |
5712 | int sobjd; | |
5713 | char name[LTTNG_UST_SYM_NAME_LEN]; | |
5714 | size_t nr_entries; | |
5715 | struct ustctl_enum_entry *entries; | |
5716 | ||
5717 | DBG2("UST app ustctl register enum received"); | |
5718 | ||
5719 | ret = ustctl_recv_register_enum(sock, &sobjd, name, | |
5720 | &entries, &nr_entries); | |
5721 | if (ret < 0) { | |
5722 | if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) { | |
5723 | ERR("UST app recv enum failed with ret %d", ret); | |
5724 | } else { | |
5725 | DBG3("UST app recv enum failed. Application died"); | |
5726 | } | |
5727 | goto error; | |
5728 | } | |
5729 | ||
5730 | /* Callee assumes ownership of entries */ | |
5731 | ret = add_enum_ust_registry(sock, sobjd, name, | |
5732 | entries, nr_entries); | |
5733 | if (ret < 0) { | |
5734 | goto error; | |
5735 | } | |
5736 | ||
5737 | break; | |
5738 | } | |
d0b96690 DG |
5739 | default: |
5740 | /* Should NEVER happen. */ | |
5741 | assert(0); | |
5742 | } | |
5743 | ||
5744 | error: | |
5745 | return ret; | |
5746 | } | |
d88aee68 DG |
5747 | |
5748 | /* | |
5749 | * Once the notify socket hangs up, this is called. First, it tries to find the | |
5750 | * corresponding application. On failure, the call_rcu to close the socket is | |
5751 | * executed. If an application is found, it tries to delete it from the notify | |
5752 | * socket hash table. Whathever the result, it proceeds to the call_rcu. | |
5753 | * | |
5754 | * Note that an object needs to be allocated here so on ENOMEM failure, the | |
5755 | * call RCU is not done but the rest of the cleanup is. | |
5756 | */ | |
5757 | void ust_app_notify_sock_unregister(int sock) | |
5758 | { | |
5759 | int err_enomem = 0; | |
5760 | struct lttng_ht_iter iter; | |
5761 | struct ust_app *app; | |
5762 | struct ust_app_notify_sock_obj *obj; | |
5763 | ||
5764 | assert(sock >= 0); | |
5765 | ||
5766 | rcu_read_lock(); | |
5767 | ||
5768 | obj = zmalloc(sizeof(*obj)); | |
5769 | if (!obj) { | |
5770 | /* | |
5771 | * An ENOMEM is kind of uncool. If this strikes we continue the | |
5772 | * procedure but the call_rcu will not be called. In this case, we | |
5773 | * accept the fd leak rather than possibly creating an unsynchronized | |
5774 | * state between threads. | |
5775 | * | |
5776 | * TODO: The notify object should be created once the notify socket is | |
5777 | * registered and stored independantely from the ust app object. The | |
5778 | * tricky part is to synchronize the teardown of the application and | |
5779 | * this notify object. Let's keep that in mind so we can avoid this | |
5780 | * kind of shenanigans with ENOMEM in the teardown path. | |
5781 | */ | |
5782 | err_enomem = 1; | |
5783 | } else { | |
5784 | obj->fd = sock; | |
5785 | } | |
5786 | ||
5787 | DBG("UST app notify socket unregister %d", sock); | |
5788 | ||
5789 | /* | |
5790 | * Lookup application by notify socket. If this fails, this means that the | |
5791 | * hash table delete has already been done by the application | |
5792 | * unregistration process so we can safely close the notify socket in a | |
5793 | * call RCU. | |
5794 | */ | |
5795 | app = find_app_by_notify_sock(sock); | |
5796 | if (!app) { | |
5797 | goto close_socket; | |
5798 | } | |
5799 | ||
5800 | iter.iter.node = &app->notify_sock_n.node; | |
5801 | ||
5802 | /* | |
5803 | * Whatever happens here either we fail or succeed, in both cases we have | |
5804 | * to close the socket after a grace period to continue to the call RCU | |
5805 | * here. If the deletion is successful, the application is not visible | |
5806 | * anymore by other threads and is it fails it means that it was already | |
5807 | * deleted from the hash table so either way we just have to close the | |
5808 | * socket. | |
5809 | */ | |
5810 | (void) lttng_ht_del(ust_app_ht_by_notify_sock, &iter); | |
5811 | ||
5812 | close_socket: | |
5813 | rcu_read_unlock(); | |
5814 | ||
5815 | /* | |
5816 | * Close socket after a grace period to avoid for the socket to be reused | |
5817 | * before the application object is freed creating potential race between | |
5818 | * threads trying to add unique in the global hash table. | |
5819 | */ | |
5820 | if (!err_enomem) { | |
5821 | call_rcu(&obj->head, close_notify_sock_rcu); | |
5822 | } | |
5823 | } | |
f45e313d DG |
5824 | |
5825 | /* | |
5826 | * Destroy a ust app data structure and free its memory. | |
5827 | */ | |
5828 | void ust_app_destroy(struct ust_app *app) | |
5829 | { | |
5830 | if (!app) { | |
5831 | return; | |
5832 | } | |
5833 | ||
5834 | call_rcu(&app->pid_n.head, delete_ust_app_rcu); | |
5835 | } | |
6dc3064a DG |
5836 | |
5837 | /* | |
5838 | * Take a snapshot for a given UST session. The snapshot is sent to the given | |
5839 | * output. | |
5840 | * | |
9a654598 | 5841 | * Returns LTTNG_OK on success or a LTTNG_ERR error code. |
6dc3064a | 5842 | */ |
fb9a95c4 JG |
5843 | enum lttng_error_code ust_app_snapshot_record( |
5844 | const struct ltt_ust_session *usess, | |
348a81dc | 5845 | const struct consumer_output *output, int wait, |
d07ceecd | 5846 | uint64_t nb_packets_per_stream) |
6dc3064a DG |
5847 | { |
5848 | int ret = 0; | |
9a654598 | 5849 | enum lttng_error_code status = LTTNG_OK; |
6dc3064a DG |
5850 | struct lttng_ht_iter iter; |
5851 | struct ust_app *app; | |
affce97e | 5852 | char *trace_path = NULL; |
6dc3064a DG |
5853 | |
5854 | assert(usess); | |
5855 | assert(output); | |
5856 | ||
5857 | rcu_read_lock(); | |
5858 | ||
8c924c7b MD |
5859 | switch (usess->buffer_type) { |
5860 | case LTTNG_BUFFER_PER_UID: | |
5861 | { | |
5862 | struct buffer_reg_uid *reg; | |
6dc3064a | 5863 | |
8c924c7b MD |
5864 | cds_list_for_each_entry(reg, &usess->buffer_reg_uid_list, lnode) { |
5865 | struct buffer_reg_channel *reg_chan; | |
5866 | struct consumer_socket *socket; | |
3b967712 | 5867 | char pathname[PATH_MAX]; |
5da88b0f | 5868 | size_t consumer_path_offset = 0; |
6dc3064a | 5869 | |
2b269489 JR |
5870 | if (!reg->registry->reg.ust->metadata_key) { |
5871 | /* Skip since no metadata is present */ | |
5872 | continue; | |
5873 | } | |
5874 | ||
8c924c7b MD |
5875 | /* Get consumer socket to use to push the metadata.*/ |
5876 | socket = consumer_find_socket_by_bitness(reg->bits_per_long, | |
5877 | usess->consumer); | |
5878 | if (!socket) { | |
9a654598 | 5879 | status = LTTNG_ERR_INVALID; |
8c924c7b MD |
5880 | goto error; |
5881 | } | |
6dc3064a | 5882 | |
8c924c7b MD |
5883 | memset(pathname, 0, sizeof(pathname)); |
5884 | ret = snprintf(pathname, sizeof(pathname), | |
5da88b0f | 5885 | DEFAULT_UST_TRACE_DIR "/" DEFAULT_UST_TRACE_UID_PATH, |
8c924c7b MD |
5886 | reg->uid, reg->bits_per_long); |
5887 | if (ret < 0) { | |
5888 | PERROR("snprintf snapshot path"); | |
9a654598 | 5889 | status = LTTNG_ERR_INVALID; |
8c924c7b MD |
5890 | goto error; |
5891 | } | |
affce97e JG |
5892 | /* Free path allowed on previous iteration. */ |
5893 | free(trace_path); | |
5da88b0f MD |
5894 | trace_path = setup_channel_trace_path(usess->consumer, pathname, |
5895 | &consumer_path_offset); | |
3b967712 MD |
5896 | if (!trace_path) { |
5897 | status = LTTNG_ERR_INVALID; | |
5898 | goto error; | |
5899 | } | |
d2956687 | 5900 | /* Add the UST default trace dir to path. */ |
8c924c7b MD |
5901 | cds_lfht_for_each_entry(reg->registry->channels->ht, &iter.iter, |
5902 | reg_chan, node.node) { | |
9a654598 | 5903 | status = consumer_snapshot_channel(socket, |
e098433c JG |
5904 | reg_chan->consumer_key, |
5905 | output, 0, usess->uid, | |
5da88b0f | 5906 | usess->gid, &trace_path[consumer_path_offset], wait, |
d2956687 | 5907 | nb_packets_per_stream); |
9a654598 | 5908 | if (status != LTTNG_OK) { |
8c924c7b MD |
5909 | goto error; |
5910 | } | |
5911 | } | |
9a654598 | 5912 | status = consumer_snapshot_channel(socket, |
68808f4e | 5913 | reg->registry->reg.ust->metadata_key, output, 1, |
5da88b0f MD |
5914 | usess->uid, usess->gid, &trace_path[consumer_path_offset], |
5915 | wait, 0); | |
9a654598 | 5916 | if (status != LTTNG_OK) { |
8c924c7b MD |
5917 | goto error; |
5918 | } | |
af706bb7 | 5919 | } |
8c924c7b MD |
5920 | break; |
5921 | } | |
5922 | case LTTNG_BUFFER_PER_PID: | |
5923 | { | |
5924 | cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) { | |
5925 | struct consumer_socket *socket; | |
5926 | struct lttng_ht_iter chan_iter; | |
5927 | struct ust_app_channel *ua_chan; | |
5928 | struct ust_app_session *ua_sess; | |
5929 | struct ust_registry_session *registry; | |
3b967712 | 5930 | char pathname[PATH_MAX]; |
5da88b0f | 5931 | size_t consumer_path_offset = 0; |
8c924c7b MD |
5932 | |
5933 | ua_sess = lookup_session_by_app(usess, app); | |
5934 | if (!ua_sess) { | |
5935 | /* Session not associated with this app. */ | |
5936 | continue; | |
5937 | } | |
af706bb7 | 5938 | |
8c924c7b MD |
5939 | /* Get the right consumer socket for the application. */ |
5940 | socket = consumer_find_socket_by_bitness(app->bits_per_long, | |
348a81dc | 5941 | output); |
8c924c7b | 5942 | if (!socket) { |
9a654598 | 5943 | status = LTTNG_ERR_INVALID; |
5c786ded JD |
5944 | goto error; |
5945 | } | |
5946 | ||
8c924c7b MD |
5947 | /* Add the UST default trace dir to path. */ |
5948 | memset(pathname, 0, sizeof(pathname)); | |
5da88b0f | 5949 | ret = snprintf(pathname, sizeof(pathname), DEFAULT_UST_TRACE_DIR "/%s", |
8c924c7b | 5950 | ua_sess->path); |
6dc3064a | 5951 | if (ret < 0) { |
9a654598 | 5952 | status = LTTNG_ERR_INVALID; |
8c924c7b | 5953 | PERROR("snprintf snapshot path"); |
6dc3064a DG |
5954 | goto error; |
5955 | } | |
affce97e JG |
5956 | /* Free path allowed on previous iteration. */ |
5957 | free(trace_path); | |
5da88b0f MD |
5958 | trace_path = setup_channel_trace_path(usess->consumer, pathname, |
5959 | &consumer_path_offset); | |
3b967712 MD |
5960 | if (!trace_path) { |
5961 | status = LTTNG_ERR_INVALID; | |
5962 | goto error; | |
5963 | } | |
d2956687 | 5964 | cds_lfht_for_each_entry(ua_sess->channels->ht, &chan_iter.iter, |
8c924c7b | 5965 | ua_chan, node.node) { |
9a654598 | 5966 | status = consumer_snapshot_channel(socket, |
470cc211 JG |
5967 | ua_chan->key, output, 0, |
5968 | ua_sess->effective_credentials | |
5969 | .uid, | |
5970 | ua_sess->effective_credentials | |
5971 | .gid, | |
5da88b0f | 5972 | &trace_path[consumer_path_offset], wait, |
d2956687 | 5973 | nb_packets_per_stream); |
9a654598 JG |
5974 | switch (status) { |
5975 | case LTTNG_OK: | |
5976 | break; | |
5977 | case LTTNG_ERR_CHAN_NOT_FOUND: | |
5978 | continue; | |
5979 | default: | |
8c924c7b MD |
5980 | goto error; |
5981 | } | |
5982 | } | |
5983 | ||
5984 | registry = get_session_registry(ua_sess); | |
fad1ed2f | 5985 | if (!registry) { |
9bbfb88c MD |
5986 | DBG("Application session is being torn down. Skip application."); |
5987 | continue; | |
fad1ed2f | 5988 | } |
9a654598 | 5989 | status = consumer_snapshot_channel(socket, |
470cc211 JG |
5990 | registry->metadata_key, output, 1, |
5991 | ua_sess->effective_credentials.uid, | |
5992 | ua_sess->effective_credentials.gid, | |
5da88b0f | 5993 | &trace_path[consumer_path_offset], wait, 0); |
9a654598 JG |
5994 | switch (status) { |
5995 | case LTTNG_OK: | |
5996 | break; | |
5997 | case LTTNG_ERR_CHAN_NOT_FOUND: | |
5998 | continue; | |
5999 | default: | |
8c924c7b MD |
6000 | goto error; |
6001 | } | |
6002 | } | |
6003 | break; | |
6004 | } | |
6005 | default: | |
6006 | assert(0); | |
6007 | break; | |
6dc3064a DG |
6008 | } |
6009 | ||
6010 | error: | |
affce97e | 6011 | free(trace_path); |
6dc3064a | 6012 | rcu_read_unlock(); |
9a654598 | 6013 | return status; |
6dc3064a | 6014 | } |
5c786ded JD |
6015 | |
6016 | /* | |
d07ceecd | 6017 | * Return the size taken by one more packet per stream. |
5c786ded | 6018 | */ |
fb9a95c4 JG |
6019 | uint64_t ust_app_get_size_one_more_packet_per_stream( |
6020 | const struct ltt_ust_session *usess, uint64_t cur_nr_packets) | |
5c786ded | 6021 | { |
d07ceecd | 6022 | uint64_t tot_size = 0; |
5c786ded JD |
6023 | struct ust_app *app; |
6024 | struct lttng_ht_iter iter; | |
6025 | ||
6026 | assert(usess); | |
6027 | ||
6028 | switch (usess->buffer_type) { | |
6029 | case LTTNG_BUFFER_PER_UID: | |
6030 | { | |
6031 | struct buffer_reg_uid *reg; | |
6032 | ||
6033 | cds_list_for_each_entry(reg, &usess->buffer_reg_uid_list, lnode) { | |
6034 | struct buffer_reg_channel *reg_chan; | |
6035 | ||
b7064eaa | 6036 | rcu_read_lock(); |
5c786ded JD |
6037 | cds_lfht_for_each_entry(reg->registry->channels->ht, &iter.iter, |
6038 | reg_chan, node.node) { | |
d07ceecd MD |
6039 | if (cur_nr_packets >= reg_chan->num_subbuf) { |
6040 | /* | |
6041 | * Don't take channel into account if we | |
6042 | * already grab all its packets. | |
6043 | */ | |
6044 | continue; | |
6045 | } | |
6046 | tot_size += reg_chan->subbuf_size * reg_chan->stream_count; | |
5c786ded | 6047 | } |
b7064eaa | 6048 | rcu_read_unlock(); |
5c786ded JD |
6049 | } |
6050 | break; | |
6051 | } | |
6052 | case LTTNG_BUFFER_PER_PID: | |
6053 | { | |
6054 | rcu_read_lock(); | |
6055 | cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) { | |
6056 | struct ust_app_channel *ua_chan; | |
6057 | struct ust_app_session *ua_sess; | |
6058 | struct lttng_ht_iter chan_iter; | |
6059 | ||
6060 | ua_sess = lookup_session_by_app(usess, app); | |
6061 | if (!ua_sess) { | |
6062 | /* Session not associated with this app. */ | |
6063 | continue; | |
6064 | } | |
6065 | ||
6066 | cds_lfht_for_each_entry(ua_sess->channels->ht, &chan_iter.iter, | |
6067 | ua_chan, node.node) { | |
d07ceecd MD |
6068 | if (cur_nr_packets >= ua_chan->attr.num_subbuf) { |
6069 | /* | |
6070 | * Don't take channel into account if we | |
6071 | * already grab all its packets. | |
6072 | */ | |
6073 | continue; | |
6074 | } | |
6075 | tot_size += ua_chan->attr.subbuf_size * ua_chan->streams.count; | |
5c786ded JD |
6076 | } |
6077 | } | |
6078 | rcu_read_unlock(); | |
6079 | break; | |
6080 | } | |
6081 | default: | |
6082 | assert(0); | |
6083 | break; | |
6084 | } | |
6085 | ||
d07ceecd | 6086 | return tot_size; |
5c786ded | 6087 | } |
fb83fe64 JD |
6088 | |
6089 | int ust_app_uid_get_channel_runtime_stats(uint64_t ust_session_id, | |
6090 | struct cds_list_head *buffer_reg_uid_list, | |
6091 | struct consumer_output *consumer, uint64_t uchan_id, | |
6092 | int overwrite, uint64_t *discarded, uint64_t *lost) | |
6093 | { | |
6094 | int ret; | |
6095 | uint64_t consumer_chan_key; | |
6096 | ||
70dd8162 MD |
6097 | *discarded = 0; |
6098 | *lost = 0; | |
6099 | ||
fb83fe64 | 6100 | ret = buffer_reg_uid_consumer_channel_key( |
76604852 | 6101 | buffer_reg_uid_list, uchan_id, &consumer_chan_key); |
fb83fe64 | 6102 | if (ret < 0) { |
70dd8162 MD |
6103 | /* Not found */ |
6104 | ret = 0; | |
fb83fe64 JD |
6105 | goto end; |
6106 | } | |
6107 | ||
6108 | if (overwrite) { | |
6109 | ret = consumer_get_lost_packets(ust_session_id, | |
6110 | consumer_chan_key, consumer, lost); | |
6111 | } else { | |
6112 | ret = consumer_get_discarded_events(ust_session_id, | |
6113 | consumer_chan_key, consumer, discarded); | |
6114 | } | |
6115 | ||
6116 | end: | |
6117 | return ret; | |
6118 | } | |
6119 | ||
6120 | int ust_app_pid_get_channel_runtime_stats(struct ltt_ust_session *usess, | |
6121 | struct ltt_ust_channel *uchan, | |
6122 | struct consumer_output *consumer, int overwrite, | |
6123 | uint64_t *discarded, uint64_t *lost) | |
6124 | { | |
6125 | int ret = 0; | |
6126 | struct lttng_ht_iter iter; | |
6127 | struct lttng_ht_node_str *ua_chan_node; | |
6128 | struct ust_app *app; | |
6129 | struct ust_app_session *ua_sess; | |
6130 | struct ust_app_channel *ua_chan; | |
6131 | ||
70dd8162 MD |
6132 | *discarded = 0; |
6133 | *lost = 0; | |
6134 | ||
fb83fe64 JD |
6135 | rcu_read_lock(); |
6136 | /* | |
70dd8162 MD |
6137 | * Iterate over every registered applications. Sum counters for |
6138 | * all applications containing requested session and channel. | |
fb83fe64 JD |
6139 | */ |
6140 | cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) { | |
6141 | struct lttng_ht_iter uiter; | |
6142 | ||
6143 | ua_sess = lookup_session_by_app(usess, app); | |
6144 | if (ua_sess == NULL) { | |
6145 | continue; | |
6146 | } | |
6147 | ||
6148 | /* Get channel */ | |
ee022399 | 6149 | lttng_ht_lookup(ua_sess->channels, (void *) uchan->name, &uiter); |
fb83fe64 JD |
6150 | ua_chan_node = lttng_ht_iter_get_node_str(&uiter); |
6151 | /* If the session is found for the app, the channel must be there */ | |
6152 | assert(ua_chan_node); | |
6153 | ||
6154 | ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node); | |
6155 | ||
6156 | if (overwrite) { | |
70dd8162 MD |
6157 | uint64_t _lost; |
6158 | ||
fb83fe64 | 6159 | ret = consumer_get_lost_packets(usess->id, ua_chan->key, |
70dd8162 MD |
6160 | consumer, &_lost); |
6161 | if (ret < 0) { | |
6162 | break; | |
6163 | } | |
6164 | (*lost) += _lost; | |
fb83fe64 | 6165 | } else { |
70dd8162 MD |
6166 | uint64_t _discarded; |
6167 | ||
fb83fe64 | 6168 | ret = consumer_get_discarded_events(usess->id, |
70dd8162 MD |
6169 | ua_chan->key, consumer, &_discarded); |
6170 | if (ret < 0) { | |
6171 | break; | |
6172 | } | |
6173 | (*discarded) += _discarded; | |
fb83fe64 | 6174 | } |
fb83fe64 JD |
6175 | } |
6176 | ||
fb83fe64 JD |
6177 | rcu_read_unlock(); |
6178 | return ret; | |
6179 | } | |
c2561365 JD |
6180 | |
6181 | static | |
6182 | int ust_app_regenerate_statedump(struct ltt_ust_session *usess, | |
6183 | struct ust_app *app) | |
6184 | { | |
6185 | int ret = 0; | |
6186 | struct ust_app_session *ua_sess; | |
6187 | ||
6188 | DBG("Regenerating the metadata for ust app pid %d", app->pid); | |
6189 | ||
6190 | rcu_read_lock(); | |
6191 | ||
6192 | ua_sess = lookup_session_by_app(usess, app); | |
6193 | if (ua_sess == NULL) { | |
6194 | /* The session is in teardown process. Ignore and continue. */ | |
6195 | goto end; | |
6196 | } | |
6197 | ||
6198 | pthread_mutex_lock(&ua_sess->lock); | |
6199 | ||
6200 | if (ua_sess->deleted) { | |
6201 | goto end_unlock; | |
6202 | } | |
6203 | ||
6204 | pthread_mutex_lock(&app->sock_lock); | |
6205 | ret = ustctl_regenerate_statedump(app->sock, ua_sess->handle); | |
6206 | pthread_mutex_unlock(&app->sock_lock); | |
6207 | ||
6208 | end_unlock: | |
6209 | pthread_mutex_unlock(&ua_sess->lock); | |
6210 | ||
6211 | end: | |
6212 | rcu_read_unlock(); | |
6213 | health_code_update(); | |
6214 | return ret; | |
6215 | } | |
6216 | ||
6217 | /* | |
6218 | * Regenerate the statedump for each app in the session. | |
6219 | */ | |
6220 | int ust_app_regenerate_statedump_all(struct ltt_ust_session *usess) | |
6221 | { | |
6222 | int ret = 0; | |
6223 | struct lttng_ht_iter iter; | |
6224 | struct ust_app *app; | |
6225 | ||
6226 | DBG("Regenerating the metadata for all UST apps"); | |
6227 | ||
6228 | rcu_read_lock(); | |
6229 | ||
6230 | cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) { | |
6231 | if (!app->compatible) { | |
6232 | continue; | |
6233 | } | |
6234 | ||
6235 | ret = ust_app_regenerate_statedump(usess, app); | |
6236 | if (ret < 0) { | |
6237 | /* Continue to the next app even on error */ | |
6238 | continue; | |
6239 | } | |
6240 | } | |
6241 | ||
6242 | rcu_read_unlock(); | |
6243 | ||
6244 | return 0; | |
6245 | } | |
5c408ad8 JD |
6246 | |
6247 | /* | |
6248 | * Rotate all the channels of a session. | |
6249 | * | |
6f6d3b69 | 6250 | * Return LTTNG_OK on success or else an LTTng error code. |
5c408ad8 | 6251 | */ |
6f6d3b69 | 6252 | enum lttng_error_code ust_app_rotate_session(struct ltt_session *session) |
5c408ad8 | 6253 | { |
6f6d3b69 MD |
6254 | int ret; |
6255 | enum lttng_error_code cmd_ret = LTTNG_OK; | |
5c408ad8 JD |
6256 | struct lttng_ht_iter iter; |
6257 | struct ust_app *app; | |
6258 | struct ltt_ust_session *usess = session->ust_session; | |
5c408ad8 JD |
6259 | |
6260 | assert(usess); | |
6261 | ||
6262 | rcu_read_lock(); | |
6263 | ||
6264 | switch (usess->buffer_type) { | |
6265 | case LTTNG_BUFFER_PER_UID: | |
6266 | { | |
6267 | struct buffer_reg_uid *reg; | |
6268 | ||
6269 | cds_list_for_each_entry(reg, &usess->buffer_reg_uid_list, lnode) { | |
6270 | struct buffer_reg_channel *reg_chan; | |
6271 | struct consumer_socket *socket; | |
6272 | ||
14d3fca9 JR |
6273 | if (!reg->registry->reg.ust->metadata_key) { |
6274 | /* Skip since no metadata is present */ | |
6275 | continue; | |
6276 | } | |
6277 | ||
5c408ad8 JD |
6278 | /* Get consumer socket to use to push the metadata.*/ |
6279 | socket = consumer_find_socket_by_bitness(reg->bits_per_long, | |
6280 | usess->consumer); | |
6281 | if (!socket) { | |
6f6d3b69 | 6282 | cmd_ret = LTTNG_ERR_INVALID; |
5c408ad8 JD |
6283 | goto error; |
6284 | } | |
6285 | ||
5c408ad8 JD |
6286 | /* Rotate the data channels. */ |
6287 | cds_lfht_for_each_entry(reg->registry->channels->ht, &iter.iter, | |
6288 | reg_chan, node.node) { | |
5c408ad8 JD |
6289 | ret = consumer_rotate_channel(socket, |
6290 | reg_chan->consumer_key, | |
6291 | usess->uid, usess->gid, | |
d2956687 JG |
6292 | usess->consumer, |
6293 | /* is_metadata_channel */ false); | |
5c408ad8 | 6294 | if (ret < 0) { |
6f6d3b69 | 6295 | cmd_ret = LTTNG_ERR_ROTATION_FAIL_CONSUMER; |
5c408ad8 JD |
6296 | goto error; |
6297 | } | |
6298 | } | |
6299 | ||
6300 | (void) push_metadata(reg->registry->reg.ust, usess->consumer); | |
6301 | ||
6302 | ret = consumer_rotate_channel(socket, | |
6303 | reg->registry->reg.ust->metadata_key, | |
6304 | usess->uid, usess->gid, | |
d2956687 JG |
6305 | usess->consumer, |
6306 | /* is_metadata_channel */ true); | |
5c408ad8 | 6307 | if (ret < 0) { |
6f6d3b69 | 6308 | cmd_ret = LTTNG_ERR_ROTATION_FAIL_CONSUMER; |
5c408ad8 JD |
6309 | goto error; |
6310 | } | |
5c408ad8 JD |
6311 | } |
6312 | break; | |
6313 | } | |
6314 | case LTTNG_BUFFER_PER_PID: | |
6315 | { | |
6316 | cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) { | |
6317 | struct consumer_socket *socket; | |
6318 | struct lttng_ht_iter chan_iter; | |
6319 | struct ust_app_channel *ua_chan; | |
6320 | struct ust_app_session *ua_sess; | |
6321 | struct ust_registry_session *registry; | |
6322 | ||
6323 | ua_sess = lookup_session_by_app(usess, app); | |
6324 | if (!ua_sess) { | |
6325 | /* Session not associated with this app. */ | |
6326 | continue; | |
6327 | } | |
5c408ad8 JD |
6328 | |
6329 | /* Get the right consumer socket for the application. */ | |
6330 | socket = consumer_find_socket_by_bitness(app->bits_per_long, | |
6331 | usess->consumer); | |
6332 | if (!socket) { | |
6f6d3b69 | 6333 | cmd_ret = LTTNG_ERR_INVALID; |
5c408ad8 JD |
6334 | goto error; |
6335 | } | |
6336 | ||
6337 | registry = get_session_registry(ua_sess); | |
6338 | if (!registry) { | |
6f6d3b69 MD |
6339 | DBG("Application session is being torn down. Skip application."); |
6340 | continue; | |
5c408ad8 JD |
6341 | } |
6342 | ||
5c408ad8 JD |
6343 | /* Rotate the data channels. */ |
6344 | cds_lfht_for_each_entry(ua_sess->channels->ht, &chan_iter.iter, | |
6345 | ua_chan, node.node) { | |
470cc211 JG |
6346 | ret = consumer_rotate_channel(socket, |
6347 | ua_chan->key, | |
6348 | ua_sess->effective_credentials | |
6349 | .uid, | |
6350 | ua_sess->effective_credentials | |
6351 | .gid, | |
d2956687 JG |
6352 | ua_sess->consumer, |
6353 | /* is_metadata_channel */ false); | |
5c408ad8 | 6354 | if (ret < 0) { |
6f6d3b69 MD |
6355 | /* Per-PID buffer and application going away. */ |
6356 | if (ret == -LTTNG_ERR_CHAN_NOT_FOUND) | |
6357 | continue; | |
6358 | cmd_ret = LTTNG_ERR_ROTATION_FAIL_CONSUMER; | |
5c408ad8 JD |
6359 | goto error; |
6360 | } | |
6361 | } | |
6362 | ||
6363 | /* Rotate the metadata channel. */ | |
6364 | (void) push_metadata(registry, usess->consumer); | |
470cc211 JG |
6365 | ret = consumer_rotate_channel(socket, |
6366 | registry->metadata_key, | |
6367 | ua_sess->effective_credentials.uid, | |
6368 | ua_sess->effective_credentials.gid, | |
d2956687 JG |
6369 | ua_sess->consumer, |
6370 | /* is_metadata_channel */ true); | |
5c408ad8 | 6371 | if (ret < 0) { |
6f6d3b69 MD |
6372 | /* Per-PID buffer and application going away. */ |
6373 | if (ret == -LTTNG_ERR_CHAN_NOT_FOUND) | |
6374 | continue; | |
6375 | cmd_ret = LTTNG_ERR_ROTATION_FAIL_CONSUMER; | |
5c408ad8 JD |
6376 | goto error; |
6377 | } | |
5c408ad8 JD |
6378 | } |
6379 | break; | |
6380 | } | |
6381 | default: | |
6382 | assert(0); | |
6383 | break; | |
6384 | } | |
6385 | ||
6f6d3b69 | 6386 | cmd_ret = LTTNG_OK; |
5c408ad8 JD |
6387 | |
6388 | error: | |
6389 | rcu_read_unlock(); | |
6f6d3b69 | 6390 | return cmd_ret; |
5c408ad8 | 6391 | } |
d2956687 JG |
6392 | |
6393 | enum lttng_error_code ust_app_create_channel_subdirectories( | |
6394 | const struct ltt_ust_session *usess) | |
6395 | { | |
6396 | enum lttng_error_code ret = LTTNG_OK; | |
6397 | struct lttng_ht_iter iter; | |
6398 | enum lttng_trace_chunk_status chunk_status; | |
6399 | char *pathname_index; | |
6400 | int fmt_ret; | |
6401 | ||
6402 | assert(usess->current_trace_chunk); | |
6403 | rcu_read_lock(); | |
6404 | ||
6405 | switch (usess->buffer_type) { | |
6406 | case LTTNG_BUFFER_PER_UID: | |
6407 | { | |
6408 | struct buffer_reg_uid *reg; | |
6409 | ||
6410 | cds_list_for_each_entry(reg, &usess->buffer_reg_uid_list, lnode) { | |
6411 | fmt_ret = asprintf(&pathname_index, | |
5da88b0f | 6412 | DEFAULT_UST_TRACE_DIR "/" DEFAULT_UST_TRACE_UID_PATH "/" DEFAULT_INDEX_DIR, |
d2956687 JG |
6413 | reg->uid, reg->bits_per_long); |
6414 | if (fmt_ret < 0) { | |
6415 | ERR("Failed to format channel index directory"); | |
6416 | ret = LTTNG_ERR_CREATE_DIR_FAIL; | |
6417 | goto error; | |
6418 | } | |
6419 | ||
6420 | /* | |
6421 | * Create the index subdirectory which will take care | |
6422 | * of implicitly creating the channel's path. | |
6423 | */ | |
6424 | chunk_status = lttng_trace_chunk_create_subdirectory( | |
6425 | usess->current_trace_chunk, | |
6426 | pathname_index); | |
6427 | free(pathname_index); | |
6428 | if (chunk_status != LTTNG_TRACE_CHUNK_STATUS_OK) { | |
6429 | ret = LTTNG_ERR_CREATE_DIR_FAIL; | |
6430 | goto error; | |
6431 | } | |
6432 | } | |
6433 | break; | |
6434 | } | |
6435 | case LTTNG_BUFFER_PER_PID: | |
6436 | { | |
6437 | struct ust_app *app; | |
6438 | ||
495dece5 MD |
6439 | /* |
6440 | * Create the toplevel ust/ directory in case no apps are running. | |
6441 | */ | |
6442 | chunk_status = lttng_trace_chunk_create_subdirectory( | |
6443 | usess->current_trace_chunk, | |
6444 | DEFAULT_UST_TRACE_DIR); | |
6445 | if (chunk_status != LTTNG_TRACE_CHUNK_STATUS_OK) { | |
6446 | ret = LTTNG_ERR_CREATE_DIR_FAIL; | |
6447 | goto error; | |
6448 | } | |
6449 | ||
d2956687 JG |
6450 | cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, |
6451 | pid_n.node) { | |
6452 | struct ust_app_session *ua_sess; | |
6453 | struct ust_registry_session *registry; | |
6454 | ||
6455 | ua_sess = lookup_session_by_app(usess, app); | |
6456 | if (!ua_sess) { | |
6457 | /* Session not associated with this app. */ | |
6458 | continue; | |
6459 | } | |
6460 | ||
6461 | registry = get_session_registry(ua_sess); | |
6462 | if (!registry) { | |
6463 | DBG("Application session is being torn down. Skip application."); | |
6464 | continue; | |
6465 | } | |
6466 | ||
6467 | fmt_ret = asprintf(&pathname_index, | |
5da88b0f | 6468 | DEFAULT_UST_TRACE_DIR "/%s/" DEFAULT_INDEX_DIR, |
d2956687 JG |
6469 | ua_sess->path); |
6470 | if (fmt_ret < 0) { | |
6471 | ERR("Failed to format channel index directory"); | |
6472 | ret = LTTNG_ERR_CREATE_DIR_FAIL; | |
6473 | goto error; | |
6474 | } | |
6475 | /* | |
6476 | * Create the index subdirectory which will take care | |
6477 | * of implicitly creating the channel's path. | |
6478 | */ | |
6479 | chunk_status = lttng_trace_chunk_create_subdirectory( | |
6480 | usess->current_trace_chunk, | |
6481 | pathname_index); | |
6482 | free(pathname_index); | |
6483 | if (chunk_status != LTTNG_TRACE_CHUNK_STATUS_OK) { | |
6484 | ret = LTTNG_ERR_CREATE_DIR_FAIL; | |
6485 | goto error; | |
6486 | } | |
6487 | } | |
6488 | break; | |
6489 | } | |
6490 | default: | |
6491 | abort(); | |
6492 | } | |
6493 | ||
6494 | ret = LTTNG_OK; | |
6495 | error: | |
6496 | rcu_read_unlock(); | |
6497 | return ret; | |
6498 | } | |
4a9b9759 MD |
6499 | |
6500 | /* | |
6501 | * Clear all the channels of a session. | |
6502 | * | |
6503 | * Return LTTNG_OK on success or else an LTTng error code. | |
6504 | */ | |
6505 | enum lttng_error_code ust_app_clear_session(struct ltt_session *session) | |
6506 | { | |
6507 | int ret; | |
6508 | enum lttng_error_code cmd_ret = LTTNG_OK; | |
6509 | struct lttng_ht_iter iter; | |
6510 | struct ust_app *app; | |
6511 | struct ltt_ust_session *usess = session->ust_session; | |
6512 | ||
6513 | assert(usess); | |
6514 | ||
6515 | rcu_read_lock(); | |
6516 | ||
6517 | if (usess->active) { | |
6518 | ERR("Expecting inactive session %s (%" PRIu64 ")", session->name, session->id); | |
6519 | cmd_ret = LTTNG_ERR_FATAL; | |
6520 | goto end; | |
6521 | } | |
6522 | ||
6523 | switch (usess->buffer_type) { | |
6524 | case LTTNG_BUFFER_PER_UID: | |
6525 | { | |
6526 | struct buffer_reg_uid *reg; | |
6527 | ||
6528 | cds_list_for_each_entry(reg, &usess->buffer_reg_uid_list, lnode) { | |
6529 | struct buffer_reg_channel *reg_chan; | |
6530 | struct consumer_socket *socket; | |
6531 | ||
6532 | /* Get consumer socket to use to push the metadata.*/ | |
6533 | socket = consumer_find_socket_by_bitness(reg->bits_per_long, | |
6534 | usess->consumer); | |
6535 | if (!socket) { | |
6536 | cmd_ret = LTTNG_ERR_INVALID; | |
6537 | goto error_socket; | |
6538 | } | |
6539 | ||
6540 | /* Clear the data channels. */ | |
6541 | cds_lfht_for_each_entry(reg->registry->channels->ht, &iter.iter, | |
6542 | reg_chan, node.node) { | |
6543 | ret = consumer_clear_channel(socket, | |
6544 | reg_chan->consumer_key); | |
6545 | if (ret < 0) { | |
6546 | goto error; | |
6547 | } | |
6548 | } | |
6549 | ||
6550 | (void) push_metadata(reg->registry->reg.ust, usess->consumer); | |
6551 | ||
6552 | /* | |
6553 | * Clear the metadata channel. | |
6554 | * Metadata channel is not cleared per se but we still need to | |
6555 | * perform a rotation operation on it behind the scene. | |
6556 | */ | |
6557 | ret = consumer_clear_channel(socket, | |
6558 | reg->registry->reg.ust->metadata_key); | |
6559 | if (ret < 0) { | |
6560 | goto error; | |
6561 | } | |
6562 | } | |
6563 | break; | |
6564 | } | |
6565 | case LTTNG_BUFFER_PER_PID: | |
6566 | { | |
6567 | cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) { | |
6568 | struct consumer_socket *socket; | |
6569 | struct lttng_ht_iter chan_iter; | |
6570 | struct ust_app_channel *ua_chan; | |
6571 | struct ust_app_session *ua_sess; | |
6572 | struct ust_registry_session *registry; | |
6573 | ||
6574 | ua_sess = lookup_session_by_app(usess, app); | |
6575 | if (!ua_sess) { | |
6576 | /* Session not associated with this app. */ | |
6577 | continue; | |
6578 | } | |
6579 | ||
6580 | /* Get the right consumer socket for the application. */ | |
6581 | socket = consumer_find_socket_by_bitness(app->bits_per_long, | |
6582 | usess->consumer); | |
6583 | if (!socket) { | |
6584 | cmd_ret = LTTNG_ERR_INVALID; | |
6585 | goto error_socket; | |
6586 | } | |
6587 | ||
6588 | registry = get_session_registry(ua_sess); | |
6589 | if (!registry) { | |
6590 | DBG("Application session is being torn down. Skip application."); | |
6591 | continue; | |
6592 | } | |
6593 | ||
6594 | /* Clear the data channels. */ | |
6595 | cds_lfht_for_each_entry(ua_sess->channels->ht, &chan_iter.iter, | |
6596 | ua_chan, node.node) { | |
6597 | ret = consumer_clear_channel(socket, ua_chan->key); | |
6598 | if (ret < 0) { | |
6599 | /* Per-PID buffer and application going away. */ | |
6600 | if (ret == -LTTNG_ERR_CHAN_NOT_FOUND) { | |
6601 | continue; | |
6602 | } | |
6603 | goto error; | |
6604 | } | |
6605 | } | |
6606 | ||
6607 | (void) push_metadata(registry, usess->consumer); | |
6608 | ||
6609 | /* | |
6610 | * Clear the metadata channel. | |
6611 | * Metadata channel is not cleared per se but we still need to | |
6612 | * perform rotation operation on it behind the scene. | |
6613 | */ | |
6614 | ret = consumer_clear_channel(socket, registry->metadata_key); | |
6615 | if (ret < 0) { | |
6616 | /* Per-PID buffer and application going away. */ | |
6617 | if (ret == -LTTNG_ERR_CHAN_NOT_FOUND) { | |
6618 | continue; | |
6619 | } | |
6620 | goto error; | |
6621 | } | |
6622 | } | |
6623 | break; | |
6624 | } | |
6625 | default: | |
6626 | assert(0); | |
6627 | break; | |
6628 | } | |
6629 | ||
6630 | cmd_ret = LTTNG_OK; | |
6631 | goto end; | |
6632 | ||
6633 | error: | |
6634 | switch (-ret) { | |
6635 | case LTTCOMM_CONSUMERD_RELAYD_CLEAR_DISALLOWED: | |
6636 | cmd_ret = LTTNG_ERR_CLEAR_RELAY_DISALLOWED; | |
6637 | break; | |
6638 | default: | |
6639 | cmd_ret = LTTNG_ERR_CLEAR_FAIL_CONSUMER; | |
6640 | } | |
6641 | ||
6642 | error_socket: | |
6643 | end: | |
6644 | rcu_read_unlock(); | |
6645 | return cmd_ret; | |
6646 | } |