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