consumerd: tag metadata channel as being part of a live session
[lttng-tools.git] / src / bin / lttng-sessiond / kernel-consumer.c
CommitLineData
f1e16794 1/*
ab5be9fa 2 * Copyright (C) 2012 David Goulet <dgoulet@efficios.com>
f1e16794 3 *
ab5be9fa 4 * SPDX-License-Identifier: GPL-2.0-only
f1e16794 5 *
f1e16794
DG
6 */
7
6c1c0768 8#define _LGPL_SOURCE
f1e16794
DG
9#include <stdio.h>
10#include <stdlib.h>
f1e16794
DG
11#include <sys/stat.h>
12#include <unistd.h>
e1f3997a 13#include <inttypes.h>
f1e16794
DG
14
15#include <common/common.h>
16#include <common/defaults.h>
f5436bfc 17#include <common/compat/string.h>
f1e16794 18
00e2e675 19#include "consumer.h"
8782cc74 20#include "health-sessiond.h"
f1e16794 21#include "kernel-consumer.h"
e9404c27
JG
22#include "notification-thread-commands.h"
23#include "session.h"
24#include "lttng-sessiond.h"
f1e16794 25
5da88b0f
MD
26static char *create_channel_path(struct consumer_output *consumer,
27 size_t *consumer_path_offset)
00e2e675
DG
28{
29 int ret;
ffe60014 30 char tmp_path[PATH_MAX];
2bba9e53 31 char *pathname = NULL;
00e2e675 32
2bba9e53 33 assert(consumer);
00e2e675 34
ffe60014 35 /* Get the right path name destination */
a5ba6fdd
JG
36 if (consumer->type == CONSUMER_DST_LOCAL ||
37 (consumer->type == CONSUMER_DST_NET &&
38 consumer->relay_major_version == 2 &&
39 consumer->relay_minor_version >= 11)) {
d2956687 40 pathname = strdup(consumer->domain_subdir);
bb3c4e70 41 if (!pathname) {
d2956687
JG
42 PERROR("Failed to copy domain subdirectory string %s",
43 consumer->domain_subdir);
bb3c4e70
MD
44 goto error;
45 }
5da88b0f 46 *consumer_path_offset = strlen(consumer->domain_subdir);
d2956687
JG
47 DBG3("Kernel local consumer trace path relative to current trace chunk: \"%s\"",
48 pathname);
ffe60014 49 } else {
5da88b0f 50 /* Network output, relayd < 2.11. */
2b29c638
JD
51 ret = snprintf(tmp_path, sizeof(tmp_path), "%s%s",
52 consumer->dst.net.base_dir,
b178f53e 53 consumer->domain_subdir);
ffe60014 54 if (ret < 0) {
2bba9e53 55 PERROR("snprintf kernel metadata path");
ffe60014 56 goto error;
dba13f1d
JG
57 } else if (ret >= sizeof(tmp_path)) {
58 ERR("Kernel channel path exceeds the maximal allowed length of of %zu bytes (%i bytes required) with path \"%s%s\"",
59 sizeof(tmp_path), ret,
60 consumer->dst.net.base_dir,
b178f53e 61 consumer->domain_subdir);
dba13f1d 62 goto error;
ffe60014 63 }
f5436bfc 64 pathname = lttng_strndup(tmp_path, sizeof(tmp_path));
bb3c4e70 65 if (!pathname) {
f5436bfc 66 PERROR("lttng_strndup");
bb3c4e70
MD
67 goto error;
68 }
5da88b0f 69 *consumer_path_offset = 0;
ffe60014
DG
70 DBG3("Kernel network consumer subdir path: %s", pathname);
71 }
72
2bba9e53
DG
73 return pathname;
74
75error:
76 free(pathname);
77 return NULL;
78}
79
80/*
81 * Sending a single channel to the consumer with command ADD_CHANNEL.
82 */
ba27cd00 83static
2bba9e53 84int kernel_consumer_add_channel(struct consumer_socket *sock,
e9404c27
JG
85 struct ltt_kernel_channel *channel,
86 struct ltt_kernel_session *ksession,
2bba9e53
DG
87 unsigned int monitor)
88{
89 int ret;
d2956687 90 char *pathname = NULL;
2bba9e53
DG
91 struct lttcomm_consumer_msg lkm;
92 struct consumer_output *consumer;
e9404c27 93 enum lttng_error_code status;
e32d7f27 94 struct ltt_session *session = NULL;
e9404c27 95 struct lttng_channel_extended *channel_attr_extended;
d2956687 96 bool is_local_trace;
5da88b0f 97 size_t consumer_path_offset = 0;
2bba9e53
DG
98
99 /* Safety net */
100 assert(channel);
e9404c27
JG
101 assert(ksession);
102 assert(ksession->consumer);
2bba9e53 103
e9404c27
JG
104 consumer = ksession->consumer;
105 channel_attr_extended = (struct lttng_channel_extended *)
106 channel->channel->attr.extended.ptr;
2bba9e53
DG
107
108 DBG("Kernel consumer adding channel %s to kernel consumer",
109 channel->channel->name);
d2956687 110 is_local_trace = consumer->net_seq_index == -1ULL;
2bba9e53 111
5da88b0f 112 pathname = create_channel_path(consumer, &consumer_path_offset);
bb3c4e70
MD
113 if (!pathname) {
114 ret = -1;
115 goto error;
116 }
2bba9e53 117
d2956687
JG
118 if (is_local_trace && ksession->current_trace_chunk) {
119 enum lttng_trace_chunk_status chunk_status;
120 char *pathname_index;
121
122 ret = asprintf(&pathname_index, "%s/" DEFAULT_INDEX_DIR,
123 pathname);
124 if (ret < 0) {
125 ERR("Failed to format channel index directory");
126 ret = -1;
127 goto error;
128 }
129
130 /*
131 * Create the index subdirectory which will take care
132 * of implicitly creating the channel's path.
133 */
134 chunk_status = lttng_trace_chunk_create_subdirectory(
135 ksession->current_trace_chunk, pathname_index);
136 free(pathname_index);
137 if (chunk_status != LTTNG_TRACE_CHUNK_STATUS_OK) {
138 ret = -1;
139 goto error;
140 }
141 }
142
00e2e675 143 /* Prep channel message structure */
638e7b4e 144 consumer_init_add_channel_comm_msg(&lkm,
e1f3997a 145 channel->key,
e9404c27 146 ksession->id,
5da88b0f 147 &pathname[consumer_path_offset],
e9404c27
JG
148 ksession->uid,
149 ksession->gid,
ffe60014 150 consumer->net_seq_index,
c30aaa51 151 channel->channel->name,
ffe60014
DG
152 channel->stream_count,
153 channel->channel->attr.output,
1624d5b7
JD
154 CONSUMER_CHANNEL_TYPE_DATA,
155 channel->channel->attr.tracefile_size,
2bba9e53 156 channel->channel->attr.tracefile_count,
ecc48a90 157 monitor,
e9404c27 158 channel->channel->attr.live_timer_interval,
a2814ea7 159 ksession->is_live_session,
d2956687
JG
160 channel_attr_extended->monitor_timer_interval,
161 ksession->current_trace_chunk);
00e2e675 162
840cb59c 163 health_code_update();
ca03de58 164
00e2e675
DG
165 ret = consumer_send_channel(sock, &lkm);
166 if (ret < 0) {
167 goto error;
168 }
169
840cb59c 170 health_code_update();
e9404c27
JG
171 rcu_read_lock();
172 session = session_find_by_id(ksession->id);
173 assert(session);
e098433c
JG
174 assert(pthread_mutex_trylock(&session->lock));
175 assert(session_trylock_list());
ca03de58 176
e9404c27
JG
177 status = notification_thread_command_add_channel(
178 notification_thread_handle, session->name,
179 ksession->uid, ksession->gid,
e1f3997a 180 channel->channel->name, channel->key,
e9404c27
JG
181 LTTNG_DOMAIN_KERNEL,
182 channel->channel->attr.subbuf_size * channel->channel->attr.num_subbuf);
183 rcu_read_unlock();
184 if (status != LTTNG_OK) {
185 ret = -1;
186 goto error;
187 }
753873bf
JR
188
189 channel->published_to_notification_thread = true;
190
00e2e675 191error:
e32d7f27
JG
192 if (session) {
193 session_put(session);
194 }
53efb85a 195 free(pathname);
00e2e675
DG
196 return ret;
197}
198
199/*
200 * Sending metadata to the consumer with command ADD_CHANNEL and ADD_STREAM.
9a318688
JG
201 *
202 * The consumer socket lock must be held by the caller.
00e2e675 203 */
f50f23d9 204int kernel_consumer_add_metadata(struct consumer_socket *sock,
e098433c 205 struct ltt_kernel_session *ksession, unsigned int monitor)
00e2e675
DG
206{
207 int ret;
00e2e675 208 struct lttcomm_consumer_msg lkm;
a7d9a3e7 209 struct consumer_output *consumer;
e098433c
JG
210
211 rcu_read_lock();
00e2e675
DG
212
213 /* Safety net */
e098433c
JG
214 assert(ksession);
215 assert(ksession->consumer);
f50f23d9 216 assert(sock);
00e2e675 217
e098433c
JG
218 DBG("Sending metadata %d to kernel consumer",
219 ksession->metadata_stream_fd);
00e2e675
DG
220
221 /* Get consumer output pointer */
e098433c 222 consumer = ksession->consumer;
00e2e675 223
00e2e675 224 /* Prep channel message structure */
a2814ea7
JG
225 consumer_init_add_channel_comm_msg(&lkm, ksession->metadata->key,
226 ksession->id, "", ksession->uid, ksession->gid,
227 consumer->net_seq_index, DEFAULT_METADATA_NAME, 1,
ffe60014 228 DEFAULT_KERNEL_CHANNEL_OUTPUT,
a2814ea7
JG
229 CONSUMER_CHANNEL_TYPE_METADATA, 0, 0, monitor, 0,
230 ksession->is_live_session, 0,
231 ksession->current_trace_chunk);
00e2e675 232
840cb59c 233 health_code_update();
ca03de58 234
00e2e675
DG
235 ret = consumer_send_channel(sock, &lkm);
236 if (ret < 0) {
237 goto error;
238 }
239
840cb59c 240 health_code_update();
ca03de58 241
00e2e675 242 /* Prep stream message structure */
e098433c
JG
243 consumer_init_add_stream_comm_msg(&lkm,
244 ksession->metadata->key,
245 ksession->metadata_stream_fd,
d2956687 246 0 /* CPU: 0 for metadata. */);
00e2e675 247
840cb59c 248 health_code_update();
ca03de58 249
00e2e675 250 /* Send stream and file descriptor */
a7d9a3e7 251 ret = consumer_send_stream(sock, consumer, &lkm,
e098433c 252 &ksession->metadata_stream_fd, 1);
00e2e675
DG
253 if (ret < 0) {
254 goto error;
255 }
256
840cb59c 257 health_code_update();
ca03de58 258
00e2e675 259error:
e098433c 260 rcu_read_unlock();
00e2e675
DG
261 return ret;
262}
263
264/*
265 * Sending a single stream to the consumer with command ADD_STREAM.
266 */
5b0e3ccb 267static
f50f23d9 268int kernel_consumer_add_stream(struct consumer_socket *sock,
e098433c
JG
269 struct ltt_kernel_channel *channel,
270 struct ltt_kernel_stream *stream,
d2956687 271 struct ltt_kernel_session *session, unsigned int monitor)
00e2e675
DG
272{
273 int ret;
00e2e675 274 struct lttcomm_consumer_msg lkm;
a7d9a3e7 275 struct consumer_output *consumer;
00e2e675
DG
276
277 assert(channel);
278 assert(stream);
279 assert(session);
280 assert(session->consumer);
f50f23d9 281 assert(sock);
00e2e675
DG
282
283 DBG("Sending stream %d of channel %s to kernel consumer",
284 stream->fd, channel->channel->name);
285
286 /* Get consumer output pointer */
a7d9a3e7 287 consumer = session->consumer;
00e2e675 288
00e2e675 289 /* Prep stream consumer message */
e098433c 290 consumer_init_add_stream_comm_msg(&lkm,
e1f3997a 291 channel->key,
00e2e675 292 stream->fd,
d2956687 293 stream->cpu);
00e2e675 294
840cb59c 295 health_code_update();
ca03de58 296
00e2e675 297 /* Send stream and file descriptor */
a7d9a3e7 298 ret = consumer_send_stream(sock, consumer, &lkm, &stream->fd, 1);
00e2e675
DG
299 if (ret < 0) {
300 goto error;
301 }
302
840cb59c 303 health_code_update();
ca03de58 304
00e2e675
DG
305error:
306 return ret;
307}
308
a4baae1b
JD
309/*
310 * Sending the notification that all streams were sent with STREAMS_SENT.
311 */
312int kernel_consumer_streams_sent(struct consumer_socket *sock,
313 struct ltt_kernel_session *session, uint64_t channel_key)
314{
315 int ret;
316 struct lttcomm_consumer_msg lkm;
317 struct consumer_output *consumer;
318
319 assert(sock);
320 assert(session);
321
322 DBG("Sending streams_sent");
323 /* Get consumer output pointer */
324 consumer = session->consumer;
325
326 /* Prep stream consumer message */
327 consumer_init_streams_sent_comm_msg(&lkm,
328 LTTNG_CONSUMER_STREAMS_SENT,
329 channel_key, consumer->net_seq_index);
330
331 health_code_update();
332
333 /* Send stream and file descriptor */
334 ret = consumer_send_msg(sock, &lkm);
335 if (ret < 0) {
336 goto error;
337 }
338
339error:
340 return ret;
341}
342
f1e16794
DG
343/*
344 * Send all stream fds of kernel channel to the consumer.
9a318688
JG
345 *
346 * The consumer socket lock must be held by the caller.
f1e16794 347 */
1fc1b7c8 348int kernel_consumer_send_channel_streams(struct consumer_socket *sock,
e098433c 349 struct ltt_kernel_channel *channel, struct ltt_kernel_session *ksession,
2bba9e53 350 unsigned int monitor)
f1e16794 351{
e99f9447 352 int ret = LTTNG_OK;
f1e16794 353 struct ltt_kernel_stream *stream;
00e2e675
DG
354
355 /* Safety net */
356 assert(channel);
e098433c
JG
357 assert(ksession);
358 assert(ksession->consumer);
f50f23d9 359 assert(sock);
00e2e675 360
e098433c
JG
361 rcu_read_lock();
362
00e2e675 363 /* Bail out if consumer is disabled */
e098433c 364 if (!ksession->consumer->enabled) {
f73fabfd 365 ret = LTTNG_OK;
00e2e675
DG
366 goto error;
367 }
f1e16794
DG
368
369 DBG("Sending streams of channel %s to kernel consumer",
370 channel->channel->name);
371
e99f9447 372 if (!channel->sent_to_consumer) {
e098433c 373 ret = kernel_consumer_add_channel(sock, channel, ksession, monitor);
e99f9447
MD
374 if (ret < 0) {
375 goto error;
376 }
377 channel->sent_to_consumer = true;
f1e16794
DG
378 }
379
380 /* Send streams */
381 cds_list_for_each_entry(stream, &channel->stream_list.head, list) {
6986ab9b 382 if (!stream->fd || stream->sent_to_consumer) {
f1e16794
DG
383 continue;
384 }
00e2e675
DG
385
386 /* Add stream on the kernel consumer side. */
e098433c 387 ret = kernel_consumer_add_stream(sock, channel, stream,
d2956687 388 ksession, monitor);
f1e16794 389 if (ret < 0) {
f1e16794
DG
390 goto error;
391 }
6986ab9b 392 stream->sent_to_consumer = true;
f1e16794
DG
393 }
394
f1e16794 395error:
e098433c 396 rcu_read_unlock();
f1e16794
DG
397 return ret;
398}
399
400/*
401 * Send all stream fds of the kernel session to the consumer.
9a318688
JG
402 *
403 * The consumer socket lock must be held by the caller.
f1e16794 404 */
f50f23d9
DG
405int kernel_consumer_send_session(struct consumer_socket *sock,
406 struct ltt_kernel_session *session)
f1e16794 407{
2bba9e53 408 int ret, monitor = 0;
f1e16794 409 struct ltt_kernel_channel *chan;
f1e16794 410
00e2e675
DG
411 /* Safety net */
412 assert(session);
413 assert(session->consumer);
f50f23d9 414 assert(sock);
f1e16794 415
00e2e675
DG
416 /* Bail out if consumer is disabled */
417 if (!session->consumer->enabled) {
f73fabfd 418 ret = LTTNG_OK;
00e2e675 419 goto error;
f1e16794
DG
420 }
421
2bba9e53
DG
422 /* Don't monitor the streams on the consumer if in flight recorder. */
423 if (session->output_traces) {
424 monitor = 1;
425 }
426
00e2e675
DG
427 DBG("Sending session stream to kernel consumer");
428
609af759 429 if (session->metadata_stream_fd >= 0 && session->metadata) {
2bba9e53 430 ret = kernel_consumer_add_metadata(sock, session, monitor);
f1e16794 431 if (ret < 0) {
f1e16794
DG
432 goto error;
433 }
f1e16794
DG
434 }
435
00e2e675 436 /* Send channel and streams of it */
f1e16794 437 cds_list_for_each_entry(chan, &session->channel_list.head, list) {
1fc1b7c8 438 ret = kernel_consumer_send_channel_streams(sock, chan, session,
2bba9e53 439 monitor);
f1e16794
DG
440 if (ret < 0) {
441 goto error;
442 }
601262d6
JD
443 if (monitor) {
444 /*
445 * Inform the relay that all the streams for the
446 * channel were sent.
447 */
e1f3997a 448 ret = kernel_consumer_streams_sent(sock, session, chan->key);
601262d6
JD
449 if (ret < 0) {
450 goto error;
451 }
452 }
f1e16794
DG
453 }
454
00e2e675 455 DBG("Kernel consumer FDs of metadata and channel streams sent");
f1e16794 456
4ce9ff51 457 session->consumer_fds_sent = 1;
f1e16794
DG
458 return 0;
459
460error:
461 return ret;
462}
07b86b52
JD
463
464int kernel_consumer_destroy_channel(struct consumer_socket *socket,
465 struct ltt_kernel_channel *channel)
466{
467 int ret;
468 struct lttcomm_consumer_msg msg;
469
470 assert(channel);
471 assert(socket);
07b86b52 472
e1f3997a 473 DBG("Sending kernel consumer destroy channel key %" PRIu64, channel->key);
07b86b52 474
53efb85a 475 memset(&msg, 0, sizeof(msg));
07b86b52 476 msg.cmd_type = LTTNG_CONSUMER_DESTROY_CHANNEL;
e1f3997a 477 msg.u.destroy_channel.key = channel->key;
07b86b52
JD
478
479 pthread_mutex_lock(socket->lock);
480 health_code_update();
481
482 ret = consumer_send_msg(socket, &msg);
483 if (ret < 0) {
484 goto error;
485 }
486
487error:
488 health_code_update();
489 pthread_mutex_unlock(socket->lock);
490 return ret;
491}
492
493int kernel_consumer_destroy_metadata(struct consumer_socket *socket,
494 struct ltt_kernel_metadata *metadata)
495{
496 int ret;
497 struct lttcomm_consumer_msg msg;
498
499 assert(metadata);
500 assert(socket);
07b86b52 501
d40f0359 502 DBG("Sending kernel consumer destroy channel key %" PRIu64, metadata->key);
07b86b52 503
53efb85a 504 memset(&msg, 0, sizeof(msg));
07b86b52 505 msg.cmd_type = LTTNG_CONSUMER_DESTROY_CHANNEL;
d40f0359 506 msg.u.destroy_channel.key = metadata->key;
07b86b52
JD
507
508 pthread_mutex_lock(socket->lock);
509 health_code_update();
510
511 ret = consumer_send_msg(socket, &msg);
512 if (ret < 0) {
513 goto error;
514 }
515
516error:
517 health_code_update();
518 pthread_mutex_unlock(socket->lock);
519 return ret;
520}
This page took 0.08336 seconds and 4 git commands to generate.