-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.c
1684 lines (1361 loc) · 34.9 KB
/
server.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <unistd.h>
#include <limits.h>
#include <errno.h>
#include <fcntl.h>
#include <sys/poll.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <sys/socket.h>
#include <sys/stat.h>
#include <sys/un.h>
#include <sys/uio.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <netdb.h>
#include <syslog.h>
#include <signal.h>
#ifdef CONFIG_ZLIB
#include <zlib.h>
#endif
#include "fio.h"
#include "server.h"
#include "crc/crc16.h"
#include "lib/ieee754.h"
int fio_net_port = FIO_NET_PORT;
int exit_backend = 0;
static int server_fd = -1;
static char *fio_server_arg;
static char *bind_sock;
static struct sockaddr_in saddr_in;
static struct sockaddr_in6 saddr_in6;
static int use_ipv6;
#ifdef CONFIG_ZLIB
static unsigned int has_zlib = 1;
#else
static unsigned int has_zlib = 0;
#endif
static unsigned int use_zlib;
struct fio_fork_item {
struct flist_head list;
int exitval;
int signal;
int exited;
pid_t pid;
};
/* Created on fork on new connection */
static FLIST_HEAD(conn_list);
/* Created on job fork from connection */
static FLIST_HEAD(job_list);
static const char *fio_server_ops[FIO_NET_CMD_NR] = {
"",
"QUIT",
"EXIT",
"JOB",
"JOBLINE",
"TEXT",
"TS",
"GS",
"SEND_ETA",
"ETA",
"PROBE",
"START",
"STOP",
"DISK_UTIL",
"SERVER_START",
"ADD_JOB",
"CMD_RUN"
"CMD_IOLOG",
};
const char *fio_server_op(unsigned int op)
{
static char buf[32];
if (op < FIO_NET_CMD_NR)
return fio_server_ops[op];
sprintf(buf, "UNKNOWN/%d", op);
return buf;
}
static ssize_t iov_total_len(const struct iovec *iov, int count)
{
ssize_t ret = 0;
while (count--) {
ret += iov->iov_len;
iov++;
}
return ret;
}
static int fio_sendv_data(int sk, struct iovec *iov, int count)
{
ssize_t total_len = iov_total_len(iov, count);
ssize_t ret;
do {
ret = writev(sk, iov, count);
if (ret > 0) {
total_len -= ret;
if (!total_len)
break;
while (ret) {
if (ret >= iov->iov_len) {
ret -= iov->iov_len;
iov++;
continue;
}
iov->iov_base += ret;
iov->iov_len -= ret;
ret = 0;
}
} else if (!ret)
break;
else if (errno == EAGAIN || errno == EINTR)
continue;
else
break;
} while (!exit_backend);
if (!total_len)
return 0;
if (errno)
return -errno;
return 1;
}
int fio_send_data(int sk, const void *p, unsigned int len)
{
struct iovec iov = { .iov_base = (void *) p, .iov_len = len };
assert(len <= sizeof(struct fio_net_cmd) + FIO_SERVER_MAX_FRAGMENT_PDU);
return fio_sendv_data(sk, &iov, 1);
}
int fio_recv_data(int sk, void *p, unsigned int len)
{
do {
int ret = recv(sk, p, len, MSG_WAITALL);
if (ret > 0) {
len -= ret;
if (!len)
break;
p += ret;
continue;
} else if (!ret)
break;
else if (errno == EAGAIN || errno == EINTR)
continue;
else
break;
} while (!exit_backend);
if (!len)
return 0;
return -1;
}
static int verify_convert_cmd(struct fio_net_cmd *cmd)
{
uint16_t crc;
cmd->cmd_crc16 = le16_to_cpu(cmd->cmd_crc16);
cmd->pdu_crc16 = le16_to_cpu(cmd->pdu_crc16);
crc = fio_crc16(cmd, FIO_NET_CMD_CRC_SZ);
if (crc != cmd->cmd_crc16) {
log_err("fio: server bad crc on command (got %x, wanted %x)\n",
cmd->cmd_crc16, crc);
return 1;
}
cmd->version = le16_to_cpu(cmd->version);
cmd->opcode = le16_to_cpu(cmd->opcode);
cmd->flags = le32_to_cpu(cmd->flags);
cmd->tag = le64_to_cpu(cmd->tag);
cmd->pdu_len = le32_to_cpu(cmd->pdu_len);
switch (cmd->version) {
case FIO_SERVER_VER:
break;
default:
log_err("fio: bad server cmd version %d\n", cmd->version);
return 1;
}
if (cmd->pdu_len > FIO_SERVER_MAX_FRAGMENT_PDU) {
log_err("fio: command payload too large: %u\n", cmd->pdu_len);
return 1;
}
return 0;
}
/*
* Read (and defragment, if necessary) incoming commands
*/
struct fio_net_cmd *fio_net_recv_cmd(int sk)
{
struct fio_net_cmd cmd, *cmdret = NULL;
size_t cmd_size = 0, pdu_offset = 0;
uint16_t crc;
int ret, first = 1;
void *pdu = NULL;
do {
ret = fio_recv_data(sk, &cmd, sizeof(cmd));
if (ret)
break;
/* We have a command, verify it and swap if need be */
ret = verify_convert_cmd(&cmd);
if (ret)
break;
if (first) {
/* if this is text, add room for \0 at the end */
cmd_size = sizeof(cmd) + cmd.pdu_len + 1;
assert(!cmdret);
} else
cmd_size += cmd.pdu_len;
cmdret = realloc(cmdret, cmd_size);
if (first)
memcpy(cmdret, &cmd, sizeof(cmd));
else if (cmdret->opcode != cmd.opcode) {
log_err("fio: fragment opcode mismatch (%d != %d)\n",
cmdret->opcode, cmd.opcode);
ret = 1;
break;
}
if (!cmd.pdu_len)
break;
/* There's payload, get it */
pdu = (void *) cmdret->payload + pdu_offset;
ret = fio_recv_data(sk, pdu, cmd.pdu_len);
if (ret)
break;
/* Verify payload crc */
crc = fio_crc16(pdu, cmd.pdu_len);
if (crc != cmd.pdu_crc16) {
log_err("fio: server bad crc on payload ");
log_err("(got %x, wanted %x)\n", cmd.pdu_crc16, crc);
ret = 1;
break;
}
pdu_offset += cmd.pdu_len;
if (!first)
cmdret->pdu_len += cmd.pdu_len;
first = 0;
} while (cmd.flags & FIO_NET_CMD_F_MORE);
if (ret) {
free(cmdret);
cmdret = NULL;
} else if (cmdret) {
/* zero-terminate text input */
if (cmdret->pdu_len) {
if (cmdret->opcode == FIO_NET_CMD_TEXT) {
struct cmd_text_pdu *pdu = (struct cmd_text_pdu *) cmdret->payload;
char *buf = (char *) pdu->buf;
buf[pdu->buf_len] = '\0';
} else if (cmdret->opcode == FIO_NET_CMD_JOB) {
struct cmd_job_pdu *pdu = (struct cmd_job_pdu *) cmdret->payload;
char *buf = (char *) pdu->buf;
int len = le32_to_cpu(pdu->buf_len);
buf[len] = '\0';
}
}
/* frag flag is internal */
cmdret->flags &= ~FIO_NET_CMD_F_MORE;
}
return cmdret;
}
static void add_reply(uint64_t tag, struct flist_head *list)
{
struct fio_net_cmd_reply *reply;
reply = (struct fio_net_cmd_reply *) (uintptr_t) tag;
flist_add_tail(&reply->list, list);
}
static uint64_t alloc_reply(uint64_t tag, uint16_t opcode)
{
struct fio_net_cmd_reply *reply;
reply = calloc(1, sizeof(*reply));
INIT_FLIST_HEAD(&reply->list);
gettimeofday(&reply->tv, NULL);
reply->saved_tag = tag;
reply->opcode = opcode;
return (uintptr_t) reply;
}
static void free_reply(uint64_t tag)
{
struct fio_net_cmd_reply *reply;
reply = (struct fio_net_cmd_reply *) (uintptr_t) tag;
free(reply);
}
void fio_net_cmd_crc_pdu(struct fio_net_cmd *cmd, const void *pdu)
{
uint32_t pdu_len;
cmd->cmd_crc16 = __cpu_to_le16(fio_crc16(cmd, FIO_NET_CMD_CRC_SZ));
pdu_len = le32_to_cpu(cmd->pdu_len);
cmd->pdu_crc16 = __cpu_to_le16(fio_crc16(pdu, pdu_len));
}
void fio_net_cmd_crc(struct fio_net_cmd *cmd)
{
fio_net_cmd_crc_pdu(cmd, cmd->payload);
}
int fio_net_send_cmd(int fd, uint16_t opcode, const void *buf, off_t size,
uint64_t *tagptr, struct flist_head *list)
{
struct fio_net_cmd *cmd = NULL;
size_t this_len, cur_len = 0;
uint64_t tag;
int ret;
if (list) {
assert(tagptr);
tag = *tagptr = alloc_reply(*tagptr, opcode);
} else
tag = tagptr ? *tagptr : 0;
do {
this_len = size;
if (this_len > FIO_SERVER_MAX_FRAGMENT_PDU)
this_len = FIO_SERVER_MAX_FRAGMENT_PDU;
if (!cmd || cur_len < sizeof(*cmd) + this_len) {
if (cmd)
free(cmd);
cur_len = sizeof(*cmd) + this_len;
cmd = malloc(cur_len);
}
fio_init_net_cmd(cmd, opcode, buf, this_len, tag);
if (this_len < size)
cmd->flags = __cpu_to_le32(FIO_NET_CMD_F_MORE);
fio_net_cmd_crc(cmd);
ret = fio_send_data(fd, cmd, sizeof(*cmd) + this_len);
size -= this_len;
buf += this_len;
} while (!ret && size);
if (list) {
if (ret)
free_reply(tag);
else
add_reply(tag, list);
}
if (cmd)
free(cmd);
return ret;
}
static int fio_net_send_simple_stack_cmd(int sk, uint16_t opcode, uint64_t tag)
{
struct fio_net_cmd cmd;
fio_init_net_cmd(&cmd, opcode, NULL, 0, tag);
fio_net_cmd_crc(&cmd);
return fio_send_data(sk, &cmd, sizeof(cmd));
}
/*
* If 'list' is non-NULL, then allocate and store the sent command for
* later verification.
*/
int fio_net_send_simple_cmd(int sk, uint16_t opcode, uint64_t tag,
struct flist_head *list)
{
int ret;
if (list)
tag = alloc_reply(tag, opcode);
ret = fio_net_send_simple_stack_cmd(sk, opcode, tag);
if (ret) {
if (list)
free_reply(tag);
return ret;
}
if (list)
add_reply(tag, list);
return 0;
}
int fio_net_send_quit(int sk)
{
dprint(FD_NET, "server: sending quit\n");
return fio_net_send_simple_cmd(sk, FIO_NET_CMD_QUIT, 0, NULL);
}
static int fio_net_send_ack(int sk, struct fio_net_cmd *cmd, int error,
int signal)
{
struct cmd_end_pdu epdu;
uint64_t tag = 0;
if (cmd)
tag = cmd->tag;
epdu.error = __cpu_to_le32(error);
epdu.signal = __cpu_to_le32(signal);
return fio_net_send_cmd(sk, FIO_NET_CMD_STOP, &epdu, sizeof(epdu), &tag, NULL);
}
int fio_net_send_stop(int sk, int error, int signal)
{
dprint(FD_NET, "server: sending stop (%d, %d)\n", error, signal);
return fio_net_send_ack(sk, NULL, error, signal);
}
static void fio_server_add_fork_item(pid_t pid, struct flist_head *list)
{
struct fio_fork_item *ffi;
ffi = malloc(sizeof(*ffi));
ffi->exitval = 0;
ffi->signal = 0;
ffi->exited = 0;
ffi->pid = pid;
flist_add_tail(&ffi->list, list);
}
static void fio_server_add_conn_pid(pid_t pid)
{
dprint(FD_NET, "server: forked off connection job (pid=%u)\n", pid);
fio_server_add_fork_item(pid, &conn_list);
}
static void fio_server_add_job_pid(pid_t pid)
{
dprint(FD_NET, "server: forked off job job (pid=%u)\n", pid);
fio_server_add_fork_item(pid, &job_list);
}
static void fio_server_check_fork_item(struct fio_fork_item *ffi)
{
int ret, status;
ret = waitpid(ffi->pid, &status, WNOHANG);
if (ret < 0) {
if (errno == ECHILD) {
log_err("fio: connection pid %u disappeared\n", ffi->pid);
ffi->exited = 1;
} else
log_err("fio: waitpid: %s\n", strerror(errno));
} else if (ret == ffi->pid) {
if (WIFSIGNALED(status)) {
ffi->signal = WTERMSIG(status);
ffi->exited = 1;
}
if (WIFEXITED(status)) {
if (WEXITSTATUS(status))
ffi->exitval = WEXITSTATUS(status);
ffi->exited = 1;
}
}
}
static void fio_server_fork_item_done(struct fio_fork_item *ffi)
{
dprint(FD_NET, "pid %u exited, sig=%u, exitval=%d\n", ffi->pid, ffi->signal, ffi->exitval);
/*
* Fold STOP and QUIT...
*/
fio_net_send_stop(server_fd, ffi->exitval, ffi->signal);
fio_net_send_quit(server_fd);
flist_del(&ffi->list);
free(ffi);
}
static void fio_server_check_fork_items(struct flist_head *list)
{
struct flist_head *entry, *tmp;
struct fio_fork_item *ffi;
flist_for_each_safe(entry, tmp, list) {
ffi = flist_entry(entry, struct fio_fork_item, list);
fio_server_check_fork_item(ffi);
if (ffi->exited)
fio_server_fork_item_done(ffi);
}
}
static void fio_server_check_jobs(void)
{
fio_server_check_fork_items(&job_list);
}
static void fio_server_check_conns(void)
{
fio_server_check_fork_items(&conn_list);
}
static int handle_run_cmd(struct fio_net_cmd *cmd)
{
pid_t pid;
int ret;
set_genesis_time();
pid = fork();
if (pid) {
fio_server_add_job_pid(pid);
return 0;
}
ret = fio_backend();
free_threads_shm();
_exit(ret);
}
static int handle_job_cmd(struct fio_net_cmd *cmd)
{
struct cmd_job_pdu *pdu = (struct cmd_job_pdu *) cmd->payload;
void *buf = pdu->buf;
struct cmd_start_pdu spdu;
pdu->buf_len = le32_to_cpu(pdu->buf_len);
pdu->client_type = le32_to_cpu(pdu->client_type);
if (parse_jobs_ini(buf, 1, 0, pdu->client_type)) {
fio_net_send_quit(server_fd);
return -1;
}
spdu.jobs = cpu_to_le32(thread_number);
spdu.stat_outputs = cpu_to_le32(stat_number);
fio_net_send_cmd(server_fd, FIO_NET_CMD_START, &spdu, sizeof(spdu), NULL, NULL);
return 0;
}
static int handle_jobline_cmd(struct fio_net_cmd *cmd)
{
void *pdu = cmd->payload;
struct cmd_single_line_pdu *cslp;
struct cmd_line_pdu *clp;
unsigned long offset;
struct cmd_start_pdu spdu;
char **argv;
int i;
clp = pdu;
clp->lines = le16_to_cpu(clp->lines);
clp->client_type = le16_to_cpu(clp->client_type);
argv = malloc(clp->lines * sizeof(char *));
offset = sizeof(*clp);
dprint(FD_NET, "server: %d command line args\n", clp->lines);
for (i = 0; i < clp->lines; i++) {
cslp = pdu + offset;
argv[i] = (char *) cslp->text;
offset += sizeof(*cslp) + le16_to_cpu(cslp->len);
dprint(FD_NET, "server: %d: %s\n", i, argv[i]);
}
if (parse_cmd_line(clp->lines, argv, clp->client_type)) {
fio_net_send_quit(server_fd);
free(argv);
return -1;
}
free(argv);
spdu.jobs = cpu_to_le32(thread_number);
spdu.stat_outputs = cpu_to_le32(stat_number);
fio_net_send_cmd(server_fd, FIO_NET_CMD_START, &spdu, sizeof(spdu), NULL, NULL);
return 0;
}
static int handle_probe_cmd(struct fio_net_cmd *cmd)
{
struct cmd_client_probe_pdu *pdu = (struct cmd_client_probe_pdu *) cmd->payload;
struct cmd_probe_reply_pdu probe;
uint64_t tag = cmd->tag;
dprint(FD_NET, "server: sending probe reply\n");
memset(&probe, 0, sizeof(probe));
gethostname((char *) probe.hostname, sizeof(probe.hostname));
#ifdef CONFIG_BIG_ENDIAN
probe.bigendian = 1;
#endif
strncpy((char *) probe.fio_version, fio_version_string, sizeof(probe.fio_version));
probe.os = FIO_OS;
probe.arch = FIO_ARCH;
probe.bpp = sizeof(void *);
probe.cpus = __cpu_to_le32(cpus_online());
/*
* If the client supports compression and we do too, then enable it
*/
if (has_zlib && le64_to_cpu(pdu->flags) & FIO_PROBE_FLAG_ZLIB) {
probe.flags = __cpu_to_le64(FIO_PROBE_FLAG_ZLIB);
use_zlib = 1;
} else {
probe.flags = 0;
use_zlib = 0;
}
return fio_net_send_cmd(server_fd, FIO_NET_CMD_PROBE, &probe, sizeof(probe), &tag, NULL);
}
static int handle_send_eta_cmd(struct fio_net_cmd *cmd)
{
struct jobs_eta *je;
size_t size;
uint64_t tag = cmd->tag;
int i;
if (!thread_number)
return 0;
size = sizeof(*je) + thread_number * sizeof(char) + 1;
je = malloc(size);
memset(je, 0, size);
if (!calc_thread_status(je, 1)) {
free(je);
return 0;
}
dprint(FD_NET, "server sending status\n");
je->nr_running = cpu_to_le32(je->nr_running);
je->nr_ramp = cpu_to_le32(je->nr_ramp);
je->nr_pending = cpu_to_le32(je->nr_pending);
je->nr_setting_up = cpu_to_le32(je->nr_setting_up);
je->files_open = cpu_to_le32(je->files_open);
for (i = 0; i < DDIR_RWDIR_CNT; i++) {
je->m_rate[i] = cpu_to_le32(je->m_rate[i]);
je->t_rate[i] = cpu_to_le32(je->t_rate[i]);
je->m_iops[i] = cpu_to_le32(je->m_iops[i]);
je->t_iops[i] = cpu_to_le32(je->t_iops[i]);
je->rate[i] = cpu_to_le32(je->rate[i]);
je->iops[i] = cpu_to_le32(je->iops[i]);
}
je->elapsed_sec = cpu_to_le64(je->elapsed_sec);
je->eta_sec = cpu_to_le64(je->eta_sec);
je->nr_threads = cpu_to_le32(je->nr_threads);
je->is_pow2 = cpu_to_le32(je->is_pow2);
je->unit_base = cpu_to_le32(je->unit_base);
fio_net_send_cmd(server_fd, FIO_NET_CMD_ETA, je, size, &tag, NULL);
free(je);
return 0;
}
static int send_update_job_reply(int fd, uint64_t __tag, int error)
{
uint64_t tag = __tag;
uint32_t pdu_error;
pdu_error = __cpu_to_le32(error);
return fio_net_send_cmd(fd, FIO_NET_CMD_UPDATE_JOB, &pdu_error, sizeof(pdu_error), &tag, NULL);
}
static int handle_update_job_cmd(struct fio_net_cmd *cmd)
{
struct cmd_add_job_pdu *pdu = (struct cmd_add_job_pdu *) cmd->payload;
struct thread_data *td;
uint32_t tnumber;
tnumber = le32_to_cpu(pdu->thread_number);
dprint(FD_NET, "server: updating options for job %u\n", tnumber);
if (!tnumber || tnumber > thread_number) {
send_update_job_reply(server_fd, cmd->tag, ENODEV);
return 0;
}
td = &threads[tnumber - 1];
convert_thread_options_to_cpu(&td->o, &pdu->top);
send_update_job_reply(server_fd, cmd->tag, 0);
return 0;
}
static int handle_command(struct fio_net_cmd *cmd)
{
int ret;
dprint(FD_NET, "server: got op [%s], pdu=%u, tag=%llx\n",
fio_server_op(cmd->opcode), cmd->pdu_len,
(unsigned long long) cmd->tag);
switch (cmd->opcode) {
case FIO_NET_CMD_QUIT:
fio_terminate_threads(TERMINATE_ALL);
return -1;
case FIO_NET_CMD_EXIT:
exit_backend = 1;
return -1;
case FIO_NET_CMD_JOB:
ret = handle_job_cmd(cmd);
break;
case FIO_NET_CMD_JOBLINE:
ret = handle_jobline_cmd(cmd);
break;
case FIO_NET_CMD_PROBE:
ret = handle_probe_cmd(cmd);
break;
case FIO_NET_CMD_SEND_ETA:
ret = handle_send_eta_cmd(cmd);
break;
case FIO_NET_CMD_RUN:
ret = handle_run_cmd(cmd);
break;
case FIO_NET_CMD_UPDATE_JOB:
ret = handle_update_job_cmd(cmd);
break;
default:
log_err("fio: unknown opcode: %s\n", fio_server_op(cmd->opcode));
ret = 1;
}
return ret;
}
static int handle_connection(int sk)
{
struct fio_net_cmd *cmd = NULL;
int ret = 0;
reset_fio_state();
INIT_FLIST_HEAD(&job_list);
server_fd = sk;
/* read forever */
while (!exit_backend) {
struct pollfd pfd = {
.fd = sk,
.events = POLLIN,
};
ret = 0;
do {
int timeout = 1000;
if (!flist_empty(&job_list))
timeout = 100;
ret = poll(&pfd, 1, timeout);
if (ret < 0) {
if (errno == EINTR)
break;
log_err("fio: poll: %s\n", strerror(errno));
break;
} else if (!ret) {
fio_server_check_jobs();
continue;
}
if (pfd.revents & POLLIN)
break;
if (pfd.revents & (POLLERR|POLLHUP)) {
ret = 1;
break;
}
} while (!exit_backend);
fio_server_check_jobs();
if (ret < 0)
break;
cmd = fio_net_recv_cmd(sk);
if (!cmd) {
ret = -1;
break;
}
ret = handle_command(cmd);
if (ret)
break;
free(cmd);
cmd = NULL;
}
if (cmd)
free(cmd);
close(sk);
_exit(ret);
}
static int accept_loop(int listen_sk)
{
struct sockaddr_in addr;
socklen_t len = sizeof(addr);
struct pollfd pfd;
int ret = 0, sk, flags, exitval = 0;
dprint(FD_NET, "server enter accept loop\n");
flags = fcntl(listen_sk, F_GETFL);
flags |= O_NONBLOCK;
fcntl(listen_sk, F_SETFL, flags);
while (!exit_backend) {
pid_t pid;
pfd.fd = listen_sk;
pfd.events = POLLIN;
do {
int timeout = 1000;
if (!flist_empty(&conn_list))
timeout = 100;
ret = poll(&pfd, 1, timeout);
if (ret < 0) {
if (errno == EINTR)
break;
log_err("fio: poll: %s\n", strerror(errno));
break;
} else if (!ret) {
fio_server_check_conns();
continue;
}
if (pfd.revents & POLLIN)
break;
} while (!exit_backend);
fio_server_check_conns();
if (exit_backend || ret < 0)
break;
sk = accept(listen_sk, (struct sockaddr *) &addr, &len);
if (sk < 0) {
log_err("fio: accept: %s\n", strerror(errno));
return -1;
}
dprint(FD_NET, "server: connect from %s\n", inet_ntoa(addr.sin_addr));
pid = fork();
if (pid) {
close(sk);
fio_server_add_conn_pid(pid);
continue;
}
/* exits */
handle_connection(sk);
}
return exitval;
}
int fio_server_text_output(int level, const char *buf, size_t len)
{
struct cmd_text_pdu *pdu;
unsigned int tlen;
struct timeval tv;
if (server_fd == -1)
return log_local_buf(buf, len);
tlen = sizeof(*pdu) + len;
pdu = malloc(tlen);
pdu->level = __cpu_to_le32(level);
pdu->buf_len = __cpu_to_le32(len);
gettimeofday(&tv, NULL);
pdu->log_sec = __cpu_to_le64(tv.tv_sec);
pdu->log_usec = __cpu_to_le64(tv.tv_usec);
memcpy(pdu->buf, buf, len);
fio_net_send_cmd(server_fd, FIO_NET_CMD_TEXT, pdu, tlen, NULL, NULL);
free(pdu);
return len;
}
static void convert_io_stat(struct io_stat *dst, struct io_stat *src)
{
dst->max_val = cpu_to_le64(src->max_val);
dst->min_val = cpu_to_le64(src->min_val);
dst->samples = cpu_to_le64(src->samples);
/*
* Encode to IEEE 754 for network transfer
*/
dst->mean.u.i = __cpu_to_le64(fio_double_to_uint64(src->mean.u.f));
dst->S.u.i = __cpu_to_le64(fio_double_to_uint64(src->S.u.f));
}
static void convert_gs(struct group_run_stats *dst, struct group_run_stats *src)
{
int i;
for (i = 0; i < DDIR_RWDIR_CNT; i++) {
dst->max_run[i] = cpu_to_le64(src->max_run[i]);
dst->min_run[i] = cpu_to_le64(src->min_run[i]);
dst->max_bw[i] = cpu_to_le64(src->max_bw[i]);
dst->min_bw[i] = cpu_to_le64(src->min_bw[i]);
dst->io_kb[i] = cpu_to_le64(src->io_kb[i]);
dst->agg[i] = cpu_to_le64(src->agg[i]);
}
dst->kb_base = cpu_to_le32(src->kb_base);
dst->unit_base = cpu_to_le32(src->unit_base);
dst->groupid = cpu_to_le32(src->groupid);
dst->unified_rw_rep = cpu_to_le32(src->unified_rw_rep);
}
/*
* Send a CMD_TS, which packs struct thread_stat and group_run_stats
* into a single payload.
*/
void fio_server_send_ts(struct thread_stat *ts, struct group_run_stats *rs)
{
struct cmd_ts_pdu p;
int i, j;
dprint(FD_NET, "server sending end stats\n");
memset(&p, 0, sizeof(p));
strcpy(p.ts.name, ts->name);
strcpy(p.ts.verror, ts->verror);
strcpy(p.ts.description, ts->description);
p.ts.error = cpu_to_le32(ts->error);
p.ts.thread_number = cpu_to_le32(ts->thread_number);
p.ts.groupid = cpu_to_le32(ts->groupid);
p.ts.pid = cpu_to_le32(ts->pid);
p.ts.members = cpu_to_le32(ts->members);
p.ts.unified_rw_rep = cpu_to_le32(ts->unified_rw_rep);
for (i = 0; i < DDIR_RWDIR_CNT; i++) {
convert_io_stat(&p.ts.clat_stat[i], &ts->clat_stat[i]);
convert_io_stat(&p.ts.slat_stat[i], &ts->slat_stat[i]);
convert_io_stat(&p.ts.lat_stat[i], &ts->lat_stat[i]);
convert_io_stat(&p.ts.bw_stat[i], &ts->bw_stat[i]);
}