helper_thread: refactor status-interval and steadystate code
[fio.git] / helper_thread.c
CommitLineData
c31092b8 1#include <signal.h>
4f37732a
BVA
2#ifdef CONFIG_VALGRIND_DEV
3#include <valgrind/drd.h>
4#else
5#define DRD_IGNORE_VAR(x) do { } while (0)
6#endif
7
a39fb9ea
JA
8#include "fio.h"
9#include "smalloc.h"
10#include "helper_thread.h"
16e56d25 11#include "steadystate.h"
ae626d4e 12#include "pshared.h"
a39fb9ea 13
52a552e2
BVA
14enum action {
15 A_EXIT = 1,
16 A_RESET = 2,
17 A_DO_STAT = 3,
18};
19
a39fb9ea
JA
20static struct helper_data {
21 volatile int exit;
52a552e2 22 int pipe[2]; /* 0: read end; 1: write end. */
a39fb9ea
JA
23 struct sk_out *sk_out;
24 pthread_t thread;
971caeb1 25 struct fio_sem *startup_sem;
a39fb9ea
JA
26} *helper_data;
27
28void helper_thread_destroy(void)
29{
998e9ebb
BVA
30 if (!helper_data)
31 return;
32
52a552e2
BVA
33 close(helper_data->pipe[0]);
34 close(helper_data->pipe[1]);
a39fb9ea
JA
35 sfree(helper_data);
36}
37
52a552e2
BVA
38#ifdef _WIN32
39static void sock_init(void)
a39fb9ea 40{
52a552e2
BVA
41 WSADATA wsaData;
42 int res;
a39fb9ea 43
52a552e2
BVA
44 /* It is allowed to call WSAStartup() more than once. */
45 res = WSAStartup(MAKEWORD(2, 2), &wsaData);
46 assert(res == 0);
47}
a39fb9ea 48
52a552e2
BVA
49static int make_nonblocking(int fd)
50{
51 unsigned long arg = 1;
dda11987 52
52a552e2 53 return ioctlsocket(fd, FIONBIO, &arg);
a39fb9ea
JA
54}
55
52a552e2
BVA
56static int write_to_pipe(int fd, const void *buf, size_t len)
57{
58 return send(fd, buf, len, 0);
59}
60
61static int read_from_pipe(int fd, void *buf, size_t len)
62{
63 return recv(fd, buf, len, 0);
64}
65#else
66static void sock_init(void)
67{
68}
69
70static int make_nonblocking(int fd)
71{
72 return fcntl(fd, F_SETFL, O_NONBLOCK);
73}
74
75static int write_to_pipe(int fd, const void *buf, size_t len)
76{
77 return write(fd, buf, len);
78}
79
80static int read_from_pipe(int fd, void *buf, size_t len)
81{
82 return read(fd, buf, len);
83}
84#endif
85
86static void submit_action(enum action a)
a39fb9ea 87{
52a552e2
BVA
88 const char data = a;
89 int ret;
90
dda11987
JA
91 if (!helper_data)
92 return;
93
52a552e2
BVA
94 ret = write_to_pipe(helper_data->pipe[1], &data, sizeof(data));
95 assert(ret == 1);
96}
97
98void helper_reset(void)
99{
100 submit_action(A_RESET);
101}
102
103/*
104 * May be invoked in signal handler context and hence must only call functions
105 * that are async-signal-safe. See also
106 * https://pubs.opengroup.org/onlinepubs/9699919799/functions/V2_chap02.html#tag_15_04_03.
107 */
108void helper_do_stat(void)
109{
110 submit_action(A_DO_STAT);
a39fb9ea
JA
111}
112
113bool helper_should_exit(void)
114{
115 if (!helper_data)
116 return true;
117
118 return helper_data->exit;
119}
120
121void helper_thread_exit(void)
122{
998e9ebb
BVA
123 if (!helper_data)
124 return;
125
a39fb9ea 126 helper_data->exit = 1;
52a552e2
BVA
127 submit_action(A_EXIT);
128 pthread_join(helper_data->thread, NULL);
a39fb9ea
JA
129}
130
3da71e37
VF
131static unsigned int task_helper(struct timespec *last, struct timespec *now, unsigned int period, void do_task())
132{
133 unsigned int next, since;
134
135 since = mtime_since(last, now);
136 if (since >= period || period - since < 10) {
137 do_task();
138 timespec_add_msec(last, since);
139 if (since > period)
140 next = period - (since - period);
141 else
142 next = period;
143 } else
144 next = period - since;
145
146 return next;
147}
148
a39fb9ea
JA
149static void *helper_thread_main(void *data)
150{
151 struct helper_data *hd = data;
3da71e37 152 unsigned int msec_to_next_event, next_log, next_si = status_interval;
0f77d30d
VF
153 unsigned int next_ss = STEADYSTATE_MSEC;
154 struct timespec ts, last_du, last_ss, last_si;
52a552e2 155 char action;
a39fb9ea
JA
156 int ret = 0;
157
158 sk_out_assign(hd->sk_out);
159
c31092b8
BVA
160#ifdef HAVE_PTHREAD_SIGMASK
161 {
162 sigset_t sigmask;
163
164 /* Let another thread handle signals. */
165 ret = pthread_sigmask(SIG_UNBLOCK, NULL, &sigmask);
166 assert(ret == 0);
167 ret = pthread_sigmask(SIG_BLOCK, &sigmask, NULL);
168 assert(ret == 0);
169 }
170#endif
171
78b66d32
BVA
172#ifdef CONFIG_PTHREAD_CONDATTR_SETCLOCK
173 clock_gettime(CLOCK_MONOTONIC, &ts);
174#else
175 clock_gettime(CLOCK_REALTIME, &ts);
176#endif
8b6a404c
VF
177 memcpy(&last_du, &ts, sizeof(ts));
178 memcpy(&last_ss, &ts, sizeof(ts));
0f77d30d 179 memcpy(&last_si, &ts, sizeof(ts));
a39fb9ea 180
971caeb1 181 fio_sem_up(hd->startup_sem);
a39fb9ea
JA
182
183 msec_to_next_event = DISK_UTIL_MSEC;
184 while (!ret && !hd->exit) {
3da71e37 185 uint64_t since_du;
52a552e2 186 struct timeval timeout = {
0e59dd68
VF
187 .tv_sec = msec_to_next_event / 1000,
188 .tv_usec = (msec_to_next_event % 1000) * 1000,
52a552e2
BVA
189 };
190 fd_set rfds, efds;
a39fb9ea 191
52a552e2
BVA
192 if (read_from_pipe(hd->pipe[0], &action, sizeof(action)) < 0) {
193 FD_ZERO(&rfds);
194 FD_SET(hd->pipe[0], &rfds);
195 FD_ZERO(&efds);
196 FD_SET(hd->pipe[0], &efds);
700ad386
BVA
197 ret = select(1, &rfds, NULL, &efds, &timeout);
198 if (ret < 0)
199 log_err("fio: select() call in helper thread failed: %s",
200 strerror(errno));
52a552e2
BVA
201 if (read_from_pipe(hd->pipe[0], &action, sizeof(action)) <
202 0)
203 action = 0;
204 }
a39fb9ea 205
78b66d32
BVA
206#ifdef CONFIG_PTHREAD_CONDATTR_SETCLOCK
207 clock_gettime(CLOCK_MONOTONIC, &ts);
208#else
209 clock_gettime(CLOCK_REALTIME, &ts);
210#endif
a39fb9ea 211
52a552e2
BVA
212 if (action == A_RESET) {
213 last_du = ts;
214 last_ss = ts;
a39fb9ea
JA
215 }
216
8b6a404c 217 since_du = mtime_since(&last_du, &ts);
a39fb9ea
JA
218 if (since_du >= DISK_UTIL_MSEC || DISK_UTIL_MSEC - since_du < 10) {
219 ret = update_io_ticks();
8b6a404c 220 timespec_add_msec(&last_du, DISK_UTIL_MSEC);
a39fb9ea
JA
221 msec_to_next_event = DISK_UTIL_MSEC;
222 if (since_du >= DISK_UTIL_MSEC)
223 msec_to_next_event -= (since_du - DISK_UTIL_MSEC);
dd290fb4
VF
224 } else
225 msec_to_next_event = DISK_UTIL_MSEC - since_du;
a39fb9ea 226
52a552e2 227 if (action == A_DO_STAT)
a39fb9ea 228 __show_running_run_stats();
a39fb9ea 229
0f77d30d 230 if (status_interval) {
3da71e37 231 next_si = task_helper(&last_si, &ts, status_interval, __show_running_run_stats);
0f77d30d
VF
232 msec_to_next_event = min(next_si, msec_to_next_event);
233 }
234
a39fb9ea
JA
235 next_log = calc_log_samples();
236 if (!next_log)
237 next_log = DISK_UTIL_MSEC;
238
84784e07 239 if (steadystate_enabled) {
3da71e37
VF
240 next_ss = task_helper(&last_ss, &ts, STEADYSTATE_MSEC, steadystate_check);
241 msec_to_next_event = min(next_ss, msec_to_next_event);
16e56d25
VF
242 }
243
3da71e37
VF
244 msec_to_next_event = min(next_log, msec_to_next_event);
245 dprint(FD_HELPERTHREAD, "next_si: %u, next_ss: %u, next_log: %u, msec_to_next_event: %u\n",
246 next_si, next_ss, next_log, msec_to_next_event);
a39fb9ea
JA
247
248 if (!is_backend)
249 print_thread_status();
250 }
251
252 fio_writeout_logs(false);
253
254 sk_out_drop();
255 return NULL;
256}
257
52a552e2
BVA
258/*
259 * Connect two sockets to each other to emulate the pipe() system call on Windows.
260 */
261int pipe_over_loopback(int fd[2])
262{
263 struct sockaddr_in addr = { .sin_family = AF_INET };
264 socklen_t len = sizeof(addr);
265 int res;
266
267 addr.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
268
269 sock_init();
270
271 fd[0] = socket(AF_INET, SOCK_STREAM, 0);
272 if (fd[0] < 0)
273 goto err;
274 fd[1] = socket(AF_INET, SOCK_STREAM, 0);
275 if (fd[1] < 0)
276 goto close_fd_0;
277 res = bind(fd[0], (struct sockaddr *)&addr, len);
278 if (res < 0)
279 goto close_fd_1;
280 res = getsockname(fd[0], (struct sockaddr *)&addr, &len);
281 if (res < 0)
282 goto close_fd_1;
283 res = listen(fd[0], 1);
284 if (res < 0)
285 goto close_fd_1;
286 res = connect(fd[1], (struct sockaddr *)&addr, len);
287 if (res < 0)
288 goto close_fd_1;
289 res = accept(fd[0], NULL, NULL);
290 if (res < 0)
291 goto close_fd_1;
292 close(fd[0]);
293 fd[0] = res;
294 return 0;
295
296close_fd_1:
297 close(fd[1]);
298
299close_fd_0:
300 close(fd[0]);
301
302err:
303 return -1;
304}
305
971caeb1 306int helper_thread_create(struct fio_sem *startup_sem, struct sk_out *sk_out)
a39fb9ea
JA
307{
308 struct helper_data *hd;
309 int ret;
310
b3090ff4 311 hd = scalloc(1, sizeof(*hd));
a39fb9ea
JA
312
313 setup_disk_util();
16e56d25 314 steadystate_setup();
a39fb9ea
JA
315
316 hd->sk_out = sk_out;
34febb23 317
52a552e2
BVA
318#if defined(CONFIG_PIPE2)
319 ret = pipe2(hd->pipe, O_CLOEXEC);
320#elif defined(CONFIG_PIPE)
321 ret = pipe(hd->pipe);
322#else
323 ret = pipe_over_loopback(hd->pipe);
324#endif
34febb23 325 if (ret)
f9e5b5ee 326 return 1;
34febb23 327
52a552e2
BVA
328 ret = make_nonblocking(hd->pipe[0]);
329 assert(ret >= 0);
330
971caeb1 331 hd->startup_sem = startup_sem;
a39fb9ea 332
4f37732a
BVA
333 DRD_IGNORE_VAR(helper_data);
334
a39fb9ea
JA
335 ret = pthread_create(&hd->thread, NULL, helper_thread_main, hd);
336 if (ret) {
337 log_err("Can't create helper thread: %s\n", strerror(ret));
338 return 1;
339 }
340
341 helper_data = hd;
342
971caeb1
BVA
343 dprint(FD_MUTEX, "wait on startup_sem\n");
344 fio_sem_down(startup_sem);
345 dprint(FD_MUTEX, "done waiting on startup_sem\n");
a39fb9ea
JA
346 return 0;
347}