server: unify shm setup
[fio.git] / client.c
CommitLineData
132159a5
JA
1#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>
11#include <sys/mman.h>
12#include <netinet/in.h>
13#include <arpa/inet.h>
14#include <netdb.h>
15
16#include "fio.h"
17#include "server.h"
18#include "crc/crc32.h"
b66570dc 19#include "flist.h"
132159a5 20
b66570dc
JA
21struct fio_client {
22 struct flist_head list;
23 struct sockaddr_in addr;
24 char *hostname;
25 int fd;
26};
27
28static FLIST_HEAD(client_list);
b66570dc
JA
29
30static struct fio_client *find_client_by_fd(int fd)
31{
32 struct fio_client *client;
33 struct flist_head *entry;
34
35 flist_for_each(entry, &client_list) {
36 client = flist_entry(entry, struct fio_client, list);
37
38 if (client->fd == fd)
39 return client;
40 }
41
42 return NULL;
43}
44
a37f69b7 45#if 0
b66570dc
JA
46static struct fio_client *find_client_by_name(const char *name)
47{
48 struct fio_client *client;
49 struct flist_head *entry;
50
51 flist_for_each(entry, &client_list) {
52 client = flist_entry(entry, struct fio_client, list);
53
54 if (!strcmp(name, client->hostname))
55 return client;
56 }
57
58 return NULL;
59}
a37f69b7 60#endif
b66570dc
JA
61
62static void remove_client(struct fio_client *client)
63{
46c48f1f 64 dprint(FD_NET, "removed client <%s>\n", client->hostname);
b66570dc
JA
65 flist_del(&client->list);
66 nr_clients--;
67 free(client->hostname);
68 free(client);
69}
132159a5 70
a37f69b7 71void fio_client_add(const char *hostname)
132159a5 72{
b66570dc 73 struct fio_client *client;
132159a5 74
46c48f1f 75 dprint(FD_NET, "added client <%s>\n", hostname);
b66570dc 76 client = malloc(sizeof(*client));
a37f69b7
JA
77 memset(client, 0, sizeof(*client));
78 client->hostname = strdup(hostname);
79 client->fd = -1;
80 flist_add(&client->list, &client_list);
81 nr_clients++;
82}
83
84static int fio_client_connect(struct fio_client *client)
85{
86 int fd;
132159a5 87
46c48f1f
JA
88 dprint(FD_NET, "connect to host %s\n", client->hostname);
89
b66570dc
JA
90 memset(&client->addr, 0, sizeof(client->addr));
91 client->addr.sin_family = AF_INET;
92 client->addr.sin_port = htons(fio_net_port);
93
a37f69b7 94 if (inet_aton(client->hostname, &client->addr.sin_addr) != 1) {
132159a5
JA
95 struct hostent *hent;
96
a37f69b7 97 hent = gethostbyname(client->hostname);
132159a5
JA
98 if (!hent) {
99 log_err("fio: gethostbyname: %s\n", strerror(errno));
100 return 1;
101 }
102
b66570dc 103 memcpy(&client->addr.sin_addr, hent->h_addr, 4);
132159a5
JA
104 }
105
106 fd = socket(AF_INET, SOCK_STREAM, 0);
107 if (fd < 0) {
108 log_err("fio: socket: %s\n", strerror(errno));
109 return 1;
110 }
111
b66570dc 112 if (connect(fd, (struct sockaddr *) &client->addr, sizeof(client->addr)) < 0) {
132159a5
JA
113 log_err("fio: connect: %s\n", strerror(errno));
114 return 1;
115 }
116
b66570dc 117 client->fd = fd;
132159a5
JA
118 return 0;
119}
120
a37f69b7
JA
121int fio_clients_connect(void)
122{
123 struct fio_client *client;
124 struct flist_head *entry, *tmp;
125 int ret;
126
127 flist_for_each_safe(entry, tmp, &client_list) {
128 client = flist_entry(entry, struct fio_client, list);
129
130 ret = fio_client_connect(client);
131 if (ret)
132 remove_client(client);
133 }
134
135 return !nr_clients;
136}
137
b66570dc 138static int send_file_buf(struct fio_client *client, char *buf, off_t size)
132159a5 139{
b66570dc 140 return fio_net_send_cmd(client->fd, FIO_NET_CMD_JOB, buf, size);
132159a5
JA
141}
142
143/*
144 * Send file contents to server backend. We could use sendfile(), but to remain
145 * more portable lets just read/write the darn thing.
146 */
a37f69b7 147static int fio_client_send_ini(struct fio_client *client, const char *filename)
132159a5
JA
148{
149 struct stat sb;
150 char *p, *buf;
151 off_t len;
152 int fd, ret;
153
46c48f1f
JA
154 dprint(FD_NET, "send ini %s to %s\n", filename, client->hostname);
155
132159a5
JA
156 fd = open(filename, O_RDONLY);
157 if (fd < 0) {
158 log_err("fio: job file open: %s\n", strerror(errno));
159 return 1;
160 }
161
162 if (fstat(fd, &sb) < 0) {
163 log_err("fio: job file stat: %s\n", strerror(errno));
164 return 1;
165 }
166
167 buf = malloc(sb.st_size);
168
169 len = sb.st_size;
170 p = buf;
171 do {
172 ret = read(fd, p, len);
173 if (ret > 0) {
174 len -= ret;
175 if (!len)
176 break;
177 p += ret;
178 continue;
179 } else if (!ret)
180 break;
181 else if (errno == EAGAIN || errno == EINTR)
182 continue;
183 } while (1);
184
b66570dc 185 ret = send_file_buf(client, buf, sb.st_size);
132159a5
JA
186 free(buf);
187 return ret;
188}
37db14fe 189
a37f69b7
JA
190int fio_clients_send_ini(const char *filename)
191{
192 struct fio_client *client;
193 struct flist_head *entry, *tmp;
194
195 flist_for_each_safe(entry, tmp, &client_list) {
196 client = flist_entry(entry, struct fio_client, list);
197
198 if (fio_client_send_ini(client, filename))
199 remove_client(client);
200 }
201
202 return !nr_clients;
203}
204
b66570dc 205static int handle_client(struct fio_client *client)
37db14fe
JA
206{
207 struct fio_net_cmd *cmd;
208
b66570dc 209 while ((cmd = fio_net_cmd_read(client->fd)) != NULL) {
46c48f1f
JA
210 dprint(FD_NET, "%s: got cmd op %d\n", client->hostname,
211 cmd->opcode);
212
37db14fe
JA
213 if (cmd->opcode == FIO_NET_CMD_ACK) {
214 free(cmd);
215 continue;
216 }
437377e1 217 if (cmd->opcode == FIO_NET_CMD_QUIT) {
b66570dc 218 remove_client(client);
437377e1
JA
219 free(cmd);
220 break;
221 }
37db14fe
JA
222 if (cmd->opcode != FIO_NET_CMD_TEXT) {
223 printf("non text: %d\n", cmd->opcode);
224 free(cmd);
225 continue;
226 }
49d14c0f 227 fwrite(cmd->payload, cmd->pdu_len, 1, stdout);
37db14fe
JA
228 fflush(stdout);
229 free(cmd);
230 }
231
232 return 0;
233}
b66570dc
JA
234
235int fio_handle_clients(void)
236{
237 struct fio_client *client;
238 struct flist_head *entry;
239 struct pollfd *pfds;
82a4be1b 240 int i, ret = 0;
b66570dc
JA
241
242 pfds = malloc(nr_clients * sizeof(struct pollfd));
243
82a4be1b
JA
244 while (!exit_backend && nr_clients) {
245 i = 0;
246 flist_for_each(entry, &client_list) {
247 client = flist_entry(entry, struct fio_client, list);
b66570dc 248
82a4be1b
JA
249 pfds[i].fd = client->fd;
250 pfds[i].events = POLLIN;
251 i++;
252 }
253
254 assert(i == nr_clients);
b66570dc 255
b66570dc
JA
256 ret = poll(pfds, nr_clients, 100);
257 if (ret < 0) {
258 if (errno == EINTR)
259 continue;
260 log_err("fio: poll clients: %s\n", strerror(errno));
261 break;
262 } else if (!ret)
263 continue;
264
265 for (i = 0; i < nr_clients; i++) {
266 if (!(pfds[i].revents & POLLIN))
267 continue;
268
269 client = find_client_by_fd(pfds[i].fd);
270 if (!client) {
271 log_err("fio: unknown client\n");
272 continue;
273 }
274 handle_client(client);
275 }
276 }
277
278 free(pfds);
b66570dc
JA
279 return 0;
280}