blob: c30f7f5bb6131f010c06ac9008bf3a06829b0e7d [file] [log] [blame]
Jens Axboeed92ac02007-02-06 14:43:52 +01001/*
Jens Axboed4f12dd2007-02-08 12:59:02 +01002 * Transfer data over the net.
Jens Axboeed92ac02007-02-06 14:43:52 +01003 */
4#include <stdio.h>
5#include <stdlib.h>
6#include <unistd.h>
7#include <errno.h>
8#include <assert.h>
9#include <netinet/in.h>
10#include <arpa/inet.h>
11#include <netdb.h>
Jens Axboe5fdd1242007-02-11 04:00:37 +010012#include <sys/poll.h>
Jens Axboeed92ac02007-02-06 14:43:52 +010013
14#include "../fio.h"
15#include "../os.h"
16
17struct net_data {
18 int send_to_net;
19 struct io_u *last_io_u;
20};
21
22static int fio_netio_getevents(struct thread_data *td, int fio_unused min,
23 int max, struct timespec fio_unused *t)
24{
25 assert(max <= 1);
26
27 /*
28 * we can only have one finished io_u for sync io, since the depth
29 * is always 1
30 */
31 if (list_empty(&td->io_u_busylist))
32 return 0;
33
34 return 1;
35}
36
37static struct io_u *fio_netio_event(struct thread_data *td, int event)
38{
39 struct net_data *nd = td->io_ops->data;
40
41 assert(event == 0);
42
43 return nd->last_io_u;
44}
45
46static int fio_netio_prep(struct thread_data *td, struct io_u *io_u)
47{
48 struct net_data *nd = td->io_ops->data;
49 struct fio_file *f = io_u->file;
50
Jens Axboe7a6499d2007-02-07 09:35:29 +010051 /*
52 * Make sure we don't see spurious reads to a receiver, and vice versa
53 */
54 if ((nd->send_to_net && io_u->ddir == DDIR_READ) ||
55 (!nd->send_to_net && io_u->ddir == DDIR_WRITE)) {
56 printf("boo!\n");
57 td_verror(td, EINVAL);
58 return 1;
Jens Axboeed92ac02007-02-06 14:43:52 +010059 }
Jens Axboe7a6499d2007-02-07 09:35:29 +010060
Jens Axboeed92ac02007-02-06 14:43:52 +010061 if (io_u->ddir == DDIR_SYNC)
62 return 0;
63 if (io_u->offset == f->last_completed_pos)
64 return 0;
65
Jens Axboee01547d2007-02-06 19:16:01 +010066 /*
67 * If offset is different from last end position, it's a seek.
68 * As network io is purely sequential, we don't allow seeks.
69 */
Jens Axboeed92ac02007-02-06 14:43:52 +010070 td_verror(td, EINVAL);
71 return 1;
72}
73
74static int fio_netio_queue(struct thread_data *td, struct io_u *io_u)
75{
76 struct net_data *nd = td->io_ops->data;
77 struct fio_file *f = io_u->file;
Jens Axboed4f12dd2007-02-08 12:59:02 +010078 int ret, flags = 0;
Jens Axboeed92ac02007-02-06 14:43:52 +010079
Jens Axboe7a6499d2007-02-07 09:35:29 +010080 if (io_u->ddir == DDIR_WRITE) {
Jens Axboe7a6499d2007-02-07 09:35:29 +010081 /*
82 * if we are going to write more, set MSG_MORE
83 */
84 if (td->this_io_bytes[DDIR_WRITE] + io_u->xfer_buflen <
85 td->io_size)
86 flags = MSG_MORE;
87
88 ret = send(f->fd, io_u->xfer_buf, io_u->xfer_buflen, flags);
Jens Axboed4f12dd2007-02-08 12:59:02 +010089 } else if (io_u->ddir == DDIR_READ) {
90 flags = MSG_WAITALL;
91 ret = recv(f->fd, io_u->xfer_buf, io_u->xfer_buflen, flags);
92 } else
Jens Axboe7a6499d2007-02-07 09:35:29 +010093 ret = 0; /* must be a SYNC */
Jens Axboeed92ac02007-02-06 14:43:52 +010094
Jens Axboecec6b552007-02-06 20:15:38 +010095 if (ret != (int) io_u->xfer_buflen) {
Jens Axboeed92ac02007-02-06 14:43:52 +010096 if (ret > 0) {
Jens Axboecec6b552007-02-06 20:15:38 +010097 io_u->resid = io_u->xfer_buflen - ret;
98 io_u->error = 0;
99 return ret;
Jens Axboeed92ac02007-02-06 14:43:52 +0100100 } else
101 io_u->error = errno;
102 }
103
104 if (!io_u->error)
105 nd->last_io_u = io_u;
Jens Axboe95bcd812007-02-11 01:01:57 +0100106 else
107 td_verror(td, io_u->error);
Jens Axboeed92ac02007-02-06 14:43:52 +0100108
109 return io_u->error;
110}
111
112static int fio_netio_setup_connect(struct thread_data *td, const char *host,
Jens Axboee01547d2007-02-06 19:16:01 +0100113 unsigned short port)
Jens Axboeed92ac02007-02-06 14:43:52 +0100114{
115 struct sockaddr_in addr;
116 struct fio_file *f;
Jens Axboe2fc26982007-02-06 19:27:27 +0100117 int i;
Jens Axboeed92ac02007-02-06 14:43:52 +0100118
119 memset(&addr, 0, sizeof(addr));
120 addr.sin_family = AF_INET;
Jens Axboee01547d2007-02-06 19:16:01 +0100121 addr.sin_port = htons(port);
Jens Axboeed92ac02007-02-06 14:43:52 +0100122
123 if (inet_aton(host, &addr.sin_addr) != 1) {
Jens Axboe7a6499d2007-02-07 09:35:29 +0100124 struct hostent *hent;
Jens Axboeed92ac02007-02-06 14:43:52 +0100125
Jens Axboe7a6499d2007-02-07 09:35:29 +0100126 hent = gethostbyname(host);
Jens Axboeed92ac02007-02-06 14:43:52 +0100127 if (!hent) {
Jens Axboe6bedbfa2007-02-07 09:54:40 +0100128 td_verror(td, errno);
Jens Axboeed92ac02007-02-06 14:43:52 +0100129 return 1;
130 }
131
132 memcpy(&addr.sin_addr, hent->h_addr, 4);
133 }
134
Jens Axboe2fc26982007-02-06 19:27:27 +0100135 for_each_file(td, f, i) {
Jens Axboe6bedbfa2007-02-07 09:54:40 +0100136 f->fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
Jens Axboe2fc26982007-02-06 19:27:27 +0100137 if (f->fd < 0) {
Jens Axboe6bedbfa2007-02-07 09:54:40 +0100138 td_verror(td, errno);
Jens Axboe2fc26982007-02-06 19:27:27 +0100139 return 1;
140 }
Jens Axboeed92ac02007-02-06 14:43:52 +0100141
Jens Axboe2fc26982007-02-06 19:27:27 +0100142 if (connect(f->fd, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
Jens Axboe6bedbfa2007-02-07 09:54:40 +0100143 td_verror(td, errno);
Jens Axboe2fc26982007-02-06 19:27:27 +0100144 return 1;
145 }
Jens Axboeed92ac02007-02-06 14:43:52 +0100146 }
147
148 return 0;
149
150}
151
Jens Axboe5fdd1242007-02-11 04:00:37 +0100152static int fio_netio_accept_connections(struct thread_data *td, int fd,
153 struct sockaddr_in *addr)
154{
155 socklen_t socklen = sizeof(*addr);
156 unsigned int accepts = 0;
157 struct pollfd pfd;
158
159 fprintf(f_out, "fio: waiting for %u connections\n", td->nr_files);
160
161 /*
162 * Accept loop. poll for incoming events, accept them. Repeat until we
163 * have all connections.
164 */
165 while (!td->terminate && accepts < td->nr_files) {
166 struct fio_file *f;
167 int ret, i;
168
169 pfd.fd = fd;
170 pfd.events = POLLIN;
171
172 ret = poll(&pfd, 1, -1);
173 if (ret < 0) {
174 if (errno == EINTR)
175 continue;
176
177 td_verror(td, errno);
178 break;
179 } else if (!ret)
180 continue;
181
182 for_each_file(td, f, i) {
183 if (f->fd != -1)
184 continue;
185
186 f->fd = accept(fd, (struct sockaddr *) addr, &socklen);
187 if (f->fd < 0) {
188 td_verror(td, errno);
189 return 1;
190 }
191 accepts++;
192 break;
193 }
194 }
195
196 return 0;
197}
198
Jens Axboee01547d2007-02-06 19:16:01 +0100199static int fio_netio_setup_listen(struct thread_data *td, unsigned short port)
Jens Axboeed92ac02007-02-06 14:43:52 +0100200{
201 struct sockaddr_in addr;
Jens Axboe5fdd1242007-02-11 04:00:37 +0100202 int fd, opt;
Jens Axboeed92ac02007-02-06 14:43:52 +0100203
Jens Axboe6bedbfa2007-02-07 09:54:40 +0100204 fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
Jens Axboeed92ac02007-02-06 14:43:52 +0100205 if (fd < 0) {
Jens Axboe6bedbfa2007-02-07 09:54:40 +0100206 td_verror(td, errno);
Jens Axboeed92ac02007-02-06 14:43:52 +0100207 return 1;
208 }
209
210 opt = 1;
211 if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &opt, sizeof(opt)) < 0) {
Jens Axboe6bedbfa2007-02-07 09:54:40 +0100212 td_verror(td, errno);
Jens Axboeed92ac02007-02-06 14:43:52 +0100213 return 1;
214 }
Jens Axboe6bedbfa2007-02-07 09:54:40 +0100215#ifdef SO_REUSEPORT
216 if (setsockopt(fd, SOL_SOCKET, SO_REUSEPORT, &opt, sizeof(opt)) < 0) {
217 td_verror(td, errno);
218 return 1;
219 }
220#endif
Jens Axboeed92ac02007-02-06 14:43:52 +0100221
222 memset(&addr, 0, sizeof(addr));
223 addr.sin_family = AF_INET;
224 addr.sin_addr.s_addr = htonl(INADDR_ANY);
Jens Axboee01547d2007-02-06 19:16:01 +0100225 addr.sin_port = htons(port);
Jens Axboeed92ac02007-02-06 14:43:52 +0100226
227 if (bind(fd, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
Jens Axboe6bedbfa2007-02-07 09:54:40 +0100228 td_verror(td, errno);
Jens Axboeed92ac02007-02-06 14:43:52 +0100229 return 1;
230 }
231 if (listen(fd, 1) < 0) {
Jens Axboe6bedbfa2007-02-07 09:54:40 +0100232 td_verror(td, errno);
Jens Axboeed92ac02007-02-06 14:43:52 +0100233 return 1;
234 }
235
Jens Axboe5fdd1242007-02-11 04:00:37 +0100236 return fio_netio_accept_connections(td, fd, &addr);
Jens Axboeed92ac02007-02-06 14:43:52 +0100237}
238
239static int fio_netio_setup(struct thread_data *td)
240{
Jens Axboee01547d2007-02-06 19:16:01 +0100241 char host[64], buf[128];
Jens Axboeed92ac02007-02-06 14:43:52 +0100242 struct net_data *nd;
Jens Axboee01547d2007-02-06 19:16:01 +0100243 unsigned short port;
Jens Axboe2fc26982007-02-06 19:27:27 +0100244 struct fio_file *f;
Jens Axboeed92ac02007-02-06 14:43:52 +0100245 char *sep;
Jens Axboe2fc26982007-02-06 19:27:27 +0100246 int ret, i;
Jens Axboeed92ac02007-02-06 14:43:52 +0100247
Jens Axboe7a6499d2007-02-07 09:35:29 +0100248 if (!td->total_file_size) {
249 log_err("fio: need size= set\n");
250 return 1;
251 }
252
Jens Axboeed92ac02007-02-06 14:43:52 +0100253 /*
254 * work around for late init call
255 */
256 if (td->io_ops->init(td))
257 return 1;
258
259 nd = td->io_ops->data;
260
261 if (td->iomix) {
262 log_err("fio: network connections must be read OR write\n");
263 return 1;
264 }
Jens Axboeed92ac02007-02-06 14:43:52 +0100265
266 strcpy(buf, td->filename);
267
268 sep = strchr(buf, ':');
269 if (!sep) {
270 log_err("fio: bad network host:port <<%s>>\n", td->filename);
271 return 1;
272 }
273
274 *sep = '\0';
275 sep++;
276 strcpy(host, buf);
Jens Axboee01547d2007-02-06 19:16:01 +0100277 port = atoi(sep);
Jens Axboeed92ac02007-02-06 14:43:52 +0100278
Jens Axboe85eb1d42007-02-09 09:30:25 +0100279 if (td->ddir == DDIR_READ) {
Jens Axboeed92ac02007-02-06 14:43:52 +0100280 nd->send_to_net = 0;
281 ret = fio_netio_setup_listen(td, port);
282 } else {
283 nd->send_to_net = 1;
284 ret = fio_netio_setup_connect(td, host, port);
285 }
286
Jens Axboe2fc26982007-02-06 19:27:27 +0100287 if (ret)
288 return ret;
289
290 td->io_size = td->total_file_size;
291 td->total_io_size = td->io_size;
292
293 for_each_file(td, f, i) {
294 f->file_size = td->total_file_size / td->nr_files;
295 f->real_file_size = f->file_size;
Jens Axboeed92ac02007-02-06 14:43:52 +0100296 }
297
Jens Axboe2fc26982007-02-06 19:27:27 +0100298 return 0;
Jens Axboeed92ac02007-02-06 14:43:52 +0100299}
300
301static void fio_netio_cleanup(struct thread_data *td)
302{
303 if (td->io_ops->data) {
304 free(td->io_ops->data);
305 td->io_ops->data = NULL;
306 }
307}
308
309static int fio_netio_init(struct thread_data *td)
310{
311 struct net_data *nd;
312
Jens Axboee01547d2007-02-06 19:16:01 +0100313 /*
314 * Hack to work-around the ->setup() function calling init on its
315 * own, since it needs ->io_ops->data to be set up.
316 */
Jens Axboeed92ac02007-02-06 14:43:52 +0100317 if (td->io_ops->data)
318 return 0;
319
320 nd = malloc(sizeof(*nd));
321 nd->last_io_u = NULL;
322 td->io_ops->data = nd;
323 return 0;
324}
325
326static struct ioengine_ops ioengine = {
327 .name = "net",
328 .version = FIO_IOOPS_VERSION,
329 .init = fio_netio_init,
330 .prep = fio_netio_prep,
331 .queue = fio_netio_queue,
332 .getevents = fio_netio_getevents,
333 .event = fio_netio_event,
334 .cleanup = fio_netio_cleanup,
335 .setup = fio_netio_setup,
336 .flags = FIO_SYNCIO | FIO_NETIO,
337};
338
339static void fio_init fio_netio_register(void)
340{
341 register_ioengine(&ioengine);
342}
343
344static void fio_exit fio_netio_unregister(void)
345{
346 unregister_ioengine(&ioengine);
347}