2 * Copyright (C) 2011 - Julien Desfossez <julien.desfossez@polymtl.ca>
3 * Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; only version 2
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
28 #include <sys/socket.h>
29 #include <sys/types.h>
32 #include <lttng-kernel-ctl.h>
33 #include <lttng-sessiond-comm.h>
34 #include <lttng/lttng-consumer.h>
35 #include <lttng/lttng-kconsumer.h>
36 #include <lttng/lttng-ustconsumer.h>
39 struct lttng_consumer_global_data consumer_data
= {
40 .stream_list
.head
= CDS_LIST_HEAD_INIT(consumer_data
.stream_list
.head
),
41 .channel_list
.head
= CDS_LIST_HEAD_INIT(consumer_data
.channel_list
.head
),
44 .type
= LTTNG_CONSUMER_UNKNOWN
,
47 /* timeout parameter, to control the polling thread grace period. */
48 int consumer_poll_timeout
= -1;
51 * Flag to inform the polling thread to quit when all fd hung up. Updated by
52 * the consumer_thread_receive_fds when it notices that all fds has hung up.
53 * Also updated by the signal handler (consumer_should_exit()). Read by the
56 volatile int consumer_quit
= 0;
59 * Find a stream. The consumer_data.lock must be locked during this
62 static struct lttng_consumer_stream
*consumer_find_stream(int key
)
64 struct lttng_consumer_stream
*iter
;
66 cds_list_for_each_entry(iter
, &consumer_data
.stream_list
.head
, list
) {
67 if (iter
->key
== key
) {
68 DBG("Found stream key %d", key
);
75 static struct lttng_consumer_channel
*consumer_find_channel(int key
)
77 struct lttng_consumer_channel
*iter
;
79 cds_list_for_each_entry(iter
, &consumer_data
.channel_list
.head
, list
) {
80 if (iter
->key
== key
) {
81 DBG("Found channel key %d", key
);
89 * Remove a stream from the global list protected by a mutex. This
90 * function is also responsible for freeing its data structures.
92 void consumer_del_stream(struct lttng_consumer_stream
*stream
)
95 struct lttng_consumer_channel
*free_chan
= NULL
;
97 pthread_mutex_lock(&consumer_data
.lock
);
99 switch (consumer_data
.type
) {
100 case LTTNG_CONSUMER_KERNEL
:
101 if (stream
->mmap_base
!= NULL
) {
102 ret
= munmap(stream
->mmap_base
, stream
->mmap_len
);
108 case LTTNG_CONSUMER_UST
:
109 lttng_ustconsumer_del_stream(stream
);
112 ERR("Unknown consumer_data type");
117 cds_list_del(&stream
->list
);
118 if (consumer_data
.stream_count
<= 0) {
121 consumer_data
.stream_count
--;
125 if (stream
->out_fd
>= 0) {
126 close(stream
->out_fd
);
128 if (stream
->wait_fd
>= 0) {
129 close(stream
->wait_fd
);
131 if (stream
->shm_fd
>= 0 && stream
->wait_fd
!= stream
->shm_fd
) {
132 close(stream
->shm_fd
);
134 if (!--stream
->chan
->refcount
)
135 free_chan
= stream
->chan
;
138 consumer_data
.need_update
= 1;
139 pthread_mutex_unlock(&consumer_data
.lock
);
142 consumer_del_channel(free_chan
);
145 struct lttng_consumer_stream
*consumer_allocate_stream(
146 int channel_key
, int stream_key
,
147 int shm_fd
, int wait_fd
,
148 enum lttng_consumer_stream_state state
,
150 enum lttng_event_output output
,
151 const char *path_name
)
153 struct lttng_consumer_stream
*stream
;
156 stream
= malloc(sizeof(*stream
));
157 if (stream
== NULL
) {
158 perror("malloc struct lttng_consumer_stream");
161 stream
->chan
= consumer_find_channel(channel_key
);
163 perror("Unable to find channel key");
166 stream
->chan
->refcount
++;
167 stream
->key
= stream_key
;
168 stream
->shm_fd
= shm_fd
;
169 stream
->wait_fd
= wait_fd
;
171 stream
->out_fd_offset
= 0;
172 stream
->state
= state
;
173 stream
->mmap_len
= mmap_len
;
174 stream
->mmap_base
= NULL
;
175 stream
->output
= output
;
176 strncpy(stream
->path_name
, path_name
, PATH_MAX
- 1);
177 stream
->path_name
[PATH_MAX
- 1] = '\0';
179 switch (consumer_data
.type
) {
180 case LTTNG_CONSUMER_KERNEL
:
182 case LTTNG_CONSUMER_UST
:
183 ret
= lttng_ustconsumer_allocate_stream(stream
);
190 ERR("Unknown consumer_data type");
194 DBG("Allocated stream %s (key %d, shm_fd %d, wait_fd %d, mmap_len %llu, out_fd %d)",
195 stream
->path_name
, stream
->key
,
198 (unsigned long long) stream
->mmap_len
,
205 * Add a stream to the global list protected by a mutex.
207 int consumer_add_stream(struct lttng_consumer_stream
*stream
)
211 pthread_mutex_lock(&consumer_data
.lock
);
212 /* Check if already exist */
213 if (consumer_find_stream(stream
->key
)) {
217 cds_list_add(&stream
->list
, &consumer_data
.stream_list
.head
);
218 consumer_data
.stream_count
++;
219 consumer_data
.need_update
= 1;
221 switch (consumer_data
.type
) {
222 case LTTNG_CONSUMER_KERNEL
:
224 case LTTNG_CONSUMER_UST
:
225 /* Streams are in CPU number order (we rely on this) */
226 stream
->cpu
= stream
->chan
->nr_streams
++;
229 ERR("Unknown consumer_data type");
235 pthread_mutex_unlock(&consumer_data
.lock
);
240 * Update a stream according to what we just received.
242 void consumer_change_stream_state(int stream_key
,
243 enum lttng_consumer_stream_state state
)
245 struct lttng_consumer_stream
*stream
;
247 pthread_mutex_lock(&consumer_data
.lock
);
248 stream
= consumer_find_stream(stream_key
);
250 stream
->state
= state
;
252 consumer_data
.need_update
= 1;
253 pthread_mutex_unlock(&consumer_data
.lock
);
257 * Remove a channel from the global list protected by a mutex. This
258 * function is also responsible for freeing its data structures.
260 void consumer_del_channel(struct lttng_consumer_channel
*channel
)
264 pthread_mutex_lock(&consumer_data
.lock
);
266 switch (consumer_data
.type
) {
267 case LTTNG_CONSUMER_KERNEL
:
269 case LTTNG_CONSUMER_UST
:
270 lttng_ustconsumer_del_channel(channel
);
273 ERR("Unknown consumer_data type");
278 cds_list_del(&channel
->list
);
279 if (channel
->mmap_base
!= NULL
) {
280 ret
= munmap(channel
->mmap_base
, channel
->mmap_len
);
285 if (channel
->wait_fd
>= 0) {
286 close(channel
->wait_fd
);
288 if (channel
->shm_fd
>= 0 && channel
->wait_fd
!= channel
->shm_fd
) {
289 close(channel
->shm_fd
);
293 pthread_mutex_unlock(&consumer_data
.lock
);
296 struct lttng_consumer_channel
*consumer_allocate_channel(
298 int shm_fd
, int wait_fd
,
300 uint64_t max_sb_size
)
302 struct lttng_consumer_channel
*channel
;
305 channel
= malloc(sizeof(*channel
));
306 if (channel
== NULL
) {
307 perror("malloc struct lttng_consumer_channel");
310 channel
->key
= channel_key
;
311 channel
->shm_fd
= shm_fd
;
312 channel
->wait_fd
= wait_fd
;
313 channel
->mmap_len
= mmap_len
;
314 channel
->max_sb_size
= max_sb_size
;
315 channel
->refcount
= 0;
316 channel
->nr_streams
= 0;
318 switch (consumer_data
.type
) {
319 case LTTNG_CONSUMER_KERNEL
:
320 channel
->mmap_base
= NULL
;
321 channel
->mmap_len
= 0;
323 case LTTNG_CONSUMER_UST
:
324 ret
= lttng_ustconsumer_allocate_channel(channel
);
331 ERR("Unknown consumer_data type");
335 DBG("Allocated channel (key %d, shm_fd %d, wait_fd %d, mmap_len %llu, max_sb_size %llu)",
339 (unsigned long long) channel
->mmap_len
,
340 (unsigned long long) channel
->max_sb_size
);
346 * Add a channel to the global list protected by a mutex.
348 int consumer_add_channel(struct lttng_consumer_channel
*channel
)
352 pthread_mutex_lock(&consumer_data
.lock
);
353 /* Check if already exist */
354 if (consumer_find_channel(channel
->key
)) {
358 cds_list_add(&channel
->list
, &consumer_data
.channel_list
.head
);
360 pthread_mutex_unlock(&consumer_data
.lock
);
365 * Allocate the pollfd structure and the local view of the out fds to avoid
366 * doing a lookup in the linked list and concurrency issues when writing is
367 * needed. Called with consumer_data.lock held.
369 * Returns the number of fds in the structures.
371 int consumer_update_poll_array(
372 struct lttng_consumer_local_data
*ctx
, struct pollfd
**pollfd
,
373 struct lttng_consumer_stream
**local_stream
)
375 struct lttng_consumer_stream
*iter
;
378 DBG("Updating poll fd array");
379 cds_list_for_each_entry(iter
, &consumer_data
.stream_list
.head
, list
) {
380 if (iter
->state
!= LTTNG_CONSUMER_ACTIVE_STREAM
) {
383 DBG("Active FD %d", iter
->wait_fd
);
384 (*pollfd
)[i
].fd
= iter
->wait_fd
;
385 (*pollfd
)[i
].events
= POLLIN
| POLLPRI
;
386 local_stream
[i
] = iter
;
391 * Insert the consumer_poll_pipe at the end of the array and don't
392 * increment i so nb_fd is the number of real FD.
394 (*pollfd
)[i
].fd
= ctx
->consumer_poll_pipe
[0];
395 (*pollfd
)[i
].events
= POLLIN
;
400 * Poll on the should_quit pipe and the command socket return -1 on error and
401 * should exit, 0 if data is available on the command socket
403 int lttng_consumer_poll_socket(struct pollfd
*consumer_sockpoll
)
407 num_rdy
= poll(consumer_sockpoll
, 2, -1);
409 perror("Poll error");
412 if (consumer_sockpoll
[0].revents
== POLLIN
) {
413 DBG("consumer_should_quit wake up");
423 * Set the error socket.
425 void lttng_consumer_set_error_sock(
426 struct lttng_consumer_local_data
*ctx
, int sock
)
428 ctx
->consumer_error_socket
= sock
;
432 * Set the command socket path.
435 void lttng_consumer_set_command_sock_path(
436 struct lttng_consumer_local_data
*ctx
, char *sock
)
438 ctx
->consumer_command_sock_path
= sock
;
442 * Send return code to the session daemon.
443 * If the socket is not defined, we return 0, it is not a fatal error
445 int lttng_consumer_send_error(
446 struct lttng_consumer_local_data
*ctx
, int cmd
)
448 if (ctx
->consumer_error_socket
> 0) {
449 return lttcomm_send_unix_sock(ctx
->consumer_error_socket
, &cmd
,
450 sizeof(enum lttcomm_sessiond_command
));
457 * Close all the tracefiles and stream fds, should be called when all instances
460 void lttng_consumer_cleanup(void)
462 struct lttng_consumer_stream
*iter
, *tmp
;
463 struct lttng_consumer_channel
*citer
, *ctmp
;
466 * close all outfd. Called when there are no more threads
467 * running (after joining on the threads), no need to protect
468 * list iteration with mutex.
470 cds_list_for_each_entry_safe(iter
, tmp
,
471 &consumer_data
.stream_list
.head
, list
) {
472 consumer_del_stream(iter
);
474 cds_list_for_each_entry_safe(citer
, ctmp
,
475 &consumer_data
.channel_list
.head
, list
) {
476 consumer_del_channel(citer
);
481 * Called from signal handler.
483 void lttng_consumer_should_exit(struct lttng_consumer_local_data
*ctx
)
487 ret
= write(ctx
->consumer_should_quit
[1], "4", 1);
489 perror("write consumer quit");
493 void lttng_consumer_sync_trace_file(
494 struct lttng_consumer_stream
*stream
, off_t orig_offset
)
496 int outfd
= stream
->out_fd
;
499 * This does a blocking write-and-wait on any page that belongs to the
500 * subbuffer prior to the one we just wrote.
501 * Don't care about error values, as these are just hints and ways to
502 * limit the amount of page cache used.
504 if (orig_offset
< stream
->chan
->max_sb_size
) {
507 sync_file_range(outfd
, orig_offset
- stream
->chan
->max_sb_size
,
508 stream
->chan
->max_sb_size
,
509 SYNC_FILE_RANGE_WAIT_BEFORE
510 | SYNC_FILE_RANGE_WRITE
511 | SYNC_FILE_RANGE_WAIT_AFTER
);
513 * Give hints to the kernel about how we access the file:
514 * POSIX_FADV_DONTNEED : we won't re-access data in a near future after
517 * We need to call fadvise again after the file grows because the
518 * kernel does not seem to apply fadvise to non-existing parts of the
521 * Call fadvise _after_ having waited for the page writeback to
522 * complete because the dirty page writeback semantic is not well
523 * defined. So it can be expected to lead to lower throughput in
526 posix_fadvise(outfd
, orig_offset
- stream
->chan
->max_sb_size
,
527 stream
->chan
->max_sb_size
, POSIX_FADV_DONTNEED
);
531 * Initialise the necessary environnement :
532 * - create a new context
533 * - create the poll_pipe
534 * - create the should_quit pipe (for signal handler)
535 * - create the thread pipe (for splice)
537 * Takes a function pointer as argument, this function is called when data is
538 * available on a buffer. This function is responsible to do the
539 * kernctl_get_next_subbuf, read the data with mmap or splice depending on the
540 * buffer configuration and then kernctl_put_next_subbuf at the end.
542 * Returns a pointer to the new context or NULL on error.
544 struct lttng_consumer_local_data
*lttng_consumer_create(
545 enum lttng_consumer_type type
,
546 int (*buffer_ready
)(struct lttng_consumer_stream
*stream
),
547 int (*recv_channel
)(struct lttng_consumer_channel
*channel
),
548 int (*recv_stream
)(struct lttng_consumer_stream
*stream
),
549 int (*update_stream
)(int stream_key
, uint32_t state
))
552 struct lttng_consumer_local_data
*ctx
;
554 assert(consumer_data
.type
== LTTNG_CONSUMER_UNKNOWN
||
555 consumer_data
.type
== type
);
556 consumer_data
.type
= type
;
558 ctx
= malloc(sizeof(struct lttng_consumer_local_data
));
560 perror("allocating context");
564 ctx
->consumer_error_socket
= -1;
565 /* assign the callbacks */
566 ctx
->on_buffer_ready
= buffer_ready
;
567 ctx
->on_recv_channel
= recv_channel
;
568 ctx
->on_recv_stream
= recv_stream
;
569 ctx
->on_update_stream
= update_stream
;
571 ret
= pipe(ctx
->consumer_poll_pipe
);
573 perror("Error creating poll pipe");
574 goto error_poll_pipe
;
577 ret
= pipe(ctx
->consumer_should_quit
);
579 perror("Error creating recv pipe");
580 goto error_quit_pipe
;
583 ret
= pipe(ctx
->consumer_thread_pipe
);
585 perror("Error creating thread pipe");
586 goto error_thread_pipe
;
593 for (i
= 0; i
< 2; i
++) {
596 err
= close(ctx
->consumer_should_quit
[i
]);
600 for (i
= 0; i
< 2; i
++) {
603 err
= close(ctx
->consumer_poll_pipe
[i
]);
613 * Close all fds associated with the instance and free the context.
615 void lttng_consumer_destroy(struct lttng_consumer_local_data
*ctx
)
617 close(ctx
->consumer_error_socket
);
618 close(ctx
->consumer_thread_pipe
[0]);
619 close(ctx
->consumer_thread_pipe
[1]);
620 close(ctx
->consumer_poll_pipe
[0]);
621 close(ctx
->consumer_poll_pipe
[1]);
622 close(ctx
->consumer_should_quit
[0]);
623 close(ctx
->consumer_should_quit
[1]);
624 unlink(ctx
->consumer_command_sock_path
);
629 * Mmap the ring buffer, read it and write the data to the tracefile.
631 * Returns the number of bytes written
633 int lttng_consumer_on_read_subbuffer_mmap(
634 struct lttng_consumer_local_data
*ctx
,
635 struct lttng_consumer_stream
*stream
, unsigned long len
)
637 switch (consumer_data
.type
) {
638 case LTTNG_CONSUMER_KERNEL
:
639 return lttng_kconsumer_on_read_subbuffer_mmap(ctx
, stream
, len
);
640 case LTTNG_CONSUMER_UST
:
641 return lttng_ustconsumer_on_read_subbuffer_mmap(ctx
, stream
, len
);
643 ERR("Unknown consumer_data type");
649 * Splice the data from the ring buffer to the tracefile.
651 * Returns the number of bytes spliced.
653 int lttng_consumer_on_read_subbuffer_splice(
654 struct lttng_consumer_local_data
*ctx
,
655 struct lttng_consumer_stream
*stream
, unsigned long len
)
657 switch (consumer_data
.type
) {
658 case LTTNG_CONSUMER_KERNEL
:
659 return lttng_kconsumer_on_read_subbuffer_splice(ctx
, stream
, len
);
660 case LTTNG_CONSUMER_UST
:
663 ERR("Unknown consumer_data type");
671 * Take a snapshot for a specific fd
673 * Returns 0 on success, < 0 on error
675 int lttng_consumer_take_snapshot(struct lttng_consumer_local_data
*ctx
,
676 struct lttng_consumer_stream
*stream
)
678 switch (consumer_data
.type
) {
679 case LTTNG_CONSUMER_KERNEL
:
680 return lttng_kconsumer_take_snapshot(ctx
, stream
);
681 case LTTNG_CONSUMER_UST
:
682 return lttng_ustconsumer_take_snapshot(ctx
, stream
);
684 ERR("Unknown consumer_data type");
692 * Get the produced position
694 * Returns 0 on success, < 0 on error
696 int lttng_consumer_get_produced_snapshot(
697 struct lttng_consumer_local_data
*ctx
,
698 struct lttng_consumer_stream
*stream
,
701 switch (consumer_data
.type
) {
702 case LTTNG_CONSUMER_KERNEL
:
703 return lttng_kconsumer_get_produced_snapshot(ctx
, stream
, pos
);
704 case LTTNG_CONSUMER_UST
:
705 return lttng_ustconsumer_get_produced_snapshot(ctx
, stream
, pos
);
707 ERR("Unknown consumer_data type");
713 int lttng_consumer_recv_cmd(struct lttng_consumer_local_data
*ctx
,
714 int sock
, struct pollfd
*consumer_sockpoll
)
716 switch (consumer_data
.type
) {
717 case LTTNG_CONSUMER_KERNEL
:
718 return lttng_kconsumer_recv_cmd(ctx
, sock
, consumer_sockpoll
);
719 case LTTNG_CONSUMER_UST
:
720 return lttng_ustconsumer_recv_cmd(ctx
, sock
, consumer_sockpoll
);
722 ERR("Unknown consumer_data type");
729 * This thread polls the fds in the ltt_fd_list to consume the data and write
730 * it to tracefile if necessary.
732 void *lttng_consumer_thread_poll_fds(void *data
)
734 int num_rdy
, num_hup
, high_prio
, ret
, i
;
735 struct pollfd
*pollfd
= NULL
;
736 /* local view of the streams */
737 struct lttng_consumer_stream
**local_stream
= NULL
;
738 /* local view of consumer_data.fds_count */
742 struct lttng_consumer_local_data
*ctx
= data
;
744 local_stream
= malloc(sizeof(struct lttng_consumer_stream
));
751 * the ltt_fd_list has been updated, we need to update our
752 * local array as well
754 pthread_mutex_lock(&consumer_data
.lock
);
755 if (consumer_data
.need_update
) {
756 if (pollfd
!= NULL
) {
760 if (local_stream
!= NULL
) {
765 /* allocate for all fds + 1 for the consumer_poll_pipe */
766 pollfd
= malloc((consumer_data
.stream_count
+ 1) * sizeof(struct pollfd
));
767 if (pollfd
== NULL
) {
768 perror("pollfd malloc");
769 pthread_mutex_unlock(&consumer_data
.lock
);
773 /* allocate for all fds + 1 for the consumer_poll_pipe */
774 local_stream
= malloc((consumer_data
.stream_count
+ 1) *
775 sizeof(struct lttng_consumer_stream
));
776 if (local_stream
== NULL
) {
777 perror("local_stream malloc");
778 pthread_mutex_unlock(&consumer_data
.lock
);
781 ret
= consumer_update_poll_array(ctx
, &pollfd
, local_stream
);
783 ERR("Error in allocating pollfd or local_outfds");
784 lttng_consumer_send_error(ctx
, CONSUMERD_POLL_ERROR
);
785 pthread_mutex_unlock(&consumer_data
.lock
);
789 consumer_data
.need_update
= 0;
791 pthread_mutex_unlock(&consumer_data
.lock
);
793 /* poll on the array of fds */
794 DBG("polling on %d fd", nb_fd
+ 1);
795 num_rdy
= poll(pollfd
, nb_fd
+ 1, consumer_poll_timeout
);
796 DBG("poll num_rdy : %d", num_rdy
);
798 perror("Poll error");
799 lttng_consumer_send_error(ctx
, CONSUMERD_POLL_ERROR
);
801 } else if (num_rdy
== 0) {
802 DBG("Polling thread timed out");
806 /* No FDs and consumer_quit, kconsumer_cleanup the thread */
807 if (nb_fd
== 0 && consumer_quit
== 1) {
812 * If the consumer_poll_pipe triggered poll go
813 * directly to the beginning of the loop to update the
814 * array. We want to prioritize array update over
815 * low-priority reads.
817 if (pollfd
[nb_fd
].revents
== POLLIN
) {
818 DBG("consumer_poll_pipe wake up");
819 tmp2
= read(ctx
->consumer_poll_pipe
[0], &tmp
, 1);
821 perror("read kconsumer poll");
826 /* Take care of high priority channels first. */
827 for (i
= 0; i
< nb_fd
; i
++) {
828 switch(pollfd
[i
].revents
) {
830 ERR("Error returned in polling fd %d.", pollfd
[i
].fd
);
831 consumer_del_stream(local_stream
[i
]);
835 DBG("Polling fd %d tells it has hung up.", pollfd
[i
].fd
);
836 consumer_del_stream(local_stream
[i
]);
840 ERR("Polling fd %d tells fd is not open.", pollfd
[i
].fd
);
841 consumer_del_stream(local_stream
[i
]);
845 DBG("Urgent read on fd %d", pollfd
[i
].fd
);
847 ret
= ctx
->on_buffer_ready(local_stream
[i
]);
848 /* it's ok to have an unavailable sub-buffer */
856 /* If every buffer FD has hung up, we end the read loop here */
857 if (nb_fd
> 0 && num_hup
== nb_fd
) {
858 DBG("every buffer FD has hung up\n");
859 if (consumer_quit
== 1) {
865 /* Take care of low priority channels. */
866 if (high_prio
== 0) {
867 for (i
= 0; i
< nb_fd
; i
++) {
868 if (pollfd
[i
].revents
== POLLIN
) {
869 DBG("Normal read on fd %d", pollfd
[i
].fd
);
870 ret
= ctx
->on_buffer_ready(local_stream
[i
]);
871 /* it's ok to have an unavailable subbuffer */
880 DBG("polling thread exiting");
881 if (pollfd
!= NULL
) {
885 if (local_stream
!= NULL
) {
893 * This thread listens on the consumerd socket and receives the file
894 * descriptors from the session daemon.
896 void *lttng_consumer_thread_receive_fds(void *data
)
898 int sock
, client_socket
, ret
;
900 * structure to poll for incoming data on communication socket avoids
901 * making blocking sockets.
903 struct pollfd consumer_sockpoll
[2];
904 struct lttng_consumer_local_data
*ctx
= data
;
906 DBG("Creating command socket %s", ctx
->consumer_command_sock_path
);
907 unlink(ctx
->consumer_command_sock_path
);
908 client_socket
= lttcomm_create_unix_sock(ctx
->consumer_command_sock_path
);
909 if (client_socket
< 0) {
910 ERR("Cannot create command socket");
914 ret
= lttcomm_listen_unix_sock(client_socket
);
919 DBG("Sending ready command to lttng-sessiond");
920 ret
= lttng_consumer_send_error(ctx
, CONSUMERD_COMMAND_SOCK_READY
);
921 /* return < 0 on error, but == 0 is not fatal */
923 ERR("Error sending ready command to lttng-sessiond");
927 ret
= fcntl(client_socket
, F_SETFL
, O_NONBLOCK
);
929 perror("fcntl O_NONBLOCK");
933 /* prepare the FDs to poll : to client socket and the should_quit pipe */
934 consumer_sockpoll
[0].fd
= ctx
->consumer_should_quit
[0];
935 consumer_sockpoll
[0].events
= POLLIN
| POLLPRI
;
936 consumer_sockpoll
[1].fd
= client_socket
;
937 consumer_sockpoll
[1].events
= POLLIN
| POLLPRI
;
939 if (lttng_consumer_poll_socket(consumer_sockpoll
) < 0) {
942 DBG("Connection on client_socket");
944 /* Blocking call, waiting for transmission */
945 sock
= lttcomm_accept_unix_sock(client_socket
);
950 ret
= fcntl(sock
, F_SETFL
, O_NONBLOCK
);
952 perror("fcntl O_NONBLOCK");
956 /* update the polling structure to poll on the established socket */
957 consumer_sockpoll
[1].fd
= sock
;
958 consumer_sockpoll
[1].events
= POLLIN
| POLLPRI
;
961 if (lttng_consumer_poll_socket(consumer_sockpoll
) < 0) {
964 DBG("Incoming command on sock");
965 ret
= lttng_consumer_recv_cmd(ctx
, sock
, consumer_sockpoll
);
966 if (ret
== -ENOENT
) {
967 DBG("Received STOP command");
971 ERR("Communication interrupted on command socket");
975 DBG("consumer_thread_receive_fds received quit from signal");
978 DBG("received fds on sock");
981 DBG("consumer_thread_receive_fds exiting");
984 * when all fds have hung up, the polling thread
990 * 2s of grace period, if no polling events occur during
991 * this period, the polling thread will exit even if there
992 * are still open FDs (should not happen, but safety mechanism).
994 consumer_poll_timeout
= LTTNG_CONSUMER_POLL_TIMEOUT
;
996 /* wake up the polling thread */
997 ret
= write(ctx
->consumer_poll_pipe
[1], "4", 1);
999 perror("poll pipe write");