2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
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.
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.
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.
26 #include <common/common.h>
27 #include <common/consumer/consumer.h>
28 #include <common/defaults.h>
31 #include "health-sessiond.h"
32 #include "ust-consumer.h"
33 #include "lttng-ust-error.h"
34 #include "buffer-registry.h"
36 #include "lttng-sessiond.h"
39 * Send a single channel to the consumer using command ASK_CHANNEL_CREATION.
41 * Consumer socket lock MUST be acquired before calling this.
43 static int ask_channel_creation(struct ust_app_session
*ua_sess
,
44 struct ust_app_channel
*ua_chan
,
45 struct consumer_output
*consumer
,
46 struct consumer_socket
*socket
,
47 struct ust_registry_session
*registry
,
48 struct lttng_trace_chunk
*trace_chunk
)
52 uint64_t key
, chan_reg_key
;
53 char *pathname
= NULL
;
54 struct lttcomm_consumer_msg msg
;
55 struct ust_registry_channel
*chan_reg
;
56 char shm_path
[PATH_MAX
] = "";
57 char root_shm_path
[PATH_MAX
] = "";
59 size_t consumer_path_offset
= 0;
67 DBG2("Asking UST consumer for channel");
69 is_local_trace
= consumer
->net_seq_index
== -1ULL;
70 /* Format the channel's path (relative to the current trace chunk). */
71 pathname
= setup_channel_trace_path(consumer
, ua_sess
->path
,
72 &consumer_path_offset
);
78 if (is_local_trace
&& trace_chunk
) {
79 enum lttng_trace_chunk_status chunk_status
;
82 ret
= asprintf(&pathname_index
, "%s/" DEFAULT_INDEX_DIR
,
85 ERR("Failed to format channel index directory");
91 * Create the index subdirectory which will take care
92 * of implicitly creating the channel's path.
94 chunk_status
= lttng_trace_chunk_create_subdirectory(
95 trace_chunk
, pathname_index
);
97 if (chunk_status
!= LTTNG_TRACE_CHUNK_STATUS_OK
) {
103 /* Depending on the buffer type, a different channel key is used. */
104 if (ua_sess
->buffer_type
== LTTNG_BUFFER_PER_UID
) {
105 chan_reg_key
= ua_chan
->tracing_channel_id
;
107 chan_reg_key
= ua_chan
->key
;
110 if (ua_chan
->attr
.type
== LTTNG_UST_CHAN_METADATA
) {
113 * Metadata channels shm_path (buffers) are handled within
114 * session daemon. Consumer daemon should not try to create
115 * those buffer files.
118 chan_reg
= ust_registry_channel_find(registry
, chan_reg_key
);
120 chan_id
= chan_reg
->chan_id
;
121 if (ua_sess
->shm_path
[0]) {
122 strncpy(shm_path
, ua_sess
->shm_path
, sizeof(shm_path
));
123 shm_path
[sizeof(shm_path
) - 1] = '\0';
124 strncat(shm_path
, "/",
125 sizeof(shm_path
) - strlen(shm_path
) - 1);
126 strncat(shm_path
, ua_chan
->name
,
127 sizeof(shm_path
) - strlen(shm_path
) - 1);
128 strncat(shm_path
, "_",
129 sizeof(shm_path
) - strlen(shm_path
) - 1);
131 strncpy(root_shm_path
, ua_sess
->root_shm_path
, sizeof(root_shm_path
));
132 root_shm_path
[sizeof(root_shm_path
) - 1] = '\0';
135 switch (ua_chan
->attr
.output
) {
138 output
= LTTNG_EVENT_MMAP
;
142 consumer_init_ask_channel_comm_msg(&msg
,
143 ua_chan
->attr
.subbuf_size
,
144 ua_chan
->attr
.num_subbuf
,
145 ua_chan
->attr
.overwrite
,
146 ua_chan
->attr
.switch_timer_interval
,
147 ua_chan
->attr
.read_timer_interval
,
148 ua_sess
->live_timer_interval
,
149 ua_chan
->monitor_timer_interval
,
151 (int) ua_chan
->attr
.type
,
153 &pathname
[consumer_path_offset
],
155 consumer
->net_seq_index
,
159 ua_chan
->tracefile_size
,
160 ua_chan
->tracefile_count
,
162 ua_sess
->output_traces
,
163 ua_sess
->real_credentials
.uid
,
164 ua_chan
->attr
.blocking_timeout
,
165 root_shm_path
, shm_path
,
167 &ua_sess
->effective_credentials
);
169 health_code_update();
171 ret
= consumer_socket_send(socket
, &msg
, sizeof(msg
));
176 ret
= consumer_recv_status_channel(socket
, &key
,
177 &ua_chan
->expected_stream_count
);
181 /* Communication protocol error. */
182 assert(key
== ua_chan
->key
);
183 /* We need at least one where 1 stream for 1 cpu. */
184 if (ua_sess
->output_traces
) {
185 assert(ua_chan
->expected_stream_count
> 0);
188 DBG2("UST ask channel %" PRIu64
" successfully done with %u stream(s)", key
,
189 ua_chan
->expected_stream_count
);
193 health_code_update();
198 * Ask consumer to create a channel for a given session.
200 * Session list and rcu read side locks must be held by the caller.
202 * Returns 0 on success else a negative value.
204 int ust_consumer_ask_channel(struct ust_app_session
*ua_sess
,
205 struct ust_app_channel
*ua_chan
,
206 struct consumer_output
*consumer
,
207 struct consumer_socket
*socket
,
208 struct ust_registry_session
*registry
,
209 struct lttng_trace_chunk
* trace_chunk
)
219 if (!consumer
->enabled
) {
220 ret
= -LTTNG_ERR_NO_CONSUMER
;
221 DBG3("Consumer is disabled");
225 pthread_mutex_lock(socket
->lock
);
226 ret
= ask_channel_creation(ua_sess
, ua_chan
, consumer
, socket
, registry
,
228 pthread_mutex_unlock(socket
->lock
);
230 ERR("ask_channel_creation consumer command failed");
239 * Send a get channel command to consumer using the given channel key. The
240 * channel object is populated and the stream list.
242 * Return 0 on success else a negative value.
244 int ust_consumer_get_channel(struct consumer_socket
*socket
,
245 struct ust_app_channel
*ua_chan
)
248 struct lttcomm_consumer_msg msg
;
253 memset(&msg
, 0, sizeof(msg
));
254 msg
.cmd_type
= LTTNG_CONSUMER_GET_CHANNEL
;
255 msg
.u
.get_channel
.key
= ua_chan
->key
;
257 pthread_mutex_lock(socket
->lock
);
258 health_code_update();
260 /* Send command and wait for OK reply. */
261 ret
= consumer_send_msg(socket
, &msg
);
266 /* First, get the channel from consumer. */
267 ret
= ustctl_recv_channel_from_consumer(*socket
->fd_ptr
, &ua_chan
->obj
);
270 ERR("Error recv channel from consumer %d with ret %d",
271 *socket
->fd_ptr
, ret
);
273 DBG3("UST app recv channel from consumer. Consumer is dead.");
278 /* Next, get all streams. */
280 struct ust_app_stream
*stream
;
282 /* Create UST stream */
283 stream
= ust_app_alloc_stream();
284 if (stream
== NULL
) {
289 /* Stream object is populated by this call if successful. */
290 ret
= ustctl_recv_stream_from_consumer(*socket
->fd_ptr
, &stream
->obj
);
293 if (ret
== -LTTNG_UST_ERR_NOENT
) {
294 DBG3("UST app consumer has no more stream available");
298 ERR("Recv stream from consumer %d with ret %d",
299 *socket
->fd_ptr
, ret
);
301 DBG3("UST app recv stream from consumer. Consumer is dead.");
306 /* Order is important this is why a list is used. */
307 cds_list_add_tail(&stream
->list
, &ua_chan
->streams
.head
);
308 ua_chan
->streams
.count
++;
310 DBG2("UST app stream %d received successfully", ua_chan
->streams
.count
);
313 /* This MUST match or else we have a synchronization problem. */
314 assert(ua_chan
->expected_stream_count
== ua_chan
->streams
.count
);
316 /* Wait for confirmation that we can proceed with the streams. */
317 ret
= consumer_recv_status_reply(socket
);
323 health_code_update();
324 pthread_mutex_unlock(socket
->lock
);
329 * Send a destroy channel command to consumer using the given channel key.
331 * Note that this command MUST be used prior to a successful
332 * LTTNG_CONSUMER_GET_CHANNEL because once this command is done successfully,
333 * the streams are dispatched to the consumer threads and MUST be teardown
334 * through the hang up process.
336 * Return 0 on success else a negative value.
338 int ust_consumer_destroy_channel(struct consumer_socket
*socket
,
339 struct ust_app_channel
*ua_chan
)
342 struct lttcomm_consumer_msg msg
;
347 memset(&msg
, 0, sizeof(msg
));
348 msg
.cmd_type
= LTTNG_CONSUMER_DESTROY_CHANNEL
;
349 msg
.u
.destroy_channel
.key
= ua_chan
->key
;
351 pthread_mutex_lock(socket
->lock
);
352 health_code_update();
354 ret
= consumer_send_msg(socket
, &msg
);
360 health_code_update();
361 pthread_mutex_unlock(socket
->lock
);
366 * Send a given stream to UST tracer.
368 * On success return 0 else a negative value.
370 int ust_consumer_send_stream_to_ust(struct ust_app
*app
,
371 struct ust_app_channel
*channel
, struct ust_app_stream
*stream
)
379 DBG2("UST consumer send stream to app %d", app
->sock
);
381 /* Relay stream to application. */
382 pthread_mutex_lock(&app
->sock_lock
);
383 ret
= ustctl_send_stream_to_ust(app
->sock
, channel
->obj
, stream
->obj
);
384 pthread_mutex_unlock(&app
->sock_lock
);
386 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
387 ERR("ustctl send stream handle %d to app pid: %d with ret %d",
388 stream
->obj
->handle
, app
->pid
, ret
);
390 DBG3("UST app send stream to ust failed. Application is dead.");
394 channel
->handle
= channel
->obj
->handle
;
401 * Send channel previously received from the consumer to the UST tracer.
403 * On success return 0 else a negative value.
405 int ust_consumer_send_channel_to_ust(struct ust_app
*app
,
406 struct ust_app_session
*ua_sess
, struct ust_app_channel
*channel
)
413 assert(channel
->obj
);
415 DBG2("UST app send channel to sock %d pid %d (name: %s, key: %" PRIu64
")",
416 app
->sock
, app
->pid
, channel
->name
, channel
->tracing_channel_id
);
418 /* Send stream to application. */
419 pthread_mutex_lock(&app
->sock_lock
);
420 ret
= ustctl_send_channel_to_ust(app
->sock
, ua_sess
->handle
, channel
->obj
);
421 pthread_mutex_unlock(&app
->sock_lock
);
423 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
424 ERR("Error ustctl send channel %s to app pid: %d with ret %d",
425 channel
->name
, app
->pid
, ret
);
427 DBG3("UST app send channel to ust failed. Application is dead.");
437 * Handle the metadata requests from the UST consumer
439 * Return 0 on success else a negative value.
441 int ust_consumer_metadata_request(struct consumer_socket
*socket
)
445 struct lttcomm_metadata_request_msg request
;
446 struct buffer_reg_uid
*reg_uid
;
447 struct ust_registry_session
*ust_reg
;
448 struct lttcomm_consumer_msg msg
;
453 health_code_update();
455 /* Wait for a metadata request */
456 pthread_mutex_lock(socket
->lock
);
457 ret
= consumer_socket_recv(socket
, &request
, sizeof(request
));
458 pthread_mutex_unlock(socket
->lock
);
463 DBG("Metadata request received for session %" PRIu64
", key %" PRIu64
,
464 request
.session_id
, request
.key
);
466 reg_uid
= buffer_reg_uid_find(request
.session_id
,
467 request
.bits_per_long
, request
.uid
);
469 ust_reg
= reg_uid
->registry
->reg
.ust
;
471 struct buffer_reg_pid
*reg_pid
=
472 buffer_reg_pid_find(request
.session_id_per_pid
);
474 DBG("PID registry not found for session id %" PRIu64
,
475 request
.session_id_per_pid
);
477 memset(&msg
, 0, sizeof(msg
));
478 msg
.cmd_type
= LTTNG_ERR_UND
;
479 pthread_mutex_lock(socket
->lock
);
480 (void) consumer_send_msg(socket
, &msg
);
481 pthread_mutex_unlock(socket
->lock
);
483 * This is possible since the session might have been destroyed
484 * during a consumer metadata request. So here, return gracefully
485 * because the destroy session will push the remaining metadata to
491 ust_reg
= reg_pid
->registry
->reg
.ust
;
495 pthread_mutex_lock(&ust_reg
->lock
);
496 ret_push
= ust_app_push_metadata(ust_reg
, socket
, 1);
497 pthread_mutex_unlock(&ust_reg
->lock
);
498 if (ret_push
== -EPIPE
) {
499 DBG("Application or relay closed while pushing metadata");
500 } else if (ret_push
< 0) {
501 ERR("Pushing metadata");
505 DBG("UST Consumer metadata pushed successfully");