Cleanup: remove ignored flags from poll events bitmasks
[lttng-tools.git] / src / bin / lttng-relayd / thread-utils.cpp
CommitLineData
8a00688e
MJ
1/*
2 * Copyright (C) 2022 EfficiOS Inc.
3 *
4 * SPDX-License-Identifier: GPL-2.0-only
5 *
6 */
7
8#include "lttng-relayd.hpp"
9
10#include <common/compat/poll.hpp>
11#include <common/error.hpp>
12#include <common/fd-tracker/utils.hpp>
13#include <common/readwrite.hpp>
14#include <common/utils.hpp>
15
16/*
17 * Quit pipe for all threads. This permits a single cancellation point
18 * for all threads when receiving an event on the pipe.
19 */
20static int thread_quit_pipe[2] = { -1, -1 };
21
22/*
23 * Write to writable pipe used to notify a thread.
24 */
25static int notify_thread_pipe(int wpipe)
26{
27 const auto ret = lttng_write(wpipe, "!", 1);
28
29 if (ret < 1) {
30 PERROR("Failed to write to thread pipe");
31 return -1;
32 }
33
34 return 0;
35}
36
37/*
38 * Initialize the thread quit pipe.
39 *
40 * Return -1 on error or 0 if all pipes are created.
41 */
42int relayd_init_thread_quit_pipe(void)
43{
44 return fd_tracker_util_pipe_open_cloexec(
45 the_fd_tracker, "Thread quit pipe", thread_quit_pipe);
46}
47
48/*
49 * Notify the threads to initiate shutdown.
50 *
51 * Return 0 on success or -1 on error.
52 */
53int relayd_notify_thread_quit_pipe(void)
54{
55 return notify_thread_pipe(thread_quit_pipe[1]);
56}
57
58/*
59 * Close the thread quit pipe.
60 */
61void relayd_close_thread_quit_pipe(void)
62{
63 if (thread_quit_pipe[0] != -1) {
64 (void) fd_tracker_util_pipe_close(
65 the_fd_tracker, thread_quit_pipe);
66 }
67}
68
69/*
70 * Return 1 if 'fd' is the thread quit pipe read fd.
71 */
72bool relayd_is_thread_quit_pipe(const int fd)
73{
74 return (fd == thread_quit_pipe[0]);
75}
76
77/*
78 * Create a poll set with O_CLOEXEC and add the thread quit pipe to the set.
79 */
80int create_named_thread_poll_set(struct lttng_poll_event *events,
81 int size, const char *name)
82{
83 if (events == NULL || size == 0) {
84 return -1;
85 }
86
87 const auto create_ret = fd_tracker_util_poll_create(the_fd_tracker,
88 name, events, 1, LTTNG_CLOEXEC);
89 if (create_ret) {
90 PERROR("Failed to create \"%s\" poll file descriptor", name);
91 return -1;
92 }
93
94 /* Add thread quit pipe to monitored events. */
1524f98c 95 const auto poll_add_ret = lttng_poll_add(events, thread_quit_pipe[0], LPOLLIN);
8a00688e
MJ
96 if (poll_add_ret < 0) {
97 return -1;
98 }
99
100 return 0;
101}
This page took 0.026167 seconds and 4 git commands to generate.