engines/net: turn off UDP package dropping if buf size doesn't match
[fio.git] / client.c
CommitLineData
132159a5
JA
1#include <stdio.h>
2#include <stdlib.h>
3#include <unistd.h>
4#include <limits.h>
5#include <errno.h>
6#include <fcntl.h>
7#include <sys/poll.h>
8#include <sys/types.h>
9#include <sys/stat.h>
10#include <sys/wait.h>
d05c4a03 11#include <sys/socket.h>
87aa8f19 12#include <sys/un.h>
132159a5
JA
13#include <netinet/in.h>
14#include <arpa/inet.h>
15#include <netdb.h>
9e22ecb0 16#include <signal.h>
3989b143 17#ifdef CONFIG_ZLIB
1b42725f 18#include <zlib.h>
3989b143 19#endif
132159a5
JA
20
21#include "fio.h"
dd366728 22#include "client.h"
132159a5 23#include "server.h"
b66570dc 24#include "flist.h"
3c5f57e3 25#include "hash.h"
132159a5 26
dd366728 27static void handle_du(struct fio_client *client, struct fio_net_cmd *cmd);
89e5fad9
JA
28static void handle_ts(struct fio_client *client, struct fio_net_cmd *cmd);
29static void handle_gs(struct fio_client *client, struct fio_net_cmd *cmd);
dd366728 30static void handle_probe(struct fio_client *client, struct fio_net_cmd *cmd);
084d1c6f 31static void handle_text(struct fio_client *client, struct fio_net_cmd *cmd);
6b79c80c 32static void handle_stop(struct fio_client *client, struct fio_net_cmd *cmd);
85dd01e7 33static void handle_start(struct fio_client *client, struct fio_net_cmd *cmd);
dd366728
SC
34
35struct client_ops fio_client_ops = {
35c0ba7f 36 .text = handle_text,
0420ba6a
JA
37 .disk_util = handle_du,
38 .thread_status = handle_ts,
39 .group_stats = handle_gs,
6b79c80c 40 .stop = handle_stop,
85dd01e7 41 .start = handle_start,
a5276616 42 .eta = display_thread_status,
0420ba6a 43 .probe = handle_probe,
6433ee05 44 .eta_msec = FIO_CLIENT_DEF_ETA_MSEC,
46bcd498 45 .client_type = FIO_CLIENT_TYPE_CLI,
dd366728
SC
46};
47
af9c9fb3 48static struct timeval eta_tv;
48fbb46e 49
b66570dc 50static FLIST_HEAD(client_list);
82c1ed38 51static FLIST_HEAD(eta_list);
b66570dc 52
3f3a4542
JA
53static FLIST_HEAD(arg_list);
54
3650a3ca
JA
55struct thread_stat client_ts;
56struct group_run_stats client_gs;
57int sum_stat_clients;
58
37f0c1ae 59static int sum_stat_nr;
952b05e0
CF
60static struct json_object *root = NULL;
61static struct json_array *clients_array = NULL;
62static struct json_array *du_array = NULL;
108fea77 63static int do_output_all_clients;
37f0c1ae 64
3c5f57e3
JA
65#define FIO_CLIENT_HASH_BITS 7
66#define FIO_CLIENT_HASH_SZ (1 << FIO_CLIENT_HASH_BITS)
67#define FIO_CLIENT_HASH_MASK (FIO_CLIENT_HASH_SZ - 1)
bebe6398 68static struct flist_head client_hash[FIO_CLIENT_HASH_SZ];
3c5f57e3 69
bebe6398 70static void fio_client_add_hash(struct fio_client *client)
3c5f57e3
JA
71{
72 int bucket = hash_long(client->fd, FIO_CLIENT_HASH_BITS);
73
74 bucket &= FIO_CLIENT_HASH_MASK;
bebe6398 75 flist_add(&client->hash_list, &client_hash[bucket]);
3c5f57e3
JA
76}
77
bebe6398 78static void fio_client_remove_hash(struct fio_client *client)
3c5f57e3 79{
bebe6398
JA
80 if (!flist_empty(&client->hash_list))
81 flist_del_init(&client->hash_list);
3c5f57e3
JA
82}
83
84static void fio_init fio_client_hash_init(void)
85{
86 int i;
87
bebe6398
JA
88 for (i = 0; i < FIO_CLIENT_HASH_SZ; i++)
89 INIT_FLIST_HEAD(&client_hash[i]);
3c5f57e3
JA
90}
91
952b05e0
CF
92static void fio_client_json_init(void)
93{
94 if (output_format != FIO_OUTPUT_JSON)
95 return;
96 root = json_create_object();
97 json_object_add_value_string(root, "fio version", fio_version_string);
98 clients_array = json_create_array();
99 json_object_add_value_array(root, "client_stats", clients_array);
100 du_array = json_create_array();
101 json_object_add_value_array(root, "disk_util", du_array);
102}
103
104static void fio_client_json_fini(void)
105{
106 if (output_format != FIO_OUTPUT_JSON)
107 return;
108 json_print_object(root);
109 log_info("\n");
110 json_free_object(root);
111 root = NULL;
112 clients_array = NULL;
113 du_array = NULL;
114}
115
b66570dc
JA
116static struct fio_client *find_client_by_fd(int fd)
117{
3c5f57e3 118 int bucket = hash_long(fd, FIO_CLIENT_HASH_BITS) & FIO_CLIENT_HASH_MASK;
b66570dc
JA
119 struct fio_client *client;
120 struct flist_head *entry;
121
bebe6398
JA
122 flist_for_each(entry, &client_hash[bucket]) {
123 client = flist_entry(entry, struct fio_client, hash_list);
b66570dc 124
e55f8f30
JA
125 if (client->fd == fd) {
126 client->refs++;
b66570dc 127 return client;
e55f8f30 128 }
b66570dc
JA
129 }
130
131 return NULL;
132}
133
3af45201 134void fio_put_client(struct fio_client *client)
b66570dc 135{
5121a9aa
JA
136 if (--client->refs)
137 return;
138
3af45201
JA
139 free(client->hostname);
140 if (client->argv)
141 free(client->argv);
142 if (client->name)
143 free(client->name);
323255cc
JA
144 while (client->nr_files) {
145 struct client_file *cf = &client->files[--client->nr_files];
146
147 free(cf->file);
148 }
149 if (client->files)
150 free(client->files);
3af45201 151
108fea77
JA
152 if (!client->did_stat)
153 sum_stat_clients -= client->nr_stat;
154
3af45201
JA
155 free(client);
156}
157
158static void remove_client(struct fio_client *client)
159{
160 assert(client->refs);
161
39e8e016 162 dprint(FD_NET, "client: removed <%s>\n", client->hostname);
3af45201
JA
163
164 if (!flist_empty(&client->list))
165 flist_del_init(&client->list);
3c5f57e3 166
bebe6398 167 fio_client_remove_hash(client);
81179eec 168
82c1ed38
JA
169 if (!flist_empty(&client->eta_list)) {
170 flist_del_init(&client->eta_list);
a5276616 171 fio_client_dec_jobs_eta(client->eta_in_flight, client->ops->eta);
82c1ed38 172 }
af9c9fb3 173
1e0c184e
JA
174 close(client->fd);
175 client->fd = -1;
176
0cf3ece0
JA
177 if (client->ops->removed)
178 client->ops->removed(client);
179
3c5f57e3 180 nr_clients--;
3af45201 181 fio_put_client(client);
5121a9aa
JA
182}
183
343cb4a9
JA
184struct fio_client *fio_get_client(struct fio_client *client)
185{
186 client->refs++;
187 return client;
188}
189
fa2ea806
JA
190static void __fio_client_add_cmd_option(struct fio_client *client,
191 const char *opt)
81179eec 192{
39e8e016
JA
193 int index;
194
195 index = client->argc++;
81179eec 196 client->argv = realloc(client->argv, sizeof(char *) * client->argc);
39e8e016
JA
197 client->argv[index] = strdup(opt);
198 dprint(FD_NET, "client: add cmd %d: %s\n", index, opt);
81179eec
JA
199}
200
fa2ea806 201void fio_client_add_cmd_option(void *cookie, const char *opt)
81179eec 202{
bebe6398 203 struct fio_client *client = cookie;
3f3a4542 204 struct flist_head *entry;
81179eec 205
bebe6398 206 if (!client || !opt)
fa2ea806 207 return;
81179eec 208
fa2ea806 209 __fio_client_add_cmd_option(client, opt);
3f3a4542
JA
210
211 /*
212 * Duplicate arguments to shared client group
213 */
214 flist_for_each(entry, &arg_list) {
215 client = flist_entry(entry, struct fio_client, arg_list);
216
217 __fio_client_add_cmd_option(client, opt);
218 }
81179eec
JA
219}
220
a5276616
JA
221struct fio_client *fio_client_add_explicit(struct client_ops *ops,
222 const char *hostname, int type,
3ec62ec4
JA
223 int port)
224{
225 struct fio_client *client;
226
227 client = malloc(sizeof(*client));
228 memset(client, 0, sizeof(*client));
229
230 INIT_FLIST_HEAD(&client->list);
231 INIT_FLIST_HEAD(&client->hash_list);
232 INIT_FLIST_HEAD(&client->arg_list);
233 INIT_FLIST_HEAD(&client->eta_list);
234 INIT_FLIST_HEAD(&client->cmd_list);
235
236 client->hostname = strdup(hostname);
237
238 if (type == Fio_client_socket)
239 client->is_sock = 1;
240 else {
241 int ipv6;
242
243 ipv6 = type == Fio_client_ipv6;
3aa3ceeb 244 if (fio_server_parse_host(hostname, ipv6,
3ec62ec4
JA
245 &client->addr.sin_addr,
246 &client->addr6.sin6_addr))
247 goto err;
248
249 client->port = port;
250 }
251
252 client->fd = -1;
a5276616 253 client->ops = ops;
5121a9aa 254 client->refs = 1;
46bcd498 255 client->type = ops->client_type;
3ec62ec4
JA
256
257 __fio_client_add_cmd_option(client, "fio");
258
259 flist_add(&client->list, &client_list);
260 nr_clients++;
261 dprint(FD_NET, "client: added <%s>\n", client->hostname);
262 return client;
263err:
264 free(client);
265 return NULL;
266}
267
323255cc 268int fio_client_add_ini_file(void *cookie, const char *ini_file, int remote)
14ea90ed
JA
269{
270 struct fio_client *client = cookie;
323255cc 271 struct client_file *cf;
14ea90ed 272 size_t new_size;
323255cc 273 void *new_files;
14ea90ed
JA
274
275 dprint(FD_NET, "client <%s>: add ini %s\n", client->hostname, ini_file);
276
323255cc
JA
277 new_size = (client->nr_files + 1) * sizeof(struct client_file);
278 new_files = realloc(client->files, new_size);
279 if (!new_files)
280 return 1;
281
282 client->files = new_files;
283 cf = &client->files[client->nr_files];
284 cf->file = strdup(ini_file);
285 cf->remote = remote;
286 client->nr_files++;
287 return 0;
14ea90ed
JA
288}
289
a5276616 290int fio_client_add(struct client_ops *ops, const char *hostname, void **cookie)
132159a5 291{
3f3a4542 292 struct fio_client *existing = *cookie;
b66570dc 293 struct fio_client *client;
132159a5 294
3f3a4542
JA
295 if (existing) {
296 /*
297 * We always add our "exec" name as the option, hence 1
298 * means empty.
299 */
300 if (existing->argc == 1)
301 flist_add_tail(&existing->arg_list, &arg_list);
302 else {
303 while (!flist_empty(&arg_list))
304 flist_del_init(arg_list.next);
305 }
306 }
307
b66570dc 308 client = malloc(sizeof(*client));
a37f69b7 309 memset(client, 0, sizeof(*client));
81179eec 310
3c5f57e3 311 INIT_FLIST_HEAD(&client->list);
bebe6398 312 INIT_FLIST_HEAD(&client->hash_list);
3f3a4542 313 INIT_FLIST_HEAD(&client->arg_list);
82c1ed38 314 INIT_FLIST_HEAD(&client->eta_list);
89c1707c 315 INIT_FLIST_HEAD(&client->cmd_list);
3c5f57e3 316
bebe6398
JA
317 if (fio_server_parse_string(hostname, &client->hostname,
318 &client->is_sock, &client->port,
811826be
JA
319 &client->addr.sin_addr,
320 &client->addr6.sin6_addr,
321 &client->ipv6))
bebe6398 322 return -1;
87aa8f19 323
bebe6398 324 client->fd = -1;
a5276616 325 client->ops = ops;
5121a9aa 326 client->refs = 1;
46bcd498 327 client->type = ops->client_type;
3c5f57e3 328
81179eec
JA
329 __fio_client_add_cmd_option(client, "fio");
330
a37f69b7
JA
331 flist_add(&client->list, &client_list);
332 nr_clients++;
bebe6398
JA
333 dprint(FD_NET, "client: added <%s>\n", client->hostname);
334 *cookie = client;
335 return 0;
a37f69b7
JA
336}
337
d824c3b8
JA
338static void probe_client(struct fio_client *client)
339{
3989b143
JA
340 struct cmd_client_probe_pdu pdu;
341 uint64_t tag;
342
d824c3b8
JA
343 dprint(FD_NET, "client: send probe\n");
344
3989b143
JA
345#ifdef CONFIG_ZLIB
346 pdu.flags = __le64_to_cpu(FIO_PROBE_FLAG_ZLIB);
347#else
348 pdu.flags = 0;
349#endif
350
351 fio_net_send_cmd(client->fd, FIO_NET_CMD_PROBE, &pdu, sizeof(pdu), &tag, &client->cmd_list);
d824c3b8
JA
352}
353
87aa8f19 354static int fio_client_connect_ip(struct fio_client *client)
a37f69b7 355{
811826be 356 struct sockaddr *addr;
67bf9823 357 socklen_t socklen;
811826be
JA
358 int fd, domain;
359
360 if (client->ipv6) {
361 client->addr6.sin6_family = AF_INET6;
362 client->addr6.sin6_port = htons(client->port);
363 domain = AF_INET6;
364 addr = (struct sockaddr *) &client->addr6;
365 socklen = sizeof(client->addr6);
366 } else {
367 client->addr.sin_family = AF_INET;
368 client->addr.sin_port = htons(client->port);
369 domain = AF_INET;
370 addr = (struct sockaddr *) &client->addr;
371 socklen = sizeof(client->addr);
372 }
132159a5 373
811826be 374 fd = socket(domain, SOCK_STREAM, 0);
132159a5 375 if (fd < 0) {
25095e1b
JA
376 int ret = -errno;
377
132159a5 378 log_err("fio: socket: %s\n", strerror(errno));
25095e1b 379 return ret;
132159a5
JA
380 }
381
811826be 382 if (connect(fd, addr, socklen) < 0) {
25095e1b
JA
383 int ret = -errno;
384
132159a5 385 log_err("fio: connect: %s\n", strerror(errno));
a7de0a11
JA
386 log_err("fio: failed to connect to %s:%u\n", client->hostname,
387 client->port);
b94cba47 388 close(fd);
25095e1b 389 return ret;
87aa8f19
JA
390 }
391
392 return fd;
393}
394
395static int fio_client_connect_sock(struct fio_client *client)
396{
397 struct sockaddr_un *addr = &client->addr_un;
67bf9823 398 socklen_t len;
87aa8f19
JA
399 int fd;
400
401 memset(addr, 0, sizeof(*addr));
402 addr->sun_family = AF_UNIX;
1cb96414 403 strncpy(addr->sun_path, client->hostname, sizeof(addr->sun_path) - 1);
87aa8f19
JA
404
405 fd = socket(AF_UNIX, SOCK_STREAM, 0);
406 if (fd < 0) {
25095e1b
JA
407 int ret = -errno;
408
87aa8f19 409 log_err("fio: socket: %s\n", strerror(errno));
25095e1b 410 return ret;
87aa8f19
JA
411 }
412
413 len = sizeof(addr->sun_family) + strlen(addr->sun_path) + 1;
414 if (connect(fd, (struct sockaddr *) addr, len) < 0) {
25095e1b
JA
415 int ret = -errno;
416
87aa8f19 417 log_err("fio: connect; %s\n", strerror(errno));
b94cba47 418 close(fd);
25095e1b 419 return ret;
132159a5
JA
420 }
421
87aa8f19
JA
422 return fd;
423}
424
2f99deb0 425int fio_client_connect(struct fio_client *client)
87aa8f19
JA
426{
427 int fd;
428
429 dprint(FD_NET, "client: connect to host %s\n", client->hostname);
430
87aa8f19
JA
431 if (client->is_sock)
432 fd = fio_client_connect_sock(client);
433 else
434 fd = fio_client_connect_ip(client);
435
89c1707c
JA
436 dprint(FD_NET, "client: %s connected %d\n", client->hostname, fd);
437
87aa8f19 438 if (fd < 0)
a1a3ed51 439 return fd;
87aa8f19 440
b66570dc 441 client->fd = fd;
bebe6398 442 fio_client_add_hash(client);
81179eec 443 client->state = Client_connected;
d824c3b8
JA
444
445 probe_client(client);
132159a5
JA
446 return 0;
447}
448
0cf3ece0 449int fio_client_terminate(struct fio_client *client)
2f99deb0 450{
0cf3ece0 451 return fio_net_send_quit(client->fd);
2f99deb0
JA
452}
453
cc0df00a
JA
454void fio_clients_terminate(void)
455{
456 struct flist_head *entry;
457 struct fio_client *client;
458
60efd14e
JA
459 dprint(FD_NET, "client: terminate clients\n");
460
cc0df00a
JA
461 flist_for_each(entry, &client_list) {
462 client = flist_entry(entry, struct fio_client, list);
2f99deb0 463 fio_client_terminate(client);
cc0df00a
JA
464 }
465}
466
467static void sig_int(int sig)
468{
bebe6398 469 dprint(FD_NET, "client: got signal %d\n", sig);
cc0df00a
JA
470 fio_clients_terminate();
471}
472
b852e7cf
JA
473static void sig_show_status(int sig)
474{
475 show_running_run_stats();
476}
477
cc0df00a
JA
478static void client_signal_handler(void)
479{
480 struct sigaction act;
481
482 memset(&act, 0, sizeof(act));
483 act.sa_handler = sig_int;
484 act.sa_flags = SA_RESTART;
485 sigaction(SIGINT, &act, NULL);
486
487 memset(&act, 0, sizeof(act));
488 act.sa_handler = sig_int;
489 act.sa_flags = SA_RESTART;
490 sigaction(SIGTERM, &act, NULL);
b852e7cf 491
2f694507
BC
492/* Windows uses SIGBREAK as a quit signal from other applications */
493#ifdef WIN32
494 memset(&act, 0, sizeof(act));
495 act.sa_handler = sig_int;
496 act.sa_flags = SA_RESTART;
497 sigaction(SIGBREAK, &act, NULL);
498#endif
499
b852e7cf
JA
500 memset(&act, 0, sizeof(act));
501 act.sa_handler = sig_show_status;
502 act.sa_flags = SA_RESTART;
503 sigaction(SIGUSR1, &act, NULL);
cc0df00a
JA
504}
505
81179eec
JA
506static int send_client_cmd_line(struct fio_client *client)
507{
fa2ea806
JA
508 struct cmd_single_line_pdu *cslp;
509 struct cmd_line_pdu *clp;
510 unsigned long offset;
7f868316 511 unsigned int *lens;
fa2ea806
JA
512 void *pdu;
513 size_t mem;
81179eec
JA
514 int i, ret;
515
39e8e016 516 dprint(FD_NET, "client: send cmdline %d\n", client->argc);
60efd14e 517
7f868316
JA
518 lens = malloc(client->argc * sizeof(unsigned int));
519
fa2ea806
JA
520 /*
521 * Find out how much mem we need
522 */
7f868316
JA
523 for (i = 0, mem = 0; i < client->argc; i++) {
524 lens[i] = strlen(client->argv[i]) + 1;
525 mem += lens[i];
526 }
fa2ea806
JA
527
528 /*
529 * We need one cmd_line_pdu, and argc number of cmd_single_line_pdu
530 */
531 mem += sizeof(*clp) + (client->argc * sizeof(*cslp));
532
533 pdu = malloc(mem);
534 clp = pdu;
535 offset = sizeof(*clp);
536
537 for (i = 0; i < client->argc; i++) {
7f868316 538 uint16_t arg_len = lens[i];
fa2ea806
JA
539
540 cslp = pdu + offset;
541 strcpy((char *) cslp->text, client->argv[i]);
542 cslp->len = cpu_to_le16(arg_len);
543 offset += sizeof(*cslp) + arg_len;
544 }
81179eec 545
7f868316 546 free(lens);
fa2ea806 547 clp->lines = cpu_to_le16(client->argc);
46bcd498 548 clp->client_type = __cpu_to_le16(client->type);
40c60516 549 ret = fio_net_send_cmd(client->fd, FIO_NET_CMD_JOBLINE, pdu, mem, NULL, NULL);
81179eec
JA
550 free(pdu);
551 return ret;
552}
553
a37f69b7
JA
554int fio_clients_connect(void)
555{
556 struct fio_client *client;
557 struct flist_head *entry, *tmp;
558 int ret;
559
93bcfd20
BC
560#ifdef WIN32
561 WSADATA wsd;
3c3ed070 562 WSAStartup(MAKEWORD(2, 2), &wsd);
93bcfd20
BC
563#endif
564
60efd14e
JA
565 dprint(FD_NET, "client: connect all\n");
566
cc0df00a
JA
567 client_signal_handler();
568
a37f69b7
JA
569 flist_for_each_safe(entry, tmp, &client_list) {
570 client = flist_entry(entry, struct fio_client, list);
571
572 ret = fio_client_connect(client);
0b8f30a5 573 if (ret) {
a37f69b7 574 remove_client(client);
0b8f30a5
JA
575 continue;
576 }
577
81179eec
JA
578 if (client->argc > 1)
579 send_client_cmd_line(client);
a37f69b7
JA
580 }
581
582 return !nr_clients;
583}
584
b9d2f30a
JA
585int fio_start_client(struct fio_client *client)
586{
587 dprint(FD_NET, "client: start %s\n", client->hostname);
588 return fio_net_send_simple_cmd(client->fd, FIO_NET_CMD_RUN, 0, NULL);
589}
590
591int fio_start_all_clients(void)
592{
593 struct fio_client *client;
594 struct flist_head *entry, *tmp;
595 int ret;
596
597 dprint(FD_NET, "client: start all\n");
598
952b05e0
CF
599 fio_client_json_init();
600
b9d2f30a
JA
601 flist_for_each_safe(entry, tmp, &client_list) {
602 client = flist_entry(entry, struct fio_client, list);
603
604 ret = fio_start_client(client);
605 if (ret) {
606 remove_client(client);
607 continue;
608 }
609 }
610
611 return flist_empty(&client_list);
612}
613
323255cc
JA
614static int __fio_client_send_remote_ini(struct fio_client *client,
615 const char *filename)
616{
617 struct cmd_load_file_pdu *pdu;
618 size_t p_size;
619 int ret;
620
621 dprint(FD_NET, "send remote ini %s to %s\n", filename, client->hostname);
622
829c31b5 623 p_size = sizeof(*pdu) + strlen(filename) + 1;
323255cc 624 pdu = malloc(p_size);
829c31b5 625 memset(pdu, 0, p_size);
323255cc
JA
626 pdu->name_len = strlen(filename);
627 strcpy((char *) pdu->file, filename);
628 pdu->client_type = cpu_to_le16((uint16_t) client->type);
629
630 client->sent_job = 1;
631 ret = fio_net_send_cmd(client->fd, FIO_NET_CMD_LOAD_FILE, pdu, p_size,NULL, NULL);
632 free(pdu);
633 return ret;
634}
635
132159a5
JA
636/*
637 * Send file contents to server backend. We could use sendfile(), but to remain
638 * more portable lets just read/write the darn thing.
639 */
323255cc
JA
640static int __fio_client_send_local_ini(struct fio_client *client,
641 const char *filename)
132159a5 642{
46bcd498
JA
643 struct cmd_job_pdu *pdu;
644 size_t p_size;
132159a5 645 struct stat sb;
46bcd498
JA
646 char *p;
647 void *buf;
132159a5
JA
648 off_t len;
649 int fd, ret;
650
46c48f1f
JA
651 dprint(FD_NET, "send ini %s to %s\n", filename, client->hostname);
652
132159a5
JA
653 fd = open(filename, O_RDONLY);
654 if (fd < 0) {
25095e1b
JA
655 int ret = -errno;
656
e951bdc4 657 log_err("fio: job file <%s> open: %s\n", filename, strerror(errno));
25095e1b 658 return ret;
132159a5
JA
659 }
660
661 if (fstat(fd, &sb) < 0) {
25095e1b
JA
662 int ret = -errno;
663
132159a5 664 log_err("fio: job file stat: %s\n", strerror(errno));
b94cba47 665 close(fd);
25095e1b 666 return ret;
132159a5
JA
667 }
668
46bcd498
JA
669 p_size = sb.st_size + sizeof(*pdu);
670 pdu = malloc(p_size);
671 buf = pdu->buf;
132159a5
JA
672
673 len = sb.st_size;
674 p = buf;
675 do {
676 ret = read(fd, p, len);
677 if (ret > 0) {
678 len -= ret;
679 if (!len)
680 break;
681 p += ret;
682 continue;
683 } else if (!ret)
684 break;
685 else if (errno == EAGAIN || errno == EINTR)
686 continue;
687 } while (1);
688
0b8f30a5
JA
689 if (len) {
690 log_err("fio: failed reading job file %s\n", filename);
b94cba47 691 close(fd);
03a22d91 692 free(pdu);
0b8f30a5
JA
693 return 1;
694 }
695
46bcd498
JA
696 pdu->buf_len = __cpu_to_le32(sb.st_size);
697 pdu->client_type = cpu_to_le32(client->type);
698
c2cb6869 699 client->sent_job = 1;
40c60516 700 ret = fio_net_send_cmd(client->fd, FIO_NET_CMD_JOB, pdu, p_size, NULL, NULL);
46bcd498 701 free(pdu);
b94cba47 702 close(fd);
132159a5
JA
703 return ret;
704}
37db14fe 705
323255cc
JA
706int fio_client_send_ini(struct fio_client *client, const char *filename,
707 int remote)
9988ca70 708{
25095e1b
JA
709 int ret;
710
323255cc
JA
711 if (!remote)
712 ret = __fio_client_send_local_ini(client, filename);
713 else
714 ret = __fio_client_send_remote_ini(client, filename);
715
3af45201
JA
716 if (!ret)
717 client->sent_job = 1;
9988ca70 718
25095e1b 719 return ret;
9988ca70
JA
720}
721
323255cc
JA
722static int fio_client_send_cf(struct fio_client *client,
723 struct client_file *cf)
724{
725 return fio_client_send_ini(client, cf->file, cf->remote);
726}
727
a37f69b7
JA
728int fio_clients_send_ini(const char *filename)
729{
730 struct fio_client *client;
731 struct flist_head *entry, *tmp;
732
733 flist_for_each_safe(entry, tmp, &client_list) {
734 client = flist_entry(entry, struct fio_client, list);
735
323255cc 736 if (client->nr_files) {
14ea90ed
JA
737 int i;
738
323255cc
JA
739 for (i = 0; i < client->nr_files; i++) {
740 struct client_file *cf;
14ea90ed 741
323255cc
JA
742 cf = &client->files[i];
743
744 if (fio_client_send_cf(client, cf)) {
14ea90ed
JA
745 remove_client(client);
746 break;
747 }
748 }
323255cc
JA
749 }
750 if (client->sent_job)
751 continue;
752 if (!filename || fio_client_send_ini(client, filename, 0))
3af45201 753 remove_client(client);
a37f69b7
JA
754 }
755
756 return !nr_clients;
757}
758
40c60516
JA
759int fio_client_update_options(struct fio_client *client,
760 struct thread_options *o, uint64_t *tag)
761{
762 struct cmd_add_job_pdu pdu;
763
764 pdu.thread_number = cpu_to_le32(client->thread_number);
765 pdu.groupid = cpu_to_le32(client->groupid);
766 convert_thread_options_to_net(&pdu.top, o);
952b05e0 767
40c60516
JA
768 return fio_net_send_cmd(client->fd, FIO_NET_CMD_UPDATE_JOB, &pdu, sizeof(pdu), tag, &client->cmd_list);
769}
770
a64e88da
JA
771static void convert_io_stat(struct io_stat *dst, struct io_stat *src)
772{
773 dst->max_val = le64_to_cpu(src->max_val);
774 dst->min_val = le64_to_cpu(src->min_val);
775 dst->samples = le64_to_cpu(src->samples);
802ad4a8
JA
776
777 /*
778 * Floats arrive as IEEE 754 encoded uint64_t, convert back to double
779 */
780 dst->mean.u.f = fio_uint64_to_double(le64_to_cpu(dst->mean.u.i));
781 dst->S.u.f = fio_uint64_to_double(le64_to_cpu(dst->S.u.i));
a64e88da
JA
782}
783
784static void convert_ts(struct thread_stat *dst, struct thread_stat *src)
785{
786 int i, j;
787
2f122b13
JA
788 dst->error = le32_to_cpu(src->error);
789 dst->thread_number = le32_to_cpu(src->thread_number);
790 dst->groupid = le32_to_cpu(src->groupid);
791 dst->pid = le32_to_cpu(src->pid);
792 dst->members = le32_to_cpu(src->members);
771e58be 793 dst->unified_rw_rep = le32_to_cpu(src->unified_rw_rep);
a64e88da 794
298921d6 795 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
a64e88da
JA
796 convert_io_stat(&dst->clat_stat[i], &src->clat_stat[i]);
797 convert_io_stat(&dst->slat_stat[i], &src->slat_stat[i]);
798 convert_io_stat(&dst->lat_stat[i], &src->lat_stat[i]);
799 convert_io_stat(&dst->bw_stat[i], &src->bw_stat[i]);
800 }
801
802 dst->usr_time = le64_to_cpu(src->usr_time);
803 dst->sys_time = le64_to_cpu(src->sys_time);
804 dst->ctx = le64_to_cpu(src->ctx);
805 dst->minf = le64_to_cpu(src->minf);
806 dst->majf = le64_to_cpu(src->majf);
807 dst->clat_percentiles = le64_to_cpu(src->clat_percentiles);
802ad4a8
JA
808
809 for (i = 0; i < FIO_IO_U_LIST_MAX_LEN; i++) {
810 fio_fp64_t *fps = &src->percentile_list[i];
811 fio_fp64_t *fpd = &dst->percentile_list[i];
812
813 fpd->u.f = fio_uint64_to_double(le64_to_cpu(fps->u.i));
814 }
a64e88da
JA
815
816 for (i = 0; i < FIO_IO_U_MAP_NR; i++) {
817 dst->io_u_map[i] = le32_to_cpu(src->io_u_map[i]);
818 dst->io_u_submit[i] = le32_to_cpu(src->io_u_submit[i]);
819 dst->io_u_complete[i] = le32_to_cpu(src->io_u_complete[i]);
820 }
821
822 for (i = 0; i < FIO_IO_U_LAT_U_NR; i++) {
823 dst->io_u_lat_u[i] = le32_to_cpu(src->io_u_lat_u[i]);
824 dst->io_u_lat_m[i] = le32_to_cpu(src->io_u_lat_m[i]);
825 }
826
298921d6 827 for (i = 0; i < DDIR_RWDIR_CNT; i++)
a64e88da
JA
828 for (j = 0; j < FIO_IO_U_PLAT_NR; j++)
829 dst->io_u_plat[i][j] = le32_to_cpu(src->io_u_plat[i][j]);
830
78799deb 831 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
a64e88da 832 dst->total_io_u[i] = le64_to_cpu(src->total_io_u[i]);
93eee04a 833 dst->short_io_u[i] = le64_to_cpu(src->short_io_u[i]);
3bcb9d94 834 dst->drop_io_u[i] = le64_to_cpu(src->drop_io_u[i]);
a64e88da
JA
835 }
836
837 dst->total_submit = le64_to_cpu(src->total_submit);
838 dst->total_complete = le64_to_cpu(src->total_complete);
839
298921d6 840 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
a64e88da
JA
841 dst->io_bytes[i] = le64_to_cpu(src->io_bytes[i]);
842 dst->runtime[i] = le64_to_cpu(src->runtime[i]);
843 }
844
845 dst->total_run_time = le64_to_cpu(src->total_run_time);
846 dst->continue_on_error = le16_to_cpu(src->continue_on_error);
847 dst->total_err_count = le64_to_cpu(src->total_err_count);
ddcc0b69
JA
848 dst->first_error = le32_to_cpu(src->first_error);
849 dst->kb_base = le32_to_cpu(src->kb_base);
ad705bcb 850 dst->unit_base = le32_to_cpu(src->unit_base);
3e260a46
JA
851
852 dst->latency_depth = le32_to_cpu(src->latency_depth);
853 dst->latency_target = le64_to_cpu(src->latency_target);
854 dst->latency_window = le64_to_cpu(src->latency_window);
855 dst->latency_percentile.u.f = fio_uint64_to_double(le64_to_cpu(src->latency_percentile.u.i));
a64e88da
JA
856}
857
858static void convert_gs(struct group_run_stats *dst, struct group_run_stats *src)
859{
860 int i;
861
298921d6 862 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
a64e88da
JA
863 dst->max_run[i] = le64_to_cpu(src->max_run[i]);
864 dst->min_run[i] = le64_to_cpu(src->min_run[i]);
865 dst->max_bw[i] = le64_to_cpu(src->max_bw[i]);
866 dst->min_bw[i] = le64_to_cpu(src->min_bw[i]);
867 dst->io_kb[i] = le64_to_cpu(src->io_kb[i]);
868 dst->agg[i] = le64_to_cpu(src->agg[i]);
869 }
870
871 dst->kb_base = le32_to_cpu(src->kb_base);
ad705bcb 872 dst->unit_base = le32_to_cpu(src->unit_base);
a64e88da 873 dst->groupid = le32_to_cpu(src->groupid);
771e58be 874 dst->unified_rw_rep = le32_to_cpu(src->unified_rw_rep);
a64e88da
JA
875}
876
952b05e0 877static void json_object_add_client_info(struct json_object *obj,
9a4424c8 878 struct fio_client *client)
952b05e0 879{
9a4424c8
CF
880 const char *hostname = client->hostname ? client->hostname : "";
881
882 json_object_add_value_string(obj, "hostname", hostname);
952b05e0
CF
883 json_object_add_value_int(obj, "port", client->port);
884}
885
89e5fad9 886static void handle_ts(struct fio_client *client, struct fio_net_cmd *cmd)
a64e88da
JA
887{
888 struct cmd_ts_pdu *p = (struct cmd_ts_pdu *) cmd->payload;
952b05e0 889 struct json_object *tsobj;
a64e88da 890
952b05e0 891 tsobj = show_thread_status(&p->ts, &p->rs);
108fea77 892 client->did_stat = 1;
952b05e0
CF
893 if (tsobj) {
894 json_object_add_client_info(tsobj, client);
895 json_array_add_value_object(clients_array, tsobj);
896 }
37f0c1ae 897
108fea77 898 if (!do_output_all_clients)
37f0c1ae
JA
899 return;
900
901 sum_thread_stats(&client_ts, &p->ts, sum_stat_nr);
902 sum_group_stats(&client_gs, &p->rs);
903
904 client_ts.members++;
2f122b13 905 client_ts.thread_number = p->ts.thread_number;
37f0c1ae 906 client_ts.groupid = p->ts.groupid;
771e58be 907 client_ts.unified_rw_rep = p->ts.unified_rw_rep;
37f0c1ae
JA
908
909 if (++sum_stat_nr == sum_stat_clients) {
910 strcpy(client_ts.name, "All clients");
952b05e0
CF
911 tsobj = show_thread_status(&client_ts, &client_gs);
912 if (tsobj) {
913 json_object_add_client_info(tsobj, client);
914 json_array_add_value_object(clients_array, tsobj);
915 }
37f0c1ae 916 }
a64e88da
JA
917}
918
89e5fad9 919static void handle_gs(struct fio_client *client, struct fio_net_cmd *cmd)
a64e88da
JA
920{
921 struct group_run_stats *gs = (struct group_run_stats *) cmd->payload;
922
a64e88da
JA
923 show_group_stats(gs);
924}
925
3bf236c0
JA
926static void handle_text(struct fio_client *client, struct fio_net_cmd *cmd)
927{
928 struct cmd_text_pdu *pdu = (struct cmd_text_pdu *) cmd->payload;
929 const char *buf = (const char *) pdu->buf;
930 const char *name;
931 int fio_unused ret;
932
933 name = client->name ? client->name : client->hostname;
934
935 if (!client->skip_newline)
936 fprintf(f_out, "<%s> ", name);
937 ret = fwrite(buf, pdu->buf_len, 1, f_out);
938 fflush(f_out);
939 client->skip_newline = strchr(buf, '\n') == NULL;
940}
941
d09a64a0
JA
942static void convert_agg(struct disk_util_agg *agg)
943{
944 int i;
945
946 for (i = 0; i < 2; i++) {
947 agg->ios[i] = le32_to_cpu(agg->ios[i]);
948 agg->merges[i] = le32_to_cpu(agg->merges[i]);
949 agg->sectors[i] = le64_to_cpu(agg->sectors[i]);
950 agg->ticks[i] = le32_to_cpu(agg->ticks[i]);
951 }
952
953 agg->io_ticks = le32_to_cpu(agg->io_ticks);
954 agg->time_in_queue = le32_to_cpu(agg->time_in_queue);
955 agg->slavecount = le32_to_cpu(agg->slavecount);
823ba54b 956 agg->max_util.u.f = fio_uint64_to_double(__le64_to_cpu(agg->max_util.u.i));
d09a64a0
JA
957}
958
959static void convert_dus(struct disk_util_stat *dus)
960{
961 int i;
962
963 for (i = 0; i < 2; i++) {
a3b4cf7d
JA
964 dus->s.ios[i] = le32_to_cpu(dus->s.ios[i]);
965 dus->s.merges[i] = le32_to_cpu(dus->s.merges[i]);
966 dus->s.sectors[i] = le64_to_cpu(dus->s.sectors[i]);
967 dus->s.ticks[i] = le32_to_cpu(dus->s.ticks[i]);
d09a64a0
JA
968 }
969
a3b4cf7d
JA
970 dus->s.io_ticks = le32_to_cpu(dus->s.io_ticks);
971 dus->s.time_in_queue = le32_to_cpu(dus->s.time_in_queue);
972 dus->s.msec = le64_to_cpu(dus->s.msec);
d09a64a0
JA
973}
974
975static void handle_du(struct fio_client *client, struct fio_net_cmd *cmd)
976{
977 struct cmd_du_pdu *du = (struct cmd_du_pdu *) cmd->payload;
978
d09a64a0
JA
979 if (!client->disk_stats_shown) {
980 client->disk_stats_shown = 1;
981 log_info("\nDisk stats (read/write):\n");
982 }
983
952b05e0
CF
984 if (output_format == FIO_OUTPUT_JSON) {
985 struct json_object *duobj;
986 json_array_add_disk_util(&du->dus, &du->agg, du_array);
987 duobj = json_array_last_value_object(du_array);
988 json_object_add_client_info(duobj, client);
989 } else
990 print_disk_util(&du->dus, &du->agg, output_format == FIO_OUTPUT_TERSE);
d09a64a0
JA
991}
992
3bf236c0 993static void convert_jobs_eta(struct jobs_eta *je)
cf451d1e 994{
cf451d1e
JA
995 int i;
996
997 je->nr_running = le32_to_cpu(je->nr_running);
998 je->nr_ramp = le32_to_cpu(je->nr_ramp);
999 je->nr_pending = le32_to_cpu(je->nr_pending);
714e85f3 1000 je->nr_setting_up = le32_to_cpu(je->nr_setting_up);
cf451d1e 1001 je->files_open = le32_to_cpu(je->files_open);
cf451d1e 1002
298921d6
JA
1003 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
1004 je->m_rate[i] = le32_to_cpu(je->m_rate[i]);
1005 je->t_rate[i] = le32_to_cpu(je->t_rate[i]);
1006 je->m_iops[i] = le32_to_cpu(je->m_iops[i]);
1007 je->t_iops[i] = le32_to_cpu(je->t_iops[i]);
16725bb0
JA
1008 je->rate[i] = le32_to_cpu(je->rate[i]);
1009 je->iops[i] = le32_to_cpu(je->iops[i]);
cf451d1e
JA
1010 }
1011
b51eedb7 1012 je->elapsed_sec = le64_to_cpu(je->elapsed_sec);
cf451d1e 1013 je->eta_sec = le64_to_cpu(je->eta_sec);
8c621fb2 1014 je->nr_threads = le32_to_cpu(je->nr_threads);
b7f05eb0 1015 je->is_pow2 = le32_to_cpu(je->is_pow2);
ed2c0a12 1016 je->unit_base = le32_to_cpu(je->unit_base);
48fbb46e
JA
1017}
1018
3e47bd25 1019void fio_client_sum_jobs_eta(struct jobs_eta *dst, struct jobs_eta *je)
48fbb46e 1020{
48fbb46e
JA
1021 int i;
1022
1023 dst->nr_running += je->nr_running;
1024 dst->nr_ramp += je->nr_ramp;
1025 dst->nr_pending += je->nr_pending;
714e85f3 1026 dst->nr_setting_up += je->nr_setting_up;
48fbb46e 1027 dst->files_open += je->files_open;
48fbb46e 1028
298921d6 1029 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
3e47bd25
JA
1030 dst->m_rate[i] += je->m_rate[i];
1031 dst->t_rate[i] += je->t_rate[i];
1032 dst->m_iops[i] += je->m_iops[i];
1033 dst->t_iops[i] += je->t_iops[i];
16725bb0
JA
1034 dst->rate[i] += je->rate[i];
1035 dst->iops[i] += je->iops[i];
48fbb46e
JA
1036 }
1037
1038 dst->elapsed_sec += je->elapsed_sec;
1039
1040 if (je->eta_sec > dst->eta_sec)
1041 dst->eta_sec = je->eta_sec;
8c621fb2
JA
1042
1043 dst->nr_threads += je->nr_threads;
afe22d3d
JA
1044
1045 /*
1046 * This wont be correct for multiple strings, but at least it
1047 * works for the basic cases.
1048 */
1049 strcpy((char *) dst->run_str, (char *) je->run_str);
48fbb46e
JA
1050}
1051
a5276616 1052void fio_client_dec_jobs_eta(struct client_eta *eta, client_eta_op eta_fn)
82c1ed38
JA
1053{
1054 if (!--eta->pending) {
a5276616 1055 eta_fn(&eta->eta);
82c1ed38
JA
1056 free(eta);
1057 }
1058}
1059
89c1707c
JA
1060static void remove_reply_cmd(struct fio_client *client, struct fio_net_cmd *cmd)
1061{
40c60516 1062 struct fio_net_cmd_reply *reply = NULL;
89c1707c
JA
1063 struct flist_head *entry;
1064
1065 flist_for_each(entry, &client->cmd_list) {
40c60516 1066 reply = flist_entry(entry, struct fio_net_cmd_reply, list);
89c1707c 1067
40c60516 1068 if (cmd->tag == (uintptr_t) reply)
89c1707c
JA
1069 break;
1070
40c60516 1071 reply = NULL;
89c1707c
JA
1072 }
1073
40c60516 1074 if (!reply) {
4e0a8fa2 1075 log_err("fio: client: unable to find matching tag (%llx)\n", (unsigned long long) cmd->tag);
89c1707c
JA
1076 return;
1077 }
1078
40c60516
JA
1079 flist_del(&reply->list);
1080 cmd->tag = reply->saved_tag;
1081 free(reply);
1082}
1083
1084int fio_client_wait_for_reply(struct fio_client *client, uint64_t tag)
1085{
1086 do {
1087 struct fio_net_cmd_reply *reply = NULL;
1088 struct flist_head *entry;
1089
1090 flist_for_each(entry, &client->cmd_list) {
1091 reply = flist_entry(entry, struct fio_net_cmd_reply, list);
1092
1093 if (tag == (uintptr_t) reply)
1094 break;
1095
1096 reply = NULL;
1097 }
1098
1099 if (!reply)
1100 break;
1101
1102 usleep(1000);
1103 } while (1);
1104
1105 return 0;
89c1707c
JA
1106}
1107
82c1ed38 1108static void handle_eta(struct fio_client *client, struct fio_net_cmd *cmd)
48fbb46e
JA
1109{
1110 struct jobs_eta *je = (struct jobs_eta *) cmd->payload;
df380934 1111 struct client_eta *eta = (struct client_eta *) (uintptr_t) cmd->tag;
af9c9fb3
JA
1112
1113 dprint(FD_NET, "client: got eta tag %p, %d\n", eta, eta->pending);
cf451d1e 1114
f77d2676
JA
1115 assert(client->eta_in_flight == eta);
1116
1117 client->eta_in_flight = NULL;
82c1ed38
JA
1118 flist_del_init(&client->eta_list);
1119
2f99deb0
JA
1120 if (client->ops->jobs_eta)
1121 client->ops->jobs_eta(client, je);
1122
3e47bd25 1123 fio_client_sum_jobs_eta(&eta->eta, je);
a5276616 1124 fio_client_dec_jobs_eta(eta, client->ops->eta);
cf451d1e
JA
1125}
1126
b5296ddb 1127static void handle_probe(struct fio_client *client, struct fio_net_cmd *cmd)
2e03b4b2 1128{
3989b143 1129 struct cmd_probe_reply_pdu *probe = (struct cmd_probe_reply_pdu *) cmd->payload;
d2333358
JA
1130 const char *os, *arch;
1131 char bit[16];
2e03b4b2 1132
cca84643
JA
1133 os = fio_get_os_string(probe->os);
1134 if (!os)
1135 os = "unknown";
1136
1137 arch = fio_get_arch_string(probe->arch);
1138 if (!arch)
1139 os = "unknown";
1140
d2333358 1141 sprintf(bit, "%d-bit", probe->bpp * 8);
3989b143 1142 probe->flags = le64_to_cpu(probe->flags);
38fdef22 1143
3989b143 1144 log_info("hostname=%s, be=%u, %s, os=%s, arch=%s, fio=%s, flags=%lx\n",
38fdef22 1145 probe->hostname, probe->bigendian, bit, os, arch,
3989b143 1146 probe->fio_version, (unsigned long) probe->flags);
b5296ddb
JA
1147
1148 if (!client->name)
1149 client->name = strdup((char *) probe->hostname);
2e03b4b2
JA
1150}
1151
11e950bd
JA
1152static void handle_start(struct fio_client *client, struct fio_net_cmd *cmd)
1153{
1154 struct cmd_start_pdu *pdu = (struct cmd_start_pdu *) cmd->payload;
1155
1156 client->state = Client_started;
1157 client->jobs = le32_to_cpu(pdu->jobs);
108fea77
JA
1158 client->nr_stat = le32_to_cpu(pdu->stat_outputs);
1159
1160 if (sum_stat_clients > 1)
1161 do_output_all_clients = 1;
1162
1163 sum_stat_clients += client->nr_stat;
11e950bd
JA
1164}
1165
1166static void handle_stop(struct fio_client *client, struct fio_net_cmd *cmd)
1167{
498c92c2
JA
1168 if (client->error)
1169 log_info("client <%s>: exited with error %d\n", client->hostname, client->error);
11e950bd
JA
1170}
1171
6b79c80c
JA
1172static void convert_stop(struct fio_net_cmd *cmd)
1173{
1174 struct cmd_end_pdu *pdu = (struct cmd_end_pdu *) cmd->payload;
1175
1176 pdu->error = le32_to_cpu(pdu->error);
1177}
1178
084d1c6f
JA
1179static void convert_text(struct fio_net_cmd *cmd)
1180{
1181 struct cmd_text_pdu *pdu = (struct cmd_text_pdu *) cmd->payload;
1182
1183 pdu->level = le32_to_cpu(pdu->level);
1184 pdu->buf_len = le32_to_cpu(pdu->buf_len);
1185 pdu->log_sec = le64_to_cpu(pdu->log_sec);
1186 pdu->log_usec = le64_to_cpu(pdu->log_usec);
1187}
1188
3989b143
JA
1189static struct cmd_iolog_pdu *convert_iolog_gz(struct fio_net_cmd *cmd,
1190 struct cmd_iolog_pdu *pdu)
1b42725f 1191{
3989b143 1192#ifdef CONFIG_ZLIB
1b42725f 1193 struct cmd_iolog_pdu *ret;
1b42725f 1194 z_stream stream;
3989b143
JA
1195 uint32_t nr_samples;
1196 size_t total;
1b42725f
JA
1197 void *p;
1198
1199 stream.zalloc = Z_NULL;
1200 stream.zfree = Z_NULL;
1201 stream.opaque = Z_NULL;
1202 stream.avail_in = 0;
1203 stream.next_in = Z_NULL;
1204
1205 if (inflateInit(&stream) != Z_OK)
1206 return NULL;
1207
1208 /*
f5ed765a 1209 * Get header first, it's not compressed
1b42725f 1210 */
3c865f32 1211 nr_samples = le64_to_cpu(pdu->nr_samples);
1b42725f 1212
3c865f32 1213 total = nr_samples * __log_entry_sz(le32_to_cpu(pdu->log_offset));
f5ed765a 1214 ret = malloc(total + sizeof(*pdu));
1b42725f 1215 ret->nr_samples = nr_samples;
3989b143
JA
1216
1217 memcpy(ret, pdu, sizeof(*pdu));
f5ed765a
JA
1218
1219 p = (void *) ret + sizeof(*pdu);
1b42725f 1220
f5ed765a
JA
1221 stream.avail_in = cmd->pdu_len - sizeof(*pdu);
1222 stream.next_in = (void *) pdu + sizeof(*pdu);
1b42725f
JA
1223 while (stream.avail_in) {
1224 unsigned int this_chunk = 65536;
1225 unsigned int this_len;
1226 int err;
1227
1228 if (this_chunk > total)
1229 this_chunk = total;
1230
1231 stream.avail_out = this_chunk;
1232 stream.next_out = p;
1233 err = inflate(&stream, Z_NO_FLUSH);
3c547fe0
JA
1234 /* may be Z_OK, or Z_STREAM_END */
1235 if (err < 0) {
1b42725f 1236 log_err("fio: inflate error %d\n", err);
f5ed765a
JA
1237 free(ret);
1238 ret = NULL;
3989b143 1239 goto err;
1b42725f
JA
1240 }
1241
1242 this_len = this_chunk - stream.avail_out;
1243 p += this_len;
1244 total -= this_len;
1245 }
1246
3989b143
JA
1247err:
1248 inflateEnd(&stream);
1249 return ret;
1250#else
1251 return NULL;
1252#endif
1253}
1254
1255/*
1256 * This has been compressed on the server side, since it can be big.
1257 * Uncompress here.
1258 */
1259static struct cmd_iolog_pdu *convert_iolog(struct fio_net_cmd *cmd)
1260{
1261 struct cmd_iolog_pdu *pdu = (struct cmd_iolog_pdu *) cmd->payload;
1262 struct cmd_iolog_pdu *ret;
ae588852
JA
1263 uint64_t i;
1264 void *samples;
3989b143
JA
1265
1266 /*
1267 * Convert if compressed and we support it. If it's not
1268 * compressed, we need not do anything.
1269 */
1270 if (le32_to_cpu(pdu->compressed)) {
1271#ifndef CONFIG_ZLIB
1272 log_err("fio: server sent compressed data by mistake\n");
1273 return NULL;
1274#endif
1275 ret = convert_iolog_gz(cmd, pdu);
1276 if (!ret) {
1277 log_err("fio: failed decompressing log\n");
1278 return NULL;
1279 }
1280 } else
1281 ret = pdu;
1282
ae588852 1283 ret->nr_samples = le64_to_cpu(ret->nr_samples);
3989b143 1284 ret->thread_number = le32_to_cpu(ret->thread_number);
3989b143
JA
1285 ret->log_type = le32_to_cpu(ret->log_type);
1286 ret->compressed = le32_to_cpu(ret->compressed);
ae588852 1287 ret->log_offset = le32_to_cpu(ret->log_offset);
3989b143 1288
3310fced 1289 samples = &ret->samples[0];
f5ed765a 1290 for (i = 0; i < ret->nr_samples; i++) {
ae588852 1291 struct io_sample *s;
f5ed765a 1292
ae588852 1293 s = __get_sample(samples, ret->log_offset, i);
b26317c9
JA
1294 s->time = le64_to_cpu(s->time);
1295 s->val = le64_to_cpu(s->val);
1296 s->__ddir = le32_to_cpu(s->__ddir);
1297 s->bs = le32_to_cpu(s->bs);
ae588852
JA
1298
1299 if (ret->log_offset) {
1300 struct io_sample_offset *so = (void *) s;
1301
1302 so->offset = le64_to_cpu(so->offset);
1303 }
f5ed765a
JA
1304 }
1305
1b42725f
JA
1306 return ret;
1307}
1308
a5276616 1309int fio_handle_client(struct fio_client *client)
37db14fe 1310{
a5276616 1311 struct client_ops *ops = client->ops;
37db14fe
JA
1312 struct fio_net_cmd *cmd;
1313
60efd14e
JA
1314 dprint(FD_NET, "client: handle %s\n", client->hostname);
1315
e951bdc4
JA
1316 cmd = fio_net_recv_cmd(client->fd);
1317 if (!cmd)
1318 return 0;
c2c94585 1319
b9d2f30a
JA
1320 dprint(FD_NET, "client: got cmd op %s from %s (pdu=%u)\n",
1321 fio_server_op(cmd->opcode), client->hostname, cmd->pdu_len);
46c48f1f 1322
e951bdc4
JA
1323 switch (cmd->opcode) {
1324 case FIO_NET_CMD_QUIT:
3ec62ec4 1325 if (ops->quit)
35c0ba7f 1326 ops->quit(client, cmd);
e951bdc4
JA
1327 remove_client(client);
1328 free(cmd);
1329 break;
084d1c6f
JA
1330 case FIO_NET_CMD_TEXT:
1331 convert_text(cmd);
35c0ba7f 1332 ops->text(client, cmd);
e951bdc4
JA
1333 free(cmd);
1334 break;
3bf236c0
JA
1335 case FIO_NET_CMD_DU: {
1336 struct cmd_du_pdu *du = (struct cmd_du_pdu *) cmd->payload;
1337
1338 convert_dus(&du->dus);
1339 convert_agg(&du->agg);
1340
dd366728 1341 ops->disk_util(client, cmd);
d09a64a0
JA
1342 free(cmd);
1343 break;
3bf236c0
JA
1344 }
1345 case FIO_NET_CMD_TS: {
1346 struct cmd_ts_pdu *p = (struct cmd_ts_pdu *) cmd->payload;
1347
1348 convert_ts(&p->ts, &p->ts);
1349 convert_gs(&p->rs, &p->rs);
1350
89e5fad9 1351 ops->thread_status(client, cmd);
e951bdc4
JA
1352 free(cmd);
1353 break;
3bf236c0
JA
1354 }
1355 case FIO_NET_CMD_GS: {
1356 struct group_run_stats *gs = (struct group_run_stats *) cmd->payload;
1357
1358 convert_gs(gs, gs);
1359
89e5fad9 1360 ops->group_stats(client, cmd);
e951bdc4
JA
1361 free(cmd);
1362 break;
3bf236c0
JA
1363 }
1364 case FIO_NET_CMD_ETA: {
1365 struct jobs_eta *je = (struct jobs_eta *) cmd->payload;
1366
89c1707c 1367 remove_reply_cmd(client, cmd);
3bf236c0 1368 convert_jobs_eta(je);
a5276616 1369 handle_eta(client, cmd);
e951bdc4
JA
1370 free(cmd);
1371 break;
3bf236c0 1372 }
e951bdc4 1373 case FIO_NET_CMD_PROBE:
89c1707c 1374 remove_reply_cmd(client, cmd);
dd366728 1375 ops->probe(client, cmd);
e951bdc4
JA
1376 free(cmd);
1377 break;
5d7793aa 1378 case FIO_NET_CMD_SERVER_START:
01be038e 1379 client->state = Client_running;
85dd01e7
JA
1380 if (ops->job_start)
1381 ops->job_start(client, cmd);
01be038e
JA
1382 free(cmd);
1383 break;
85dd01e7
JA
1384 case FIO_NET_CMD_START: {
1385 struct cmd_start_pdu *pdu = (struct cmd_start_pdu *) cmd->payload;
1386
1387 pdu->jobs = le32_to_cpu(pdu->jobs);
1388 ops->start(client, cmd);
e951bdc4
JA
1389 free(cmd);
1390 break;
85dd01e7 1391 }
6b79c80c
JA
1392 case FIO_NET_CMD_STOP: {
1393 struct cmd_end_pdu *pdu = (struct cmd_end_pdu *) cmd->payload;
1394
1395 convert_stop(cmd);
1396 client->state = Client_stopped;
122c7725
JA
1397 client->error = le32_to_cpu(pdu->error);
1398 client->signal = le32_to_cpu(pdu->signal);
6b79c80c 1399 ops->stop(client, cmd);
e951bdc4
JA
1400 free(cmd);
1401 break;
6b79c80c 1402 }
40c60516
JA
1403 case FIO_NET_CMD_ADD_JOB: {
1404 struct cmd_add_job_pdu *pdu = (struct cmd_add_job_pdu *) cmd->payload;
1405
1406 client->thread_number = le32_to_cpu(pdu->thread_number);
1407 client->groupid = le32_to_cpu(pdu->groupid);
1408
807f9971
JA
1409 if (ops->add_job)
1410 ops->add_job(client, cmd);
1411 free(cmd);
1412 break;
40c60516 1413 }
1b42725f
JA
1414 case FIO_NET_CMD_IOLOG:
1415 if (ops->iolog) {
1416 struct cmd_iolog_pdu *pdu;
1417
1418 pdu = convert_iolog(cmd);
1419 ops->iolog(client, pdu);
1420 }
1421 free(cmd);
1422 break;
40c60516 1423 case FIO_NET_CMD_UPDATE_JOB:
40c60516 1424 ops->update_job(client, cmd);
649cee91 1425 remove_reply_cmd(client, cmd);
40c60516
JA
1426 free(cmd);
1427 break;
e951bdc4 1428 default:
89c1707c 1429 log_err("fio: unknown client op: %s\n", fio_server_op(cmd->opcode));
e951bdc4
JA
1430 free(cmd);
1431 break;
37db14fe
JA
1432 }
1433
e951bdc4 1434 return 1;
37db14fe 1435}
b66570dc 1436
a5276616 1437static void request_client_etas(struct client_ops *ops)
af9c9fb3
JA
1438{
1439 struct fio_client *client;
1440 struct flist_head *entry;
1441 struct client_eta *eta;
82c1ed38 1442 int skipped = 0;
af9c9fb3
JA
1443
1444 dprint(FD_NET, "client: request eta (%d)\n", nr_clients);
1445
afe22d3d 1446 eta = calloc(1, sizeof(*eta) + __THREAD_RUNSTR_SZ(REAL_MAX_JOBS));
af9c9fb3
JA
1447 eta->pending = nr_clients;
1448
1449 flist_for_each(entry, &client_list) {
1450 client = flist_entry(entry, struct fio_client, list);
1451
82c1ed38
JA
1452 if (!flist_empty(&client->eta_list)) {
1453 skipped++;
1454 continue;
1455 }
01be038e
JA
1456 if (client->state != Client_running)
1457 continue;
82c1ed38 1458
f77d2676 1459 assert(!client->eta_in_flight);
82c1ed38 1460 flist_add_tail(&client->eta_list, &eta_list);
f77d2676 1461 client->eta_in_flight = eta;
af9c9fb3 1462 fio_net_send_simple_cmd(client->fd, FIO_NET_CMD_SEND_ETA,
df380934 1463 (uintptr_t) eta, &client->cmd_list);
af9c9fb3
JA
1464 }
1465
82c1ed38 1466 while (skipped--)
a5276616 1467 fio_client_dec_jobs_eta(eta, ops->eta);
82c1ed38 1468
af9c9fb3
JA
1469 dprint(FD_NET, "client: requested eta tag %p\n", eta);
1470}
1471
89c1707c
JA
1472static int client_check_cmd_timeout(struct fio_client *client,
1473 struct timeval *now)
1474{
40c60516 1475 struct fio_net_cmd_reply *reply;
89c1707c
JA
1476 struct flist_head *entry, *tmp;
1477 int ret = 0;
1478
1479 flist_for_each_safe(entry, tmp, &client->cmd_list) {
40c60516 1480 reply = flist_entry(entry, struct fio_net_cmd_reply, list);
89c1707c 1481
40c60516 1482 if (mtime_since(&reply->tv, now) < FIO_NET_CLIENT_TIMEOUT)
89c1707c
JA
1483 continue;
1484
1485 log_err("fio: client %s, timeout on cmd %s\n", client->hostname,
40c60516
JA
1486 fio_server_op(reply->opcode));
1487 flist_del(&reply->list);
1488 free(reply);
89c1707c
JA
1489 ret = 1;
1490 }
1491
1492 return flist_empty(&client->cmd_list) && ret;
1493}
1494
a5276616 1495static int fio_check_clients_timed_out(void)
89c1707c
JA
1496{
1497 struct fio_client *client;
1498 struct flist_head *entry, *tmp;
1499 struct timeval tv;
1500 int ret = 0;
1501
67bf9823 1502 fio_gettime(&tv, NULL);
89c1707c
JA
1503
1504 flist_for_each_safe(entry, tmp, &client_list) {
1505 client = flist_entry(entry, struct fio_client, list);
1506
1507 if (flist_empty(&client->cmd_list))
1508 continue;
1509
1510 if (!client_check_cmd_timeout(client, &tv))
1511 continue;
1512
a5276616
JA
1513 if (client->ops->timed_out)
1514 client->ops->timed_out(client);
ed727a46
JA
1515 else
1516 log_err("fio: client %s timed out\n", client->hostname);
1517
89c1707c
JA
1518 remove_client(client);
1519 ret = 1;
1520 }
1521
1522 return ret;
1523}
1524
dd366728 1525int fio_handle_clients(struct client_ops *ops)
b66570dc 1526{
b66570dc 1527 struct pollfd *pfds;
498c92c2 1528 int i, ret = 0, retval = 0;
b66570dc 1529
67bf9823 1530 fio_gettime(&eta_tv, NULL);
af9c9fb3 1531
b66570dc
JA
1532 pfds = malloc(nr_clients * sizeof(struct pollfd));
1533
37f0c1ae
JA
1534 init_thread_stat(&client_ts);
1535 init_group_run_stat(&client_gs);
1536
82a4be1b 1537 while (!exit_backend && nr_clients) {
c2cb6869
JA
1538 struct flist_head *entry, *tmp;
1539 struct fio_client *client;
1540
82a4be1b 1541 i = 0;
c2cb6869 1542 flist_for_each_safe(entry, tmp, &client_list) {
82a4be1b 1543 client = flist_entry(entry, struct fio_client, list);
b66570dc 1544
a5276616 1545 if (!client->sent_job && !client->ops->stay_connected &&
c2cb6869
JA
1546 flist_empty(&client->cmd_list)) {
1547 remove_client(client);
1548 continue;
1549 }
1550
82a4be1b
JA
1551 pfds[i].fd = client->fd;
1552 pfds[i].events = POLLIN;
1553 i++;
1554 }
1555
c2cb6869
JA
1556 if (!nr_clients)
1557 break;
1558
82a4be1b 1559 assert(i == nr_clients);
b66570dc 1560
5c2857f9 1561 do {
af9c9fb3
JA
1562 struct timeval tv;
1563
67bf9823 1564 fio_gettime(&tv, NULL);
af9c9fb3 1565 if (mtime_since(&eta_tv, &tv) >= 900) {
a5276616 1566 request_client_etas(ops);
af9c9fb3 1567 memcpy(&eta_tv, &tv, sizeof(tv));
89c1707c 1568
a5276616 1569 if (fio_check_clients_timed_out())
89c1707c 1570 break;
af9c9fb3
JA
1571 }
1572
80102c86 1573 ret = poll(pfds, nr_clients, ops->eta_msec);
5c2857f9
JA
1574 if (ret < 0) {
1575 if (errno == EINTR)
1576 continue;
1577 log_err("fio: poll clients: %s\n", strerror(errno));
1578 break;
1579 } else if (!ret)
b66570dc 1580 continue;
5c2857f9 1581 } while (ret <= 0);
b66570dc
JA
1582
1583 for (i = 0; i < nr_clients; i++) {
1584 if (!(pfds[i].revents & POLLIN))
1585 continue;
1586
1587 client = find_client_by_fd(pfds[i].fd);
1588 if (!client) {
65e1a120 1589 log_err("fio: unknown client fd %ld\n", (long) pfds[i].fd);
b66570dc
JA
1590 continue;
1591 }
a5276616 1592 if (!fio_handle_client(client)) {
28d3ab07
JA
1593 log_info("client: host=%s disconnected\n",
1594 client->hostname);
1595 remove_client(client);
498c92c2 1596 retval = 1;
38990764 1597 } else if (client->error)
498c92c2 1598 retval = 1;
343cb4a9 1599 fio_put_client(client);
b66570dc
JA
1600 }
1601 }
1602
952b05e0
CF
1603 fio_client_json_fini();
1604
b66570dc 1605 free(pfds);
498c92c2 1606 return retval;
b66570dc 1607}