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