configure: stop enabling fdatasync on OSX
[fio.git] / server.c
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <unistd.h>
4 #include <errno.h>
5 #include <poll.h>
6 #include <sys/types.h>
7 #include <sys/wait.h>
8 #include <sys/socket.h>
9 #include <sys/stat.h>
10 #include <sys/un.h>
11 #include <sys/uio.h>
12 #include <netinet/in.h>
13 #include <arpa/inet.h>
14 #include <netdb.h>
15 #include <syslog.h>
16 #include <signal.h>
17 #ifdef CONFIG_ZLIB
18 #include <zlib.h>
19 #endif
20
21 #include "fio.h"
22 #include "options.h"
23 #include "server.h"
24 #include "crc/crc16.h"
25 #include "lib/ieee754.h"
26 #include "verify-state.h"
27 #include "smalloc.h"
28
29 int fio_net_port = FIO_NET_PORT;
30
31 bool exit_backend = false;
32
33 enum {
34         SK_F_FREE       = 1,
35         SK_F_COPY       = 2,
36         SK_F_SIMPLE     = 4,
37         SK_F_VEC        = 8,
38         SK_F_INLINE     = 16,
39 };
40
41 struct sk_entry {
42         struct flist_head list; /* link on sk_out->list */
43         int flags;              /* SK_F_* */
44         int opcode;             /* Actual command fields */
45         void *buf;
46         off_t size;
47         uint64_t tag;
48         struct flist_head next; /* Other sk_entry's, if linked command */
49 };
50
51 static char *fio_server_arg;
52 static char *bind_sock;
53 static struct sockaddr_in saddr_in;
54 static struct sockaddr_in6 saddr_in6;
55 static int use_ipv6;
56 #ifdef CONFIG_ZLIB
57 static unsigned int has_zlib = 1;
58 #else
59 static unsigned int has_zlib = 0;
60 #endif
61 static unsigned int use_zlib;
62 static char me[128];
63
64 static pthread_key_t sk_out_key;
65
66 struct fio_fork_item {
67         struct flist_head list;
68         int exitval;
69         int signal;
70         int exited;
71         pid_t pid;
72 };
73
74 struct cmd_reply {
75         struct fio_sem lock;
76         void *data;
77         size_t size;
78         int error;
79 };
80
81 static const char *fio_server_ops[FIO_NET_CMD_NR] = {
82         "",
83         "QUIT",
84         "EXIT",
85         "JOB",
86         "JOBLINE",
87         "TEXT",
88         "TS",
89         "GS",
90         "SEND_ETA",
91         "ETA",
92         "PROBE",
93         "START",
94         "STOP",
95         "DISK_UTIL",
96         "SERVER_START",
97         "ADD_JOB",
98         "RUN",
99         "IOLOG",
100         "UPDATE_JOB",
101         "LOAD_FILE",
102         "VTRIGGER",
103         "SENDFILE",
104         "JOB_OPT",
105 };
106
107 static void sk_lock(struct sk_out *sk_out)
108 {
109         fio_sem_down(&sk_out->lock);
110 }
111
112 static void sk_unlock(struct sk_out *sk_out)
113 {
114         fio_sem_up(&sk_out->lock);
115 }
116
117 void sk_out_assign(struct sk_out *sk_out)
118 {
119         if (!sk_out)
120                 return;
121
122         sk_lock(sk_out);
123         sk_out->refs++;
124         sk_unlock(sk_out);
125         pthread_setspecific(sk_out_key, sk_out);
126 }
127
128 static void sk_out_free(struct sk_out *sk_out)
129 {
130         __fio_sem_remove(&sk_out->lock);
131         __fio_sem_remove(&sk_out->wait);
132         __fio_sem_remove(&sk_out->xmit);
133         sfree(sk_out);
134 }
135
136 static int __sk_out_drop(struct sk_out *sk_out)
137 {
138         if (sk_out) {
139                 int refs;
140
141                 sk_lock(sk_out);
142                 assert(sk_out->refs != 0);
143                 refs = --sk_out->refs;
144                 sk_unlock(sk_out);
145
146                 if (!refs) {
147                         sk_out_free(sk_out);
148                         pthread_setspecific(sk_out_key, NULL);
149                         return 0;
150                 }
151         }
152
153         return 1;
154 }
155
156 void sk_out_drop(void)
157 {
158         struct sk_out *sk_out;
159
160         sk_out = pthread_getspecific(sk_out_key);
161         __sk_out_drop(sk_out);
162 }
163
164 static void __fio_init_net_cmd(struct fio_net_cmd *cmd, uint16_t opcode,
165                                uint32_t pdu_len, uint64_t tag)
166 {
167         memset(cmd, 0, sizeof(*cmd));
168
169         cmd->version    = __cpu_to_le16(FIO_SERVER_VER);
170         cmd->opcode     = cpu_to_le16(opcode);
171         cmd->tag        = cpu_to_le64(tag);
172         cmd->pdu_len    = cpu_to_le32(pdu_len);
173 }
174
175
176 static void fio_init_net_cmd(struct fio_net_cmd *cmd, uint16_t opcode,
177                              const void *pdu, uint32_t pdu_len, uint64_t tag)
178 {
179         __fio_init_net_cmd(cmd, opcode, pdu_len, tag);
180
181         if (pdu)
182                 memcpy(&cmd->payload, pdu, pdu_len);
183 }
184
185 const char *fio_server_op(unsigned int op)
186 {
187         static char buf[32];
188
189         if (op < FIO_NET_CMD_NR)
190                 return fio_server_ops[op];
191
192         sprintf(buf, "UNKNOWN/%d", op);
193         return buf;
194 }
195
196 static ssize_t iov_total_len(const struct iovec *iov, int count)
197 {
198         ssize_t ret = 0;
199
200         while (count--) {
201                 ret += iov->iov_len;
202                 iov++;
203         }
204
205         return ret;
206 }
207
208 static int fio_sendv_data(int sk, struct iovec *iov, int count)
209 {
210         ssize_t total_len = iov_total_len(iov, count);
211         ssize_t ret;
212
213         do {
214                 ret = writev(sk, iov, count);
215                 if (ret > 0) {
216                         total_len -= ret;
217                         if (!total_len)
218                                 break;
219
220                         while (ret) {
221                                 if (ret >= iov->iov_len) {
222                                         ret -= iov->iov_len;
223                                         iov++;
224                                         continue;
225                                 }
226                                 iov->iov_base += ret;
227                                 iov->iov_len -= ret;
228                                 ret = 0;
229                         }
230                 } else if (!ret)
231                         break;
232                 else if (errno == EAGAIN || errno == EINTR)
233                         continue;
234                 else
235                         break;
236         } while (!exit_backend);
237
238         if (!total_len)
239                 return 0;
240
241         return 1;
242 }
243
244 static int fio_send_data(int sk, const void *p, unsigned int len)
245 {
246         struct iovec iov = { .iov_base = (void *) p, .iov_len = len };
247
248         assert(len <= sizeof(struct fio_net_cmd) + FIO_SERVER_MAX_FRAGMENT_PDU);
249
250         return fio_sendv_data(sk, &iov, 1);
251 }
252
253 static int fio_recv_data(int sk, void *buf, unsigned int len, bool wait)
254 {
255         int flags;
256         char *p = buf;
257
258         if (wait)
259                 flags = MSG_WAITALL;
260         else
261                 flags = OS_MSG_DONTWAIT;
262
263         do {
264                 int ret = recv(sk, p, len, flags);
265
266                 if (ret > 0) {
267                         len -= ret;
268                         if (!len)
269                                 break;
270                         p += ret;
271                         continue;
272                 } else if (!ret)
273                         break;
274                 else if (errno == EAGAIN || errno == EINTR) {
275                         if (wait)
276                                 continue;
277                         break;
278                 } else
279                         break;
280         } while (!exit_backend);
281
282         if (!len)
283                 return 0;
284
285         return -1;
286 }
287
288 static int verify_convert_cmd(struct fio_net_cmd *cmd)
289 {
290         uint16_t crc;
291
292         cmd->cmd_crc16 = le16_to_cpu(cmd->cmd_crc16);
293         cmd->pdu_crc16 = le16_to_cpu(cmd->pdu_crc16);
294
295         crc = fio_crc16(cmd, FIO_NET_CMD_CRC_SZ);
296         if (crc != cmd->cmd_crc16) {
297                 log_err("fio: server bad crc on command (got %x, wanted %x)\n",
298                                 cmd->cmd_crc16, crc);
299                 fprintf(f_err, "fio: server bad crc on command (got %x, wanted %x)\n",
300                                 cmd->cmd_crc16, crc);
301                 return 1;
302         }
303
304         cmd->version    = le16_to_cpu(cmd->version);
305         cmd->opcode     = le16_to_cpu(cmd->opcode);
306         cmd->flags      = le32_to_cpu(cmd->flags);
307         cmd->tag        = le64_to_cpu(cmd->tag);
308         cmd->pdu_len    = le32_to_cpu(cmd->pdu_len);
309
310         switch (cmd->version) {
311         case FIO_SERVER_VER:
312                 break;
313         default:
314                 log_err("fio: bad server cmd version %d\n", cmd->version);
315                 fprintf(f_err, "fio: client/server version mismatch (%d != %d)\n",
316                                 cmd->version, FIO_SERVER_VER);
317                 return 1;
318         }
319
320         if (cmd->pdu_len > FIO_SERVER_MAX_FRAGMENT_PDU) {
321                 log_err("fio: command payload too large: %u\n", cmd->pdu_len);
322                 return 1;
323         }
324
325         return 0;
326 }
327
328 /*
329  * Read (and defragment, if necessary) incoming commands
330  */
331 struct fio_net_cmd *fio_net_recv_cmd(int sk, bool wait)
332 {
333         struct fio_net_cmd cmd, *tmp, *cmdret = NULL;
334         size_t cmd_size = 0, pdu_offset = 0;
335         uint16_t crc;
336         int ret, first = 1;
337         void *pdu = NULL;
338
339         do {
340                 ret = fio_recv_data(sk, &cmd, sizeof(cmd), wait);
341                 if (ret)
342                         break;
343
344                 /* We have a command, verify it and swap if need be */
345                 ret = verify_convert_cmd(&cmd);
346                 if (ret)
347                         break;
348
349                 if (first) {
350                         /* if this is text, add room for \0 at the end */
351                         cmd_size = sizeof(cmd) + cmd.pdu_len + 1;
352                         assert(!cmdret);
353                 } else
354                         cmd_size += cmd.pdu_len;
355
356                 if (cmd_size / 1024 > FIO_SERVER_MAX_CMD_MB * 1024) {
357                         log_err("fio: cmd+pdu too large (%llu)\n", (unsigned long long) cmd_size);
358                         ret = 1;
359                         break;
360                 }
361
362                 tmp = realloc(cmdret, cmd_size);
363                 if (!tmp) {
364                         log_err("fio: server failed allocating cmd\n");
365                         ret = 1;
366                         break;
367                 }
368                 cmdret = tmp;
369
370                 if (first)
371                         memcpy(cmdret, &cmd, sizeof(cmd));
372                 else if (cmdret->opcode != cmd.opcode) {
373                         log_err("fio: fragment opcode mismatch (%d != %d)\n",
374                                         cmdret->opcode, cmd.opcode);
375                         ret = 1;
376                         break;
377                 }
378
379                 if (!cmd.pdu_len)
380                         break;
381
382                 /* There's payload, get it */
383                 pdu = (char *) cmdret->payload + pdu_offset;
384                 ret = fio_recv_data(sk, pdu, cmd.pdu_len, wait);
385                 if (ret)
386                         break;
387
388                 /* Verify payload crc */
389                 crc = fio_crc16(pdu, cmd.pdu_len);
390                 if (crc != cmd.pdu_crc16) {
391                         log_err("fio: server bad crc on payload ");
392                         log_err("(got %x, wanted %x)\n", cmd.pdu_crc16, crc);
393                         ret = 1;
394                         break;
395                 }
396
397                 pdu_offset += cmd.pdu_len;
398                 if (!first)
399                         cmdret->pdu_len += cmd.pdu_len;
400                 first = 0;
401         } while (cmd.flags & FIO_NET_CMD_F_MORE);
402
403         if (ret) {
404                 free(cmdret);
405                 cmdret = NULL;
406         } else if (cmdret) {
407                 /* zero-terminate text input */
408                 if (cmdret->pdu_len) {
409                         if (cmdret->opcode == FIO_NET_CMD_TEXT) {
410                                 struct cmd_text_pdu *__pdu = (struct cmd_text_pdu *) cmdret->payload;
411                                 char *buf = (char *) __pdu->buf;
412
413                                 buf[__pdu->buf_len] = '\0';
414                         } else if (cmdret->opcode == FIO_NET_CMD_JOB) {
415                                 struct cmd_job_pdu *__pdu = (struct cmd_job_pdu *) cmdret->payload;
416                                 char *buf = (char *) __pdu->buf;
417                                 int len = le32_to_cpu(__pdu->buf_len);
418
419                                 buf[len] = '\0';
420                         }
421                 }
422
423                 /* frag flag is internal */
424                 cmdret->flags &= ~FIO_NET_CMD_F_MORE;
425         }
426
427         return cmdret;
428 }
429
430 static void add_reply(uint64_t tag, struct flist_head *list)
431 {
432         struct fio_net_cmd_reply *reply;
433
434         reply = (struct fio_net_cmd_reply *) (uintptr_t) tag;
435         flist_add_tail(&reply->list, list);
436 }
437
438 static uint64_t alloc_reply(uint64_t tag, uint16_t opcode)
439 {
440         struct fio_net_cmd_reply *reply;
441
442         reply = calloc(1, sizeof(*reply));
443         INIT_FLIST_HEAD(&reply->list);
444         fio_gettime(&reply->ts, NULL);
445         reply->saved_tag = tag;
446         reply->opcode = opcode;
447
448         return (uintptr_t) reply;
449 }
450
451 static void free_reply(uint64_t tag)
452 {
453         struct fio_net_cmd_reply *reply;
454
455         reply = (struct fio_net_cmd_reply *) (uintptr_t) tag;
456         free(reply);
457 }
458
459 static void fio_net_cmd_crc_pdu(struct fio_net_cmd *cmd, const void *pdu)
460 {
461         uint32_t pdu_len;
462
463         cmd->cmd_crc16 = __cpu_to_le16(fio_crc16(cmd, FIO_NET_CMD_CRC_SZ));
464
465         pdu_len = le32_to_cpu(cmd->pdu_len);
466         cmd->pdu_crc16 = __cpu_to_le16(fio_crc16(pdu, pdu_len));
467 }
468
469 static void fio_net_cmd_crc(struct fio_net_cmd *cmd)
470 {
471         fio_net_cmd_crc_pdu(cmd, cmd->payload);
472 }
473
474 int fio_net_send_cmd(int fd, uint16_t opcode, const void *buf, off_t size,
475                      uint64_t *tagptr, struct flist_head *list)
476 {
477         struct fio_net_cmd *cmd = NULL;
478         size_t this_len, cur_len = 0;
479         uint64_t tag;
480         int ret;
481
482         if (list) {
483                 assert(tagptr);
484                 tag = *tagptr = alloc_reply(*tagptr, opcode);
485         } else
486                 tag = tagptr ? *tagptr : 0;
487
488         do {
489                 this_len = size;
490                 if (this_len > FIO_SERVER_MAX_FRAGMENT_PDU)
491                         this_len = FIO_SERVER_MAX_FRAGMENT_PDU;
492
493                 if (!cmd || cur_len < sizeof(*cmd) + this_len) {
494                         if (cmd)
495                                 free(cmd);
496
497                         cur_len = sizeof(*cmd) + this_len;
498                         cmd = malloc(cur_len);
499                 }
500
501                 fio_init_net_cmd(cmd, opcode, buf, this_len, tag);
502
503                 if (this_len < size)
504                         cmd->flags = __cpu_to_le32(FIO_NET_CMD_F_MORE);
505
506                 fio_net_cmd_crc(cmd);
507
508                 ret = fio_send_data(fd, cmd, sizeof(*cmd) + this_len);
509                 size -= this_len;
510                 buf += this_len;
511         } while (!ret && size);
512
513         if (list) {
514                 if (ret)
515                         free_reply(tag);
516                 else
517                         add_reply(tag, list);
518         }
519
520         if (cmd)
521                 free(cmd);
522
523         return ret;
524 }
525
526 static struct sk_entry *fio_net_prep_cmd(uint16_t opcode, void *buf,
527                                          size_t size, uint64_t *tagptr,
528                                          int flags)
529 {
530         struct sk_entry *entry;
531
532         entry = smalloc(sizeof(*entry));
533         if (!entry)
534                 return NULL;
535
536         INIT_FLIST_HEAD(&entry->next);
537         entry->opcode = opcode;
538         if (flags & SK_F_COPY) {
539                 entry->buf = smalloc(size);
540                 memcpy(entry->buf, buf, size);
541         } else
542                 entry->buf = buf;
543
544         entry->size = size;
545         if (tagptr)
546                 entry->tag = *tagptr;
547         else
548                 entry->tag = 0;
549         entry->flags = flags;
550         return entry;
551 }
552
553 static int handle_sk_entry(struct sk_out *sk_out, struct sk_entry *entry);
554
555 static void fio_net_queue_entry(struct sk_entry *entry)
556 {
557         struct sk_out *sk_out = pthread_getspecific(sk_out_key);
558
559         if (entry->flags & SK_F_INLINE)
560                 handle_sk_entry(sk_out, entry);
561         else {
562                 sk_lock(sk_out);
563                 flist_add_tail(&entry->list, &sk_out->list);
564                 sk_unlock(sk_out);
565
566                 fio_sem_up(&sk_out->wait);
567         }
568 }
569
570 static int fio_net_queue_cmd(uint16_t opcode, void *buf, off_t size,
571                              uint64_t *tagptr, int flags)
572 {
573         struct sk_entry *entry;
574
575         entry = fio_net_prep_cmd(opcode, buf, size, tagptr, flags);
576         if (entry) {
577                 fio_net_queue_entry(entry);
578                 return 0;
579         }
580
581         return 1;
582 }
583
584 static int fio_net_send_simple_stack_cmd(int sk, uint16_t opcode, uint64_t tag)
585 {
586         struct fio_net_cmd cmd;
587
588         fio_init_net_cmd(&cmd, opcode, NULL, 0, tag);
589         fio_net_cmd_crc(&cmd);
590
591         return fio_send_data(sk, &cmd, sizeof(cmd));
592 }
593
594 /*
595  * If 'list' is non-NULL, then allocate and store the sent command for
596  * later verification.
597  */
598 int fio_net_send_simple_cmd(int sk, uint16_t opcode, uint64_t tag,
599                             struct flist_head *list)
600 {
601         int ret;
602
603         if (list)
604                 tag = alloc_reply(tag, opcode);
605
606         ret = fio_net_send_simple_stack_cmd(sk, opcode, tag);
607         if (ret) {
608                 if (list)
609                         free_reply(tag);
610
611                 return ret;
612         }
613
614         if (list)
615                 add_reply(tag, list);
616
617         return 0;
618 }
619
620 static int fio_net_queue_quit(void)
621 {
622         dprint(FD_NET, "server: sending quit\n");
623
624         return fio_net_queue_cmd(FIO_NET_CMD_QUIT, NULL, 0, NULL, SK_F_SIMPLE);
625 }
626
627 int fio_net_send_quit(int sk)
628 {
629         dprint(FD_NET, "server: sending quit\n");
630
631         return fio_net_send_simple_cmd(sk, FIO_NET_CMD_QUIT, 0, NULL);
632 }
633
634 static int fio_net_send_ack(struct fio_net_cmd *cmd, int error, int signal)
635 {
636         struct cmd_end_pdu epdu;
637         uint64_t tag = 0;
638
639         if (cmd)
640                 tag = cmd->tag;
641
642         epdu.error = __cpu_to_le32(error);
643         epdu.signal = __cpu_to_le32(signal);
644         return fio_net_queue_cmd(FIO_NET_CMD_STOP, &epdu, sizeof(epdu), &tag, SK_F_COPY);
645 }
646
647 static int fio_net_queue_stop(int error, int signal)
648 {
649         dprint(FD_NET, "server: sending stop (%d, %d)\n", error, signal);
650         return fio_net_send_ack(NULL, error, signal);
651 }
652
653 static void fio_server_add_fork_item(pid_t pid, struct flist_head *list)
654 {
655         struct fio_fork_item *ffi;
656
657         ffi = malloc(sizeof(*ffi));
658         ffi->exitval = 0;
659         ffi->signal = 0;
660         ffi->exited = 0;
661         ffi->pid = pid;
662         flist_add_tail(&ffi->list, list);
663 }
664
665 static void fio_server_add_conn_pid(struct flist_head *conn_list, pid_t pid)
666 {
667         dprint(FD_NET, "server: forked off connection job (pid=%u)\n", (int) pid);
668         fio_server_add_fork_item(pid, conn_list);
669 }
670
671 static void fio_server_add_job_pid(struct flist_head *job_list, pid_t pid)
672 {
673         dprint(FD_NET, "server: forked off job job (pid=%u)\n", (int) pid);
674         fio_server_add_fork_item(pid, job_list);
675 }
676
677 static void fio_server_check_fork_item(struct fio_fork_item *ffi)
678 {
679         int ret, status;
680
681         ret = waitpid(ffi->pid, &status, WNOHANG);
682         if (ret < 0) {
683                 if (errno == ECHILD) {
684                         log_err("fio: connection pid %u disappeared\n", (int) ffi->pid);
685                         ffi->exited = 1;
686                 } else
687                         log_err("fio: waitpid: %s\n", strerror(errno));
688         } else if (ret == ffi->pid) {
689                 if (WIFSIGNALED(status)) {
690                         ffi->signal = WTERMSIG(status);
691                         ffi->exited = 1;
692                 }
693                 if (WIFEXITED(status)) {
694                         if (WEXITSTATUS(status))
695                                 ffi->exitval = WEXITSTATUS(status);
696                         ffi->exited = 1;
697                 }
698         }
699 }
700
701 static void fio_server_fork_item_done(struct fio_fork_item *ffi, bool stop)
702 {
703         dprint(FD_NET, "pid %u exited, sig=%u, exitval=%d\n", (int) ffi->pid, ffi->signal, ffi->exitval);
704
705         /*
706          * Fold STOP and QUIT...
707          */
708         if (stop) {
709                 fio_net_queue_stop(ffi->exitval, ffi->signal);
710                 fio_net_queue_quit();
711         }
712
713         flist_del(&ffi->list);
714         free(ffi);
715 }
716
717 static void fio_server_check_fork_items(struct flist_head *list, bool stop)
718 {
719         struct flist_head *entry, *tmp;
720         struct fio_fork_item *ffi;
721
722         flist_for_each_safe(entry, tmp, list) {
723                 ffi = flist_entry(entry, struct fio_fork_item, list);
724
725                 fio_server_check_fork_item(ffi);
726
727                 if (ffi->exited)
728                         fio_server_fork_item_done(ffi, stop);
729         }
730 }
731
732 static void fio_server_check_jobs(struct flist_head *job_list)
733 {
734         fio_server_check_fork_items(job_list, true);
735 }
736
737 static void fio_server_check_conns(struct flist_head *conn_list)
738 {
739         fio_server_check_fork_items(conn_list, false);
740 }
741
742 static int handle_load_file_cmd(struct fio_net_cmd *cmd)
743 {
744         struct cmd_load_file_pdu *pdu = (struct cmd_load_file_pdu *) cmd->payload;
745         void *file_name = pdu->file;
746         struct cmd_start_pdu spdu;
747
748         dprint(FD_NET, "server: loading local file %s\n", (char *) file_name);
749
750         pdu->name_len = le16_to_cpu(pdu->name_len);
751         pdu->client_type = le16_to_cpu(pdu->client_type);
752
753         if (parse_jobs_ini(file_name, 0, 0, pdu->client_type)) {
754                 fio_net_queue_quit();
755                 return -1;
756         }
757
758         spdu.jobs = cpu_to_le32(thread_number);
759         spdu.stat_outputs = cpu_to_le32(stat_number);
760         fio_net_queue_cmd(FIO_NET_CMD_START, &spdu, sizeof(spdu), NULL, SK_F_COPY);
761         return 0;
762 }
763
764 static int handle_run_cmd(struct sk_out *sk_out, struct flist_head *job_list,
765                           struct fio_net_cmd *cmd)
766 {
767         pid_t pid;
768         int ret;
769
770         sk_out_assign(sk_out);
771
772         fio_time_init();
773         set_genesis_time();
774
775         pid = fork();
776         if (pid) {
777                 fio_server_add_job_pid(job_list, pid);
778                 return 0;
779         }
780
781         ret = fio_backend(sk_out);
782         free_threads_shm();
783         sk_out_drop();
784         _exit(ret);
785 }
786
787 static int handle_job_cmd(struct fio_net_cmd *cmd)
788 {
789         struct cmd_job_pdu *pdu = (struct cmd_job_pdu *) cmd->payload;
790         void *buf = pdu->buf;
791         struct cmd_start_pdu spdu;
792
793         pdu->buf_len = le32_to_cpu(pdu->buf_len);
794         pdu->client_type = le32_to_cpu(pdu->client_type);
795
796         if (parse_jobs_ini(buf, 1, 0, pdu->client_type)) {
797                 fio_net_queue_quit();
798                 return -1;
799         }
800
801         spdu.jobs = cpu_to_le32(thread_number);
802         spdu.stat_outputs = cpu_to_le32(stat_number);
803
804         fio_net_queue_cmd(FIO_NET_CMD_START, &spdu, sizeof(spdu), NULL, SK_F_COPY);
805         return 0;
806 }
807
808 static int handle_jobline_cmd(struct fio_net_cmd *cmd)
809 {
810         void *pdu = cmd->payload;
811         struct cmd_single_line_pdu *cslp;
812         struct cmd_line_pdu *clp;
813         unsigned long offset;
814         struct cmd_start_pdu spdu;
815         char **argv;
816         int i;
817
818         clp = pdu;
819         clp->lines = le16_to_cpu(clp->lines);
820         clp->client_type = le16_to_cpu(clp->client_type);
821         argv = malloc(clp->lines * sizeof(char *));
822         offset = sizeof(*clp);
823
824         dprint(FD_NET, "server: %d command line args\n", clp->lines);
825
826         for (i = 0; i < clp->lines; i++) {
827                 cslp = pdu + offset;
828                 argv[i] = (char *) cslp->text;
829
830                 offset += sizeof(*cslp) + le16_to_cpu(cslp->len);
831                 dprint(FD_NET, "server: %d: %s\n", i, argv[i]);
832         }
833
834         if (parse_cmd_line(clp->lines, argv, clp->client_type)) {
835                 fio_net_queue_quit();
836                 free(argv);
837                 return -1;
838         }
839
840         free(argv);
841
842         spdu.jobs = cpu_to_le32(thread_number);
843         spdu.stat_outputs = cpu_to_le32(stat_number);
844
845         fio_net_queue_cmd(FIO_NET_CMD_START, &spdu, sizeof(spdu), NULL, SK_F_COPY);
846         return 0;
847 }
848
849 static int handle_probe_cmd(struct fio_net_cmd *cmd)
850 {
851         struct cmd_client_probe_pdu *pdu = (struct cmd_client_probe_pdu *) cmd->payload;
852         uint64_t tag = cmd->tag;
853         struct cmd_probe_reply_pdu probe = {
854 #ifdef CONFIG_BIG_ENDIAN
855                 .bigendian      = 1,
856 #endif
857                 .os             = FIO_OS,
858                 .arch           = FIO_ARCH,
859                 .bpp            = sizeof(void *),
860                 .cpus           = __cpu_to_le32(cpus_online()),
861         };
862
863         dprint(FD_NET, "server: sending probe reply\n");
864
865         strcpy(me, (char *) pdu->server);
866
867         gethostname((char *) probe.hostname, sizeof(probe.hostname));
868         snprintf((char *) probe.fio_version, sizeof(probe.fio_version), "%s",
869                  fio_version_string);
870
871         /*
872          * If the client supports compression and we do too, then enable it
873          */
874         if (has_zlib && le64_to_cpu(pdu->flags) & FIO_PROBE_FLAG_ZLIB) {
875                 probe.flags = __cpu_to_le64(FIO_PROBE_FLAG_ZLIB);
876                 use_zlib = 1;
877         } else {
878                 probe.flags = 0;
879                 use_zlib = 0;
880         }
881
882         return fio_net_queue_cmd(FIO_NET_CMD_PROBE, &probe, sizeof(probe), &tag, SK_F_COPY);
883 }
884
885 static int handle_send_eta_cmd(struct fio_net_cmd *cmd)
886 {
887         struct jobs_eta *je;
888         uint64_t tag = cmd->tag;
889         size_t size;
890         int i;
891
892         dprint(FD_NET, "server sending status\n");
893
894         /*
895          * Fake ETA return if we don't have a local one, otherwise the client
896          * will end up timing out waiting for a response to the ETA request
897          */
898         je = get_jobs_eta(true, &size);
899         if (!je) {
900                 size = sizeof(*je);
901                 je = calloc(1, size);
902         } else {
903                 je->nr_running          = cpu_to_le32(je->nr_running);
904                 je->nr_ramp             = cpu_to_le32(je->nr_ramp);
905                 je->nr_pending          = cpu_to_le32(je->nr_pending);
906                 je->nr_setting_up       = cpu_to_le32(je->nr_setting_up);
907                 je->files_open          = cpu_to_le32(je->files_open);
908
909                 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
910                         je->m_rate[i]   = cpu_to_le64(je->m_rate[i]);
911                         je->t_rate[i]   = cpu_to_le64(je->t_rate[i]);
912                         je->m_iops[i]   = cpu_to_le32(je->m_iops[i]);
913                         je->t_iops[i]   = cpu_to_le32(je->t_iops[i]);
914                         je->rate[i]     = cpu_to_le64(je->rate[i]);
915                         je->iops[i]     = cpu_to_le32(je->iops[i]);
916                 }
917
918                 je->elapsed_sec         = cpu_to_le64(je->elapsed_sec);
919                 je->eta_sec             = cpu_to_le64(je->eta_sec);
920                 je->nr_threads          = cpu_to_le32(je->nr_threads);
921                 je->is_pow2             = cpu_to_le32(je->is_pow2);
922                 je->unit_base           = cpu_to_le32(je->unit_base);
923         }
924
925         fio_net_queue_cmd(FIO_NET_CMD_ETA, je, size, &tag, SK_F_FREE);
926         return 0;
927 }
928
929 static int send_update_job_reply(uint64_t __tag, int error)
930 {
931         uint64_t tag = __tag;
932         uint32_t pdu_error;
933
934         pdu_error = __cpu_to_le32(error);
935         return fio_net_queue_cmd(FIO_NET_CMD_UPDATE_JOB, &pdu_error, sizeof(pdu_error), &tag, SK_F_COPY);
936 }
937
938 static int handle_update_job_cmd(struct fio_net_cmd *cmd)
939 {
940         struct cmd_add_job_pdu *pdu = (struct cmd_add_job_pdu *) cmd->payload;
941         struct thread_data *td;
942         uint32_t tnumber;
943
944         tnumber = le32_to_cpu(pdu->thread_number);
945
946         dprint(FD_NET, "server: updating options for job %u\n", tnumber);
947
948         if (!tnumber || tnumber > thread_number) {
949                 send_update_job_reply(cmd->tag, ENODEV);
950                 return 0;
951         }
952
953         td = &threads[tnumber - 1];
954         convert_thread_options_to_cpu(&td->o, &pdu->top);
955         send_update_job_reply(cmd->tag, 0);
956         return 0;
957 }
958
959 static int handle_trigger_cmd(struct fio_net_cmd *cmd, struct flist_head *job_list)
960 {
961         struct cmd_vtrigger_pdu *pdu = (struct cmd_vtrigger_pdu *) cmd->payload;
962         char *buf = (char *) pdu->cmd;
963         struct all_io_list *rep;
964         size_t sz;
965
966         pdu->len = le16_to_cpu(pdu->len);
967         buf[pdu->len] = '\0';
968
969         rep = get_all_io_list(IO_LIST_ALL, &sz);
970         if (!rep) {
971                 struct all_io_list state;
972
973                 state.threads = cpu_to_le64((uint64_t) 0);
974                 fio_net_queue_cmd(FIO_NET_CMD_VTRIGGER, &state, sizeof(state), NULL, SK_F_COPY | SK_F_INLINE);
975         } else
976                 fio_net_queue_cmd(FIO_NET_CMD_VTRIGGER, rep, sz, NULL, SK_F_FREE | SK_F_INLINE);
977
978         fio_terminate_threads(TERMINATE_ALL);
979         fio_server_check_jobs(job_list);
980         exec_trigger(buf);
981         return 0;
982 }
983
984 static int handle_command(struct sk_out *sk_out, struct flist_head *job_list,
985                           struct fio_net_cmd *cmd)
986 {
987         int ret;
988
989         dprint(FD_NET, "server: got op [%s], pdu=%u, tag=%llx\n",
990                         fio_server_op(cmd->opcode), cmd->pdu_len,
991                         (unsigned long long) cmd->tag);
992
993         switch (cmd->opcode) {
994         case FIO_NET_CMD_QUIT:
995                 fio_terminate_threads(TERMINATE_ALL);
996                 ret = 0;
997                 break;
998         case FIO_NET_CMD_EXIT:
999                 exit_backend = true;
1000                 return -1;
1001         case FIO_NET_CMD_LOAD_FILE:
1002                 ret = handle_load_file_cmd(cmd);
1003                 break;
1004         case FIO_NET_CMD_JOB:
1005                 ret = handle_job_cmd(cmd);
1006                 break;
1007         case FIO_NET_CMD_JOBLINE:
1008                 ret = handle_jobline_cmd(cmd);
1009                 break;
1010         case FIO_NET_CMD_PROBE:
1011                 ret = handle_probe_cmd(cmd);
1012                 break;
1013         case FIO_NET_CMD_SEND_ETA:
1014                 ret = handle_send_eta_cmd(cmd);
1015                 break;
1016         case FIO_NET_CMD_RUN:
1017                 ret = handle_run_cmd(sk_out, job_list, cmd);
1018                 break;
1019         case FIO_NET_CMD_UPDATE_JOB:
1020                 ret = handle_update_job_cmd(cmd);
1021                 break;
1022         case FIO_NET_CMD_VTRIGGER:
1023                 ret = handle_trigger_cmd(cmd, job_list);
1024                 break;
1025         case FIO_NET_CMD_SENDFILE: {
1026                 struct cmd_sendfile_reply *in;
1027                 struct cmd_reply *rep;
1028
1029                 rep = (struct cmd_reply *) (uintptr_t) cmd->tag;
1030
1031                 in = (struct cmd_sendfile_reply *) cmd->payload;
1032                 in->size = le32_to_cpu(in->size);
1033                 in->error = le32_to_cpu(in->error);
1034                 if (in->error) {
1035                         ret = 1;
1036                         rep->error = in->error;
1037                 } else {
1038                         ret = 0;
1039                         rep->data = smalloc(in->size);
1040                         if (!rep->data) {
1041                                 ret = 1;
1042                                 rep->error = ENOMEM;
1043                         } else {
1044                                 rep->size = in->size;
1045                                 memcpy(rep->data, in->data, in->size);
1046                         }
1047                 }
1048                 fio_sem_up(&rep->lock);
1049                 break;
1050                 }
1051         default:
1052                 log_err("fio: unknown opcode: %s\n", fio_server_op(cmd->opcode));
1053                 ret = 1;
1054         }
1055
1056         return ret;
1057 }
1058
1059 /*
1060  * Send a command with a separate PDU, not inlined in the command
1061  */
1062 static int fio_send_cmd_ext_pdu(int sk, uint16_t opcode, const void *buf,
1063                                 off_t size, uint64_t tag, uint32_t flags)
1064 {
1065         struct fio_net_cmd cmd;
1066         struct iovec iov[2];
1067         size_t this_len;
1068         int ret;
1069
1070         iov[0].iov_base = (void *) &cmd;
1071         iov[0].iov_len = sizeof(cmd);
1072
1073         do {
1074                 uint32_t this_flags = flags;
1075
1076                 this_len = size;
1077                 if (this_len > FIO_SERVER_MAX_FRAGMENT_PDU)
1078                         this_len = FIO_SERVER_MAX_FRAGMENT_PDU;
1079
1080                 if (this_len < size)
1081                         this_flags |= FIO_NET_CMD_F_MORE;
1082
1083                 __fio_init_net_cmd(&cmd, opcode, this_len, tag);
1084                 cmd.flags = __cpu_to_le32(this_flags);
1085                 fio_net_cmd_crc_pdu(&cmd, buf);
1086
1087                 iov[1].iov_base = (void *) buf;
1088                 iov[1].iov_len = this_len;
1089
1090                 ret = fio_sendv_data(sk, iov, 2);
1091                 size -= this_len;
1092                 buf += this_len;
1093         } while (!ret && size);
1094
1095         return ret;
1096 }
1097
1098 static void finish_entry(struct sk_entry *entry)
1099 {
1100         if (entry->flags & SK_F_FREE)
1101                 free(entry->buf);
1102         else if (entry->flags & SK_F_COPY)
1103                 sfree(entry->buf);
1104
1105         sfree(entry);
1106 }
1107
1108 static void entry_set_flags(struct sk_entry *entry, struct flist_head *list,
1109                             unsigned int *flags)
1110 {
1111         if (!flist_empty(list))
1112                 *flags = FIO_NET_CMD_F_MORE;
1113         else
1114                 *flags = 0;
1115 }
1116
1117 static int send_vec_entry(struct sk_out *sk_out, struct sk_entry *first)
1118 {
1119         unsigned int flags;
1120         int ret;
1121
1122         entry_set_flags(first, &first->next, &flags);
1123
1124         ret = fio_send_cmd_ext_pdu(sk_out->sk, first->opcode, first->buf,
1125                                         first->size, first->tag, flags);
1126
1127         while (!flist_empty(&first->next)) {
1128                 struct sk_entry *next;
1129
1130                 next = flist_first_entry(&first->next, struct sk_entry, list);
1131                 flist_del_init(&next->list);
1132
1133                 entry_set_flags(next, &first->next, &flags);
1134
1135                 ret += fio_send_cmd_ext_pdu(sk_out->sk, next->opcode, next->buf,
1136                                                 next->size, next->tag, flags);
1137                 finish_entry(next);
1138         }
1139
1140         return ret;
1141 }
1142
1143 static int handle_sk_entry(struct sk_out *sk_out, struct sk_entry *entry)
1144 {
1145         int ret;
1146
1147         fio_sem_down(&sk_out->xmit);
1148
1149         if (entry->flags & SK_F_VEC)
1150                 ret = send_vec_entry(sk_out, entry);
1151         else if (entry->flags & SK_F_SIMPLE) {
1152                 ret = fio_net_send_simple_cmd(sk_out->sk, entry->opcode,
1153                                                 entry->tag, NULL);
1154         } else {
1155                 ret = fio_net_send_cmd(sk_out->sk, entry->opcode, entry->buf,
1156                                         entry->size, &entry->tag, NULL);
1157         }
1158
1159         fio_sem_up(&sk_out->xmit);
1160
1161         if (ret)
1162                 log_err("fio: failed handling cmd %s\n", fio_server_op(entry->opcode));
1163
1164         finish_entry(entry);
1165         return ret;
1166 }
1167
1168 static int handle_xmits(struct sk_out *sk_out)
1169 {
1170         struct sk_entry *entry;
1171         FLIST_HEAD(list);
1172         int ret = 0;
1173
1174         sk_lock(sk_out);
1175         if (flist_empty(&sk_out->list)) {
1176                 sk_unlock(sk_out);
1177                 return 0;
1178         }
1179
1180         flist_splice_init(&sk_out->list, &list);
1181         sk_unlock(sk_out);
1182
1183         while (!flist_empty(&list)) {
1184                 entry = flist_entry(list.next, struct sk_entry, list);
1185                 flist_del(&entry->list);
1186                 ret += handle_sk_entry(sk_out, entry);
1187         }
1188
1189         return ret;
1190 }
1191
1192 static int handle_connection(struct sk_out *sk_out)
1193 {
1194         struct fio_net_cmd *cmd = NULL;
1195         FLIST_HEAD(job_list);
1196         int ret = 0;
1197
1198         reset_fio_state();
1199
1200         /* read forever */
1201         while (!exit_backend) {
1202                 struct pollfd pfd = {
1203                         .fd     = sk_out->sk,
1204                         .events = POLLIN,
1205                 };
1206
1207                 do {
1208                         int timeout = 1000;
1209
1210                         if (!flist_empty(&job_list))
1211                                 timeout = 100;
1212
1213                         handle_xmits(sk_out);
1214
1215                         ret = poll(&pfd, 1, 0);
1216                         if (ret < 0) {
1217                                 if (errno == EINTR)
1218                                         break;
1219                                 log_err("fio: poll: %s\n", strerror(errno));
1220                                 break;
1221                         } else if (!ret) {
1222                                 fio_server_check_jobs(&job_list);
1223                                 fio_sem_down_timeout(&sk_out->wait, timeout);
1224                                 continue;
1225                         }
1226
1227                         if (pfd.revents & POLLIN)
1228                                 break;
1229                         if (pfd.revents & (POLLERR|POLLHUP)) {
1230                                 ret = 1;
1231                                 break;
1232                         }
1233                 } while (!exit_backend);
1234
1235                 fio_server_check_jobs(&job_list);
1236
1237                 if (ret < 0)
1238                         break;
1239
1240                 cmd = fio_net_recv_cmd(sk_out->sk, true);
1241                 if (!cmd) {
1242                         ret = -1;
1243                         break;
1244                 }
1245
1246                 ret = handle_command(sk_out, &job_list, cmd);
1247                 if (ret)
1248                         break;
1249
1250                 free(cmd);
1251                 cmd = NULL;
1252         }
1253
1254         if (cmd)
1255                 free(cmd);
1256
1257         handle_xmits(sk_out);
1258
1259         close(sk_out->sk);
1260         sk_out->sk = -1;
1261         __sk_out_drop(sk_out);
1262         _exit(ret);
1263 }
1264
1265 /* get the address on this host bound by the input socket, 
1266  * whether it is ipv6 or ipv4 */
1267
1268 static int get_my_addr_str(int sk)
1269 {
1270         struct sockaddr_in6 myaddr6 = { 0, };
1271         struct sockaddr_in myaddr4 = { 0, };
1272         struct sockaddr *sockaddr_p;
1273         char *net_addr;
1274         socklen_t len;
1275         int ret;
1276
1277         if (use_ipv6) {
1278                 len = sizeof(myaddr6);
1279                 sockaddr_p = (struct sockaddr * )&myaddr6;
1280                 net_addr = (char * )&myaddr6.sin6_addr;
1281         } else {
1282                 len = sizeof(myaddr4);
1283                 sockaddr_p = (struct sockaddr * )&myaddr4;
1284                 net_addr = (char * )&myaddr4.sin_addr;
1285         }
1286
1287         ret = getsockname(sk, sockaddr_p, &len);
1288         if (ret) {
1289                 log_err("fio: getsockname: %s\n", strerror(errno));
1290                 return -1;
1291         }
1292
1293         if (!inet_ntop(use_ipv6?AF_INET6:AF_INET, net_addr, client_sockaddr_str, INET6_ADDRSTRLEN - 1)) {
1294                 log_err("inet_ntop: failed to convert addr to string\n");
1295                 return -1;
1296         }
1297
1298         dprint(FD_NET, "fio server bound to addr %s\n", client_sockaddr_str);
1299         return 0;
1300 }
1301
1302 static int accept_loop(int listen_sk)
1303 {
1304         struct sockaddr_in addr;
1305         struct sockaddr_in6 addr6;
1306         socklen_t len = use_ipv6 ? sizeof(addr6) : sizeof(addr);
1307         struct pollfd pfd;
1308         int ret = 0, sk, exitval = 0;
1309         FLIST_HEAD(conn_list);
1310
1311         dprint(FD_NET, "server enter accept loop\n");
1312
1313         fio_set_fd_nonblocking(listen_sk, "server");
1314
1315         while (!exit_backend) {
1316                 struct sk_out *sk_out;
1317                 const char *from;
1318                 char buf[64];
1319                 pid_t pid;
1320
1321                 pfd.fd = listen_sk;
1322                 pfd.events = POLLIN;
1323                 do {
1324                         int timeout = 1000;
1325
1326                         if (!flist_empty(&conn_list))
1327                                 timeout = 100;
1328
1329                         ret = poll(&pfd, 1, timeout);
1330                         if (ret < 0) {
1331                                 if (errno == EINTR)
1332                                         break;
1333                                 log_err("fio: poll: %s\n", strerror(errno));
1334                                 break;
1335                         } else if (!ret) {
1336                                 fio_server_check_conns(&conn_list);
1337                                 continue;
1338                         }
1339
1340                         if (pfd.revents & POLLIN)
1341                                 break;
1342                 } while (!exit_backend);
1343
1344                 fio_server_check_conns(&conn_list);
1345
1346                 if (exit_backend || ret < 0)
1347                         break;
1348
1349                 if (use_ipv6)
1350                         sk = accept(listen_sk, (struct sockaddr *) &addr6, &len);
1351                 else
1352                         sk = accept(listen_sk, (struct sockaddr *) &addr, &len);
1353
1354                 if (sk < 0) {
1355                         log_err("fio: accept: %s\n", strerror(errno));
1356                         return -1;
1357                 }
1358
1359                 if (use_ipv6)
1360                         from = inet_ntop(AF_INET6, (struct sockaddr *) &addr6.sin6_addr, buf, sizeof(buf));
1361                 else
1362                         from = inet_ntop(AF_INET, (struct sockaddr *) &addr.sin_addr, buf, sizeof(buf));
1363
1364                 dprint(FD_NET, "server: connect from %s\n", from);
1365
1366                 sk_out = scalloc(1, sizeof(*sk_out));
1367                 if (!sk_out) {
1368                         close(sk);
1369                         return -1;
1370                 }
1371
1372                 sk_out->sk = sk;
1373                 INIT_FLIST_HEAD(&sk_out->list);
1374                 __fio_sem_init(&sk_out->lock, FIO_SEM_UNLOCKED);
1375                 __fio_sem_init(&sk_out->wait, FIO_SEM_LOCKED);
1376                 __fio_sem_init(&sk_out->xmit, FIO_SEM_UNLOCKED);
1377
1378                 pid = fork();
1379                 if (pid) {
1380                         close(sk);
1381                         fio_server_add_conn_pid(&conn_list, pid);
1382                         continue;
1383                 }
1384
1385                 /* if error, it's already logged, non-fatal */
1386                 get_my_addr_str(sk);
1387
1388                 /*
1389                  * Assign sk_out here, it'll be dropped in handle_connection()
1390                  * since that function calls _exit() when done
1391                  */
1392                 sk_out_assign(sk_out);
1393                 handle_connection(sk_out);
1394         }
1395
1396         return exitval;
1397 }
1398
1399 int fio_server_text_output(int level, const char *buf, size_t len)
1400 {
1401         struct sk_out *sk_out = pthread_getspecific(sk_out_key);
1402         struct cmd_text_pdu *pdu;
1403         unsigned int tlen;
1404         struct timeval tv;
1405
1406         if (!sk_out || sk_out->sk == -1)
1407                 return -1;
1408
1409         tlen = sizeof(*pdu) + len;
1410         pdu = malloc(tlen);
1411
1412         pdu->level      = __cpu_to_le32(level);
1413         pdu->buf_len    = __cpu_to_le32(len);
1414
1415         gettimeofday(&tv, NULL);
1416         pdu->log_sec    = __cpu_to_le64(tv.tv_sec);
1417         pdu->log_usec   = __cpu_to_le64(tv.tv_usec);
1418
1419         memcpy(pdu->buf, buf, len);
1420
1421         fio_net_queue_cmd(FIO_NET_CMD_TEXT, pdu, tlen, NULL, SK_F_COPY);
1422         free(pdu);
1423         return len;
1424 }
1425
1426 static void convert_io_stat(struct io_stat *dst, struct io_stat *src)
1427 {
1428         dst->max_val    = cpu_to_le64(src->max_val);
1429         dst->min_val    = cpu_to_le64(src->min_val);
1430         dst->samples    = cpu_to_le64(src->samples);
1431
1432         /*
1433          * Encode to IEEE 754 for network transfer
1434          */
1435         dst->mean.u.i   = cpu_to_le64(fio_double_to_uint64(src->mean.u.f));
1436         dst->S.u.i      = cpu_to_le64(fio_double_to_uint64(src->S.u.f));
1437 }
1438
1439 static void convert_gs(struct group_run_stats *dst, struct group_run_stats *src)
1440 {
1441         int i;
1442
1443         for (i = 0; i < DDIR_RWDIR_CNT; i++) {
1444                 dst->max_run[i]         = cpu_to_le64(src->max_run[i]);
1445                 dst->min_run[i]         = cpu_to_le64(src->min_run[i]);
1446                 dst->max_bw[i]          = cpu_to_le64(src->max_bw[i]);
1447                 dst->min_bw[i]          = cpu_to_le64(src->min_bw[i]);
1448                 dst->iobytes[i]         = cpu_to_le64(src->iobytes[i]);
1449                 dst->agg[i]             = cpu_to_le64(src->agg[i]);
1450         }
1451
1452         dst->kb_base    = cpu_to_le32(src->kb_base);
1453         dst->unit_base  = cpu_to_le32(src->unit_base);
1454         dst->groupid    = cpu_to_le32(src->groupid);
1455         dst->unified_rw_rep     = cpu_to_le32(src->unified_rw_rep);
1456         dst->sig_figs   = cpu_to_le32(src->sig_figs);
1457 }
1458
1459 /*
1460  * Send a CMD_TS, which packs struct thread_stat and group_run_stats
1461  * into a single payload.
1462  */
1463 void fio_server_send_ts(struct thread_stat *ts, struct group_run_stats *rs)
1464 {
1465         struct cmd_ts_pdu p;
1466         int i, j;
1467         void *ss_buf;
1468         uint64_t *ss_iops, *ss_bw;
1469
1470         dprint(FD_NET, "server sending end stats\n");
1471
1472         memset(&p, 0, sizeof(p));
1473
1474         snprintf(p.ts.name, sizeof(p.ts.name), "%s", ts->name);
1475         snprintf(p.ts.verror, sizeof(p.ts.verror), "%s", ts->verror);
1476         snprintf(p.ts.description, sizeof(p.ts.description), "%s",
1477                  ts->description);
1478
1479         p.ts.error              = cpu_to_le32(ts->error);
1480         p.ts.thread_number      = cpu_to_le32(ts->thread_number);
1481         p.ts.groupid            = cpu_to_le32(ts->groupid);
1482         p.ts.pid                = cpu_to_le32(ts->pid);
1483         p.ts.members            = cpu_to_le32(ts->members);
1484         p.ts.unified_rw_rep     = cpu_to_le32(ts->unified_rw_rep);
1485
1486         for (i = 0; i < DDIR_RWDIR_CNT; i++) {
1487                 convert_io_stat(&p.ts.clat_stat[i], &ts->clat_stat[i]);
1488                 convert_io_stat(&p.ts.slat_stat[i], &ts->slat_stat[i]);
1489                 convert_io_stat(&p.ts.lat_stat[i], &ts->lat_stat[i]);
1490                 convert_io_stat(&p.ts.bw_stat[i], &ts->bw_stat[i]);
1491                 convert_io_stat(&p.ts.iops_stat[i], &ts->iops_stat[i]);
1492         }
1493
1494         p.ts.usr_time           = cpu_to_le64(ts->usr_time);
1495         p.ts.sys_time           = cpu_to_le64(ts->sys_time);
1496         p.ts.ctx                = cpu_to_le64(ts->ctx);
1497         p.ts.minf               = cpu_to_le64(ts->minf);
1498         p.ts.majf               = cpu_to_le64(ts->majf);
1499         p.ts.clat_percentiles   = cpu_to_le32(ts->clat_percentiles);
1500         p.ts.lat_percentiles    = cpu_to_le32(ts->lat_percentiles);
1501         p.ts.percentile_precision = cpu_to_le64(ts->percentile_precision);
1502
1503         for (i = 0; i < FIO_IO_U_LIST_MAX_LEN; i++) {
1504                 fio_fp64_t *src = &ts->percentile_list[i];
1505                 fio_fp64_t *dst = &p.ts.percentile_list[i];
1506
1507                 dst->u.i = cpu_to_le64(fio_double_to_uint64(src->u.f));
1508         }
1509
1510         for (i = 0; i < FIO_IO_U_MAP_NR; i++) {
1511                 p.ts.io_u_map[i]        = cpu_to_le64(ts->io_u_map[i]);
1512                 p.ts.io_u_submit[i]     = cpu_to_le64(ts->io_u_submit[i]);
1513                 p.ts.io_u_complete[i]   = cpu_to_le64(ts->io_u_complete[i]);
1514         }
1515
1516         for (i = 0; i < FIO_IO_U_LAT_N_NR; i++)
1517                 p.ts.io_u_lat_n[i]      = cpu_to_le64(ts->io_u_lat_n[i]);
1518         for (i = 0; i < FIO_IO_U_LAT_U_NR; i++)
1519                 p.ts.io_u_lat_u[i]      = cpu_to_le64(ts->io_u_lat_u[i]);
1520         for (i = 0; i < FIO_IO_U_LAT_M_NR; i++)
1521                 p.ts.io_u_lat_m[i]      = cpu_to_le64(ts->io_u_lat_m[i]);
1522
1523         for (i = 0; i < DDIR_RWDIR_CNT; i++)
1524                 for (j = 0; j < FIO_IO_U_PLAT_NR; j++)
1525                         p.ts.io_u_plat[i][j] = cpu_to_le64(ts->io_u_plat[i][j]);
1526
1527         for (i = 0; i < DDIR_RWDIR_CNT; i++) {
1528                 p.ts.total_io_u[i]      = cpu_to_le64(ts->total_io_u[i]);
1529                 p.ts.short_io_u[i]      = cpu_to_le64(ts->short_io_u[i]);
1530                 p.ts.drop_io_u[i]       = cpu_to_le64(ts->drop_io_u[i]);
1531         }
1532
1533         p.ts.total_submit       = cpu_to_le64(ts->total_submit);
1534         p.ts.total_complete     = cpu_to_le64(ts->total_complete);
1535         p.ts.nr_zone_resets     = cpu_to_le64(ts->nr_zone_resets);
1536
1537         for (i = 0; i < DDIR_RWDIR_CNT; i++) {
1538                 p.ts.io_bytes[i]        = cpu_to_le64(ts->io_bytes[i]);
1539                 p.ts.runtime[i]         = cpu_to_le64(ts->runtime[i]);
1540         }
1541
1542         p.ts.total_run_time     = cpu_to_le64(ts->total_run_time);
1543         p.ts.continue_on_error  = cpu_to_le16(ts->continue_on_error);
1544         p.ts.total_err_count    = cpu_to_le64(ts->total_err_count);
1545         p.ts.first_error        = cpu_to_le32(ts->first_error);
1546         p.ts.kb_base            = cpu_to_le32(ts->kb_base);
1547         p.ts.unit_base          = cpu_to_le32(ts->unit_base);
1548
1549         p.ts.latency_depth      = cpu_to_le32(ts->latency_depth);
1550         p.ts.latency_target     = cpu_to_le64(ts->latency_target);
1551         p.ts.latency_window     = cpu_to_le64(ts->latency_window);
1552         p.ts.latency_percentile.u.i = cpu_to_le64(fio_double_to_uint64(ts->latency_percentile.u.f));
1553
1554         p.ts.sig_figs           = cpu_to_le32(ts->sig_figs);
1555
1556         p.ts.nr_block_infos     = cpu_to_le64(ts->nr_block_infos);
1557         for (i = 0; i < p.ts.nr_block_infos; i++)
1558                 p.ts.block_infos[i] = cpu_to_le32(ts->block_infos[i]);
1559
1560         p.ts.ss_dur             = cpu_to_le64(ts->ss_dur);
1561         p.ts.ss_state           = cpu_to_le32(ts->ss_state);
1562         p.ts.ss_head            = cpu_to_le32(ts->ss_head);
1563         p.ts.ss_limit.u.i       = cpu_to_le64(fio_double_to_uint64(ts->ss_limit.u.f));
1564         p.ts.ss_slope.u.i       = cpu_to_le64(fio_double_to_uint64(ts->ss_slope.u.f));
1565         p.ts.ss_deviation.u.i   = cpu_to_le64(fio_double_to_uint64(ts->ss_deviation.u.f));
1566         p.ts.ss_criterion.u.i   = cpu_to_le64(fio_double_to_uint64(ts->ss_criterion.u.f));
1567
1568         p.ts.cachehit           = cpu_to_le64(ts->cachehit);
1569         p.ts.cachemiss          = cpu_to_le64(ts->cachemiss);
1570
1571         convert_gs(&p.rs, rs);
1572
1573         dprint(FD_NET, "ts->ss_state = %d\n", ts->ss_state);
1574         if (ts->ss_state & FIO_SS_DATA) {
1575                 dprint(FD_NET, "server sending steadystate ring buffers\n");
1576
1577                 ss_buf = malloc(sizeof(p) + 2*ts->ss_dur*sizeof(uint64_t));
1578
1579                 memcpy(ss_buf, &p, sizeof(p));
1580
1581                 ss_iops = (uint64_t *) ((struct cmd_ts_pdu *)ss_buf + 1);
1582                 ss_bw = ss_iops + (int) ts->ss_dur;
1583                 for (i = 0; i < ts->ss_dur; i++) {
1584                         ss_iops[i] = cpu_to_le64(ts->ss_iops_data[i]);
1585                         ss_bw[i] = cpu_to_le64(ts->ss_bw_data[i]);
1586                 }
1587
1588                 fio_net_queue_cmd(FIO_NET_CMD_TS, ss_buf, sizeof(p) + 2*ts->ss_dur*sizeof(uint64_t), NULL, SK_F_COPY);
1589
1590                 free(ss_buf);
1591         }
1592         else
1593                 fio_net_queue_cmd(FIO_NET_CMD_TS, &p, sizeof(p), NULL, SK_F_COPY);
1594 }
1595
1596 void fio_server_send_gs(struct group_run_stats *rs)
1597 {
1598         struct group_run_stats gs;
1599
1600         dprint(FD_NET, "server sending group run stats\n");
1601
1602         convert_gs(&gs, rs);
1603         fio_net_queue_cmd(FIO_NET_CMD_GS, &gs, sizeof(gs), NULL, SK_F_COPY);
1604 }
1605
1606 void fio_server_send_job_options(struct flist_head *opt_list,
1607                                  unsigned int gid)
1608 {
1609         struct cmd_job_option pdu;
1610         struct flist_head *entry;
1611
1612         if (flist_empty(opt_list))
1613                 return;
1614
1615         flist_for_each(entry, opt_list) {
1616                 struct print_option *p;
1617                 size_t len;
1618
1619                 p = flist_entry(entry, struct print_option, list);
1620                 memset(&pdu, 0, sizeof(pdu));
1621
1622                 if (gid == -1U) {
1623                         pdu.global = __cpu_to_le16(1);
1624                         pdu.groupid = 0;
1625                 } else {
1626                         pdu.global = 0;
1627                         pdu.groupid = cpu_to_le32(gid);
1628                 }
1629                 len = strlen(p->name);
1630                 if (len >= sizeof(pdu.name)) {
1631                         len = sizeof(pdu.name) - 1;
1632                         pdu.truncated = __cpu_to_le16(1);
1633                 }
1634                 memcpy(pdu.name, p->name, len);
1635                 if (p->value) {
1636                         len = strlen(p->value);
1637                         if (len >= sizeof(pdu.value)) {
1638                                 len = sizeof(pdu.value) - 1;
1639                                 pdu.truncated = __cpu_to_le16(1);
1640                         }
1641                         memcpy(pdu.value, p->value, len);
1642                 }
1643                 fio_net_queue_cmd(FIO_NET_CMD_JOB_OPT, &pdu, sizeof(pdu), NULL, SK_F_COPY);
1644         }
1645 }
1646
1647 static void convert_agg(struct disk_util_agg *dst, struct disk_util_agg *src)
1648 {
1649         int i;
1650
1651         for (i = 0; i < 2; i++) {
1652                 dst->ios[i]     = cpu_to_le64(src->ios[i]);
1653                 dst->merges[i]  = cpu_to_le64(src->merges[i]);
1654                 dst->sectors[i] = cpu_to_le64(src->sectors[i]);
1655                 dst->ticks[i]   = cpu_to_le64(src->ticks[i]);
1656         }
1657
1658         dst->io_ticks           = cpu_to_le64(src->io_ticks);
1659         dst->time_in_queue      = cpu_to_le64(src->time_in_queue);
1660         dst->slavecount         = cpu_to_le32(src->slavecount);
1661         dst->max_util.u.i       = cpu_to_le64(fio_double_to_uint64(src->max_util.u.f));
1662 }
1663
1664 static void convert_dus(struct disk_util_stat *dst, struct disk_util_stat *src)
1665 {
1666         int i;
1667
1668         snprintf((char *) dst->name, sizeof(dst->name), "%s", src->name);
1669
1670         for (i = 0; i < 2; i++) {
1671                 dst->s.ios[i]           = cpu_to_le64(src->s.ios[i]);
1672                 dst->s.merges[i]        = cpu_to_le64(src->s.merges[i]);
1673                 dst->s.sectors[i]       = cpu_to_le64(src->s.sectors[i]);
1674                 dst->s.ticks[i]         = cpu_to_le64(src->s.ticks[i]);
1675         }
1676
1677         dst->s.io_ticks         = cpu_to_le64(src->s.io_ticks);
1678         dst->s.time_in_queue    = cpu_to_le64(src->s.time_in_queue);
1679         dst->s.msec             = cpu_to_le64(src->s.msec);
1680 }
1681
1682 void fio_server_send_du(void)
1683 {
1684         struct disk_util *du;
1685         struct flist_head *entry;
1686         struct cmd_du_pdu pdu;
1687
1688         dprint(FD_NET, "server: sending disk_util %d\n", !flist_empty(&disk_list));
1689
1690         memset(&pdu, 0, sizeof(pdu));
1691
1692         flist_for_each(entry, &disk_list) {
1693                 du = flist_entry(entry, struct disk_util, list);
1694
1695                 convert_dus(&pdu.dus, &du->dus);
1696                 convert_agg(&pdu.agg, &du->agg);
1697
1698                 fio_net_queue_cmd(FIO_NET_CMD_DU, &pdu, sizeof(pdu), NULL, SK_F_COPY);
1699         }
1700 }
1701
1702 #ifdef CONFIG_ZLIB
1703
1704 static inline void __fio_net_prep_tail(z_stream *stream, void *out_pdu,
1705                                         struct sk_entry **last_entry,
1706                                         struct sk_entry *first)
1707 {
1708         unsigned int this_len = FIO_SERVER_MAX_FRAGMENT_PDU - stream->avail_out;
1709
1710         *last_entry = fio_net_prep_cmd(FIO_NET_CMD_IOLOG, out_pdu, this_len,
1711                                  NULL, SK_F_VEC | SK_F_INLINE | SK_F_FREE);
1712         if (*last_entry)
1713                 flist_add_tail(&(*last_entry)->list, &first->next);
1714 }
1715
1716 /*
1717  * Deflates the next input given, creating as many new packets in the
1718  * linked list as necessary.
1719  */
1720 static int __deflate_pdu_buffer(void *next_in, unsigned int next_sz, void **out_pdu,
1721                                 struct sk_entry **last_entry, z_stream *stream,
1722                                 struct sk_entry *first)
1723 {
1724         int ret;
1725
1726         stream->next_in = next_in;
1727         stream->avail_in = next_sz;
1728         do {
1729                 if (!stream->avail_out) {
1730                         __fio_net_prep_tail(stream, *out_pdu, last_entry, first);
1731                         if (*last_entry == NULL)
1732                                 return 1;
1733
1734                         *out_pdu = malloc(FIO_SERVER_MAX_FRAGMENT_PDU);
1735
1736                         stream->avail_out = FIO_SERVER_MAX_FRAGMENT_PDU;
1737                         stream->next_out = *out_pdu;
1738                 }
1739
1740                 ret = deflate(stream, Z_BLOCK);
1741
1742                 if (ret < 0) {
1743                         free(*out_pdu);
1744                         return 1;
1745                 }
1746         } while (stream->avail_in);
1747
1748         return 0;
1749 }
1750
1751 static int __fio_append_iolog_gz_hist(struct sk_entry *first, struct io_log *log,
1752                                       struct io_logs *cur_log, z_stream *stream)
1753 {
1754         struct sk_entry *entry;
1755         void *out_pdu;
1756         int ret, i, j;
1757         int sample_sz = log_entry_sz(log);
1758
1759         out_pdu = malloc(FIO_SERVER_MAX_FRAGMENT_PDU);
1760         stream->avail_out = FIO_SERVER_MAX_FRAGMENT_PDU;
1761         stream->next_out = out_pdu;
1762
1763         for (i = 0; i < cur_log->nr_samples; i++) {
1764                 struct io_sample *s;
1765                 struct io_u_plat_entry *cur_plat_entry, *prev_plat_entry;
1766                 uint64_t *cur_plat, *prev_plat;
1767
1768                 s = get_sample(log, cur_log, i);
1769                 ret = __deflate_pdu_buffer(s, sample_sz, &out_pdu, &entry, stream, first);
1770                 if (ret)
1771                         return ret;
1772
1773                 /* Do the subtraction on server side so that client doesn't have to
1774                  * reconstruct our linked list from packets.
1775                  */
1776                 cur_plat_entry  = s->data.plat_entry;
1777                 prev_plat_entry = flist_first_entry(&cur_plat_entry->list, struct io_u_plat_entry, list);
1778                 cur_plat  = cur_plat_entry->io_u_plat;
1779                 prev_plat = prev_plat_entry->io_u_plat;
1780
1781                 for (j = 0; j < FIO_IO_U_PLAT_NR; j++) {
1782                         cur_plat[j] -= prev_plat[j];
1783                 }
1784
1785                 flist_del(&prev_plat_entry->list);
1786                 free(prev_plat_entry);
1787
1788                 ret = __deflate_pdu_buffer(cur_plat_entry, sizeof(*cur_plat_entry),
1789                                            &out_pdu, &entry, stream, first);
1790
1791                 if (ret)
1792                         return ret;
1793         }
1794
1795         __fio_net_prep_tail(stream, out_pdu, &entry, first);
1796         return entry == NULL;
1797 }
1798
1799 static int __fio_append_iolog_gz(struct sk_entry *first, struct io_log *log,
1800                                  struct io_logs *cur_log, z_stream *stream)
1801 {
1802         unsigned int this_len;
1803         void *out_pdu;
1804         int ret;
1805
1806         if (log->log_type == IO_LOG_TYPE_HIST)
1807                 return __fio_append_iolog_gz_hist(first, log, cur_log, stream);
1808
1809         stream->next_in = (void *) cur_log->log;
1810         stream->avail_in = cur_log->nr_samples * log_entry_sz(log);
1811
1812         do {
1813                 struct sk_entry *entry;
1814
1815                 /*
1816                  * Dirty - since the log is potentially huge, compress it into
1817                  * FIO_SERVER_MAX_FRAGMENT_PDU chunks and let the receiving
1818                  * side defragment it.
1819                  */
1820                 out_pdu = malloc(FIO_SERVER_MAX_FRAGMENT_PDU);
1821
1822                 stream->avail_out = FIO_SERVER_MAX_FRAGMENT_PDU;
1823                 stream->next_out = out_pdu;
1824                 ret = deflate(stream, Z_BLOCK);
1825                 /* may be Z_OK, or Z_STREAM_END */
1826                 if (ret < 0) {
1827                         free(out_pdu);
1828                         return 1;
1829                 }
1830
1831                 this_len = FIO_SERVER_MAX_FRAGMENT_PDU - stream->avail_out;
1832
1833                 entry = fio_net_prep_cmd(FIO_NET_CMD_IOLOG, out_pdu, this_len,
1834                                          NULL, SK_F_VEC | SK_F_INLINE | SK_F_FREE);
1835                 if (!entry) {
1836                         free(out_pdu);
1837                         return 1;
1838                 }
1839                 flist_add_tail(&entry->list, &first->next);
1840         } while (stream->avail_in);
1841
1842         return 0;
1843 }
1844
1845 static int fio_append_iolog_gz(struct sk_entry *first, struct io_log *log)
1846 {
1847         z_stream stream = {
1848                 .zalloc = Z_NULL,
1849                 .zfree  = Z_NULL,
1850                 .opaque = Z_NULL,
1851         };
1852         int ret = 0;
1853
1854         if (deflateInit(&stream, Z_DEFAULT_COMPRESSION) != Z_OK)
1855                 return 1;
1856
1857         while (!flist_empty(&log->io_logs)) {
1858                 struct io_logs *cur_log;
1859
1860                 cur_log = flist_first_entry(&log->io_logs, struct io_logs, list);
1861                 flist_del_init(&cur_log->list);
1862
1863                 ret = __fio_append_iolog_gz(first, log, cur_log, &stream);
1864                 if (ret)
1865                         break;
1866         }
1867
1868         ret = deflate(&stream, Z_FINISH);
1869
1870         while (ret != Z_STREAM_END) {
1871                 struct sk_entry *entry;
1872                 unsigned int this_len;
1873                 void *out_pdu;
1874
1875                 out_pdu = malloc(FIO_SERVER_MAX_FRAGMENT_PDU);
1876                 stream.avail_out = FIO_SERVER_MAX_FRAGMENT_PDU;
1877                 stream.next_out = out_pdu;
1878
1879                 ret = deflate(&stream, Z_FINISH);
1880                 /* may be Z_OK, or Z_STREAM_END */
1881                 if (ret < 0) {
1882                         free(out_pdu);
1883                         break;
1884                 }
1885
1886                 this_len = FIO_SERVER_MAX_FRAGMENT_PDU - stream.avail_out;
1887
1888                 entry = fio_net_prep_cmd(FIO_NET_CMD_IOLOG, out_pdu, this_len,
1889                                          NULL, SK_F_VEC | SK_F_INLINE | SK_F_FREE);
1890                 if (!entry) {
1891                         free(out_pdu);
1892                         break;
1893                 }
1894                 flist_add_tail(&entry->list, &first->next);
1895         } while (ret != Z_STREAM_END);
1896
1897         ret = deflateEnd(&stream);
1898         if (ret == Z_OK)
1899                 return 0;
1900
1901         return 1;
1902 }
1903 #else
1904 static int fio_append_iolog_gz(struct sk_entry *first, struct io_log *log)
1905 {
1906         return 1;
1907 }
1908 #endif
1909
1910 static int fio_append_gz_chunks(struct sk_entry *first, struct io_log *log)
1911 {
1912         struct sk_entry *entry;
1913         struct flist_head *node;
1914         int ret = 0;
1915
1916         pthread_mutex_lock(&log->chunk_lock);
1917         flist_for_each(node, &log->chunk_list) {
1918                 struct iolog_compress *c;
1919
1920                 c = flist_entry(node, struct iolog_compress, list);
1921                 entry = fio_net_prep_cmd(FIO_NET_CMD_IOLOG, c->buf, c->len,
1922                                                 NULL, SK_F_VEC | SK_F_INLINE);
1923                 if (!entry) {
1924                         ret = 1;
1925                         break;
1926                 }
1927                 flist_add_tail(&entry->list, &first->next);
1928         }
1929         pthread_mutex_unlock(&log->chunk_lock);
1930         return ret;
1931 }
1932
1933 static int fio_append_text_log(struct sk_entry *first, struct io_log *log)
1934 {
1935         struct sk_entry *entry;
1936         int ret = 0;
1937
1938         while (!flist_empty(&log->io_logs)) {
1939                 struct io_logs *cur_log;
1940                 size_t size;
1941
1942                 cur_log = flist_first_entry(&log->io_logs, struct io_logs, list);
1943                 flist_del_init(&cur_log->list);
1944
1945                 size = cur_log->nr_samples * log_entry_sz(log);
1946
1947                 entry = fio_net_prep_cmd(FIO_NET_CMD_IOLOG, cur_log->log, size,
1948                                                 NULL, SK_F_VEC | SK_F_INLINE);
1949                 if (!entry) {
1950                         ret = 1;
1951                         break;
1952                 }
1953                 flist_add_tail(&entry->list, &first->next);
1954         }
1955
1956         return ret;
1957 }
1958
1959 int fio_send_iolog(struct thread_data *td, struct io_log *log, const char *name)
1960 {
1961         struct cmd_iolog_pdu pdu = {
1962                 .nr_samples             = cpu_to_le64(iolog_nr_samples(log)),
1963                 .thread_number          = cpu_to_le32(td->thread_number),
1964                 .log_type               = cpu_to_le32(log->log_type),
1965                 .log_hist_coarseness    = cpu_to_le32(log->hist_coarseness),
1966         };
1967         struct sk_entry *first;
1968         struct flist_head *entry;
1969         int ret = 0;
1970
1971         if (!flist_empty(&log->chunk_list))
1972                 pdu.compressed = __cpu_to_le32(STORE_COMPRESSED);
1973         else if (use_zlib)
1974                 pdu.compressed = __cpu_to_le32(XMIT_COMPRESSED);
1975         else
1976                 pdu.compressed = 0;
1977
1978         snprintf((char *) pdu.name, sizeof(pdu.name), "%s", name);
1979
1980         /*
1981          * We can't do this for a pre-compressed log, but for that case,
1982          * log->nr_samples is zero anyway.
1983          */
1984         flist_for_each(entry, &log->io_logs) {
1985                 struct io_logs *cur_log;
1986                 int i;
1987
1988                 cur_log = flist_entry(entry, struct io_logs, list);
1989
1990                 for (i = 0; i < cur_log->nr_samples; i++) {
1991                         struct io_sample *s = get_sample(log, cur_log, i);
1992
1993                         s->time         = cpu_to_le64(s->time);
1994                         s->data.val     = cpu_to_le64(s->data.val);
1995                         s->__ddir       = cpu_to_le32(s->__ddir);
1996                         s->bs           = cpu_to_le64(s->bs);
1997
1998                         if (log->log_offset) {
1999                                 struct io_sample_offset *so = (void *) s;
2000
2001                                 so->offset = cpu_to_le64(so->offset);
2002                         }
2003                 }
2004         }
2005
2006         /*
2007          * Assemble header entry first
2008          */
2009         first = fio_net_prep_cmd(FIO_NET_CMD_IOLOG, &pdu, sizeof(pdu), NULL, SK_F_VEC | SK_F_INLINE | SK_F_COPY);
2010         if (!first)
2011                 return 1;
2012
2013         /*
2014          * Now append actual log entries. If log compression was enabled on
2015          * the job, just send out the compressed chunks directly. If we
2016          * have a plain log, compress if we can, then send. Otherwise, send
2017          * the plain text output.
2018          */
2019         if (!flist_empty(&log->chunk_list))
2020                 ret = fio_append_gz_chunks(first, log);
2021         else if (use_zlib)
2022                 ret = fio_append_iolog_gz(first, log);
2023         else
2024                 ret = fio_append_text_log(first, log);
2025
2026         fio_net_queue_entry(first);
2027         return ret;
2028 }
2029
2030 void fio_server_send_add_job(struct thread_data *td)
2031 {
2032         struct cmd_add_job_pdu pdu = {
2033                 .thread_number = cpu_to_le32(td->thread_number),
2034                 .groupid = cpu_to_le32(td->groupid),
2035         };
2036
2037         convert_thread_options_to_net(&pdu.top, &td->o);
2038
2039         fio_net_queue_cmd(FIO_NET_CMD_ADD_JOB, &pdu, sizeof(pdu), NULL,
2040                                 SK_F_COPY);
2041 }
2042
2043 void fio_server_send_start(struct thread_data *td)
2044 {
2045         struct sk_out *sk_out = pthread_getspecific(sk_out_key);
2046
2047         assert(sk_out->sk != -1);
2048
2049         fio_net_queue_cmd(FIO_NET_CMD_SERVER_START, NULL, 0, NULL, SK_F_SIMPLE);
2050 }
2051
2052 int fio_server_get_verify_state(const char *name, int threadnumber,
2053                                 void **datap)
2054 {
2055         struct thread_io_list *s;
2056         struct cmd_sendfile out;
2057         struct cmd_reply *rep;
2058         uint64_t tag;
2059         void *data;
2060         int ret;
2061
2062         dprint(FD_NET, "server: request verify state\n");
2063
2064         rep = smalloc(sizeof(*rep));
2065         if (!rep)
2066                 return ENOMEM;
2067
2068         __fio_sem_init(&rep->lock, FIO_SEM_LOCKED);
2069         rep->data = NULL;
2070         rep->error = 0;
2071
2072         verify_state_gen_name((char *) out.path, sizeof(out.path), name, me,
2073                                 threadnumber);
2074         tag = (uint64_t) (uintptr_t) rep;
2075         fio_net_queue_cmd(FIO_NET_CMD_SENDFILE, &out, sizeof(out), &tag,
2076                                 SK_F_COPY);
2077
2078         /*
2079          * Wait for the backend to receive the reply
2080          */
2081         if (fio_sem_down_timeout(&rep->lock, 10000)) {
2082                 log_err("fio: timed out waiting for reply\n");
2083                 ret = ETIMEDOUT;
2084                 goto fail;
2085         }
2086
2087         if (rep->error) {
2088                 log_err("fio: failure on receiving state file %s: %s\n",
2089                                 out.path, strerror(rep->error));
2090                 ret = rep->error;
2091 fail:
2092                 *datap = NULL;
2093                 sfree(rep);
2094                 fio_net_queue_quit();
2095                 return ret;
2096         }
2097
2098         /*
2099          * The format is verify_state_hdr, then thread_io_list. Verify
2100          * the header, and the thread_io_list checksum
2101          */
2102         s = rep->data + sizeof(struct verify_state_hdr);
2103         if (verify_state_hdr(rep->data, s)) {
2104                 ret = EILSEQ;
2105                 goto fail;
2106         }
2107
2108         /*
2109          * Don't need the header from now, copy just the thread_io_list
2110          */
2111         ret = 0;
2112         rep->size -= sizeof(struct verify_state_hdr);
2113         data = malloc(rep->size);
2114         memcpy(data, s, rep->size);
2115         *datap = data;
2116
2117         sfree(rep->data);
2118         __fio_sem_remove(&rep->lock);
2119         sfree(rep);
2120         return ret;
2121 }
2122
2123 static int fio_init_server_ip(void)
2124 {
2125         struct sockaddr *addr;
2126         socklen_t socklen;
2127         char buf[80];
2128         const char *str;
2129         int sk, opt;
2130
2131         if (use_ipv6)
2132                 sk = socket(AF_INET6, SOCK_STREAM, 0);
2133         else
2134                 sk = socket(AF_INET, SOCK_STREAM, 0);
2135
2136         if (sk < 0) {
2137                 log_err("fio: socket: %s\n", strerror(errno));
2138                 return -1;
2139         }
2140
2141         opt = 1;
2142         if (setsockopt(sk, SOL_SOCKET, SO_REUSEADDR, (void *)&opt, sizeof(opt)) < 0) {
2143                 log_err("fio: setsockopt(REUSEADDR): %s\n", strerror(errno));
2144                 close(sk);
2145                 return -1;
2146         }
2147 #ifdef SO_REUSEPORT
2148         /*
2149          * Not fatal if fails, so just ignore it if that happens
2150          */
2151         setsockopt(sk, SOL_SOCKET, SO_REUSEPORT, &opt, sizeof(opt));
2152 #endif
2153
2154         if (use_ipv6) {
2155                 void *src = &saddr_in6.sin6_addr;
2156
2157                 addr = (struct sockaddr *) &saddr_in6;
2158                 socklen = sizeof(saddr_in6);
2159                 saddr_in6.sin6_family = AF_INET6;
2160                 str = inet_ntop(AF_INET6, src, buf, sizeof(buf));
2161         } else {
2162                 void *src = &saddr_in.sin_addr;
2163
2164                 addr = (struct sockaddr *) &saddr_in;
2165                 socklen = sizeof(saddr_in);
2166                 saddr_in.sin_family = AF_INET;
2167                 str = inet_ntop(AF_INET, src, buf, sizeof(buf));
2168         }
2169
2170         if (bind(sk, addr, socklen) < 0) {
2171                 log_err("fio: bind: %s\n", strerror(errno));
2172                 log_info("fio: failed with IPv%c %s\n", use_ipv6 ? '6' : '4', str);
2173                 close(sk);
2174                 return -1;
2175         }
2176
2177         return sk;
2178 }
2179
2180 static int fio_init_server_sock(void)
2181 {
2182         struct sockaddr_un addr;
2183         socklen_t len;
2184         mode_t mode;
2185         int sk;
2186
2187         sk = socket(AF_UNIX, SOCK_STREAM, 0);
2188         if (sk < 0) {
2189                 log_err("fio: socket: %s\n", strerror(errno));
2190                 return -1;
2191         }
2192
2193         mode = umask(000);
2194
2195         addr.sun_family = AF_UNIX;
2196         snprintf(addr.sun_path, sizeof(addr.sun_path), "%s", bind_sock);
2197
2198         len = sizeof(addr.sun_family) + strlen(bind_sock) + 1;
2199
2200         if (bind(sk, (struct sockaddr *) &addr, len) < 0) {
2201                 log_err("fio: bind: %s\n", strerror(errno));
2202                 close(sk);
2203                 return -1;
2204         }
2205
2206         umask(mode);
2207         return sk;
2208 }
2209
2210 static int fio_init_server_connection(void)
2211 {
2212         char bind_str[128];
2213         int sk;
2214
2215         dprint(FD_NET, "starting server\n");
2216
2217         if (!bind_sock)
2218                 sk = fio_init_server_ip();
2219         else
2220                 sk = fio_init_server_sock();
2221
2222         if (sk < 0)
2223                 return sk;
2224
2225         memset(bind_str, 0, sizeof(bind_str));
2226
2227         if (!bind_sock) {
2228                 char *p, port[16];
2229                 void *src;
2230                 int af;
2231
2232                 if (use_ipv6) {
2233                         af = AF_INET6;
2234                         src = &saddr_in6.sin6_addr;
2235                 } else {
2236                         af = AF_INET;
2237                         src = &saddr_in.sin_addr;
2238                 }
2239
2240                 p = (char *) inet_ntop(af, src, bind_str, sizeof(bind_str));
2241
2242                 sprintf(port, ",%u", fio_net_port);
2243                 if (p)
2244                         strcat(p, port);
2245                 else
2246                         snprintf(bind_str, sizeof(bind_str), "%s", port);
2247         } else
2248                 snprintf(bind_str, sizeof(bind_str), "%s", bind_sock);
2249
2250         log_info("fio: server listening on %s\n", bind_str);
2251
2252         if (listen(sk, 4) < 0) {
2253                 log_err("fio: listen: %s\n", strerror(errno));
2254                 close(sk);
2255                 return -1;
2256         }
2257
2258         return sk;
2259 }
2260
2261 int fio_server_parse_host(const char *host, int ipv6, struct in_addr *inp,
2262                           struct in6_addr *inp6)
2263
2264 {
2265         int ret = 0;
2266
2267         if (ipv6)
2268                 ret = inet_pton(AF_INET6, host, inp6);
2269         else
2270                 ret = inet_pton(AF_INET, host, inp);
2271
2272         if (ret != 1) {
2273                 struct addrinfo *res, hints = {
2274                         .ai_family = ipv6 ? AF_INET6 : AF_INET,
2275                         .ai_socktype = SOCK_STREAM,
2276                 };
2277
2278                 ret = getaddrinfo(host, NULL, &hints, &res);
2279                 if (ret) {
2280                         log_err("fio: failed to resolve <%s> (%s)\n", host,
2281                                         gai_strerror(ret));
2282                         return 1;
2283                 }
2284
2285                 if (ipv6)
2286                         memcpy(inp6, &((struct sockaddr_in6 *) res->ai_addr)->sin6_addr, sizeof(*inp6));
2287                 else
2288                         memcpy(inp, &((struct sockaddr_in *) res->ai_addr)->sin_addr, sizeof(*inp));
2289
2290                 ret = 1;
2291                 freeaddrinfo(res);
2292         }
2293
2294         return !(ret == 1);
2295 }
2296
2297 /*
2298  * Parse a host/ip/port string. Reads from 'str'.
2299  *
2300  * Outputs:
2301  *
2302  * For IPv4:
2303  *      *ptr is the host, *port is the port, inp is the destination.
2304  * For IPv6:
2305  *      *ptr is the host, *port is the port, inp6 is the dest, and *ipv6 is 1.
2306  * For local domain sockets:
2307  *      *ptr is the filename, *is_sock is 1.
2308  */
2309 int fio_server_parse_string(const char *str, char **ptr, bool *is_sock,
2310                             int *port, struct in_addr *inp,
2311                             struct in6_addr *inp6, int *ipv6)
2312 {
2313         const char *host = str;
2314         char *portp;
2315         int lport = 0;
2316
2317         *ptr = NULL;
2318         *is_sock = false;
2319         *port = fio_net_port;
2320         *ipv6 = 0;
2321
2322         if (!strncmp(str, "sock:", 5)) {
2323                 *ptr = strdup(str + 5);
2324                 *is_sock = true;
2325
2326                 return 0;
2327         }
2328
2329         /*
2330          * Is it ip:<ip or host>:port
2331          */
2332         if (!strncmp(host, "ip:", 3))
2333                 host += 3;
2334         else if (!strncmp(host, "ip4:", 4))
2335                 host += 4;
2336         else if (!strncmp(host, "ip6:", 4)) {
2337                 host += 4;
2338                 *ipv6 = 1;
2339         } else if (host[0] == ':') {
2340                 /* String is :port */
2341                 host++;
2342                 lport = atoi(host);
2343                 if (!lport || lport > 65535) {
2344                         log_err("fio: bad server port %u\n", lport);
2345                         return 1;
2346                 }
2347                 /* no hostname given, we are done */
2348                 *port = lport;
2349                 return 0;
2350         }
2351
2352         /*
2353          * If no port seen yet, check if there's a last ',' at the end
2354          */
2355         if (!lport) {
2356                 portp = strchr(host, ',');
2357                 if (portp) {
2358                         *portp = '\0';
2359                         portp++;
2360                         lport = atoi(portp);
2361                         if (!lport || lport > 65535) {
2362                                 log_err("fio: bad server port %u\n", lport);
2363                                 return 1;
2364                         }
2365                 }
2366         }
2367
2368         if (lport)
2369                 *port = lport;
2370
2371         if (!strlen(host))
2372                 return 0;
2373
2374         *ptr = strdup(host);
2375
2376         if (fio_server_parse_host(*ptr, *ipv6, inp, inp6)) {
2377                 free(*ptr);
2378                 *ptr = NULL;
2379                 return 1;
2380         }
2381
2382         if (*port == 0)
2383                 *port = fio_net_port;
2384
2385         return 0;
2386 }
2387
2388 /*
2389  * Server arg should be one of:
2390  *
2391  * sock:/path/to/socket
2392  *   ip:1.2.3.4
2393  *      1.2.3.4
2394  *
2395  * Where sock uses unix domain sockets, and ip binds the server to
2396  * a specific interface. If no arguments are given to the server, it
2397  * uses IP and binds to 0.0.0.0.
2398  *
2399  */
2400 static int fio_handle_server_arg(void)
2401 {
2402         int port = fio_net_port;
2403         bool is_sock;
2404         int ret = 0;
2405
2406         saddr_in.sin_addr.s_addr = htonl(INADDR_ANY);
2407
2408         if (!fio_server_arg)
2409                 goto out;
2410
2411         ret = fio_server_parse_string(fio_server_arg, &bind_sock, &is_sock,
2412                                         &port, &saddr_in.sin_addr,
2413                                         &saddr_in6.sin6_addr, &use_ipv6);
2414
2415         if (!is_sock && bind_sock) {
2416                 free(bind_sock);
2417                 bind_sock = NULL;
2418         }
2419
2420 out:
2421         fio_net_port = port;
2422         saddr_in.sin_port = htons(port);
2423         saddr_in6.sin6_port = htons(port);
2424         return ret;
2425 }
2426
2427 static void sig_int(int sig)
2428 {
2429         if (bind_sock)
2430                 unlink(bind_sock);
2431 }
2432
2433 static void set_sig_handlers(void)
2434 {
2435         struct sigaction act = {
2436                 .sa_handler = sig_int,
2437                 .sa_flags = SA_RESTART,
2438         };
2439
2440         sigaction(SIGINT, &act, NULL);
2441 }
2442
2443 void fio_server_destroy_sk_key(void)
2444 {
2445         pthread_key_delete(sk_out_key);
2446 }
2447
2448 int fio_server_create_sk_key(void)
2449 {
2450         if (pthread_key_create(&sk_out_key, NULL)) {
2451                 log_err("fio: can't create sk_out backend key\n");
2452                 return 1;
2453         }
2454
2455         pthread_setspecific(sk_out_key, NULL);
2456         return 0;
2457 }
2458
2459 static int fio_server(void)
2460 {
2461         int sk, ret;
2462
2463         dprint(FD_NET, "starting server\n");
2464
2465         if (fio_handle_server_arg())
2466                 return -1;
2467
2468         sk = fio_init_server_connection();
2469         if (sk < 0)
2470                 return -1;
2471
2472         set_sig_handlers();
2473
2474         ret = accept_loop(sk);
2475
2476         close(sk);
2477
2478         if (fio_server_arg) {
2479                 free(fio_server_arg);
2480                 fio_server_arg = NULL;
2481         }
2482         if (bind_sock)
2483                 free(bind_sock);
2484
2485         return ret;
2486 }
2487
2488 void fio_server_got_signal(int signal)
2489 {
2490         struct sk_out *sk_out = pthread_getspecific(sk_out_key);
2491
2492         assert(sk_out);
2493
2494         if (signal == SIGPIPE)
2495                 sk_out->sk = -1;
2496         else {
2497                 log_info("\nfio: terminating on signal %d\n", signal);
2498                 exit_backend = true;
2499         }
2500 }
2501
2502 static int check_existing_pidfile(const char *pidfile)
2503 {
2504         struct stat sb;
2505         char buf[16];
2506         pid_t pid;
2507         FILE *f;
2508
2509         if (stat(pidfile, &sb))
2510                 return 0;
2511
2512         f = fopen(pidfile, "r");
2513         if (!f)
2514                 return 0;
2515
2516         if (fread(buf, sb.st_size, 1, f) <= 0) {
2517                 fclose(f);
2518                 return 1;
2519         }
2520         fclose(f);
2521
2522         pid = atoi(buf);
2523         if (kill(pid, SIGCONT) < 0)
2524                 return errno != ESRCH;
2525
2526         return 1;
2527 }
2528
2529 static int write_pid(pid_t pid, const char *pidfile)
2530 {
2531         FILE *fpid;
2532
2533         fpid = fopen(pidfile, "w");
2534         if (!fpid) {
2535                 log_err("fio: failed opening pid file %s\n", pidfile);
2536                 return 1;
2537         }
2538
2539         fprintf(fpid, "%u\n", (unsigned int) pid);
2540         fclose(fpid);
2541         return 0;
2542 }
2543
2544 /*
2545  * If pidfile is specified, background us.
2546  */
2547 int fio_start_server(char *pidfile)
2548 {
2549         pid_t pid;
2550         int ret;
2551
2552 #if defined(WIN32)
2553         WSADATA wsd;
2554         WSAStartup(MAKEWORD(2, 2), &wsd);
2555 #endif
2556
2557         if (!pidfile)
2558                 return fio_server();
2559
2560         if (check_existing_pidfile(pidfile)) {
2561                 log_err("fio: pidfile %s exists and server appears alive\n",
2562                                                                 pidfile);
2563                 free(pidfile);
2564                 return -1;
2565         }
2566
2567         pid = fork();
2568         if (pid < 0) {
2569                 log_err("fio: failed server fork: %s\n", strerror(errno));
2570                 free(pidfile);
2571                 return -1;
2572         } else if (pid) {
2573                 ret = write_pid(pid, pidfile);
2574                 free(pidfile);
2575                 _exit(ret);
2576         }
2577
2578         setsid();
2579         openlog("fio", LOG_NDELAY|LOG_NOWAIT|LOG_PID, LOG_USER);
2580         log_syslog = true;
2581         close(STDIN_FILENO);
2582         close(STDOUT_FILENO);
2583         close(STDERR_FILENO);
2584         f_out = NULL;
2585         f_err = NULL;
2586
2587         ret = fio_server();
2588
2589         closelog();
2590         unlink(pidfile);
2591         free(pidfile);
2592         return ret;
2593 }
2594
2595 void fio_server_set_arg(const char *arg)
2596 {
2597         fio_server_arg = strdup(arg);
2598 }