blob: fe1f32bf57432e6155b3bf9dd5369eb4bcd2b375 [file] [log] [blame]
Jens Axboe132159a2011-09-30 15:01:32 -06001#include <stdio.h>
2#include <stdlib.h>
3#include <unistd.h>
4#include <limits.h>
5#include <errno.h>
6#include <fcntl.h>
7#include <sys/poll.h>
8#include <sys/types.h>
9#include <sys/stat.h>
10#include <sys/wait.h>
Jens Axboed05c4a02011-10-05 00:16:11 +020011#include <sys/socket.h>
Jens Axboe87aa8f12011-10-06 21:24:13 +020012#include <sys/un.h>
Jens Axboe132159a2011-09-30 15:01:32 -060013#include <netinet/in.h>
14#include <arpa/inet.h>
15#include <netdb.h>
Jens Axboe9e22ecb2011-10-04 14:50:21 +020016#include <signal.h>
Jens Axboe1b427252012-03-14 15:03:03 +010017#include <zlib.h>
Jens Axboe132159a2011-09-30 15:01:32 -060018
19#include "fio.h"
Stephen M. Camerondd366722012-02-24 08:17:30 +010020#include "client.h"
Jens Axboe132159a2011-09-30 15:01:32 -060021#include "server.h"
Jens Axboeb66570d2011-10-01 11:11:35 -060022#include "flist.h"
Jens Axboe3c5f57e2011-10-06 12:37:50 +020023#include "hash.h"
Jens Axboe132159a2011-09-30 15:01:32 -060024
Stephen M. Camerondd366722012-02-24 08:17:30 +010025static void handle_du(struct fio_client *client, struct fio_net_cmd *cmd);
Jens Axboe89e5fad2012-03-05 09:21:12 +010026static void handle_ts(struct fio_client *client, struct fio_net_cmd *cmd);
27static void handle_gs(struct fio_client *client, struct fio_net_cmd *cmd);
Stephen M. Camerondd366722012-02-24 08:17:30 +010028static void handle_probe(struct fio_client *client, struct fio_net_cmd *cmd);
Jens Axboe084d1c62012-03-03 20:28:07 +010029static void handle_text(struct fio_client *client, struct fio_net_cmd *cmd);
Jens Axboe6b79c802012-03-08 10:51:36 +010030static void handle_stop(struct fio_client *client, struct fio_net_cmd *cmd);
Jens Axboe85dd01e2012-03-12 14:33:16 +010031static void handle_start(struct fio_client *client, struct fio_net_cmd *cmd);
Stephen M. Camerondd366722012-02-24 08:17:30 +010032
33struct client_ops fio_client_ops = {
Jens Axboe35c0ba72012-03-14 10:56:40 +010034 .text = handle_text,
Jens Axboe0420ba62012-02-29 11:16:52 +010035 .disk_util = handle_du,
36 .thread_status = handle_ts,
37 .group_stats = handle_gs,
Jens Axboe6b79c802012-03-08 10:51:36 +010038 .stop = handle_stop,
Jens Axboe85dd01e2012-03-12 14:33:16 +010039 .start = handle_start,
Jens Axboea5276612012-03-04 15:15:08 +010040 .eta = display_thread_status,
Jens Axboe0420ba62012-02-29 11:16:52 +010041 .probe = handle_probe,
Jens Axboe6433ee02012-03-09 20:10:51 +010042 .eta_msec = FIO_CLIENT_DEF_ETA_MSEC,
Jens Axboe46bcd492012-03-14 11:31:21 +010043 .client_type = FIO_CLIENT_TYPE_CLI,
Stephen M. Camerondd366722012-02-24 08:17:30 +010044};
45
Jens Axboeaf9c9fb2011-10-09 21:54:10 +020046static struct timeval eta_tv;
Jens Axboe48fbb462011-10-09 12:19:08 +020047
Jens Axboeb66570d2011-10-01 11:11:35 -060048static FLIST_HEAD(client_list);
Jens Axboe82c1ed32011-10-10 08:56:18 +020049static FLIST_HEAD(eta_list);
Jens Axboeb66570d2011-10-01 11:11:35 -060050
Jens Axboe3f3a4542011-10-10 21:11:09 +020051static FLIST_HEAD(arg_list);
52
Jens Axboe3650a3c2012-03-05 14:09:03 +010053struct thread_stat client_ts;
54struct group_run_stats client_gs;
55int sum_stat_clients;
56
Jens Axboe37f0c1a2011-10-11 14:08:33 +020057static int sum_stat_nr;
58
Jens Axboe3c5f57e2011-10-06 12:37:50 +020059#define FIO_CLIENT_HASH_BITS 7
60#define FIO_CLIENT_HASH_SZ (1 << FIO_CLIENT_HASH_BITS)
61#define FIO_CLIENT_HASH_MASK (FIO_CLIENT_HASH_SZ - 1)
Jens Axboebebe6392011-10-07 10:00:51 +020062static struct flist_head client_hash[FIO_CLIENT_HASH_SZ];
Jens Axboe3c5f57e2011-10-06 12:37:50 +020063
Jens Axboebebe6392011-10-07 10:00:51 +020064static void fio_client_add_hash(struct fio_client *client)
Jens Axboe3c5f57e2011-10-06 12:37:50 +020065{
66 int bucket = hash_long(client->fd, FIO_CLIENT_HASH_BITS);
67
68 bucket &= FIO_CLIENT_HASH_MASK;
Jens Axboebebe6392011-10-07 10:00:51 +020069 flist_add(&client->hash_list, &client_hash[bucket]);
Jens Axboe3c5f57e2011-10-06 12:37:50 +020070}
71
Jens Axboebebe6392011-10-07 10:00:51 +020072static void fio_client_remove_hash(struct fio_client *client)
Jens Axboe3c5f57e2011-10-06 12:37:50 +020073{
Jens Axboebebe6392011-10-07 10:00:51 +020074 if (!flist_empty(&client->hash_list))
75 flist_del_init(&client->hash_list);
Jens Axboe3c5f57e2011-10-06 12:37:50 +020076}
77
78static void fio_init fio_client_hash_init(void)
79{
80 int i;
81
Jens Axboebebe6392011-10-07 10:00:51 +020082 for (i = 0; i < FIO_CLIENT_HASH_SZ; i++)
83 INIT_FLIST_HEAD(&client_hash[i]);
Jens Axboe3c5f57e2011-10-06 12:37:50 +020084}
85
Jens Axboeb66570d2011-10-01 11:11:35 -060086static struct fio_client *find_client_by_fd(int fd)
87{
Jens Axboe3c5f57e2011-10-06 12:37:50 +020088 int bucket = hash_long(fd, FIO_CLIENT_HASH_BITS) & FIO_CLIENT_HASH_MASK;
Jens Axboeb66570d2011-10-01 11:11:35 -060089 struct fio_client *client;
90 struct flist_head *entry;
91
Jens Axboebebe6392011-10-07 10:00:51 +020092 flist_for_each(entry, &client_hash[bucket]) {
93 client = flist_entry(entry, struct fio_client, hash_list);
Jens Axboeb66570d2011-10-01 11:11:35 -060094
Jens Axboee55f8f32012-03-06 15:42:31 +010095 if (client->fd == fd) {
96 client->refs++;
Jens Axboeb66570d2011-10-01 11:11:35 -060097 return client;
Jens Axboee55f8f32012-03-06 15:42:31 +010098 }
Jens Axboeb66570d2011-10-01 11:11:35 -060099 }
100
101 return NULL;
102}
103
Jens Axboe3af45202012-03-13 09:59:53 +0100104void fio_put_client(struct fio_client *client)
Jens Axboeb66570d2011-10-01 11:11:35 -0600105{
Jens Axboe5121a9a2012-03-05 13:32:47 +0100106 if (--client->refs)
107 return;
108
Jens Axboeb66570d2011-10-01 11:11:35 -0600109 free(client->hostname);
Jens Axboe81179ee2011-10-04 12:42:06 +0200110 if (client->argv)
111 free(client->argv);
Jens Axboeb5296dd2011-10-07 16:35:56 +0200112 if (client->name)
113 free(client->name);
Jens Axboe81179ee2011-10-04 12:42:06 +0200114
Jens Axboeb66570d2011-10-01 11:11:35 -0600115 free(client);
116}
Jens Axboe132159a2011-09-30 15:01:32 -0600117
Jens Axboe3af45202012-03-13 09:59:53 +0100118static void remove_client(struct fio_client *client)
Jens Axboe5121a9a2012-03-05 13:32:47 +0100119{
Jens Axboe3af45202012-03-13 09:59:53 +0100120 assert(client->refs);
121
122 dprint(FD_NET, "client: removed <%s>\n", client->hostname);
123
124 if (!flist_empty(&client->list))
125 flist_del_init(&client->list);
126
127 fio_client_remove_hash(client);
128
129 if (!flist_empty(&client->eta_list)) {
130 flist_del_init(&client->eta_list);
131 fio_client_dec_jobs_eta(client->eta_in_flight, client->ops->eta);
132 }
133
Jens Axboe1e0c1842012-03-20 15:15:00 +0100134 close(client->fd);
135 client->fd = -1;
136
Jens Axboe0cf3ece2012-03-21 10:15:20 +0100137 if (client->ops->removed)
138 client->ops->removed(client);
139
Jens Axboe3af45202012-03-13 09:59:53 +0100140 nr_clients--;
141 sum_stat_clients--;
142
143 fio_put_client(client);
Jens Axboe5121a9a2012-03-05 13:32:47 +0100144}
145
Jens Axboe343cb4a2012-03-09 17:16:51 +0100146struct fio_client *fio_get_client(struct fio_client *client)
147{
148 client->refs++;
149 return client;
150}
151
Jens Axboefa2ea802011-10-08 21:07:29 +0200152static void __fio_client_add_cmd_option(struct fio_client *client,
153 const char *opt)
Jens Axboe81179ee2011-10-04 12:42:06 +0200154{
Jens Axboe39e8e012011-10-04 13:46:08 +0200155 int index;
156
157 index = client->argc++;
Jens Axboe81179ee2011-10-04 12:42:06 +0200158 client->argv = realloc(client->argv, sizeof(char *) * client->argc);
Jens Axboe39e8e012011-10-04 13:46:08 +0200159 client->argv[index] = strdup(opt);
160 dprint(FD_NET, "client: add cmd %d: %s\n", index, opt);
Jens Axboe81179ee2011-10-04 12:42:06 +0200161}
162
Jens Axboefa2ea802011-10-08 21:07:29 +0200163void fio_client_add_cmd_option(void *cookie, const char *opt)
Jens Axboe81179ee2011-10-04 12:42:06 +0200164{
Jens Axboebebe6392011-10-07 10:00:51 +0200165 struct fio_client *client = cookie;
Jens Axboe3f3a4542011-10-10 21:11:09 +0200166 struct flist_head *entry;
Jens Axboe81179ee2011-10-04 12:42:06 +0200167
Jens Axboebebe6392011-10-07 10:00:51 +0200168 if (!client || !opt)
Jens Axboefa2ea802011-10-08 21:07:29 +0200169 return;
Jens Axboe81179ee2011-10-04 12:42:06 +0200170
Jens Axboefa2ea802011-10-08 21:07:29 +0200171 __fio_client_add_cmd_option(client, opt);
Jens Axboe3f3a4542011-10-10 21:11:09 +0200172
173 /*
174 * Duplicate arguments to shared client group
175 */
176 flist_for_each(entry, &arg_list) {
177 client = flist_entry(entry, struct fio_client, arg_list);
178
179 __fio_client_add_cmd_option(client, opt);
180 }
Jens Axboe81179ee2011-10-04 12:42:06 +0200181}
182
Jens Axboea5276612012-03-04 15:15:08 +0100183struct fio_client *fio_client_add_explicit(struct client_ops *ops,
184 const char *hostname, int type,
Jens Axboe3ec62ec2012-03-01 12:01:29 +0100185 int port)
186{
187 struct fio_client *client;
188
189 client = malloc(sizeof(*client));
190 memset(client, 0, sizeof(*client));
191
192 INIT_FLIST_HEAD(&client->list);
193 INIT_FLIST_HEAD(&client->hash_list);
194 INIT_FLIST_HEAD(&client->arg_list);
195 INIT_FLIST_HEAD(&client->eta_list);
196 INIT_FLIST_HEAD(&client->cmd_list);
197
198 client->hostname = strdup(hostname);
199
200 if (type == Fio_client_socket)
201 client->is_sock = 1;
202 else {
203 int ipv6;
204
205 ipv6 = type == Fio_client_ipv6;
206 if (fio_server_parse_host(hostname, &ipv6,
207 &client->addr.sin_addr,
208 &client->addr6.sin6_addr))
209 goto err;
210
211 client->port = port;
212 }
213
214 client->fd = -1;
Jens Axboea5276612012-03-04 15:15:08 +0100215 client->ops = ops;
Jens Axboe5121a9a2012-03-05 13:32:47 +0100216 client->refs = 1;
Jens Axboe46bcd492012-03-14 11:31:21 +0100217 client->type = ops->client_type;
Jens Axboe3ec62ec2012-03-01 12:01:29 +0100218
219 __fio_client_add_cmd_option(client, "fio");
220
221 flist_add(&client->list, &client_list);
222 nr_clients++;
223 dprint(FD_NET, "client: added <%s>\n", client->hostname);
224 return client;
225err:
226 free(client);
227 return NULL;
228}
229
Jens Axboea5276612012-03-04 15:15:08 +0100230int fio_client_add(struct client_ops *ops, const char *hostname, void **cookie)
Jens Axboe132159a2011-09-30 15:01:32 -0600231{
Jens Axboe3f3a4542011-10-10 21:11:09 +0200232 struct fio_client *existing = *cookie;
Jens Axboeb66570d2011-10-01 11:11:35 -0600233 struct fio_client *client;
Jens Axboe132159a2011-09-30 15:01:32 -0600234
Jens Axboe3f3a4542011-10-10 21:11:09 +0200235 if (existing) {
236 /*
237 * We always add our "exec" name as the option, hence 1
238 * means empty.
239 */
240 if (existing->argc == 1)
241 flist_add_tail(&existing->arg_list, &arg_list);
242 else {
243 while (!flist_empty(&arg_list))
244 flist_del_init(arg_list.next);
245 }
246 }
247
Jens Axboeb66570d2011-10-01 11:11:35 -0600248 client = malloc(sizeof(*client));
Jens Axboea37f69b2011-10-01 12:24:21 -0600249 memset(client, 0, sizeof(*client));
Jens Axboe81179ee2011-10-04 12:42:06 +0200250
Jens Axboe3c5f57e2011-10-06 12:37:50 +0200251 INIT_FLIST_HEAD(&client->list);
Jens Axboebebe6392011-10-07 10:00:51 +0200252 INIT_FLIST_HEAD(&client->hash_list);
Jens Axboe3f3a4542011-10-10 21:11:09 +0200253 INIT_FLIST_HEAD(&client->arg_list);
Jens Axboe82c1ed32011-10-10 08:56:18 +0200254 INIT_FLIST_HEAD(&client->eta_list);
Jens Axboe89c17072011-10-11 10:15:51 +0200255 INIT_FLIST_HEAD(&client->cmd_list);
Jens Axboe3c5f57e2011-10-06 12:37:50 +0200256
Jens Axboebebe6392011-10-07 10:00:51 +0200257 if (fio_server_parse_string(hostname, &client->hostname,
258 &client->is_sock, &client->port,
Jens Axboe811826b2011-10-24 09:11:50 +0200259 &client->addr.sin_addr,
260 &client->addr6.sin6_addr,
261 &client->ipv6))
Jens Axboebebe6392011-10-07 10:00:51 +0200262 return -1;
263
Jens Axboea37f69b2011-10-01 12:24:21 -0600264 client->fd = -1;
Jens Axboea5276612012-03-04 15:15:08 +0100265 client->ops = ops;
Jens Axboe5121a9a2012-03-05 13:32:47 +0100266 client->refs = 1;
Jens Axboe46bcd492012-03-14 11:31:21 +0100267 client->type = ops->client_type;
Jens Axboe81179ee2011-10-04 12:42:06 +0200268
269 __fio_client_add_cmd_option(client, "fio");
270
Jens Axboea37f69b2011-10-01 12:24:21 -0600271 flist_add(&client->list, &client_list);
272 nr_clients++;
Jens Axboebebe6392011-10-07 10:00:51 +0200273 dprint(FD_NET, "client: added <%s>\n", client->hostname);
274 *cookie = client;
275 return 0;
Jens Axboea37f69b2011-10-01 12:24:21 -0600276}
277
Jens Axboed824c3b2012-03-09 17:45:43 +0100278static void probe_client(struct fio_client *client)
279{
280 dprint(FD_NET, "client: send probe\n");
281
282 fio_net_send_simple_cmd(client->fd, FIO_NET_CMD_PROBE, 0, &client->cmd_list);
283}
284
Jens Axboe87aa8f12011-10-06 21:24:13 +0200285static int fio_client_connect_ip(struct fio_client *client)
Jens Axboea37f69b2011-10-01 12:24:21 -0600286{
Jens Axboe811826b2011-10-24 09:11:50 +0200287 struct sockaddr *addr;
288 fio_socklen_t socklen;
289 int fd, domain;
Jens Axboe132159a2011-09-30 15:01:32 -0600290
Jens Axboe811826b2011-10-24 09:11:50 +0200291 if (client->ipv6) {
292 client->addr6.sin6_family = AF_INET6;
293 client->addr6.sin6_port = htons(client->port);
294 domain = AF_INET6;
295 addr = (struct sockaddr *) &client->addr6;
296 socklen = sizeof(client->addr6);
297 } else {
298 client->addr.sin_family = AF_INET;
299 client->addr.sin_port = htons(client->port);
300 domain = AF_INET;
301 addr = (struct sockaddr *) &client->addr;
302 socklen = sizeof(client->addr);
303 }
Jens Axboe132159a2011-09-30 15:01:32 -0600304
Jens Axboe811826b2011-10-24 09:11:50 +0200305 fd = socket(domain, SOCK_STREAM, 0);
Jens Axboe132159a2011-09-30 15:01:32 -0600306 if (fd < 0) {
Jens Axboe25095e12012-03-09 17:09:55 +0100307 int ret = -errno;
308
Jens Axboe132159a2011-09-30 15:01:32 -0600309 log_err("fio: socket: %s\n", strerror(errno));
Jens Axboe25095e12012-03-09 17:09:55 +0100310 return ret;
Jens Axboe132159a2011-09-30 15:01:32 -0600311 }
312
Jens Axboe811826b2011-10-24 09:11:50 +0200313 if (connect(fd, addr, socklen) < 0) {
Jens Axboe25095e12012-03-09 17:09:55 +0100314 int ret = -errno;
315
Jens Axboe132159a2011-09-30 15:01:32 -0600316 log_err("fio: connect: %s\n", strerror(errno));
Jens Axboea7de0a12011-10-07 12:55:14 +0200317 log_err("fio: failed to connect to %s:%u\n", client->hostname,
318 client->port);
Jens Axboeb94cba42011-10-06 21:27:10 +0200319 close(fd);
Jens Axboe25095e12012-03-09 17:09:55 +0100320 return ret;
Jens Axboe132159a2011-09-30 15:01:32 -0600321 }
322
Jens Axboe87aa8f12011-10-06 21:24:13 +0200323 return fd;
324}
325
326static int fio_client_connect_sock(struct fio_client *client)
327{
328 struct sockaddr_un *addr = &client->addr_un;
329 fio_socklen_t len;
330 int fd;
331
332 memset(addr, 0, sizeof(*addr));
333 addr->sun_family = AF_UNIX;
334 strcpy(addr->sun_path, client->hostname);
335
336 fd = socket(AF_UNIX, SOCK_STREAM, 0);
337 if (fd < 0) {
Jens Axboe25095e12012-03-09 17:09:55 +0100338 int ret = -errno;
339
Jens Axboe87aa8f12011-10-06 21:24:13 +0200340 log_err("fio: socket: %s\n", strerror(errno));
Jens Axboe25095e12012-03-09 17:09:55 +0100341 return ret;
Jens Axboe87aa8f12011-10-06 21:24:13 +0200342 }
343
344 len = sizeof(addr->sun_family) + strlen(addr->sun_path) + 1;
345 if (connect(fd, (struct sockaddr *) addr, len) < 0) {
Jens Axboe25095e12012-03-09 17:09:55 +0100346 int ret = -errno;
347
Jens Axboe87aa8f12011-10-06 21:24:13 +0200348 log_err("fio: connect; %s\n", strerror(errno));
Jens Axboeb94cba42011-10-06 21:27:10 +0200349 close(fd);
Jens Axboe25095e12012-03-09 17:09:55 +0100350 return ret;
Jens Axboe87aa8f12011-10-06 21:24:13 +0200351 }
352
353 return fd;
354}
355
Jens Axboe2f99deb2012-03-09 14:37:29 +0100356int fio_client_connect(struct fio_client *client)
Jens Axboe87aa8f12011-10-06 21:24:13 +0200357{
358 int fd;
359
360 dprint(FD_NET, "client: connect to host %s\n", client->hostname);
361
Jens Axboe87aa8f12011-10-06 21:24:13 +0200362 if (client->is_sock)
363 fd = fio_client_connect_sock(client);
364 else
365 fd = fio_client_connect_ip(client);
366
Jens Axboe89c17072011-10-11 10:15:51 +0200367 dprint(FD_NET, "client: %s connected %d\n", client->hostname, fd);
368
Jens Axboe87aa8f12011-10-06 21:24:13 +0200369 if (fd < 0)
Jens Axboea1a3ed52012-03-09 17:00:01 +0100370 return fd;
Jens Axboe87aa8f12011-10-06 21:24:13 +0200371
Jens Axboeb66570d2011-10-01 11:11:35 -0600372 client->fd = fd;
Jens Axboebebe6392011-10-07 10:00:51 +0200373 fio_client_add_hash(client);
Jens Axboe81179ee2011-10-04 12:42:06 +0200374 client->state = Client_connected;
Jens Axboed824c3b2012-03-09 17:45:43 +0100375
376 probe_client(client);
Jens Axboe132159a2011-09-30 15:01:32 -0600377 return 0;
378}
379
Jens Axboe0cf3ece2012-03-21 10:15:20 +0100380int fio_client_terminate(struct fio_client *client)
Jens Axboe2f99deb2012-03-09 14:37:29 +0100381{
Jens Axboe0cf3ece2012-03-21 10:15:20 +0100382 return fio_net_send_quit(client->fd);
Jens Axboe2f99deb2012-03-09 14:37:29 +0100383}
384
Jens Axboecc0df002011-10-03 20:53:32 +0200385void fio_clients_terminate(void)
386{
387 struct flist_head *entry;
388 struct fio_client *client;
389
Jens Axboe60efd142011-10-04 13:30:11 +0200390 dprint(FD_NET, "client: terminate clients\n");
391
Jens Axboecc0df002011-10-03 20:53:32 +0200392 flist_for_each(entry, &client_list) {
393 client = flist_entry(entry, struct fio_client, list);
Jens Axboe2f99deb2012-03-09 14:37:29 +0100394 fio_client_terminate(client);
Jens Axboecc0df002011-10-03 20:53:32 +0200395 }
396}
397
398static void sig_int(int sig)
399{
Jens Axboebebe6392011-10-07 10:00:51 +0200400 dprint(FD_NET, "client: got signal %d\n", sig);
Jens Axboecc0df002011-10-03 20:53:32 +0200401 fio_clients_terminate();
402}
403
404static void client_signal_handler(void)
405{
406 struct sigaction act;
407
408 memset(&act, 0, sizeof(act));
409 act.sa_handler = sig_int;
410 act.sa_flags = SA_RESTART;
411 sigaction(SIGINT, &act, NULL);
412
413 memset(&act, 0, sizeof(act));
414 act.sa_handler = sig_int;
415 act.sa_flags = SA_RESTART;
416 sigaction(SIGTERM, &act, NULL);
417}
418
Jens Axboe81179ee2011-10-04 12:42:06 +0200419static int send_client_cmd_line(struct fio_client *client)
420{
Jens Axboefa2ea802011-10-08 21:07:29 +0200421 struct cmd_single_line_pdu *cslp;
422 struct cmd_line_pdu *clp;
423 unsigned long offset;
Jens Axboe7f868312011-10-10 09:55:21 +0200424 unsigned int *lens;
Jens Axboefa2ea802011-10-08 21:07:29 +0200425 void *pdu;
426 size_t mem;
Jens Axboe81179ee2011-10-04 12:42:06 +0200427 int i, ret;
428
Jens Axboe39e8e012011-10-04 13:46:08 +0200429 dprint(FD_NET, "client: send cmdline %d\n", client->argc);
Jens Axboe60efd142011-10-04 13:30:11 +0200430
Jens Axboe7f868312011-10-10 09:55:21 +0200431 lens = malloc(client->argc * sizeof(unsigned int));
432
Jens Axboefa2ea802011-10-08 21:07:29 +0200433 /*
434 * Find out how much mem we need
435 */
Jens Axboe7f868312011-10-10 09:55:21 +0200436 for (i = 0, mem = 0; i < client->argc; i++) {
437 lens[i] = strlen(client->argv[i]) + 1;
438 mem += lens[i];
439 }
Jens Axboe81179ee2011-10-04 12:42:06 +0200440
Jens Axboefa2ea802011-10-08 21:07:29 +0200441 /*
442 * We need one cmd_line_pdu, and argc number of cmd_single_line_pdu
443 */
444 mem += sizeof(*clp) + (client->argc * sizeof(*cslp));
445
446 pdu = malloc(mem);
447 clp = pdu;
448 offset = sizeof(*clp);
449
450 for (i = 0; i < client->argc; i++) {
Jens Axboe7f868312011-10-10 09:55:21 +0200451 uint16_t arg_len = lens[i];
Jens Axboefa2ea802011-10-08 21:07:29 +0200452
453 cslp = pdu + offset;
454 strcpy((char *) cslp->text, client->argv[i]);
455 cslp->len = cpu_to_le16(arg_len);
456 offset += sizeof(*cslp) + arg_len;
457 }
458
Jens Axboe7f868312011-10-10 09:55:21 +0200459 free(lens);
Jens Axboefa2ea802011-10-08 21:07:29 +0200460 clp->lines = cpu_to_le16(client->argc);
Jens Axboe46bcd492012-03-14 11:31:21 +0100461 clp->client_type = __cpu_to_le16(client->type);
Jens Axboe40c60512012-03-27 16:03:04 +0200462 ret = fio_net_send_cmd(client->fd, FIO_NET_CMD_JOBLINE, pdu, mem, NULL, NULL);
Jens Axboe81179ee2011-10-04 12:42:06 +0200463 free(pdu);
464 return ret;
465}
466
Jens Axboea37f69b2011-10-01 12:24:21 -0600467int fio_clients_connect(void)
468{
469 struct fio_client *client;
470 struct flist_head *entry, *tmp;
471 int ret;
472
Bruce Cran93bcfd22012-02-20 20:18:19 +0100473#ifdef WIN32
474 WSADATA wsd;
Jens Axboe3c3ed072012-03-27 09:12:39 +0200475 WSAStartup(MAKEWORD(2, 2), &wsd);
Bruce Cran93bcfd22012-02-20 20:18:19 +0100476#endif
477
Jens Axboe60efd142011-10-04 13:30:11 +0200478 dprint(FD_NET, "client: connect all\n");
479
Jens Axboecc0df002011-10-03 20:53:32 +0200480 client_signal_handler();
481
Jens Axboea37f69b2011-10-01 12:24:21 -0600482 flist_for_each_safe(entry, tmp, &client_list) {
483 client = flist_entry(entry, struct fio_client, list);
484
485 ret = fio_client_connect(client);
Jens Axboe0b8f30a2011-10-04 10:31:53 +0200486 if (ret) {
Jens Axboea37f69b2011-10-01 12:24:21 -0600487 remove_client(client);
Jens Axboe0b8f30a2011-10-04 10:31:53 +0200488 continue;
489 }
490
Jens Axboe81179ee2011-10-04 12:42:06 +0200491 if (client->argc > 1)
492 send_client_cmd_line(client);
Jens Axboea37f69b2011-10-01 12:24:21 -0600493 }
494
495 return !nr_clients;
496}
497
Jens Axboeb9d2f302012-03-08 20:36:28 +0100498int fio_start_client(struct fio_client *client)
499{
500 dprint(FD_NET, "client: start %s\n", client->hostname);
501 return fio_net_send_simple_cmd(client->fd, FIO_NET_CMD_RUN, 0, NULL);
502}
503
504int fio_start_all_clients(void)
505{
506 struct fio_client *client;
507 struct flist_head *entry, *tmp;
508 int ret;
509
510 dprint(FD_NET, "client: start all\n");
511
512 flist_for_each_safe(entry, tmp, &client_list) {
513 client = flist_entry(entry, struct fio_client, list);
514
515 ret = fio_start_client(client);
516 if (ret) {
517 remove_client(client);
518 continue;
519 }
520 }
521
522 return flist_empty(&client_list);
523}
524
Jens Axboe132159a2011-09-30 15:01:32 -0600525/*
526 * Send file contents to server backend. We could use sendfile(), but to remain
527 * more portable lets just read/write the darn thing.
528 */
Jens Axboe9988ca72012-03-09 15:14:06 +0100529static int __fio_client_send_ini(struct fio_client *client, const char *filename)
Jens Axboe132159a2011-09-30 15:01:32 -0600530{
Jens Axboe46bcd492012-03-14 11:31:21 +0100531 struct cmd_job_pdu *pdu;
532 size_t p_size;
Jens Axboe132159a2011-09-30 15:01:32 -0600533 struct stat sb;
Jens Axboe46bcd492012-03-14 11:31:21 +0100534 char *p;
535 void *buf;
Jens Axboe132159a2011-09-30 15:01:32 -0600536 off_t len;
537 int fd, ret;
538
Jens Axboe46c48f12011-10-01 12:50:51 -0600539 dprint(FD_NET, "send ini %s to %s\n", filename, client->hostname);
540
Jens Axboe132159a2011-09-30 15:01:32 -0600541 fd = open(filename, O_RDONLY);
542 if (fd < 0) {
Jens Axboe25095e12012-03-09 17:09:55 +0100543 int ret = -errno;
544
Jens Axboee951bdc2011-10-05 21:58:45 +0200545 log_err("fio: job file <%s> open: %s\n", filename, strerror(errno));
Jens Axboe25095e12012-03-09 17:09:55 +0100546 return ret;
Jens Axboe132159a2011-09-30 15:01:32 -0600547 }
548
549 if (fstat(fd, &sb) < 0) {
Jens Axboe25095e12012-03-09 17:09:55 +0100550 int ret = -errno;
551
Jens Axboe132159a2011-09-30 15:01:32 -0600552 log_err("fio: job file stat: %s\n", strerror(errno));
Jens Axboeb94cba42011-10-06 21:27:10 +0200553 close(fd);
Jens Axboe25095e12012-03-09 17:09:55 +0100554 return ret;
Jens Axboe132159a2011-09-30 15:01:32 -0600555 }
556
Jens Axboe46bcd492012-03-14 11:31:21 +0100557 p_size = sb.st_size + sizeof(*pdu);
558 pdu = malloc(p_size);
559 buf = pdu->buf;
Jens Axboe132159a2011-09-30 15:01:32 -0600560
561 len = sb.st_size;
562 p = buf;
563 do {
564 ret = read(fd, p, len);
565 if (ret > 0) {
566 len -= ret;
567 if (!len)
568 break;
569 p += ret;
570 continue;
571 } else if (!ret)
572 break;
573 else if (errno == EAGAIN || errno == EINTR)
574 continue;
575 } while (1);
576
Jens Axboe0b8f30a2011-10-04 10:31:53 +0200577 if (len) {
578 log_err("fio: failed reading job file %s\n", filename);
Jens Axboeb94cba42011-10-06 21:27:10 +0200579 close(fd);
Jens Axboec524ef72011-10-07 12:23:34 +0200580 free(buf);
Jens Axboe0b8f30a2011-10-04 10:31:53 +0200581 return 1;
582 }
583
Jens Axboe46bcd492012-03-14 11:31:21 +0100584 pdu->buf_len = __cpu_to_le32(sb.st_size);
585 pdu->client_type = cpu_to_le32(client->type);
586
Jens Axboec2cb6862012-02-23 20:56:12 +0100587 client->sent_job = 1;
Jens Axboe40c60512012-03-27 16:03:04 +0200588 ret = fio_net_send_cmd(client->fd, FIO_NET_CMD_JOB, pdu, p_size, NULL, NULL);
Jens Axboe46bcd492012-03-14 11:31:21 +0100589 free(pdu);
Jens Axboeb94cba42011-10-06 21:27:10 +0200590 close(fd);
Jens Axboe132159a2011-09-30 15:01:32 -0600591 return ret;
592}
Jens Axboe37db14f2011-09-30 17:00:42 -0600593
Jens Axboe9988ca72012-03-09 15:14:06 +0100594int fio_client_send_ini(struct fio_client *client, const char *filename)
595{
Jens Axboe25095e12012-03-09 17:09:55 +0100596 int ret;
597
598 ret = __fio_client_send_ini(client, filename);
Jens Axboe3af45202012-03-13 09:59:53 +0100599 if (!ret)
600 client->sent_job = 1;
Jens Axboe9988ca72012-03-09 15:14:06 +0100601
Jens Axboe25095e12012-03-09 17:09:55 +0100602 return ret;
Jens Axboe9988ca72012-03-09 15:14:06 +0100603}
604
Jens Axboea37f69b2011-10-01 12:24:21 -0600605int fio_clients_send_ini(const char *filename)
606{
607 struct fio_client *client;
608 struct flist_head *entry, *tmp;
609
610 flist_for_each_safe(entry, tmp, &client_list) {
611 client = flist_entry(entry, struct fio_client, list);
612
Jens Axboe3af45202012-03-13 09:59:53 +0100613 if (fio_client_send_ini(client, filename))
614 remove_client(client);
Jens Axboea37f69b2011-10-01 12:24:21 -0600615 }
616
617 return !nr_clients;
618}
619
Jens Axboe40c60512012-03-27 16:03:04 +0200620int fio_client_update_options(struct fio_client *client,
621 struct thread_options *o, uint64_t *tag)
622{
623 struct cmd_add_job_pdu pdu;
624
625 pdu.thread_number = cpu_to_le32(client->thread_number);
626 pdu.groupid = cpu_to_le32(client->groupid);
627 convert_thread_options_to_net(&pdu.top, o);
628
629 return fio_net_send_cmd(client->fd, FIO_NET_CMD_UPDATE_JOB, &pdu, sizeof(pdu), tag, &client->cmd_list);
630}
631
Jens Axboea64e88d2011-10-03 14:20:01 +0200632static void convert_io_stat(struct io_stat *dst, struct io_stat *src)
633{
634 dst->max_val = le64_to_cpu(src->max_val);
635 dst->min_val = le64_to_cpu(src->min_val);
636 dst->samples = le64_to_cpu(src->samples);
Jens Axboe802ad4a2011-10-05 09:51:58 +0200637
638 /*
639 * Floats arrive as IEEE 754 encoded uint64_t, convert back to double
640 */
641 dst->mean.u.f = fio_uint64_to_double(le64_to_cpu(dst->mean.u.i));
642 dst->S.u.f = fio_uint64_to_double(le64_to_cpu(dst->S.u.i));
Jens Axboea64e88d2011-10-03 14:20:01 +0200643}
644
645static void convert_ts(struct thread_stat *dst, struct thread_stat *src)
646{
647 int i, j;
648
Jens Axboe2f122b12012-03-15 13:10:19 +0100649 dst->error = le32_to_cpu(src->error);
650 dst->thread_number = le32_to_cpu(src->thread_number);
651 dst->groupid = le32_to_cpu(src->groupid);
652 dst->pid = le32_to_cpu(src->pid);
653 dst->members = le32_to_cpu(src->members);
Jens Axboea64e88d2011-10-03 14:20:01 +0200654
655 for (i = 0; i < 2; i++) {
656 convert_io_stat(&dst->clat_stat[i], &src->clat_stat[i]);
657 convert_io_stat(&dst->slat_stat[i], &src->slat_stat[i]);
658 convert_io_stat(&dst->lat_stat[i], &src->lat_stat[i]);
659 convert_io_stat(&dst->bw_stat[i], &src->bw_stat[i]);
660 }
661
662 dst->usr_time = le64_to_cpu(src->usr_time);
663 dst->sys_time = le64_to_cpu(src->sys_time);
664 dst->ctx = le64_to_cpu(src->ctx);
665 dst->minf = le64_to_cpu(src->minf);
666 dst->majf = le64_to_cpu(src->majf);
667 dst->clat_percentiles = le64_to_cpu(src->clat_percentiles);
Jens Axboe802ad4a2011-10-05 09:51:58 +0200668
669 for (i = 0; i < FIO_IO_U_LIST_MAX_LEN; i++) {
670 fio_fp64_t *fps = &src->percentile_list[i];
671 fio_fp64_t *fpd = &dst->percentile_list[i];
672
673 fpd->u.f = fio_uint64_to_double(le64_to_cpu(fps->u.i));
674 }
Jens Axboea64e88d2011-10-03 14:20:01 +0200675
676 for (i = 0; i < FIO_IO_U_MAP_NR; i++) {
677 dst->io_u_map[i] = le32_to_cpu(src->io_u_map[i]);
678 dst->io_u_submit[i] = le32_to_cpu(src->io_u_submit[i]);
679 dst->io_u_complete[i] = le32_to_cpu(src->io_u_complete[i]);
680 }
681
682 for (i = 0; i < FIO_IO_U_LAT_U_NR; i++) {
683 dst->io_u_lat_u[i] = le32_to_cpu(src->io_u_lat_u[i]);
684 dst->io_u_lat_m[i] = le32_to_cpu(src->io_u_lat_m[i]);
685 }
686
687 for (i = 0; i < 2; i++)
688 for (j = 0; j < FIO_IO_U_PLAT_NR; j++)
689 dst->io_u_plat[i][j] = le32_to_cpu(src->io_u_plat[i][j]);
690
691 for (i = 0; i < 3; i++) {
692 dst->total_io_u[i] = le64_to_cpu(src->total_io_u[i]);
Jens Axboe93eee042011-10-03 21:08:48 +0200693 dst->short_io_u[i] = le64_to_cpu(src->short_io_u[i]);
Jens Axboea64e88d2011-10-03 14:20:01 +0200694 }
695
696 dst->total_submit = le64_to_cpu(src->total_submit);
697 dst->total_complete = le64_to_cpu(src->total_complete);
698
699 for (i = 0; i < 2; i++) {
700 dst->io_bytes[i] = le64_to_cpu(src->io_bytes[i]);
701 dst->runtime[i] = le64_to_cpu(src->runtime[i]);
702 }
703
704 dst->total_run_time = le64_to_cpu(src->total_run_time);
705 dst->continue_on_error = le16_to_cpu(src->continue_on_error);
706 dst->total_err_count = le64_to_cpu(src->total_err_count);
Jens Axboeddcc0b62011-10-03 14:45:27 +0200707 dst->first_error = le32_to_cpu(src->first_error);
708 dst->kb_base = le32_to_cpu(src->kb_base);
Jens Axboea64e88d2011-10-03 14:20:01 +0200709}
710
711static void convert_gs(struct group_run_stats *dst, struct group_run_stats *src)
712{
713 int i;
714
715 for (i = 0; i < 2; i++) {
716 dst->max_run[i] = le64_to_cpu(src->max_run[i]);
717 dst->min_run[i] = le64_to_cpu(src->min_run[i]);
718 dst->max_bw[i] = le64_to_cpu(src->max_bw[i]);
719 dst->min_bw[i] = le64_to_cpu(src->min_bw[i]);
720 dst->io_kb[i] = le64_to_cpu(src->io_kb[i]);
721 dst->agg[i] = le64_to_cpu(src->agg[i]);
722 }
723
724 dst->kb_base = le32_to_cpu(src->kb_base);
725 dst->groupid = le32_to_cpu(src->groupid);
726}
727
Jens Axboe89e5fad2012-03-05 09:21:12 +0100728static void handle_ts(struct fio_client *client, struct fio_net_cmd *cmd)
Jens Axboea64e88d2011-10-03 14:20:01 +0200729{
730 struct cmd_ts_pdu *p = (struct cmd_ts_pdu *) cmd->payload;
731
Jens Axboea64e88d2011-10-03 14:20:01 +0200732 show_thread_status(&p->ts, &p->rs);
Jens Axboe37f0c1a2011-10-11 14:08:33 +0200733
734 if (sum_stat_clients == 1)
735 return;
736
737 sum_thread_stats(&client_ts, &p->ts, sum_stat_nr);
738 sum_group_stats(&client_gs, &p->rs);
739
740 client_ts.members++;
Jens Axboe2f122b12012-03-15 13:10:19 +0100741 client_ts.thread_number = p->ts.thread_number;
Jens Axboe37f0c1a2011-10-11 14:08:33 +0200742 client_ts.groupid = p->ts.groupid;
743
744 if (++sum_stat_nr == sum_stat_clients) {
745 strcpy(client_ts.name, "All clients");
746 show_thread_status(&client_ts, &client_gs);
747 }
Jens Axboea64e88d2011-10-03 14:20:01 +0200748}
749
Jens Axboe89e5fad2012-03-05 09:21:12 +0100750static void handle_gs(struct fio_client *client, struct fio_net_cmd *cmd)
Jens Axboea64e88d2011-10-03 14:20:01 +0200751{
752 struct group_run_stats *gs = (struct group_run_stats *) cmd->payload;
753
Jens Axboea64e88d2011-10-03 14:20:01 +0200754 show_group_stats(gs);
755}
756
Jens Axboe3bf236c2012-03-03 20:35:50 +0100757static void handle_text(struct fio_client *client, struct fio_net_cmd *cmd)
758{
759 struct cmd_text_pdu *pdu = (struct cmd_text_pdu *) cmd->payload;
760 const char *buf = (const char *) pdu->buf;
761 const char *name;
762 int fio_unused ret;
763
764 name = client->name ? client->name : client->hostname;
765
766 if (!client->skip_newline)
767 fprintf(f_out, "<%s> ", name);
768 ret = fwrite(buf, pdu->buf_len, 1, f_out);
769 fflush(f_out);
770 client->skip_newline = strchr(buf, '\n') == NULL;
771}
772
Jens Axboed09a64a2011-10-13 11:38:56 +0200773static void convert_agg(struct disk_util_agg *agg)
774{
775 int i;
776
777 for (i = 0; i < 2; i++) {
778 agg->ios[i] = le32_to_cpu(agg->ios[i]);
779 agg->merges[i] = le32_to_cpu(agg->merges[i]);
780 agg->sectors[i] = le64_to_cpu(agg->sectors[i]);
781 agg->ticks[i] = le32_to_cpu(agg->ticks[i]);
782 }
783
784 agg->io_ticks = le32_to_cpu(agg->io_ticks);
785 agg->time_in_queue = le32_to_cpu(agg->time_in_queue);
786 agg->slavecount = le32_to_cpu(agg->slavecount);
Anton Blanchard823ba542011-11-07 14:16:26 +0100787 agg->max_util.u.f = fio_uint64_to_double(__le64_to_cpu(agg->max_util.u.i));
Jens Axboed09a64a2011-10-13 11:38:56 +0200788}
789
790static void convert_dus(struct disk_util_stat *dus)
791{
792 int i;
793
794 for (i = 0; i < 2; i++) {
795 dus->ios[i] = le32_to_cpu(dus->ios[i]);
796 dus->merges[i] = le32_to_cpu(dus->merges[i]);
797 dus->sectors[i] = le64_to_cpu(dus->sectors[i]);
798 dus->ticks[i] = le32_to_cpu(dus->ticks[i]);
799 }
800
801 dus->io_ticks = le32_to_cpu(dus->io_ticks);
802 dus->time_in_queue = le32_to_cpu(dus->time_in_queue);
803 dus->msec = le64_to_cpu(dus->msec);
804}
805
806static void handle_du(struct fio_client *client, struct fio_net_cmd *cmd)
807{
808 struct cmd_du_pdu *du = (struct cmd_du_pdu *) cmd->payload;
809
Jens Axboed09a64a2011-10-13 11:38:56 +0200810 if (!client->disk_stats_shown) {
811 client->disk_stats_shown = 1;
812 log_info("\nDisk stats (read/write):\n");
813 }
814
Jens Axboef2f788d2011-10-13 14:03:52 +0200815 print_disk_util(&du->dus, &du->agg, terse_output);
Jens Axboed09a64a2011-10-13 11:38:56 +0200816}
817
Jens Axboe3bf236c2012-03-03 20:35:50 +0100818static void convert_jobs_eta(struct jobs_eta *je)
Jens Axboecf451d12011-10-03 16:48:30 +0200819{
Jens Axboecf451d12011-10-03 16:48:30 +0200820 int i;
821
822 je->nr_running = le32_to_cpu(je->nr_running);
823 je->nr_ramp = le32_to_cpu(je->nr_ramp);
824 je->nr_pending = le32_to_cpu(je->nr_pending);
825 je->files_open = le32_to_cpu(je->files_open);
Jens Axboecf451d12011-10-03 16:48:30 +0200826
827 for (i = 0; i < 2; i++) {
Jens Axboe3e47bd22012-02-29 13:45:02 +0100828 je->m_rate[i] = le32_to_cpu(je->m_rate[i]);
829 je->t_rate[i] = le32_to_cpu(je->t_rate[i]);
830 je->m_iops[i] = le32_to_cpu(je->m_iops[i]);
831 je->t_iops[i] = le32_to_cpu(je->t_iops[i]);
Jens Axboecf451d12011-10-03 16:48:30 +0200832 je->rate[i] = le32_to_cpu(je->rate[i]);
833 je->iops[i] = le32_to_cpu(je->iops[i]);
834 }
835
Jens Axboeb51eedb2011-10-09 12:13:39 +0200836 je->elapsed_sec = le64_to_cpu(je->elapsed_sec);
Jens Axboecf451d12011-10-03 16:48:30 +0200837 je->eta_sec = le64_to_cpu(je->eta_sec);
Jens Axboe8c621fb2012-03-08 12:30:48 +0100838 je->nr_threads = le32_to_cpu(je->nr_threads);
Jens Axboe48fbb462011-10-09 12:19:08 +0200839}
Jens Axboecf451d12011-10-03 16:48:30 +0200840
Jens Axboe3e47bd22012-02-29 13:45:02 +0100841void fio_client_sum_jobs_eta(struct jobs_eta *dst, struct jobs_eta *je)
Jens Axboe48fbb462011-10-09 12:19:08 +0200842{
Jens Axboe48fbb462011-10-09 12:19:08 +0200843 int i;
844
845 dst->nr_running += je->nr_running;
846 dst->nr_ramp += je->nr_ramp;
847 dst->nr_pending += je->nr_pending;
848 dst->files_open += je->files_open;
Jens Axboe48fbb462011-10-09 12:19:08 +0200849
850 for (i = 0; i < 2; i++) {
Jens Axboe3e47bd22012-02-29 13:45:02 +0100851 dst->m_rate[i] += je->m_rate[i];
852 dst->t_rate[i] += je->t_rate[i];
853 dst->m_iops[i] += je->m_iops[i];
854 dst->t_iops[i] += je->t_iops[i];
Jens Axboe48fbb462011-10-09 12:19:08 +0200855 dst->rate[i] += je->rate[i];
856 dst->iops[i] += je->iops[i];
857 }
858
859 dst->elapsed_sec += je->elapsed_sec;
860
861 if (je->eta_sec > dst->eta_sec)
862 dst->eta_sec = je->eta_sec;
Jens Axboe8c621fb2012-03-08 12:30:48 +0100863
864 dst->nr_threads += je->nr_threads;
865 /* we need to handle je->run_str too ... */
Jens Axboe48fbb462011-10-09 12:19:08 +0200866}
867
Jens Axboea5276612012-03-04 15:15:08 +0100868void fio_client_dec_jobs_eta(struct client_eta *eta, client_eta_op eta_fn)
Jens Axboe82c1ed32011-10-10 08:56:18 +0200869{
870 if (!--eta->pending) {
Jens Axboea5276612012-03-04 15:15:08 +0100871 eta_fn(&eta->eta);
Jens Axboe82c1ed32011-10-10 08:56:18 +0200872 free(eta);
873 }
874}
875
Jens Axboe89c17072011-10-11 10:15:51 +0200876static void remove_reply_cmd(struct fio_client *client, struct fio_net_cmd *cmd)
877{
Jens Axboe40c60512012-03-27 16:03:04 +0200878 struct fio_net_cmd_reply *reply = NULL;
Jens Axboe89c17072011-10-11 10:15:51 +0200879 struct flist_head *entry;
880
881 flist_for_each(entry, &client->cmd_list) {
Jens Axboe40c60512012-03-27 16:03:04 +0200882 reply = flist_entry(entry, struct fio_net_cmd_reply, list);
Jens Axboe89c17072011-10-11 10:15:51 +0200883
Jens Axboe40c60512012-03-27 16:03:04 +0200884 if (cmd->tag == (uintptr_t) reply)
Jens Axboe89c17072011-10-11 10:15:51 +0200885 break;
886
Jens Axboe40c60512012-03-27 16:03:04 +0200887 reply = NULL;
Jens Axboe89c17072011-10-11 10:15:51 +0200888 }
889
Jens Axboe40c60512012-03-27 16:03:04 +0200890 if (!reply) {
891 log_err("fio: client: unable to find matching tag (%lx)\n", cmd->tag);
Jens Axboe89c17072011-10-11 10:15:51 +0200892 return;
893 }
894
Jens Axboe40c60512012-03-27 16:03:04 +0200895 flist_del(&reply->list);
896 cmd->tag = reply->saved_tag;
897 free(reply);
898}
899
900int fio_client_wait_for_reply(struct fio_client *client, uint64_t tag)
901{
902 do {
903 struct fio_net_cmd_reply *reply = NULL;
904 struct flist_head *entry;
905
906 flist_for_each(entry, &client->cmd_list) {
907 reply = flist_entry(entry, struct fio_net_cmd_reply, list);
908
909 if (tag == (uintptr_t) reply)
910 break;
911
912 reply = NULL;
913 }
914
915 if (!reply)
916 break;
917
918 usleep(1000);
919 } while (1);
920
921 return 0;
Jens Axboe89c17072011-10-11 10:15:51 +0200922}
923
Jens Axboe82c1ed32011-10-10 08:56:18 +0200924static void handle_eta(struct fio_client *client, struct fio_net_cmd *cmd)
Jens Axboe48fbb462011-10-09 12:19:08 +0200925{
926 struct jobs_eta *je = (struct jobs_eta *) cmd->payload;
Jens Axboedf380932011-10-11 14:25:08 +0200927 struct client_eta *eta = (struct client_eta *) (uintptr_t) cmd->tag;
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200928
929 dprint(FD_NET, "client: got eta tag %p, %d\n", eta, eta->pending);
Jens Axboe48fbb462011-10-09 12:19:08 +0200930
Jens Axboef77d2672011-10-10 14:36:07 +0200931 assert(client->eta_in_flight == eta);
932
933 client->eta_in_flight = NULL;
Jens Axboe82c1ed32011-10-10 08:56:18 +0200934 flist_del_init(&client->eta_list);
935
Jens Axboe2f99deb2012-03-09 14:37:29 +0100936 if (client->ops->jobs_eta)
937 client->ops->jobs_eta(client, je);
938
Jens Axboe3e47bd22012-02-29 13:45:02 +0100939 fio_client_sum_jobs_eta(&eta->eta, je);
Jens Axboea5276612012-03-04 15:15:08 +0100940 fio_client_dec_jobs_eta(eta, client->ops->eta);
Jens Axboecf451d12011-10-03 16:48:30 +0200941}
942
Jens Axboeb5296dd2011-10-07 16:35:56 +0200943static void handle_probe(struct fio_client *client, struct fio_net_cmd *cmd)
Jens Axboe2e03b4b2011-10-04 09:00:40 +0200944{
945 struct cmd_probe_pdu *probe = (struct cmd_probe_pdu *) cmd->payload;
Jens Axboed2333352011-10-11 15:07:23 +0200946 const char *os, *arch;
947 char bit[16];
Jens Axboe2e03b4b2011-10-04 09:00:40 +0200948
Jens Axboecca84642011-10-07 12:47:57 +0200949 os = fio_get_os_string(probe->os);
950 if (!os)
951 os = "unknown";
952
953 arch = fio_get_arch_string(probe->arch);
954 if (!arch)
955 os = "unknown";
956
Jens Axboed2333352011-10-11 15:07:23 +0200957 sprintf(bit, "%d-bit", probe->bpp * 8);
Jens Axboe38fdef22011-10-11 14:30:06 +0200958
959 log_info("hostname=%s, be=%u, %s, os=%s, arch=%s, fio=%u.%u.%u\n",
960 probe->hostname, probe->bigendian, bit, os, arch,
961 probe->fio_major, probe->fio_minor, probe->fio_patch);
Jens Axboeb5296dd2011-10-07 16:35:56 +0200962
963 if (!client->name)
964 client->name = strdup((char *) probe->hostname);
Jens Axboe2e03b4b2011-10-04 09:00:40 +0200965}
966
Jens Axboe11e950b2011-10-16 21:34:14 +0200967static void handle_start(struct fio_client *client, struct fio_net_cmd *cmd)
968{
969 struct cmd_start_pdu *pdu = (struct cmd_start_pdu *) cmd->payload;
970
971 client->state = Client_started;
Jens Axboe85dd01e2012-03-12 14:33:16 +0100972 client->jobs = pdu->jobs;
Jens Axboe11e950b2011-10-16 21:34:14 +0200973}
974
975static void handle_stop(struct fio_client *client, struct fio_net_cmd *cmd)
976{
Jens Axboe498c92c2011-10-17 09:14:42 +0200977 if (client->error)
978 log_info("client <%s>: exited with error %d\n", client->hostname, client->error);
Jens Axboe11e950b2011-10-16 21:34:14 +0200979}
980
Jens Axboe6b79c802012-03-08 10:51:36 +0100981static void convert_stop(struct fio_net_cmd *cmd)
982{
983 struct cmd_end_pdu *pdu = (struct cmd_end_pdu *) cmd->payload;
984
985 pdu->error = le32_to_cpu(pdu->error);
986}
987
Jens Axboe084d1c62012-03-03 20:28:07 +0100988static void convert_text(struct fio_net_cmd *cmd)
989{
990 struct cmd_text_pdu *pdu = (struct cmd_text_pdu *) cmd->payload;
991
992 pdu->level = le32_to_cpu(pdu->level);
993 pdu->buf_len = le32_to_cpu(pdu->buf_len);
994 pdu->log_sec = le64_to_cpu(pdu->log_sec);
995 pdu->log_usec = le64_to_cpu(pdu->log_usec);
996}
997
Jens Axboe1b427252012-03-14 15:03:03 +0100998/*
999 * This has been compressed on the server side, since it can be big.
1000 * Uncompress here.
1001 */
1002static struct cmd_iolog_pdu *convert_iolog(struct fio_net_cmd *cmd)
1003{
1004 struct cmd_iolog_pdu *pdu = (struct cmd_iolog_pdu *) cmd->payload;
1005 struct cmd_iolog_pdu *ret;
1006 uint32_t nr_samples;
1007 unsigned long total;
1008 z_stream stream;
1009 void *p;
Jens Axboef5ed7652012-03-14 16:28:07 +01001010 int i;
Jens Axboe1b427252012-03-14 15:03:03 +01001011
1012 stream.zalloc = Z_NULL;
1013 stream.zfree = Z_NULL;
1014 stream.opaque = Z_NULL;
1015 stream.avail_in = 0;
1016 stream.next_in = Z_NULL;
1017
1018 if (inflateInit(&stream) != Z_OK)
1019 return NULL;
1020
1021 /*
Jens Axboef5ed7652012-03-14 16:28:07 +01001022 * Get header first, it's not compressed
Jens Axboe1b427252012-03-14 15:03:03 +01001023 */
1024 nr_samples = le32_to_cpu(pdu->nr_samples);
1025
Jens Axboef5ed7652012-03-14 16:28:07 +01001026 total = nr_samples * sizeof(struct io_sample);
1027 ret = malloc(total + sizeof(*pdu));
Jens Axboe2f122b12012-03-15 13:10:19 +01001028 ret->thread_number = le32_to_cpu(pdu->thread_number);
Jens Axboe1b427252012-03-14 15:03:03 +01001029 ret->nr_samples = nr_samples;
Jens Axboef5ed7652012-03-14 16:28:07 +01001030 ret->log_type = le32_to_cpu(pdu->log_type);
1031 strcpy((char *) ret->name, (char *) pdu->name);
Jens Axboe1b427252012-03-14 15:03:03 +01001032
Jens Axboef5ed7652012-03-14 16:28:07 +01001033 p = (void *) ret + sizeof(*pdu);
1034
1035 stream.avail_in = cmd->pdu_len - sizeof(*pdu);
1036 stream.next_in = (void *) pdu + sizeof(*pdu);
Jens Axboe1b427252012-03-14 15:03:03 +01001037 while (stream.avail_in) {
1038 unsigned int this_chunk = 65536;
1039 unsigned int this_len;
1040 int err;
1041
1042 if (this_chunk > total)
1043 this_chunk = total;
1044
1045 stream.avail_out = this_chunk;
1046 stream.next_out = p;
1047 err = inflate(&stream, Z_NO_FLUSH);
Jens Axboe3c547fe2012-03-14 21:53:00 +01001048 /* may be Z_OK, or Z_STREAM_END */
1049 if (err < 0) {
Jens Axboe1b427252012-03-14 15:03:03 +01001050 log_err("fio: inflate error %d\n", err);
Jens Axboef5ed7652012-03-14 16:28:07 +01001051 free(ret);
1052 ret = NULL;
Jens Axboe1b427252012-03-14 15:03:03 +01001053 goto out;
1054 }
1055
1056 this_len = this_chunk - stream.avail_out;
1057 p += this_len;
1058 total -= this_len;
1059 }
1060
Jens Axboef5ed7652012-03-14 16:28:07 +01001061 for (i = 0; i < ret->nr_samples; i++) {
1062 struct io_sample *s = &ret->samples[i];
1063
1064 s->time = le64_to_cpu(s->time);
1065 s->val = le64_to_cpu(s->val);
1066 s->ddir = le32_to_cpu(s->ddir);
1067 s->bs = le32_to_cpu(s->bs);
1068 }
1069
Jens Axboe1b427252012-03-14 15:03:03 +01001070out:
1071 inflateEnd(&stream);
1072 return ret;
1073}
1074
Jens Axboea5276612012-03-04 15:15:08 +01001075int fio_handle_client(struct fio_client *client)
Jens Axboe37db14f2011-09-30 17:00:42 -06001076{
Jens Axboea5276612012-03-04 15:15:08 +01001077 struct client_ops *ops = client->ops;
Jens Axboe37db14f2011-09-30 17:00:42 -06001078 struct fio_net_cmd *cmd;
1079
Jens Axboe60efd142011-10-04 13:30:11 +02001080 dprint(FD_NET, "client: handle %s\n", client->hostname);
1081
Jens Axboee951bdc2011-10-05 21:58:45 +02001082 cmd = fio_net_recv_cmd(client->fd);
1083 if (!cmd)
1084 return 0;
Jens Axboec2c94582011-10-05 20:31:30 +02001085
Jens Axboeb9d2f302012-03-08 20:36:28 +01001086 dprint(FD_NET, "client: got cmd op %s from %s (pdu=%u)\n",
1087 fio_server_op(cmd->opcode), client->hostname, cmd->pdu_len);
Jens Axboe46c48f12011-10-01 12:50:51 -06001088
Jens Axboee951bdc2011-10-05 21:58:45 +02001089 switch (cmd->opcode) {
1090 case FIO_NET_CMD_QUIT:
Jens Axboe3ec62ec2012-03-01 12:01:29 +01001091 if (ops->quit)
Jens Axboe35c0ba72012-03-14 10:56:40 +01001092 ops->quit(client, cmd);
Jens Axboee951bdc2011-10-05 21:58:45 +02001093 remove_client(client);
1094 free(cmd);
1095 break;
Jens Axboe084d1c62012-03-03 20:28:07 +01001096 case FIO_NET_CMD_TEXT:
1097 convert_text(cmd);
Jens Axboe35c0ba72012-03-14 10:56:40 +01001098 ops->text(client, cmd);
Jens Axboee951bdc2011-10-05 21:58:45 +02001099 free(cmd);
1100 break;
Jens Axboe3bf236c2012-03-03 20:35:50 +01001101 case FIO_NET_CMD_DU: {
1102 struct cmd_du_pdu *du = (struct cmd_du_pdu *) cmd->payload;
1103
1104 convert_dus(&du->dus);
1105 convert_agg(&du->agg);
1106
Stephen M. Camerondd366722012-02-24 08:17:30 +01001107 ops->disk_util(client, cmd);
Jens Axboed09a64a2011-10-13 11:38:56 +02001108 free(cmd);
1109 break;
Jens Axboe3bf236c2012-03-03 20:35:50 +01001110 }
1111 case FIO_NET_CMD_TS: {
1112 struct cmd_ts_pdu *p = (struct cmd_ts_pdu *) cmd->payload;
1113
1114 convert_ts(&p->ts, &p->ts);
1115 convert_gs(&p->rs, &p->rs);
1116
Jens Axboe89e5fad2012-03-05 09:21:12 +01001117 ops->thread_status(client, cmd);
Jens Axboee951bdc2011-10-05 21:58:45 +02001118 free(cmd);
1119 break;
Jens Axboe3bf236c2012-03-03 20:35:50 +01001120 }
1121 case FIO_NET_CMD_GS: {
1122 struct group_run_stats *gs = (struct group_run_stats *) cmd->payload;
1123
1124 convert_gs(gs, gs);
1125
Jens Axboe89e5fad2012-03-05 09:21:12 +01001126 ops->group_stats(client, cmd);
Jens Axboee951bdc2011-10-05 21:58:45 +02001127 free(cmd);
1128 break;
Jens Axboe3bf236c2012-03-03 20:35:50 +01001129 }
1130 case FIO_NET_CMD_ETA: {
1131 struct jobs_eta *je = (struct jobs_eta *) cmd->payload;
1132
Jens Axboe89c17072011-10-11 10:15:51 +02001133 remove_reply_cmd(client, cmd);
Jens Axboe3bf236c2012-03-03 20:35:50 +01001134 convert_jobs_eta(je);
Jens Axboea5276612012-03-04 15:15:08 +01001135 handle_eta(client, cmd);
Jens Axboee951bdc2011-10-05 21:58:45 +02001136 free(cmd);
1137 break;
Jens Axboe3bf236c2012-03-03 20:35:50 +01001138 }
Jens Axboee951bdc2011-10-05 21:58:45 +02001139 case FIO_NET_CMD_PROBE:
Jens Axboe89c17072011-10-11 10:15:51 +02001140 remove_reply_cmd(client, cmd);
Stephen M. Camerondd366722012-02-24 08:17:30 +01001141 ops->probe(client, cmd);
Jens Axboee951bdc2011-10-05 21:58:45 +02001142 free(cmd);
1143 break;
Jens Axboe5d7793a2012-03-08 19:59:16 +01001144 case FIO_NET_CMD_SERVER_START:
Jens Axboe01be0382011-10-15 14:43:41 +02001145 client->state = Client_running;
Jens Axboe85dd01e2012-03-12 14:33:16 +01001146 if (ops->job_start)
1147 ops->job_start(client, cmd);
Jens Axboe01be0382011-10-15 14:43:41 +02001148 free(cmd);
1149 break;
Jens Axboe85dd01e2012-03-12 14:33:16 +01001150 case FIO_NET_CMD_START: {
1151 struct cmd_start_pdu *pdu = (struct cmd_start_pdu *) cmd->payload;
1152
1153 pdu->jobs = le32_to_cpu(pdu->jobs);
1154 ops->start(client, cmd);
Jens Axboee951bdc2011-10-05 21:58:45 +02001155 free(cmd);
1156 break;
Jens Axboe85dd01e2012-03-12 14:33:16 +01001157 }
Jens Axboe6b79c802012-03-08 10:51:36 +01001158 case FIO_NET_CMD_STOP: {
1159 struct cmd_end_pdu *pdu = (struct cmd_end_pdu *) cmd->payload;
1160
1161 convert_stop(cmd);
1162 client->state = Client_stopped;
Jens Axboe122c7722012-03-19 09:13:15 +01001163 client->error = le32_to_cpu(pdu->error);
1164 client->signal = le32_to_cpu(pdu->signal);
Jens Axboe6b79c802012-03-08 10:51:36 +01001165 ops->stop(client, cmd);
Jens Axboee951bdc2011-10-05 21:58:45 +02001166 free(cmd);
1167 break;
Jens Axboe6b79c802012-03-08 10:51:36 +01001168 }
Jens Axboe40c60512012-03-27 16:03:04 +02001169 case FIO_NET_CMD_ADD_JOB: {
1170 struct cmd_add_job_pdu *pdu = (struct cmd_add_job_pdu *) cmd->payload;
1171
1172 client->thread_number = le32_to_cpu(pdu->thread_number);
1173 client->groupid = le32_to_cpu(pdu->groupid);
1174
Jens Axboe807f9972012-03-02 10:25:24 +01001175 if (ops->add_job)
1176 ops->add_job(client, cmd);
1177 free(cmd);
1178 break;
Jens Axboe40c60512012-03-27 16:03:04 +02001179 }
Jens Axboe1b427252012-03-14 15:03:03 +01001180 case FIO_NET_CMD_IOLOG:
1181 if (ops->iolog) {
1182 struct cmd_iolog_pdu *pdu;
1183
1184 pdu = convert_iolog(cmd);
1185 ops->iolog(client, pdu);
1186 }
1187 free(cmd);
1188 break;
Jens Axboe40c60512012-03-27 16:03:04 +02001189 case FIO_NET_CMD_UPDATE_JOB:
1190 remove_reply_cmd(client, cmd);
1191 ops->update_job(client, cmd);
1192 free(cmd);
1193 break;
Jens Axboee951bdc2011-10-05 21:58:45 +02001194 default:
Jens Axboe89c17072011-10-11 10:15:51 +02001195 log_err("fio: unknown client op: %s\n", fio_server_op(cmd->opcode));
Jens Axboee951bdc2011-10-05 21:58:45 +02001196 free(cmd);
1197 break;
Jens Axboe37db14f2011-09-30 17:00:42 -06001198 }
1199
Jens Axboee951bdc2011-10-05 21:58:45 +02001200 return 1;
Jens Axboe37db14f2011-09-30 17:00:42 -06001201}
Jens Axboeb66570d2011-10-01 11:11:35 -06001202
Jens Axboea5276612012-03-04 15:15:08 +01001203static void request_client_etas(struct client_ops *ops)
Jens Axboeaf9c9fb2011-10-09 21:54:10 +02001204{
1205 struct fio_client *client;
1206 struct flist_head *entry;
1207 struct client_eta *eta;
Jens Axboe82c1ed32011-10-10 08:56:18 +02001208 int skipped = 0;
Jens Axboeaf9c9fb2011-10-09 21:54:10 +02001209
1210 dprint(FD_NET, "client: request eta (%d)\n", nr_clients);
1211
Jens Axboeaf9c9fb2011-10-09 21:54:10 +02001212 eta = malloc(sizeof(*eta));
1213 memset(&eta->eta, 0, sizeof(eta->eta));
1214 eta->pending = nr_clients;
1215
1216 flist_for_each(entry, &client_list) {
1217 client = flist_entry(entry, struct fio_client, list);
1218
Jens Axboe82c1ed32011-10-10 08:56:18 +02001219 if (!flist_empty(&client->eta_list)) {
1220 skipped++;
1221 continue;
1222 }
Jens Axboe01be0382011-10-15 14:43:41 +02001223 if (client->state != Client_running)
1224 continue;
Jens Axboe82c1ed32011-10-10 08:56:18 +02001225
Jens Axboef77d2672011-10-10 14:36:07 +02001226 assert(!client->eta_in_flight);
Jens Axboe82c1ed32011-10-10 08:56:18 +02001227 flist_add_tail(&client->eta_list, &eta_list);
Jens Axboef77d2672011-10-10 14:36:07 +02001228 client->eta_in_flight = eta;
Jens Axboeaf9c9fb2011-10-09 21:54:10 +02001229 fio_net_send_simple_cmd(client->fd, FIO_NET_CMD_SEND_ETA,
Jens Axboedf380932011-10-11 14:25:08 +02001230 (uintptr_t) eta, &client->cmd_list);
Jens Axboeaf9c9fb2011-10-09 21:54:10 +02001231 }
1232
Jens Axboe82c1ed32011-10-10 08:56:18 +02001233 while (skipped--)
Jens Axboea5276612012-03-04 15:15:08 +01001234 fio_client_dec_jobs_eta(eta, ops->eta);
Jens Axboe82c1ed32011-10-10 08:56:18 +02001235
Jens Axboeaf9c9fb2011-10-09 21:54:10 +02001236 dprint(FD_NET, "client: requested eta tag %p\n", eta);
1237}
1238
Jens Axboe89c17072011-10-11 10:15:51 +02001239static int client_check_cmd_timeout(struct fio_client *client,
1240 struct timeval *now)
1241{
Jens Axboe40c60512012-03-27 16:03:04 +02001242 struct fio_net_cmd_reply *reply;
Jens Axboe89c17072011-10-11 10:15:51 +02001243 struct flist_head *entry, *tmp;
1244 int ret = 0;
1245
1246 flist_for_each_safe(entry, tmp, &client->cmd_list) {
Jens Axboe40c60512012-03-27 16:03:04 +02001247 reply = flist_entry(entry, struct fio_net_cmd_reply, list);
Jens Axboe89c17072011-10-11 10:15:51 +02001248
Jens Axboe40c60512012-03-27 16:03:04 +02001249 if (mtime_since(&reply->tv, now) < FIO_NET_CLIENT_TIMEOUT)
Jens Axboe89c17072011-10-11 10:15:51 +02001250 continue;
1251
1252 log_err("fio: client %s, timeout on cmd %s\n", client->hostname,
Jens Axboe40c60512012-03-27 16:03:04 +02001253 fio_server_op(reply->opcode));
1254 flist_del(&reply->list);
1255 free(reply);
Jens Axboe89c17072011-10-11 10:15:51 +02001256 ret = 1;
1257 }
1258
1259 return flist_empty(&client->cmd_list) && ret;
1260}
1261
Jens Axboea5276612012-03-04 15:15:08 +01001262static int fio_check_clients_timed_out(void)
Jens Axboe89c17072011-10-11 10:15:51 +02001263{
1264 struct fio_client *client;
1265 struct flist_head *entry, *tmp;
1266 struct timeval tv;
1267 int ret = 0;
1268
1269 gettimeofday(&tv, NULL);
1270
1271 flist_for_each_safe(entry, tmp, &client_list) {
1272 client = flist_entry(entry, struct fio_client, list);
1273
1274 if (flist_empty(&client->cmd_list))
1275 continue;
1276
1277 if (!client_check_cmd_timeout(client, &tv))
1278 continue;
1279
Jens Axboea5276612012-03-04 15:15:08 +01001280 if (client->ops->timed_out)
1281 client->ops->timed_out(client);
Jens Axboeed727a42012-03-02 12:14:40 +01001282 else
1283 log_err("fio: client %s timed out\n", client->hostname);
1284
Jens Axboe89c17072011-10-11 10:15:51 +02001285 remove_client(client);
1286 ret = 1;
1287 }
1288
1289 return ret;
1290}
1291
Stephen M. Camerondd366722012-02-24 08:17:30 +01001292int fio_handle_clients(struct client_ops *ops)
Jens Axboeb66570d2011-10-01 11:11:35 -06001293{
Jens Axboeb66570d2011-10-01 11:11:35 -06001294 struct pollfd *pfds;
Jens Axboe498c92c2011-10-17 09:14:42 +02001295 int i, ret = 0, retval = 0;
Jens Axboeb66570d2011-10-01 11:11:35 -06001296
Jens Axboeaf9c9fb2011-10-09 21:54:10 +02001297 gettimeofday(&eta_tv, NULL);
1298
Jens Axboeb66570d2011-10-01 11:11:35 -06001299 pfds = malloc(nr_clients * sizeof(struct pollfd));
1300
Jens Axboe37f0c1a2011-10-11 14:08:33 +02001301 sum_stat_clients = nr_clients;
1302 init_thread_stat(&client_ts);
1303 init_group_run_stat(&client_gs);
1304
Jens Axboeb66570d2011-10-01 11:11:35 -06001305 while (!exit_backend && nr_clients) {
Jens Axboec2cb6862012-02-23 20:56:12 +01001306 struct flist_head *entry, *tmp;
1307 struct fio_client *client;
1308
Jens Axboe82a4be12011-10-01 12:40:32 -06001309 i = 0;
Jens Axboec2cb6862012-02-23 20:56:12 +01001310 flist_for_each_safe(entry, tmp, &client_list) {
Jens Axboe82a4be12011-10-01 12:40:32 -06001311 client = flist_entry(entry, struct fio_client, list);
1312
Jens Axboea5276612012-03-04 15:15:08 +01001313 if (!client->sent_job && !client->ops->stay_connected &&
Jens Axboec2cb6862012-02-23 20:56:12 +01001314 flist_empty(&client->cmd_list)) {
1315 remove_client(client);
1316 continue;
1317 }
1318
Jens Axboe82a4be12011-10-01 12:40:32 -06001319 pfds[i].fd = client->fd;
1320 pfds[i].events = POLLIN;
1321 i++;
1322 }
1323
Jens Axboec2cb6862012-02-23 20:56:12 +01001324 if (!nr_clients)
1325 break;
1326
Jens Axboe82a4be12011-10-01 12:40:32 -06001327 assert(i == nr_clients);
1328
Jens Axboe5c2857f2011-10-04 13:14:32 +02001329 do {
Jens Axboeaf9c9fb2011-10-09 21:54:10 +02001330 struct timeval tv;
1331
1332 gettimeofday(&tv, NULL);
Jens Axboe6433ee02012-03-09 20:10:51 +01001333 if (mtime_since(&eta_tv, &tv) >= ops->eta_msec) {
Jens Axboea5276612012-03-04 15:15:08 +01001334 request_client_etas(ops);
Jens Axboeaf9c9fb2011-10-09 21:54:10 +02001335 memcpy(&eta_tv, &tv, sizeof(tv));
Jens Axboe89c17072011-10-11 10:15:51 +02001336
Jens Axboea5276612012-03-04 15:15:08 +01001337 if (fio_check_clients_timed_out())
Jens Axboe89c17072011-10-11 10:15:51 +02001338 break;
Jens Axboeaf9c9fb2011-10-09 21:54:10 +02001339 }
1340
Jens Axboe80102c82012-03-23 13:19:31 +01001341 ret = poll(pfds, nr_clients, ops->eta_msec);
Jens Axboe5c2857f2011-10-04 13:14:32 +02001342 if (ret < 0) {
1343 if (errno == EINTR)
1344 continue;
1345 log_err("fio: poll clients: %s\n", strerror(errno));
1346 break;
1347 } else if (!ret)
Jens Axboeb66570d2011-10-01 11:11:35 -06001348 continue;
Jens Axboe5c2857f2011-10-04 13:14:32 +02001349 } while (ret <= 0);
Jens Axboeb66570d2011-10-01 11:11:35 -06001350
1351 for (i = 0; i < nr_clients; i++) {
1352 if (!(pfds[i].revents & POLLIN))
1353 continue;
1354
1355 client = find_client_by_fd(pfds[i].fd);
1356 if (!client) {
Jens Axboe3c5f57e2011-10-06 12:37:50 +02001357 log_err("fio: unknown client fd %d\n", pfds[i].fd);
Jens Axboeb66570d2011-10-01 11:11:35 -06001358 continue;
1359 }
Jens Axboea5276612012-03-04 15:15:08 +01001360 if (!fio_handle_client(client)) {
Jens Axboe28d3ab02011-10-05 20:45:37 +02001361 log_info("client: host=%s disconnected\n",
1362 client->hostname);
1363 remove_client(client);
Jens Axboe498c92c2011-10-17 09:14:42 +02001364 retval = 1;
Jens Axboe38990762011-10-17 13:31:33 +02001365 } else if (client->error)
Jens Axboe498c92c2011-10-17 09:14:42 +02001366 retval = 1;
Jens Axboe343cb4a2012-03-09 17:16:51 +01001367 fio_put_client(client);
Jens Axboeb66570d2011-10-01 11:11:35 -06001368 }
1369 }
1370
1371 free(pfds);
Jens Axboe498c92c2011-10-17 09:14:42 +02001372 return retval;
Jens Axboeb66570d2011-10-01 11:11:35 -06001373}