steadystate: instead of including ss_sum_y in thread_stat record whether ss_sum_y...
[fio.git] / server.c
... / ...
CommitLineData
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
31int fio_net_port = FIO_NET_PORT;
32
33int exit_backend = 0;
34
35enum {
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
43struct 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
53struct 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
64static char *fio_server_arg;
65static char *bind_sock;
66static struct sockaddr_in saddr_in;
67static struct sockaddr_in6 saddr_in6;
68static int use_ipv6;
69#ifdef CONFIG_ZLIB
70static unsigned int has_zlib = 1;
71#else
72static unsigned int has_zlib = 0;
73#endif
74static unsigned int use_zlib;
75static char me[128];
76
77static pthread_key_t sk_out_key;
78
79struct fio_fork_item {
80 struct flist_head list;
81 int exitval;
82 int signal;
83 int exited;
84 pid_t pid;
85};
86
87struct cmd_reply {
88 struct fio_mutex lock;
89 void *data;
90 size_t size;
91 int error;
92};
93
94static 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
120static void sk_lock(struct sk_out *sk_out)
121{
122 fio_mutex_down(&sk_out->lock);
123}
124
125static void sk_unlock(struct sk_out *sk_out)
126{
127 fio_mutex_up(&sk_out->lock);
128}
129
130void 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
141static 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
149static 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
169void 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
177static 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
189static 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
198const 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
209static 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
221static 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
257static 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
266static 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
300static 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 */
339struct 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
438static 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
446static 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
459static 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
467static 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
477static void fio_net_cmd_crc(struct fio_net_cmd *cmd)
478{
479 fio_net_cmd_crc_pdu(cmd, cmd->payload);
480}
481
482int 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
534static 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
558static int handle_sk_entry(struct sk_out *sk_out, struct sk_entry *entry);
559
560static 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
575static 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 fio_net_queue_entry(entry);
582 return 0;
583}
584
585static int fio_net_send_simple_stack_cmd(int sk, uint16_t opcode, uint64_t tag)
586{
587 struct fio_net_cmd cmd;
588
589 fio_init_net_cmd(&cmd, opcode, NULL, 0, tag);
590 fio_net_cmd_crc(&cmd);
591
592 return fio_send_data(sk, &cmd, sizeof(cmd));
593}
594
595/*
596 * If 'list' is non-NULL, then allocate and store the sent command for
597 * later verification.
598 */
599int fio_net_send_simple_cmd(int sk, uint16_t opcode, uint64_t tag,
600 struct flist_head *list)
601{
602 int ret;
603
604 if (list)
605 tag = alloc_reply(tag, opcode);
606
607 ret = fio_net_send_simple_stack_cmd(sk, opcode, tag);
608 if (ret) {
609 if (list)
610 free_reply(tag);
611
612 return ret;
613 }
614
615 if (list)
616 add_reply(tag, list);
617
618 return 0;
619}
620
621static int fio_net_queue_quit(void)
622{
623 dprint(FD_NET, "server: sending quit\n");
624
625 return fio_net_queue_cmd(FIO_NET_CMD_QUIT, NULL, 0, 0, SK_F_SIMPLE);
626}
627
628int fio_net_send_quit(int sk)
629{
630 dprint(FD_NET, "server: sending quit\n");
631
632 return fio_net_send_simple_cmd(sk, FIO_NET_CMD_QUIT, 0, NULL);
633}
634
635static int fio_net_send_ack(struct fio_net_cmd *cmd, int error, int signal)
636{
637 struct cmd_end_pdu epdu;
638 uint64_t tag = 0;
639
640 if (cmd)
641 tag = cmd->tag;
642
643 epdu.error = __cpu_to_le32(error);
644 epdu.signal = __cpu_to_le32(signal);
645 return fio_net_queue_cmd(FIO_NET_CMD_STOP, &epdu, sizeof(epdu), &tag, SK_F_COPY);
646}
647
648static int fio_net_queue_stop(int error, int signal)
649{
650 dprint(FD_NET, "server: sending stop (%d, %d)\n", error, signal);
651 return fio_net_send_ack(NULL, error, signal);
652}
653
654static void fio_server_add_fork_item(pid_t pid, struct flist_head *list)
655{
656 struct fio_fork_item *ffi;
657
658 ffi = malloc(sizeof(*ffi));
659 ffi->exitval = 0;
660 ffi->signal = 0;
661 ffi->exited = 0;
662 ffi->pid = pid;
663 flist_add_tail(&ffi->list, list);
664}
665
666static void fio_server_add_conn_pid(struct flist_head *conn_list, pid_t pid)
667{
668 dprint(FD_NET, "server: forked off connection job (pid=%u)\n", (int) pid);
669 fio_server_add_fork_item(pid, conn_list);
670}
671
672static void fio_server_add_job_pid(struct flist_head *job_list, pid_t pid)
673{
674 dprint(FD_NET, "server: forked off job job (pid=%u)\n", (int) pid);
675 fio_server_add_fork_item(pid, job_list);
676}
677
678static void fio_server_check_fork_item(struct fio_fork_item *ffi)
679{
680 int ret, status;
681
682 ret = waitpid(ffi->pid, &status, WNOHANG);
683 if (ret < 0) {
684 if (errno == ECHILD) {
685 log_err("fio: connection pid %u disappeared\n", (int) ffi->pid);
686 ffi->exited = 1;
687 } else
688 log_err("fio: waitpid: %s\n", strerror(errno));
689 } else if (ret == ffi->pid) {
690 if (WIFSIGNALED(status)) {
691 ffi->signal = WTERMSIG(status);
692 ffi->exited = 1;
693 }
694 if (WIFEXITED(status)) {
695 if (WEXITSTATUS(status))
696 ffi->exitval = WEXITSTATUS(status);
697 ffi->exited = 1;
698 }
699 }
700}
701
702static void fio_server_fork_item_done(struct fio_fork_item *ffi, bool stop)
703{
704 dprint(FD_NET, "pid %u exited, sig=%u, exitval=%d\n", (int) ffi->pid, ffi->signal, ffi->exitval);
705
706 /*
707 * Fold STOP and QUIT...
708 */
709 if (stop) {
710 fio_net_queue_stop(ffi->exitval, ffi->signal);
711 fio_net_queue_quit();
712 }
713
714 flist_del(&ffi->list);
715 free(ffi);
716}
717
718static void fio_server_check_fork_items(struct flist_head *list, bool stop)
719{
720 struct flist_head *entry, *tmp;
721 struct fio_fork_item *ffi;
722
723 flist_for_each_safe(entry, tmp, list) {
724 ffi = flist_entry(entry, struct fio_fork_item, list);
725
726 fio_server_check_fork_item(ffi);
727
728 if (ffi->exited)
729 fio_server_fork_item_done(ffi, stop);
730 }
731}
732
733static void fio_server_check_jobs(struct flist_head *job_list)
734{
735 fio_server_check_fork_items(job_list, true);
736}
737
738static void fio_server_check_conns(struct flist_head *conn_list)
739{
740 fio_server_check_fork_items(conn_list, false);
741}
742
743static int handle_load_file_cmd(struct fio_net_cmd *cmd)
744{
745 struct cmd_load_file_pdu *pdu = (struct cmd_load_file_pdu *) cmd->payload;
746 void *file_name = pdu->file;
747 struct cmd_start_pdu spdu;
748
749 dprint(FD_NET, "server: loading local file %s\n", (char *) file_name);
750
751 pdu->name_len = le16_to_cpu(pdu->name_len);
752 pdu->client_type = le16_to_cpu(pdu->client_type);
753
754 if (parse_jobs_ini(file_name, 0, 0, pdu->client_type)) {
755 fio_net_queue_quit();
756 return -1;
757 }
758
759 spdu.jobs = cpu_to_le32(thread_number);
760 spdu.stat_outputs = cpu_to_le32(stat_number);
761 fio_net_queue_cmd(FIO_NET_CMD_START, &spdu, sizeof(spdu), NULL, SK_F_COPY);
762 return 0;
763}
764
765static int handle_run_cmd(struct sk_out *sk_out, struct flist_head *job_list,
766 struct fio_net_cmd *cmd)
767{
768 pid_t pid;
769 int ret;
770
771 sk_out_assign(sk_out);
772
773 fio_time_init();
774 set_genesis_time();
775
776 pid = fork();
777 if (pid) {
778 fio_server_add_job_pid(job_list, pid);
779 return 0;
780 }
781
782 ret = fio_backend(sk_out);
783 free_threads_shm();
784 sk_out_drop();
785 _exit(ret);
786}
787
788static int handle_job_cmd(struct fio_net_cmd *cmd)
789{
790 struct cmd_job_pdu *pdu = (struct cmd_job_pdu *) cmd->payload;
791 void *buf = pdu->buf;
792 struct cmd_start_pdu spdu;
793
794 pdu->buf_len = le32_to_cpu(pdu->buf_len);
795 pdu->client_type = le32_to_cpu(pdu->client_type);
796
797 if (parse_jobs_ini(buf, 1, 0, pdu->client_type)) {
798 fio_net_queue_quit();
799 return -1;
800 }
801
802 spdu.jobs = cpu_to_le32(thread_number);
803 spdu.stat_outputs = cpu_to_le32(stat_number);
804
805 fio_net_queue_cmd(FIO_NET_CMD_START, &spdu, sizeof(spdu), NULL, SK_F_COPY);
806 return 0;
807}
808
809static int handle_jobline_cmd(struct fio_net_cmd *cmd)
810{
811 void *pdu = cmd->payload;
812 struct cmd_single_line_pdu *cslp;
813 struct cmd_line_pdu *clp;
814 unsigned long offset;
815 struct cmd_start_pdu spdu;
816 char **argv;
817 int i;
818
819 clp = pdu;
820 clp->lines = le16_to_cpu(clp->lines);
821 clp->client_type = le16_to_cpu(clp->client_type);
822 argv = malloc(clp->lines * sizeof(char *));
823 offset = sizeof(*clp);
824
825 dprint(FD_NET, "server: %d command line args\n", clp->lines);
826
827 for (i = 0; i < clp->lines; i++) {
828 cslp = pdu + offset;
829 argv[i] = (char *) cslp->text;
830
831 offset += sizeof(*cslp) + le16_to_cpu(cslp->len);
832 dprint(FD_NET, "server: %d: %s\n", i, argv[i]);
833 }
834
835 if (parse_cmd_line(clp->lines, argv, clp->client_type)) {
836 fio_net_queue_quit();
837 free(argv);
838 return -1;
839 }
840
841 free(argv);
842
843 spdu.jobs = cpu_to_le32(thread_number);
844 spdu.stat_outputs = cpu_to_le32(stat_number);
845
846 fio_net_queue_cmd(FIO_NET_CMD_START, &spdu, sizeof(spdu), NULL, SK_F_COPY);
847 return 0;
848}
849
850static int handle_probe_cmd(struct fio_net_cmd *cmd)
851{
852 struct cmd_client_probe_pdu *pdu = (struct cmd_client_probe_pdu *) cmd->payload;
853 struct cmd_probe_reply_pdu probe;
854 uint64_t tag = cmd->tag;
855
856 dprint(FD_NET, "server: sending probe reply\n");
857
858 strcpy(me, (char *) pdu->server);
859
860 memset(&probe, 0, sizeof(probe));
861 gethostname((char *) probe.hostname, sizeof(probe.hostname));
862#ifdef CONFIG_BIG_ENDIAN
863 probe.bigendian = 1;
864#endif
865 strncpy((char *) probe.fio_version, fio_version_string, sizeof(probe.fio_version));
866
867 probe.os = FIO_OS;
868 probe.arch = FIO_ARCH;
869 probe.bpp = sizeof(void *);
870 probe.cpus = __cpu_to_le32(cpus_online());
871
872 /*
873 * If the client supports compression and we do too, then enable it
874 */
875 if (has_zlib && le64_to_cpu(pdu->flags) & FIO_PROBE_FLAG_ZLIB) {
876 probe.flags = __cpu_to_le64(FIO_PROBE_FLAG_ZLIB);
877 use_zlib = 1;
878 } else {
879 probe.flags = 0;
880 use_zlib = 0;
881 }
882
883 return fio_net_queue_cmd(FIO_NET_CMD_PROBE, &probe, sizeof(probe), &tag, SK_F_COPY);
884}
885
886static int handle_send_eta_cmd(struct fio_net_cmd *cmd)
887{
888 struct jobs_eta *je;
889 uint64_t tag = cmd->tag;
890 size_t size;
891 int i;
892
893 dprint(FD_NET, "server sending status\n");
894
895 /*
896 * Fake ETA return if we don't have a local one, otherwise the client
897 * will end up timing out waiting for a response to the ETA request
898 */
899 je = get_jobs_eta(true, &size);
900 if (!je) {
901 size = sizeof(*je);
902 je = calloc(1, size);
903 } else {
904 je->nr_running = cpu_to_le32(je->nr_running);
905 je->nr_ramp = cpu_to_le32(je->nr_ramp);
906 je->nr_pending = cpu_to_le32(je->nr_pending);
907 je->nr_setting_up = cpu_to_le32(je->nr_setting_up);
908 je->files_open = cpu_to_le32(je->files_open);
909
910 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
911 je->m_rate[i] = cpu_to_le32(je->m_rate[i]);
912 je->t_rate[i] = cpu_to_le32(je->t_rate[i]);
913 je->m_iops[i] = cpu_to_le32(je->m_iops[i]);
914 je->t_iops[i] = cpu_to_le32(je->t_iops[i]);
915 je->rate[i] = cpu_to_le32(je->rate[i]);
916 je->iops[i] = cpu_to_le32(je->iops[i]);
917 }
918
919 je->elapsed_sec = cpu_to_le64(je->elapsed_sec);
920 je->eta_sec = cpu_to_le64(je->eta_sec);
921 je->nr_threads = cpu_to_le32(je->nr_threads);
922 je->is_pow2 = cpu_to_le32(je->is_pow2);
923 je->unit_base = cpu_to_le32(je->unit_base);
924 }
925
926 fio_net_queue_cmd(FIO_NET_CMD_ETA, je, size, &tag, SK_F_FREE);
927 return 0;
928}
929
930static int send_update_job_reply(uint64_t __tag, int error)
931{
932 uint64_t tag = __tag;
933 uint32_t pdu_error;
934
935 pdu_error = __cpu_to_le32(error);
936 return fio_net_queue_cmd(FIO_NET_CMD_UPDATE_JOB, &pdu_error, sizeof(pdu_error), &tag, SK_F_COPY);
937}
938
939static int handle_update_job_cmd(struct fio_net_cmd *cmd)
940{
941 struct cmd_add_job_pdu *pdu = (struct cmd_add_job_pdu *) cmd->payload;
942 struct thread_data *td;
943 uint32_t tnumber;
944
945 tnumber = le32_to_cpu(pdu->thread_number);
946
947 dprint(FD_NET, "server: updating options for job %u\n", tnumber);
948
949 if (!tnumber || tnumber > thread_number) {
950 send_update_job_reply(cmd->tag, ENODEV);
951 return 0;
952 }
953
954 td = &threads[tnumber - 1];
955 convert_thread_options_to_cpu(&td->o, &pdu->top);
956 send_update_job_reply(cmd->tag, 0);
957 return 0;
958}
959
960static int handle_trigger_cmd(struct fio_net_cmd *cmd)
961{
962 struct cmd_vtrigger_pdu *pdu = (struct cmd_vtrigger_pdu *) cmd->payload;
963 char *buf = (char *) pdu->cmd;
964 struct all_io_list *rep;
965 size_t sz;
966
967 pdu->len = le16_to_cpu(pdu->len);
968 buf[pdu->len] = '\0';
969
970 rep = get_all_io_list(IO_LIST_ALL, &sz);
971 if (!rep) {
972 struct all_io_list state;
973
974 state.threads = cpu_to_le64((uint64_t) 0);
975 fio_net_queue_cmd(FIO_NET_CMD_VTRIGGER, &state, sizeof(state), NULL, SK_F_COPY | SK_F_INLINE);
976 } else
977 fio_net_queue_cmd(FIO_NET_CMD_VTRIGGER, rep, sz, NULL, SK_F_FREE | SK_F_INLINE);
978
979 exec_trigger(buf);
980 return 0;
981}
982
983static int handle_command(struct sk_out *sk_out, struct flist_head *job_list,
984 struct fio_net_cmd *cmd)
985{
986 int ret;
987
988 dprint(FD_NET, "server: got op [%s], pdu=%u, tag=%llx\n",
989 fio_server_op(cmd->opcode), cmd->pdu_len,
990 (unsigned long long) cmd->tag);
991
992 switch (cmd->opcode) {
993 case FIO_NET_CMD_QUIT:
994 fio_terminate_threads(TERMINATE_ALL);
995 ret = 0;
996 break;
997 case FIO_NET_CMD_EXIT:
998 exit_backend = 1;
999 return -1;
1000 case FIO_NET_CMD_LOAD_FILE:
1001 ret = handle_load_file_cmd(cmd);
1002 break;
1003 case FIO_NET_CMD_JOB:
1004 ret = handle_job_cmd(cmd);
1005 break;
1006 case FIO_NET_CMD_JOBLINE:
1007 ret = handle_jobline_cmd(cmd);
1008 break;
1009 case FIO_NET_CMD_PROBE:
1010 ret = handle_probe_cmd(cmd);
1011 break;
1012 case FIO_NET_CMD_SEND_ETA:
1013 ret = handle_send_eta_cmd(cmd);
1014 break;
1015 case FIO_NET_CMD_RUN:
1016 ret = handle_run_cmd(sk_out, job_list, cmd);
1017 break;
1018 case FIO_NET_CMD_UPDATE_JOB:
1019 ret = handle_update_job_cmd(cmd);
1020 break;
1021 case FIO_NET_CMD_VTRIGGER:
1022 ret = handle_trigger_cmd(cmd);
1023 break;
1024 case FIO_NET_CMD_SENDFILE: {
1025 struct cmd_sendfile_reply *in;
1026 struct cmd_reply *rep;
1027
1028 rep = (struct cmd_reply *) (uintptr_t) cmd->tag;
1029
1030 in = (struct cmd_sendfile_reply *) cmd->payload;
1031 in->size = le32_to_cpu(in->size);
1032 in->error = le32_to_cpu(in->error);
1033 if (in->error) {
1034 ret = 1;
1035 rep->error = in->error;
1036 } else {
1037 ret = 0;
1038 rep->data = smalloc(in->size);
1039 if (!rep->data) {
1040 ret = 1;
1041 rep->error = ENOMEM;
1042 } else {
1043 rep->size = in->size;
1044 memcpy(rep->data, in->data, in->size);
1045 }
1046 }
1047 fio_mutex_up(&rep->lock);
1048 break;
1049 }
1050 default:
1051 log_err("fio: unknown opcode: %s\n", fio_server_op(cmd->opcode));
1052 ret = 1;
1053 }
1054
1055 return ret;
1056}
1057
1058/*
1059 * Send a command with a separate PDU, not inlined in the command
1060 */
1061static int fio_send_cmd_ext_pdu(int sk, uint16_t opcode, const void *buf,
1062 off_t size, uint64_t tag, uint32_t flags)
1063{
1064 struct fio_net_cmd cmd;
1065 struct iovec iov[2];
1066 size_t this_len;
1067 int ret;
1068
1069 iov[0].iov_base = (void *) &cmd;
1070 iov[0].iov_len = sizeof(cmd);
1071
1072 do {
1073 uint32_t this_flags = flags;
1074
1075 this_len = size;
1076 if (this_len > FIO_SERVER_MAX_FRAGMENT_PDU)
1077 this_len = FIO_SERVER_MAX_FRAGMENT_PDU;
1078
1079 if (this_len < size)
1080 this_flags |= FIO_NET_CMD_F_MORE;
1081
1082 __fio_init_net_cmd(&cmd, opcode, this_len, tag);
1083 cmd.flags = __cpu_to_le32(this_flags);
1084 fio_net_cmd_crc_pdu(&cmd, buf);
1085
1086 iov[1].iov_base = (void *) buf;
1087 iov[1].iov_len = this_len;
1088
1089 ret = fio_sendv_data(sk, iov, 2);
1090 size -= this_len;
1091 buf += this_len;
1092 } while (!ret && size);
1093
1094 return ret;
1095}
1096
1097static void finish_entry(struct sk_entry *entry)
1098{
1099 if (entry->flags & SK_F_FREE)
1100 free(entry->buf);
1101 else if (entry->flags & SK_F_COPY)
1102 sfree(entry->buf);
1103
1104 sfree(entry);
1105}
1106
1107static void entry_set_flags(struct sk_entry *entry, struct flist_head *list,
1108 unsigned int *flags)
1109{
1110 if (!flist_empty(list))
1111 *flags = FIO_NET_CMD_F_MORE;
1112 else
1113 *flags = 0;
1114}
1115
1116static int send_vec_entry(struct sk_out *sk_out, struct sk_entry *first)
1117{
1118 unsigned int flags;
1119 int ret;
1120
1121 entry_set_flags(first, &first->next, &flags);
1122
1123 ret = fio_send_cmd_ext_pdu(sk_out->sk, first->opcode, first->buf,
1124 first->size, first->tag, flags);
1125
1126 while (!flist_empty(&first->next)) {
1127 struct sk_entry *next;
1128
1129 next = flist_first_entry(&first->next, struct sk_entry, list);
1130 flist_del_init(&next->list);
1131
1132 entry_set_flags(next, &first->next, &flags);
1133
1134 ret += fio_send_cmd_ext_pdu(sk_out->sk, next->opcode, next->buf,
1135 next->size, next->tag, flags);
1136 finish_entry(next);
1137 }
1138
1139 return ret;
1140}
1141
1142static int handle_sk_entry(struct sk_out *sk_out, struct sk_entry *entry)
1143{
1144 int ret;
1145
1146 fio_mutex_down(&sk_out->xmit);
1147
1148 if (entry->flags & SK_F_VEC)
1149 ret = send_vec_entry(sk_out, entry);
1150 else if (entry->flags & SK_F_SIMPLE) {
1151 ret = fio_net_send_simple_cmd(sk_out->sk, entry->opcode,
1152 entry->tag, NULL);
1153 } else {
1154 ret = fio_net_send_cmd(sk_out->sk, entry->opcode, entry->buf,
1155 entry->size, &entry->tag, NULL);
1156 }
1157
1158 fio_mutex_up(&sk_out->xmit);
1159
1160 if (ret)
1161 log_err("fio: failed handling cmd %s\n", fio_server_op(entry->opcode));
1162
1163 finish_entry(entry);
1164 return ret;
1165}
1166
1167static int handle_xmits(struct sk_out *sk_out)
1168{
1169 struct sk_entry *entry;
1170 FLIST_HEAD(list);
1171 int ret = 0;
1172
1173 sk_lock(sk_out);
1174 if (flist_empty(&sk_out->list)) {
1175 sk_unlock(sk_out);
1176 return 0;
1177 }
1178
1179 flist_splice_init(&sk_out->list, &list);
1180 sk_unlock(sk_out);
1181
1182 while (!flist_empty(&list)) {
1183 entry = flist_entry(list.next, struct sk_entry, list);
1184 flist_del(&entry->list);
1185 ret += handle_sk_entry(sk_out, entry);
1186 }
1187
1188 return ret;
1189}
1190
1191static int handle_connection(struct sk_out *sk_out)
1192{
1193 struct fio_net_cmd *cmd = NULL;
1194 FLIST_HEAD(job_list);
1195 int ret = 0;
1196
1197 reset_fio_state();
1198
1199 /* read forever */
1200 while (!exit_backend) {
1201 struct pollfd pfd = {
1202 .fd = sk_out->sk,
1203 .events = POLLIN,
1204 };
1205
1206 ret = 0;
1207 do {
1208 int timeout = 1000;
1209
1210 if (!flist_empty(&job_list))
1211 timeout = 100;
1212
1213 handle_xmits(sk_out);
1214
1215 ret = poll(&pfd, 1, 0);
1216 if (ret < 0) {
1217 if (errno == EINTR)
1218 break;
1219 log_err("fio: poll: %s\n", strerror(errno));
1220 break;
1221 } else if (!ret) {
1222 fio_server_check_jobs(&job_list);
1223 fio_mutex_down_timeout(&sk_out->wait, timeout);
1224 continue;
1225 }
1226
1227 if (pfd.revents & POLLIN)
1228 break;
1229 if (pfd.revents & (POLLERR|POLLHUP)) {
1230 ret = 1;
1231 break;
1232 }
1233 } while (!exit_backend);
1234
1235 fio_server_check_jobs(&job_list);
1236
1237 if (ret < 0)
1238 break;
1239
1240 cmd = fio_net_recv_cmd(sk_out->sk, true);
1241 if (!cmd) {
1242 ret = -1;
1243 break;
1244 }
1245
1246 ret = handle_command(sk_out, &job_list, cmd);
1247 if (ret)
1248 break;
1249
1250 free(cmd);
1251 cmd = NULL;
1252 }
1253
1254 if (cmd)
1255 free(cmd);
1256
1257 handle_xmits(sk_out);
1258
1259 close(sk_out->sk);
1260 sk_out->sk = -1;
1261 __sk_out_drop(sk_out);
1262 _exit(ret);
1263}
1264
1265/* get the address on this host bound by the input socket,
1266 * whether it is ipv6 or ipv4 */
1267
1268static int get_my_addr_str(int sk)
1269{
1270 struct sockaddr_in6 myaddr6 = { 0, };
1271 struct sockaddr_in myaddr4 = { 0, };
1272 struct sockaddr *sockaddr_p;
1273 char *net_addr;
1274 socklen_t len;
1275 int ret;
1276
1277 if (use_ipv6) {
1278 len = sizeof(myaddr6);
1279 sockaddr_p = (struct sockaddr * )&myaddr6;
1280 net_addr = (char * )&myaddr6.sin6_addr;
1281 } else {
1282 len = sizeof(myaddr4);
1283 sockaddr_p = (struct sockaddr * )&myaddr4;
1284 net_addr = (char * )&myaddr4.sin_addr;
1285 }
1286
1287 ret = getsockname(sk, sockaddr_p, &len);
1288 if (ret) {
1289 log_err("fio: getsockaddr: %s\n", strerror(errno));
1290 return -1;
1291 }
1292
1293 if (!inet_ntop(use_ipv6?AF_INET6:AF_INET, net_addr, client_sockaddr_str, INET6_ADDRSTRLEN - 1)) {
1294 log_err("inet_ntop: failed to convert addr to string\n");
1295 return -1;
1296 }
1297
1298 dprint(FD_NET, "fio server bound to addr %s\n", client_sockaddr_str);
1299 return 0;
1300}
1301
1302static int accept_loop(int listen_sk)
1303{
1304 struct sockaddr_in addr;
1305 struct sockaddr_in6 addr6;
1306 socklen_t len = use_ipv6 ? sizeof(addr6) : sizeof(addr);
1307 struct pollfd pfd;
1308 int ret = 0, sk, exitval = 0;
1309 FLIST_HEAD(conn_list);
1310
1311 dprint(FD_NET, "server enter accept loop\n");
1312
1313 fio_set_fd_nonblocking(listen_sk, "server");
1314
1315 while (!exit_backend) {
1316 struct sk_out *sk_out;
1317 const char *from;
1318 char buf[64];
1319 pid_t pid;
1320
1321 pfd.fd = listen_sk;
1322 pfd.events = POLLIN;
1323 do {
1324 int timeout = 1000;
1325
1326 if (!flist_empty(&conn_list))
1327 timeout = 100;
1328
1329 ret = poll(&pfd, 1, timeout);
1330 if (ret < 0) {
1331 if (errno == EINTR)
1332 break;
1333 log_err("fio: poll: %s\n", strerror(errno));
1334 break;
1335 } else if (!ret) {
1336 fio_server_check_conns(&conn_list);
1337 continue;
1338 }
1339
1340 if (pfd.revents & POLLIN)
1341 break;
1342 } while (!exit_backend);
1343
1344 fio_server_check_conns(&conn_list);
1345
1346 if (exit_backend || ret < 0)
1347 break;
1348
1349 if (use_ipv6)
1350 sk = accept(listen_sk, (struct sockaddr *) &addr6, &len);
1351 else
1352 sk = accept(listen_sk, (struct sockaddr *) &addr, &len);
1353
1354 if (sk < 0) {
1355 log_err("fio: accept: %s\n", strerror(errno));
1356 return -1;
1357 }
1358
1359 if (use_ipv6)
1360 from = inet_ntop(AF_INET6, (struct sockaddr *) &addr6.sin6_addr, buf, sizeof(buf));
1361 else
1362 from = inet_ntop(AF_INET, (struct sockaddr *) &addr.sin_addr, buf, sizeof(buf));
1363
1364 dprint(FD_NET, "server: connect from %s\n", from);
1365
1366 sk_out = smalloc(sizeof(*sk_out));
1367 sk_out->sk = sk;
1368 INIT_FLIST_HEAD(&sk_out->list);
1369 __fio_mutex_init(&sk_out->lock, FIO_MUTEX_UNLOCKED);
1370 __fio_mutex_init(&sk_out->wait, FIO_MUTEX_LOCKED);
1371 __fio_mutex_init(&sk_out->xmit, FIO_MUTEX_UNLOCKED);
1372
1373 pid = fork();
1374 if (pid) {
1375 close(sk);
1376 fio_server_add_conn_pid(&conn_list, pid);
1377 continue;
1378 }
1379
1380 /* if error, it's already logged, non-fatal */
1381 get_my_addr_str(sk);
1382
1383 /*
1384 * Assign sk_out here, it'll be dropped in handle_connection()
1385 * since that function calls _exit() when done
1386 */
1387 sk_out_assign(sk_out);
1388 handle_connection(sk_out);
1389 }
1390
1391 return exitval;
1392}
1393
1394int fio_server_text_output(int level, const char *buf, size_t len)
1395{
1396 struct sk_out *sk_out = pthread_getspecific(sk_out_key);
1397 struct cmd_text_pdu *pdu;
1398 unsigned int tlen;
1399 struct timeval tv;
1400
1401 if (!sk_out || sk_out->sk == -1)
1402 return -1;
1403
1404 tlen = sizeof(*pdu) + len;
1405 pdu = malloc(tlen);
1406
1407 pdu->level = __cpu_to_le32(level);
1408 pdu->buf_len = __cpu_to_le32(len);
1409
1410 gettimeofday(&tv, NULL);
1411 pdu->log_sec = __cpu_to_le64(tv.tv_sec);
1412 pdu->log_usec = __cpu_to_le64(tv.tv_usec);
1413
1414 memcpy(pdu->buf, buf, len);
1415
1416 fio_net_queue_cmd(FIO_NET_CMD_TEXT, pdu, tlen, NULL, SK_F_COPY);
1417 free(pdu);
1418 return len;
1419}
1420
1421static void convert_io_stat(struct io_stat *dst, struct io_stat *src)
1422{
1423 dst->max_val = cpu_to_le64(src->max_val);
1424 dst->min_val = cpu_to_le64(src->min_val);
1425 dst->samples = cpu_to_le64(src->samples);
1426
1427 /*
1428 * Encode to IEEE 754 for network transfer
1429 */
1430 dst->mean.u.i = cpu_to_le64(fio_double_to_uint64(src->mean.u.f));
1431 dst->S.u.i = cpu_to_le64(fio_double_to_uint64(src->S.u.f));
1432}
1433
1434static void convert_gs(struct group_run_stats *dst, struct group_run_stats *src)
1435{
1436 int i;
1437
1438 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
1439 dst->max_run[i] = cpu_to_le64(src->max_run[i]);
1440 dst->min_run[i] = cpu_to_le64(src->min_run[i]);
1441 dst->max_bw[i] = cpu_to_le64(src->max_bw[i]);
1442 dst->min_bw[i] = cpu_to_le64(src->min_bw[i]);
1443 dst->io_kb[i] = cpu_to_le64(src->io_kb[i]);
1444 dst->agg[i] = cpu_to_le64(src->agg[i]);
1445 }
1446
1447 dst->kb_base = cpu_to_le32(src->kb_base);
1448 dst->unit_base = cpu_to_le32(src->unit_base);
1449 dst->groupid = cpu_to_le32(src->groupid);
1450 dst->unified_rw_rep = cpu_to_le32(src->unified_rw_rep);
1451}
1452
1453/*
1454 * Send a CMD_TS, which packs struct thread_stat and group_run_stats
1455 * into a single payload.
1456 */
1457void fio_server_send_ts(struct thread_stat *ts, struct group_run_stats *rs)
1458{
1459 struct cmd_ts_pdu p;
1460 int i, j;
1461 void *ss_buf;
1462 uint64_t *ss_iops, *ss_bw;
1463
1464 dprint(FD_NET, "server sending end stats\n");
1465
1466 memset(&p, 0, sizeof(p));
1467
1468 strncpy(p.ts.name, ts->name, FIO_JOBNAME_SIZE - 1);
1469 strncpy(p.ts.verror, ts->verror, FIO_VERROR_SIZE - 1);
1470 strncpy(p.ts.description, ts->description, FIO_JOBDESC_SIZE - 1);
1471
1472 p.ts.error = cpu_to_le32(ts->error);
1473 p.ts.thread_number = cpu_to_le32(ts->thread_number);
1474 p.ts.groupid = cpu_to_le32(ts->groupid);
1475 p.ts.pid = cpu_to_le32(ts->pid);
1476 p.ts.members = cpu_to_le32(ts->members);
1477 p.ts.unified_rw_rep = cpu_to_le32(ts->unified_rw_rep);
1478
1479 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
1480 convert_io_stat(&p.ts.clat_stat[i], &ts->clat_stat[i]);
1481 convert_io_stat(&p.ts.slat_stat[i], &ts->slat_stat[i]);
1482 convert_io_stat(&p.ts.lat_stat[i], &ts->lat_stat[i]);
1483 convert_io_stat(&p.ts.bw_stat[i], &ts->bw_stat[i]);
1484 }
1485
1486 p.ts.usr_time = cpu_to_le64(ts->usr_time);
1487 p.ts.sys_time = cpu_to_le64(ts->sys_time);
1488 p.ts.ctx = cpu_to_le64(ts->ctx);
1489 p.ts.minf = cpu_to_le64(ts->minf);
1490 p.ts.majf = cpu_to_le64(ts->majf);
1491 p.ts.clat_percentiles = cpu_to_le64(ts->clat_percentiles);
1492 p.ts.percentile_precision = cpu_to_le64(ts->percentile_precision);
1493
1494 for (i = 0; i < FIO_IO_U_LIST_MAX_LEN; i++) {
1495 fio_fp64_t *src = &ts->percentile_list[i];
1496 fio_fp64_t *dst = &p.ts.percentile_list[i];
1497
1498 dst->u.i = cpu_to_le64(fio_double_to_uint64(src->u.f));
1499 }
1500
1501 for (i = 0; i < FIO_IO_U_MAP_NR; i++) {
1502 p.ts.io_u_map[i] = cpu_to_le32(ts->io_u_map[i]);
1503 p.ts.io_u_submit[i] = cpu_to_le32(ts->io_u_submit[i]);
1504 p.ts.io_u_complete[i] = cpu_to_le32(ts->io_u_complete[i]);
1505 }
1506
1507 for (i = 0; i < FIO_IO_U_LAT_U_NR; i++) {
1508 p.ts.io_u_lat_u[i] = cpu_to_le32(ts->io_u_lat_u[i]);
1509 p.ts.io_u_lat_m[i] = cpu_to_le32(ts->io_u_lat_m[i]);
1510 }
1511
1512 for (i = 0; i < DDIR_RWDIR_CNT; i++)
1513 for (j = 0; j < FIO_IO_U_PLAT_NR; j++)
1514 p.ts.io_u_plat[i][j] = cpu_to_le32(ts->io_u_plat[i][j]);
1515
1516 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
1517 p.ts.total_io_u[i] = cpu_to_le64(ts->total_io_u[i]);
1518 p.ts.short_io_u[i] = cpu_to_le64(ts->short_io_u[i]);
1519 p.ts.drop_io_u[i] = cpu_to_le64(ts->drop_io_u[i]);
1520 }
1521
1522 p.ts.total_submit = cpu_to_le64(ts->total_submit);
1523 p.ts.total_complete = cpu_to_le64(ts->total_complete);
1524
1525 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
1526 p.ts.io_bytes[i] = cpu_to_le64(ts->io_bytes[i]);
1527 p.ts.runtime[i] = cpu_to_le64(ts->runtime[i]);
1528 }
1529
1530 p.ts.total_run_time = cpu_to_le64(ts->total_run_time);
1531 p.ts.continue_on_error = cpu_to_le16(ts->continue_on_error);
1532 p.ts.total_err_count = cpu_to_le64(ts->total_err_count);
1533 p.ts.first_error = cpu_to_le32(ts->first_error);
1534 p.ts.kb_base = cpu_to_le32(ts->kb_base);
1535 p.ts.unit_base = cpu_to_le32(ts->unit_base);
1536
1537 p.ts.latency_depth = cpu_to_le32(ts->latency_depth);
1538 p.ts.latency_target = cpu_to_le64(ts->latency_target);
1539 p.ts.latency_window = cpu_to_le64(ts->latency_window);
1540 p.ts.latency_percentile.u.i = cpu_to_le64(fio_double_to_uint64(ts->latency_percentile.u.f));
1541
1542 p.ts.nr_block_infos = le64_to_cpu(ts->nr_block_infos);
1543 for (i = 0; i < p.ts.nr_block_infos; i++)
1544 p.ts.block_infos[i] = le32_to_cpu(ts->block_infos[i]);
1545
1546 p.ts.ss_dur = cpu_to_le64(ts->ss_dur);
1547 p.ts.ss_state = cpu_to_le32(ts->ss_state);
1548 p.ts.ss_head = cpu_to_le32(ts->ss_head);
1549 p.ts.ss_limit.u.i = cpu_to_le64(fio_double_to_uint64(ts->ss_limit.u.f));
1550 p.ts.ss_slope.u.i = cpu_to_le64(fio_double_to_uint64(ts->ss_slope.u.f));
1551 p.ts.ss_deviation.u.i = cpu_to_le64(fio_double_to_uint64(ts->ss_deviation.u.f));
1552 p.ts.ss_criterion.u.i = cpu_to_le64(fio_double_to_uint64(ts->ss_criterion.u.f));
1553
1554 convert_gs(&p.rs, rs);
1555
1556 dprint(FD_NET, "ts->ss_state = %d\n", ts->ss_state);
1557 if (ts->ss_state & __FIO_SS_DATA) {
1558 dprint(FD_NET, "server sending steadystate ring buffers\n");
1559
1560 ss_buf = malloc(sizeof(p) + 2*ts->ss_dur*sizeof(uint64_t));
1561
1562 memcpy(ss_buf, &p, sizeof(p));
1563
1564 ss_iops = (uint64_t *) ((struct cmd_ts_pdu *)ss_buf + 1);
1565 ss_bw = ss_iops + (int) ts->ss_dur;
1566 for (i = 0; i < ts->ss_dur; i++) {
1567 ss_iops[i] = cpu_to_le64(ts->ss_iops_data[i]);
1568 ss_bw[i] = cpu_to_le64(ts->ss_bw_data[i]);
1569 }
1570
1571 fio_net_queue_cmd(FIO_NET_CMD_TS, ss_buf, sizeof(p) + 2*ts->ss_dur*sizeof(uint64_t), NULL, SK_F_COPY);
1572
1573 free(ss_buf);
1574 }
1575 else
1576 fio_net_queue_cmd(FIO_NET_CMD_TS, &p, sizeof(p), NULL, SK_F_COPY);
1577}
1578
1579void fio_server_send_gs(struct group_run_stats *rs)
1580{
1581 struct group_run_stats gs;
1582
1583 dprint(FD_NET, "server sending group run stats\n");
1584
1585 convert_gs(&gs, rs);
1586 fio_net_queue_cmd(FIO_NET_CMD_GS, &gs, sizeof(gs), NULL, SK_F_COPY);
1587}
1588
1589void fio_server_send_job_options(struct flist_head *opt_list,
1590 unsigned int groupid)
1591{
1592 struct cmd_job_option pdu;
1593 struct flist_head *entry;
1594
1595 if (flist_empty(opt_list))
1596 return;
1597
1598 flist_for_each(entry, opt_list) {
1599 struct print_option *p;
1600 size_t len;
1601
1602 p = flist_entry(entry, struct print_option, list);
1603 memset(&pdu, 0, sizeof(pdu));
1604
1605 if (groupid == -1U) {
1606 pdu.global = __cpu_to_le16(1);
1607 pdu.groupid = 0;
1608 } else {
1609 pdu.global = 0;
1610 pdu.groupid = cpu_to_le32(groupid);
1611 }
1612 len = strlen(p->name);
1613 if (len >= sizeof(pdu.name)) {
1614 len = sizeof(pdu.name) - 1;
1615 pdu.truncated = __cpu_to_le16(1);
1616 }
1617 memcpy(pdu.name, p->name, len);
1618 if (p->value) {
1619 len = strlen(p->value);
1620 if (len >= sizeof(pdu.value)) {
1621 len = sizeof(pdu.value) - 1;
1622 pdu.truncated = __cpu_to_le16(1);
1623 }
1624 memcpy(pdu.value, p->value, len);
1625 }
1626 fio_net_queue_cmd(FIO_NET_CMD_JOB_OPT, &pdu, sizeof(pdu), NULL, SK_F_COPY);
1627 }
1628}
1629
1630static void convert_agg(struct disk_util_agg *dst, struct disk_util_agg *src)
1631{
1632 int i;
1633
1634 for (i = 0; i < 2; i++) {
1635 dst->ios[i] = cpu_to_le64(src->ios[i]);
1636 dst->merges[i] = cpu_to_le64(src->merges[i]);
1637 dst->sectors[i] = cpu_to_le64(src->sectors[i]);
1638 dst->ticks[i] = cpu_to_le64(src->ticks[i]);
1639 }
1640
1641 dst->io_ticks = cpu_to_le64(src->io_ticks);
1642 dst->time_in_queue = cpu_to_le64(src->time_in_queue);
1643 dst->slavecount = cpu_to_le32(src->slavecount);
1644 dst->max_util.u.i = cpu_to_le64(fio_double_to_uint64(src->max_util.u.f));
1645}
1646
1647static void convert_dus(struct disk_util_stat *dst, struct disk_util_stat *src)
1648{
1649 int i;
1650
1651 dst->name[FIO_DU_NAME_SZ - 1] = '\0';
1652 strncpy((char *) dst->name, (char *) src->name, FIO_DU_NAME_SZ - 1);
1653
1654 for (i = 0; i < 2; i++) {
1655 dst->s.ios[i] = cpu_to_le64(src->s.ios[i]);
1656 dst->s.merges[i] = cpu_to_le64(src->s.merges[i]);
1657 dst->s.sectors[i] = cpu_to_le64(src->s.sectors[i]);
1658 dst->s.ticks[i] = cpu_to_le64(src->s.ticks[i]);
1659 }
1660
1661 dst->s.io_ticks = cpu_to_le64(src->s.io_ticks);
1662 dst->s.time_in_queue = cpu_to_le64(src->s.time_in_queue);
1663 dst->s.msec = cpu_to_le64(src->s.msec);
1664}
1665
1666void fio_server_send_du(void)
1667{
1668 struct disk_util *du;
1669 struct flist_head *entry;
1670 struct cmd_du_pdu pdu;
1671
1672 dprint(FD_NET, "server: sending disk_util %d\n", !flist_empty(&disk_list));
1673
1674 memset(&pdu, 0, sizeof(pdu));
1675
1676 flist_for_each(entry, &disk_list) {
1677 du = flist_entry(entry, struct disk_util, list);
1678
1679 convert_dus(&pdu.dus, &du->dus);
1680 convert_agg(&pdu.agg, &du->agg);
1681
1682 fio_net_queue_cmd(FIO_NET_CMD_DU, &pdu, sizeof(pdu), NULL, SK_F_COPY);
1683 }
1684}
1685
1686#ifdef CONFIG_ZLIB
1687static int __fio_append_iolog_gz(struct sk_entry *first, struct io_log *log,
1688 struct io_logs *cur_log, z_stream *stream)
1689{
1690 unsigned int this_len;
1691 void *out_pdu;
1692 int ret;
1693
1694 stream->next_in = (void *) cur_log->log;
1695 stream->avail_in = cur_log->nr_samples * log_entry_sz(log);
1696
1697 do {
1698 struct sk_entry *entry;
1699
1700 /*
1701 * Dirty - since the log is potentially huge, compress it into
1702 * FIO_SERVER_MAX_FRAGMENT_PDU chunks and let the receiving
1703 * side defragment it.
1704 */
1705 out_pdu = malloc(FIO_SERVER_MAX_FRAGMENT_PDU);
1706
1707 stream->avail_out = FIO_SERVER_MAX_FRAGMENT_PDU;
1708 stream->next_out = out_pdu;
1709 ret = deflate(stream, Z_BLOCK);
1710 /* may be Z_OK, or Z_STREAM_END */
1711 if (ret < 0) {
1712 free(out_pdu);
1713 return 1;
1714 }
1715
1716 this_len = FIO_SERVER_MAX_FRAGMENT_PDU - stream->avail_out;
1717
1718 entry = fio_net_prep_cmd(FIO_NET_CMD_IOLOG, out_pdu, this_len,
1719 NULL, SK_F_VEC | SK_F_INLINE | SK_F_FREE);
1720 flist_add_tail(&entry->list, &first->next);
1721 } while (stream->avail_in);
1722
1723 return 0;
1724}
1725
1726static int fio_append_iolog_gz(struct sk_entry *first, struct io_log *log)
1727{
1728 int ret = 0;
1729 z_stream stream;
1730
1731 memset(&stream, 0, sizeof(stream));
1732 stream.zalloc = Z_NULL;
1733 stream.zfree = Z_NULL;
1734 stream.opaque = Z_NULL;
1735
1736 if (deflateInit(&stream, Z_DEFAULT_COMPRESSION) != Z_OK)
1737 return 1;
1738
1739 while (!flist_empty(&log->io_logs)) {
1740 struct io_logs *cur_log;
1741
1742 cur_log = flist_first_entry(&log->io_logs, struct io_logs, list);
1743 flist_del_init(&cur_log->list);
1744
1745 ret = __fio_append_iolog_gz(first, log, cur_log, &stream);
1746 if (ret)
1747 break;
1748 }
1749
1750 ret = deflate(&stream, Z_FINISH);
1751
1752 while (ret != Z_STREAM_END) {
1753 struct sk_entry *entry;
1754 unsigned int this_len;
1755 void *out_pdu;
1756
1757 out_pdu = malloc(FIO_SERVER_MAX_FRAGMENT_PDU);
1758 stream.avail_out = FIO_SERVER_MAX_FRAGMENT_PDU;
1759 stream.next_out = out_pdu;
1760
1761 ret = deflate(&stream, Z_FINISH);
1762 /* may be Z_OK, or Z_STREAM_END */
1763 if (ret < 0) {
1764 free(out_pdu);
1765 break;
1766 }
1767
1768 this_len = FIO_SERVER_MAX_FRAGMENT_PDU - stream.avail_out;
1769
1770 entry = fio_net_prep_cmd(FIO_NET_CMD_IOLOG, out_pdu, this_len,
1771 NULL, SK_F_VEC | SK_F_INLINE | SK_F_FREE);
1772 flist_add_tail(&entry->list, &first->next);
1773 } while (ret != Z_STREAM_END);
1774
1775 ret = deflateEnd(&stream);
1776 if (ret == Z_OK)
1777 return 0;
1778
1779 return 1;
1780}
1781#else
1782static int fio_append_iolog_gz(struct sk_entry *first, struct io_log *log)
1783{
1784 return 1;
1785}
1786#endif
1787
1788static int fio_append_gz_chunks(struct sk_entry *first, struct io_log *log)
1789{
1790 struct sk_entry *entry;
1791 struct flist_head *node;
1792
1793 pthread_mutex_lock(&log->chunk_lock);
1794 flist_for_each(node, &log->chunk_list) {
1795 struct iolog_compress *c;
1796
1797 c = flist_entry(node, struct iolog_compress, list);
1798 entry = fio_net_prep_cmd(FIO_NET_CMD_IOLOG, c->buf, c->len,
1799 NULL, SK_F_VEC | SK_F_INLINE);
1800 flist_add_tail(&entry->list, &first->next);
1801 }
1802 pthread_mutex_unlock(&log->chunk_lock);
1803
1804 return 0;
1805}
1806
1807static int fio_append_text_log(struct sk_entry *first, struct io_log *log)
1808{
1809 struct sk_entry *entry;
1810
1811 while (!flist_empty(&log->io_logs)) {
1812 struct io_logs *cur_log;
1813 size_t size;
1814
1815 cur_log = flist_first_entry(&log->io_logs, struct io_logs, list);
1816 flist_del_init(&cur_log->list);
1817
1818 size = cur_log->nr_samples * log_entry_sz(log);
1819
1820 entry = fio_net_prep_cmd(FIO_NET_CMD_IOLOG, cur_log->log, size,
1821 NULL, SK_F_VEC | SK_F_INLINE);
1822 flist_add_tail(&entry->list, &first->next);
1823 }
1824
1825 return 0;
1826}
1827
1828int fio_send_iolog(struct thread_data *td, struct io_log *log, const char *name)
1829{
1830 struct cmd_iolog_pdu pdu;
1831 struct sk_entry *first;
1832 struct flist_head *entry;
1833 int ret = 0;
1834
1835 pdu.nr_samples = cpu_to_le64(iolog_nr_samples(log));
1836 pdu.thread_number = cpu_to_le32(td->thread_number);
1837 pdu.log_type = cpu_to_le32(log->log_type);
1838
1839 if (!flist_empty(&log->chunk_list))
1840 pdu.compressed = __cpu_to_le32(STORE_COMPRESSED);
1841 else if (use_zlib)
1842 pdu.compressed = __cpu_to_le32(XMIT_COMPRESSED);
1843 else
1844 pdu.compressed = 0;
1845
1846 strncpy((char *) pdu.name, name, FIO_NET_NAME_MAX);
1847 pdu.name[FIO_NET_NAME_MAX - 1] = '\0';
1848
1849 /*
1850 * We can't do this for a pre-compressed log, but for that case,
1851 * log->nr_samples is zero anyway.
1852 */
1853 flist_for_each(entry, &log->io_logs) {
1854 struct io_logs *cur_log;
1855 int i;
1856
1857 cur_log = flist_entry(entry, struct io_logs, list);
1858
1859 for (i = 0; i < cur_log->nr_samples; i++) {
1860 struct io_sample *s = get_sample(log, cur_log, i);
1861
1862 s->time = cpu_to_le64(s->time);
1863 s->val = cpu_to_le64(s->val);
1864 s->__ddir = cpu_to_le32(s->__ddir);
1865 s->bs = cpu_to_le32(s->bs);
1866
1867 if (log->log_offset) {
1868 struct io_sample_offset *so = (void *) s;
1869
1870 so->offset = cpu_to_le64(so->offset);
1871 }
1872 }
1873 }
1874
1875 /*
1876 * Assemble header entry first
1877 */
1878 first = fio_net_prep_cmd(FIO_NET_CMD_IOLOG, &pdu, sizeof(pdu), NULL, SK_F_VEC | SK_F_INLINE | SK_F_COPY);
1879
1880 /*
1881 * Now append actual log entries. If log compression was enabled on
1882 * the job, just send out the compressed chunks directly. If we
1883 * have a plain log, compress if we can, then send. Otherwise, send
1884 * the plain text output.
1885 */
1886 if (!flist_empty(&log->chunk_list))
1887 ret = fio_append_gz_chunks(first, log);
1888 else if (use_zlib)
1889 ret = fio_append_iolog_gz(first, log);
1890 else
1891 ret = fio_append_text_log(first, log);
1892
1893 fio_net_queue_entry(first);
1894 return ret;
1895}
1896
1897void fio_server_send_add_job(struct thread_data *td)
1898{
1899 struct cmd_add_job_pdu pdu;
1900
1901 memset(&pdu, 0, sizeof(pdu));
1902 pdu.thread_number = cpu_to_le32(td->thread_number);
1903 pdu.groupid = cpu_to_le32(td->groupid);
1904 convert_thread_options_to_net(&pdu.top, &td->o);
1905
1906 fio_net_queue_cmd(FIO_NET_CMD_ADD_JOB, &pdu, sizeof(pdu), NULL,
1907 SK_F_COPY);
1908}
1909
1910void fio_server_send_start(struct thread_data *td)
1911{
1912 struct sk_out *sk_out = pthread_getspecific(sk_out_key);
1913
1914 assert(sk_out->sk != -1);
1915
1916 fio_net_queue_cmd(FIO_NET_CMD_SERVER_START, NULL, 0, 0, SK_F_SIMPLE);
1917}
1918
1919int fio_server_get_verify_state(const char *name, int threadnumber,
1920 void **datap)
1921{
1922 struct thread_io_list *s;
1923 struct cmd_sendfile out;
1924 struct cmd_reply *rep;
1925 uint64_t tag;
1926 void *data;
1927 int ret;
1928
1929 dprint(FD_NET, "server: request verify state\n");
1930
1931 rep = smalloc(sizeof(*rep));
1932 if (!rep) {
1933 log_err("fio: smalloc pool too small\n");
1934 return ENOMEM;
1935 }
1936
1937 __fio_mutex_init(&rep->lock, FIO_MUTEX_LOCKED);
1938 rep->data = NULL;
1939 rep->error = 0;
1940
1941 verify_state_gen_name((char *) out.path, sizeof(out.path), name, me,
1942 threadnumber);
1943 tag = (uint64_t) (uintptr_t) rep;
1944 fio_net_queue_cmd(FIO_NET_CMD_SENDFILE, &out, sizeof(out), &tag,
1945 SK_F_COPY);
1946
1947 /*
1948 * Wait for the backend to receive the reply
1949 */
1950 if (fio_mutex_down_timeout(&rep->lock, 10000)) {
1951 log_err("fio: timed out waiting for reply\n");
1952 ret = ETIMEDOUT;
1953 goto fail;
1954 }
1955
1956 if (rep->error) {
1957 log_err("fio: failure on receiving state file %s: %s\n",
1958 out.path, strerror(rep->error));
1959 ret = rep->error;
1960fail:
1961 *datap = NULL;
1962 sfree(rep);
1963 fio_net_queue_quit();
1964 return ret;
1965 }
1966
1967 /*
1968 * The format is verify_state_hdr, then thread_io_list. Verify
1969 * the header, and the thread_io_list checksum
1970 */
1971 s = rep->data + sizeof(struct verify_state_hdr);
1972 if (verify_state_hdr(rep->data, s)) {
1973 ret = EILSEQ;
1974 goto fail;
1975 }
1976
1977 /*
1978 * Don't need the header from now, copy just the thread_io_list
1979 */
1980 ret = 0;
1981 rep->size -= sizeof(struct verify_state_hdr);
1982 data = malloc(rep->size);
1983 memcpy(data, s, rep->size);
1984 *datap = data;
1985
1986 sfree(rep->data);
1987 __fio_mutex_remove(&rep->lock);
1988 sfree(rep);
1989 return ret;
1990}
1991
1992static int fio_init_server_ip(void)
1993{
1994 struct sockaddr *addr;
1995 socklen_t socklen;
1996 char buf[80];
1997 const char *str;
1998 int sk, opt;
1999
2000 if (use_ipv6)
2001 sk = socket(AF_INET6, SOCK_STREAM, 0);
2002 else
2003 sk = socket(AF_INET, SOCK_STREAM, 0);
2004
2005 if (sk < 0) {
2006 log_err("fio: socket: %s\n", strerror(errno));
2007 return -1;
2008 }
2009
2010 opt = 1;
2011 if (setsockopt(sk, SOL_SOCKET, SO_REUSEADDR, (void *)&opt, sizeof(opt)) < 0) {
2012 log_err("fio: setsockopt(REUSEADDR): %s\n", strerror(errno));
2013 close(sk);
2014 return -1;
2015 }
2016#ifdef SO_REUSEPORT
2017 /*
2018 * Not fatal if fails, so just ignore it if that happens
2019 */
2020 setsockopt(sk, SOL_SOCKET, SO_REUSEPORT, &opt, sizeof(opt));
2021#endif
2022
2023 if (use_ipv6) {
2024 const void *src = &saddr_in6.sin6_addr;
2025
2026 addr = (struct sockaddr *) &saddr_in6;
2027 socklen = sizeof(saddr_in6);
2028 saddr_in6.sin6_family = AF_INET6;
2029 str = inet_ntop(AF_INET6, src, buf, sizeof(buf));
2030 } else {
2031 const void *src = &saddr_in.sin_addr;
2032
2033 addr = (struct sockaddr *) &saddr_in;
2034 socklen = sizeof(saddr_in);
2035 saddr_in.sin_family = AF_INET;
2036 str = inet_ntop(AF_INET, src, buf, sizeof(buf));
2037 }
2038
2039 if (bind(sk, addr, socklen) < 0) {
2040 log_err("fio: bind: %s\n", strerror(errno));
2041 log_info("fio: failed with IPv%c %s\n", use_ipv6 ? '6' : '4', str);
2042 close(sk);
2043 return -1;
2044 }
2045
2046 return sk;
2047}
2048
2049static int fio_init_server_sock(void)
2050{
2051 struct sockaddr_un addr;
2052 socklen_t len;
2053 mode_t mode;
2054 int sk;
2055
2056 sk = socket(AF_UNIX, SOCK_STREAM, 0);
2057 if (sk < 0) {
2058 log_err("fio: socket: %s\n", strerror(errno));
2059 return -1;
2060 }
2061
2062 mode = umask(000);
2063
2064 memset(&addr, 0, sizeof(addr));
2065 addr.sun_family = AF_UNIX;
2066 strncpy(addr.sun_path, bind_sock, sizeof(addr.sun_path) - 1);
2067
2068 len = sizeof(addr.sun_family) + strlen(bind_sock) + 1;
2069
2070 if (bind(sk, (struct sockaddr *) &addr, len) < 0) {
2071 log_err("fio: bind: %s\n", strerror(errno));
2072 close(sk);
2073 return -1;
2074 }
2075
2076 umask(mode);
2077 return sk;
2078}
2079
2080static int fio_init_server_connection(void)
2081{
2082 char bind_str[128];
2083 int sk;
2084
2085 dprint(FD_NET, "starting server\n");
2086
2087 if (!bind_sock)
2088 sk = fio_init_server_ip();
2089 else
2090 sk = fio_init_server_sock();
2091
2092 if (sk < 0)
2093 return sk;
2094
2095 memset(bind_str, 0, sizeof(bind_str));
2096
2097 if (!bind_sock) {
2098 char *p, port[16];
2099 const void *src;
2100 int af;
2101
2102 if (use_ipv6) {
2103 af = AF_INET6;
2104 src = &saddr_in6.sin6_addr;
2105 } else {
2106 af = AF_INET;
2107 src = &saddr_in.sin_addr;
2108 }
2109
2110 p = (char *) inet_ntop(af, src, bind_str, sizeof(bind_str));
2111
2112 sprintf(port, ",%u", fio_net_port);
2113 if (p)
2114 strcat(p, port);
2115 else
2116 strncpy(bind_str, port, sizeof(bind_str) - 1);
2117 } else
2118 strncpy(bind_str, bind_sock, sizeof(bind_str) - 1);
2119
2120 log_info("fio: server listening on %s\n", bind_str);
2121
2122 if (listen(sk, 4) < 0) {
2123 log_err("fio: listen: %s\n", strerror(errno));
2124 close(sk);
2125 return -1;
2126 }
2127
2128 return sk;
2129}
2130
2131int fio_server_parse_host(const char *host, int ipv6, struct in_addr *inp,
2132 struct in6_addr *inp6)
2133
2134{
2135 int ret = 0;
2136
2137 if (ipv6)
2138 ret = inet_pton(AF_INET6, host, inp6);
2139 else
2140 ret = inet_pton(AF_INET, host, inp);
2141
2142 if (ret != 1) {
2143 struct addrinfo hints, *res;
2144
2145 memset(&hints, 0, sizeof(hints));
2146 hints.ai_family = ipv6 ? AF_INET6 : AF_INET;
2147 hints.ai_socktype = SOCK_STREAM;
2148
2149 ret = getaddrinfo(host, NULL, &hints, &res);
2150 if (ret) {
2151 log_err("fio: failed to resolve <%s> (%s)\n", host,
2152 gai_strerror(ret));
2153 return 1;
2154 }
2155
2156 if (ipv6)
2157 memcpy(inp6, &((struct sockaddr_in6 *) res->ai_addr)->sin6_addr, sizeof(*inp6));
2158 else
2159 memcpy(inp, &((struct sockaddr_in *) res->ai_addr)->sin_addr, sizeof(*inp));
2160
2161 ret = 1;
2162 freeaddrinfo(res);
2163 }
2164
2165 return !(ret == 1);
2166}
2167
2168/*
2169 * Parse a host/ip/port string. Reads from 'str'.
2170 *
2171 * Outputs:
2172 *
2173 * For IPv4:
2174 * *ptr is the host, *port is the port, inp is the destination.
2175 * For IPv6:
2176 * *ptr is the host, *port is the port, inp6 is the dest, and *ipv6 is 1.
2177 * For local domain sockets:
2178 * *ptr is the filename, *is_sock is 1.
2179 */
2180int fio_server_parse_string(const char *str, char **ptr, int *is_sock,
2181 int *port, struct in_addr *inp,
2182 struct in6_addr *inp6, int *ipv6)
2183{
2184 const char *host = str;
2185 char *portp;
2186 int lport = 0;
2187
2188 *ptr = NULL;
2189 *is_sock = 0;
2190 *port = fio_net_port;
2191 *ipv6 = 0;
2192
2193 if (!strncmp(str, "sock:", 5)) {
2194 *ptr = strdup(str + 5);
2195 *is_sock = 1;
2196
2197 return 0;
2198 }
2199
2200 /*
2201 * Is it ip:<ip or host>:port
2202 */
2203 if (!strncmp(host, "ip:", 3))
2204 host += 3;
2205 else if (!strncmp(host, "ip4:", 4))
2206 host += 4;
2207 else if (!strncmp(host, "ip6:", 4)) {
2208 host += 4;
2209 *ipv6 = 1;
2210 } else if (host[0] == ':') {
2211 /* String is :port */
2212 host++;
2213 lport = atoi(host);
2214 if (!lport || lport > 65535) {
2215 log_err("fio: bad server port %u\n", lport);
2216 return 1;
2217 }
2218 /* no hostname given, we are done */
2219 *port = lport;
2220 return 0;
2221 }
2222
2223 /*
2224 * If no port seen yet, check if there's a last ',' at the end
2225 */
2226 if (!lport) {
2227 portp = strchr(host, ',');
2228 if (portp) {
2229 *portp = '\0';
2230 portp++;
2231 lport = atoi(portp);
2232 if (!lport || lport > 65535) {
2233 log_err("fio: bad server port %u\n", lport);
2234 return 1;
2235 }
2236 }
2237 }
2238
2239 if (lport)
2240 *port = lport;
2241
2242 if (!strlen(host))
2243 return 0;
2244
2245 *ptr = strdup(host);
2246
2247 if (fio_server_parse_host(*ptr, *ipv6, inp, inp6)) {
2248 free(*ptr);
2249 *ptr = NULL;
2250 return 1;
2251 }
2252
2253 if (*port == 0)
2254 *port = fio_net_port;
2255
2256 return 0;
2257}
2258
2259/*
2260 * Server arg should be one of:
2261 *
2262 * sock:/path/to/socket
2263 * ip:1.2.3.4
2264 * 1.2.3.4
2265 *
2266 * Where sock uses unix domain sockets, and ip binds the server to
2267 * a specific interface. If no arguments are given to the server, it
2268 * uses IP and binds to 0.0.0.0.
2269 *
2270 */
2271static int fio_handle_server_arg(void)
2272{
2273 int port = fio_net_port;
2274 int is_sock, ret = 0;
2275
2276 saddr_in.sin_addr.s_addr = htonl(INADDR_ANY);
2277
2278 if (!fio_server_arg)
2279 goto out;
2280
2281 ret = fio_server_parse_string(fio_server_arg, &bind_sock, &is_sock,
2282 &port, &saddr_in.sin_addr,
2283 &saddr_in6.sin6_addr, &use_ipv6);
2284
2285 if (!is_sock && bind_sock) {
2286 free(bind_sock);
2287 bind_sock = NULL;
2288 }
2289
2290out:
2291 fio_net_port = port;
2292 saddr_in.sin_port = htons(port);
2293 saddr_in6.sin6_port = htons(port);
2294 return ret;
2295}
2296
2297static void sig_int(int sig)
2298{
2299 if (bind_sock)
2300 unlink(bind_sock);
2301}
2302
2303static void set_sig_handlers(void)
2304{
2305 struct sigaction act;
2306
2307 memset(&act, 0, sizeof(act));
2308 act.sa_handler = sig_int;
2309 act.sa_flags = SA_RESTART;
2310 sigaction(SIGINT, &act, NULL);
2311}
2312
2313void fio_server_destroy_sk_key(void)
2314{
2315 pthread_key_delete(sk_out_key);
2316}
2317
2318int fio_server_create_sk_key(void)
2319{
2320 if (pthread_key_create(&sk_out_key, NULL)) {
2321 log_err("fio: can't create sk_out backend key\n");
2322 return 1;
2323 }
2324
2325 pthread_setspecific(sk_out_key, NULL);
2326 return 0;
2327}
2328
2329static int fio_server(void)
2330{
2331 int sk, ret;
2332
2333 dprint(FD_NET, "starting server\n");
2334
2335 if (fio_handle_server_arg())
2336 return -1;
2337
2338 sk = fio_init_server_connection();
2339 if (sk < 0)
2340 return -1;
2341
2342 set_sig_handlers();
2343
2344 ret = accept_loop(sk);
2345
2346 close(sk);
2347
2348 if (fio_server_arg) {
2349 free(fio_server_arg);
2350 fio_server_arg = NULL;
2351 }
2352 if (bind_sock)
2353 free(bind_sock);
2354
2355 return ret;
2356}
2357
2358void fio_server_got_signal(int signal)
2359{
2360 struct sk_out *sk_out = pthread_getspecific(sk_out_key);
2361
2362 assert(sk_out);
2363
2364 if (signal == SIGPIPE)
2365 sk_out->sk = -1;
2366 else {
2367 log_info("\nfio: terminating on signal %d\n", signal);
2368 exit_backend = 1;
2369 }
2370}
2371
2372static int check_existing_pidfile(const char *pidfile)
2373{
2374 struct stat sb;
2375 char buf[16];
2376 pid_t pid;
2377 FILE *f;
2378
2379 if (stat(pidfile, &sb))
2380 return 0;
2381
2382 f = fopen(pidfile, "r");
2383 if (!f)
2384 return 0;
2385
2386 if (fread(buf, sb.st_size, 1, f) <= 0) {
2387 fclose(f);
2388 return 1;
2389 }
2390 fclose(f);
2391
2392 pid = atoi(buf);
2393 if (kill(pid, SIGCONT) < 0)
2394 return errno != ESRCH;
2395
2396 return 1;
2397}
2398
2399static int write_pid(pid_t pid, const char *pidfile)
2400{
2401 FILE *fpid;
2402
2403 fpid = fopen(pidfile, "w");
2404 if (!fpid) {
2405 log_err("fio: failed opening pid file %s\n", pidfile);
2406 return 1;
2407 }
2408
2409 fprintf(fpid, "%u\n", (unsigned int) pid);
2410 fclose(fpid);
2411 return 0;
2412}
2413
2414/*
2415 * If pidfile is specified, background us.
2416 */
2417int fio_start_server(char *pidfile)
2418{
2419 pid_t pid;
2420 int ret;
2421
2422#if defined(WIN32)
2423 WSADATA wsd;
2424 WSAStartup(MAKEWORD(2, 2), &wsd);
2425#endif
2426
2427 if (!pidfile)
2428 return fio_server();
2429
2430 if (check_existing_pidfile(pidfile)) {
2431 log_err("fio: pidfile %s exists and server appears alive\n",
2432 pidfile);
2433 free(pidfile);
2434 return -1;
2435 }
2436
2437 pid = fork();
2438 if (pid < 0) {
2439 log_err("fio: failed server fork: %s", strerror(errno));
2440 free(pidfile);
2441 return -1;
2442 } else if (pid) {
2443 ret = write_pid(pid, pidfile);
2444 free(pidfile);
2445 _exit(ret);
2446 }
2447
2448 setsid();
2449 openlog("fio", LOG_NDELAY|LOG_NOWAIT|LOG_PID, LOG_USER);
2450 log_syslog = 1;
2451 close(STDIN_FILENO);
2452 close(STDOUT_FILENO);
2453 close(STDERR_FILENO);
2454 f_out = NULL;
2455 f_err = NULL;
2456
2457 ret = fio_server();
2458
2459 closelog();
2460 unlink(pidfile);
2461 free(pidfile);
2462 return ret;
2463}
2464
2465void fio_server_set_arg(const char *arg)
2466{
2467 fio_server_arg = strdup(arg);
2468}