Add kernel snapshot support
[lttng-tools.git] / src / bin / lttng-sessiond / kernel-consumer.c
CommitLineData
f1e16794
DG
1/*
2 * Copyright (C) 2012 - David Goulet <dgoulet@efficios.com>
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License, version 2 only, as
6 * published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11 * more details.
12 *
13 * You should have received a copy of the GNU General Public License along with
14 * this program; if not, write to the Free Software Foundation, Inc., 51
15 * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
16 */
17
18#define _GNU_SOURCE
19#include <stdio.h>
20#include <stdlib.h>
21#include <string.h>
22#include <sys/stat.h>
23#include <unistd.h>
24
25#include <common/common.h>
26#include <common/defaults.h>
f1e16794 27
00e2e675 28#include "consumer.h"
7972aab2 29#include "health.h"
f1e16794
DG
30#include "kernel-consumer.h"
31
2bba9e53
DG
32static char *create_channel_path(struct consumer_output *consumer,
33 uid_t uid, gid_t gid)
00e2e675
DG
34{
35 int ret;
ffe60014 36 char tmp_path[PATH_MAX];
2bba9e53 37 char *pathname = NULL;
00e2e675 38
2bba9e53 39 assert(consumer);
00e2e675 40
ffe60014
DG
41 /* Get the right path name destination */
42 if (consumer->type == CONSUMER_DST_LOCAL) {
43 /* Set application path to the destination path */
dec56f6c 44 ret = snprintf(tmp_path, sizeof(tmp_path), "%s%s",
ffe60014
DG
45 consumer->dst.trace_path, consumer->subdir);
46 if (ret < 0) {
2bba9e53 47 PERROR("snprintf kernel channel path");
ffe60014
DG
48 goto error;
49 }
2bba9e53 50 pathname = strndup(tmp_path, sizeof(tmp_path));
ffe60014
DG
51
52 /* Create directory */
2bba9e53 53 ret = run_as_mkdir_recursive(pathname, S_IRWXU | S_IRWXG, uid, gid);
ffe60014
DG
54 if (ret < 0) {
55 if (ret != -EEXIST) {
56 ERR("Trace directory creation error");
57 goto error;
58 }
59 }
60 DBG3("Kernel local consumer tracefile path: %s", pathname);
61 } else {
62 ret = snprintf(tmp_path, sizeof(tmp_path), "%s", consumer->subdir);
63 if (ret < 0) {
2bba9e53 64 PERROR("snprintf kernel metadata path");
ffe60014
DG
65 goto error;
66 }
2bba9e53 67 pathname = strndup(tmp_path, sizeof(tmp_path));
ffe60014
DG
68 DBG3("Kernel network consumer subdir path: %s", pathname);
69 }
70
2bba9e53
DG
71 return pathname;
72
73error:
74 free(pathname);
75 return NULL;
76}
77
78/*
79 * Sending a single channel to the consumer with command ADD_CHANNEL.
80 */
81int kernel_consumer_add_channel(struct consumer_socket *sock,
82 struct ltt_kernel_channel *channel, struct ltt_kernel_session *session,
83 unsigned int monitor)
84{
85 int ret;
86 char *pathname;
87 struct lttcomm_consumer_msg lkm;
88 struct consumer_output *consumer;
89
90 /* Safety net */
91 assert(channel);
92 assert(session);
93 assert(session->consumer);
94
95 consumer = session->consumer;
96
97 DBG("Kernel consumer adding channel %s to kernel consumer",
98 channel->channel->name);
99
100 if (monitor) {
101 pathname = create_channel_path(consumer, session->uid, session->gid);
102 if (!pathname) {
103 ret = -1;
104 goto error;
105 }
106 } else {
107 /* Empty path. */
108 pathname = "";
109 }
110
00e2e675
DG
111 /* Prep channel message structure */
112 consumer_init_channel_comm_msg(&lkm,
113 LTTNG_CONSUMER_ADD_CHANNEL,
114 channel->fd,
ffe60014
DG
115 session->id,
116 pathname,
117 session->uid,
118 session->gid,
119 consumer->net_seq_index,
c30aaa51 120 channel->channel->name,
ffe60014
DG
121 channel->stream_count,
122 channel->channel->attr.output,
1624d5b7
JD
123 CONSUMER_CHANNEL_TYPE_DATA,
124 channel->channel->attr.tracefile_size,
2bba9e53
DG
125 channel->channel->attr.tracefile_count,
126 monitor);
00e2e675 127
840cb59c 128 health_code_update();
ca03de58 129
00e2e675
DG
130 ret = consumer_send_channel(sock, &lkm);
131 if (ret < 0) {
132 goto error;
133 }
134
840cb59c 135 health_code_update();
ca03de58 136
00e2e675
DG
137error:
138 return ret;
139}
140
141/*
142 * Sending metadata to the consumer with command ADD_CHANNEL and ADD_STREAM.
143 */
f50f23d9 144int kernel_consumer_add_metadata(struct consumer_socket *sock,
2bba9e53 145 struct ltt_kernel_session *session, unsigned int monitor)
00e2e675
DG
146{
147 int ret;
2bba9e53 148 char *pathname;
00e2e675 149 struct lttcomm_consumer_msg lkm;
a7d9a3e7 150 struct consumer_output *consumer;
00e2e675
DG
151
152 /* Safety net */
153 assert(session);
154 assert(session->consumer);
f50f23d9 155 assert(sock);
00e2e675
DG
156
157 DBG("Sending metadata %d to kernel consumer", session->metadata_stream_fd);
158
159 /* Get consumer output pointer */
a7d9a3e7 160 consumer = session->consumer;
00e2e675 161
2bba9e53
DG
162 if (monitor) {
163 pathname = create_channel_path(consumer, session->uid, session->gid);
164 if (!pathname) {
165 ret = -1;
a7d9a3e7
DG
166 goto error;
167 }
00e2e675 168 } else {
2bba9e53
DG
169 /* Empty path. */
170 pathname = "";
00e2e675
DG
171 }
172
173 /* Prep channel message structure */
174 consumer_init_channel_comm_msg(&lkm,
175 LTTNG_CONSUMER_ADD_CHANNEL,
176 session->metadata->fd,
ffe60014
DG
177 session->id,
178 pathname,
179 session->uid,
180 session->gid,
181 consumer->net_seq_index,
30079b6b 182 DEFAULT_METADATA_NAME,
ffe60014
DG
183 1,
184 DEFAULT_KERNEL_CHANNEL_OUTPUT,
1624d5b7 185 CONSUMER_CHANNEL_TYPE_METADATA,
2bba9e53
DG
186 0, 0,
187 monitor);
00e2e675 188
840cb59c 189 health_code_update();
ca03de58 190
00e2e675
DG
191 ret = consumer_send_channel(sock, &lkm);
192 if (ret < 0) {
193 goto error;
194 }
195
840cb59c 196 health_code_update();
ca03de58 197
00e2e675
DG
198 /* Prep stream message structure */
199 consumer_init_stream_comm_msg(&lkm,
200 LTTNG_CONSUMER_ADD_STREAM,
201 session->metadata->fd,
202 session->metadata_stream_fd,
1624d5b7 203 0); /* CPU: 0 for metadata. */
00e2e675 204
840cb59c 205 health_code_update();
ca03de58 206
00e2e675 207 /* Send stream and file descriptor */
a7d9a3e7 208 ret = consumer_send_stream(sock, consumer, &lkm,
00e2e675
DG
209 &session->metadata_stream_fd, 1);
210 if (ret < 0) {
211 goto error;
212 }
213
840cb59c 214 health_code_update();
ca03de58 215
00e2e675
DG
216error:
217 return ret;
218}
219
220/*
221 * Sending a single stream to the consumer with command ADD_STREAM.
222 */
f50f23d9
DG
223int kernel_consumer_add_stream(struct consumer_socket *sock,
224 struct ltt_kernel_channel *channel, struct ltt_kernel_stream *stream,
2bba9e53 225 struct ltt_kernel_session *session, unsigned int monitor)
00e2e675
DG
226{
227 int ret;
00e2e675 228 struct lttcomm_consumer_msg lkm;
a7d9a3e7 229 struct consumer_output *consumer;
00e2e675
DG
230
231 assert(channel);
232 assert(stream);
233 assert(session);
234 assert(session->consumer);
f50f23d9 235 assert(sock);
00e2e675
DG
236
237 DBG("Sending stream %d of channel %s to kernel consumer",
238 stream->fd, channel->channel->name);
239
240 /* Get consumer output pointer */
a7d9a3e7 241 consumer = session->consumer;
00e2e675 242
00e2e675 243 /* Prep stream consumer message */
ffe60014
DG
244 consumer_init_stream_comm_msg(&lkm,
245 LTTNG_CONSUMER_ADD_STREAM,
00e2e675
DG
246 channel->fd,
247 stream->fd,
ffe60014 248 stream->cpu);
00e2e675 249
840cb59c 250 health_code_update();
ca03de58 251
00e2e675 252 /* Send stream and file descriptor */
a7d9a3e7 253 ret = consumer_send_stream(sock, consumer, &lkm, &stream->fd, 1);
00e2e675
DG
254 if (ret < 0) {
255 goto error;
256 }
257
840cb59c 258 health_code_update();
ca03de58 259
00e2e675
DG
260error:
261 return ret;
262}
263
f1e16794
DG
264/*
265 * Send all stream fds of kernel channel to the consumer.
266 */
f50f23d9 267int kernel_consumer_send_channel_stream(struct consumer_socket *sock,
2bba9e53
DG
268 struct ltt_kernel_channel *channel, struct ltt_kernel_session *session,
269 unsigned int monitor)
f1e16794 270{
00e2e675 271 int ret;
f1e16794 272 struct ltt_kernel_stream *stream;
00e2e675
DG
273
274 /* Safety net */
275 assert(channel);
276 assert(session);
277 assert(session->consumer);
f50f23d9 278 assert(sock);
00e2e675
DG
279
280 /* Bail out if consumer is disabled */
281 if (!session->consumer->enabled) {
f73fabfd 282 ret = LTTNG_OK;
00e2e675
DG
283 goto error;
284 }
f1e16794
DG
285
286 DBG("Sending streams of channel %s to kernel consumer",
287 channel->channel->name);
288
2bba9e53 289 ret = kernel_consumer_add_channel(sock, channel, session, monitor);
f1e16794 290 if (ret < 0) {
f1e16794
DG
291 goto error;
292 }
293
294 /* Send streams */
295 cds_list_for_each_entry(stream, &channel->stream_list.head, list) {
296 if (!stream->fd) {
297 continue;
298 }
00e2e675
DG
299
300 /* Add stream on the kernel consumer side. */
2bba9e53
DG
301 ret = kernel_consumer_add_stream(sock, channel, stream, session,
302 monitor);
f1e16794 303 if (ret < 0) {
f1e16794
DG
304 goto error;
305 }
306 }
307
f1e16794
DG
308error:
309 return ret;
310}
311
312/*
313 * Send all stream fds of the kernel session to the consumer.
314 */
f50f23d9
DG
315int kernel_consumer_send_session(struct consumer_socket *sock,
316 struct ltt_kernel_session *session)
f1e16794 317{
2bba9e53 318 int ret, monitor = 0;
f1e16794 319 struct ltt_kernel_channel *chan;
f1e16794 320
00e2e675
DG
321 /* Safety net */
322 assert(session);
323 assert(session->consumer);
f50f23d9 324 assert(sock);
f1e16794 325
00e2e675
DG
326 /* Bail out if consumer is disabled */
327 if (!session->consumer->enabled) {
f73fabfd 328 ret = LTTNG_OK;
00e2e675 329 goto error;
f1e16794
DG
330 }
331
2bba9e53
DG
332 /* Don't monitor the streams on the consumer if in flight recorder. */
333 if (session->output_traces) {
334 monitor = 1;
335 }
336
00e2e675
DG
337 DBG("Sending session stream to kernel consumer");
338
f1e16794 339 if (session->metadata_stream_fd >= 0) {
2bba9e53 340 ret = kernel_consumer_add_metadata(sock, session, monitor);
f1e16794 341 if (ret < 0) {
f1e16794
DG
342 goto error;
343 }
344
00e2e675
DG
345 /* Flag that at least the metadata has been sent to the consumer. */
346 session->consumer_fds_sent = 1;
f1e16794
DG
347 }
348
00e2e675 349 /* Send channel and streams of it */
f1e16794 350 cds_list_for_each_entry(chan, &session->channel_list.head, list) {
2bba9e53
DG
351 ret = kernel_consumer_send_channel_stream(sock, chan, session,
352 monitor);
f1e16794
DG
353 if (ret < 0) {
354 goto error;
355 }
356 }
357
00e2e675 358 DBG("Kernel consumer FDs of metadata and channel streams sent");
f1e16794
DG
359
360 return 0;
361
362error:
363 return ret;
364}
07b86b52
JD
365
366int kernel_consumer_destroy_channel(struct consumer_socket *socket,
367 struct ltt_kernel_channel *channel)
368{
369 int ret;
370 struct lttcomm_consumer_msg msg;
371
372 assert(channel);
373 assert(socket);
374 assert(socket->fd >= 0);
375
376 DBG("Sending kernel consumer destroy channel key %d", channel->fd);
377
378 msg.cmd_type = LTTNG_CONSUMER_DESTROY_CHANNEL;
379 msg.u.destroy_channel.key = channel->fd;
380
381 pthread_mutex_lock(socket->lock);
382 health_code_update();
383
384 ret = consumer_send_msg(socket, &msg);
385 if (ret < 0) {
386 goto error;
387 }
388
389error:
390 health_code_update();
391 pthread_mutex_unlock(socket->lock);
392 return ret;
393}
394
395int kernel_consumer_destroy_metadata(struct consumer_socket *socket,
396 struct ltt_kernel_metadata *metadata)
397{
398 int ret;
399 struct lttcomm_consumer_msg msg;
400
401 assert(metadata);
402 assert(socket);
403 assert(socket->fd >= 0);
404
405 DBG("Sending kernel consumer destroy channel key %d", metadata->fd);
406
407 msg.cmd_type = LTTNG_CONSUMER_DESTROY_CHANNEL;
408 msg.u.destroy_channel.key = metadata->fd;
409
410 pthread_mutex_lock(socket->lock);
411 health_code_update();
412
413 ret = consumer_send_msg(socket, &msg);
414 if (ret < 0) {
415 goto error;
416 }
417
418error:
419 health_code_update();
420 pthread_mutex_unlock(socket->lock);
421 return ret;
422}
This page took 0.050498 seconds and 5 git commands to generate.