Fix: set channel key to message on notify channel
[lttng-tools.git] / src / common / consumer.c
CommitLineData
3bd1e081
MD
1/*
2 * Copyright (C) 2011 - Julien Desfossez <julien.desfossez@polymtl.ca>
3 * Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
00e2e675 4 * 2012 - David Goulet <dgoulet@efficios.com>
3bd1e081 5 *
d14d33bf
AM
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License, version 2 only,
8 * as published by the Free Software Foundation.
3bd1e081 9 *
d14d33bf
AM
10 * This program is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
3bd1e081 14 *
d14d33bf
AM
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
3bd1e081
MD
18 */
19
20#define _GNU_SOURCE
21#include <assert.h>
3bd1e081
MD
22#include <poll.h>
23#include <pthread.h>
24#include <stdlib.h>
25#include <string.h>
26#include <sys/mman.h>
27#include <sys/socket.h>
28#include <sys/types.h>
29#include <unistd.h>
77c7c900 30#include <inttypes.h>
331744e3 31#include <signal.h>
3bd1e081 32
990570ed 33#include <common/common.h>
fb3a43a9
DG
34#include <common/utils.h>
35#include <common/compat/poll.h>
10a8a223 36#include <common/kernel-ctl/kernel-ctl.h>
00e2e675 37#include <common/sessiond-comm/relayd.h>
10a8a223
DG
38#include <common/sessiond-comm/sessiond-comm.h>
39#include <common/kernel-consumer/kernel-consumer.h>
00e2e675 40#include <common/relayd/relayd.h>
10a8a223
DG
41#include <common/ust-consumer/ust-consumer.h>
42
43#include "consumer.h"
3bd1e081
MD
44
45struct lttng_consumer_global_data consumer_data = {
3bd1e081
MD
46 .stream_count = 0,
47 .need_update = 1,
48 .type = LTTNG_CONSUMER_UNKNOWN,
49};
50
d8ef542d
MD
51enum consumer_channel_action {
52 CONSUMER_CHANNEL_ADD,
a0cbdd2e 53 CONSUMER_CHANNEL_DEL,
d8ef542d
MD
54 CONSUMER_CHANNEL_QUIT,
55};
56
57struct consumer_channel_msg {
58 enum consumer_channel_action action;
a0cbdd2e
MD
59 struct lttng_consumer_channel *chan; /* add */
60 uint64_t key; /* del */
d8ef542d
MD
61};
62
3bd1e081
MD
63/*
64 * Flag to inform the polling thread to quit when all fd hung up. Updated by
65 * the consumer_thread_receive_fds when it notices that all fds has hung up.
66 * Also updated by the signal handler (consumer_should_exit()). Read by the
67 * polling threads.
68 */
a98dae5f 69volatile int consumer_quit;
3bd1e081 70
43c34bc3 71/*
43c34bc3
DG
72 * Global hash table containing respectively metadata and data streams. The
73 * stream element in this ht should only be updated by the metadata poll thread
74 * for the metadata and the data poll thread for the data.
75 */
40dc48e0
DG
76static struct lttng_ht *metadata_ht;
77static struct lttng_ht *data_ht;
43c34bc3 78
acdb9057
DG
79/*
80 * Notify a thread lttng pipe to poll back again. This usually means that some
81 * global state has changed so we just send back the thread in a poll wait
82 * call.
83 */
84static void notify_thread_lttng_pipe(struct lttng_pipe *pipe)
85{
86 struct lttng_consumer_stream *null_stream = NULL;
87
88 assert(pipe);
89
90 (void) lttng_pipe_write(pipe, &null_stream, sizeof(null_stream));
91}
92
d8ef542d
MD
93static void notify_channel_pipe(struct lttng_consumer_local_data *ctx,
94 struct lttng_consumer_channel *chan,
a0cbdd2e 95 uint64_t key,
d8ef542d
MD
96 enum consumer_channel_action action)
97{
98 struct consumer_channel_msg msg;
99 int ret;
100
e56251fc
DG
101 memset(&msg, 0, sizeof(msg));
102
d8ef542d
MD
103 msg.action = action;
104 msg.chan = chan;
f21dae48 105 msg.key = key;
d8ef542d
MD
106 do {
107 ret = write(ctx->consumer_channel_pipe[1], &msg, sizeof(msg));
108 } while (ret < 0 && errno == EINTR);
109}
110
a0cbdd2e
MD
111void notify_thread_del_channel(struct lttng_consumer_local_data *ctx,
112 uint64_t key)
113{
114 notify_channel_pipe(ctx, NULL, key, CONSUMER_CHANNEL_DEL);
115}
116
d8ef542d
MD
117static int read_channel_pipe(struct lttng_consumer_local_data *ctx,
118 struct lttng_consumer_channel **chan,
a0cbdd2e 119 uint64_t *key,
d8ef542d
MD
120 enum consumer_channel_action *action)
121{
122 struct consumer_channel_msg msg;
123 int ret;
124
125 do {
126 ret = read(ctx->consumer_channel_pipe[0], &msg, sizeof(msg));
127 } while (ret < 0 && errno == EINTR);
128 if (ret > 0) {
129 *action = msg.action;
130 *chan = msg.chan;
a0cbdd2e 131 *key = msg.key;
d8ef542d
MD
132 }
133 return ret;
134}
135
3bd1e081
MD
136/*
137 * Find a stream. The consumer_data.lock must be locked during this
138 * call.
139 */
d88aee68 140static struct lttng_consumer_stream *find_stream(uint64_t key,
8389e4f8 141 struct lttng_ht *ht)
3bd1e081 142{
e4421fec 143 struct lttng_ht_iter iter;
d88aee68 144 struct lttng_ht_node_u64 *node;
e4421fec 145 struct lttng_consumer_stream *stream = NULL;
3bd1e081 146
8389e4f8
DG
147 assert(ht);
148
d88aee68
DG
149 /* -1ULL keys are lookup failures */
150 if (key == (uint64_t) -1ULL) {
7ad0a0cb 151 return NULL;
7a57cf92 152 }
e4421fec 153
6065ceec
DG
154 rcu_read_lock();
155
d88aee68
DG
156 lttng_ht_lookup(ht, &key, &iter);
157 node = lttng_ht_iter_get_node_u64(&iter);
e4421fec
DG
158 if (node != NULL) {
159 stream = caa_container_of(node, struct lttng_consumer_stream, node);
3bd1e081 160 }
e4421fec 161
6065ceec
DG
162 rcu_read_unlock();
163
e4421fec 164 return stream;
3bd1e081
MD
165}
166
ffe60014 167static void steal_stream_key(int key, struct lttng_ht *ht)
7ad0a0cb
MD
168{
169 struct lttng_consumer_stream *stream;
170
04253271 171 rcu_read_lock();
ffe60014 172 stream = find_stream(key, ht);
04253271 173 if (stream) {
d88aee68 174 stream->key = -1ULL;
04253271
MD
175 /*
176 * We don't want the lookup to match, but we still need
177 * to iterate on this stream when iterating over the hash table. Just
178 * change the node key.
179 */
d88aee68 180 stream->node.key = -1ULL;
04253271
MD
181 }
182 rcu_read_unlock();
7ad0a0cb
MD
183}
184
d56db448
DG
185/*
186 * Return a channel object for the given key.
187 *
188 * RCU read side lock MUST be acquired before calling this function and
189 * protects the channel ptr.
190 */
d88aee68 191struct lttng_consumer_channel *consumer_find_channel(uint64_t key)
3bd1e081 192{
e4421fec 193 struct lttng_ht_iter iter;
d88aee68 194 struct lttng_ht_node_u64 *node;
e4421fec 195 struct lttng_consumer_channel *channel = NULL;
3bd1e081 196
d88aee68
DG
197 /* -1ULL keys are lookup failures */
198 if (key == (uint64_t) -1ULL) {
7ad0a0cb 199 return NULL;
7a57cf92 200 }
e4421fec 201
d88aee68
DG
202 lttng_ht_lookup(consumer_data.channel_ht, &key, &iter);
203 node = lttng_ht_iter_get_node_u64(&iter);
e4421fec
DG
204 if (node != NULL) {
205 channel = caa_container_of(node, struct lttng_consumer_channel, node);
3bd1e081 206 }
e4421fec
DG
207
208 return channel;
3bd1e081
MD
209}
210
ffe60014 211static void free_stream_rcu(struct rcu_head *head)
7ad0a0cb 212{
d88aee68
DG
213 struct lttng_ht_node_u64 *node =
214 caa_container_of(head, struct lttng_ht_node_u64, head);
ffe60014
DG
215 struct lttng_consumer_stream *stream =
216 caa_container_of(node, struct lttng_consumer_stream, node);
7ad0a0cb 217
ffe60014 218 free(stream);
7ad0a0cb
MD
219}
220
ffe60014 221static void free_channel_rcu(struct rcu_head *head)
702b1ea4 222{
d88aee68
DG
223 struct lttng_ht_node_u64 *node =
224 caa_container_of(head, struct lttng_ht_node_u64, head);
ffe60014
DG
225 struct lttng_consumer_channel *channel =
226 caa_container_of(node, struct lttng_consumer_channel, node);
702b1ea4 227
ffe60014 228 free(channel);
702b1ea4
MD
229}
230
00e2e675
DG
231/*
232 * RCU protected relayd socket pair free.
233 */
ffe60014 234static void free_relayd_rcu(struct rcu_head *head)
00e2e675 235{
d88aee68
DG
236 struct lttng_ht_node_u64 *node =
237 caa_container_of(head, struct lttng_ht_node_u64, head);
00e2e675
DG
238 struct consumer_relayd_sock_pair *relayd =
239 caa_container_of(node, struct consumer_relayd_sock_pair, node);
240
8994307f
DG
241 /*
242 * Close all sockets. This is done in the call RCU since we don't want the
243 * socket fds to be reassigned thus potentially creating bad state of the
244 * relayd object.
245 *
246 * We do not have to lock the control socket mutex here since at this stage
247 * there is no one referencing to this relayd object.
248 */
249 (void) relayd_close(&relayd->control_sock);
250 (void) relayd_close(&relayd->data_sock);
251
00e2e675
DG
252 free(relayd);
253}
254
255/*
256 * Destroy and free relayd socket pair object.
257 *
258 * This function MUST be called with the consumer_data lock acquired.
259 */
d09e1200 260static void destroy_relayd(struct consumer_relayd_sock_pair *relayd)
00e2e675
DG
261{
262 int ret;
263 struct lttng_ht_iter iter;
264
173af62f
DG
265 if (relayd == NULL) {
266 return;
267 }
268
00e2e675
DG
269 DBG("Consumer destroy and close relayd socket pair");
270
271 iter.iter.node = &relayd->node.node;
272 ret = lttng_ht_del(consumer_data.relayd_ht, &iter);
173af62f 273 if (ret != 0) {
8994307f 274 /* We assume the relayd is being or is destroyed */
173af62f
DG
275 return;
276 }
00e2e675 277
00e2e675 278 /* RCU free() call */
ffe60014
DG
279 call_rcu(&relayd->node.head, free_relayd_rcu);
280}
281
282/*
283 * Remove a channel from the global list protected by a mutex. This function is
284 * also responsible for freeing its data structures.
285 */
286void consumer_del_channel(struct lttng_consumer_channel *channel)
287{
288 int ret;
289 struct lttng_ht_iter iter;
290
d88aee68 291 DBG("Consumer delete channel key %" PRIu64, channel->key);
ffe60014
DG
292
293 pthread_mutex_lock(&consumer_data.lock);
294
295 switch (consumer_data.type) {
296 case LTTNG_CONSUMER_KERNEL:
297 break;
298 case LTTNG_CONSUMER32_UST:
299 case LTTNG_CONSUMER64_UST:
300 lttng_ustconsumer_del_channel(channel);
301 break;
302 default:
303 ERR("Unknown consumer_data type");
304 assert(0);
305 goto end;
306 }
307
308 rcu_read_lock();
309 iter.iter.node = &channel->node.node;
310 ret = lttng_ht_del(consumer_data.channel_ht, &iter);
311 assert(!ret);
312 rcu_read_unlock();
313
314 call_rcu(&channel->node.head, free_channel_rcu);
315end:
316 pthread_mutex_unlock(&consumer_data.lock);
00e2e675
DG
317}
318
228b5bf7
DG
319/*
320 * Iterate over the relayd hash table and destroy each element. Finally,
321 * destroy the whole hash table.
322 */
323static void cleanup_relayd_ht(void)
324{
325 struct lttng_ht_iter iter;
326 struct consumer_relayd_sock_pair *relayd;
327
328 rcu_read_lock();
329
330 cds_lfht_for_each_entry(consumer_data.relayd_ht->ht, &iter.iter, relayd,
331 node.node) {
332 destroy_relayd(relayd);
333 }
334
228b5bf7 335 rcu_read_unlock();
36b588ed
MD
336
337 lttng_ht_destroy(consumer_data.relayd_ht);
228b5bf7
DG
338}
339
8994307f
DG
340/*
341 * Update the end point status of all streams having the given network sequence
342 * index (relayd index).
343 *
344 * It's atomically set without having the stream mutex locked which is fine
345 * because we handle the write/read race with a pipe wakeup for each thread.
346 */
347static void update_endpoint_status_by_netidx(int net_seq_idx,
348 enum consumer_endpoint_status status)
349{
350 struct lttng_ht_iter iter;
351 struct lttng_consumer_stream *stream;
352
353 DBG("Consumer set delete flag on stream by idx %d", net_seq_idx);
354
355 rcu_read_lock();
356
357 /* Let's begin with metadata */
358 cds_lfht_for_each_entry(metadata_ht->ht, &iter.iter, stream, node.node) {
359 if (stream->net_seq_idx == net_seq_idx) {
360 uatomic_set(&stream->endpoint_status, status);
361 DBG("Delete flag set to metadata stream %d", stream->wait_fd);
362 }
363 }
364
365 /* Follow up by the data streams */
366 cds_lfht_for_each_entry(data_ht->ht, &iter.iter, stream, node.node) {
367 if (stream->net_seq_idx == net_seq_idx) {
368 uatomic_set(&stream->endpoint_status, status);
369 DBG("Delete flag set to data stream %d", stream->wait_fd);
370 }
371 }
372 rcu_read_unlock();
373}
374
375/*
376 * Cleanup a relayd object by flagging every associated streams for deletion,
377 * destroying the object meaning removing it from the relayd hash table,
378 * closing the sockets and freeing the memory in a RCU call.
379 *
380 * If a local data context is available, notify the threads that the streams'
381 * state have changed.
382 */
383static void cleanup_relayd(struct consumer_relayd_sock_pair *relayd,
384 struct lttng_consumer_local_data *ctx)
385{
386 int netidx;
387
388 assert(relayd);
389
9617607b
DG
390 DBG("Cleaning up relayd sockets");
391
8994307f
DG
392 /* Save the net sequence index before destroying the object */
393 netidx = relayd->net_seq_idx;
394
395 /*
396 * Delete the relayd from the relayd hash table, close the sockets and free
397 * the object in a RCU call.
398 */
399 destroy_relayd(relayd);
400
401 /* Set inactive endpoint to all streams */
402 update_endpoint_status_by_netidx(netidx, CONSUMER_ENDPOINT_INACTIVE);
403
404 /*
405 * With a local data context, notify the threads that the streams' state
406 * have changed. The write() action on the pipe acts as an "implicit"
407 * memory barrier ordering the updates of the end point status from the
408 * read of this status which happens AFTER receiving this notify.
409 */
410 if (ctx) {
acdb9057 411 notify_thread_lttng_pipe(ctx->consumer_data_pipe);
13886d2d 412 notify_thread_lttng_pipe(ctx->consumer_metadata_pipe);
8994307f
DG
413 }
414}
415
a6ba4fe1
DG
416/*
417 * Flag a relayd socket pair for destruction. Destroy it if the refcount
418 * reaches zero.
419 *
420 * RCU read side lock MUST be aquired before calling this function.
421 */
422void consumer_flag_relayd_for_destroy(struct consumer_relayd_sock_pair *relayd)
423{
424 assert(relayd);
425
426 /* Set destroy flag for this object */
427 uatomic_set(&relayd->destroy_flag, 1);
428
429 /* Destroy the relayd if refcount is 0 */
430 if (uatomic_read(&relayd->refcount) == 0) {
d09e1200 431 destroy_relayd(relayd);
a6ba4fe1
DG
432 }
433}
434
3bd1e081
MD
435/*
436 * Remove a stream from the global list protected by a mutex. This
437 * function is also responsible for freeing its data structures.
438 */
e316aad5
DG
439void consumer_del_stream(struct lttng_consumer_stream *stream,
440 struct lttng_ht *ht)
3bd1e081
MD
441{
442 int ret;
e4421fec 443 struct lttng_ht_iter iter;
3bd1e081 444 struct lttng_consumer_channel *free_chan = NULL;
00e2e675
DG
445 struct consumer_relayd_sock_pair *relayd;
446
447 assert(stream);
3bd1e081 448
8994307f
DG
449 DBG("Consumer del stream %d", stream->wait_fd);
450
e316aad5
DG
451 if (ht == NULL) {
452 /* Means the stream was allocated but not successfully added */
ffe60014 453 goto free_stream_rcu;
e316aad5
DG
454 }
455
3bd1e081 456 pthread_mutex_lock(&consumer_data.lock);
74251bb8 457 pthread_mutex_lock(&stream->lock);
3bd1e081
MD
458
459 switch (consumer_data.type) {
460 case LTTNG_CONSUMER_KERNEL:
461 if (stream->mmap_base != NULL) {
462 ret = munmap(stream->mmap_base, stream->mmap_len);
463 if (ret != 0) {
7a57cf92 464 PERROR("munmap");
3bd1e081
MD
465 }
466 }
4c95e622
JD
467
468 if (stream->wait_fd >= 0) {
469 ret = close(stream->wait_fd);
470 if (ret) {
471 PERROR("close");
472 }
473 }
3bd1e081 474 break;
7753dea8
MD
475 case LTTNG_CONSUMER32_UST:
476 case LTTNG_CONSUMER64_UST:
3bd1e081
MD
477 lttng_ustconsumer_del_stream(stream);
478 break;
479 default:
480 ERR("Unknown consumer_data type");
481 assert(0);
482 goto end;
483 }
484
6065ceec 485 rcu_read_lock();
04253271 486 iter.iter.node = &stream->node.node;
e316aad5 487 ret = lttng_ht_del(ht, &iter);
04253271 488 assert(!ret);
ca22feea 489
d8ef542d
MD
490 iter.iter.node = &stream->node_channel_id.node;
491 ret = lttng_ht_del(consumer_data.stream_per_chan_id_ht, &iter);
492 assert(!ret);
493
ca22feea
DG
494 iter.iter.node = &stream->node_session_id.node;
495 ret = lttng_ht_del(consumer_data.stream_list_ht, &iter);
496 assert(!ret);
6065ceec
DG
497 rcu_read_unlock();
498
50f8ae69 499 assert(consumer_data.stream_count > 0);
3bd1e081 500 consumer_data.stream_count--;
50f8ae69 501
3bd1e081 502 if (stream->out_fd >= 0) {
4c462e79
MD
503 ret = close(stream->out_fd);
504 if (ret) {
505 PERROR("close");
506 }
3bd1e081 507 }
00e2e675
DG
508
509 /* Check and cleanup relayd */
b0b335c8 510 rcu_read_lock();
00e2e675
DG
511 relayd = consumer_find_relayd(stream->net_seq_idx);
512 if (relayd != NULL) {
b0b335c8
MD
513 uatomic_dec(&relayd->refcount);
514 assert(uatomic_read(&relayd->refcount) >= 0);
173af62f 515
3f8e211f
DG
516 /* Closing streams requires to lock the control socket. */
517 pthread_mutex_lock(&relayd->ctrl_sock_mutex);
173af62f
DG
518 ret = relayd_send_close_stream(&relayd->control_sock,
519 stream->relayd_stream_id,
520 stream->next_net_seq_num - 1);
3f8e211f 521 pthread_mutex_unlock(&relayd->ctrl_sock_mutex);
173af62f 522 if (ret < 0) {
a4b92340
DG
523 DBG("Unable to close stream on the relayd. Continuing");
524 /*
525 * Continue here. There is nothing we can do for the relayd.
526 * Chances are that the relayd has closed the socket so we just
527 * continue cleaning up.
528 */
173af62f
DG
529 }
530
531 /* Both conditions are met, we destroy the relayd. */
532 if (uatomic_read(&relayd->refcount) == 0 &&
533 uatomic_read(&relayd->destroy_flag)) {
d09e1200 534 destroy_relayd(relayd);
00e2e675 535 }
00e2e675 536 }
b0b335c8 537 rcu_read_unlock();
00e2e675 538
f2ad556d 539 if (!uatomic_sub_return(&stream->chan->refcount, 1)
ffe60014 540 && !uatomic_read(&stream->chan->nb_init_stream_left)) {
3bd1e081 541 free_chan = stream->chan;
00e2e675
DG
542 }
543
3bd1e081
MD
544end:
545 consumer_data.need_update = 1;
8994307f 546 pthread_mutex_unlock(&stream->lock);
74251bb8 547 pthread_mutex_unlock(&consumer_data.lock);
3bd1e081 548
c30aaa51 549 if (free_chan) {
3bd1e081 550 consumer_del_channel(free_chan);
c30aaa51 551 }
e316aad5 552
ffe60014
DG
553free_stream_rcu:
554 call_rcu(&stream->node.head, free_stream_rcu);
3bd1e081
MD
555}
556
d88aee68
DG
557struct lttng_consumer_stream *consumer_allocate_stream(uint64_t channel_key,
558 uint64_t stream_key,
3bd1e081 559 enum lttng_consumer_stream_state state,
ffe60014 560 const char *channel_name,
6df2e2c9 561 uid_t uid,
00e2e675 562 gid_t gid,
ffe60014 563 int relayd_id,
53632229 564 uint64_t session_id,
ffe60014
DG
565 int cpu,
566 int *alloc_ret,
567 enum consumer_channel_type type)
3bd1e081 568{
ffe60014 569 int ret;
3bd1e081 570 struct lttng_consumer_stream *stream;
3bd1e081 571
effcf122 572 stream = zmalloc(sizeof(*stream));
3bd1e081 573 if (stream == NULL) {
7a57cf92 574 PERROR("malloc struct lttng_consumer_stream");
ffe60014 575 ret = -ENOMEM;
7a57cf92 576 goto end;
3bd1e081 577 }
7a57cf92 578
d56db448
DG
579 rcu_read_lock();
580
3bd1e081 581 stream->key = stream_key;
3bd1e081
MD
582 stream->out_fd = -1;
583 stream->out_fd_offset = 0;
584 stream->state = state;
6df2e2c9
MD
585 stream->uid = uid;
586 stream->gid = gid;
ffe60014 587 stream->net_seq_idx = relayd_id;
53632229 588 stream->session_id = session_id;
53632229 589 pthread_mutex_init(&stream->lock, NULL);
58b1f425 590
ffe60014
DG
591 /* If channel is the metadata, flag this stream as metadata. */
592 if (type == CONSUMER_CHANNEL_TYPE_METADATA) {
593 stream->metadata_flag = 1;
594 /* Metadata is flat out. */
595 strncpy(stream->name, DEFAULT_METADATA_NAME, sizeof(stream->name));
58b1f425 596 } else {
ffe60014
DG
597 /* Format stream name to <channel_name>_<cpu_number> */
598 ret = snprintf(stream->name, sizeof(stream->name), "%s_%d",
599 channel_name, cpu);
600 if (ret < 0) {
601 PERROR("snprintf stream name");
602 goto error;
603 }
58b1f425 604 }
c30aaa51 605
ffe60014 606 /* Key is always the wait_fd for streams. */
d88aee68 607 lttng_ht_node_init_u64(&stream->node, stream->key);
ffe60014 608
d8ef542d
MD
609 /* Init node per channel id key */
610 lttng_ht_node_init_u64(&stream->node_channel_id, channel_key);
611
53632229 612 /* Init session id node with the stream session id */
d88aee68 613 lttng_ht_node_init_u64(&stream->node_session_id, stream->session_id);
53632229 614
d8ef542d
MD
615 DBG3("Allocated stream %s (key %" PRIu64 ", chan_key %" PRIu64 " relayd_id %" PRIu64 ", session_id %" PRIu64,
616 stream->name, stream->key, channel_key, stream->net_seq_idx, stream->session_id);
d56db448
DG
617
618 rcu_read_unlock();
3bd1e081 619 return stream;
c80048c6
MD
620
621error:
d56db448 622 rcu_read_unlock();
c80048c6 623 free(stream);
7a57cf92 624end:
ffe60014
DG
625 if (alloc_ret) {
626 *alloc_ret = ret;
627 }
c80048c6 628 return NULL;
3bd1e081
MD
629}
630
631/*
632 * Add a stream to the global list protected by a mutex.
633 */
ffe60014 634static int add_stream(struct lttng_consumer_stream *stream,
43c34bc3 635 struct lttng_ht *ht)
3bd1e081
MD
636{
637 int ret = 0;
00e2e675 638 struct consumer_relayd_sock_pair *relayd;
3bd1e081 639
e316aad5 640 assert(stream);
43c34bc3 641 assert(ht);
c77fc10a 642
d88aee68 643 DBG3("Adding consumer stream %" PRIu64, stream->key);
e316aad5
DG
644
645 pthread_mutex_lock(&consumer_data.lock);
2e818a6a 646 pthread_mutex_lock(&stream->lock);
b0b335c8 647 rcu_read_lock();
e316aad5 648
43c34bc3 649 /* Steal stream identifier to avoid having streams with the same key */
ffe60014 650 steal_stream_key(stream->key, ht);
43c34bc3 651
d88aee68 652 lttng_ht_add_unique_u64(ht, &stream->node);
00e2e675 653
d8ef542d
MD
654 lttng_ht_add_u64(consumer_data.stream_per_chan_id_ht,
655 &stream->node_channel_id);
656
ca22feea
DG
657 /*
658 * Add stream to the stream_list_ht of the consumer data. No need to steal
659 * the key since the HT does not use it and we allow to add redundant keys
660 * into this table.
661 */
d88aee68 662 lttng_ht_add_u64(consumer_data.stream_list_ht, &stream->node_session_id);
ca22feea 663
00e2e675
DG
664 /* Check and cleanup relayd */
665 relayd = consumer_find_relayd(stream->net_seq_idx);
666 if (relayd != NULL) {
b0b335c8 667 uatomic_inc(&relayd->refcount);
00e2e675
DG
668 }
669
e316aad5 670 /*
ffe60014
DG
671 * When nb_init_stream_left reaches 0, we don't need to trigger any action
672 * in terms of destroying the associated channel, because the action that
e316aad5
DG
673 * causes the count to become 0 also causes a stream to be added. The
674 * channel deletion will thus be triggered by the following removal of this
675 * stream.
676 */
ffe60014 677 if (uatomic_read(&stream->chan->nb_init_stream_left) > 0) {
f2ad556d
MD
678 /* Increment refcount before decrementing nb_init_stream_left */
679 cmm_smp_wmb();
ffe60014 680 uatomic_dec(&stream->chan->nb_init_stream_left);
e316aad5
DG
681 }
682
683 /* Update consumer data once the node is inserted. */
3bd1e081
MD
684 consumer_data.stream_count++;
685 consumer_data.need_update = 1;
686
e316aad5 687 rcu_read_unlock();
2e818a6a 688 pthread_mutex_unlock(&stream->lock);
3bd1e081 689 pthread_mutex_unlock(&consumer_data.lock);
702b1ea4 690
3bd1e081
MD
691 return ret;
692}
693
00e2e675 694/*
3f8e211f
DG
695 * Add relayd socket to global consumer data hashtable. RCU read side lock MUST
696 * be acquired before calling this.
00e2e675 697 */
d09e1200 698static int add_relayd(struct consumer_relayd_sock_pair *relayd)
00e2e675
DG
699{
700 int ret = 0;
d88aee68 701 struct lttng_ht_node_u64 *node;
00e2e675
DG
702 struct lttng_ht_iter iter;
703
ffe60014 704 assert(relayd);
00e2e675 705
00e2e675 706 lttng_ht_lookup(consumer_data.relayd_ht,
d88aee68
DG
707 &relayd->net_seq_idx, &iter);
708 node = lttng_ht_iter_get_node_u64(&iter);
00e2e675 709 if (node != NULL) {
00e2e675
DG
710 goto end;
711 }
d88aee68 712 lttng_ht_add_unique_u64(consumer_data.relayd_ht, &relayd->node);
00e2e675 713
00e2e675
DG
714end:
715 return ret;
716}
717
718/*
719 * Allocate and return a consumer relayd socket.
720 */
721struct consumer_relayd_sock_pair *consumer_allocate_relayd_sock_pair(
722 int net_seq_idx)
723{
724 struct consumer_relayd_sock_pair *obj = NULL;
725
726 /* Negative net sequence index is a failure */
727 if (net_seq_idx < 0) {
728 goto error;
729 }
730
731 obj = zmalloc(sizeof(struct consumer_relayd_sock_pair));
732 if (obj == NULL) {
733 PERROR("zmalloc relayd sock");
734 goto error;
735 }
736
737 obj->net_seq_idx = net_seq_idx;
738 obj->refcount = 0;
173af62f 739 obj->destroy_flag = 0;
f96e4545
MD
740 obj->control_sock.sock.fd = -1;
741 obj->data_sock.sock.fd = -1;
d88aee68 742 lttng_ht_node_init_u64(&obj->node, obj->net_seq_idx);
00e2e675
DG
743 pthread_mutex_init(&obj->ctrl_sock_mutex, NULL);
744
745error:
746 return obj;
747}
748
749/*
750 * Find a relayd socket pair in the global consumer data.
751 *
752 * Return the object if found else NULL.
b0b335c8
MD
753 * RCU read-side lock must be held across this call and while using the
754 * returned object.
00e2e675 755 */
d88aee68 756struct consumer_relayd_sock_pair *consumer_find_relayd(uint64_t key)
00e2e675
DG
757{
758 struct lttng_ht_iter iter;
d88aee68 759 struct lttng_ht_node_u64 *node;
00e2e675
DG
760 struct consumer_relayd_sock_pair *relayd = NULL;
761
762 /* Negative keys are lookup failures */
d88aee68 763 if (key == (uint64_t) -1ULL) {
00e2e675
DG
764 goto error;
765 }
766
d88aee68 767 lttng_ht_lookup(consumer_data.relayd_ht, &key,
00e2e675 768 &iter);
d88aee68 769 node = lttng_ht_iter_get_node_u64(&iter);
00e2e675
DG
770 if (node != NULL) {
771 relayd = caa_container_of(node, struct consumer_relayd_sock_pair, node);
772 }
773
00e2e675
DG
774error:
775 return relayd;
776}
777
778/*
779 * Handle stream for relayd transmission if the stream applies for network
780 * streaming where the net sequence index is set.
781 *
782 * Return destination file descriptor or negative value on error.
783 */
6197aea7 784static int write_relayd_stream_header(struct lttng_consumer_stream *stream,
1d4dfdef
DG
785 size_t data_size, unsigned long padding,
786 struct consumer_relayd_sock_pair *relayd)
00e2e675
DG
787{
788 int outfd = -1, ret;
00e2e675
DG
789 struct lttcomm_relayd_data_hdr data_hdr;
790
791 /* Safety net */
792 assert(stream);
6197aea7 793 assert(relayd);
00e2e675
DG
794
795 /* Reset data header */
796 memset(&data_hdr, 0, sizeof(data_hdr));
797
00e2e675
DG
798 if (stream->metadata_flag) {
799 /* Caller MUST acquire the relayd control socket lock */
800 ret = relayd_send_metadata(&relayd->control_sock, data_size);
801 if (ret < 0) {
802 goto error;
803 }
804
805 /* Metadata are always sent on the control socket. */
6151a90f 806 outfd = relayd->control_sock.sock.fd;
00e2e675
DG
807 } else {
808 /* Set header with stream information */
809 data_hdr.stream_id = htobe64(stream->relayd_stream_id);
810 data_hdr.data_size = htobe32(data_size);
1d4dfdef 811 data_hdr.padding_size = htobe32(padding);
39df6d9f
DG
812 /*
813 * Note that net_seq_num below is assigned with the *current* value of
814 * next_net_seq_num and only after that the next_net_seq_num will be
815 * increment. This is why when issuing a command on the relayd using
816 * this next value, 1 should always be substracted in order to compare
817 * the last seen sequence number on the relayd side to the last sent.
818 */
3604f373 819 data_hdr.net_seq_num = htobe64(stream->next_net_seq_num);
00e2e675
DG
820 /* Other fields are zeroed previously */
821
822 ret = relayd_send_data_hdr(&relayd->data_sock, &data_hdr,
823 sizeof(data_hdr));
824 if (ret < 0) {
825 goto error;
826 }
827
3604f373
DG
828 ++stream->next_net_seq_num;
829
00e2e675 830 /* Set to go on data socket */
6151a90f 831 outfd = relayd->data_sock.sock.fd;
00e2e675
DG
832 }
833
834error:
835 return outfd;
836}
837
3bd1e081 838/*
ffe60014
DG
839 * Allocate and return a new lttng_consumer_channel object using the given key
840 * to initialize the hash table node.
841 *
842 * On error, return NULL.
3bd1e081 843 */
886224ff 844struct lttng_consumer_channel *consumer_allocate_channel(uint64_t key,
ffe60014
DG
845 uint64_t session_id,
846 const char *pathname,
847 const char *name,
848 uid_t uid,
849 gid_t gid,
850 int relayd_id,
1624d5b7
JD
851 enum lttng_event_output output,
852 uint64_t tracefile_size,
853 uint64_t tracefile_count)
3bd1e081
MD
854{
855 struct lttng_consumer_channel *channel;
3bd1e081 856
276b26d1 857 channel = zmalloc(sizeof(*channel));
3bd1e081 858 if (channel == NULL) {
7a57cf92 859 PERROR("malloc struct lttng_consumer_channel");
3bd1e081
MD
860 goto end;
861 }
ffe60014
DG
862
863 channel->key = key;
3bd1e081 864 channel->refcount = 0;
ffe60014
DG
865 channel->session_id = session_id;
866 channel->uid = uid;
867 channel->gid = gid;
868 channel->relayd_id = relayd_id;
869 channel->output = output;
1624d5b7
JD
870 channel->tracefile_size = tracefile_size;
871 channel->tracefile_count = tracefile_count;
ffe60014
DG
872
873 strncpy(channel->pathname, pathname, sizeof(channel->pathname));
874 channel->pathname[sizeof(channel->pathname) - 1] = '\0';
875
876 strncpy(channel->name, name, sizeof(channel->name));
877 channel->name[sizeof(channel->name) - 1] = '\0';
878
d88aee68 879 lttng_ht_node_init_u64(&channel->node, channel->key);
d8ef542d
MD
880
881 channel->wait_fd = -1;
882
ffe60014
DG
883 CDS_INIT_LIST_HEAD(&channel->streams.head);
884
d88aee68 885 DBG("Allocated channel (key %" PRIu64 ")", channel->key)
3bd1e081 886
3bd1e081
MD
887end:
888 return channel;
889}
890
891/*
892 * Add a channel to the global list protected by a mutex.
893 */
d8ef542d
MD
894int consumer_add_channel(struct lttng_consumer_channel *channel,
895 struct lttng_consumer_local_data *ctx)
3bd1e081 896{
ffe60014 897 int ret = 0;
d88aee68 898 struct lttng_ht_node_u64 *node;
c77fc10a
DG
899 struct lttng_ht_iter iter;
900
3bd1e081 901 pthread_mutex_lock(&consumer_data.lock);
6065ceec 902 rcu_read_lock();
c77fc10a 903
7972aab2 904 lttng_ht_lookup(consumer_data.channel_ht, &channel->key, &iter);
d88aee68 905 node = lttng_ht_iter_get_node_u64(&iter);
c77fc10a
DG
906 if (node != NULL) {
907 /* Channel already exist. Ignore the insertion */
d88aee68
DG
908 ERR("Consumer add channel key %" PRIu64 " already exists!",
909 channel->key);
e43c41c5 910 ret = LTTNG_ERR_KERN_CHAN_EXIST;
c77fc10a
DG
911 goto end;
912 }
913
d88aee68 914 lttng_ht_add_unique_u64(consumer_data.channel_ht, &channel->node);
c77fc10a
DG
915
916end:
6065ceec 917 rcu_read_unlock();
3bd1e081 918 pthread_mutex_unlock(&consumer_data.lock);
702b1ea4 919
d8ef542d
MD
920 if (!ret && channel->wait_fd != -1 &&
921 channel->metadata_stream == NULL) {
a0cbdd2e 922 notify_channel_pipe(ctx, channel, -1, CONSUMER_CHANNEL_ADD);
d8ef542d 923 }
ffe60014 924 return ret;
3bd1e081
MD
925}
926
927/*
928 * Allocate the pollfd structure and the local view of the out fds to avoid
929 * doing a lookup in the linked list and concurrency issues when writing is
930 * needed. Called with consumer_data.lock held.
931 *
932 * Returns the number of fds in the structures.
933 */
ffe60014
DG
934static int update_poll_array(struct lttng_consumer_local_data *ctx,
935 struct pollfd **pollfd, struct lttng_consumer_stream **local_stream,
936 struct lttng_ht *ht)
3bd1e081 937{
3bd1e081 938 int i = 0;
e4421fec
DG
939 struct lttng_ht_iter iter;
940 struct lttng_consumer_stream *stream;
3bd1e081 941
ffe60014
DG
942 assert(ctx);
943 assert(ht);
944 assert(pollfd);
945 assert(local_stream);
946
3bd1e081 947 DBG("Updating poll fd array");
481d6c57 948 rcu_read_lock();
43c34bc3 949 cds_lfht_for_each_entry(ht->ht, &iter.iter, stream, node.node) {
8994307f
DG
950 /*
951 * Only active streams with an active end point can be added to the
952 * poll set and local stream storage of the thread.
953 *
954 * There is a potential race here for endpoint_status to be updated
955 * just after the check. However, this is OK since the stream(s) will
956 * be deleted once the thread is notified that the end point state has
957 * changed where this function will be called back again.
958 */
959 if (stream->state != LTTNG_CONSUMER_ACTIVE_STREAM ||
79d4ffb7 960 stream->endpoint_status == CONSUMER_ENDPOINT_INACTIVE) {
3bd1e081
MD
961 continue;
962 }
7972aab2
DG
963 /*
964 * This clobbers way too much the debug output. Uncomment that if you
965 * need it for debugging purposes.
966 *
967 * DBG("Active FD %d", stream->wait_fd);
968 */
e4421fec 969 (*pollfd)[i].fd = stream->wait_fd;
3bd1e081 970 (*pollfd)[i].events = POLLIN | POLLPRI;
e4421fec 971 local_stream[i] = stream;
3bd1e081
MD
972 i++;
973 }
481d6c57 974 rcu_read_unlock();
3bd1e081
MD
975
976 /*
50f8ae69 977 * Insert the consumer_data_pipe at the end of the array and don't
3bd1e081
MD
978 * increment i so nb_fd is the number of real FD.
979 */
acdb9057 980 (*pollfd)[i].fd = lttng_pipe_get_readfd(ctx->consumer_data_pipe);
509bb1cf 981 (*pollfd)[i].events = POLLIN | POLLPRI;
3bd1e081
MD
982 return i;
983}
984
985/*
986 * Poll on the should_quit pipe and the command socket return -1 on error and
987 * should exit, 0 if data is available on the command socket
988 */
989int lttng_consumer_poll_socket(struct pollfd *consumer_sockpoll)
990{
991 int num_rdy;
992
88f2b785 993restart:
3bd1e081
MD
994 num_rdy = poll(consumer_sockpoll, 2, -1);
995 if (num_rdy == -1) {
88f2b785
MD
996 /*
997 * Restart interrupted system call.
998 */
999 if (errno == EINTR) {
1000 goto restart;
1001 }
7a57cf92 1002 PERROR("Poll error");
3bd1e081
MD
1003 goto exit;
1004 }
509bb1cf 1005 if (consumer_sockpoll[0].revents & (POLLIN | POLLPRI)) {
3bd1e081
MD
1006 DBG("consumer_should_quit wake up");
1007 goto exit;
1008 }
1009 return 0;
1010
1011exit:
1012 return -1;
1013}
1014
1015/*
1016 * Set the error socket.
1017 */
ffe60014
DG
1018void lttng_consumer_set_error_sock(struct lttng_consumer_local_data *ctx,
1019 int sock)
3bd1e081
MD
1020{
1021 ctx->consumer_error_socket = sock;
1022}
1023
1024/*
1025 * Set the command socket path.
1026 */
3bd1e081
MD
1027void lttng_consumer_set_command_sock_path(
1028 struct lttng_consumer_local_data *ctx, char *sock)
1029{
1030 ctx->consumer_command_sock_path = sock;
1031}
1032
1033/*
1034 * Send return code to the session daemon.
1035 * If the socket is not defined, we return 0, it is not a fatal error
1036 */
ffe60014 1037int lttng_consumer_send_error(struct lttng_consumer_local_data *ctx, int cmd)
3bd1e081
MD
1038{
1039 if (ctx->consumer_error_socket > 0) {
1040 return lttcomm_send_unix_sock(ctx->consumer_error_socket, &cmd,
1041 sizeof(enum lttcomm_sessiond_command));
1042 }
1043
1044 return 0;
1045}
1046
1047/*
228b5bf7
DG
1048 * Close all the tracefiles and stream fds and MUST be called when all
1049 * instances are destroyed i.e. when all threads were joined and are ended.
3bd1e081
MD
1050 */
1051void lttng_consumer_cleanup(void)
1052{
e4421fec 1053 struct lttng_ht_iter iter;
ffe60014 1054 struct lttng_consumer_channel *channel;
6065ceec
DG
1055
1056 rcu_read_lock();
3bd1e081 1057
ffe60014
DG
1058 cds_lfht_for_each_entry(consumer_data.channel_ht->ht, &iter.iter, channel,
1059 node.node) {
702b1ea4 1060 consumer_del_channel(channel);
3bd1e081 1061 }
6065ceec
DG
1062
1063 rcu_read_unlock();
d6ce1df2 1064
d6ce1df2 1065 lttng_ht_destroy(consumer_data.channel_ht);
228b5bf7
DG
1066
1067 cleanup_relayd_ht();
1068
d8ef542d
MD
1069 lttng_ht_destroy(consumer_data.stream_per_chan_id_ht);
1070
228b5bf7
DG
1071 /*
1072 * This HT contains streams that are freed by either the metadata thread or
1073 * the data thread so we do *nothing* on the hash table and simply destroy
1074 * it.
1075 */
1076 lttng_ht_destroy(consumer_data.stream_list_ht);
3bd1e081
MD
1077}
1078
1079/*
1080 * Called from signal handler.
1081 */
1082void lttng_consumer_should_exit(struct lttng_consumer_local_data *ctx)
1083{
1084 int ret;
1085 consumer_quit = 1;
6f94560a
MD
1086 do {
1087 ret = write(ctx->consumer_should_quit[1], "4", 1);
1088 } while (ret < 0 && errno == EINTR);
4cec016f 1089 if (ret < 0 || ret != 1) {
7a57cf92 1090 PERROR("write consumer quit");
3bd1e081 1091 }
ab1027f4
DG
1092
1093 DBG("Consumer flag that it should quit");
3bd1e081
MD
1094}
1095
00e2e675
DG
1096void lttng_consumer_sync_trace_file(struct lttng_consumer_stream *stream,
1097 off_t orig_offset)
3bd1e081
MD
1098{
1099 int outfd = stream->out_fd;
1100
1101 /*
1102 * This does a blocking write-and-wait on any page that belongs to the
1103 * subbuffer prior to the one we just wrote.
1104 * Don't care about error values, as these are just hints and ways to
1105 * limit the amount of page cache used.
1106 */
ffe60014 1107 if (orig_offset < stream->max_sb_size) {
3bd1e081
MD
1108 return;
1109 }
ffe60014
DG
1110 lttng_sync_file_range(outfd, orig_offset - stream->max_sb_size,
1111 stream->max_sb_size,
3bd1e081
MD
1112 SYNC_FILE_RANGE_WAIT_BEFORE
1113 | SYNC_FILE_RANGE_WRITE
1114 | SYNC_FILE_RANGE_WAIT_AFTER);
1115 /*
1116 * Give hints to the kernel about how we access the file:
1117 * POSIX_FADV_DONTNEED : we won't re-access data in a near future after
1118 * we write it.
1119 *
1120 * We need to call fadvise again after the file grows because the
1121 * kernel does not seem to apply fadvise to non-existing parts of the
1122 * file.
1123 *
1124 * Call fadvise _after_ having waited for the page writeback to
1125 * complete because the dirty page writeback semantic is not well
1126 * defined. So it can be expected to lead to lower throughput in
1127 * streaming.
1128 */
ffe60014
DG
1129 posix_fadvise(outfd, orig_offset - stream->max_sb_size,
1130 stream->max_sb_size, POSIX_FADV_DONTNEED);
3bd1e081
MD
1131}
1132
1133/*
1134 * Initialise the necessary environnement :
1135 * - create a new context
1136 * - create the poll_pipe
1137 * - create the should_quit pipe (for signal handler)
1138 * - create the thread pipe (for splice)
1139 *
1140 * Takes a function pointer as argument, this function is called when data is
1141 * available on a buffer. This function is responsible to do the
1142 * kernctl_get_next_subbuf, read the data with mmap or splice depending on the
1143 * buffer configuration and then kernctl_put_next_subbuf at the end.
1144 *
1145 * Returns a pointer to the new context or NULL on error.
1146 */
1147struct lttng_consumer_local_data *lttng_consumer_create(
1148 enum lttng_consumer_type type,
4078b776 1149 ssize_t (*buffer_ready)(struct lttng_consumer_stream *stream,
d41f73b7 1150 struct lttng_consumer_local_data *ctx),
3bd1e081
MD
1151 int (*recv_channel)(struct lttng_consumer_channel *channel),
1152 int (*recv_stream)(struct lttng_consumer_stream *stream),
1153 int (*update_stream)(int stream_key, uint32_t state))
1154{
d8ef542d 1155 int ret;
3bd1e081
MD
1156 struct lttng_consumer_local_data *ctx;
1157
1158 assert(consumer_data.type == LTTNG_CONSUMER_UNKNOWN ||
1159 consumer_data.type == type);
1160 consumer_data.type = type;
1161
effcf122 1162 ctx = zmalloc(sizeof(struct lttng_consumer_local_data));
3bd1e081 1163 if (ctx == NULL) {
7a57cf92 1164 PERROR("allocating context");
3bd1e081
MD
1165 goto error;
1166 }
1167
1168 ctx->consumer_error_socket = -1;
331744e3 1169 ctx->consumer_metadata_socket = -1;
3bd1e081
MD
1170 /* assign the callbacks */
1171 ctx->on_buffer_ready = buffer_ready;
1172 ctx->on_recv_channel = recv_channel;
1173 ctx->on_recv_stream = recv_stream;
1174 ctx->on_update_stream = update_stream;
1175
acdb9057
DG
1176 ctx->consumer_data_pipe = lttng_pipe_open(0);
1177 if (!ctx->consumer_data_pipe) {
3bd1e081
MD
1178 goto error_poll_pipe;
1179 }
1180
1181 ret = pipe(ctx->consumer_should_quit);
1182 if (ret < 0) {
7a57cf92 1183 PERROR("Error creating recv pipe");
3bd1e081
MD
1184 goto error_quit_pipe;
1185 }
1186
1187 ret = pipe(ctx->consumer_thread_pipe);
1188 if (ret < 0) {
7a57cf92 1189 PERROR("Error creating thread pipe");
3bd1e081
MD
1190 goto error_thread_pipe;
1191 }
1192
d8ef542d
MD
1193 ret = pipe(ctx->consumer_channel_pipe);
1194 if (ret < 0) {
1195 PERROR("Error creating channel pipe");
1196 goto error_channel_pipe;
1197 }
1198
13886d2d
DG
1199 ctx->consumer_metadata_pipe = lttng_pipe_open(0);
1200 if (!ctx->consumer_metadata_pipe) {
fb3a43a9
DG
1201 goto error_metadata_pipe;
1202 }
3bd1e081 1203
fb3a43a9
DG
1204 ret = utils_create_pipe(ctx->consumer_splice_metadata_pipe);
1205 if (ret < 0) {
1206 goto error_splice_pipe;
1207 }
1208
1209 return ctx;
3bd1e081 1210
fb3a43a9 1211error_splice_pipe:
13886d2d 1212 lttng_pipe_destroy(ctx->consumer_metadata_pipe);
fb3a43a9 1213error_metadata_pipe:
d8ef542d
MD
1214 utils_close_pipe(ctx->consumer_channel_pipe);
1215error_channel_pipe:
fb3a43a9 1216 utils_close_pipe(ctx->consumer_thread_pipe);
3bd1e081 1217error_thread_pipe:
d8ef542d 1218 utils_close_pipe(ctx->consumer_should_quit);
3bd1e081 1219error_quit_pipe:
acdb9057 1220 lttng_pipe_destroy(ctx->consumer_data_pipe);
3bd1e081
MD
1221error_poll_pipe:
1222 free(ctx);
1223error:
1224 return NULL;
1225}
1226
1227/*
1228 * Close all fds associated with the instance and free the context.
1229 */
1230void lttng_consumer_destroy(struct lttng_consumer_local_data *ctx)
1231{
4c462e79
MD
1232 int ret;
1233
ab1027f4
DG
1234 DBG("Consumer destroying it. Closing everything.");
1235
4c462e79
MD
1236 ret = close(ctx->consumer_error_socket);
1237 if (ret) {
1238 PERROR("close");
1239 }
331744e3
JD
1240 ret = close(ctx->consumer_metadata_socket);
1241 if (ret) {
1242 PERROR("close");
1243 }
d8ef542d
MD
1244 utils_close_pipe(ctx->consumer_thread_pipe);
1245 utils_close_pipe(ctx->consumer_channel_pipe);
acdb9057 1246 lttng_pipe_destroy(ctx->consumer_data_pipe);
13886d2d 1247 lttng_pipe_destroy(ctx->consumer_metadata_pipe);
d8ef542d 1248 utils_close_pipe(ctx->consumer_should_quit);
fb3a43a9
DG
1249 utils_close_pipe(ctx->consumer_splice_metadata_pipe);
1250
3bd1e081
MD
1251 unlink(ctx->consumer_command_sock_path);
1252 free(ctx);
1253}
1254
6197aea7
DG
1255/*
1256 * Write the metadata stream id on the specified file descriptor.
1257 */
1258static int write_relayd_metadata_id(int fd,
1259 struct lttng_consumer_stream *stream,
ffe60014 1260 struct consumer_relayd_sock_pair *relayd, unsigned long padding)
6197aea7
DG
1261{
1262 int ret;
1d4dfdef 1263 struct lttcomm_relayd_metadata_payload hdr;
6197aea7 1264
1d4dfdef
DG
1265 hdr.stream_id = htobe64(stream->relayd_stream_id);
1266 hdr.padding_size = htobe32(padding);
6197aea7 1267 do {
1d4dfdef 1268 ret = write(fd, (void *) &hdr, sizeof(hdr));
6197aea7 1269 } while (ret < 0 && errno == EINTR);
4cec016f 1270 if (ret < 0 || ret != sizeof(hdr)) {
d7b75ec8
DG
1271 /*
1272 * This error means that the fd's end is closed so ignore the perror
1273 * not to clubber the error output since this can happen in a normal
1274 * code path.
1275 */
1276 if (errno != EPIPE) {
1277 PERROR("write metadata stream id");
1278 }
1279 DBG3("Consumer failed to write relayd metadata id (errno: %d)", errno);
534d2592
DG
1280 /*
1281 * Set ret to a negative value because if ret != sizeof(hdr), we don't
1282 * handle writting the missing part so report that as an error and
1283 * don't lie to the caller.
1284 */
1285 ret = -1;
6197aea7
DG
1286 goto end;
1287 }
1d4dfdef
DG
1288 DBG("Metadata stream id %" PRIu64 " with padding %lu written before data",
1289 stream->relayd_stream_id, padding);
6197aea7
DG
1290
1291end:
1292 return ret;
1293}
1294
3bd1e081 1295/*
09e26845
DG
1296 * Mmap the ring buffer, read it and write the data to the tracefile. This is a
1297 * core function for writing trace buffers to either the local filesystem or
1298 * the network.
1299 *
79d4ffb7
DG
1300 * It must be called with the stream lock held.
1301 *
09e26845 1302 * Careful review MUST be put if any changes occur!
3bd1e081
MD
1303 *
1304 * Returns the number of bytes written
1305 */
4078b776 1306ssize_t lttng_consumer_on_read_subbuffer_mmap(
3bd1e081 1307 struct lttng_consumer_local_data *ctx,
1d4dfdef
DG
1308 struct lttng_consumer_stream *stream, unsigned long len,
1309 unsigned long padding)
3bd1e081 1310{
f02e1e8a 1311 unsigned long mmap_offset;
ffe60014 1312 void *mmap_base;
f02e1e8a
DG
1313 ssize_t ret = 0, written = 0;
1314 off_t orig_offset = stream->out_fd_offset;
1315 /* Default is on the disk */
1316 int outfd = stream->out_fd;
f02e1e8a 1317 struct consumer_relayd_sock_pair *relayd = NULL;
8994307f 1318 unsigned int relayd_hang_up = 0;
f02e1e8a
DG
1319
1320 /* RCU lock for the relayd pointer */
1321 rcu_read_lock();
1322
1323 /* Flag that the current stream if set for network streaming. */
1324 if (stream->net_seq_idx != -1) {
1325 relayd = consumer_find_relayd(stream->net_seq_idx);
1326 if (relayd == NULL) {
1327 goto end;
1328 }
1329 }
1330
1331 /* get the offset inside the fd to mmap */
3bd1e081
MD
1332 switch (consumer_data.type) {
1333 case LTTNG_CONSUMER_KERNEL:
ffe60014 1334 mmap_base = stream->mmap_base;
f02e1e8a
DG
1335 ret = kernctl_get_mmap_read_offset(stream->wait_fd, &mmap_offset);
1336 break;
7753dea8
MD
1337 case LTTNG_CONSUMER32_UST:
1338 case LTTNG_CONSUMER64_UST:
ffe60014
DG
1339 mmap_base = lttng_ustctl_get_mmap_base(stream);
1340 if (!mmap_base) {
1341 ERR("read mmap get mmap base for stream %s", stream->name);
1342 written = -1;
1343 goto end;
1344 }
1345 ret = lttng_ustctl_get_mmap_read_offset(stream, &mmap_offset);
331744e3 1346
f02e1e8a 1347 break;
3bd1e081
MD
1348 default:
1349 ERR("Unknown consumer_data type");
1350 assert(0);
1351 }
f02e1e8a
DG
1352 if (ret != 0) {
1353 errno = -ret;
1354 PERROR("tracer ctl get_mmap_read_offset");
1355 written = ret;
1356 goto end;
1357 }
b9182dd9 1358
f02e1e8a
DG
1359 /* Handle stream on the relayd if the output is on the network */
1360 if (relayd) {
1361 unsigned long netlen = len;
1362
1363 /*
1364 * Lock the control socket for the complete duration of the function
1365 * since from this point on we will use the socket.
1366 */
1367 if (stream->metadata_flag) {
1368 /* Metadata requires the control socket. */
1369 pthread_mutex_lock(&relayd->ctrl_sock_mutex);
1d4dfdef 1370 netlen += sizeof(struct lttcomm_relayd_metadata_payload);
f02e1e8a
DG
1371 }
1372
1d4dfdef 1373 ret = write_relayd_stream_header(stream, netlen, padding, relayd);
f02e1e8a
DG
1374 if (ret >= 0) {
1375 /* Use the returned socket. */
1376 outfd = ret;
1377
1378 /* Write metadata stream id before payload */
1379 if (stream->metadata_flag) {
1d4dfdef 1380 ret = write_relayd_metadata_id(outfd, stream, relayd, padding);
f02e1e8a 1381 if (ret < 0) {
f02e1e8a 1382 written = ret;
8994307f
DG
1383 /* Socket operation failed. We consider the relayd dead */
1384 if (ret == -EPIPE || ret == -EINVAL) {
1385 relayd_hang_up = 1;
1386 goto write_error;
1387 }
f02e1e8a
DG
1388 goto end;
1389 }
f02e1e8a 1390 }
8994307f
DG
1391 } else {
1392 /* Socket operation failed. We consider the relayd dead */
1393 if (ret == -EPIPE || ret == -EINVAL) {
1394 relayd_hang_up = 1;
1395 goto write_error;
1396 }
1397 /* Else, use the default set before which is the filesystem. */
f02e1e8a 1398 }
1d4dfdef
DG
1399 } else {
1400 /* No streaming, we have to set the len with the full padding */
1401 len += padding;
1624d5b7
JD
1402
1403 /*
1404 * Check if we need to change the tracefile before writing the packet.
1405 */
1406 if (stream->chan->tracefile_size > 0 &&
1407 (stream->tracefile_size_current + len) >
1408 stream->chan->tracefile_size) {
fe4477ee
JD
1409 ret = utils_rotate_stream_file(stream->chan->pathname,
1410 stream->name, stream->chan->tracefile_size,
1411 stream->chan->tracefile_count, stream->uid, stream->gid,
1412 stream->out_fd, &(stream->tracefile_count_current));
1624d5b7
JD
1413 if (ret < 0) {
1414 ERR("Rotating output file");
1415 goto end;
1416 }
fe4477ee 1417 outfd = stream->out_fd = ret;
a6976990
DG
1418 /* Reset current size because we just perform a rotation. */
1419 stream->tracefile_size_current = 0;
1624d5b7
JD
1420 }
1421 stream->tracefile_size_current += len;
f02e1e8a
DG
1422 }
1423
1424 while (len > 0) {
1425 do {
ffe60014 1426 ret = write(outfd, mmap_base + mmap_offset, len);
f02e1e8a 1427 } while (ret < 0 && errno == EINTR);
1d4dfdef 1428 DBG("Consumer mmap write() ret %zd (len %lu)", ret, len);
f02e1e8a 1429 if (ret < 0) {
c5c45efa
DG
1430 /*
1431 * This is possible if the fd is closed on the other side (outfd)
1432 * or any write problem. It can be verbose a bit for a normal
1433 * execution if for instance the relayd is stopped abruptly. This
1434 * can happen so set this to a DBG statement.
1435 */
1436 DBG("Error in file write mmap");
f02e1e8a
DG
1437 if (written == 0) {
1438 written = ret;
1439 }
8994307f
DG
1440 /* Socket operation failed. We consider the relayd dead */
1441 if (errno == EPIPE || errno == EINVAL) {
1442 relayd_hang_up = 1;
1443 goto write_error;
1444 }
f02e1e8a
DG
1445 goto end;
1446 } else if (ret > len) {
77c7c900 1447 PERROR("Error in file write (ret %zd > len %lu)", ret, len);
f02e1e8a
DG
1448 written += ret;
1449 goto end;
1450 } else {
1451 len -= ret;
1452 mmap_offset += ret;
1453 }
f02e1e8a
DG
1454
1455 /* This call is useless on a socket so better save a syscall. */
1456 if (!relayd) {
1457 /* This won't block, but will start writeout asynchronously */
1458 lttng_sync_file_range(outfd, stream->out_fd_offset, ret,
1459 SYNC_FILE_RANGE_WRITE);
1460 stream->out_fd_offset += ret;
1461 }
1462 written += ret;
1463 }
1464 lttng_consumer_sync_trace_file(stream, orig_offset);
1465
8994307f
DG
1466write_error:
1467 /*
1468 * This is a special case that the relayd has closed its socket. Let's
1469 * cleanup the relayd object and all associated streams.
1470 */
1471 if (relayd && relayd_hang_up) {
1472 cleanup_relayd(relayd, ctx);
1473 }
1474
f02e1e8a
DG
1475end:
1476 /* Unlock only if ctrl socket used */
1477 if (relayd && stream->metadata_flag) {
1478 pthread_mutex_unlock(&relayd->ctrl_sock_mutex);
1479 }
1480
1481 rcu_read_unlock();
1482 return written;
3bd1e081
MD
1483}
1484
1485/*
1486 * Splice the data from the ring buffer to the tracefile.
1487 *
79d4ffb7
DG
1488 * It must be called with the stream lock held.
1489 *
3bd1e081
MD
1490 * Returns the number of bytes spliced.
1491 */
4078b776 1492ssize_t lttng_consumer_on_read_subbuffer_splice(
3bd1e081 1493 struct lttng_consumer_local_data *ctx,
1d4dfdef
DG
1494 struct lttng_consumer_stream *stream, unsigned long len,
1495 unsigned long padding)
3bd1e081 1496{
f02e1e8a
DG
1497 ssize_t ret = 0, written = 0, ret_splice = 0;
1498 loff_t offset = 0;
1499 off_t orig_offset = stream->out_fd_offset;
1500 int fd = stream->wait_fd;
1501 /* Default is on the disk */
1502 int outfd = stream->out_fd;
f02e1e8a 1503 struct consumer_relayd_sock_pair *relayd = NULL;
fb3a43a9 1504 int *splice_pipe;
8994307f 1505 unsigned int relayd_hang_up = 0;
f02e1e8a 1506
3bd1e081
MD
1507 switch (consumer_data.type) {
1508 case LTTNG_CONSUMER_KERNEL:
f02e1e8a 1509 break;
7753dea8
MD
1510 case LTTNG_CONSUMER32_UST:
1511 case LTTNG_CONSUMER64_UST:
f02e1e8a 1512 /* Not supported for user space tracing */
3bd1e081
MD
1513 return -ENOSYS;
1514 default:
1515 ERR("Unknown consumer_data type");
1516 assert(0);
3bd1e081
MD
1517 }
1518
f02e1e8a
DG
1519 /* RCU lock for the relayd pointer */
1520 rcu_read_lock();
1521
1522 /* Flag that the current stream if set for network streaming. */
1523 if (stream->net_seq_idx != -1) {
1524 relayd = consumer_find_relayd(stream->net_seq_idx);
1525 if (relayd == NULL) {
1526 goto end;
1527 }
1528 }
1529
fb3a43a9
DG
1530 /*
1531 * Choose right pipe for splice. Metadata and trace data are handled by
1532 * different threads hence the use of two pipes in order not to race or
1533 * corrupt the written data.
1534 */
1535 if (stream->metadata_flag) {
1536 splice_pipe = ctx->consumer_splice_metadata_pipe;
1537 } else {
1538 splice_pipe = ctx->consumer_thread_pipe;
1539 }
1540
f02e1e8a 1541 /* Write metadata stream id before payload */
1d4dfdef
DG
1542 if (relayd) {
1543 int total_len = len;
f02e1e8a 1544
1d4dfdef
DG
1545 if (stream->metadata_flag) {
1546 /*
1547 * Lock the control socket for the complete duration of the function
1548 * since from this point on we will use the socket.
1549 */
1550 pthread_mutex_lock(&relayd->ctrl_sock_mutex);
1551
1552 ret = write_relayd_metadata_id(splice_pipe[1], stream, relayd,
1553 padding);
1554 if (ret < 0) {
1555 written = ret;
8994307f
DG
1556 /* Socket operation failed. We consider the relayd dead */
1557 if (ret == -EBADF) {
1558 WARN("Remote relayd disconnected. Stopping");
1559 relayd_hang_up = 1;
1560 goto write_error;
1561 }
1d4dfdef
DG
1562 goto end;
1563 }
1564
1565 total_len += sizeof(struct lttcomm_relayd_metadata_payload);
1566 }
1567
1568 ret = write_relayd_stream_header(stream, total_len, padding, relayd);
1569 if (ret >= 0) {
1570 /* Use the returned socket. */
1571 outfd = ret;
1572 } else {
8994307f
DG
1573 /* Socket operation failed. We consider the relayd dead */
1574 if (ret == -EBADF) {
1575 WARN("Remote relayd disconnected. Stopping");
1576 relayd_hang_up = 1;
1577 goto write_error;
1578 }
f02e1e8a
DG
1579 goto end;
1580 }
1d4dfdef
DG
1581 } else {
1582 /* No streaming, we have to set the len with the full padding */
1583 len += padding;
1624d5b7
JD
1584
1585 /*
1586 * Check if we need to change the tracefile before writing the packet.
1587 */
1588 if (stream->chan->tracefile_size > 0 &&
1589 (stream->tracefile_size_current + len) >
1590 stream->chan->tracefile_size) {
fe4477ee
JD
1591 ret = utils_rotate_stream_file(stream->chan->pathname,
1592 stream->name, stream->chan->tracefile_size,
1593 stream->chan->tracefile_count, stream->uid, stream->gid,
1594 stream->out_fd, &(stream->tracefile_count_current));
1624d5b7
JD
1595 if (ret < 0) {
1596 ERR("Rotating output file");
1597 goto end;
1598 }
fe4477ee 1599 outfd = stream->out_fd = ret;
a6976990
DG
1600 /* Reset current size because we just perform a rotation. */
1601 stream->tracefile_size_current = 0;
1624d5b7
JD
1602 }
1603 stream->tracefile_size_current += len;
f02e1e8a
DG
1604 }
1605
1606 while (len > 0) {
1d4dfdef
DG
1607 DBG("splice chan to pipe offset %lu of len %lu (fd : %d, pipe: %d)",
1608 (unsigned long)offset, len, fd, splice_pipe[1]);
fb3a43a9 1609 ret_splice = splice(fd, &offset, splice_pipe[1], NULL, len,
f02e1e8a
DG
1610 SPLICE_F_MOVE | SPLICE_F_MORE);
1611 DBG("splice chan to pipe, ret %zd", ret_splice);
1612 if (ret_splice < 0) {
1613 PERROR("Error in relay splice");
1614 if (written == 0) {
1615 written = ret_splice;
1616 }
1617 ret = errno;
1618 goto splice_error;
1619 }
1620
1621 /* Handle stream on the relayd if the output is on the network */
1622 if (relayd) {
1623 if (stream->metadata_flag) {
1d4dfdef
DG
1624 size_t metadata_payload_size =
1625 sizeof(struct lttcomm_relayd_metadata_payload);
1626
f02e1e8a 1627 /* Update counter to fit the spliced data */
1d4dfdef
DG
1628 ret_splice += metadata_payload_size;
1629 len += metadata_payload_size;
f02e1e8a
DG
1630 /*
1631 * We do this so the return value can match the len passed as
1632 * argument to this function.
1633 */
1d4dfdef 1634 written -= metadata_payload_size;
f02e1e8a
DG
1635 }
1636 }
1637
1638 /* Splice data out */
fb3a43a9 1639 ret_splice = splice(splice_pipe[0], NULL, outfd, NULL,
f02e1e8a 1640 ret_splice, SPLICE_F_MOVE | SPLICE_F_MORE);
1d4dfdef 1641 DBG("Consumer splice pipe to file, ret %zd", ret_splice);
f02e1e8a
DG
1642 if (ret_splice < 0) {
1643 PERROR("Error in file splice");
1644 if (written == 0) {
1645 written = ret_splice;
1646 }
8994307f 1647 /* Socket operation failed. We consider the relayd dead */
00c8752b 1648 if (errno == EBADF || errno == EPIPE) {
8994307f
DG
1649 WARN("Remote relayd disconnected. Stopping");
1650 relayd_hang_up = 1;
1651 goto write_error;
1652 }
f02e1e8a
DG
1653 ret = errno;
1654 goto splice_error;
1655 } else if (ret_splice > len) {
1656 errno = EINVAL;
1657 PERROR("Wrote more data than requested %zd (len: %lu)",
1658 ret_splice, len);
1659 written += ret_splice;
1660 ret = errno;
1661 goto splice_error;
1662 }
1663 len -= ret_splice;
1664
1665 /* This call is useless on a socket so better save a syscall. */
1666 if (!relayd) {
1667 /* This won't block, but will start writeout asynchronously */
1668 lttng_sync_file_range(outfd, stream->out_fd_offset, ret_splice,
1669 SYNC_FILE_RANGE_WRITE);
1670 stream->out_fd_offset += ret_splice;
1671 }
1672 written += ret_splice;
1673 }
1674 lttng_consumer_sync_trace_file(stream, orig_offset);
1675
1676 ret = ret_splice;
1677
1678 goto end;
1679
8994307f
DG
1680write_error:
1681 /*
1682 * This is a special case that the relayd has closed its socket. Let's
1683 * cleanup the relayd object and all associated streams.
1684 */
1685 if (relayd && relayd_hang_up) {
1686 cleanup_relayd(relayd, ctx);
1687 /* Skip splice error so the consumer does not fail */
1688 goto end;
1689 }
1690
f02e1e8a
DG
1691splice_error:
1692 /* send the appropriate error description to sessiond */
1693 switch (ret) {
f02e1e8a 1694 case EINVAL:
f73fabfd 1695 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_SPLICE_EINVAL);
f02e1e8a
DG
1696 break;
1697 case ENOMEM:
f73fabfd 1698 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_SPLICE_ENOMEM);
f02e1e8a
DG
1699 break;
1700 case ESPIPE:
f73fabfd 1701 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_SPLICE_ESPIPE);
f02e1e8a
DG
1702 break;
1703 }
1704
1705end:
1706 if (relayd && stream->metadata_flag) {
1707 pthread_mutex_unlock(&relayd->ctrl_sock_mutex);
1708 }
1709
1710 rcu_read_unlock();
1711 return written;
3bd1e081
MD
1712}
1713
1714/*
1715 * Take a snapshot for a specific fd
1716 *
1717 * Returns 0 on success, < 0 on error
1718 */
ffe60014 1719int lttng_consumer_take_snapshot(struct lttng_consumer_stream *stream)
3bd1e081
MD
1720{
1721 switch (consumer_data.type) {
1722 case LTTNG_CONSUMER_KERNEL:
ffe60014 1723 return lttng_kconsumer_take_snapshot(stream);
7753dea8
MD
1724 case LTTNG_CONSUMER32_UST:
1725 case LTTNG_CONSUMER64_UST:
ffe60014 1726 return lttng_ustconsumer_take_snapshot(stream);
3bd1e081
MD
1727 default:
1728 ERR("Unknown consumer_data type");
1729 assert(0);
1730 return -ENOSYS;
1731 }
3bd1e081
MD
1732}
1733
1734/*
1735 * Get the produced position
1736 *
1737 * Returns 0 on success, < 0 on error
1738 */
ffe60014 1739int lttng_consumer_get_produced_snapshot(struct lttng_consumer_stream *stream,
3bd1e081
MD
1740 unsigned long *pos)
1741{
1742 switch (consumer_data.type) {
1743 case LTTNG_CONSUMER_KERNEL:
ffe60014 1744 return lttng_kconsumer_get_produced_snapshot(stream, pos);
7753dea8
MD
1745 case LTTNG_CONSUMER32_UST:
1746 case LTTNG_CONSUMER64_UST:
ffe60014 1747 return lttng_ustconsumer_get_produced_snapshot(stream, pos);
3bd1e081
MD
1748 default:
1749 ERR("Unknown consumer_data type");
1750 assert(0);
1751 return -ENOSYS;
1752 }
1753}
1754
1755int lttng_consumer_recv_cmd(struct lttng_consumer_local_data *ctx,
1756 int sock, struct pollfd *consumer_sockpoll)
1757{
1758 switch (consumer_data.type) {
1759 case LTTNG_CONSUMER_KERNEL:
1760 return lttng_kconsumer_recv_cmd(ctx, sock, consumer_sockpoll);
7753dea8
MD
1761 case LTTNG_CONSUMER32_UST:
1762 case LTTNG_CONSUMER64_UST:
3bd1e081
MD
1763 return lttng_ustconsumer_recv_cmd(ctx, sock, consumer_sockpoll);
1764 default:
1765 ERR("Unknown consumer_data type");
1766 assert(0);
1767 return -ENOSYS;
1768 }
1769}
1770
43c34bc3
DG
1771/*
1772 * Iterate over all streams of the hashtable and free them properly.
1773 *
1774 * WARNING: *MUST* be used with data stream only.
1775 */
1776static void destroy_data_stream_ht(struct lttng_ht *ht)
1777{
43c34bc3
DG
1778 struct lttng_ht_iter iter;
1779 struct lttng_consumer_stream *stream;
1780
1781 if (ht == NULL) {
1782 return;
1783 }
1784
1785 rcu_read_lock();
1786 cds_lfht_for_each_entry(ht->ht, &iter.iter, stream, node.node) {
5c540210
DG
1787 /*
1788 * Ignore return value since we are currently cleaning up so any error
1789 * can't be handled.
1790 */
1791 (void) consumer_del_stream(stream, ht);
43c34bc3
DG
1792 }
1793 rcu_read_unlock();
1794
1795 lttng_ht_destroy(ht);
1796}
1797
fb3a43a9 1798/*
f724d81e 1799 * Iterate over all streams of the hashtable and free them properly.
e316aad5
DG
1800 *
1801 * XXX: Should not be only for metadata stream or else use an other name.
fb3a43a9
DG
1802 */
1803static void destroy_stream_ht(struct lttng_ht *ht)
1804{
fb3a43a9
DG
1805 struct lttng_ht_iter iter;
1806 struct lttng_consumer_stream *stream;
1807
1808 if (ht == NULL) {
1809 return;
1810 }
1811
d09e1200 1812 rcu_read_lock();
58b1f425 1813 cds_lfht_for_each_entry(ht->ht, &iter.iter, stream, node.node) {
5c540210
DG
1814 /*
1815 * Ignore return value since we are currently cleaning up so any error
1816 * can't be handled.
1817 */
1818 (void) consumer_del_metadata_stream(stream, ht);
fb3a43a9 1819 }
d09e1200 1820 rcu_read_unlock();
fb3a43a9
DG
1821
1822 lttng_ht_destroy(ht);
1823}
1824
d88aee68
DG
1825void lttng_consumer_close_metadata(void)
1826{
1827 switch (consumer_data.type) {
1828 case LTTNG_CONSUMER_KERNEL:
1829 /*
1830 * The Kernel consumer has a different metadata scheme so we don't
1831 * close anything because the stream will be closed by the session
1832 * daemon.
1833 */
1834 break;
1835 case LTTNG_CONSUMER32_UST:
1836 case LTTNG_CONSUMER64_UST:
1837 /*
1838 * Close all metadata streams. The metadata hash table is passed and
1839 * this call iterates over it by closing all wakeup fd. This is safe
1840 * because at this point we are sure that the metadata producer is
1841 * either dead or blocked.
1842 */
1843 lttng_ustconsumer_close_metadata(metadata_ht);
1844 break;
1845 default:
1846 ERR("Unknown consumer_data type");
1847 assert(0);
1848 }
1849}
1850
fb3a43a9
DG
1851/*
1852 * Clean up a metadata stream and free its memory.
1853 */
e316aad5
DG
1854void consumer_del_metadata_stream(struct lttng_consumer_stream *stream,
1855 struct lttng_ht *ht)
fb3a43a9
DG
1856{
1857 int ret;
e316aad5
DG
1858 struct lttng_ht_iter iter;
1859 struct lttng_consumer_channel *free_chan = NULL;
fb3a43a9
DG
1860 struct consumer_relayd_sock_pair *relayd;
1861
1862 assert(stream);
1863 /*
1864 * This call should NEVER receive regular stream. It must always be
1865 * metadata stream and this is crucial for data structure synchronization.
1866 */
1867 assert(stream->metadata_flag);
1868
e316aad5
DG
1869 DBG3("Consumer delete metadata stream %d", stream->wait_fd);
1870
1871 if (ht == NULL) {
1872 /* Means the stream was allocated but not successfully added */
ffe60014 1873 goto free_stream_rcu;
e316aad5
DG
1874 }
1875
74251bb8 1876 pthread_mutex_lock(&consumer_data.lock);
8994307f
DG
1877 pthread_mutex_lock(&stream->lock);
1878
fb3a43a9
DG
1879 switch (consumer_data.type) {
1880 case LTTNG_CONSUMER_KERNEL:
1881 if (stream->mmap_base != NULL) {
1882 ret = munmap(stream->mmap_base, stream->mmap_len);
1883 if (ret != 0) {
1884 PERROR("munmap metadata stream");
1885 }
1886 }
4c95e622
JD
1887
1888 if (stream->wait_fd >= 0) {
1889 ret = close(stream->wait_fd);
1890 if (ret < 0) {
1891 PERROR("close kernel metadata wait_fd");
1892 }
1893 }
fb3a43a9
DG
1894 break;
1895 case LTTNG_CONSUMER32_UST:
1896 case LTTNG_CONSUMER64_UST:
1897 lttng_ustconsumer_del_stream(stream);
1898 break;
1899 default:
1900 ERR("Unknown consumer_data type");
1901 assert(0);
e316aad5 1902 goto end;
fb3a43a9 1903 }
fb3a43a9 1904
c869f647 1905 rcu_read_lock();
58b1f425 1906 iter.iter.node = &stream->node.node;
c869f647
DG
1907 ret = lttng_ht_del(ht, &iter);
1908 assert(!ret);
ca22feea 1909
d8ef542d
MD
1910 iter.iter.node = &stream->node_channel_id.node;
1911 ret = lttng_ht_del(consumer_data.stream_per_chan_id_ht, &iter);
1912 assert(!ret);
1913
ca22feea
DG
1914 iter.iter.node = &stream->node_session_id.node;
1915 ret = lttng_ht_del(consumer_data.stream_list_ht, &iter);
1916 assert(!ret);
c869f647
DG
1917 rcu_read_unlock();
1918
fb3a43a9
DG
1919 if (stream->out_fd >= 0) {
1920 ret = close(stream->out_fd);
1921 if (ret) {
1922 PERROR("close");
1923 }
1924 }
1925
fb3a43a9
DG
1926 /* Check and cleanup relayd */
1927 rcu_read_lock();
1928 relayd = consumer_find_relayd(stream->net_seq_idx);
1929 if (relayd != NULL) {
1930 uatomic_dec(&relayd->refcount);
1931 assert(uatomic_read(&relayd->refcount) >= 0);
1932
1933 /* Closing streams requires to lock the control socket. */
1934 pthread_mutex_lock(&relayd->ctrl_sock_mutex);
1935 ret = relayd_send_close_stream(&relayd->control_sock,
1936 stream->relayd_stream_id, stream->next_net_seq_num - 1);
1937 pthread_mutex_unlock(&relayd->ctrl_sock_mutex);
1938 if (ret < 0) {
1939 DBG("Unable to close stream on the relayd. Continuing");
1940 /*
1941 * Continue here. There is nothing we can do for the relayd.
1942 * Chances are that the relayd has closed the socket so we just
1943 * continue cleaning up.
1944 */
1945 }
1946
1947 /* Both conditions are met, we destroy the relayd. */
1948 if (uatomic_read(&relayd->refcount) == 0 &&
1949 uatomic_read(&relayd->destroy_flag)) {
d09e1200 1950 destroy_relayd(relayd);
fb3a43a9
DG
1951 }
1952 }
1953 rcu_read_unlock();
1954
1955 /* Atomically decrement channel refcount since other threads can use it. */
f2ad556d 1956 if (!uatomic_sub_return(&stream->chan->refcount, 1)
ffe60014 1957 && !uatomic_read(&stream->chan->nb_init_stream_left)) {
c30aaa51 1958 /* Go for channel deletion! */
e316aad5 1959 free_chan = stream->chan;
fb3a43a9
DG
1960 }
1961
e316aad5 1962end:
8994307f 1963 pthread_mutex_unlock(&stream->lock);
74251bb8 1964 pthread_mutex_unlock(&consumer_data.lock);
e316aad5
DG
1965
1966 if (free_chan) {
1967 consumer_del_channel(free_chan);
1968 }
1969
ffe60014
DG
1970free_stream_rcu:
1971 call_rcu(&stream->node.head, free_stream_rcu);
fb3a43a9
DG
1972}
1973
1974/*
1975 * Action done with the metadata stream when adding it to the consumer internal
1976 * data structures to handle it.
1977 */
ffe60014 1978static int add_metadata_stream(struct lttng_consumer_stream *stream,
e316aad5 1979 struct lttng_ht *ht)
fb3a43a9 1980{
e316aad5 1981 int ret = 0;
fb3a43a9 1982 struct consumer_relayd_sock_pair *relayd;
76082088 1983 struct lttng_ht_iter iter;
d88aee68 1984 struct lttng_ht_node_u64 *node;
fb3a43a9 1985
e316aad5
DG
1986 assert(stream);
1987 assert(ht);
1988
d88aee68 1989 DBG3("Adding metadata stream %" PRIu64 " to hash table", stream->key);
e316aad5
DG
1990
1991 pthread_mutex_lock(&consumer_data.lock);
2e818a6a 1992 pthread_mutex_lock(&stream->lock);
e316aad5 1993
e316aad5
DG
1994 /*
1995 * From here, refcounts are updated so be _careful_ when returning an error
1996 * after this point.
1997 */
1998
fb3a43a9 1999 rcu_read_lock();
76082088
DG
2000
2001 /*
2002 * Lookup the stream just to make sure it does not exist in our internal
2003 * state. This should NEVER happen.
2004 */
d88aee68
DG
2005 lttng_ht_lookup(ht, &stream->key, &iter);
2006 node = lttng_ht_iter_get_node_u64(&iter);
76082088
DG
2007 assert(!node);
2008
e316aad5 2009 /* Find relayd and, if one is found, increment refcount. */
fb3a43a9
DG
2010 relayd = consumer_find_relayd(stream->net_seq_idx);
2011 if (relayd != NULL) {
2012 uatomic_inc(&relayd->refcount);
2013 }
e316aad5
DG
2014
2015 /* Update channel refcount once added without error(s). */
2016 uatomic_inc(&stream->chan->refcount);
2017
2018 /*
ffe60014
DG
2019 * When nb_init_stream_left reaches 0, we don't need to trigger any action
2020 * in terms of destroying the associated channel, because the action that
e316aad5
DG
2021 * causes the count to become 0 also causes a stream to be added. The
2022 * channel deletion will thus be triggered by the following removal of this
2023 * stream.
2024 */
ffe60014 2025 if (uatomic_read(&stream->chan->nb_init_stream_left) > 0) {
f2ad556d
MD
2026 /* Increment refcount before decrementing nb_init_stream_left */
2027 cmm_smp_wmb();
ffe60014 2028 uatomic_dec(&stream->chan->nb_init_stream_left);
e316aad5
DG
2029 }
2030
d88aee68 2031 lttng_ht_add_unique_u64(ht, &stream->node);
ca22feea 2032
d8ef542d
MD
2033 lttng_ht_add_unique_u64(consumer_data.stream_per_chan_id_ht,
2034 &stream->node_channel_id);
2035
ca22feea
DG
2036 /*
2037 * Add stream to the stream_list_ht of the consumer data. No need to steal
2038 * the key since the HT does not use it and we allow to add redundant keys
2039 * into this table.
2040 */
d88aee68 2041 lttng_ht_add_u64(consumer_data.stream_list_ht, &stream->node_session_id);
ca22feea 2042
fb3a43a9 2043 rcu_read_unlock();
e316aad5 2044
2e818a6a 2045 pthread_mutex_unlock(&stream->lock);
e316aad5
DG
2046 pthread_mutex_unlock(&consumer_data.lock);
2047 return ret;
fb3a43a9
DG
2048}
2049
8994307f
DG
2050/*
2051 * Delete data stream that are flagged for deletion (endpoint_status).
2052 */
2053static void validate_endpoint_status_data_stream(void)
2054{
2055 struct lttng_ht_iter iter;
2056 struct lttng_consumer_stream *stream;
2057
2058 DBG("Consumer delete flagged data stream");
2059
2060 rcu_read_lock();
2061 cds_lfht_for_each_entry(data_ht->ht, &iter.iter, stream, node.node) {
2062 /* Validate delete flag of the stream */
79d4ffb7 2063 if (stream->endpoint_status == CONSUMER_ENDPOINT_ACTIVE) {
8994307f
DG
2064 continue;
2065 }
2066 /* Delete it right now */
2067 consumer_del_stream(stream, data_ht);
2068 }
2069 rcu_read_unlock();
2070}
2071
2072/*
2073 * Delete metadata stream that are flagged for deletion (endpoint_status).
2074 */
2075static void validate_endpoint_status_metadata_stream(
2076 struct lttng_poll_event *pollset)
2077{
2078 struct lttng_ht_iter iter;
2079 struct lttng_consumer_stream *stream;
2080
2081 DBG("Consumer delete flagged metadata stream");
2082
2083 assert(pollset);
2084
2085 rcu_read_lock();
2086 cds_lfht_for_each_entry(metadata_ht->ht, &iter.iter, stream, node.node) {
2087 /* Validate delete flag of the stream */
79d4ffb7 2088 if (stream->endpoint_status == CONSUMER_ENDPOINT_ACTIVE) {
8994307f
DG
2089 continue;
2090 }
2091 /*
2092 * Remove from pollset so the metadata thread can continue without
2093 * blocking on a deleted stream.
2094 */
2095 lttng_poll_del(pollset, stream->wait_fd);
2096
2097 /* Delete it right now */
2098 consumer_del_metadata_stream(stream, metadata_ht);
2099 }
2100 rcu_read_unlock();
2101}
2102
fb3a43a9
DG
2103/*
2104 * Thread polls on metadata file descriptor and write them on disk or on the
2105 * network.
2106 */
7d980def 2107void *consumer_thread_metadata_poll(void *data)
fb3a43a9
DG
2108{
2109 int ret, i, pollfd;
2110 uint32_t revents, nb_fd;
e316aad5 2111 struct lttng_consumer_stream *stream = NULL;
fb3a43a9 2112 struct lttng_ht_iter iter;
d88aee68 2113 struct lttng_ht_node_u64 *node;
fb3a43a9
DG
2114 struct lttng_poll_event events;
2115 struct lttng_consumer_local_data *ctx = data;
2116 ssize_t len;
2117
2118 rcu_register_thread();
2119
d88aee68 2120 metadata_ht = lttng_ht_new(0, LTTNG_HT_TYPE_U64);
04bb2b64
DG
2121 if (!metadata_ht) {
2122 /* ENOMEM at this point. Better to bail out. */
d8ef542d 2123 goto end_ht;
04bb2b64
DG
2124 }
2125
fb3a43a9
DG
2126 DBG("Thread metadata poll started");
2127
fb3a43a9
DG
2128 /* Size is set to 1 for the consumer_metadata pipe */
2129 ret = lttng_poll_create(&events, 2, LTTNG_CLOEXEC);
2130 if (ret < 0) {
2131 ERR("Poll set creation failed");
d8ef542d 2132 goto end_poll;
fb3a43a9
DG
2133 }
2134
13886d2d
DG
2135 ret = lttng_poll_add(&events,
2136 lttng_pipe_get_readfd(ctx->consumer_metadata_pipe), LPOLLIN);
fb3a43a9
DG
2137 if (ret < 0) {
2138 goto end;
2139 }
2140
2141 /* Main loop */
2142 DBG("Metadata main loop started");
2143
2144 while (1) {
fb3a43a9 2145 /* Only the metadata pipe is set */
d21b0d71 2146 if (LTTNG_POLL_GETNB(&events) == 0 && consumer_quit == 1) {
fb3a43a9
DG
2147 goto end;
2148 }
2149
2150restart:
d21b0d71 2151 DBG("Metadata poll wait with %d fd(s)", LTTNG_POLL_GETNB(&events));
fb3a43a9
DG
2152 ret = lttng_poll_wait(&events, -1);
2153 DBG("Metadata event catched in thread");
2154 if (ret < 0) {
2155 if (errno == EINTR) {
e316aad5 2156 ERR("Poll EINTR catched");
fb3a43a9
DG
2157 goto restart;
2158 }
2159 goto error;
2160 }
2161
0d9c5d77
DG
2162 nb_fd = ret;
2163
e316aad5 2164 /* From here, the event is a metadata wait fd */
fb3a43a9
DG
2165 for (i = 0; i < nb_fd; i++) {
2166 revents = LTTNG_POLL_GETEV(&events, i);
2167 pollfd = LTTNG_POLL_GETFD(&events, i);
2168
e316aad5
DG
2169 /* Just don't waste time if no returned events for the fd */
2170 if (!revents) {
2171 continue;
2172 }
2173
13886d2d 2174 if (pollfd == lttng_pipe_get_readfd(ctx->consumer_metadata_pipe)) {
4adabd61 2175 if (revents & (LPOLLERR | LPOLLHUP )) {
fb3a43a9
DG
2176 DBG("Metadata thread pipe hung up");
2177 /*
2178 * Remove the pipe from the poll set and continue the loop
2179 * since their might be data to consume.
2180 */
13886d2d
DG
2181 lttng_poll_del(&events,
2182 lttng_pipe_get_readfd(ctx->consumer_metadata_pipe));
2183 lttng_pipe_read_close(ctx->consumer_metadata_pipe);
fb3a43a9
DG
2184 continue;
2185 } else if (revents & LPOLLIN) {
13886d2d
DG
2186 ssize_t pipe_len;
2187
2188 pipe_len = lttng_pipe_read(ctx->consumer_metadata_pipe,
2189 &stream, sizeof(stream));
2190 if (pipe_len < 0) {
2191 ERR("read metadata stream, ret: %ld", pipe_len);
fb3a43a9 2192 /*
13886d2d 2193 * Continue here to handle the rest of the streams.
fb3a43a9
DG
2194 */
2195 continue;
2196 }
2197
8994307f
DG
2198 /* A NULL stream means that the state has changed. */
2199 if (stream == NULL) {
2200 /* Check for deleted streams. */
2201 validate_endpoint_status_metadata_stream(&events);
3714380f 2202 goto restart;
8994307f
DG
2203 }
2204
fb3a43a9
DG
2205 DBG("Adding metadata stream %d to poll set",
2206 stream->wait_fd);
2207
ffe60014 2208 ret = add_metadata_stream(stream, metadata_ht);
e316aad5
DG
2209 if (ret) {
2210 ERR("Unable to add metadata stream");
2211 /* Stream was not setup properly. Continuing. */
2212 consumer_del_metadata_stream(stream, NULL);
2213 continue;
2214 }
fb3a43a9
DG
2215
2216 /* Add metadata stream to the global poll events list */
2217 lttng_poll_add(&events, stream->wait_fd,
2218 LPOLLIN | LPOLLPRI);
fb3a43a9
DG
2219 }
2220
e316aad5 2221 /* Handle other stream */
fb3a43a9
DG
2222 continue;
2223 }
2224
d09e1200 2225 rcu_read_lock();
d88aee68
DG
2226 {
2227 uint64_t tmp_id = (uint64_t) pollfd;
2228
2229 lttng_ht_lookup(metadata_ht, &tmp_id, &iter);
2230 }
2231 node = lttng_ht_iter_get_node_u64(&iter);
e316aad5 2232 assert(node);
fb3a43a9
DG
2233
2234 stream = caa_container_of(node, struct lttng_consumer_stream,
58b1f425 2235 node);
fb3a43a9 2236
e316aad5 2237 /* Check for error event */
4adabd61 2238 if (revents & (LPOLLERR | LPOLLHUP)) {
e316aad5 2239 DBG("Metadata fd %d is hup|err.", pollfd);
fb3a43a9
DG
2240 if (!stream->hangup_flush_done
2241 && (consumer_data.type == LTTNG_CONSUMER32_UST
2242 || consumer_data.type == LTTNG_CONSUMER64_UST)) {
2243 DBG("Attempting to flush and consume the UST buffers");
2244 lttng_ustconsumer_on_stream_hangup(stream);
2245
2246 /* We just flushed the stream now read it. */
4bb94b75
DG
2247 do {
2248 len = ctx->on_buffer_ready(stream, ctx);
2249 /*
2250 * We don't check the return value here since if we get
2251 * a negative len, it means an error occured thus we
2252 * simply remove it from the poll set and free the
2253 * stream.
2254 */
2255 } while (len > 0);
fb3a43a9
DG
2256 }
2257
fb3a43a9 2258 lttng_poll_del(&events, stream->wait_fd);
e316aad5
DG
2259 /*
2260 * This call update the channel states, closes file descriptors
2261 * and securely free the stream.
2262 */
2263 consumer_del_metadata_stream(stream, metadata_ht);
2264 } else if (revents & (LPOLLIN | LPOLLPRI)) {
2265 /* Get the data out of the metadata file descriptor */
2266 DBG("Metadata available on fd %d", pollfd);
2267 assert(stream->wait_fd == pollfd);
2268
2269 len = ctx->on_buffer_ready(stream, ctx);
2270 /* It's ok to have an unavailable sub-buffer */
b64403e3 2271 if (len < 0 && len != -EAGAIN && len != -ENODATA) {
ab1027f4
DG
2272 /* Clean up stream from consumer and free it. */
2273 lttng_poll_del(&events, stream->wait_fd);
2274 consumer_del_metadata_stream(stream, metadata_ht);
e316aad5
DG
2275 } else if (len > 0) {
2276 stream->data_read = 1;
2277 }
fb3a43a9 2278 }
e316aad5
DG
2279
2280 /* Release RCU lock for the stream looked up */
d09e1200 2281 rcu_read_unlock();
fb3a43a9
DG
2282 }
2283 }
2284
2285error:
2286end:
2287 DBG("Metadata poll thread exiting");
fb3a43a9 2288
d8ef542d
MD
2289 lttng_poll_clean(&events);
2290end_poll:
04bb2b64 2291 destroy_stream_ht(metadata_ht);
d8ef542d 2292end_ht:
fb3a43a9
DG
2293 rcu_unregister_thread();
2294 return NULL;
2295}
2296
3bd1e081 2297/*
e4421fec 2298 * This thread polls the fds in the set to consume the data and write
3bd1e081
MD
2299 * it to tracefile if necessary.
2300 */
7d980def 2301void *consumer_thread_data_poll(void *data)
3bd1e081
MD
2302{
2303 int num_rdy, num_hup, high_prio, ret, i;
2304 struct pollfd *pollfd = NULL;
2305 /* local view of the streams */
c869f647 2306 struct lttng_consumer_stream **local_stream = NULL, *new_stream = NULL;
3bd1e081
MD
2307 /* local view of consumer_data.fds_count */
2308 int nb_fd = 0;
3bd1e081 2309 struct lttng_consumer_local_data *ctx = data;
00e2e675 2310 ssize_t len;
3bd1e081 2311
e7b994a3
DG
2312 rcu_register_thread();
2313
d88aee68 2314 data_ht = lttng_ht_new(0, LTTNG_HT_TYPE_U64);
43c34bc3 2315 if (data_ht == NULL) {
04bb2b64 2316 /* ENOMEM at this point. Better to bail out. */
43c34bc3
DG
2317 goto end;
2318 }
2319
effcf122 2320 local_stream = zmalloc(sizeof(struct lttng_consumer_stream));
3bd1e081
MD
2321
2322 while (1) {
2323 high_prio = 0;
2324 num_hup = 0;
2325
2326 /*
e4421fec 2327 * the fds set has been updated, we need to update our
3bd1e081
MD
2328 * local array as well
2329 */
2330 pthread_mutex_lock(&consumer_data.lock);
2331 if (consumer_data.need_update) {
0e428499
DG
2332 free(pollfd);
2333 pollfd = NULL;
2334
2335 free(local_stream);
2336 local_stream = NULL;
3bd1e081 2337
50f8ae69 2338 /* allocate for all fds + 1 for the consumer_data_pipe */
effcf122 2339 pollfd = zmalloc((consumer_data.stream_count + 1) * sizeof(struct pollfd));
3bd1e081 2340 if (pollfd == NULL) {
7a57cf92 2341 PERROR("pollfd malloc");
3bd1e081
MD
2342 pthread_mutex_unlock(&consumer_data.lock);
2343 goto end;
2344 }
2345
50f8ae69 2346 /* allocate for all fds + 1 for the consumer_data_pipe */
effcf122 2347 local_stream = zmalloc((consumer_data.stream_count + 1) *
3bd1e081
MD
2348 sizeof(struct lttng_consumer_stream));
2349 if (local_stream == NULL) {
7a57cf92 2350 PERROR("local_stream malloc");
3bd1e081
MD
2351 pthread_mutex_unlock(&consumer_data.lock);
2352 goto end;
2353 }
ffe60014 2354 ret = update_poll_array(ctx, &pollfd, local_stream,
43c34bc3 2355 data_ht);
3bd1e081
MD
2356 if (ret < 0) {
2357 ERR("Error in allocating pollfd or local_outfds");
f73fabfd 2358 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_POLL_ERROR);
3bd1e081
MD
2359 pthread_mutex_unlock(&consumer_data.lock);
2360 goto end;
2361 }
2362 nb_fd = ret;
2363 consumer_data.need_update = 0;
2364 }
2365 pthread_mutex_unlock(&consumer_data.lock);
2366
4078b776
MD
2367 /* No FDs and consumer_quit, consumer_cleanup the thread */
2368 if (nb_fd == 0 && consumer_quit == 1) {
2369 goto end;
2370 }
3bd1e081 2371 /* poll on the array of fds */
88f2b785 2372 restart:
3bd1e081 2373 DBG("polling on %d fd", nb_fd + 1);
cb365c03 2374 num_rdy = poll(pollfd, nb_fd + 1, -1);
3bd1e081
MD
2375 DBG("poll num_rdy : %d", num_rdy);
2376 if (num_rdy == -1) {
88f2b785
MD
2377 /*
2378 * Restart interrupted system call.
2379 */
2380 if (errno == EINTR) {
2381 goto restart;
2382 }
7a57cf92 2383 PERROR("Poll error");
f73fabfd 2384 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_POLL_ERROR);
3bd1e081
MD
2385 goto end;
2386 } else if (num_rdy == 0) {
2387 DBG("Polling thread timed out");
2388 goto end;
2389 }
2390
3bd1e081 2391 /*
50f8ae69 2392 * If the consumer_data_pipe triggered poll go directly to the
00e2e675
DG
2393 * beginning of the loop to update the array. We want to prioritize
2394 * array update over low-priority reads.
3bd1e081 2395 */
509bb1cf 2396 if (pollfd[nb_fd].revents & (POLLIN | POLLPRI)) {
ab30f567 2397 ssize_t pipe_readlen;
04fdd819 2398
50f8ae69 2399 DBG("consumer_data_pipe wake up");
acdb9057
DG
2400 pipe_readlen = lttng_pipe_read(ctx->consumer_data_pipe,
2401 &new_stream, sizeof(new_stream));
23f5f35d 2402 if (pipe_readlen < 0) {
acdb9057 2403 ERR("Consumer data pipe ret %ld", pipe_readlen);
23f5f35d
DG
2404 /* Continue so we can at least handle the current stream(s). */
2405 continue;
2406 }
c869f647
DG
2407
2408 /*
2409 * If the stream is NULL, just ignore it. It's also possible that
2410 * the sessiond poll thread changed the consumer_quit state and is
2411 * waking us up to test it.
2412 */
2413 if (new_stream == NULL) {
8994307f 2414 validate_endpoint_status_data_stream();
c869f647
DG
2415 continue;
2416 }
2417
ffe60014 2418 ret = add_stream(new_stream, data_ht);
c869f647 2419 if (ret) {
d88aee68 2420 ERR("Consumer add stream %" PRIu64 " failed. Continuing",
c869f647
DG
2421 new_stream->key);
2422 /*
2423 * At this point, if the add_stream fails, it is not in the
2424 * hash table thus passing the NULL value here.
2425 */
2426 consumer_del_stream(new_stream, NULL);
2427 }
2428
2429 /* Continue to update the local streams and handle prio ones */
3bd1e081
MD
2430 continue;
2431 }
2432
2433 /* Take care of high priority channels first. */
2434 for (i = 0; i < nb_fd; i++) {
9617607b
DG
2435 if (local_stream[i] == NULL) {
2436 continue;
2437 }
fb3a43a9 2438 if (pollfd[i].revents & POLLPRI) {
d41f73b7
MD
2439 DBG("Urgent read on fd %d", pollfd[i].fd);
2440 high_prio = 1;
4078b776 2441 len = ctx->on_buffer_ready(local_stream[i], ctx);
d41f73b7 2442 /* it's ok to have an unavailable sub-buffer */
b64403e3 2443 if (len < 0 && len != -EAGAIN && len != -ENODATA) {
ab1027f4
DG
2444 /* Clean the stream and free it. */
2445 consumer_del_stream(local_stream[i], data_ht);
9617607b 2446 local_stream[i] = NULL;
4078b776
MD
2447 } else if (len > 0) {
2448 local_stream[i]->data_read = 1;
d41f73b7 2449 }
3bd1e081
MD
2450 }
2451 }
2452
4078b776
MD
2453 /*
2454 * If we read high prio channel in this loop, try again
2455 * for more high prio data.
2456 */
2457 if (high_prio) {
3bd1e081
MD
2458 continue;
2459 }
2460
2461 /* Take care of low priority channels. */
4078b776 2462 for (i = 0; i < nb_fd; i++) {
9617607b
DG
2463 if (local_stream[i] == NULL) {
2464 continue;
2465 }
4078b776
MD
2466 if ((pollfd[i].revents & POLLIN) ||
2467 local_stream[i]->hangup_flush_done) {
4078b776
MD
2468 DBG("Normal read on fd %d", pollfd[i].fd);
2469 len = ctx->on_buffer_ready(local_stream[i], ctx);
2470 /* it's ok to have an unavailable sub-buffer */
b64403e3 2471 if (len < 0 && len != -EAGAIN && len != -ENODATA) {
ab1027f4
DG
2472 /* Clean the stream and free it. */
2473 consumer_del_stream(local_stream[i], data_ht);
9617607b 2474 local_stream[i] = NULL;
4078b776
MD
2475 } else if (len > 0) {
2476 local_stream[i]->data_read = 1;
2477 }
2478 }
2479 }
2480
2481 /* Handle hangup and errors */
2482 for (i = 0; i < nb_fd; i++) {
9617607b
DG
2483 if (local_stream[i] == NULL) {
2484 continue;
2485 }
4078b776
MD
2486 if (!local_stream[i]->hangup_flush_done
2487 && (pollfd[i].revents & (POLLHUP | POLLERR | POLLNVAL))
2488 && (consumer_data.type == LTTNG_CONSUMER32_UST
2489 || consumer_data.type == LTTNG_CONSUMER64_UST)) {
2490 DBG("fd %d is hup|err|nval. Attempting flush and read.",
9617607b 2491 pollfd[i].fd);
4078b776
MD
2492 lttng_ustconsumer_on_stream_hangup(local_stream[i]);
2493 /* Attempt read again, for the data we just flushed. */
2494 local_stream[i]->data_read = 1;
2495 }
2496 /*
2497 * If the poll flag is HUP/ERR/NVAL and we have
2498 * read no data in this pass, we can remove the
2499 * stream from its hash table.
2500 */
2501 if ((pollfd[i].revents & POLLHUP)) {
2502 DBG("Polling fd %d tells it has hung up.", pollfd[i].fd);
2503 if (!local_stream[i]->data_read) {
43c34bc3 2504 consumer_del_stream(local_stream[i], data_ht);
9617607b 2505 local_stream[i] = NULL;
4078b776
MD
2506 num_hup++;
2507 }
2508 } else if (pollfd[i].revents & POLLERR) {
2509 ERR("Error returned in polling fd %d.", pollfd[i].fd);
2510 if (!local_stream[i]->data_read) {
43c34bc3 2511 consumer_del_stream(local_stream[i], data_ht);
9617607b 2512 local_stream[i] = NULL;
4078b776
MD
2513 num_hup++;
2514 }
2515 } else if (pollfd[i].revents & POLLNVAL) {
2516 ERR("Polling fd %d tells fd is not open.", pollfd[i].fd);
2517 if (!local_stream[i]->data_read) {
43c34bc3 2518 consumer_del_stream(local_stream[i], data_ht);
9617607b 2519 local_stream[i] = NULL;
4078b776 2520 num_hup++;
3bd1e081
MD
2521 }
2522 }
9617607b
DG
2523 if (local_stream[i] != NULL) {
2524 local_stream[i]->data_read = 0;
2525 }
3bd1e081
MD
2526 }
2527 }
2528end:
2529 DBG("polling thread exiting");
0e428499
DG
2530 free(pollfd);
2531 free(local_stream);
fb3a43a9
DG
2532
2533 /*
2534 * Close the write side of the pipe so epoll_wait() in
7d980def
DG
2535 * consumer_thread_metadata_poll can catch it. The thread is monitoring the
2536 * read side of the pipe. If we close them both, epoll_wait strangely does
2537 * not return and could create a endless wait period if the pipe is the
2538 * only tracked fd in the poll set. The thread will take care of closing
2539 * the read side.
fb3a43a9 2540 */
13886d2d 2541 (void) lttng_pipe_write_close(ctx->consumer_metadata_pipe);
fb3a43a9 2542
04bb2b64 2543 destroy_data_stream_ht(data_ht);
43c34bc3 2544
e7b994a3 2545 rcu_unregister_thread();
3bd1e081
MD
2546 return NULL;
2547}
2548
d8ef542d
MD
2549/*
2550 * Close wake-up end of each stream belonging to the channel. This will
2551 * allow the poll() on the stream read-side to detect when the
2552 * write-side (application) finally closes them.
2553 */
2554static
2555void consumer_close_channel_streams(struct lttng_consumer_channel *channel)
2556{
2557 struct lttng_ht *ht;
2558 struct lttng_consumer_stream *stream;
2559 struct lttng_ht_iter iter;
2560
2561 ht = consumer_data.stream_per_chan_id_ht;
2562
2563 rcu_read_lock();
2564 cds_lfht_for_each_entry_duplicate(ht->ht,
2565 ht->hash_fct(&channel->key, lttng_ht_seed),
2566 ht->match_fct, &channel->key,
2567 &iter.iter, stream, node_channel_id.node) {
f2ad556d
MD
2568 /*
2569 * Protect against teardown with mutex.
2570 */
2571 pthread_mutex_lock(&stream->lock);
2572 if (cds_lfht_is_node_deleted(&stream->node.node)) {
2573 goto next;
2574 }
d8ef542d
MD
2575 switch (consumer_data.type) {
2576 case LTTNG_CONSUMER_KERNEL:
2577 break;
2578 case LTTNG_CONSUMER32_UST:
2579 case LTTNG_CONSUMER64_UST:
2580 /*
2581 * Note: a mutex is taken internally within
2582 * liblttng-ust-ctl to protect timer wakeup_fd
2583 * use from concurrent close.
2584 */
2585 lttng_ustconsumer_close_stream_wakeup(stream);
2586 break;
2587 default:
2588 ERR("Unknown consumer_data type");
2589 assert(0);
2590 }
f2ad556d
MD
2591 next:
2592 pthread_mutex_unlock(&stream->lock);
d8ef542d
MD
2593 }
2594 rcu_read_unlock();
2595}
2596
2597static void destroy_channel_ht(struct lttng_ht *ht)
2598{
2599 struct lttng_ht_iter iter;
2600 struct lttng_consumer_channel *channel;
2601 int ret;
2602
2603 if (ht == NULL) {
2604 return;
2605 }
2606
2607 rcu_read_lock();
2608 cds_lfht_for_each_entry(ht->ht, &iter.iter, channel, wait_fd_node.node) {
2609 ret = lttng_ht_del(ht, &iter);
2610 assert(ret != 0);
2611 }
2612 rcu_read_unlock();
2613
2614 lttng_ht_destroy(ht);
2615}
2616
2617/*
2618 * This thread polls the channel fds to detect when they are being
2619 * closed. It closes all related streams if the channel is detected as
2620 * closed. It is currently only used as a shim layer for UST because the
2621 * consumerd needs to keep the per-stream wakeup end of pipes open for
2622 * periodical flush.
2623 */
2624void *consumer_thread_channel_poll(void *data)
2625{
2626 int ret, i, pollfd;
2627 uint32_t revents, nb_fd;
2628 struct lttng_consumer_channel *chan = NULL;
2629 struct lttng_ht_iter iter;
2630 struct lttng_ht_node_u64 *node;
2631 struct lttng_poll_event events;
2632 struct lttng_consumer_local_data *ctx = data;
2633 struct lttng_ht *channel_ht;
2634
2635 rcu_register_thread();
2636
2637 channel_ht = lttng_ht_new(0, LTTNG_HT_TYPE_U64);
2638 if (!channel_ht) {
2639 /* ENOMEM at this point. Better to bail out. */
2640 goto end_ht;
2641 }
2642
2643 DBG("Thread channel poll started");
2644
2645 /* Size is set to 1 for the consumer_channel pipe */
2646 ret = lttng_poll_create(&events, 2, LTTNG_CLOEXEC);
2647 if (ret < 0) {
2648 ERR("Poll set creation failed");
2649 goto end_poll;
2650 }
2651
2652 ret = lttng_poll_add(&events, ctx->consumer_channel_pipe[0], LPOLLIN);
2653 if (ret < 0) {
2654 goto end;
2655 }
2656
2657 /* Main loop */
2658 DBG("Channel main loop started");
2659
2660 while (1) {
2661 /* Only the channel pipe is set */
2662 if (LTTNG_POLL_GETNB(&events) == 0 && consumer_quit == 1) {
2663 goto end;
2664 }
2665
2666restart:
2667 DBG("Channel poll wait with %d fd(s)", LTTNG_POLL_GETNB(&events));
2668 ret = lttng_poll_wait(&events, -1);
2669 DBG("Channel event catched in thread");
2670 if (ret < 0) {
2671 if (errno == EINTR) {
2672 ERR("Poll EINTR catched");
2673 goto restart;
2674 }
2675 goto end;
2676 }
2677
2678 nb_fd = ret;
2679
2680 /* From here, the event is a channel wait fd */
2681 for (i = 0; i < nb_fd; i++) {
2682 revents = LTTNG_POLL_GETEV(&events, i);
2683 pollfd = LTTNG_POLL_GETFD(&events, i);
2684
2685 /* Just don't waste time if no returned events for the fd */
2686 if (!revents) {
2687 continue;
2688 }
2689 if (pollfd == ctx->consumer_channel_pipe[0]) {
2690 if (revents & (LPOLLERR | LPOLLHUP)) {
2691 DBG("Channel thread pipe hung up");
2692 /*
2693 * Remove the pipe from the poll set and continue the loop
2694 * since their might be data to consume.
2695 */
2696 lttng_poll_del(&events, ctx->consumer_channel_pipe[0]);
2697 continue;
2698 } else if (revents & LPOLLIN) {
2699 enum consumer_channel_action action;
a0cbdd2e 2700 uint64_t key;
d8ef542d 2701
a0cbdd2e 2702 ret = read_channel_pipe(ctx, &chan, &key, &action);
d8ef542d
MD
2703 if (ret <= 0) {
2704 ERR("Error reading channel pipe");
2705 continue;
2706 }
2707
2708 switch (action) {
2709 case CONSUMER_CHANNEL_ADD:
2710 DBG("Adding channel %d to poll set",
2711 chan->wait_fd);
2712
2713 lttng_ht_node_init_u64(&chan->wait_fd_node,
2714 chan->wait_fd);
2715 lttng_ht_add_unique_u64(channel_ht,
2716 &chan->wait_fd_node);
2717 /* Add channel to the global poll events list */
2718 lttng_poll_add(&events, chan->wait_fd,
2719 LPOLLIN | LPOLLPRI);
2720 break;
a0cbdd2e
MD
2721 case CONSUMER_CHANNEL_DEL:
2722 {
2723 chan = consumer_find_channel(key);
2724 if (!chan) {
2725 ERR("UST consumer get channel key %" PRIu64 " not found for del channel", key);
2726 break;
2727 }
2728 lttng_poll_del(&events, chan->wait_fd);
2729 ret = lttng_ht_del(channel_ht, &iter);
2730 assert(ret == 0);
2731 consumer_close_channel_streams(chan);
2732
2733 /*
2734 * Release our own refcount. Force channel deletion even if
2735 * streams were not initialized.
2736 */
2737 if (!uatomic_sub_return(&chan->refcount, 1)) {
2738 consumer_del_channel(chan);
2739 }
2740 goto restart;
2741 }
d8ef542d
MD
2742 case CONSUMER_CHANNEL_QUIT:
2743 /*
2744 * Remove the pipe from the poll set and continue the loop
2745 * since their might be data to consume.
2746 */
2747 lttng_poll_del(&events, ctx->consumer_channel_pipe[0]);
2748 continue;
2749 default:
2750 ERR("Unknown action");
2751 break;
2752 }
2753 }
2754
2755 /* Handle other stream */
2756 continue;
2757 }
2758
2759 rcu_read_lock();
2760 {
2761 uint64_t tmp_id = (uint64_t) pollfd;
2762
2763 lttng_ht_lookup(channel_ht, &tmp_id, &iter);
2764 }
2765 node = lttng_ht_iter_get_node_u64(&iter);
2766 assert(node);
2767
2768 chan = caa_container_of(node, struct lttng_consumer_channel,
2769 wait_fd_node);
2770
2771 /* Check for error event */
2772 if (revents & (LPOLLERR | LPOLLHUP)) {
2773 DBG("Channel fd %d is hup|err.", pollfd);
2774
2775 lttng_poll_del(&events, chan->wait_fd);
2776 ret = lttng_ht_del(channel_ht, &iter);
2777 assert(ret == 0);
2778 consumer_close_channel_streams(chan);
f2ad556d
MD
2779
2780 /* Release our own refcount */
2781 if (!uatomic_sub_return(&chan->refcount, 1)
2782 && !uatomic_read(&chan->nb_init_stream_left)) {
2783 consumer_del_channel(chan);
2784 }
d8ef542d
MD
2785 }
2786
2787 /* Release RCU lock for the channel looked up */
2788 rcu_read_unlock();
2789 }
2790 }
2791
2792end:
2793 lttng_poll_clean(&events);
2794end_poll:
2795 destroy_channel_ht(channel_ht);
2796end_ht:
2797 DBG("Channel poll thread exiting");
2798 rcu_unregister_thread();
2799 return NULL;
2800}
2801
331744e3
JD
2802static int set_metadata_socket(struct lttng_consumer_local_data *ctx,
2803 struct pollfd *sockpoll, int client_socket)
2804{
2805 int ret;
2806
2807 assert(ctx);
2808 assert(sockpoll);
2809
2810 if (lttng_consumer_poll_socket(sockpoll) < 0) {
2811 ret = -1;
2812 goto error;
2813 }
2814 DBG("Metadata connection on client_socket");
2815
2816 /* Blocking call, waiting for transmission */
2817 ctx->consumer_metadata_socket = lttcomm_accept_unix_sock(client_socket);
2818 if (ctx->consumer_metadata_socket < 0) {
2819 WARN("On accept metadata");
2820 ret = -1;
2821 goto error;
2822 }
2823 ret = 0;
2824
2825error:
2826 return ret;
2827}
2828
3bd1e081
MD
2829/*
2830 * This thread listens on the consumerd socket and receives the file
2831 * descriptors from the session daemon.
2832 */
7d980def 2833void *consumer_thread_sessiond_poll(void *data)
3bd1e081 2834{
d96f09c6 2835 int sock = -1, client_socket, ret;
3bd1e081
MD
2836 /*
2837 * structure to poll for incoming data on communication socket avoids
2838 * making blocking sockets.
2839 */
2840 struct pollfd consumer_sockpoll[2];
2841 struct lttng_consumer_local_data *ctx = data;
2842
e7b994a3
DG
2843 rcu_register_thread();
2844
3bd1e081
MD
2845 DBG("Creating command socket %s", ctx->consumer_command_sock_path);
2846 unlink(ctx->consumer_command_sock_path);
2847 client_socket = lttcomm_create_unix_sock(ctx->consumer_command_sock_path);
2848 if (client_socket < 0) {
2849 ERR("Cannot create command socket");
2850 goto end;
2851 }
2852
2853 ret = lttcomm_listen_unix_sock(client_socket);
2854 if (ret < 0) {
2855 goto end;
2856 }
2857
32258573 2858 DBG("Sending ready command to lttng-sessiond");
f73fabfd 2859 ret = lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_COMMAND_SOCK_READY);
3bd1e081
MD
2860 /* return < 0 on error, but == 0 is not fatal */
2861 if (ret < 0) {
32258573 2862 ERR("Error sending ready command to lttng-sessiond");
3bd1e081
MD
2863 goto end;
2864 }
2865
2866 ret = fcntl(client_socket, F_SETFL, O_NONBLOCK);
2867 if (ret < 0) {
7a57cf92 2868 PERROR("fcntl O_NONBLOCK");
3bd1e081
MD
2869 goto end;
2870 }
2871
2872 /* prepare the FDs to poll : to client socket and the should_quit pipe */
2873 consumer_sockpoll[0].fd = ctx->consumer_should_quit[0];
2874 consumer_sockpoll[0].events = POLLIN | POLLPRI;
2875 consumer_sockpoll[1].fd = client_socket;
2876 consumer_sockpoll[1].events = POLLIN | POLLPRI;
2877
2878 if (lttng_consumer_poll_socket(consumer_sockpoll) < 0) {
2879 goto end;
2880 }
2881 DBG("Connection on client_socket");
2882
2883 /* Blocking call, waiting for transmission */
2884 sock = lttcomm_accept_unix_sock(client_socket);
534d2592 2885 if (sock < 0) {
3bd1e081
MD
2886 WARN("On accept");
2887 goto end;
2888 }
2889 ret = fcntl(sock, F_SETFL, O_NONBLOCK);
2890 if (ret < 0) {
7a57cf92 2891 PERROR("fcntl O_NONBLOCK");
3bd1e081
MD
2892 goto end;
2893 }
2894
331744e3
JD
2895 /*
2896 * Setup metadata socket which is the second socket connection on the
2897 * command unix socket.
2898 */
2899 ret = set_metadata_socket(ctx, consumer_sockpoll, client_socket);
2900 if (ret < 0) {
2901 goto end;
2902 }
2903
d96f09c6
DG
2904 /* This socket is not useful anymore. */
2905 ret = close(client_socket);
2906 if (ret < 0) {
2907 PERROR("close client_socket");
2908 }
2909 client_socket = -1;
2910
3bd1e081
MD
2911 /* update the polling structure to poll on the established socket */
2912 consumer_sockpoll[1].fd = sock;
2913 consumer_sockpoll[1].events = POLLIN | POLLPRI;
2914
2915 while (1) {
2916 if (lttng_consumer_poll_socket(consumer_sockpoll) < 0) {
2917 goto end;
2918 }
2919 DBG("Incoming command on sock");
2920 ret = lttng_consumer_recv_cmd(ctx, sock, consumer_sockpoll);
2921 if (ret == -ENOENT) {
2922 DBG("Received STOP command");
2923 goto end;
2924 }
4cbc1a04
DG
2925 if (ret <= 0) {
2926 /*
2927 * This could simply be a session daemon quitting. Don't output
2928 * ERR() here.
2929 */
2930 DBG("Communication interrupted on command socket");
3bd1e081
MD
2931 goto end;
2932 }
2933 if (consumer_quit) {
2934 DBG("consumer_thread_receive_fds received quit from signal");
2935 goto end;
2936 }
ffe60014 2937 DBG("received command on sock");
3bd1e081
MD
2938 }
2939end:
ffe60014 2940 DBG("Consumer thread sessiond poll exiting");
3bd1e081 2941
d88aee68
DG
2942 /*
2943 * Close metadata streams since the producer is the session daemon which
2944 * just died.
2945 *
2946 * NOTE: for now, this only applies to the UST tracer.
2947 */
2948 lttng_consumer_close_metadata();
2949
3bd1e081
MD
2950 /*
2951 * when all fds have hung up, the polling thread
2952 * can exit cleanly
2953 */
2954 consumer_quit = 1;
2955
04fdd819 2956 /*
c869f647 2957 * Notify the data poll thread to poll back again and test the
8994307f 2958 * consumer_quit state that we just set so to quit gracefully.
04fdd819 2959 */
acdb9057 2960 notify_thread_lttng_pipe(ctx->consumer_data_pipe);
c869f647 2961
a0cbdd2e 2962 notify_channel_pipe(ctx, NULL, -1, CONSUMER_CHANNEL_QUIT);
d8ef542d 2963
d96f09c6
DG
2964 /* Cleaning up possibly open sockets. */
2965 if (sock >= 0) {
2966 ret = close(sock);
2967 if (ret < 0) {
2968 PERROR("close sock sessiond poll");
2969 }
2970 }
2971 if (client_socket >= 0) {
2972 ret = close(sock);
2973 if (ret < 0) {
2974 PERROR("close client_socket sessiond poll");
2975 }
2976 }
2977
e7b994a3 2978 rcu_unregister_thread();
3bd1e081
MD
2979 return NULL;
2980}
d41f73b7 2981
4078b776 2982ssize_t lttng_consumer_read_subbuffer(struct lttng_consumer_stream *stream,
d41f73b7
MD
2983 struct lttng_consumer_local_data *ctx)
2984{
74251bb8
DG
2985 ssize_t ret;
2986
2987 pthread_mutex_lock(&stream->lock);
2988
d41f73b7
MD
2989 switch (consumer_data.type) {
2990 case LTTNG_CONSUMER_KERNEL:
74251bb8
DG
2991 ret = lttng_kconsumer_read_subbuffer(stream, ctx);
2992 break;
7753dea8
MD
2993 case LTTNG_CONSUMER32_UST:
2994 case LTTNG_CONSUMER64_UST:
74251bb8
DG
2995 ret = lttng_ustconsumer_read_subbuffer(stream, ctx);
2996 break;
d41f73b7
MD
2997 default:
2998 ERR("Unknown consumer_data type");
2999 assert(0);
74251bb8
DG
3000 ret = -ENOSYS;
3001 break;
d41f73b7 3002 }
74251bb8
DG
3003
3004 pthread_mutex_unlock(&stream->lock);
3005 return ret;
d41f73b7
MD
3006}
3007
3008int lttng_consumer_on_recv_stream(struct lttng_consumer_stream *stream)
3009{
3010 switch (consumer_data.type) {
3011 case LTTNG_CONSUMER_KERNEL:
3012 return lttng_kconsumer_on_recv_stream(stream);
7753dea8
MD
3013 case LTTNG_CONSUMER32_UST:
3014 case LTTNG_CONSUMER64_UST:
d41f73b7
MD
3015 return lttng_ustconsumer_on_recv_stream(stream);
3016 default:
3017 ERR("Unknown consumer_data type");
3018 assert(0);
3019 return -ENOSYS;
3020 }
3021}
e4421fec
DG
3022
3023/*
3024 * Allocate and set consumer data hash tables.
3025 */
3026void lttng_consumer_init(void)
3027{
d88aee68
DG
3028 consumer_data.channel_ht = lttng_ht_new(0, LTTNG_HT_TYPE_U64);
3029 consumer_data.relayd_ht = lttng_ht_new(0, LTTNG_HT_TYPE_U64);
3030 consumer_data.stream_list_ht = lttng_ht_new(0, LTTNG_HT_TYPE_U64);
d8ef542d 3031 consumer_data.stream_per_chan_id_ht = lttng_ht_new(0, LTTNG_HT_TYPE_U64);
e4421fec 3032}
7735ef9e
DG
3033
3034/*
3035 * Process the ADD_RELAYD command receive by a consumer.
3036 *
3037 * This will create a relayd socket pair and add it to the relayd hash table.
3038 * The caller MUST acquire a RCU read side lock before calling it.
3039 */
3040int consumer_add_relayd_socket(int net_seq_idx, int sock_type,
3041 struct lttng_consumer_local_data *ctx, int sock,
6151a90f
JD
3042 struct pollfd *consumer_sockpoll,
3043 struct lttcomm_relayd_sock *relayd_sock, unsigned int sessiond_id)
7735ef9e 3044{
cd2b09ed 3045 int fd = -1, ret = -1, relayd_created = 0;
f50f23d9 3046 enum lttng_error_code ret_code = LTTNG_OK;
d4298c99 3047 struct consumer_relayd_sock_pair *relayd = NULL;
7735ef9e 3048
6151a90f
JD
3049 assert(ctx);
3050 assert(relayd_sock);
3051
7735ef9e
DG
3052 DBG("Consumer adding relayd socket (idx: %d)", net_seq_idx);
3053
f50f23d9
DG
3054 /* First send a status message before receiving the fds. */
3055 ret = consumer_send_status_msg(sock, ret_code);
3056 if (ret < 0) {
3057 /* Somehow, the session daemon is not responding anymore. */
3058 goto error;
3059 }
3060
7735ef9e
DG
3061 /* Get relayd reference if exists. */
3062 relayd = consumer_find_relayd(net_seq_idx);
3063 if (relayd == NULL) {
3064 /* Not found. Allocate one. */
3065 relayd = consumer_allocate_relayd_sock_pair(net_seq_idx);
3066 if (relayd == NULL) {
f73fabfd 3067 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_OUTFD_ERROR);
59e71485 3068 ret = -1;
7735ef9e
DG
3069 goto error;
3070 }
f7079f67 3071 relayd->sessiond_session_id = (uint64_t) sessiond_id;
cd2b09ed 3072 relayd_created = 1;
7735ef9e
DG
3073 }
3074
3075 /* Poll on consumer socket. */
3076 if (lttng_consumer_poll_socket(consumer_sockpoll) < 0) {
3077 ret = -EINTR;
3078 goto error;
3079 }
3080
3081 /* Get relayd socket from session daemon */
3082 ret = lttcomm_recv_fds_unix_sock(sock, &fd, 1);
3083 if (ret != sizeof(fd)) {
f73fabfd 3084 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_ERROR_RECV_FD);
7735ef9e 3085 ret = -1;
4028eeb9 3086 fd = -1; /* Just in case it gets set with an invalid value. */
ffe60014 3087 goto error_close;
7735ef9e
DG
3088 }
3089
f50f23d9
DG
3090 /* We have the fds without error. Send status back. */
3091 ret = consumer_send_status_msg(sock, ret_code);
3092 if (ret < 0) {
3093 /* Somehow, the session daemon is not responding anymore. */
3094 goto error;
3095 }
3096
7735ef9e
DG
3097 /* Copy socket information and received FD */
3098 switch (sock_type) {
3099 case LTTNG_STREAM_CONTROL:
3100 /* Copy received lttcomm socket */
6151a90f
JD
3101 lttcomm_copy_sock(&relayd->control_sock.sock, &relayd_sock->sock);
3102 ret = lttcomm_create_sock(&relayd->control_sock.sock);
4028eeb9 3103 /* Immediately try to close the created socket if valid. */
6151a90f
JD
3104 if (relayd->control_sock.sock.fd >= 0) {
3105 if (close(relayd->control_sock.sock.fd)) {
4028eeb9
DG
3106 PERROR("close relayd control socket");
3107 }
7735ef9e 3108 }
4028eeb9 3109 /* Handle create_sock error. */
f66c074c 3110 if (ret < 0) {
4028eeb9 3111 goto error;
f66c074c 3112 }
7735ef9e
DG
3113
3114 /* Assign new file descriptor */
6151a90f
JD
3115 relayd->control_sock.sock.fd = fd;
3116 /* Assign version values. */
3117 relayd->control_sock.major = relayd_sock->major;
3118 relayd->control_sock.minor = relayd_sock->minor;
c5b6f4f0
DG
3119
3120 /*
59e71485
DG
3121 * Create a session on the relayd and store the returned id. Lock the
3122 * control socket mutex if the relayd was NOT created before.
c5b6f4f0 3123 */
59e71485
DG
3124 if (!relayd_created) {
3125 pthread_mutex_lock(&relayd->ctrl_sock_mutex);
3126 }
c5b6f4f0 3127 ret = relayd_create_session(&relayd->control_sock,
f7079f67 3128 &relayd->relayd_session_id);
59e71485
DG
3129 if (!relayd_created) {
3130 pthread_mutex_unlock(&relayd->ctrl_sock_mutex);
3131 }
c5b6f4f0 3132 if (ret < 0) {
ffe60014
DG
3133 /*
3134 * Close all sockets of a relayd object. It will be freed if it was
3135 * created at the error code path or else it will be garbage
3136 * collect.
3137 */
3138 (void) relayd_close(&relayd->control_sock);
3139 (void) relayd_close(&relayd->data_sock);
c5b6f4f0
DG
3140 goto error;
3141 }
3142
7735ef9e
DG
3143 break;
3144 case LTTNG_STREAM_DATA:
3145 /* Copy received lttcomm socket */
6151a90f
JD
3146 lttcomm_copy_sock(&relayd->data_sock.sock, &relayd_sock->sock);
3147 ret = lttcomm_create_sock(&relayd->data_sock.sock);
4028eeb9 3148 /* Immediately try to close the created socket if valid. */
6151a90f
JD
3149 if (relayd->data_sock.sock.fd >= 0) {
3150 if (close(relayd->data_sock.sock.fd)) {
4028eeb9
DG
3151 PERROR("close relayd data socket");
3152 }
7735ef9e 3153 }
4028eeb9 3154 /* Handle create_sock error. */
f66c074c 3155 if (ret < 0) {
4028eeb9 3156 goto error;
f66c074c 3157 }
7735ef9e
DG
3158
3159 /* Assign new file descriptor */
6151a90f
JD
3160 relayd->data_sock.sock.fd = fd;
3161 /* Assign version values. */
3162 relayd->data_sock.major = relayd_sock->major;
3163 relayd->data_sock.minor = relayd_sock->minor;
7735ef9e
DG
3164 break;
3165 default:
3166 ERR("Unknown relayd socket type (%d)", sock_type);
59e71485 3167 ret = -1;
7735ef9e
DG
3168 goto error;
3169 }
3170
d88aee68 3171 DBG("Consumer %s socket created successfully with net idx %" PRIu64 " (fd: %d)",
7735ef9e
DG
3172 sock_type == LTTNG_STREAM_CONTROL ? "control" : "data",
3173 relayd->net_seq_idx, fd);
3174
3175 /*
3176 * Add relayd socket pair to consumer data hashtable. If object already
3177 * exists or on error, the function gracefully returns.
3178 */
d09e1200 3179 add_relayd(relayd);
7735ef9e
DG
3180
3181 /* All good! */
4028eeb9 3182 return 0;
7735ef9e
DG
3183
3184error:
4028eeb9
DG
3185 /* Close received socket if valid. */
3186 if (fd >= 0) {
3187 if (close(fd)) {
3188 PERROR("close received socket");
3189 }
3190 }
cd2b09ed 3191
ffe60014 3192error_close:
cd2b09ed 3193 if (relayd_created) {
cd2b09ed
DG
3194 free(relayd);
3195 }
3196
7735ef9e
DG
3197 return ret;
3198}
ca22feea 3199
4e9a4686
DG
3200/*
3201 * Try to lock the stream mutex.
3202 *
3203 * On success, 1 is returned else 0 indicating that the mutex is NOT lock.
3204 */
3205static int stream_try_lock(struct lttng_consumer_stream *stream)
3206{
3207 int ret;
3208
3209 assert(stream);
3210
3211 /*
3212 * Try to lock the stream mutex. On failure, we know that the stream is
3213 * being used else where hence there is data still being extracted.
3214 */
3215 ret = pthread_mutex_trylock(&stream->lock);
3216 if (ret) {
3217 /* For both EBUSY and EINVAL error, the mutex is NOT locked. */
3218 ret = 0;
3219 goto end;
3220 }
3221
3222 ret = 1;
3223
3224end:
3225 return ret;
3226}
3227
f7079f67
DG
3228/*
3229 * Search for a relayd associated to the session id and return the reference.
3230 *
3231 * A rcu read side lock MUST be acquire before calling this function and locked
3232 * until the relayd object is no longer necessary.
3233 */
3234static struct consumer_relayd_sock_pair *find_relayd_by_session_id(uint64_t id)
3235{
3236 struct lttng_ht_iter iter;
f7079f67 3237 struct consumer_relayd_sock_pair *relayd = NULL;
f7079f67
DG
3238
3239 /* Iterate over all relayd since they are indexed by net_seq_idx. */
3240 cds_lfht_for_each_entry(consumer_data.relayd_ht->ht, &iter.iter, relayd,
3241 node.node) {
18261bd1
DG
3242 /*
3243 * Check by sessiond id which is unique here where the relayd session
3244 * id might not be when having multiple relayd.
3245 */
3246 if (relayd->sessiond_session_id == id) {
f7079f67 3247 /* Found the relayd. There can be only one per id. */
18261bd1 3248 goto found;
f7079f67
DG
3249 }
3250 }
3251
18261bd1
DG
3252 return NULL;
3253
3254found:
f7079f67
DG
3255 return relayd;
3256}
3257
ca22feea
DG
3258/*
3259 * Check if for a given session id there is still data needed to be extract
3260 * from the buffers.
3261 *
6d805429 3262 * Return 1 if data is pending or else 0 meaning ready to be read.
ca22feea 3263 */
6d805429 3264int consumer_data_pending(uint64_t id)
ca22feea
DG
3265{
3266 int ret;
3267 struct lttng_ht_iter iter;
3268 struct lttng_ht *ht;
3269 struct lttng_consumer_stream *stream;
f7079f67 3270 struct consumer_relayd_sock_pair *relayd = NULL;
6d805429 3271 int (*data_pending)(struct lttng_consumer_stream *);
ca22feea 3272
6d805429 3273 DBG("Consumer data pending command on session id %" PRIu64, id);
ca22feea 3274
6f6eda74 3275 rcu_read_lock();
ca22feea
DG
3276 pthread_mutex_lock(&consumer_data.lock);
3277
3278 switch (consumer_data.type) {
3279 case LTTNG_CONSUMER_KERNEL:
6d805429 3280 data_pending = lttng_kconsumer_data_pending;
ca22feea
DG
3281 break;
3282 case LTTNG_CONSUMER32_UST:
3283 case LTTNG_CONSUMER64_UST:
6d805429 3284 data_pending = lttng_ustconsumer_data_pending;
ca22feea
DG
3285 break;
3286 default:
3287 ERR("Unknown consumer data type");
3288 assert(0);
3289 }
3290
3291 /* Ease our life a bit */
3292 ht = consumer_data.stream_list_ht;
3293
f7079f67
DG
3294 relayd = find_relayd_by_session_id(id);
3295 if (relayd) {
3296 /* Send init command for data pending. */
3297 pthread_mutex_lock(&relayd->ctrl_sock_mutex);
3298 ret = relayd_begin_data_pending(&relayd->control_sock,
3299 relayd->relayd_session_id);
3300 pthread_mutex_unlock(&relayd->ctrl_sock_mutex);
3301 if (ret < 0) {
3302 /* Communication error thus the relayd so no data pending. */
3303 goto data_not_pending;
3304 }
3305 }
3306
c8f59ee5 3307 cds_lfht_for_each_entry_duplicate(ht->ht,
d88aee68
DG
3308 ht->hash_fct(&id, lttng_ht_seed),
3309 ht->match_fct, &id,
ca22feea 3310 &iter.iter, stream, node_session_id.node) {
4e9a4686
DG
3311 /* If this call fails, the stream is being used hence data pending. */
3312 ret = stream_try_lock(stream);
3313 if (!ret) {
f7079f67 3314 goto data_pending;
ca22feea 3315 }
ca22feea 3316
4e9a4686
DG
3317 /*
3318 * A removed node from the hash table indicates that the stream has
3319 * been deleted thus having a guarantee that the buffers are closed
3320 * on the consumer side. However, data can still be transmitted
3321 * over the network so don't skip the relayd check.
3322 */
3323 ret = cds_lfht_is_node_deleted(&stream->node.node);
3324 if (!ret) {
3325 /* Check the stream if there is data in the buffers. */
6d805429
DG
3326 ret = data_pending(stream);
3327 if (ret == 1) {
4e9a4686 3328 pthread_mutex_unlock(&stream->lock);
f7079f67 3329 goto data_pending;
4e9a4686
DG
3330 }
3331 }
3332
3333 /* Relayd check */
f7079f67 3334 if (relayd) {
c8f59ee5
DG
3335 pthread_mutex_lock(&relayd->ctrl_sock_mutex);
3336 if (stream->metadata_flag) {
ad7051c0
DG
3337 ret = relayd_quiescent_control(&relayd->control_sock,
3338 stream->relayd_stream_id);
c8f59ee5 3339 } else {
6d805429 3340 ret = relayd_data_pending(&relayd->control_sock,
39df6d9f
DG
3341 stream->relayd_stream_id,
3342 stream->next_net_seq_num - 1);
c8f59ee5
DG
3343 }
3344 pthread_mutex_unlock(&relayd->ctrl_sock_mutex);
6d805429 3345 if (ret == 1) {
4e9a4686 3346 pthread_mutex_unlock(&stream->lock);
f7079f67 3347 goto data_pending;
c8f59ee5
DG
3348 }
3349 }
4e9a4686 3350 pthread_mutex_unlock(&stream->lock);
c8f59ee5 3351 }
ca22feea 3352
f7079f67
DG
3353 if (relayd) {
3354 unsigned int is_data_inflight = 0;
3355
3356 /* Send init command for data pending. */
3357 pthread_mutex_lock(&relayd->ctrl_sock_mutex);
3358 ret = relayd_end_data_pending(&relayd->control_sock,
3359 relayd->relayd_session_id, &is_data_inflight);
3360 pthread_mutex_unlock(&relayd->ctrl_sock_mutex);
bdd88757 3361 if (ret < 0) {
f7079f67
DG
3362 goto data_not_pending;
3363 }
bdd88757
DG
3364 if (is_data_inflight) {
3365 goto data_pending;
3366 }
f7079f67
DG
3367 }
3368
ca22feea 3369 /*
f7079f67
DG
3370 * Finding _no_ node in the hash table and no inflight data means that the
3371 * stream(s) have been removed thus data is guaranteed to be available for
3372 * analysis from the trace files.
ca22feea
DG
3373 */
3374
f7079f67 3375data_not_pending:
ca22feea
DG
3376 /* Data is available to be read by a viewer. */
3377 pthread_mutex_unlock(&consumer_data.lock);
c8f59ee5 3378 rcu_read_unlock();
6d805429 3379 return 0;
ca22feea 3380
f7079f67 3381data_pending:
ca22feea
DG
3382 /* Data is still being extracted from buffers. */
3383 pthread_mutex_unlock(&consumer_data.lock);
c8f59ee5 3384 rcu_read_unlock();
6d805429 3385 return 1;
ca22feea 3386}
f50f23d9
DG
3387
3388/*
3389 * Send a ret code status message to the sessiond daemon.
3390 *
3391 * Return the sendmsg() return value.
3392 */
3393int consumer_send_status_msg(int sock, int ret_code)
3394{
3395 struct lttcomm_consumer_status_msg msg;
3396
3397 msg.ret_code = ret_code;
3398
3399 return lttcomm_send_unix_sock(sock, &msg, sizeof(msg));
3400}
ffe60014
DG
3401
3402/*
3403 * Send a channel status message to the sessiond daemon.
3404 *
3405 * Return the sendmsg() return value.
3406 */
3407int consumer_send_status_channel(int sock,
3408 struct lttng_consumer_channel *channel)
3409{
3410 struct lttcomm_consumer_status_channel msg;
3411
3412 assert(sock >= 0);
3413
3414 if (!channel) {
3415 msg.ret_code = -LTTNG_ERR_UST_CHAN_FAIL;
3416 } else {
3417 msg.ret_code = LTTNG_OK;
3418 msg.key = channel->key;
3419 msg.stream_count = channel->streams.count;
3420 }
3421
3422 return lttcomm_send_unix_sock(sock, &msg, sizeof(msg));
3423}
This page took 0.217707 seconds and 4 git commands to generate.