-
Notifications
You must be signed in to change notification settings - Fork 223
/
Copy pathnfs-pthreads-async-writefile.c
327 lines (291 loc) · 8.02 KB
/
nfs-pthreads-async-writefile.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
/*
Copyright (C) by Ronnie Sahlberg <[email protected]> 2024
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, see <http://www.gnu.org/licenses/>.
*/
#define _FILE_OFFSET_BITS 64
#define _GNU_SOURCE
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#ifdef AROS
#include "aros_compat.h"
#endif
#ifdef WIN32
#include <win32/win32_compat.h>
#pragma comment(lib, "ws2_32.lib")
WSADATA wsaData;
#else
#include <sys/stat.h>
#include <string.h>
#endif
#ifdef HAVE_POLL_H
#include <poll.h>
#endif
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#include <errno.h>
#include <stdatomic.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <sys/mman.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <fcntl.h>
#include <pthread.h>
#include <time.h>
#include <unistd.h>
#include "libnfs.h"
#include "libnfs-raw.h"
#include "libnfs-raw-mount.h"
/*
* Number of RPC transports to the server.
* We will have these many connections to the NFS server carrying RPC
* requests.
*/
#define NUM_CONTEXTS 4
/*
* Number of threads parallely writing file data.
* Usually one thread per context should be sufficient, but here we use more
* threads to demonstrate that multiple threads can very well write to the same
* context.
*
* Note: Don't set very high number of threads else it'll negatively impact
* performance.
*/
#define NUM_THREADS 8
/*
* Max how many writes can be outstanding at any tine.
* This will be divided by NUM_THREADS to decide per-thread outstanding.
*/
#define MAX_CONCURRENCY 1024
void usage(void)
{
fprintf(stderr, "Usage: nfs-pthreads-writefile <src> <dst>\n");
fprintf(stderr, "<src> is a local file, <dst> is an nfs URL.\n");
exit(0);
}
struct write_data {
struct nfs_context *nfs;
char *ptr;
struct nfsfh *nfsfh;
uint64_t offset;
ssize_t len;
int max_outstanding;
};
struct write_cb_data {
atomic_int calls_in_flight;
int status;
};
void write_async_cb(int status, struct nfs_context *nfs,
void *data, void *private_data)
{
struct write_cb_data *write_cb_data = private_data;
if (status < 0) {
fprintf(stderr, "pwrite failed with \"%s\"\n", (char *)data);
status = -EIO;
}
atomic_fetch_sub_explicit(&write_cb_data->calls_in_flight, 1, memory_order_relaxed);
}
/*
* Thread that is created to write an up to chunk_size part of the file.
*/
static void *nfs_write_thread(void *arg)
{
struct write_data *wd = arg;
ssize_t count;
struct write_cb_data write_cb_data;
struct timespec ts;
write_cb_data.status = 0;
write_cb_data.calls_in_flight = 0;
while (wd->len) {
/* 1MB write RPC is fair size */
count = 1048576;
if (count > wd->len) {
count = wd->len;
}
atomic_fetch_add_explicit(&write_cb_data.calls_in_flight, 1, memory_order_relaxed);
if (nfs_pwrite_async(wd->nfs, wd->nfsfh,
wd->ptr + wd->offset,
count, wd->offset,
write_async_cb, &write_cb_data) < 0) {
fprintf(stderr, "Failed to write to nfs file. %s\n", nfs_get_error(wd->nfs));
exit(1);
}
wd->offset += count;
wd->len -= count;
/* Wait a bit if we have max_outstanding IOs in flight */
while(write_cb_data.calls_in_flight >= wd->max_outstanding) {
ts.tv_sec = 0;
ts.tv_nsec = 1000000;
nanosleep(&ts, NULL);
}
}
while(write_cb_data.calls_in_flight) {
ts.tv_sec = 0;
ts.tv_nsec = 1000000;
nanosleep(&ts, NULL);
}
if (write_cb_data.status) {
fprintf(stderr, "Oh, no, something went wrong\n");
exit(1);
}
return NULL;
}
int main(int argc, char *argv[])
{
int i;
int fd = -1;
uint64_t chunk_size;
struct nfs_context *nfs[NUM_CONTEXTS] = {NULL,};
struct nfs_url *url = NULL;
struct stat st;
pthread_t *write_threads;
struct write_data *wd;
struct nfsfh *nfsfh = NULL;
char *ptr;
#ifdef WIN32
if (WSAStartup(MAKEWORD(2,2), &wsaData) != 0) {
printf("Failed to start Winsock2\n");
return 10;
}
#endif
#ifdef AROS
aros_init_socket();
#endif
if (argc != 3) {
usage();
}
fd = open(argv[1], O_RDONLY);
if (fd < 0) {
fprintf(stderr, "Failed to open source file %s\n", argv[1]);
exit(1);
}
if (fstat(fd, &st) < 0) {
fprintf(stderr, "failed to stat(%s)\n", argv[1]);
exit(10);
}
ptr = mmap(NULL, st.st_size, PROT_READ, MAP_SHARED, fd, 0);
if (ptr == MAP_FAILED) {
fprintf(stderr, "failed to mmap file. %s\n", strerror(errno));
exit(1);
}
/*
* Create NUM_CONTEXT number of connections to the server, each
* having its own service thread to perform all I/O to/from the
* socket.
*/
for (i = 0; i < NUM_CONTEXTS; i++) {
nfs[i] = nfs_init_context();
if (nfs[i] == NULL) {
fprintf(stderr, "failed to init context\n");
exit(1);
}
/*
* Bump the number of xid hashes so we don't have to spend
* too much time scanning the linked list for each hash bucket
* if we have very many threads doing i/o concurrently.
*/
nfs_set_hash_size(nfs[i], 50);
if (url) {
nfs_destroy_url(url);
}
url = nfs_parse_url_full(nfs[i], argv[2]);
if (url == NULL) {
fprintf(stderr, "%s\n", nfs_get_error(nfs[0]));
exit(1);
}
if (nfs_mount(nfs[i], url->server, url->path) != 0) {
fprintf(stderr, "Failed to mount nfs share : %s\n",
nfs_get_error(nfs[i]));
exit(1);
}
/*
* We just need to open the file once and can then just
* use the handle from all the other contexts too.
* This is good because creat()/O_CREAT|O_TRUNC is not
* an atomic operation in NFS.
*/
if (i == 0) {
if (nfs_open(nfs[0], url->file, O_WRONLY|O_CREAT|O_TRUNC, &nfsfh) < 0) {
fprintf(stderr, "Failed to open nfs file %s. %s\n",
url->file,
nfs_get_error(nfs[0]));
exit(1);
}
}
/*
* Before we can use multithreading we must initialize and
* start the service thread.
*/
if (nfs_mt_service_thread_start(nfs[i])) {
fprintf(stderr, "failed to start service thread\n");
exit(10);
}
printf("Service thread #%d is active. Ready to do I/O\n", i);
}
/*
* Create threads to write the file. Each thread will write a
* chunk_size portion of the file.
*/
printf("Size of file:%s is %ld bytes\n", argv[1], st.st_size);
chunk_size = (st.st_size + NUM_THREADS - 1) / NUM_THREADS;
printf("Using %d threads writing %lu bytes each\n", NUM_THREADS, chunk_size);
if ((write_threads = malloc(sizeof(pthread_t) * NUM_THREADS)) == NULL) {
fprintf(stderr, "Failed to allocated stat_thread\n");
exit(10);
}
if ((wd = malloc(sizeof(struct write_data) * NUM_THREADS)) == NULL) {
fprintf(stderr, "Failed to allocated write_data\n");
exit(10);
}
for (i = 0; i < NUM_THREADS; i++) {
wd[i].nfs = nfs[i % NUM_CONTEXTS];
wd[i].ptr = ptr;
wd[i].nfsfh = nfsfh;
wd[i].offset = i * chunk_size;
wd[i].len = st.st_size - wd[i].offset;
if (wd[i].len > chunk_size) {
wd[i].len = chunk_size;
}
wd[i].max_outstanding = MAX_CONCURRENCY / NUM_THREADS;
if (pthread_create(&write_threads[i], NULL,
&nfs_write_thread, &wd[i])) {
printf("Failed to create stat thread %d\n", i);
exit(10);
}
}
/*
* Wait for all threads to complete
*/
for (i = 0; i < NUM_THREADS; i++) {
pthread_join(write_threads[i], NULL);
}
/*
* Closing the files
*/
nfs_close(nfs[0], nfsfh);
close(fd);
printf("closing service threads\n");
for (i = 0; i < NUM_CONTEXTS; i++) {
nfs_mt_service_thread_stop(nfs[i]);
nfs_destroy_context(nfs[i]);
}
if (url) {
nfs_destroy_url(url);
}
free(wd);
free(write_threads);
munmap(ptr, st.st_size);
return 0;
}