Merge branch 'master' into gfio
[fio.git] / engines / net.c
1 /*
2  * net engine
3  *
4  * IO engine that reads/writes to/from sockets.
5  *
6  */
7 #include <stdio.h>
8 #include <stdlib.h>
9 #include <unistd.h>
10 #include <signal.h>
11 #include <errno.h>
12 #include <assert.h>
13 #include <netinet/in.h>
14 #include <netinet/tcp.h>
15 #include <arpa/inet.h>
16 #include <netdb.h>
17 #include <sys/poll.h>
18 #include <sys/types.h>
19 #include <sys/stat.h>
20 #include <sys/socket.h>
21 #include <sys/un.h>
22
23 #include "../fio.h"
24
25 struct netio_data {
26         int listenfd;
27         int use_splice;
28         int pipes[2];
29         struct sockaddr_in addr;
30         struct sockaddr_un addr_un;
31 };
32
33 struct netio_options {
34         struct thread_data *td;
35         unsigned int port;
36         unsigned int proto;
37         unsigned int listen;
38         unsigned int pingpong;
39         unsigned int nodelay;
40 };
41
42 struct udp_close_msg {
43         uint32_t magic;
44         uint32_t cmd;
45 };
46
47 enum {
48         FIO_LINK_CLOSE = 0x89,
49         FIO_LINK_OPEN_CLOSE_MAGIC = 0x6c696e6b,
50         FIO_LINK_OPEN = 0x98,
51
52         FIO_TYPE_TCP    = 1,
53         FIO_TYPE_UDP    = 2,
54         FIO_TYPE_UNIX   = 3,
55 };
56
57 static int str_hostname_cb(void *data, const char *input);
58 static struct fio_option options[] = {
59         {
60                 .name   = "hostname",
61                 .lname  = "net engine hostname",
62                 .type   = FIO_OPT_STR_STORE,
63                 .cb     = str_hostname_cb,
64                 .help   = "Hostname for net IO engine",
65                 .category = FIO_OPT_C_IO,
66         },
67         {
68                 .name   = "port",
69                 .lname  = "net engine port",
70                 .type   = FIO_OPT_INT,
71                 .off1   = offsetof(struct netio_options, port),
72                 .minval = 1,
73                 .maxval = 65535,
74                 .help   = "Port to use for TCP or UDP net connections",
75                 .category = FIO_OPT_C_IO,
76         },
77         {
78                 .name   = "protocol",
79                 .lname  = "net engine protocol",
80                 .alias  = "proto",
81                 .type   = FIO_OPT_STR,
82                 .off1   = offsetof(struct netio_options, proto),
83                 .help   = "Network protocol to use",
84                 .def    = "tcp",
85                 .category = FIO_OPT_C_IO,
86                 .posval = {
87                           { .ival = "tcp",
88                             .oval = FIO_TYPE_TCP,
89                             .help = "Transmission Control Protocol",
90                           },
91                           { .ival = "udp",
92                             .oval = FIO_TYPE_UDP,
93                             .help = "User Datagram Protocol",
94                           },
95                           { .ival = "unix",
96                             .oval = FIO_TYPE_UNIX,
97                             .help = "UNIX domain socket",
98                           },
99                 },
100         },
101 #ifdef CONFIG_TCP_NODELAY
102         {
103                 .name   = "nodelay",
104                 .type   = FIO_OPT_BOOL,
105                 .off1   = offsetof(struct netio_options, nodelay),
106                 .help   = "Use TCP_NODELAY on TCP connections",
107         },
108 #endif
109         {
110                 .name   = "listen",
111                 .lname  = "net engine listen",
112                 .type   = FIO_OPT_STR_SET,
113                 .off1   = offsetof(struct netio_options, listen),
114                 .help   = "Listen for incoming TCP connections",
115                 .category = FIO_OPT_C_IO,
116         },
117         {
118                 .name   = "pingpong",
119                 .type   = FIO_OPT_STR_SET,
120                 .off1   = offsetof(struct netio_options, pingpong),
121                 .help   = "Ping-pong IO requests",
122         },
123         {
124                 .name   = NULL,
125         },
126 };
127
128 /*
129  * Return -1 for error and 'nr events' for a positive number
130  * of events
131  */
132 static int poll_wait(struct thread_data *td, int fd, short events)
133 {
134         struct pollfd pfd;
135         int ret;
136
137         while (!td->terminate) {
138                 pfd.fd = fd;
139                 pfd.events = events;
140                 ret = poll(&pfd, 1, -1);
141                 if (ret < 0) {
142                         if (errno == EINTR)
143                                 break;
144
145                         td_verror(td, errno, "poll");
146                         return -1;
147                 } else if (!ret)
148                         continue;
149
150                 break;
151         }
152
153         if (pfd.revents & events)
154                 return 1;
155
156         return -1;
157 }
158
159 static int fio_netio_prep(struct thread_data *td, struct io_u *io_u)
160 {
161         struct netio_options *o = td->eo;
162
163         /*
164          * Make sure we don't see spurious reads to a receiver, and vice versa
165          */
166         if (o->proto == FIO_TYPE_TCP)
167                 return 0;
168
169         if ((o->listen && io_u->ddir == DDIR_WRITE) ||
170             (!o->listen && io_u->ddir == DDIR_READ)) {
171                 td_verror(td, EINVAL, "bad direction");
172                 return 1;
173         }
174
175         return 0;
176 }
177
178 #ifdef CONFIG_LINUX_SPLICE
179 static int splice_io_u(int fdin, int fdout, unsigned int len)
180 {
181         int bytes = 0;
182
183         while (len) {
184                 int ret = splice(fdin, NULL, fdout, NULL, len, 0);
185
186                 if (ret < 0) {
187                         if (!bytes)
188                                 bytes = ret;
189
190                         break;
191                 } else if (!ret)
192                         break;
193
194                 bytes += ret;
195                 len -= ret;
196         }
197
198         return bytes;
199 }
200
201 /*
202  * Receive bytes from a socket and fill them into the internal pipe
203  */
204 static int splice_in(struct thread_data *td, struct io_u *io_u)
205 {
206         struct netio_data *nd = td->io_ops->data;
207
208         return splice_io_u(io_u->file->fd, nd->pipes[1], io_u->xfer_buflen);
209 }
210
211 /*
212  * Transmit 'len' bytes from the internal pipe
213  */
214 static int splice_out(struct thread_data *td, struct io_u *io_u,
215                       unsigned int len)
216 {
217         struct netio_data *nd = td->io_ops->data;
218
219         return splice_io_u(nd->pipes[0], io_u->file->fd, len);
220 }
221
222 static int vmsplice_io_u(struct io_u *io_u, int fd, unsigned int len)
223 {
224         struct iovec iov = {
225                 .iov_base = io_u->xfer_buf,
226                 .iov_len = len,
227         };
228         int bytes = 0;
229
230         while (iov.iov_len) {
231                 int ret = vmsplice(fd, &iov, 1, SPLICE_F_MOVE);
232
233                 if (ret < 0) {
234                         if (!bytes)
235                                 bytes = ret;
236                         break;
237                 } else if (!ret)
238                         break;
239
240                 iov.iov_len -= ret;
241                 iov.iov_base += ret;
242                 bytes += ret;
243         }
244
245         return bytes;
246
247 }
248
249 /*
250  * vmsplice() pipe to io_u buffer
251  */
252 static int vmsplice_io_u_out(struct thread_data *td, struct io_u *io_u,
253                              unsigned int len)
254 {
255         struct netio_data *nd = td->io_ops->data;
256
257         return vmsplice_io_u(io_u, nd->pipes[0], len);
258 }
259
260 /*
261  * vmsplice() io_u to pipe
262  */
263 static int vmsplice_io_u_in(struct thread_data *td, struct io_u *io_u)
264 {
265         struct netio_data *nd = td->io_ops->data;
266
267         return vmsplice_io_u(io_u, nd->pipes[1], io_u->xfer_buflen);
268 }
269
270 /*
271  * splice receive - transfer socket data into a pipe using splice, then map
272  * that pipe data into the io_u using vmsplice.
273  */
274 static int fio_netio_splice_in(struct thread_data *td, struct io_u *io_u)
275 {
276         int ret;
277
278         ret = splice_in(td, io_u);
279         if (ret > 0)
280                 return vmsplice_io_u_out(td, io_u, ret);
281
282         return ret;
283 }
284
285 /*
286  * splice transmit - map data from the io_u into a pipe by using vmsplice,
287  * then transfer that pipe to a socket using splice.
288  */
289 static int fio_netio_splice_out(struct thread_data *td, struct io_u *io_u)
290 {
291         int ret;
292
293         ret = vmsplice_io_u_in(td, io_u);
294         if (ret > 0)
295                 return splice_out(td, io_u, ret);
296
297         return ret;
298 }
299 #else
300 static int fio_netio_splice_in(struct thread_data *td, struct io_u *io_u)
301 {
302         errno = EOPNOTSUPP;
303         return -1;
304 }
305
306 static int fio_netio_splice_out(struct thread_data *td, struct io_u *io_u)
307 {
308         errno = EOPNOTSUPP;
309         return -1;
310 }
311 #endif
312
313 static int fio_netio_send(struct thread_data *td, struct io_u *io_u)
314 {
315         struct netio_data *nd = td->io_ops->data;
316         struct netio_options *o = td->eo;
317         int ret, flags = 0;
318
319         do {
320                 if (o->proto == FIO_TYPE_UDP) {
321                         struct sockaddr *to = (struct sockaddr *) &nd->addr;
322
323                         ret = sendto(io_u->file->fd, io_u->xfer_buf,
324                                         io_u->xfer_buflen, flags, to,
325                                         sizeof(*to));
326                 } else {
327                         /*
328                          * if we are going to write more, set MSG_MORE
329                          */
330 #ifdef MSG_MORE
331                         if ((td->this_io_bytes[DDIR_WRITE] + io_u->xfer_buflen <
332                             td->o.size) && !o->pingpong)
333                                 flags |= MSG_MORE;
334 #endif
335                         ret = send(io_u->file->fd, io_u->xfer_buf,
336                                         io_u->xfer_buflen, flags);
337                 }
338                 if (ret > 0)
339                         break;
340
341                 ret = poll_wait(td, io_u->file->fd, POLLOUT);
342                 if (ret <= 0)
343                         break;
344         } while (1);
345
346         return ret;
347 }
348
349 static int is_udp_close(struct io_u *io_u, int len)
350 {
351         struct udp_close_msg *msg;
352
353         if (len != sizeof(struct udp_close_msg))
354                 return 0;
355
356         msg = io_u->xfer_buf;
357         if (ntohl(msg->magic) != FIO_LINK_OPEN_CLOSE_MAGIC)
358                 return 0;
359         if (ntohl(msg->cmd) != FIO_LINK_CLOSE)
360                 return 0;
361
362         return 1;
363 }
364
365 static int fio_netio_recv(struct thread_data *td, struct io_u *io_u)
366 {
367         struct netio_data *nd = td->io_ops->data;
368         struct netio_options *o = td->eo;
369         int ret, flags = 0;
370
371         do {
372                 if (o->proto == FIO_TYPE_UDP) {
373                         socklen_t len = sizeof(nd->addr);
374                         struct sockaddr *from = (struct sockaddr *) &nd->addr;
375
376                         ret = recvfrom(io_u->file->fd, io_u->xfer_buf,
377                                         io_u->xfer_buflen, flags, from, &len);
378                         if (is_udp_close(io_u, ret)) {
379                                 td->done = 1;
380                                 return 0;
381                         }
382                 } else {
383                         ret = recv(io_u->file->fd, io_u->xfer_buf,
384                                         io_u->xfer_buflen, flags);
385                 }
386                 if (ret > 0)
387                         break;
388                 else if (!ret && (flags & MSG_WAITALL))
389                         break;
390
391                 ret = poll_wait(td, io_u->file->fd, POLLIN);
392                 if (ret <= 0)
393                         break;
394                 flags |= MSG_WAITALL;
395         } while (1);
396
397         return ret;
398 }
399
400 static int __fio_netio_queue(struct thread_data *td, struct io_u *io_u,
401                              enum fio_ddir ddir)
402 {
403         struct netio_data *nd = td->io_ops->data;
404         struct netio_options *o = td->eo;
405         int ret;
406
407         if (ddir == DDIR_WRITE) {
408                 if (!nd->use_splice || o->proto == FIO_TYPE_UDP ||
409                     o->proto == FIO_TYPE_UNIX)
410                         ret = fio_netio_send(td, io_u);
411                 else
412                         ret = fio_netio_splice_out(td, io_u);
413         } else if (ddir == DDIR_READ) {
414                 if (!nd->use_splice || o->proto == FIO_TYPE_UDP ||
415                     o->proto == FIO_TYPE_UNIX)
416                         ret = fio_netio_recv(td, io_u);
417                 else
418                         ret = fio_netio_splice_in(td, io_u);
419         } else
420                 ret = 0;        /* must be a SYNC */
421
422         if (ret != (int) io_u->xfer_buflen) {
423                 if (ret >= 0) {
424                         io_u->resid = io_u->xfer_buflen - ret;
425                         io_u->error = 0;
426                         return FIO_Q_COMPLETED;
427                 } else {
428                         int err = errno;
429
430                         if (ddir == DDIR_WRITE && err == EMSGSIZE)
431                                 return FIO_Q_BUSY;
432
433                         io_u->error = err;
434                 }
435         }
436
437         if (io_u->error)
438                 td_verror(td, io_u->error, "xfer");
439
440         return FIO_Q_COMPLETED;
441 }
442
443 static int fio_netio_queue(struct thread_data *td, struct io_u *io_u)
444 {
445         struct netio_options *o = td->eo;
446         int ret;
447
448         fio_ro_check(td, io_u);
449
450         ret = __fio_netio_queue(td, io_u, io_u->ddir);
451         if (!o->pingpong || ret != FIO_Q_COMPLETED)
452                 return ret;
453
454         /*
455          * For ping-pong mode, receive or send reply as needed
456          */
457         if (td_read(td) && io_u->ddir == DDIR_READ)
458                 ret = __fio_netio_queue(td, io_u, DDIR_WRITE);
459         else if (td_write(td) && io_u->ddir == DDIR_WRITE)
460                 ret = __fio_netio_queue(td, io_u, DDIR_READ);
461
462         return ret;
463 }
464
465 static int fio_netio_connect(struct thread_data *td, struct fio_file *f)
466 {
467         struct netio_data *nd = td->io_ops->data;
468         struct netio_options *o = td->eo;
469         int type, domain;
470
471         if (o->proto == FIO_TYPE_TCP) {
472                 domain = AF_INET;
473                 type = SOCK_STREAM;
474         } else if (o->proto == FIO_TYPE_UDP) {
475                 domain = AF_INET;
476                 type = SOCK_DGRAM;
477         } else if (o->proto == FIO_TYPE_UNIX) {
478                 domain = AF_UNIX;
479                 type = SOCK_STREAM;
480         } else {
481                 log_err("fio: bad network type %d\n", o->proto);
482                 f->fd = -1;
483                 return 1;
484         }
485
486         f->fd = socket(domain, type, 0);
487         if (f->fd < 0) {
488                 td_verror(td, errno, "socket");
489                 return 1;
490         }
491
492 #ifdef CONFIG_TCP_NODELAY
493         if (o->nodelay && o->proto == FIO_TYPE_TCP) {
494                 int optval = 1;
495
496                 if (setsockopt(f->fd, IPPROTO_TCP, TCP_NODELAY, (void *) &optval, sizeof(int)) < 0) {
497                         log_err("fio: cannot set TCP_NODELAY option on socket (%s), disable with 'nodelay=0'\n", strerror(errno));
498                         return 1;
499                 }
500         }
501 #endif
502
503         if (o->proto == FIO_TYPE_UDP)
504                 return 0;
505         else if (o->proto == FIO_TYPE_TCP) {
506                 socklen_t len = sizeof(nd->addr);
507
508                 if (connect(f->fd, (struct sockaddr *) &nd->addr, len) < 0) {
509                         td_verror(td, errno, "connect");
510                         close(f->fd);
511                         return 1;
512                 }
513         } else {
514                 struct sockaddr_un *addr = &nd->addr_un;
515                 socklen_t len;
516
517                 len = sizeof(addr->sun_family) + strlen(addr->sun_path) + 1;
518
519                 if (connect(f->fd, (struct sockaddr *) addr, len) < 0) {
520                         td_verror(td, errno, "connect");
521                         close(f->fd);
522                         return 1;
523                 }
524         }
525
526         return 0;
527 }
528
529 static int fio_netio_accept(struct thread_data *td, struct fio_file *f)
530 {
531         struct netio_data *nd = td->io_ops->data;
532         struct netio_options *o = td->eo;
533         socklen_t socklen = sizeof(nd->addr);
534         int state;
535
536         if (o->proto == FIO_TYPE_UDP) {
537                 f->fd = nd->listenfd;
538                 return 0;
539         }
540
541         state = td->runstate;
542         td_set_runstate(td, TD_SETTING_UP);
543
544         log_info("fio: waiting for connection\n");
545
546         if (poll_wait(td, nd->listenfd, POLLIN) < 0)
547                 goto err;
548
549         f->fd = accept(nd->listenfd, (struct sockaddr *) &nd->addr, &socklen);
550         if (f->fd < 0) {
551                 td_verror(td, errno, "accept");
552                 goto err;
553         }
554
555 #ifdef CONFIG_TCP_NODELAY
556         if (o->nodelay && o->proto == FIO_TYPE_TCP) {
557                 int optval = 1;
558
559                 if (setsockopt(f->fd, IPPROTO_TCP, TCP_NODELAY, (void *) &optval, sizeof(int)) < 0) {
560                         log_err("fio: cannot set TCP_NODELAY option on socket (%s), disable with 'nodelay=0'\n", strerror(errno));
561                         return 1;
562                 }
563         }
564 #endif
565
566         reset_all_stats(td);
567         td_set_runstate(td, state);
568         return 0;
569 err:
570         td_set_runstate(td, state);
571         return 1;
572 }
573
574 static void fio_netio_udp_close(struct thread_data *td, struct fio_file *f)
575 {
576         struct netio_data *nd = td->io_ops->data;
577         struct udp_close_msg msg;
578         struct sockaddr *to = (struct sockaddr *) &nd->addr;
579         int ret;
580
581         msg.magic = htonl(FIO_LINK_OPEN_CLOSE_MAGIC);
582         msg.cmd = htonl(FIO_LINK_CLOSE);
583
584         ret = sendto(f->fd, (void *) &msg, sizeof(msg), MSG_WAITALL, to,
585                         sizeof(nd->addr));
586         if (ret < 0)
587                 td_verror(td, errno, "sendto udp link close");
588 }
589
590 static int fio_netio_close_file(struct thread_data *td, struct fio_file *f)
591 {
592         struct netio_options *o = td->eo;
593
594         /*
595          * If this is an UDP connection, notify the receiver that we are
596          * closing down the link
597          */
598         if (o->proto == FIO_TYPE_UDP)
599                 fio_netio_udp_close(td, f);
600
601         return generic_close_file(td, f);
602 }
603
604 static int fio_netio_udp_recv_open(struct thread_data *td, struct fio_file *f)
605 {
606         struct netio_data *nd = td->io_ops->data;
607         struct udp_close_msg msg;
608         struct sockaddr *to = (struct sockaddr *) &nd->addr;
609         socklen_t len = sizeof(nd->addr);
610         int ret;
611
612         ret = recvfrom(f->fd, (void *) &msg, sizeof(msg), MSG_WAITALL, to, &len);
613         if (ret < 0) {
614                 td_verror(td, errno, "sendto udp link open");
615                 return ret;
616         }
617
618         if (ntohl(msg.magic) != FIO_LINK_OPEN_CLOSE_MAGIC ||
619             ntohl(msg.cmd) != FIO_LINK_OPEN) {
620                 log_err("fio: bad udp open magic %x/%x\n", ntohl(msg.magic),
621                                                                 ntohl(msg.cmd));
622                 return -1;
623         }
624
625         return 0;
626 }
627
628 static int fio_netio_udp_send_open(struct thread_data *td, struct fio_file *f)
629 {
630         struct netio_data *nd = td->io_ops->data;
631         struct udp_close_msg msg;
632         struct sockaddr *to = (struct sockaddr *) &nd->addr;
633         int ret;
634
635         msg.magic = htonl(FIO_LINK_OPEN_CLOSE_MAGIC);
636         msg.cmd = htonl(FIO_LINK_OPEN);
637
638         ret = sendto(f->fd, (void *) &msg, sizeof(msg), MSG_WAITALL, to,
639                         sizeof(nd->addr));
640         if (ret < 0) {
641                 td_verror(td, errno, "sendto udp link open");
642                 return ret;
643         }
644
645         return 0;
646 }
647
648 static int fio_netio_open_file(struct thread_data *td, struct fio_file *f)
649 {
650         int ret;
651         struct netio_options *o = td->eo;
652
653         if (o->listen)
654                 ret = fio_netio_accept(td, f);
655         else
656                 ret = fio_netio_connect(td, f);
657
658         if (ret) {
659                 f->fd = -1;
660                 return ret;
661         }
662
663         if (o->proto == FIO_TYPE_UDP) {
664                 if (td_write(td))
665                         ret = fio_netio_udp_send_open(td, f);
666                 else {
667                         int state;
668
669                         state = td->runstate;
670                         td_set_runstate(td, TD_SETTING_UP);
671                         ret = fio_netio_udp_recv_open(td, f);
672                         td_set_runstate(td, state);
673                 }
674         }
675
676         if (ret)
677                 fio_netio_close_file(td, f);
678
679         return ret;
680 }
681
682 static int fio_netio_setup_connect_inet(struct thread_data *td,
683                                         const char *host, unsigned short port)
684 {
685         struct netio_data *nd = td->io_ops->data;
686
687         if (!host) {
688                 log_err("fio: connect with no host to connect to.\n");
689                 if (td_read(td))
690                         log_err("fio: did you forget to set 'listen'?\n");
691
692                 td_verror(td, EINVAL, "no hostname= set");
693                 return 1;
694         }
695
696         nd->addr.sin_family = AF_INET;
697         nd->addr.sin_port = htons(port);
698
699         if (inet_aton(host, &nd->addr.sin_addr) != 1) {
700                 struct hostent *hent;
701
702                 hent = gethostbyname(host);
703                 if (!hent) {
704                         td_verror(td, errno, "gethostbyname");
705                         return 1;
706                 }
707
708                 memcpy(&nd->addr.sin_addr, hent->h_addr, 4);
709         }
710
711         return 0;
712 }
713
714 static int fio_netio_setup_connect_unix(struct thread_data *td,
715                                         const char *path)
716 {
717         struct netio_data *nd = td->io_ops->data;
718         struct sockaddr_un *soun = &nd->addr_un;
719
720         soun->sun_family = AF_UNIX;
721         strcpy(soun->sun_path, path);
722         return 0;
723 }
724
725 static int fio_netio_setup_connect(struct thread_data *td)
726 {
727         struct netio_options *o = td->eo;
728
729         if (o->proto == FIO_TYPE_UDP || o->proto == FIO_TYPE_TCP)
730                 return fio_netio_setup_connect_inet(td, td->o.filename,o->port);
731         else
732                 return fio_netio_setup_connect_unix(td, td->o.filename);
733 }
734
735 static int fio_netio_setup_listen_unix(struct thread_data *td, const char *path)
736 {
737         struct netio_data *nd = td->io_ops->data;
738         struct sockaddr_un *addr = &nd->addr_un;
739         mode_t mode;
740         int len, fd;
741
742         fd = socket(AF_UNIX, SOCK_STREAM, 0);
743         if (fd < 0) {
744                 log_err("fio: socket: %s\n", strerror(errno));
745                 return -1;
746         }
747
748         mode = umask(000);
749
750         memset(addr, 0, sizeof(*addr));
751         addr->sun_family = AF_UNIX;
752         strcpy(addr->sun_path, path);
753         unlink(path);
754
755         len = sizeof(addr->sun_family) + strlen(path) + 1;
756
757         if (bind(fd, (struct sockaddr *) addr, len) < 0) {
758                 log_err("fio: bind: %s\n", strerror(errno));
759                 close(fd);
760                 return -1;
761         }
762
763         umask(mode);
764         nd->listenfd = fd;
765         return 0;
766 }
767
768 static int fio_netio_setup_listen_inet(struct thread_data *td, short port)
769 {
770         struct netio_data *nd = td->io_ops->data;
771         struct netio_options *o = td->eo;
772         int fd, opt, type;
773
774         if (o->proto == FIO_TYPE_TCP)
775                 type = SOCK_STREAM;
776         else
777                 type = SOCK_DGRAM;
778
779         fd = socket(AF_INET, type, 0);
780         if (fd < 0) {
781                 td_verror(td, errno, "socket");
782                 return 1;
783         }
784
785         opt = 1;
786         if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, (void *) &opt, sizeof(opt)) < 0) {
787                 td_verror(td, errno, "setsockopt");
788                 return 1;
789         }
790 #ifdef SO_REUSEPORT
791         if (setsockopt(fd, SOL_SOCKET, SO_REUSEPORT, (void *) &opt, sizeof(opt)) < 0) {
792                 td_verror(td, errno, "setsockopt");
793                 return 1;
794         }
795 #endif
796
797         nd->addr.sin_family = AF_INET;
798         nd->addr.sin_addr.s_addr = htonl(INADDR_ANY);
799         nd->addr.sin_port = htons(port);
800
801         if (bind(fd, (struct sockaddr *) &nd->addr, sizeof(nd->addr)) < 0) {
802                 td_verror(td, errno, "bind");
803                 return 1;
804         }
805
806         nd->listenfd = fd;
807         return 0;
808 }
809
810 static int fio_netio_setup_listen(struct thread_data *td)
811 {
812         struct netio_data *nd = td->io_ops->data;
813         struct netio_options *o = td->eo;
814         int ret;
815
816         if (o->proto == FIO_TYPE_UDP || o->proto == FIO_TYPE_TCP)
817                 ret = fio_netio_setup_listen_inet(td, o->port);
818         else
819                 ret = fio_netio_setup_listen_unix(td, td->o.filename);
820
821         if (ret)
822                 return ret;
823         if (o->proto == FIO_TYPE_UDP)
824                 return 0;
825
826         if (listen(nd->listenfd, 10) < 0) {
827                 td_verror(td, errno, "listen");
828                 nd->listenfd = -1;
829                 return 1;
830         }
831
832         return 0;
833 }
834
835 static int fio_netio_init(struct thread_data *td)
836 {
837         struct netio_options *o = td->eo;
838         int ret;
839
840 #ifdef WIN32
841         WSADATA wsd;
842         WSAStartup(MAKEWORD(2,2), &wsd);
843 #endif
844
845         if (td_random(td)) {
846                 log_err("fio: network IO can't be random\n");
847                 return 1;
848         }
849
850         if (o->proto == FIO_TYPE_UNIX && o->port) {
851                 log_err("fio: network IO port not valid with unix socket\n");
852                 return 1;
853         } else if (o->proto != FIO_TYPE_UNIX && !o->port) {
854                 log_err("fio: network IO requires port for tcp or udp\n");
855                 return 1;
856         }
857
858         if (o->proto != FIO_TYPE_TCP) {
859                 if (o->listen) {
860                         log_err("fio: listen only valid for TCP proto IO\n");
861                         return 1;
862                 }
863                 if (td_rw(td)) {
864                         log_err("fio: datagram network connections must be"
865                                    " read OR write\n");
866                         return 1;
867                 }
868                 if (o->proto == FIO_TYPE_UNIX && !td->o.filename) {
869                         log_err("fio: UNIX sockets need host/filename\n");
870                         return 1;
871                 }
872                 o->listen = td_read(td);
873         }
874
875         if (o->proto != FIO_TYPE_UNIX && o->listen && td->o.filename) {
876                 log_err("fio: hostname not valid for inbound network IO\n");
877                 return 1;
878         }
879
880         if (o->listen)
881                 ret = fio_netio_setup_listen(td);
882         else
883                 ret = fio_netio_setup_connect(td);
884
885         return ret;
886 }
887
888 static void fio_netio_cleanup(struct thread_data *td)
889 {
890         struct netio_data *nd = td->io_ops->data;
891
892         if (nd) {
893                 if (nd->listenfd != -1)
894                         close(nd->listenfd);
895                 if (nd->pipes[0] != -1)
896                         close(nd->pipes[0]);
897                 if (nd->pipes[1] != -1)
898                         close(nd->pipes[1]);
899
900                 free(nd);
901         }
902 }
903
904 static int fio_netio_setup(struct thread_data *td)
905 {
906         struct netio_data *nd;
907
908         if (!td->files_index) {
909                 add_file(td, td->o.filename ?: "net");
910                 td->o.nr_files = td->o.nr_files ?: 1;
911         }
912
913         if (!td->io_ops->data) {
914                 nd = malloc(sizeof(*nd));;
915
916                 memset(nd, 0, sizeof(*nd));
917                 nd->listenfd = -1;
918                 nd->pipes[0] = nd->pipes[1] = -1;
919                 td->io_ops->data = nd;
920         }
921
922         return 0;
923 }
924
925 static void fio_netio_terminate(struct thread_data *td)
926 {
927         kill(td->pid, SIGUSR2);
928 }
929
930 #ifdef CONFIG_LINUX_SPLICE
931 static int fio_netio_setup_splice(struct thread_data *td)
932 {
933         struct netio_data *nd;
934
935         fio_netio_setup(td);
936
937         nd = td->io_ops->data;
938         if (nd) {
939                 if (pipe(nd->pipes) < 0)
940                         return 1;
941
942                 nd->use_splice = 1;
943                 return 0;
944         }
945
946         return 1;
947 }
948
949 static struct ioengine_ops ioengine_splice = {
950         .name                   = "netsplice",
951         .version                = FIO_IOOPS_VERSION,
952         .prep                   = fio_netio_prep,
953         .queue                  = fio_netio_queue,
954         .setup                  = fio_netio_setup_splice,
955         .init                   = fio_netio_init,
956         .cleanup                = fio_netio_cleanup,
957         .open_file              = fio_netio_open_file,
958         .close_file             = fio_netio_close_file,
959         .terminate              = fio_netio_terminate,
960         .options                = options,
961         .option_struct_size     = sizeof(struct netio_options),
962         .flags                  = FIO_SYNCIO | FIO_DISKLESSIO | FIO_UNIDIR |
963                                   FIO_PIPEIO,
964 };
965 #endif
966
967 static struct ioengine_ops ioengine_rw = {
968         .name                   = "net",
969         .version                = FIO_IOOPS_VERSION,
970         .prep                   = fio_netio_prep,
971         .queue                  = fio_netio_queue,
972         .setup                  = fio_netio_setup,
973         .init                   = fio_netio_init,
974         .cleanup                = fio_netio_cleanup,
975         .open_file              = fio_netio_open_file,
976         .close_file             = fio_netio_close_file,
977         .terminate              = fio_netio_terminate,
978         .options                = options,
979         .option_struct_size     = sizeof(struct netio_options),
980         .flags                  = FIO_SYNCIO | FIO_DISKLESSIO | FIO_UNIDIR |
981                                   FIO_PIPEIO | FIO_BIT_BASED,
982 };
983
984 static int str_hostname_cb(void *data, const char *input)
985 {
986         struct netio_options *o = data;
987
988         if (o->td->o.filename)
989                 free(o->td->o.filename);
990         o->td->o.filename = strdup(input);
991         return 0;
992 }
993
994 static void fio_init fio_netio_register(void)
995 {
996         register_ioengine(&ioengine_rw);
997 #ifdef CONFIG_LINUX_SPLICE
998         register_ioengine(&ioengine_splice);
999 #endif
1000 }
1001
1002 static void fio_exit fio_netio_unregister(void)
1003 {
1004         unregister_ioengine(&ioengine_rw);
1005 #ifdef CONFIG_LINUX_SPLICE
1006         unregister_ioengine(&ioengine_splice);
1007 #endif
1008 }