blob: 93693f6d803233c7142e97305d8cecd32bc4ee90 [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 Axboe664fb3b2009-01-19 13:26:36 +0100226 int ret, flags = 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) {
230 ret = sendto(io_u->file->fd, io_u->xfer_buf,
231 io_u->xfer_buflen, flags, &nd->addr,
232 sizeof(nd->addr));
233 } else {
234 /*
235 * if we are going to write more, set MSG_MORE
236 */
Jens Axboe5921e802008-05-30 15:02:38 +0200237#ifdef MSG_MORE
Jens Axboe664fb3b2009-01-19 13:26:36 +0100238 if (td->this_io_bytes[DDIR_WRITE] + io_u->xfer_buflen <
239 td->o.size)
240 flags |= MSG_MORE;
Jens Axboe5921e802008-05-30 15:02:38 +0200241#endif
Jens Axboe664fb3b2009-01-19 13:26:36 +0100242 ret = send(io_u->file->fd, io_u->xfer_buf,
243 io_u->xfer_buflen, flags);
244 }
245 if (ret > 0)
246 break;
Jens Axboe9cce02e2007-06-22 15:42:21 +0200247
Jens Axboe664fb3b2009-01-19 13:26:36 +0100248 ret = poll_wait(td, io_u->file->fd, POLLOUT);
249 if (ret <= 0)
250 break;
251
252 flags &= ~MSG_DONTWAIT;
253 } while (1);
254
255 return ret;
256}
257
258static int is_udp_close(struct io_u *io_u, int len)
259{
260 struct udp_close_msg *msg;
261
262 if (len != sizeof(struct udp_close_msg))
263 return 0;
264
265 msg = io_u->xfer_buf;
266 if (ntohl(msg->magic) != FIO_LINK_CLOSE_MAGIC)
267 return 0;
268 if (ntohl(msg->cmd) != FIO_LINK_CLOSE)
269 return 0;
270
271 return 1;
Jens Axboe9cce02e2007-06-22 15:42:21 +0200272}
273
Jens Axboe414c2a32009-01-16 13:21:15 +0100274static int fio_netio_recv(struct thread_data *td, struct io_u *io_u)
Jens Axboe9cce02e2007-06-22 15:42:21 +0200275{
Jens Axboe414c2a32009-01-16 13:21:15 +0100276 struct netio_data *nd = td->io_ops->data;
Jens Axboe664fb3b2009-01-19 13:26:36 +0100277 int ret, flags = MSG_DONTWAIT;
Jens Axboe371d4562009-01-19 10:17:06 +0100278
Jens Axboe664fb3b2009-01-19 13:26:36 +0100279 do {
280 if (nd->net_protocol == IPPROTO_UDP) {
281 socklen_t len = sizeof(nd->addr);
Jens Axboe9cce02e2007-06-22 15:42:21 +0200282
Jens Axboe664fb3b2009-01-19 13:26:36 +0100283 ret = recvfrom(io_u->file->fd, io_u->xfer_buf,
284 io_u->xfer_buflen, flags, &nd->addr,
285 &len);
286 if (is_udp_close(io_u, ret)) {
287 td->done = 1;
288 return 0;
289 }
290 } else {
291 ret = recv(io_u->file->fd, io_u->xfer_buf,
292 io_u->xfer_buflen, flags);
293 }
294 if (ret > 0)
295 break;
Jens Axboe414c2a32009-01-16 13:21:15 +0100296
Jens Axboe664fb3b2009-01-19 13:26:36 +0100297 ret = poll_wait(td, io_u->file->fd, POLLIN);
298 if (ret <= 0)
299 break;
300 flags &= ~MSG_DONTWAIT;
301 flags |= MSG_WAITALL;
302 } while (1);
303
304 return ret;
Jens Axboe9cce02e2007-06-22 15:42:21 +0200305}
306
Jens Axboeed92ac02007-02-06 14:43:52 +0100307static int fio_netio_queue(struct thread_data *td, struct io_u *io_u)
308{
Jens Axboe9cce02e2007-06-22 15:42:21 +0200309 struct netio_data *nd = td->io_ops->data;
310 int ret;
Jens Axboeed92ac02007-02-06 14:43:52 +0100311
Jens Axboe7101d9c2007-09-12 13:12:39 +0200312 fio_ro_check(td, io_u);
313
Jens Axboe7a6499d2007-02-07 09:35:29 +0100314 if (io_u->ddir == DDIR_WRITE) {
Jens Axboe414c2a32009-01-16 13:21:15 +0100315 if (!nd->use_splice || nd->net_protocol == IPPROTO_UDP)
Jens Axboe9cce02e2007-06-22 15:42:21 +0200316 ret = fio_netio_send(td, io_u);
Jens Axboe9cce02e2007-06-22 15:42:21 +0200317 else
Jens Axboe414c2a32009-01-16 13:21:15 +0100318 ret = fio_netio_splice_out(td, io_u);
319 } else if (io_u->ddir == DDIR_READ) {
320 if (!nd->use_splice || nd->net_protocol == IPPROTO_UDP)
321 ret = fio_netio_recv(td, io_u);
322 else
323 ret = fio_netio_splice_in(td, io_u);
Jens Axboed4f12dd2007-02-08 12:59:02 +0100324 } else
Jens Axboe7a6499d2007-02-07 09:35:29 +0100325 ret = 0; /* must be a SYNC */
Jens Axboeed92ac02007-02-06 14:43:52 +0100326
Jens Axboecec6b552007-02-06 20:15:38 +0100327 if (ret != (int) io_u->xfer_buflen) {
Jens Axboe22819ec2007-02-18 07:47:14 +0100328 if (ret >= 0) {
Jens Axboecec6b552007-02-06 20:15:38 +0100329 io_u->resid = io_u->xfer_buflen - ret;
330 io_u->error = 0;
Jens Axboe36167d82007-02-18 05:41:31 +0100331 return FIO_Q_COMPLETED;
Jens Axboe414c2a32009-01-16 13:21:15 +0100332 } else {
333 int err = errno;
334
335 if (io_u->ddir == DDIR_WRITE && err == EMSGSIZE)
336 return FIO_Q_BUSY;
337
338 io_u->error = err;
339 }
Jens Axboeed92ac02007-02-06 14:43:52 +0100340 }
341
Jens Axboe36167d82007-02-18 05:41:31 +0100342 if (io_u->error)
Jens Axboee1161c32007-02-22 19:36:48 +0100343 td_verror(td, io_u->error, "xfer");
Jens Axboeed92ac02007-02-06 14:43:52 +0100344
Jens Axboe36167d82007-02-18 05:41:31 +0100345 return FIO_Q_COMPLETED;
Jens Axboeed92ac02007-02-06 14:43:52 +0100346}
347
Jens Axboeb5af8292007-03-08 12:43:13 +0100348static int fio_netio_connect(struct thread_data *td, struct fio_file *f)
Jens Axboeed92ac02007-02-06 14:43:52 +0100349{
Jens Axboeb5af8292007-03-08 12:43:13 +0100350 struct netio_data *nd = td->io_ops->data;
Jens Axboe414c2a32009-01-16 13:21:15 +0100351 int type;
Jens Axboeed92ac02007-02-06 14:43:52 +0100352
Jens Axboe414c2a32009-01-16 13:21:15 +0100353 if (nd->net_protocol == IPPROTO_TCP)
354 type = SOCK_STREAM;
355 else
356 type = SOCK_DGRAM;
357
358 f->fd = socket(AF_INET, type, nd->net_protocol);
Jens Axboeb5af8292007-03-08 12:43:13 +0100359 if (f->fd < 0) {
360 td_verror(td, errno, "socket");
361 return 1;
Jens Axboeed92ac02007-02-06 14:43:52 +0100362 }
363
Jens Axboe414c2a32009-01-16 13:21:15 +0100364 if (nd->net_protocol == IPPROTO_UDP)
365 return 0;
366
Jens Axboeb5af8292007-03-08 12:43:13 +0100367 if (connect(f->fd, (struct sockaddr *) &nd->addr, sizeof(nd->addr)) < 0) {
368 td_verror(td, errno, "connect");
369 return 1;
Jens Axboeed92ac02007-02-06 14:43:52 +0100370 }
371
372 return 0;
Jens Axboeed92ac02007-02-06 14:43:52 +0100373}
374
Jens Axboeb5af8292007-03-08 12:43:13 +0100375static int fio_netio_accept(struct thread_data *td, struct fio_file *f)
Jens Axboe5fdd1242007-02-11 04:00:37 +0100376{
Jens Axboeb5af8292007-03-08 12:43:13 +0100377 struct netio_data *nd = td->io_ops->data;
378 socklen_t socklen = sizeof(nd->addr);
Jens Axboe5fdd1242007-02-11 04:00:37 +0100379
Jens Axboe414c2a32009-01-16 13:21:15 +0100380 if (nd->net_protocol == IPPROTO_UDP) {
381 f->fd = nd->listenfd;
382 return 0;
383 }
384
Jens Axboe6d861442007-03-15 09:22:23 +0100385 log_info("fio: waiting for connection\n");
Jens Axboe5fdd1242007-02-11 04:00:37 +0100386
Jens Axboe371d4562009-01-19 10:17:06 +0100387 if (poll_wait(td, nd->listenfd, POLLIN) < 0)
388 return 1;
Jens Axboe5fdd1242007-02-11 04:00:37 +0100389
Jens Axboe371d4562009-01-19 10:17:06 +0100390 f->fd = accept(nd->listenfd, (struct sockaddr *) &nd->addr, &socklen);
391 if (f->fd < 0) {
392 td_verror(td, errno, "accept");
393 return 1;
Jens Axboe5fdd1242007-02-11 04:00:37 +0100394 }
395
396 return 0;
397}
398
Jens Axboeb5af8292007-03-08 12:43:13 +0100399static int fio_netio_open_file(struct thread_data *td, struct fio_file *f)
Jens Axboeed92ac02007-02-06 14:43:52 +0100400{
Jens Axboeb5af8292007-03-08 12:43:13 +0100401 if (td_read(td))
402 return fio_netio_accept(td, f);
403 else
404 return fio_netio_connect(td, f);
405}
406
Jens Axboe664fb3b2009-01-19 13:26:36 +0100407static void fio_netio_udp_close(struct thread_data *td, struct fio_file *f)
408{
409 struct netio_data *nd = td->io_ops->data;
410 struct udp_close_msg msg;
411 int ret;
412
413 msg.magic = htonl(FIO_LINK_CLOSE_MAGIC);
414 msg.cmd = htonl(FIO_LINK_CLOSE);
415
416 ret = sendto(f->fd, &msg, sizeof(msg), MSG_WAITALL, &nd->addr,
417 sizeof(nd->addr));
418 if (ret < 0)
419 td_verror(td, errno, "sendto udp link close");
420}
421
422static int fio_netio_close_file(struct thread_data *td, struct fio_file *f)
423{
424 struct netio_data *nd = td->io_ops->data;
425
426 /*
427 * If this is an UDP connection, notify the receiver that we are
428 * closing down the link
429 */
430 if (nd->net_protocol == IPPROTO_UDP)
431 fio_netio_udp_close(td, f);
432
433 return generic_close_file(td, f);
434}
435
Jens Axboeb5af8292007-03-08 12:43:13 +0100436static int fio_netio_setup_connect(struct thread_data *td, const char *host,
437 unsigned short port)
438{
439 struct netio_data *nd = td->io_ops->data;
440
441 nd->addr.sin_family = AF_INET;
442 nd->addr.sin_port = htons(port);
443
444 if (inet_aton(host, &nd->addr.sin_addr) != 1) {
445 struct hostent *hent;
446
447 hent = gethostbyname(host);
448 if (!hent) {
449 td_verror(td, errno, "gethostbyname");
450 return 1;
451 }
452
453 memcpy(&nd->addr.sin_addr, hent->h_addr, 4);
454 }
455
456 return 0;
457}
458
459static int fio_netio_setup_listen(struct thread_data *td, short port)
460{
461 struct netio_data *nd = td->io_ops->data;
Jens Axboe414c2a32009-01-16 13:21:15 +0100462 int fd, opt, type;
Jens Axboeed92ac02007-02-06 14:43:52 +0100463
Jens Axboe414c2a32009-01-16 13:21:15 +0100464 if (nd->net_protocol == IPPROTO_TCP)
465 type = SOCK_STREAM;
466 else
467 type = SOCK_DGRAM;
468
469 fd = socket(AF_INET, type, nd->net_protocol);
Jens Axboeed92ac02007-02-06 14:43:52 +0100470 if (fd < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100471 td_verror(td, errno, "socket");
Jens Axboeed92ac02007-02-06 14:43:52 +0100472 return 1;
473 }
474
475 opt = 1;
476 if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &opt, sizeof(opt)) < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100477 td_verror(td, errno, "setsockopt");
Jens Axboeed92ac02007-02-06 14:43:52 +0100478 return 1;
479 }
Jens Axboe6bedbfa2007-02-07 09:54:40 +0100480#ifdef SO_REUSEPORT
481 if (setsockopt(fd, SOL_SOCKET, SO_REUSEPORT, &opt, sizeof(opt)) < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100482 td_verror(td, errno, "setsockopt");
Jens Axboe6bedbfa2007-02-07 09:54:40 +0100483 return 1;
484 }
485#endif
Jens Axboeed92ac02007-02-06 14:43:52 +0100486
Jens Axboeb5af8292007-03-08 12:43:13 +0100487 nd->addr.sin_family = AF_INET;
488 nd->addr.sin_addr.s_addr = htonl(INADDR_ANY);
489 nd->addr.sin_port = htons(port);
Jens Axboeed92ac02007-02-06 14:43:52 +0100490
Jens Axboeb5af8292007-03-08 12:43:13 +0100491 if (bind(fd, (struct sockaddr *) &nd->addr, sizeof(nd->addr)) < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100492 td_verror(td, errno, "bind");
Jens Axboeed92ac02007-02-06 14:43:52 +0100493 return 1;
494 }
Jens Axboe414c2a32009-01-16 13:21:15 +0100495 if (nd->net_protocol == IPPROTO_TCP && listen(fd, 1) < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100496 td_verror(td, errno, "listen");
Jens Axboeed92ac02007-02-06 14:43:52 +0100497 return 1;
498 }
499
Jens Axboeb5af8292007-03-08 12:43:13 +0100500 nd->listenfd = fd;
501 return 0;
Jens Axboeed92ac02007-02-06 14:43:52 +0100502}
503
Jens Axboe9bec88e2007-03-02 08:55:48 +0100504static int fio_netio_init(struct thread_data *td)
Jens Axboeed92ac02007-02-06 14:43:52 +0100505{
Jens Axboeb5af8292007-03-08 12:43:13 +0100506 struct netio_data *nd = td->io_ops->data;
Jens Axboe443662e2008-05-30 13:29:03 +0200507 unsigned int port;
Jens Axboeb5af8292007-03-08 12:43:13 +0100508 char host[64], buf[128];
Jens Axboe414c2a32009-01-16 13:21:15 +0100509 char *sep, *portp, *modep;
Jens Axboeaf52b342007-03-13 10:07:47 +0100510 int ret;
Jens Axboeed92ac02007-02-06 14:43:52 +0100511
Jens Axboe413dd452007-02-23 09:26:09 +0100512 if (td_rw(td)) {
Jens Axboeed92ac02007-02-06 14:43:52 +0100513 log_err("fio: network connections must be read OR write\n");
514 return 1;
515 }
Jens Axboe16d55aa2007-05-22 09:21:37 +0200516 if (td_random(td)) {
517 log_err("fio: network IO can't be random\n");
518 return 1;
519 }
Jens Axboeed92ac02007-02-06 14:43:52 +0100520
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100521 strcpy(buf, td->o.filename);
Jens Axboeed92ac02007-02-06 14:43:52 +0100522
Jens Axboe9f9214f2007-03-13 14:02:16 +0100523 sep = strchr(buf, '/');
Jens Axboe443662e2008-05-30 13:29:03 +0200524 if (!sep)
525 goto bad_host;
Jens Axboeed92ac02007-02-06 14:43:52 +0100526
527 *sep = '\0';
528 sep++;
529 strcpy(host, buf);
Jens Axboe443662e2008-05-30 13:29:03 +0200530 if (!strlen(host))
531 goto bad_host;
532
Jens Axboe414c2a32009-01-16 13:21:15 +0100533 modep = NULL;
534 portp = sep;
535 sep = strchr(portp, '/');
536 if (sep) {
537 *sep = '\0';
538 modep = sep + 1;
539 }
540
541 port = strtol(portp, NULL, 10);
Jens Axboe443662e2008-05-30 13:29:03 +0200542 if (!port || port > 65535)
543 goto bad_host;
Jens Axboeed92ac02007-02-06 14:43:52 +0100544
Jens Axboe414c2a32009-01-16 13:21:15 +0100545 if (modep) {
Jens Axboe3f8fc5a2009-01-16 13:22:26 +0100546 if (!strncmp("tcp", modep, strlen(modep)) ||
547 !strncmp("TCP", modep, strlen(modep)))
Jens Axboe414c2a32009-01-16 13:21:15 +0100548 nd->net_protocol = IPPROTO_TCP;
Jens Axboe3f8fc5a2009-01-16 13:22:26 +0100549 else if (!strncmp("udp", modep, strlen(modep)) ||
550 !strncmp("UDP", modep, strlen(modep)))
Jens Axboe414c2a32009-01-16 13:21:15 +0100551 nd->net_protocol = IPPROTO_UDP;
552 else
553 goto bad_host;
554 } else
555 nd->net_protocol = IPPROTO_TCP;
556
Jens Axboe413dd452007-02-23 09:26:09 +0100557 if (td_read(td)) {
Jens Axboeb5af8292007-03-08 12:43:13 +0100558 nd->send_to_net = 0;
Jens Axboeed92ac02007-02-06 14:43:52 +0100559 ret = fio_netio_setup_listen(td, port);
560 } else {
Jens Axboeb5af8292007-03-08 12:43:13 +0100561 nd->send_to_net = 1;
Jens Axboeed92ac02007-02-06 14:43:52 +0100562 ret = fio_netio_setup_connect(td, host, port);
563 }
564
Jens Axboe7bb48f82007-03-27 15:30:28 +0200565 return ret;
Jens Axboe443662e2008-05-30 13:29:03 +0200566bad_host:
Jens Axboe414c2a32009-01-16 13:21:15 +0100567 log_err("fio: bad network host/port/protocol: %s\n", td->o.filename);
Jens Axboe443662e2008-05-30 13:29:03 +0200568 return 1;
Jens Axboeed92ac02007-02-06 14:43:52 +0100569}
570
Jens Axboeb5af8292007-03-08 12:43:13 +0100571static void fio_netio_cleanup(struct thread_data *td)
Jens Axboe9bec88e2007-03-02 08:55:48 +0100572{
Jens Axboeb5af8292007-03-08 12:43:13 +0100573 struct netio_data *nd = td->io_ops->data;
574
575 if (nd) {
Jens Axboe64b24cd2007-06-24 21:28:39 +0200576 if (nd->listenfd != -1)
577 close(nd->listenfd);
578 if (nd->pipes[0] != -1)
579 close(nd->pipes[0]);
580 if (nd->pipes[1] != -1)
581 close(nd->pipes[1]);
582
Jens Axboeb5af8292007-03-08 12:43:13 +0100583 free(nd);
Jens Axboeb5af8292007-03-08 12:43:13 +0100584 }
585}
586
587static int fio_netio_setup(struct thread_data *td)
588{
Jens Axboe7bb48f82007-03-27 15:30:28 +0200589 struct netio_data *nd;
Jens Axboeb5af8292007-03-08 12:43:13 +0100590
Jens Axboe7bb48f82007-03-27 15:30:28 +0200591 if (!td->io_ops->data) {
592 nd = malloc(sizeof(*nd));;
593
594 memset(nd, 0, sizeof(*nd));
595 nd->listenfd = -1;
Jens Axboe64b24cd2007-06-24 21:28:39 +0200596 nd->pipes[0] = nd->pipes[1] = -1;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200597 td->io_ops->data = nd;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200598 }
599
Jens Axboe9bec88e2007-03-02 08:55:48 +0100600 return 0;
601}
602
Jens Axboe5921e802008-05-30 15:02:38 +0200603#ifdef FIO_HAVE_SPLICE
Jens Axboe9cce02e2007-06-22 15:42:21 +0200604static int fio_netio_setup_splice(struct thread_data *td)
605{
606 struct netio_data *nd;
607
608 fio_netio_setup(td);
609
610 nd = td->io_ops->data;
611 if (nd) {
612 if (pipe(nd->pipes) < 0)
613 return 1;
614
615 nd->use_splice = 1;
616 return 0;
617 }
618
619 return 1;
620}
621
Jens Axboe5921e802008-05-30 15:02:38 +0200622static struct ioengine_ops ioengine_splice = {
623 .name = "netsplice",
624 .version = FIO_IOOPS_VERSION,
625 .prep = fio_netio_prep,
626 .queue = fio_netio_queue,
627 .setup = fio_netio_setup_splice,
628 .init = fio_netio_init,
629 .cleanup = fio_netio_cleanup,
630 .open_file = fio_netio_open_file,
631 .close_file = generic_close_file,
632 .flags = FIO_SYNCIO | FIO_DISKLESSIO | FIO_UNIDIR |
633 FIO_SIGQUIT,
634};
635#endif
636
Jens Axboe9cce02e2007-06-22 15:42:21 +0200637static struct ioengine_ops ioengine_rw = {
Jens Axboeed92ac02007-02-06 14:43:52 +0100638 .name = "net",
639 .version = FIO_IOOPS_VERSION,
Jens Axboeed92ac02007-02-06 14:43:52 +0100640 .prep = fio_netio_prep,
641 .queue = fio_netio_queue,
Jens Axboeed92ac02007-02-06 14:43:52 +0100642 .setup = fio_netio_setup,
Jens Axboe9bec88e2007-03-02 08:55:48 +0100643 .init = fio_netio_init,
Jens Axboeb5af8292007-03-08 12:43:13 +0100644 .cleanup = fio_netio_cleanup,
645 .open_file = fio_netio_open_file,
Jens Axboe664fb3b2009-01-19 13:26:36 +0100646 .close_file = fio_netio_close_file,
Jens Axboead830ed2008-02-18 21:11:24 +0100647 .flags = FIO_SYNCIO | FIO_DISKLESSIO | FIO_UNIDIR |
648 FIO_SIGQUIT,
Jens Axboeed92ac02007-02-06 14:43:52 +0100649};
650
651static void fio_init fio_netio_register(void)
652{
Jens Axboe9cce02e2007-06-22 15:42:21 +0200653 register_ioengine(&ioengine_rw);
Jens Axboe5921e802008-05-30 15:02:38 +0200654#ifdef FIO_HAVE_SPLICE
Jens Axboe9cce02e2007-06-22 15:42:21 +0200655 register_ioengine(&ioengine_splice);
Jens Axboe5921e802008-05-30 15:02:38 +0200656#endif
Jens Axboeed92ac02007-02-06 14:43:52 +0100657}
658
659static void fio_exit fio_netio_unregister(void)
660{
Jens Axboe9cce02e2007-06-22 15:42:21 +0200661 unregister_ioengine(&ioengine_rw);
Jens Axboe5921e802008-05-30 15:02:38 +0200662#ifdef FIO_HAVE_SPLICE
Jens Axboe9cce02e2007-06-22 15:42:21 +0200663 unregister_ioengine(&ioengine_splice);
Jens Axboe5921e802008-05-30 15:02:38 +0200664#endif
Jens Axboeed92ac02007-02-06 14:43:52 +0100665}