blob: 8a6275deb6a817ed6519090089f47967f425cc19 [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{
Aaron Carrolla572bbf2013-04-12 07:55:02 +0200296 struct fio_net_cmd_reply *reply;
Jens Axboe40c60512012-03-27 16:03:04 +0200297
Aaron Carrolla572bbf2013-04-12 07:55:02 +0200298 reply = (struct fio_net_cmd_reply *) (uintptr_t) tag;
Jens Axboe40c60512012-03-27 16:03:04 +0200299 flist_add_tail(&reply->list, list);
300}
301
302static uint64_t alloc_reply(uint64_t tag, uint16_t opcode)
303{
304 struct fio_net_cmd_reply *reply;
305
306 reply = calloc(1, sizeof(*reply));
307 INIT_FLIST_HEAD(&reply->list);
308 gettimeofday(&reply->tv, NULL);
309 reply->saved_tag = tag;
310 reply->opcode = opcode;
311
312 return (uintptr_t) reply;
313}
314
315static void free_reply(uint64_t tag)
316{
Aaron Carrolla572bbf2013-04-12 07:55:02 +0200317 struct fio_net_cmd_reply *reply;
Jens Axboe40c60512012-03-27 16:03:04 +0200318
Aaron Carrolla572bbf2013-04-12 07:55:02 +0200319 reply = (struct fio_net_cmd_reply *) (uintptr_t) tag;
Jens Axboe40c60512012-03-27 16:03:04 +0200320 free(reply);
321}
322
Jens Axboe53bd8db2012-03-14 21:51:38 +0100323void fio_net_cmd_crc_pdu(struct fio_net_cmd *cmd, const void *pdu)
Jens Axboe132159a2011-09-30 15:01:32 -0600324{
325 uint32_t pdu_len;
326
Jens Axboe25dfa842012-02-29 10:01:34 +0100327 cmd->cmd_crc16 = __cpu_to_le16(fio_crc16(cmd, FIO_NET_CMD_CRC_SZ));
Jens Axboe132159a2011-09-30 15:01:32 -0600328
329 pdu_len = le32_to_cpu(cmd->pdu_len);
Jens Axboe1b427252012-03-14 15:03:03 +0100330 cmd->pdu_crc16 = __cpu_to_le16(fio_crc16(pdu, pdu_len));
331}
332
333void fio_net_cmd_crc(struct fio_net_cmd *cmd)
334{
335 fio_net_cmd_crc_pdu(cmd, cmd->payload);
Jens Axboe132159a2011-09-30 15:01:32 -0600336}
337
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200338int fio_net_send_cmd(int fd, uint16_t opcode, const void *buf, off_t size,
Jens Axboe40c60512012-03-27 16:03:04 +0200339 uint64_t *tagptr, struct flist_head *list)
Jens Axboe794d69c2011-10-01 08:48:50 -0600340{
Jens Axboe7f868312011-10-10 09:55:21 +0200341 struct fio_net_cmd *cmd = NULL;
342 size_t this_len, cur_len = 0;
Jens Axboe40c60512012-03-27 16:03:04 +0200343 uint64_t tag;
Jens Axboe794d69c2011-10-01 08:48:50 -0600344 int ret;
345
Jens Axboe40c60512012-03-27 16:03:04 +0200346 if (list) {
347 assert(tagptr);
348 tag = *tagptr = alloc_reply(*tagptr, opcode);
349 } else
350 tag = tagptr ? *tagptr : 0;
351
Jens Axboe794d69c2011-10-01 08:48:50 -0600352 do {
353 this_len = size;
Jens Axboeb9d2f302012-03-08 20:36:28 +0100354 if (this_len > FIO_SERVER_MAX_FRAGMENT_PDU)
355 this_len = FIO_SERVER_MAX_FRAGMENT_PDU;
Jens Axboe794d69c2011-10-01 08:48:50 -0600356
Jens Axboe7f868312011-10-10 09:55:21 +0200357 if (!cmd || cur_len < sizeof(*cmd) + this_len) {
358 if (cmd)
359 free(cmd);
360
361 cur_len = sizeof(*cmd) + this_len;
362 cmd = malloc(cur_len);
363 }
Jens Axboe794d69c2011-10-01 08:48:50 -0600364
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200365 fio_init_net_cmd(cmd, opcode, buf, this_len, tag);
Jens Axboe794d69c2011-10-01 08:48:50 -0600366
367 if (this_len < size)
Jens Axboeddcc0b62011-10-03 14:45:27 +0200368 cmd->flags = __cpu_to_le32(FIO_NET_CMD_F_MORE);
Jens Axboe794d69c2011-10-01 08:48:50 -0600369
370 fio_net_cmd_crc(cmd);
371
372 ret = fio_send_data(fd, cmd, sizeof(*cmd) + this_len);
Jens Axboe794d69c2011-10-01 08:48:50 -0600373 size -= this_len;
374 buf += this_len;
375 } while (!ret && size);
376
Jens Axboe40c60512012-03-27 16:03:04 +0200377 if (list) {
378 if (ret)
379 free_reply(tag);
380 else
381 add_reply(tag, list);
382 }
383
Jens Axboe7f868312011-10-10 09:55:21 +0200384 if (cmd)
385 free(cmd);
386
Jens Axboe794d69c2011-10-01 08:48:50 -0600387 return ret;
388}
389
Jens Axboe89c17072011-10-11 10:15:51 +0200390static int fio_net_send_simple_stack_cmd(int sk, uint16_t opcode, uint64_t tag)
Jens Axboe132159a2011-09-30 15:01:32 -0600391{
Jens Axboe178cde92011-10-05 22:14:31 +0200392 struct fio_net_cmd cmd;
Jens Axboe132159a2011-09-30 15:01:32 -0600393
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200394 fio_init_net_cmd(&cmd, opcode, NULL, 0, tag);
Jens Axboe132159a2011-09-30 15:01:32 -0600395 fio_net_cmd_crc(&cmd);
396
397 return fio_send_data(sk, &cmd, sizeof(cmd));
398}
399
Jens Axboe89c17072011-10-11 10:15:51 +0200400/*
401 * If 'list' is non-NULL, then allocate and store the sent command for
402 * later verification.
403 */
404int fio_net_send_simple_cmd(int sk, uint16_t opcode, uint64_t tag,
405 struct flist_head *list)
406{
Jens Axboe89c17072011-10-11 10:15:51 +0200407 int ret;
408
Jens Axboe40c60512012-03-27 16:03:04 +0200409 if (list)
410 tag = alloc_reply(tag, opcode);
Jens Axboe89c17072011-10-11 10:15:51 +0200411
Jens Axboe40c60512012-03-27 16:03:04 +0200412 ret = fio_net_send_simple_stack_cmd(sk, opcode, tag);
Jens Axboe89c17072011-10-11 10:15:51 +0200413 if (ret) {
Jens Axboe40c60512012-03-27 16:03:04 +0200414 if (list)
415 free_reply(tag);
416
Jens Axboe89c17072011-10-11 10:15:51 +0200417 return ret;
418 }
419
Jens Axboe40c60512012-03-27 16:03:04 +0200420 if (list)
421 add_reply(tag, list);
422
Jens Axboe89c17072011-10-11 10:15:51 +0200423 return 0;
424}
425
Jens Axboe122c7722012-03-19 09:13:15 +0100426int fio_net_send_quit(int sk)
Jens Axboe437377e2011-10-01 08:31:30 -0600427{
Jens Axboe46c48f12011-10-01 12:50:51 -0600428 dprint(FD_NET, "server: sending quit\n");
Jens Axboe122c7722012-03-19 09:13:15 +0100429
Jens Axboe8c953072012-03-20 14:35:35 +0100430 return fio_net_send_simple_cmd(sk, FIO_NET_CMD_QUIT, 0, NULL);
Jens Axboe437377e2011-10-01 08:31:30 -0600431}
432
Jens Axboef58bd2a2012-03-27 10:06:42 +0200433static int fio_net_send_ack(int sk, struct fio_net_cmd *cmd, int error,
434 int signal)
Jens Axboe122c7722012-03-19 09:13:15 +0100435{
436 struct cmd_end_pdu epdu;
Jens Axboef58bd2a2012-03-27 10:06:42 +0200437 uint64_t tag = 0;
Jens Axboe122c7722012-03-19 09:13:15 +0100438
Jens Axboef58bd2a2012-03-27 10:06:42 +0200439 if (cmd)
440 tag = cmd->tag;
Jens Axboe122c7722012-03-19 09:13:15 +0100441
442 epdu.error = __cpu_to_le32(error);
443 epdu.signal = __cpu_to_le32(signal);
Jens Axboe40c60512012-03-27 16:03:04 +0200444 return fio_net_send_cmd(sk, FIO_NET_CMD_STOP, &epdu, sizeof(epdu), &tag, NULL);
Jens Axboef58bd2a2012-03-27 10:06:42 +0200445}
446
447int fio_net_send_stop(int sk, int error, int signal)
448{
449 dprint(FD_NET, "server: sending stop (%d, %d)\n", error, signal);
450 return fio_net_send_ack(sk, NULL, error, signal);
Jens Axboe122c7722012-03-19 09:13:15 +0100451}
452
453static void fio_server_add_fork_item(pid_t pid, struct flist_head *list)
454{
455 struct fio_fork_item *ffi;
456
457 ffi = malloc(sizeof(*ffi));
458 ffi->exitval = 0;
459 ffi->signal = 0;
460 ffi->exited = 0;
461 ffi->pid = pid;
462 flist_add_tail(&ffi->list, list);
463}
464
465static void fio_server_add_conn_pid(pid_t pid)
466{
467 dprint(FD_NET, "server: forked off connection job (pid=%u)\n", pid);
468 fio_server_add_fork_item(pid, &conn_list);
469}
470
471static void fio_server_add_job_pid(pid_t pid)
472{
473 dprint(FD_NET, "server: forked off job job (pid=%u)\n", pid);
474 fio_server_add_fork_item(pid, &job_list);
475}
476
477static void fio_server_check_fork_item(struct fio_fork_item *ffi)
478{
479 int ret, status;
480
481 ret = waitpid(ffi->pid, &status, WNOHANG);
482 if (ret < 0) {
483 if (errno == ECHILD) {
484 log_err("fio: connection pid %u disappeared\n", ffi->pid);
485 ffi->exited = 1;
486 } else
487 log_err("fio: waitpid: %s\n", strerror(errno));
488 } else if (ret == ffi->pid) {
489 if (WIFSIGNALED(status)) {
490 ffi->signal = WTERMSIG(status);
491 ffi->exited = 1;
492 }
493 if (WIFEXITED(status)) {
494 if (WEXITSTATUS(status))
495 ffi->exitval = WEXITSTATUS(status);
496 ffi->exited = 1;
497 }
498 }
499}
500
501static void fio_server_fork_item_done(struct fio_fork_item *ffi)
502{
503 dprint(FD_NET, "pid %u exited, sig=%u, exitval=%d\n", ffi->pid, ffi->signal, ffi->exitval);
504
505 /*
506 * Fold STOP and QUIT...
507 */
508 fio_net_send_stop(server_fd, ffi->exitval, ffi->signal);
509 fio_net_send_quit(server_fd);
510 flist_del(&ffi->list);
511 free(ffi);
512}
513
Jens Axboe54163252012-03-23 12:25:18 +0100514static void fio_server_check_fork_items(struct flist_head *list)
Jens Axboe122c7722012-03-19 09:13:15 +0100515{
516 struct flist_head *entry, *tmp;
517 struct fio_fork_item *ffi;
518
519 flist_for_each_safe(entry, tmp, list) {
520 ffi = flist_entry(entry, struct fio_fork_item, list);
521
522 fio_server_check_fork_item(ffi);
523
524 if (ffi->exited)
525 fio_server_fork_item_done(ffi);
526 }
527}
528
529static void fio_server_check_jobs(void)
530{
Jens Axboe54163252012-03-23 12:25:18 +0100531 fio_server_check_fork_items(&job_list);
Jens Axboe122c7722012-03-19 09:13:15 +0100532}
533
534static void fio_server_check_conns(void)
535{
Jens Axboe54163252012-03-23 12:25:18 +0100536 fio_server_check_fork_items(&conn_list);
Jens Axboe122c7722012-03-19 09:13:15 +0100537}
538
Jens Axboeb9d2f302012-03-08 20:36:28 +0100539static int handle_run_cmd(struct fio_net_cmd *cmd)
Jens Axboe132159a2011-09-30 15:01:32 -0600540{
Jens Axboe122c7722012-03-19 09:13:15 +0100541 pid_t pid;
Jens Axboea64e88d2011-10-03 14:20:01 +0200542 int ret;
Jens Axboe132159a2011-09-30 15:01:32 -0600543
Jens Axboe122c7722012-03-19 09:13:15 +0100544 set_genesis_time();
545
546 pid = fork();
547 if (pid) {
548 fio_server_add_job_pid(pid);
549 return 0;
550 }
551
Jens Axboe2e1df072012-02-09 11:15:02 +0100552 ret = fio_backend();
Jens Axboe2bb3f0a2012-03-28 12:22:40 +0200553 free_threads_shm();
Jens Axboe122c7722012-03-19 09:13:15 +0100554 _exit(ret);
Jens Axboe81179ee2011-10-04 12:42:06 +0200555}
556
Jens Axboeb9d2f302012-03-08 20:36:28 +0100557static int handle_job_cmd(struct fio_net_cmd *cmd)
558{
Jens Axboe46bcd492012-03-14 11:31:21 +0100559 struct cmd_job_pdu *pdu = (struct cmd_job_pdu *) cmd->payload;
560 void *buf = pdu->buf;
Jens Axboeb9d2f302012-03-08 20:36:28 +0100561 struct cmd_start_pdu spdu;
562
Jens Axboe46bcd492012-03-14 11:31:21 +0100563 pdu->buf_len = le32_to_cpu(pdu->buf_len);
564 pdu->client_type = le32_to_cpu(pdu->client_type);
565
566 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 Axboe46bcd492012-03-14 11:31:21 +0100603 if (parse_cmd_line(clp->lines, argv, clp->client_type)) {
Jens Axboe122c7722012-03-19 09:13:15 +0100604 fio_net_send_quit(server_fd);
Jens Axboefa2ea802011-10-08 21:07:29 +0200605 free(argv);
Jens Axboe81179ee2011-10-04 12:42:06 +0200606 return -1;
Jens Axboee6d1c662011-10-05 20:41:06 +0200607 }
Jens Axboe81179ee2011-10-04 12:42:06 +0200608
Jens Axboefa2ea802011-10-08 21:07:29 +0200609 free(argv);
610
Jens Axboeb9d2f302012-03-08 20:36:28 +0100611 spdu.jobs = cpu_to_le32(thread_number);
Jens Axboe1e5324e2012-11-14 14:25:31 -0700612 spdu.stat_outputs = cpu_to_le32(stat_number);
Jens Axboe40c60512012-03-27 16:03:04 +0200613 fio_net_send_cmd(server_fd, FIO_NET_CMD_START, &spdu, sizeof(spdu), NULL, NULL);
Jens Axboeb9d2f302012-03-08 20:36:28 +0100614 return 0;
Jens Axboe132159a2011-09-30 15:01:32 -0600615}
616
Jens Axboec28e8e82011-10-04 08:57:39 +0200617static int handle_probe_cmd(struct fio_net_cmd *cmd)
618{
619 struct cmd_probe_pdu probe;
Jens Axboe40c60512012-03-27 16:03:04 +0200620 uint64_t tag = cmd->tag;
Jens Axboec28e8e82011-10-04 08:57:39 +0200621
Jens Axboe89c17072011-10-11 10:15:51 +0200622 dprint(FD_NET, "server: sending probe reply\n");
623
Jens Axboec28e8e82011-10-04 08:57:39 +0200624 memset(&probe, 0, sizeof(probe));
625 gethostname((char *) probe.hostname, sizeof(probe.hostname));
Jens Axboe0dcebdf2013-01-23 15:42:16 -0700626#ifdef CONFIG_BIG_ENDIAN
Jens Axboe6eb24792011-10-04 15:00:30 +0200627 probe.bigendian = 1;
628#endif
Jens Axboe750db472012-04-16 11:44:48 +0200629 strncpy((char *) probe.fio_version, fio_version_string, sizeof(probe.fio_version));
Jens Axboec28e8e82011-10-04 08:57:39 +0200630
Jens Axboecca84642011-10-07 12:47:57 +0200631 probe.os = FIO_OS;
632 probe.arch = FIO_ARCH;
Jens Axboe38fdef22011-10-11 14:30:06 +0200633 probe.bpp = sizeof(void *);
Jens Axboed31e26d2012-03-28 21:38:24 +0200634 probe.cpus = __cpu_to_le32(cpus_online());
635 probe.flags = 0;
Jens Axboe38fdef22011-10-11 14:30:06 +0200636
Jens Axboe40c60512012-03-27 16:03:04 +0200637 return fio_net_send_cmd(server_fd, FIO_NET_CMD_PROBE, &probe, sizeof(probe), &tag, NULL);
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200638}
639
640static int handle_send_eta_cmd(struct fio_net_cmd *cmd)
641{
642 struct jobs_eta *je;
643 size_t size;
Jens Axboe40c60512012-03-27 16:03:04 +0200644 uint64_t tag = cmd->tag;
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200645 int i;
646
Jens Axboeb814fb22011-10-12 09:20:34 +0200647 if (!thread_number)
648 return 0;
649
650 size = sizeof(*je) + thread_number * sizeof(char) + 1;
Jens Axboe7f868312011-10-10 09:55:21 +0200651 je = malloc(size);
652 memset(je, 0, size);
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200653
654 if (!calc_thread_status(je, 1)) {
655 free(je);
656 return 0;
657 }
658
659 dprint(FD_NET, "server sending status\n");
660
661 je->nr_running = cpu_to_le32(je->nr_running);
662 je->nr_ramp = cpu_to_le32(je->nr_ramp);
663 je->nr_pending = cpu_to_le32(je->nr_pending);
664 je->files_open = cpu_to_le32(je->files_open);
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200665
Jens Axboe298921d2012-09-24 18:47:01 +0200666 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
Jens Axboe3e47bd22012-02-29 13:45:02 +0100667 je->m_rate[i] = cpu_to_le32(je->m_rate[i]);
668 je->t_rate[i] = cpu_to_le32(je->t_rate[i]);
669 je->m_iops[i] = cpu_to_le32(je->m_iops[i]);
670 je->t_iops[i] = cpu_to_le32(je->t_iops[i]);
Jens Axboe16725bb2013-04-11 12:43:05 +0200671 je->rate[i] = cpu_to_le32(je->rate[i]);
672 je->iops[i] = cpu_to_le32(je->iops[i]);
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200673 }
674
Jens Axboec1970b92012-03-06 15:37:40 +0100675 je->elapsed_sec = cpu_to_le64(je->elapsed_sec);
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200676 je->eta_sec = cpu_to_le64(je->eta_sec);
Jens Axboe8c621fb2012-03-08 12:30:48 +0100677 je->nr_threads = cpu_to_le32(je->nr_threads);
Jens Axboeb7f05eb2012-05-11 20:33:02 +0200678 je->is_pow2 = cpu_to_le32(je->is_pow2);
Jens Axboeed2c0a12013-04-11 12:55:16 +0200679 je->unit_base = cpu_to_le32(je->unit_base);
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200680
Jens Axboe40c60512012-03-27 16:03:04 +0200681 fio_net_send_cmd(server_fd, FIO_NET_CMD_ETA, je, size, &tag, NULL);
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200682 free(je);
683 return 0;
Jens Axboec28e8e82011-10-04 08:57:39 +0200684}
685
Jens Axboe40c60512012-03-27 16:03:04 +0200686static int send_update_job_reply(int fd, uint64_t __tag, int error)
687{
688 uint64_t tag = __tag;
689 uint32_t pdu_error;
690
691 pdu_error = __cpu_to_le32(error);
692 return fio_net_send_cmd(fd, FIO_NET_CMD_UPDATE_JOB, &pdu_error, sizeof(pdu_error), &tag, NULL);
693}
694
Jens Axboef58bd2a2012-03-27 10:06:42 +0200695static int handle_update_job_cmd(struct fio_net_cmd *cmd)
696{
697 struct cmd_add_job_pdu *pdu = (struct cmd_add_job_pdu *) cmd->payload;
698 struct thread_data *td;
699 uint32_t tnumber;
700
701 tnumber = le32_to_cpu(pdu->thread_number);
702
703 dprint(FD_NET, "server: updating options for job %u\n", tnumber);
704
Jens Axboe30ffacb2012-03-28 09:15:05 +0200705 if (!tnumber || tnumber > thread_number) {
Jens Axboe40c60512012-03-27 16:03:04 +0200706 send_update_job_reply(server_fd, cmd->tag, ENODEV);
Jens Axboef58bd2a2012-03-27 10:06:42 +0200707 return 0;
708 }
709
Jens Axboe30ffacb2012-03-28 09:15:05 +0200710 td = &threads[tnumber - 1];
Jens Axboef58bd2a2012-03-27 10:06:42 +0200711 convert_thread_options_to_cpu(&td->o, &pdu->top);
Jens Axboe40c60512012-03-27 16:03:04 +0200712 send_update_job_reply(server_fd, cmd->tag, 0);
Jens Axboef58bd2a2012-03-27 10:06:42 +0200713 return 0;
714}
715
Jens Axboe132159a2011-09-30 15:01:32 -0600716static int handle_command(struct fio_net_cmd *cmd)
717{
718 int ret;
719
Jens Axboe4b91ee82013-02-25 10:18:33 +0100720 dprint(FD_NET, "server: got op [%s], pdu=%u, tag=%llx\n",
721 fio_server_op(cmd->opcode), cmd->pdu_len,
722 (unsigned long long) 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 Axboe67bf9822013-01-10 11:23:19 +0100828 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);
Steven Noonanad705bc2013-04-08 15:05:25 -0700944 dst->unit_base = cpu_to_le32(src->unit_base);
Jens Axboea64e88d2011-10-03 14:20:01 +0200945 dst->groupid = cpu_to_le32(src->groupid);
Jens Axboe771e58b2013-01-30 12:56:23 +0100946 dst->unified_rw_rep = cpu_to_le32(src->unified_rw_rep);
Jens Axboea64e88d2011-10-03 14:20:01 +0200947}
948
949/*
950 * Send a CMD_TS, which packs struct thread_stat and group_run_stats
951 * into a single payload.
952 */
953void fio_server_send_ts(struct thread_stat *ts, struct group_run_stats *rs)
954{
955 struct cmd_ts_pdu p;
956 int i, j;
957
Jens Axboe60efd142011-10-04 13:30:11 +0200958 dprint(FD_NET, "server sending end stats\n");
959
Jens Axboe317b3c82011-10-03 21:47:27 +0200960 memset(&p, 0, sizeof(p));
961
Jens Axboea64e88d2011-10-03 14:20:01 +0200962 strcpy(p.ts.name, ts->name);
963 strcpy(p.ts.verror, ts->verror);
964 strcpy(p.ts.description, ts->description);
965
Jens Axboe2f122b12012-03-15 13:10:19 +0100966 p.ts.error = cpu_to_le32(ts->error);
967 p.ts.thread_number = cpu_to_le32(ts->thread_number);
968 p.ts.groupid = cpu_to_le32(ts->groupid);
969 p.ts.pid = cpu_to_le32(ts->pid);
970 p.ts.members = cpu_to_le32(ts->members);
Jens Axboe771e58b2013-01-30 12:56:23 +0100971 p.ts.unified_rw_rep = cpu_to_le32(ts->unified_rw_rep);
Jens Axboea64e88d2011-10-03 14:20:01 +0200972
Jens Axboe298921d2012-09-24 18:47:01 +0200973 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
Jens Axboea64e88d2011-10-03 14:20:01 +0200974 convert_io_stat(&p.ts.clat_stat[i], &ts->clat_stat[i]);
975 convert_io_stat(&p.ts.slat_stat[i], &ts->slat_stat[i]);
976 convert_io_stat(&p.ts.lat_stat[i], &ts->lat_stat[i]);
977 convert_io_stat(&p.ts.bw_stat[i], &ts->bw_stat[i]);
978 }
979
980 p.ts.usr_time = cpu_to_le64(ts->usr_time);
981 p.ts.sys_time = cpu_to_le64(ts->sys_time);
982 p.ts.ctx = cpu_to_le64(ts->ctx);
983 p.ts.minf = cpu_to_le64(ts->minf);
984 p.ts.majf = cpu_to_le64(ts->majf);
985 p.ts.clat_percentiles = cpu_to_le64(ts->clat_percentiles);
Jens Axboe802ad4a2011-10-05 09:51:58 +0200986
987 for (i = 0; i < FIO_IO_U_LIST_MAX_LEN; i++) {
Jens Axboecfc03e42011-10-12 21:20:42 +0200988 fio_fp64_t *src = &ts->percentile_list[i];
989 fio_fp64_t *dst = &p.ts.percentile_list[i];
Jens Axboe802ad4a2011-10-05 09:51:58 +0200990
Jens Axboecfc03e42011-10-12 21:20:42 +0200991 dst->u.i = __cpu_to_le64(fio_double_to_uint64(src->u.f));
Jens Axboe802ad4a2011-10-05 09:51:58 +0200992 }
Jens Axboea64e88d2011-10-03 14:20:01 +0200993
994 for (i = 0; i < FIO_IO_U_MAP_NR; i++) {
995 p.ts.io_u_map[i] = cpu_to_le32(ts->io_u_map[i]);
996 p.ts.io_u_submit[i] = cpu_to_le32(ts->io_u_submit[i]);
997 p.ts.io_u_complete[i] = cpu_to_le32(ts->io_u_complete[i]);
998 }
999
1000 for (i = 0; i < FIO_IO_U_LAT_U_NR; i++) {
1001 p.ts.io_u_lat_u[i] = cpu_to_le32(ts->io_u_lat_u[i]);
1002 p.ts.io_u_lat_m[i] = cpu_to_le32(ts->io_u_lat_m[i]);
1003 }
1004
Jens Axboe298921d2012-09-24 18:47:01 +02001005 for (i = 0; i < DDIR_RWDIR_CNT; i++)
Jens Axboea64e88d2011-10-03 14:20:01 +02001006 for (j = 0; j < FIO_IO_U_PLAT_NR; j++)
1007 p.ts.io_u_plat[i][j] = cpu_to_le32(ts->io_u_plat[i][j]);
1008
Jens Axboe78799de2013-01-29 20:53:52 +01001009 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
Jens Axboea64e88d2011-10-03 14:20:01 +02001010 p.ts.total_io_u[i] = cpu_to_le64(ts->total_io_u[i]);
Jens Axboe93eee042011-10-03 21:08:48 +02001011 p.ts.short_io_u[i] = cpu_to_le64(ts->short_io_u[i]);
Jens Axboea64e88d2011-10-03 14:20:01 +02001012 }
1013
Jens Axboe93eee042011-10-03 21:08:48 +02001014 p.ts.total_submit = cpu_to_le64(ts->total_submit);
Jens Axboea64e88d2011-10-03 14:20:01 +02001015 p.ts.total_complete = cpu_to_le64(ts->total_complete);
1016
Jens Axboe298921d2012-09-24 18:47:01 +02001017 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
Jens Axboea64e88d2011-10-03 14:20:01 +02001018 p.ts.io_bytes[i] = cpu_to_le64(ts->io_bytes[i]);
1019 p.ts.runtime[i] = cpu_to_le64(ts->runtime[i]);
1020 }
1021
1022 p.ts.total_run_time = cpu_to_le64(ts->total_run_time);
1023 p.ts.continue_on_error = cpu_to_le16(ts->continue_on_error);
1024 p.ts.total_err_count = cpu_to_le64(ts->total_err_count);
Jens Axboeddcc0b62011-10-03 14:45:27 +02001025 p.ts.first_error = cpu_to_le32(ts->first_error);
1026 p.ts.kb_base = cpu_to_le32(ts->kb_base);
Steven Noonanad705bc2013-04-08 15:05:25 -07001027 p.ts.unit_base = cpu_to_le32(ts->unit_base);
Jens Axboea64e88d2011-10-03 14:20:01 +02001028
1029 convert_gs(&p.rs, rs);
1030
Jens Axboe40c60512012-03-27 16:03:04 +02001031 fio_net_send_cmd(server_fd, FIO_NET_CMD_TS, &p, sizeof(p), NULL, NULL);
Jens Axboea64e88d2011-10-03 14:20:01 +02001032}
1033
1034void fio_server_send_gs(struct group_run_stats *rs)
1035{
1036 struct group_run_stats gs;
1037
Jens Axboe60efd142011-10-04 13:30:11 +02001038 dprint(FD_NET, "server sending group run stats\n");
1039
Jens Axboea64e88d2011-10-03 14:20:01 +02001040 convert_gs(&gs, rs);
Jens Axboe40c60512012-03-27 16:03:04 +02001041 fio_net_send_cmd(server_fd, FIO_NET_CMD_GS, &gs, sizeof(gs), NULL, NULL);
Jens Axboecf451d12011-10-03 16:48:30 +02001042}
1043
Jens Axboed09a64a2011-10-13 11:38:56 +02001044static void convert_agg(struct disk_util_agg *dst, struct disk_util_agg *src)
1045{
1046 int i;
1047
1048 for (i = 0; i < 2; i++) {
1049 dst->ios[i] = cpu_to_le32(src->ios[i]);
1050 dst->merges[i] = cpu_to_le32(src->merges[i]);
1051 dst->sectors[i] = cpu_to_le64(src->sectors[i]);
1052 dst->ticks[i] = cpu_to_le32(src->ticks[i]);
1053 }
1054
1055 dst->io_ticks = cpu_to_le32(src->io_ticks);
1056 dst->time_in_queue = cpu_to_le32(src->time_in_queue);
1057 dst->slavecount = cpu_to_le32(src->slavecount);
1058 dst->max_util.u.i = __cpu_to_le64(fio_double_to_uint64(src->max_util.u.f));
1059}
1060
1061static void convert_dus(struct disk_util_stat *dst, struct disk_util_stat *src)
1062{
1063 int i;
1064
1065 strcpy((char *) dst->name, (char *) src->name);
1066
1067 for (i = 0; i < 2; i++) {
1068 dst->ios[i] = cpu_to_le32(src->ios[i]);
1069 dst->merges[i] = cpu_to_le32(src->merges[i]);
1070 dst->sectors[i] = cpu_to_le64(src->sectors[i]);
1071 dst->ticks[i] = cpu_to_le32(src->ticks[i]);
1072 }
1073
1074 dst->io_ticks = cpu_to_le32(src->io_ticks);
1075 dst->time_in_queue = cpu_to_le32(src->time_in_queue);
1076 dst->msec = cpu_to_le64(src->msec);
1077}
1078
1079void fio_server_send_du(void)
1080{
1081 struct disk_util *du;
1082 struct flist_head *entry;
1083 struct cmd_du_pdu pdu;
1084
1085 dprint(FD_NET, "server: sending disk_util %d\n", !flist_empty(&disk_list));
1086
Jens Axboe0766d922011-10-13 12:02:08 +02001087 memset(&pdu, 0, sizeof(pdu));
1088
Jens Axboed09a64a2011-10-13 11:38:56 +02001089 flist_for_each(entry, &disk_list) {
1090 du = flist_entry(entry, struct disk_util, list);
1091
1092 convert_dus(&pdu.dus, &du->dus);
1093 convert_agg(&pdu.agg, &du->agg);
1094
Jens Axboe40c60512012-03-27 16:03:04 +02001095 fio_net_send_cmd(server_fd, FIO_NET_CMD_DU, &pdu, sizeof(pdu), NULL, NULL);
Jens Axboed09a64a2011-10-13 11:38:56 +02001096 }
1097}
1098
Jens Axboe53bd8db2012-03-14 21:51:38 +01001099/*
1100 * Send a command with a separate PDU, not inlined in the command
1101 */
1102static int fio_send_cmd_ext_pdu(int sk, uint16_t opcode, const void *buf,
1103 off_t size, uint64_t tag, uint32_t flags)
1104{
1105 struct fio_net_cmd cmd;
1106 struct iovec iov[2];
1107
1108 iov[0].iov_base = &cmd;
1109 iov[0].iov_len = sizeof(cmd);
1110 iov[1].iov_base = (void *) buf;
1111 iov[1].iov_len = size;
1112
1113 __fio_init_net_cmd(&cmd, opcode, size, tag);
1114 cmd.flags = __cpu_to_le32(flags);
1115 fio_net_cmd_crc_pdu(&cmd, buf);
1116
Jens Axboe8c953072012-03-20 14:35:35 +01001117 return fio_sendv_data(sk, iov, 2);
Jens Axboe53bd8db2012-03-14 21:51:38 +01001118}
1119
Jens Axboe1b427252012-03-14 15:03:03 +01001120int fio_send_iolog(struct thread_data *td, struct io_log *log, const char *name)
1121{
Jens Axboef5ed7652012-03-14 16:28:07 +01001122 struct cmd_iolog_pdu pdu;
Jens Axboe1b427252012-03-14 15:03:03 +01001123 z_stream stream;
1124 void *out_pdu;
Jens Axboe53bd8db2012-03-14 21:51:38 +01001125 int i, ret = 0;
Jens Axboe1b427252012-03-14 15:03:03 +01001126
Jens Axboe2f122b12012-03-15 13:10:19 +01001127 pdu.thread_number = cpu_to_le32(td->thread_number);
Jens Axboef5ed7652012-03-14 16:28:07 +01001128 pdu.nr_samples = __cpu_to_le32(log->nr_samples);
1129 pdu.log_type = cpu_to_le32(log->log_type);
1130 strcpy((char *) pdu.name, name);
Jens Axboe1b427252012-03-14 15:03:03 +01001131
1132 for (i = 0; i < log->nr_samples; i++) {
Jens Axboef5ed7652012-03-14 16:28:07 +01001133 struct io_sample *s = &log->log[i];
Jens Axboe1b427252012-03-14 15:03:03 +01001134
Jens Axboef5ed7652012-03-14 16:28:07 +01001135 s->time = cpu_to_le64(s->time);
1136 s->val = cpu_to_le64(s->val);
1137 s->ddir = cpu_to_le32(s->ddir);
1138 s->bs = cpu_to_le32(s->bs);
Jens Axboe1b427252012-03-14 15:03:03 +01001139 }
1140
1141 /*
1142 * Dirty - since the log is potentially huge, compress it into
1143 * FIO_SERVER_MAX_FRAGMENT_PDU chunks and let the receiving
1144 * side defragment it.
1145 */
1146 out_pdu = malloc(FIO_SERVER_MAX_FRAGMENT_PDU);
1147
1148 stream.zalloc = Z_NULL;
1149 stream.zfree = Z_NULL;
1150 stream.opaque = Z_NULL;
1151
1152 if (deflateInit(&stream, Z_DEFAULT_COMPRESSION) != Z_OK) {
Jens Axboe53bd8db2012-03-14 21:51:38 +01001153 ret = 1;
1154 goto err;
Jens Axboe1b427252012-03-14 15:03:03 +01001155 }
1156
1157 /*
Jens Axboef5ed7652012-03-14 16:28:07 +01001158 * Send header first, it's not compressed.
Jens Axboe1b427252012-03-14 15:03:03 +01001159 */
Jens Axboe53bd8db2012-03-14 21:51:38 +01001160 ret = fio_send_cmd_ext_pdu(server_fd, FIO_NET_CMD_IOLOG, &pdu,
1161 sizeof(pdu), 0, FIO_NET_CMD_F_MORE);
1162 if (ret)
1163 goto err_zlib;
Jens Axboe1b427252012-03-14 15:03:03 +01001164
Jens Axboef5ed7652012-03-14 16:28:07 +01001165 stream.next_in = (void *) log->log;
1166 stream.avail_in = log->nr_samples * sizeof(struct io_sample);
Jens Axboe1b427252012-03-14 15:03:03 +01001167
1168 do {
Jens Axboe53bd8db2012-03-14 21:51:38 +01001169 unsigned int this_len, flags = 0;
1170 int ret;
Jens Axboe1b427252012-03-14 15:03:03 +01001171
1172 stream.avail_out = FIO_SERVER_MAX_FRAGMENT_PDU;
1173 stream.next_out = out_pdu;
Jens Axboe3c547fe2012-03-14 21:53:00 +01001174 ret = deflate(&stream, Z_FINISH);
1175 /* may be Z_OK, or Z_STREAM_END */
1176 if (ret < 0)
1177 goto err_zlib;
Jens Axboe1b427252012-03-14 15:03:03 +01001178
1179 this_len = FIO_SERVER_MAX_FRAGMENT_PDU - stream.avail_out;
1180
Jens Axboe1b427252012-03-14 15:03:03 +01001181 if (stream.avail_in)
Jens Axboe53bd8db2012-03-14 21:51:38 +01001182 flags = FIO_NET_CMD_F_MORE;
Jens Axboe1b427252012-03-14 15:03:03 +01001183
Jens Axboe53bd8db2012-03-14 21:51:38 +01001184 ret = fio_send_cmd_ext_pdu(server_fd, FIO_NET_CMD_IOLOG,
1185 out_pdu, this_len, 0, flags);
1186 if (ret)
1187 goto err_zlib;
Jens Axboe1b427252012-03-14 15:03:03 +01001188 } while (stream.avail_in);
1189
Jens Axboe53bd8db2012-03-14 21:51:38 +01001190err_zlib:
Jens Axboe1b427252012-03-14 15:03:03 +01001191 deflateEnd(&stream);
Jens Axboe53bd8db2012-03-14 21:51:38 +01001192err:
1193 free(out_pdu);
1194 return ret;
Jens Axboe1b427252012-03-14 15:03:03 +01001195}
1196
Jens Axboe2f122b12012-03-15 13:10:19 +01001197void fio_server_send_add_job(struct thread_data *td)
Jens Axboe807f9972012-03-02 10:25:24 +01001198{
1199 struct cmd_add_job_pdu pdu;
Jens Axboe807f9972012-03-02 10:25:24 +01001200
Jens Axboe731e30a2012-03-14 16:35:37 +01001201 memset(&pdu, 0, sizeof(pdu));
Jens Axboe2f122b12012-03-15 13:10:19 +01001202 pdu.thread_number = cpu_to_le32(td->thread_number);
1203 pdu.groupid = cpu_to_le32(td->groupid);
1204 convert_thread_options_to_net(&pdu.top, &td->o);
Jens Axboe807f9972012-03-02 10:25:24 +01001205
Jens Axboe40c60512012-03-27 16:03:04 +02001206 fio_net_send_cmd(server_fd, FIO_NET_CMD_ADD_JOB, &pdu, sizeof(pdu), NULL, NULL);
Jens Axboe807f9972012-03-02 10:25:24 +01001207}
1208
Jens Axboe122c7722012-03-19 09:13:15 +01001209void fio_server_send_start(struct thread_data *td)
1210{
1211 assert(server_fd != -1);
1212
1213 fio_net_send_simple_cmd(server_fd, FIO_NET_CMD_SERVER_START, 0, NULL);
1214}
1215
Jens Axboe87aa8f12011-10-06 21:24:13 +02001216static int fio_init_server_ip(void)
Jens Axboe81179ee2011-10-04 12:42:06 +02001217{
Jens Axboe811826b2011-10-24 09:11:50 +02001218 struct sockaddr *addr;
Jens Axboe67bf9822013-01-10 11:23:19 +01001219 socklen_t socklen;
Jens Axboe87aa8f12011-10-06 21:24:13 +02001220 int sk, opt;
Jens Axboe81179ee2011-10-04 12:42:06 +02001221
Jens Axboe811826b2011-10-24 09:11:50 +02001222 if (use_ipv6)
1223 sk = socket(AF_INET6, SOCK_STREAM, 0);
1224 else
1225 sk = socket(AF_INET, SOCK_STREAM, 0);
1226
Jens Axboe81179ee2011-10-04 12:42:06 +02001227 if (sk < 0) {
1228 log_err("fio: socket: %s\n", strerror(errno));
1229 return -1;
1230 }
1231
1232 opt = 1;
Jens Axboe1f819912013-01-23 17:21:41 -07001233 if (setsockopt(sk, SOL_SOCKET, SO_REUSEADDR, (void *)&opt, sizeof(opt)) < 0) {
Jens Axboe81179ee2011-10-04 12:42:06 +02001234 log_err("fio: setsockopt: %s\n", strerror(errno));
Jens Axboeb94cba42011-10-06 21:27:10 +02001235 close(sk);
Jens Axboe81179ee2011-10-04 12:42:06 +02001236 return -1;
1237 }
1238#ifdef SO_REUSEPORT
Jens Axboe6eb24792011-10-04 15:00:30 +02001239 if (setsockopt(sk, SOL_SOCKET, SO_REUSEPORT, &opt, sizeof(opt)) < 0) {
Jens Axboe81179ee2011-10-04 12:42:06 +02001240 log_err("fio: setsockopt: %s\n", strerror(errno));
Jens Axboeb94cba42011-10-06 21:27:10 +02001241 close(sk);
Jens Axboe81179ee2011-10-04 12:42:06 +02001242 return -1;
1243 }
1244#endif
1245
Jens Axboe811826b2011-10-24 09:11:50 +02001246 if (use_ipv6) {
1247 addr = (struct sockaddr *) &saddr_in6;
1248 socklen = sizeof(saddr_in6);
1249 saddr_in6.sin6_family = AF_INET6;
1250 } else {
1251 addr = (struct sockaddr *) &saddr_in;
1252 socklen = sizeof(saddr_in);
1253 saddr_in.sin_family = AF_INET;
1254 }
Jens Axboe81179ee2011-10-04 12:42:06 +02001255
Jens Axboe811826b2011-10-24 09:11:50 +02001256 if (bind(sk, addr, socklen) < 0) {
Jens Axboe81179ee2011-10-04 12:42:06 +02001257 log_err("fio: bind: %s\n", strerror(errno));
Jens Axboeb94cba42011-10-06 21:27:10 +02001258 close(sk);
Jens Axboe81179ee2011-10-04 12:42:06 +02001259 return -1;
1260 }
1261
Jens Axboe87aa8f12011-10-06 21:24:13 +02001262 return sk;
1263}
1264
1265static int fio_init_server_sock(void)
1266{
1267 struct sockaddr_un addr;
Jens Axboe67bf9822013-01-10 11:23:19 +01001268 socklen_t len;
Jens Axboe87aa8f12011-10-06 21:24:13 +02001269 mode_t mode;
1270 int sk;
1271
1272 sk = socket(AF_UNIX, SOCK_STREAM, 0);
1273 if (sk < 0) {
1274 log_err("fio: socket: %s\n", strerror(errno));
1275 return -1;
1276 }
1277
1278 mode = umask(000);
1279
1280 memset(&addr, 0, sizeof(addr));
1281 addr.sun_family = AF_UNIX;
1282 strcpy(addr.sun_path, bind_sock);
1283 unlink(bind_sock);
1284
1285 len = sizeof(addr.sun_family) + strlen(bind_sock) + 1;
1286
1287 if (bind(sk, (struct sockaddr *) &addr, len) < 0) {
1288 log_err("fio: bind: %s\n", strerror(errno));
Jens Axboeb94cba42011-10-06 21:27:10 +02001289 close(sk);
Jens Axboe87aa8f12011-10-06 21:24:13 +02001290 return -1;
1291 }
1292
1293 umask(mode);
1294 return sk;
1295}
1296
1297static int fio_init_server_connection(void)
1298{
Jens Axboebebe6392011-10-07 10:00:51 +02001299 char bind_str[128];
Jens Axboe87aa8f12011-10-06 21:24:13 +02001300 int sk;
1301
1302 dprint(FD_NET, "starting server\n");
1303
1304 if (!bind_sock)
1305 sk = fio_init_server_ip();
1306 else
1307 sk = fio_init_server_sock();
1308
1309 if (sk < 0)
1310 return sk;
1311
Jens Axboe811826b2011-10-24 09:11:50 +02001312 if (!bind_sock) {
1313 char *p, port[16];
1314 const void *src;
1315 int af;
1316
1317 if (use_ipv6) {
1318 af = AF_INET6;
1319 src = &saddr_in6.sin6_addr;
1320 } else {
1321 af = AF_INET;
1322 src = &saddr_in.sin_addr;
1323 }
1324
1325 p = (char *) inet_ntop(af, src, bind_str, sizeof(bind_str));
1326
1327 sprintf(port, ",%u", fio_net_port);
1328 if (p)
1329 strcat(p, port);
1330 else
1331 strcpy(bind_str, port);
1332 } else
Jens Axboebebe6392011-10-07 10:00:51 +02001333 strcpy(bind_str, bind_sock);
1334
1335 log_info("fio: server listening on %s\n", bind_str);
1336
Jens Axboe89c17072011-10-11 10:15:51 +02001337 if (listen(sk, 0) < 0) {
Jens Axboe81179ee2011-10-04 12:42:06 +02001338 log_err("fio: listen: %s\n", strerror(errno));
1339 return -1;
1340 }
1341
Jens Axboe87aa8f12011-10-06 21:24:13 +02001342 return sk;
1343}
1344
Jens Axboe3ec62ec2012-03-01 12:01:29 +01001345int fio_server_parse_host(const char *host, int *ipv6, struct in_addr *inp,
1346 struct in6_addr *inp6)
1347
1348{
1349 int ret = 0;
1350
1351 if (*ipv6)
1352 ret = inet_pton(AF_INET6, host, inp6);
1353 else
1354 ret = inet_pton(AF_INET, host, inp);
1355
1356 if (ret != 1) {
1357 struct hostent *hent;
1358
1359 hent = gethostbyname(host);
1360 if (!hent) {
1361 log_err("fio: failed to resolve <%s>\n", host);
1362 return 0;
1363 }
1364
1365 if (*ipv6) {
1366 if (hent->h_addrtype != AF_INET6) {
1367 log_info("fio: falling back to IPv4\n");
1368 *ipv6 = 0;
1369 } else
1370 memcpy(inp6, hent->h_addr_list[0], 16);
1371 }
1372 if (!*ipv6) {
1373 if (hent->h_addrtype != AF_INET) {
1374 log_err("fio: lookup type mismatch\n");
1375 return 0;
1376 }
1377 memcpy(inp, hent->h_addr_list[0], 4);
1378 }
1379 ret = 1;
1380 }
1381
1382 return !(ret == 1);
1383}
1384
Jens Axboe660a2bf2011-10-24 09:35:06 +02001385/*
1386 * Parse a host/ip/port string. Reads from 'str'.
1387 *
1388 * Outputs:
1389 *
1390 * For IPv4:
1391 * *ptr is the host, *port is the port, inp is the destination.
1392 * For IPv6:
1393 * *ptr is the host, *port is the port, inp6 is the dest, and *ipv6 is 1.
1394 * For local domain sockets:
1395 * *ptr is the filename, *is_sock is 1.
1396 */
Jens Axboebebe6392011-10-07 10:00:51 +02001397int fio_server_parse_string(const char *str, char **ptr, int *is_sock,
Jens Axboe811826b2011-10-24 09:11:50 +02001398 int *port, struct in_addr *inp,
1399 struct in6_addr *inp6, int *ipv6)
Jens Axboebebe6392011-10-07 10:00:51 +02001400{
Jens Axboe76867622011-10-25 09:52:51 +02001401 const char *host = str;
1402 char *portp;
Jens Axboe3ec62ec2012-03-01 12:01:29 +01001403 int lport = 0;
Jens Axboe76867622011-10-25 09:52:51 +02001404
Jens Axboebebe6392011-10-07 10:00:51 +02001405 *ptr = NULL;
1406 *is_sock = 0;
Jens Axboe6d2cf392011-10-07 13:19:28 +02001407 *port = fio_net_port;
Jens Axboe811826b2011-10-24 09:11:50 +02001408 *ipv6 = 0;
Jens Axboebebe6392011-10-07 10:00:51 +02001409
1410 if (!strncmp(str, "sock:", 5)) {
1411 *ptr = strdup(str + 5);
1412 *is_sock = 1;
Jens Axboebebe6392011-10-07 10:00:51 +02001413
Jens Axboe76867622011-10-25 09:52:51 +02001414 return 0;
1415 }
1416
1417 /*
1418 * Is it ip:<ip or host>:port
1419 */
1420 if (!strncmp(host, "ip:", 3))
1421 host += 3;
1422 else if (!strncmp(host, "ip4:", 4))
1423 host += 4;
1424 else if (!strncmp(host, "ip6:", 4)) {
1425 host += 4;
1426 *ipv6 = 1;
1427 } else if (host[0] == ':') {
1428 /* String is :port */
1429 host++;
1430 lport = atoi(host);
1431 if (!lport || lport > 65535) {
1432 log_err("fio: bad server port %u\n", port);
1433 return 1;
1434 }
1435 /* no hostname given, we are done */
1436 *port = lport;
1437 return 0;
1438 }
1439
1440 /*
1441 * If no port seen yet, check if there's a last ':' at the end
1442 */
1443 if (!lport) {
1444 portp = strchr(host, ',');
1445 if (portp) {
1446 *portp = '\0';
1447 portp++;
1448 lport = atoi(portp);
Jens Axboebebe6392011-10-07 10:00:51 +02001449 if (!lport || lport > 65535) {
1450 log_err("fio: bad server port %u\n", port);
1451 return 1;
1452 }
Jens Axboe76867622011-10-25 09:52:51 +02001453 }
1454 }
1455
1456 if (lport)
1457 *port = lport;
1458
1459 if (!strlen(host))
1460 return 0;
1461
1462 *ptr = strdup(host);
1463
Jens Axboe3ec62ec2012-03-01 12:01:29 +01001464 if (fio_server_parse_host(*ptr, ipv6, inp, inp6)) {
1465 free(*ptr);
1466 *ptr = NULL;
1467 return 1;
Jens Axboebebe6392011-10-07 10:00:51 +02001468 }
1469
1470 if (*port == 0)
1471 *port = fio_net_port;
1472
1473 return 0;
1474}
1475
Jens Axboe87aa8f12011-10-06 21:24:13 +02001476/*
1477 * Server arg should be one of:
1478 *
1479 * sock:/path/to/socket
1480 * ip:1.2.3.4
1481 * 1.2.3.4
1482 *
1483 * Where sock uses unix domain sockets, and ip binds the server to
1484 * a specific interface. If no arguments are given to the server, it
1485 * uses IP and binds to 0.0.0.0.
1486 *
1487 */
1488static int fio_handle_server_arg(void)
1489{
Jens Axboe6d2cf392011-10-07 13:19:28 +02001490 int port = fio_net_port;
Jens Axboea7de0a12011-10-07 12:55:14 +02001491 int is_sock, ret = 0;
Jens Axboebebe6392011-10-07 10:00:51 +02001492
Jens Axboe87aa8f12011-10-06 21:24:13 +02001493 saddr_in.sin_addr.s_addr = htonl(INADDR_ANY);
1494
1495 if (!fio_server_arg)
Jens Axboea7de0a12011-10-07 12:55:14 +02001496 goto out;
Jens Axboe87aa8f12011-10-06 21:24:13 +02001497
Jens Axboe4e5b8fb2011-10-07 10:03:44 +02001498 ret = fio_server_parse_string(fio_server_arg, &bind_sock, &is_sock,
Jens Axboe811826b2011-10-24 09:11:50 +02001499 &port, &saddr_in.sin_addr,
1500 &saddr_in6.sin6_addr, &use_ipv6);
Jens Axboe4e5b8fb2011-10-07 10:03:44 +02001501
1502 if (!is_sock && bind_sock) {
1503 free(bind_sock);
1504 bind_sock = NULL;
1505 }
1506
Jens Axboea7de0a12011-10-07 12:55:14 +02001507out:
Jens Axboe6d2cf392011-10-07 13:19:28 +02001508 fio_net_port = port;
1509 saddr_in.sin_port = htons(port);
Jens Axboe811826b2011-10-24 09:11:50 +02001510 saddr_in6.sin6_port = htons(port);
Jens Axboe4e5b8fb2011-10-07 10:03:44 +02001511 return ret;
Jens Axboe87aa8f12011-10-06 21:24:13 +02001512}
1513
1514static int fio_server(void)
1515{
1516 int sk, ret;
1517
1518 dprint(FD_NET, "starting server\n");
1519
1520 if (fio_handle_server_arg())
1521 return -1;
1522
1523 sk = fio_init_server_connection();
1524 if (sk < 0)
1525 return -1;
Jens Axboe81179ee2011-10-04 12:42:06 +02001526
1527 ret = accept_loop(sk);
Jens Axboe87aa8f12011-10-06 21:24:13 +02001528
Jens Axboe81179ee2011-10-04 12:42:06 +02001529 close(sk);
Jens Axboe87aa8f12011-10-06 21:24:13 +02001530
1531 if (fio_server_arg) {
1532 free(fio_server_arg);
1533 fio_server_arg = NULL;
1534 }
Jens Axboebebe6392011-10-07 10:00:51 +02001535 if (bind_sock)
1536 free(bind_sock);
Jens Axboe87aa8f12011-10-06 21:24:13 +02001537
Jens Axboe81179ee2011-10-04 12:42:06 +02001538 return ret;
1539}
1540
Jens Axboe7b821682011-10-11 12:16:32 +02001541void fio_server_got_signal(int signal)
Jens Axboe9abea482011-10-04 13:21:54 +02001542{
Jens Axboe7b821682011-10-11 12:16:32 +02001543 if (signal == SIGPIPE)
1544 server_fd = -1;
1545 else {
1546 log_info("\nfio: terminating on signal %d\n", signal);
1547 exit_backend = 1;
1548 }
Jens Axboe9abea482011-10-04 13:21:54 +02001549}
1550
Jens Axboe13755d92011-10-10 19:51:26 +02001551static int check_existing_pidfile(const char *pidfile)
1552{
1553 struct stat sb;
1554 char buf[16];
1555 pid_t pid;
1556 FILE *f;
1557
1558 if (stat(pidfile, &sb))
1559 return 0;
1560
1561 f = fopen(pidfile, "r");
1562 if (!f)
1563 return 0;
1564
Jens Axboebfc3b172011-10-10 21:16:55 +02001565 if (fread(buf, sb.st_size, 1, f) <= 0) {
Jens Axboe13755d92011-10-10 19:51:26 +02001566 fclose(f);
1567 return 1;
1568 }
1569 fclose(f);
1570
1571 pid = atoi(buf);
1572 if (kill(pid, SIGCONT) < 0)
Jens Axboeea5aa1b2011-10-11 11:45:35 +02001573 return errno != ESRCH;
Jens Axboe13755d92011-10-10 19:51:26 +02001574
1575 return 1;
1576}
1577
1578static int write_pid(pid_t pid, const char *pidfile)
Jens Axboe402668f2011-10-10 15:28:58 +02001579{
1580 FILE *fpid;
1581
1582 fpid = fopen(pidfile, "w");
1583 if (!fpid) {
1584 log_err("fio: failed opening pid file %s\n", pidfile);
Jens Axboe13755d92011-10-10 19:51:26 +02001585 return 1;
Jens Axboe402668f2011-10-10 15:28:58 +02001586 }
1587
1588 fprintf(fpid, "%u\n", (unsigned int) pid);
Jens Axboe13755d92011-10-10 19:51:26 +02001589 fclose(fpid);
1590 return 0;
Jens Axboe402668f2011-10-10 15:28:58 +02001591}
1592
1593/*
1594 * If pidfile is specified, background us.
1595 */
1596int fio_start_server(char *pidfile)
Jens Axboee46d8092011-10-03 09:11:02 +02001597{
1598 pid_t pid;
Jens Axboe402668f2011-10-10 15:28:58 +02001599 int ret;
Jens Axboee46d8092011-10-03 09:11:02 +02001600
Bruce Cran93bcfd22012-02-20 20:18:19 +01001601#if defined(WIN32)
Jens Axboe905c78b2012-03-06 19:34:22 +01001602 WSADATA wsd;
Jens Axboe3c3ed072012-03-27 09:12:39 +02001603 WSAStartup(MAKEWORD(2, 2), &wsd);
Bruce Cran93bcfd22012-02-20 20:18:19 +01001604#endif
1605
Jens Axboe402668f2011-10-10 15:28:58 +02001606 if (!pidfile)
Jens Axboee46d8092011-10-03 09:11:02 +02001607 return fio_server();
1608
Jens Axboe13755d92011-10-10 19:51:26 +02001609 if (check_existing_pidfile(pidfile)) {
1610 log_err("fio: pidfile %s exists and server appears alive\n",
1611 pidfile);
1612 return -1;
1613 }
1614
Jens Axboee46d8092011-10-03 09:11:02 +02001615 pid = fork();
1616 if (pid < 0) {
Jens Axboe13755d92011-10-10 19:51:26 +02001617 log_err("fio: failed server fork: %s", strerror(errno));
Jens Axboe402668f2011-10-10 15:28:58 +02001618 free(pidfile);
Jens Axboec28e8e82011-10-04 08:57:39 +02001619 return -1;
Jens Axboe402668f2011-10-10 15:28:58 +02001620 } else if (pid) {
Jens Axboe13755d92011-10-10 19:51:26 +02001621 int ret = write_pid(pid, pidfile);
1622
1623 exit(ret);
Jens Axboe402668f2011-10-10 15:28:58 +02001624 }
Jens Axboee46d8092011-10-03 09:11:02 +02001625
1626 setsid();
Jens Axboe13755d92011-10-10 19:51:26 +02001627 openlog("fio", LOG_NDELAY|LOG_NOWAIT|LOG_PID, LOG_USER);
1628 log_syslog = 1;
Jens Axboee46d8092011-10-03 09:11:02 +02001629 close(STDIN_FILENO);
1630 close(STDOUT_FILENO);
1631 close(STDERR_FILENO);
1632 f_out = NULL;
1633 f_err = NULL;
Jens Axboe402668f2011-10-10 15:28:58 +02001634
1635 ret = fio_server();
1636
1637 closelog();
1638 unlink(pidfile);
1639 free(pidfile);
1640 return ret;
Jens Axboee46d8092011-10-03 09:11:02 +02001641}
Jens Axboe87aa8f12011-10-06 21:24:13 +02001642
Jens Axboebebe6392011-10-07 10:00:51 +02001643void fio_server_set_arg(const char *arg)
Jens Axboe87aa8f12011-10-06 21:24:13 +02001644{
1645 fio_server_arg = strdup(arg);
1646}