blob: 7a0fe696c1b81c7ff0dba9539387a0f16c5d7bdb [file] [log] [blame]
Jens Axboeed92ac02007-02-06 14:43:52 +01001/*
Jens Axboeda751ca2007-03-14 10:59:33 +01002 * net engine
3 *
4 * IO engine that reads/writes to/from sockets.
5 *
Jens Axboeed92ac02007-02-06 14:43:52 +01006 */
7#include <stdio.h>
8#include <stdlib.h>
9#include <unistd.h>
Steven Noonan842805f2012-12-01 08:16:55 +000010#include <signal.h>
Jens Axboeed92ac02007-02-06 14:43:52 +010011#include <errno.h>
12#include <assert.h>
13#include <netinet/in.h>
Steven Noonan70a78782012-11-28 14:52:36 -080014#include <netinet/tcp.h>
Jens Axboeed92ac02007-02-06 14:43:52 +010015#include <arpa/inet.h>
16#include <netdb.h>
Jens Axboe5fdd1242007-02-11 04:00:37 +010017#include <sys/poll.h>
Jens Axboe72920562008-06-02 12:30:06 +020018#include <sys/types.h>
Jens Axboe0fd666b2011-10-06 20:08:53 +020019#include <sys/stat.h>
Jens Axboe72920562008-06-02 12:30:06 +020020#include <sys/socket.h>
Jens Axboe0fd666b2011-10-06 20:08:53 +020021#include <sys/un.h>
Jens Axboeed92ac02007-02-06 14:43:52 +010022
23#include "../fio.h"
Jens Axboeda91d752014-10-09 13:10:14 -060024#include "../verify.h"
Jens Axboeed92ac02007-02-06 14:43:52 +010025
Jens Axboeb5af8292007-03-08 12:43:13 +010026struct netio_data {
27 int listenfd;
Jens Axboe9cce02e2007-06-22 15:42:21 +020028 int use_splice;
Jens Axboe97909a12014-10-09 13:38:06 -060029 int seq_off;
Jens Axboe9cce02e2007-06-22 15:42:21 +020030 int pipes[2];
Jens Axboeb5af8292007-03-08 12:43:13 +010031 struct sockaddr_in addr;
Jens Axboe49ccb8c2014-01-23 16:49:37 -080032 struct sockaddr_in6 addr6;
Jens Axboe0fd666b2011-10-06 20:08:53 +020033 struct sockaddr_un addr_un;
Jens Axboeda91d752014-10-09 13:10:14 -060034 uint64_t udp_send_seq;
35 uint64_t udp_recv_seq;
Jens Axboeb5af8292007-03-08 12:43:13 +010036};
Jens Axboeed92ac02007-02-06 14:43:52 +010037
Steven Langde890a12011-11-09 14:03:34 +010038struct netio_options {
39 struct thread_data *td;
40 unsigned int port;
41 unsigned int proto;
42 unsigned int listen;
Jens Axboe6f73a7f2012-11-30 09:59:20 +010043 unsigned int pingpong;
Steven Noonan70a78782012-11-28 14:52:36 -080044 unsigned int nodelay;
Shawn Bohrerd3a623d2013-07-19 13:24:08 -050045 unsigned int ttl;
Jens Axboe531e67a2014-10-09 11:55:16 -060046 unsigned int window_size;
Jens Axboe5e34cea2014-10-09 12:05:44 -060047 unsigned int mss;
Bruce Cranf16b7402013-10-08 15:05:27 +010048 char *intfc;
Steven Langde890a12011-11-09 14:03:34 +010049};
50
Jens Axboe664fb3b2009-01-19 13:26:36 +010051struct udp_close_msg {
52 uint32_t magic;
53 uint32_t cmd;
54};
55
Jens Axboeda91d752014-10-09 13:10:14 -060056struct udp_seq {
57 uint64_t magic;
58 uint64_t seq;
Jens Axboe97909a12014-10-09 13:38:06 -060059 uint64_t bs;
Jens Axboeda91d752014-10-09 13:10:14 -060060};
61
Jens Axboe664fb3b2009-01-19 13:26:36 +010062enum {
63 FIO_LINK_CLOSE = 0x89,
Jens Axboeb96d2432012-11-30 08:27:46 +010064 FIO_LINK_OPEN_CLOSE_MAGIC = 0x6c696e6b,
65 FIO_LINK_OPEN = 0x98,
Jens Axboeda91d752014-10-09 13:10:14 -060066 FIO_UDP_SEQ_MAGIC = 0x657375716e556563ULL,
Jens Axboe0fd666b2011-10-06 20:08:53 +020067
68 FIO_TYPE_TCP = 1,
69 FIO_TYPE_UDP = 2,
70 FIO_TYPE_UNIX = 3,
Jens Axboe49ccb8c2014-01-23 16:49:37 -080071 FIO_TYPE_TCP_V6 = 4,
72 FIO_TYPE_UDP_V6 = 5,
Jens Axboe664fb3b2009-01-19 13:26:36 +010073};
74
Steven Langde890a12011-11-09 14:03:34 +010075static int str_hostname_cb(void *data, const char *input);
76static struct fio_option options[] = {
77 {
78 .name = "hostname",
Jens Axboee8b0e952012-03-19 14:37:08 +010079 .lname = "net engine hostname",
Steven Langde890a12011-11-09 14:03:34 +010080 .type = FIO_OPT_STR_STORE,
81 .cb = str_hostname_cb,
82 .help = "Hostname for net IO engine",
Jens Axboee90a0ad2013-04-10 19:43:59 +020083 .category = FIO_OPT_C_ENGINE,
84 .group = FIO_OPT_G_NETIO,
Steven Langde890a12011-11-09 14:03:34 +010085 },
86 {
87 .name = "port",
Jens Axboee8b0e952012-03-19 14:37:08 +010088 .lname = "net engine port",
Steven Langde890a12011-11-09 14:03:34 +010089 .type = FIO_OPT_INT,
90 .off1 = offsetof(struct netio_options, port),
91 .minval = 1,
92 .maxval = 65535,
93 .help = "Port to use for TCP or UDP net connections",
Jens Axboee90a0ad2013-04-10 19:43:59 +020094 .category = FIO_OPT_C_ENGINE,
95 .group = FIO_OPT_G_NETIO,
Steven Langde890a12011-11-09 14:03:34 +010096 },
97 {
98 .name = "protocol",
Jens Axboee8b0e952012-03-19 14:37:08 +010099 .lname = "net engine protocol",
Steven Langde890a12011-11-09 14:03:34 +0100100 .alias = "proto",
101 .type = FIO_OPT_STR,
102 .off1 = offsetof(struct netio_options, proto),
103 .help = "Network protocol to use",
104 .def = "tcp",
105 .posval = {
106 { .ival = "tcp",
107 .oval = FIO_TYPE_TCP,
108 .help = "Transmission Control Protocol",
109 },
Jens Axboeeb232312014-01-24 18:59:15 -0800110#ifdef CONFIG_IPV6
Jens Axboe49ccb8c2014-01-23 16:49:37 -0800111 { .ival = "tcpv6",
112 .oval = FIO_TYPE_TCP_V6,
113 .help = "Transmission Control Protocol V6",
114 },
Jens Axboeeb232312014-01-24 18:59:15 -0800115#endif
Steven Langde890a12011-11-09 14:03:34 +0100116 { .ival = "udp",
117 .oval = FIO_TYPE_UDP,
Bruce Cranf5cc3d02012-10-10 08:17:44 -0600118 .help = "User Datagram Protocol",
Steven Langde890a12011-11-09 14:03:34 +0100119 },
Jens Axboeeb232312014-01-24 18:59:15 -0800120#ifdef CONFIG_IPV6
Jens Axboe49ccb8c2014-01-23 16:49:37 -0800121 { .ival = "udpv6",
122 .oval = FIO_TYPE_UDP_V6,
123 .help = "User Datagram Protocol V6",
124 },
Jens Axboeeb232312014-01-24 18:59:15 -0800125#endif
Steven Langde890a12011-11-09 14:03:34 +0100126 { .ival = "unix",
127 .oval = FIO_TYPE_UNIX,
128 .help = "UNIX domain socket",
129 },
130 },
Jens Axboee90a0ad2013-04-10 19:43:59 +0200131 .category = FIO_OPT_C_ENGINE,
132 .group = FIO_OPT_G_NETIO,
Steven Langde890a12011-11-09 14:03:34 +0100133 },
Jens Axboe1eafa372013-01-31 10:19:51 +0100134#ifdef CONFIG_TCP_NODELAY
Steven Langde890a12011-11-09 14:03:34 +0100135 {
Steven Noonan70a78782012-11-28 14:52:36 -0800136 .name = "nodelay",
137 .type = FIO_OPT_BOOL,
138 .off1 = offsetof(struct netio_options, nodelay),
139 .help = "Use TCP_NODELAY on TCP connections",
Jens Axboee90a0ad2013-04-10 19:43:59 +0200140 .category = FIO_OPT_C_ENGINE,
141 .group = FIO_OPT_G_NETIO,
Steven Noonan70a78782012-11-28 14:52:36 -0800142 },
Jens Axboe1eafa372013-01-31 10:19:51 +0100143#endif
Steven Langde890a12011-11-09 14:03:34 +0100144 {
145 .name = "listen",
Jens Axboee8b0e952012-03-19 14:37:08 +0100146 .lname = "net engine listen",
Steven Langde890a12011-11-09 14:03:34 +0100147 .type = FIO_OPT_STR_SET,
148 .off1 = offsetof(struct netio_options, listen),
149 .help = "Listen for incoming TCP connections",
Jens Axboee90a0ad2013-04-10 19:43:59 +0200150 .category = FIO_OPT_C_ENGINE,
151 .group = FIO_OPT_G_NETIO,
Steven Langde890a12011-11-09 14:03:34 +0100152 },
153 {
Jens Axboe6f73a7f2012-11-30 09:59:20 +0100154 .name = "pingpong",
155 .type = FIO_OPT_STR_SET,
156 .off1 = offsetof(struct netio_options, pingpong),
157 .help = "Ping-pong IO requests",
Jens Axboee90a0ad2013-04-10 19:43:59 +0200158 .category = FIO_OPT_C_ENGINE,
159 .group = FIO_OPT_G_NETIO,
Jens Axboe6f73a7f2012-11-30 09:59:20 +0100160 },
161 {
Shawn Bohrerb93b6a22013-07-19 13:24:07 -0500162 .name = "interface",
163 .lname = "net engine interface",
164 .type = FIO_OPT_STR_STORE,
Bruce Cranf16b7402013-10-08 15:05:27 +0100165 .off1 = offsetof(struct netio_options, intfc),
Shawn Bohrerb93b6a22013-07-19 13:24:07 -0500166 .help = "Network interface to use",
167 .category = FIO_OPT_C_ENGINE,
168 .group = FIO_OPT_G_NETIO,
169 },
170 {
Shawn Bohrerd3a623d2013-07-19 13:24:08 -0500171 .name = "ttl",
172 .lname = "net engine multicast ttl",
173 .type = FIO_OPT_INT,
174 .off1 = offsetof(struct netio_options, ttl),
175 .def = "1",
176 .minval = 0,
177 .help = "Time-to-live value for outgoing UDP multicast packets",
178 .category = FIO_OPT_C_ENGINE,
179 .group = FIO_OPT_G_NETIO,
180 },
Jens Axboe531e67a2014-10-09 11:55:16 -0600181#ifdef CONFIG_NET_WINDOWSIZE
182 {
183 .name = "window_size",
184 .lname = "Window Size",
185 .type = FIO_OPT_INT,
186 .off1 = offsetof(struct netio_options, window_size),
187 .minval = 0,
188 .help = "Set socket buffer window size",
189 .category = FIO_OPT_C_ENGINE,
190 .group = FIO_OPT_G_NETIO,
191 },
192#endif
Jens Axboe5e34cea2014-10-09 12:05:44 -0600193#ifdef CONFIG_NET_MSS
194 {
195 .name = "mss",
196 .lname = "Maximum segment size",
197 .type = FIO_OPT_INT,
198 .off1 = offsetof(struct netio_options, mss),
199 .minval = 0,
200 .help = "Set TCP maximum segment size",
201 .category = FIO_OPT_C_ENGINE,
202 .group = FIO_OPT_G_NETIO,
203 },
204#endif
Shawn Bohrerd3a623d2013-07-19 13:24:08 -0500205 {
Steven Langde890a12011-11-09 14:03:34 +0100206 .name = NULL,
207 },
208};
209
Jens Axboe49ccb8c2014-01-23 16:49:37 -0800210static inline int is_udp(struct netio_options *o)
211{
212 return o->proto == FIO_TYPE_UDP || o->proto == FIO_TYPE_UDP_V6;
213}
214
215static inline int is_tcp(struct netio_options *o)
216{
217 return o->proto == FIO_TYPE_TCP || o->proto == FIO_TYPE_TCP_V6;
218}
219
220static inline int is_ipv6(struct netio_options *o)
221{
222 return o->proto == FIO_TYPE_UDP_V6 || o->proto == FIO_TYPE_TCP_V6;
223}
224
Jens Axboe531e67a2014-10-09 11:55:16 -0600225static int set_window_size(struct thread_data *td, int fd)
226{
227#ifdef CONFIG_NET_WINDOWSIZE
228 struct netio_options *o = td->eo;
229 unsigned int wss;
230 int snd, rcv, ret;
231
232 if (!o->window_size)
233 return 0;
234
235 rcv = o->listen || o->pingpong;
236 snd = !o->listen || o->pingpong;
237 wss = o->window_size;
238 ret = 0;
239
240 if (rcv) {
241 ret = setsockopt(fd, SOL_SOCKET, SO_RCVBUF, (void *) &wss,
242 sizeof(wss));
243 if (ret < 0)
244 td_verror(td, errno, "rcvbuf window size");
245 }
246 if (snd && !ret) {
247 ret = setsockopt(fd, SOL_SOCKET, SO_SNDBUF, (void *) &wss,
248 sizeof(wss));
249 if (ret < 0)
250 td_verror(td, errno, "sndbuf window size");
251 }
252
253 return ret;
254#else
255 td_verror(td, -EINVAL, "setsockopt window size");
256 return -1;
257#endif
258}
259
Jens Axboe5e34cea2014-10-09 12:05:44 -0600260static int set_mss(struct thread_data *td, int fd)
261{
262#ifdef CONFIG_NET_MSS
263 struct netio_options *o = td->eo;
264 unsigned int mss;
265 int ret;
266
267 if (!o->mss || !is_tcp(o))
268 return 0;
269
270 mss = o->mss;
271 ret = setsockopt(fd, IPPROTO_TCP, TCP_MAXSEG, (void *) &mss,
272 sizeof(mss));
273 if (ret < 0)
274 td_verror(td, errno, "setsockopt TCP_MAXSEG");
275
276 return ret;
277#else
278 td_verror(td, -EINVAL, "setsockopt TCP_MAXSEG");
279 return -1;
280#endif
281}
282
283
Jens Axboe371d4562009-01-19 10:17:06 +0100284/*
285 * Return -1 for error and 'nr events' for a positive number
286 * of events
287 */
288static int poll_wait(struct thread_data *td, int fd, short events)
289{
290 struct pollfd pfd;
291 int ret;
292
293 while (!td->terminate) {
294 pfd.fd = fd;
295 pfd.events = events;
296 ret = poll(&pfd, 1, -1);
297 if (ret < 0) {
298 if (errno == EINTR)
Jens Axboed5b388a2009-01-19 12:38:27 +0100299 break;
Jens Axboe371d4562009-01-19 10:17:06 +0100300
301 td_verror(td, errno, "poll");
302 return -1;
303 } else if (!ret)
304 continue;
305
306 break;
307 }
308
309 if (pfd.revents & events)
310 return 1;
Jens Axboe371d4562009-01-19 10:17:06 +0100311
312 return -1;
313}
314
Shawn Bohrerb511c9a2013-07-19 13:24:06 -0500315static int fio_netio_is_multicast(const char *mcaddr)
316{
317 in_addr_t addr = inet_network(mcaddr);
318 if (addr == -1)
319 return 0;
320
321 if (inet_network("224.0.0.0") <= addr &&
322 inet_network("239.255.255.255") >= addr)
323 return 1;
324
325 return 0;
326}
327
328
Jens Axboeed92ac02007-02-06 14:43:52 +0100329static int fio_netio_prep(struct thread_data *td, struct io_u *io_u)
330{
Steven Langde890a12011-11-09 14:03:34 +0100331 struct netio_options *o = td->eo;
Jens Axboeed92ac02007-02-06 14:43:52 +0100332
Jens Axboe7a6499d2007-02-07 09:35:29 +0100333 /*
334 * Make sure we don't see spurious reads to a receiver, and vice versa
335 */
Jens Axboe49ccb8c2014-01-23 16:49:37 -0800336 if (is_tcp(o))
Steven Langde890a12011-11-09 14:03:34 +0100337 return 0;
338
339 if ((o->listen && io_u->ddir == DDIR_WRITE) ||
340 (!o->listen && io_u->ddir == DDIR_READ)) {
Jens Axboee1161c32007-02-22 19:36:48 +0100341 td_verror(td, EINVAL, "bad direction");
Jens Axboe7a6499d2007-02-07 09:35:29 +0100342 return 1;
Jens Axboeed92ac02007-02-06 14:43:52 +0100343 }
Bruce Cran3f457be2012-10-10 13:37:41 +0100344
Jens Axboef85ac252008-03-01 18:09:49 +0100345 return 0;
Jens Axboeed92ac02007-02-06 14:43:52 +0100346}
347
Jens Axboe67bf9822013-01-10 11:23:19 +0100348#ifdef CONFIG_LINUX_SPLICE
Jens Axboecd963e12007-06-24 21:41:46 +0200349static int splice_io_u(int fdin, int fdout, unsigned int len)
Jens Axboe9cce02e2007-06-22 15:42:21 +0200350{
Jens Axboe9cce02e2007-06-22 15:42:21 +0200351 int bytes = 0;
352
353 while (len) {
Jens Axboecd963e12007-06-24 21:41:46 +0200354 int ret = splice(fdin, NULL, fdout, NULL, len, 0);
Jens Axboe9cce02e2007-06-22 15:42:21 +0200355
356 if (ret < 0) {
357 if (!bytes)
358 bytes = ret;
359
360 break;
361 } else if (!ret)
362 break;
363
364 bytes += ret;
Jens Axboef657a2f2007-06-22 20:40:10 +0200365 len -= ret;
Jens Axboe9cce02e2007-06-22 15:42:21 +0200366 }
367
368 return bytes;
369}
370
371/*
Jens Axboecd963e12007-06-24 21:41:46 +0200372 * Receive bytes from a socket and fill them into the internal pipe
373 */
374static int splice_in(struct thread_data *td, struct io_u *io_u)
375{
376 struct netio_data *nd = td->io_ops->data;
377
378 return splice_io_u(io_u->file->fd, nd->pipes[1], io_u->xfer_buflen);
379}
380
381/*
Jens Axboe9cce02e2007-06-22 15:42:21 +0200382 * Transmit 'len' bytes from the internal pipe
383 */
384static int splice_out(struct thread_data *td, struct io_u *io_u,
385 unsigned int len)
386{
387 struct netio_data *nd = td->io_ops->data;
Jens Axboecd963e12007-06-24 21:41:46 +0200388
389 return splice_io_u(nd->pipes[0], io_u->file->fd, len);
390}
391
392static int vmsplice_io_u(struct io_u *io_u, int fd, unsigned int len)
393{
394 struct iovec iov = {
395 .iov_base = io_u->xfer_buf,
396 .iov_len = len,
397 };
Jens Axboe9cce02e2007-06-22 15:42:21 +0200398 int bytes = 0;
399
Jens Axboecd963e12007-06-24 21:41:46 +0200400 while (iov.iov_len) {
401 int ret = vmsplice(fd, &iov, 1, SPLICE_F_MOVE);
Jens Axboe9cce02e2007-06-22 15:42:21 +0200402
403 if (ret < 0) {
404 if (!bytes)
405 bytes = ret;
Jens Axboe9cce02e2007-06-22 15:42:21 +0200406 break;
407 } else if (!ret)
408 break;
409
Jens Axboecd963e12007-06-24 21:41:46 +0200410 iov.iov_len -= ret;
411 iov.iov_base += ret;
Jens Axboe9cce02e2007-06-22 15:42:21 +0200412 bytes += ret;
Jens Axboe9cce02e2007-06-22 15:42:21 +0200413 }
414
415 return bytes;
Jens Axboecd963e12007-06-24 21:41:46 +0200416
Jens Axboe9cce02e2007-06-22 15:42:21 +0200417}
418
419/*
420 * vmsplice() pipe to io_u buffer
421 */
422static int vmsplice_io_u_out(struct thread_data *td, struct io_u *io_u,
423 unsigned int len)
424{
425 struct netio_data *nd = td->io_ops->data;
Jens Axboe9cce02e2007-06-22 15:42:21 +0200426
Jens Axboecd963e12007-06-24 21:41:46 +0200427 return vmsplice_io_u(io_u, nd->pipes[0], len);
Jens Axboe9cce02e2007-06-22 15:42:21 +0200428}
429
430/*
431 * vmsplice() io_u to pipe
432 */
433static int vmsplice_io_u_in(struct thread_data *td, struct io_u *io_u)
434{
435 struct netio_data *nd = td->io_ops->data;
Jens Axboe9cce02e2007-06-22 15:42:21 +0200436
Jens Axboecd963e12007-06-24 21:41:46 +0200437 return vmsplice_io_u(io_u, nd->pipes[1], io_u->xfer_buflen);
Jens Axboe9cce02e2007-06-22 15:42:21 +0200438}
439
Jens Axboecd963e12007-06-24 21:41:46 +0200440/*
441 * splice receive - transfer socket data into a pipe using splice, then map
442 * that pipe data into the io_u using vmsplice.
443 */
Jens Axboe9cce02e2007-06-22 15:42:21 +0200444static int fio_netio_splice_in(struct thread_data *td, struct io_u *io_u)
445{
446 int ret;
447
448 ret = splice_in(td, io_u);
Jens Axboecd963e12007-06-24 21:41:46 +0200449 if (ret > 0)
450 return vmsplice_io_u_out(td, io_u, ret);
Jens Axboe9cce02e2007-06-22 15:42:21 +0200451
Jens Axboecd963e12007-06-24 21:41:46 +0200452 return ret;
Jens Axboe9cce02e2007-06-22 15:42:21 +0200453}
454
Jens Axboecd963e12007-06-24 21:41:46 +0200455/*
456 * splice transmit - map data from the io_u into a pipe by using vmsplice,
457 * then transfer that pipe to a socket using splice.
458 */
Jens Axboe9cce02e2007-06-22 15:42:21 +0200459static int fio_netio_splice_out(struct thread_data *td, struct io_u *io_u)
460{
461 int ret;
462
463 ret = vmsplice_io_u_in(td, io_u);
Jens Axboecd963e12007-06-24 21:41:46 +0200464 if (ret > 0)
465 return splice_out(td, io_u, ret);
Jens Axboe9cce02e2007-06-22 15:42:21 +0200466
Jens Axboecd963e12007-06-24 21:41:46 +0200467 return ret;
Jens Axboe9cce02e2007-06-22 15:42:21 +0200468}
Jens Axboe5921e802008-05-30 15:02:38 +0200469#else
470static int fio_netio_splice_in(struct thread_data *td, struct io_u *io_u)
471{
Jens Axboeaf8771b2008-05-30 22:58:28 +0200472 errno = EOPNOTSUPP;
Jens Axboe5921e802008-05-30 15:02:38 +0200473 return -1;
474}
475
476static int fio_netio_splice_out(struct thread_data *td, struct io_u *io_u)
477{
Jens Axboeaf8771b2008-05-30 22:58:28 +0200478 errno = EOPNOTSUPP;
Jens Axboe5921e802008-05-30 15:02:38 +0200479 return -1;
480}
481#endif
Jens Axboe9cce02e2007-06-22 15:42:21 +0200482
Jens Axboeda91d752014-10-09 13:10:14 -0600483static void store_udp_seq(struct netio_data *nd, struct io_u *io_u)
484{
485 struct udp_seq *us;
486
487 us = io_u->xfer_buf + io_u->xfer_buflen - sizeof(*us);
Jens Axboe768ae052014-10-15 08:51:43 -0600488 us->magic = cpu_to_le64((uint64_t) FIO_UDP_SEQ_MAGIC);
Jens Axboe97909a12014-10-09 13:38:06 -0600489 us->bs = cpu_to_le64((uint64_t) io_u->xfer_buflen);
Jens Axboeda91d752014-10-09 13:10:14 -0600490 us->seq = cpu_to_le64(nd->udp_send_seq++);
491}
492
Jens Axboe67e149c2014-10-09 13:27:44 -0600493static void verify_udp_seq(struct thread_data *td, struct netio_data *nd,
494 struct io_u *io_u)
Jens Axboeda91d752014-10-09 13:10:14 -0600495{
496 struct udp_seq *us;
497 uint64_t seq;
498
Jens Axboe97909a12014-10-09 13:38:06 -0600499 if (nd->seq_off)
500 return;
501
Jens Axboeda91d752014-10-09 13:10:14 -0600502 us = io_u->xfer_buf + io_u->xfer_buflen - sizeof(*us);
503 if (le64_to_cpu(us->magic) != FIO_UDP_SEQ_MAGIC)
504 return;
Jens Axboe97909a12014-10-09 13:38:06 -0600505 if (le64_to_cpu(us->bs) != io_u->xfer_buflen) {
506 nd->seq_off = 1;
507 return;
508 }
Jens Axboeda91d752014-10-09 13:10:14 -0600509
510 seq = le64_to_cpu(us->seq);
511
512 if (seq != nd->udp_recv_seq)
Jens Axboe67e149c2014-10-09 13:27:44 -0600513 td->ts.drop_io_u[io_u->ddir] += seq - nd->udp_recv_seq;
Jens Axboeda91d752014-10-09 13:10:14 -0600514
515 nd->udp_recv_seq = seq + 1;
516}
517
Jens Axboe9cce02e2007-06-22 15:42:21 +0200518static int fio_netio_send(struct thread_data *td, struct io_u *io_u)
519{
Jens Axboe414c2a32009-01-16 13:21:15 +0100520 struct netio_data *nd = td->io_ops->data;
Steven Langde890a12011-11-09 14:03:34 +0100521 struct netio_options *o = td->eo;
Jens Axboe6f73a7f2012-11-30 09:59:20 +0100522 int ret, flags = 0;
Jens Axboe371d4562009-01-19 10:17:06 +0100523
Jens Axboe664fb3b2009-01-19 13:26:36 +0100524 do {
Jens Axboe49ccb8c2014-01-23 16:49:37 -0800525 if (is_udp(o)) {
Jens Axboe10aa1362014-04-01 21:10:36 -0600526 const struct sockaddr *to;
Jens Axboe49ccb8c2014-01-23 16:49:37 -0800527 socklen_t len;
528
529 if (is_ipv6(o)) {
530 to = (struct sockaddr *) &nd->addr6;
531 len = sizeof(nd->addr6);
532 } else {
533 to = (struct sockaddr *) &nd->addr;
534 len = sizeof(nd->addr);
535 }
Jens Axboe62b38922009-05-11 10:37:33 +0200536
Jens Axboeda91d752014-10-09 13:10:14 -0600537 if (td->o.verify == VERIFY_NONE)
538 store_udp_seq(nd, io_u);
539
Jens Axboe664fb3b2009-01-19 13:26:36 +0100540 ret = sendto(io_u->file->fd, io_u->xfer_buf,
Jens Axboe49ccb8c2014-01-23 16:49:37 -0800541 io_u->xfer_buflen, flags, to, len);
Jens Axboe664fb3b2009-01-19 13:26:36 +0100542 } else {
543 /*
544 * if we are going to write more, set MSG_MORE
545 */
Jens Axboe5921e802008-05-30 15:02:38 +0200546#ifdef MSG_MORE
Jens Axboe6f73a7f2012-11-30 09:59:20 +0100547 if ((td->this_io_bytes[DDIR_WRITE] + io_u->xfer_buflen <
548 td->o.size) && !o->pingpong)
Jens Axboe664fb3b2009-01-19 13:26:36 +0100549 flags |= MSG_MORE;
Jens Axboe5921e802008-05-30 15:02:38 +0200550#endif
Jens Axboe664fb3b2009-01-19 13:26:36 +0100551 ret = send(io_u->file->fd, io_u->xfer_buf,
552 io_u->xfer_buflen, flags);
553 }
554 if (ret > 0)
555 break;
Jens Axboe9cce02e2007-06-22 15:42:21 +0200556
Jens Axboe664fb3b2009-01-19 13:26:36 +0100557 ret = poll_wait(td, io_u->file->fd, POLLOUT);
558 if (ret <= 0)
559 break;
Jens Axboe664fb3b2009-01-19 13:26:36 +0100560 } while (1);
561
562 return ret;
563}
564
Jens Axboe80436e12014-10-09 18:10:11 -0600565static int is_close_msg(struct io_u *io_u, int len)
Jens Axboe664fb3b2009-01-19 13:26:36 +0100566{
567 struct udp_close_msg *msg;
568
569 if (len != sizeof(struct udp_close_msg))
570 return 0;
571
572 msg = io_u->xfer_buf;
Jens Axboe80436e12014-10-09 18:10:11 -0600573 if (le32_to_cpu(msg->magic) != FIO_LINK_OPEN_CLOSE_MAGIC)
Jens Axboe664fb3b2009-01-19 13:26:36 +0100574 return 0;
Jens Axboe80436e12014-10-09 18:10:11 -0600575 if (le32_to_cpu(msg->cmd) != FIO_LINK_CLOSE)
Jens Axboe664fb3b2009-01-19 13:26:36 +0100576 return 0;
577
578 return 1;
Jens Axboe9cce02e2007-06-22 15:42:21 +0200579}
580
Jens Axboe414c2a32009-01-16 13:21:15 +0100581static int fio_netio_recv(struct thread_data *td, struct io_u *io_u)
Jens Axboe9cce02e2007-06-22 15:42:21 +0200582{
Jens Axboe414c2a32009-01-16 13:21:15 +0100583 struct netio_data *nd = td->io_ops->data;
Steven Langde890a12011-11-09 14:03:34 +0100584 struct netio_options *o = td->eo;
Jens Axboe6f73a7f2012-11-30 09:59:20 +0100585 int ret, flags = 0;
Jens Axboe371d4562009-01-19 10:17:06 +0100586
Jens Axboe664fb3b2009-01-19 13:26:36 +0100587 do {
Jens Axboe49ccb8c2014-01-23 16:49:37 -0800588 if (is_udp(o)) {
Shawn Bohrerb511c9a2013-07-19 13:24:06 -0500589 struct sockaddr *from;
Jens Axboe49ccb8c2014-01-23 16:49:37 -0800590 socklen_t l, *len = &l;
Shawn Bohrerb511c9a2013-07-19 13:24:06 -0500591
592 if (o->listen) {
Jens Axboe49ccb8c2014-01-23 16:49:37 -0800593 if (!is_ipv6(o)) {
594 from = (struct sockaddr *) &nd->addr;
595 *len = sizeof(nd->addr);
596 } else {
597 from = (struct sockaddr *) &nd->addr6;
598 *len = sizeof(nd->addr6);
599 }
Shawn Bohrerb511c9a2013-07-19 13:24:06 -0500600 } else {
601 from = NULL;
602 len = NULL;
603 }
Jens Axboe9cce02e2007-06-22 15:42:21 +0200604
Jens Axboe664fb3b2009-01-19 13:26:36 +0100605 ret = recvfrom(io_u->file->fd, io_u->xfer_buf,
Shawn Bohrerb511c9a2013-07-19 13:24:06 -0500606 io_u->xfer_buflen, flags, from, len);
Jens Axboeda91d752014-10-09 13:10:14 -0600607
Jens Axboe80436e12014-10-09 18:10:11 -0600608 if (is_close_msg(io_u, ret)) {
Jens Axboe664fb3b2009-01-19 13:26:36 +0100609 td->done = 1;
610 return 0;
611 }
612 } else {
613 ret = recv(io_u->file->fd, io_u->xfer_buf,
614 io_u->xfer_buflen, flags);
Jens Axboe80436e12014-10-09 18:10:11 -0600615
616 if (is_close_msg(io_u, ret)) {
617 td->done = 1;
618 return 0;
619 }
Jens Axboe664fb3b2009-01-19 13:26:36 +0100620 }
621 if (ret > 0)
622 break;
Jens Axboe7d988f62012-11-29 19:57:35 +0100623 else if (!ret && (flags & MSG_WAITALL))
624 break;
Jens Axboe414c2a32009-01-16 13:21:15 +0100625
Jens Axboe664fb3b2009-01-19 13:26:36 +0100626 ret = poll_wait(td, io_u->file->fd, POLLIN);
627 if (ret <= 0)
628 break;
Jens Axboe664fb3b2009-01-19 13:26:36 +0100629 flags |= MSG_WAITALL;
630 } while (1);
631
Jens Axboeda91d752014-10-09 13:10:14 -0600632 if (is_udp(o) && td->o.verify == VERIFY_NONE)
Jens Axboe67e149c2014-10-09 13:27:44 -0600633 verify_udp_seq(td, nd, io_u);
Jens Axboeda91d752014-10-09 13:10:14 -0600634
Jens Axboe664fb3b2009-01-19 13:26:36 +0100635 return ret;
Jens Axboe9cce02e2007-06-22 15:42:21 +0200636}
637
Jens Axboe6f73a7f2012-11-30 09:59:20 +0100638static int __fio_netio_queue(struct thread_data *td, struct io_u *io_u,
639 enum fio_ddir ddir)
Jens Axboeed92ac02007-02-06 14:43:52 +0100640{
Jens Axboe9cce02e2007-06-22 15:42:21 +0200641 struct netio_data *nd = td->io_ops->data;
Steven Langde890a12011-11-09 14:03:34 +0100642 struct netio_options *o = td->eo;
Jens Axboe9cce02e2007-06-22 15:42:21 +0200643 int ret;
Jens Axboeed92ac02007-02-06 14:43:52 +0100644
Jens Axboe6f73a7f2012-11-30 09:59:20 +0100645 if (ddir == DDIR_WRITE) {
Jens Axboe49ccb8c2014-01-23 16:49:37 -0800646 if (!nd->use_splice || is_udp(o) ||
Steven Langde890a12011-11-09 14:03:34 +0100647 o->proto == FIO_TYPE_UNIX)
Jens Axboe9cce02e2007-06-22 15:42:21 +0200648 ret = fio_netio_send(td, io_u);
Jens Axboe9cce02e2007-06-22 15:42:21 +0200649 else
Jens Axboe414c2a32009-01-16 13:21:15 +0100650 ret = fio_netio_splice_out(td, io_u);
Jens Axboe6f73a7f2012-11-30 09:59:20 +0100651 } else if (ddir == DDIR_READ) {
Jens Axboe49ccb8c2014-01-23 16:49:37 -0800652 if (!nd->use_splice || is_udp(o) ||
Steven Langde890a12011-11-09 14:03:34 +0100653 o->proto == FIO_TYPE_UNIX)
Jens Axboe414c2a32009-01-16 13:21:15 +0100654 ret = fio_netio_recv(td, io_u);
655 else
656 ret = fio_netio_splice_in(td, io_u);
Jens Axboed4f12dd2007-02-08 12:59:02 +0100657 } else
Jens Axboe7a6499d2007-02-07 09:35:29 +0100658 ret = 0; /* must be a SYNC */
Jens Axboeed92ac02007-02-06 14:43:52 +0100659
Jens Axboecec6b552007-02-06 20:15:38 +0100660 if (ret != (int) io_u->xfer_buflen) {
Jens Axboe0ecdd7f2014-10-08 17:04:29 -0600661 if (ret > 0) {
Jens Axboecec6b552007-02-06 20:15:38 +0100662 io_u->resid = io_u->xfer_buflen - ret;
663 io_u->error = 0;
Jens Axboe36167d82007-02-18 05:41:31 +0100664 return FIO_Q_COMPLETED;
Jens Axboe0ecdd7f2014-10-08 17:04:29 -0600665 } else if (!ret)
666 return FIO_Q_BUSY;
667 else {
Jens Axboe414c2a32009-01-16 13:21:15 +0100668 int err = errno;
669
Jens Axboe6f73a7f2012-11-30 09:59:20 +0100670 if (ddir == DDIR_WRITE && err == EMSGSIZE)
Jens Axboe414c2a32009-01-16 13:21:15 +0100671 return FIO_Q_BUSY;
672
673 io_u->error = err;
674 }
Jens Axboeed92ac02007-02-06 14:43:52 +0100675 }
676
Jens Axboe36167d82007-02-18 05:41:31 +0100677 if (io_u->error)
Jens Axboee1161c32007-02-22 19:36:48 +0100678 td_verror(td, io_u->error, "xfer");
Jens Axboeed92ac02007-02-06 14:43:52 +0100679
Jens Axboe36167d82007-02-18 05:41:31 +0100680 return FIO_Q_COMPLETED;
Jens Axboeed92ac02007-02-06 14:43:52 +0100681}
682
Jens Axboe6f73a7f2012-11-30 09:59:20 +0100683static int fio_netio_queue(struct thread_data *td, struct io_u *io_u)
684{
685 struct netio_options *o = td->eo;
686 int ret;
687
688 fio_ro_check(td, io_u);
689
690 ret = __fio_netio_queue(td, io_u, io_u->ddir);
691 if (!o->pingpong || ret != FIO_Q_COMPLETED)
692 return ret;
693
694 /*
695 * For ping-pong mode, receive or send reply as needed
696 */
697 if (td_read(td) && io_u->ddir == DDIR_READ)
698 ret = __fio_netio_queue(td, io_u, DDIR_WRITE);
699 else if (td_write(td) && io_u->ddir == DDIR_WRITE)
700 ret = __fio_netio_queue(td, io_u, DDIR_READ);
701
702 return ret;
703}
704
Jens Axboeb5af8292007-03-08 12:43:13 +0100705static int fio_netio_connect(struct thread_data *td, struct fio_file *f)
Jens Axboeed92ac02007-02-06 14:43:52 +0100706{
Jens Axboeb5af8292007-03-08 12:43:13 +0100707 struct netio_data *nd = td->io_ops->data;
Steven Langde890a12011-11-09 14:03:34 +0100708 struct netio_options *o = td->eo;
Jens Axboe6264c7a2013-02-28 08:24:23 +0100709 int type, domain;
Jens Axboeed92ac02007-02-06 14:43:52 +0100710
Steven Langde890a12011-11-09 14:03:34 +0100711 if (o->proto == FIO_TYPE_TCP) {
Jens Axboe0fd666b2011-10-06 20:08:53 +0200712 domain = AF_INET;
Jens Axboe414c2a32009-01-16 13:21:15 +0100713 type = SOCK_STREAM;
Jens Axboe49ccb8c2014-01-23 16:49:37 -0800714 } else if (o->proto == FIO_TYPE_TCP_V6) {
715 domain = AF_INET6;
716 type = SOCK_STREAM;
Steven Langde890a12011-11-09 14:03:34 +0100717 } else if (o->proto == FIO_TYPE_UDP) {
Jens Axboe0fd666b2011-10-06 20:08:53 +0200718 domain = AF_INET;
Jens Axboe414c2a32009-01-16 13:21:15 +0100719 type = SOCK_DGRAM;
Jens Axboe49ccb8c2014-01-23 16:49:37 -0800720 } else if (o->proto == FIO_TYPE_UDP_V6) {
721 domain = AF_INET6;
722 type = SOCK_DGRAM;
Steven Langde890a12011-11-09 14:03:34 +0100723 } else if (o->proto == FIO_TYPE_UNIX) {
Jens Axboe0fd666b2011-10-06 20:08:53 +0200724 domain = AF_UNIX;
725 type = SOCK_STREAM;
726 } else {
Steven Langde890a12011-11-09 14:03:34 +0100727 log_err("fio: bad network type %d\n", o->proto);
Jens Axboe0fd666b2011-10-06 20:08:53 +0200728 f->fd = -1;
729 return 1;
730 }
Jens Axboe414c2a32009-01-16 13:21:15 +0100731
Jens Axboe0fd666b2011-10-06 20:08:53 +0200732 f->fd = socket(domain, type, 0);
Jens Axboeb5af8292007-03-08 12:43:13 +0100733 if (f->fd < 0) {
734 td_verror(td, errno, "socket");
735 return 1;
Jens Axboeed92ac02007-02-06 14:43:52 +0100736 }
737
Jens Axboe1eafa372013-01-31 10:19:51 +0100738#ifdef CONFIG_TCP_NODELAY
Jens Axboe49ccb8c2014-01-23 16:49:37 -0800739 if (o->nodelay && is_tcp(o)) {
Jens Axboe6264c7a2013-02-28 08:24:23 +0100740 int optval = 1;
741
Jens Axboe26e594a2013-01-30 21:52:37 +0100742 if (setsockopt(f->fd, IPPROTO_TCP, TCP_NODELAY, (void *) &optval, sizeof(int)) < 0) {
Steven Noonan70a78782012-11-28 14:52:36 -0800743 log_err("fio: cannot set TCP_NODELAY option on socket (%s), disable with 'nodelay=0'\n", strerror(errno));
744 return 1;
745 }
746 }
Jens Axboe1eafa372013-01-31 10:19:51 +0100747#endif
Steven Noonan70a78782012-11-28 14:52:36 -0800748
Jens Axboe531e67a2014-10-09 11:55:16 -0600749 if (set_window_size(td, f->fd)) {
750 close(f->fd);
751 return 1;
752 }
Jens Axboe5e34cea2014-10-09 12:05:44 -0600753 if (set_mss(td, f->fd)) {
754 close(f->fd);
755 return 1;
756 }
Jens Axboe531e67a2014-10-09 11:55:16 -0600757
Jens Axboe49ccb8c2014-01-23 16:49:37 -0800758 if (is_udp(o)) {
Shawn Bohrerd3a623d2013-07-19 13:24:08 -0500759 if (!fio_netio_is_multicast(td->o.filename))
760 return 0;
Jens Axboe49ccb8c2014-01-23 16:49:37 -0800761 if (is_ipv6(o)) {
762 log_err("fio: multicast not supported on IPv6\n");
763 close(f->fd);
764 return 1;
765 }
Shawn Bohrerd3a623d2013-07-19 13:24:08 -0500766
Bruce Cranf16b7402013-10-08 15:05:27 +0100767 if (o->intfc) {
Shawn Bohrerb93b6a22013-07-19 13:24:07 -0500768 struct in_addr interface_addr;
Jens Axboe49ccb8c2014-01-23 16:49:37 -0800769
Bruce Cranf16b7402013-10-08 15:05:27 +0100770 if (inet_aton(o->intfc, &interface_addr) == 0) {
Shawn Bohrerb93b6a22013-07-19 13:24:07 -0500771 log_err("fio: interface not valid interface IP\n");
772 close(f->fd);
773 return 1;
774 }
Bruce Cranf16b7402013-10-08 15:05:27 +0100775 if (setsockopt(f->fd, IPPROTO_IP, IP_MULTICAST_IF, (const char*)&interface_addr, sizeof(interface_addr)) < 0) {
Shawn Bohrerb93b6a22013-07-19 13:24:07 -0500776 td_verror(td, errno, "setsockopt IP_MULTICAST_IF");
777 close(f->fd);
778 return 1;
779 }
780 }
Bruce Cranf16b7402013-10-08 15:05:27 +0100781 if (setsockopt(f->fd, IPPROTO_IP, IP_MULTICAST_TTL, (const char*)&o->ttl, sizeof(o->ttl)) < 0) {
Shawn Bohrerd3a623d2013-07-19 13:24:08 -0500782 td_verror(td, errno, "setsockopt IP_MULTICAST_TTL");
783 close(f->fd);
784 return 1;
785 }
Jens Axboe414c2a32009-01-16 13:21:15 +0100786 return 0;
Shawn Bohrerb93b6a22013-07-19 13:24:07 -0500787 } else if (o->proto == FIO_TYPE_TCP) {
Jens Axboe67bf9822013-01-10 11:23:19 +0100788 socklen_t len = sizeof(nd->addr);
Jens Axboe414c2a32009-01-16 13:21:15 +0100789
Jens Axboe0fd666b2011-10-06 20:08:53 +0200790 if (connect(f->fd, (struct sockaddr *) &nd->addr, len) < 0) {
791 td_verror(td, errno, "connect");
Jens Axboeb94cba42011-10-06 21:27:10 +0200792 close(f->fd);
Jens Axboe0fd666b2011-10-06 20:08:53 +0200793 return 1;
794 }
Jens Axboe49ccb8c2014-01-23 16:49:37 -0800795 } else if (o->proto == FIO_TYPE_TCP_V6) {
796 socklen_t len = sizeof(nd->addr6);
797
798 if (connect(f->fd, (struct sockaddr *) &nd->addr6, len) < 0) {
799 td_verror(td, errno, "connect");
800 close(f->fd);
801 return 1;
802 }
803
Jens Axboe0fd666b2011-10-06 20:08:53 +0200804 } else {
805 struct sockaddr_un *addr = &nd->addr_un;
Jens Axboe67bf9822013-01-10 11:23:19 +0100806 socklen_t len;
Jens Axboe0fd666b2011-10-06 20:08:53 +0200807
808 len = sizeof(addr->sun_family) + strlen(addr->sun_path) + 1;
809
810 if (connect(f->fd, (struct sockaddr *) addr, len) < 0) {
811 td_verror(td, errno, "connect");
Jens Axboeb94cba42011-10-06 21:27:10 +0200812 close(f->fd);
Jens Axboe0fd666b2011-10-06 20:08:53 +0200813 return 1;
814 }
Jens Axboeed92ac02007-02-06 14:43:52 +0100815 }
816
817 return 0;
Jens Axboeed92ac02007-02-06 14:43:52 +0100818}
819
Jens Axboeb5af8292007-03-08 12:43:13 +0100820static int fio_netio_accept(struct thread_data *td, struct fio_file *f)
Jens Axboe5fdd1242007-02-11 04:00:37 +0100821{
Jens Axboeb5af8292007-03-08 12:43:13 +0100822 struct netio_data *nd = td->io_ops->data;
Steven Langde890a12011-11-09 14:03:34 +0100823 struct netio_options *o = td->eo;
Jens Axboe49ccb8c2014-01-23 16:49:37 -0800824 socklen_t socklen;
Jens Axboe6264c7a2013-02-28 08:24:23 +0100825 int state;
Jens Axboe5fdd1242007-02-11 04:00:37 +0100826
Jens Axboe49ccb8c2014-01-23 16:49:37 -0800827 if (is_udp(o)) {
Jens Axboe414c2a32009-01-16 13:21:15 +0100828 f->fd = nd->listenfd;
829 return 0;
830 }
831
Jens Axboe859088d2012-11-29 20:02:50 +0100832 state = td->runstate;
833 td_set_runstate(td, TD_SETTING_UP);
834
Jens Axboe6d861442007-03-15 09:22:23 +0100835 log_info("fio: waiting for connection\n");
Jens Axboe5fdd1242007-02-11 04:00:37 +0100836
Jens Axboe371d4562009-01-19 10:17:06 +0100837 if (poll_wait(td, nd->listenfd, POLLIN) < 0)
Jens Axboe859088d2012-11-29 20:02:50 +0100838 goto err;
Jens Axboe5fdd1242007-02-11 04:00:37 +0100839
Jens Axboe49ccb8c2014-01-23 16:49:37 -0800840 if (o->proto == FIO_TYPE_TCP) {
841 socklen = sizeof(nd->addr);
842 f->fd = accept(nd->listenfd, (struct sockaddr *) &nd->addr, &socklen);
843 } else {
844 socklen = sizeof(nd->addr6);
845 f->fd = accept(nd->listenfd, (struct sockaddr *) &nd->addr6, &socklen);
846 }
847
Jens Axboe371d4562009-01-19 10:17:06 +0100848 if (f->fd < 0) {
849 td_verror(td, errno, "accept");
Jens Axboe859088d2012-11-29 20:02:50 +0100850 goto err;
Jens Axboe5fdd1242007-02-11 04:00:37 +0100851 }
852
Jens Axboe1eafa372013-01-31 10:19:51 +0100853#ifdef CONFIG_TCP_NODELAY
Jens Axboe49ccb8c2014-01-23 16:49:37 -0800854 if (o->nodelay && is_tcp(o)) {
Jens Axboe6264c7a2013-02-28 08:24:23 +0100855 int optval = 1;
856
Jens Axboe26e594a2013-01-30 21:52:37 +0100857 if (setsockopt(f->fd, IPPROTO_TCP, TCP_NODELAY, (void *) &optval, sizeof(int)) < 0) {
Steven Noonan70a78782012-11-28 14:52:36 -0800858 log_err("fio: cannot set TCP_NODELAY option on socket (%s), disable with 'nodelay=0'\n", strerror(errno));
859 return 1;
860 }
861 }
Jens Axboe1eafa372013-01-31 10:19:51 +0100862#endif
Steven Noonan70a78782012-11-28 14:52:36 -0800863
Jens Axboe0cae16f2012-11-30 16:22:31 +0100864 reset_all_stats(td);
Jens Axboe859088d2012-11-29 20:02:50 +0100865 td_set_runstate(td, state);
Jens Axboe5fdd1242007-02-11 04:00:37 +0100866 return 0;
Jens Axboe859088d2012-11-29 20:02:50 +0100867err:
868 td_set_runstate(td, state);
869 return 1;
Jens Axboeb5af8292007-03-08 12:43:13 +0100870}
871
Jens Axboe80436e12014-10-09 18:10:11 -0600872static void fio_netio_send_close(struct thread_data *td, struct fio_file *f)
Jens Axboe664fb3b2009-01-19 13:26:36 +0100873{
874 struct netio_data *nd = td->io_ops->data;
Jens Axboe49ccb8c2014-01-23 16:49:37 -0800875 struct netio_options *o = td->eo;
Jens Axboe664fb3b2009-01-19 13:26:36 +0100876 struct udp_close_msg msg;
Jens Axboe49ccb8c2014-01-23 16:49:37 -0800877 struct sockaddr *to;
878 socklen_t len;
Jens Axboe664fb3b2009-01-19 13:26:36 +0100879 int ret;
880
Jens Axboe49ccb8c2014-01-23 16:49:37 -0800881 if (is_ipv6(o)) {
882 to = (struct sockaddr *) &nd->addr6;
883 len = sizeof(nd->addr6);
884 } else {
885 to = (struct sockaddr *) &nd->addr;
886 len = sizeof(nd->addr);
887 }
888
Jens Axboe80436e12014-10-09 18:10:11 -0600889 msg.magic = cpu_to_le32((uint32_t) FIO_LINK_OPEN_CLOSE_MAGIC);
890 msg.cmd = cpu_to_le32((uint32_t) FIO_LINK_CLOSE);
Jens Axboe664fb3b2009-01-19 13:26:36 +0100891
Jens Axboe49ccb8c2014-01-23 16:49:37 -0800892 ret = sendto(f->fd, (void *) &msg, sizeof(msg), MSG_WAITALL, to, len);
Jens Axboe664fb3b2009-01-19 13:26:36 +0100893 if (ret < 0)
894 td_verror(td, errno, "sendto udp link close");
895}
896
897static int fio_netio_close_file(struct thread_data *td, struct fio_file *f)
898{
Jens Axboe664fb3b2009-01-19 13:26:36 +0100899 /*
Jens Axboe80436e12014-10-09 18:10:11 -0600900 * Notify the receiver that we are closing down the link
Jens Axboe664fb3b2009-01-19 13:26:36 +0100901 */
Jens Axboe80436e12014-10-09 18:10:11 -0600902 fio_netio_send_close(td, f);
Jens Axboe664fb3b2009-01-19 13:26:36 +0100903
904 return generic_close_file(td, f);
905}
906
Jens Axboeb96d2432012-11-30 08:27:46 +0100907static int fio_netio_udp_recv_open(struct thread_data *td, struct fio_file *f)
908{
909 struct netio_data *nd = td->io_ops->data;
Jens Axboe49ccb8c2014-01-23 16:49:37 -0800910 struct netio_options *o = td->eo;
Jens Axboeb96d2432012-11-30 08:27:46 +0100911 struct udp_close_msg msg;
Jens Axboe49ccb8c2014-01-23 16:49:37 -0800912 struct sockaddr *to;
913 socklen_t len;
Jens Axboeb96d2432012-11-30 08:27:46 +0100914 int ret;
915
Jens Axboe49ccb8c2014-01-23 16:49:37 -0800916 if (is_ipv6(o)) {
917 len = sizeof(nd->addr6);
918 to = (struct sockaddr *) &nd->addr6;
919 } else {
920 len = sizeof(nd->addr);
921 to = (struct sockaddr *) &nd->addr;
922 }
923
Jens Axboe1f819912013-01-23 17:21:41 -0700924 ret = recvfrom(f->fd, (void *) &msg, sizeof(msg), MSG_WAITALL, to, &len);
Jens Axboeb96d2432012-11-30 08:27:46 +0100925 if (ret < 0) {
Shawn Bohreree7062f2013-07-19 13:24:09 -0500926 td_verror(td, errno, "recvfrom udp link open");
Jens Axboeb96d2432012-11-30 08:27:46 +0100927 return ret;
928 }
929
930 if (ntohl(msg.magic) != FIO_LINK_OPEN_CLOSE_MAGIC ||
931 ntohl(msg.cmd) != FIO_LINK_OPEN) {
932 log_err("fio: bad udp open magic %x/%x\n", ntohl(msg.magic),
933 ntohl(msg.cmd));
934 return -1;
935 }
936
Jens Axboeda91d752014-10-09 13:10:14 -0600937 fio_gettime(&td->start, NULL);
Jens Axboeb96d2432012-11-30 08:27:46 +0100938 return 0;
939}
940
Jens Axboe80436e12014-10-09 18:10:11 -0600941static int fio_netio_send_open(struct thread_data *td, struct fio_file *f)
Jens Axboeb96d2432012-11-30 08:27:46 +0100942{
943 struct netio_data *nd = td->io_ops->data;
Jens Axboe49ccb8c2014-01-23 16:49:37 -0800944 struct netio_options *o = td->eo;
Jens Axboeb96d2432012-11-30 08:27:46 +0100945 struct udp_close_msg msg;
Jens Axboe49ccb8c2014-01-23 16:49:37 -0800946 struct sockaddr *to;
947 socklen_t len;
Jens Axboeb96d2432012-11-30 08:27:46 +0100948 int ret;
949
Jens Axboe49ccb8c2014-01-23 16:49:37 -0800950 if (is_ipv6(o)) {
951 len = sizeof(nd->addr6);
952 to = (struct sockaddr *) &nd->addr6;
953 } else {
954 len = sizeof(nd->addr);
955 to = (struct sockaddr *) &nd->addr;
956 }
957
Jens Axboeb96d2432012-11-30 08:27:46 +0100958 msg.magic = htonl(FIO_LINK_OPEN_CLOSE_MAGIC);
959 msg.cmd = htonl(FIO_LINK_OPEN);
960
Jens Axboe49ccb8c2014-01-23 16:49:37 -0800961 ret = sendto(f->fd, (void *) &msg, sizeof(msg), MSG_WAITALL, to, len);
Jens Axboeb96d2432012-11-30 08:27:46 +0100962 if (ret < 0) {
963 td_verror(td, errno, "sendto udp link open");
964 return ret;
965 }
966
967 return 0;
968}
969
970static int fio_netio_open_file(struct thread_data *td, struct fio_file *f)
971{
972 int ret;
973 struct netio_options *o = td->eo;
974
975 if (o->listen)
976 ret = fio_netio_accept(td, f);
977 else
978 ret = fio_netio_connect(td, f);
979
980 if (ret) {
981 f->fd = -1;
982 return ret;
983 }
984
Jens Axboe49ccb8c2014-01-23 16:49:37 -0800985 if (is_udp(o)) {
Jens Axboeb96d2432012-11-30 08:27:46 +0100986 if (td_write(td))
Jens Axboe80436e12014-10-09 18:10:11 -0600987 ret = fio_netio_send_open(td, f);
Jens Axboeb96d2432012-11-30 08:27:46 +0100988 else {
989 int state;
990
991 state = td->runstate;
992 td_set_runstate(td, TD_SETTING_UP);
993 ret = fio_netio_udp_recv_open(td, f);
994 td_set_runstate(td, state);
995 }
996 }
997
998 if (ret)
999 fio_netio_close_file(td, f);
1000
1001 return ret;
1002}
1003
Jens Axboe0b783342014-01-23 20:19:17 -08001004static int fio_fill_addr(struct thread_data *td, const char *host, int af,
1005 void *dst, struct addrinfo **res)
1006{
1007 struct netio_options *o = td->eo;
1008 struct addrinfo hints;
1009 int ret;
1010
1011 if (inet_pton(af, host, dst))
1012 return 0;
1013
1014 memset(&hints, 0, sizeof(hints));
Jens Axboe0b783342014-01-23 20:19:17 -08001015
1016 if (is_tcp(o))
1017 hints.ai_socktype = SOCK_STREAM;
1018 else
1019 hints.ai_socktype = SOCK_DGRAM;
1020
Jens Axboeb1b1be22014-01-23 20:41:33 -08001021 if (is_ipv6(o))
1022 hints.ai_family = AF_INET6;
1023 else
1024 hints.ai_family = AF_INET;
1025
Jens Axboe0b783342014-01-23 20:19:17 -08001026 ret = getaddrinfo(host, NULL, &hints, res);
1027 if (ret) {
1028 int e = EINVAL;
1029 char str[128];
1030
1031 if (ret == EAI_SYSTEM)
1032 e = errno;
1033
1034 snprintf(str, sizeof(str), "getaddrinfo: %s", gai_strerror(ret));
1035 td_verror(td, e, str);
1036 return 1;
1037 }
1038
1039 return 0;
1040}
1041
Jens Axboe0fd666b2011-10-06 20:08:53 +02001042static int fio_netio_setup_connect_inet(struct thread_data *td,
1043 const char *host, unsigned short port)
Jens Axboeb5af8292007-03-08 12:43:13 +01001044{
1045 struct netio_data *nd = td->io_ops->data;
Jens Axboe49ccb8c2014-01-23 16:49:37 -08001046 struct netio_options *o = td->eo;
Jens Axboe0b783342014-01-23 20:19:17 -08001047 struct addrinfo *res = NULL;
1048 void *dst, *src;
1049 int af, len;
Jens Axboeb5af8292007-03-08 12:43:13 +01001050
Jens Axboe166dce42012-11-29 14:35:33 +01001051 if (!host) {
1052 log_err("fio: connect with no host to connect to.\n");
1053 if (td_read(td))
1054 log_err("fio: did you forget to set 'listen'?\n");
1055
1056 td_verror(td, EINVAL, "no hostname= set");
1057 return 1;
1058 }
1059
Jens Axboe0b783342014-01-23 20:19:17 -08001060 nd->addr.sin_family = AF_INET;
1061 nd->addr.sin_port = htons(port);
1062 nd->addr6.sin6_family = AF_INET6;
1063 nd->addr6.sin6_port = htons(port);
1064
Jens Axboe49ccb8c2014-01-23 16:49:37 -08001065 if (is_ipv6(o)) {
Jens Axboe0b783342014-01-23 20:19:17 -08001066 af = AF_INET6;
Jens Axboe68631b32014-02-25 13:43:38 -08001067 dst = &nd->addr6.sin6_addr;
Jens Axboe49ccb8c2014-01-23 16:49:37 -08001068 } else {
Jens Axboe0b783342014-01-23 20:19:17 -08001069 af = AF_INET;
Jens Axboe68631b32014-02-25 13:43:38 -08001070 dst = &nd->addr.sin_addr;
Jens Axboeb5af8292007-03-08 12:43:13 +01001071 }
1072
Jens Axboe0b783342014-01-23 20:19:17 -08001073 if (fio_fill_addr(td, host, af, dst, &res))
1074 return 1;
1075
1076 if (!res)
1077 return 0;
1078
1079 if (is_ipv6(o)) {
1080 len = sizeof(nd->addr6.sin6_addr);
1081 src = &((struct sockaddr_in6 *) res->ai_addr)->sin6_addr;
1082 } else {
1083 len = sizeof(nd->addr.sin_addr);
1084 src = &((struct sockaddr_in *) res->ai_addr)->sin_addr;
1085 }
1086
1087 memcpy(dst, src, len);
1088 freeaddrinfo(res);
Jens Axboeb5af8292007-03-08 12:43:13 +01001089 return 0;
1090}
1091
Jens Axboe0fd666b2011-10-06 20:08:53 +02001092static int fio_netio_setup_connect_unix(struct thread_data *td,
1093 const char *path)
1094{
1095 struct netio_data *nd = td->io_ops->data;
1096 struct sockaddr_un *soun = &nd->addr_un;
1097
1098 soun->sun_family = AF_UNIX;
Jens Axboe4b159fa2014-04-14 08:49:04 -06001099 memset(soun->sun_path, 0, sizeof(soun->sun_path));
1100 strncpy(soun->sun_path, path, sizeof(soun->sun_path) - 1);
Jens Axboe0fd666b2011-10-06 20:08:53 +02001101 return 0;
1102}
1103
Steven Langde890a12011-11-09 14:03:34 +01001104static int fio_netio_setup_connect(struct thread_data *td)
Jens Axboe0fd666b2011-10-06 20:08:53 +02001105{
Steven Langde890a12011-11-09 14:03:34 +01001106 struct netio_options *o = td->eo;
Jens Axboe0fd666b2011-10-06 20:08:53 +02001107
Jens Axboe49ccb8c2014-01-23 16:49:37 -08001108 if (is_udp(o) || is_tcp(o))
Steven Langde890a12011-11-09 14:03:34 +01001109 return fio_netio_setup_connect_inet(td, td->o.filename,o->port);
Jens Axboe0fd666b2011-10-06 20:08:53 +02001110 else
Steven Langde890a12011-11-09 14:03:34 +01001111 return fio_netio_setup_connect_unix(td, td->o.filename);
Jens Axboe0fd666b2011-10-06 20:08:53 +02001112}
1113
1114static int fio_netio_setup_listen_unix(struct thread_data *td, const char *path)
1115{
1116 struct netio_data *nd = td->io_ops->data;
1117 struct sockaddr_un *addr = &nd->addr_un;
1118 mode_t mode;
1119 int len, fd;
1120
1121 fd = socket(AF_UNIX, SOCK_STREAM, 0);
1122 if (fd < 0) {
1123 log_err("fio: socket: %s\n", strerror(errno));
1124 return -1;
1125 }
1126
1127 mode = umask(000);
1128
1129 memset(addr, 0, sizeof(*addr));
1130 addr->sun_family = AF_UNIX;
Jens Axboe4b159fa2014-04-14 08:49:04 -06001131 strncpy(addr->sun_path, path, sizeof(addr->sun_path) - 1);
Jens Axboe0fd666b2011-10-06 20:08:53 +02001132 unlink(path);
1133
1134 len = sizeof(addr->sun_family) + strlen(path) + 1;
1135
1136 if (bind(fd, (struct sockaddr *) addr, len) < 0) {
1137 log_err("fio: bind: %s\n", strerror(errno));
Jens Axboeb94cba42011-10-06 21:27:10 +02001138 close(fd);
Jens Axboe0fd666b2011-10-06 20:08:53 +02001139 return -1;
1140 }
1141
1142 umask(mode);
1143 nd->listenfd = fd;
1144 return 0;
1145}
1146
1147static int fio_netio_setup_listen_inet(struct thread_data *td, short port)
Jens Axboeb5af8292007-03-08 12:43:13 +01001148{
1149 struct netio_data *nd = td->io_ops->data;
Steven Langde890a12011-11-09 14:03:34 +01001150 struct netio_options *o = td->eo;
Shawn Bohrerb511c9a2013-07-19 13:24:06 -05001151 struct ip_mreq mr;
1152 struct sockaddr_in sin;
Jens Axboe49ccb8c2014-01-23 16:49:37 -08001153 struct sockaddr *saddr;
1154 int fd, opt, type, domain;
1155 socklen_t len;
Jens Axboeed92ac02007-02-06 14:43:52 +01001156
Shawn Bohrerb511c9a2013-07-19 13:24:06 -05001157 memset(&sin, 0, sizeof(sin));
Jens Axboe414c2a32009-01-16 13:21:15 +01001158
Jens Axboe49ccb8c2014-01-23 16:49:37 -08001159 if (o->proto == FIO_TYPE_TCP) {
1160 type = SOCK_STREAM;
1161 domain = AF_INET;
1162 } else if (o->proto == FIO_TYPE_TCP_V6) {
1163 type = SOCK_STREAM;
1164 domain = AF_INET6;
1165 } else if (o->proto == FIO_TYPE_UDP) {
1166 type = SOCK_DGRAM;
1167 domain = AF_INET;
1168 } else if (o->proto == FIO_TYPE_UDP_V6) {
1169 type = SOCK_DGRAM;
1170 domain = AF_INET6;
1171 } else {
1172 log_err("fio: unknown proto %d\n", o->proto);
1173 return 1;
1174 }
1175
1176 fd = socket(domain, type, 0);
Jens Axboeed92ac02007-02-06 14:43:52 +01001177 if (fd < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +01001178 td_verror(td, errno, "socket");
Jens Axboeed92ac02007-02-06 14:43:52 +01001179 return 1;
1180 }
1181
1182 opt = 1;
Jens Axboe26e594a2013-01-30 21:52:37 +01001183 if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, (void *) &opt, sizeof(opt)) < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +01001184 td_verror(td, errno, "setsockopt");
Shawn Bohrer4a93dec2013-07-19 13:24:10 -05001185 close(fd);
Jens Axboeed92ac02007-02-06 14:43:52 +01001186 return 1;
1187 }
Jens Axboe6bedbfa2007-02-07 09:54:40 +01001188#ifdef SO_REUSEPORT
Jens Axboe26e594a2013-01-30 21:52:37 +01001189 if (setsockopt(fd, SOL_SOCKET, SO_REUSEPORT, (void *) &opt, sizeof(opt)) < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +01001190 td_verror(td, errno, "setsockopt");
Shawn Bohrer4a93dec2013-07-19 13:24:10 -05001191 close(fd);
Jens Axboe6bedbfa2007-02-07 09:54:40 +01001192 return 1;
1193 }
1194#endif
Jens Axboeed92ac02007-02-06 14:43:52 +01001195
Jens Axboe531e67a2014-10-09 11:55:16 -06001196 if (set_window_size(td, fd)) {
1197 close(fd);
1198 return 1;
1199 }
Jens Axboe5e34cea2014-10-09 12:05:44 -06001200 if (set_mss(td, fd)) {
1201 close(fd);
1202 return 1;
1203 }
Jens Axboe531e67a2014-10-09 11:55:16 -06001204
Jens Axboe6611e9c2014-01-24 07:36:43 -08001205 if (td->o.filename) {
Jens Axboe49ccb8c2014-01-23 16:49:37 -08001206 if (!is_udp(o) || !fio_netio_is_multicast(td->o.filename)) {
Shawn Bohrerb511c9a2013-07-19 13:24:06 -05001207 log_err("fio: hostname not valid for non-multicast inbound network IO\n");
1208 close(fd);
1209 return 1;
1210 }
Jens Axboe6611e9c2014-01-24 07:36:43 -08001211 if (is_ipv6(o)) {
1212 log_err("fio: IPv6 not supported for multicast network IO");
1213 close(fd);
1214 return 1;
1215 }
Shawn Bohrerb511c9a2013-07-19 13:24:06 -05001216
1217 inet_aton(td->o.filename, &sin.sin_addr);
1218
1219 mr.imr_multiaddr = sin.sin_addr;
Bruce Cranf16b7402013-10-08 15:05:27 +01001220 if (o->intfc) {
1221 if (inet_aton(o->intfc, &mr.imr_interface) == 0) {
Shawn Bohrerb93b6a22013-07-19 13:24:07 -05001222 log_err("fio: interface not valid interface IP\n");
1223 close(fd);
1224 return 1;
1225 }
1226 } else {
1227 mr.imr_interface.s_addr = htonl(INADDR_ANY);
1228 }
Jens Axboe6611e9c2014-01-24 07:36:43 -08001229
Bruce Cranf16b7402013-10-08 15:05:27 +01001230 if (setsockopt(fd, IPPROTO_IP, IP_ADD_MEMBERSHIP, (const char*)&mr, sizeof(mr)) < 0) {
Shawn Bohrerb511c9a2013-07-19 13:24:06 -05001231 td_verror(td, errno, "setsockopt IP_ADD_MEMBERSHIP");
1232 close(fd);
1233 return 1;
1234 }
1235 }
1236
Jens Axboe49ccb8c2014-01-23 16:49:37 -08001237 if (!is_ipv6(o)) {
1238 saddr = (struct sockaddr *) &nd->addr;
1239 len = sizeof(nd->addr);
Jens Axboeed92ac02007-02-06 14:43:52 +01001240
Jens Axboe49ccb8c2014-01-23 16:49:37 -08001241 nd->addr.sin_family = AF_INET;
1242 nd->addr.sin_addr.s_addr = sin.sin_addr.s_addr ? sin.sin_addr.s_addr : htonl(INADDR_ANY);
1243 nd->addr.sin_port = htons(port);
1244 } else {
1245 saddr = (struct sockaddr *) &nd->addr6;
1246 len = sizeof(nd->addr6);
1247
1248 nd->addr6.sin6_family = AF_INET6;
Jens Axboe66f7a562014-04-14 11:57:05 -06001249 nd->addr6.sin6_addr = in6addr_any;
Jens Axboe49ccb8c2014-01-23 16:49:37 -08001250 nd->addr6.sin6_port = htons(port);
1251 }
1252
1253 if (bind(fd, saddr, len) < 0) {
Jens Axboed19cedd2014-04-11 11:29:50 -06001254 close(fd);
Jens Axboee1161c32007-02-22 19:36:48 +01001255 td_verror(td, errno, "bind");
Jens Axboeed92ac02007-02-06 14:43:52 +01001256 return 1;
1257 }
Jens Axboe0fd666b2011-10-06 20:08:53 +02001258
1259 nd->listenfd = fd;
1260 return 0;
1261}
1262
Steven Langde890a12011-11-09 14:03:34 +01001263static int fio_netio_setup_listen(struct thread_data *td)
Jens Axboe0fd666b2011-10-06 20:08:53 +02001264{
1265 struct netio_data *nd = td->io_ops->data;
Steven Langde890a12011-11-09 14:03:34 +01001266 struct netio_options *o = td->eo;
Jens Axboe0fd666b2011-10-06 20:08:53 +02001267 int ret;
1268
Jens Axboe49ccb8c2014-01-23 16:49:37 -08001269 if (is_udp(o) || is_tcp(o))
Steven Langde890a12011-11-09 14:03:34 +01001270 ret = fio_netio_setup_listen_inet(td, o->port);
Jens Axboe0fd666b2011-10-06 20:08:53 +02001271 else
Steven Langde890a12011-11-09 14:03:34 +01001272 ret = fio_netio_setup_listen_unix(td, td->o.filename);
Jens Axboe0fd666b2011-10-06 20:08:53 +02001273
1274 if (ret)
1275 return ret;
Jens Axboe49ccb8c2014-01-23 16:49:37 -08001276 if (is_udp(o))
Jens Axboe0fd666b2011-10-06 20:08:53 +02001277 return 0;
1278
1279 if (listen(nd->listenfd, 10) < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +01001280 td_verror(td, errno, "listen");
Jens Axboe0fd666b2011-10-06 20:08:53 +02001281 nd->listenfd = -1;
Jens Axboeed92ac02007-02-06 14:43:52 +01001282 return 1;
1283 }
1284
Jens Axboeb5af8292007-03-08 12:43:13 +01001285 return 0;
Jens Axboeed92ac02007-02-06 14:43:52 +01001286}
1287
Jens Axboe9bec88e2007-03-02 08:55:48 +01001288static int fio_netio_init(struct thread_data *td)
Jens Axboeed92ac02007-02-06 14:43:52 +01001289{
Steven Langde890a12011-11-09 14:03:34 +01001290 struct netio_options *o = td->eo;
Jens Axboeaf52b342007-03-13 10:07:47 +01001291 int ret;
Jens Axboeed92ac02007-02-06 14:43:52 +01001292
Bruce Cran3f457be2012-10-10 13:37:41 +01001293#ifdef WIN32
1294 WSADATA wsd;
1295 WSAStartup(MAKEWORD(2,2), &wsd);
1296#endif
1297
Jens Axboe16d55aa2007-05-22 09:21:37 +02001298 if (td_random(td)) {
1299 log_err("fio: network IO can't be random\n");
1300 return 1;
1301 }
Jens Axboeed92ac02007-02-06 14:43:52 +01001302
Steven Langde890a12011-11-09 14:03:34 +01001303 if (o->proto == FIO_TYPE_UNIX && o->port) {
1304 log_err("fio: network IO port not valid with unix socket\n");
1305 return 1;
1306 } else if (o->proto != FIO_TYPE_UNIX && !o->port) {
1307 log_err("fio: network IO requires port for tcp or udp\n");
1308 return 1;
Jens Axboe414c2a32009-01-16 13:21:15 +01001309 }
Jens Axboe0fd666b2011-10-06 20:08:53 +02001310
Jens Axboea9b3c692014-10-09 19:55:21 -06001311 o->port += td->subjob_number;
1312
Jens Axboe49ccb8c2014-01-23 16:49:37 -08001313 if (!is_tcp(o)) {
Steven Langde890a12011-11-09 14:03:34 +01001314 if (o->listen) {
Jens Axboe9b986062011-12-19 08:57:18 +01001315 log_err("fio: listen only valid for TCP proto IO\n");
1316 return 1;
Steven Langde890a12011-11-09 14:03:34 +01001317 }
1318 if (td_rw(td)) {
Jens Axboe9b986062011-12-19 08:57:18 +01001319 log_err("fio: datagram network connections must be"
Steven Langde890a12011-11-09 14:03:34 +01001320 " read OR write\n");
Jens Axboe9b986062011-12-19 08:57:18 +01001321 return 1;
1322 }
1323 if (o->proto == FIO_TYPE_UNIX && !td->o.filename) {
1324 log_err("fio: UNIX sockets need host/filename\n");
1325 return 1;
Steven Langde890a12011-11-09 14:03:34 +01001326 }
1327 o->listen = td_read(td);
1328 }
1329
Steven Langde890a12011-11-09 14:03:34 +01001330 if (o->listen)
1331 ret = fio_netio_setup_listen(td);
Jens Axboe0fd666b2011-10-06 20:08:53 +02001332 else
Steven Langde890a12011-11-09 14:03:34 +01001333 ret = fio_netio_setup_connect(td);
Jens Axboeed92ac02007-02-06 14:43:52 +01001334
Jens Axboe7bb48f82007-03-27 15:30:28 +02001335 return ret;
Jens Axboeed92ac02007-02-06 14:43:52 +01001336}
1337
Jens Axboeb5af8292007-03-08 12:43:13 +01001338static void fio_netio_cleanup(struct thread_data *td)
Jens Axboe9bec88e2007-03-02 08:55:48 +01001339{
Jens Axboeb5af8292007-03-08 12:43:13 +01001340 struct netio_data *nd = td->io_ops->data;
1341
1342 if (nd) {
Jens Axboe64b24cd2007-06-24 21:28:39 +02001343 if (nd->listenfd != -1)
1344 close(nd->listenfd);
1345 if (nd->pipes[0] != -1)
1346 close(nd->pipes[0]);
1347 if (nd->pipes[1] != -1)
1348 close(nd->pipes[1]);
1349
Jens Axboeb5af8292007-03-08 12:43:13 +01001350 free(nd);
Jens Axboeb5af8292007-03-08 12:43:13 +01001351 }
1352}
1353
1354static int fio_netio_setup(struct thread_data *td)
1355{
Jens Axboe7bb48f82007-03-27 15:30:28 +02001356 struct netio_data *nd;
Jens Axboeb5af8292007-03-08 12:43:13 +01001357
Steven Langde890a12011-11-09 14:03:34 +01001358 if (!td->files_index) {
Jens Axboe5903e7b2014-02-26 13:42:13 -08001359 add_file(td, td->o.filename ?: "net", 0, 0);
Steven Langde890a12011-11-09 14:03:34 +01001360 td->o.nr_files = td->o.nr_files ?: 1;
Jens Axboeb53f2c52014-04-08 21:07:12 -06001361 td->o.open_files++;
Steven Langde890a12011-11-09 14:03:34 +01001362 }
1363
Jens Axboe7bb48f82007-03-27 15:30:28 +02001364 if (!td->io_ops->data) {
1365 nd = malloc(sizeof(*nd));;
1366
1367 memset(nd, 0, sizeof(*nd));
1368 nd->listenfd = -1;
Jens Axboe64b24cd2007-06-24 21:28:39 +02001369 nd->pipes[0] = nd->pipes[1] = -1;
Jens Axboe7bb48f82007-03-27 15:30:28 +02001370 td->io_ops->data = nd;
Jens Axboe7bb48f82007-03-27 15:30:28 +02001371 }
1372
Jens Axboe9bec88e2007-03-02 08:55:48 +01001373 return 0;
1374}
1375
Jens Axboe36d80bc2012-11-30 21:46:06 +01001376static void fio_netio_terminate(struct thread_data *td)
1377{
Jens Axboee5f7caa2014-10-08 14:14:05 -06001378 kill(td->pid, SIGTERM);
Jens Axboe36d80bc2012-11-30 21:46:06 +01001379}
1380
Jens Axboe67bf9822013-01-10 11:23:19 +01001381#ifdef CONFIG_LINUX_SPLICE
Jens Axboe9cce02e2007-06-22 15:42:21 +02001382static int fio_netio_setup_splice(struct thread_data *td)
1383{
1384 struct netio_data *nd;
1385
1386 fio_netio_setup(td);
1387
1388 nd = td->io_ops->data;
1389 if (nd) {
1390 if (pipe(nd->pipes) < 0)
1391 return 1;
1392
1393 nd->use_splice = 1;
1394 return 0;
1395 }
1396
1397 return 1;
1398}
1399
Jens Axboe5921e802008-05-30 15:02:38 +02001400static struct ioengine_ops ioengine_splice = {
Steven Langde890a12011-11-09 14:03:34 +01001401 .name = "netsplice",
1402 .version = FIO_IOOPS_VERSION,
1403 .prep = fio_netio_prep,
1404 .queue = fio_netio_queue,
1405 .setup = fio_netio_setup_splice,
1406 .init = fio_netio_init,
1407 .cleanup = fio_netio_cleanup,
1408 .open_file = fio_netio_open_file,
Jens Axboe36d80bc2012-11-30 21:46:06 +01001409 .close_file = fio_netio_close_file,
1410 .terminate = fio_netio_terminate,
Steven Langde890a12011-11-09 14:03:34 +01001411 .options = options,
1412 .option_struct_size = sizeof(struct netio_options),
1413 .flags = FIO_SYNCIO | FIO_DISKLESSIO | FIO_UNIDIR |
Jens Axboe36d80bc2012-11-30 21:46:06 +01001414 FIO_PIPEIO,
Jens Axboe5921e802008-05-30 15:02:38 +02001415};
1416#endif
1417
Jens Axboe9cce02e2007-06-22 15:42:21 +02001418static struct ioengine_ops ioengine_rw = {
Steven Langde890a12011-11-09 14:03:34 +01001419 .name = "net",
1420 .version = FIO_IOOPS_VERSION,
1421 .prep = fio_netio_prep,
1422 .queue = fio_netio_queue,
1423 .setup = fio_netio_setup,
1424 .init = fio_netio_init,
1425 .cleanup = fio_netio_cleanup,
1426 .open_file = fio_netio_open_file,
1427 .close_file = fio_netio_close_file,
Jens Axboe36d80bc2012-11-30 21:46:06 +01001428 .terminate = fio_netio_terminate,
Steven Langde890a12011-11-09 14:03:34 +01001429 .options = options,
1430 .option_struct_size = sizeof(struct netio_options),
1431 .flags = FIO_SYNCIO | FIO_DISKLESSIO | FIO_UNIDIR |
Steven Noonanad705bc2013-04-08 15:05:25 -07001432 FIO_PIPEIO | FIO_BIT_BASED,
Jens Axboeed92ac02007-02-06 14:43:52 +01001433};
1434
Steven Langde890a12011-11-09 14:03:34 +01001435static int str_hostname_cb(void *data, const char *input)
1436{
1437 struct netio_options *o = data;
1438
1439 if (o->td->o.filename)
1440 free(o->td->o.filename);
1441 o->td->o.filename = strdup(input);
1442 return 0;
1443}
1444
Jens Axboeed92ac02007-02-06 14:43:52 +01001445static void fio_init fio_netio_register(void)
1446{
Jens Axboe9cce02e2007-06-22 15:42:21 +02001447 register_ioengine(&ioengine_rw);
Jens Axboe67bf9822013-01-10 11:23:19 +01001448#ifdef CONFIG_LINUX_SPLICE
Jens Axboe9cce02e2007-06-22 15:42:21 +02001449 register_ioengine(&ioengine_splice);
Jens Axboe5921e802008-05-30 15:02:38 +02001450#endif
Jens Axboeed92ac02007-02-06 14:43:52 +01001451}
1452
1453static void fio_exit fio_netio_unregister(void)
1454{
Jens Axboe9cce02e2007-06-22 15:42:21 +02001455 unregister_ioengine(&ioengine_rw);
Jens Axboe67bf9822013-01-10 11:23:19 +01001456#ifdef CONFIG_LINUX_SPLICE
Jens Axboe9cce02e2007-06-22 15:42:21 +02001457 unregister_ioengine(&ioengine_splice);
Jens Axboe5921e802008-05-30 15:02:38 +02001458#endif
Jens Axboeed92ac02007-02-06 14:43:52 +01001459}