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 | 36 | #include "fd-limit.h" |
8782cc74 | 37 | #include "health-sessiond.h" |
56fff090 | 38 | #include "ust-app.h" |
48842b30 | 39 | #include "ust-consumer.h" |
d80a6244 | 40 | #include "ust-ctl.h" |
0b2dc8df | 41 | #include "utils.h" |
d80a6244 | 42 | |
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 | ||
1af53eb5 | 107 | /* Match the 4 elements of the key: name, filter, loglevel, exclusions */ |
18eace3b DG |
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 | ||
1af53eb5 JI |
143 | /* One of the exclusions is NULL, fail. */ |
144 | if ((key->exclusion && !event->exclusion) || (!key->exclusion && event->exclusion)) { | |
145 | goto no_match; | |
146 | } | |
147 | ||
148 | if (key->exclusion && event->exclusion) { | |
149 | /* Both exclusions exists, check count followed by the names. */ | |
150 | if (event->exclusion->count != key->exclusion->count || | |
151 | memcmp(event->exclusion->names, key->exclusion->names, | |
152 | event->exclusion->count * LTTNG_UST_SYM_NAME_LEN) != 0) { | |
153 | goto no_match; | |
154 | } | |
155 | } | |
156 | ||
157 | ||
025faf73 | 158 | /* Match. */ |
18eace3b DG |
159 | return 1; |
160 | ||
161 | no_match: | |
162 | return 0; | |
18eace3b DG |
163 | } |
164 | ||
025faf73 DG |
165 | /* |
166 | * Unique add of an ust app event in the given ht. This uses the custom | |
167 | * ht_match_ust_app_event match function and the event name as hash. | |
168 | */ | |
d0b96690 | 169 | static void add_unique_ust_app_event(struct ust_app_channel *ua_chan, |
18eace3b DG |
170 | struct ust_app_event *event) |
171 | { | |
172 | struct cds_lfht_node *node_ptr; | |
173 | struct ust_app_ht_key key; | |
d0b96690 | 174 | struct lttng_ht *ht; |
18eace3b | 175 | |
d0b96690 DG |
176 | assert(ua_chan); |
177 | assert(ua_chan->events); | |
18eace3b DG |
178 | assert(event); |
179 | ||
d0b96690 | 180 | ht = ua_chan->events; |
18eace3b DG |
181 | key.name = event->attr.name; |
182 | key.filter = event->filter; | |
183 | key.loglevel = event->attr.loglevel; | |
91c89f23 | 184 | key.exclusion = event->exclusion; |
18eace3b DG |
185 | |
186 | node_ptr = cds_lfht_add_unique(ht->ht, | |
187 | ht->hash_fct(event->node.key, lttng_ht_seed), | |
188 | ht_match_ust_app_event, &key, &event->node.node); | |
189 | assert(node_ptr == &event->node.node); | |
190 | } | |
191 | ||
d88aee68 DG |
192 | /* |
193 | * Close the notify socket from the given RCU head object. This MUST be called | |
194 | * through a call_rcu(). | |
195 | */ | |
196 | static void close_notify_sock_rcu(struct rcu_head *head) | |
197 | { | |
198 | int ret; | |
199 | struct ust_app_notify_sock_obj *obj = | |
200 | caa_container_of(head, struct ust_app_notify_sock_obj, head); | |
201 | ||
202 | /* Must have a valid fd here. */ | |
203 | assert(obj->fd >= 0); | |
204 | ||
205 | ret = close(obj->fd); | |
206 | if (ret) { | |
207 | ERR("close notify sock %d RCU", obj->fd); | |
208 | } | |
209 | lttng_fd_put(LTTNG_FD_APPS, 1); | |
210 | ||
211 | free(obj); | |
212 | } | |
213 | ||
7972aab2 DG |
214 | /* |
215 | * Return the session registry according to the buffer type of the given | |
216 | * session. | |
217 | * | |
218 | * A registry per UID object MUST exists before calling this function or else | |
219 | * it assert() if not found. RCU read side lock must be acquired. | |
220 | */ | |
221 | static struct ust_registry_session *get_session_registry( | |
222 | struct ust_app_session *ua_sess) | |
223 | { | |
224 | struct ust_registry_session *registry = NULL; | |
225 | ||
226 | assert(ua_sess); | |
227 | ||
228 | switch (ua_sess->buffer_type) { | |
229 | case LTTNG_BUFFER_PER_PID: | |
230 | { | |
231 | struct buffer_reg_pid *reg_pid = buffer_reg_pid_find(ua_sess->id); | |
232 | if (!reg_pid) { | |
233 | goto error; | |
234 | } | |
235 | registry = reg_pid->registry->reg.ust; | |
236 | break; | |
237 | } | |
238 | case LTTNG_BUFFER_PER_UID: | |
239 | { | |
240 | struct buffer_reg_uid *reg_uid = buffer_reg_uid_find( | |
241 | ua_sess->tracing_id, ua_sess->bits_per_long, ua_sess->uid); | |
242 | if (!reg_uid) { | |
243 | goto error; | |
244 | } | |
245 | registry = reg_uid->registry->reg.ust; | |
246 | break; | |
247 | } | |
248 | default: | |
249 | assert(0); | |
250 | }; | |
251 | ||
252 | error: | |
253 | return registry; | |
254 | } | |
255 | ||
55cc08a6 DG |
256 | /* |
257 | * Delete ust context safely. RCU read lock must be held before calling | |
258 | * this function. | |
259 | */ | |
260 | static | |
261 | void delete_ust_app_ctx(int sock, struct ust_app_ctx *ua_ctx) | |
262 | { | |
ffe60014 DG |
263 | int ret; |
264 | ||
265 | assert(ua_ctx); | |
266 | ||
55cc08a6 | 267 | if (ua_ctx->obj) { |
ffe60014 | 268 | ret = ustctl_release_object(sock, ua_ctx->obj); |
d0b96690 DG |
269 | if (ret < 0 && ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) { |
270 | ERR("UST app sock %d release ctx obj handle %d failed with ret %d", | |
271 | sock, ua_ctx->obj->handle, ret); | |
ffe60014 | 272 | } |
55cc08a6 DG |
273 | free(ua_ctx->obj); |
274 | } | |
275 | free(ua_ctx); | |
276 | } | |
277 | ||
d80a6244 DG |
278 | /* |
279 | * Delete ust app event safely. RCU read lock must be held before calling | |
280 | * this function. | |
281 | */ | |
8b366481 DG |
282 | static |
283 | void delete_ust_app_event(int sock, struct ust_app_event *ua_event) | |
d80a6244 | 284 | { |
ffe60014 DG |
285 | int ret; |
286 | ||
287 | assert(ua_event); | |
288 | ||
53a80697 | 289 | free(ua_event->filter); |
951f0b71 JI |
290 | if (ua_event->exclusion != NULL) |
291 | free(ua_event->exclusion); | |
edb67388 | 292 | if (ua_event->obj != NULL) { |
ffe60014 DG |
293 | ret = ustctl_release_object(sock, ua_event->obj); |
294 | if (ret < 0 && ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) { | |
295 | ERR("UST app sock %d release event obj failed with ret %d", | |
296 | sock, ret); | |
297 | } | |
edb67388 DG |
298 | free(ua_event->obj); |
299 | } | |
d80a6244 DG |
300 | free(ua_event); |
301 | } | |
302 | ||
303 | /* | |
7972aab2 DG |
304 | * Release ust data object of the given stream. |
305 | * | |
306 | * Return 0 on success or else a negative value. | |
d80a6244 | 307 | */ |
7972aab2 | 308 | static int release_ust_app_stream(int sock, struct ust_app_stream *stream) |
d80a6244 | 309 | { |
7972aab2 | 310 | int ret = 0; |
ffe60014 DG |
311 | |
312 | assert(stream); | |
313 | ||
8b366481 | 314 | if (stream->obj) { |
ffe60014 DG |
315 | ret = ustctl_release_object(sock, stream->obj); |
316 | if (ret < 0 && ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) { | |
317 | ERR("UST app sock %d release stream obj failed with ret %d", | |
318 | sock, ret); | |
319 | } | |
4063050c | 320 | lttng_fd_put(LTTNG_FD_APPS, 2); |
8b366481 DG |
321 | free(stream->obj); |
322 | } | |
7972aab2 DG |
323 | |
324 | return ret; | |
325 | } | |
326 | ||
327 | /* | |
328 | * Delete ust app stream safely. RCU read lock must be held before calling | |
329 | * this function. | |
330 | */ | |
331 | static | |
332 | void delete_ust_app_stream(int sock, struct ust_app_stream *stream) | |
333 | { | |
334 | assert(stream); | |
335 | ||
336 | (void) release_ust_app_stream(sock, stream); | |
84cd17c6 | 337 | free(stream); |
d80a6244 DG |
338 | } |
339 | ||
36b588ed MD |
340 | /* |
341 | * We need to execute ht_destroy outside of RCU read-side critical | |
0b2dc8df MD |
342 | * section and outside of call_rcu thread, so we postpone its execution |
343 | * using ht_cleanup_push. It is simpler than to change the semantic of | |
344 | * the many callers of delete_ust_app_session(). | |
36b588ed MD |
345 | */ |
346 | static | |
347 | void delete_ust_app_channel_rcu(struct rcu_head *head) | |
348 | { | |
349 | struct ust_app_channel *ua_chan = | |
350 | caa_container_of(head, struct ust_app_channel, rcu_head); | |
351 | ||
0b2dc8df MD |
352 | ht_cleanup_push(ua_chan->ctx); |
353 | ht_cleanup_push(ua_chan->events); | |
36b588ed MD |
354 | free(ua_chan); |
355 | } | |
356 | ||
d80a6244 DG |
357 | /* |
358 | * Delete ust app channel safely. RCU read lock must be held before calling | |
359 | * this function. | |
360 | */ | |
8b366481 | 361 | static |
d0b96690 DG |
362 | void delete_ust_app_channel(int sock, struct ust_app_channel *ua_chan, |
363 | struct ust_app *app) | |
d80a6244 DG |
364 | { |
365 | int ret; | |
bec39940 | 366 | struct lttng_ht_iter iter; |
d80a6244 | 367 | struct ust_app_event *ua_event; |
55cc08a6 | 368 | struct ust_app_ctx *ua_ctx; |
030a66fa | 369 | struct ust_app_stream *stream, *stmp; |
7972aab2 | 370 | struct ust_registry_session *registry; |
d80a6244 | 371 | |
ffe60014 DG |
372 | assert(ua_chan); |
373 | ||
374 | DBG3("UST app deleting channel %s", ua_chan->name); | |
375 | ||
55cc08a6 | 376 | /* Wipe stream */ |
d80a6244 | 377 | cds_list_for_each_entry_safe(stream, stmp, &ua_chan->streams.head, list) { |
84cd17c6 | 378 | cds_list_del(&stream->list); |
d80a6244 DG |
379 | delete_ust_app_stream(sock, stream); |
380 | } | |
381 | ||
55cc08a6 | 382 | /* Wipe context */ |
bec39940 | 383 | cds_lfht_for_each_entry(ua_chan->ctx->ht, &iter.iter, ua_ctx, node.node) { |
31746f93 | 384 | cds_list_del(&ua_ctx->list); |
bec39940 | 385 | ret = lttng_ht_del(ua_chan->ctx, &iter); |
55cc08a6 DG |
386 | assert(!ret); |
387 | delete_ust_app_ctx(sock, ua_ctx); | |
388 | } | |
d80a6244 | 389 | |
55cc08a6 | 390 | /* Wipe events */ |
bec39940 DG |
391 | cds_lfht_for_each_entry(ua_chan->events->ht, &iter.iter, ua_event, |
392 | node.node) { | |
393 | ret = lttng_ht_del(ua_chan->events, &iter); | |
525b0740 | 394 | assert(!ret); |
d80a6244 DG |
395 | delete_ust_app_event(sock, ua_event); |
396 | } | |
edb67388 | 397 | |
c8335706 MD |
398 | if (ua_chan->session->buffer_type == LTTNG_BUFFER_PER_PID) { |
399 | /* Wipe and free registry from session registry. */ | |
400 | registry = get_session_registry(ua_chan->session); | |
401 | if (registry) { | |
402 | ust_registry_channel_del_free(registry, ua_chan->key); | |
403 | } | |
7972aab2 | 404 | } |
d0b96690 | 405 | |
edb67388 | 406 | if (ua_chan->obj != NULL) { |
d0b96690 DG |
407 | /* Remove channel from application UST object descriptor. */ |
408 | iter.iter.node = &ua_chan->ust_objd_node.node; | |
409 | lttng_ht_del(app->ust_objd, &iter); | |
ffe60014 DG |
410 | ret = ustctl_release_object(sock, ua_chan->obj); |
411 | if (ret < 0 && ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) { | |
412 | ERR("UST app sock %d release channel obj failed with ret %d", | |
413 | sock, ret); | |
414 | } | |
7972aab2 | 415 | lttng_fd_put(LTTNG_FD_APPS, 1); |
edb67388 DG |
416 | free(ua_chan->obj); |
417 | } | |
36b588ed | 418 | call_rcu(&ua_chan->rcu_head, delete_ust_app_channel_rcu); |
d80a6244 DG |
419 | } |
420 | ||
331744e3 | 421 | /* |
1b532a60 DG |
422 | * Push metadata to consumer socket. |
423 | * | |
424 | * The socket lock MUST be acquired. | |
425 | * The ust app session lock MUST be acquired. | |
331744e3 JD |
426 | * |
427 | * On success, return the len of metadata pushed or else a negative value. | |
428 | */ | |
429 | ssize_t ust_app_push_metadata(struct ust_registry_session *registry, | |
430 | struct consumer_socket *socket, int send_zero_data) | |
431 | { | |
432 | int ret; | |
433 | char *metadata_str = NULL; | |
434 | size_t len, offset; | |
435 | ssize_t ret_val; | |
436 | ||
437 | assert(registry); | |
438 | assert(socket); | |
1b532a60 DG |
439 | |
440 | /* | |
441 | * On a push metadata error either the consumer is dead or the metadata | |
442 | * channel has been destroyed because its endpoint might have died (e.g: | |
443 | * relayd). If so, the metadata closed flag is set to 1 so we deny pushing | |
444 | * metadata again which is not valid anymore on the consumer side. | |
445 | * | |
446 | * The ust app session mutex locked allows us to make this check without | |
447 | * the registry lock. | |
448 | */ | |
449 | if (registry->metadata_closed) { | |
450 | return -EPIPE; | |
451 | } | |
331744e3 JD |
452 | |
453 | pthread_mutex_lock(®istry->lock); | |
454 | ||
455 | offset = registry->metadata_len_sent; | |
456 | len = registry->metadata_len - registry->metadata_len_sent; | |
457 | if (len == 0) { | |
458 | DBG3("No metadata to push for metadata key %" PRIu64, | |
459 | registry->metadata_key); | |
460 | ret_val = len; | |
461 | if (send_zero_data) { | |
462 | DBG("No metadata to push"); | |
463 | goto push_data; | |
464 | } | |
465 | goto end; | |
466 | } | |
467 | ||
468 | /* Allocate only what we have to send. */ | |
469 | metadata_str = zmalloc(len); | |
470 | if (!metadata_str) { | |
471 | PERROR("zmalloc ust app metadata string"); | |
472 | ret_val = -ENOMEM; | |
473 | goto error; | |
474 | } | |
475 | /* Copy what we haven't send out. */ | |
476 | memcpy(metadata_str, registry->metadata + offset, len); | |
477 | registry->metadata_len_sent += len; | |
478 | ||
479 | push_data: | |
480 | pthread_mutex_unlock(®istry->lock); | |
481 | ret = consumer_push_metadata(socket, registry->metadata_key, | |
482 | metadata_str, len, offset); | |
483 | if (ret < 0) { | |
484 | ret_val = ret; | |
485 | goto error_push; | |
486 | } | |
487 | ||
488 | free(metadata_str); | |
489 | return len; | |
490 | ||
491 | end: | |
492 | error: | |
493 | pthread_mutex_unlock(®istry->lock); | |
494 | error_push: | |
495 | free(metadata_str); | |
496 | return ret_val; | |
497 | } | |
498 | ||
d88aee68 DG |
499 | /* |
500 | * For a given application and session, push metadata to consumer. The session | |
501 | * lock MUST be acquired here before calling this. | |
331744e3 JD |
502 | * Either sock or consumer is required : if sock is NULL, the default |
503 | * socket to send the metadata is retrieved from consumer, if sock | |
504 | * is not NULL we use it to send the metadata. | |
d88aee68 DG |
505 | * |
506 | * Return 0 on success else a negative error. | |
507 | */ | |
7972aab2 DG |
508 | static int push_metadata(struct ust_registry_session *registry, |
509 | struct consumer_output *consumer) | |
d88aee68 | 510 | { |
331744e3 JD |
511 | int ret_val; |
512 | ssize_t ret; | |
d88aee68 DG |
513 | struct consumer_socket *socket; |
514 | ||
7972aab2 DG |
515 | assert(registry); |
516 | assert(consumer); | |
517 | ||
518 | rcu_read_lock(); | |
d88aee68 | 519 | |
7972aab2 DG |
520 | /* |
521 | * Means that no metadata was assigned to the session. This can happens if | |
522 | * no start has been done previously. | |
523 | */ | |
524 | if (!registry->metadata_key) { | |
331744e3 | 525 | ret_val = 0; |
1b532a60 | 526 | goto end_rcu_unlock; |
d88aee68 DG |
527 | } |
528 | ||
d88aee68 | 529 | /* Get consumer socket to use to push the metadata.*/ |
7972aab2 DG |
530 | socket = consumer_find_socket_by_bitness(registry->bits_per_long, |
531 | consumer); | |
d88aee68 | 532 | if (!socket) { |
331744e3 | 533 | ret_val = -1; |
d88aee68 DG |
534 | goto error_rcu_unlock; |
535 | } | |
536 | ||
537 | /* | |
538 | * TODO: Currently, we hold the socket lock around sampling of the next | |
539 | * metadata segment to ensure we send metadata over the consumer socket in | |
540 | * the correct order. This makes the registry lock nest inside the socket | |
541 | * lock. | |
542 | * | |
543 | * Please note that this is a temporary measure: we should move this lock | |
544 | * back into ust_consumer_push_metadata() when the consumer gets the | |
545 | * ability to reorder the metadata it receives. | |
546 | */ | |
547 | pthread_mutex_lock(socket->lock); | |
331744e3 JD |
548 | ret = ust_app_push_metadata(registry, socket, 0); |
549 | pthread_mutex_unlock(socket->lock); | |
d88aee68 | 550 | if (ret < 0) { |
331744e3 | 551 | ret_val = ret; |
d88aee68 DG |
552 | goto error_rcu_unlock; |
553 | } | |
554 | ||
d88aee68 | 555 | rcu_read_unlock(); |
d88aee68 DG |
556 | return 0; |
557 | ||
d88aee68 | 558 | error_rcu_unlock: |
1b532a60 DG |
559 | /* |
560 | * On error, flag the registry that the metadata is closed. We were unable | |
561 | * to push anything and this means that either the consumer is not | |
562 | * responding or the metadata cache has been destroyed on the consumer. | |
563 | */ | |
564 | registry->metadata_closed = 1; | |
565 | end_rcu_unlock: | |
d88aee68 | 566 | rcu_read_unlock(); |
331744e3 | 567 | return ret_val; |
d88aee68 DG |
568 | } |
569 | ||
570 | /* | |
571 | * Send to the consumer a close metadata command for the given session. Once | |
572 | * done, the metadata channel is deleted and the session metadata pointer is | |
573 | * nullified. The session lock MUST be acquired here unless the application is | |
574 | * in the destroy path. | |
575 | * | |
576 | * Return 0 on success else a negative value. | |
577 | */ | |
7972aab2 DG |
578 | static int close_metadata(struct ust_registry_session *registry, |
579 | struct consumer_output *consumer) | |
d88aee68 DG |
580 | { |
581 | int ret; | |
582 | struct consumer_socket *socket; | |
583 | ||
7972aab2 DG |
584 | assert(registry); |
585 | assert(consumer); | |
d88aee68 | 586 | |
7972aab2 DG |
587 | rcu_read_lock(); |
588 | ||
589 | if (!registry->metadata_key || registry->metadata_closed) { | |
d88aee68 | 590 | ret = 0; |
1b532a60 | 591 | goto end; |
d88aee68 DG |
592 | } |
593 | ||
d88aee68 | 594 | /* Get consumer socket to use to push the metadata.*/ |
7972aab2 DG |
595 | socket = consumer_find_socket_by_bitness(registry->bits_per_long, |
596 | consumer); | |
d88aee68 DG |
597 | if (!socket) { |
598 | ret = -1; | |
7972aab2 | 599 | goto error; |
d88aee68 DG |
600 | } |
601 | ||
7972aab2 | 602 | ret = consumer_close_metadata(socket, registry->metadata_key); |
d88aee68 | 603 | if (ret < 0) { |
7972aab2 | 604 | goto error; |
d88aee68 DG |
605 | } |
606 | ||
d88aee68 | 607 | error: |
1b532a60 DG |
608 | /* |
609 | * Metadata closed. Even on error this means that the consumer is not | |
610 | * responding or not found so either way a second close should NOT be emit | |
611 | * for this registry. | |
612 | */ | |
613 | registry->metadata_closed = 1; | |
614 | end: | |
7972aab2 | 615 | rcu_read_unlock(); |
d88aee68 DG |
616 | return ret; |
617 | } | |
618 | ||
36b588ed MD |
619 | /* |
620 | * We need to execute ht_destroy outside of RCU read-side critical | |
0b2dc8df MD |
621 | * section and outside of call_rcu thread, so we postpone its execution |
622 | * using ht_cleanup_push. It is simpler than to change the semantic of | |
623 | * the many callers of delete_ust_app_session(). | |
36b588ed MD |
624 | */ |
625 | static | |
626 | void delete_ust_app_session_rcu(struct rcu_head *head) | |
627 | { | |
628 | struct ust_app_session *ua_sess = | |
629 | caa_container_of(head, struct ust_app_session, rcu_head); | |
630 | ||
0b2dc8df | 631 | ht_cleanup_push(ua_sess->channels); |
36b588ed MD |
632 | free(ua_sess); |
633 | } | |
634 | ||
d80a6244 DG |
635 | /* |
636 | * Delete ust app session safely. RCU read lock must be held before calling | |
637 | * this function. | |
638 | */ | |
8b366481 | 639 | static |
d0b96690 DG |
640 | void delete_ust_app_session(int sock, struct ust_app_session *ua_sess, |
641 | struct ust_app *app) | |
d80a6244 DG |
642 | { |
643 | int ret; | |
bec39940 | 644 | struct lttng_ht_iter iter; |
d80a6244 | 645 | struct ust_app_channel *ua_chan; |
7972aab2 | 646 | struct ust_registry_session *registry; |
d80a6244 | 647 | |
d88aee68 DG |
648 | assert(ua_sess); |
649 | ||
1b532a60 DG |
650 | pthread_mutex_lock(&ua_sess->lock); |
651 | ||
7972aab2 | 652 | registry = get_session_registry(ua_sess); |
1b532a60 | 653 | if (registry && !registry->metadata_closed) { |
d88aee68 | 654 | /* Push metadata for application before freeing the application. */ |
7972aab2 | 655 | (void) push_metadata(registry, ua_sess->consumer); |
d88aee68 | 656 | |
7972aab2 DG |
657 | /* |
658 | * Don't ask to close metadata for global per UID buffers. Close | |
1b532a60 DG |
659 | * metadata only on destroy trace session in this case. Also, the |
660 | * previous push metadata could have flag the metadata registry to | |
661 | * close so don't send a close command if closed. | |
7972aab2 | 662 | */ |
1b532a60 DG |
663 | if (ua_sess->buffer_type != LTTNG_BUFFER_PER_UID && |
664 | !registry->metadata_closed) { | |
7972aab2 DG |
665 | /* And ask to close it for this session registry. */ |
666 | (void) close_metadata(registry, ua_sess->consumer); | |
667 | } | |
d80a6244 DG |
668 | } |
669 | ||
bec39940 DG |
670 | cds_lfht_for_each_entry(ua_sess->channels->ht, &iter.iter, ua_chan, |
671 | node.node) { | |
672 | ret = lttng_ht_del(ua_sess->channels, &iter); | |
525b0740 | 673 | assert(!ret); |
d0b96690 | 674 | delete_ust_app_channel(sock, ua_chan, app); |
d80a6244 | 675 | } |
d80a6244 | 676 | |
7972aab2 DG |
677 | /* In case of per PID, the registry is kept in the session. */ |
678 | if (ua_sess->buffer_type == LTTNG_BUFFER_PER_PID) { | |
679 | struct buffer_reg_pid *reg_pid = buffer_reg_pid_find(ua_sess->id); | |
680 | if (reg_pid) { | |
681 | buffer_reg_pid_remove(reg_pid); | |
682 | buffer_reg_pid_destroy(reg_pid); | |
683 | } | |
684 | } | |
d0b96690 | 685 | |
aee6bafd | 686 | if (ua_sess->handle != -1) { |
ffe60014 DG |
687 | ret = ustctl_release_handle(sock, ua_sess->handle); |
688 | if (ret < 0 && ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) { | |
689 | ERR("UST app sock %d release session handle failed with ret %d", | |
690 | sock, ret); | |
691 | } | |
aee6bafd | 692 | } |
1b532a60 DG |
693 | pthread_mutex_unlock(&ua_sess->lock); |
694 | ||
36b588ed | 695 | call_rcu(&ua_sess->rcu_head, delete_ust_app_session_rcu); |
d80a6244 | 696 | } |
91d76f53 DG |
697 | |
698 | /* | |
284d8f55 DG |
699 | * Delete a traceable application structure from the global list. Never call |
700 | * this function outside of a call_rcu call. | |
36b588ed MD |
701 | * |
702 | * RCU read side lock should _NOT_ be held when calling this function. | |
91d76f53 | 703 | */ |
8b366481 DG |
704 | static |
705 | void delete_ust_app(struct ust_app *app) | |
91d76f53 | 706 | { |
8b366481 | 707 | int ret, sock; |
d42f20df | 708 | struct ust_app_session *ua_sess, *tmp_ua_sess; |
44d3bd01 | 709 | |
d80a6244 | 710 | /* Delete ust app sessions info */ |
852d0037 DG |
711 | sock = app->sock; |
712 | app->sock = -1; | |
d80a6244 | 713 | |
8b366481 | 714 | /* Wipe sessions */ |
d42f20df DG |
715 | cds_list_for_each_entry_safe(ua_sess, tmp_ua_sess, &app->teardown_head, |
716 | teardown_node) { | |
717 | /* Free every object in the session and the session. */ | |
36b588ed | 718 | rcu_read_lock(); |
d0b96690 | 719 | delete_ust_app_session(sock, ua_sess, app); |
36b588ed | 720 | rcu_read_unlock(); |
d80a6244 | 721 | } |
36b588ed | 722 | |
0b2dc8df MD |
723 | ht_cleanup_push(app->sessions); |
724 | ht_cleanup_push(app->ust_objd); | |
d80a6244 | 725 | |
6414a713 | 726 | /* |
852d0037 DG |
727 | * Wait until we have deleted the application from the sock hash table |
728 | * before closing this socket, otherwise an application could re-use the | |
729 | * socket ID and race with the teardown, using the same hash table entry. | |
730 | * | |
731 | * It's OK to leave the close in call_rcu. We want it to stay unique for | |
732 | * all RCU readers that could run concurrently with unregister app, | |
733 | * therefore we _need_ to only close that socket after a grace period. So | |
734 | * it should stay in this RCU callback. | |
735 | * | |
736 | * This close() is a very important step of the synchronization model so | |
737 | * every modification to this function must be carefully reviewed. | |
6414a713 | 738 | */ |
799e2c4f MD |
739 | ret = close(sock); |
740 | if (ret) { | |
741 | PERROR("close"); | |
742 | } | |
4063050c | 743 | lttng_fd_put(LTTNG_FD_APPS, 1); |
d80a6244 | 744 | |
852d0037 | 745 | DBG2("UST app pid %d deleted", app->pid); |
284d8f55 | 746 | free(app); |
099e26bd DG |
747 | } |
748 | ||
749 | /* | |
f6a9efaa | 750 | * URCU intermediate call to delete an UST app. |
099e26bd | 751 | */ |
8b366481 DG |
752 | static |
753 | void delete_ust_app_rcu(struct rcu_head *head) | |
099e26bd | 754 | { |
bec39940 DG |
755 | struct lttng_ht_node_ulong *node = |
756 | caa_container_of(head, struct lttng_ht_node_ulong, head); | |
f6a9efaa | 757 | struct ust_app *app = |
852d0037 | 758 | caa_container_of(node, struct ust_app, pid_n); |
f6a9efaa | 759 | |
852d0037 | 760 | DBG3("Call RCU deleting app PID %d", app->pid); |
f6a9efaa | 761 | delete_ust_app(app); |
099e26bd DG |
762 | } |
763 | ||
ffe60014 DG |
764 | /* |
765 | * Delete the session from the application ht and delete the data structure by | |
766 | * freeing every object inside and releasing them. | |
767 | */ | |
d0b96690 | 768 | static void destroy_app_session(struct ust_app *app, |
ffe60014 DG |
769 | struct ust_app_session *ua_sess) |
770 | { | |
771 | int ret; | |
772 | struct lttng_ht_iter iter; | |
773 | ||
774 | assert(app); | |
775 | assert(ua_sess); | |
776 | ||
777 | iter.iter.node = &ua_sess->node.node; | |
778 | ret = lttng_ht_del(app->sessions, &iter); | |
779 | if (ret) { | |
780 | /* Already scheduled for teardown. */ | |
781 | goto end; | |
782 | } | |
783 | ||
784 | /* Once deleted, free the data structure. */ | |
d0b96690 | 785 | delete_ust_app_session(app->sock, ua_sess, app); |
ffe60014 DG |
786 | |
787 | end: | |
788 | return; | |
789 | } | |
790 | ||
8b366481 DG |
791 | /* |
792 | * Alloc new UST app session. | |
793 | */ | |
794 | static | |
d0b96690 | 795 | struct ust_app_session *alloc_ust_app_session(struct ust_app *app) |
8b366481 DG |
796 | { |
797 | struct ust_app_session *ua_sess; | |
798 | ||
799 | /* Init most of the default value by allocating and zeroing */ | |
800 | ua_sess = zmalloc(sizeof(struct ust_app_session)); | |
801 | if (ua_sess == NULL) { | |
802 | PERROR("malloc"); | |
ffe60014 | 803 | goto error_free; |
8b366481 DG |
804 | } |
805 | ||
806 | ua_sess->handle = -1; | |
bec39940 | 807 | ua_sess->channels = lttng_ht_new(0, LTTNG_HT_TYPE_STRING); |
d0b96690 | 808 | pthread_mutex_init(&ua_sess->lock, NULL); |
ffe60014 | 809 | |
8b366481 DG |
810 | return ua_sess; |
811 | ||
ffe60014 | 812 | error_free: |
8b366481 DG |
813 | return NULL; |
814 | } | |
815 | ||
816 | /* | |
817 | * Alloc new UST app channel. | |
818 | */ | |
819 | static | |
820 | struct ust_app_channel *alloc_ust_app_channel(char *name, | |
d0b96690 | 821 | struct ust_app_session *ua_sess, |
ffe60014 | 822 | struct lttng_ust_channel_attr *attr) |
8b366481 DG |
823 | { |
824 | struct ust_app_channel *ua_chan; | |
825 | ||
826 | /* Init most of the default value by allocating and zeroing */ | |
827 | ua_chan = zmalloc(sizeof(struct ust_app_channel)); | |
828 | if (ua_chan == NULL) { | |
829 | PERROR("malloc"); | |
830 | goto error; | |
831 | } | |
832 | ||
833 | /* Setup channel name */ | |
834 | strncpy(ua_chan->name, name, sizeof(ua_chan->name)); | |
835 | ua_chan->name[sizeof(ua_chan->name) - 1] = '\0'; | |
836 | ||
837 | ua_chan->enabled = 1; | |
838 | ua_chan->handle = -1; | |
45893984 | 839 | ua_chan->session = ua_sess; |
ffe60014 | 840 | ua_chan->key = get_next_channel_key(); |
bec39940 DG |
841 | ua_chan->ctx = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG); |
842 | ua_chan->events = lttng_ht_new(0, LTTNG_HT_TYPE_STRING); | |
843 | lttng_ht_node_init_str(&ua_chan->node, ua_chan->name); | |
8b366481 DG |
844 | |
845 | CDS_INIT_LIST_HEAD(&ua_chan->streams.head); | |
31746f93 | 846 | CDS_INIT_LIST_HEAD(&ua_chan->ctx_list); |
8b366481 DG |
847 | |
848 | /* Copy attributes */ | |
849 | if (attr) { | |
ffe60014 | 850 | /* Translate from lttng_ust_channel to ustctl_consumer_channel_attr. */ |
2fe6e7f5 DG |
851 | ua_chan->attr.subbuf_size = attr->subbuf_size; |
852 | ua_chan->attr.num_subbuf = attr->num_subbuf; | |
853 | ua_chan->attr.overwrite = attr->overwrite; | |
854 | ua_chan->attr.switch_timer_interval = attr->switch_timer_interval; | |
855 | ua_chan->attr.read_timer_interval = attr->read_timer_interval; | |
856 | ua_chan->attr.output = attr->output; | |
8b366481 | 857 | } |
ffe60014 DG |
858 | /* By default, the channel is a per cpu channel. */ |
859 | ua_chan->attr.type = LTTNG_UST_CHAN_PER_CPU; | |
8b366481 DG |
860 | |
861 | DBG3("UST app channel %s allocated", ua_chan->name); | |
862 | ||
863 | return ua_chan; | |
864 | ||
865 | error: | |
866 | return NULL; | |
867 | } | |
868 | ||
37f1c236 DG |
869 | /* |
870 | * Allocate and initialize a UST app stream. | |
871 | * | |
872 | * Return newly allocated stream pointer or NULL on error. | |
873 | */ | |
ffe60014 | 874 | struct ust_app_stream *ust_app_alloc_stream(void) |
37f1c236 DG |
875 | { |
876 | struct ust_app_stream *stream = NULL; | |
877 | ||
878 | stream = zmalloc(sizeof(*stream)); | |
879 | if (stream == NULL) { | |
880 | PERROR("zmalloc ust app stream"); | |
881 | goto error; | |
882 | } | |
883 | ||
884 | /* Zero could be a valid value for a handle so flag it to -1. */ | |
885 | stream->handle = -1; | |
886 | ||
887 | error: | |
888 | return stream; | |
889 | } | |
890 | ||
8b366481 DG |
891 | /* |
892 | * Alloc new UST app event. | |
893 | */ | |
894 | static | |
895 | struct ust_app_event *alloc_ust_app_event(char *name, | |
896 | struct lttng_ust_event *attr) | |
897 | { | |
898 | struct ust_app_event *ua_event; | |
899 | ||
900 | /* Init most of the default value by allocating and zeroing */ | |
901 | ua_event = zmalloc(sizeof(struct ust_app_event)); | |
902 | if (ua_event == NULL) { | |
903 | PERROR("malloc"); | |
904 | goto error; | |
905 | } | |
906 | ||
907 | ua_event->enabled = 1; | |
908 | strncpy(ua_event->name, name, sizeof(ua_event->name)); | |
909 | ua_event->name[sizeof(ua_event->name) - 1] = '\0'; | |
bec39940 | 910 | lttng_ht_node_init_str(&ua_event->node, ua_event->name); |
8b366481 DG |
911 | |
912 | /* Copy attributes */ | |
913 | if (attr) { | |
914 | memcpy(&ua_event->attr, attr, sizeof(ua_event->attr)); | |
915 | } | |
916 | ||
917 | DBG3("UST app event %s allocated", ua_event->name); | |
918 | ||
919 | return ua_event; | |
920 | ||
921 | error: | |
922 | return NULL; | |
923 | } | |
924 | ||
925 | /* | |
926 | * Alloc new UST app context. | |
927 | */ | |
928 | static | |
929 | struct ust_app_ctx *alloc_ust_app_ctx(struct lttng_ust_context *uctx) | |
930 | { | |
931 | struct ust_app_ctx *ua_ctx; | |
932 | ||
933 | ua_ctx = zmalloc(sizeof(struct ust_app_ctx)); | |
934 | if (ua_ctx == NULL) { | |
935 | goto error; | |
936 | } | |
937 | ||
31746f93 DG |
938 | CDS_INIT_LIST_HEAD(&ua_ctx->list); |
939 | ||
8b366481 DG |
940 | if (uctx) { |
941 | memcpy(&ua_ctx->ctx, uctx, sizeof(ua_ctx->ctx)); | |
942 | } | |
943 | ||
944 | DBG3("UST app context %d allocated", ua_ctx->ctx.ctx); | |
945 | ||
946 | error: | |
947 | return ua_ctx; | |
948 | } | |
949 | ||
025faf73 DG |
950 | /* |
951 | * Allocate a filter and copy the given original filter. | |
952 | * | |
953 | * Return allocated filter or NULL on error. | |
954 | */ | |
955 | static struct lttng_ust_filter_bytecode *alloc_copy_ust_app_filter( | |
956 | struct lttng_ust_filter_bytecode *orig_f) | |
957 | { | |
958 | struct lttng_ust_filter_bytecode *filter = NULL; | |
959 | ||
960 | /* Copy filter bytecode */ | |
961 | filter = zmalloc(sizeof(*filter) + orig_f->len); | |
962 | if (!filter) { | |
963 | PERROR("zmalloc alloc ust app filter"); | |
964 | goto error; | |
965 | } | |
966 | ||
967 | memcpy(filter, orig_f, sizeof(*filter) + orig_f->len); | |
968 | ||
969 | error: | |
970 | return filter; | |
971 | } | |
972 | ||
099e26bd | 973 | /* |
421cb601 DG |
974 | * Find an ust_app using the sock and return it. RCU read side lock must be |
975 | * held before calling this helper function. | |
099e26bd | 976 | */ |
f20baf8e | 977 | struct ust_app *ust_app_find_by_sock(int sock) |
099e26bd | 978 | { |
bec39940 | 979 | struct lttng_ht_node_ulong *node; |
bec39940 | 980 | struct lttng_ht_iter iter; |
f6a9efaa | 981 | |
852d0037 | 982 | lttng_ht_lookup(ust_app_ht_by_sock, (void *)((unsigned long) sock), &iter); |
bec39940 | 983 | node = lttng_ht_iter_get_node_ulong(&iter); |
f6a9efaa DG |
984 | if (node == NULL) { |
985 | DBG2("UST app find by sock %d not found", sock); | |
f6a9efaa DG |
986 | goto error; |
987 | } | |
852d0037 DG |
988 | |
989 | return caa_container_of(node, struct ust_app, sock_n); | |
f6a9efaa DG |
990 | |
991 | error: | |
992 | return NULL; | |
099e26bd DG |
993 | } |
994 | ||
d0b96690 DG |
995 | /* |
996 | * Find an ust_app using the notify sock and return it. RCU read side lock must | |
997 | * be held before calling this helper function. | |
998 | */ | |
999 | static struct ust_app *find_app_by_notify_sock(int sock) | |
1000 | { | |
1001 | struct lttng_ht_node_ulong *node; | |
1002 | struct lttng_ht_iter iter; | |
1003 | ||
1004 | lttng_ht_lookup(ust_app_ht_by_notify_sock, (void *)((unsigned long) sock), | |
1005 | &iter); | |
1006 | node = lttng_ht_iter_get_node_ulong(&iter); | |
1007 | if (node == NULL) { | |
1008 | DBG2("UST app find by notify sock %d not found", sock); | |
1009 | goto error; | |
1010 | } | |
1011 | ||
1012 | return caa_container_of(node, struct ust_app, notify_sock_n); | |
1013 | ||
1014 | error: | |
1015 | return NULL; | |
1016 | } | |
1017 | ||
025faf73 DG |
1018 | /* |
1019 | * Lookup for an ust app event based on event name, filter bytecode and the | |
1020 | * event loglevel. | |
1021 | * | |
1022 | * Return an ust_app_event object or NULL on error. | |
1023 | */ | |
18eace3b | 1024 | static struct ust_app_event *find_ust_app_event(struct lttng_ht *ht, |
39c5a3a7 JI |
1025 | char *name, struct lttng_ust_filter_bytecode *filter, int loglevel, |
1026 | const struct lttng_event_exclusion *exclusion) | |
18eace3b DG |
1027 | { |
1028 | struct lttng_ht_iter iter; | |
1029 | struct lttng_ht_node_str *node; | |
1030 | struct ust_app_event *event = NULL; | |
1031 | struct ust_app_ht_key key; | |
18eace3b DG |
1032 | |
1033 | assert(name); | |
1034 | assert(ht); | |
1035 | ||
1036 | /* Setup key for event lookup. */ | |
1037 | key.name = name; | |
1038 | key.filter = filter; | |
1039 | key.loglevel = loglevel; | |
39c5a3a7 JI |
1040 | /* lttng_event_exclusion and lttng_ust_event_exclusion structures are similar */ |
1041 | key.exclusion = (struct lttng_ust_event_exclusion *)exclusion; | |
18eace3b | 1042 | |
025faf73 DG |
1043 | /* Lookup using the event name as hash and a custom match fct. */ |
1044 | cds_lfht_lookup(ht->ht, ht->hash_fct((void *) name, lttng_ht_seed), | |
1045 | ht_match_ust_app_event, &key, &iter.iter); | |
18eace3b DG |
1046 | node = lttng_ht_iter_get_node_str(&iter); |
1047 | if (node == NULL) { | |
1048 | goto end; | |
1049 | } | |
1050 | ||
1051 | event = caa_container_of(node, struct ust_app_event, node); | |
1052 | ||
1053 | end: | |
18eace3b DG |
1054 | return event; |
1055 | } | |
1056 | ||
55cc08a6 DG |
1057 | /* |
1058 | * Create the channel context on the tracer. | |
d0b96690 DG |
1059 | * |
1060 | * Called with UST app session lock held. | |
55cc08a6 DG |
1061 | */ |
1062 | static | |
1063 | int create_ust_channel_context(struct ust_app_channel *ua_chan, | |
1064 | struct ust_app_ctx *ua_ctx, struct ust_app *app) | |
1065 | { | |
1066 | int ret; | |
1067 | ||
840cb59c | 1068 | health_code_update(); |
86acf0da | 1069 | |
852d0037 | 1070 | ret = ustctl_add_context(app->sock, &ua_ctx->ctx, |
55cc08a6 DG |
1071 | ua_chan->obj, &ua_ctx->obj); |
1072 | if (ret < 0) { | |
ffe60014 DG |
1073 | if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) { |
1074 | ERR("UST app create channel context failed for app (pid: %d) " | |
1075 | "with ret %d", app->pid, ret); | |
1076 | } else { | |
3757b385 DG |
1077 | /* |
1078 | * This is normal behavior, an application can die during the | |
1079 | * creation process. Don't report an error so the execution can | |
1080 | * continue normally. | |
1081 | */ | |
1082 | ret = 0; | |
ffe60014 DG |
1083 | DBG3("UST app disable event failed. Application is dead."); |
1084 | } | |
55cc08a6 DG |
1085 | goto error; |
1086 | } | |
1087 | ||
1088 | ua_ctx->handle = ua_ctx->obj->handle; | |
1089 | ||
d0b96690 DG |
1090 | DBG2("UST app context handle %d created successfully for channel %s", |
1091 | ua_ctx->handle, ua_chan->name); | |
55cc08a6 DG |
1092 | |
1093 | error: | |
840cb59c | 1094 | health_code_update(); |
55cc08a6 DG |
1095 | return ret; |
1096 | } | |
1097 | ||
53a80697 MD |
1098 | /* |
1099 | * Set the filter on the tracer. | |
1100 | */ | |
1101 | static | |
1102 | int set_ust_event_filter(struct ust_app_event *ua_event, | |
1103 | struct ust_app *app) | |
1104 | { | |
1105 | int ret; | |
1106 | ||
840cb59c | 1107 | health_code_update(); |
86acf0da | 1108 | |
53a80697 | 1109 | if (!ua_event->filter) { |
86acf0da DG |
1110 | ret = 0; |
1111 | goto error; | |
53a80697 MD |
1112 | } |
1113 | ||
1114 | ret = ustctl_set_filter(app->sock, ua_event->filter, | |
1115 | ua_event->obj); | |
1116 | if (ret < 0) { | |
ffe60014 DG |
1117 | if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) { |
1118 | ERR("UST app event %s filter failed for app (pid: %d) " | |
1119 | "with ret %d", ua_event->attr.name, app->pid, ret); | |
1120 | } else { | |
3757b385 DG |
1121 | /* |
1122 | * This is normal behavior, an application can die during the | |
1123 | * creation process. Don't report an error so the execution can | |
1124 | * continue normally. | |
1125 | */ | |
1126 | ret = 0; | |
ffe60014 DG |
1127 | DBG3("UST app filter event failed. Application is dead."); |
1128 | } | |
53a80697 MD |
1129 | goto error; |
1130 | } | |
1131 | ||
1132 | DBG2("UST filter set successfully for event %s", ua_event->name); | |
1133 | ||
1134 | error: | |
840cb59c | 1135 | health_code_update(); |
53a80697 MD |
1136 | return ret; |
1137 | } | |
1138 | ||
9730260e DG |
1139 | /* |
1140 | * Disable the specified event on to UST tracer for the UST session. | |
1141 | */ | |
1142 | static int disable_ust_event(struct ust_app *app, | |
1143 | struct ust_app_session *ua_sess, struct ust_app_event *ua_event) | |
1144 | { | |
1145 | int ret; | |
1146 | ||
840cb59c | 1147 | health_code_update(); |
86acf0da | 1148 | |
852d0037 | 1149 | ret = ustctl_disable(app->sock, ua_event->obj); |
9730260e | 1150 | if (ret < 0) { |
ffe60014 DG |
1151 | if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) { |
1152 | ERR("UST app event %s disable failed for app (pid: %d) " | |
1153 | "and session handle %d with ret %d", | |
1154 | ua_event->attr.name, app->pid, ua_sess->handle, ret); | |
1155 | } else { | |
3757b385 DG |
1156 | /* |
1157 | * This is normal behavior, an application can die during the | |
1158 | * creation process. Don't report an error so the execution can | |
1159 | * continue normally. | |
1160 | */ | |
1161 | ret = 0; | |
ffe60014 DG |
1162 | DBG3("UST app disable event failed. Application is dead."); |
1163 | } | |
9730260e DG |
1164 | goto error; |
1165 | } | |
1166 | ||
1167 | DBG2("UST app event %s disabled successfully for app (pid: %d)", | |
852d0037 | 1168 | ua_event->attr.name, app->pid); |
9730260e DG |
1169 | |
1170 | error: | |
840cb59c | 1171 | health_code_update(); |
9730260e DG |
1172 | return ret; |
1173 | } | |
1174 | ||
78f0bacd DG |
1175 | /* |
1176 | * Disable the specified channel on to UST tracer for the UST session. | |
1177 | */ | |
1178 | static int disable_ust_channel(struct ust_app *app, | |
1179 | struct ust_app_session *ua_sess, struct ust_app_channel *ua_chan) | |
1180 | { | |
1181 | int ret; | |
1182 | ||
840cb59c | 1183 | health_code_update(); |
86acf0da | 1184 | |
852d0037 | 1185 | ret = ustctl_disable(app->sock, ua_chan->obj); |
78f0bacd | 1186 | if (ret < 0) { |
ffe60014 DG |
1187 | if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) { |
1188 | ERR("UST app channel %s disable failed for app (pid: %d) " | |
1189 | "and session handle %d with ret %d", | |
1190 | ua_chan->name, app->pid, ua_sess->handle, ret); | |
1191 | } else { | |
3757b385 DG |
1192 | /* |
1193 | * This is normal behavior, an application can die during the | |
1194 | * creation process. Don't report an error so the execution can | |
1195 | * continue normally. | |
1196 | */ | |
1197 | ret = 0; | |
ffe60014 DG |
1198 | DBG3("UST app disable channel failed. Application is dead."); |
1199 | } | |
78f0bacd DG |
1200 | goto error; |
1201 | } | |
1202 | ||
78f0bacd | 1203 | DBG2("UST app channel %s disabled successfully for app (pid: %d)", |
852d0037 | 1204 | ua_chan->name, app->pid); |
78f0bacd DG |
1205 | |
1206 | error: | |
840cb59c | 1207 | health_code_update(); |
78f0bacd DG |
1208 | return ret; |
1209 | } | |
1210 | ||
1211 | /* | |
1212 | * Enable the specified channel on to UST tracer for the UST session. | |
1213 | */ | |
1214 | static int enable_ust_channel(struct ust_app *app, | |
1215 | struct ust_app_session *ua_sess, struct ust_app_channel *ua_chan) | |
1216 | { | |
1217 | int ret; | |
1218 | ||
840cb59c | 1219 | health_code_update(); |
86acf0da | 1220 | |
852d0037 | 1221 | ret = ustctl_enable(app->sock, ua_chan->obj); |
78f0bacd | 1222 | if (ret < 0) { |
ffe60014 DG |
1223 | if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) { |
1224 | ERR("UST app channel %s enable failed for app (pid: %d) " | |
1225 | "and session handle %d with ret %d", | |
1226 | ua_chan->name, app->pid, ua_sess->handle, ret); | |
1227 | } else { | |
3757b385 DG |
1228 | /* |
1229 | * This is normal behavior, an application can die during the | |
1230 | * creation process. Don't report an error so the execution can | |
1231 | * continue normally. | |
1232 | */ | |
1233 | ret = 0; | |
ffe60014 DG |
1234 | DBG3("UST app enable channel failed. Application is dead."); |
1235 | } | |
78f0bacd DG |
1236 | goto error; |
1237 | } | |
1238 | ||
1239 | ua_chan->enabled = 1; | |
1240 | ||
1241 | DBG2("UST app channel %s enabled successfully for app (pid: %d)", | |
852d0037 | 1242 | ua_chan->name, app->pid); |
78f0bacd DG |
1243 | |
1244 | error: | |
840cb59c | 1245 | health_code_update(); |
78f0bacd DG |
1246 | return ret; |
1247 | } | |
1248 | ||
edb67388 DG |
1249 | /* |
1250 | * Enable the specified event on to UST tracer for the UST session. | |
1251 | */ | |
1252 | static int enable_ust_event(struct ust_app *app, | |
1253 | struct ust_app_session *ua_sess, struct ust_app_event *ua_event) | |
1254 | { | |
1255 | int ret; | |
1256 | ||
840cb59c | 1257 | health_code_update(); |
86acf0da | 1258 | |
852d0037 | 1259 | ret = ustctl_enable(app->sock, ua_event->obj); |
edb67388 | 1260 | if (ret < 0) { |
ffe60014 DG |
1261 | if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) { |
1262 | ERR("UST app event %s enable failed for app (pid: %d) " | |
1263 | "and session handle %d with ret %d", | |
1264 | ua_event->attr.name, app->pid, ua_sess->handle, ret); | |
1265 | } else { | |
3757b385 DG |
1266 | /* |
1267 | * This is normal behavior, an application can die during the | |
1268 | * creation process. Don't report an error so the execution can | |
1269 | * continue normally. | |
1270 | */ | |
1271 | ret = 0; | |
ffe60014 DG |
1272 | DBG3("UST app enable event failed. Application is dead."); |
1273 | } | |
edb67388 DG |
1274 | goto error; |
1275 | } | |
1276 | ||
1277 | DBG2("UST app event %s enabled successfully for app (pid: %d)", | |
852d0037 | 1278 | ua_event->attr.name, app->pid); |
edb67388 DG |
1279 | |
1280 | error: | |
840cb59c | 1281 | health_code_update(); |
edb67388 DG |
1282 | return ret; |
1283 | } | |
1284 | ||
099e26bd | 1285 | /* |
7972aab2 | 1286 | * Send channel and stream buffer to application. |
4f3ab6ee | 1287 | * |
ffe60014 | 1288 | * Return 0 on success. On error, a negative value is returned. |
4f3ab6ee | 1289 | */ |
7972aab2 DG |
1290 | static int send_channel_pid_to_ust(struct ust_app *app, |
1291 | struct ust_app_session *ua_sess, struct ust_app_channel *ua_chan) | |
4f3ab6ee DG |
1292 | { |
1293 | int ret; | |
ffe60014 | 1294 | struct ust_app_stream *stream, *stmp; |
4f3ab6ee DG |
1295 | |
1296 | assert(app); | |
ffe60014 | 1297 | assert(ua_sess); |
4f3ab6ee | 1298 | assert(ua_chan); |
4f3ab6ee | 1299 | |
840cb59c | 1300 | health_code_update(); |
4f3ab6ee | 1301 | |
7972aab2 DG |
1302 | DBG("UST app sending channel %s to UST app sock %d", ua_chan->name, |
1303 | app->sock); | |
86acf0da | 1304 | |
ffe60014 DG |
1305 | /* Send channel to the application. */ |
1306 | ret = ust_consumer_send_channel_to_ust(app, ua_sess, ua_chan); | |
5b4a0ec0 | 1307 | if (ret < 0) { |
b551a063 DG |
1308 | goto error; |
1309 | } | |
1310 | ||
d88aee68 DG |
1311 | health_code_update(); |
1312 | ||
ffe60014 DG |
1313 | /* Send all streams to application. */ |
1314 | cds_list_for_each_entry_safe(stream, stmp, &ua_chan->streams.head, list) { | |
1315 | ret = ust_consumer_send_stream_to_ust(app, ua_chan, stream); | |
1316 | if (ret < 0) { | |
1317 | goto error; | |
1318 | } | |
1319 | /* We don't need the stream anymore once sent to the tracer. */ | |
1320 | cds_list_del(&stream->list); | |
1321 | delete_ust_app_stream(-1, stream); | |
1322 | } | |
ffe60014 DG |
1323 | /* Flag the channel that it is sent to the application. */ |
1324 | ua_chan->is_sent = 1; | |
ffe60014 | 1325 | |
b551a063 | 1326 | error: |
840cb59c | 1327 | health_code_update(); |
b551a063 DG |
1328 | return ret; |
1329 | } | |
1330 | ||
91d76f53 | 1331 | /* |
5b4a0ec0 | 1332 | * Create the specified event onto the UST tracer for a UST session. |
d0b96690 DG |
1333 | * |
1334 | * Should be called with session mutex held. | |
91d76f53 | 1335 | */ |
edb67388 DG |
1336 | static |
1337 | int create_ust_event(struct ust_app *app, struct ust_app_session *ua_sess, | |
1338 | struct ust_app_channel *ua_chan, struct ust_app_event *ua_event) | |
91d76f53 | 1339 | { |
5b4a0ec0 | 1340 | int ret = 0; |
284d8f55 | 1341 | |
840cb59c | 1342 | health_code_update(); |
86acf0da | 1343 | |
5b4a0ec0 | 1344 | /* Create UST event on tracer */ |
852d0037 | 1345 | ret = ustctl_create_event(app->sock, &ua_event->attr, ua_chan->obj, |
5b4a0ec0 DG |
1346 | &ua_event->obj); |
1347 | if (ret < 0) { | |
ffe60014 DG |
1348 | if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) { |
1349 | ERR("Error ustctl create event %s for app pid: %d with ret %d", | |
1350 | ua_event->attr.name, app->pid, ret); | |
1351 | } else { | |
3757b385 DG |
1352 | /* |
1353 | * This is normal behavior, an application can die during the | |
1354 | * creation process. Don't report an error so the execution can | |
1355 | * continue normally. | |
1356 | */ | |
1357 | ret = 0; | |
ffe60014 DG |
1358 | DBG3("UST app create event failed. Application is dead."); |
1359 | } | |
5b4a0ec0 | 1360 | goto error; |
91d76f53 | 1361 | } |
f6a9efaa | 1362 | |
5b4a0ec0 | 1363 | ua_event->handle = ua_event->obj->handle; |
284d8f55 | 1364 | |
5b4a0ec0 | 1365 | DBG2("UST app event %s created successfully for pid:%d", |
852d0037 | 1366 | ua_event->attr.name, app->pid); |
f6a9efaa | 1367 | |
840cb59c | 1368 | health_code_update(); |
86acf0da | 1369 | |
025faf73 DG |
1370 | /* Set filter if one is present. */ |
1371 | if (ua_event->filter) { | |
1372 | ret = set_ust_event_filter(ua_event, app); | |
1373 | if (ret < 0) { | |
1374 | goto error; | |
1375 | } | |
1376 | } | |
1377 | ||
8535a6d9 | 1378 | /* If event not enabled, disable it on the tracer */ |
fc34caaa | 1379 | if (ua_event->enabled == 0) { |
8535a6d9 DG |
1380 | ret = disable_ust_event(app, ua_sess, ua_event); |
1381 | if (ret < 0) { | |
fc34caaa DG |
1382 | /* |
1383 | * If we hit an EPERM, something is wrong with our disable call. If | |
1384 | * we get an EEXIST, there is a problem on the tracer side since we | |
1385 | * just created it. | |
1386 | */ | |
1387 | switch (ret) { | |
49c336c1 | 1388 | case -LTTNG_UST_ERR_PERM: |
fc34caaa DG |
1389 | /* Code flow problem */ |
1390 | assert(0); | |
49c336c1 | 1391 | case -LTTNG_UST_ERR_EXIST: |
fc34caaa DG |
1392 | /* It's OK for our use case. */ |
1393 | ret = 0; | |
1394 | break; | |
1395 | default: | |
1396 | break; | |
1397 | } | |
8535a6d9 DG |
1398 | goto error; |
1399 | } | |
1400 | } | |
1401 | ||
5b4a0ec0 | 1402 | error: |
840cb59c | 1403 | health_code_update(); |
5b4a0ec0 | 1404 | return ret; |
91d76f53 | 1405 | } |
48842b30 | 1406 | |
5b4a0ec0 DG |
1407 | /* |
1408 | * Copy data between an UST app event and a LTT event. | |
1409 | */ | |
421cb601 | 1410 | static void shadow_copy_event(struct ust_app_event *ua_event, |
48842b30 DG |
1411 | struct ltt_ust_event *uevent) |
1412 | { | |
b4ffad32 JI |
1413 | size_t exclusion_alloc_size; |
1414 | ||
48842b30 DG |
1415 | strncpy(ua_event->name, uevent->attr.name, sizeof(ua_event->name)); |
1416 | ua_event->name[sizeof(ua_event->name) - 1] = '\0'; | |
1417 | ||
fc34caaa DG |
1418 | ua_event->enabled = uevent->enabled; |
1419 | ||
5b4a0ec0 DG |
1420 | /* Copy event attributes */ |
1421 | memcpy(&ua_event->attr, &uevent->attr, sizeof(ua_event->attr)); | |
1422 | ||
53a80697 MD |
1423 | /* Copy filter bytecode */ |
1424 | if (uevent->filter) { | |
025faf73 DG |
1425 | ua_event->filter = alloc_copy_ust_app_filter(uevent->filter); |
1426 | /* Filter might be NULL here in case of ENONEM. */ | |
53a80697 | 1427 | } |
b4ffad32 JI |
1428 | |
1429 | /* Copy exclusion data */ | |
1430 | if (uevent->exclusion) { | |
1431 | exclusion_alloc_size = sizeof(struct lttng_ust_event_exclusion) + | |
1432 | LTTNG_UST_SYM_NAME_LEN * uevent->exclusion->count; | |
1433 | ua_event->exclusion = zmalloc(exclusion_alloc_size); | |
1434 | if (ua_event->exclusion) { | |
1435 | memcpy(ua_event->exclusion, uevent->exclusion, exclusion_alloc_size); | |
1436 | } | |
1437 | } | |
48842b30 DG |
1438 | } |
1439 | ||
5b4a0ec0 DG |
1440 | /* |
1441 | * Copy data between an UST app channel and a LTT channel. | |
1442 | */ | |
421cb601 | 1443 | static void shadow_copy_channel(struct ust_app_channel *ua_chan, |
48842b30 DG |
1444 | struct ltt_ust_channel *uchan) |
1445 | { | |
bec39940 | 1446 | struct lttng_ht_iter iter; |
48842b30 | 1447 | struct ltt_ust_event *uevent; |
55cc08a6 | 1448 | struct ltt_ust_context *uctx; |
48842b30 | 1449 | struct ust_app_event *ua_event; |
55cc08a6 | 1450 | struct ust_app_ctx *ua_ctx; |
48842b30 | 1451 | |
fc34caaa | 1452 | DBG2("UST app shadow copy of channel %s started", ua_chan->name); |
48842b30 DG |
1453 | |
1454 | strncpy(ua_chan->name, uchan->name, sizeof(ua_chan->name)); | |
1455 | ua_chan->name[sizeof(ua_chan->name) - 1] = '\0'; | |
ffe60014 | 1456 | |
1624d5b7 JD |
1457 | ua_chan->tracefile_size = uchan->tracefile_size; |
1458 | ua_chan->tracefile_count = uchan->tracefile_count; | |
1459 | ||
ffe60014 DG |
1460 | /* Copy event attributes since the layout is different. */ |
1461 | ua_chan->attr.subbuf_size = uchan->attr.subbuf_size; | |
1462 | ua_chan->attr.num_subbuf = uchan->attr.num_subbuf; | |
1463 | ua_chan->attr.overwrite = uchan->attr.overwrite; | |
1464 | ua_chan->attr.switch_timer_interval = uchan->attr.switch_timer_interval; | |
1465 | ua_chan->attr.read_timer_interval = uchan->attr.read_timer_interval; | |
1466 | ua_chan->attr.output = uchan->attr.output; | |
1467 | /* | |
1468 | * Note that the attribute channel type is not set since the channel on the | |
1469 | * tracing registry side does not have this information. | |
1470 | */ | |
48842b30 | 1471 | |
fc34caaa | 1472 | ua_chan->enabled = uchan->enabled; |
7972aab2 | 1473 | ua_chan->tracing_channel_id = uchan->id; |
fc34caaa | 1474 | |
31746f93 | 1475 | cds_list_for_each_entry(uctx, &uchan->ctx_list, list) { |
55cc08a6 DG |
1476 | ua_ctx = alloc_ust_app_ctx(&uctx->ctx); |
1477 | if (ua_ctx == NULL) { | |
1478 | continue; | |
1479 | } | |
bec39940 DG |
1480 | lttng_ht_node_init_ulong(&ua_ctx->node, |
1481 | (unsigned long) ua_ctx->ctx.ctx); | |
1482 | lttng_ht_add_unique_ulong(ua_chan->ctx, &ua_ctx->node); | |
31746f93 | 1483 | cds_list_add_tail(&ua_ctx->list, &ua_chan->ctx_list); |
55cc08a6 | 1484 | } |
48842b30 | 1485 | |
421cb601 | 1486 | /* Copy all events from ltt ust channel to ust app channel */ |
bec39940 | 1487 | cds_lfht_for_each_entry(uchan->events->ht, &iter.iter, uevent, node.node) { |
18eace3b | 1488 | ua_event = find_ust_app_event(ua_chan->events, uevent->attr.name, |
39c5a3a7 | 1489 | uevent->filter, uevent->attr.loglevel, uevent->exclusion); |
18eace3b | 1490 | if (ua_event == NULL) { |
421cb601 | 1491 | DBG2("UST event %s not found on shadow copy channel", |
48842b30 | 1492 | uevent->attr.name); |
284d8f55 | 1493 | ua_event = alloc_ust_app_event(uevent->attr.name, &uevent->attr); |
48842b30 | 1494 | if (ua_event == NULL) { |
5b4a0ec0 | 1495 | continue; |
48842b30 | 1496 | } |
421cb601 | 1497 | shadow_copy_event(ua_event, uevent); |
d0b96690 | 1498 | add_unique_ust_app_event(ua_chan, ua_event); |
48842b30 | 1499 | } |
48842b30 DG |
1500 | } |
1501 | ||
fc34caaa | 1502 | DBG3("UST app shadow copy of channel %s done", ua_chan->name); |
48842b30 DG |
1503 | } |
1504 | ||
5b4a0ec0 DG |
1505 | /* |
1506 | * Copy data between a UST app session and a regular LTT session. | |
1507 | */ | |
421cb601 | 1508 | static void shadow_copy_session(struct ust_app_session *ua_sess, |
bec39940 | 1509 | struct ltt_ust_session *usess, struct ust_app *app) |
48842b30 | 1510 | { |
bec39940 DG |
1511 | struct lttng_ht_node_str *ua_chan_node; |
1512 | struct lttng_ht_iter iter; | |
48842b30 DG |
1513 | struct ltt_ust_channel *uchan; |
1514 | struct ust_app_channel *ua_chan; | |
477d7741 MD |
1515 | time_t rawtime; |
1516 | struct tm *timeinfo; | |
1517 | char datetime[16]; | |
1518 | int ret; | |
1519 | ||
1520 | /* Get date and time for unique app path */ | |
1521 | time(&rawtime); | |
1522 | timeinfo = localtime(&rawtime); | |
1523 | strftime(datetime, sizeof(datetime), "%Y%m%d-%H%M%S", timeinfo); | |
48842b30 | 1524 | |
421cb601 | 1525 | DBG2("Shadow copy of session handle %d", ua_sess->handle); |
48842b30 | 1526 | |
7972aab2 DG |
1527 | ua_sess->tracing_id = usess->id; |
1528 | ua_sess->id = get_next_session_id(); | |
1529 | ua_sess->uid = app->uid; | |
1530 | ua_sess->gid = app->gid; | |
1531 | ua_sess->euid = usess->uid; | |
1532 | ua_sess->egid = usess->gid; | |
1533 | ua_sess->buffer_type = usess->buffer_type; | |
1534 | ua_sess->bits_per_long = app->bits_per_long; | |
1535 | /* There is only one consumer object per session possible. */ | |
1536 | ua_sess->consumer = usess->consumer; | |
2bba9e53 | 1537 | ua_sess->output_traces = usess->output_traces; |
ecc48a90 | 1538 | ua_sess->live_timer_interval = usess->live_timer_interval; |
7972aab2 DG |
1539 | |
1540 | switch (ua_sess->buffer_type) { | |
1541 | case LTTNG_BUFFER_PER_PID: | |
1542 | ret = snprintf(ua_sess->path, sizeof(ua_sess->path), | |
dec56f6c | 1543 | DEFAULT_UST_TRACE_PID_PATH "/%s-%d-%s", app->name, app->pid, |
7972aab2 DG |
1544 | datetime); |
1545 | break; | |
1546 | case LTTNG_BUFFER_PER_UID: | |
1547 | ret = snprintf(ua_sess->path, sizeof(ua_sess->path), | |
1548 | DEFAULT_UST_TRACE_UID_PATH, ua_sess->uid, app->bits_per_long); | |
1549 | break; | |
1550 | default: | |
1551 | assert(0); | |
1552 | goto error; | |
1553 | } | |
477d7741 MD |
1554 | if (ret < 0) { |
1555 | PERROR("asprintf UST shadow copy session"); | |
477d7741 | 1556 | assert(0); |
7972aab2 | 1557 | goto error; |
477d7741 MD |
1558 | } |
1559 | ||
48842b30 | 1560 | /* Iterate over all channels in global domain. */ |
bec39940 DG |
1561 | cds_lfht_for_each_entry(usess->domain_global.channels->ht, &iter.iter, |
1562 | uchan, node.node) { | |
1563 | struct lttng_ht_iter uiter; | |
ba767faf | 1564 | |
bec39940 DG |
1565 | lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &uiter); |
1566 | ua_chan_node = lttng_ht_iter_get_node_str(&uiter); | |
5b4a0ec0 | 1567 | if (ua_chan_node != NULL) { |
fc34caaa | 1568 | /* Session exist. Contiuing. */ |
5b4a0ec0 DG |
1569 | continue; |
1570 | } | |
421cb601 | 1571 | |
5b4a0ec0 DG |
1572 | DBG2("Channel %s not found on shadow session copy, creating it", |
1573 | uchan->name); | |
d0b96690 | 1574 | ua_chan = alloc_ust_app_channel(uchan->name, ua_sess, &uchan->attr); |
5b4a0ec0 | 1575 | if (ua_chan == NULL) { |
fc34caaa | 1576 | /* malloc failed FIXME: Might want to do handle ENOMEM .. */ |
5b4a0ec0 | 1577 | continue; |
48842b30 | 1578 | } |
5b4a0ec0 | 1579 | shadow_copy_channel(ua_chan, uchan); |
ffe60014 DG |
1580 | /* |
1581 | * The concept of metadata channel does not exist on the tracing | |
1582 | * registry side of the session daemon so this can only be a per CPU | |
1583 | * channel and not metadata. | |
1584 | */ | |
1585 | ua_chan->attr.type = LTTNG_UST_CHAN_PER_CPU; | |
1586 | ||
bec39940 | 1587 | lttng_ht_add_unique_str(ua_sess->channels, &ua_chan->node); |
48842b30 | 1588 | } |
7972aab2 DG |
1589 | |
1590 | error: | |
1591 | return; | |
48842b30 DG |
1592 | } |
1593 | ||
78f0bacd DG |
1594 | /* |
1595 | * Lookup sesison wrapper. | |
1596 | */ | |
84cd17c6 MD |
1597 | static |
1598 | void __lookup_session_by_app(struct ltt_ust_session *usess, | |
bec39940 | 1599 | struct ust_app *app, struct lttng_ht_iter *iter) |
84cd17c6 MD |
1600 | { |
1601 | /* Get right UST app session from app */ | |
d9bf3ca4 | 1602 | lttng_ht_lookup(app->sessions, &usess->id, iter); |
84cd17c6 MD |
1603 | } |
1604 | ||
421cb601 DG |
1605 | /* |
1606 | * Return ust app session from the app session hashtable using the UST session | |
a991f516 | 1607 | * id. |
421cb601 | 1608 | */ |
48842b30 DG |
1609 | static struct ust_app_session *lookup_session_by_app( |
1610 | struct ltt_ust_session *usess, struct ust_app *app) | |
1611 | { | |
bec39940 | 1612 | struct lttng_ht_iter iter; |
d9bf3ca4 | 1613 | struct lttng_ht_node_u64 *node; |
48842b30 | 1614 | |
84cd17c6 | 1615 | __lookup_session_by_app(usess, app, &iter); |
d9bf3ca4 | 1616 | node = lttng_ht_iter_get_node_u64(&iter); |
48842b30 DG |
1617 | if (node == NULL) { |
1618 | goto error; | |
1619 | } | |
1620 | ||
1621 | return caa_container_of(node, struct ust_app_session, node); | |
1622 | ||
1623 | error: | |
1624 | return NULL; | |
1625 | } | |
1626 | ||
7972aab2 DG |
1627 | /* |
1628 | * Setup buffer registry per PID for the given session and application. If none | |
1629 | * is found, a new one is created, added to the global registry and | |
1630 | * initialized. If regp is valid, it's set with the newly created object. | |
1631 | * | |
1632 | * Return 0 on success or else a negative value. | |
1633 | */ | |
1634 | static int setup_buffer_reg_pid(struct ust_app_session *ua_sess, | |
1635 | struct ust_app *app, struct buffer_reg_pid **regp) | |
1636 | { | |
1637 | int ret = 0; | |
1638 | struct buffer_reg_pid *reg_pid; | |
1639 | ||
1640 | assert(ua_sess); | |
1641 | assert(app); | |
1642 | ||
1643 | rcu_read_lock(); | |
1644 | ||
1645 | reg_pid = buffer_reg_pid_find(ua_sess->id); | |
1646 | if (!reg_pid) { | |
1647 | /* | |
1648 | * This is the create channel path meaning that if there is NO | |
1649 | * registry available, we have to create one for this session. | |
1650 | */ | |
1651 | ret = buffer_reg_pid_create(ua_sess->id, ®_pid); | |
1652 | if (ret < 0) { | |
1653 | goto error; | |
1654 | } | |
1655 | buffer_reg_pid_add(reg_pid); | |
1656 | } else { | |
1657 | goto end; | |
1658 | } | |
1659 | ||
1660 | /* Initialize registry. */ | |
1661 | ret = ust_registry_session_init(®_pid->registry->reg.ust, app, | |
1662 | app->bits_per_long, app->uint8_t_alignment, | |
1663 | app->uint16_t_alignment, app->uint32_t_alignment, | |
af6142cf MD |
1664 | app->uint64_t_alignment, app->long_alignment, |
1665 | app->byte_order, app->version.major, | |
1666 | app->version.minor); | |
7972aab2 DG |
1667 | if (ret < 0) { |
1668 | goto error; | |
1669 | } | |
1670 | ||
1671 | DBG3("UST app buffer registry per PID created successfully"); | |
1672 | ||
1673 | end: | |
1674 | if (regp) { | |
1675 | *regp = reg_pid; | |
1676 | } | |
1677 | error: | |
1678 | rcu_read_unlock(); | |
1679 | return ret; | |
1680 | } | |
1681 | ||
1682 | /* | |
1683 | * Setup buffer registry per UID for the given session and application. If none | |
1684 | * is found, a new one is created, added to the global registry and | |
1685 | * initialized. If regp is valid, it's set with the newly created object. | |
1686 | * | |
1687 | * Return 0 on success or else a negative value. | |
1688 | */ | |
1689 | static int setup_buffer_reg_uid(struct ltt_ust_session *usess, | |
1690 | struct ust_app *app, struct buffer_reg_uid **regp) | |
1691 | { | |
1692 | int ret = 0; | |
1693 | struct buffer_reg_uid *reg_uid; | |
1694 | ||
1695 | assert(usess); | |
1696 | assert(app); | |
1697 | ||
1698 | rcu_read_lock(); | |
1699 | ||
1700 | reg_uid = buffer_reg_uid_find(usess->id, app->bits_per_long, app->uid); | |
1701 | if (!reg_uid) { | |
1702 | /* | |
1703 | * This is the create channel path meaning that if there is NO | |
1704 | * registry available, we have to create one for this session. | |
1705 | */ | |
1706 | ret = buffer_reg_uid_create(usess->id, app->bits_per_long, app->uid, | |
1707 | LTTNG_DOMAIN_UST, ®_uid); | |
1708 | if (ret < 0) { | |
1709 | goto error; | |
1710 | } | |
1711 | buffer_reg_uid_add(reg_uid); | |
1712 | } else { | |
1713 | goto end; | |
1714 | } | |
1715 | ||
1716 | /* Initialize registry. */ | |
af6142cf | 1717 | ret = ust_registry_session_init(®_uid->registry->reg.ust, NULL, |
7972aab2 DG |
1718 | app->bits_per_long, app->uint8_t_alignment, |
1719 | app->uint16_t_alignment, app->uint32_t_alignment, | |
af6142cf MD |
1720 | app->uint64_t_alignment, app->long_alignment, |
1721 | app->byte_order, app->version.major, | |
1722 | app->version.minor); | |
7972aab2 DG |
1723 | if (ret < 0) { |
1724 | goto error; | |
1725 | } | |
1726 | /* Add node to teardown list of the session. */ | |
1727 | cds_list_add(®_uid->lnode, &usess->buffer_reg_uid_list); | |
1728 | ||
1729 | DBG3("UST app buffer registry per UID created successfully"); | |
1730 | ||
1731 | end: | |
1732 | if (regp) { | |
1733 | *regp = reg_uid; | |
1734 | } | |
1735 | error: | |
1736 | rcu_read_unlock(); | |
1737 | return ret; | |
1738 | } | |
1739 | ||
421cb601 | 1740 | /* |
3d8ca23b | 1741 | * Create a session on the tracer side for the given app. |
421cb601 | 1742 | * |
3d8ca23b DG |
1743 | * On success, ua_sess_ptr is populated with the session pointer or else left |
1744 | * untouched. If the session was created, is_created is set to 1. On error, | |
1745 | * it's left untouched. Note that ua_sess_ptr is mandatory but is_created can | |
1746 | * be NULL. | |
1747 | * | |
1748 | * Returns 0 on success or else a negative code which is either -ENOMEM or | |
1749 | * -ENOTCONN which is the default code if the ustctl_create_session fails. | |
421cb601 | 1750 | */ |
3d8ca23b DG |
1751 | static int create_ust_app_session(struct ltt_ust_session *usess, |
1752 | struct ust_app *app, struct ust_app_session **ua_sess_ptr, | |
1753 | int *is_created) | |
421cb601 | 1754 | { |
3d8ca23b | 1755 | int ret, created = 0; |
421cb601 DG |
1756 | struct ust_app_session *ua_sess; |
1757 | ||
3d8ca23b DG |
1758 | assert(usess); |
1759 | assert(app); | |
1760 | assert(ua_sess_ptr); | |
1761 | ||
840cb59c | 1762 | health_code_update(); |
86acf0da | 1763 | |
421cb601 DG |
1764 | ua_sess = lookup_session_by_app(usess, app); |
1765 | if (ua_sess == NULL) { | |
d9bf3ca4 | 1766 | DBG2("UST app pid: %d session id %" PRIu64 " not found, creating it", |
852d0037 | 1767 | app->pid, usess->id); |
d0b96690 | 1768 | ua_sess = alloc_ust_app_session(app); |
421cb601 DG |
1769 | if (ua_sess == NULL) { |
1770 | /* Only malloc can failed so something is really wrong */ | |
3d8ca23b DG |
1771 | ret = -ENOMEM; |
1772 | goto error; | |
421cb601 | 1773 | } |
477d7741 | 1774 | shadow_copy_session(ua_sess, usess, app); |
3d8ca23b | 1775 | created = 1; |
421cb601 DG |
1776 | } |
1777 | ||
7972aab2 DG |
1778 | switch (usess->buffer_type) { |
1779 | case LTTNG_BUFFER_PER_PID: | |
1780 | /* Init local registry. */ | |
1781 | ret = setup_buffer_reg_pid(ua_sess, app, NULL); | |
421cb601 | 1782 | if (ret < 0) { |
7972aab2 DG |
1783 | goto error; |
1784 | } | |
1785 | break; | |
1786 | case LTTNG_BUFFER_PER_UID: | |
1787 | /* Look for a global registry. If none exists, create one. */ | |
1788 | ret = setup_buffer_reg_uid(usess, app, NULL); | |
1789 | if (ret < 0) { | |
1790 | goto error; | |
1791 | } | |
1792 | break; | |
1793 | default: | |
1794 | assert(0); | |
1795 | ret = -EINVAL; | |
1796 | goto error; | |
1797 | } | |
1798 | ||
1799 | health_code_update(); | |
1800 | ||
1801 | if (ua_sess->handle == -1) { | |
1802 | ret = ustctl_create_session(app->sock); | |
1803 | if (ret < 0) { | |
1804 | if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) { | |
1805 | ERR("Creating session for app pid %d with ret %d", | |
ffe60014 DG |
1806 | app->pid, ret); |
1807 | } else { | |
1808 | DBG("UST app creating session failed. Application is dead"); | |
3757b385 DG |
1809 | /* |
1810 | * This is normal behavior, an application can die during the | |
1811 | * creation process. Don't report an error so the execution can | |
1812 | * continue normally. This will get flagged ENOTCONN and the | |
1813 | * caller will handle it. | |
1814 | */ | |
1815 | ret = 0; | |
ffe60014 | 1816 | } |
d0b96690 | 1817 | delete_ust_app_session(-1, ua_sess, app); |
3d8ca23b DG |
1818 | if (ret != -ENOMEM) { |
1819 | /* | |
1820 | * Tracer is probably gone or got an internal error so let's | |
1821 | * behave like it will soon unregister or not usable. | |
1822 | */ | |
1823 | ret = -ENOTCONN; | |
1824 | } | |
1825 | goto error; | |
421cb601 DG |
1826 | } |
1827 | ||
7972aab2 DG |
1828 | ua_sess->handle = ret; |
1829 | ||
1830 | /* Add ust app session to app's HT */ | |
d9bf3ca4 MD |
1831 | lttng_ht_node_init_u64(&ua_sess->node, |
1832 | ua_sess->tracing_id); | |
1833 | lttng_ht_add_unique_u64(app->sessions, &ua_sess->node); | |
7972aab2 DG |
1834 | |
1835 | DBG2("UST app session created successfully with handle %d", ret); | |
1836 | } | |
1837 | ||
1838 | *ua_sess_ptr = ua_sess; | |
1839 | if (is_created) { | |
1840 | *is_created = created; | |
1841 | } | |
1842 | ||
1843 | /* Everything went well. */ | |
1844 | ret = 0; | |
1845 | ||
1846 | error: | |
1847 | health_code_update(); | |
1848 | return ret; | |
1849 | } | |
1850 | ||
1851 | /* | |
1852 | * Create a context for the channel on the tracer. | |
1853 | * | |
1854 | * Called with UST app session lock held and a RCU read side lock. | |
1855 | */ | |
1856 | static | |
1857 | int create_ust_app_channel_context(struct ust_app_session *ua_sess, | |
1858 | struct ust_app_channel *ua_chan, struct lttng_ust_context *uctx, | |
1859 | struct ust_app *app) | |
1860 | { | |
1861 | int ret = 0; | |
1862 | struct lttng_ht_iter iter; | |
1863 | struct lttng_ht_node_ulong *node; | |
1864 | struct ust_app_ctx *ua_ctx; | |
1865 | ||
1866 | DBG2("UST app adding context to channel %s", ua_chan->name); | |
1867 | ||
1868 | lttng_ht_lookup(ua_chan->ctx, (void *)((unsigned long)uctx->ctx), &iter); | |
1869 | node = lttng_ht_iter_get_node_ulong(&iter); | |
1870 | if (node != NULL) { | |
1871 | ret = -EEXIST; | |
1872 | goto error; | |
1873 | } | |
1874 | ||
1875 | ua_ctx = alloc_ust_app_ctx(uctx); | |
1876 | if (ua_ctx == NULL) { | |
1877 | /* malloc failed */ | |
1878 | ret = -1; | |
1879 | goto error; | |
1880 | } | |
1881 | ||
1882 | lttng_ht_node_init_ulong(&ua_ctx->node, (unsigned long) ua_ctx->ctx.ctx); | |
1883 | lttng_ht_add_unique_ulong(ua_chan->ctx, &ua_ctx->node); | |
31746f93 | 1884 | cds_list_add_tail(&ua_ctx->list, &ua_chan->ctx_list); |
7972aab2 DG |
1885 | |
1886 | ret = create_ust_channel_context(ua_chan, ua_ctx, app); | |
1887 | if (ret < 0) { | |
1888 | goto error; | |
1889 | } | |
1890 | ||
1891 | error: | |
1892 | return ret; | |
1893 | } | |
1894 | ||
1895 | /* | |
1896 | * Enable on the tracer side a ust app event for the session and channel. | |
1897 | * | |
1898 | * Called with UST app session lock held. | |
1899 | */ | |
1900 | static | |
1901 | int enable_ust_app_event(struct ust_app_session *ua_sess, | |
1902 | struct ust_app_event *ua_event, struct ust_app *app) | |
1903 | { | |
1904 | int ret; | |
1905 | ||
1906 | ret = enable_ust_event(app, ua_sess, ua_event); | |
1907 | if (ret < 0) { | |
1908 | goto error; | |
1909 | } | |
1910 | ||
1911 | ua_event->enabled = 1; | |
1912 | ||
1913 | error: | |
1914 | return ret; | |
1915 | } | |
1916 | ||
1917 | /* | |
1918 | * Disable on the tracer side a ust app event for the session and channel. | |
1919 | */ | |
1920 | static int disable_ust_app_event(struct ust_app_session *ua_sess, | |
1921 | struct ust_app_event *ua_event, struct ust_app *app) | |
1922 | { | |
1923 | int ret; | |
1924 | ||
1925 | ret = disable_ust_event(app, ua_sess, ua_event); | |
1926 | if (ret < 0) { | |
1927 | goto error; | |
1928 | } | |
1929 | ||
1930 | ua_event->enabled = 0; | |
1931 | ||
1932 | error: | |
1933 | return ret; | |
1934 | } | |
1935 | ||
1936 | /* | |
1937 | * Lookup ust app channel for session and disable it on the tracer side. | |
1938 | */ | |
1939 | static | |
1940 | int disable_ust_app_channel(struct ust_app_session *ua_sess, | |
1941 | struct ust_app_channel *ua_chan, struct ust_app *app) | |
1942 | { | |
1943 | int ret; | |
1944 | ||
1945 | ret = disable_ust_channel(app, ua_sess, ua_chan); | |
1946 | if (ret < 0) { | |
1947 | goto error; | |
1948 | } | |
1949 | ||
1950 | ua_chan->enabled = 0; | |
1951 | ||
1952 | error: | |
1953 | return ret; | |
1954 | } | |
1955 | ||
1956 | /* | |
1957 | * Lookup ust app channel for session and enable it on the tracer side. This | |
1958 | * MUST be called with a RCU read side lock acquired. | |
1959 | */ | |
1960 | static int enable_ust_app_channel(struct ust_app_session *ua_sess, | |
1961 | struct ltt_ust_channel *uchan, struct ust_app *app) | |
1962 | { | |
1963 | int ret = 0; | |
1964 | struct lttng_ht_iter iter; | |
1965 | struct lttng_ht_node_str *ua_chan_node; | |
1966 | struct ust_app_channel *ua_chan; | |
1967 | ||
1968 | lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &iter); | |
1969 | ua_chan_node = lttng_ht_iter_get_node_str(&iter); | |
1970 | if (ua_chan_node == NULL) { | |
d9bf3ca4 | 1971 | DBG2("Unable to find channel %s in ust session id %" PRIu64, |
7972aab2 DG |
1972 | uchan->name, ua_sess->tracing_id); |
1973 | goto error; | |
1974 | } | |
1975 | ||
1976 | ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node); | |
1977 | ||
1978 | ret = enable_ust_channel(app, ua_sess, ua_chan); | |
1979 | if (ret < 0) { | |
1980 | goto error; | |
1981 | } | |
1982 | ||
1983 | error: | |
1984 | return ret; | |
1985 | } | |
1986 | ||
1987 | /* | |
1988 | * Ask the consumer to create a channel and get it if successful. | |
1989 | * | |
1990 | * Return 0 on success or else a negative value. | |
1991 | */ | |
1992 | static int do_consumer_create_channel(struct ltt_ust_session *usess, | |
1993 | struct ust_app_session *ua_sess, struct ust_app_channel *ua_chan, | |
1994 | int bitness, struct ust_registry_session *registry) | |
1995 | { | |
1996 | int ret; | |
1997 | unsigned int nb_fd = 0; | |
1998 | struct consumer_socket *socket; | |
1999 | ||
2000 | assert(usess); | |
2001 | assert(ua_sess); | |
2002 | assert(ua_chan); | |
2003 | assert(registry); | |
2004 | ||
2005 | rcu_read_lock(); | |
2006 | health_code_update(); | |
2007 | ||
2008 | /* Get the right consumer socket for the application. */ | |
2009 | socket = consumer_find_socket_by_bitness(bitness, usess->consumer); | |
2010 | if (!socket) { | |
2011 | ret = -EINVAL; | |
2012 | goto error; | |
2013 | } | |
2014 | ||
2015 | health_code_update(); | |
2016 | ||
2017 | /* Need one fd for the channel. */ | |
2018 | ret = lttng_fd_get(LTTNG_FD_APPS, 1); | |
2019 | if (ret < 0) { | |
2020 | ERR("Exhausted number of available FD upon create channel"); | |
2021 | goto error; | |
2022 | } | |
2023 | ||
2024 | /* | |
2025 | * Ask consumer to create channel. The consumer will return the number of | |
2026 | * stream we have to expect. | |
2027 | */ | |
2028 | ret = ust_consumer_ask_channel(ua_sess, ua_chan, usess->consumer, socket, | |
2029 | registry); | |
2030 | if (ret < 0) { | |
2031 | goto error_ask; | |
2032 | } | |
2033 | ||
2034 | /* | |
2035 | * Compute the number of fd needed before receiving them. It must be 2 per | |
2036 | * stream (2 being the default value here). | |
2037 | */ | |
2038 | nb_fd = DEFAULT_UST_STREAM_FD_NUM * ua_chan->expected_stream_count; | |
2039 | ||
2040 | /* Reserve the amount of file descriptor we need. */ | |
2041 | ret = lttng_fd_get(LTTNG_FD_APPS, nb_fd); | |
2042 | if (ret < 0) { | |
2043 | ERR("Exhausted number of available FD upon create channel"); | |
2044 | goto error_fd_get_stream; | |
2045 | } | |
2046 | ||
2047 | health_code_update(); | |
2048 | ||
2049 | /* | |
2050 | * Now get the channel from the consumer. This call wil populate the stream | |
2051 | * list of that channel and set the ust objects. | |
2052 | */ | |
d9078d0c DG |
2053 | if (usess->consumer->enabled) { |
2054 | ret = ust_consumer_get_channel(socket, ua_chan); | |
2055 | if (ret < 0) { | |
2056 | goto error_destroy; | |
2057 | } | |
7972aab2 DG |
2058 | } |
2059 | ||
2060 | rcu_read_unlock(); | |
2061 | return 0; | |
2062 | ||
2063 | error_destroy: | |
2064 | lttng_fd_put(LTTNG_FD_APPS, nb_fd); | |
2065 | error_fd_get_stream: | |
2066 | /* | |
2067 | * Initiate a destroy channel on the consumer since we had an error | |
2068 | * handling it on our side. The return value is of no importance since we | |
2069 | * already have a ret value set by the previous error that we need to | |
2070 | * return. | |
2071 | */ | |
2072 | (void) ust_consumer_destroy_channel(socket, ua_chan); | |
2073 | error_ask: | |
2074 | lttng_fd_put(LTTNG_FD_APPS, 1); | |
2075 | error: | |
2076 | health_code_update(); | |
2077 | rcu_read_unlock(); | |
2078 | return ret; | |
2079 | } | |
2080 | ||
2081 | /* | |
2082 | * Duplicate the ust data object of the ust app stream and save it in the | |
2083 | * buffer registry stream. | |
2084 | * | |
2085 | * Return 0 on success or else a negative value. | |
2086 | */ | |
2087 | static int duplicate_stream_object(struct buffer_reg_stream *reg_stream, | |
2088 | struct ust_app_stream *stream) | |
2089 | { | |
2090 | int ret; | |
2091 | ||
2092 | assert(reg_stream); | |
2093 | assert(stream); | |
2094 | ||
2095 | /* Reserve the amount of file descriptor we need. */ | |
2096 | ret = lttng_fd_get(LTTNG_FD_APPS, 2); | |
2097 | if (ret < 0) { | |
2098 | ERR("Exhausted number of available FD upon duplicate stream"); | |
2099 | goto error; | |
2100 | } | |
2101 | ||
2102 | /* Duplicate object for stream once the original is in the registry. */ | |
2103 | ret = ustctl_duplicate_ust_object_data(&stream->obj, | |
2104 | reg_stream->obj.ust); | |
2105 | if (ret < 0) { | |
2106 | ERR("Duplicate stream obj from %p to %p failed with ret %d", | |
2107 | reg_stream->obj.ust, stream->obj, ret); | |
2108 | lttng_fd_put(LTTNG_FD_APPS, 2); | |
2109 | goto error; | |
2110 | } | |
2111 | stream->handle = stream->obj->handle; | |
2112 | ||
2113 | error: | |
2114 | return ret; | |
2115 | } | |
2116 | ||
2117 | /* | |
2118 | * Duplicate the ust data object of the ust app. channel and save it in the | |
2119 | * buffer registry channel. | |
2120 | * | |
2121 | * Return 0 on success or else a negative value. | |
2122 | */ | |
2123 | static int duplicate_channel_object(struct buffer_reg_channel *reg_chan, | |
2124 | struct ust_app_channel *ua_chan) | |
2125 | { | |
2126 | int ret; | |
2127 | ||
2128 | assert(reg_chan); | |
2129 | assert(ua_chan); | |
2130 | ||
2131 | /* Need two fds for the channel. */ | |
2132 | ret = lttng_fd_get(LTTNG_FD_APPS, 1); | |
2133 | if (ret < 0) { | |
2134 | ERR("Exhausted number of available FD upon duplicate channel"); | |
2135 | goto error_fd_get; | |
2136 | } | |
2137 | ||
2138 | /* Duplicate object for stream once the original is in the registry. */ | |
2139 | ret = ustctl_duplicate_ust_object_data(&ua_chan->obj, reg_chan->obj.ust); | |
2140 | if (ret < 0) { | |
2141 | ERR("Duplicate channel obj from %p to %p failed with ret: %d", | |
2142 | reg_chan->obj.ust, ua_chan->obj, ret); | |
2143 | goto error; | |
2144 | } | |
2145 | ua_chan->handle = ua_chan->obj->handle; | |
2146 | ||
2147 | return 0; | |
2148 | ||
2149 | error: | |
2150 | lttng_fd_put(LTTNG_FD_APPS, 1); | |
2151 | error_fd_get: | |
2152 | return ret; | |
2153 | } | |
2154 | ||
2155 | /* | |
2156 | * For a given channel buffer registry, setup all streams of the given ust | |
2157 | * application channel. | |
2158 | * | |
2159 | * Return 0 on success or else a negative value. | |
2160 | */ | |
2161 | static int setup_buffer_reg_streams(struct buffer_reg_channel *reg_chan, | |
2162 | struct ust_app_channel *ua_chan) | |
2163 | { | |
2164 | int ret = 0; | |
2165 | struct ust_app_stream *stream, *stmp; | |
2166 | ||
2167 | assert(reg_chan); | |
2168 | assert(ua_chan); | |
2169 | ||
2170 | DBG2("UST app setup buffer registry stream"); | |
2171 | ||
2172 | /* Send all streams to application. */ | |
2173 | cds_list_for_each_entry_safe(stream, stmp, &ua_chan->streams.head, list) { | |
2174 | struct buffer_reg_stream *reg_stream; | |
2175 | ||
2176 | ret = buffer_reg_stream_create(®_stream); | |
2177 | if (ret < 0) { | |
2178 | goto error; | |
2179 | } | |
2180 | ||
2181 | /* | |
2182 | * Keep original pointer and nullify it in the stream so the delete | |
2183 | * stream call does not release the object. | |
2184 | */ | |
2185 | reg_stream->obj.ust = stream->obj; | |
2186 | stream->obj = NULL; | |
2187 | buffer_reg_stream_add(reg_stream, reg_chan); | |
421cb601 | 2188 | |
7972aab2 DG |
2189 | /* We don't need the streams anymore. */ |
2190 | cds_list_del(&stream->list); | |
2191 | delete_ust_app_stream(-1, stream); | |
2192 | } | |
421cb601 | 2193 | |
7972aab2 DG |
2194 | error: |
2195 | return ret; | |
2196 | } | |
2197 | ||
2198 | /* | |
2199 | * Create a buffer registry channel for the given session registry and | |
2200 | * application channel object. If regp pointer is valid, it's set with the | |
2201 | * created object. Important, the created object is NOT added to the session | |
2202 | * registry hash table. | |
2203 | * | |
2204 | * Return 0 on success else a negative value. | |
2205 | */ | |
2206 | static int create_buffer_reg_channel(struct buffer_reg_session *reg_sess, | |
2207 | struct ust_app_channel *ua_chan, struct buffer_reg_channel **regp) | |
2208 | { | |
2209 | int ret; | |
2210 | struct buffer_reg_channel *reg_chan = NULL; | |
2211 | ||
2212 | assert(reg_sess); | |
2213 | assert(ua_chan); | |
2214 | ||
2215 | DBG2("UST app creating buffer registry channel for %s", ua_chan->name); | |
2216 | ||
2217 | /* Create buffer registry channel. */ | |
2218 | ret = buffer_reg_channel_create(ua_chan->tracing_channel_id, ®_chan); | |
2219 | if (ret < 0) { | |
2220 | goto error_create; | |
421cb601 | 2221 | } |
7972aab2 DG |
2222 | assert(reg_chan); |
2223 | reg_chan->consumer_key = ua_chan->key; | |
8c924c7b | 2224 | reg_chan->subbuf_size = ua_chan->attr.subbuf_size; |
421cb601 | 2225 | |
7972aab2 DG |
2226 | /* Create and add a channel registry to session. */ |
2227 | ret = ust_registry_channel_add(reg_sess->reg.ust, | |
2228 | ua_chan->tracing_channel_id); | |
2229 | if (ret < 0) { | |
2230 | goto error; | |
d88aee68 | 2231 | } |
7972aab2 | 2232 | buffer_reg_channel_add(reg_sess, reg_chan); |
d88aee68 | 2233 | |
7972aab2 DG |
2234 | if (regp) { |
2235 | *regp = reg_chan; | |
3d8ca23b | 2236 | } |
d88aee68 | 2237 | |
7972aab2 | 2238 | return 0; |
3d8ca23b DG |
2239 | |
2240 | error: | |
7972aab2 DG |
2241 | /* Safe because the registry channel object was not added to any HT. */ |
2242 | buffer_reg_channel_destroy(reg_chan, LTTNG_DOMAIN_UST); | |
2243 | error_create: | |
3d8ca23b | 2244 | return ret; |
421cb601 DG |
2245 | } |
2246 | ||
55cc08a6 | 2247 | /* |
7972aab2 DG |
2248 | * Setup buffer registry channel for the given session registry and application |
2249 | * channel object. If regp pointer is valid, it's set with the created object. | |
d0b96690 | 2250 | * |
7972aab2 | 2251 | * Return 0 on success else a negative value. |
55cc08a6 | 2252 | */ |
7972aab2 DG |
2253 | static int setup_buffer_reg_channel(struct buffer_reg_session *reg_sess, |
2254 | struct ust_app_channel *ua_chan, struct buffer_reg_channel *reg_chan) | |
55cc08a6 | 2255 | { |
7972aab2 | 2256 | int ret; |
55cc08a6 | 2257 | |
7972aab2 DG |
2258 | assert(reg_sess); |
2259 | assert(reg_chan); | |
2260 | assert(ua_chan); | |
2261 | assert(ua_chan->obj); | |
55cc08a6 | 2262 | |
7972aab2 | 2263 | DBG2("UST app setup buffer registry channel for %s", ua_chan->name); |
55cc08a6 | 2264 | |
7972aab2 DG |
2265 | /* Setup all streams for the registry. */ |
2266 | ret = setup_buffer_reg_streams(reg_chan, ua_chan); | |
2267 | if (ret < 0) { | |
55cc08a6 DG |
2268 | goto error; |
2269 | } | |
2270 | ||
7972aab2 DG |
2271 | reg_chan->obj.ust = ua_chan->obj; |
2272 | ua_chan->obj = NULL; | |
55cc08a6 | 2273 | |
7972aab2 | 2274 | return 0; |
55cc08a6 DG |
2275 | |
2276 | error: | |
7972aab2 DG |
2277 | buffer_reg_channel_remove(reg_sess, reg_chan); |
2278 | buffer_reg_channel_destroy(reg_chan, LTTNG_DOMAIN_UST); | |
55cc08a6 DG |
2279 | return ret; |
2280 | } | |
2281 | ||
edb67388 | 2282 | /* |
7972aab2 | 2283 | * Send buffer registry channel to the application. |
d0b96690 | 2284 | * |
7972aab2 | 2285 | * Return 0 on success else a negative value. |
edb67388 | 2286 | */ |
7972aab2 DG |
2287 | static int send_channel_uid_to_ust(struct buffer_reg_channel *reg_chan, |
2288 | struct ust_app *app, struct ust_app_session *ua_sess, | |
2289 | struct ust_app_channel *ua_chan) | |
edb67388 DG |
2290 | { |
2291 | int ret; | |
7972aab2 | 2292 | struct buffer_reg_stream *reg_stream; |
edb67388 | 2293 | |
7972aab2 DG |
2294 | assert(reg_chan); |
2295 | assert(app); | |
2296 | assert(ua_sess); | |
2297 | assert(ua_chan); | |
2298 | ||
2299 | DBG("UST app sending buffer registry channel to ust sock %d", app->sock); | |
2300 | ||
2301 | ret = duplicate_channel_object(reg_chan, ua_chan); | |
edb67388 DG |
2302 | if (ret < 0) { |
2303 | goto error; | |
2304 | } | |
2305 | ||
7972aab2 DG |
2306 | /* Send channel to the application. */ |
2307 | ret = ust_consumer_send_channel_to_ust(app, ua_sess, ua_chan); | |
2308 | if (ret < 0) { | |
2309 | goto error; | |
2310 | } | |
2311 | ||
2312 | health_code_update(); | |
2313 | ||
2314 | /* Send all streams to application. */ | |
2315 | pthread_mutex_lock(®_chan->stream_list_lock); | |
2316 | cds_list_for_each_entry(reg_stream, ®_chan->streams, lnode) { | |
2317 | struct ust_app_stream stream; | |
2318 | ||
2319 | ret = duplicate_stream_object(reg_stream, &stream); | |
2320 | if (ret < 0) { | |
2321 | goto error_stream_unlock; | |
2322 | } | |
2323 | ||
2324 | ret = ust_consumer_send_stream_to_ust(app, ua_chan, &stream); | |
2325 | if (ret < 0) { | |
8c067051 | 2326 | (void) release_ust_app_stream(-1, &stream); |
7972aab2 DG |
2327 | goto error_stream_unlock; |
2328 | } | |
edb67388 | 2329 | |
7972aab2 DG |
2330 | /* |
2331 | * The return value is not important here. This function will output an | |
2332 | * error if needed. | |
2333 | */ | |
2334 | (void) release_ust_app_stream(-1, &stream); | |
2335 | } | |
2336 | ua_chan->is_sent = 1; | |
2337 | ||
2338 | error_stream_unlock: | |
2339 | pthread_mutex_unlock(®_chan->stream_list_lock); | |
edb67388 DG |
2340 | error: |
2341 | return ret; | |
2342 | } | |
2343 | ||
9730260e | 2344 | /* |
7972aab2 DG |
2345 | * Create and send to the application the created buffers with per UID buffers. |
2346 | * | |
2347 | * Return 0 on success else a negative value. | |
9730260e | 2348 | */ |
7972aab2 DG |
2349 | static int create_channel_per_uid(struct ust_app *app, |
2350 | struct ltt_ust_session *usess, struct ust_app_session *ua_sess, | |
2351 | struct ust_app_channel *ua_chan) | |
9730260e DG |
2352 | { |
2353 | int ret; | |
7972aab2 DG |
2354 | struct buffer_reg_uid *reg_uid; |
2355 | struct buffer_reg_channel *reg_chan; | |
9730260e | 2356 | |
7972aab2 DG |
2357 | assert(app); |
2358 | assert(usess); | |
2359 | assert(ua_sess); | |
2360 | assert(ua_chan); | |
2361 | ||
2362 | DBG("UST app creating channel %s with per UID buffers", ua_chan->name); | |
2363 | ||
2364 | reg_uid = buffer_reg_uid_find(usess->id, app->bits_per_long, app->uid); | |
2365 | /* | |
2366 | * The session creation handles the creation of this global registry | |
2367 | * object. If none can be find, there is a code flow problem or a | |
2368 | * teardown race. | |
2369 | */ | |
2370 | assert(reg_uid); | |
2371 | ||
2372 | reg_chan = buffer_reg_channel_find(ua_chan->tracing_channel_id, | |
2373 | reg_uid); | |
2374 | if (!reg_chan) { | |
2375 | /* Create the buffer registry channel object. */ | |
2376 | ret = create_buffer_reg_channel(reg_uid->registry, ua_chan, ®_chan); | |
2377 | if (ret < 0) { | |
2378 | goto error; | |
2379 | } | |
2380 | assert(reg_chan); | |
2381 | ||
2382 | /* | |
2383 | * Create the buffers on the consumer side. This call populates the | |
2384 | * ust app channel object with all streams and data object. | |
2385 | */ | |
2386 | ret = do_consumer_create_channel(usess, ua_sess, ua_chan, | |
2387 | app->bits_per_long, reg_uid->registry->reg.ust); | |
2388 | if (ret < 0) { | |
07d2ae95 DG |
2389 | /* |
2390 | * Let's remove the previously created buffer registry channel so | |
2391 | * it's not visible anymore in the session registry. | |
2392 | */ | |
2393 | ust_registry_channel_del_free(reg_uid->registry->reg.ust, | |
2394 | ua_chan->tracing_channel_id); | |
2395 | buffer_reg_channel_remove(reg_uid->registry, reg_chan); | |
2396 | buffer_reg_channel_destroy(reg_chan, LTTNG_DOMAIN_UST); | |
7972aab2 DG |
2397 | goto error; |
2398 | } | |
2399 | ||
2400 | /* | |
2401 | * Setup the streams and add it to the session registry. | |
2402 | */ | |
2403 | ret = setup_buffer_reg_channel(reg_uid->registry, ua_chan, reg_chan); | |
2404 | if (ret < 0) { | |
2405 | goto error; | |
2406 | } | |
2407 | ||
2408 | } | |
2409 | ||
2410 | /* Send buffers to the application. */ | |
2411 | ret = send_channel_uid_to_ust(reg_chan, app, ua_sess, ua_chan); | |
9730260e DG |
2412 | if (ret < 0) { |
2413 | goto error; | |
2414 | } | |
2415 | ||
9730260e DG |
2416 | error: |
2417 | return ret; | |
2418 | } | |
2419 | ||
78f0bacd | 2420 | /* |
7972aab2 DG |
2421 | * Create and send to the application the created buffers with per PID buffers. |
2422 | * | |
2423 | * Return 0 on success else a negative value. | |
78f0bacd | 2424 | */ |
7972aab2 DG |
2425 | static int create_channel_per_pid(struct ust_app *app, |
2426 | struct ltt_ust_session *usess, struct ust_app_session *ua_sess, | |
2427 | struct ust_app_channel *ua_chan) | |
78f0bacd | 2428 | { |
8535a6d9 | 2429 | int ret; |
7972aab2 | 2430 | struct ust_registry_session *registry; |
78f0bacd | 2431 | |
7972aab2 DG |
2432 | assert(app); |
2433 | assert(usess); | |
2434 | assert(ua_sess); | |
2435 | assert(ua_chan); | |
2436 | ||
2437 | DBG("UST app creating channel %s with per PID buffers", ua_chan->name); | |
2438 | ||
2439 | rcu_read_lock(); | |
2440 | ||
2441 | registry = get_session_registry(ua_sess); | |
2442 | assert(registry); | |
2443 | ||
2444 | /* Create and add a new channel registry to session. */ | |
2445 | ret = ust_registry_channel_add(registry, ua_chan->key); | |
78f0bacd DG |
2446 | if (ret < 0) { |
2447 | goto error; | |
2448 | } | |
2449 | ||
7972aab2 DG |
2450 | /* Create and get channel on the consumer side. */ |
2451 | ret = do_consumer_create_channel(usess, ua_sess, ua_chan, | |
2452 | app->bits_per_long, registry); | |
2453 | if (ret < 0) { | |
2454 | goto error; | |
2455 | } | |
2456 | ||
2457 | ret = send_channel_pid_to_ust(app, ua_sess, ua_chan); | |
2458 | if (ret < 0) { | |
2459 | goto error; | |
2460 | } | |
8535a6d9 | 2461 | |
78f0bacd | 2462 | error: |
7972aab2 | 2463 | rcu_read_unlock(); |
78f0bacd DG |
2464 | return ret; |
2465 | } | |
2466 | ||
2467 | /* | |
7972aab2 DG |
2468 | * From an already allocated ust app channel, create the channel buffers if |
2469 | * need and send it to the application. This MUST be called with a RCU read | |
2470 | * side lock acquired. | |
2471 | * | |
2472 | * Return 0 on success or else a negative value. | |
78f0bacd | 2473 | */ |
7972aab2 DG |
2474 | static int do_create_channel(struct ust_app *app, |
2475 | struct ltt_ust_session *usess, struct ust_app_session *ua_sess, | |
2476 | struct ust_app_channel *ua_chan) | |
78f0bacd | 2477 | { |
7972aab2 | 2478 | int ret; |
78f0bacd | 2479 | |
7972aab2 DG |
2480 | assert(app); |
2481 | assert(usess); | |
2482 | assert(ua_sess); | |
2483 | assert(ua_chan); | |
2484 | ||
2485 | /* Handle buffer type before sending the channel to the application. */ | |
2486 | switch (usess->buffer_type) { | |
2487 | case LTTNG_BUFFER_PER_UID: | |
2488 | { | |
2489 | ret = create_channel_per_uid(app, usess, ua_sess, ua_chan); | |
2490 | if (ret < 0) { | |
2491 | goto error; | |
2492 | } | |
2493 | break; | |
2494 | } | |
2495 | case LTTNG_BUFFER_PER_PID: | |
2496 | { | |
2497 | ret = create_channel_per_pid(app, usess, ua_sess, ua_chan); | |
2498 | if (ret < 0) { | |
2499 | goto error; | |
2500 | } | |
2501 | break; | |
2502 | } | |
2503 | default: | |
2504 | assert(0); | |
2505 | ret = -EINVAL; | |
78f0bacd DG |
2506 | goto error; |
2507 | } | |
2508 | ||
7972aab2 DG |
2509 | /* Initialize ust objd object using the received handle and add it. */ |
2510 | lttng_ht_node_init_ulong(&ua_chan->ust_objd_node, ua_chan->handle); | |
2511 | lttng_ht_add_unique_ulong(app->ust_objd, &ua_chan->ust_objd_node); | |
78f0bacd | 2512 | |
7972aab2 DG |
2513 | /* If channel is not enabled, disable it on the tracer */ |
2514 | if (!ua_chan->enabled) { | |
2515 | ret = disable_ust_channel(app, ua_sess, ua_chan); | |
2516 | if (ret < 0) { | |
2517 | goto error; | |
2518 | } | |
78f0bacd DG |
2519 | } |
2520 | ||
2521 | error: | |
2522 | return ret; | |
2523 | } | |
2524 | ||
284d8f55 | 2525 | /* |
4d710ac2 DG |
2526 | * Create UST app channel and create it on the tracer. Set ua_chanp of the |
2527 | * newly created channel if not NULL. | |
d0b96690 | 2528 | * |
36b588ed | 2529 | * Called with UST app session lock and RCU read-side lock held. |
7972aab2 DG |
2530 | * |
2531 | * Return 0 on success or else a negative value. | |
284d8f55 | 2532 | */ |
4d710ac2 DG |
2533 | static int create_ust_app_channel(struct ust_app_session *ua_sess, |
2534 | struct ltt_ust_channel *uchan, struct ust_app *app, | |
7972aab2 | 2535 | enum lttng_ust_chan_type type, struct ltt_ust_session *usess, |
4d710ac2 | 2536 | struct ust_app_channel **ua_chanp) |
5b4a0ec0 DG |
2537 | { |
2538 | int ret = 0; | |
bec39940 DG |
2539 | struct lttng_ht_iter iter; |
2540 | struct lttng_ht_node_str *ua_chan_node; | |
5b4a0ec0 DG |
2541 | struct ust_app_channel *ua_chan; |
2542 | ||
2543 | /* Lookup channel in the ust app session */ | |
bec39940 DG |
2544 | lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &iter); |
2545 | ua_chan_node = lttng_ht_iter_get_node_str(&iter); | |
fc34caaa | 2546 | if (ua_chan_node != NULL) { |
5b4a0ec0 | 2547 | ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node); |
fc34caaa | 2548 | goto end; |
5b4a0ec0 DG |
2549 | } |
2550 | ||
d0b96690 | 2551 | ua_chan = alloc_ust_app_channel(uchan->name, ua_sess, &uchan->attr); |
fc34caaa DG |
2552 | if (ua_chan == NULL) { |
2553 | /* Only malloc can fail here */ | |
4d710ac2 | 2554 | ret = -ENOMEM; |
094d1690 | 2555 | goto error_alloc; |
fc34caaa DG |
2556 | } |
2557 | shadow_copy_channel(ua_chan, uchan); | |
2558 | ||
ffe60014 DG |
2559 | /* Set channel type. */ |
2560 | ua_chan->attr.type = type; | |
2561 | ||
7972aab2 | 2562 | ret = do_create_channel(app, usess, ua_sess, ua_chan); |
5b4a0ec0 DG |
2563 | if (ret < 0) { |
2564 | goto error; | |
2565 | } | |
2566 | ||
fc34caaa | 2567 | DBG2("UST app create channel %s for PID %d completed", ua_chan->name, |
852d0037 | 2568 | app->pid); |
fc34caaa | 2569 | |
d0b96690 DG |
2570 | /* Only add the channel if successful on the tracer side. */ |
2571 | lttng_ht_add_unique_str(ua_sess->channels, &ua_chan->node); | |
2572 | ||
fc34caaa | 2573 | end: |
4d710ac2 DG |
2574 | if (ua_chanp) { |
2575 | *ua_chanp = ua_chan; | |
2576 | } | |
2577 | ||
2578 | /* Everything went well. */ | |
2579 | return 0; | |
5b4a0ec0 DG |
2580 | |
2581 | error: | |
d0b96690 | 2582 | delete_ust_app_channel(ua_chan->is_sent ? app->sock : -1, ua_chan, app); |
094d1690 | 2583 | error_alloc: |
4d710ac2 | 2584 | return ret; |
5b4a0ec0 DG |
2585 | } |
2586 | ||
2587 | /* | |
2588 | * Create UST app event and create it on the tracer side. | |
d0b96690 DG |
2589 | * |
2590 | * Called with ust app session mutex held. | |
5b4a0ec0 | 2591 | */ |
edb67388 DG |
2592 | static |
2593 | int create_ust_app_event(struct ust_app_session *ua_sess, | |
2594 | struct ust_app_channel *ua_chan, struct ltt_ust_event *uevent, | |
2595 | struct ust_app *app) | |
284d8f55 | 2596 | { |
edb67388 | 2597 | int ret = 0; |
5b4a0ec0 | 2598 | struct ust_app_event *ua_event; |
284d8f55 | 2599 | |
5b4a0ec0 | 2600 | /* Get event node */ |
18eace3b | 2601 | ua_event = find_ust_app_event(ua_chan->events, uevent->attr.name, |
39c5a3a7 | 2602 | uevent->filter, uevent->attr.loglevel, uevent->exclusion); |
18eace3b | 2603 | if (ua_event != NULL) { |
fc34caaa | 2604 | ret = -EEXIST; |
edb67388 DG |
2605 | goto end; |
2606 | } | |
5b4a0ec0 | 2607 | |
edb67388 DG |
2608 | /* Does not exist so create one */ |
2609 | ua_event = alloc_ust_app_event(uevent->attr.name, &uevent->attr); | |
2610 | if (ua_event == NULL) { | |
2611 | /* Only malloc can failed so something is really wrong */ | |
2612 | ret = -ENOMEM; | |
fc34caaa | 2613 | goto end; |
5b4a0ec0 | 2614 | } |
edb67388 | 2615 | shadow_copy_event(ua_event, uevent); |
5b4a0ec0 | 2616 | |
edb67388 | 2617 | /* Create it on the tracer side */ |
5b4a0ec0 | 2618 | ret = create_ust_event(app, ua_sess, ua_chan, ua_event); |
284d8f55 | 2619 | if (ret < 0) { |
fc34caaa | 2620 | /* Not found previously means that it does not exist on the tracer */ |
76f66f63 | 2621 | assert(ret != -LTTNG_UST_ERR_EXIST); |
284d8f55 DG |
2622 | goto error; |
2623 | } | |
2624 | ||
d0b96690 | 2625 | add_unique_ust_app_event(ua_chan, ua_event); |
284d8f55 | 2626 | |
fc34caaa | 2627 | DBG2("UST app create event %s for PID %d completed", ua_event->name, |
852d0037 | 2628 | app->pid); |
7f79d3a1 | 2629 | |
edb67388 | 2630 | end: |
fc34caaa DG |
2631 | return ret; |
2632 | ||
5b4a0ec0 | 2633 | error: |
fc34caaa DG |
2634 | /* Valid. Calling here is already in a read side lock */ |
2635 | delete_ust_app_event(-1, ua_event); | |
edb67388 | 2636 | return ret; |
5b4a0ec0 DG |
2637 | } |
2638 | ||
2639 | /* | |
2640 | * Create UST metadata and open it on the tracer side. | |
d0b96690 | 2641 | * |
7972aab2 | 2642 | * Called with UST app session lock held and RCU read side lock. |
5b4a0ec0 DG |
2643 | */ |
2644 | static int create_ust_app_metadata(struct ust_app_session *ua_sess, | |
d65d2de8 DG |
2645 | struct ust_app *app, struct consumer_output *consumer, |
2646 | struct ustctl_consumer_channel_attr *attr) | |
5b4a0ec0 DG |
2647 | { |
2648 | int ret = 0; | |
ffe60014 | 2649 | struct ust_app_channel *metadata; |
d88aee68 | 2650 | struct consumer_socket *socket; |
7972aab2 | 2651 | struct ust_registry_session *registry; |
5b4a0ec0 | 2652 | |
ffe60014 DG |
2653 | assert(ua_sess); |
2654 | assert(app); | |
d88aee68 | 2655 | assert(consumer); |
5b4a0ec0 | 2656 | |
7972aab2 DG |
2657 | registry = get_session_registry(ua_sess); |
2658 | assert(registry); | |
2659 | ||
1b532a60 DG |
2660 | /* Metadata already exists for this registry or it was closed previously */ |
2661 | if (registry->metadata_key || registry->metadata_closed) { | |
7972aab2 DG |
2662 | ret = 0; |
2663 | goto error; | |
5b4a0ec0 DG |
2664 | } |
2665 | ||
ffe60014 | 2666 | /* Allocate UST metadata */ |
d0b96690 | 2667 | metadata = alloc_ust_app_channel(DEFAULT_METADATA_NAME, ua_sess, NULL); |
ffe60014 DG |
2668 | if (!metadata) { |
2669 | /* malloc() failed */ | |
2670 | ret = -ENOMEM; | |
2671 | goto error; | |
2672 | } | |
5b4a0ec0 | 2673 | |
d65d2de8 DG |
2674 | if (!attr) { |
2675 | /* Set default attributes for metadata. */ | |
2676 | metadata->attr.overwrite = DEFAULT_CHANNEL_OVERWRITE; | |
2677 | metadata->attr.subbuf_size = default_get_metadata_subbuf_size(); | |
2678 | metadata->attr.num_subbuf = DEFAULT_METADATA_SUBBUF_NUM; | |
0a9c6494 DG |
2679 | metadata->attr.switch_timer_interval = DEFAULT_METADATA_SWITCH_TIMER; |
2680 | metadata->attr.read_timer_interval = DEFAULT_METADATA_READ_TIMER; | |
d65d2de8 DG |
2681 | metadata->attr.output = LTTNG_UST_MMAP; |
2682 | metadata->attr.type = LTTNG_UST_CHAN_METADATA; | |
2683 | } else { | |
2684 | memcpy(&metadata->attr, attr, sizeof(metadata->attr)); | |
2685 | metadata->attr.output = LTTNG_UST_MMAP; | |
2686 | metadata->attr.type = LTTNG_UST_CHAN_METADATA; | |
2687 | } | |
5b4a0ec0 | 2688 | |
7972aab2 DG |
2689 | /* Need one fd for the channel. */ |
2690 | ret = lttng_fd_get(LTTNG_FD_APPS, 1); | |
2691 | if (ret < 0) { | |
2692 | ERR("Exhausted number of available FD upon create metadata"); | |
2693 | goto error; | |
2694 | } | |
2695 | ||
4dc3dfc5 DG |
2696 | /* Get the right consumer socket for the application. */ |
2697 | socket = consumer_find_socket_by_bitness(app->bits_per_long, consumer); | |
2698 | if (!socket) { | |
2699 | ret = -EINVAL; | |
2700 | goto error_consumer; | |
2701 | } | |
2702 | ||
331744e3 JD |
2703 | /* |
2704 | * Keep metadata key so we can identify it on the consumer side. Assign it | |
2705 | * to the registry *before* we ask the consumer so we avoid the race of the | |
2706 | * consumer requesting the metadata and the ask_channel call on our side | |
2707 | * did not returned yet. | |
2708 | */ | |
2709 | registry->metadata_key = metadata->key; | |
2710 | ||
d88aee68 DG |
2711 | /* |
2712 | * Ask the metadata channel creation to the consumer. The metadata object | |
2713 | * will be created by the consumer and kept their. However, the stream is | |
2714 | * never added or monitored until we do a first push metadata to the | |
2715 | * consumer. | |
2716 | */ | |
7972aab2 DG |
2717 | ret = ust_consumer_ask_channel(ua_sess, metadata, consumer, socket, |
2718 | registry); | |
d88aee68 | 2719 | if (ret < 0) { |
f2a444f1 DG |
2720 | /* Nullify the metadata key so we don't try to close it later on. */ |
2721 | registry->metadata_key = 0; | |
d88aee68 DG |
2722 | goto error_consumer; |
2723 | } | |
2724 | ||
2725 | /* | |
2726 | * The setup command will make the metadata stream be sent to the relayd, | |
2727 | * if applicable, and the thread managing the metadatas. This is important | |
2728 | * because after this point, if an error occurs, the only way the stream | |
2729 | * can be deleted is to be monitored in the consumer. | |
2730 | */ | |
7972aab2 | 2731 | ret = consumer_setup_metadata(socket, metadata->key); |
ffe60014 | 2732 | if (ret < 0) { |
f2a444f1 DG |
2733 | /* Nullify the metadata key so we don't try to close it later on. */ |
2734 | registry->metadata_key = 0; | |
d88aee68 | 2735 | goto error_consumer; |
5b4a0ec0 DG |
2736 | } |
2737 | ||
7972aab2 DG |
2738 | DBG2("UST metadata with key %" PRIu64 " created for app pid %d", |
2739 | metadata->key, app->pid); | |
5b4a0ec0 | 2740 | |
d88aee68 | 2741 | error_consumer: |
b80f0b6c | 2742 | lttng_fd_put(LTTNG_FD_APPS, 1); |
d88aee68 | 2743 | delete_ust_app_channel(-1, metadata, app); |
5b4a0ec0 | 2744 | error: |
ffe60014 | 2745 | return ret; |
5b4a0ec0 DG |
2746 | } |
2747 | ||
2748 | /* | |
2749 | * Return pointer to traceable apps list. | |
2750 | */ | |
bec39940 | 2751 | struct lttng_ht *ust_app_get_ht(void) |
5b4a0ec0 DG |
2752 | { |
2753 | return ust_app_ht; | |
2754 | } | |
2755 | ||
2756 | /* | |
d88aee68 DG |
2757 | * Return ust app pointer or NULL if not found. RCU read side lock MUST be |
2758 | * acquired before calling this function. | |
5b4a0ec0 DG |
2759 | */ |
2760 | struct ust_app *ust_app_find_by_pid(pid_t pid) | |
2761 | { | |
d88aee68 | 2762 | struct ust_app *app = NULL; |
bec39940 DG |
2763 | struct lttng_ht_node_ulong *node; |
2764 | struct lttng_ht_iter iter; | |
5b4a0ec0 | 2765 | |
bec39940 DG |
2766 | lttng_ht_lookup(ust_app_ht, (void *)((unsigned long) pid), &iter); |
2767 | node = lttng_ht_iter_get_node_ulong(&iter); | |
5b4a0ec0 DG |
2768 | if (node == NULL) { |
2769 | DBG2("UST app no found with pid %d", pid); | |
2770 | goto error; | |
2771 | } | |
5b4a0ec0 DG |
2772 | |
2773 | DBG2("Found UST app by pid %d", pid); | |
2774 | ||
d88aee68 | 2775 | app = caa_container_of(node, struct ust_app, pid_n); |
5b4a0ec0 DG |
2776 | |
2777 | error: | |
d88aee68 | 2778 | return app; |
5b4a0ec0 DG |
2779 | } |
2780 | ||
d88aee68 DG |
2781 | /* |
2782 | * Allocate and init an UST app object using the registration information and | |
2783 | * the command socket. This is called when the command socket connects to the | |
2784 | * session daemon. | |
2785 | * | |
2786 | * The object is returned on success or else NULL. | |
2787 | */ | |
d0b96690 | 2788 | struct ust_app *ust_app_create(struct ust_register_msg *msg, int sock) |
5b4a0ec0 | 2789 | { |
d0b96690 DG |
2790 | struct ust_app *lta = NULL; |
2791 | ||
2792 | assert(msg); | |
2793 | assert(sock >= 0); | |
2794 | ||
2795 | DBG3("UST app creating application for socket %d", sock); | |
5b4a0ec0 | 2796 | |
173af62f DG |
2797 | if ((msg->bits_per_long == 64 && |
2798 | (uatomic_read(&ust_consumerd64_fd) == -EINVAL)) | |
2799 | || (msg->bits_per_long == 32 && | |
2800 | (uatomic_read(&ust_consumerd32_fd) == -EINVAL))) { | |
f943b0fb | 2801 | ERR("Registration failed: application \"%s\" (pid: %d) has " |
d0b96690 DG |
2802 | "%d-bit long, but no consumerd for this size is available.\n", |
2803 | msg->name, msg->pid, msg->bits_per_long); | |
2804 | goto error; | |
3f2c5fcc | 2805 | } |
d0b96690 | 2806 | |
5b4a0ec0 DG |
2807 | lta = zmalloc(sizeof(struct ust_app)); |
2808 | if (lta == NULL) { | |
2809 | PERROR("malloc"); | |
d0b96690 | 2810 | goto error; |
5b4a0ec0 DG |
2811 | } |
2812 | ||
2813 | lta->ppid = msg->ppid; | |
2814 | lta->uid = msg->uid; | |
2815 | lta->gid = msg->gid; | |
d0b96690 | 2816 | |
7753dea8 | 2817 | lta->bits_per_long = msg->bits_per_long; |
d0b96690 DG |
2818 | lta->uint8_t_alignment = msg->uint8_t_alignment; |
2819 | lta->uint16_t_alignment = msg->uint16_t_alignment; | |
2820 | lta->uint32_t_alignment = msg->uint32_t_alignment; | |
2821 | lta->uint64_t_alignment = msg->uint64_t_alignment; | |
2822 | lta->long_alignment = msg->long_alignment; | |
2823 | lta->byte_order = msg->byte_order; | |
2824 | ||
5b4a0ec0 DG |
2825 | lta->v_major = msg->major; |
2826 | lta->v_minor = msg->minor; | |
d9bf3ca4 | 2827 | lta->sessions = lttng_ht_new(0, LTTNG_HT_TYPE_U64); |
d0b96690 DG |
2828 | lta->ust_objd = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG); |
2829 | lta->notify_sock = -1; | |
d88aee68 DG |
2830 | |
2831 | /* Copy name and make sure it's NULL terminated. */ | |
2832 | strncpy(lta->name, msg->name, sizeof(lta->name)); | |
2833 | lta->name[UST_APP_PROCNAME_LEN] = '\0'; | |
2834 | ||
2835 | /* | |
2836 | * Before this can be called, when receiving the registration information, | |
2837 | * the application compatibility is checked. So, at this point, the | |
2838 | * application can work with this session daemon. | |
2839 | */ | |
d0b96690 | 2840 | lta->compatible = 1; |
5b4a0ec0 | 2841 | |
852d0037 | 2842 | lta->pid = msg->pid; |
d0b96690 | 2843 | lttng_ht_node_init_ulong(<a->pid_n, (unsigned long) lta->pid); |
852d0037 | 2844 | lta->sock = sock; |
d0b96690 | 2845 | lttng_ht_node_init_ulong(<a->sock_n, (unsigned long) lta->sock); |
5b4a0ec0 | 2846 | |
d42f20df DG |
2847 | CDS_INIT_LIST_HEAD(<a->teardown_head); |
2848 | ||
d0b96690 DG |
2849 | error: |
2850 | return lta; | |
2851 | } | |
2852 | ||
d88aee68 DG |
2853 | /* |
2854 | * For a given application object, add it to every hash table. | |
2855 | */ | |
d0b96690 DG |
2856 | void ust_app_add(struct ust_app *app) |
2857 | { | |
2858 | assert(app); | |
2859 | assert(app->notify_sock >= 0); | |
2860 | ||
5b4a0ec0 | 2861 | rcu_read_lock(); |
852d0037 DG |
2862 | |
2863 | /* | |
2864 | * On a re-registration, we want to kick out the previous registration of | |
2865 | * that pid | |
2866 | */ | |
d0b96690 | 2867 | lttng_ht_add_replace_ulong(ust_app_ht, &app->pid_n); |
852d0037 DG |
2868 | |
2869 | /* | |
2870 | * The socket _should_ be unique until _we_ call close. So, a add_unique | |
2871 | * for the ust_app_ht_by_sock is used which asserts fail if the entry was | |
2872 | * already in the table. | |
2873 | */ | |
d0b96690 | 2874 | lttng_ht_add_unique_ulong(ust_app_ht_by_sock, &app->sock_n); |
852d0037 | 2875 | |
d0b96690 DG |
2876 | /* Add application to the notify socket hash table. */ |
2877 | lttng_ht_node_init_ulong(&app->notify_sock_n, app->notify_sock); | |
2878 | lttng_ht_add_unique_ulong(ust_app_ht_by_notify_sock, &app->notify_sock_n); | |
5b4a0ec0 | 2879 | |
d0b96690 | 2880 | DBG("App registered with pid:%d ppid:%d uid:%d gid:%d sock:%d name:%s " |
d88aee68 DG |
2881 | "notify_sock:%d (version %d.%d)", app->pid, app->ppid, app->uid, |
2882 | app->gid, app->sock, app->name, app->notify_sock, app->v_major, | |
2883 | app->v_minor); | |
5b4a0ec0 | 2884 | |
d0b96690 DG |
2885 | rcu_read_unlock(); |
2886 | } | |
2887 | ||
d88aee68 DG |
2888 | /* |
2889 | * Set the application version into the object. | |
2890 | * | |
2891 | * Return 0 on success else a negative value either an errno code or a | |
2892 | * LTTng-UST error code. | |
2893 | */ | |
d0b96690 DG |
2894 | int ust_app_version(struct ust_app *app) |
2895 | { | |
d88aee68 DG |
2896 | int ret; |
2897 | ||
d0b96690 | 2898 | assert(app); |
d88aee68 DG |
2899 | |
2900 | ret = ustctl_tracer_version(app->sock, &app->version); | |
2901 | if (ret < 0) { | |
2902 | if (ret != -LTTNG_UST_ERR_EXITING && ret != -EPIPE) { | |
2903 | ERR("UST app %d verson failed with ret %d", app->sock, ret); | |
2904 | } else { | |
2905 | DBG3("UST app %d verion failed. Application is dead", app->sock); | |
2906 | } | |
2907 | } | |
2908 | ||
2909 | return ret; | |
5b4a0ec0 DG |
2910 | } |
2911 | ||
2912 | /* | |
2913 | * Unregister app by removing it from the global traceable app list and freeing | |
2914 | * the data struct. | |
2915 | * | |
2916 | * The socket is already closed at this point so no close to sock. | |
2917 | */ | |
2918 | void ust_app_unregister(int sock) | |
2919 | { | |
2920 | struct ust_app *lta; | |
bec39940 DG |
2921 | struct lttng_ht_node_ulong *node; |
2922 | struct lttng_ht_iter iter; | |
d42f20df | 2923 | struct ust_app_session *ua_sess; |
525b0740 | 2924 | int ret; |
5b4a0ec0 DG |
2925 | |
2926 | rcu_read_lock(); | |
886459c6 | 2927 | |
5b4a0ec0 | 2928 | /* Get the node reference for a call_rcu */ |
852d0037 | 2929 | lttng_ht_lookup(ust_app_ht_by_sock, (void *)((unsigned long) sock), &iter); |
bec39940 | 2930 | node = lttng_ht_iter_get_node_ulong(&iter); |
d0b96690 | 2931 | assert(node); |
284d8f55 | 2932 | |
852d0037 | 2933 | lta = caa_container_of(node, struct ust_app, sock_n); |
852d0037 DG |
2934 | DBG("PID %d unregistering with sock %d", lta->pid, sock); |
2935 | ||
886459c6 | 2936 | /* Remove application from PID hash table */ |
852d0037 DG |
2937 | ret = lttng_ht_del(ust_app_ht_by_sock, &iter); |
2938 | assert(!ret); | |
2939 | ||
d88aee68 DG |
2940 | /* |
2941 | * Remove application from notify hash table. The thread handling the | |
2942 | * notify socket could have deleted the node so ignore on error because | |
2943 | * either way it's valid. The close of that socket is handled by the other | |
2944 | * thread. | |
2945 | */ | |
d0b96690 | 2946 | iter.iter.node = <a->notify_sock_n.node; |
d88aee68 | 2947 | (void) lttng_ht_del(ust_app_ht_by_notify_sock, &iter); |
852d0037 | 2948 | |
5b98a774 DG |
2949 | /* |
2950 | * Ignore return value since the node might have been removed before by an | |
2951 | * add replace during app registration because the PID can be reassigned by | |
2952 | * the OS. | |
2953 | */ | |
d0b96690 | 2954 | iter.iter.node = <a->pid_n.node; |
bec39940 | 2955 | ret = lttng_ht_del(ust_app_ht, &iter); |
5b98a774 DG |
2956 | if (ret) { |
2957 | DBG3("Unregister app by PID %d failed. This can happen on pid reuse", | |
2958 | lta->pid); | |
2959 | } | |
852d0037 | 2960 | |
d42f20df DG |
2961 | /* Remove sessions so they are not visible during deletion.*/ |
2962 | cds_lfht_for_each_entry(lta->sessions->ht, &iter.iter, ua_sess, | |
2963 | node.node) { | |
7972aab2 DG |
2964 | struct ust_registry_session *registry; |
2965 | ||
d42f20df DG |
2966 | ret = lttng_ht_del(lta->sessions, &iter); |
2967 | if (ret) { | |
2968 | /* The session was already removed so scheduled for teardown. */ | |
2969 | continue; | |
2970 | } | |
2971 | ||
2972 | /* | |
2973 | * Add session to list for teardown. This is safe since at this point we | |
2974 | * are the only one using this list. | |
2975 | */ | |
d88aee68 DG |
2976 | pthread_mutex_lock(&ua_sess->lock); |
2977 | ||
2978 | /* | |
2979 | * Normally, this is done in the delete session process which is | |
2980 | * executed in the call rcu below. However, upon registration we can't | |
2981 | * afford to wait for the grace period before pushing data or else the | |
2982 | * data pending feature can race between the unregistration and stop | |
2983 | * command where the data pending command is sent *before* the grace | |
2984 | * period ended. | |
2985 | * | |
2986 | * The close metadata below nullifies the metadata pointer in the | |
2987 | * session so the delete session will NOT push/close a second time. | |
2988 | */ | |
7972aab2 | 2989 | registry = get_session_registry(ua_sess); |
1b532a60 | 2990 | if (registry && !registry->metadata_closed) { |
7972aab2 DG |
2991 | /* Push metadata for application before freeing the application. */ |
2992 | (void) push_metadata(registry, ua_sess->consumer); | |
2993 | ||
2994 | /* | |
2995 | * Don't ask to close metadata for global per UID buffers. Close | |
1b532a60 DG |
2996 | * metadata only on destroy trace session in this case. Also, the |
2997 | * previous push metadata could have flag the metadata registry to | |
2998 | * close so don't send a close command if closed. | |
7972aab2 | 2999 | */ |
1b532a60 DG |
3000 | if (ua_sess->buffer_type != LTTNG_BUFFER_PER_UID && |
3001 | !registry->metadata_closed) { | |
7972aab2 DG |
3002 | /* And ask to close it for this session registry. */ |
3003 | (void) close_metadata(registry, ua_sess->consumer); | |
3004 | } | |
3005 | } | |
d88aee68 | 3006 | |
d42f20df | 3007 | cds_list_add(&ua_sess->teardown_node, <a->teardown_head); |
d88aee68 | 3008 | pthread_mutex_unlock(&ua_sess->lock); |
d42f20df DG |
3009 | } |
3010 | ||
852d0037 DG |
3011 | /* Free memory */ |
3012 | call_rcu(<a->pid_n.head, delete_ust_app_rcu); | |
3013 | ||
5b4a0ec0 DG |
3014 | rcu_read_unlock(); |
3015 | return; | |
284d8f55 DG |
3016 | } |
3017 | ||
3018 | /* | |
5b4a0ec0 | 3019 | * Return traceable_app_count |
284d8f55 | 3020 | */ |
5b4a0ec0 | 3021 | unsigned long ust_app_list_count(void) |
284d8f55 | 3022 | { |
5b4a0ec0 | 3023 | unsigned long count; |
284d8f55 | 3024 | |
5b4a0ec0 | 3025 | rcu_read_lock(); |
bec39940 | 3026 | count = lttng_ht_get_count(ust_app_ht); |
5b4a0ec0 | 3027 | rcu_read_unlock(); |
284d8f55 | 3028 | |
5b4a0ec0 | 3029 | return count; |
284d8f55 DG |
3030 | } |
3031 | ||
5b4a0ec0 DG |
3032 | /* |
3033 | * Fill events array with all events name of all registered apps. | |
3034 | */ | |
3035 | int ust_app_list_events(struct lttng_event **events) | |
421cb601 | 3036 | { |
5b4a0ec0 DG |
3037 | int ret, handle; |
3038 | size_t nbmem, count = 0; | |
bec39940 | 3039 | struct lttng_ht_iter iter; |
5b4a0ec0 | 3040 | struct ust_app *app; |
c617c0c6 | 3041 | struct lttng_event *tmp_event; |
421cb601 | 3042 | |
5b4a0ec0 | 3043 | nbmem = UST_APP_EVENT_LIST_SIZE; |
c617c0c6 MD |
3044 | tmp_event = zmalloc(nbmem * sizeof(struct lttng_event)); |
3045 | if (tmp_event == NULL) { | |
5b4a0ec0 DG |
3046 | PERROR("zmalloc ust app events"); |
3047 | ret = -ENOMEM; | |
421cb601 DG |
3048 | goto error; |
3049 | } | |
3050 | ||
5b4a0ec0 | 3051 | rcu_read_lock(); |
421cb601 | 3052 | |
852d0037 | 3053 | cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) { |
90eaa0d2 | 3054 | struct lttng_ust_tracepoint_iter uiter; |
ac3bd9c0 | 3055 | |
840cb59c | 3056 | health_code_update(); |
86acf0da | 3057 | |
e0c7ec2b DG |
3058 | if (!app->compatible) { |
3059 | /* | |
3060 | * TODO: In time, we should notice the caller of this error by | |
3061 | * telling him that this is a version error. | |
3062 | */ | |
3063 | continue; | |
3064 | } | |
852d0037 | 3065 | handle = ustctl_tracepoint_list(app->sock); |
5b4a0ec0 | 3066 | if (handle < 0) { |
ffe60014 DG |
3067 | if (handle != -EPIPE && handle != -LTTNG_UST_ERR_EXITING) { |
3068 | ERR("UST app list events getting handle failed for app pid %d", | |
3069 | app->pid); | |
3070 | } | |
5b4a0ec0 DG |
3071 | continue; |
3072 | } | |
421cb601 | 3073 | |
852d0037 | 3074 | while ((ret = ustctl_tracepoint_list_get(app->sock, handle, |
fb54cdbf | 3075 | &uiter)) != -LTTNG_UST_ERR_NOENT) { |
ffe60014 DG |
3076 | /* Handle ustctl error. */ |
3077 | if (ret < 0) { | |
3078 | free(tmp_event); | |
3079 | if (ret != -LTTNG_UST_ERR_EXITING || ret != -EPIPE) { | |
3080 | ERR("UST app tp list get failed for app %d with ret %d", | |
3081 | app->sock, ret); | |
3082 | } else { | |
3083 | DBG3("UST app tp list get failed. Application is dead"); | |
3757b385 DG |
3084 | /* |
3085 | * This is normal behavior, an application can die during the | |
3086 | * creation process. Don't report an error so the execution can | |
3087 | * continue normally. Continue normal execution. | |
3088 | */ | |
3089 | break; | |
ffe60014 DG |
3090 | } |
3091 | goto rcu_error; | |
3092 | } | |
3093 | ||
840cb59c | 3094 | health_code_update(); |
815564d8 | 3095 | if (count >= nbmem) { |
d7b3776f | 3096 | /* In case the realloc fails, we free the memory */ |
c617c0c6 MD |
3097 | void *ptr; |
3098 | ||
815564d8 MD |
3099 | DBG2("Reallocating event list from %zu to %zu entries", nbmem, |
3100 | 2 * nbmem); | |
3101 | nbmem *= 2; | |
c617c0c6 MD |
3102 | ptr = realloc(tmp_event, nbmem * sizeof(struct lttng_event)); |
3103 | if (ptr == NULL) { | |
5b4a0ec0 | 3104 | PERROR("realloc ust app events"); |
c617c0c6 | 3105 | free(tmp_event); |
5b4a0ec0 DG |
3106 | ret = -ENOMEM; |
3107 | goto rcu_error; | |
3108 | } | |
c617c0c6 | 3109 | tmp_event = ptr; |
5b4a0ec0 | 3110 | } |
c617c0c6 MD |
3111 | memcpy(tmp_event[count].name, uiter.name, LTTNG_UST_SYM_NAME_LEN); |
3112 | tmp_event[count].loglevel = uiter.loglevel; | |
3113 | tmp_event[count].type = (enum lttng_event_type) LTTNG_UST_TRACEPOINT; | |
3114 | tmp_event[count].pid = app->pid; | |
3115 | tmp_event[count].enabled = -1; | |
5b4a0ec0 | 3116 | count++; |
421cb601 | 3117 | } |
421cb601 DG |
3118 | } |
3119 | ||
5b4a0ec0 | 3120 | ret = count; |
c617c0c6 | 3121 | *events = tmp_event; |
421cb601 | 3122 | |
5b4a0ec0 | 3123 | DBG2("UST app list events done (%zu events)", count); |
421cb601 | 3124 | |
5b4a0ec0 DG |
3125 | rcu_error: |
3126 | rcu_read_unlock(); | |
421cb601 | 3127 | error: |
840cb59c | 3128 | health_code_update(); |
5b4a0ec0 | 3129 | return ret; |
421cb601 DG |
3130 | } |
3131 | ||
f37d259d MD |
3132 | /* |
3133 | * Fill events array with all events name of all registered apps. | |
3134 | */ | |
3135 | int ust_app_list_event_fields(struct lttng_event_field **fields) | |
3136 | { | |
3137 | int ret, handle; | |
3138 | size_t nbmem, count = 0; | |
3139 | struct lttng_ht_iter iter; | |
3140 | struct ust_app *app; | |
c617c0c6 | 3141 | struct lttng_event_field *tmp_event; |
f37d259d MD |
3142 | |
3143 | nbmem = UST_APP_EVENT_LIST_SIZE; | |
c617c0c6 MD |
3144 | tmp_event = zmalloc(nbmem * sizeof(struct lttng_event_field)); |
3145 | if (tmp_event == NULL) { | |
f37d259d MD |
3146 | PERROR("zmalloc ust app event fields"); |
3147 | ret = -ENOMEM; | |
3148 | goto error; | |
3149 | } | |
3150 | ||
3151 | rcu_read_lock(); | |
3152 | ||
3153 | cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) { | |
3154 | struct lttng_ust_field_iter uiter; | |
3155 | ||
840cb59c | 3156 | health_code_update(); |
86acf0da | 3157 | |
f37d259d MD |
3158 | if (!app->compatible) { |
3159 | /* | |
3160 | * TODO: In time, we should notice the caller of this error by | |
3161 | * telling him that this is a version error. | |
3162 | */ | |
3163 | continue; | |
3164 | } | |
3165 | handle = ustctl_tracepoint_field_list(app->sock); | |
3166 | if (handle < 0) { | |
ffe60014 DG |
3167 | if (handle != -EPIPE && handle != -LTTNG_UST_ERR_EXITING) { |
3168 | ERR("UST app list field getting handle failed for app pid %d", | |
3169 | app->pid); | |
3170 | } | |
f37d259d MD |
3171 | continue; |
3172 | } | |
3173 | ||
3174 | while ((ret = ustctl_tracepoint_field_list_get(app->sock, handle, | |
fb54cdbf | 3175 | &uiter)) != -LTTNG_UST_ERR_NOENT) { |
ffe60014 DG |
3176 | /* Handle ustctl error. */ |
3177 | if (ret < 0) { | |
3178 | free(tmp_event); | |
3179 | if (ret != -LTTNG_UST_ERR_EXITING || ret != -EPIPE) { | |
3180 | ERR("UST app tp list field failed for app %d with ret %d", | |
3181 | app->sock, ret); | |
3182 | } else { | |
3183 | DBG3("UST app tp list field failed. Application is dead"); | |
3757b385 DG |
3184 | /* |
3185 | * This is normal behavior, an application can die during the | |
3186 | * creation process. Don't report an error so the execution can | |
3187 | * continue normally. | |
3188 | */ | |
3189 | break; | |
ffe60014 DG |
3190 | } |
3191 | goto rcu_error; | |
3192 | } | |
3193 | ||
840cb59c | 3194 | health_code_update(); |
f37d259d | 3195 | if (count >= nbmem) { |
d7b3776f | 3196 | /* In case the realloc fails, we free the memory */ |
c617c0c6 MD |
3197 | void *ptr; |
3198 | ||
f37d259d MD |
3199 | DBG2("Reallocating event field list from %zu to %zu entries", nbmem, |
3200 | 2 * nbmem); | |
3201 | nbmem *= 2; | |
c617c0c6 MD |
3202 | ptr = realloc(tmp_event, nbmem * sizeof(struct lttng_event_field)); |
3203 | if (ptr == NULL) { | |
f37d259d | 3204 | PERROR("realloc ust app event fields"); |
c617c0c6 | 3205 | free(tmp_event); |
f37d259d MD |
3206 | ret = -ENOMEM; |
3207 | goto rcu_error; | |
3208 | } | |
c617c0c6 | 3209 | tmp_event = ptr; |
f37d259d | 3210 | } |
f37d259d | 3211 | |
c617c0c6 MD |
3212 | memcpy(tmp_event[count].field_name, uiter.field_name, LTTNG_UST_SYM_NAME_LEN); |
3213 | tmp_event[count].type = uiter.type; | |
3214 | tmp_event[count].nowrite = uiter.nowrite; | |
f37d259d | 3215 | |
c617c0c6 MD |
3216 | memcpy(tmp_event[count].event.name, uiter.event_name, LTTNG_UST_SYM_NAME_LEN); |
3217 | tmp_event[count].event.loglevel = uiter.loglevel; | |
3218 | tmp_event[count].event.type = LTTNG_UST_TRACEPOINT; | |
3219 | tmp_event[count].event.pid = app->pid; | |
3220 | tmp_event[count].event.enabled = -1; | |
f37d259d MD |
3221 | count++; |
3222 | } | |
3223 | } | |
3224 | ||
3225 | ret = count; | |
c617c0c6 | 3226 | *fields = tmp_event; |
f37d259d MD |
3227 | |
3228 | DBG2("UST app list event fields done (%zu events)", count); | |
3229 | ||
3230 | rcu_error: | |
3231 | rcu_read_unlock(); | |
3232 | error: | |
840cb59c | 3233 | health_code_update(); |
f37d259d MD |
3234 | return ret; |
3235 | } | |
3236 | ||
5b4a0ec0 DG |
3237 | /* |
3238 | * Free and clean all traceable apps of the global list. | |
36b588ed MD |
3239 | * |
3240 | * Should _NOT_ be called with RCU read-side lock held. | |
5b4a0ec0 DG |
3241 | */ |
3242 | void ust_app_clean_list(void) | |
421cb601 | 3243 | { |
5b4a0ec0 | 3244 | int ret; |
659ed79f | 3245 | struct ust_app *app; |
bec39940 | 3246 | struct lttng_ht_iter iter; |
421cb601 | 3247 | |
5b4a0ec0 | 3248 | DBG2("UST app cleaning registered apps hash table"); |
421cb601 | 3249 | |
5b4a0ec0 | 3250 | rcu_read_lock(); |
421cb601 | 3251 | |
659ed79f | 3252 | cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) { |
bec39940 | 3253 | ret = lttng_ht_del(ust_app_ht, &iter); |
525b0740 | 3254 | assert(!ret); |
659ed79f | 3255 | call_rcu(&app->pid_n.head, delete_ust_app_rcu); |
421cb601 DG |
3256 | } |
3257 | ||
852d0037 | 3258 | /* Cleanup socket hash table */ |
659ed79f DG |
3259 | cds_lfht_for_each_entry(ust_app_ht_by_sock->ht, &iter.iter, app, |
3260 | sock_n.node) { | |
852d0037 | 3261 | ret = lttng_ht_del(ust_app_ht_by_sock, &iter); |
bec39940 DG |
3262 | assert(!ret); |
3263 | } | |
852d0037 | 3264 | |
d88aee68 DG |
3265 | /* Cleanup notify socket hash table */ |
3266 | cds_lfht_for_each_entry(ust_app_ht_by_notify_sock->ht, &iter.iter, app, | |
3267 | notify_sock_n.node) { | |
3268 | ret = lttng_ht_del(ust_app_ht_by_notify_sock, &iter); | |
3269 | assert(!ret); | |
3270 | } | |
36b588ed | 3271 | rcu_read_unlock(); |
d88aee68 | 3272 | |
bec39940 | 3273 | /* Destroy is done only when the ht is empty */ |
0b2dc8df MD |
3274 | ht_cleanup_push(ust_app_ht); |
3275 | ht_cleanup_push(ust_app_ht_by_sock); | |
3276 | ht_cleanup_push(ust_app_ht_by_notify_sock); | |
5b4a0ec0 DG |
3277 | } |
3278 | ||
3279 | /* | |