blob: 077dce5c349f67efec5c76a6371e89e2a2a4724f [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 Axboe122c7722012-03-19 09:13:15 +0100558 set_genesis_time();
559
560 pid = fork();
561 if (pid) {
Jens Axboe6348b5d2013-11-07 13:37:09 -0700562 fio_server_add_job_pid(job_list, pid);
Jens Axboe122c7722012-03-19 09:13:15 +0100563 return 0;
564 }
565
Jens Axboe2e1df072012-02-09 11:15:02 +0100566 ret = fio_backend();
Jens Axboe2bb3f0a2012-03-28 12:22:40 +0200567 free_threads_shm();
Jens Axboe122c7722012-03-19 09:13:15 +0100568 _exit(ret);
Jens Axboe81179ee2011-10-04 12:42:06 +0200569}
570
Jens Axboeb9d2f302012-03-08 20:36:28 +0100571static int handle_job_cmd(struct fio_net_cmd *cmd)
572{
Jens Axboe46bcd492012-03-14 11:31:21 +0100573 struct cmd_job_pdu *pdu = (struct cmd_job_pdu *) cmd->payload;
574 void *buf = pdu->buf;
Jens Axboeb9d2f302012-03-08 20:36:28 +0100575 struct cmd_start_pdu spdu;
576
Jens Axboe46bcd492012-03-14 11:31:21 +0100577 pdu->buf_len = le32_to_cpu(pdu->buf_len);
578 pdu->client_type = le32_to_cpu(pdu->client_type);
579
580 if (parse_jobs_ini(buf, 1, 0, pdu->client_type)) {
Jens Axboe122c7722012-03-19 09:13:15 +0100581 fio_net_send_quit(server_fd);
Jens Axboeb9d2f302012-03-08 20:36:28 +0100582 return -1;
583 }
584
585 spdu.jobs = cpu_to_le32(thread_number);
Jens Axboe108fea72012-11-14 13:09:45 -0700586 spdu.stat_outputs = cpu_to_le32(stat_number);
Jens Axboe40c60512012-03-27 16:03:04 +0200587 fio_net_send_cmd(server_fd, FIO_NET_CMD_START, &spdu, sizeof(spdu), NULL, NULL);
Jens Axboeb9d2f302012-03-08 20:36:28 +0100588 return 0;
589}
590
Jens Axboe81179ee2011-10-04 12:42:06 +0200591static int handle_jobline_cmd(struct fio_net_cmd *cmd)
592{
Jens Axboefa2ea802011-10-08 21:07:29 +0200593 void *pdu = cmd->payload;
594 struct cmd_single_line_pdu *cslp;
595 struct cmd_line_pdu *clp;
596 unsigned long offset;
Jens Axboeb9d2f302012-03-08 20:36:28 +0100597 struct cmd_start_pdu spdu;
Jens Axboefa2ea802011-10-08 21:07:29 +0200598 char **argv;
Jens Axboeb9d2f302012-03-08 20:36:28 +0100599 int i;
Jens Axboe81179ee2011-10-04 12:42:06 +0200600
Jens Axboefa2ea802011-10-08 21:07:29 +0200601 clp = pdu;
602 clp->lines = le16_to_cpu(clp->lines);
Jens Axboe46bcd492012-03-14 11:31:21 +0100603 clp->client_type = le16_to_cpu(clp->client_type);
Jens Axboefa2ea802011-10-08 21:07:29 +0200604 argv = malloc(clp->lines * sizeof(char *));
605 offset = sizeof(*clp);
Jens Axboe81179ee2011-10-04 12:42:06 +0200606
Jens Axboefa2ea802011-10-08 21:07:29 +0200607 dprint(FD_NET, "server: %d command line args\n", clp->lines);
Jens Axboe39e8e012011-10-04 13:46:08 +0200608
Jens Axboefa2ea802011-10-08 21:07:29 +0200609 for (i = 0; i < clp->lines; i++) {
610 cslp = pdu + offset;
611 argv[i] = (char *) cslp->text;
612
613 offset += sizeof(*cslp) + le16_to_cpu(cslp->len);
Jens Axboe39e8e012011-10-04 13:46:08 +0200614 dprint(FD_NET, "server: %d: %s\n", i, argv[i]);
615 }
Jens Axboe81179ee2011-10-04 12:42:06 +0200616
Jens Axboe46bcd492012-03-14 11:31:21 +0100617 if (parse_cmd_line(clp->lines, argv, clp->client_type)) {
Jens Axboe122c7722012-03-19 09:13:15 +0100618 fio_net_send_quit(server_fd);
Jens Axboefa2ea802011-10-08 21:07:29 +0200619 free(argv);
Jens Axboe81179ee2011-10-04 12:42:06 +0200620 return -1;
Jens Axboee6d1c662011-10-05 20:41:06 +0200621 }
Jens Axboe81179ee2011-10-04 12:42:06 +0200622
Jens Axboefa2ea802011-10-08 21:07:29 +0200623 free(argv);
624
Jens Axboeb9d2f302012-03-08 20:36:28 +0100625 spdu.jobs = cpu_to_le32(thread_number);
Jens Axboe1e5324e2012-11-14 14:25:31 -0700626 spdu.stat_outputs = cpu_to_le32(stat_number);
Jens Axboe40c60512012-03-27 16:03:04 +0200627 fio_net_send_cmd(server_fd, FIO_NET_CMD_START, &spdu, sizeof(spdu), NULL, NULL);
Jens Axboeb9d2f302012-03-08 20:36:28 +0100628 return 0;
Jens Axboe132159a2011-09-30 15:01:32 -0600629}
630
Jens Axboec28e8e82011-10-04 08:57:39 +0200631static int handle_probe_cmd(struct fio_net_cmd *cmd)
632{
Jens Axboe3989b142013-04-12 13:13:24 +0200633 struct cmd_client_probe_pdu *pdu = (struct cmd_client_probe_pdu *) cmd->payload;
634 struct cmd_probe_reply_pdu probe;
Jens Axboe40c60512012-03-27 16:03:04 +0200635 uint64_t tag = cmd->tag;
Jens Axboec28e8e82011-10-04 08:57:39 +0200636
Jens Axboe89c17072011-10-11 10:15:51 +0200637 dprint(FD_NET, "server: sending probe reply\n");
638
Jens Axboec28e8e82011-10-04 08:57:39 +0200639 memset(&probe, 0, sizeof(probe));
640 gethostname((char *) probe.hostname, sizeof(probe.hostname));
Jens Axboe0dcebdf2013-01-23 15:42:16 -0700641#ifdef CONFIG_BIG_ENDIAN
Jens Axboe6eb24792011-10-04 15:00:30 +0200642 probe.bigendian = 1;
643#endif
Jens Axboe750db472012-04-16 11:44:48 +0200644 strncpy((char *) probe.fio_version, fio_version_string, sizeof(probe.fio_version));
Jens Axboec28e8e82011-10-04 08:57:39 +0200645
Jens Axboecca84642011-10-07 12:47:57 +0200646 probe.os = FIO_OS;
647 probe.arch = FIO_ARCH;
Jens Axboe38fdef22011-10-11 14:30:06 +0200648 probe.bpp = sizeof(void *);
Jens Axboed31e26d2012-03-28 21:38:24 +0200649 probe.cpus = __cpu_to_le32(cpus_online());
Jens Axboe3989b142013-04-12 13:13:24 +0200650
651 /*
652 * If the client supports compression and we do too, then enable it
653 */
654 if (has_zlib && le64_to_cpu(pdu->flags) & FIO_PROBE_FLAG_ZLIB) {
655 probe.flags = __cpu_to_le64(FIO_PROBE_FLAG_ZLIB);
656 use_zlib = 1;
657 } else {
658 probe.flags = 0;
659 use_zlib = 0;
660 }
Jens Axboe38fdef22011-10-11 14:30:06 +0200661
Jens Axboe40c60512012-03-27 16:03:04 +0200662 return fio_net_send_cmd(server_fd, FIO_NET_CMD_PROBE, &probe, sizeof(probe), &tag, NULL);
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200663}
664
665static int handle_send_eta_cmd(struct fio_net_cmd *cmd)
666{
667 struct jobs_eta *je;
668 size_t size;
Jens Axboe40c60512012-03-27 16:03:04 +0200669 uint64_t tag = cmd->tag;
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200670 int i;
671
Jens Axboeb814fb22011-10-12 09:20:34 +0200672 if (!thread_number)
673 return 0;
674
675 size = sizeof(*je) + thread_number * sizeof(char) + 1;
Jens Axboe7f868312011-10-10 09:55:21 +0200676 je = malloc(size);
677 memset(je, 0, size);
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200678
679 if (!calc_thread_status(je, 1)) {
680 free(je);
681 return 0;
682 }
683
684 dprint(FD_NET, "server sending status\n");
685
686 je->nr_running = cpu_to_le32(je->nr_running);
687 je->nr_ramp = cpu_to_le32(je->nr_ramp);
688 je->nr_pending = cpu_to_le32(je->nr_pending);
Jens Axboe714e85f2013-04-15 10:21:56 +0200689 je->nr_setting_up = cpu_to_le32(je->nr_setting_up);
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200690 je->files_open = cpu_to_le32(je->files_open);
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200691
Jens Axboe298921d2012-09-24 18:47:01 +0200692 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
Jens Axboe3e47bd22012-02-29 13:45:02 +0100693 je->m_rate[i] = cpu_to_le32(je->m_rate[i]);
694 je->t_rate[i] = cpu_to_le32(je->t_rate[i]);
695 je->m_iops[i] = cpu_to_le32(je->m_iops[i]);
696 je->t_iops[i] = cpu_to_le32(je->t_iops[i]);
Jens Axboe16725bb2013-04-11 12:43:05 +0200697 je->rate[i] = cpu_to_le32(je->rate[i]);
698 je->iops[i] = cpu_to_le32(je->iops[i]);
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200699 }
700
Jens Axboec1970b92012-03-06 15:37:40 +0100701 je->elapsed_sec = cpu_to_le64(je->elapsed_sec);
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200702 je->eta_sec = cpu_to_le64(je->eta_sec);
Jens Axboe8c621fb2012-03-08 12:30:48 +0100703 je->nr_threads = cpu_to_le32(je->nr_threads);
Jens Axboeb7f05eb2012-05-11 20:33:02 +0200704 je->is_pow2 = cpu_to_le32(je->is_pow2);
Jens Axboeed2c0a12013-04-11 12:55:16 +0200705 je->unit_base = cpu_to_le32(je->unit_base);
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200706
Jens Axboe40c60512012-03-27 16:03:04 +0200707 fio_net_send_cmd(server_fd, FIO_NET_CMD_ETA, je, size, &tag, NULL);
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200708 free(je);
709 return 0;
Jens Axboec28e8e82011-10-04 08:57:39 +0200710}
711
Jens Axboe40c60512012-03-27 16:03:04 +0200712static int send_update_job_reply(int fd, uint64_t __tag, int error)
713{
714 uint64_t tag = __tag;
715 uint32_t pdu_error;
716
717 pdu_error = __cpu_to_le32(error);
718 return fio_net_send_cmd(fd, FIO_NET_CMD_UPDATE_JOB, &pdu_error, sizeof(pdu_error), &tag, NULL);
719}
720
Jens Axboef58bd2a2012-03-27 10:06:42 +0200721static int handle_update_job_cmd(struct fio_net_cmd *cmd)
722{
723 struct cmd_add_job_pdu *pdu = (struct cmd_add_job_pdu *) cmd->payload;
724 struct thread_data *td;
725 uint32_t tnumber;
726
727 tnumber = le32_to_cpu(pdu->thread_number);
728
729 dprint(FD_NET, "server: updating options for job %u\n", tnumber);
730
Jens Axboe30ffacb2012-03-28 09:15:05 +0200731 if (!tnumber || tnumber > thread_number) {
Jens Axboe40c60512012-03-27 16:03:04 +0200732 send_update_job_reply(server_fd, cmd->tag, ENODEV);
Jens Axboef58bd2a2012-03-27 10:06:42 +0200733 return 0;
734 }
735
Jens Axboe30ffacb2012-03-28 09:15:05 +0200736 td = &threads[tnumber - 1];
Jens Axboef58bd2a2012-03-27 10:06:42 +0200737 convert_thread_options_to_cpu(&td->o, &pdu->top);
Jens Axboe40c60512012-03-27 16:03:04 +0200738 send_update_job_reply(server_fd, cmd->tag, 0);
Jens Axboef58bd2a2012-03-27 10:06:42 +0200739 return 0;
740}
741
Jens Axboe6348b5d2013-11-07 13:37:09 -0700742static int handle_command(struct flist_head *job_list, struct fio_net_cmd *cmd)
Jens Axboe132159a2011-09-30 15:01:32 -0600743{
744 int ret;
745
Jens Axboe4b91ee82013-02-25 10:18:33 +0100746 dprint(FD_NET, "server: got op [%s], pdu=%u, tag=%llx\n",
747 fio_server_op(cmd->opcode), cmd->pdu_len,
748 (unsigned long long) cmd->tag);
Jens Axboe46c48f12011-10-01 12:50:51 -0600749
Jens Axboe132159a2011-09-30 15:01:32 -0600750 switch (cmd->opcode) {
751 case FIO_NET_CMD_QUIT:
Jens Axboecc0df002011-10-03 20:53:32 +0200752 fio_terminate_threads(TERMINATE_ALL);
Jens Axboec28e8e82011-10-04 08:57:39 +0200753 return -1;
Jens Axboed7959182011-10-03 11:48:39 +0200754 case FIO_NET_CMD_EXIT:
Jens Axboe132159a2011-09-30 15:01:32 -0600755 exit_backend = 1;
Jens Axboec28e8e82011-10-04 08:57:39 +0200756 return -1;
Jens Axboe132159a2011-09-30 15:01:32 -0600757 case FIO_NET_CMD_JOB:
Jens Axboe0b8f30a2011-10-04 10:31:53 +0200758 ret = handle_job_cmd(cmd);
Jens Axboe132159a2011-09-30 15:01:32 -0600759 break;
Jens Axboe81179ee2011-10-04 12:42:06 +0200760 case FIO_NET_CMD_JOBLINE:
761 ret = handle_jobline_cmd(cmd);
762 break;
Jens Axboec28e8e82011-10-04 08:57:39 +0200763 case FIO_NET_CMD_PROBE:
764 ret = handle_probe_cmd(cmd);
765 break;
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200766 case FIO_NET_CMD_SEND_ETA:
767 ret = handle_send_eta_cmd(cmd);
768 break;
Jens Axboeb9d2f302012-03-08 20:36:28 +0100769 case FIO_NET_CMD_RUN:
Jens Axboe6348b5d2013-11-07 13:37:09 -0700770 ret = handle_run_cmd(job_list, cmd);
Jens Axboeb9d2f302012-03-08 20:36:28 +0100771 break;
Jens Axboef58bd2a2012-03-27 10:06:42 +0200772 case FIO_NET_CMD_UPDATE_JOB:
773 ret = handle_update_job_cmd(cmd);
774 break;
Jens Axboe132159a2011-09-30 15:01:32 -0600775 default:
Jens Axboe3c3ed072012-03-27 09:12:39 +0200776 log_err("fio: unknown opcode: %s\n", fio_server_op(cmd->opcode));
Jens Axboe132159a2011-09-30 15:01:32 -0600777 ret = 1;
778 }
779
780 return ret;
781}
782
Jens Axboe122c7722012-03-19 09:13:15 +0100783static int handle_connection(int sk)
Jens Axboe132159a2011-09-30 15:01:32 -0600784{
785 struct fio_net_cmd *cmd = NULL;
Jens Axboe6348b5d2013-11-07 13:37:09 -0700786 FLIST_HEAD(job_list);
Jens Axboe132159a2011-09-30 15:01:32 -0600787 int ret = 0;
788
Jens Axboe122c7722012-03-19 09:13:15 +0100789 reset_fio_state();
Jens Axboe122c7722012-03-19 09:13:15 +0100790 server_fd = sk;
791
Jens Axboe132159a2011-09-30 15:01:32 -0600792 /* read forever */
793 while (!exit_backend) {
Jens Axboee951bdc2011-10-05 21:58:45 +0200794 struct pollfd pfd = {
795 .fd = sk,
796 .events = POLLIN,
797 };
798
799 ret = 0;
800 do {
Jens Axboe54163252012-03-23 12:25:18 +0100801 int timeout = 1000;
802
803 if (!flist_empty(&job_list))
804 timeout = 100;
Jens Axboe3c3ed072012-03-27 09:12:39 +0200805
Jens Axboe54163252012-03-23 12:25:18 +0100806 ret = poll(&pfd, 1, timeout);
Jens Axboee951bdc2011-10-05 21:58:45 +0200807 if (ret < 0) {
808 if (errno == EINTR)
809 break;
810 log_err("fio: poll: %s\n", strerror(errno));
811 break;
Jens Axboe19c65172011-10-05 22:05:37 +0200812 } else if (!ret) {
Jens Axboe6348b5d2013-11-07 13:37:09 -0700813 fio_server_check_jobs(&job_list);
Jens Axboee951bdc2011-10-05 21:58:45 +0200814 continue;
Jens Axboe19c65172011-10-05 22:05:37 +0200815 }
Jens Axboee951bdc2011-10-05 21:58:45 +0200816
817 if (pfd.revents & POLLIN)
818 break;
819 if (pfd.revents & (POLLERR|POLLHUP)) {
820 ret = 1;
821 break;
822 }
Jens Axboe19c65172011-10-05 22:05:37 +0200823 } while (!exit_backend);
Jens Axboee951bdc2011-10-05 21:58:45 +0200824
Jens Axboe6348b5d2013-11-07 13:37:09 -0700825 fio_server_check_jobs(&job_list);
Jens Axboe122c7722012-03-19 09:13:15 +0100826
Jens Axboee951bdc2011-10-05 21:58:45 +0200827 if (ret < 0)
828 break;
829
830 cmd = fio_net_recv_cmd(sk);
Jens Axboe132159a2011-09-30 15:01:32 -0600831 if (!cmd) {
Jens Axboec28e8e82011-10-04 08:57:39 +0200832 ret = -1;
Jens Axboe132159a2011-09-30 15:01:32 -0600833 break;
834 }
835
Jens Axboe6348b5d2013-11-07 13:37:09 -0700836 ret = handle_command(&job_list, cmd);
Jens Axboe132159a2011-09-30 15:01:32 -0600837 if (ret)
838 break;
839
840 free(cmd);
Jens Axboec77a99e2011-10-01 16:26:42 -0400841 cmd = NULL;
Jens Axboe132159a2011-09-30 15:01:32 -0600842 }
843
844 if (cmd)
845 free(cmd);
846
Jens Axboe122c7722012-03-19 09:13:15 +0100847 close(sk);
848 _exit(ret);
Jens Axboecc0df002011-10-03 20:53:32 +0200849}
850
Jens Axboe50d16972011-09-29 17:45:28 -0600851static int accept_loop(int listen_sk)
852{
Jens Axboebb447a22011-10-04 15:06:42 +0200853 struct sockaddr_in addr;
Jens Axboe479471c2014-01-23 20:42:06 -0800854 struct sockaddr_in6 addr6;
855 socklen_t len = use_ipv6 ? sizeof(addr6) : sizeof(addr);
Jens Axboe009b1be2011-09-29 18:27:02 -0600856 struct pollfd pfd;
Jens Axboe4a851612014-04-14 10:04:21 -0600857 int ret = 0, sk, exitval = 0;
Jens Axboe6348b5d2013-11-07 13:37:09 -0700858 FLIST_HEAD(conn_list);
Jens Axboe50d16972011-09-29 17:45:28 -0600859
Jens Axboe60efd142011-10-04 13:30:11 +0200860 dprint(FD_NET, "server enter accept loop\n");
861
Jens Axboe4a851612014-04-14 10:04:21 -0600862 fio_set_fd_nonblocking(listen_sk, "server");
Jens Axboe122c7722012-03-19 09:13:15 +0100863
864 while (!exit_backend) {
Jens Axboe479471c2014-01-23 20:42:06 -0800865 const char *from;
866 char buf[64];
Jens Axboe122c7722012-03-19 09:13:15 +0100867 pid_t pid;
868
869 pfd.fd = listen_sk;
870 pfd.events = POLLIN;
871 do {
Jens Axboe54163252012-03-23 12:25:18 +0100872 int timeout = 1000;
873
874 if (!flist_empty(&conn_list))
875 timeout = 100;
876
877 ret = poll(&pfd, 1, timeout);
Jens Axboe122c7722012-03-19 09:13:15 +0100878 if (ret < 0) {
879 if (errno == EINTR)
880 break;
881 log_err("fio: poll: %s\n", strerror(errno));
Jens Axboe009b1be2011-09-29 18:27:02 -0600882 break;
Jens Axboe122c7722012-03-19 09:13:15 +0100883 } else if (!ret) {
Jens Axboe6348b5d2013-11-07 13:37:09 -0700884 fio_server_check_conns(&conn_list);
Jens Axboe122c7722012-03-19 09:13:15 +0100885 continue;
886 }
Jens Axboe009b1be2011-09-29 18:27:02 -0600887
Jens Axboe122c7722012-03-19 09:13:15 +0100888 if (pfd.revents & POLLIN)
889 break;
890 } while (!exit_backend);
891
Jens Axboe6348b5d2013-11-07 13:37:09 -0700892 fio_server_check_conns(&conn_list);
Jens Axboe122c7722012-03-19 09:13:15 +0100893
894 if (exit_backend || ret < 0)
Jens Axboe009b1be2011-09-29 18:27:02 -0600895 break;
Jens Axboe009b1be2011-09-29 18:27:02 -0600896
Jens Axboe479471c2014-01-23 20:42:06 -0800897 if (use_ipv6)
898 sk = accept(listen_sk, (struct sockaddr *) &addr6, &len);
899 else
900 sk = accept(listen_sk, (struct sockaddr *) &addr, &len);
901
Jens Axboe122c7722012-03-19 09:13:15 +0100902 if (sk < 0) {
903 log_err("fio: accept: %s\n", strerror(errno));
904 return -1;
905 }
Jens Axboe009b1be2011-09-29 18:27:02 -0600906
Jens Axboe479471c2014-01-23 20:42:06 -0800907 if (use_ipv6)
908 from = inet_ntop(AF_INET6, (struct sockaddr *) &addr6.sin6_addr, buf, sizeof(buf));
909 else
910 from = inet_ntop(AF_INET, (struct sockaddr *) &addr.sin_addr, buf, sizeof(buf));
911
912 dprint(FD_NET, "server: connect from %s\n", from);
Jens Axboe122c7722012-03-19 09:13:15 +0100913
914 pid = fork();
915 if (pid) {
916 close(sk);
Jens Axboe6348b5d2013-11-07 13:37:09 -0700917 fio_server_add_conn_pid(&conn_list, pid);
Jens Axboe122c7722012-03-19 09:13:15 +0100918 continue;
919 }
920
921 /* exits */
922 handle_connection(sk);
Jens Axboe50d16972011-09-29 17:45:28 -0600923 }
924
Jens Axboe132159a2011-09-30 15:01:32 -0600925 return exitval;
Jens Axboe50d16972011-09-29 17:45:28 -0600926}
927
Jens Axboe084d1c62012-03-03 20:28:07 +0100928int fio_server_text_output(int level, const char *buf, size_t len)
Jens Axboe37db14f2011-09-30 17:00:42 -0600929{
Jens Axboe084d1c62012-03-03 20:28:07 +0100930 struct cmd_text_pdu *pdu;
931 unsigned int tlen;
932 struct timeval tv;
Jens Axboe337d75a2011-10-01 12:36:32 -0600933
Jens Axboe084d1c62012-03-03 20:28:07 +0100934 if (server_fd == -1)
935 return log_local_buf(buf, len);
936
937 tlen = sizeof(*pdu) + len;
938 pdu = malloc(tlen);
939
940 pdu->level = __cpu_to_le32(level);
941 pdu->buf_len = __cpu_to_le32(len);
942
943 gettimeofday(&tv, NULL);
944 pdu->log_sec = __cpu_to_le64(tv.tv_sec);
945 pdu->log_usec = __cpu_to_le64(tv.tv_usec);
946
947 memcpy(pdu->buf, buf, len);
948
Jens Axboe40c60512012-03-27 16:03:04 +0200949 fio_net_send_cmd(server_fd, FIO_NET_CMD_TEXT, pdu, tlen, NULL, NULL);
Jens Axboe084d1c62012-03-03 20:28:07 +0100950 free(pdu);
951 return len;
Jens Axboe142575e2011-09-30 17:35:45 -0600952}
953
Jens Axboea64e88d2011-10-03 14:20:01 +0200954static void convert_io_stat(struct io_stat *dst, struct io_stat *src)
955{
956 dst->max_val = cpu_to_le64(src->max_val);
957 dst->min_val = cpu_to_le64(src->min_val);
958 dst->samples = cpu_to_le64(src->samples);
Jens Axboe802ad4a2011-10-05 09:51:58 +0200959
960 /*
961 * Encode to IEEE 754 for network transfer
962 */
963 dst->mean.u.i = __cpu_to_le64(fio_double_to_uint64(src->mean.u.f));
964 dst->S.u.i = __cpu_to_le64(fio_double_to_uint64(src->S.u.f));
Jens Axboea64e88d2011-10-03 14:20:01 +0200965}
966
967static void convert_gs(struct group_run_stats *dst, struct group_run_stats *src)
968{
969 int i;
970
Jens Axboe298921d2012-09-24 18:47:01 +0200971 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
Jens Axboea64e88d2011-10-03 14:20:01 +0200972 dst->max_run[i] = cpu_to_le64(src->max_run[i]);
973 dst->min_run[i] = cpu_to_le64(src->min_run[i]);
974 dst->max_bw[i] = cpu_to_le64(src->max_bw[i]);
975 dst->min_bw[i] = cpu_to_le64(src->min_bw[i]);
976 dst->io_kb[i] = cpu_to_le64(src->io_kb[i]);
977 dst->agg[i] = cpu_to_le64(src->agg[i]);
978 }
979
980 dst->kb_base = cpu_to_le32(src->kb_base);
Steven Noonanad705bc2013-04-08 15:05:25 -0700981 dst->unit_base = cpu_to_le32(src->unit_base);
Jens Axboea64e88d2011-10-03 14:20:01 +0200982 dst->groupid = cpu_to_le32(src->groupid);
Jens Axboe771e58b2013-01-30 12:56:23 +0100983 dst->unified_rw_rep = cpu_to_le32(src->unified_rw_rep);
Jens Axboea64e88d2011-10-03 14:20:01 +0200984}
985
986/*
987 * Send a CMD_TS, which packs struct thread_stat and group_run_stats
988 * into a single payload.
989 */
990void fio_server_send_ts(struct thread_stat *ts, struct group_run_stats *rs)
991{
992 struct cmd_ts_pdu p;
993 int i, j;
994
Jens Axboe60efd142011-10-04 13:30:11 +0200995 dprint(FD_NET, "server sending end stats\n");
996
Jens Axboe317b3c82011-10-03 21:47:27 +0200997 memset(&p, 0, sizeof(p));
998
Jens Axboe4e59d0f2014-03-14 08:41:39 -0600999 strncpy(p.ts.name, ts->name, FIO_JOBNAME_SIZE - 1);
1000 strncpy(p.ts.verror, ts->verror, FIO_VERROR_SIZE - 1);
1001 strncpy(p.ts.description, ts->description, FIO_JOBDESC_SIZE - 1);
Jens Axboea64e88d2011-10-03 14:20:01 +02001002
Jens Axboe2f122b12012-03-15 13:10:19 +01001003 p.ts.error = cpu_to_le32(ts->error);
1004 p.ts.thread_number = cpu_to_le32(ts->thread_number);
1005 p.ts.groupid = cpu_to_le32(ts->groupid);
1006 p.ts.pid = cpu_to_le32(ts->pid);
1007 p.ts.members = cpu_to_le32(ts->members);
Jens Axboe771e58b2013-01-30 12:56:23 +01001008 p.ts.unified_rw_rep = cpu_to_le32(ts->unified_rw_rep);
Jens Axboea64e88d2011-10-03 14:20:01 +02001009
Jens Axboe298921d2012-09-24 18:47:01 +02001010 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
Jens Axboea64e88d2011-10-03 14:20:01 +02001011 convert_io_stat(&p.ts.clat_stat[i], &ts->clat_stat[i]);
1012 convert_io_stat(&p.ts.slat_stat[i], &ts->slat_stat[i]);
1013 convert_io_stat(&p.ts.lat_stat[i], &ts->lat_stat[i]);
1014 convert_io_stat(&p.ts.bw_stat[i], &ts->bw_stat[i]);
1015 }
1016
1017 p.ts.usr_time = cpu_to_le64(ts->usr_time);
1018 p.ts.sys_time = cpu_to_le64(ts->sys_time);
1019 p.ts.ctx = cpu_to_le64(ts->ctx);
1020 p.ts.minf = cpu_to_le64(ts->minf);
1021 p.ts.majf = cpu_to_le64(ts->majf);
1022 p.ts.clat_percentiles = cpu_to_le64(ts->clat_percentiles);
Jens Axboe802ad4a2011-10-05 09:51:58 +02001023
1024 for (i = 0; i < FIO_IO_U_LIST_MAX_LEN; i++) {
Jens Axboecfc03e42011-10-12 21:20:42 +02001025 fio_fp64_t *src = &ts->percentile_list[i];
1026 fio_fp64_t *dst = &p.ts.percentile_list[i];
Jens Axboe802ad4a2011-10-05 09:51:58 +02001027
Jens Axboecfc03e42011-10-12 21:20:42 +02001028 dst->u.i = __cpu_to_le64(fio_double_to_uint64(src->u.f));
Jens Axboe802ad4a2011-10-05 09:51:58 +02001029 }
Jens Axboea64e88d2011-10-03 14:20:01 +02001030
1031 for (i = 0; i < FIO_IO_U_MAP_NR; i++) {
1032 p.ts.io_u_map[i] = cpu_to_le32(ts->io_u_map[i]);
1033 p.ts.io_u_submit[i] = cpu_to_le32(ts->io_u_submit[i]);
1034 p.ts.io_u_complete[i] = cpu_to_le32(ts->io_u_complete[i]);
1035 }
1036
1037 for (i = 0; i < FIO_IO_U_LAT_U_NR; i++) {
1038 p.ts.io_u_lat_u[i] = cpu_to_le32(ts->io_u_lat_u[i]);
1039 p.ts.io_u_lat_m[i] = cpu_to_le32(ts->io_u_lat_m[i]);
1040 }
1041
Jens Axboe298921d2012-09-24 18:47:01 +02001042 for (i = 0; i < DDIR_RWDIR_CNT; i++)
Jens Axboea64e88d2011-10-03 14:20:01 +02001043 for (j = 0; j < FIO_IO_U_PLAT_NR; j++)
1044 p.ts.io_u_plat[i][j] = cpu_to_le32(ts->io_u_plat[i][j]);
1045
Jens Axboe78799de2013-01-29 20:53:52 +01001046 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
Jens Axboea64e88d2011-10-03 14:20:01 +02001047 p.ts.total_io_u[i] = cpu_to_le64(ts->total_io_u[i]);
Jens Axboe93eee042011-10-03 21:08:48 +02001048 p.ts.short_io_u[i] = cpu_to_le64(ts->short_io_u[i]);
Jens Axboea64e88d2011-10-03 14:20:01 +02001049 }
1050
Jens Axboe93eee042011-10-03 21:08:48 +02001051 p.ts.total_submit = cpu_to_le64(ts->total_submit);
Jens Axboea64e88d2011-10-03 14:20:01 +02001052 p.ts.total_complete = cpu_to_le64(ts->total_complete);
1053
Jens Axboe298921d2012-09-24 18:47:01 +02001054 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
Jens Axboea64e88d2011-10-03 14:20:01 +02001055 p.ts.io_bytes[i] = cpu_to_le64(ts->io_bytes[i]);
1056 p.ts.runtime[i] = cpu_to_le64(ts->runtime[i]);
1057 }
1058
1059 p.ts.total_run_time = cpu_to_le64(ts->total_run_time);
1060 p.ts.continue_on_error = cpu_to_le16(ts->continue_on_error);
1061 p.ts.total_err_count = cpu_to_le64(ts->total_err_count);
Jens Axboeddcc0b62011-10-03 14:45:27 +02001062 p.ts.first_error = cpu_to_le32(ts->first_error);
1063 p.ts.kb_base = cpu_to_le32(ts->kb_base);
Steven Noonanad705bc2013-04-08 15:05:25 -07001064 p.ts.unit_base = cpu_to_le32(ts->unit_base);
Jens Axboea64e88d2011-10-03 14:20:01 +02001065
Jens Axboe3e260a42013-12-09 12:38:53 -07001066 p.ts.latency_depth = cpu_to_le32(ts->latency_depth);
1067 p.ts.latency_target = cpu_to_le64(ts->latency_target);
1068 p.ts.latency_window = cpu_to_le64(ts->latency_window);
1069 p.ts.latency_percentile.u.i = __cpu_to_le64(fio_double_to_uint64(ts->latency_percentile.u.f));
1070
Jens Axboea64e88d2011-10-03 14:20:01 +02001071 convert_gs(&p.rs, rs);
1072
Jens Axboe40c60512012-03-27 16:03:04 +02001073 fio_net_send_cmd(server_fd, FIO_NET_CMD_TS, &p, sizeof(p), NULL, NULL);
Jens Axboea64e88d2011-10-03 14:20:01 +02001074}
1075
1076void fio_server_send_gs(struct group_run_stats *rs)
1077{
1078 struct group_run_stats gs;
1079
Jens Axboe60efd142011-10-04 13:30:11 +02001080 dprint(FD_NET, "server sending group run stats\n");
1081
Jens Axboea64e88d2011-10-03 14:20:01 +02001082 convert_gs(&gs, rs);
Jens Axboe40c60512012-03-27 16:03:04 +02001083 fio_net_send_cmd(server_fd, FIO_NET_CMD_GS, &gs, sizeof(gs), NULL, NULL);
Jens Axboecf451d12011-10-03 16:48:30 +02001084}
1085
Jens Axboed09a64a2011-10-13 11:38:56 +02001086static void convert_agg(struct disk_util_agg *dst, struct disk_util_agg *src)
1087{
1088 int i;
1089
1090 for (i = 0; i < 2; i++) {
1091 dst->ios[i] = cpu_to_le32(src->ios[i]);
1092 dst->merges[i] = cpu_to_le32(src->merges[i]);
1093 dst->sectors[i] = cpu_to_le64(src->sectors[i]);
1094 dst->ticks[i] = cpu_to_le32(src->ticks[i]);
1095 }
1096
1097 dst->io_ticks = cpu_to_le32(src->io_ticks);
1098 dst->time_in_queue = cpu_to_le32(src->time_in_queue);
1099 dst->slavecount = cpu_to_le32(src->slavecount);
1100 dst->max_util.u.i = __cpu_to_le64(fio_double_to_uint64(src->max_util.u.f));
1101}
1102
1103static void convert_dus(struct disk_util_stat *dst, struct disk_util_stat *src)
1104{
1105 int i;
1106
Jens Axboe59140422014-04-14 08:28:08 -06001107 dst->name[FIO_DU_NAME_SZ - 1] = '\0';
1108 strncpy((char *) dst->name, (char *) src->name, FIO_DU_NAME_SZ - 1);
Jens Axboed09a64a2011-10-13 11:38:56 +02001109
1110 for (i = 0; i < 2; i++) {
Jens Axboea3b4cf72014-04-11 12:17:53 -06001111 dst->s.ios[i] = cpu_to_le32(src->s.ios[i]);
1112 dst->s.merges[i] = cpu_to_le32(src->s.merges[i]);
1113 dst->s.sectors[i] = cpu_to_le64(src->s.sectors[i]);
1114 dst->s.ticks[i] = cpu_to_le32(src->s.ticks[i]);
Jens Axboed09a64a2011-10-13 11:38:56 +02001115 }
1116
Jens Axboea3b4cf72014-04-11 12:17:53 -06001117 dst->s.io_ticks = cpu_to_le32(src->s.io_ticks);
1118 dst->s.time_in_queue = cpu_to_le32(src->s.time_in_queue);
1119 dst->s.msec = cpu_to_le64(src->s.msec);
Jens Axboed09a64a2011-10-13 11:38:56 +02001120}
1121
1122void fio_server_send_du(void)
1123{
1124 struct disk_util *du;
1125 struct flist_head *entry;
1126 struct cmd_du_pdu pdu;
1127
1128 dprint(FD_NET, "server: sending disk_util %d\n", !flist_empty(&disk_list));
1129
Jens Axboe0766d922011-10-13 12:02:08 +02001130 memset(&pdu, 0, sizeof(pdu));
1131
Jens Axboed09a64a2011-10-13 11:38:56 +02001132 flist_for_each(entry, &disk_list) {
1133 du = flist_entry(entry, struct disk_util, list);
1134
1135 convert_dus(&pdu.dus, &du->dus);
1136 convert_agg(&pdu.agg, &du->agg);
1137
Jens Axboe40c60512012-03-27 16:03:04 +02001138 fio_net_send_cmd(server_fd, FIO_NET_CMD_DU, &pdu, sizeof(pdu), NULL, NULL);
Jens Axboed09a64a2011-10-13 11:38:56 +02001139 }
1140}
1141
Jens Axboe53bd8db2012-03-14 21:51:38 +01001142/*
1143 * Send a command with a separate PDU, not inlined in the command
1144 */
1145static int fio_send_cmd_ext_pdu(int sk, uint16_t opcode, const void *buf,
1146 off_t size, uint64_t tag, uint32_t flags)
1147{
1148 struct fio_net_cmd cmd;
1149 struct iovec iov[2];
1150
Jens Axboe9f247262014-03-03 13:53:39 -07001151 iov[0].iov_base = (void *) &cmd;
Jens Axboe53bd8db2012-03-14 21:51:38 +01001152 iov[0].iov_len = sizeof(cmd);
1153 iov[1].iov_base = (void *) buf;
1154 iov[1].iov_len = size;
1155
1156 __fio_init_net_cmd(&cmd, opcode, size, tag);
1157 cmd.flags = __cpu_to_le32(flags);
1158 fio_net_cmd_crc_pdu(&cmd, buf);
1159
Jens Axboe8c953072012-03-20 14:35:35 +01001160 return fio_sendv_data(sk, iov, 2);
Jens Axboe53bd8db2012-03-14 21:51:38 +01001161}
1162
Jens Axboe3989b142013-04-12 13:13:24 +02001163static int fio_send_iolog_gz(struct cmd_iolog_pdu *pdu, struct io_log *log)
Jens Axboe1b427252012-03-14 15:03:03 +01001164{
Jens Axboe3989b142013-04-12 13:13:24 +02001165 int ret = 0;
1166#ifdef CONFIG_ZLIB
Jens Axboe1b427252012-03-14 15:03:03 +01001167 z_stream stream;
1168 void *out_pdu;
Jens Axboe1b427252012-03-14 15:03:03 +01001169
1170 /*
1171 * Dirty - since the log is potentially huge, compress it into
1172 * FIO_SERVER_MAX_FRAGMENT_PDU chunks and let the receiving
1173 * side defragment it.
1174 */
1175 out_pdu = malloc(FIO_SERVER_MAX_FRAGMENT_PDU);
1176
1177 stream.zalloc = Z_NULL;
1178 stream.zfree = Z_NULL;
1179 stream.opaque = Z_NULL;
1180
1181 if (deflateInit(&stream, Z_DEFAULT_COMPRESSION) != Z_OK) {
Jens Axboe53bd8db2012-03-14 21:51:38 +01001182 ret = 1;
1183 goto err;
Jens Axboe1b427252012-03-14 15:03:03 +01001184 }
1185
Jens Axboef5ed7652012-03-14 16:28:07 +01001186 stream.next_in = (void *) log->log;
1187 stream.avail_in = log->nr_samples * sizeof(struct io_sample);
Jens Axboe1b427252012-03-14 15:03:03 +01001188
1189 do {
Jens Axboe53bd8db2012-03-14 21:51:38 +01001190 unsigned int this_len, flags = 0;
1191 int ret;
Jens Axboe1b427252012-03-14 15:03:03 +01001192
1193 stream.avail_out = FIO_SERVER_MAX_FRAGMENT_PDU;
1194 stream.next_out = out_pdu;
Jens Axboe3c547fe2012-03-14 21:53:00 +01001195 ret = deflate(&stream, Z_FINISH);
1196 /* may be Z_OK, or Z_STREAM_END */
1197 if (ret < 0)
1198 goto err_zlib;
Jens Axboe1b427252012-03-14 15:03:03 +01001199
1200 this_len = FIO_SERVER_MAX_FRAGMENT_PDU - stream.avail_out;
1201
Jens Axboe1b427252012-03-14 15:03:03 +01001202 if (stream.avail_in)
Jens Axboe53bd8db2012-03-14 21:51:38 +01001203 flags = FIO_NET_CMD_F_MORE;
Jens Axboe1b427252012-03-14 15:03:03 +01001204
Jens Axboe53bd8db2012-03-14 21:51:38 +01001205 ret = fio_send_cmd_ext_pdu(server_fd, FIO_NET_CMD_IOLOG,
1206 out_pdu, this_len, 0, flags);
1207 if (ret)
1208 goto err_zlib;
Jens Axboe1b427252012-03-14 15:03:03 +01001209 } while (stream.avail_in);
1210
Jens Axboe53bd8db2012-03-14 21:51:38 +01001211err_zlib:
Jens Axboe1b427252012-03-14 15:03:03 +01001212 deflateEnd(&stream);
Jens Axboe53bd8db2012-03-14 21:51:38 +01001213err:
1214 free(out_pdu);
Jens Axboe3989b142013-04-12 13:13:24 +02001215#endif
Jens Axboe53bd8db2012-03-14 21:51:38 +01001216 return ret;
Jens Axboe1b427252012-03-14 15:03:03 +01001217}
1218
Jens Axboe3989b142013-04-12 13:13:24 +02001219int fio_send_iolog(struct thread_data *td, struct io_log *log, const char *name)
1220{
1221 struct cmd_iolog_pdu pdu;
1222 int i, ret = 0;
1223
1224 pdu.thread_number = cpu_to_le32(td->thread_number);
1225 pdu.nr_samples = __cpu_to_le32(log->nr_samples);
1226 pdu.log_type = cpu_to_le32(log->log_type);
1227 pdu.compressed = cpu_to_le32(use_zlib);
Jens Axboe9bdb9262014-04-14 11:45:34 -06001228
1229 strncpy((char *) pdu.name, name, FIO_NET_NAME_MAX);
1230 pdu.name[FIO_NET_NAME_MAX - 1] = '\0';
Jens Axboe3989b142013-04-12 13:13:24 +02001231
1232 for (i = 0; i < log->nr_samples; i++) {
1233 struct io_sample *s = &log->log[i];
1234
1235 s->time = cpu_to_le64(s->time);
1236 s->val = cpu_to_le64(s->val);
1237 s->ddir = cpu_to_le32(s->ddir);
1238 s->bs = cpu_to_le32(s->bs);
1239 }
1240
1241 /*
1242 * Send header first, it's not compressed.
1243 */
1244 ret = fio_send_cmd_ext_pdu(server_fd, FIO_NET_CMD_IOLOG, &pdu,
1245 sizeof(pdu), 0, FIO_NET_CMD_F_MORE);
1246 if (ret)
1247 return ret;
1248
1249 /*
1250 * Now send actual log, compress if we can, otherwise just plain
1251 */
1252 if (use_zlib)
1253 return fio_send_iolog_gz(&pdu, log);
1254
1255 return fio_send_cmd_ext_pdu(server_fd, FIO_NET_CMD_IOLOG, log->log,
1256 log->nr_samples * sizeof(struct io_sample), 0, 0);
1257}
1258
Jens Axboe2f122b12012-03-15 13:10:19 +01001259void fio_server_send_add_job(struct thread_data *td)
Jens Axboe807f9972012-03-02 10:25:24 +01001260{
1261 struct cmd_add_job_pdu pdu;
Jens Axboe807f9972012-03-02 10:25:24 +01001262
Jens Axboe731e30a2012-03-14 16:35:37 +01001263 memset(&pdu, 0, sizeof(pdu));
Jens Axboe2f122b12012-03-15 13:10:19 +01001264 pdu.thread_number = cpu_to_le32(td->thread_number);
1265 pdu.groupid = cpu_to_le32(td->groupid);
1266 convert_thread_options_to_net(&pdu.top, &td->o);
Jens Axboe807f9972012-03-02 10:25:24 +01001267
Jens Axboe40c60512012-03-27 16:03:04 +02001268 fio_net_send_cmd(server_fd, FIO_NET_CMD_ADD_JOB, &pdu, sizeof(pdu), NULL, NULL);
Jens Axboe807f9972012-03-02 10:25:24 +01001269}
1270
Jens Axboe122c7722012-03-19 09:13:15 +01001271void fio_server_send_start(struct thread_data *td)
1272{
1273 assert(server_fd != -1);
1274
1275 fio_net_send_simple_cmd(server_fd, FIO_NET_CMD_SERVER_START, 0, NULL);
1276}
1277
Jens Axboe87aa8f12011-10-06 21:24:13 +02001278static int fio_init_server_ip(void)
Jens Axboe81179ee2011-10-04 12:42:06 +02001279{
Jens Axboe811826b2011-10-24 09:11:50 +02001280 struct sockaddr *addr;
Jens Axboe67bf9822013-01-10 11:23:19 +01001281 socklen_t socklen;
Jens Axboe17e35312014-03-25 10:50:55 -07001282 char buf[80];
1283 const char *str;
Jens Axboe87aa8f12011-10-06 21:24:13 +02001284 int sk, opt;
Jens Axboe81179ee2011-10-04 12:42:06 +02001285
Jens Axboe811826b2011-10-24 09:11:50 +02001286 if (use_ipv6)
1287 sk = socket(AF_INET6, SOCK_STREAM, 0);
1288 else
1289 sk = socket(AF_INET, SOCK_STREAM, 0);
1290
Jens Axboe81179ee2011-10-04 12:42:06 +02001291 if (sk < 0) {
1292 log_err("fio: socket: %s\n", strerror(errno));
1293 return -1;
1294 }
1295
1296 opt = 1;
Jens Axboe1f819912013-01-23 17:21:41 -07001297 if (setsockopt(sk, SOL_SOCKET, SO_REUSEADDR, (void *)&opt, sizeof(opt)) < 0) {
Jens Axboe81179ee2011-10-04 12:42:06 +02001298 log_err("fio: setsockopt: %s\n", strerror(errno));
Jens Axboeb94cba42011-10-06 21:27:10 +02001299 close(sk);
Jens Axboe81179ee2011-10-04 12:42:06 +02001300 return -1;
1301 }
1302#ifdef SO_REUSEPORT
Jens Axboe6eb24792011-10-04 15:00:30 +02001303 if (setsockopt(sk, SOL_SOCKET, SO_REUSEPORT, &opt, sizeof(opt)) < 0) {
Jens Axboe81179ee2011-10-04 12:42:06 +02001304 log_err("fio: setsockopt: %s\n", strerror(errno));
Jens Axboeb94cba42011-10-06 21:27:10 +02001305 close(sk);
Jens Axboe81179ee2011-10-04 12:42:06 +02001306 return -1;
1307 }
1308#endif
1309
Jens Axboe811826b2011-10-24 09:11:50 +02001310 if (use_ipv6) {
Jens Axboe17e35312014-03-25 10:50:55 -07001311 const void *src = &saddr_in6.sin6_addr;
1312
Jens Axboe811826b2011-10-24 09:11:50 +02001313 addr = (struct sockaddr *) &saddr_in6;
1314 socklen = sizeof(saddr_in6);
1315 saddr_in6.sin6_family = AF_INET6;
Jens Axboe17e35312014-03-25 10:50:55 -07001316 str = inet_ntop(AF_INET6, src, buf, sizeof(buf));
Jens Axboe811826b2011-10-24 09:11:50 +02001317 } else {
Jens Axboe17e35312014-03-25 10:50:55 -07001318 const void *src = &saddr_in.sin_addr;
1319
Jens Axboe811826b2011-10-24 09:11:50 +02001320 addr = (struct sockaddr *) &saddr_in;
1321 socklen = sizeof(saddr_in);
1322 saddr_in.sin_family = AF_INET;
Jens Axboe17e35312014-03-25 10:50:55 -07001323 str = inet_ntop(AF_INET, src, buf, sizeof(buf));
Jens Axboe811826b2011-10-24 09:11:50 +02001324 }
Jens Axboe81179ee2011-10-04 12:42:06 +02001325
Jens Axboe811826b2011-10-24 09:11:50 +02001326 if (bind(sk, addr, socklen) < 0) {
Jens Axboe81179ee2011-10-04 12:42:06 +02001327 log_err("fio: bind: %s\n", strerror(errno));
Jens Axboe17e35312014-03-25 10:50:55 -07001328 log_info("fio: failed with IPv%c %s\n", use_ipv6 ? '6' : '4', str);
Jens Axboeb94cba42011-10-06 21:27:10 +02001329 close(sk);
Jens Axboe81179ee2011-10-04 12:42:06 +02001330 return -1;
1331 }
1332
Jens Axboe87aa8f12011-10-06 21:24:13 +02001333 return sk;
1334}
1335
1336static int fio_init_server_sock(void)
1337{
1338 struct sockaddr_un addr;
Jens Axboe67bf9822013-01-10 11:23:19 +01001339 socklen_t len;
Jens Axboe87aa8f12011-10-06 21:24:13 +02001340 mode_t mode;
1341 int sk;
1342
1343 sk = socket(AF_UNIX, SOCK_STREAM, 0);
1344 if (sk < 0) {
1345 log_err("fio: socket: %s\n", strerror(errno));
1346 return -1;
1347 }
1348
1349 mode = umask(000);
1350
1351 memset(&addr, 0, sizeof(addr));
1352 addr.sun_family = AF_UNIX;
Jens Axboea48fddb2014-04-14 08:55:13 -06001353 strncpy(addr.sun_path, bind_sock, sizeof(addr.sun_path) - 1);
Jens Axboe87aa8f12011-10-06 21:24:13 +02001354
1355 len = sizeof(addr.sun_family) + strlen(bind_sock) + 1;
1356
1357 if (bind(sk, (struct sockaddr *) &addr, len) < 0) {
1358 log_err("fio: bind: %s\n", strerror(errno));
Jens Axboeb94cba42011-10-06 21:27:10 +02001359 close(sk);
Jens Axboe87aa8f12011-10-06 21:24:13 +02001360 return -1;
1361 }
1362
1363 umask(mode);
1364 return sk;
1365}
1366
1367static int fio_init_server_connection(void)
1368{
Jens Axboebebe6392011-10-07 10:00:51 +02001369 char bind_str[128];
Jens Axboe87aa8f12011-10-06 21:24:13 +02001370 int sk;
1371
1372 dprint(FD_NET, "starting server\n");
1373
1374 if (!bind_sock)
1375 sk = fio_init_server_ip();
1376 else
1377 sk = fio_init_server_sock();
1378
1379 if (sk < 0)
1380 return sk;
1381
Jens Axboeafdcad22014-04-14 08:54:09 -06001382 memset(bind_str, 0, sizeof(bind_str));
1383
Jens Axboe811826b2011-10-24 09:11:50 +02001384 if (!bind_sock) {
1385 char *p, port[16];
1386 const void *src;
1387 int af;
1388
1389 if (use_ipv6) {
1390 af = AF_INET6;
1391 src = &saddr_in6.sin6_addr;
1392 } else {
1393 af = AF_INET;
1394 src = &saddr_in.sin_addr;
1395 }
1396
1397 p = (char *) inet_ntop(af, src, bind_str, sizeof(bind_str));
1398
1399 sprintf(port, ",%u", fio_net_port);
1400 if (p)
1401 strcat(p, port);
1402 else
Jens Axboeafdcad22014-04-14 08:54:09 -06001403 strncpy(bind_str, port, sizeof(bind_str) - 1);
Jens Axboe811826b2011-10-24 09:11:50 +02001404 } else
Jens Axboeafdcad22014-04-14 08:54:09 -06001405 strncpy(bind_str, bind_sock, sizeof(bind_str) - 1);
Jens Axboebebe6392011-10-07 10:00:51 +02001406
1407 log_info("fio: server listening on %s\n", bind_str);
1408
Jens Axboe89c17072011-10-11 10:15:51 +02001409 if (listen(sk, 0) < 0) {
Jens Axboe81179ee2011-10-04 12:42:06 +02001410 log_err("fio: listen: %s\n", strerror(errno));
Jens Axboe2fd973c2014-04-08 21:13:42 -06001411 close(sk);
Jens Axboe81179ee2011-10-04 12:42:06 +02001412 return -1;
1413 }
1414
Jens Axboe87aa8f12011-10-06 21:24:13 +02001415 return sk;
1416}
1417
Jens Axboe3aa3cee2014-01-24 18:56:56 -08001418int fio_server_parse_host(const char *host, int ipv6, struct in_addr *inp,
Jens Axboe3ec62ec2012-03-01 12:01:29 +01001419 struct in6_addr *inp6)
1420
1421{
1422 int ret = 0;
1423
Jens Axboe3aa3cee2014-01-24 18:56:56 -08001424 if (ipv6)
Jens Axboe3ec62ec2012-03-01 12:01:29 +01001425 ret = inet_pton(AF_INET6, host, inp6);
1426 else
1427 ret = inet_pton(AF_INET, host, inp);
1428
1429 if (ret != 1) {
Jens Axboe479471c2014-01-23 20:42:06 -08001430 struct addrinfo hints, *res;
Jens Axboe3ec62ec2012-03-01 12:01:29 +01001431
Jens Axboe479471c2014-01-23 20:42:06 -08001432 memset(&hints, 0, sizeof(hints));
Jens Axboe3aa3cee2014-01-24 18:56:56 -08001433 hints.ai_family = ipv6 ? AF_INET6 : AF_INET;
Jens Axboe479471c2014-01-23 20:42:06 -08001434 hints.ai_socktype = SOCK_STREAM;
1435
1436 ret = getaddrinfo(host, NULL, &hints, &res);
1437 if (ret) {
1438 log_err("fio: failed to resolve <%s> (%s)\n", host,
1439 gai_strerror(ret));
Jens Axboe3caf43e2014-01-24 18:52:16 -08001440 return 1;
Jens Axboe3ec62ec2012-03-01 12:01:29 +01001441 }
1442
Jens Axboe3aa3cee2014-01-24 18:56:56 -08001443 if (ipv6)
Jens Axboe479471c2014-01-23 20:42:06 -08001444 memcpy(inp6, &((struct sockaddr_in6 *) res->ai_addr)->sin6_addr, sizeof(*inp6));
1445 else
1446 memcpy(inp, &((struct sockaddr_in *) res->ai_addr)->sin_addr, sizeof(*inp));
1447
Jens Axboe3ec62ec2012-03-01 12:01:29 +01001448 ret = 1;
Jens Axboe479471c2014-01-23 20:42:06 -08001449 freeaddrinfo(res);
Jens Axboe3ec62ec2012-03-01 12:01:29 +01001450 }
1451
1452 return !(ret == 1);
1453}
1454
Jens Axboe660a2bf2011-10-24 09:35:06 +02001455/*
1456 * Parse a host/ip/port string. Reads from 'str'.
1457 *
1458 * Outputs:
1459 *
1460 * For IPv4:
1461 * *ptr is the host, *port is the port, inp is the destination.
1462 * For IPv6:
1463 * *ptr is the host, *port is the port, inp6 is the dest, and *ipv6 is 1.
1464 * For local domain sockets:
1465 * *ptr is the filename, *is_sock is 1.
1466 */
Jens Axboebebe6392011-10-07 10:00:51 +02001467int fio_server_parse_string(const char *str, char **ptr, int *is_sock,
Jens Axboe811826b2011-10-24 09:11:50 +02001468 int *port, struct in_addr *inp,
1469 struct in6_addr *inp6, int *ipv6)
Jens Axboebebe6392011-10-07 10:00:51 +02001470{
Jens Axboe76867622011-10-25 09:52:51 +02001471 const char *host = str;
1472 char *portp;
Jens Axboe3ec62ec2012-03-01 12:01:29 +01001473 int lport = 0;
Jens Axboe76867622011-10-25 09:52:51 +02001474
Jens Axboebebe6392011-10-07 10:00:51 +02001475 *ptr = NULL;
1476 *is_sock = 0;
Jens Axboe6d2cf392011-10-07 13:19:28 +02001477 *port = fio_net_port;
Jens Axboe811826b2011-10-24 09:11:50 +02001478 *ipv6 = 0;
Jens Axboebebe6392011-10-07 10:00:51 +02001479
1480 if (!strncmp(str, "sock:", 5)) {
1481 *ptr = strdup(str + 5);
1482 *is_sock = 1;
Jens Axboebebe6392011-10-07 10:00:51 +02001483
Jens Axboe76867622011-10-25 09:52:51 +02001484 return 0;
1485 }
1486
1487 /*
1488 * Is it ip:<ip or host>:port
1489 */
1490 if (!strncmp(host, "ip:", 3))
1491 host += 3;
1492 else if (!strncmp(host, "ip4:", 4))
1493 host += 4;
1494 else if (!strncmp(host, "ip6:", 4)) {
1495 host += 4;
1496 *ipv6 = 1;
1497 } else if (host[0] == ':') {
1498 /* String is :port */
1499 host++;
1500 lport = atoi(host);
1501 if (!lport || lport > 65535) {
Jens Axboe4e0a8fa2013-04-15 11:40:57 +02001502 log_err("fio: bad server port %u\n", lport);
Jens Axboe76867622011-10-25 09:52:51 +02001503 return 1;
1504 }
1505 /* no hostname given, we are done */
1506 *port = lport;
1507 return 0;
1508 }
1509
1510 /*
Jens Axboeb96b90c2014-03-25 10:37:56 -07001511 * If no port seen yet, check if there's a last ',' at the end
Jens Axboe76867622011-10-25 09:52:51 +02001512 */
1513 if (!lport) {
1514 portp = strchr(host, ',');
1515 if (portp) {
1516 *portp = '\0';
1517 portp++;
1518 lport = atoi(portp);
Jens Axboebebe6392011-10-07 10:00:51 +02001519 if (!lport || lport > 65535) {
Jens Axboe4e0a8fa2013-04-15 11:40:57 +02001520 log_err("fio: bad server port %u\n", lport);
Jens Axboebebe6392011-10-07 10:00:51 +02001521 return 1;
1522 }
Jens Axboe76867622011-10-25 09:52:51 +02001523 }
1524 }
1525
1526 if (lport)
1527 *port = lport;
1528
1529 if (!strlen(host))
1530 return 0;
1531
1532 *ptr = strdup(host);
1533
Jens Axboe3aa3cee2014-01-24 18:56:56 -08001534 if (fio_server_parse_host(*ptr, *ipv6, inp, inp6)) {
Jens Axboe3ec62ec2012-03-01 12:01:29 +01001535 free(*ptr);
1536 *ptr = NULL;
1537 return 1;
Jens Axboebebe6392011-10-07 10:00:51 +02001538 }
1539
1540 if (*port == 0)
1541 *port = fio_net_port;
1542
1543 return 0;
1544}
1545
Jens Axboe87aa8f12011-10-06 21:24:13 +02001546/*
1547 * Server arg should be one of:
1548 *
1549 * sock:/path/to/socket
1550 * ip:1.2.3.4
1551 * 1.2.3.4
1552 *
1553 * Where sock uses unix domain sockets, and ip binds the server to
1554 * a specific interface. If no arguments are given to the server, it
1555 * uses IP and binds to 0.0.0.0.
1556 *
1557 */
1558static int fio_handle_server_arg(void)
1559{
Jens Axboe6d2cf392011-10-07 13:19:28 +02001560 int port = fio_net_port;
Jens Axboea7de0a12011-10-07 12:55:14 +02001561 int is_sock, ret = 0;
Jens Axboebebe6392011-10-07 10:00:51 +02001562
Jens Axboe87aa8f12011-10-06 21:24:13 +02001563 saddr_in.sin_addr.s_addr = htonl(INADDR_ANY);
1564
1565 if (!fio_server_arg)
Jens Axboea7de0a12011-10-07 12:55:14 +02001566 goto out;
Jens Axboe87aa8f12011-10-06 21:24:13 +02001567
Jens Axboe4e5b8fb2011-10-07 10:03:44 +02001568 ret = fio_server_parse_string(fio_server_arg, &bind_sock, &is_sock,
Jens Axboe811826b2011-10-24 09:11:50 +02001569 &port, &saddr_in.sin_addr,
1570 &saddr_in6.sin6_addr, &use_ipv6);
Jens Axboe4e5b8fb2011-10-07 10:03:44 +02001571
1572 if (!is_sock && bind_sock) {
1573 free(bind_sock);
1574 bind_sock = NULL;
1575 }
1576
Jens Axboea7de0a12011-10-07 12:55:14 +02001577out:
Jens Axboe6d2cf392011-10-07 13:19:28 +02001578 fio_net_port = port;
1579 saddr_in.sin_port = htons(port);
Jens Axboe811826b2011-10-24 09:11:50 +02001580 saddr_in6.sin6_port = htons(port);
Jens Axboe4e5b8fb2011-10-07 10:03:44 +02001581 return ret;
Jens Axboe87aa8f12011-10-06 21:24:13 +02001582}
1583
Jens Axboe43cdea12014-03-25 15:06:17 -07001584static void sig_int(int sig)
1585{
1586 if (bind_sock)
1587 unlink(bind_sock);
1588}
1589
1590static void set_sig_handlers(void)
1591{
1592 struct sigaction act;
1593
1594 memset(&act, 0, sizeof(act));
1595 act.sa_handler = sig_int;
1596 act.sa_flags = SA_RESTART;
1597 sigaction(SIGINT, &act, NULL);
1598}
1599
Jens Axboe87aa8f12011-10-06 21:24:13 +02001600static int fio_server(void)
1601{
1602 int sk, ret;
1603
1604 dprint(FD_NET, "starting server\n");
1605
1606 if (fio_handle_server_arg())
1607 return -1;
1608
1609 sk = fio_init_server_connection();
1610 if (sk < 0)
1611 return -1;
Jens Axboe81179ee2011-10-04 12:42:06 +02001612
Jens Axboe43cdea12014-03-25 15:06:17 -07001613 set_sig_handlers();
1614
Jens Axboe81179ee2011-10-04 12:42:06 +02001615 ret = accept_loop(sk);
Jens Axboe87aa8f12011-10-06 21:24:13 +02001616
Jens Axboe81179ee2011-10-04 12:42:06 +02001617 close(sk);
Jens Axboe87aa8f12011-10-06 21:24:13 +02001618
1619 if (fio_server_arg) {
1620 free(fio_server_arg);
1621 fio_server_arg = NULL;
1622 }
Jens Axboebebe6392011-10-07 10:00:51 +02001623 if (bind_sock)
1624 free(bind_sock);
Jens Axboe87aa8f12011-10-06 21:24:13 +02001625
Jens Axboe81179ee2011-10-04 12:42:06 +02001626 return ret;
1627}
1628
Jens Axboe7b821682011-10-11 12:16:32 +02001629void fio_server_got_signal(int signal)
Jens Axboe9abea482011-10-04 13:21:54 +02001630{
Jens Axboe7b821682011-10-11 12:16:32 +02001631 if (signal == SIGPIPE)
1632 server_fd = -1;
1633 else {
1634 log_info("\nfio: terminating on signal %d\n", signal);
1635 exit_backend = 1;
1636 }
Jens Axboe9abea482011-10-04 13:21:54 +02001637}
1638
Jens Axboe13755d92011-10-10 19:51:26 +02001639static int check_existing_pidfile(const char *pidfile)
1640{
1641 struct stat sb;
1642 char buf[16];
1643 pid_t pid;
1644 FILE *f;
1645
1646 if (stat(pidfile, &sb))
1647 return 0;
1648
1649 f = fopen(pidfile, "r");
1650 if (!f)
1651 return 0;
1652
Jens Axboebfc3b172011-10-10 21:16:55 +02001653 if (fread(buf, sb.st_size, 1, f) <= 0) {
Jens Axboe13755d92011-10-10 19:51:26 +02001654 fclose(f);
1655 return 1;
1656 }
1657 fclose(f);
1658
1659 pid = atoi(buf);
1660 if (kill(pid, SIGCONT) < 0)
Jens Axboeea5aa1b2011-10-11 11:45:35 +02001661 return errno != ESRCH;
Jens Axboe13755d92011-10-10 19:51:26 +02001662
1663 return 1;
1664}
1665
1666static int write_pid(pid_t pid, const char *pidfile)
Jens Axboe402668f2011-10-10 15:28:58 +02001667{
1668 FILE *fpid;
1669
1670 fpid = fopen(pidfile, "w");
1671 if (!fpid) {
1672 log_err("fio: failed opening pid file %s\n", pidfile);
Jens Axboe13755d92011-10-10 19:51:26 +02001673 return 1;
Jens Axboe402668f2011-10-10 15:28:58 +02001674 }
1675
1676 fprintf(fpid, "%u\n", (unsigned int) pid);
Jens Axboe13755d92011-10-10 19:51:26 +02001677 fclose(fpid);
1678 return 0;
Jens Axboe402668f2011-10-10 15:28:58 +02001679}
1680
1681/*
1682 * If pidfile is specified, background us.
1683 */
1684int fio_start_server(char *pidfile)
Jens Axboee46d8092011-10-03 09:11:02 +02001685{
1686 pid_t pid;
Jens Axboe402668f2011-10-10 15:28:58 +02001687 int ret;
Jens Axboee46d8092011-10-03 09:11:02 +02001688
Bruce Cran93bcfd22012-02-20 20:18:19 +01001689#if defined(WIN32)
Jens Axboe905c78b2012-03-06 19:34:22 +01001690 WSADATA wsd;
Jens Axboe3c3ed072012-03-27 09:12:39 +02001691 WSAStartup(MAKEWORD(2, 2), &wsd);
Bruce Cran93bcfd22012-02-20 20:18:19 +01001692#endif
1693
Jens Axboe402668f2011-10-10 15:28:58 +02001694 if (!pidfile)
Jens Axboee46d8092011-10-03 09:11:02 +02001695 return fio_server();
1696
Jens Axboe13755d92011-10-10 19:51:26 +02001697 if (check_existing_pidfile(pidfile)) {
1698 log_err("fio: pidfile %s exists and server appears alive\n",
1699 pidfile);
Jens Axboeb8ba87a2014-04-11 11:37:34 -06001700 free(pidfile);
Jens Axboe13755d92011-10-10 19:51:26 +02001701 return -1;
1702 }
1703
Jens Axboee46d8092011-10-03 09:11:02 +02001704 pid = fork();
1705 if (pid < 0) {
Jens Axboe13755d92011-10-10 19:51:26 +02001706 log_err("fio: failed server fork: %s", strerror(errno));
Jens Axboe402668f2011-10-10 15:28:58 +02001707 free(pidfile);
Jens Axboec28e8e82011-10-04 08:57:39 +02001708 return -1;
Jens Axboe402668f2011-10-10 15:28:58 +02001709 } else if (pid) {
Jens Axboe13755d92011-10-10 19:51:26 +02001710 int ret = write_pid(pid, pidfile);
1711
Jens Axboeb8ba87a2014-04-11 11:37:34 -06001712 free(pidfile);
Jens Axboe13755d92011-10-10 19:51:26 +02001713 exit(ret);
Jens Axboe402668f2011-10-10 15:28:58 +02001714 }
Jens Axboee46d8092011-10-03 09:11:02 +02001715
1716 setsid();
Jens Axboe13755d92011-10-10 19:51:26 +02001717 openlog("fio", LOG_NDELAY|LOG_NOWAIT|LOG_PID, LOG_USER);
1718 log_syslog = 1;
Jens Axboee46d8092011-10-03 09:11:02 +02001719 close(STDIN_FILENO);
1720 close(STDOUT_FILENO);
1721 close(STDERR_FILENO);
1722 f_out = NULL;
1723 f_err = NULL;
Jens Axboe402668f2011-10-10 15:28:58 +02001724
1725 ret = fio_server();
1726
1727 closelog();
1728 unlink(pidfile);
1729 free(pidfile);
1730 return ret;
Jens Axboee46d8092011-10-03 09:11:02 +02001731}
Jens Axboe87aa8f12011-10-06 21:24:13 +02001732
Jens Axboebebe6392011-10-07 10:00:51 +02001733void fio_server_set_arg(const char *arg)
Jens Axboe87aa8f12011-10-06 21:24:13 +02001734{
1735 fio_server_arg = strdup(arg);
1736}