blob: 64475913a8c36c395f7b6b7a99f576a8362ca9d0 [file] [log] [blame]
Jens Axboe50d16972011-09-29 17:45:28 -06001#include <stdio.h>
2#include <stdlib.h>
Jens Axboe142575e2011-09-30 17:35:45 -06003#include <stdarg.h>
Jens Axboe50d16972011-09-29 17:45:28 -06004#include <unistd.h>
5#include <limits.h>
Jens Axboe50d16972011-09-29 17:45:28 -06006#include <errno.h>
7#include <fcntl.h>
8#include <sys/poll.h>
Jens Axboe50d16972011-09-29 17:45:28 -06009#include <sys/types.h>
10#include <sys/wait.h>
Jens Axboed05c4a02011-10-05 00:16:11 +020011#include <sys/socket.h>
Jens Axboe87aa8f12011-10-06 21:24:13 +020012#include <sys/stat.h>
13#include <sys/un.h>
Jens Axboe50d16972011-09-29 17:45:28 -060014#include <netinet/in.h>
15#include <arpa/inet.h>
16#include <netdb.h>
Jens Axboee46d8092011-10-03 09:11:02 +020017#include <syslog.h>
Jens Axboe9e22ecb2011-10-04 14:50:21 +020018#include <signal.h>
Jens Axboe1b427252012-03-14 15:03:03 +010019#include <zlib.h>
Jens Axboe50d16972011-09-29 17:45:28 -060020
21#include "fio.h"
Jens Axboe132159a2011-09-30 15:01:32 -060022#include "server.h"
Jens Axboefcee5ff2011-09-30 22:50:39 -060023#include "crc/crc16.h"
Jens Axboec7c6cb42011-10-13 14:12:40 +020024#include "lib/ieee754.h"
Jens Axboe50d16972011-09-29 17:45:28 -060025
Stephen M. Cameron5adc2442012-02-24 08:17:31 +010026int fio_net_port = FIO_NET_PORT;
Jens Axboe50d16972011-09-29 17:45:28 -060027
Jens Axboe009b1be2011-09-29 18:27:02 -060028int exit_backend = 0;
29
Jens Axboe46c48f12011-10-01 12:50:51 -060030static int server_fd = -1;
Jens Axboe87aa8f12011-10-06 21:24:13 +020031static char *fio_server_arg;
32static char *bind_sock;
33static struct sockaddr_in saddr_in;
Jens Axboe811826b2011-10-24 09:11:50 +020034static struct sockaddr_in6 saddr_in6;
Jens Axboe811826b2011-10-24 09:11:50 +020035static int use_ipv6;
Jens Axboe37db14f2011-09-30 17:00:42 -060036
Jens Axboe122c7722012-03-19 09:13:15 +010037struct fio_fork_item {
38 struct flist_head list;
39 int exitval;
40 int signal;
41 int exited;
42 pid_t pid;
43};
44
45/* Created on fork on new connection */
46static FLIST_HEAD(conn_list);
47
48/* Created on job fork from connection */
49static FLIST_HEAD(job_list);
50
Jens Axboe89c17072011-10-11 10:15:51 +020051static const char *fio_server_ops[FIO_NET_CMD_NR] = {
52 "",
53 "QUIT",
54 "EXIT",
55 "JOB",
56 "JOBLINE",
57 "TEXT",
58 "TS",
59 "GS",
60 "SEND_ETA",
61 "ETA",
62 "PROBE",
63 "START",
Jens Axboed09a64a2011-10-13 11:38:56 +020064 "STOP",
65 "DISK_UTIL",
Jens Axboeb9d2f302012-03-08 20:36:28 +010066 "SERVER_START",
Jens Axboe807f9972012-03-02 10:25:24 +010067 "ADD_JOB",
Jens Axboeb9d2f302012-03-08 20:36:28 +010068 "CMD_RUN"
Jens Axboec70e63e2012-03-15 08:26:18 +010069 "CMD_IOLOG",
Jens Axboe89c17072011-10-11 10:15:51 +020070};
71
72const char *fio_server_op(unsigned int op)
73{
74 static char buf[32];
75
76 if (op < FIO_NET_CMD_NR)
77 return fio_server_ops[op];
78
79 sprintf(buf, "UNKNOWN/%d", op);
80 return buf;
81}
82
Jens Axboe5235f622012-03-14 21:25:51 +010083static ssize_t iov_total_len(const struct iovec *iov, int count)
Jens Axboe132159a2011-09-30 15:01:32 -060084{
Jens Axboe5235f622012-03-14 21:25:51 +010085 ssize_t ret = 0;
86
87 while (count--) {
88 ret += iov->iov_len;
89 iov++;
90 }
91
92 return ret;
93}
94
95static int fio_sendv_data(int sk, struct iovec *iov, int count)
96{
97 ssize_t total_len = iov_total_len(iov, count);
98 ssize_t ret;
Jens Axboe794d69c2011-10-01 08:48:50 -060099
Jens Axboe132159a2011-09-30 15:01:32 -0600100 do {
Jens Axboe5235f622012-03-14 21:25:51 +0100101 ret = writev(sk, iov, count);
Jens Axboe132159a2011-09-30 15:01:32 -0600102 if (ret > 0) {
Jens Axboe5235f622012-03-14 21:25:51 +0100103 total_len -= ret;
104 if (!total_len)
Jens Axboe132159a2011-09-30 15:01:32 -0600105 break;
Jens Axboe5235f622012-03-14 21:25:51 +0100106
107 while (ret) {
108 if (ret >= iov->iov_len) {
109 ret -= iov->iov_len;
110 iov++;
111 continue;
112 }
113 iov->iov_base += ret;
114 iov->iov_len -= ret;
115 ret = 0;
116 }
Jens Axboe132159a2011-09-30 15:01:32 -0600117 } else if (!ret)
118 break;
119 else if (errno == EAGAIN || errno == EINTR)
120 continue;
Jens Axboe7b821682011-10-11 12:16:32 +0200121 else
122 break;
Jens Axboe132159a2011-09-30 15:01:32 -0600123 } while (!exit_backend);
124
Jens Axboe5235f622012-03-14 21:25:51 +0100125 if (!total_len)
Jens Axboe132159a2011-09-30 15:01:32 -0600126 return 0;
127
Jens Axboe8b4e61b2012-03-09 17:10:54 +0100128 if (errno)
129 return -errno;
130
Jens Axboe132159a2011-09-30 15:01:32 -0600131 return 1;
132}
133
Jens Axboe5235f622012-03-14 21:25:51 +0100134int fio_send_data(int sk, const void *p, unsigned int len)
135{
136 struct iovec iov = { .iov_base = (void *) p, .iov_len = len };
137
138 assert(len <= sizeof(struct fio_net_cmd) + FIO_SERVER_MAX_FRAGMENT_PDU);
139
140 return fio_sendv_data(sk, &iov, 1);
141}
142
Jens Axboe132159a2011-09-30 15:01:32 -0600143int fio_recv_data(int sk, void *p, unsigned int len)
144{
145 do {
146 int ret = recv(sk, p, len, MSG_WAITALL);
147
148 if (ret > 0) {
149 len -= ret;
150 if (!len)
151 break;
152 p += ret;
153 continue;
154 } else if (!ret)
155 break;
156 else if (errno == EAGAIN || errno == EINTR)
157 continue;
Jens Axboe7b821682011-10-11 12:16:32 +0200158 else
159 break;
Jens Axboe132159a2011-09-30 15:01:32 -0600160 } while (!exit_backend);
161
162 if (!len)
163 return 0;
164
165 return -1;
166}
167
168static int verify_convert_cmd(struct fio_net_cmd *cmd)
169{
Jens Axboefcee5ff2011-09-30 22:50:39 -0600170 uint16_t crc;
Jens Axboe132159a2011-09-30 15:01:32 -0600171
Jens Axboefcee5ff2011-09-30 22:50:39 -0600172 cmd->cmd_crc16 = le16_to_cpu(cmd->cmd_crc16);
173 cmd->pdu_crc16 = le16_to_cpu(cmd->pdu_crc16);
Jens Axboe132159a2011-09-30 15:01:32 -0600174
Jens Axboe25dfa842012-02-29 10:01:34 +0100175 crc = fio_crc16(cmd, FIO_NET_CMD_CRC_SZ);
Jens Axboefcee5ff2011-09-30 22:50:39 -0600176 if (crc != cmd->cmd_crc16) {
Jens Axboe132159a2011-09-30 15:01:32 -0600177 log_err("fio: server bad crc on command (got %x, wanted %x)\n",
Jens Axboefcee5ff2011-09-30 22:50:39 -0600178 cmd->cmd_crc16, crc);
Jens Axboe132159a2011-09-30 15:01:32 -0600179 return 1;
180 }
181
182 cmd->version = le16_to_cpu(cmd->version);
183 cmd->opcode = le16_to_cpu(cmd->opcode);
184 cmd->flags = le32_to_cpu(cmd->flags);
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200185 cmd->tag = le64_to_cpu(cmd->tag);
Jens Axboe132159a2011-09-30 15:01:32 -0600186 cmd->pdu_len = le32_to_cpu(cmd->pdu_len);
187
188 switch (cmd->version) {
Jens Axboefa2ea802011-10-08 21:07:29 +0200189 case FIO_SERVER_VER:
Jens Axboe132159a2011-09-30 15:01:32 -0600190 break;
191 default:
192 log_err("fio: bad server cmd version %d\n", cmd->version);
193 return 1;
194 }
195
Jens Axboeb9d2f302012-03-08 20:36:28 +0100196 if (cmd->pdu_len > FIO_SERVER_MAX_FRAGMENT_PDU) {
Jens Axboe132159a2011-09-30 15:01:32 -0600197 log_err("fio: command payload too large: %u\n", cmd->pdu_len);
198 return 1;
199 }
200
201 return 0;
202}
203
Jens Axboea64e88d2011-10-03 14:20:01 +0200204/*
205 * Read (and defragment, if necessary) incoming commands
206 */
Jens Axboee951bdc2011-10-05 21:58:45 +0200207struct fio_net_cmd *fio_net_recv_cmd(int sk)
Jens Axboe132159a2011-09-30 15:01:32 -0600208{
Jens Axboea64e88d2011-10-03 14:20:01 +0200209 struct fio_net_cmd cmd, *cmdret = NULL;
210 size_t cmd_size = 0, pdu_offset = 0;
Jens Axboefcee5ff2011-09-30 22:50:39 -0600211 uint16_t crc;
Jens Axboea64e88d2011-10-03 14:20:01 +0200212 int ret, first = 1;
213 void *pdu = NULL;
Jens Axboe132159a2011-09-30 15:01:32 -0600214
Jens Axboea64e88d2011-10-03 14:20:01 +0200215 do {
216 ret = fio_recv_data(sk, &cmd, sizeof(cmd));
217 if (ret)
218 break;
Jens Axboe132159a2011-09-30 15:01:32 -0600219
Jens Axboea64e88d2011-10-03 14:20:01 +0200220 /* We have a command, verify it and swap if need be */
221 ret = verify_convert_cmd(&cmd);
222 if (ret)
223 break;
Jens Axboe132159a2011-09-30 15:01:32 -0600224
Jens Axboe0b8f30a2011-10-04 10:31:53 +0200225 if (first) {
226 /* if this is text, add room for \0 at the end */
227 cmd_size = sizeof(cmd) + cmd.pdu_len + 1;
228 assert(!cmdret);
229 } else
Jens Axboea64e88d2011-10-03 14:20:01 +0200230 cmd_size += cmd.pdu_len;
Jens Axboe132159a2011-09-30 15:01:32 -0600231
Jens Axboea64e88d2011-10-03 14:20:01 +0200232 cmdret = realloc(cmdret, cmd_size);
Jens Axboe132159a2011-09-30 15:01:32 -0600233
Jens Axboea64e88d2011-10-03 14:20:01 +0200234 if (first)
235 memcpy(cmdret, &cmd, sizeof(cmd));
Jens Axboe67f15dc2011-10-15 16:07:40 +0200236 else if (cmdret->opcode != cmd.opcode) {
237 log_err("fio: fragment opcode mismatch (%d != %d)\n",
238 cmdret->opcode, cmd.opcode);
239 ret = 1;
240 break;
241 }
Jens Axboea64e88d2011-10-03 14:20:01 +0200242
243 if (!cmd.pdu_len)
244 break;
245
246 /* There's payload, get it */
247 pdu = (void *) cmdret->payload + pdu_offset;
248 ret = fio_recv_data(sk, pdu, cmd.pdu_len);
249 if (ret)
250 break;
251
252 /* Verify payload crc */
Jens Axboe25dfa842012-02-29 10:01:34 +0100253 crc = fio_crc16(pdu, cmd.pdu_len);
Jens Axboea64e88d2011-10-03 14:20:01 +0200254 if (crc != cmd.pdu_crc16) {
255 log_err("fio: server bad crc on payload ");
256 log_err("(got %x, wanted %x)\n", cmd.pdu_crc16, crc);
257 ret = 1;
258 break;
259 }
260
261 pdu_offset += cmd.pdu_len;
Jens Axboe817f06b2011-10-03 15:03:08 +0200262 if (!first)
263 cmdret->pdu_len += cmd.pdu_len;
Jens Axboea64e88d2011-10-03 14:20:01 +0200264 first = 0;
265 } while (cmd.flags & FIO_NET_CMD_F_MORE);
266
267 if (ret) {
268 free(cmdret);
269 cmdret = NULL;
Jens Axboe0b8f30a2011-10-04 10:31:53 +0200270 } else if (cmdret) {
271 /* zero-terminate text input */
Jens Axboe084d1c62012-03-03 20:28:07 +0100272 if (cmdret->pdu_len) {
273 if (cmdret->opcode == FIO_NET_CMD_TEXT) {
274 struct cmd_text_pdu *pdu = (struct cmd_text_pdu *) cmdret->payload;
275 char *buf = (char *) pdu->buf;
Jens Axboe0b8f30a2011-10-04 10:31:53 +0200276
Jens Axboe3c3ed072012-03-27 09:12:39 +0200277 buf[pdu->buf_len] = '\0';
Jens Axboe084d1c62012-03-03 20:28:07 +0100278 } else if (cmdret->opcode == FIO_NET_CMD_JOB) {
Jens Axboe46bcd492012-03-14 11:31:21 +0100279 struct cmd_job_pdu *pdu = (struct cmd_job_pdu *) cmdret->payload;
280 char *buf = (char *) pdu->buf;
281 int len = le32_to_cpu(pdu->buf_len);
Jens Axboe084d1c62012-03-03 20:28:07 +0100282
Jens Axboe46bcd492012-03-14 11:31:21 +0100283 buf[len] = '\0';
Jens Axboe084d1c62012-03-03 20:28:07 +0100284 }
Jens Axboe0b8f30a2011-10-04 10:31:53 +0200285 }
Jens Axboe084d1c62012-03-03 20:28:07 +0100286
Jens Axboe0b8f30a2011-10-04 10:31:53 +0200287 /* frag flag is internal */
Jens Axboea64e88d2011-10-03 14:20:01 +0200288 cmdret->flags &= ~FIO_NET_CMD_F_MORE;
Jens Axboe0b8f30a2011-10-04 10:31:53 +0200289 }
Jens Axboe132159a2011-09-30 15:01:32 -0600290
Jens Axboea64e88d2011-10-03 14:20:01 +0200291 return cmdret;
Jens Axboe132159a2011-09-30 15:01:32 -0600292}
293
Jens Axboe40c60512012-03-27 16:03:04 +0200294static void add_reply(uint64_t tag, struct flist_head *list)
295{
296 struct fio_net_cmd_reply *reply = (struct fio_net_cmd_reply *) tag;
297
298 flist_add_tail(&reply->list, list);
299}
300
301static uint64_t alloc_reply(uint64_t tag, uint16_t opcode)
302{
303 struct fio_net_cmd_reply *reply;
304
305 reply = calloc(1, sizeof(*reply));
306 INIT_FLIST_HEAD(&reply->list);
307 gettimeofday(&reply->tv, NULL);
308 reply->saved_tag = tag;
309 reply->opcode = opcode;
310
311 return (uintptr_t) reply;
312}
313
314static void free_reply(uint64_t tag)
315{
316 struct fio_net_cmd_reply *reply = (struct fio_net_cmd_reply *) tag;
317
318 free(reply);
319}
320
Jens Axboe53bd8db2012-03-14 21:51:38 +0100321void fio_net_cmd_crc_pdu(struct fio_net_cmd *cmd, const void *pdu)
Jens Axboe132159a2011-09-30 15:01:32 -0600322{
323 uint32_t pdu_len;
324
Jens Axboe25dfa842012-02-29 10:01:34 +0100325 cmd->cmd_crc16 = __cpu_to_le16(fio_crc16(cmd, FIO_NET_CMD_CRC_SZ));
Jens Axboe132159a2011-09-30 15:01:32 -0600326
327 pdu_len = le32_to_cpu(cmd->pdu_len);
Jens Axboe1b427252012-03-14 15:03:03 +0100328 cmd->pdu_crc16 = __cpu_to_le16(fio_crc16(pdu, pdu_len));
329}
330
331void fio_net_cmd_crc(struct fio_net_cmd *cmd)
332{
333 fio_net_cmd_crc_pdu(cmd, cmd->payload);
Jens Axboe132159a2011-09-30 15:01:32 -0600334}
335
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200336int fio_net_send_cmd(int fd, uint16_t opcode, const void *buf, off_t size,
Jens Axboe40c60512012-03-27 16:03:04 +0200337 uint64_t *tagptr, struct flist_head *list)
Jens Axboe794d69c2011-10-01 08:48:50 -0600338{
Jens Axboe7f868312011-10-10 09:55:21 +0200339 struct fio_net_cmd *cmd = NULL;
340 size_t this_len, cur_len = 0;
Jens Axboe40c60512012-03-27 16:03:04 +0200341 uint64_t tag;
Jens Axboe794d69c2011-10-01 08:48:50 -0600342 int ret;
343
Jens Axboe40c60512012-03-27 16:03:04 +0200344 if (list) {
345 assert(tagptr);
346 tag = *tagptr = alloc_reply(*tagptr, opcode);
347 } else
348 tag = tagptr ? *tagptr : 0;
349
Jens Axboe794d69c2011-10-01 08:48:50 -0600350 do {
351 this_len = size;
Jens Axboeb9d2f302012-03-08 20:36:28 +0100352 if (this_len > FIO_SERVER_MAX_FRAGMENT_PDU)
353 this_len = FIO_SERVER_MAX_FRAGMENT_PDU;
Jens Axboe794d69c2011-10-01 08:48:50 -0600354
Jens Axboe7f868312011-10-10 09:55:21 +0200355 if (!cmd || cur_len < sizeof(*cmd) + this_len) {
356 if (cmd)
357 free(cmd);
358
359 cur_len = sizeof(*cmd) + this_len;
360 cmd = malloc(cur_len);
361 }
Jens Axboe794d69c2011-10-01 08:48:50 -0600362
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200363 fio_init_net_cmd(cmd, opcode, buf, this_len, tag);
Jens Axboe794d69c2011-10-01 08:48:50 -0600364
365 if (this_len < size)
Jens Axboeddcc0b62011-10-03 14:45:27 +0200366 cmd->flags = __cpu_to_le32(FIO_NET_CMD_F_MORE);
Jens Axboe794d69c2011-10-01 08:48:50 -0600367
368 fio_net_cmd_crc(cmd);
369
370 ret = fio_send_data(fd, cmd, sizeof(*cmd) + this_len);
Jens Axboe794d69c2011-10-01 08:48:50 -0600371 size -= this_len;
372 buf += this_len;
373 } while (!ret && size);
374
Jens Axboe40c60512012-03-27 16:03:04 +0200375 if (list) {
376 if (ret)
377 free_reply(tag);
378 else
379 add_reply(tag, list);
380 }
381
Jens Axboe7f868312011-10-10 09:55:21 +0200382 if (cmd)
383 free(cmd);
384
Jens Axboe794d69c2011-10-01 08:48:50 -0600385 return ret;
386}
387
Jens Axboe89c17072011-10-11 10:15:51 +0200388static int fio_net_send_simple_stack_cmd(int sk, uint16_t opcode, uint64_t tag)
Jens Axboe132159a2011-09-30 15:01:32 -0600389{
Jens Axboe178cde92011-10-05 22:14:31 +0200390 struct fio_net_cmd cmd;
Jens Axboe132159a2011-09-30 15:01:32 -0600391
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200392 fio_init_net_cmd(&cmd, opcode, NULL, 0, tag);
Jens Axboe132159a2011-09-30 15:01:32 -0600393 fio_net_cmd_crc(&cmd);
394
395 return fio_send_data(sk, &cmd, sizeof(cmd));
396}
397
Jens Axboe89c17072011-10-11 10:15:51 +0200398/*
399 * If 'list' is non-NULL, then allocate and store the sent command for
400 * later verification.
401 */
402int fio_net_send_simple_cmd(int sk, uint16_t opcode, uint64_t tag,
403 struct flist_head *list)
404{
Jens Axboe89c17072011-10-11 10:15:51 +0200405 int ret;
406
Jens Axboe40c60512012-03-27 16:03:04 +0200407 if (list)
408 tag = alloc_reply(tag, opcode);
Jens Axboe89c17072011-10-11 10:15:51 +0200409
Jens Axboe40c60512012-03-27 16:03:04 +0200410 ret = fio_net_send_simple_stack_cmd(sk, opcode, tag);
Jens Axboe89c17072011-10-11 10:15:51 +0200411 if (ret) {
Jens Axboe40c60512012-03-27 16:03:04 +0200412 if (list)
413 free_reply(tag);
414
Jens Axboe89c17072011-10-11 10:15:51 +0200415 return ret;
416 }
417
Jens Axboe40c60512012-03-27 16:03:04 +0200418 if (list)
419 add_reply(tag, list);
420
Jens Axboe89c17072011-10-11 10:15:51 +0200421 return 0;
422}
423
Jens Axboe122c7722012-03-19 09:13:15 +0100424int fio_net_send_quit(int sk)
Jens Axboe437377e2011-10-01 08:31:30 -0600425{
Jens Axboe46c48f12011-10-01 12:50:51 -0600426 dprint(FD_NET, "server: sending quit\n");
Jens Axboe122c7722012-03-19 09:13:15 +0100427
Jens Axboe8c953072012-03-20 14:35:35 +0100428 return fio_net_send_simple_cmd(sk, FIO_NET_CMD_QUIT, 0, NULL);
Jens Axboe437377e2011-10-01 08:31:30 -0600429}
430
Jens Axboef58bd2a2012-03-27 10:06:42 +0200431static int fio_net_send_ack(int sk, struct fio_net_cmd *cmd, int error,
432 int signal)
Jens Axboe122c7722012-03-19 09:13:15 +0100433{
434 struct cmd_end_pdu epdu;
Jens Axboef58bd2a2012-03-27 10:06:42 +0200435 uint64_t tag = 0;
Jens Axboe122c7722012-03-19 09:13:15 +0100436
Jens Axboef58bd2a2012-03-27 10:06:42 +0200437 if (cmd)
438 tag = cmd->tag;
Jens Axboe122c7722012-03-19 09:13:15 +0100439
440 epdu.error = __cpu_to_le32(error);
441 epdu.signal = __cpu_to_le32(signal);
Jens Axboe40c60512012-03-27 16:03:04 +0200442 return fio_net_send_cmd(sk, FIO_NET_CMD_STOP, &epdu, sizeof(epdu), &tag, NULL);
Jens Axboef58bd2a2012-03-27 10:06:42 +0200443}
444
445int fio_net_send_stop(int sk, int error, int signal)
446{
447 dprint(FD_NET, "server: sending stop (%d, %d)\n", error, signal);
448 return fio_net_send_ack(sk, NULL, error, signal);
Jens Axboe122c7722012-03-19 09:13:15 +0100449}
450
451static void fio_server_add_fork_item(pid_t pid, struct flist_head *list)
452{
453 struct fio_fork_item *ffi;
454
455 ffi = malloc(sizeof(*ffi));
456 ffi->exitval = 0;
457 ffi->signal = 0;
458 ffi->exited = 0;
459 ffi->pid = pid;
460 flist_add_tail(&ffi->list, list);
461}
462
463static void fio_server_add_conn_pid(pid_t pid)
464{
465 dprint(FD_NET, "server: forked off connection job (pid=%u)\n", pid);
466 fio_server_add_fork_item(pid, &conn_list);
467}
468
469static void fio_server_add_job_pid(pid_t pid)
470{
471 dprint(FD_NET, "server: forked off job job (pid=%u)\n", pid);
472 fio_server_add_fork_item(pid, &job_list);
473}
474
475static void fio_server_check_fork_item(struct fio_fork_item *ffi)
476{
477 int ret, status;
478
479 ret = waitpid(ffi->pid, &status, WNOHANG);
480 if (ret < 0) {
481 if (errno == ECHILD) {
482 log_err("fio: connection pid %u disappeared\n", ffi->pid);
483 ffi->exited = 1;
484 } else
485 log_err("fio: waitpid: %s\n", strerror(errno));
486 } else if (ret == ffi->pid) {
487 if (WIFSIGNALED(status)) {
488 ffi->signal = WTERMSIG(status);
489 ffi->exited = 1;
490 }
491 if (WIFEXITED(status)) {
492 if (WEXITSTATUS(status))
493 ffi->exitval = WEXITSTATUS(status);
494 ffi->exited = 1;
495 }
496 }
497}
498
499static void fio_server_fork_item_done(struct fio_fork_item *ffi)
500{
501 dprint(FD_NET, "pid %u exited, sig=%u, exitval=%d\n", ffi->pid, ffi->signal, ffi->exitval);
502
503 /*
504 * Fold STOP and QUIT...
505 */
506 fio_net_send_stop(server_fd, ffi->exitval, ffi->signal);
507 fio_net_send_quit(server_fd);
508 flist_del(&ffi->list);
509 free(ffi);
510}
511
Jens Axboe54163252012-03-23 12:25:18 +0100512static void fio_server_check_fork_items(struct flist_head *list)
Jens Axboe122c7722012-03-19 09:13:15 +0100513{
514 struct flist_head *entry, *tmp;
515 struct fio_fork_item *ffi;
516
517 flist_for_each_safe(entry, tmp, list) {
518 ffi = flist_entry(entry, struct fio_fork_item, list);
519
520 fio_server_check_fork_item(ffi);
521
522 if (ffi->exited)
523 fio_server_fork_item_done(ffi);
524 }
525}
526
527static void fio_server_check_jobs(void)
528{
Jens Axboe54163252012-03-23 12:25:18 +0100529 fio_server_check_fork_items(&job_list);
Jens Axboe122c7722012-03-19 09:13:15 +0100530}
531
532static void fio_server_check_conns(void)
533{
Jens Axboe54163252012-03-23 12:25:18 +0100534 fio_server_check_fork_items(&conn_list);
Jens Axboe122c7722012-03-19 09:13:15 +0100535}
536
Jens Axboeb9d2f302012-03-08 20:36:28 +0100537static int handle_run_cmd(struct fio_net_cmd *cmd)
Jens Axboe132159a2011-09-30 15:01:32 -0600538{
Jens Axboe122c7722012-03-19 09:13:15 +0100539 pid_t pid;
Jens Axboea64e88d2011-10-03 14:20:01 +0200540 int ret;
Jens Axboe132159a2011-09-30 15:01:32 -0600541
Jens Axboe122c7722012-03-19 09:13:15 +0100542 set_genesis_time();
543
544 pid = fork();
545 if (pid) {
546 fio_server_add_job_pid(pid);
547 return 0;
548 }
549
Jens Axboe2e1df072012-02-09 11:15:02 +0100550 ret = fio_backend();
Jens Axboe2bb3f0a2012-03-28 12:22:40 +0200551 free_threads_shm();
Jens Axboe122c7722012-03-19 09:13:15 +0100552 _exit(ret);
Jens Axboe81179ee2011-10-04 12:42:06 +0200553}
554
Jens Axboeb9d2f302012-03-08 20:36:28 +0100555static int handle_job_cmd(struct fio_net_cmd *cmd)
556{
Jens Axboe46bcd492012-03-14 11:31:21 +0100557 struct cmd_job_pdu *pdu = (struct cmd_job_pdu *) cmd->payload;
558 void *buf = pdu->buf;
Jens Axboeb9d2f302012-03-08 20:36:28 +0100559 struct cmd_start_pdu spdu;
560
Jens Axboe46bcd492012-03-14 11:31:21 +0100561 pdu->buf_len = le32_to_cpu(pdu->buf_len);
562 pdu->client_type = le32_to_cpu(pdu->client_type);
563
Jens Axboe108fea72012-11-14 13:09:45 -0700564 stat_number = 0;
565
Jens Axboe46bcd492012-03-14 11:31:21 +0100566 if (parse_jobs_ini(buf, 1, 0, pdu->client_type)) {
Jens Axboe122c7722012-03-19 09:13:15 +0100567 fio_net_send_quit(server_fd);
Jens Axboeb9d2f302012-03-08 20:36:28 +0100568 return -1;
569 }
570
571 spdu.jobs = cpu_to_le32(thread_number);
Jens Axboe108fea72012-11-14 13:09:45 -0700572 spdu.stat_outputs = cpu_to_le32(stat_number);
Jens Axboe40c60512012-03-27 16:03:04 +0200573 fio_net_send_cmd(server_fd, FIO_NET_CMD_START, &spdu, sizeof(spdu), NULL, NULL);
Jens Axboeb9d2f302012-03-08 20:36:28 +0100574 return 0;
575}
576
Jens Axboe81179ee2011-10-04 12:42:06 +0200577static int handle_jobline_cmd(struct fio_net_cmd *cmd)
578{
Jens Axboefa2ea802011-10-08 21:07:29 +0200579 void *pdu = cmd->payload;
580 struct cmd_single_line_pdu *cslp;
581 struct cmd_line_pdu *clp;
582 unsigned long offset;
Jens Axboeb9d2f302012-03-08 20:36:28 +0100583 struct cmd_start_pdu spdu;
Jens Axboefa2ea802011-10-08 21:07:29 +0200584 char **argv;
Jens Axboeb9d2f302012-03-08 20:36:28 +0100585 int i;
Jens Axboe81179ee2011-10-04 12:42:06 +0200586
Jens Axboefa2ea802011-10-08 21:07:29 +0200587 clp = pdu;
588 clp->lines = le16_to_cpu(clp->lines);
Jens Axboe46bcd492012-03-14 11:31:21 +0100589 clp->client_type = le16_to_cpu(clp->client_type);
Jens Axboefa2ea802011-10-08 21:07:29 +0200590 argv = malloc(clp->lines * sizeof(char *));
591 offset = sizeof(*clp);
Jens Axboe81179ee2011-10-04 12:42:06 +0200592
Jens Axboefa2ea802011-10-08 21:07:29 +0200593 dprint(FD_NET, "server: %d command line args\n", clp->lines);
Jens Axboe39e8e012011-10-04 13:46:08 +0200594
Jens Axboefa2ea802011-10-08 21:07:29 +0200595 for (i = 0; i < clp->lines; i++) {
596 cslp = pdu + offset;
597 argv[i] = (char *) cslp->text;
598
599 offset += sizeof(*cslp) + le16_to_cpu(cslp->len);
Jens Axboe39e8e012011-10-04 13:46:08 +0200600 dprint(FD_NET, "server: %d: %s\n", i, argv[i]);
601 }
Jens Axboe81179ee2011-10-04 12:42:06 +0200602
Jens Axboe1e5324e2012-11-14 14:25:31 -0700603 stat_number = 0;
604
Jens Axboe46bcd492012-03-14 11:31:21 +0100605 if (parse_cmd_line(clp->lines, argv, clp->client_type)) {
Jens Axboe122c7722012-03-19 09:13:15 +0100606 fio_net_send_quit(server_fd);
Jens Axboefa2ea802011-10-08 21:07:29 +0200607 free(argv);
Jens Axboe81179ee2011-10-04 12:42:06 +0200608 return -1;
Jens Axboee6d1c662011-10-05 20:41:06 +0200609 }
Jens Axboe81179ee2011-10-04 12:42:06 +0200610
Jens Axboefa2ea802011-10-08 21:07:29 +0200611 free(argv);
612
Jens Axboeb9d2f302012-03-08 20:36:28 +0100613 spdu.jobs = cpu_to_le32(thread_number);
Jens Axboe1e5324e2012-11-14 14:25:31 -0700614 spdu.stat_outputs = cpu_to_le32(stat_number);
Jens Axboe40c60512012-03-27 16:03:04 +0200615 fio_net_send_cmd(server_fd, FIO_NET_CMD_START, &spdu, sizeof(spdu), NULL, NULL);
Jens Axboeb9d2f302012-03-08 20:36:28 +0100616 return 0;
Jens Axboe132159a2011-09-30 15:01:32 -0600617}
618
Jens Axboec28e8e82011-10-04 08:57:39 +0200619static int handle_probe_cmd(struct fio_net_cmd *cmd)
620{
621 struct cmd_probe_pdu probe;
Jens Axboe40c60512012-03-27 16:03:04 +0200622 uint64_t tag = cmd->tag;
Jens Axboec28e8e82011-10-04 08:57:39 +0200623
Jens Axboe89c17072011-10-11 10:15:51 +0200624 dprint(FD_NET, "server: sending probe reply\n");
625
Jens Axboec28e8e82011-10-04 08:57:39 +0200626 memset(&probe, 0, sizeof(probe));
627 gethostname((char *) probe.hostname, sizeof(probe.hostname));
Jens Axboe6eb24792011-10-04 15:00:30 +0200628#ifdef FIO_BIG_ENDIAN
629 probe.bigendian = 1;
630#endif
Jens Axboe750db472012-04-16 11:44:48 +0200631 strncpy((char *) probe.fio_version, fio_version_string, sizeof(probe.fio_version));
Jens Axboec28e8e82011-10-04 08:57:39 +0200632
Jens Axboecca84642011-10-07 12:47:57 +0200633 probe.os = FIO_OS;
634 probe.arch = FIO_ARCH;
Jens Axboe38fdef22011-10-11 14:30:06 +0200635 probe.bpp = sizeof(void *);
Jens Axboed31e26d2012-03-28 21:38:24 +0200636 probe.cpus = __cpu_to_le32(cpus_online());
637 probe.flags = 0;
Jens Axboe38fdef22011-10-11 14:30:06 +0200638
Jens Axboe40c60512012-03-27 16:03:04 +0200639 return fio_net_send_cmd(server_fd, FIO_NET_CMD_PROBE, &probe, sizeof(probe), &tag, NULL);
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200640}
641
642static int handle_send_eta_cmd(struct fio_net_cmd *cmd)
643{
644 struct jobs_eta *je;
645 size_t size;
Jens Axboe40c60512012-03-27 16:03:04 +0200646 uint64_t tag = cmd->tag;
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200647 int i;
648
Jens Axboeb814fb22011-10-12 09:20:34 +0200649 if (!thread_number)
650 return 0;
651
652 size = sizeof(*je) + thread_number * sizeof(char) + 1;
Jens Axboe7f868312011-10-10 09:55:21 +0200653 je = malloc(size);
654 memset(je, 0, size);
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200655
656 if (!calc_thread_status(je, 1)) {
657 free(je);
658 return 0;
659 }
660
661 dprint(FD_NET, "server sending status\n");
662
663 je->nr_running = cpu_to_le32(je->nr_running);
664 je->nr_ramp = cpu_to_le32(je->nr_ramp);
665 je->nr_pending = cpu_to_le32(je->nr_pending);
666 je->files_open = cpu_to_le32(je->files_open);
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200667
Jens Axboe298921d2012-09-24 18:47:01 +0200668 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
Jens Axboe3e47bd22012-02-29 13:45:02 +0100669 je->m_rate[i] = cpu_to_le32(je->m_rate[i]);
670 je->t_rate[i] = cpu_to_le32(je->t_rate[i]);
671 je->m_iops[i] = cpu_to_le32(je->m_iops[i]);
672 je->t_iops[i] = cpu_to_le32(je->t_iops[i]);
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200673 je->rate[i] = cpu_to_le32(je->rate[i]);
674 je->iops[i] = cpu_to_le32(je->iops[i]);
675 }
676
Jens Axboec1970b92012-03-06 15:37:40 +0100677 je->elapsed_sec = cpu_to_le64(je->elapsed_sec);
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200678 je->eta_sec = cpu_to_le64(je->eta_sec);
Jens Axboe8c621fb2012-03-08 12:30:48 +0100679 je->nr_threads = cpu_to_le32(je->nr_threads);
Jens Axboeb7f05eb2012-05-11 20:33:02 +0200680 je->is_pow2 = cpu_to_le32(je->is_pow2);
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200681
Jens Axboe40c60512012-03-27 16:03:04 +0200682 fio_net_send_cmd(server_fd, FIO_NET_CMD_ETA, je, size, &tag, NULL);
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200683 free(je);
684 return 0;
Jens Axboec28e8e82011-10-04 08:57:39 +0200685}
686
Jens Axboe40c60512012-03-27 16:03:04 +0200687static int send_update_job_reply(int fd, uint64_t __tag, int error)
688{
689 uint64_t tag = __tag;
690 uint32_t pdu_error;
691
692 pdu_error = __cpu_to_le32(error);
693 return fio_net_send_cmd(fd, FIO_NET_CMD_UPDATE_JOB, &pdu_error, sizeof(pdu_error), &tag, NULL);
694}
695
Jens Axboef58bd2a2012-03-27 10:06:42 +0200696static int handle_update_job_cmd(struct fio_net_cmd *cmd)
697{
698 struct cmd_add_job_pdu *pdu = (struct cmd_add_job_pdu *) cmd->payload;
699 struct thread_data *td;
700 uint32_t tnumber;
701
702 tnumber = le32_to_cpu(pdu->thread_number);
703
704 dprint(FD_NET, "server: updating options for job %u\n", tnumber);
705
Jens Axboe30ffacb2012-03-28 09:15:05 +0200706 if (!tnumber || tnumber > thread_number) {
Jens Axboe40c60512012-03-27 16:03:04 +0200707 send_update_job_reply(server_fd, cmd->tag, ENODEV);
Jens Axboef58bd2a2012-03-27 10:06:42 +0200708 return 0;
709 }
710
Jens Axboe30ffacb2012-03-28 09:15:05 +0200711 td = &threads[tnumber - 1];
Jens Axboef58bd2a2012-03-27 10:06:42 +0200712 convert_thread_options_to_cpu(&td->o, &pdu->top);
Jens Axboe40c60512012-03-27 16:03:04 +0200713 send_update_job_reply(server_fd, cmd->tag, 0);
Jens Axboef58bd2a2012-03-27 10:06:42 +0200714 return 0;
715}
716
Jens Axboe132159a2011-09-30 15:01:32 -0600717static int handle_command(struct fio_net_cmd *cmd)
718{
719 int ret;
720
Jens Axboe89c17072011-10-11 10:15:51 +0200721 dprint(FD_NET, "server: got op [%s], pdu=%u, tag=%lx\n",
722 fio_server_op(cmd->opcode), cmd->pdu_len, cmd->tag);
Jens Axboe46c48f12011-10-01 12:50:51 -0600723
Jens Axboe132159a2011-09-30 15:01:32 -0600724 switch (cmd->opcode) {
725 case FIO_NET_CMD_QUIT:
Jens Axboecc0df002011-10-03 20:53:32 +0200726 fio_terminate_threads(TERMINATE_ALL);
Jens Axboec28e8e82011-10-04 08:57:39 +0200727 return -1;
Jens Axboed7959182011-10-03 11:48:39 +0200728 case FIO_NET_CMD_EXIT:
Jens Axboe132159a2011-09-30 15:01:32 -0600729 exit_backend = 1;
Jens Axboec28e8e82011-10-04 08:57:39 +0200730 return -1;
Jens Axboe132159a2011-09-30 15:01:32 -0600731 case FIO_NET_CMD_JOB:
Jens Axboe0b8f30a2011-10-04 10:31:53 +0200732 ret = handle_job_cmd(cmd);
Jens Axboe132159a2011-09-30 15:01:32 -0600733 break;
Jens Axboe81179ee2011-10-04 12:42:06 +0200734 case FIO_NET_CMD_JOBLINE:
735 ret = handle_jobline_cmd(cmd);
736 break;
Jens Axboec28e8e82011-10-04 08:57:39 +0200737 case FIO_NET_CMD_PROBE:
738 ret = handle_probe_cmd(cmd);
739 break;
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200740 case FIO_NET_CMD_SEND_ETA:
741 ret = handle_send_eta_cmd(cmd);
742 break;
Jens Axboeb9d2f302012-03-08 20:36:28 +0100743 case FIO_NET_CMD_RUN:
744 ret = handle_run_cmd(cmd);
745 break;
Jens Axboef58bd2a2012-03-27 10:06:42 +0200746 case FIO_NET_CMD_UPDATE_JOB:
747 ret = handle_update_job_cmd(cmd);
748 break;
Jens Axboe132159a2011-09-30 15:01:32 -0600749 default:
Jens Axboe3c3ed072012-03-27 09:12:39 +0200750 log_err("fio: unknown opcode: %s\n", fio_server_op(cmd->opcode));
Jens Axboe132159a2011-09-30 15:01:32 -0600751 ret = 1;
752 }
753
754 return ret;
755}
756
Jens Axboe122c7722012-03-19 09:13:15 +0100757static int handle_connection(int sk)
Jens Axboe132159a2011-09-30 15:01:32 -0600758{
759 struct fio_net_cmd *cmd = NULL;
760 int ret = 0;
761
Jens Axboe122c7722012-03-19 09:13:15 +0100762 reset_fio_state();
763 INIT_FLIST_HEAD(&job_list);
764 server_fd = sk;
765
Jens Axboe132159a2011-09-30 15:01:32 -0600766 /* read forever */
767 while (!exit_backend) {
Jens Axboee951bdc2011-10-05 21:58:45 +0200768 struct pollfd pfd = {
769 .fd = sk,
770 .events = POLLIN,
771 };
772
773 ret = 0;
774 do {
Jens Axboe54163252012-03-23 12:25:18 +0100775 int timeout = 1000;
776
777 if (!flist_empty(&job_list))
778 timeout = 100;
Jens Axboe3c3ed072012-03-27 09:12:39 +0200779
Jens Axboe54163252012-03-23 12:25:18 +0100780 ret = poll(&pfd, 1, timeout);
Jens Axboee951bdc2011-10-05 21:58:45 +0200781 if (ret < 0) {
782 if (errno == EINTR)
783 break;
784 log_err("fio: poll: %s\n", strerror(errno));
785 break;
Jens Axboe19c65172011-10-05 22:05:37 +0200786 } else if (!ret) {
Jens Axboe122c7722012-03-19 09:13:15 +0100787 fio_server_check_jobs();
Jens Axboee951bdc2011-10-05 21:58:45 +0200788 continue;
Jens Axboe19c65172011-10-05 22:05:37 +0200789 }
Jens Axboee951bdc2011-10-05 21:58:45 +0200790
791 if (pfd.revents & POLLIN)
792 break;
793 if (pfd.revents & (POLLERR|POLLHUP)) {
794 ret = 1;
795 break;
796 }
Jens Axboe19c65172011-10-05 22:05:37 +0200797 } while (!exit_backend);
Jens Axboee951bdc2011-10-05 21:58:45 +0200798
Jens Axboe122c7722012-03-19 09:13:15 +0100799 fio_server_check_jobs();
800
Jens Axboee951bdc2011-10-05 21:58:45 +0200801 if (ret < 0)
802 break;
803
804 cmd = fio_net_recv_cmd(sk);
Jens Axboe132159a2011-09-30 15:01:32 -0600805 if (!cmd) {
Jens Axboec28e8e82011-10-04 08:57:39 +0200806 ret = -1;
Jens Axboe132159a2011-09-30 15:01:32 -0600807 break;
808 }
809
Jens Axboe132159a2011-09-30 15:01:32 -0600810 ret = handle_command(cmd);
811 if (ret)
812 break;
813
814 free(cmd);
Jens Axboec77a99e2011-10-01 16:26:42 -0400815 cmd = NULL;
Jens Axboe132159a2011-09-30 15:01:32 -0600816 }
817
818 if (cmd)
819 free(cmd);
820
Jens Axboe122c7722012-03-19 09:13:15 +0100821 close(sk);
822 _exit(ret);
Jens Axboecc0df002011-10-03 20:53:32 +0200823}
824
Jens Axboe50d16972011-09-29 17:45:28 -0600825static int accept_loop(int listen_sk)
826{
Jens Axboebb447a22011-10-04 15:06:42 +0200827 struct sockaddr_in addr;
Jens Axboe5ba13ea2011-10-04 23:50:28 +0200828 fio_socklen_t len = sizeof(addr);
Jens Axboe009b1be2011-09-29 18:27:02 -0600829 struct pollfd pfd;
Jens Axboe122c7722012-03-19 09:13:15 +0100830 int ret = 0, sk, flags, exitval = 0;
Jens Axboe50d16972011-09-29 17:45:28 -0600831
Jens Axboe60efd142011-10-04 13:30:11 +0200832 dprint(FD_NET, "server enter accept loop\n");
833
Jens Axboe009b1be2011-09-29 18:27:02 -0600834 flags = fcntl(listen_sk, F_GETFL);
835 flags |= O_NONBLOCK;
836 fcntl(listen_sk, F_SETFL, flags);
Jens Axboe122c7722012-03-19 09:13:15 +0100837
838 while (!exit_backend) {
839 pid_t pid;
840
841 pfd.fd = listen_sk;
842 pfd.events = POLLIN;
843 do {
Jens Axboe54163252012-03-23 12:25:18 +0100844 int timeout = 1000;
845
846 if (!flist_empty(&conn_list))
847 timeout = 100;
848
849 ret = poll(&pfd, 1, timeout);
Jens Axboe122c7722012-03-19 09:13:15 +0100850 if (ret < 0) {
851 if (errno == EINTR)
852 break;
853 log_err("fio: poll: %s\n", strerror(errno));
Jens Axboe009b1be2011-09-29 18:27:02 -0600854 break;
Jens Axboe122c7722012-03-19 09:13:15 +0100855 } else if (!ret) {
856 fio_server_check_conns();
857 continue;
858 }
Jens Axboe009b1be2011-09-29 18:27:02 -0600859
Jens Axboe122c7722012-03-19 09:13:15 +0100860 if (pfd.revents & POLLIN)
861 break;
862 } while (!exit_backend);
863
864 fio_server_check_conns();
865
866 if (exit_backend || ret < 0)
Jens Axboe009b1be2011-09-29 18:27:02 -0600867 break;
Jens Axboe009b1be2011-09-29 18:27:02 -0600868
Jens Axboe122c7722012-03-19 09:13:15 +0100869 sk = accept(listen_sk, (struct sockaddr *) &addr, &len);
870 if (sk < 0) {
871 log_err("fio: accept: %s\n", strerror(errno));
872 return -1;
873 }
Jens Axboe009b1be2011-09-29 18:27:02 -0600874
Jens Axboe122c7722012-03-19 09:13:15 +0100875 dprint(FD_NET, "server: connect from %s\n", inet_ntoa(addr.sin_addr));
876
877 pid = fork();
878 if (pid) {
879 close(sk);
880 fio_server_add_conn_pid(pid);
881 continue;
882 }
883
884 /* exits */
885 handle_connection(sk);
Jens Axboe50d16972011-09-29 17:45:28 -0600886 }
887
Jens Axboe132159a2011-09-30 15:01:32 -0600888 return exitval;
Jens Axboe50d16972011-09-29 17:45:28 -0600889}
890
Jens Axboe084d1c62012-03-03 20:28:07 +0100891int fio_server_text_output(int level, const char *buf, size_t len)
Jens Axboe37db14f2011-09-30 17:00:42 -0600892{
Jens Axboe084d1c62012-03-03 20:28:07 +0100893 struct cmd_text_pdu *pdu;
894 unsigned int tlen;
895 struct timeval tv;
Jens Axboe337d75a2011-10-01 12:36:32 -0600896
Jens Axboe084d1c62012-03-03 20:28:07 +0100897 if (server_fd == -1)
898 return log_local_buf(buf, len);
899
900 tlen = sizeof(*pdu) + len;
901 pdu = malloc(tlen);
902
903 pdu->level = __cpu_to_le32(level);
904 pdu->buf_len = __cpu_to_le32(len);
905
906 gettimeofday(&tv, NULL);
907 pdu->log_sec = __cpu_to_le64(tv.tv_sec);
908 pdu->log_usec = __cpu_to_le64(tv.tv_usec);
909
910 memcpy(pdu->buf, buf, len);
911
Jens Axboe40c60512012-03-27 16:03:04 +0200912 fio_net_send_cmd(server_fd, FIO_NET_CMD_TEXT, pdu, tlen, NULL, NULL);
Jens Axboe084d1c62012-03-03 20:28:07 +0100913 free(pdu);
914 return len;
Jens Axboe142575e2011-09-30 17:35:45 -0600915}
916
Jens Axboea64e88d2011-10-03 14:20:01 +0200917static void convert_io_stat(struct io_stat *dst, struct io_stat *src)
918{
919 dst->max_val = cpu_to_le64(src->max_val);
920 dst->min_val = cpu_to_le64(src->min_val);
921 dst->samples = cpu_to_le64(src->samples);
Jens Axboe802ad4a2011-10-05 09:51:58 +0200922
923 /*
924 * Encode to IEEE 754 for network transfer
925 */
926 dst->mean.u.i = __cpu_to_le64(fio_double_to_uint64(src->mean.u.f));
927 dst->S.u.i = __cpu_to_le64(fio_double_to_uint64(src->S.u.f));
Jens Axboea64e88d2011-10-03 14:20:01 +0200928}
929
930static void convert_gs(struct group_run_stats *dst, struct group_run_stats *src)
931{
932 int i;
933
Jens Axboe298921d2012-09-24 18:47:01 +0200934 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
Jens Axboea64e88d2011-10-03 14:20:01 +0200935 dst->max_run[i] = cpu_to_le64(src->max_run[i]);
936 dst->min_run[i] = cpu_to_le64(src->min_run[i]);
937 dst->max_bw[i] = cpu_to_le64(src->max_bw[i]);
938 dst->min_bw[i] = cpu_to_le64(src->min_bw[i]);
939 dst->io_kb[i] = cpu_to_le64(src->io_kb[i]);
940 dst->agg[i] = cpu_to_le64(src->agg[i]);
941 }
942
943 dst->kb_base = cpu_to_le32(src->kb_base);
944 dst->groupid = cpu_to_le32(src->groupid);
945}
946
947/*
948 * Send a CMD_TS, which packs struct thread_stat and group_run_stats
949 * into a single payload.
950 */
951void fio_server_send_ts(struct thread_stat *ts, struct group_run_stats *rs)
952{
953 struct cmd_ts_pdu p;
954 int i, j;
955
Jens Axboe60efd142011-10-04 13:30:11 +0200956 dprint(FD_NET, "server sending end stats\n");
957
Jens Axboe317b3c82011-10-03 21:47:27 +0200958 memset(&p, 0, sizeof(p));
959
Jens Axboea64e88d2011-10-03 14:20:01 +0200960 strcpy(p.ts.name, ts->name);
961 strcpy(p.ts.verror, ts->verror);
962 strcpy(p.ts.description, ts->description);
963
Jens Axboe2f122b12012-03-15 13:10:19 +0100964 p.ts.error = cpu_to_le32(ts->error);
965 p.ts.thread_number = cpu_to_le32(ts->thread_number);
966 p.ts.groupid = cpu_to_le32(ts->groupid);
967 p.ts.pid = cpu_to_le32(ts->pid);
968 p.ts.members = cpu_to_le32(ts->members);
Jens Axboea64e88d2011-10-03 14:20:01 +0200969
Jens Axboe298921d2012-09-24 18:47:01 +0200970 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
Jens Axboea64e88d2011-10-03 14:20:01 +0200971 convert_io_stat(&p.ts.clat_stat[i], &ts->clat_stat[i]);
972 convert_io_stat(&p.ts.slat_stat[i], &ts->slat_stat[i]);
973 convert_io_stat(&p.ts.lat_stat[i], &ts->lat_stat[i]);
974 convert_io_stat(&p.ts.bw_stat[i], &ts->bw_stat[i]);
975 }
976
977 p.ts.usr_time = cpu_to_le64(ts->usr_time);
978 p.ts.sys_time = cpu_to_le64(ts->sys_time);
979 p.ts.ctx = cpu_to_le64(ts->ctx);
980 p.ts.minf = cpu_to_le64(ts->minf);
981 p.ts.majf = cpu_to_le64(ts->majf);
982 p.ts.clat_percentiles = cpu_to_le64(ts->clat_percentiles);
Jens Axboe802ad4a2011-10-05 09:51:58 +0200983
984 for (i = 0; i < FIO_IO_U_LIST_MAX_LEN; i++) {
Jens Axboecfc03e42011-10-12 21:20:42 +0200985 fio_fp64_t *src = &ts->percentile_list[i];
986 fio_fp64_t *dst = &p.ts.percentile_list[i];
Jens Axboe802ad4a2011-10-05 09:51:58 +0200987
Jens Axboecfc03e42011-10-12 21:20:42 +0200988 dst->u.i = __cpu_to_le64(fio_double_to_uint64(src->u.f));
Jens Axboe802ad4a2011-10-05 09:51:58 +0200989 }
Jens Axboea64e88d2011-10-03 14:20:01 +0200990
991 for (i = 0; i < FIO_IO_U_MAP_NR; i++) {
992 p.ts.io_u_map[i] = cpu_to_le32(ts->io_u_map[i]);
993 p.ts.io_u_submit[i] = cpu_to_le32(ts->io_u_submit[i]);
994 p.ts.io_u_complete[i] = cpu_to_le32(ts->io_u_complete[i]);
995 }
996
997 for (i = 0; i < FIO_IO_U_LAT_U_NR; i++) {
998 p.ts.io_u_lat_u[i] = cpu_to_le32(ts->io_u_lat_u[i]);
999 p.ts.io_u_lat_m[i] = cpu_to_le32(ts->io_u_lat_m[i]);
1000 }
1001
Jens Axboe298921d2012-09-24 18:47:01 +02001002 for (i = 0; i < DDIR_RWDIR_CNT; i++)
Jens Axboea64e88d2011-10-03 14:20:01 +02001003 for (j = 0; j < FIO_IO_U_PLAT_NR; j++)
1004 p.ts.io_u_plat[i][j] = cpu_to_le32(ts->io_u_plat[i][j]);
1005
1006 for (i = 0; i < 3; i++) {
1007 p.ts.total_io_u[i] = cpu_to_le64(ts->total_io_u[i]);
Jens Axboe93eee042011-10-03 21:08:48 +02001008 p.ts.short_io_u[i] = cpu_to_le64(ts->short_io_u[i]);
Jens Axboea64e88d2011-10-03 14:20:01 +02001009 }
1010
Jens Axboe93eee042011-10-03 21:08:48 +02001011 p.ts.total_submit = cpu_to_le64(ts->total_submit);
Jens Axboea64e88d2011-10-03 14:20:01 +02001012 p.ts.total_complete = cpu_to_le64(ts->total_complete);
1013
Jens Axboe298921d2012-09-24 18:47:01 +02001014 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
Jens Axboea64e88d2011-10-03 14:20:01 +02001015 p.ts.io_bytes[i] = cpu_to_le64(ts->io_bytes[i]);
1016 p.ts.runtime[i] = cpu_to_le64(ts->runtime[i]);
1017 }
1018
1019 p.ts.total_run_time = cpu_to_le64(ts->total_run_time);
1020 p.ts.continue_on_error = cpu_to_le16(ts->continue_on_error);
1021 p.ts.total_err_count = cpu_to_le64(ts->total_err_count);
Jens Axboeddcc0b62011-10-03 14:45:27 +02001022 p.ts.first_error = cpu_to_le32(ts->first_error);
1023 p.ts.kb_base = cpu_to_le32(ts->kb_base);
Jens Axboea64e88d2011-10-03 14:20:01 +02001024
1025 convert_gs(&p.rs, rs);
1026
Jens Axboe40c60512012-03-27 16:03:04 +02001027 fio_net_send_cmd(server_fd, FIO_NET_CMD_TS, &p, sizeof(p), NULL, NULL);
Jens Axboea64e88d2011-10-03 14:20:01 +02001028}
1029
1030void fio_server_send_gs(struct group_run_stats *rs)
1031{
1032 struct group_run_stats gs;
1033
Jens Axboe60efd142011-10-04 13:30:11 +02001034 dprint(FD_NET, "server sending group run stats\n");
1035
Jens Axboea64e88d2011-10-03 14:20:01 +02001036 convert_gs(&gs, rs);
Jens Axboe40c60512012-03-27 16:03:04 +02001037 fio_net_send_cmd(server_fd, FIO_NET_CMD_GS, &gs, sizeof(gs), NULL, NULL);
Jens Axboecf451d12011-10-03 16:48:30 +02001038}
1039
Jens Axboed09a64a2011-10-13 11:38:56 +02001040static void convert_agg(struct disk_util_agg *dst, struct disk_util_agg *src)
1041{
1042 int i;
1043
1044 for (i = 0; i < 2; i++) {
1045 dst->ios[i] = cpu_to_le32(src->ios[i]);
1046 dst->merges[i] = cpu_to_le32(src->merges[i]);
1047 dst->sectors[i] = cpu_to_le64(src->sectors[i]);
1048 dst->ticks[i] = cpu_to_le32(src->ticks[i]);
1049 }
1050
1051 dst->io_ticks = cpu_to_le32(src->io_ticks);
1052 dst->time_in_queue = cpu_to_le32(src->time_in_queue);
1053 dst->slavecount = cpu_to_le32(src->slavecount);
1054 dst->max_util.u.i = __cpu_to_le64(fio_double_to_uint64(src->max_util.u.f));
1055}
1056
1057static void convert_dus(struct disk_util_stat *dst, struct disk_util_stat *src)
1058{
1059 int i;
1060
1061 strcpy((char *) dst->name, (char *) src->name);
1062
1063 for (i = 0; i < 2; i++) {
1064 dst->ios[i] = cpu_to_le32(src->ios[i]);
1065 dst->merges[i] = cpu_to_le32(src->merges[i]);
1066 dst->sectors[i] = cpu_to_le64(src->sectors[i]);
1067 dst->ticks[i] = cpu_to_le32(src->ticks[i]);
1068 }
1069
1070 dst->io_ticks = cpu_to_le32(src->io_ticks);
1071 dst->time_in_queue = cpu_to_le32(src->time_in_queue);
1072 dst->msec = cpu_to_le64(src->msec);
1073}
1074
1075void fio_server_send_du(void)
1076{
1077 struct disk_util *du;
1078 struct flist_head *entry;
1079 struct cmd_du_pdu pdu;
1080
1081 dprint(FD_NET, "server: sending disk_util %d\n", !flist_empty(&disk_list));
1082
Jens Axboe0766d922011-10-13 12:02:08 +02001083 memset(&pdu, 0, sizeof(pdu));
1084
Jens Axboed09a64a2011-10-13 11:38:56 +02001085 flist_for_each(entry, &disk_list) {
1086 du = flist_entry(entry, struct disk_util, list);
1087
1088 convert_dus(&pdu.dus, &du->dus);
1089 convert_agg(&pdu.agg, &du->agg);
1090
Jens Axboe40c60512012-03-27 16:03:04 +02001091 fio_net_send_cmd(server_fd, FIO_NET_CMD_DU, &pdu, sizeof(pdu), NULL, NULL);
Jens Axboed09a64a2011-10-13 11:38:56 +02001092 }
1093}
1094
Jens Axboe53bd8db2012-03-14 21:51:38 +01001095/*
1096 * Send a command with a separate PDU, not inlined in the command
1097 */
1098static int fio_send_cmd_ext_pdu(int sk, uint16_t opcode, const void *buf,
1099 off_t size, uint64_t tag, uint32_t flags)
1100{
1101 struct fio_net_cmd cmd;
1102 struct iovec iov[2];
1103
1104 iov[0].iov_base = &cmd;
1105 iov[0].iov_len = sizeof(cmd);
1106 iov[1].iov_base = (void *) buf;
1107 iov[1].iov_len = size;
1108
1109 __fio_init_net_cmd(&cmd, opcode, size, tag);
1110 cmd.flags = __cpu_to_le32(flags);
1111 fio_net_cmd_crc_pdu(&cmd, buf);
1112
Jens Axboe8c953072012-03-20 14:35:35 +01001113 return fio_sendv_data(sk, iov, 2);
Jens Axboe53bd8db2012-03-14 21:51:38 +01001114}
1115
Jens Axboe1b427252012-03-14 15:03:03 +01001116int fio_send_iolog(struct thread_data *td, struct io_log *log, const char *name)
1117{
Jens Axboef5ed7652012-03-14 16:28:07 +01001118 struct cmd_iolog_pdu pdu;
Jens Axboe1b427252012-03-14 15:03:03 +01001119 z_stream stream;
1120 void *out_pdu;
Jens Axboe53bd8db2012-03-14 21:51:38 +01001121 int i, ret = 0;
Jens Axboe1b427252012-03-14 15:03:03 +01001122
Jens Axboe2f122b12012-03-15 13:10:19 +01001123 pdu.thread_number = cpu_to_le32(td->thread_number);
Jens Axboef5ed7652012-03-14 16:28:07 +01001124 pdu.nr_samples = __cpu_to_le32(log->nr_samples);
1125 pdu.log_type = cpu_to_le32(log->log_type);
1126 strcpy((char *) pdu.name, name);
Jens Axboe1b427252012-03-14 15:03:03 +01001127
1128 for (i = 0; i < log->nr_samples; i++) {
Jens Axboef5ed7652012-03-14 16:28:07 +01001129 struct io_sample *s = &log->log[i];
Jens Axboe1b427252012-03-14 15:03:03 +01001130
Jens Axboef5ed7652012-03-14 16:28:07 +01001131 s->time = cpu_to_le64(s->time);
1132 s->val = cpu_to_le64(s->val);
1133 s->ddir = cpu_to_le32(s->ddir);
1134 s->bs = cpu_to_le32(s->bs);
Jens Axboe1b427252012-03-14 15:03:03 +01001135 }
1136
1137 /*
1138 * Dirty - since the log is potentially huge, compress it into
1139 * FIO_SERVER_MAX_FRAGMENT_PDU chunks and let the receiving
1140 * side defragment it.
1141 */
1142 out_pdu = malloc(FIO_SERVER_MAX_FRAGMENT_PDU);
1143
1144 stream.zalloc = Z_NULL;
1145 stream.zfree = Z_NULL;
1146 stream.opaque = Z_NULL;
1147
1148 if (deflateInit(&stream, Z_DEFAULT_COMPRESSION) != Z_OK) {
Jens Axboe53bd8db2012-03-14 21:51:38 +01001149 ret = 1;
1150 goto err;
Jens Axboe1b427252012-03-14 15:03:03 +01001151 }
1152
1153 /*
Jens Axboef5ed7652012-03-14 16:28:07 +01001154 * Send header first, it's not compressed.
Jens Axboe1b427252012-03-14 15:03:03 +01001155 */
Jens Axboe53bd8db2012-03-14 21:51:38 +01001156 ret = fio_send_cmd_ext_pdu(server_fd, FIO_NET_CMD_IOLOG, &pdu,
1157 sizeof(pdu), 0, FIO_NET_CMD_F_MORE);
1158 if (ret)
1159 goto err_zlib;
Jens Axboe1b427252012-03-14 15:03:03 +01001160
Jens Axboef5ed7652012-03-14 16:28:07 +01001161 stream.next_in = (void *) log->log;
1162 stream.avail_in = log->nr_samples * sizeof(struct io_sample);
Jens Axboe1b427252012-03-14 15:03:03 +01001163
1164 do {
Jens Axboe53bd8db2012-03-14 21:51:38 +01001165 unsigned int this_len, flags = 0;
1166 int ret;
Jens Axboe1b427252012-03-14 15:03:03 +01001167
1168 stream.avail_out = FIO_SERVER_MAX_FRAGMENT_PDU;
1169 stream.next_out = out_pdu;
Jens Axboe3c547fe2012-03-14 21:53:00 +01001170 ret = deflate(&stream, Z_FINISH);
1171 /* may be Z_OK, or Z_STREAM_END */
1172 if (ret < 0)
1173 goto err_zlib;
Jens Axboe1b427252012-03-14 15:03:03 +01001174
1175 this_len = FIO_SERVER_MAX_FRAGMENT_PDU - stream.avail_out;
1176
Jens Axboe1b427252012-03-14 15:03:03 +01001177 if (stream.avail_in)
Jens Axboe53bd8db2012-03-14 21:51:38 +01001178 flags = FIO_NET_CMD_F_MORE;
Jens Axboe1b427252012-03-14 15:03:03 +01001179
Jens Axboe53bd8db2012-03-14 21:51:38 +01001180 ret = fio_send_cmd_ext_pdu(server_fd, FIO_NET_CMD_IOLOG,
1181 out_pdu, this_len, 0, flags);
1182 if (ret)
1183 goto err_zlib;
Jens Axboe1b427252012-03-14 15:03:03 +01001184 } while (stream.avail_in);
1185
Jens Axboe53bd8db2012-03-14 21:51:38 +01001186err_zlib:
Jens Axboe1b427252012-03-14 15:03:03 +01001187 deflateEnd(&stream);
Jens Axboe53bd8db2012-03-14 21:51:38 +01001188err:
1189 free(out_pdu);
1190 return ret;
Jens Axboe1b427252012-03-14 15:03:03 +01001191}
1192
Jens Axboe2f122b12012-03-15 13:10:19 +01001193void fio_server_send_add_job(struct thread_data *td)
Jens Axboe807f9972012-03-02 10:25:24 +01001194{
1195 struct cmd_add_job_pdu pdu;
Jens Axboe807f9972012-03-02 10:25:24 +01001196
Jens Axboe731e30a2012-03-14 16:35:37 +01001197 memset(&pdu, 0, sizeof(pdu));
Jens Axboe2f122b12012-03-15 13:10:19 +01001198 pdu.thread_number = cpu_to_le32(td->thread_number);
1199 pdu.groupid = cpu_to_le32(td->groupid);
1200 convert_thread_options_to_net(&pdu.top, &td->o);
Jens Axboe807f9972012-03-02 10:25:24 +01001201
Jens Axboe40c60512012-03-27 16:03:04 +02001202 fio_net_send_cmd(server_fd, FIO_NET_CMD_ADD_JOB, &pdu, sizeof(pdu), NULL, NULL);
Jens Axboe807f9972012-03-02 10:25:24 +01001203}
1204
Jens Axboe122c7722012-03-19 09:13:15 +01001205void fio_server_send_start(struct thread_data *td)
1206{
1207 assert(server_fd != -1);
1208
1209 fio_net_send_simple_cmd(server_fd, FIO_NET_CMD_SERVER_START, 0, NULL);
1210}
1211
Jens Axboe87aa8f12011-10-06 21:24:13 +02001212static int fio_init_server_ip(void)
Jens Axboe81179ee2011-10-04 12:42:06 +02001213{
Jens Axboe811826b2011-10-24 09:11:50 +02001214 struct sockaddr *addr;
1215 fio_socklen_t socklen;
Jens Axboe87aa8f12011-10-06 21:24:13 +02001216 int sk, opt;
Jens Axboe81179ee2011-10-04 12:42:06 +02001217
Jens Axboe811826b2011-10-24 09:11:50 +02001218 if (use_ipv6)
1219 sk = socket(AF_INET6, SOCK_STREAM, 0);
1220 else
1221 sk = socket(AF_INET, SOCK_STREAM, 0);
1222
Jens Axboe81179ee2011-10-04 12:42:06 +02001223 if (sk < 0) {
1224 log_err("fio: socket: %s\n", strerror(errno));
1225 return -1;
1226 }
1227
1228 opt = 1;
1229 if (setsockopt(sk, SOL_SOCKET, SO_REUSEADDR, &opt, sizeof(opt)) < 0) {
1230 log_err("fio: setsockopt: %s\n", strerror(errno));
Jens Axboeb94cba42011-10-06 21:27:10 +02001231 close(sk);
Jens Axboe81179ee2011-10-04 12:42:06 +02001232 return -1;
1233 }
1234#ifdef SO_REUSEPORT
Jens Axboe6eb24792011-10-04 15:00:30 +02001235 if (setsockopt(sk, SOL_SOCKET, SO_REUSEPORT, &opt, sizeof(opt)) < 0) {
Jens Axboe81179ee2011-10-04 12:42:06 +02001236 log_err("fio: setsockopt: %s\n", strerror(errno));
Jens Axboeb94cba42011-10-06 21:27:10 +02001237 close(sk);
Jens Axboe81179ee2011-10-04 12:42:06 +02001238 return -1;
1239 }
1240#endif
1241
Jens Axboe811826b2011-10-24 09:11:50 +02001242 if (use_ipv6) {
1243 addr = (struct sockaddr *) &saddr_in6;
1244 socklen = sizeof(saddr_in6);
1245 saddr_in6.sin6_family = AF_INET6;
1246 } else {
1247 addr = (struct sockaddr *) &saddr_in;
1248 socklen = sizeof(saddr_in);
1249 saddr_in.sin_family = AF_INET;
1250 }
Jens Axboe81179ee2011-10-04 12:42:06 +02001251
Jens Axboe811826b2011-10-24 09:11:50 +02001252 if (bind(sk, addr, socklen) < 0) {
Jens Axboe81179ee2011-10-04 12:42:06 +02001253 log_err("fio: bind: %s\n", strerror(errno));
Jens Axboeb94cba42011-10-06 21:27:10 +02001254 close(sk);
Jens Axboe81179ee2011-10-04 12:42:06 +02001255 return -1;
1256 }
1257
Jens Axboe87aa8f12011-10-06 21:24:13 +02001258 return sk;
1259}
1260
1261static int fio_init_server_sock(void)
1262{
1263 struct sockaddr_un addr;
1264 fio_socklen_t len;
1265 mode_t mode;
1266 int sk;
1267
1268 sk = socket(AF_UNIX, SOCK_STREAM, 0);
1269 if (sk < 0) {
1270 log_err("fio: socket: %s\n", strerror(errno));
1271 return -1;
1272 }
1273
1274 mode = umask(000);
1275
1276 memset(&addr, 0, sizeof(addr));
1277 addr.sun_family = AF_UNIX;
1278 strcpy(addr.sun_path, bind_sock);
1279 unlink(bind_sock);
1280
1281 len = sizeof(addr.sun_family) + strlen(bind_sock) + 1;
1282
1283 if (bind(sk, (struct sockaddr *) &addr, len) < 0) {
1284 log_err("fio: bind: %s\n", strerror(errno));
Jens Axboeb94cba42011-10-06 21:27:10 +02001285 close(sk);
Jens Axboe87aa8f12011-10-06 21:24:13 +02001286 return -1;
1287 }
1288
1289 umask(mode);
1290 return sk;
1291}
1292
1293static int fio_init_server_connection(void)
1294{
Jens Axboebebe6392011-10-07 10:00:51 +02001295 char bind_str[128];
Jens Axboe87aa8f12011-10-06 21:24:13 +02001296 int sk;
1297
1298 dprint(FD_NET, "starting server\n");
1299
1300 if (!bind_sock)
1301 sk = fio_init_server_ip();
1302 else
1303 sk = fio_init_server_sock();
1304
1305 if (sk < 0)
1306 return sk;
1307
Jens Axboe811826b2011-10-24 09:11:50 +02001308 if (!bind_sock) {
1309 char *p, port[16];
1310 const void *src;
1311 int af;
1312
1313 if (use_ipv6) {
1314 af = AF_INET6;
1315 src = &saddr_in6.sin6_addr;
1316 } else {
1317 af = AF_INET;
1318 src = &saddr_in.sin_addr;
1319 }
1320
1321 p = (char *) inet_ntop(af, src, bind_str, sizeof(bind_str));
1322
1323 sprintf(port, ",%u", fio_net_port);
1324 if (p)
1325 strcat(p, port);
1326 else
1327 strcpy(bind_str, port);
1328 } else
Jens Axboebebe6392011-10-07 10:00:51 +02001329 strcpy(bind_str, bind_sock);
1330
1331 log_info("fio: server listening on %s\n", bind_str);
1332
Jens Axboe89c17072011-10-11 10:15:51 +02001333 if (listen(sk, 0) < 0) {
Jens Axboe81179ee2011-10-04 12:42:06 +02001334 log_err("fio: listen: %s\n", strerror(errno));
1335 return -1;
1336 }
1337
Jens Axboe87aa8f12011-10-06 21:24:13 +02001338 return sk;
1339}
1340
Jens Axboe3ec62ec2012-03-01 12:01:29 +01001341int fio_server_parse_host(const char *host, int *ipv6, struct in_addr *inp,
1342 struct in6_addr *inp6)
1343
1344{
1345 int ret = 0;
1346
1347 if (*ipv6)
1348 ret = inet_pton(AF_INET6, host, inp6);
1349 else
1350 ret = inet_pton(AF_INET, host, inp);
1351
1352 if (ret != 1) {
1353 struct hostent *hent;
1354
1355 hent = gethostbyname(host);
1356 if (!hent) {
1357 log_err("fio: failed to resolve <%s>\n", host);
1358 return 0;
1359 }
1360
1361 if (*ipv6) {
1362 if (hent->h_addrtype != AF_INET6) {
1363 log_info("fio: falling back to IPv4\n");
1364 *ipv6 = 0;
1365 } else
1366 memcpy(inp6, hent->h_addr_list[0], 16);
1367 }
1368 if (!*ipv6) {
1369 if (hent->h_addrtype != AF_INET) {
1370 log_err("fio: lookup type mismatch\n");
1371 return 0;
1372 }
1373 memcpy(inp, hent->h_addr_list[0], 4);
1374 }
1375 ret = 1;
1376 }
1377
1378 return !(ret == 1);
1379}
1380
Jens Axboe660a2bf2011-10-24 09:35:06 +02001381/*
1382 * Parse a host/ip/port string. Reads from 'str'.
1383 *
1384 * Outputs:
1385 *
1386 * For IPv4:
1387 * *ptr is the host, *port is the port, inp is the destination.
1388 * For IPv6:
1389 * *ptr is the host, *port is the port, inp6 is the dest, and *ipv6 is 1.
1390 * For local domain sockets:
1391 * *ptr is the filename, *is_sock is 1.
1392 */
Jens Axboebebe6392011-10-07 10:00:51 +02001393int fio_server_parse_string(const char *str, char **ptr, int *is_sock,
Jens Axboe811826b2011-10-24 09:11:50 +02001394 int *port, struct in_addr *inp,
1395 struct in6_addr *inp6, int *ipv6)
Jens Axboebebe6392011-10-07 10:00:51 +02001396{
Jens Axboe76867622011-10-25 09:52:51 +02001397 const char *host = str;
1398 char *portp;
Jens Axboe3ec62ec2012-03-01 12:01:29 +01001399 int lport = 0;
Jens Axboe76867622011-10-25 09:52:51 +02001400
Jens Axboebebe6392011-10-07 10:00:51 +02001401 *ptr = NULL;
1402 *is_sock = 0;
Jens Axboe6d2cf392011-10-07 13:19:28 +02001403 *port = fio_net_port;
Jens Axboe811826b2011-10-24 09:11:50 +02001404 *ipv6 = 0;
Jens Axboebebe6392011-10-07 10:00:51 +02001405
1406 if (!strncmp(str, "sock:", 5)) {
1407 *ptr = strdup(str + 5);
1408 *is_sock = 1;
Jens Axboebebe6392011-10-07 10:00:51 +02001409
Jens Axboe76867622011-10-25 09:52:51 +02001410 return 0;
1411 }
1412
1413 /*
1414 * Is it ip:<ip or host>:port
1415 */
1416 if (!strncmp(host, "ip:", 3))
1417 host += 3;
1418 else if (!strncmp(host, "ip4:", 4))
1419 host += 4;
1420 else if (!strncmp(host, "ip6:", 4)) {
1421 host += 4;
1422 *ipv6 = 1;
1423 } else if (host[0] == ':') {
1424 /* String is :port */
1425 host++;
1426 lport = atoi(host);
1427 if (!lport || lport > 65535) {
1428 log_err("fio: bad server port %u\n", port);
1429 return 1;
1430 }
1431 /* no hostname given, we are done */
1432 *port = lport;
1433 return 0;
1434 }
1435
1436 /*
1437 * If no port seen yet, check if there's a last ':' at the end
1438 */
1439 if (!lport) {
1440 portp = strchr(host, ',');
1441 if (portp) {
1442 *portp = '\0';
1443 portp++;
1444 lport = atoi(portp);
Jens Axboebebe6392011-10-07 10:00:51 +02001445 if (!lport || lport > 65535) {
1446 log_err("fio: bad server port %u\n", port);
1447 return 1;
1448 }
Jens Axboe76867622011-10-25 09:52:51 +02001449 }
1450 }
1451
1452 if (lport)
1453 *port = lport;
1454
1455 if (!strlen(host))
1456 return 0;
1457
1458 *ptr = strdup(host);
1459
Jens Axboe3ec62ec2012-03-01 12:01:29 +01001460 if (fio_server_parse_host(*ptr, ipv6, inp, inp6)) {
1461 free(*ptr);
1462 *ptr = NULL;
1463 return 1;
Jens Axboebebe6392011-10-07 10:00:51 +02001464 }
1465
1466 if (*port == 0)
1467 *port = fio_net_port;
1468
1469 return 0;
1470}
1471
Jens Axboe87aa8f12011-10-06 21:24:13 +02001472/*
1473 * Server arg should be one of:
1474 *
1475 * sock:/path/to/socket
1476 * ip:1.2.3.4
1477 * 1.2.3.4
1478 *
1479 * Where sock uses unix domain sockets, and ip binds the server to
1480 * a specific interface. If no arguments are given to the server, it
1481 * uses IP and binds to 0.0.0.0.
1482 *
1483 */
1484static int fio_handle_server_arg(void)
1485{
Jens Axboe6d2cf392011-10-07 13:19:28 +02001486 int port = fio_net_port;
Jens Axboea7de0a12011-10-07 12:55:14 +02001487 int is_sock, ret = 0;
Jens Axboebebe6392011-10-07 10:00:51 +02001488
Jens Axboe87aa8f12011-10-06 21:24:13 +02001489 saddr_in.sin_addr.s_addr = htonl(INADDR_ANY);
1490
1491 if (!fio_server_arg)
Jens Axboea7de0a12011-10-07 12:55:14 +02001492 goto out;
Jens Axboe87aa8f12011-10-06 21:24:13 +02001493
Jens Axboe4e5b8fb2011-10-07 10:03:44 +02001494 ret = fio_server_parse_string(fio_server_arg, &bind_sock, &is_sock,
Jens Axboe811826b2011-10-24 09:11:50 +02001495 &port, &saddr_in.sin_addr,
1496 &saddr_in6.sin6_addr, &use_ipv6);
Jens Axboe4e5b8fb2011-10-07 10:03:44 +02001497
1498 if (!is_sock && bind_sock) {
1499 free(bind_sock);
1500 bind_sock = NULL;
1501 }
1502
Jens Axboea7de0a12011-10-07 12:55:14 +02001503out:
Jens Axboe6d2cf392011-10-07 13:19:28 +02001504 fio_net_port = port;
1505 saddr_in.sin_port = htons(port);
Jens Axboe811826b2011-10-24 09:11:50 +02001506 saddr_in6.sin6_port = htons(port);
Jens Axboe4e5b8fb2011-10-07 10:03:44 +02001507 return ret;
Jens Axboe87aa8f12011-10-06 21:24:13 +02001508}
1509
1510static int fio_server(void)
1511{
1512 int sk, ret;
1513
1514 dprint(FD_NET, "starting server\n");
1515
1516 if (fio_handle_server_arg())
1517 return -1;
1518
1519 sk = fio_init_server_connection();
1520 if (sk < 0)
1521 return -1;
Jens Axboe81179ee2011-10-04 12:42:06 +02001522
1523 ret = accept_loop(sk);
Jens Axboe87aa8f12011-10-06 21:24:13 +02001524
Jens Axboe81179ee2011-10-04 12:42:06 +02001525 close(sk);
Jens Axboe87aa8f12011-10-06 21:24:13 +02001526
1527 if (fio_server_arg) {
1528 free(fio_server_arg);
1529 fio_server_arg = NULL;
1530 }
Jens Axboebebe6392011-10-07 10:00:51 +02001531 if (bind_sock)
1532 free(bind_sock);
Jens Axboe87aa8f12011-10-06 21:24:13 +02001533
Jens Axboe81179ee2011-10-04 12:42:06 +02001534 return ret;
1535}
1536
Jens Axboe7b821682011-10-11 12:16:32 +02001537void fio_server_got_signal(int signal)
Jens Axboe9abea482011-10-04 13:21:54 +02001538{
Jens Axboe7b821682011-10-11 12:16:32 +02001539 if (signal == SIGPIPE)
1540 server_fd = -1;
1541 else {
1542 log_info("\nfio: terminating on signal %d\n", signal);
1543 exit_backend = 1;
1544 }
Jens Axboe9abea482011-10-04 13:21:54 +02001545}
1546
Jens Axboe13755d92011-10-10 19:51:26 +02001547static int check_existing_pidfile(const char *pidfile)
1548{
1549 struct stat sb;
1550 char buf[16];
1551 pid_t pid;
1552 FILE *f;
1553
1554 if (stat(pidfile, &sb))
1555 return 0;
1556
1557 f = fopen(pidfile, "r");
1558 if (!f)
1559 return 0;
1560
Jens Axboebfc3b172011-10-10 21:16:55 +02001561 if (fread(buf, sb.st_size, 1, f) <= 0) {
Jens Axboe13755d92011-10-10 19:51:26 +02001562 fclose(f);
1563 return 1;
1564 }
1565 fclose(f);
1566
1567 pid = atoi(buf);
1568 if (kill(pid, SIGCONT) < 0)
Jens Axboeea5aa1b2011-10-11 11:45:35 +02001569 return errno != ESRCH;
Jens Axboe13755d92011-10-10 19:51:26 +02001570
1571 return 1;
1572}
1573
1574static int write_pid(pid_t pid, const char *pidfile)
Jens Axboe402668f2011-10-10 15:28:58 +02001575{
1576 FILE *fpid;
1577
1578 fpid = fopen(pidfile, "w");
1579 if (!fpid) {
1580 log_err("fio: failed opening pid file %s\n", pidfile);
Jens Axboe13755d92011-10-10 19:51:26 +02001581 return 1;
Jens Axboe402668f2011-10-10 15:28:58 +02001582 }
1583
1584 fprintf(fpid, "%u\n", (unsigned int) pid);
Jens Axboe13755d92011-10-10 19:51:26 +02001585 fclose(fpid);
1586 return 0;
Jens Axboe402668f2011-10-10 15:28:58 +02001587}
1588
1589/*
1590 * If pidfile is specified, background us.
1591 */
1592int fio_start_server(char *pidfile)
Jens Axboee46d8092011-10-03 09:11:02 +02001593{
1594 pid_t pid;
Jens Axboe402668f2011-10-10 15:28:58 +02001595 int ret;
Jens Axboee46d8092011-10-03 09:11:02 +02001596
Bruce Cran93bcfd22012-02-20 20:18:19 +01001597#if defined(WIN32)
Jens Axboe905c78b2012-03-06 19:34:22 +01001598 WSADATA wsd;
Jens Axboe3c3ed072012-03-27 09:12:39 +02001599 WSAStartup(MAKEWORD(2, 2), &wsd);
Bruce Cran93bcfd22012-02-20 20:18:19 +01001600#endif
1601
Jens Axboe402668f2011-10-10 15:28:58 +02001602 if (!pidfile)
Jens Axboee46d8092011-10-03 09:11:02 +02001603 return fio_server();
1604
Jens Axboe13755d92011-10-10 19:51:26 +02001605 if (check_existing_pidfile(pidfile)) {
1606 log_err("fio: pidfile %s exists and server appears alive\n",
1607 pidfile);
1608 return -1;
1609 }
1610
Jens Axboee46d8092011-10-03 09:11:02 +02001611 pid = fork();
1612 if (pid < 0) {
Jens Axboe13755d92011-10-10 19:51:26 +02001613 log_err("fio: failed server fork: %s", strerror(errno));
Jens Axboe402668f2011-10-10 15:28:58 +02001614 free(pidfile);
Jens Axboec28e8e82011-10-04 08:57:39 +02001615 return -1;
Jens Axboe402668f2011-10-10 15:28:58 +02001616 } else if (pid) {
Jens Axboe13755d92011-10-10 19:51:26 +02001617 int ret = write_pid(pid, pidfile);
1618
1619 exit(ret);
Jens Axboe402668f2011-10-10 15:28:58 +02001620 }
Jens Axboee46d8092011-10-03 09:11:02 +02001621
1622 setsid();
Jens Axboe13755d92011-10-10 19:51:26 +02001623 openlog("fio", LOG_NDELAY|LOG_NOWAIT|LOG_PID, LOG_USER);
1624 log_syslog = 1;
Jens Axboee46d8092011-10-03 09:11:02 +02001625 close(STDIN_FILENO);
1626 close(STDOUT_FILENO);
1627 close(STDERR_FILENO);
1628 f_out = NULL;
1629 f_err = NULL;
Jens Axboe402668f2011-10-10 15:28:58 +02001630
1631 ret = fio_server();
1632
1633 closelog();
1634 unlink(pidfile);
1635 free(pidfile);
1636 return ret;
Jens Axboee46d8092011-10-03 09:11:02 +02001637}
Jens Axboe87aa8f12011-10-06 21:24:13 +02001638
Jens Axboebebe6392011-10-07 10:00:51 +02001639void fio_server_set_arg(const char *arg)
Jens Axboe87aa8f12011-10-06 21:24:13 +02001640{
1641 fio_server_arg = strdup(arg);
1642}