blob: dd75882c54f3714db8d8ca37e7119b91be742a66 [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 Axboe132159a2011-09-30 15:01:32 -060017
18#include "fio.h"
19#include "server.h"
Jens Axboeb66570d2011-10-01 11:11:35 -060020#include "flist.h"
Jens Axboe3c5f57e2011-10-06 12:37:50 +020021#include "hash.h"
Jens Axboe132159a2011-09-30 15:01:32 -060022
Jens Axboe82c1ed32011-10-10 08:56:18 +020023struct client_eta {
24 struct jobs_eta eta;
25 unsigned int pending;
26};
27
Jens Axboeb66570d2011-10-01 11:11:35 -060028struct fio_client {
29 struct flist_head list;
Jens Axboebebe6392011-10-07 10:00:51 +020030 struct flist_head hash_list;
Jens Axboe3f3a4542011-10-10 21:11:09 +020031 struct flist_head arg_list;
Jens Axboe811826b2011-10-24 09:11:50 +020032 union {
33 struct sockaddr_in addr;
34 struct sockaddr_in6 addr6;
35 struct sockaddr_un addr_un;
36 };
Jens Axboeb66570d2011-10-01 11:11:35 -060037 char *hostname;
Jens Axboebebe6392011-10-07 10:00:51 +020038 int port;
Jens Axboeb66570d2011-10-01 11:11:35 -060039 int fd;
Jens Axboee55f8f32012-03-06 15:42:31 +010040 unsigned int refs;
Jens Axboe81179ee2011-10-04 12:42:06 +020041
Jens Axboeb5296dd2011-10-07 16:35:56 +020042 char *name;
43
Jens Axboe81179ee2011-10-04 12:42:06 +020044 int state;
Jens Axboeaf9c9fb2011-10-09 21:54:10 +020045
Jens Axboe17dd1762011-10-04 13:27:34 +020046 int skip_newline;
Jens Axboe87aa8f12011-10-06 21:24:13 +020047 int is_sock;
Jens Axboed09a64a2011-10-13 11:38:56 +020048 int disk_stats_shown;
Jens Axboe11e950b2011-10-16 21:34:14 +020049 unsigned int jobs;
50 int error;
Jens Axboe811826b2011-10-24 09:11:50 +020051 int ipv6;
Jens Axboec2cb6862012-02-23 20:56:12 +010052 int sent_job;
Jens Axboe82c1ed32011-10-10 08:56:18 +020053
54 struct flist_head eta_list;
55 struct client_eta *eta_in_flight;
Jens Axboe81179ee2011-10-04 12:42:06 +020056
Jens Axboe89c17072011-10-11 10:15:51 +020057 struct flist_head cmd_list;
58
Jens Axboe81179ee2011-10-04 12:42:06 +020059 uint16_t argc;
60 char **argv;
61};
62
Jens Axboeaf9c9fb2011-10-09 21:54:10 +020063static struct timeval eta_tv;
Jens Axboe48fbb462011-10-09 12:19:08 +020064
Jens Axboe81179ee2011-10-04 12:42:06 +020065enum {
Jens Axboe5c2857f2011-10-04 13:14:32 +020066 Client_created = 0,
Jens Axboe81179ee2011-10-04 12:42:06 +020067 Client_connected = 1,
68 Client_started = 2,
Jens Axboe01be0382011-10-15 14:43:41 +020069 Client_running = 3,
70 Client_stopped = 4,
71 Client_exited = 5,
Jens Axboeb66570d2011-10-01 11:11:35 -060072};
73
74static FLIST_HEAD(client_list);
Jens Axboe82c1ed32011-10-10 08:56:18 +020075static FLIST_HEAD(eta_list);
Jens Axboeb66570d2011-10-01 11:11:35 -060076
Jens Axboe3f3a4542011-10-10 21:11:09 +020077static FLIST_HEAD(arg_list);
78
Jens Axboe37f0c1a2011-10-11 14:08:33 +020079static struct thread_stat client_ts;
80static struct group_run_stats client_gs;
81static int sum_stat_clients;
82static int sum_stat_nr;
83
Jens Axboe3c5f57e2011-10-06 12:37:50 +020084#define FIO_CLIENT_HASH_BITS 7
85#define FIO_CLIENT_HASH_SZ (1 << FIO_CLIENT_HASH_BITS)
86#define FIO_CLIENT_HASH_MASK (FIO_CLIENT_HASH_SZ - 1)
Jens Axboebebe6392011-10-07 10:00:51 +020087static struct flist_head client_hash[FIO_CLIENT_HASH_SZ];
Jens Axboe3c5f57e2011-10-06 12:37:50 +020088
Jens Axboee951bdc2011-10-05 21:58:45 +020089static int handle_client(struct fio_client *client);
Jens Axboe82c1ed32011-10-10 08:56:18 +020090static void dec_jobs_eta(struct client_eta *eta);
Jens Axboe0b8f30a2011-10-04 10:31:53 +020091
Jens Axboebebe6392011-10-07 10:00:51 +020092static void fio_client_add_hash(struct fio_client *client)
Jens Axboe3c5f57e2011-10-06 12:37:50 +020093{
94 int bucket = hash_long(client->fd, FIO_CLIENT_HASH_BITS);
95
96 bucket &= FIO_CLIENT_HASH_MASK;
Jens Axboebebe6392011-10-07 10:00:51 +020097 flist_add(&client->hash_list, &client_hash[bucket]);
Jens Axboe3c5f57e2011-10-06 12:37:50 +020098}
99
Jens Axboebebe6392011-10-07 10:00:51 +0200100static void fio_client_remove_hash(struct fio_client *client)
Jens Axboe3c5f57e2011-10-06 12:37:50 +0200101{
Jens Axboebebe6392011-10-07 10:00:51 +0200102 if (!flist_empty(&client->hash_list))
103 flist_del_init(&client->hash_list);
Jens Axboe3c5f57e2011-10-06 12:37:50 +0200104}
105
106static void fio_init fio_client_hash_init(void)
107{
108 int i;
109
Jens Axboebebe6392011-10-07 10:00:51 +0200110 for (i = 0; i < FIO_CLIENT_HASH_SZ; i++)
111 INIT_FLIST_HEAD(&client_hash[i]);
Jens Axboe3c5f57e2011-10-06 12:37:50 +0200112}
113
Jens Axboeb66570d2011-10-01 11:11:35 -0600114static struct fio_client *find_client_by_fd(int fd)
115{
Jens Axboe3c5f57e2011-10-06 12:37:50 +0200116 int bucket = hash_long(fd, FIO_CLIENT_HASH_BITS) & FIO_CLIENT_HASH_MASK;
Jens Axboeb66570d2011-10-01 11:11:35 -0600117 struct fio_client *client;
118 struct flist_head *entry;
119
Jens Axboebebe6392011-10-07 10:00:51 +0200120 flist_for_each(entry, &client_hash[bucket]) {
121 client = flist_entry(entry, struct fio_client, hash_list);
Jens Axboeb66570d2011-10-01 11:11:35 -0600122
Jens Axboee55f8f32012-03-06 15:42:31 +0100123 if (client->fd == fd) {
124 client->refs++;
Jens Axboeb66570d2011-10-01 11:11:35 -0600125 return client;
Jens Axboee55f8f32012-03-06 15:42:31 +0100126 }
Jens Axboeb66570d2011-10-01 11:11:35 -0600127 }
128
129 return NULL;
130}
131
Jens Axboeb66570d2011-10-01 11:11:35 -0600132static void remove_client(struct fio_client *client)
133{
Jens Axboee55f8f32012-03-06 15:42:31 +0100134 assert(client->refs);
135
136 if (--client->refs)
137 return;
138
Jens Axboe39e8e012011-10-04 13:46:08 +0200139 dprint(FD_NET, "client: removed <%s>\n", client->hostname);
Jens Axboeb66570d2011-10-01 11:11:35 -0600140 flist_del(&client->list);
Jens Axboe3c5f57e2011-10-06 12:37:50 +0200141
Jens Axboebebe6392011-10-07 10:00:51 +0200142 fio_client_remove_hash(client);
Jens Axboe81179ee2011-10-04 12:42:06 +0200143
Jens Axboe82c1ed32011-10-10 08:56:18 +0200144 if (!flist_empty(&client->eta_list)) {
145 flist_del_init(&client->eta_list);
146 dec_jobs_eta(client->eta_in_flight);
147 }
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200148
Jens Axboeb66570d2011-10-01 11:11:35 -0600149 free(client->hostname);
Jens Axboe81179ee2011-10-04 12:42:06 +0200150 if (client->argv)
151 free(client->argv);
Jens Axboeb5296dd2011-10-07 16:35:56 +0200152 if (client->name)
153 free(client->name);
Jens Axboe81179ee2011-10-04 12:42:06 +0200154
Jens Axboeb66570d2011-10-01 11:11:35 -0600155 free(client);
Jens Axboe3c5f57e2011-10-06 12:37:50 +0200156 nr_clients--;
Jens Axboe5fd0acb2011-10-11 14:20:22 +0200157 sum_stat_clients--;
Jens Axboeb66570d2011-10-01 11:11:35 -0600158}
Jens Axboe132159a2011-09-30 15:01:32 -0600159
Jens Axboee55f8f32012-03-06 15:42:31 +0100160static void put_client(struct fio_client *client)
161{
162 remove_client(client);
163}
164
Jens Axboefa2ea802011-10-08 21:07:29 +0200165static void __fio_client_add_cmd_option(struct fio_client *client,
166 const char *opt)
Jens Axboe81179ee2011-10-04 12:42:06 +0200167{
Jens Axboe39e8e012011-10-04 13:46:08 +0200168 int index;
169
170 index = client->argc++;
Jens Axboe81179ee2011-10-04 12:42:06 +0200171 client->argv = realloc(client->argv, sizeof(char *) * client->argc);
Jens Axboe39e8e012011-10-04 13:46:08 +0200172 client->argv[index] = strdup(opt);
173 dprint(FD_NET, "client: add cmd %d: %s\n", index, opt);
Jens Axboe81179ee2011-10-04 12:42:06 +0200174}
175
Jens Axboefa2ea802011-10-08 21:07:29 +0200176void fio_client_add_cmd_option(void *cookie, const char *opt)
Jens Axboe81179ee2011-10-04 12:42:06 +0200177{
Jens Axboebebe6392011-10-07 10:00:51 +0200178 struct fio_client *client = cookie;
Jens Axboe3f3a4542011-10-10 21:11:09 +0200179 struct flist_head *entry;
Jens Axboe81179ee2011-10-04 12:42:06 +0200180
Jens Axboebebe6392011-10-07 10:00:51 +0200181 if (!client || !opt)
Jens Axboefa2ea802011-10-08 21:07:29 +0200182 return;
Jens Axboe81179ee2011-10-04 12:42:06 +0200183
Jens Axboefa2ea802011-10-08 21:07:29 +0200184 __fio_client_add_cmd_option(client, opt);
Jens Axboe3f3a4542011-10-10 21:11:09 +0200185
186 /*
187 * Duplicate arguments to shared client group
188 */
189 flist_for_each(entry, &arg_list) {
190 client = flist_entry(entry, struct fio_client, arg_list);
191
192 __fio_client_add_cmd_option(client, opt);
193 }
Jens Axboe81179ee2011-10-04 12:42:06 +0200194}
195
Jens Axboebebe6392011-10-07 10:00:51 +0200196int fio_client_add(const char *hostname, void **cookie)
Jens Axboe132159a2011-09-30 15:01:32 -0600197{
Jens Axboe3f3a4542011-10-10 21:11:09 +0200198 struct fio_client *existing = *cookie;
Jens Axboeb66570d2011-10-01 11:11:35 -0600199 struct fio_client *client;
Jens Axboe132159a2011-09-30 15:01:32 -0600200
Jens Axboe3f3a4542011-10-10 21:11:09 +0200201 if (existing) {
202 /*
203 * We always add our "exec" name as the option, hence 1
204 * means empty.
205 */
206 if (existing->argc == 1)
207 flist_add_tail(&existing->arg_list, &arg_list);
208 else {
209 while (!flist_empty(&arg_list))
210 flist_del_init(arg_list.next);
211 }
212 }
213
Jens Axboeb66570d2011-10-01 11:11:35 -0600214 client = malloc(sizeof(*client));
Jens Axboea37f69b2011-10-01 12:24:21 -0600215 memset(client, 0, sizeof(*client));
Jens Axboe81179ee2011-10-04 12:42:06 +0200216
Jens Axboe3c5f57e2011-10-06 12:37:50 +0200217 INIT_FLIST_HEAD(&client->list);
Jens Axboebebe6392011-10-07 10:00:51 +0200218 INIT_FLIST_HEAD(&client->hash_list);
Jens Axboe3f3a4542011-10-10 21:11:09 +0200219 INIT_FLIST_HEAD(&client->arg_list);
Jens Axboe82c1ed32011-10-10 08:56:18 +0200220 INIT_FLIST_HEAD(&client->eta_list);
Jens Axboe89c17072011-10-11 10:15:51 +0200221 INIT_FLIST_HEAD(&client->cmd_list);
Jens Axboe3c5f57e2011-10-06 12:37:50 +0200222
Jens Axboebebe6392011-10-07 10:00:51 +0200223 if (fio_server_parse_string(hostname, &client->hostname,
224 &client->is_sock, &client->port,
Jens Axboe811826b2011-10-24 09:11:50 +0200225 &client->addr.sin_addr,
226 &client->addr6.sin6_addr,
227 &client->ipv6))
Jens Axboebebe6392011-10-07 10:00:51 +0200228 return -1;
229
Jens Axboea37f69b2011-10-01 12:24:21 -0600230 client->fd = -1;
Jens Axboee55f8f32012-03-06 15:42:31 +0100231 client->refs = 1;
Jens Axboe81179ee2011-10-04 12:42:06 +0200232
233 __fio_client_add_cmd_option(client, "fio");
234
Jens Axboea37f69b2011-10-01 12:24:21 -0600235 flist_add(&client->list, &client_list);
236 nr_clients++;
Jens Axboebebe6392011-10-07 10:00:51 +0200237 dprint(FD_NET, "client: added <%s>\n", client->hostname);
238 *cookie = client;
239 return 0;
Jens Axboea37f69b2011-10-01 12:24:21 -0600240}
241
Jens Axboe87aa8f12011-10-06 21:24:13 +0200242static int fio_client_connect_ip(struct fio_client *client)
Jens Axboea37f69b2011-10-01 12:24:21 -0600243{
Jens Axboe811826b2011-10-24 09:11:50 +0200244 struct sockaddr *addr;
245 fio_socklen_t socklen;
246 int fd, domain;
Jens Axboe132159a2011-09-30 15:01:32 -0600247
Jens Axboe811826b2011-10-24 09:11:50 +0200248 if (client->ipv6) {
249 client->addr6.sin6_family = AF_INET6;
250 client->addr6.sin6_port = htons(client->port);
251 domain = AF_INET6;
252 addr = (struct sockaddr *) &client->addr6;
253 socklen = sizeof(client->addr6);
254 } else {
255 client->addr.sin_family = AF_INET;
256 client->addr.sin_port = htons(client->port);
257 domain = AF_INET;
258 addr = (struct sockaddr *) &client->addr;
259 socklen = sizeof(client->addr);
260 }
Jens Axboe132159a2011-09-30 15:01:32 -0600261
Jens Axboe811826b2011-10-24 09:11:50 +0200262 fd = socket(domain, SOCK_STREAM, 0);
Jens Axboe132159a2011-09-30 15:01:32 -0600263 if (fd < 0) {
264 log_err("fio: socket: %s\n", strerror(errno));
Jens Axboe87aa8f12011-10-06 21:24:13 +0200265 return -1;
Jens Axboe132159a2011-09-30 15:01:32 -0600266 }
267
Jens Axboe811826b2011-10-24 09:11:50 +0200268 if (connect(fd, addr, socklen) < 0) {
Jens Axboe132159a2011-09-30 15:01:32 -0600269 log_err("fio: connect: %s\n", strerror(errno));
Jens Axboea7de0a12011-10-07 12:55:14 +0200270 log_err("fio: failed to connect to %s:%u\n", client->hostname,
271 client->port);
Jens Axboeb94cba42011-10-06 21:27:10 +0200272 close(fd);
Jens Axboe87aa8f12011-10-06 21:24:13 +0200273 return -1;
Jens Axboe132159a2011-09-30 15:01:32 -0600274 }
275
Jens Axboe87aa8f12011-10-06 21:24:13 +0200276 return fd;
277}
278
279static int fio_client_connect_sock(struct fio_client *client)
280{
281 struct sockaddr_un *addr = &client->addr_un;
282 fio_socklen_t len;
283 int fd;
284
285 memset(addr, 0, sizeof(*addr));
286 addr->sun_family = AF_UNIX;
287 strcpy(addr->sun_path, client->hostname);
288
289 fd = socket(AF_UNIX, SOCK_STREAM, 0);
290 if (fd < 0) {
291 log_err("fio: socket: %s\n", strerror(errno));
292 return -1;
293 }
294
295 len = sizeof(addr->sun_family) + strlen(addr->sun_path) + 1;
296 if (connect(fd, (struct sockaddr *) addr, len) < 0) {
297 log_err("fio: connect; %s\n", strerror(errno));
Jens Axboeb94cba42011-10-06 21:27:10 +0200298 close(fd);
Jens Axboe87aa8f12011-10-06 21:24:13 +0200299 return -1;
300 }
301
302 return fd;
303}
304
305static int fio_client_connect(struct fio_client *client)
306{
307 int fd;
308
309 dprint(FD_NET, "client: connect to host %s\n", client->hostname);
310
Jens Axboe87aa8f12011-10-06 21:24:13 +0200311 if (client->is_sock)
312 fd = fio_client_connect_sock(client);
313 else
314 fd = fio_client_connect_ip(client);
315
Jens Axboe89c17072011-10-11 10:15:51 +0200316 dprint(FD_NET, "client: %s connected %d\n", client->hostname, fd);
317
Jens Axboe87aa8f12011-10-06 21:24:13 +0200318 if (fd < 0)
319 return 1;
320
Jens Axboeb66570d2011-10-01 11:11:35 -0600321 client->fd = fd;
Jens Axboebebe6392011-10-07 10:00:51 +0200322 fio_client_add_hash(client);
Jens Axboe81179ee2011-10-04 12:42:06 +0200323 client->state = Client_connected;
Jens Axboe132159a2011-09-30 15:01:32 -0600324 return 0;
325}
326
Jens Axboecc0df002011-10-03 20:53:32 +0200327void fio_clients_terminate(void)
328{
329 struct flist_head *entry;
330 struct fio_client *client;
331
Jens Axboe60efd142011-10-04 13:30:11 +0200332 dprint(FD_NET, "client: terminate clients\n");
333
Jens Axboecc0df002011-10-03 20:53:32 +0200334 flist_for_each(entry, &client_list) {
335 client = flist_entry(entry, struct fio_client, list);
336
Jens Axboe89c17072011-10-11 10:15:51 +0200337 fio_net_send_simple_cmd(client->fd, FIO_NET_CMD_QUIT, 0, NULL);
Jens Axboecc0df002011-10-03 20:53:32 +0200338 }
339}
340
341static void sig_int(int sig)
342{
Jens Axboebebe6392011-10-07 10:00:51 +0200343 dprint(FD_NET, "client: got signal %d\n", sig);
Jens Axboecc0df002011-10-03 20:53:32 +0200344 fio_clients_terminate();
345}
346
347static void client_signal_handler(void)
348{
349 struct sigaction act;
350
351 memset(&act, 0, sizeof(act));
352 act.sa_handler = sig_int;
353 act.sa_flags = SA_RESTART;
354 sigaction(SIGINT, &act, NULL);
355
356 memset(&act, 0, sizeof(act));
357 act.sa_handler = sig_int;
358 act.sa_flags = SA_RESTART;
359 sigaction(SIGTERM, &act, NULL);
360}
361
Jens Axboe0b8f30a2011-10-04 10:31:53 +0200362static void probe_client(struct fio_client *client)
363{
Jens Axboe60efd142011-10-04 13:30:11 +0200364 dprint(FD_NET, "client: send probe\n");
365
Jens Axboe89c17072011-10-11 10:15:51 +0200366 fio_net_send_simple_cmd(client->fd, FIO_NET_CMD_PROBE, 0, &client->cmd_list);
Jens Axboe0b8f30a2011-10-04 10:31:53 +0200367}
368
Jens Axboe81179ee2011-10-04 12:42:06 +0200369static int send_client_cmd_line(struct fio_client *client)
370{
Jens Axboefa2ea802011-10-08 21:07:29 +0200371 struct cmd_single_line_pdu *cslp;
372 struct cmd_line_pdu *clp;
373 unsigned long offset;
Jens Axboe7f868312011-10-10 09:55:21 +0200374 unsigned int *lens;
Jens Axboefa2ea802011-10-08 21:07:29 +0200375 void *pdu;
376 size_t mem;
Jens Axboe81179ee2011-10-04 12:42:06 +0200377 int i, ret;
378
Jens Axboe39e8e012011-10-04 13:46:08 +0200379 dprint(FD_NET, "client: send cmdline %d\n", client->argc);
Jens Axboe60efd142011-10-04 13:30:11 +0200380
Jens Axboe7f868312011-10-10 09:55:21 +0200381 lens = malloc(client->argc * sizeof(unsigned int));
382
Jens Axboefa2ea802011-10-08 21:07:29 +0200383 /*
384 * Find out how much mem we need
385 */
Jens Axboe7f868312011-10-10 09:55:21 +0200386 for (i = 0, mem = 0; i < client->argc; i++) {
387 lens[i] = strlen(client->argv[i]) + 1;
388 mem += lens[i];
389 }
Jens Axboe81179ee2011-10-04 12:42:06 +0200390
Jens Axboefa2ea802011-10-08 21:07:29 +0200391 /*
392 * We need one cmd_line_pdu, and argc number of cmd_single_line_pdu
393 */
394 mem += sizeof(*clp) + (client->argc * sizeof(*cslp));
395
396 pdu = malloc(mem);
397 clp = pdu;
398 offset = sizeof(*clp);
399
400 for (i = 0; i < client->argc; i++) {
Jens Axboe7f868312011-10-10 09:55:21 +0200401 uint16_t arg_len = lens[i];
Jens Axboefa2ea802011-10-08 21:07:29 +0200402
403 cslp = pdu + offset;
404 strcpy((char *) cslp->text, client->argv[i]);
405 cslp->len = cpu_to_le16(arg_len);
406 offset += sizeof(*cslp) + arg_len;
407 }
408
Jens Axboe7f868312011-10-10 09:55:21 +0200409 free(lens);
Jens Axboefa2ea802011-10-08 21:07:29 +0200410 clp->lines = cpu_to_le16(client->argc);
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200411 ret = fio_net_send_cmd(client->fd, FIO_NET_CMD_JOBLINE, pdu, mem, 0);
Jens Axboe81179ee2011-10-04 12:42:06 +0200412 free(pdu);
413 return ret;
414}
415
Jens Axboea37f69b2011-10-01 12:24:21 -0600416int fio_clients_connect(void)
417{
418 struct fio_client *client;
419 struct flist_head *entry, *tmp;
420 int ret;
421
Bruce Cran93bcfd22012-02-20 20:18:19 +0100422#ifdef WIN32
423 WSADATA wsd;
424 WSAStartup(MAKEWORD(2,2), &wsd);
425#endif
426
Jens Axboe60efd142011-10-04 13:30:11 +0200427 dprint(FD_NET, "client: connect all\n");
428
Jens Axboecc0df002011-10-03 20:53:32 +0200429 client_signal_handler();
430
Jens Axboea37f69b2011-10-01 12:24:21 -0600431 flist_for_each_safe(entry, tmp, &client_list) {
432 client = flist_entry(entry, struct fio_client, list);
433
434 ret = fio_client_connect(client);
Jens Axboe0b8f30a2011-10-04 10:31:53 +0200435 if (ret) {
Jens Axboea37f69b2011-10-01 12:24:21 -0600436 remove_client(client);
Jens Axboe0b8f30a2011-10-04 10:31:53 +0200437 continue;
438 }
439
440 probe_client(client);
Jens Axboe81179ee2011-10-04 12:42:06 +0200441
442 if (client->argc > 1)
443 send_client_cmd_line(client);
Jens Axboea37f69b2011-10-01 12:24:21 -0600444 }
445
446 return !nr_clients;
447}
448
Jens Axboe132159a2011-09-30 15:01:32 -0600449/*
450 * Send file contents to server backend. We could use sendfile(), but to remain
451 * more portable lets just read/write the darn thing.
452 */
Jens Axboea37f69b2011-10-01 12:24:21 -0600453static int fio_client_send_ini(struct fio_client *client, const char *filename)
Jens Axboe132159a2011-09-30 15:01:32 -0600454{
455 struct stat sb;
456 char *p, *buf;
457 off_t len;
458 int fd, ret;
459
Jens Axboe46c48f12011-10-01 12:50:51 -0600460 dprint(FD_NET, "send ini %s to %s\n", filename, client->hostname);
461
Jens Axboe132159a2011-09-30 15:01:32 -0600462 fd = open(filename, O_RDONLY);
463 if (fd < 0) {
Jens Axboee951bdc2011-10-05 21:58:45 +0200464 log_err("fio: job file <%s> open: %s\n", filename, strerror(errno));
Jens Axboe132159a2011-09-30 15:01:32 -0600465 return 1;
466 }
467
468 if (fstat(fd, &sb) < 0) {
469 log_err("fio: job file stat: %s\n", strerror(errno));
Jens Axboeb94cba42011-10-06 21:27:10 +0200470 close(fd);
Jens Axboe132159a2011-09-30 15:01:32 -0600471 return 1;
472 }
473
474 buf = malloc(sb.st_size);
475
476 len = sb.st_size;
477 p = buf;
478 do {
479 ret = read(fd, p, len);
480 if (ret > 0) {
481 len -= ret;
482 if (!len)
483 break;
484 p += ret;
485 continue;
486 } else if (!ret)
487 break;
488 else if (errno == EAGAIN || errno == EINTR)
489 continue;
490 } while (1);
491
Jens Axboe0b8f30a2011-10-04 10:31:53 +0200492 if (len) {
493 log_err("fio: failed reading job file %s\n", filename);
Jens Axboeb94cba42011-10-06 21:27:10 +0200494 close(fd);
Jens Axboec524ef72011-10-07 12:23:34 +0200495 free(buf);
Jens Axboe0b8f30a2011-10-04 10:31:53 +0200496 return 1;
497 }
498
Jens Axboec2cb6862012-02-23 20:56:12 +0100499 client->sent_job = 1;
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200500 ret = fio_net_send_cmd(client->fd, FIO_NET_CMD_JOB, buf, sb.st_size, 0);
Jens Axboe132159a2011-09-30 15:01:32 -0600501 free(buf);
Jens Axboeb94cba42011-10-06 21:27:10 +0200502 close(fd);
Jens Axboe132159a2011-09-30 15:01:32 -0600503 return ret;
504}
Jens Axboe37db14f2011-09-30 17:00:42 -0600505
Jens Axboea37f69b2011-10-01 12:24:21 -0600506int fio_clients_send_ini(const char *filename)
507{
508 struct fio_client *client;
509 struct flist_head *entry, *tmp;
510
511 flist_for_each_safe(entry, tmp, &client_list) {
512 client = flist_entry(entry, struct fio_client, list);
513
514 if (fio_client_send_ini(client, filename))
515 remove_client(client);
Jens Axboec2cb6862012-02-23 20:56:12 +0100516
517 client->sent_job = 1;
Jens Axboea37f69b2011-10-01 12:24:21 -0600518 }
519
520 return !nr_clients;
521}
522
Jens Axboea64e88d2011-10-03 14:20:01 +0200523static void convert_io_stat(struct io_stat *dst, struct io_stat *src)
524{
525 dst->max_val = le64_to_cpu(src->max_val);
526 dst->min_val = le64_to_cpu(src->min_val);
527 dst->samples = le64_to_cpu(src->samples);
Jens Axboe802ad4a2011-10-05 09:51:58 +0200528
529 /*
530 * Floats arrive as IEEE 754 encoded uint64_t, convert back to double
531 */
532 dst->mean.u.f = fio_uint64_to_double(le64_to_cpu(dst->mean.u.i));
533 dst->S.u.f = fio_uint64_to_double(le64_to_cpu(dst->S.u.i));
Jens Axboea64e88d2011-10-03 14:20:01 +0200534}
535
536static void convert_ts(struct thread_stat *dst, struct thread_stat *src)
537{
538 int i, j;
539
540 dst->error = le32_to_cpu(src->error);
541 dst->groupid = le32_to_cpu(src->groupid);
542 dst->pid = le32_to_cpu(src->pid);
543 dst->members = le32_to_cpu(src->members);
544
545 for (i = 0; i < 2; i++) {
546 convert_io_stat(&dst->clat_stat[i], &src->clat_stat[i]);
547 convert_io_stat(&dst->slat_stat[i], &src->slat_stat[i]);
548 convert_io_stat(&dst->lat_stat[i], &src->lat_stat[i]);
549 convert_io_stat(&dst->bw_stat[i], &src->bw_stat[i]);
550 }
551
552 dst->usr_time = le64_to_cpu(src->usr_time);
553 dst->sys_time = le64_to_cpu(src->sys_time);
554 dst->ctx = le64_to_cpu(src->ctx);
555 dst->minf = le64_to_cpu(src->minf);
556 dst->majf = le64_to_cpu(src->majf);
557 dst->clat_percentiles = le64_to_cpu(src->clat_percentiles);
Jens Axboe802ad4a2011-10-05 09:51:58 +0200558
559 for (i = 0; i < FIO_IO_U_LIST_MAX_LEN; i++) {
560 fio_fp64_t *fps = &src->percentile_list[i];
561 fio_fp64_t *fpd = &dst->percentile_list[i];
562
563 fpd->u.f = fio_uint64_to_double(le64_to_cpu(fps->u.i));
564 }
Jens Axboea64e88d2011-10-03 14:20:01 +0200565
566 for (i = 0; i < FIO_IO_U_MAP_NR; i++) {
567 dst->io_u_map[i] = le32_to_cpu(src->io_u_map[i]);
568 dst->io_u_submit[i] = le32_to_cpu(src->io_u_submit[i]);
569 dst->io_u_complete[i] = le32_to_cpu(src->io_u_complete[i]);
570 }
571
572 for (i = 0; i < FIO_IO_U_LAT_U_NR; i++) {
573 dst->io_u_lat_u[i] = le32_to_cpu(src->io_u_lat_u[i]);
574 dst->io_u_lat_m[i] = le32_to_cpu(src->io_u_lat_m[i]);
575 }
576
577 for (i = 0; i < 2; i++)
578 for (j = 0; j < FIO_IO_U_PLAT_NR; j++)
579 dst->io_u_plat[i][j] = le32_to_cpu(src->io_u_plat[i][j]);
580
581 for (i = 0; i < 3; i++) {
582 dst->total_io_u[i] = le64_to_cpu(src->total_io_u[i]);
Jens Axboe93eee042011-10-03 21:08:48 +0200583 dst->short_io_u[i] = le64_to_cpu(src->short_io_u[i]);
Jens Axboea64e88d2011-10-03 14:20:01 +0200584 }
585
586 dst->total_submit = le64_to_cpu(src->total_submit);
587 dst->total_complete = le64_to_cpu(src->total_complete);
588
589 for (i = 0; i < 2; i++) {
590 dst->io_bytes[i] = le64_to_cpu(src->io_bytes[i]);
591 dst->runtime[i] = le64_to_cpu(src->runtime[i]);
592 }
593
594 dst->total_run_time = le64_to_cpu(src->total_run_time);
595 dst->continue_on_error = le16_to_cpu(src->continue_on_error);
596 dst->total_err_count = le64_to_cpu(src->total_err_count);
Jens Axboeddcc0b62011-10-03 14:45:27 +0200597 dst->first_error = le32_to_cpu(src->first_error);
598 dst->kb_base = le32_to_cpu(src->kb_base);
Jens Axboea64e88d2011-10-03 14:20:01 +0200599}
600
601static void convert_gs(struct group_run_stats *dst, struct group_run_stats *src)
602{
603 int i;
604
605 for (i = 0; i < 2; i++) {
606 dst->max_run[i] = le64_to_cpu(src->max_run[i]);
607 dst->min_run[i] = le64_to_cpu(src->min_run[i]);
608 dst->max_bw[i] = le64_to_cpu(src->max_bw[i]);
609 dst->min_bw[i] = le64_to_cpu(src->min_bw[i]);
610 dst->io_kb[i] = le64_to_cpu(src->io_kb[i]);
611 dst->agg[i] = le64_to_cpu(src->agg[i]);
612 }
613
614 dst->kb_base = le32_to_cpu(src->kb_base);
615 dst->groupid = le32_to_cpu(src->groupid);
616}
617
618static void handle_ts(struct fio_net_cmd *cmd)
619{
620 struct cmd_ts_pdu *p = (struct cmd_ts_pdu *) cmd->payload;
621
622 convert_ts(&p->ts, &p->ts);
623 convert_gs(&p->rs, &p->rs);
624
625 show_thread_status(&p->ts, &p->rs);
Jens Axboe37f0c1a2011-10-11 14:08:33 +0200626
627 if (sum_stat_clients == 1)
628 return;
629
630 sum_thread_stats(&client_ts, &p->ts, sum_stat_nr);
631 sum_group_stats(&client_gs, &p->rs);
632
633 client_ts.members++;
634 client_ts.groupid = p->ts.groupid;
635
636 if (++sum_stat_nr == sum_stat_clients) {
637 strcpy(client_ts.name, "All clients");
638 show_thread_status(&client_ts, &client_gs);
639 }
Jens Axboea64e88d2011-10-03 14:20:01 +0200640}
641
642static void handle_gs(struct fio_net_cmd *cmd)
643{
644 struct group_run_stats *gs = (struct group_run_stats *) cmd->payload;
645
646 convert_gs(gs, gs);
647 show_group_stats(gs);
648}
649
Jens Axboed09a64a2011-10-13 11:38:56 +0200650static void convert_agg(struct disk_util_agg *agg)
651{
652 int i;
653
654 for (i = 0; i < 2; i++) {
655 agg->ios[i] = le32_to_cpu(agg->ios[i]);
656 agg->merges[i] = le32_to_cpu(agg->merges[i]);
657 agg->sectors[i] = le64_to_cpu(agg->sectors[i]);
658 agg->ticks[i] = le32_to_cpu(agg->ticks[i]);
659 }
660
661 agg->io_ticks = le32_to_cpu(agg->io_ticks);
662 agg->time_in_queue = le32_to_cpu(agg->time_in_queue);
663 agg->slavecount = le32_to_cpu(agg->slavecount);
Anton Blanchard823ba542011-11-07 14:16:26 +0100664 agg->max_util.u.f = fio_uint64_to_double(__le64_to_cpu(agg->max_util.u.i));
Jens Axboed09a64a2011-10-13 11:38:56 +0200665}
666
667static void convert_dus(struct disk_util_stat *dus)
668{
669 int i;
670
671 for (i = 0; i < 2; i++) {
672 dus->ios[i] = le32_to_cpu(dus->ios[i]);
673 dus->merges[i] = le32_to_cpu(dus->merges[i]);
674 dus->sectors[i] = le64_to_cpu(dus->sectors[i]);
675 dus->ticks[i] = le32_to_cpu(dus->ticks[i]);
676 }
677
678 dus->io_ticks = le32_to_cpu(dus->io_ticks);
679 dus->time_in_queue = le32_to_cpu(dus->time_in_queue);
680 dus->msec = le64_to_cpu(dus->msec);
681}
682
683static void handle_du(struct fio_client *client, struct fio_net_cmd *cmd)
684{
685 struct cmd_du_pdu *du = (struct cmd_du_pdu *) cmd->payload;
686
687 convert_dus(&du->dus);
688 convert_agg(&du->agg);
689
690 if (!client->disk_stats_shown) {
691 client->disk_stats_shown = 1;
692 log_info("\nDisk stats (read/write):\n");
693 }
694
Jens Axboef2f788d2011-10-13 14:03:52 +0200695 print_disk_util(&du->dus, &du->agg, terse_output);
Jens Axboed09a64a2011-10-13 11:38:56 +0200696}
697
Jens Axboe48fbb462011-10-09 12:19:08 +0200698static void convert_jobs_eta(struct jobs_eta *je)
Jens Axboecf451d12011-10-03 16:48:30 +0200699{
Jens Axboecf451d12011-10-03 16:48:30 +0200700 int i;
701
702 je->nr_running = le32_to_cpu(je->nr_running);
703 je->nr_ramp = le32_to_cpu(je->nr_ramp);
704 je->nr_pending = le32_to_cpu(je->nr_pending);
705 je->files_open = le32_to_cpu(je->files_open);
706 je->m_rate = le32_to_cpu(je->m_rate);
707 je->t_rate = le32_to_cpu(je->t_rate);
708 je->m_iops = le32_to_cpu(je->m_iops);
709 je->t_iops = le32_to_cpu(je->t_iops);
710
711 for (i = 0; i < 2; i++) {
712 je->rate[i] = le32_to_cpu(je->rate[i]);
713 je->iops[i] = le32_to_cpu(je->iops[i]);
714 }
715
Jens Axboeb51eedb2011-10-09 12:13:39 +0200716 je->elapsed_sec = le64_to_cpu(je->elapsed_sec);
Jens Axboecf451d12011-10-03 16:48:30 +0200717 je->eta_sec = le64_to_cpu(je->eta_sec);
Jens Axboe48fbb462011-10-09 12:19:08 +0200718}
Jens Axboecf451d12011-10-03 16:48:30 +0200719
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200720static void sum_jobs_eta(struct jobs_eta *dst, struct jobs_eta *je)
Jens Axboe48fbb462011-10-09 12:19:08 +0200721{
Jens Axboe48fbb462011-10-09 12:19:08 +0200722 int i;
723
724 dst->nr_running += je->nr_running;
725 dst->nr_ramp += je->nr_ramp;
726 dst->nr_pending += je->nr_pending;
727 dst->files_open += je->files_open;
728 dst->m_rate += je->m_rate;
729 dst->t_rate += je->t_rate;
730 dst->m_iops += je->m_iops;
731 dst->t_iops += je->t_iops;
732
733 for (i = 0; i < 2; i++) {
734 dst->rate[i] += je->rate[i];
735 dst->iops[i] += je->iops[i];
736 }
737
738 dst->elapsed_sec += je->elapsed_sec;
739
740 if (je->eta_sec > dst->eta_sec)
741 dst->eta_sec = je->eta_sec;
742}
743
Jens Axboe82c1ed32011-10-10 08:56:18 +0200744static void dec_jobs_eta(struct client_eta *eta)
745{
746 if (!--eta->pending) {
747 display_thread_status(&eta->eta);
748 free(eta);
749 }
750}
751
Jens Axboe89c17072011-10-11 10:15:51 +0200752static void remove_reply_cmd(struct fio_client *client, struct fio_net_cmd *cmd)
753{
754 struct fio_net_int_cmd *icmd = NULL;
755 struct flist_head *entry;
756
757 flist_for_each(entry, &client->cmd_list) {
758 icmd = flist_entry(entry, struct fio_net_int_cmd, list);
759
Jens Axboedf380932011-10-11 14:25:08 +0200760 if (cmd->tag == (uintptr_t) icmd)
Jens Axboe89c17072011-10-11 10:15:51 +0200761 break;
762
763 icmd = NULL;
764 }
765
766 if (!icmd) {
767 log_err("fio: client: unable to find matching tag\n");
768 return;
769 }
770
771 flist_del(&icmd->list);
772 cmd->tag = icmd->saved_tag;
773 free(icmd);
774}
775
Jens Axboe82c1ed32011-10-10 08:56:18 +0200776static void handle_eta(struct fio_client *client, struct fio_net_cmd *cmd)
Jens Axboe48fbb462011-10-09 12:19:08 +0200777{
778 struct jobs_eta *je = (struct jobs_eta *) cmd->payload;
Jens Axboedf380932011-10-11 14:25:08 +0200779 struct client_eta *eta = (struct client_eta *) (uintptr_t) cmd->tag;
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200780
781 dprint(FD_NET, "client: got eta tag %p, %d\n", eta, eta->pending);
Jens Axboe48fbb462011-10-09 12:19:08 +0200782
Jens Axboef77d2672011-10-10 14:36:07 +0200783 assert(client->eta_in_flight == eta);
784
785 client->eta_in_flight = NULL;
Jens Axboe82c1ed32011-10-10 08:56:18 +0200786 flist_del_init(&client->eta_list);
787
Jens Axboe48fbb462011-10-09 12:19:08 +0200788 convert_jobs_eta(je);
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200789 sum_jobs_eta(&eta->eta, je);
Jens Axboe82c1ed32011-10-10 08:56:18 +0200790 dec_jobs_eta(eta);
Jens Axboecf451d12011-10-03 16:48:30 +0200791}
792
Jens Axboeb5296dd2011-10-07 16:35:56 +0200793static void handle_probe(struct fio_client *client, struct fio_net_cmd *cmd)
Jens Axboe2e03b4b2011-10-04 09:00:40 +0200794{
795 struct cmd_probe_pdu *probe = (struct cmd_probe_pdu *) cmd->payload;
Jens Axboed2333352011-10-11 15:07:23 +0200796 const char *os, *arch;
797 char bit[16];
Jens Axboe2e03b4b2011-10-04 09:00:40 +0200798
Jens Axboecca84642011-10-07 12:47:57 +0200799 os = fio_get_os_string(probe->os);
800 if (!os)
801 os = "unknown";
802
803 arch = fio_get_arch_string(probe->arch);
804 if (!arch)
805 os = "unknown";
806
Jens Axboed2333352011-10-11 15:07:23 +0200807 sprintf(bit, "%d-bit", probe->bpp * 8);
Jens Axboe38fdef22011-10-11 14:30:06 +0200808
809 log_info("hostname=%s, be=%u, %s, os=%s, arch=%s, fio=%u.%u.%u\n",
810 probe->hostname, probe->bigendian, bit, os, arch,
811 probe->fio_major, probe->fio_minor, probe->fio_patch);
Jens Axboeb5296dd2011-10-07 16:35:56 +0200812
813 if (!client->name)
814 client->name = strdup((char *) probe->hostname);
Jens Axboe2e03b4b2011-10-04 09:00:40 +0200815}
816
Jens Axboe11e950b2011-10-16 21:34:14 +0200817static void handle_start(struct fio_client *client, struct fio_net_cmd *cmd)
818{
819 struct cmd_start_pdu *pdu = (struct cmd_start_pdu *) cmd->payload;
820
821 client->state = Client_started;
822 client->jobs = le32_to_cpu(pdu->jobs);
823}
824
825static void handle_stop(struct fio_client *client, struct fio_net_cmd *cmd)
826{
827 struct cmd_end_pdu *pdu = (struct cmd_end_pdu *) cmd->payload;
828
829 client->state = Client_stopped;
830 client->error = le32_to_cpu(pdu->error);
Jens Axboe498c92c2011-10-17 09:14:42 +0200831
832 if (client->error)
833 log_info("client <%s>: exited with error %d\n", client->hostname, client->error);
Jens Axboe11e950b2011-10-16 21:34:14 +0200834}
835
Jens Axboee951bdc2011-10-05 21:58:45 +0200836static int handle_client(struct fio_client *client)
Jens Axboe37db14f2011-09-30 17:00:42 -0600837{
838 struct fio_net_cmd *cmd;
839
Jens Axboe60efd142011-10-04 13:30:11 +0200840 dprint(FD_NET, "client: handle %s\n", client->hostname);
841
Jens Axboee951bdc2011-10-05 21:58:45 +0200842 cmd = fio_net_recv_cmd(client->fd);
843 if (!cmd)
844 return 0;
Jens Axboec2c94582011-10-05 20:31:30 +0200845
Jens Axboe89c17072011-10-11 10:15:51 +0200846 dprint(FD_NET, "client: got cmd op %s from %s\n",
847 fio_server_op(cmd->opcode), client->hostname);
Jens Axboe46c48f12011-10-01 12:50:51 -0600848
Jens Axboee951bdc2011-10-05 21:58:45 +0200849 switch (cmd->opcode) {
850 case FIO_NET_CMD_QUIT:
851 remove_client(client);
852 free(cmd);
853 break;
854 case FIO_NET_CMD_TEXT: {
855 const char *buf = (const char *) cmd->payload;
Jens Axboeb5296dd2011-10-07 16:35:56 +0200856 const char *name;
Jens Axboee951bdc2011-10-05 21:58:45 +0200857 int fio_unused ret;
Jens Axboe17dd1762011-10-04 13:27:34 +0200858
Jens Axboeb5296dd2011-10-07 16:35:56 +0200859 name = client->name ? client->name : client->hostname;
860
Jens Axboee951bdc2011-10-05 21:58:45 +0200861 if (!client->skip_newline)
Jens Axboeb5296dd2011-10-07 16:35:56 +0200862 fprintf(f_out, "<%s> ", name);
Jens Axboee951bdc2011-10-05 21:58:45 +0200863 ret = fwrite(buf, cmd->pdu_len, 1, f_out);
864 fflush(f_out);
865 client->skip_newline = strchr(buf, '\n') == NULL;
866 free(cmd);
867 break;
Jens Axboe37db14f2011-09-30 17:00:42 -0600868 }
Jens Axboed09a64a2011-10-13 11:38:56 +0200869 case FIO_NET_CMD_DU:
870 handle_du(client, cmd);
871 free(cmd);
872 break;
Jens Axboee951bdc2011-10-05 21:58:45 +0200873 case FIO_NET_CMD_TS:
874 handle_ts(cmd);
875 free(cmd);
876 break;
877 case FIO_NET_CMD_GS:
878 handle_gs(cmd);
879 free(cmd);
880 break;
881 case FIO_NET_CMD_ETA:
Jens Axboe89c17072011-10-11 10:15:51 +0200882 remove_reply_cmd(client, cmd);
Jens Axboe82c1ed32011-10-10 08:56:18 +0200883 handle_eta(client, cmd);
Jens Axboee951bdc2011-10-05 21:58:45 +0200884 free(cmd);
885 break;
886 case FIO_NET_CMD_PROBE:
Jens Axboe89c17072011-10-11 10:15:51 +0200887 remove_reply_cmd(client, cmd);
Jens Axboeb5296dd2011-10-07 16:35:56 +0200888 handle_probe(client, cmd);
Jens Axboee951bdc2011-10-05 21:58:45 +0200889 free(cmd);
890 break;
Jens Axboe01be0382011-10-15 14:43:41 +0200891 case FIO_NET_CMD_RUN:
892 client->state = Client_running;
893 free(cmd);
894 break;
Jens Axboee951bdc2011-10-05 21:58:45 +0200895 case FIO_NET_CMD_START:
Jens Axboe11e950b2011-10-16 21:34:14 +0200896 handle_start(client, cmd);
Jens Axboee951bdc2011-10-05 21:58:45 +0200897 free(cmd);
898 break;
899 case FIO_NET_CMD_STOP:
Jens Axboe11e950b2011-10-16 21:34:14 +0200900 handle_stop(client, cmd);
Jens Axboee951bdc2011-10-05 21:58:45 +0200901 free(cmd);
902 break;
903 default:
Jens Axboe89c17072011-10-11 10:15:51 +0200904 log_err("fio: unknown client op: %s\n", fio_server_op(cmd->opcode));
Jens Axboee951bdc2011-10-05 21:58:45 +0200905 free(cmd);
906 break;
Jens Axboe37db14f2011-09-30 17:00:42 -0600907 }
908
Jens Axboee951bdc2011-10-05 21:58:45 +0200909 return 1;
Jens Axboe37db14f2011-09-30 17:00:42 -0600910}
Jens Axboeb66570d2011-10-01 11:11:35 -0600911
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200912static void request_client_etas(void)
913{
914 struct fio_client *client;
915 struct flist_head *entry;
916 struct client_eta *eta;
Jens Axboe82c1ed32011-10-10 08:56:18 +0200917 int skipped = 0;
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200918
919 dprint(FD_NET, "client: request eta (%d)\n", nr_clients);
920
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200921 eta = malloc(sizeof(*eta));
922 memset(&eta->eta, 0, sizeof(eta->eta));
923 eta->pending = nr_clients;
924
925 flist_for_each(entry, &client_list) {
926 client = flist_entry(entry, struct fio_client, list);
927
Jens Axboe82c1ed32011-10-10 08:56:18 +0200928 if (!flist_empty(&client->eta_list)) {
929 skipped++;
930 continue;
931 }
Jens Axboe01be0382011-10-15 14:43:41 +0200932 if (client->state != Client_running)
933 continue;
Jens Axboe82c1ed32011-10-10 08:56:18 +0200934
Jens Axboef77d2672011-10-10 14:36:07 +0200935 assert(!client->eta_in_flight);
Jens Axboe82c1ed32011-10-10 08:56:18 +0200936 flist_add_tail(&client->eta_list, &eta_list);
Jens Axboef77d2672011-10-10 14:36:07 +0200937 client->eta_in_flight = eta;
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200938 fio_net_send_simple_cmd(client->fd, FIO_NET_CMD_SEND_ETA,
Jens Axboedf380932011-10-11 14:25:08 +0200939 (uintptr_t) eta, &client->cmd_list);
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200940 }
941
Jens Axboe82c1ed32011-10-10 08:56:18 +0200942 while (skipped--)
943 dec_jobs_eta(eta);
944
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200945 dprint(FD_NET, "client: requested eta tag %p\n", eta);
946}
947
Jens Axboe89c17072011-10-11 10:15:51 +0200948static int client_check_cmd_timeout(struct fio_client *client,
949 struct timeval *now)
950{
951 struct fio_net_int_cmd *cmd;
952 struct flist_head *entry, *tmp;
953 int ret = 0;
954
955 flist_for_each_safe(entry, tmp, &client->cmd_list) {
956 cmd = flist_entry(entry, struct fio_net_int_cmd, list);
957
958 if (mtime_since(&cmd->tv, now) < FIO_NET_CLIENT_TIMEOUT)
959 continue;
960
961 log_err("fio: client %s, timeout on cmd %s\n", client->hostname,
962 fio_server_op(cmd->cmd.opcode));
963 flist_del(&cmd->list);
964 free(cmd);
965 ret = 1;
966 }
967
968 return flist_empty(&client->cmd_list) && ret;
969}
970
971static int fio_client_timed_out(void)
972{
973 struct fio_client *client;
974 struct flist_head *entry, *tmp;
975 struct timeval tv;
976 int ret = 0;
977
978 gettimeofday(&tv, NULL);
979
980 flist_for_each_safe(entry, tmp, &client_list) {
981 client = flist_entry(entry, struct fio_client, list);
982
983 if (flist_empty(&client->cmd_list))
984 continue;
985
986 if (!client_check_cmd_timeout(client, &tv))
987 continue;
988
989 log_err("fio: client %s timed out\n", client->hostname);
990 remove_client(client);
991 ret = 1;
992 }
993
994 return ret;
995}
996
Jens Axboeb66570d2011-10-01 11:11:35 -0600997int fio_handle_clients(void)
998{
Jens Axboeb66570d2011-10-01 11:11:35 -0600999 struct pollfd *pfds;
Jens Axboe498c92c2011-10-17 09:14:42 +02001000 int i, ret = 0, retval = 0;
Jens Axboeb66570d2011-10-01 11:11:35 -06001001
Jens Axboeaf9c9fb2011-10-09 21:54:10 +02001002 gettimeofday(&eta_tv, NULL);
1003
Jens Axboeb66570d2011-10-01 11:11:35 -06001004 pfds = malloc(nr_clients * sizeof(struct pollfd));
1005
Jens Axboe37f0c1a2011-10-11 14:08:33 +02001006 sum_stat_clients = nr_clients;
1007 init_thread_stat(&client_ts);
1008 init_group_run_stat(&client_gs);
1009
Jens Axboeb66570d2011-10-01 11:11:35 -06001010 while (!exit_backend && nr_clients) {
Jens Axboec2cb6862012-02-23 20:56:12 +01001011 struct flist_head *entry, *tmp;
1012 struct fio_client *client;
1013
Jens Axboe82a4be12011-10-01 12:40:32 -06001014 i = 0;
Jens Axboec2cb6862012-02-23 20:56:12 +01001015 flist_for_each_safe(entry, tmp, &client_list) {
Jens Axboe82a4be12011-10-01 12:40:32 -06001016 client = flist_entry(entry, struct fio_client, list);
1017
Jens Axboec2cb6862012-02-23 20:56:12 +01001018 if (!client->sent_job &&
1019 flist_empty(&client->cmd_list)) {
1020 remove_client(client);
1021 continue;
1022 }
1023
Jens Axboe82a4be12011-10-01 12:40:32 -06001024 pfds[i].fd = client->fd;
1025 pfds[i].events = POLLIN;
1026 i++;
1027 }
1028
Jens Axboec2cb6862012-02-23 20:56:12 +01001029 if (!nr_clients)
1030 break;
1031
Jens Axboe82a4be12011-10-01 12:40:32 -06001032 assert(i == nr_clients);
1033
Jens Axboe5c2857f2011-10-04 13:14:32 +02001034 do {
Jens Axboeaf9c9fb2011-10-09 21:54:10 +02001035 struct timeval tv;
1036
1037 gettimeofday(&tv, NULL);
1038 if (mtime_since(&eta_tv, &tv) >= 900) {
1039 request_client_etas();
1040 memcpy(&eta_tv, &tv, sizeof(tv));
Jens Axboe89c17072011-10-11 10:15:51 +02001041
1042 if (fio_client_timed_out())
1043 break;
Jens Axboeaf9c9fb2011-10-09 21:54:10 +02001044 }
1045
Jens Axboe5c2857f2011-10-04 13:14:32 +02001046 ret = poll(pfds, nr_clients, 100);
1047 if (ret < 0) {
1048 if (errno == EINTR)
1049 continue;
1050 log_err("fio: poll clients: %s\n", strerror(errno));
1051 break;
1052 } else if (!ret)
Jens Axboeb66570d2011-10-01 11:11:35 -06001053 continue;
Jens Axboe5c2857f2011-10-04 13:14:32 +02001054 } while (ret <= 0);
Jens Axboeb66570d2011-10-01 11:11:35 -06001055
1056 for (i = 0; i < nr_clients; i++) {
1057 if (!(pfds[i].revents & POLLIN))
1058 continue;
1059
1060 client = find_client_by_fd(pfds[i].fd);
1061 if (!client) {
Jens Axboe3c5f57e2011-10-06 12:37:50 +02001062 log_err("fio: unknown client fd %d\n", pfds[i].fd);
Jens Axboeb66570d2011-10-01 11:11:35 -06001063 continue;
1064 }
Jens Axboee951bdc2011-10-05 21:58:45 +02001065 if (!handle_client(client)) {
Jens Axboe28d3ab02011-10-05 20:45:37 +02001066 log_info("client: host=%s disconnected\n",
1067 client->hostname);
1068 remove_client(client);
Jens Axboe498c92c2011-10-17 09:14:42 +02001069 retval = 1;
Jens Axboe38990762011-10-17 13:31:33 +02001070 } else if (client->error)
Jens Axboe498c92c2011-10-17 09:14:42 +02001071 retval = 1;
Jens Axboee55f8f32012-03-06 15:42:31 +01001072 put_client(client);
Jens Axboeb66570d2011-10-01 11:11:35 -06001073 }
1074 }
1075
1076 free(pfds);
Jens Axboe498c92c2011-10-17 09:14:42 +02001077 return retval;
Jens Axboeb66570d2011-10-01 11:11:35 -06001078}