blob: 76b6b54d369bbf0ec18afe502631f9d287150c41 [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>
Jens Axboe50d16972011-09-29 17:45:28 -06007#include <sys/poll.h>
Jens Axboe50d16972011-09-29 17:45:28 -06008#include <sys/types.h>
9#include <sys/wait.h>
Jens Axboed05c4a02011-10-05 00:16:11 +020010#include <sys/socket.h>
Jens Axboe87aa8f12011-10-06 21:24:13 +020011#include <sys/stat.h>
12#include <sys/un.h>
Bruce Cran1f51bba2013-04-12 15:40:21 +020013#include <sys/uio.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 Axboe3989b142013-04-12 13:13:24 +020019#ifdef CONFIG_ZLIB
Jens Axboe1b427252012-03-14 15:03:03 +010020#include <zlib.h>
Jens Axboe3989b142013-04-12 13:13:24 +020021#endif
Jens Axboe50d16972011-09-29 17:45:28 -060022
23#include "fio.h"
Jens Axboe132159a2011-09-30 15:01:32 -060024#include "server.h"
Jens Axboefcee5ff2011-09-30 22:50:39 -060025#include "crc/crc16.h"
Jens Axboec7c6cb42011-10-13 14:12:40 +020026#include "lib/ieee754.h"
Jens Axboe50d16972011-09-29 17:45:28 -060027
Stephen M. Cameron5adc2442012-02-24 08:17:31 +010028int fio_net_port = FIO_NET_PORT;
Jens Axboe50d16972011-09-29 17:45:28 -060029
Jens Axboe009b1be2011-09-29 18:27:02 -060030int exit_backend = 0;
31
Jens Axboe46c48f12011-10-01 12:50:51 -060032static int server_fd = -1;
Jens Axboe87aa8f12011-10-06 21:24:13 +020033static char *fio_server_arg;
34static char *bind_sock;
35static struct sockaddr_in saddr_in;
Jens Axboe811826b2011-10-24 09:11:50 +020036static struct sockaddr_in6 saddr_in6;
Jens Axboe811826b2011-10-24 09:11:50 +020037static int use_ipv6;
Jens Axboe3989b142013-04-12 13:13:24 +020038#ifdef CONFIG_ZLIB
39static unsigned int has_zlib = 1;
40#else
41static unsigned int has_zlib = 0;
42#endif
43static unsigned int use_zlib;
Jens Axboe37db14f2011-09-30 17:00:42 -060044
Jens Axboe122c7722012-03-19 09:13:15 +010045struct fio_fork_item {
46 struct flist_head list;
47 int exitval;
48 int signal;
49 int exited;
50 pid_t pid;
51};
52
Jens Axboe89c17072011-10-11 10:15:51 +020053static const char *fio_server_ops[FIO_NET_CMD_NR] = {
54 "",
55 "QUIT",
56 "EXIT",
57 "JOB",
58 "JOBLINE",
59 "TEXT",
60 "TS",
61 "GS",
62 "SEND_ETA",
63 "ETA",
64 "PROBE",
65 "START",
Jens Axboed09a64a2011-10-13 11:38:56 +020066 "STOP",
67 "DISK_UTIL",
Jens Axboeb9d2f302012-03-08 20:36:28 +010068 "SERVER_START",
Jens Axboe807f9972012-03-02 10:25:24 +010069 "ADD_JOB",
Jens Axboe8d7b6182014-04-14 09:07:30 -060070 "CMD_RUN",
Jens Axboec70e63e2012-03-15 08:26:18 +010071 "CMD_IOLOG",
Jens Axboe89c17072011-10-11 10:15:51 +020072};
73
74const char *fio_server_op(unsigned int op)
75{
76 static char buf[32];
77
78 if (op < FIO_NET_CMD_NR)
79 return fio_server_ops[op];
80
81 sprintf(buf, "UNKNOWN/%d", op);
82 return buf;
83}
84
Jens Axboe5235f622012-03-14 21:25:51 +010085static ssize_t iov_total_len(const struct iovec *iov, int count)
Jens Axboe132159a2011-09-30 15:01:32 -060086{
Jens Axboe5235f622012-03-14 21:25:51 +010087 ssize_t ret = 0;
88
89 while (count--) {
90 ret += iov->iov_len;
91 iov++;
92 }
93
94 return ret;
95}
96
97static int fio_sendv_data(int sk, struct iovec *iov, int count)
98{
99 ssize_t total_len = iov_total_len(iov, count);
100 ssize_t ret;
Jens Axboe794d69c2011-10-01 08:48:50 -0600101
Jens Axboe132159a2011-09-30 15:01:32 -0600102 do {
Jens Axboe5235f622012-03-14 21:25:51 +0100103 ret = writev(sk, iov, count);
Jens Axboe132159a2011-09-30 15:01:32 -0600104 if (ret > 0) {
Jens Axboe5235f622012-03-14 21:25:51 +0100105 total_len -= ret;
106 if (!total_len)
Jens Axboe132159a2011-09-30 15:01:32 -0600107 break;
Jens Axboe5235f622012-03-14 21:25:51 +0100108
109 while (ret) {
110 if (ret >= iov->iov_len) {
111 ret -= iov->iov_len;
112 iov++;
113 continue;
114 }
115 iov->iov_base += ret;
116 iov->iov_len -= ret;
117 ret = 0;
118 }
Jens Axboe132159a2011-09-30 15:01:32 -0600119 } else if (!ret)
120 break;
121 else if (errno == EAGAIN || errno == EINTR)
122 continue;
Jens Axboe7b821682011-10-11 12:16:32 +0200123 else
124 break;
Jens Axboe132159a2011-09-30 15:01:32 -0600125 } while (!exit_backend);
126
Jens Axboe5235f622012-03-14 21:25:51 +0100127 if (!total_len)
Jens Axboe132159a2011-09-30 15:01:32 -0600128 return 0;
129
Jens Axboe8b4e61b2012-03-09 17:10:54 +0100130 if (errno)
131 return -errno;
132
Jens Axboe132159a2011-09-30 15:01:32 -0600133 return 1;
134}
135
Jens Axboe5235f622012-03-14 21:25:51 +0100136int fio_send_data(int sk, const void *p, unsigned int len)
137{
138 struct iovec iov = { .iov_base = (void *) p, .iov_len = len };
139
140 assert(len <= sizeof(struct fio_net_cmd) + FIO_SERVER_MAX_FRAGMENT_PDU);
141
142 return fio_sendv_data(sk, &iov, 1);
143}
144
Jens Axboe132159a2011-09-30 15:01:32 -0600145int fio_recv_data(int sk, void *p, unsigned int len)
146{
147 do {
148 int ret = recv(sk, p, len, MSG_WAITALL);
149
150 if (ret > 0) {
151 len -= ret;
152 if (!len)
153 break;
154 p += ret;
155 continue;
156 } else if (!ret)
157 break;
158 else if (errno == EAGAIN || errno == EINTR)
159 continue;
Jens Axboe7b821682011-10-11 12:16:32 +0200160 else
161 break;
Jens Axboe132159a2011-09-30 15:01:32 -0600162 } while (!exit_backend);
163
164 if (!len)
165 return 0;
166
167 return -1;
168}
169
170static int verify_convert_cmd(struct fio_net_cmd *cmd)
171{
Jens Axboefcee5ff2011-09-30 22:50:39 -0600172 uint16_t crc;
Jens Axboe132159a2011-09-30 15:01:32 -0600173
Jens Axboefcee5ff2011-09-30 22:50:39 -0600174 cmd->cmd_crc16 = le16_to_cpu(cmd->cmd_crc16);
175 cmd->pdu_crc16 = le16_to_cpu(cmd->pdu_crc16);
Jens Axboe132159a2011-09-30 15:01:32 -0600176
Jens Axboe25dfa842012-02-29 10:01:34 +0100177 crc = fio_crc16(cmd, FIO_NET_CMD_CRC_SZ);
Jens Axboefcee5ff2011-09-30 22:50:39 -0600178 if (crc != cmd->cmd_crc16) {
Jens Axboe132159a2011-09-30 15:01:32 -0600179 log_err("fio: server bad crc on command (got %x, wanted %x)\n",
Jens Axboefcee5ff2011-09-30 22:50:39 -0600180 cmd->cmd_crc16, crc);
Jens Axboe132159a2011-09-30 15:01:32 -0600181 return 1;
182 }
183
184 cmd->version = le16_to_cpu(cmd->version);
185 cmd->opcode = le16_to_cpu(cmd->opcode);
186 cmd->flags = le32_to_cpu(cmd->flags);
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200187 cmd->tag = le64_to_cpu(cmd->tag);
Jens Axboe132159a2011-09-30 15:01:32 -0600188 cmd->pdu_len = le32_to_cpu(cmd->pdu_len);
189
190 switch (cmd->version) {
Jens Axboefa2ea802011-10-08 21:07:29 +0200191 case FIO_SERVER_VER:
Jens Axboe132159a2011-09-30 15:01:32 -0600192 break;
193 default:
194 log_err("fio: bad server cmd version %d\n", cmd->version);
195 return 1;
196 }
197
Jens Axboeb9d2f302012-03-08 20:36:28 +0100198 if (cmd->pdu_len > FIO_SERVER_MAX_FRAGMENT_PDU) {
Jens Axboe132159a2011-09-30 15:01:32 -0600199 log_err("fio: command payload too large: %u\n", cmd->pdu_len);
200 return 1;
201 }
202
203 return 0;
204}
205
Jens Axboea64e88d2011-10-03 14:20:01 +0200206/*
207 * Read (and defragment, if necessary) incoming commands
208 */
Jens Axboee951bdc2011-10-05 21:58:45 +0200209struct fio_net_cmd *fio_net_recv_cmd(int sk)
Jens Axboe132159a2011-09-30 15:01:32 -0600210{
Jens Axboedfbf1f62014-04-14 11:43:47 -0600211 struct fio_net_cmd cmd, *tmp, *cmdret = NULL;
Jens Axboea64e88d2011-10-03 14:20:01 +0200212 size_t cmd_size = 0, pdu_offset = 0;
Jens Axboefcee5ff2011-09-30 22:50:39 -0600213 uint16_t crc;
Jens Axboea64e88d2011-10-03 14:20:01 +0200214 int ret, first = 1;
215 void *pdu = NULL;
Jens Axboe132159a2011-09-30 15:01:32 -0600216
Jens Axboea64e88d2011-10-03 14:20:01 +0200217 do {
218 ret = fio_recv_data(sk, &cmd, sizeof(cmd));
219 if (ret)
220 break;
Jens Axboe132159a2011-09-30 15:01:32 -0600221
Jens Axboea64e88d2011-10-03 14:20:01 +0200222 /* We have a command, verify it and swap if need be */
223 ret = verify_convert_cmd(&cmd);
224 if (ret)
225 break;
Jens Axboe132159a2011-09-30 15:01:32 -0600226
Jens Axboe0b8f30a2011-10-04 10:31:53 +0200227 if (first) {
228 /* if this is text, add room for \0 at the end */
229 cmd_size = sizeof(cmd) + cmd.pdu_len + 1;
230 assert(!cmdret);
231 } else
Jens Axboea64e88d2011-10-03 14:20:01 +0200232 cmd_size += cmd.pdu_len;
Jens Axboe132159a2011-09-30 15:01:32 -0600233
Jens Axboedfbf1f62014-04-14 11:43:47 -0600234 if (cmd_size / 1024 > FIO_SERVER_MAX_CMD_MB * 1024) {
235 log_err("fio: cmd+pdu too large (%llu)\n", (unsigned long long) cmd_size);
236 ret = 1;
237 break;
238 }
239
240 tmp = realloc(cmdret, cmd_size);
241 if (!tmp) {
242 log_err("fio: server failed allocating cmd\n");
243 ret = 1;
244 break;
245 }
246 cmdret = tmp;
Jens Axboe132159a2011-09-30 15:01:32 -0600247
Jens Axboea64e88d2011-10-03 14:20:01 +0200248 if (first)
249 memcpy(cmdret, &cmd, sizeof(cmd));
Jens Axboe67f15dc2011-10-15 16:07:40 +0200250 else if (cmdret->opcode != cmd.opcode) {
251 log_err("fio: fragment opcode mismatch (%d != %d)\n",
252 cmdret->opcode, cmd.opcode);
253 ret = 1;
254 break;
255 }
Jens Axboea64e88d2011-10-03 14:20:01 +0200256
257 if (!cmd.pdu_len)
258 break;
259
260 /* There's payload, get it */
261 pdu = (void *) cmdret->payload + pdu_offset;
262 ret = fio_recv_data(sk, pdu, cmd.pdu_len);
263 if (ret)
264 break;
265
266 /* Verify payload crc */
Jens Axboe25dfa842012-02-29 10:01:34 +0100267 crc = fio_crc16(pdu, cmd.pdu_len);
Jens Axboea64e88d2011-10-03 14:20:01 +0200268 if (crc != cmd.pdu_crc16) {
269 log_err("fio: server bad crc on payload ");
270 log_err("(got %x, wanted %x)\n", cmd.pdu_crc16, crc);
271 ret = 1;
272 break;
273 }
274
275 pdu_offset += cmd.pdu_len;
Jens Axboe817f06b2011-10-03 15:03:08 +0200276 if (!first)
277 cmdret->pdu_len += cmd.pdu_len;
Jens Axboea64e88d2011-10-03 14:20:01 +0200278 first = 0;
279 } while (cmd.flags & FIO_NET_CMD_F_MORE);
280
281 if (ret) {
282 free(cmdret);
283 cmdret = NULL;
Jens Axboe0b8f30a2011-10-04 10:31:53 +0200284 } else if (cmdret) {
285 /* zero-terminate text input */
Jens Axboe084d1c62012-03-03 20:28:07 +0100286 if (cmdret->pdu_len) {
287 if (cmdret->opcode == FIO_NET_CMD_TEXT) {
288 struct cmd_text_pdu *pdu = (struct cmd_text_pdu *) cmdret->payload;
289 char *buf = (char *) pdu->buf;
Jens Axboe0b8f30a2011-10-04 10:31:53 +0200290
Jens Axboe3c3ed072012-03-27 09:12:39 +0200291 buf[pdu->buf_len] = '\0';
Jens Axboe084d1c62012-03-03 20:28:07 +0100292 } else if (cmdret->opcode == FIO_NET_CMD_JOB) {
Jens Axboe46bcd492012-03-14 11:31:21 +0100293 struct cmd_job_pdu *pdu = (struct cmd_job_pdu *) cmdret->payload;
294 char *buf = (char *) pdu->buf;
295 int len = le32_to_cpu(pdu->buf_len);
Jens Axboe084d1c62012-03-03 20:28:07 +0100296
Jens Axboe46bcd492012-03-14 11:31:21 +0100297 buf[len] = '\0';
Jens Axboe084d1c62012-03-03 20:28:07 +0100298 }
Jens Axboe0b8f30a2011-10-04 10:31:53 +0200299 }
Jens Axboe084d1c62012-03-03 20:28:07 +0100300
Jens Axboe0b8f30a2011-10-04 10:31:53 +0200301 /* frag flag is internal */
Jens Axboea64e88d2011-10-03 14:20:01 +0200302 cmdret->flags &= ~FIO_NET_CMD_F_MORE;
Jens Axboe0b8f30a2011-10-04 10:31:53 +0200303 }
Jens Axboe132159a2011-09-30 15:01:32 -0600304
Jens Axboea64e88d2011-10-03 14:20:01 +0200305 return cmdret;
Jens Axboe132159a2011-09-30 15:01:32 -0600306}
307
Jens Axboe40c60512012-03-27 16:03:04 +0200308static void add_reply(uint64_t tag, struct flist_head *list)
309{
Aaron Carrolla572bbf2013-04-12 07:55:02 +0200310 struct fio_net_cmd_reply *reply;
Jens Axboe40c60512012-03-27 16:03:04 +0200311
Aaron Carrolla572bbf2013-04-12 07:55:02 +0200312 reply = (struct fio_net_cmd_reply *) (uintptr_t) tag;
Jens Axboe40c60512012-03-27 16:03:04 +0200313 flist_add_tail(&reply->list, list);
314}
315
316static uint64_t alloc_reply(uint64_t tag, uint16_t opcode)
317{
318 struct fio_net_cmd_reply *reply;
319
320 reply = calloc(1, sizeof(*reply));
321 INIT_FLIST_HEAD(&reply->list);
322 gettimeofday(&reply->tv, NULL);
323 reply->saved_tag = tag;
324 reply->opcode = opcode;
325
326 return (uintptr_t) reply;
327}
328
329static void free_reply(uint64_t tag)
330{
Aaron Carrolla572bbf2013-04-12 07:55:02 +0200331 struct fio_net_cmd_reply *reply;
Jens Axboe40c60512012-03-27 16:03:04 +0200332
Aaron Carrolla572bbf2013-04-12 07:55:02 +0200333 reply = (struct fio_net_cmd_reply *) (uintptr_t) tag;
Jens Axboe40c60512012-03-27 16:03:04 +0200334 free(reply);
335}
336
Jens Axboe53bd8db2012-03-14 21:51:38 +0100337void fio_net_cmd_crc_pdu(struct fio_net_cmd *cmd, const void *pdu)
Jens Axboe132159a2011-09-30 15:01:32 -0600338{
339 uint32_t pdu_len;
340
Jens Axboe25dfa842012-02-29 10:01:34 +0100341 cmd->cmd_crc16 = __cpu_to_le16(fio_crc16(cmd, FIO_NET_CMD_CRC_SZ));
Jens Axboe132159a2011-09-30 15:01:32 -0600342
343 pdu_len = le32_to_cpu(cmd->pdu_len);
Jens Axboe1b427252012-03-14 15:03:03 +0100344 cmd->pdu_crc16 = __cpu_to_le16(fio_crc16(pdu, pdu_len));
345}
346
347void fio_net_cmd_crc(struct fio_net_cmd *cmd)
348{
349 fio_net_cmd_crc_pdu(cmd, cmd->payload);
Jens Axboe132159a2011-09-30 15:01:32 -0600350}
351
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200352int fio_net_send_cmd(int fd, uint16_t opcode, const void *buf, off_t size,
Jens Axboe40c60512012-03-27 16:03:04 +0200353 uint64_t *tagptr, struct flist_head *list)
Jens Axboe794d69c2011-10-01 08:48:50 -0600354{
Jens Axboe7f868312011-10-10 09:55:21 +0200355 struct fio_net_cmd *cmd = NULL;
356 size_t this_len, cur_len = 0;
Jens Axboe40c60512012-03-27 16:03:04 +0200357 uint64_t tag;
Jens Axboe794d69c2011-10-01 08:48:50 -0600358 int ret;
359
Jens Axboe40c60512012-03-27 16:03:04 +0200360 if (list) {
361 assert(tagptr);
362 tag = *tagptr = alloc_reply(*tagptr, opcode);
363 } else
364 tag = tagptr ? *tagptr : 0;
365
Jens Axboe794d69c2011-10-01 08:48:50 -0600366 do {
367 this_len = size;
Jens Axboeb9d2f302012-03-08 20:36:28 +0100368 if (this_len > FIO_SERVER_MAX_FRAGMENT_PDU)
369 this_len = FIO_SERVER_MAX_FRAGMENT_PDU;
Jens Axboe794d69c2011-10-01 08:48:50 -0600370
Jens Axboe7f868312011-10-10 09:55:21 +0200371 if (!cmd || cur_len < sizeof(*cmd) + this_len) {
372 if (cmd)
373 free(cmd);
374
375 cur_len = sizeof(*cmd) + this_len;
376 cmd = malloc(cur_len);
377 }
Jens Axboe794d69c2011-10-01 08:48:50 -0600378
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200379 fio_init_net_cmd(cmd, opcode, buf, this_len, tag);
Jens Axboe794d69c2011-10-01 08:48:50 -0600380
381 if (this_len < size)
Jens Axboeddcc0b62011-10-03 14:45:27 +0200382 cmd->flags = __cpu_to_le32(FIO_NET_CMD_F_MORE);
Jens Axboe794d69c2011-10-01 08:48:50 -0600383
384 fio_net_cmd_crc(cmd);
385
386 ret = fio_send_data(fd, cmd, sizeof(*cmd) + this_len);
Jens Axboe794d69c2011-10-01 08:48:50 -0600387 size -= this_len;
388 buf += this_len;
389 } while (!ret && size);
390
Jens Axboe40c60512012-03-27 16:03:04 +0200391 if (list) {
392 if (ret)
393 free_reply(tag);
394 else
395 add_reply(tag, list);
396 }
397
Jens Axboe7f868312011-10-10 09:55:21 +0200398 if (cmd)
399 free(cmd);
400
Jens Axboe794d69c2011-10-01 08:48:50 -0600401 return ret;
402}
403
Jens Axboe89c17072011-10-11 10:15:51 +0200404static int fio_net_send_simple_stack_cmd(int sk, uint16_t opcode, uint64_t tag)
Jens Axboe132159a2011-09-30 15:01:32 -0600405{
Jens Axboe178cde92011-10-05 22:14:31 +0200406 struct fio_net_cmd cmd;
Jens Axboe132159a2011-09-30 15:01:32 -0600407
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200408 fio_init_net_cmd(&cmd, opcode, NULL, 0, tag);
Jens Axboe132159a2011-09-30 15:01:32 -0600409 fio_net_cmd_crc(&cmd);
410
411 return fio_send_data(sk, &cmd, sizeof(cmd));
412}
413
Jens Axboe89c17072011-10-11 10:15:51 +0200414/*
415 * If 'list' is non-NULL, then allocate and store the sent command for
416 * later verification.
417 */
418int fio_net_send_simple_cmd(int sk, uint16_t opcode, uint64_t tag,
419 struct flist_head *list)
420{
Jens Axboe89c17072011-10-11 10:15:51 +0200421 int ret;
422
Jens Axboe40c60512012-03-27 16:03:04 +0200423 if (list)
424 tag = alloc_reply(tag, opcode);
Jens Axboe89c17072011-10-11 10:15:51 +0200425
Jens Axboe40c60512012-03-27 16:03:04 +0200426 ret = fio_net_send_simple_stack_cmd(sk, opcode, tag);
Jens Axboe89c17072011-10-11 10:15:51 +0200427 if (ret) {
Jens Axboe40c60512012-03-27 16:03:04 +0200428 if (list)
429 free_reply(tag);
430
Jens Axboe89c17072011-10-11 10:15:51 +0200431 return ret;
432 }
433
Jens Axboe40c60512012-03-27 16:03:04 +0200434 if (list)
435 add_reply(tag, list);
436
Jens Axboe89c17072011-10-11 10:15:51 +0200437 return 0;
438}
439
Jens Axboe122c7722012-03-19 09:13:15 +0100440int fio_net_send_quit(int sk)
Jens Axboe437377e2011-10-01 08:31:30 -0600441{
Jens Axboe46c48f12011-10-01 12:50:51 -0600442 dprint(FD_NET, "server: sending quit\n");
Jens Axboe122c7722012-03-19 09:13:15 +0100443
Jens Axboe8c953072012-03-20 14:35:35 +0100444 return fio_net_send_simple_cmd(sk, FIO_NET_CMD_QUIT, 0, NULL);
Jens Axboe437377e2011-10-01 08:31:30 -0600445}
446
Jens Axboef58bd2a2012-03-27 10:06:42 +0200447static int fio_net_send_ack(int sk, struct fio_net_cmd *cmd, int error,
448 int signal)
Jens Axboe122c7722012-03-19 09:13:15 +0100449{
450 struct cmd_end_pdu epdu;
Jens Axboef58bd2a2012-03-27 10:06:42 +0200451 uint64_t tag = 0;
Jens Axboe122c7722012-03-19 09:13:15 +0100452
Jens Axboef58bd2a2012-03-27 10:06:42 +0200453 if (cmd)
454 tag = cmd->tag;
Jens Axboe122c7722012-03-19 09:13:15 +0100455
456 epdu.error = __cpu_to_le32(error);
457 epdu.signal = __cpu_to_le32(signal);
Jens Axboe40c60512012-03-27 16:03:04 +0200458 return fio_net_send_cmd(sk, FIO_NET_CMD_STOP, &epdu, sizeof(epdu), &tag, NULL);
Jens Axboef58bd2a2012-03-27 10:06:42 +0200459}
460
461int fio_net_send_stop(int sk, int error, int signal)
462{
463 dprint(FD_NET, "server: sending stop (%d, %d)\n", error, signal);
464 return fio_net_send_ack(sk, NULL, error, signal);
Jens Axboe122c7722012-03-19 09:13:15 +0100465}
466
467static void fio_server_add_fork_item(pid_t pid, struct flist_head *list)
468{
469 struct fio_fork_item *ffi;
470
471 ffi = malloc(sizeof(*ffi));
472 ffi->exitval = 0;
473 ffi->signal = 0;
474 ffi->exited = 0;
475 ffi->pid = pid;
476 flist_add_tail(&ffi->list, list);
477}
478
Jens Axboe6348b5d2013-11-07 13:37:09 -0700479static void fio_server_add_conn_pid(struct flist_head *conn_list, pid_t pid)
Jens Axboe122c7722012-03-19 09:13:15 +0100480{
Jens Axboea7533db2013-11-06 11:19:42 -0700481 dprint(FD_NET, "server: forked off connection job (pid=%u)\n", (int) pid);
Jens Axboe6348b5d2013-11-07 13:37:09 -0700482 fio_server_add_fork_item(pid, conn_list);
Jens Axboe122c7722012-03-19 09:13:15 +0100483}
484
Jens Axboe6348b5d2013-11-07 13:37:09 -0700485static void fio_server_add_job_pid(struct flist_head *job_list, pid_t pid)
Jens Axboe122c7722012-03-19 09:13:15 +0100486{
Jens Axboea7533db2013-11-06 11:19:42 -0700487 dprint(FD_NET, "server: forked off job job (pid=%u)\n", (int) pid);
Jens Axboe6348b5d2013-11-07 13:37:09 -0700488 fio_server_add_fork_item(pid, job_list);
Jens Axboe122c7722012-03-19 09:13:15 +0100489}
490
491static void fio_server_check_fork_item(struct fio_fork_item *ffi)
492{
493 int ret, status;
494
495 ret = waitpid(ffi->pid, &status, WNOHANG);
496 if (ret < 0) {
497 if (errno == ECHILD) {
Jens Axboea7533db2013-11-06 11:19:42 -0700498 log_err("fio: connection pid %u disappeared\n", (int) ffi->pid);
Jens Axboe122c7722012-03-19 09:13:15 +0100499 ffi->exited = 1;
500 } else
501 log_err("fio: waitpid: %s\n", strerror(errno));
502 } else if (ret == ffi->pid) {
503 if (WIFSIGNALED(status)) {
504 ffi->signal = WTERMSIG(status);
505 ffi->exited = 1;
506 }
507 if (WIFEXITED(status)) {
508 if (WEXITSTATUS(status))
509 ffi->exitval = WEXITSTATUS(status);
510 ffi->exited = 1;
511 }
512 }
513}
514
515static void fio_server_fork_item_done(struct fio_fork_item *ffi)
516{
Jens Axboea7533db2013-11-06 11:19:42 -0700517 dprint(FD_NET, "pid %u exited, sig=%u, exitval=%d\n", (int) ffi->pid, ffi->signal, ffi->exitval);
Jens Axboe122c7722012-03-19 09:13:15 +0100518
519 /*
520 * Fold STOP and QUIT...
521 */
522 fio_net_send_stop(server_fd, ffi->exitval, ffi->signal);
523 fio_net_send_quit(server_fd);
524 flist_del(&ffi->list);
525 free(ffi);
526}
527
Jens Axboe54163252012-03-23 12:25:18 +0100528static void fio_server_check_fork_items(struct flist_head *list)
Jens Axboe122c7722012-03-19 09:13:15 +0100529{
530 struct flist_head *entry, *tmp;
531 struct fio_fork_item *ffi;
532
533 flist_for_each_safe(entry, tmp, list) {
534 ffi = flist_entry(entry, struct fio_fork_item, list);
535
536 fio_server_check_fork_item(ffi);
537
538 if (ffi->exited)
539 fio_server_fork_item_done(ffi);
540 }
541}
542
Jens Axboe6348b5d2013-11-07 13:37:09 -0700543static void fio_server_check_jobs(struct flist_head *job_list)
Jens Axboe122c7722012-03-19 09:13:15 +0100544{
Jens Axboe6348b5d2013-11-07 13:37:09 -0700545 fio_server_check_fork_items(job_list);
Jens Axboe122c7722012-03-19 09:13:15 +0100546}
547
Jens Axboe6348b5d2013-11-07 13:37:09 -0700548static void fio_server_check_conns(struct flist_head *conn_list)
Jens Axboe122c7722012-03-19 09:13:15 +0100549{
Jens Axboe6348b5d2013-11-07 13:37:09 -0700550 fio_server_check_fork_items(conn_list);
Jens Axboe122c7722012-03-19 09:13:15 +0100551}
552
Jens Axboe6348b5d2013-11-07 13:37:09 -0700553static int handle_run_cmd(struct flist_head *job_list, struct fio_net_cmd *cmd)
Jens Axboe132159a2011-09-30 15:01:32 -0600554{
Jens Axboe122c7722012-03-19 09:13:15 +0100555 pid_t pid;
Jens Axboea64e88d2011-10-03 14:20:01 +0200556 int ret;
Jens Axboe132159a2011-09-30 15:01:32 -0600557
Jens Axboe386626f2014-06-09 13:25:13 -0600558 fio_time_init();
Jens Axboe122c7722012-03-19 09:13:15 +0100559 set_genesis_time();
560
561 pid = fork();
562 if (pid) {
Jens Axboe6348b5d2013-11-07 13:37:09 -0700563 fio_server_add_job_pid(job_list, pid);
Jens Axboe122c7722012-03-19 09:13:15 +0100564 return 0;
565 }
566
Jens Axboe2e1df072012-02-09 11:15:02 +0100567 ret = fio_backend();
Jens Axboe2bb3f0a2012-03-28 12:22:40 +0200568 free_threads_shm();
Jens Axboe122c7722012-03-19 09:13:15 +0100569 _exit(ret);
Jens Axboe81179ee2011-10-04 12:42:06 +0200570}
571
Jens Axboeb9d2f302012-03-08 20:36:28 +0100572static int handle_job_cmd(struct fio_net_cmd *cmd)
573{
Jens Axboe46bcd492012-03-14 11:31:21 +0100574 struct cmd_job_pdu *pdu = (struct cmd_job_pdu *) cmd->payload;
575 void *buf = pdu->buf;
Jens Axboeb9d2f302012-03-08 20:36:28 +0100576 struct cmd_start_pdu spdu;
577
Jens Axboe46bcd492012-03-14 11:31:21 +0100578 pdu->buf_len = le32_to_cpu(pdu->buf_len);
579 pdu->client_type = le32_to_cpu(pdu->client_type);
580
581 if (parse_jobs_ini(buf, 1, 0, pdu->client_type)) {
Jens Axboe122c7722012-03-19 09:13:15 +0100582 fio_net_send_quit(server_fd);
Jens Axboeb9d2f302012-03-08 20:36:28 +0100583 return -1;
584 }
585
586 spdu.jobs = cpu_to_le32(thread_number);
Jens Axboe108fea72012-11-14 13:09:45 -0700587 spdu.stat_outputs = cpu_to_le32(stat_number);
Jens Axboe40c60512012-03-27 16:03:04 +0200588 fio_net_send_cmd(server_fd, FIO_NET_CMD_START, &spdu, sizeof(spdu), NULL, NULL);
Jens Axboeb9d2f302012-03-08 20:36:28 +0100589 return 0;
590}
591
Jens Axboe81179ee2011-10-04 12:42:06 +0200592static int handle_jobline_cmd(struct fio_net_cmd *cmd)
593{
Jens Axboefa2ea802011-10-08 21:07:29 +0200594 void *pdu = cmd->payload;
595 struct cmd_single_line_pdu *cslp;
596 struct cmd_line_pdu *clp;
597 unsigned long offset;
Jens Axboeb9d2f302012-03-08 20:36:28 +0100598 struct cmd_start_pdu spdu;
Jens Axboefa2ea802011-10-08 21:07:29 +0200599 char **argv;
Jens Axboeb9d2f302012-03-08 20:36:28 +0100600 int i;
Jens Axboe81179ee2011-10-04 12:42:06 +0200601
Jens Axboefa2ea802011-10-08 21:07:29 +0200602 clp = pdu;
603 clp->lines = le16_to_cpu(clp->lines);
Jens Axboe46bcd492012-03-14 11:31:21 +0100604 clp->client_type = le16_to_cpu(clp->client_type);
Jens Axboefa2ea802011-10-08 21:07:29 +0200605 argv = malloc(clp->lines * sizeof(char *));
606 offset = sizeof(*clp);
Jens Axboe81179ee2011-10-04 12:42:06 +0200607
Jens Axboefa2ea802011-10-08 21:07:29 +0200608 dprint(FD_NET, "server: %d command line args\n", clp->lines);
Jens Axboe39e8e012011-10-04 13:46:08 +0200609
Jens Axboefa2ea802011-10-08 21:07:29 +0200610 for (i = 0; i < clp->lines; i++) {
611 cslp = pdu + offset;
612 argv[i] = (char *) cslp->text;
613
614 offset += sizeof(*cslp) + le16_to_cpu(cslp->len);
Jens Axboe39e8e012011-10-04 13:46:08 +0200615 dprint(FD_NET, "server: %d: %s\n", i, argv[i]);
616 }
Jens Axboe81179ee2011-10-04 12:42:06 +0200617
Jens Axboe46bcd492012-03-14 11:31:21 +0100618 if (parse_cmd_line(clp->lines, argv, clp->client_type)) {
Jens Axboe122c7722012-03-19 09:13:15 +0100619 fio_net_send_quit(server_fd);
Jens Axboefa2ea802011-10-08 21:07:29 +0200620 free(argv);
Jens Axboe81179ee2011-10-04 12:42:06 +0200621 return -1;
Jens Axboee6d1c662011-10-05 20:41:06 +0200622 }
Jens Axboe81179ee2011-10-04 12:42:06 +0200623
Jens Axboefa2ea802011-10-08 21:07:29 +0200624 free(argv);
625
Jens Axboeb9d2f302012-03-08 20:36:28 +0100626 spdu.jobs = cpu_to_le32(thread_number);
Jens Axboe1e5324e2012-11-14 14:25:31 -0700627 spdu.stat_outputs = cpu_to_le32(stat_number);
Jens Axboe40c60512012-03-27 16:03:04 +0200628 fio_net_send_cmd(server_fd, FIO_NET_CMD_START, &spdu, sizeof(spdu), NULL, NULL);
Jens Axboeb9d2f302012-03-08 20:36:28 +0100629 return 0;
Jens Axboe132159a2011-09-30 15:01:32 -0600630}
631
Jens Axboec28e8e82011-10-04 08:57:39 +0200632static int handle_probe_cmd(struct fio_net_cmd *cmd)
633{
Jens Axboe3989b142013-04-12 13:13:24 +0200634 struct cmd_client_probe_pdu *pdu = (struct cmd_client_probe_pdu *) cmd->payload;
635 struct cmd_probe_reply_pdu probe;
Jens Axboe40c60512012-03-27 16:03:04 +0200636 uint64_t tag = cmd->tag;
Jens Axboec28e8e82011-10-04 08:57:39 +0200637
Jens Axboe89c17072011-10-11 10:15:51 +0200638 dprint(FD_NET, "server: sending probe reply\n");
639
Jens Axboec28e8e82011-10-04 08:57:39 +0200640 memset(&probe, 0, sizeof(probe));
641 gethostname((char *) probe.hostname, sizeof(probe.hostname));
Jens Axboe0dcebdf2013-01-23 15:42:16 -0700642#ifdef CONFIG_BIG_ENDIAN
Jens Axboe6eb24792011-10-04 15:00:30 +0200643 probe.bigendian = 1;
644#endif
Jens Axboe750db472012-04-16 11:44:48 +0200645 strncpy((char *) probe.fio_version, fio_version_string, sizeof(probe.fio_version));
Jens Axboec28e8e82011-10-04 08:57:39 +0200646
Jens Axboecca84642011-10-07 12:47:57 +0200647 probe.os = FIO_OS;
648 probe.arch = FIO_ARCH;
Jens Axboe38fdef22011-10-11 14:30:06 +0200649 probe.bpp = sizeof(void *);
Jens Axboed31e26d2012-03-28 21:38:24 +0200650 probe.cpus = __cpu_to_le32(cpus_online());
Jens Axboe3989b142013-04-12 13:13:24 +0200651
652 /*
653 * If the client supports compression and we do too, then enable it
654 */
655 if (has_zlib && le64_to_cpu(pdu->flags) & FIO_PROBE_FLAG_ZLIB) {
656 probe.flags = __cpu_to_le64(FIO_PROBE_FLAG_ZLIB);
657 use_zlib = 1;
658 } else {
659 probe.flags = 0;
660 use_zlib = 0;
661 }
Jens Axboe38fdef22011-10-11 14:30:06 +0200662
Jens Axboe40c60512012-03-27 16:03:04 +0200663 return fio_net_send_cmd(server_fd, FIO_NET_CMD_PROBE, &probe, sizeof(probe), &tag, NULL);
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200664}
665
666static int handle_send_eta_cmd(struct fio_net_cmd *cmd)
667{
668 struct jobs_eta *je;
Jens Axboe40c60512012-03-27 16:03:04 +0200669 uint64_t tag = cmd->tag;
Jens Axboe61f6cce2014-06-24 08:40:21 -0600670 size_t size;
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200671 int i;
672
Jens Axboe61f6cce2014-06-24 08:40:21 -0600673 je = get_jobs_eta(1, &size);
674 if (!je)
Jens Axboeb814fb22011-10-12 09:20:34 +0200675 return 0;
676
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200677 dprint(FD_NET, "server sending status\n");
678
679 je->nr_running = cpu_to_le32(je->nr_running);
680 je->nr_ramp = cpu_to_le32(je->nr_ramp);
681 je->nr_pending = cpu_to_le32(je->nr_pending);
Jens Axboe714e85f2013-04-15 10:21:56 +0200682 je->nr_setting_up = cpu_to_le32(je->nr_setting_up);
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200683 je->files_open = cpu_to_le32(je->files_open);
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200684
Jens Axboe298921d2012-09-24 18:47:01 +0200685 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
Jens Axboe3e47bd22012-02-29 13:45:02 +0100686 je->m_rate[i] = cpu_to_le32(je->m_rate[i]);
687 je->t_rate[i] = cpu_to_le32(je->t_rate[i]);
688 je->m_iops[i] = cpu_to_le32(je->m_iops[i]);
689 je->t_iops[i] = cpu_to_le32(je->t_iops[i]);
Jens Axboe16725bb2013-04-11 12:43:05 +0200690 je->rate[i] = cpu_to_le32(je->rate[i]);
691 je->iops[i] = cpu_to_le32(je->iops[i]);
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200692 }
693
Jens Axboec1970b92012-03-06 15:37:40 +0100694 je->elapsed_sec = cpu_to_le64(je->elapsed_sec);
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200695 je->eta_sec = cpu_to_le64(je->eta_sec);
Jens Axboe8c621fb2012-03-08 12:30:48 +0100696 je->nr_threads = cpu_to_le32(je->nr_threads);
Jens Axboeb7f05eb2012-05-11 20:33:02 +0200697 je->is_pow2 = cpu_to_le32(je->is_pow2);
Jens Axboeed2c0a12013-04-11 12:55:16 +0200698 je->unit_base = cpu_to_le32(je->unit_base);
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200699
Jens Axboe40c60512012-03-27 16:03:04 +0200700 fio_net_send_cmd(server_fd, FIO_NET_CMD_ETA, je, size, &tag, NULL);
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200701 free(je);
702 return 0;
Jens Axboec28e8e82011-10-04 08:57:39 +0200703}
704
Jens Axboe40c60512012-03-27 16:03:04 +0200705static int send_update_job_reply(int fd, uint64_t __tag, int error)
706{
707 uint64_t tag = __tag;
708 uint32_t pdu_error;
709
710 pdu_error = __cpu_to_le32(error);
711 return fio_net_send_cmd(fd, FIO_NET_CMD_UPDATE_JOB, &pdu_error, sizeof(pdu_error), &tag, NULL);
712}
713
Jens Axboef58bd2a2012-03-27 10:06:42 +0200714static int handle_update_job_cmd(struct fio_net_cmd *cmd)
715{
716 struct cmd_add_job_pdu *pdu = (struct cmd_add_job_pdu *) cmd->payload;
717 struct thread_data *td;
718 uint32_t tnumber;
719
720 tnumber = le32_to_cpu(pdu->thread_number);
721
722 dprint(FD_NET, "server: updating options for job %u\n", tnumber);
723
Jens Axboe30ffacb2012-03-28 09:15:05 +0200724 if (!tnumber || tnumber > thread_number) {
Jens Axboe40c60512012-03-27 16:03:04 +0200725 send_update_job_reply(server_fd, cmd->tag, ENODEV);
Jens Axboef58bd2a2012-03-27 10:06:42 +0200726 return 0;
727 }
728
Jens Axboe30ffacb2012-03-28 09:15:05 +0200729 td = &threads[tnumber - 1];
Jens Axboef58bd2a2012-03-27 10:06:42 +0200730 convert_thread_options_to_cpu(&td->o, &pdu->top);
Jens Axboe40c60512012-03-27 16:03:04 +0200731 send_update_job_reply(server_fd, cmd->tag, 0);
Jens Axboef58bd2a2012-03-27 10:06:42 +0200732 return 0;
733}
734
Jens Axboe6348b5d2013-11-07 13:37:09 -0700735static int handle_command(struct flist_head *job_list, struct fio_net_cmd *cmd)
Jens Axboe132159a2011-09-30 15:01:32 -0600736{
737 int ret;
738
Jens Axboe4b91ee82013-02-25 10:18:33 +0100739 dprint(FD_NET, "server: got op [%s], pdu=%u, tag=%llx\n",
740 fio_server_op(cmd->opcode), cmd->pdu_len,
741 (unsigned long long) cmd->tag);
Jens Axboe46c48f12011-10-01 12:50:51 -0600742
Jens Axboe132159a2011-09-30 15:01:32 -0600743 switch (cmd->opcode) {
744 case FIO_NET_CMD_QUIT:
Jens Axboecc0df002011-10-03 20:53:32 +0200745 fio_terminate_threads(TERMINATE_ALL);
Jens Axboec28e8e82011-10-04 08:57:39 +0200746 return -1;
Jens Axboed7959182011-10-03 11:48:39 +0200747 case FIO_NET_CMD_EXIT:
Jens Axboe132159a2011-09-30 15:01:32 -0600748 exit_backend = 1;
Jens Axboec28e8e82011-10-04 08:57:39 +0200749 return -1;
Jens Axboe132159a2011-09-30 15:01:32 -0600750 case FIO_NET_CMD_JOB:
Jens Axboe0b8f30a2011-10-04 10:31:53 +0200751 ret = handle_job_cmd(cmd);
Jens Axboe132159a2011-09-30 15:01:32 -0600752 break;
Jens Axboe81179ee2011-10-04 12:42:06 +0200753 case FIO_NET_CMD_JOBLINE:
754 ret = handle_jobline_cmd(cmd);
755 break;
Jens Axboec28e8e82011-10-04 08:57:39 +0200756 case FIO_NET_CMD_PROBE:
757 ret = handle_probe_cmd(cmd);
758 break;
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200759 case FIO_NET_CMD_SEND_ETA:
760 ret = handle_send_eta_cmd(cmd);
761 break;
Jens Axboeb9d2f302012-03-08 20:36:28 +0100762 case FIO_NET_CMD_RUN:
Jens Axboe6348b5d2013-11-07 13:37:09 -0700763 ret = handle_run_cmd(job_list, cmd);
Jens Axboeb9d2f302012-03-08 20:36:28 +0100764 break;
Jens Axboef58bd2a2012-03-27 10:06:42 +0200765 case FIO_NET_CMD_UPDATE_JOB:
766 ret = handle_update_job_cmd(cmd);
767 break;
Jens Axboe132159a2011-09-30 15:01:32 -0600768 default:
Jens Axboe3c3ed072012-03-27 09:12:39 +0200769 log_err("fio: unknown opcode: %s\n", fio_server_op(cmd->opcode));
Jens Axboe132159a2011-09-30 15:01:32 -0600770 ret = 1;
771 }
772
773 return ret;
774}
775
Jens Axboe122c7722012-03-19 09:13:15 +0100776static int handle_connection(int sk)
Jens Axboe132159a2011-09-30 15:01:32 -0600777{
778 struct fio_net_cmd *cmd = NULL;
Jens Axboe6348b5d2013-11-07 13:37:09 -0700779 FLIST_HEAD(job_list);
Jens Axboe132159a2011-09-30 15:01:32 -0600780 int ret = 0;
781
Jens Axboe122c7722012-03-19 09:13:15 +0100782 reset_fio_state();
Jens Axboe122c7722012-03-19 09:13:15 +0100783 server_fd = sk;
784
Jens Axboe132159a2011-09-30 15:01:32 -0600785 /* read forever */
786 while (!exit_backend) {
Jens Axboee951bdc2011-10-05 21:58:45 +0200787 struct pollfd pfd = {
788 .fd = sk,
789 .events = POLLIN,
790 };
791
792 ret = 0;
793 do {
Jens Axboe54163252012-03-23 12:25:18 +0100794 int timeout = 1000;
795
796 if (!flist_empty(&job_list))
797 timeout = 100;
Jens Axboe3c3ed072012-03-27 09:12:39 +0200798
Jens Axboe54163252012-03-23 12:25:18 +0100799 ret = poll(&pfd, 1, timeout);
Jens Axboee951bdc2011-10-05 21:58:45 +0200800 if (ret < 0) {
801 if (errno == EINTR)
802 break;
803 log_err("fio: poll: %s\n", strerror(errno));
804 break;
Jens Axboe19c65172011-10-05 22:05:37 +0200805 } else if (!ret) {
Jens Axboe6348b5d2013-11-07 13:37:09 -0700806 fio_server_check_jobs(&job_list);
Jens Axboee951bdc2011-10-05 21:58:45 +0200807 continue;
Jens Axboe19c65172011-10-05 22:05:37 +0200808 }
Jens Axboee951bdc2011-10-05 21:58:45 +0200809
810 if (pfd.revents & POLLIN)
811 break;
812 if (pfd.revents & (POLLERR|POLLHUP)) {
813 ret = 1;
814 break;
815 }
Jens Axboe19c65172011-10-05 22:05:37 +0200816 } while (!exit_backend);
Jens Axboee951bdc2011-10-05 21:58:45 +0200817
Jens Axboe6348b5d2013-11-07 13:37:09 -0700818 fio_server_check_jobs(&job_list);
Jens Axboe122c7722012-03-19 09:13:15 +0100819
Jens Axboee951bdc2011-10-05 21:58:45 +0200820 if (ret < 0)
821 break;
822
823 cmd = fio_net_recv_cmd(sk);
Jens Axboe132159a2011-09-30 15:01:32 -0600824 if (!cmd) {
Jens Axboec28e8e82011-10-04 08:57:39 +0200825 ret = -1;
Jens Axboe132159a2011-09-30 15:01:32 -0600826 break;
827 }
828
Jens Axboe6348b5d2013-11-07 13:37:09 -0700829 ret = handle_command(&job_list, cmd);
Jens Axboe132159a2011-09-30 15:01:32 -0600830 if (ret)
831 break;
832
833 free(cmd);
Jens Axboec77a99e2011-10-01 16:26:42 -0400834 cmd = NULL;
Jens Axboe132159a2011-09-30 15:01:32 -0600835 }
836
837 if (cmd)
838 free(cmd);
839
Jens Axboe122c7722012-03-19 09:13:15 +0100840 close(sk);
841 _exit(ret);
Jens Axboecc0df002011-10-03 20:53:32 +0200842}
843
Jens Axboe50d16972011-09-29 17:45:28 -0600844static int accept_loop(int listen_sk)
845{
Jens Axboebb447a22011-10-04 15:06:42 +0200846 struct sockaddr_in addr;
Jens Axboe479471c2014-01-23 20:42:06 -0800847 struct sockaddr_in6 addr6;
848 socklen_t len = use_ipv6 ? sizeof(addr6) : sizeof(addr);
Jens Axboe009b1be2011-09-29 18:27:02 -0600849 struct pollfd pfd;
Jens Axboe4a851612014-04-14 10:04:21 -0600850 int ret = 0, sk, exitval = 0;
Jens Axboe6348b5d2013-11-07 13:37:09 -0700851 FLIST_HEAD(conn_list);
Jens Axboe50d16972011-09-29 17:45:28 -0600852
Jens Axboe60efd142011-10-04 13:30:11 +0200853 dprint(FD_NET, "server enter accept loop\n");
854
Jens Axboe4a851612014-04-14 10:04:21 -0600855 fio_set_fd_nonblocking(listen_sk, "server");
Jens Axboe122c7722012-03-19 09:13:15 +0100856
857 while (!exit_backend) {
Jens Axboe479471c2014-01-23 20:42:06 -0800858 const char *from;
859 char buf[64];
Jens Axboe122c7722012-03-19 09:13:15 +0100860 pid_t pid;
861
862 pfd.fd = listen_sk;
863 pfd.events = POLLIN;
864 do {
Jens Axboe54163252012-03-23 12:25:18 +0100865 int timeout = 1000;
866
867 if (!flist_empty(&conn_list))
868 timeout = 100;
869
870 ret = poll(&pfd, 1, timeout);
Jens Axboe122c7722012-03-19 09:13:15 +0100871 if (ret < 0) {
872 if (errno == EINTR)
873 break;
874 log_err("fio: poll: %s\n", strerror(errno));
Jens Axboe009b1be2011-09-29 18:27:02 -0600875 break;
Jens Axboe122c7722012-03-19 09:13:15 +0100876 } else if (!ret) {
Jens Axboe6348b5d2013-11-07 13:37:09 -0700877 fio_server_check_conns(&conn_list);
Jens Axboe122c7722012-03-19 09:13:15 +0100878 continue;
879 }
Jens Axboe009b1be2011-09-29 18:27:02 -0600880
Jens Axboe122c7722012-03-19 09:13:15 +0100881 if (pfd.revents & POLLIN)
882 break;
883 } while (!exit_backend);
884
Jens Axboe6348b5d2013-11-07 13:37:09 -0700885 fio_server_check_conns(&conn_list);
Jens Axboe122c7722012-03-19 09:13:15 +0100886
887 if (exit_backend || ret < 0)
Jens Axboe009b1be2011-09-29 18:27:02 -0600888 break;
Jens Axboe009b1be2011-09-29 18:27:02 -0600889
Jens Axboe479471c2014-01-23 20:42:06 -0800890 if (use_ipv6)
891 sk = accept(listen_sk, (struct sockaddr *) &addr6, &len);
892 else
893 sk = accept(listen_sk, (struct sockaddr *) &addr, &len);
894
Jens Axboe122c7722012-03-19 09:13:15 +0100895 if (sk < 0) {
896 log_err("fio: accept: %s\n", strerror(errno));
897 return -1;
898 }
Jens Axboe009b1be2011-09-29 18:27:02 -0600899
Jens Axboe479471c2014-01-23 20:42:06 -0800900 if (use_ipv6)
901 from = inet_ntop(AF_INET6, (struct sockaddr *) &addr6.sin6_addr, buf, sizeof(buf));
902 else
903 from = inet_ntop(AF_INET, (struct sockaddr *) &addr.sin_addr, buf, sizeof(buf));
904
905 dprint(FD_NET, "server: connect from %s\n", from);
Jens Axboe122c7722012-03-19 09:13:15 +0100906
907 pid = fork();
908 if (pid) {
909 close(sk);
Jens Axboe6348b5d2013-11-07 13:37:09 -0700910 fio_server_add_conn_pid(&conn_list, pid);
Jens Axboe122c7722012-03-19 09:13:15 +0100911 continue;
912 }
913
914 /* exits */
915 handle_connection(sk);
Jens Axboe50d16972011-09-29 17:45:28 -0600916 }
917
Jens Axboe132159a2011-09-30 15:01:32 -0600918 return exitval;
Jens Axboe50d16972011-09-29 17:45:28 -0600919}
920
Jens Axboe084d1c62012-03-03 20:28:07 +0100921int fio_server_text_output(int level, const char *buf, size_t len)
Jens Axboe37db14f2011-09-30 17:00:42 -0600922{
Jens Axboe084d1c62012-03-03 20:28:07 +0100923 struct cmd_text_pdu *pdu;
924 unsigned int tlen;
925 struct timeval tv;
Jens Axboe337d75a2011-10-01 12:36:32 -0600926
Jens Axboe084d1c62012-03-03 20:28:07 +0100927 if (server_fd == -1)
928 return log_local_buf(buf, len);
929
930 tlen = sizeof(*pdu) + len;
931 pdu = malloc(tlen);
932
933 pdu->level = __cpu_to_le32(level);
934 pdu->buf_len = __cpu_to_le32(len);
935
936 gettimeofday(&tv, NULL);
937 pdu->log_sec = __cpu_to_le64(tv.tv_sec);
938 pdu->log_usec = __cpu_to_le64(tv.tv_usec);
939
940 memcpy(pdu->buf, buf, len);
941
Jens Axboe40c60512012-03-27 16:03:04 +0200942 fio_net_send_cmd(server_fd, FIO_NET_CMD_TEXT, pdu, tlen, NULL, NULL);
Jens Axboe084d1c62012-03-03 20:28:07 +0100943 free(pdu);
944 return len;
Jens Axboe142575e2011-09-30 17:35:45 -0600945}
946
Jens Axboea64e88d2011-10-03 14:20:01 +0200947static void convert_io_stat(struct io_stat *dst, struct io_stat *src)
948{
949 dst->max_val = cpu_to_le64(src->max_val);
950 dst->min_val = cpu_to_le64(src->min_val);
951 dst->samples = cpu_to_le64(src->samples);
Jens Axboe802ad4a2011-10-05 09:51:58 +0200952
953 /*
954 * Encode to IEEE 754 for network transfer
955 */
956 dst->mean.u.i = __cpu_to_le64(fio_double_to_uint64(src->mean.u.f));
957 dst->S.u.i = __cpu_to_le64(fio_double_to_uint64(src->S.u.f));
Jens Axboea64e88d2011-10-03 14:20:01 +0200958}
959
960static void convert_gs(struct group_run_stats *dst, struct group_run_stats *src)
961{
962 int i;
963
Jens Axboe298921d2012-09-24 18:47:01 +0200964 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
Jens Axboea64e88d2011-10-03 14:20:01 +0200965 dst->max_run[i] = cpu_to_le64(src->max_run[i]);
966 dst->min_run[i] = cpu_to_le64(src->min_run[i]);
967 dst->max_bw[i] = cpu_to_le64(src->max_bw[i]);
968 dst->min_bw[i] = cpu_to_le64(src->min_bw[i]);
969 dst->io_kb[i] = cpu_to_le64(src->io_kb[i]);
970 dst->agg[i] = cpu_to_le64(src->agg[i]);
971 }
972
973 dst->kb_base = cpu_to_le32(src->kb_base);
Steven Noonanad705bc2013-04-08 15:05:25 -0700974 dst->unit_base = cpu_to_le32(src->unit_base);
Jens Axboea64e88d2011-10-03 14:20:01 +0200975 dst->groupid = cpu_to_le32(src->groupid);
Jens Axboe771e58b2013-01-30 12:56:23 +0100976 dst->unified_rw_rep = cpu_to_le32(src->unified_rw_rep);
Jens Axboea64e88d2011-10-03 14:20:01 +0200977}
978
979/*
980 * Send a CMD_TS, which packs struct thread_stat and group_run_stats
981 * into a single payload.
982 */
983void fio_server_send_ts(struct thread_stat *ts, struct group_run_stats *rs)
984{
985 struct cmd_ts_pdu p;
986 int i, j;
987
Jens Axboe60efd142011-10-04 13:30:11 +0200988 dprint(FD_NET, "server sending end stats\n");
989
Jens Axboe317b3c82011-10-03 21:47:27 +0200990 memset(&p, 0, sizeof(p));
991
Jens Axboe4e59d0f2014-03-14 08:41:39 -0600992 strncpy(p.ts.name, ts->name, FIO_JOBNAME_SIZE - 1);
993 strncpy(p.ts.verror, ts->verror, FIO_VERROR_SIZE - 1);
994 strncpy(p.ts.description, ts->description, FIO_JOBDESC_SIZE - 1);
Jens Axboea64e88d2011-10-03 14:20:01 +0200995
Jens Axboe2f122b12012-03-15 13:10:19 +0100996 p.ts.error = cpu_to_le32(ts->error);
997 p.ts.thread_number = cpu_to_le32(ts->thread_number);
998 p.ts.groupid = cpu_to_le32(ts->groupid);
999 p.ts.pid = cpu_to_le32(ts->pid);
1000 p.ts.members = cpu_to_le32(ts->members);
Jens Axboe771e58b2013-01-30 12:56:23 +01001001 p.ts.unified_rw_rep = cpu_to_le32(ts->unified_rw_rep);
Jens Axboea64e88d2011-10-03 14:20:01 +02001002
Jens Axboe298921d2012-09-24 18:47:01 +02001003 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
Jens Axboea64e88d2011-10-03 14:20:01 +02001004 convert_io_stat(&p.ts.clat_stat[i], &ts->clat_stat[i]);
1005 convert_io_stat(&p.ts.slat_stat[i], &ts->slat_stat[i]);
1006 convert_io_stat(&p.ts.lat_stat[i], &ts->lat_stat[i]);
1007 convert_io_stat(&p.ts.bw_stat[i], &ts->bw_stat[i]);
1008 }
1009
1010 p.ts.usr_time = cpu_to_le64(ts->usr_time);
1011 p.ts.sys_time = cpu_to_le64(ts->sys_time);
1012 p.ts.ctx = cpu_to_le64(ts->ctx);
1013 p.ts.minf = cpu_to_le64(ts->minf);
1014 p.ts.majf = cpu_to_le64(ts->majf);
1015 p.ts.clat_percentiles = cpu_to_le64(ts->clat_percentiles);
Jens Axboe802ad4a2011-10-05 09:51:58 +02001016
1017 for (i = 0; i < FIO_IO_U_LIST_MAX_LEN; i++) {
Jens Axboecfc03e42011-10-12 21:20:42 +02001018 fio_fp64_t *src = &ts->percentile_list[i];
1019 fio_fp64_t *dst = &p.ts.percentile_list[i];
Jens Axboe802ad4a2011-10-05 09:51:58 +02001020
Jens Axboecfc03e42011-10-12 21:20:42 +02001021 dst->u.i = __cpu_to_le64(fio_double_to_uint64(src->u.f));
Jens Axboe802ad4a2011-10-05 09:51:58 +02001022 }
Jens Axboea64e88d2011-10-03 14:20:01 +02001023
1024 for (i = 0; i < FIO_IO_U_MAP_NR; i++) {
1025 p.ts.io_u_map[i] = cpu_to_le32(ts->io_u_map[i]);
1026 p.ts.io_u_submit[i] = cpu_to_le32(ts->io_u_submit[i]);
1027 p.ts.io_u_complete[i] = cpu_to_le32(ts->io_u_complete[i]);
1028 }
1029
1030 for (i = 0; i < FIO_IO_U_LAT_U_NR; i++) {
1031 p.ts.io_u_lat_u[i] = cpu_to_le32(ts->io_u_lat_u[i]);
1032 p.ts.io_u_lat_m[i] = cpu_to_le32(ts->io_u_lat_m[i]);
1033 }
1034
Jens Axboe298921d2012-09-24 18:47:01 +02001035 for (i = 0; i < DDIR_RWDIR_CNT; i++)
Jens Axboea64e88d2011-10-03 14:20:01 +02001036 for (j = 0; j < FIO_IO_U_PLAT_NR; j++)
1037 p.ts.io_u_plat[i][j] = cpu_to_le32(ts->io_u_plat[i][j]);
1038
Jens Axboe78799de2013-01-29 20:53:52 +01001039 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
Jens Axboea64e88d2011-10-03 14:20:01 +02001040 p.ts.total_io_u[i] = cpu_to_le64(ts->total_io_u[i]);
Jens Axboe93eee042011-10-03 21:08:48 +02001041 p.ts.short_io_u[i] = cpu_to_le64(ts->short_io_u[i]);
Jens Axboea64e88d2011-10-03 14:20:01 +02001042 }
1043
Jens Axboe93eee042011-10-03 21:08:48 +02001044 p.ts.total_submit = cpu_to_le64(ts->total_submit);
Jens Axboea64e88d2011-10-03 14:20:01 +02001045 p.ts.total_complete = cpu_to_le64(ts->total_complete);
1046
Jens Axboe298921d2012-09-24 18:47:01 +02001047 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
Jens Axboea64e88d2011-10-03 14:20:01 +02001048 p.ts.io_bytes[i] = cpu_to_le64(ts->io_bytes[i]);
1049 p.ts.runtime[i] = cpu_to_le64(ts->runtime[i]);
1050 }
1051
1052 p.ts.total_run_time = cpu_to_le64(ts->total_run_time);
1053 p.ts.continue_on_error = cpu_to_le16(ts->continue_on_error);
1054 p.ts.total_err_count = cpu_to_le64(ts->total_err_count);
Jens Axboeddcc0b62011-10-03 14:45:27 +02001055 p.ts.first_error = cpu_to_le32(ts->first_error);
1056 p.ts.kb_base = cpu_to_le32(ts->kb_base);
Steven Noonanad705bc2013-04-08 15:05:25 -07001057 p.ts.unit_base = cpu_to_le32(ts->unit_base);
Jens Axboea64e88d2011-10-03 14:20:01 +02001058
Jens Axboe3e260a42013-12-09 12:38:53 -07001059 p.ts.latency_depth = cpu_to_le32(ts->latency_depth);
1060 p.ts.latency_target = cpu_to_le64(ts->latency_target);
1061 p.ts.latency_window = cpu_to_le64(ts->latency_window);
1062 p.ts.latency_percentile.u.i = __cpu_to_le64(fio_double_to_uint64(ts->latency_percentile.u.f));
1063
Jens Axboea64e88d2011-10-03 14:20:01 +02001064 convert_gs(&p.rs, rs);
1065
Jens Axboe40c60512012-03-27 16:03:04 +02001066 fio_net_send_cmd(server_fd, FIO_NET_CMD_TS, &p, sizeof(p), NULL, NULL);
Jens Axboea64e88d2011-10-03 14:20:01 +02001067}
1068
1069void fio_server_send_gs(struct group_run_stats *rs)
1070{
1071 struct group_run_stats gs;
1072
Jens Axboe60efd142011-10-04 13:30:11 +02001073 dprint(FD_NET, "server sending group run stats\n");
1074
Jens Axboea64e88d2011-10-03 14:20:01 +02001075 convert_gs(&gs, rs);
Jens Axboe40c60512012-03-27 16:03:04 +02001076 fio_net_send_cmd(server_fd, FIO_NET_CMD_GS, &gs, sizeof(gs), NULL, NULL);
Jens Axboecf451d12011-10-03 16:48:30 +02001077}
1078
Jens Axboed09a64a2011-10-13 11:38:56 +02001079static void convert_agg(struct disk_util_agg *dst, struct disk_util_agg *src)
1080{
1081 int i;
1082
1083 for (i = 0; i < 2; i++) {
1084 dst->ios[i] = cpu_to_le32(src->ios[i]);
1085 dst->merges[i] = cpu_to_le32(src->merges[i]);
1086 dst->sectors[i] = cpu_to_le64(src->sectors[i]);
1087 dst->ticks[i] = cpu_to_le32(src->ticks[i]);
1088 }
1089
1090 dst->io_ticks = cpu_to_le32(src->io_ticks);
1091 dst->time_in_queue = cpu_to_le32(src->time_in_queue);
1092 dst->slavecount = cpu_to_le32(src->slavecount);
1093 dst->max_util.u.i = __cpu_to_le64(fio_double_to_uint64(src->max_util.u.f));
1094}
1095
1096static void convert_dus(struct disk_util_stat *dst, struct disk_util_stat *src)
1097{
1098 int i;
1099
Jens Axboe59140422014-04-14 08:28:08 -06001100 dst->name[FIO_DU_NAME_SZ - 1] = '\0';
1101 strncpy((char *) dst->name, (char *) src->name, FIO_DU_NAME_SZ - 1);
Jens Axboed09a64a2011-10-13 11:38:56 +02001102
1103 for (i = 0; i < 2; i++) {
Jens Axboea3b4cf72014-04-11 12:17:53 -06001104 dst->s.ios[i] = cpu_to_le32(src->s.ios[i]);
1105 dst->s.merges[i] = cpu_to_le32(src->s.merges[i]);
1106 dst->s.sectors[i] = cpu_to_le64(src->s.sectors[i]);
1107 dst->s.ticks[i] = cpu_to_le32(src->s.ticks[i]);
Jens Axboed09a64a2011-10-13 11:38:56 +02001108 }
1109
Jens Axboea3b4cf72014-04-11 12:17:53 -06001110 dst->s.io_ticks = cpu_to_le32(src->s.io_ticks);
1111 dst->s.time_in_queue = cpu_to_le32(src->s.time_in_queue);
1112 dst->s.msec = cpu_to_le64(src->s.msec);
Jens Axboed09a64a2011-10-13 11:38:56 +02001113}
1114
1115void fio_server_send_du(void)
1116{
1117 struct disk_util *du;
1118 struct flist_head *entry;
1119 struct cmd_du_pdu pdu;
1120
1121 dprint(FD_NET, "server: sending disk_util %d\n", !flist_empty(&disk_list));
1122
Jens Axboe0766d922011-10-13 12:02:08 +02001123 memset(&pdu, 0, sizeof(pdu));
1124
Jens Axboed09a64a2011-10-13 11:38:56 +02001125 flist_for_each(entry, &disk_list) {
1126 du = flist_entry(entry, struct disk_util, list);
1127
1128 convert_dus(&pdu.dus, &du->dus);
1129 convert_agg(&pdu.agg, &du->agg);
1130
Jens Axboe40c60512012-03-27 16:03:04 +02001131 fio_net_send_cmd(server_fd, FIO_NET_CMD_DU, &pdu, sizeof(pdu), NULL, NULL);
Jens Axboed09a64a2011-10-13 11:38:56 +02001132 }
1133}
1134
Jens Axboe53bd8db2012-03-14 21:51:38 +01001135/*
1136 * Send a command with a separate PDU, not inlined in the command
1137 */
1138static int fio_send_cmd_ext_pdu(int sk, uint16_t opcode, const void *buf,
1139 off_t size, uint64_t tag, uint32_t flags)
1140{
1141 struct fio_net_cmd cmd;
1142 struct iovec iov[2];
1143
Jens Axboe9f247262014-03-03 13:53:39 -07001144 iov[0].iov_base = (void *) &cmd;
Jens Axboe53bd8db2012-03-14 21:51:38 +01001145 iov[0].iov_len = sizeof(cmd);
1146 iov[1].iov_base = (void *) buf;
1147 iov[1].iov_len = size;
1148
1149 __fio_init_net_cmd(&cmd, opcode, size, tag);
1150 cmd.flags = __cpu_to_le32(flags);
1151 fio_net_cmd_crc_pdu(&cmd, buf);
1152
Jens Axboe8c953072012-03-20 14:35:35 +01001153 return fio_sendv_data(sk, iov, 2);
Jens Axboe53bd8db2012-03-14 21:51:38 +01001154}
1155
Jens Axboe3989b142013-04-12 13:13:24 +02001156static int fio_send_iolog_gz(struct cmd_iolog_pdu *pdu, struct io_log *log)
Jens Axboe1b427252012-03-14 15:03:03 +01001157{
Jens Axboe3989b142013-04-12 13:13:24 +02001158 int ret = 0;
1159#ifdef CONFIG_ZLIB
Jens Axboe1b427252012-03-14 15:03:03 +01001160 z_stream stream;
1161 void *out_pdu;
Jens Axboe1b427252012-03-14 15:03:03 +01001162
1163 /*
1164 * Dirty - since the log is potentially huge, compress it into
1165 * FIO_SERVER_MAX_FRAGMENT_PDU chunks and let the receiving
1166 * side defragment it.
1167 */
1168 out_pdu = malloc(FIO_SERVER_MAX_FRAGMENT_PDU);
1169
1170 stream.zalloc = Z_NULL;
1171 stream.zfree = Z_NULL;
1172 stream.opaque = Z_NULL;
1173
1174 if (deflateInit(&stream, Z_DEFAULT_COMPRESSION) != Z_OK) {
Jens Axboe53bd8db2012-03-14 21:51:38 +01001175 ret = 1;
1176 goto err;
Jens Axboe1b427252012-03-14 15:03:03 +01001177 }
1178
Jens Axboef5ed7652012-03-14 16:28:07 +01001179 stream.next_in = (void *) log->log;
1180 stream.avail_in = log->nr_samples * sizeof(struct io_sample);
Jens Axboe1b427252012-03-14 15:03:03 +01001181
1182 do {
Jens Axboe53bd8db2012-03-14 21:51:38 +01001183 unsigned int this_len, flags = 0;
1184 int ret;
Jens Axboe1b427252012-03-14 15:03:03 +01001185
1186 stream.avail_out = FIO_SERVER_MAX_FRAGMENT_PDU;
1187 stream.next_out = out_pdu;
Jens Axboe3c547fe2012-03-14 21:53:00 +01001188 ret = deflate(&stream, Z_FINISH);
1189 /* may be Z_OK, or Z_STREAM_END */
1190 if (ret < 0)
1191 goto err_zlib;
Jens Axboe1b427252012-03-14 15:03:03 +01001192
1193 this_len = FIO_SERVER_MAX_FRAGMENT_PDU - stream.avail_out;
1194
Jens Axboe1b427252012-03-14 15:03:03 +01001195 if (stream.avail_in)
Jens Axboe53bd8db2012-03-14 21:51:38 +01001196 flags = FIO_NET_CMD_F_MORE;
Jens Axboe1b427252012-03-14 15:03:03 +01001197
Jens Axboe53bd8db2012-03-14 21:51:38 +01001198 ret = fio_send_cmd_ext_pdu(server_fd, FIO_NET_CMD_IOLOG,
1199 out_pdu, this_len, 0, flags);
1200 if (ret)
1201 goto err_zlib;
Jens Axboe1b427252012-03-14 15:03:03 +01001202 } while (stream.avail_in);
1203
Jens Axboe53bd8db2012-03-14 21:51:38 +01001204err_zlib:
Jens Axboe1b427252012-03-14 15:03:03 +01001205 deflateEnd(&stream);
Jens Axboe53bd8db2012-03-14 21:51:38 +01001206err:
1207 free(out_pdu);
Jens Axboe3989b142013-04-12 13:13:24 +02001208#endif
Jens Axboe53bd8db2012-03-14 21:51:38 +01001209 return ret;
Jens Axboe1b427252012-03-14 15:03:03 +01001210}
1211
Jens Axboe3989b142013-04-12 13:13:24 +02001212int fio_send_iolog(struct thread_data *td, struct io_log *log, const char *name)
1213{
1214 struct cmd_iolog_pdu pdu;
1215 int i, ret = 0;
1216
1217 pdu.thread_number = cpu_to_le32(td->thread_number);
1218 pdu.nr_samples = __cpu_to_le32(log->nr_samples);
1219 pdu.log_type = cpu_to_le32(log->log_type);
1220 pdu.compressed = cpu_to_le32(use_zlib);
Jens Axboe9bdb9262014-04-14 11:45:34 -06001221
1222 strncpy((char *) pdu.name, name, FIO_NET_NAME_MAX);
1223 pdu.name[FIO_NET_NAME_MAX - 1] = '\0';
Jens Axboe3989b142013-04-12 13:13:24 +02001224
1225 for (i = 0; i < log->nr_samples; i++) {
1226 struct io_sample *s = &log->log[i];
1227
1228 s->time = cpu_to_le64(s->time);
1229 s->val = cpu_to_le64(s->val);
1230 s->ddir = cpu_to_le32(s->ddir);
1231 s->bs = cpu_to_le32(s->bs);
1232 }
1233
1234 /*
1235 * Send header first, it's not compressed.
1236 */
1237 ret = fio_send_cmd_ext_pdu(server_fd, FIO_NET_CMD_IOLOG, &pdu,
1238 sizeof(pdu), 0, FIO_NET_CMD_F_MORE);
1239 if (ret)
1240 return ret;
1241
1242 /*
1243 * Now send actual log, compress if we can, otherwise just plain
1244 */
1245 if (use_zlib)
1246 return fio_send_iolog_gz(&pdu, log);
1247
1248 return fio_send_cmd_ext_pdu(server_fd, FIO_NET_CMD_IOLOG, log->log,
1249 log->nr_samples * sizeof(struct io_sample), 0, 0);
1250}
1251
Jens Axboe2f122b12012-03-15 13:10:19 +01001252void fio_server_send_add_job(struct thread_data *td)
Jens Axboe807f9972012-03-02 10:25:24 +01001253{
1254 struct cmd_add_job_pdu pdu;
Jens Axboe807f9972012-03-02 10:25:24 +01001255
Jens Axboe731e30a2012-03-14 16:35:37 +01001256 memset(&pdu, 0, sizeof(pdu));
Jens Axboe2f122b12012-03-15 13:10:19 +01001257 pdu.thread_number = cpu_to_le32(td->thread_number);
1258 pdu.groupid = cpu_to_le32(td->groupid);
1259 convert_thread_options_to_net(&pdu.top, &td->o);
Jens Axboe807f9972012-03-02 10:25:24 +01001260
Jens Axboe40c60512012-03-27 16:03:04 +02001261 fio_net_send_cmd(server_fd, FIO_NET_CMD_ADD_JOB, &pdu, sizeof(pdu), NULL, NULL);
Jens Axboe807f9972012-03-02 10:25:24 +01001262}
1263
Jens Axboe122c7722012-03-19 09:13:15 +01001264void fio_server_send_start(struct thread_data *td)
1265{
1266 assert(server_fd != -1);
1267
1268 fio_net_send_simple_cmd(server_fd, FIO_NET_CMD_SERVER_START, 0, NULL);
1269}
1270
Jens Axboe87aa8f12011-10-06 21:24:13 +02001271static int fio_init_server_ip(void)
Jens Axboe81179ee2011-10-04 12:42:06 +02001272{
Jens Axboe811826b2011-10-24 09:11:50 +02001273 struct sockaddr *addr;
Jens Axboe67bf9822013-01-10 11:23:19 +01001274 socklen_t socklen;
Jens Axboe17e35312014-03-25 10:50:55 -07001275 char buf[80];
1276 const char *str;
Jens Axboe87aa8f12011-10-06 21:24:13 +02001277 int sk, opt;
Jens Axboe81179ee2011-10-04 12:42:06 +02001278
Jens Axboe811826b2011-10-24 09:11:50 +02001279 if (use_ipv6)
1280 sk = socket(AF_INET6, SOCK_STREAM, 0);
1281 else
1282 sk = socket(AF_INET, SOCK_STREAM, 0);
1283
Jens Axboe81179ee2011-10-04 12:42:06 +02001284 if (sk < 0) {
1285 log_err("fio: socket: %s\n", strerror(errno));
1286 return -1;
1287 }
1288
1289 opt = 1;
Jens Axboe1f819912013-01-23 17:21:41 -07001290 if (setsockopt(sk, SOL_SOCKET, SO_REUSEADDR, (void *)&opt, sizeof(opt)) < 0) {
Jens Axboe81179ee2011-10-04 12:42:06 +02001291 log_err("fio: setsockopt: %s\n", strerror(errno));
Jens Axboeb94cba42011-10-06 21:27:10 +02001292 close(sk);
Jens Axboe81179ee2011-10-04 12:42:06 +02001293 return -1;
1294 }
1295#ifdef SO_REUSEPORT
Jens Axboe6eb24792011-10-04 15:00:30 +02001296 if (setsockopt(sk, SOL_SOCKET, SO_REUSEPORT, &opt, sizeof(opt)) < 0) {
Jens Axboe81179ee2011-10-04 12:42:06 +02001297 log_err("fio: setsockopt: %s\n", strerror(errno));
Jens Axboeb94cba42011-10-06 21:27:10 +02001298 close(sk);
Jens Axboe81179ee2011-10-04 12:42:06 +02001299 return -1;
1300 }
1301#endif
1302
Jens Axboe811826b2011-10-24 09:11:50 +02001303 if (use_ipv6) {
Jens Axboe17e35312014-03-25 10:50:55 -07001304 const void *src = &saddr_in6.sin6_addr;
1305
Jens Axboe811826b2011-10-24 09:11:50 +02001306 addr = (struct sockaddr *) &saddr_in6;
1307 socklen = sizeof(saddr_in6);
1308 saddr_in6.sin6_family = AF_INET6;
Jens Axboe17e35312014-03-25 10:50:55 -07001309 str = inet_ntop(AF_INET6, src, buf, sizeof(buf));
Jens Axboe811826b2011-10-24 09:11:50 +02001310 } else {
Jens Axboe17e35312014-03-25 10:50:55 -07001311 const void *src = &saddr_in.sin_addr;
1312
Jens Axboe811826b2011-10-24 09:11:50 +02001313 addr = (struct sockaddr *) &saddr_in;
1314 socklen = sizeof(saddr_in);
1315 saddr_in.sin_family = AF_INET;
Jens Axboe17e35312014-03-25 10:50:55 -07001316 str = inet_ntop(AF_INET, src, buf, sizeof(buf));
Jens Axboe811826b2011-10-24 09:11:50 +02001317 }
Jens Axboe81179ee2011-10-04 12:42:06 +02001318
Jens Axboe811826b2011-10-24 09:11:50 +02001319 if (bind(sk, addr, socklen) < 0) {
Jens Axboe81179ee2011-10-04 12:42:06 +02001320 log_err("fio: bind: %s\n", strerror(errno));
Jens Axboe17e35312014-03-25 10:50:55 -07001321 log_info("fio: failed with IPv%c %s\n", use_ipv6 ? '6' : '4', str);
Jens Axboeb94cba42011-10-06 21:27:10 +02001322 close(sk);
Jens Axboe81179ee2011-10-04 12:42:06 +02001323 return -1;
1324 }
1325
Jens Axboe87aa8f12011-10-06 21:24:13 +02001326 return sk;
1327}
1328
1329static int fio_init_server_sock(void)
1330{
1331 struct sockaddr_un addr;
Jens Axboe67bf9822013-01-10 11:23:19 +01001332 socklen_t len;
Jens Axboe87aa8f12011-10-06 21:24:13 +02001333 mode_t mode;
1334 int sk;
1335
1336 sk = socket(AF_UNIX, SOCK_STREAM, 0);
1337 if (sk < 0) {
1338 log_err("fio: socket: %s\n", strerror(errno));
1339 return -1;
1340 }
1341
1342 mode = umask(000);
1343
1344 memset(&addr, 0, sizeof(addr));
1345 addr.sun_family = AF_UNIX;
Jens Axboea48fddb2014-04-14 08:55:13 -06001346 strncpy(addr.sun_path, bind_sock, sizeof(addr.sun_path) - 1);
Jens Axboe87aa8f12011-10-06 21:24:13 +02001347
1348 len = sizeof(addr.sun_family) + strlen(bind_sock) + 1;
1349
1350 if (bind(sk, (struct sockaddr *) &addr, len) < 0) {
1351 log_err("fio: bind: %s\n", strerror(errno));
Jens Axboeb94cba42011-10-06 21:27:10 +02001352 close(sk);
Jens Axboe87aa8f12011-10-06 21:24:13 +02001353 return -1;
1354 }
1355
1356 umask(mode);
1357 return sk;
1358}
1359
1360static int fio_init_server_connection(void)
1361{
Jens Axboebebe6392011-10-07 10:00:51 +02001362 char bind_str[128];
Jens Axboe87aa8f12011-10-06 21:24:13 +02001363 int sk;
1364
1365 dprint(FD_NET, "starting server\n");
1366
1367 if (!bind_sock)
1368 sk = fio_init_server_ip();
1369 else
1370 sk = fio_init_server_sock();
1371
1372 if (sk < 0)
1373 return sk;
1374
Jens Axboeafdcad22014-04-14 08:54:09 -06001375 memset(bind_str, 0, sizeof(bind_str));
1376
Jens Axboe811826b2011-10-24 09:11:50 +02001377 if (!bind_sock) {
1378 char *p, port[16];
1379 const void *src;
1380 int af;
1381
1382 if (use_ipv6) {
1383 af = AF_INET6;
1384 src = &saddr_in6.sin6_addr;
1385 } else {
1386 af = AF_INET;
1387 src = &saddr_in.sin_addr;
1388 }
1389
1390 p = (char *) inet_ntop(af, src, bind_str, sizeof(bind_str));
1391
1392 sprintf(port, ",%u", fio_net_port);
1393 if (p)
1394 strcat(p, port);
1395 else
Jens Axboeafdcad22014-04-14 08:54:09 -06001396 strncpy(bind_str, port, sizeof(bind_str) - 1);
Jens Axboe811826b2011-10-24 09:11:50 +02001397 } else
Jens Axboeafdcad22014-04-14 08:54:09 -06001398 strncpy(bind_str, bind_sock, sizeof(bind_str) - 1);
Jens Axboebebe6392011-10-07 10:00:51 +02001399
1400 log_info("fio: server listening on %s\n", bind_str);
1401
Jens Axboe89c17072011-10-11 10:15:51 +02001402 if (listen(sk, 0) < 0) {
Jens Axboe81179ee2011-10-04 12:42:06 +02001403 log_err("fio: listen: %s\n", strerror(errno));
Jens Axboe2fd973c2014-04-08 21:13:42 -06001404 close(sk);
Jens Axboe81179ee2011-10-04 12:42:06 +02001405 return -1;
1406 }
1407
Jens Axboe87aa8f12011-10-06 21:24:13 +02001408 return sk;
1409}
1410
Jens Axboe3aa3cee2014-01-24 18:56:56 -08001411int fio_server_parse_host(const char *host, int ipv6, struct in_addr *inp,
Jens Axboe3ec62ec2012-03-01 12:01:29 +01001412 struct in6_addr *inp6)
1413
1414{
1415 int ret = 0;
1416
Jens Axboe3aa3cee2014-01-24 18:56:56 -08001417 if (ipv6)
Jens Axboe3ec62ec2012-03-01 12:01:29 +01001418 ret = inet_pton(AF_INET6, host, inp6);
1419 else
1420 ret = inet_pton(AF_INET, host, inp);
1421
1422 if (ret != 1) {
Jens Axboe479471c2014-01-23 20:42:06 -08001423 struct addrinfo hints, *res;
Jens Axboe3ec62ec2012-03-01 12:01:29 +01001424
Jens Axboe479471c2014-01-23 20:42:06 -08001425 memset(&hints, 0, sizeof(hints));
Jens Axboe3aa3cee2014-01-24 18:56:56 -08001426 hints.ai_family = ipv6 ? AF_INET6 : AF_INET;
Jens Axboe479471c2014-01-23 20:42:06 -08001427 hints.ai_socktype = SOCK_STREAM;
1428
1429 ret = getaddrinfo(host, NULL, &hints, &res);
1430 if (ret) {
1431 log_err("fio: failed to resolve <%s> (%s)\n", host,
1432 gai_strerror(ret));
Jens Axboe3caf43e2014-01-24 18:52:16 -08001433 return 1;
Jens Axboe3ec62ec2012-03-01 12:01:29 +01001434 }
1435
Jens Axboe3aa3cee2014-01-24 18:56:56 -08001436 if (ipv6)
Jens Axboe479471c2014-01-23 20:42:06 -08001437 memcpy(inp6, &((struct sockaddr_in6 *) res->ai_addr)->sin6_addr, sizeof(*inp6));
1438 else
1439 memcpy(inp, &((struct sockaddr_in *) res->ai_addr)->sin_addr, sizeof(*inp));
1440
Jens Axboe3ec62ec2012-03-01 12:01:29 +01001441 ret = 1;
Jens Axboe479471c2014-01-23 20:42:06 -08001442 freeaddrinfo(res);
Jens Axboe3ec62ec2012-03-01 12:01:29 +01001443 }
1444
1445 return !(ret == 1);
1446}
1447
Jens Axboe660a2bf2011-10-24 09:35:06 +02001448/*
1449 * Parse a host/ip/port string. Reads from 'str'.
1450 *
1451 * Outputs:
1452 *
1453 * For IPv4:
1454 * *ptr is the host, *port is the port, inp is the destination.
1455 * For IPv6:
1456 * *ptr is the host, *port is the port, inp6 is the dest, and *ipv6 is 1.
1457 * For local domain sockets:
1458 * *ptr is the filename, *is_sock is 1.
1459 */
Jens Axboebebe6392011-10-07 10:00:51 +02001460int fio_server_parse_string(const char *str, char **ptr, int *is_sock,
Jens Axboe811826b2011-10-24 09:11:50 +02001461 int *port, struct in_addr *inp,
1462 struct in6_addr *inp6, int *ipv6)
Jens Axboebebe6392011-10-07 10:00:51 +02001463{
Jens Axboe76867622011-10-25 09:52:51 +02001464 const char *host = str;
1465 char *portp;
Jens Axboe3ec62ec2012-03-01 12:01:29 +01001466 int lport = 0;
Jens Axboe76867622011-10-25 09:52:51 +02001467
Jens Axboebebe6392011-10-07 10:00:51 +02001468 *ptr = NULL;
1469 *is_sock = 0;
Jens Axboe6d2cf392011-10-07 13:19:28 +02001470 *port = fio_net_port;
Jens Axboe811826b2011-10-24 09:11:50 +02001471 *ipv6 = 0;
Jens Axboebebe6392011-10-07 10:00:51 +02001472
1473 if (!strncmp(str, "sock:", 5)) {
1474 *ptr = strdup(str + 5);
1475 *is_sock = 1;
Jens Axboebebe6392011-10-07 10:00:51 +02001476
Jens Axboe76867622011-10-25 09:52:51 +02001477 return 0;
1478 }
1479
1480 /*
1481 * Is it ip:<ip or host>:port
1482 */
1483 if (!strncmp(host, "ip:", 3))
1484 host += 3;
1485 else if (!strncmp(host, "ip4:", 4))
1486 host += 4;
1487 else if (!strncmp(host, "ip6:", 4)) {
1488 host += 4;
1489 *ipv6 = 1;
1490 } else if (host[0] == ':') {
1491 /* String is :port */
1492 host++;
1493 lport = atoi(host);
1494 if (!lport || lport > 65535) {
Jens Axboe4e0a8fa2013-04-15 11:40:57 +02001495 log_err("fio: bad server port %u\n", lport);
Jens Axboe76867622011-10-25 09:52:51 +02001496 return 1;
1497 }
1498 /* no hostname given, we are done */
1499 *port = lport;
1500 return 0;
1501 }
1502
1503 /*
Jens Axboeb96b90c2014-03-25 10:37:56 -07001504 * If no port seen yet, check if there's a last ',' at the end
Jens Axboe76867622011-10-25 09:52:51 +02001505 */
1506 if (!lport) {
1507 portp = strchr(host, ',');
1508 if (portp) {
1509 *portp = '\0';
1510 portp++;
1511 lport = atoi(portp);
Jens Axboebebe6392011-10-07 10:00:51 +02001512 if (!lport || lport > 65535) {
Jens Axboe4e0a8fa2013-04-15 11:40:57 +02001513 log_err("fio: bad server port %u\n", lport);
Jens Axboebebe6392011-10-07 10:00:51 +02001514 return 1;
1515 }
Jens Axboe76867622011-10-25 09:52:51 +02001516 }
1517 }
1518
1519 if (lport)
1520 *port = lport;
1521
1522 if (!strlen(host))
1523 return 0;
1524
1525 *ptr = strdup(host);
1526
Jens Axboe3aa3cee2014-01-24 18:56:56 -08001527 if (fio_server_parse_host(*ptr, *ipv6, inp, inp6)) {
Jens Axboe3ec62ec2012-03-01 12:01:29 +01001528 free(*ptr);
1529 *ptr = NULL;
1530 return 1;
Jens Axboebebe6392011-10-07 10:00:51 +02001531 }
1532
1533 if (*port == 0)
1534 *port = fio_net_port;
1535
1536 return 0;
1537}
1538
Jens Axboe87aa8f12011-10-06 21:24:13 +02001539/*
1540 * Server arg should be one of:
1541 *
1542 * sock:/path/to/socket
1543 * ip:1.2.3.4
1544 * 1.2.3.4
1545 *
1546 * Where sock uses unix domain sockets, and ip binds the server to
1547 * a specific interface. If no arguments are given to the server, it
1548 * uses IP and binds to 0.0.0.0.
1549 *
1550 */
1551static int fio_handle_server_arg(void)
1552{
Jens Axboe6d2cf392011-10-07 13:19:28 +02001553 int port = fio_net_port;
Jens Axboea7de0a12011-10-07 12:55:14 +02001554 int is_sock, ret = 0;
Jens Axboebebe6392011-10-07 10:00:51 +02001555
Jens Axboe87aa8f12011-10-06 21:24:13 +02001556 saddr_in.sin_addr.s_addr = htonl(INADDR_ANY);
1557
1558 if (!fio_server_arg)
Jens Axboea7de0a12011-10-07 12:55:14 +02001559 goto out;
Jens Axboe87aa8f12011-10-06 21:24:13 +02001560
Jens Axboe4e5b8fb2011-10-07 10:03:44 +02001561 ret = fio_server_parse_string(fio_server_arg, &bind_sock, &is_sock,
Jens Axboe811826b2011-10-24 09:11:50 +02001562 &port, &saddr_in.sin_addr,
1563 &saddr_in6.sin6_addr, &use_ipv6);
Jens Axboe4e5b8fb2011-10-07 10:03:44 +02001564
1565 if (!is_sock && bind_sock) {
1566 free(bind_sock);
1567 bind_sock = NULL;
1568 }
1569
Jens Axboea7de0a12011-10-07 12:55:14 +02001570out:
Jens Axboe6d2cf392011-10-07 13:19:28 +02001571 fio_net_port = port;
1572 saddr_in.sin_port = htons(port);
Jens Axboe811826b2011-10-24 09:11:50 +02001573 saddr_in6.sin6_port = htons(port);
Jens Axboe4e5b8fb2011-10-07 10:03:44 +02001574 return ret;
Jens Axboe87aa8f12011-10-06 21:24:13 +02001575}
1576
Jens Axboe43cdea12014-03-25 15:06:17 -07001577static void sig_int(int sig)
1578{
1579 if (bind_sock)
1580 unlink(bind_sock);
1581}
1582
1583static void set_sig_handlers(void)
1584{
1585 struct sigaction act;
1586
1587 memset(&act, 0, sizeof(act));
1588 act.sa_handler = sig_int;
1589 act.sa_flags = SA_RESTART;
1590 sigaction(SIGINT, &act, NULL);
1591}
1592
Jens Axboe87aa8f12011-10-06 21:24:13 +02001593static int fio_server(void)
1594{
1595 int sk, ret;
1596
1597 dprint(FD_NET, "starting server\n");
1598
1599 if (fio_handle_server_arg())
1600 return -1;
1601
1602 sk = fio_init_server_connection();
1603 if (sk < 0)
1604 return -1;
Jens Axboe81179ee2011-10-04 12:42:06 +02001605
Jens Axboe43cdea12014-03-25 15:06:17 -07001606 set_sig_handlers();
1607
Jens Axboe81179ee2011-10-04 12:42:06 +02001608 ret = accept_loop(sk);
Jens Axboe87aa8f12011-10-06 21:24:13 +02001609
Jens Axboe81179ee2011-10-04 12:42:06 +02001610 close(sk);
Jens Axboe87aa8f12011-10-06 21:24:13 +02001611
1612 if (fio_server_arg) {
1613 free(fio_server_arg);
1614 fio_server_arg = NULL;
1615 }
Jens Axboebebe6392011-10-07 10:00:51 +02001616 if (bind_sock)
1617 free(bind_sock);
Jens Axboe87aa8f12011-10-06 21:24:13 +02001618
Jens Axboe81179ee2011-10-04 12:42:06 +02001619 return ret;
1620}
1621
Jens Axboe7b821682011-10-11 12:16:32 +02001622void fio_server_got_signal(int signal)
Jens Axboe9abea482011-10-04 13:21:54 +02001623{
Jens Axboe7b821682011-10-11 12:16:32 +02001624 if (signal == SIGPIPE)
1625 server_fd = -1;
1626 else {
1627 log_info("\nfio: terminating on signal %d\n", signal);
1628 exit_backend = 1;
1629 }
Jens Axboe9abea482011-10-04 13:21:54 +02001630}
1631
Jens Axboe13755d92011-10-10 19:51:26 +02001632static int check_existing_pidfile(const char *pidfile)
1633{
1634 struct stat sb;
1635 char buf[16];
1636 pid_t pid;
1637 FILE *f;
1638
1639 if (stat(pidfile, &sb))
1640 return 0;
1641
1642 f = fopen(pidfile, "r");
1643 if (!f)
1644 return 0;
1645
Jens Axboebfc3b172011-10-10 21:16:55 +02001646 if (fread(buf, sb.st_size, 1, f) <= 0) {
Jens Axboe13755d92011-10-10 19:51:26 +02001647 fclose(f);
1648 return 1;
1649 }
1650 fclose(f);
1651
1652 pid = atoi(buf);
1653 if (kill(pid, SIGCONT) < 0)
Jens Axboeea5aa1b2011-10-11 11:45:35 +02001654 return errno != ESRCH;
Jens Axboe13755d92011-10-10 19:51:26 +02001655
1656 return 1;
1657}
1658
1659static int write_pid(pid_t pid, const char *pidfile)
Jens Axboe402668f2011-10-10 15:28:58 +02001660{
1661 FILE *fpid;
1662
1663 fpid = fopen(pidfile, "w");
1664 if (!fpid) {
1665 log_err("fio: failed opening pid file %s\n", pidfile);
Jens Axboe13755d92011-10-10 19:51:26 +02001666 return 1;
Jens Axboe402668f2011-10-10 15:28:58 +02001667 }
1668
1669 fprintf(fpid, "%u\n", (unsigned int) pid);
Jens Axboe13755d92011-10-10 19:51:26 +02001670 fclose(fpid);
1671 return 0;
Jens Axboe402668f2011-10-10 15:28:58 +02001672}
1673
1674/*
1675 * If pidfile is specified, background us.
1676 */
1677int fio_start_server(char *pidfile)
Jens Axboee46d8092011-10-03 09:11:02 +02001678{
1679 pid_t pid;
Jens Axboe402668f2011-10-10 15:28:58 +02001680 int ret;
Jens Axboee46d8092011-10-03 09:11:02 +02001681
Bruce Cran93bcfd22012-02-20 20:18:19 +01001682#if defined(WIN32)
Jens Axboe905c78b2012-03-06 19:34:22 +01001683 WSADATA wsd;
Jens Axboe3c3ed072012-03-27 09:12:39 +02001684 WSAStartup(MAKEWORD(2, 2), &wsd);
Bruce Cran93bcfd22012-02-20 20:18:19 +01001685#endif
1686
Jens Axboe402668f2011-10-10 15:28:58 +02001687 if (!pidfile)
Jens Axboee46d8092011-10-03 09:11:02 +02001688 return fio_server();
1689
Jens Axboe13755d92011-10-10 19:51:26 +02001690 if (check_existing_pidfile(pidfile)) {
1691 log_err("fio: pidfile %s exists and server appears alive\n",
1692 pidfile);
Jens Axboeb8ba87a2014-04-11 11:37:34 -06001693 free(pidfile);
Jens Axboe13755d92011-10-10 19:51:26 +02001694 return -1;
1695 }
1696
Jens Axboee46d8092011-10-03 09:11:02 +02001697 pid = fork();
1698 if (pid < 0) {
Jens Axboe13755d92011-10-10 19:51:26 +02001699 log_err("fio: failed server fork: %s", strerror(errno));
Jens Axboe402668f2011-10-10 15:28:58 +02001700 free(pidfile);
Jens Axboec28e8e82011-10-04 08:57:39 +02001701 return -1;
Jens Axboe402668f2011-10-10 15:28:58 +02001702 } else if (pid) {
Jens Axboe13755d92011-10-10 19:51:26 +02001703 int ret = write_pid(pid, pidfile);
1704
Jens Axboeb8ba87a2014-04-11 11:37:34 -06001705 free(pidfile);
Jens Axboe13755d92011-10-10 19:51:26 +02001706 exit(ret);
Jens Axboe402668f2011-10-10 15:28:58 +02001707 }
Jens Axboee46d8092011-10-03 09:11:02 +02001708
1709 setsid();
Jens Axboe13755d92011-10-10 19:51:26 +02001710 openlog("fio", LOG_NDELAY|LOG_NOWAIT|LOG_PID, LOG_USER);
1711 log_syslog = 1;
Jens Axboee46d8092011-10-03 09:11:02 +02001712 close(STDIN_FILENO);
1713 close(STDOUT_FILENO);
1714 close(STDERR_FILENO);
1715 f_out = NULL;
1716 f_err = NULL;
Jens Axboe402668f2011-10-10 15:28:58 +02001717
1718 ret = fio_server();
1719
1720 closelog();
1721 unlink(pidfile);
1722 free(pidfile);
1723 return ret;
Jens Axboee46d8092011-10-03 09:11:02 +02001724}
Jens Axboe87aa8f12011-10-06 21:24:13 +02001725
Jens Axboebebe6392011-10-07 10:00:51 +02001726void fio_server_set_arg(const char *arg)
Jens Axboe87aa8f12011-10-06 21:24:13 +02001727{
1728 fio_server_arg = strdup(arg);
1729}