helper_thread: fix inconsistent status intervals
[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
131static void *helper_thread_main(void *data)
132{
133 struct helper_data *hd = data;
0f77d30d
VF
134 unsigned int msec_to_next_event, next_log, next_si;
135 unsigned int next_ss = STEADYSTATE_MSEC;
136 struct timespec ts, last_du, last_ss, last_si;
52a552e2 137 char action;
a39fb9ea
JA
138 int ret = 0;
139
140 sk_out_assign(hd->sk_out);
141
c31092b8
BVA
142#ifdef HAVE_PTHREAD_SIGMASK
143 {
144 sigset_t sigmask;
145
146 /* Let another thread handle signals. */
147 ret = pthread_sigmask(SIG_UNBLOCK, NULL, &sigmask);
148 assert(ret == 0);
149 ret = pthread_sigmask(SIG_BLOCK, &sigmask, NULL);
150 assert(ret == 0);
151 }
152#endif
153
78b66d32
BVA
154#ifdef CONFIG_PTHREAD_CONDATTR_SETCLOCK
155 clock_gettime(CLOCK_MONOTONIC, &ts);
156#else
157 clock_gettime(CLOCK_REALTIME, &ts);
158#endif
8b6a404c
VF
159 memcpy(&last_du, &ts, sizeof(ts));
160 memcpy(&last_ss, &ts, sizeof(ts));
0f77d30d 161 memcpy(&last_si, &ts, sizeof(ts));
a39fb9ea 162
971caeb1 163 fio_sem_up(hd->startup_sem);
a39fb9ea
JA
164
165 msec_to_next_event = DISK_UTIL_MSEC;
166 while (!ret && !hd->exit) {
0f77d30d 167 uint64_t since_du, since_si, since_ss = 0;
52a552e2 168 struct timeval timeout = {
0e59dd68
VF
169 .tv_sec = msec_to_next_event / 1000,
170 .tv_usec = (msec_to_next_event % 1000) * 1000,
52a552e2
BVA
171 };
172 fd_set rfds, efds;
a39fb9ea 173
52a552e2
BVA
174 if (read_from_pipe(hd->pipe[0], &action, sizeof(action)) < 0) {
175 FD_ZERO(&rfds);
176 FD_SET(hd->pipe[0], &rfds);
177 FD_ZERO(&efds);
178 FD_SET(hd->pipe[0], &efds);
700ad386
BVA
179 ret = select(1, &rfds, NULL, &efds, &timeout);
180 if (ret < 0)
181 log_err("fio: select() call in helper thread failed: %s",
182 strerror(errno));
52a552e2
BVA
183 if (read_from_pipe(hd->pipe[0], &action, sizeof(action)) <
184 0)
185 action = 0;
186 }
a39fb9ea 187
78b66d32
BVA
188#ifdef CONFIG_PTHREAD_CONDATTR_SETCLOCK
189 clock_gettime(CLOCK_MONOTONIC, &ts);
190#else
191 clock_gettime(CLOCK_REALTIME, &ts);
192#endif
a39fb9ea 193
52a552e2
BVA
194 if (action == A_RESET) {
195 last_du = ts;
196 last_ss = ts;
a39fb9ea
JA
197 }
198
8b6a404c 199 since_du = mtime_since(&last_du, &ts);
a39fb9ea
JA
200 if (since_du >= DISK_UTIL_MSEC || DISK_UTIL_MSEC - since_du < 10) {
201 ret = update_io_ticks();
8b6a404c 202 timespec_add_msec(&last_du, DISK_UTIL_MSEC);
a39fb9ea
JA
203 msec_to_next_event = DISK_UTIL_MSEC;
204 if (since_du >= DISK_UTIL_MSEC)
205 msec_to_next_event -= (since_du - DISK_UTIL_MSEC);
dd290fb4
VF
206 } else
207 msec_to_next_event = DISK_UTIL_MSEC - since_du;
a39fb9ea 208
52a552e2 209 if (action == A_DO_STAT)
a39fb9ea 210 __show_running_run_stats();
a39fb9ea 211
0f77d30d
VF
212 if (status_interval) {
213 since_si = mtime_since(&last_si, &ts);
214 if (since_si >= status_interval || status_interval - since_si < 10) {
215 __show_running_run_stats();
216 timespec_add_msec(&last_si, since_si);
217 if (since_si > status_interval)
218 next_si = status_interval - (since_si - status_interval);
219 else
220 next_si = status_interval;
221 } else
222 next_si = status_interval - since_si;
223 msec_to_next_event = min(next_si, msec_to_next_event);
224 }
225
a39fb9ea
JA
226 next_log = calc_log_samples();
227 if (!next_log)
228 next_log = DISK_UTIL_MSEC;
229
84784e07 230 if (steadystate_enabled) {
8b6a404c 231 since_ss = mtime_since(&last_ss, &ts);
16e56d25
VF
232 if (since_ss >= STEADYSTATE_MSEC || STEADYSTATE_MSEC - since_ss < 10) {
233 steadystate_check();
8b6a404c 234 timespec_add_msec(&last_ss, since_ss);
16e56d25
VF
235 if (since_ss > STEADYSTATE_MSEC)
236 next_ss = STEADYSTATE_MSEC - (since_ss - STEADYSTATE_MSEC);
237 else
238 next_ss = STEADYSTATE_MSEC;
c27cc65f 239 } else
16e56d25
VF
240 next_ss = STEADYSTATE_MSEC - since_ss;
241 }
242
243 msec_to_next_event = min(min(next_log, msec_to_next_event), next_ss);
e569ca6b 244 dprint(FD_HELPERTHREAD, "since_ss: %llu, next_ss: %u, next_log: %u, msec_to_next_event: %u\n", (unsigned long long)since_ss, next_ss, next_log, msec_to_next_event);
a39fb9ea
JA
245
246 if (!is_backend)
247 print_thread_status();
248 }
249
250 fio_writeout_logs(false);
251
252 sk_out_drop();
253 return NULL;
254}
255
52a552e2
BVA
256/*
257 * Connect two sockets to each other to emulate the pipe() system call on Windows.
258 */
259int pipe_over_loopback(int fd[2])
260{
261 struct sockaddr_in addr = { .sin_family = AF_INET };
262 socklen_t len = sizeof(addr);
263 int res;
264
265 addr.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
266
267 sock_init();
268
269 fd[0] = socket(AF_INET, SOCK_STREAM, 0);
270 if (fd[0] < 0)
271 goto err;
272 fd[1] = socket(AF_INET, SOCK_STREAM, 0);
273 if (fd[1] < 0)
274 goto close_fd_0;
275 res = bind(fd[0], (struct sockaddr *)&addr, len);
276 if (res < 0)
277 goto close_fd_1;
278 res = getsockname(fd[0], (struct sockaddr *)&addr, &len);
279 if (res < 0)
280 goto close_fd_1;
281 res = listen(fd[0], 1);
282 if (res < 0)
283 goto close_fd_1;
284 res = connect(fd[1], (struct sockaddr *)&addr, len);
285 if (res < 0)
286 goto close_fd_1;
287 res = accept(fd[0], NULL, NULL);
288 if (res < 0)
289 goto close_fd_1;
290 close(fd[0]);
291 fd[0] = res;
292 return 0;
293
294close_fd_1:
295 close(fd[1]);
296
297close_fd_0:
298 close(fd[0]);
299
300err:
301 return -1;
302}
303
971caeb1 304int helper_thread_create(struct fio_sem *startup_sem, struct sk_out *sk_out)
a39fb9ea
JA
305{
306 struct helper_data *hd;
307 int ret;
308
b3090ff4 309 hd = scalloc(1, sizeof(*hd));
a39fb9ea
JA
310
311 setup_disk_util();
16e56d25 312 steadystate_setup();
a39fb9ea
JA
313
314 hd->sk_out = sk_out;
34febb23 315
52a552e2
BVA
316#if defined(CONFIG_PIPE2)
317 ret = pipe2(hd->pipe, O_CLOEXEC);
318#elif defined(CONFIG_PIPE)
319 ret = pipe(hd->pipe);
320#else
321 ret = pipe_over_loopback(hd->pipe);
322#endif
34febb23 323 if (ret)
f9e5b5ee 324 return 1;
34febb23 325
52a552e2
BVA
326 ret = make_nonblocking(hd->pipe[0]);
327 assert(ret >= 0);
328
971caeb1 329 hd->startup_sem = startup_sem;
a39fb9ea 330
4f37732a
BVA
331 DRD_IGNORE_VAR(helper_data);
332
a39fb9ea
JA
333 ret = pthread_create(&hd->thread, NULL, helper_thread_main, hd);
334 if (ret) {
335 log_err("Can't create helper thread: %s\n", strerror(ret));
336 return 1;
337 }
338
339 helper_data = hd;
340
971caeb1
BVA
341 dprint(FD_MUTEX, "wait on startup_sem\n");
342 fio_sem_down(startup_sem);
343 dprint(FD_MUTEX, "done waiting on startup_sem\n");
a39fb9ea
JA
344 return 0;
345}