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