blob: 6866ba2d840465a0dfbeb85372016704c22c5ace [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>
10#include <errno.h>
11#include <assert.h>
12#include <netinet/in.h>
13#include <arpa/inet.h>
14#include <netdb.h>
Jens Axboe5fdd1242007-02-11 04:00:37 +010015#include <sys/poll.h>
Jens Axboe72920562008-06-02 12:30:06 +020016#include <sys/types.h>
17#include <sys/socket.h>
Jens Axboeed92ac02007-02-06 14:43:52 +010018
19#include "../fio.h"
Jens Axboeed92ac02007-02-06 14:43:52 +010020
Jens Axboeb5af8292007-03-08 12:43:13 +010021struct netio_data {
22 int listenfd;
23 int send_to_net;
Jens Axboe9cce02e2007-06-22 15:42:21 +020024 int use_splice;
Jens Axboe414c2a32009-01-16 13:21:15 +010025 int net_protocol;
Jens Axboe9cce02e2007-06-22 15:42:21 +020026 int pipes[2];
Jens Axboeb5af8292007-03-08 12:43:13 +010027 char host[64];
28 struct sockaddr_in addr;
29};
Jens Axboeed92ac02007-02-06 14:43:52 +010030
Jens Axboe664fb3b2009-01-19 13:26:36 +010031struct udp_close_msg {
32 uint32_t magic;
33 uint32_t cmd;
34};
35
36enum {
37 FIO_LINK_CLOSE = 0x89,
38 FIO_LINK_CLOSE_MAGIC = 0x6c696e6b,
39};
40
Jens Axboe371d4562009-01-19 10:17:06 +010041/*
42 * Return -1 for error and 'nr events' for a positive number
43 * of events
44 */
45static int poll_wait(struct thread_data *td, int fd, short events)
46{
47 struct pollfd pfd;
48 int ret;
49
50 while (!td->terminate) {
51 pfd.fd = fd;
52 pfd.events = events;
53 ret = poll(&pfd, 1, -1);
54 if (ret < 0) {
55 if (errno == EINTR)
Jens Axboed5b388a2009-01-19 12:38:27 +010056 break;
Jens Axboe371d4562009-01-19 10:17:06 +010057
58 td_verror(td, errno, "poll");
59 return -1;
60 } else if (!ret)
61 continue;
62
63 break;
64 }
65
66 if (pfd.revents & events)
67 return 1;
Jens Axboe371d4562009-01-19 10:17:06 +010068
69 return -1;
70}
71
Jens Axboeed92ac02007-02-06 14:43:52 +010072static int fio_netio_prep(struct thread_data *td, struct io_u *io_u)
73{
Jens Axboeb5af8292007-03-08 12:43:13 +010074 struct netio_data *nd = td->io_ops->data;
Jens Axboeed92ac02007-02-06 14:43:52 +010075
Jens Axboe7a6499d2007-02-07 09:35:29 +010076 /*
77 * Make sure we don't see spurious reads to a receiver, and vice versa
78 */
Jens Axboeb5af8292007-03-08 12:43:13 +010079 if ((nd->send_to_net && io_u->ddir == DDIR_READ) ||
80 (!nd->send_to_net && io_u->ddir == DDIR_WRITE)) {
Jens Axboee1161c32007-02-22 19:36:48 +010081 td_verror(td, EINVAL, "bad direction");
Jens Axboe7a6499d2007-02-07 09:35:29 +010082 return 1;
Jens Axboeed92ac02007-02-06 14:43:52 +010083 }
Jens Axboe7a6499d2007-02-07 09:35:29 +010084
Jens Axboef85ac252008-03-01 18:09:49 +010085 return 0;
Jens Axboeed92ac02007-02-06 14:43:52 +010086}
87
Jens Axboe5921e802008-05-30 15:02:38 +020088#ifdef FIO_HAVE_SPLICE
Jens Axboecd963e12007-06-24 21:41:46 +020089static int splice_io_u(int fdin, int fdout, unsigned int len)
Jens Axboe9cce02e2007-06-22 15:42:21 +020090{
Jens Axboe9cce02e2007-06-22 15:42:21 +020091 int bytes = 0;
92
93 while (len) {
Jens Axboecd963e12007-06-24 21:41:46 +020094 int ret = splice(fdin, NULL, fdout, NULL, len, 0);
Jens Axboe9cce02e2007-06-22 15:42:21 +020095
96 if (ret < 0) {
97 if (!bytes)
98 bytes = ret;
99
100 break;
101 } else if (!ret)
102 break;
103
104 bytes += ret;
Jens Axboef657a2f2007-06-22 20:40:10 +0200105 len -= ret;
Jens Axboe9cce02e2007-06-22 15:42:21 +0200106 }
107
108 return bytes;
109}
110
111/*
Jens Axboecd963e12007-06-24 21:41:46 +0200112 * Receive bytes from a socket and fill them into the internal pipe
113 */
114static int splice_in(struct thread_data *td, struct io_u *io_u)
115{
116 struct netio_data *nd = td->io_ops->data;
117
118 return splice_io_u(io_u->file->fd, nd->pipes[1], io_u->xfer_buflen);
119}
120
121/*
Jens Axboe9cce02e2007-06-22 15:42:21 +0200122 * Transmit 'len' bytes from the internal pipe
123 */
124static int splice_out(struct thread_data *td, struct io_u *io_u,
125 unsigned int len)
126{
127 struct netio_data *nd = td->io_ops->data;
Jens Axboecd963e12007-06-24 21:41:46 +0200128
129 return splice_io_u(nd->pipes[0], io_u->file->fd, len);
130}
131
132static int vmsplice_io_u(struct io_u *io_u, int fd, unsigned int len)
133{
134 struct iovec iov = {
135 .iov_base = io_u->xfer_buf,
136 .iov_len = len,
137 };
Jens Axboe9cce02e2007-06-22 15:42:21 +0200138 int bytes = 0;
139
Jens Axboecd963e12007-06-24 21:41:46 +0200140 while (iov.iov_len) {
141 int ret = vmsplice(fd, &iov, 1, SPLICE_F_MOVE);
Jens Axboe9cce02e2007-06-22 15:42:21 +0200142
143 if (ret < 0) {
144 if (!bytes)
145 bytes = ret;
Jens Axboe9cce02e2007-06-22 15:42:21 +0200146 break;
147 } else if (!ret)
148 break;
149
Jens Axboecd963e12007-06-24 21:41:46 +0200150 iov.iov_len -= ret;
151 iov.iov_base += ret;
Jens Axboe9cce02e2007-06-22 15:42:21 +0200152 bytes += ret;
Jens Axboe9cce02e2007-06-22 15:42:21 +0200153 }
154
155 return bytes;
Jens Axboecd963e12007-06-24 21:41:46 +0200156
Jens Axboe9cce02e2007-06-22 15:42:21 +0200157}
158
159/*
160 * vmsplice() pipe to io_u buffer
161 */
162static int vmsplice_io_u_out(struct thread_data *td, struct io_u *io_u,
163 unsigned int len)
164{
165 struct netio_data *nd = td->io_ops->data;
Jens Axboe9cce02e2007-06-22 15:42:21 +0200166
Jens Axboecd963e12007-06-24 21:41:46 +0200167 return vmsplice_io_u(io_u, nd->pipes[0], len);
Jens Axboe9cce02e2007-06-22 15:42:21 +0200168}
169
170/*
171 * vmsplice() io_u to pipe
172 */
173static int vmsplice_io_u_in(struct thread_data *td, struct io_u *io_u)
174{
175 struct netio_data *nd = td->io_ops->data;
Jens Axboe9cce02e2007-06-22 15:42:21 +0200176
Jens Axboecd963e12007-06-24 21:41:46 +0200177 return vmsplice_io_u(io_u, nd->pipes[1], io_u->xfer_buflen);
Jens Axboe9cce02e2007-06-22 15:42:21 +0200178}
179
Jens Axboecd963e12007-06-24 21:41:46 +0200180/*
181 * splice receive - transfer socket data into a pipe using splice, then map
182 * that pipe data into the io_u using vmsplice.
183 */
Jens Axboe9cce02e2007-06-22 15:42:21 +0200184static int fio_netio_splice_in(struct thread_data *td, struct io_u *io_u)
185{
186 int ret;
187
188 ret = splice_in(td, io_u);
Jens Axboecd963e12007-06-24 21:41:46 +0200189 if (ret > 0)
190 return vmsplice_io_u_out(td, io_u, ret);
Jens Axboe9cce02e2007-06-22 15:42:21 +0200191
Jens Axboecd963e12007-06-24 21:41:46 +0200192 return ret;
Jens Axboe9cce02e2007-06-22 15:42:21 +0200193}
194
Jens Axboecd963e12007-06-24 21:41:46 +0200195/*
196 * splice transmit - map data from the io_u into a pipe by using vmsplice,
197 * then transfer that pipe to a socket using splice.
198 */
Jens Axboe9cce02e2007-06-22 15:42:21 +0200199static int fio_netio_splice_out(struct thread_data *td, struct io_u *io_u)
200{
201 int ret;
202
203 ret = vmsplice_io_u_in(td, io_u);
Jens Axboecd963e12007-06-24 21:41:46 +0200204 if (ret > 0)
205 return splice_out(td, io_u, ret);
Jens Axboe9cce02e2007-06-22 15:42:21 +0200206
Jens Axboecd963e12007-06-24 21:41:46 +0200207 return ret;
Jens Axboe9cce02e2007-06-22 15:42:21 +0200208}
Jens Axboe5921e802008-05-30 15:02:38 +0200209#else
210static int fio_netio_splice_in(struct thread_data *td, struct io_u *io_u)
211{
Jens Axboeaf8771b2008-05-30 22:58:28 +0200212 errno = EOPNOTSUPP;
Jens Axboe5921e802008-05-30 15:02:38 +0200213 return -1;
214}
215
216static int fio_netio_splice_out(struct thread_data *td, struct io_u *io_u)
217{
Jens Axboeaf8771b2008-05-30 22:58:28 +0200218 errno = EOPNOTSUPP;
Jens Axboe5921e802008-05-30 15:02:38 +0200219 return -1;
220}
221#endif
Jens Axboe9cce02e2007-06-22 15:42:21 +0200222
223static int fio_netio_send(struct thread_data *td, struct io_u *io_u)
224{
Jens Axboe414c2a32009-01-16 13:21:15 +0100225 struct netio_data *nd = td->io_ops->data;
Jens Axboe8e239ca2010-08-11 10:29:12 -0400226 int ret, flags = OS_MSG_DONTWAIT;
Jens Axboe371d4562009-01-19 10:17:06 +0100227
Jens Axboe664fb3b2009-01-19 13:26:36 +0100228 do {
229 if (nd->net_protocol == IPPROTO_UDP) {
Jens Axboe62b38922009-05-11 10:37:33 +0200230 struct sockaddr *to = (struct sockaddr *) &nd->addr;
231
Jens Axboe664fb3b2009-01-19 13:26:36 +0100232 ret = sendto(io_u->file->fd, io_u->xfer_buf,
Jens Axboe62b38922009-05-11 10:37:33 +0200233 io_u->xfer_buflen, flags, to,
234 sizeof(*to));
Jens Axboe664fb3b2009-01-19 13:26:36 +0100235 } else {
236 /*
237 * if we are going to write more, set MSG_MORE
238 */
Jens Axboe5921e802008-05-30 15:02:38 +0200239#ifdef MSG_MORE
Jens Axboe664fb3b2009-01-19 13:26:36 +0100240 if (td->this_io_bytes[DDIR_WRITE] + io_u->xfer_buflen <
241 td->o.size)
242 flags |= MSG_MORE;
Jens Axboe5921e802008-05-30 15:02:38 +0200243#endif
Jens Axboe664fb3b2009-01-19 13:26:36 +0100244 ret = send(io_u->file->fd, io_u->xfer_buf,
245 io_u->xfer_buflen, flags);
246 }
247 if (ret > 0)
248 break;
Jens Axboe9cce02e2007-06-22 15:42:21 +0200249
Jens Axboe664fb3b2009-01-19 13:26:36 +0100250 ret = poll_wait(td, io_u->file->fd, POLLOUT);
251 if (ret <= 0)
252 break;
253
Jens Axboe8e239ca2010-08-11 10:29:12 -0400254 flags &= ~OS_MSG_DONTWAIT;
Jens Axboe664fb3b2009-01-19 13:26:36 +0100255 } while (1);
256
257 return ret;
258}
259
260static int is_udp_close(struct io_u *io_u, int len)
261{
262 struct udp_close_msg *msg;
263
264 if (len != sizeof(struct udp_close_msg))
265 return 0;
266
267 msg = io_u->xfer_buf;
268 if (ntohl(msg->magic) != FIO_LINK_CLOSE_MAGIC)
269 return 0;
270 if (ntohl(msg->cmd) != FIO_LINK_CLOSE)
271 return 0;
272
273 return 1;
Jens Axboe9cce02e2007-06-22 15:42:21 +0200274}
275
Jens Axboe414c2a32009-01-16 13:21:15 +0100276static int fio_netio_recv(struct thread_data *td, struct io_u *io_u)
Jens Axboe9cce02e2007-06-22 15:42:21 +0200277{
Jens Axboe414c2a32009-01-16 13:21:15 +0100278 struct netio_data *nd = td->io_ops->data;
Jens Axboe8e239ca2010-08-11 10:29:12 -0400279 int ret, flags = OS_MSG_DONTWAIT;
Jens Axboe371d4562009-01-19 10:17:06 +0100280
Jens Axboe664fb3b2009-01-19 13:26:36 +0100281 do {
282 if (nd->net_protocol == IPPROTO_UDP) {
Jens Axboed48a9792011-07-09 08:54:26 +0200283#ifdef __hpux
284 int len = sizeof(nd->addr);
285#else
Jens Axboe664fb3b2009-01-19 13:26:36 +0100286 socklen_t len = sizeof(nd->addr);
Jens Axboed48a9792011-07-09 08:54:26 +0200287#endif
Jens Axboe62b38922009-05-11 10:37:33 +0200288 struct sockaddr *from = (struct sockaddr *) &nd->addr;
Jens Axboe9cce02e2007-06-22 15:42:21 +0200289
Jens Axboe664fb3b2009-01-19 13:26:36 +0100290 ret = recvfrom(io_u->file->fd, io_u->xfer_buf,
Jens Axboe62b38922009-05-11 10:37:33 +0200291 io_u->xfer_buflen, flags, from, &len);
Jens Axboe664fb3b2009-01-19 13:26:36 +0100292 if (is_udp_close(io_u, ret)) {
293 td->done = 1;
294 return 0;
295 }
296 } else {
297 ret = recv(io_u->file->fd, io_u->xfer_buf,
298 io_u->xfer_buflen, flags);
299 }
300 if (ret > 0)
301 break;
Jens Axboe414c2a32009-01-16 13:21:15 +0100302
Jens Axboe664fb3b2009-01-19 13:26:36 +0100303 ret = poll_wait(td, io_u->file->fd, POLLIN);
304 if (ret <= 0)
305 break;
Jens Axboe8e239ca2010-08-11 10:29:12 -0400306 flags &= ~OS_MSG_DONTWAIT;
Jens Axboe664fb3b2009-01-19 13:26:36 +0100307 flags |= MSG_WAITALL;
308 } while (1);
309
310 return ret;
Jens Axboe9cce02e2007-06-22 15:42:21 +0200311}
312
Jens Axboeed92ac02007-02-06 14:43:52 +0100313static int fio_netio_queue(struct thread_data *td, struct io_u *io_u)
314{
Jens Axboe9cce02e2007-06-22 15:42:21 +0200315 struct netio_data *nd = td->io_ops->data;
316 int ret;
Jens Axboeed92ac02007-02-06 14:43:52 +0100317
Jens Axboe7101d9c2007-09-12 13:12:39 +0200318 fio_ro_check(td, io_u);
319
Jens Axboe7a6499d2007-02-07 09:35:29 +0100320 if (io_u->ddir == DDIR_WRITE) {
Jens Axboe414c2a32009-01-16 13:21:15 +0100321 if (!nd->use_splice || nd->net_protocol == IPPROTO_UDP)
Jens Axboe9cce02e2007-06-22 15:42:21 +0200322 ret = fio_netio_send(td, io_u);
Jens Axboe9cce02e2007-06-22 15:42:21 +0200323 else
Jens Axboe414c2a32009-01-16 13:21:15 +0100324 ret = fio_netio_splice_out(td, io_u);
325 } else if (io_u->ddir == DDIR_READ) {
326 if (!nd->use_splice || nd->net_protocol == IPPROTO_UDP)
327 ret = fio_netio_recv(td, io_u);
328 else
329 ret = fio_netio_splice_in(td, io_u);
Jens Axboed4f12dd2007-02-08 12:59:02 +0100330 } else
Jens Axboe7a6499d2007-02-07 09:35:29 +0100331 ret = 0; /* must be a SYNC */
Jens Axboeed92ac02007-02-06 14:43:52 +0100332
Jens Axboecec6b552007-02-06 20:15:38 +0100333 if (ret != (int) io_u->xfer_buflen) {
Jens Axboe22819ec2007-02-18 07:47:14 +0100334 if (ret >= 0) {
Jens Axboecec6b552007-02-06 20:15:38 +0100335 io_u->resid = io_u->xfer_buflen - ret;
336 io_u->error = 0;
Jens Axboe36167d82007-02-18 05:41:31 +0100337 return FIO_Q_COMPLETED;
Jens Axboe414c2a32009-01-16 13:21:15 +0100338 } else {
339 int err = errno;
340
341 if (io_u->ddir == DDIR_WRITE && err == EMSGSIZE)
342 return FIO_Q_BUSY;
343
344 io_u->error = err;
345 }
Jens Axboeed92ac02007-02-06 14:43:52 +0100346 }
347
Jens Axboe36167d82007-02-18 05:41:31 +0100348 if (io_u->error)
Jens Axboee1161c32007-02-22 19:36:48 +0100349 td_verror(td, io_u->error, "xfer");
Jens Axboeed92ac02007-02-06 14:43:52 +0100350
Jens Axboe36167d82007-02-18 05:41:31 +0100351 return FIO_Q_COMPLETED;
Jens Axboeed92ac02007-02-06 14:43:52 +0100352}
353
Jens Axboeb5af8292007-03-08 12:43:13 +0100354static int fio_netio_connect(struct thread_data *td, struct fio_file *f)
Jens Axboeed92ac02007-02-06 14:43:52 +0100355{
Jens Axboeb5af8292007-03-08 12:43:13 +0100356 struct netio_data *nd = td->io_ops->data;
Jens Axboe414c2a32009-01-16 13:21:15 +0100357 int type;
Jens Axboeed92ac02007-02-06 14:43:52 +0100358
Jens Axboe414c2a32009-01-16 13:21:15 +0100359 if (nd->net_protocol == IPPROTO_TCP)
360 type = SOCK_STREAM;
361 else
362 type = SOCK_DGRAM;
363
364 f->fd = socket(AF_INET, type, nd->net_protocol);
Jens Axboeb5af8292007-03-08 12:43:13 +0100365 if (f->fd < 0) {
366 td_verror(td, errno, "socket");
367 return 1;
Jens Axboeed92ac02007-02-06 14:43:52 +0100368 }
369
Jens Axboe414c2a32009-01-16 13:21:15 +0100370 if (nd->net_protocol == IPPROTO_UDP)
371 return 0;
372
Jens Axboeb5af8292007-03-08 12:43:13 +0100373 if (connect(f->fd, (struct sockaddr *) &nd->addr, sizeof(nd->addr)) < 0) {
374 td_verror(td, errno, "connect");
375 return 1;
Jens Axboeed92ac02007-02-06 14:43:52 +0100376 }
377
378 return 0;
Jens Axboeed92ac02007-02-06 14:43:52 +0100379}
380
Jens Axboeb5af8292007-03-08 12:43:13 +0100381static int fio_netio_accept(struct thread_data *td, struct fio_file *f)
Jens Axboe5fdd1242007-02-11 04:00:37 +0100382{
Jens Axboeb5af8292007-03-08 12:43:13 +0100383 struct netio_data *nd = td->io_ops->data;
Jens Axboed48a9792011-07-09 08:54:26 +0200384#ifdef __hpux
385 int socklen = sizeof(nd->addr);
386#else
Jens Axboeb5af8292007-03-08 12:43:13 +0100387 socklen_t socklen = sizeof(nd->addr);
Jens Axboed48a9792011-07-09 08:54:26 +0200388#endif
Jens Axboe5fdd1242007-02-11 04:00:37 +0100389
Jens Axboe414c2a32009-01-16 13:21:15 +0100390 if (nd->net_protocol == IPPROTO_UDP) {
391 f->fd = nd->listenfd;
392 return 0;
393 }
394
Jens Axboe6d861442007-03-15 09:22:23 +0100395 log_info("fio: waiting for connection\n");
Jens Axboe5fdd1242007-02-11 04:00:37 +0100396
Jens Axboe371d4562009-01-19 10:17:06 +0100397 if (poll_wait(td, nd->listenfd, POLLIN) < 0)
398 return 1;
Jens Axboe5fdd1242007-02-11 04:00:37 +0100399
Jens Axboe371d4562009-01-19 10:17:06 +0100400 f->fd = accept(nd->listenfd, (struct sockaddr *) &nd->addr, &socklen);
401 if (f->fd < 0) {
402 td_verror(td, errno, "accept");
403 return 1;
Jens Axboe5fdd1242007-02-11 04:00:37 +0100404 }
405
406 return 0;
407}
408
Jens Axboeb5af8292007-03-08 12:43:13 +0100409static int fio_netio_open_file(struct thread_data *td, struct fio_file *f)
Jens Axboeed92ac02007-02-06 14:43:52 +0100410{
Jens Axboeb5af8292007-03-08 12:43:13 +0100411 if (td_read(td))
412 return fio_netio_accept(td, f);
413 else
414 return fio_netio_connect(td, f);
415}
416
Jens Axboe664fb3b2009-01-19 13:26:36 +0100417static void fio_netio_udp_close(struct thread_data *td, struct fio_file *f)
418{
419 struct netio_data *nd = td->io_ops->data;
420 struct udp_close_msg msg;
Jens Axboe62b38922009-05-11 10:37:33 +0200421 struct sockaddr *to = (struct sockaddr *) &nd->addr;
Jens Axboe664fb3b2009-01-19 13:26:36 +0100422 int ret;
423
424 msg.magic = htonl(FIO_LINK_CLOSE_MAGIC);
425 msg.cmd = htonl(FIO_LINK_CLOSE);
426
Jens Axboe62b38922009-05-11 10:37:33 +0200427 ret = sendto(f->fd, &msg, sizeof(msg), MSG_WAITALL, to,
Jens Axboe664fb3b2009-01-19 13:26:36 +0100428 sizeof(nd->addr));
429 if (ret < 0)
430 td_verror(td, errno, "sendto udp link close");
431}
432
433static int fio_netio_close_file(struct thread_data *td, struct fio_file *f)
434{
435 struct netio_data *nd = td->io_ops->data;
436
437 /*
438 * If this is an UDP connection, notify the receiver that we are
439 * closing down the link
440 */
441 if (nd->net_protocol == IPPROTO_UDP)
442 fio_netio_udp_close(td, f);
443
444 return generic_close_file(td, f);
445}
446
Jens Axboeb5af8292007-03-08 12:43:13 +0100447static int fio_netio_setup_connect(struct thread_data *td, const char *host,
448 unsigned short port)
449{
450 struct netio_data *nd = td->io_ops->data;
451
452 nd->addr.sin_family = AF_INET;
453 nd->addr.sin_port = htons(port);
454
455 if (inet_aton(host, &nd->addr.sin_addr) != 1) {
456 struct hostent *hent;
457
458 hent = gethostbyname(host);
459 if (!hent) {
460 td_verror(td, errno, "gethostbyname");
461 return 1;
462 }
463
464 memcpy(&nd->addr.sin_addr, hent->h_addr, 4);
465 }
466
467 return 0;
468}
469
470static int fio_netio_setup_listen(struct thread_data *td, short port)
471{
472 struct netio_data *nd = td->io_ops->data;
Jens Axboe414c2a32009-01-16 13:21:15 +0100473 int fd, opt, type;
Jens Axboeed92ac02007-02-06 14:43:52 +0100474
Jens Axboe414c2a32009-01-16 13:21:15 +0100475 if (nd->net_protocol == IPPROTO_TCP)
476 type = SOCK_STREAM;
477 else
478 type = SOCK_DGRAM;
479
480 fd = socket(AF_INET, type, nd->net_protocol);
Jens Axboeed92ac02007-02-06 14:43:52 +0100481 if (fd < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100482 td_verror(td, errno, "socket");
Jens Axboeed92ac02007-02-06 14:43:52 +0100483 return 1;
484 }
485
486 opt = 1;
487 if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &opt, sizeof(opt)) < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100488 td_verror(td, errno, "setsockopt");
Jens Axboeed92ac02007-02-06 14:43:52 +0100489 return 1;
490 }
Jens Axboe6bedbfa2007-02-07 09:54:40 +0100491#ifdef SO_REUSEPORT
492 if (setsockopt(fd, SOL_SOCKET, SO_REUSEPORT, &opt, sizeof(opt)) < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100493 td_verror(td, errno, "setsockopt");
Jens Axboe6bedbfa2007-02-07 09:54:40 +0100494 return 1;
495 }
496#endif
Jens Axboeed92ac02007-02-06 14:43:52 +0100497
Jens Axboeb5af8292007-03-08 12:43:13 +0100498 nd->addr.sin_family = AF_INET;
499 nd->addr.sin_addr.s_addr = htonl(INADDR_ANY);
500 nd->addr.sin_port = htons(port);
Jens Axboeed92ac02007-02-06 14:43:52 +0100501
Jens Axboeb5af8292007-03-08 12:43:13 +0100502 if (bind(fd, (struct sockaddr *) &nd->addr, sizeof(nd->addr)) < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100503 td_verror(td, errno, "bind");
Jens Axboeed92ac02007-02-06 14:43:52 +0100504 return 1;
505 }
Jens Axboe414c2a32009-01-16 13:21:15 +0100506 if (nd->net_protocol == IPPROTO_TCP && listen(fd, 1) < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100507 td_verror(td, errno, "listen");
Jens Axboeed92ac02007-02-06 14:43:52 +0100508 return 1;
509 }
510
Jens Axboeb5af8292007-03-08 12:43:13 +0100511 nd->listenfd = fd;
512 return 0;
Jens Axboeed92ac02007-02-06 14:43:52 +0100513}
514
Jens Axboe9bec88e2007-03-02 08:55:48 +0100515static int fio_netio_init(struct thread_data *td)
Jens Axboeed92ac02007-02-06 14:43:52 +0100516{
Jens Axboeb5af8292007-03-08 12:43:13 +0100517 struct netio_data *nd = td->io_ops->data;
Jens Axboe443662e2008-05-30 13:29:03 +0200518 unsigned int port;
Jens Axboeb5af8292007-03-08 12:43:13 +0100519 char host[64], buf[128];
Jens Axboe414c2a32009-01-16 13:21:15 +0100520 char *sep, *portp, *modep;
Jens Axboeaf52b342007-03-13 10:07:47 +0100521 int ret;
Jens Axboeed92ac02007-02-06 14:43:52 +0100522
Jens Axboe413dd452007-02-23 09:26:09 +0100523 if (td_rw(td)) {
Jens Axboeed92ac02007-02-06 14:43:52 +0100524 log_err("fio: network connections must be read OR write\n");
525 return 1;
526 }
Jens Axboe16d55aa2007-05-22 09:21:37 +0200527 if (td_random(td)) {
528 log_err("fio: network IO can't be random\n");
529 return 1;
530 }
Jens Axboeed92ac02007-02-06 14:43:52 +0100531
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100532 strcpy(buf, td->o.filename);
Jens Axboeed92ac02007-02-06 14:43:52 +0100533
Jens Axboe9f9214f2007-03-13 14:02:16 +0100534 sep = strchr(buf, '/');
Jens Axboe443662e2008-05-30 13:29:03 +0200535 if (!sep)
536 goto bad_host;
Jens Axboeed92ac02007-02-06 14:43:52 +0100537
538 *sep = '\0';
539 sep++;
540 strcpy(host, buf);
Jens Axboe443662e2008-05-30 13:29:03 +0200541 if (!strlen(host))
542 goto bad_host;
543
Jens Axboe414c2a32009-01-16 13:21:15 +0100544 modep = NULL;
545 portp = sep;
546 sep = strchr(portp, '/');
547 if (sep) {
548 *sep = '\0';
549 modep = sep + 1;
550 }
551
552 port = strtol(portp, NULL, 10);
Jens Axboe443662e2008-05-30 13:29:03 +0200553 if (!port || port > 65535)
554 goto bad_host;
Jens Axboeed92ac02007-02-06 14:43:52 +0100555
Jens Axboe414c2a32009-01-16 13:21:15 +0100556 if (modep) {
Jens Axboe3f8fc5a2009-01-16 13:22:26 +0100557 if (!strncmp("tcp", modep, strlen(modep)) ||
558 !strncmp("TCP", modep, strlen(modep)))
Jens Axboe414c2a32009-01-16 13:21:15 +0100559 nd->net_protocol = IPPROTO_TCP;
Jens Axboe3f8fc5a2009-01-16 13:22:26 +0100560 else if (!strncmp("udp", modep, strlen(modep)) ||
561 !strncmp("UDP", modep, strlen(modep)))
Jens Axboe414c2a32009-01-16 13:21:15 +0100562 nd->net_protocol = IPPROTO_UDP;
563 else
564 goto bad_host;
565 } else
566 nd->net_protocol = IPPROTO_TCP;
567
Jens Axboe413dd452007-02-23 09:26:09 +0100568 if (td_read(td)) {
Jens Axboeb5af8292007-03-08 12:43:13 +0100569 nd->send_to_net = 0;
Jens Axboeed92ac02007-02-06 14:43:52 +0100570 ret = fio_netio_setup_listen(td, port);
571 } else {
Jens Axboeb5af8292007-03-08 12:43:13 +0100572 nd->send_to_net = 1;
Jens Axboeed92ac02007-02-06 14:43:52 +0100573 ret = fio_netio_setup_connect(td, host, port);
574 }
575
Jens Axboe7bb48f82007-03-27 15:30:28 +0200576 return ret;
Jens Axboe443662e2008-05-30 13:29:03 +0200577bad_host:
Jens Axboe414c2a32009-01-16 13:21:15 +0100578 log_err("fio: bad network host/port/protocol: %s\n", td->o.filename);
Jens Axboe443662e2008-05-30 13:29:03 +0200579 return 1;
Jens Axboeed92ac02007-02-06 14:43:52 +0100580}
581
Jens Axboeb5af8292007-03-08 12:43:13 +0100582static void fio_netio_cleanup(struct thread_data *td)
Jens Axboe9bec88e2007-03-02 08:55:48 +0100583{
Jens Axboeb5af8292007-03-08 12:43:13 +0100584 struct netio_data *nd = td->io_ops->data;
585
586 if (nd) {
Jens Axboe64b24cd2007-06-24 21:28:39 +0200587 if (nd->listenfd != -1)
588 close(nd->listenfd);
589 if (nd->pipes[0] != -1)
590 close(nd->pipes[0]);
591 if (nd->pipes[1] != -1)
592 close(nd->pipes[1]);
593
Jens Axboeb5af8292007-03-08 12:43:13 +0100594 free(nd);
Jens Axboeb5af8292007-03-08 12:43:13 +0100595 }
596}
597
598static int fio_netio_setup(struct thread_data *td)
599{
Jens Axboe7bb48f82007-03-27 15:30:28 +0200600 struct netio_data *nd;
Jens Axboeb5af8292007-03-08 12:43:13 +0100601
Jens Axboe7bb48f82007-03-27 15:30:28 +0200602 if (!td->io_ops->data) {
603 nd = malloc(sizeof(*nd));;
604
605 memset(nd, 0, sizeof(*nd));
606 nd->listenfd = -1;
Jens Axboe64b24cd2007-06-24 21:28:39 +0200607 nd->pipes[0] = nd->pipes[1] = -1;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200608 td->io_ops->data = nd;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200609 }
610
Jens Axboe9bec88e2007-03-02 08:55:48 +0100611 return 0;
612}
613
Jens Axboe5921e802008-05-30 15:02:38 +0200614#ifdef FIO_HAVE_SPLICE
Jens Axboe9cce02e2007-06-22 15:42:21 +0200615static int fio_netio_setup_splice(struct thread_data *td)
616{
617 struct netio_data *nd;
618
619 fio_netio_setup(td);
620
621 nd = td->io_ops->data;
622 if (nd) {
623 if (pipe(nd->pipes) < 0)
624 return 1;
625
626 nd->use_splice = 1;
627 return 0;
628 }
629
630 return 1;
631}
632
Jens Axboe5921e802008-05-30 15:02:38 +0200633static struct ioengine_ops ioengine_splice = {
634 .name = "netsplice",
635 .version = FIO_IOOPS_VERSION,
636 .prep = fio_netio_prep,
637 .queue = fio_netio_queue,
638 .setup = fio_netio_setup_splice,
639 .init = fio_netio_init,
640 .cleanup = fio_netio_cleanup,
641 .open_file = fio_netio_open_file,
642 .close_file = generic_close_file,
643 .flags = FIO_SYNCIO | FIO_DISKLESSIO | FIO_UNIDIR |
Bruce Cran03e20d62011-01-02 20:14:54 +0100644 FIO_SIGTERM | FIO_PIPEIO,
Jens Axboe5921e802008-05-30 15:02:38 +0200645};
646#endif
647
Jens Axboe9cce02e2007-06-22 15:42:21 +0200648static struct ioengine_ops ioengine_rw = {
Jens Axboeed92ac02007-02-06 14:43:52 +0100649 .name = "net",
650 .version = FIO_IOOPS_VERSION,
Jens Axboeed92ac02007-02-06 14:43:52 +0100651 .prep = fio_netio_prep,
652 .queue = fio_netio_queue,
Jens Axboeed92ac02007-02-06 14:43:52 +0100653 .setup = fio_netio_setup,
Jens Axboe9bec88e2007-03-02 08:55:48 +0100654 .init = fio_netio_init,
Jens Axboeb5af8292007-03-08 12:43:13 +0100655 .cleanup = fio_netio_cleanup,
656 .open_file = fio_netio_open_file,
Jens Axboe664fb3b2009-01-19 13:26:36 +0100657 .close_file = fio_netio_close_file,
Jens Axboead830ed2008-02-18 21:11:24 +0100658 .flags = FIO_SYNCIO | FIO_DISKLESSIO | FIO_UNIDIR |
Bruce Cran03e20d62011-01-02 20:14:54 +0100659 FIO_SIGTERM | FIO_PIPEIO,
Jens Axboeed92ac02007-02-06 14:43:52 +0100660};
661
662static void fio_init fio_netio_register(void)
663{
Jens Axboe9cce02e2007-06-22 15:42:21 +0200664 register_ioengine(&ioengine_rw);
Jens Axboe5921e802008-05-30 15:02:38 +0200665#ifdef FIO_HAVE_SPLICE
Jens Axboe9cce02e2007-06-22 15:42:21 +0200666 register_ioengine(&ioengine_splice);
Jens Axboe5921e802008-05-30 15:02:38 +0200667#endif
Jens Axboeed92ac02007-02-06 14:43:52 +0100668}
669
670static void fio_exit fio_netio_unregister(void)
671{
Jens Axboe9cce02e2007-06-22 15:42:21 +0200672 unregister_ioengine(&ioengine_rw);
Jens Axboe5921e802008-05-30 15:02:38 +0200673#ifdef FIO_HAVE_SPLICE
Jens Axboe9cce02e2007-06-22 15:42:21 +0200674 unregister_ioengine(&ioengine_splice);
Jens Axboe5921e802008-05-30 15:02:38 +0200675#endif
Jens Axboeed92ac02007-02-06 14:43:52 +0100676}