blob: 8865502520cb7f1fe2a8315bf8c9c79c54e346a7 [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;
669 size_t size;
Jens Axboe40c60512012-03-27 16:03:04 +0200670 uint64_t tag = cmd->tag;
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200671 int i;
672
Jens Axboeb814fb22011-10-12 09:20:34 +0200673 if (!thread_number)
674 return 0;
675
676 size = sizeof(*je) + thread_number * sizeof(char) + 1;
Jens Axboe7f868312011-10-10 09:55:21 +0200677 je = malloc(size);
678 memset(je, 0, size);
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200679
680 if (!calc_thread_status(je, 1)) {
681 free(je);
682 return 0;
683 }
684
685 dprint(FD_NET, "server sending status\n");
686
687 je->nr_running = cpu_to_le32(je->nr_running);
688 je->nr_ramp = cpu_to_le32(je->nr_ramp);
689 je->nr_pending = cpu_to_le32(je->nr_pending);
Jens Axboe714e85f2013-04-15 10:21:56 +0200690 je->nr_setting_up = cpu_to_le32(je->nr_setting_up);
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200691 je->files_open = cpu_to_le32(je->files_open);
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200692
Jens Axboe298921d2012-09-24 18:47:01 +0200693 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
Jens Axboe3e47bd22012-02-29 13:45:02 +0100694 je->m_rate[i] = cpu_to_le32(je->m_rate[i]);
695 je->t_rate[i] = cpu_to_le32(je->t_rate[i]);
696 je->m_iops[i] = cpu_to_le32(je->m_iops[i]);
697 je->t_iops[i] = cpu_to_le32(je->t_iops[i]);
Jens Axboe16725bb2013-04-11 12:43:05 +0200698 je->rate[i] = cpu_to_le32(je->rate[i]);
699 je->iops[i] = cpu_to_le32(je->iops[i]);
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200700 }
701
Jens Axboec1970b92012-03-06 15:37:40 +0100702 je->elapsed_sec = cpu_to_le64(je->elapsed_sec);
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200703 je->eta_sec = cpu_to_le64(je->eta_sec);
Jens Axboe8c621fb2012-03-08 12:30:48 +0100704 je->nr_threads = cpu_to_le32(je->nr_threads);
Jens Axboeb7f05eb2012-05-11 20:33:02 +0200705 je->is_pow2 = cpu_to_le32(je->is_pow2);
Jens Axboeed2c0a12013-04-11 12:55:16 +0200706 je->unit_base = cpu_to_le32(je->unit_base);
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200707
Jens Axboe40c60512012-03-27 16:03:04 +0200708 fio_net_send_cmd(server_fd, FIO_NET_CMD_ETA, je, size, &tag, NULL);
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200709 free(je);
710 return 0;
Jens Axboec28e8e82011-10-04 08:57:39 +0200711}
712
Jens Axboe40c60512012-03-27 16:03:04 +0200713static int send_update_job_reply(int fd, uint64_t __tag, int error)
714{
715 uint64_t tag = __tag;
716 uint32_t pdu_error;
717
718 pdu_error = __cpu_to_le32(error);
719 return fio_net_send_cmd(fd, FIO_NET_CMD_UPDATE_JOB, &pdu_error, sizeof(pdu_error), &tag, NULL);
720}
721
Jens Axboef58bd2a2012-03-27 10:06:42 +0200722static int handle_update_job_cmd(struct fio_net_cmd *cmd)
723{
724 struct cmd_add_job_pdu *pdu = (struct cmd_add_job_pdu *) cmd->payload;
725 struct thread_data *td;
726 uint32_t tnumber;
727
728 tnumber = le32_to_cpu(pdu->thread_number);
729
730 dprint(FD_NET, "server: updating options for job %u\n", tnumber);
731
Jens Axboe30ffacb2012-03-28 09:15:05 +0200732 if (!tnumber || tnumber > thread_number) {
Jens Axboe40c60512012-03-27 16:03:04 +0200733 send_update_job_reply(server_fd, cmd->tag, ENODEV);
Jens Axboef58bd2a2012-03-27 10:06:42 +0200734 return 0;
735 }
736
Jens Axboe30ffacb2012-03-28 09:15:05 +0200737 td = &threads[tnumber - 1];
Jens Axboef58bd2a2012-03-27 10:06:42 +0200738 convert_thread_options_to_cpu(&td->o, &pdu->top);
Jens Axboe40c60512012-03-27 16:03:04 +0200739 send_update_job_reply(server_fd, cmd->tag, 0);
Jens Axboef58bd2a2012-03-27 10:06:42 +0200740 return 0;
741}
742
Jens Axboe6348b5d2013-11-07 13:37:09 -0700743static int handle_command(struct flist_head *job_list, struct fio_net_cmd *cmd)
Jens Axboe132159a2011-09-30 15:01:32 -0600744{
745 int ret;
746
Jens Axboe4b91ee82013-02-25 10:18:33 +0100747 dprint(FD_NET, "server: got op [%s], pdu=%u, tag=%llx\n",
748 fio_server_op(cmd->opcode), cmd->pdu_len,
749 (unsigned long long) cmd->tag);
Jens Axboe46c48f12011-10-01 12:50:51 -0600750
Jens Axboe132159a2011-09-30 15:01:32 -0600751 switch (cmd->opcode) {
752 case FIO_NET_CMD_QUIT:
Jens Axboecc0df002011-10-03 20:53:32 +0200753 fio_terminate_threads(TERMINATE_ALL);
Jens Axboec28e8e82011-10-04 08:57:39 +0200754 return -1;
Jens Axboed7959182011-10-03 11:48:39 +0200755 case FIO_NET_CMD_EXIT:
Jens Axboe132159a2011-09-30 15:01:32 -0600756 exit_backend = 1;
Jens Axboec28e8e82011-10-04 08:57:39 +0200757 return -1;
Jens Axboe132159a2011-09-30 15:01:32 -0600758 case FIO_NET_CMD_JOB:
Jens Axboe0b8f30a2011-10-04 10:31:53 +0200759 ret = handle_job_cmd(cmd);
Jens Axboe132159a2011-09-30 15:01:32 -0600760 break;
Jens Axboe81179ee2011-10-04 12:42:06 +0200761 case FIO_NET_CMD_JOBLINE:
762 ret = handle_jobline_cmd(cmd);
763 break;
Jens Axboec28e8e82011-10-04 08:57:39 +0200764 case FIO_NET_CMD_PROBE:
765 ret = handle_probe_cmd(cmd);
766 break;
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200767 case FIO_NET_CMD_SEND_ETA:
768 ret = handle_send_eta_cmd(cmd);
769 break;
Jens Axboeb9d2f302012-03-08 20:36:28 +0100770 case FIO_NET_CMD_RUN:
Jens Axboe6348b5d2013-11-07 13:37:09 -0700771 ret = handle_run_cmd(job_list, cmd);
Jens Axboeb9d2f302012-03-08 20:36:28 +0100772 break;
Jens Axboef58bd2a2012-03-27 10:06:42 +0200773 case FIO_NET_CMD_UPDATE_JOB:
774 ret = handle_update_job_cmd(cmd);
775 break;
Jens Axboe132159a2011-09-30 15:01:32 -0600776 default:
Jens Axboe3c3ed072012-03-27 09:12:39 +0200777 log_err("fio: unknown opcode: %s\n", fio_server_op(cmd->opcode));
Jens Axboe132159a2011-09-30 15:01:32 -0600778 ret = 1;
779 }
780
781 return ret;
782}
783
Jens Axboe122c7722012-03-19 09:13:15 +0100784static int handle_connection(int sk)
Jens Axboe132159a2011-09-30 15:01:32 -0600785{
786 struct fio_net_cmd *cmd = NULL;
Jens Axboe6348b5d2013-11-07 13:37:09 -0700787 FLIST_HEAD(job_list);
Jens Axboe132159a2011-09-30 15:01:32 -0600788 int ret = 0;
789
Jens Axboe122c7722012-03-19 09:13:15 +0100790 reset_fio_state();
Jens Axboe122c7722012-03-19 09:13:15 +0100791 server_fd = sk;
792
Jens Axboe132159a2011-09-30 15:01:32 -0600793 /* read forever */
794 while (!exit_backend) {
Jens Axboee951bdc2011-10-05 21:58:45 +0200795 struct pollfd pfd = {
796 .fd = sk,
797 .events = POLLIN,
798 };
799
800 ret = 0;
801 do {
Jens Axboe54163252012-03-23 12:25:18 +0100802 int timeout = 1000;
803
804 if (!flist_empty(&job_list))
805 timeout = 100;
Jens Axboe3c3ed072012-03-27 09:12:39 +0200806
Jens Axboe54163252012-03-23 12:25:18 +0100807 ret = poll(&pfd, 1, timeout);
Jens Axboee951bdc2011-10-05 21:58:45 +0200808 if (ret < 0) {
809 if (errno == EINTR)
810 break;
811 log_err("fio: poll: %s\n", strerror(errno));
812 break;
Jens Axboe19c65172011-10-05 22:05:37 +0200813 } else if (!ret) {
Jens Axboe6348b5d2013-11-07 13:37:09 -0700814 fio_server_check_jobs(&job_list);
Jens Axboee951bdc2011-10-05 21:58:45 +0200815 continue;
Jens Axboe19c65172011-10-05 22:05:37 +0200816 }
Jens Axboee951bdc2011-10-05 21:58:45 +0200817
818 if (pfd.revents & POLLIN)
819 break;
820 if (pfd.revents & (POLLERR|POLLHUP)) {
821 ret = 1;
822 break;
823 }
Jens Axboe19c65172011-10-05 22:05:37 +0200824 } while (!exit_backend);
Jens Axboee951bdc2011-10-05 21:58:45 +0200825
Jens Axboe6348b5d2013-11-07 13:37:09 -0700826 fio_server_check_jobs(&job_list);
Jens Axboe122c7722012-03-19 09:13:15 +0100827
Jens Axboee951bdc2011-10-05 21:58:45 +0200828 if (ret < 0)
829 break;
830
831 cmd = fio_net_recv_cmd(sk);
Jens Axboe132159a2011-09-30 15:01:32 -0600832 if (!cmd) {
Jens Axboec28e8e82011-10-04 08:57:39 +0200833 ret = -1;
Jens Axboe132159a2011-09-30 15:01:32 -0600834 break;
835 }
836
Jens Axboe6348b5d2013-11-07 13:37:09 -0700837 ret = handle_command(&job_list, cmd);
Jens Axboe132159a2011-09-30 15:01:32 -0600838 if (ret)
839 break;
840
841 free(cmd);
Jens Axboec77a99e2011-10-01 16:26:42 -0400842 cmd = NULL;
Jens Axboe132159a2011-09-30 15:01:32 -0600843 }
844
845 if (cmd)
846 free(cmd);
847
Jens Axboe122c7722012-03-19 09:13:15 +0100848 close(sk);
849 _exit(ret);
Jens Axboecc0df002011-10-03 20:53:32 +0200850}
851
Jens Axboe50d16972011-09-29 17:45:28 -0600852static int accept_loop(int listen_sk)
853{
Jens Axboebb447a22011-10-04 15:06:42 +0200854 struct sockaddr_in addr;
Jens Axboe479471c2014-01-23 20:42:06 -0800855 struct sockaddr_in6 addr6;
856 socklen_t len = use_ipv6 ? sizeof(addr6) : sizeof(addr);
Jens Axboe009b1be2011-09-29 18:27:02 -0600857 struct pollfd pfd;
Jens Axboe4a851612014-04-14 10:04:21 -0600858 int ret = 0, sk, exitval = 0;
Jens Axboe6348b5d2013-11-07 13:37:09 -0700859 FLIST_HEAD(conn_list);
Jens Axboe50d16972011-09-29 17:45:28 -0600860
Jens Axboe60efd142011-10-04 13:30:11 +0200861 dprint(FD_NET, "server enter accept loop\n");
862
Jens Axboe4a851612014-04-14 10:04:21 -0600863 fio_set_fd_nonblocking(listen_sk, "server");
Jens Axboe122c7722012-03-19 09:13:15 +0100864
865 while (!exit_backend) {
Jens Axboe479471c2014-01-23 20:42:06 -0800866 const char *from;
867 char buf[64];
Jens Axboe122c7722012-03-19 09:13:15 +0100868 pid_t pid;
869
870 pfd.fd = listen_sk;
871 pfd.events = POLLIN;
872 do {
Jens Axboe54163252012-03-23 12:25:18 +0100873 int timeout = 1000;
874
875 if (!flist_empty(&conn_list))
876 timeout = 100;
877
878 ret = poll(&pfd, 1, timeout);
Jens Axboe122c7722012-03-19 09:13:15 +0100879 if (ret < 0) {
880 if (errno == EINTR)
881 break;
882 log_err("fio: poll: %s\n", strerror(errno));
Jens Axboe009b1be2011-09-29 18:27:02 -0600883 break;
Jens Axboe122c7722012-03-19 09:13:15 +0100884 } else if (!ret) {
Jens Axboe6348b5d2013-11-07 13:37:09 -0700885 fio_server_check_conns(&conn_list);
Jens Axboe122c7722012-03-19 09:13:15 +0100886 continue;
887 }
Jens Axboe009b1be2011-09-29 18:27:02 -0600888
Jens Axboe122c7722012-03-19 09:13:15 +0100889 if (pfd.revents & POLLIN)
890 break;
891 } while (!exit_backend);
892
Jens Axboe6348b5d2013-11-07 13:37:09 -0700893 fio_server_check_conns(&conn_list);
Jens Axboe122c7722012-03-19 09:13:15 +0100894
895 if (exit_backend || ret < 0)
Jens Axboe009b1be2011-09-29 18:27:02 -0600896 break;
Jens Axboe009b1be2011-09-29 18:27:02 -0600897
Jens Axboe479471c2014-01-23 20:42:06 -0800898 if (use_ipv6)
899 sk = accept(listen_sk, (struct sockaddr *) &addr6, &len);
900 else
901 sk = accept(listen_sk, (struct sockaddr *) &addr, &len);
902
Jens Axboe122c7722012-03-19 09:13:15 +0100903 if (sk < 0) {
904 log_err("fio: accept: %s\n", strerror(errno));
905 return -1;
906 }
Jens Axboe009b1be2011-09-29 18:27:02 -0600907
Jens Axboe479471c2014-01-23 20:42:06 -0800908 if (use_ipv6)
909 from = inet_ntop(AF_INET6, (struct sockaddr *) &addr6.sin6_addr, buf, sizeof(buf));
910 else
911 from = inet_ntop(AF_INET, (struct sockaddr *) &addr.sin_addr, buf, sizeof(buf));
912
913 dprint(FD_NET, "server: connect from %s\n", from);
Jens Axboe122c7722012-03-19 09:13:15 +0100914
915 pid = fork();
916 if (pid) {
917 close(sk);
Jens Axboe6348b5d2013-11-07 13:37:09 -0700918 fio_server_add_conn_pid(&conn_list, pid);
Jens Axboe122c7722012-03-19 09:13:15 +0100919 continue;
920 }
921
922 /* exits */
923 handle_connection(sk);
Jens Axboe50d16972011-09-29 17:45:28 -0600924 }
925
Jens Axboe132159a2011-09-30 15:01:32 -0600926 return exitval;
Jens Axboe50d16972011-09-29 17:45:28 -0600927}
928
Jens Axboe084d1c62012-03-03 20:28:07 +0100929int fio_server_text_output(int level, const char *buf, size_t len)
Jens Axboe37db14f2011-09-30 17:00:42 -0600930{
Jens Axboe084d1c62012-03-03 20:28:07 +0100931 struct cmd_text_pdu *pdu;
932 unsigned int tlen;
933 struct timeval tv;
Jens Axboe337d75a2011-10-01 12:36:32 -0600934
Jens Axboe084d1c62012-03-03 20:28:07 +0100935 if (server_fd == -1)
936 return log_local_buf(buf, len);
937
938 tlen = sizeof(*pdu) + len;
939 pdu = malloc(tlen);
940
941 pdu->level = __cpu_to_le32(level);
942 pdu->buf_len = __cpu_to_le32(len);
943
944 gettimeofday(&tv, NULL);
945 pdu->log_sec = __cpu_to_le64(tv.tv_sec);
946 pdu->log_usec = __cpu_to_le64(tv.tv_usec);
947
948 memcpy(pdu->buf, buf, len);
949
Jens Axboe40c60512012-03-27 16:03:04 +0200950 fio_net_send_cmd(server_fd, FIO_NET_CMD_TEXT, pdu, tlen, NULL, NULL);
Jens Axboe084d1c62012-03-03 20:28:07 +0100951 free(pdu);
952 return len;
Jens Axboe142575e2011-09-30 17:35:45 -0600953}
954
Jens Axboea64e88d2011-10-03 14:20:01 +0200955static void convert_io_stat(struct io_stat *dst, struct io_stat *src)
956{
957 dst->max_val = cpu_to_le64(src->max_val);
958 dst->min_val = cpu_to_le64(src->min_val);
959 dst->samples = cpu_to_le64(src->samples);
Jens Axboe802ad4a2011-10-05 09:51:58 +0200960
961 /*
962 * Encode to IEEE 754 for network transfer
963 */
964 dst->mean.u.i = __cpu_to_le64(fio_double_to_uint64(src->mean.u.f));
965 dst->S.u.i = __cpu_to_le64(fio_double_to_uint64(src->S.u.f));
Jens Axboea64e88d2011-10-03 14:20:01 +0200966}
967
968static void convert_gs(struct group_run_stats *dst, struct group_run_stats *src)
969{
970 int i;
971
Jens Axboe298921d2012-09-24 18:47:01 +0200972 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
Jens Axboea64e88d2011-10-03 14:20:01 +0200973 dst->max_run[i] = cpu_to_le64(src->max_run[i]);
974 dst->min_run[i] = cpu_to_le64(src->min_run[i]);
975 dst->max_bw[i] = cpu_to_le64(src->max_bw[i]);
976 dst->min_bw[i] = cpu_to_le64(src->min_bw[i]);
977 dst->io_kb[i] = cpu_to_le64(src->io_kb[i]);
978 dst->agg[i] = cpu_to_le64(src->agg[i]);
979 }
980
981 dst->kb_base = cpu_to_le32(src->kb_base);
Steven Noonanad705bc2013-04-08 15:05:25 -0700982 dst->unit_base = cpu_to_le32(src->unit_base);
Jens Axboea64e88d2011-10-03 14:20:01 +0200983 dst->groupid = cpu_to_le32(src->groupid);
Jens Axboe771e58b2013-01-30 12:56:23 +0100984 dst->unified_rw_rep = cpu_to_le32(src->unified_rw_rep);
Jens Axboea64e88d2011-10-03 14:20:01 +0200985}
986
987/*
988 * Send a CMD_TS, which packs struct thread_stat and group_run_stats
989 * into a single payload.
990 */
991void fio_server_send_ts(struct thread_stat *ts, struct group_run_stats *rs)
992{
993 struct cmd_ts_pdu p;
994 int i, j;
995
Jens Axboe60efd142011-10-04 13:30:11 +0200996 dprint(FD_NET, "server sending end stats\n");
997
Jens Axboe317b3c82011-10-03 21:47:27 +0200998 memset(&p, 0, sizeof(p));
999
Jens Axboe4e59d0f2014-03-14 08:41:39 -06001000 strncpy(p.ts.name, ts->name, FIO_JOBNAME_SIZE - 1);
1001 strncpy(p.ts.verror, ts->verror, FIO_VERROR_SIZE - 1);
1002 strncpy(p.ts.description, ts->description, FIO_JOBDESC_SIZE - 1);
Jens Axboea64e88d2011-10-03 14:20:01 +02001003
Jens Axboe2f122b12012-03-15 13:10:19 +01001004 p.ts.error = cpu_to_le32(ts->error);
1005 p.ts.thread_number = cpu_to_le32(ts->thread_number);
1006 p.ts.groupid = cpu_to_le32(ts->groupid);
1007 p.ts.pid = cpu_to_le32(ts->pid);
1008 p.ts.members = cpu_to_le32(ts->members);
Jens Axboe771e58b2013-01-30 12:56:23 +01001009 p.ts.unified_rw_rep = cpu_to_le32(ts->unified_rw_rep);
Jens Axboea64e88d2011-10-03 14:20:01 +02001010
Jens Axboe298921d2012-09-24 18:47:01 +02001011 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
Jens Axboea64e88d2011-10-03 14:20:01 +02001012 convert_io_stat(&p.ts.clat_stat[i], &ts->clat_stat[i]);
1013 convert_io_stat(&p.ts.slat_stat[i], &ts->slat_stat[i]);
1014 convert_io_stat(&p.ts.lat_stat[i], &ts->lat_stat[i]);
1015 convert_io_stat(&p.ts.bw_stat[i], &ts->bw_stat[i]);
1016 }
1017
1018 p.ts.usr_time = cpu_to_le64(ts->usr_time);
1019 p.ts.sys_time = cpu_to_le64(ts->sys_time);
1020 p.ts.ctx = cpu_to_le64(ts->ctx);
1021 p.ts.minf = cpu_to_le64(ts->minf);
1022 p.ts.majf = cpu_to_le64(ts->majf);
1023 p.ts.clat_percentiles = cpu_to_le64(ts->clat_percentiles);
Jens Axboe802ad4a2011-10-05 09:51:58 +02001024
1025 for (i = 0; i < FIO_IO_U_LIST_MAX_LEN; i++) {
Jens Axboecfc03e42011-10-12 21:20:42 +02001026 fio_fp64_t *src = &ts->percentile_list[i];
1027 fio_fp64_t *dst = &p.ts.percentile_list[i];
Jens Axboe802ad4a2011-10-05 09:51:58 +02001028
Jens Axboecfc03e42011-10-12 21:20:42 +02001029 dst->u.i = __cpu_to_le64(fio_double_to_uint64(src->u.f));
Jens Axboe802ad4a2011-10-05 09:51:58 +02001030 }
Jens Axboea64e88d2011-10-03 14:20:01 +02001031
1032 for (i = 0; i < FIO_IO_U_MAP_NR; i++) {
1033 p.ts.io_u_map[i] = cpu_to_le32(ts->io_u_map[i]);
1034 p.ts.io_u_submit[i] = cpu_to_le32(ts->io_u_submit[i]);
1035 p.ts.io_u_complete[i] = cpu_to_le32(ts->io_u_complete[i]);
1036 }
1037
1038 for (i = 0; i < FIO_IO_U_LAT_U_NR; i++) {
1039 p.ts.io_u_lat_u[i] = cpu_to_le32(ts->io_u_lat_u[i]);
1040 p.ts.io_u_lat_m[i] = cpu_to_le32(ts->io_u_lat_m[i]);
1041 }
1042
Jens Axboe298921d2012-09-24 18:47:01 +02001043 for (i = 0; i < DDIR_RWDIR_CNT; i++)
Jens Axboea64e88d2011-10-03 14:20:01 +02001044 for (j = 0; j < FIO_IO_U_PLAT_NR; j++)
1045 p.ts.io_u_plat[i][j] = cpu_to_le32(ts->io_u_plat[i][j]);
1046
Jens Axboe78799de2013-01-29 20:53:52 +01001047 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
Jens Axboea64e88d2011-10-03 14:20:01 +02001048 p.ts.total_io_u[i] = cpu_to_le64(ts->total_io_u[i]);
Jens Axboe93eee042011-10-03 21:08:48 +02001049 p.ts.short_io_u[i] = cpu_to_le64(ts->short_io_u[i]);
Jens Axboea64e88d2011-10-03 14:20:01 +02001050 }
1051
Jens Axboe93eee042011-10-03 21:08:48 +02001052 p.ts.total_submit = cpu_to_le64(ts->total_submit);
Jens Axboea64e88d2011-10-03 14:20:01 +02001053 p.ts.total_complete = cpu_to_le64(ts->total_complete);
1054
Jens Axboe298921d2012-09-24 18:47:01 +02001055 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
Jens Axboea64e88d2011-10-03 14:20:01 +02001056 p.ts.io_bytes[i] = cpu_to_le64(ts->io_bytes[i]);
1057 p.ts.runtime[i] = cpu_to_le64(ts->runtime[i]);
1058 }
1059
1060 p.ts.total_run_time = cpu_to_le64(ts->total_run_time);
1061 p.ts.continue_on_error = cpu_to_le16(ts->continue_on_error);
1062 p.ts.total_err_count = cpu_to_le64(ts->total_err_count);
Jens Axboeddcc0b62011-10-03 14:45:27 +02001063 p.ts.first_error = cpu_to_le32(ts->first_error);
1064 p.ts.kb_base = cpu_to_le32(ts->kb_base);
Steven Noonanad705bc2013-04-08 15:05:25 -07001065 p.ts.unit_base = cpu_to_le32(ts->unit_base);
Jens Axboea64e88d2011-10-03 14:20:01 +02001066
Jens Axboe3e260a42013-12-09 12:38:53 -07001067 p.ts.latency_depth = cpu_to_le32(ts->latency_depth);
1068 p.ts.latency_target = cpu_to_le64(ts->latency_target);
1069 p.ts.latency_window = cpu_to_le64(ts->latency_window);
1070 p.ts.latency_percentile.u.i = __cpu_to_le64(fio_double_to_uint64(ts->latency_percentile.u.f));
1071
Jens Axboea64e88d2011-10-03 14:20:01 +02001072 convert_gs(&p.rs, rs);
1073
Jens Axboe40c60512012-03-27 16:03:04 +02001074 fio_net_send_cmd(server_fd, FIO_NET_CMD_TS, &p, sizeof(p), NULL, NULL);
Jens Axboea64e88d2011-10-03 14:20:01 +02001075}
1076
1077void fio_server_send_gs(struct group_run_stats *rs)
1078{
1079 struct group_run_stats gs;
1080
Jens Axboe60efd142011-10-04 13:30:11 +02001081 dprint(FD_NET, "server sending group run stats\n");
1082
Jens Axboea64e88d2011-10-03 14:20:01 +02001083 convert_gs(&gs, rs);
Jens Axboe40c60512012-03-27 16:03:04 +02001084 fio_net_send_cmd(server_fd, FIO_NET_CMD_GS, &gs, sizeof(gs), NULL, NULL);
Jens Axboecf451d12011-10-03 16:48:30 +02001085}
1086
Jens Axboed09a64a2011-10-13 11:38:56 +02001087static void convert_agg(struct disk_util_agg *dst, struct disk_util_agg *src)
1088{
1089 int i;
1090
1091 for (i = 0; i < 2; i++) {
1092 dst->ios[i] = cpu_to_le32(src->ios[i]);
1093 dst->merges[i] = cpu_to_le32(src->merges[i]);
1094 dst->sectors[i] = cpu_to_le64(src->sectors[i]);
1095 dst->ticks[i] = cpu_to_le32(src->ticks[i]);
1096 }
1097
1098 dst->io_ticks = cpu_to_le32(src->io_ticks);
1099 dst->time_in_queue = cpu_to_le32(src->time_in_queue);
1100 dst->slavecount = cpu_to_le32(src->slavecount);
1101 dst->max_util.u.i = __cpu_to_le64(fio_double_to_uint64(src->max_util.u.f));
1102}
1103
1104static void convert_dus(struct disk_util_stat *dst, struct disk_util_stat *src)
1105{
1106 int i;
1107
Jens Axboe59140422014-04-14 08:28:08 -06001108 dst->name[FIO_DU_NAME_SZ - 1] = '\0';
1109 strncpy((char *) dst->name, (char *) src->name, FIO_DU_NAME_SZ - 1);
Jens Axboed09a64a2011-10-13 11:38:56 +02001110
1111 for (i = 0; i < 2; i++) {
Jens Axboea3b4cf72014-04-11 12:17:53 -06001112 dst->s.ios[i] = cpu_to_le32(src->s.ios[i]);
1113 dst->s.merges[i] = cpu_to_le32(src->s.merges[i]);
1114 dst->s.sectors[i] = cpu_to_le64(src->s.sectors[i]);
1115 dst->s.ticks[i] = cpu_to_le32(src->s.ticks[i]);
Jens Axboed09a64a2011-10-13 11:38:56 +02001116 }
1117
Jens Axboea3b4cf72014-04-11 12:17:53 -06001118 dst->s.io_ticks = cpu_to_le32(src->s.io_ticks);
1119 dst->s.time_in_queue = cpu_to_le32(src->s.time_in_queue);
1120 dst->s.msec = cpu_to_le64(src->s.msec);
Jens Axboed09a64a2011-10-13 11:38:56 +02001121}
1122
1123void fio_server_send_du(void)
1124{
1125 struct disk_util *du;
1126 struct flist_head *entry;
1127 struct cmd_du_pdu pdu;
1128
1129 dprint(FD_NET, "server: sending disk_util %d\n", !flist_empty(&disk_list));
1130
Jens Axboe0766d922011-10-13 12:02:08 +02001131 memset(&pdu, 0, sizeof(pdu));
1132
Jens Axboed09a64a2011-10-13 11:38:56 +02001133 flist_for_each(entry, &disk_list) {
1134 du = flist_entry(entry, struct disk_util, list);
1135
1136 convert_dus(&pdu.dus, &du->dus);
1137 convert_agg(&pdu.agg, &du->agg);
1138
Jens Axboe40c60512012-03-27 16:03:04 +02001139 fio_net_send_cmd(server_fd, FIO_NET_CMD_DU, &pdu, sizeof(pdu), NULL, NULL);
Jens Axboed09a64a2011-10-13 11:38:56 +02001140 }
1141}
1142
Jens Axboe53bd8db2012-03-14 21:51:38 +01001143/*
1144 * Send a command with a separate PDU, not inlined in the command
1145 */
1146static int fio_send_cmd_ext_pdu(int sk, uint16_t opcode, const void *buf,
1147 off_t size, uint64_t tag, uint32_t flags)
1148{
1149 struct fio_net_cmd cmd;
1150 struct iovec iov[2];
1151
Jens Axboe9f247262014-03-03 13:53:39 -07001152 iov[0].iov_base = (void *) &cmd;
Jens Axboe53bd8db2012-03-14 21:51:38 +01001153 iov[0].iov_len = sizeof(cmd);
1154 iov[1].iov_base = (void *) buf;
1155 iov[1].iov_len = size;
1156
1157 __fio_init_net_cmd(&cmd, opcode, size, tag);
1158 cmd.flags = __cpu_to_le32(flags);
1159 fio_net_cmd_crc_pdu(&cmd, buf);
1160
Jens Axboe8c953072012-03-20 14:35:35 +01001161 return fio_sendv_data(sk, iov, 2);
Jens Axboe53bd8db2012-03-14 21:51:38 +01001162}
1163
Jens Axboe3989b142013-04-12 13:13:24 +02001164static int fio_send_iolog_gz(struct cmd_iolog_pdu *pdu, struct io_log *log)
Jens Axboe1b427252012-03-14 15:03:03 +01001165{
Jens Axboe3989b142013-04-12 13:13:24 +02001166 int ret = 0;
1167#ifdef CONFIG_ZLIB
Jens Axboe1b427252012-03-14 15:03:03 +01001168 z_stream stream;
1169 void *out_pdu;
Jens Axboe1b427252012-03-14 15:03:03 +01001170
1171 /*
1172 * Dirty - since the log is potentially huge, compress it into
1173 * FIO_SERVER_MAX_FRAGMENT_PDU chunks and let the receiving
1174 * side defragment it.
1175 */
1176 out_pdu = malloc(FIO_SERVER_MAX_FRAGMENT_PDU);
1177
1178 stream.zalloc = Z_NULL;
1179 stream.zfree = Z_NULL;
1180 stream.opaque = Z_NULL;
1181
1182 if (deflateInit(&stream, Z_DEFAULT_COMPRESSION) != Z_OK) {
Jens Axboe53bd8db2012-03-14 21:51:38 +01001183 ret = 1;
1184 goto err;
Jens Axboe1b427252012-03-14 15:03:03 +01001185 }
1186
Jens Axboef5ed7652012-03-14 16:28:07 +01001187 stream.next_in = (void *) log->log;
1188 stream.avail_in = log->nr_samples * sizeof(struct io_sample);
Jens Axboe1b427252012-03-14 15:03:03 +01001189
1190 do {
Jens Axboe53bd8db2012-03-14 21:51:38 +01001191 unsigned int this_len, flags = 0;
1192 int ret;
Jens Axboe1b427252012-03-14 15:03:03 +01001193
1194 stream.avail_out = FIO_SERVER_MAX_FRAGMENT_PDU;
1195 stream.next_out = out_pdu;
Jens Axboe3c547fe2012-03-14 21:53:00 +01001196 ret = deflate(&stream, Z_FINISH);
1197 /* may be Z_OK, or Z_STREAM_END */
1198 if (ret < 0)
1199 goto err_zlib;
Jens Axboe1b427252012-03-14 15:03:03 +01001200
1201 this_len = FIO_SERVER_MAX_FRAGMENT_PDU - stream.avail_out;
1202
Jens Axboe1b427252012-03-14 15:03:03 +01001203 if (stream.avail_in)
Jens Axboe53bd8db2012-03-14 21:51:38 +01001204 flags = FIO_NET_CMD_F_MORE;
Jens Axboe1b427252012-03-14 15:03:03 +01001205
Jens Axboe53bd8db2012-03-14 21:51:38 +01001206 ret = fio_send_cmd_ext_pdu(server_fd, FIO_NET_CMD_IOLOG,
1207 out_pdu, this_len, 0, flags);
1208 if (ret)
1209 goto err_zlib;
Jens Axboe1b427252012-03-14 15:03:03 +01001210 } while (stream.avail_in);
1211
Jens Axboe53bd8db2012-03-14 21:51:38 +01001212err_zlib:
Jens Axboe1b427252012-03-14 15:03:03 +01001213 deflateEnd(&stream);
Jens Axboe53bd8db2012-03-14 21:51:38 +01001214err:
1215 free(out_pdu);
Jens Axboe3989b142013-04-12 13:13:24 +02001216#endif
Jens Axboe53bd8db2012-03-14 21:51:38 +01001217 return ret;
Jens Axboe1b427252012-03-14 15:03:03 +01001218}
1219
Jens Axboe3989b142013-04-12 13:13:24 +02001220int fio_send_iolog(struct thread_data *td, struct io_log *log, const char *name)
1221{
1222 struct cmd_iolog_pdu pdu;
1223 int i, ret = 0;
1224
1225 pdu.thread_number = cpu_to_le32(td->thread_number);
1226 pdu.nr_samples = __cpu_to_le32(log->nr_samples);
1227 pdu.log_type = cpu_to_le32(log->log_type);
1228 pdu.compressed = cpu_to_le32(use_zlib);
Jens Axboe9bdb9262014-04-14 11:45:34 -06001229
1230 strncpy((char *) pdu.name, name, FIO_NET_NAME_MAX);
1231 pdu.name[FIO_NET_NAME_MAX - 1] = '\0';
Jens Axboe3989b142013-04-12 13:13:24 +02001232
1233 for (i = 0; i < log->nr_samples; i++) {
1234 struct io_sample *s = &log->log[i];
1235
1236 s->time = cpu_to_le64(s->time);
1237 s->val = cpu_to_le64(s->val);
1238 s->ddir = cpu_to_le32(s->ddir);
1239 s->bs = cpu_to_le32(s->bs);
1240 }
1241
1242 /*
1243 * Send header first, it's not compressed.
1244 */
1245 ret = fio_send_cmd_ext_pdu(server_fd, FIO_NET_CMD_IOLOG, &pdu,
1246 sizeof(pdu), 0, FIO_NET_CMD_F_MORE);
1247 if (ret)
1248 return ret;
1249
1250 /*
1251 * Now send actual log, compress if we can, otherwise just plain
1252 */
1253 if (use_zlib)
1254 return fio_send_iolog_gz(&pdu, log);
1255
1256 return fio_send_cmd_ext_pdu(server_fd, FIO_NET_CMD_IOLOG, log->log,
1257 log->nr_samples * sizeof(struct io_sample), 0, 0);
1258}
1259
Jens Axboe2f122b12012-03-15 13:10:19 +01001260void fio_server_send_add_job(struct thread_data *td)
Jens Axboe807f9972012-03-02 10:25:24 +01001261{
1262 struct cmd_add_job_pdu pdu;
Jens Axboe807f9972012-03-02 10:25:24 +01001263
Jens Axboe731e30a2012-03-14 16:35:37 +01001264 memset(&pdu, 0, sizeof(pdu));
Jens Axboe2f122b12012-03-15 13:10:19 +01001265 pdu.thread_number = cpu_to_le32(td->thread_number);
1266 pdu.groupid = cpu_to_le32(td->groupid);
1267 convert_thread_options_to_net(&pdu.top, &td->o);
Jens Axboe807f9972012-03-02 10:25:24 +01001268
Jens Axboe40c60512012-03-27 16:03:04 +02001269 fio_net_send_cmd(server_fd, FIO_NET_CMD_ADD_JOB, &pdu, sizeof(pdu), NULL, NULL);
Jens Axboe807f9972012-03-02 10:25:24 +01001270}
1271
Jens Axboe122c7722012-03-19 09:13:15 +01001272void fio_server_send_start(struct thread_data *td)
1273{
1274 assert(server_fd != -1);
1275
1276 fio_net_send_simple_cmd(server_fd, FIO_NET_CMD_SERVER_START, 0, NULL);
1277}
1278
Jens Axboe87aa8f12011-10-06 21:24:13 +02001279static int fio_init_server_ip(void)
Jens Axboe81179ee2011-10-04 12:42:06 +02001280{
Jens Axboe811826b2011-10-24 09:11:50 +02001281 struct sockaddr *addr;
Jens Axboe67bf9822013-01-10 11:23:19 +01001282 socklen_t socklen;
Jens Axboe17e35312014-03-25 10:50:55 -07001283 char buf[80];
1284 const char *str;
Jens Axboe87aa8f12011-10-06 21:24:13 +02001285 int sk, opt;
Jens Axboe81179ee2011-10-04 12:42:06 +02001286
Jens Axboe811826b2011-10-24 09:11:50 +02001287 if (use_ipv6)
1288 sk = socket(AF_INET6, SOCK_STREAM, 0);
1289 else
1290 sk = socket(AF_INET, SOCK_STREAM, 0);
1291
Jens Axboe81179ee2011-10-04 12:42:06 +02001292 if (sk < 0) {
1293 log_err("fio: socket: %s\n", strerror(errno));
1294 return -1;
1295 }
1296
1297 opt = 1;
Jens Axboe1f819912013-01-23 17:21:41 -07001298 if (setsockopt(sk, SOL_SOCKET, SO_REUSEADDR, (void *)&opt, sizeof(opt)) < 0) {
Jens Axboe81179ee2011-10-04 12:42:06 +02001299 log_err("fio: setsockopt: %s\n", strerror(errno));
Jens Axboeb94cba42011-10-06 21:27:10 +02001300 close(sk);
Jens Axboe81179ee2011-10-04 12:42:06 +02001301 return -1;
1302 }
1303#ifdef SO_REUSEPORT
Jens Axboe6eb24792011-10-04 15:00:30 +02001304 if (setsockopt(sk, SOL_SOCKET, SO_REUSEPORT, &opt, sizeof(opt)) < 0) {
Jens Axboe81179ee2011-10-04 12:42:06 +02001305 log_err("fio: setsockopt: %s\n", strerror(errno));
Jens Axboeb94cba42011-10-06 21:27:10 +02001306 close(sk);
Jens Axboe81179ee2011-10-04 12:42:06 +02001307 return -1;
1308 }
1309#endif
1310
Jens Axboe811826b2011-10-24 09:11:50 +02001311 if (use_ipv6) {
Jens Axboe17e35312014-03-25 10:50:55 -07001312 const void *src = &saddr_in6.sin6_addr;
1313
Jens Axboe811826b2011-10-24 09:11:50 +02001314 addr = (struct sockaddr *) &saddr_in6;
1315 socklen = sizeof(saddr_in6);
1316 saddr_in6.sin6_family = AF_INET6;
Jens Axboe17e35312014-03-25 10:50:55 -07001317 str = inet_ntop(AF_INET6, src, buf, sizeof(buf));
Jens Axboe811826b2011-10-24 09:11:50 +02001318 } else {
Jens Axboe17e35312014-03-25 10:50:55 -07001319 const void *src = &saddr_in.sin_addr;
1320
Jens Axboe811826b2011-10-24 09:11:50 +02001321 addr = (struct sockaddr *) &saddr_in;
1322 socklen = sizeof(saddr_in);
1323 saddr_in.sin_family = AF_INET;
Jens Axboe17e35312014-03-25 10:50:55 -07001324 str = inet_ntop(AF_INET, src, buf, sizeof(buf));
Jens Axboe811826b2011-10-24 09:11:50 +02001325 }
Jens Axboe81179ee2011-10-04 12:42:06 +02001326
Jens Axboe811826b2011-10-24 09:11:50 +02001327 if (bind(sk, addr, socklen) < 0) {
Jens Axboe81179ee2011-10-04 12:42:06 +02001328 log_err("fio: bind: %s\n", strerror(errno));
Jens Axboe17e35312014-03-25 10:50:55 -07001329 log_info("fio: failed with IPv%c %s\n", use_ipv6 ? '6' : '4', str);
Jens Axboeb94cba42011-10-06 21:27:10 +02001330 close(sk);
Jens Axboe81179ee2011-10-04 12:42:06 +02001331 return -1;
1332 }
1333
Jens Axboe87aa8f12011-10-06 21:24:13 +02001334 return sk;
1335}
1336
1337static int fio_init_server_sock(void)
1338{
1339 struct sockaddr_un addr;
Jens Axboe67bf9822013-01-10 11:23:19 +01001340 socklen_t len;
Jens Axboe87aa8f12011-10-06 21:24:13 +02001341 mode_t mode;
1342 int sk;
1343
1344 sk = socket(AF_UNIX, SOCK_STREAM, 0);
1345 if (sk < 0) {
1346 log_err("fio: socket: %s\n", strerror(errno));
1347 return -1;
1348 }
1349
1350 mode = umask(000);
1351
1352 memset(&addr, 0, sizeof(addr));
1353 addr.sun_family = AF_UNIX;
Jens Axboea48fddb2014-04-14 08:55:13 -06001354 strncpy(addr.sun_path, bind_sock, sizeof(addr.sun_path) - 1);
Jens Axboe87aa8f12011-10-06 21:24:13 +02001355
1356 len = sizeof(addr.sun_family) + strlen(bind_sock) + 1;
1357
1358 if (bind(sk, (struct sockaddr *) &addr, len) < 0) {
1359 log_err("fio: bind: %s\n", strerror(errno));
Jens Axboeb94cba42011-10-06 21:27:10 +02001360 close(sk);
Jens Axboe87aa8f12011-10-06 21:24:13 +02001361 return -1;
1362 }
1363
1364 umask(mode);
1365 return sk;
1366}
1367
1368static int fio_init_server_connection(void)
1369{
Jens Axboebebe6392011-10-07 10:00:51 +02001370 char bind_str[128];
Jens Axboe87aa8f12011-10-06 21:24:13 +02001371 int sk;
1372
1373 dprint(FD_NET, "starting server\n");
1374
1375 if (!bind_sock)
1376 sk = fio_init_server_ip();
1377 else
1378 sk = fio_init_server_sock();
1379
1380 if (sk < 0)
1381 return sk;
1382
Jens Axboeafdcad22014-04-14 08:54:09 -06001383 memset(bind_str, 0, sizeof(bind_str));
1384
Jens Axboe811826b2011-10-24 09:11:50 +02001385 if (!bind_sock) {
1386 char *p, port[16];
1387 const void *src;
1388 int af;
1389
1390 if (use_ipv6) {
1391 af = AF_INET6;
1392 src = &saddr_in6.sin6_addr;
1393 } else {
1394 af = AF_INET;
1395 src = &saddr_in.sin_addr;
1396 }
1397
1398 p = (char *) inet_ntop(af, src, bind_str, sizeof(bind_str));
1399
1400 sprintf(port, ",%u", fio_net_port);
1401 if (p)
1402 strcat(p, port);
1403 else
Jens Axboeafdcad22014-04-14 08:54:09 -06001404 strncpy(bind_str, port, sizeof(bind_str) - 1);
Jens Axboe811826b2011-10-24 09:11:50 +02001405 } else
Jens Axboeafdcad22014-04-14 08:54:09 -06001406 strncpy(bind_str, bind_sock, sizeof(bind_str) - 1);
Jens Axboebebe6392011-10-07 10:00:51 +02001407
1408 log_info("fio: server listening on %s\n", bind_str);
1409
Jens Axboe89c17072011-10-11 10:15:51 +02001410 if (listen(sk, 0) < 0) {
Jens Axboe81179ee2011-10-04 12:42:06 +02001411 log_err("fio: listen: %s\n", strerror(errno));
Jens Axboe2fd973c2014-04-08 21:13:42 -06001412 close(sk);
Jens Axboe81179ee2011-10-04 12:42:06 +02001413 return -1;
1414 }
1415
Jens Axboe87aa8f12011-10-06 21:24:13 +02001416 return sk;
1417}
1418
Jens Axboe3aa3cee2014-01-24 18:56:56 -08001419int fio_server_parse_host(const char *host, int ipv6, struct in_addr *inp,
Jens Axboe3ec62ec2012-03-01 12:01:29 +01001420 struct in6_addr *inp6)
1421
1422{
1423 int ret = 0;
1424
Jens Axboe3aa3cee2014-01-24 18:56:56 -08001425 if (ipv6)
Jens Axboe3ec62ec2012-03-01 12:01:29 +01001426 ret = inet_pton(AF_INET6, host, inp6);
1427 else
1428 ret = inet_pton(AF_INET, host, inp);
1429
1430 if (ret != 1) {
Jens Axboe479471c2014-01-23 20:42:06 -08001431 struct addrinfo hints, *res;
Jens Axboe3ec62ec2012-03-01 12:01:29 +01001432
Jens Axboe479471c2014-01-23 20:42:06 -08001433 memset(&hints, 0, sizeof(hints));
Jens Axboe3aa3cee2014-01-24 18:56:56 -08001434 hints.ai_family = ipv6 ? AF_INET6 : AF_INET;
Jens Axboe479471c2014-01-23 20:42:06 -08001435 hints.ai_socktype = SOCK_STREAM;
1436
1437 ret = getaddrinfo(host, NULL, &hints, &res);
1438 if (ret) {
1439 log_err("fio: failed to resolve <%s> (%s)\n", host,
1440 gai_strerror(ret));
Jens Axboe3caf43e2014-01-24 18:52:16 -08001441 return 1;
Jens Axboe3ec62ec2012-03-01 12:01:29 +01001442 }
1443
Jens Axboe3aa3cee2014-01-24 18:56:56 -08001444 if (ipv6)
Jens Axboe479471c2014-01-23 20:42:06 -08001445 memcpy(inp6, &((struct sockaddr_in6 *) res->ai_addr)->sin6_addr, sizeof(*inp6));
1446 else
1447 memcpy(inp, &((struct sockaddr_in *) res->ai_addr)->sin_addr, sizeof(*inp));
1448
Jens Axboe3ec62ec2012-03-01 12:01:29 +01001449 ret = 1;
Jens Axboe479471c2014-01-23 20:42:06 -08001450 freeaddrinfo(res);
Jens Axboe3ec62ec2012-03-01 12:01:29 +01001451 }
1452
1453 return !(ret == 1);
1454}
1455
Jens Axboe660a2bf2011-10-24 09:35:06 +02001456/*
1457 * Parse a host/ip/port string. Reads from 'str'.
1458 *
1459 * Outputs:
1460 *
1461 * For IPv4:
1462 * *ptr is the host, *port is the port, inp is the destination.
1463 * For IPv6:
1464 * *ptr is the host, *port is the port, inp6 is the dest, and *ipv6 is 1.
1465 * For local domain sockets:
1466 * *ptr is the filename, *is_sock is 1.
1467 */
Jens Axboebebe6392011-10-07 10:00:51 +02001468int fio_server_parse_string(const char *str, char **ptr, int *is_sock,
Jens Axboe811826b2011-10-24 09:11:50 +02001469 int *port, struct in_addr *inp,
1470 struct in6_addr *inp6, int *ipv6)
Jens Axboebebe6392011-10-07 10:00:51 +02001471{
Jens Axboe76867622011-10-25 09:52:51 +02001472 const char *host = str;
1473 char *portp;
Jens Axboe3ec62ec2012-03-01 12:01:29 +01001474 int lport = 0;
Jens Axboe76867622011-10-25 09:52:51 +02001475
Jens Axboebebe6392011-10-07 10:00:51 +02001476 *ptr = NULL;
1477 *is_sock = 0;
Jens Axboe6d2cf392011-10-07 13:19:28 +02001478 *port = fio_net_port;
Jens Axboe811826b2011-10-24 09:11:50 +02001479 *ipv6 = 0;
Jens Axboebebe6392011-10-07 10:00:51 +02001480
1481 if (!strncmp(str, "sock:", 5)) {
1482 *ptr = strdup(str + 5);
1483 *is_sock = 1;
Jens Axboebebe6392011-10-07 10:00:51 +02001484
Jens Axboe76867622011-10-25 09:52:51 +02001485 return 0;
1486 }
1487
1488 /*
1489 * Is it ip:<ip or host>:port
1490 */
1491 if (!strncmp(host, "ip:", 3))
1492 host += 3;
1493 else if (!strncmp(host, "ip4:", 4))
1494 host += 4;
1495 else if (!strncmp(host, "ip6:", 4)) {
1496 host += 4;
1497 *ipv6 = 1;
1498 } else if (host[0] == ':') {
1499 /* String is :port */
1500 host++;
1501 lport = atoi(host);
1502 if (!lport || lport > 65535) {
Jens Axboe4e0a8fa2013-04-15 11:40:57 +02001503 log_err("fio: bad server port %u\n", lport);
Jens Axboe76867622011-10-25 09:52:51 +02001504 return 1;
1505 }
1506 /* no hostname given, we are done */
1507 *port = lport;
1508 return 0;
1509 }
1510
1511 /*
Jens Axboeb96b90c2014-03-25 10:37:56 -07001512 * If no port seen yet, check if there's a last ',' at the end
Jens Axboe76867622011-10-25 09:52:51 +02001513 */
1514 if (!lport) {
1515 portp = strchr(host, ',');
1516 if (portp) {
1517 *portp = '\0';
1518 portp++;
1519 lport = atoi(portp);
Jens Axboebebe6392011-10-07 10:00:51 +02001520 if (!lport || lport > 65535) {
Jens Axboe4e0a8fa2013-04-15 11:40:57 +02001521 log_err("fio: bad server port %u\n", lport);
Jens Axboebebe6392011-10-07 10:00:51 +02001522 return 1;
1523 }
Jens Axboe76867622011-10-25 09:52:51 +02001524 }
1525 }
1526
1527 if (lport)
1528 *port = lport;
1529
1530 if (!strlen(host))
1531 return 0;
1532
1533 *ptr = strdup(host);
1534
Jens Axboe3aa3cee2014-01-24 18:56:56 -08001535 if (fio_server_parse_host(*ptr, *ipv6, inp, inp6)) {
Jens Axboe3ec62ec2012-03-01 12:01:29 +01001536 free(*ptr);
1537 *ptr = NULL;
1538 return 1;
Jens Axboebebe6392011-10-07 10:00:51 +02001539 }
1540
1541 if (*port == 0)
1542 *port = fio_net_port;
1543
1544 return 0;
1545}
1546
Jens Axboe87aa8f12011-10-06 21:24:13 +02001547/*
1548 * Server arg should be one of:
1549 *
1550 * sock:/path/to/socket
1551 * ip:1.2.3.4
1552 * 1.2.3.4
1553 *
1554 * Where sock uses unix domain sockets, and ip binds the server to
1555 * a specific interface. If no arguments are given to the server, it
1556 * uses IP and binds to 0.0.0.0.
1557 *
1558 */
1559static int fio_handle_server_arg(void)
1560{
Jens Axboe6d2cf392011-10-07 13:19:28 +02001561 int port = fio_net_port;
Jens Axboea7de0a12011-10-07 12:55:14 +02001562 int is_sock, ret = 0;
Jens Axboebebe6392011-10-07 10:00:51 +02001563
Jens Axboe87aa8f12011-10-06 21:24:13 +02001564 saddr_in.sin_addr.s_addr = htonl(INADDR_ANY);
1565
1566 if (!fio_server_arg)
Jens Axboea7de0a12011-10-07 12:55:14 +02001567 goto out;
Jens Axboe87aa8f12011-10-06 21:24:13 +02001568
Jens Axboe4e5b8fb2011-10-07 10:03:44 +02001569 ret = fio_server_parse_string(fio_server_arg, &bind_sock, &is_sock,
Jens Axboe811826b2011-10-24 09:11:50 +02001570 &port, &saddr_in.sin_addr,
1571 &saddr_in6.sin6_addr, &use_ipv6);
Jens Axboe4e5b8fb2011-10-07 10:03:44 +02001572
1573 if (!is_sock && bind_sock) {
1574 free(bind_sock);
1575 bind_sock = NULL;
1576 }
1577
Jens Axboea7de0a12011-10-07 12:55:14 +02001578out:
Jens Axboe6d2cf392011-10-07 13:19:28 +02001579 fio_net_port = port;
1580 saddr_in.sin_port = htons(port);
Jens Axboe811826b2011-10-24 09:11:50 +02001581 saddr_in6.sin6_port = htons(port);
Jens Axboe4e5b8fb2011-10-07 10:03:44 +02001582 return ret;
Jens Axboe87aa8f12011-10-06 21:24:13 +02001583}
1584
Jens Axboe43cdea12014-03-25 15:06:17 -07001585static void sig_int(int sig)
1586{
1587 if (bind_sock)
1588 unlink(bind_sock);
1589}
1590
1591static void set_sig_handlers(void)
1592{
1593 struct sigaction act;
1594
1595 memset(&act, 0, sizeof(act));
1596 act.sa_handler = sig_int;
1597 act.sa_flags = SA_RESTART;
1598 sigaction(SIGINT, &act, NULL);
1599}
1600
Jens Axboe87aa8f12011-10-06 21:24:13 +02001601static int fio_server(void)
1602{
1603 int sk, ret;
1604
1605 dprint(FD_NET, "starting server\n");
1606
1607 if (fio_handle_server_arg())
1608 return -1;
1609
1610 sk = fio_init_server_connection();
1611 if (sk < 0)
1612 return -1;
Jens Axboe81179ee2011-10-04 12:42:06 +02001613
Jens Axboe43cdea12014-03-25 15:06:17 -07001614 set_sig_handlers();
1615
Jens Axboe81179ee2011-10-04 12:42:06 +02001616 ret = accept_loop(sk);
Jens Axboe87aa8f12011-10-06 21:24:13 +02001617
Jens Axboe81179ee2011-10-04 12:42:06 +02001618 close(sk);
Jens Axboe87aa8f12011-10-06 21:24:13 +02001619
1620 if (fio_server_arg) {
1621 free(fio_server_arg);
1622 fio_server_arg = NULL;
1623 }
Jens Axboebebe6392011-10-07 10:00:51 +02001624 if (bind_sock)
1625 free(bind_sock);
Jens Axboe87aa8f12011-10-06 21:24:13 +02001626
Jens Axboe81179ee2011-10-04 12:42:06 +02001627 return ret;
1628}
1629
Jens Axboe7b821682011-10-11 12:16:32 +02001630void fio_server_got_signal(int signal)
Jens Axboe9abea482011-10-04 13:21:54 +02001631{
Jens Axboe7b821682011-10-11 12:16:32 +02001632 if (signal == SIGPIPE)
1633 server_fd = -1;
1634 else {
1635 log_info("\nfio: terminating on signal %d\n", signal);
1636 exit_backend = 1;
1637 }
Jens Axboe9abea482011-10-04 13:21:54 +02001638}
1639
Jens Axboe13755d92011-10-10 19:51:26 +02001640static int check_existing_pidfile(const char *pidfile)
1641{
1642 struct stat sb;
1643 char buf[16];
1644 pid_t pid;
1645 FILE *f;
1646
1647 if (stat(pidfile, &sb))
1648 return 0;
1649
1650 f = fopen(pidfile, "r");
1651 if (!f)
1652 return 0;
1653
Jens Axboebfc3b172011-10-10 21:16:55 +02001654 if (fread(buf, sb.st_size, 1, f) <= 0) {
Jens Axboe13755d92011-10-10 19:51:26 +02001655 fclose(f);
1656 return 1;
1657 }
1658 fclose(f);
1659
1660 pid = atoi(buf);
1661 if (kill(pid, SIGCONT) < 0)
Jens Axboeea5aa1b2011-10-11 11:45:35 +02001662 return errno != ESRCH;
Jens Axboe13755d92011-10-10 19:51:26 +02001663
1664 return 1;
1665}
1666
1667static int write_pid(pid_t pid, const char *pidfile)
Jens Axboe402668f2011-10-10 15:28:58 +02001668{
1669 FILE *fpid;
1670
1671 fpid = fopen(pidfile, "w");
1672 if (!fpid) {
1673 log_err("fio: failed opening pid file %s\n", pidfile);
Jens Axboe13755d92011-10-10 19:51:26 +02001674 return 1;
Jens Axboe402668f2011-10-10 15:28:58 +02001675 }
1676
1677 fprintf(fpid, "%u\n", (unsigned int) pid);
Jens Axboe13755d92011-10-10 19:51:26 +02001678 fclose(fpid);
1679 return 0;
Jens Axboe402668f2011-10-10 15:28:58 +02001680}
1681
1682/*
1683 * If pidfile is specified, background us.
1684 */
1685int fio_start_server(char *pidfile)
Jens Axboee46d8092011-10-03 09:11:02 +02001686{
1687 pid_t pid;
Jens Axboe402668f2011-10-10 15:28:58 +02001688 int ret;
Jens Axboee46d8092011-10-03 09:11:02 +02001689
Bruce Cran93bcfd22012-02-20 20:18:19 +01001690#if defined(WIN32)
Jens Axboe905c78b2012-03-06 19:34:22 +01001691 WSADATA wsd;
Jens Axboe3c3ed072012-03-27 09:12:39 +02001692 WSAStartup(MAKEWORD(2, 2), &wsd);
Bruce Cran93bcfd22012-02-20 20:18:19 +01001693#endif
1694
Jens Axboe402668f2011-10-10 15:28:58 +02001695 if (!pidfile)
Jens Axboee46d8092011-10-03 09:11:02 +02001696 return fio_server();
1697
Jens Axboe13755d92011-10-10 19:51:26 +02001698 if (check_existing_pidfile(pidfile)) {
1699 log_err("fio: pidfile %s exists and server appears alive\n",
1700 pidfile);
Jens Axboeb8ba87a2014-04-11 11:37:34 -06001701 free(pidfile);
Jens Axboe13755d92011-10-10 19:51:26 +02001702 return -1;
1703 }
1704
Jens Axboee46d8092011-10-03 09:11:02 +02001705 pid = fork();
1706 if (pid < 0) {
Jens Axboe13755d92011-10-10 19:51:26 +02001707 log_err("fio: failed server fork: %s", strerror(errno));
Jens Axboe402668f2011-10-10 15:28:58 +02001708 free(pidfile);
Jens Axboec28e8e82011-10-04 08:57:39 +02001709 return -1;
Jens Axboe402668f2011-10-10 15:28:58 +02001710 } else if (pid) {
Jens Axboe13755d92011-10-10 19:51:26 +02001711 int ret = write_pid(pid, pidfile);
1712
Jens Axboeb8ba87a2014-04-11 11:37:34 -06001713 free(pidfile);
Jens Axboe13755d92011-10-10 19:51:26 +02001714 exit(ret);
Jens Axboe402668f2011-10-10 15:28:58 +02001715 }
Jens Axboee46d8092011-10-03 09:11:02 +02001716
1717 setsid();
Jens Axboe13755d92011-10-10 19:51:26 +02001718 openlog("fio", LOG_NDELAY|LOG_NOWAIT|LOG_PID, LOG_USER);
1719 log_syslog = 1;
Jens Axboee46d8092011-10-03 09:11:02 +02001720 close(STDIN_FILENO);
1721 close(STDOUT_FILENO);
1722 close(STDERR_FILENO);
1723 f_out = NULL;
1724 f_err = NULL;
Jens Axboe402668f2011-10-10 15:28:58 +02001725
1726 ret = fio_server();
1727
1728 closelog();
1729 unlink(pidfile);
1730 free(pidfile);
1731 return ret;
Jens Axboee46d8092011-10-03 09:11:02 +02001732}
Jens Axboe87aa8f12011-10-06 21:24:13 +02001733
Jens Axboebebe6392011-10-07 10:00:51 +02001734void fio_server_set_arg(const char *arg)
Jens Axboe87aa8f12011-10-06 21:24:13 +02001735{
1736 fio_server_arg = strdup(arg);
1737}