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