Commit | Line | Data |
---|---|---|
48842b30 | 1 | /* |
21cf9b6b | 2 | * Copyright (C) 2011 EfficiOS Inc. |
48842b30 | 3 | * |
ab5be9fa | 4 | * SPDX-License-Identifier: GPL-2.0-only |
48842b30 | 5 | * |
48842b30 DG |
6 | */ |
7 | ||
6c1c0768 | 8 | #define _LGPL_SOURCE |
48842b30 DG |
9 | #include <stdio.h> |
10 | #include <stdlib.h> | |
11 | #include <string.h> | |
12 | #include <unistd.h> | |
d88aee68 | 13 | #include <inttypes.h> |
48842b30 | 14 | |
c9e313bc SM |
15 | #include <common/compat/errno.hpp> |
16 | #include <common/common.hpp> | |
17 | #include <common/consumer/consumer.hpp> | |
18 | #include <common/defaults.hpp> | |
48842b30 | 19 | |
c9e313bc SM |
20 | #include "consumer.hpp" |
21 | #include "health-sessiond.hpp" | |
22 | #include "ust-consumer.hpp" | |
23 | #include "lttng-ust-error.hpp" | |
24 | #include "buffer-registry.hpp" | |
25 | #include "session.hpp" | |
26 | #include "lttng-sessiond.hpp" | |
48842b30 | 27 | |
37278a1e | 28 | /* |
e9404c27 | 29 | * Send a single channel to the consumer using command ASK_CHANNEL_CREATION. |
ffe60014 | 30 | * |
7972aab2 | 31 | * Consumer socket lock MUST be acquired before calling this. |
37278a1e | 32 | */ |
ffe60014 | 33 | static int ask_channel_creation(struct ust_app_session *ua_sess, |
e098433c JG |
34 | struct ust_app_channel *ua_chan, |
35 | struct consumer_output *consumer, | |
36 | struct consumer_socket *socket, | |
37 | struct ust_registry_session *registry, | |
d2956687 | 38 | struct lttng_trace_chunk *trace_chunk) |
37278a1e | 39 | { |
0c759fc9 | 40 | int ret, output; |
7972aab2 DG |
41 | uint32_t chan_id; |
42 | uint64_t key, chan_reg_key; | |
ffe60014 | 43 | char *pathname = NULL; |
37278a1e | 44 | struct lttcomm_consumer_msg msg; |
3273699d | 45 | struct ust_registry_channel *ust_reg_chan; |
d7ba1388 | 46 | char shm_path[PATH_MAX] = ""; |
3d071855 | 47 | char root_shm_path[PATH_MAX] = ""; |
d2956687 | 48 | bool is_local_trace; |
5da88b0f | 49 | size_t consumer_path_offset = 0; |
37278a1e | 50 | |
a0377dfe FD |
51 | LTTNG_ASSERT(ua_sess); |
52 | LTTNG_ASSERT(ua_chan); | |
53 | LTTNG_ASSERT(socket); | |
54 | LTTNG_ASSERT(consumer); | |
55 | LTTNG_ASSERT(registry); | |
ffe60014 DG |
56 | |
57 | DBG2("Asking UST consumer for channel"); | |
58 | ||
d2956687 JG |
59 | is_local_trace = consumer->net_seq_index == -1ULL; |
60 | /* Format the channel's path (relative to the current trace chunk). */ | |
5da88b0f MD |
61 | pathname = setup_channel_trace_path(consumer, ua_sess->path, |
62 | &consumer_path_offset); | |
d2956687 JG |
63 | if (!pathname) { |
64 | ret = -1; | |
65 | goto error; | |
66 | } | |
67 | ||
68 | if (is_local_trace && trace_chunk) { | |
69 | enum lttng_trace_chunk_status chunk_status; | |
70 | char *pathname_index; | |
71 | ||
72 | ret = asprintf(&pathname_index, "%s/" DEFAULT_INDEX_DIR, | |
73 | pathname); | |
74 | if (ret < 0) { | |
75 | ERR("Failed to format channel index directory"); | |
76 | ret = -1; | |
77 | goto error; | |
78 | } | |
79 | ||
80 | /* | |
81 | * Create the index subdirectory which will take care | |
82 | * of implicitly creating the channel's path. | |
83 | */ | |
84 | chunk_status = lttng_trace_chunk_create_subdirectory( | |
85 | trace_chunk, pathname_index); | |
86 | free(pathname_index); | |
87 | if (chunk_status != LTTNG_TRACE_CHUNK_STATUS_OK) { | |
10a50311 JD |
88 | ret = -1; |
89 | goto error; | |
90 | } | |
ffe60014 DG |
91 | } |
92 | ||
7972aab2 DG |
93 | /* Depending on the buffer type, a different channel key is used. */ |
94 | if (ua_sess->buffer_type == LTTNG_BUFFER_PER_UID) { | |
95 | chan_reg_key = ua_chan->tracing_channel_id; | |
96 | } else { | |
97 | chan_reg_key = ua_chan->key; | |
98 | } | |
99 | ||
fc4b93fa | 100 | if (ua_chan->attr.type == LTTNG_UST_ABI_CHAN_METADATA) { |
7972aab2 | 101 | chan_id = -1U; |
d7ba1388 MD |
102 | /* |
103 | * Metadata channels shm_path (buffers) are handled within | |
104 | * session daemon. Consumer daemon should not try to create | |
105 | * those buffer files. | |
106 | */ | |
7972aab2 | 107 | } else { |
3273699d | 108 | ust_reg_chan = ust_registry_channel_find(registry, chan_reg_key); |
a0377dfe | 109 | LTTNG_ASSERT(ust_reg_chan); |
3273699d | 110 | chan_id = ust_reg_chan->chan_id; |
d7ba1388 MD |
111 | if (ua_sess->shm_path[0]) { |
112 | strncpy(shm_path, ua_sess->shm_path, sizeof(shm_path)); | |
113 | shm_path[sizeof(shm_path) - 1] = '\0'; | |
114 | strncat(shm_path, "/", | |
115 | sizeof(shm_path) - strlen(shm_path) - 1); | |
116 | strncat(shm_path, ua_chan->name, | |
117 | sizeof(shm_path) - strlen(shm_path) - 1); | |
118 | strncat(shm_path, "_", | |
119 | sizeof(shm_path) - strlen(shm_path) - 1); | |
120 | } | |
3d071855 MD |
121 | strncpy(root_shm_path, ua_sess->root_shm_path, sizeof(root_shm_path)); |
122 | root_shm_path[sizeof(root_shm_path) - 1] = '\0'; | |
7972aab2 DG |
123 | } |
124 | ||
0c759fc9 | 125 | switch (ua_chan->attr.output) { |
fc4b93fa | 126 | case LTTNG_UST_ABI_MMAP: |
0c759fc9 DG |
127 | default: |
128 | output = LTTNG_EVENT_MMAP; | |
129 | break; | |
130 | } | |
131 | ||
ffe60014 DG |
132 | consumer_init_ask_channel_comm_msg(&msg, |
133 | ua_chan->attr.subbuf_size, | |
134 | ua_chan->attr.num_subbuf, | |
135 | ua_chan->attr.overwrite, | |
136 | ua_chan->attr.switch_timer_interval, | |
137 | ua_chan->attr.read_timer_interval, | |
ecc48a90 | 138 | ua_sess->live_timer_interval, |
a2814ea7 | 139 | ua_sess->live_timer_interval != 0, |
e9404c27 | 140 | ua_chan->monitor_timer_interval, |
0c759fc9 | 141 | output, |
ffe60014 | 142 | (int) ua_chan->attr.type, |
7972aab2 | 143 | ua_sess->tracing_id, |
5da88b0f | 144 | &pathname[consumer_path_offset], |
ffe60014 | 145 | ua_chan->name, |
ffe60014 DG |
146 | consumer->net_seq_index, |
147 | ua_chan->key, | |
7972aab2 | 148 | registry->uuid, |
1624d5b7 JD |
149 | chan_id, |
150 | ua_chan->tracefile_size, | |
2bba9e53 | 151 | ua_chan->tracefile_count, |
1950109e | 152 | ua_sess->id, |
567eb353 | 153 | ua_sess->output_traces, |
ff588497 | 154 | lttng_credentials_get_uid(&ua_sess->real_credentials), |
491d1539 | 155 | ua_chan->attr.blocking_timeout, |
e098433c | 156 | root_shm_path, shm_path, |
470cc211 JG |
157 | trace_chunk, |
158 | &ua_sess->effective_credentials); | |
37278a1e | 159 | |
840cb59c | 160 | health_code_update(); |
ca03de58 | 161 | |
52898cb1 | 162 | ret = consumer_socket_send(socket, &msg, sizeof(msg)); |
37278a1e DG |
163 | if (ret < 0) { |
164 | goto error; | |
165 | } | |
166 | ||
ffe60014 DG |
167 | ret = consumer_recv_status_channel(socket, &key, |
168 | &ua_chan->expected_stream_count); | |
169 | if (ret < 0) { | |
170 | goto error; | |
171 | } | |
172 | /* Communication protocol error. */ | |
a0377dfe | 173 | LTTNG_ASSERT(key == ua_chan->key); |
ffe60014 | 174 | /* We need at least one where 1 stream for 1 cpu. */ |
10a50311 | 175 | if (ua_sess->output_traces) { |
a0377dfe | 176 | LTTNG_ASSERT(ua_chan->expected_stream_count > 0); |
10a50311 | 177 | } |
ffe60014 | 178 | |
d88aee68 | 179 | DBG2("UST ask channel %" PRIu64 " successfully done with %u stream(s)", key, |
ffe60014 | 180 | ua_chan->expected_stream_count); |
ca03de58 | 181 | |
37278a1e | 182 | error: |
ffe60014 DG |
183 | free(pathname); |
184 | health_code_update(); | |
37278a1e DG |
185 | return ret; |
186 | } | |
187 | ||
188 | /* | |
ffe60014 DG |
189 | * Ask consumer to create a channel for a given session. |
190 | * | |
e9404c27 JG |
191 | * Session list and rcu read side locks must be held by the caller. |
192 | * | |
ffe60014 | 193 | * Returns 0 on success else a negative value. |
37278a1e | 194 | */ |
ffe60014 | 195 | int ust_consumer_ask_channel(struct ust_app_session *ua_sess, |
e098433c JG |
196 | struct ust_app_channel *ua_chan, |
197 | struct consumer_output *consumer, | |
198 | struct consumer_socket *socket, | |
199 | struct ust_registry_session *registry, | |
d2956687 | 200 | struct lttng_trace_chunk * trace_chunk) |
37278a1e DG |
201 | { |
202 | int ret; | |
37278a1e | 203 | |
a0377dfe FD |
204 | LTTNG_ASSERT(ua_sess); |
205 | LTTNG_ASSERT(ua_chan); | |
206 | LTTNG_ASSERT(consumer); | |
207 | LTTNG_ASSERT(socket); | |
208 | LTTNG_ASSERT(registry); | |
f50f23d9 | 209 | |
d9078d0c DG |
210 | if (!consumer->enabled) { |
211 | ret = -LTTNG_ERR_NO_CONSUMER; | |
212 | DBG3("Consumer is disabled"); | |
213 | goto error; | |
214 | } | |
215 | ||
ffe60014 | 216 | pthread_mutex_lock(socket->lock); |
e098433c | 217 | ret = ask_channel_creation(ua_sess, ua_chan, consumer, socket, registry, |
d2956687 | 218 | trace_chunk); |
2898de39 | 219 | pthread_mutex_unlock(socket->lock); |
37278a1e | 220 | if (ret < 0) { |
e9404c27 | 221 | ERR("ask_channel_creation consumer command failed"); |
37278a1e DG |
222 | goto error; |
223 | } | |
224 | ||
48842b30 DG |
225 | error: |
226 | return ret; | |
227 | } | |
228 | ||
229 | /* | |
ffe60014 DG |
230 | * Send a get channel command to consumer using the given channel key. The |
231 | * channel object is populated and the stream list. | |
232 | * | |
233 | * Return 0 on success else a negative value. | |
48842b30 | 234 | */ |
ffe60014 DG |
235 | int ust_consumer_get_channel(struct consumer_socket *socket, |
236 | struct ust_app_channel *ua_chan) | |
48842b30 | 237 | { |
ffe60014 | 238 | int ret; |
37278a1e | 239 | struct lttcomm_consumer_msg msg; |
48842b30 | 240 | |
a0377dfe FD |
241 | LTTNG_ASSERT(ua_chan); |
242 | LTTNG_ASSERT(socket); | |
48842b30 | 243 | |
53efb85a | 244 | memset(&msg, 0, sizeof(msg)); |
ffe60014 DG |
245 | msg.cmd_type = LTTNG_CONSUMER_GET_CHANNEL; |
246 | msg.u.get_channel.key = ua_chan->key; | |
37278a1e | 247 | |
ffe60014 | 248 | pthread_mutex_lock(socket->lock); |
840cb59c | 249 | health_code_update(); |
ca03de58 | 250 | |
ffe60014 DG |
251 | /* Send command and wait for OK reply. */ |
252 | ret = consumer_send_msg(socket, &msg); | |
37278a1e DG |
253 | if (ret < 0) { |
254 | goto error; | |
255 | } | |
256 | ||
ffe60014 | 257 | /* First, get the channel from consumer. */ |
b623cb6a | 258 | ret = lttng_ust_ctl_recv_channel_from_consumer(*socket->fd_ptr, &ua_chan->obj); |
37278a1e | 259 | if (ret < 0) { |
ffe60014 DG |
260 | if (ret != -EPIPE) { |
261 | ERR("Error recv channel from consumer %d with ret %d", | |
9363801e | 262 | *socket->fd_ptr, ret); |
ffe60014 DG |
263 | } else { |
264 | DBG3("UST app recv channel from consumer. Consumer is dead."); | |
265 | } | |
37278a1e DG |
266 | goto error; |
267 | } | |
00e2e675 | 268 | |
ffe60014 DG |
269 | /* Next, get all streams. */ |
270 | while (1) { | |
271 | struct ust_app_stream *stream; | |
ca03de58 | 272 | |
ffe60014 DG |
273 | /* Create UST stream */ |
274 | stream = ust_app_alloc_stream(); | |
275 | if (stream == NULL) { | |
276 | ret = -ENOMEM; | |
48842b30 DG |
277 | goto error; |
278 | } | |
279 | ||
ffe60014 | 280 | /* Stream object is populated by this call if successful. */ |
b623cb6a | 281 | ret = lttng_ust_ctl_recv_stream_from_consumer(*socket->fd_ptr, &stream->obj); |
37278a1e | 282 | if (ret < 0) { |
ffe60014 DG |
283 | free(stream); |
284 | if (ret == -LTTNG_UST_ERR_NOENT) { | |
285 | DBG3("UST app consumer has no more stream available"); | |
ffe60014 DG |
286 | break; |
287 | } | |
288 | if (ret != -EPIPE) { | |
289 | ERR("Recv stream from consumer %d with ret %d", | |
9363801e | 290 | *socket->fd_ptr, ret); |
ffe60014 DG |
291 | } else { |
292 | DBG3("UST app recv stream from consumer. Consumer is dead."); | |
00e2e675 | 293 | } |
48842b30 DG |
294 | goto error; |
295 | } | |
37278a1e | 296 | |
ffe60014 DG |
297 | /* Order is important this is why a list is used. */ |
298 | cds_list_add_tail(&stream->list, &ua_chan->streams.head); | |
299 | ua_chan->streams.count++; | |
37278a1e | 300 | |
5368d366 | 301 | DBG2("UST app stream %d received successfully", ua_chan->streams.count); |
ffe60014 DG |
302 | } |
303 | ||
304 | /* This MUST match or else we have a synchronization problem. */ | |
a0377dfe | 305 | LTTNG_ASSERT(ua_chan->expected_stream_count == ua_chan->streams.count); |
ca03de58 | 306 | |
ffe60014 DG |
307 | /* Wait for confirmation that we can proceed with the streams. */ |
308 | ret = consumer_recv_status_reply(socket); | |
37278a1e DG |
309 | if (ret < 0) { |
310 | goto error; | |
311 | } | |
312 | ||
313 | error: | |
ffe60014 DG |
314 | health_code_update(); |
315 | pthread_mutex_unlock(socket->lock); | |
37278a1e DG |
316 | return ret; |
317 | } | |
318 | ||
319 | /* | |
ffe60014 DG |
320 | * Send a destroy channel command to consumer using the given channel key. |
321 | * | |
322 | * Note that this command MUST be used prior to a successful | |
323 | * LTTNG_CONSUMER_GET_CHANNEL because once this command is done successfully, | |
324 | * the streams are dispatched to the consumer threads and MUST be teardown | |
325 | * through the hang up process. | |
326 | * | |
327 | * Return 0 on success else a negative value. | |
37278a1e | 328 | */ |
ffe60014 DG |
329 | int ust_consumer_destroy_channel(struct consumer_socket *socket, |
330 | struct ust_app_channel *ua_chan) | |
37278a1e | 331 | { |
ffe60014 DG |
332 | int ret; |
333 | struct lttcomm_consumer_msg msg; | |
a4b92340 | 334 | |
a0377dfe FD |
335 | LTTNG_ASSERT(ua_chan); |
336 | LTTNG_ASSERT(socket); | |
37278a1e | 337 | |
53efb85a | 338 | memset(&msg, 0, sizeof(msg)); |
ffe60014 DG |
339 | msg.cmd_type = LTTNG_CONSUMER_DESTROY_CHANNEL; |
340 | msg.u.destroy_channel.key = ua_chan->key; | |
173af62f | 341 | |
ffe60014 DG |
342 | pthread_mutex_lock(socket->lock); |
343 | health_code_update(); | |
37278a1e | 344 | |
ffe60014 | 345 | ret = consumer_send_msg(socket, &msg); |
37278a1e DG |
346 | if (ret < 0) { |
347 | goto error; | |
48842b30 DG |
348 | } |
349 | ||
ffe60014 DG |
350 | error: |
351 | health_code_update(); | |
352 | pthread_mutex_unlock(socket->lock); | |
353 | return ret; | |
354 | } | |
aeb96892 | 355 | |
ffe60014 DG |
356 | /* |
357 | * Send a given stream to UST tracer. | |
358 | * | |
359 | * On success return 0 else a negative value. | |
360 | */ | |
361 | int ust_consumer_send_stream_to_ust(struct ust_app *app, | |
362 | struct ust_app_channel *channel, struct ust_app_stream *stream) | |
363 | { | |
364 | int ret; | |
365 | ||
a0377dfe FD |
366 | LTTNG_ASSERT(app); |
367 | LTTNG_ASSERT(stream); | |
368 | LTTNG_ASSERT(channel); | |
ffe60014 DG |
369 | |
370 | DBG2("UST consumer send stream to app %d", app->sock); | |
371 | ||
372 | /* Relay stream to application. */ | |
fb45065e | 373 | pthread_mutex_lock(&app->sock_lock); |
b623cb6a | 374 | ret = lttng_ust_ctl_send_stream_to_ust(app->sock, channel->obj, stream->obj); |
fb45065e | 375 | pthread_mutex_unlock(&app->sock_lock); |
ffe60014 | 376 | if (ret < 0) { |
be355079 JR |
377 | if (ret == -EPIPE || ret == -LTTNG_UST_ERR_EXITING) { |
378 | DBG3("UST app send stream to ust failed. Application is dead. (pid: %d, sock: %d).", | |
379 | app->pid, app->sock); | |
380 | } else if (ret == -EAGAIN) { | |
381 | WARN("UST app send stream to ust failed. Communication time out (pid: %d, sock: %d).", | |
382 | app->pid, app->sock); | |
ffe60014 | 383 | } else { |
be355079 JR |
384 | ERR("UST app send stream, handle %d, to ust failed with ret %d (pid: %d, sock: %d).", |
385 | stream->obj->handle, ret, app->pid, | |
386 | app->sock); | |
48842b30 | 387 | } |
ffe60014 | 388 | goto error; |
48842b30 | 389 | } |
d0b96690 | 390 | channel->handle = channel->obj->handle; |
48842b30 | 391 | |
ffe60014 DG |
392 | error: |
393 | return ret; | |
394 | } | |
395 | ||
396 | /* | |
397 | * Send channel previously received from the consumer to the UST tracer. | |
398 | * | |
399 | * On success return 0 else a negative value. | |
400 | */ | |
401 | int ust_consumer_send_channel_to_ust(struct ust_app *app, | |
402 | struct ust_app_session *ua_sess, struct ust_app_channel *channel) | |
403 | { | |
404 | int ret; | |
405 | ||
a0377dfe FD |
406 | LTTNG_ASSERT(app); |
407 | LTTNG_ASSERT(ua_sess); | |
408 | LTTNG_ASSERT(channel); | |
409 | LTTNG_ASSERT(channel->obj); | |
ffe60014 | 410 | |
7972aab2 DG |
411 | DBG2("UST app send channel to sock %d pid %d (name: %s, key: %" PRIu64 ")", |
412 | app->sock, app->pid, channel->name, channel->tracing_channel_id); | |
48842b30 | 413 | |
ffe60014 | 414 | /* Send stream to application. */ |
fb45065e | 415 | pthread_mutex_lock(&app->sock_lock); |
b623cb6a | 416 | ret = lttng_ust_ctl_send_channel_to_ust(app->sock, ua_sess->handle, channel->obj); |
fb45065e | 417 | pthread_mutex_unlock(&app->sock_lock); |
ffe60014 | 418 | if (ret < 0) { |
be355079 JR |
419 | if (ret == -EPIPE || ret == -LTTNG_UST_ERR_EXITING) { |
420 | DBG3("UST app send channel to ust failed. Application is dead (pid: %d, sock: %d).", | |
421 | app->pid, app->sock); | |
422 | } else if (ret == -EAGAIN) { | |
423 | WARN("UST app send channel to ust failed. Communication timeout (pid: %d, sock: %d).", | |
424 | app->pid, app->sock); | |
ffe60014 | 425 | } else { |
be355079 JR |
426 | ERR("UST app send channel %s, to ust failed with ret %d (pid: %d, sock: %d).", |
427 | channel->name, ret, app->pid, | |
428 | app->sock); | |
ffe60014 DG |
429 | } |
430 | goto error; | |
431 | } | |
48842b30 DG |
432 | |
433 | error: | |
434 | return ret; | |
435 | } | |
331744e3 JD |
436 | |
437 | /* | |
438 | * Handle the metadata requests from the UST consumer | |
439 | * | |
440 | * Return 0 on success else a negative value. | |
441 | */ | |
442 | int ust_consumer_metadata_request(struct consumer_socket *socket) | |
443 | { | |
444 | int ret; | |
445 | ssize_t ret_push; | |
446 | struct lttcomm_metadata_request_msg request; | |
447 | struct buffer_reg_uid *reg_uid; | |
448 | struct ust_registry_session *ust_reg; | |
449 | struct lttcomm_consumer_msg msg; | |
450 | ||
a0377dfe | 451 | LTTNG_ASSERT(socket); |
331744e3 JD |
452 | |
453 | rcu_read_lock(); | |
331744e3 JD |
454 | health_code_update(); |
455 | ||
456 | /* Wait for a metadata request */ | |
dc2bbdae | 457 | pthread_mutex_lock(socket->lock); |
52898cb1 | 458 | ret = consumer_socket_recv(socket, &request, sizeof(request)); |
dc2bbdae | 459 | pthread_mutex_unlock(socket->lock); |
52898cb1 | 460 | if (ret < 0) { |
331744e3 JD |
461 | goto end; |
462 | } | |
463 | ||
1950109e | 464 | DBG("Metadata request received for session %" PRIu64 ", key %" PRIu64, |
331744e3 JD |
465 | request.session_id, request.key); |
466 | ||
467 | reg_uid = buffer_reg_uid_find(request.session_id, | |
468 | request.bits_per_long, request.uid); | |
469 | if (reg_uid) { | |
470 | ust_reg = reg_uid->registry->reg.ust; | |
471 | } else { | |
472 | struct buffer_reg_pid *reg_pid = | |
1950109e | 473 | buffer_reg_pid_find(request.session_id_per_pid); |
331744e3 | 474 | if (!reg_pid) { |
1950109e JD |
475 | DBG("PID registry not found for session id %" PRIu64, |
476 | request.session_id_per_pid); | |
331744e3 | 477 | |
53efb85a | 478 | memset(&msg, 0, sizeof(msg)); |
331744e3 | 479 | msg.cmd_type = LTTNG_ERR_UND; |
cb7d882c | 480 | pthread_mutex_lock(socket->lock); |
331744e3 | 481 | (void) consumer_send_msg(socket, &msg); |
cb7d882c | 482 | pthread_mutex_unlock(socket->lock); |
331744e3 JD |
483 | /* |
484 | * This is possible since the session might have been destroyed | |
485 | * during a consumer metadata request. So here, return gracefully | |
486 | * because the destroy session will push the remaining metadata to | |
487 | * the consumer. | |
488 | */ | |
489 | ret = 0; | |
490 | goto end; | |
491 | } | |
492 | ust_reg = reg_pid->registry->reg.ust; | |
493 | } | |
a0377dfe | 494 | LTTNG_ASSERT(ust_reg); |
331744e3 | 495 | |
dc2bbdae | 496 | pthread_mutex_lock(&ust_reg->lock); |
331744e3 | 497 | ret_push = ust_app_push_metadata(ust_reg, socket, 1); |
dc2bbdae | 498 | pthread_mutex_unlock(&ust_reg->lock); |
2c57e06d MD |
499 | if (ret_push == -EPIPE) { |
500 | DBG("Application or relay closed while pushing metadata"); | |
501 | } else if (ret_push < 0) { | |
331744e3 JD |
502 | ERR("Pushing metadata"); |
503 | ret = -1; | |
504 | goto end; | |
2c57e06d MD |
505 | } else { |
506 | DBG("UST Consumer metadata pushed successfully"); | |
331744e3 | 507 | } |
331744e3 JD |
508 | ret = 0; |
509 | ||
510 | end: | |
331744e3 JD |
511 | rcu_read_unlock(); |
512 | return ret; | |
513 | } |