Commit | Line | Data |
---|---|---|
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 |
32 | static 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 | ||
73 | error: | |
74 | free(pathname); | |
75 | return NULL; | |
76 | } | |
77 | ||
78 | /* | |
79 | * Sending a single channel to the consumer with command ADD_CHANNEL. | |
80 | */ | |
81 | int 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 |
137 | error: |
138 | return ret; | |
139 | } | |
140 | ||
141 | /* | |
142 | * Sending metadata to the consumer with command ADD_CHANNEL and ADD_STREAM. | |
143 | */ | |
f50f23d9 | 144 | int 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 |
216 | error: |
217 | return ret; | |
218 | } | |
219 | ||
220 | /* | |
221 | * Sending a single stream to the consumer with command ADD_STREAM. | |
222 | */ | |
f50f23d9 DG |
223 | int 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 |
260 | error: |
261 | return ret; | |
262 | } | |
263 | ||
f1e16794 DG |
264 | /* |
265 | * Send all stream fds of kernel channel to the consumer. | |
266 | */ | |
f50f23d9 | 267 | int 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 |
308 | error: |
309 | return ret; | |
310 | } | |
311 | ||
312 | /* | |
313 | * Send all stream fds of the kernel session to the consumer. | |
314 | */ | |
f50f23d9 DG |
315 | int 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 | } | |
f1e16794 DG |
344 | } |
345 | ||
00e2e675 | 346 | /* Send channel and streams of it */ |
f1e16794 | 347 | cds_list_for_each_entry(chan, &session->channel_list.head, list) { |
2bba9e53 DG |
348 | ret = kernel_consumer_send_channel_stream(sock, chan, session, |
349 | monitor); | |
f1e16794 DG |
350 | if (ret < 0) { |
351 | goto error; | |
352 | } | |
353 | } | |
354 | ||
00e2e675 | 355 | DBG("Kernel consumer FDs of metadata and channel streams sent"); |
f1e16794 | 356 | |
49740e56 | 357 | session->consumer_fds_sent = 1; |
f1e16794 DG |
358 | return 0; |
359 | ||
360 | error: | |
361 | return ret; | |
362 | } | |
07b86b52 JD |
363 | |
364 | int kernel_consumer_destroy_channel(struct consumer_socket *socket, | |
365 | struct ltt_kernel_channel *channel) | |
366 | { | |
367 | int ret; | |
368 | struct lttcomm_consumer_msg msg; | |
369 | ||
370 | assert(channel); | |
371 | assert(socket); | |
07b86b52 JD |
372 | |
373 | DBG("Sending kernel consumer destroy channel key %d", channel->fd); | |
374 | ||
375 | msg.cmd_type = LTTNG_CONSUMER_DESTROY_CHANNEL; | |
376 | msg.u.destroy_channel.key = channel->fd; | |
377 | ||
378 | pthread_mutex_lock(socket->lock); | |
379 | health_code_update(); | |
380 | ||
381 | ret = consumer_send_msg(socket, &msg); | |
382 | if (ret < 0) { | |
383 | goto error; | |
384 | } | |
385 | ||
386 | error: | |
387 | health_code_update(); | |
388 | pthread_mutex_unlock(socket->lock); | |
389 | return ret; | |
390 | } | |
391 | ||
392 | int kernel_consumer_destroy_metadata(struct consumer_socket *socket, | |
393 | struct ltt_kernel_metadata *metadata) | |
394 | { | |
395 | int ret; | |
396 | struct lttcomm_consumer_msg msg; | |
397 | ||
398 | assert(metadata); | |
399 | assert(socket); | |
07b86b52 JD |
400 | |
401 | DBG("Sending kernel consumer destroy channel key %d", metadata->fd); | |
402 | ||
403 | msg.cmd_type = LTTNG_CONSUMER_DESTROY_CHANNEL; | |
404 | msg.u.destroy_channel.key = metadata->fd; | |
405 | ||
406 | pthread_mutex_lock(socket->lock); | |
407 | health_code_update(); | |
408 | ||
409 | ret = consumer_send_msg(socket, &msg); | |
410 | if (ret < 0) { | |
411 | goto error; | |
412 | } | |
413 | ||
414 | error: | |
415 | health_code_update(); | |
416 | pthread_mutex_unlock(socket->lock); | |
417 | return ret; | |
418 | } |