-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathrados.c
496 lines (445 loc) · 12 KB
/
rados.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
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
/*
* Ceph Rados engine
*
* IO engine using Ceph's RADOS interface to test low-level performance of
* Ceph OSDs.
*
*/
#include <rados/librados.h>
#include <pthread.h>
#include "fio.h"
#include "../optgroup.h"
struct rados_data {
rados_t cluster;
rados_ioctx_t io_ctx;
struct io_u **aio_events;
bool connected;
pthread_mutex_t completed_lock;
pthread_cond_t completed_more_io;
struct flist_head completed_operations;
uint64_t ops_scheduled;
uint64_t ops_completed;
};
struct fio_rados_iou {
struct flist_head list;
struct thread_data *td;
struct io_u *io_u;
rados_completion_t completion;
rados_write_op_t write_op;
};
/* fio configuration options read from the job file */
struct rados_options {
void *pad;
char *cluster_name;
char *pool_name;
char *client_name;
char *conf;
int busy_poll;
int touch_objects;
};
static struct fio_option options[] = {
{
.name = "clustername",
.lname = "ceph cluster name",
.type = FIO_OPT_STR_STORE,
.help = "Cluster name for ceph",
.off1 = offsetof(struct rados_options, cluster_name),
.category = FIO_OPT_C_ENGINE,
.group = FIO_OPT_G_RBD,
},
{
.name = "pool",
.lname = "pool name to use",
.type = FIO_OPT_STR_STORE,
.help = "Ceph pool name to benchmark against",
.off1 = offsetof(struct rados_options, pool_name),
.category = FIO_OPT_C_ENGINE,
.group = FIO_OPT_G_RBD,
},
{
.name = "clientname",
.lname = "rados engine clientname",
.type = FIO_OPT_STR_STORE,
.help = "Name of the ceph client to access RADOS engine",
.off1 = offsetof(struct rados_options, client_name),
.category = FIO_OPT_C_ENGINE,
.group = FIO_OPT_G_RBD,
},
{
.name = "conf",
.lname = "ceph configuration file path",
.type = FIO_OPT_STR_STORE,
.help = "Path of the ceph configuration file",
.off1 = offsetof(struct rados_options, conf),
.def = "/etc/ceph/ceph.conf",
.category = FIO_OPT_C_ENGINE,
.group = FIO_OPT_G_RBD,
},
{
.name = "busy_poll",
.lname = "busy poll mode",
.type = FIO_OPT_BOOL,
.help = "Busy poll for completions instead of sleeping",
.off1 = offsetof(struct rados_options, busy_poll),
.def = "0",
.category = FIO_OPT_C_ENGINE,
.group = FIO_OPT_G_RBD,
},
{
.name = "touch_objects",
.lname = "touch objects on start",
.type = FIO_OPT_BOOL,
.help = "Touch (create) objects on start",
.off1 = offsetof(struct rados_options, touch_objects),
.def = "1",
.category = FIO_OPT_C_ENGINE,
.group = FIO_OPT_G_RBD,
},
{
.name = NULL,
},
};
static int _fio_setup_rados_data(struct thread_data *td,
struct rados_data **rados_data_ptr)
{
struct rados_data *rados;
if (td->io_ops_data)
return 0;
rados = calloc(1, sizeof(struct rados_data));
if (!rados)
goto failed;
rados->connected = false;
rados->aio_events = calloc(td->o.iodepth, sizeof(struct io_u *));
if (!rados->aio_events)
goto failed;
pthread_mutex_init(&rados->completed_lock, NULL);
pthread_cond_init(&rados->completed_more_io, NULL);
INIT_FLIST_HEAD(&rados->completed_operations);
rados->ops_scheduled = 0;
rados->ops_completed = 0;
*rados_data_ptr = rados;
return 0;
failed:
if (rados) {
if (rados->aio_events)
free(rados->aio_events);
free(rados);
}
return 1;
}
static void _fio_rados_rm_objects(struct thread_data *td, struct rados_data *rados)
{
size_t i;
for (i = 0; i < td->o.nr_files; i++) {
struct fio_file *f = td->files[i];
rados_remove(rados->io_ctx, f->file_name);
}
}
static int _fio_rados_connect(struct thread_data *td)
{
struct rados_data *rados = td->io_ops_data;
struct rados_options *o = td->eo;
int r;
const uint64_t file_size =
td->o.size / (td->o.nr_files ? td->o.nr_files : 1u);
struct fio_file *f;
uint32_t i;
if (o->cluster_name) {
char *client_name = NULL;
/*
* If we specify cluster name, the rados_create2
* will not assume 'client.'. name is considered
* as a full type.id namestr
*/
if (o->client_name) {
if (!index(o->client_name, '.')) {
client_name = calloc(1, strlen("client.") +
strlen(o->client_name) + 1);
strcat(client_name, "client.");
strcat(client_name, o->client_name);
} else {
client_name = o->client_name;
}
}
r = rados_create2(&rados->cluster, o->cluster_name,
client_name, 0);
if (client_name && !index(o->client_name, '.'))
free(client_name);
} else
r = rados_create(&rados->cluster, o->client_name);
if (o->pool_name == NULL) {
log_err("rados pool name must be provided.\n");
goto failed_early;
}
if (r < 0) {
log_err("rados_create failed.\n");
goto failed_early;
}
r = rados_conf_read_file(rados->cluster, o->conf);
if (r < 0) {
log_err("rados_conf_read_file failed.\n");
goto failed_early;
}
r = rados_connect(rados->cluster);
if (r < 0) {
log_err("rados_connect failed.\n");
goto failed_early;
}
r = rados_ioctx_create(rados->cluster, o->pool_name, &rados->io_ctx);
if (r < 0) {
log_err("rados_ioctx_create failed.\n");
goto failed_shutdown;
}
for (i = 0; i < td->o.nr_files; i++) {
f = td->files[i];
f->real_file_size = file_size;
if (o->touch_objects) {
r = rados_write(rados->io_ctx, f->file_name, "", 0, 0);
if (r < 0) {
goto failed_obj_create;
}
}
}
return 0;
failed_obj_create:
_fio_rados_rm_objects(td, rados);
rados_ioctx_destroy(rados->io_ctx);
rados->io_ctx = NULL;
failed_shutdown:
rados_shutdown(rados->cluster);
rados->cluster = NULL;
failed_early:
return 1;
}
static void _fio_rados_disconnect(struct rados_data *rados)
{
if (!rados)
return;
if (rados->io_ctx) {
rados_ioctx_destroy(rados->io_ctx);
rados->io_ctx = NULL;
}
if (rados->cluster) {
rados_shutdown(rados->cluster);
rados->cluster = NULL;
}
}
static void fio_rados_cleanup(struct thread_data *td)
{
struct rados_data *rados = td->io_ops_data;
if (rados) {
pthread_mutex_lock(&rados->completed_lock);
while (rados->ops_scheduled != rados->ops_completed)
pthread_cond_wait(&rados->completed_more_io, &rados->completed_lock);
pthread_mutex_unlock(&rados->completed_lock);
_fio_rados_rm_objects(td, rados);
_fio_rados_disconnect(rados);
free(rados->aio_events);
free(rados);
}
}
static void complete_callback(rados_completion_t cb, void *arg)
{
struct fio_rados_iou *fri = (struct fio_rados_iou *)arg;
struct rados_data *rados = fri->td->io_ops_data;
assert(fri->completion);
assert(rados_aio_is_complete(fri->completion));
pthread_mutex_lock(&rados->completed_lock);
flist_add_tail(&fri->list, &rados->completed_operations);
rados->ops_completed++;
pthread_mutex_unlock(&rados->completed_lock);
pthread_cond_signal(&rados->completed_more_io);
}
static enum fio_q_status fio_rados_queue(struct thread_data *td,
struct io_u *io_u)
{
struct rados_data *rados = td->io_ops_data;
struct fio_rados_iou *fri = io_u->engine_data;
char *object = io_u->file->file_name;
int r = -1;
fio_ro_check(td, io_u);
if (io_u->ddir == DDIR_WRITE) {
r = rados_aio_create_completion(fri, complete_callback,
NULL, &fri->completion);
if (r < 0) {
log_err("rados_aio_create_completion failed.\n");
goto failed;
}
r = rados_aio_write(rados->io_ctx, object, fri->completion,
io_u->xfer_buf, io_u->xfer_buflen, io_u->offset);
if (r < 0) {
log_err("rados_write failed.\n");
goto failed_comp;
}
rados->ops_scheduled++;
return FIO_Q_QUEUED;
} else if (io_u->ddir == DDIR_READ) {
r = rados_aio_create_completion(fri, complete_callback,
NULL, &fri->completion);
if (r < 0) {
log_err("rados_aio_create_completion failed.\n");
goto failed;
}
r = rados_aio_read(rados->io_ctx, object, fri->completion,
io_u->xfer_buf, io_u->xfer_buflen, io_u->offset);
if (r < 0) {
log_err("rados_aio_read failed.\n");
goto failed_comp;
}
rados->ops_scheduled++;
return FIO_Q_QUEUED;
} else if (io_u->ddir == DDIR_TRIM) {
r = rados_aio_create_completion(fri, complete_callback,
NULL , &fri->completion);
if (r < 0) {
log_err("rados_aio_create_completion failed.\n");
goto failed;
}
fri->write_op = rados_create_write_op();
if (fri->write_op == NULL) {
log_err("rados_create_write_op failed.\n");
goto failed_comp;
}
rados_write_op_zero(fri->write_op, io_u->offset,
io_u->xfer_buflen);
r = rados_aio_write_op_operate(fri->write_op, rados->io_ctx,
fri->completion, object, NULL, 0);
if (r < 0) {
log_err("rados_aio_write_op_operate failed.\n");
goto failed_write_op;
}
rados->ops_scheduled++;
return FIO_Q_QUEUED;
}
log_err("WARNING: Only DDIR_READ, DDIR_WRITE and DDIR_TRIM are supported!");
failed_write_op:
rados_release_write_op(fri->write_op);
failed_comp:
rados_aio_release(fri->completion);
failed:
io_u->error = -r;
td_verror(td, io_u->error, "xfer");
return FIO_Q_COMPLETED;
}
static struct io_u *fio_rados_event(struct thread_data *td, int event)
{
struct rados_data *rados = td->io_ops_data;
return rados->aio_events[event];
}
int fio_rados_getevents(struct thread_data *td, unsigned int min,
unsigned int max, const struct timespec *t)
{
struct rados_data *rados = td->io_ops_data;
unsigned int events = 0;
struct fio_rados_iou *fri;
pthread_mutex_lock(&rados->completed_lock);
while (events < min) {
while (flist_empty(&rados->completed_operations)) {
pthread_cond_wait(&rados->completed_more_io, &rados->completed_lock);
}
assert(!flist_empty(&rados->completed_operations));
fri = flist_first_entry(&rados->completed_operations, struct fio_rados_iou, list);
assert(fri->completion);
assert(rados_aio_is_complete(fri->completion));
if (fri->write_op != NULL) {
rados_release_write_op(fri->write_op);
fri->write_op = NULL;
}
rados_aio_release(fri->completion);
fri->completion = NULL;
rados->aio_events[events] = fri->io_u;
events ++;
flist_del(&fri->list);
if (events >= max) break;
}
pthread_mutex_unlock(&rados->completed_lock);
return events;
}
static int fio_rados_setup(struct thread_data *td)
{
struct rados_data *rados = NULL;
int r;
/* allocate engine specific structure to deal with librados. */
r = _fio_setup_rados_data(td, &rados);
if (r) {
log_err("fio_setup_rados_data failed.\n");
goto cleanup;
}
td->io_ops_data = rados;
/* Force single process mode.
*/
td->o.use_thread = 1;
/* connect in the main thread to determine to determine
* the size of the given RADOS block device. And disconnect
* later on.
*/
r = _fio_rados_connect(td);
if (r) {
log_err("fio_rados_connect failed.\n");
goto cleanup;
}
rados->connected = true;
return 0;
cleanup:
fio_rados_cleanup(td);
return r;
}
/* open/invalidate are noops. we set the FIO_DISKLESSIO flag in ioengine_ops to
prevent fio from creating the files
*/
static int fio_rados_open(struct thread_data *td, struct fio_file *f)
{
return 0;
}
static int fio_rados_invalidate(struct thread_data *td, struct fio_file *f)
{
return 0;
}
static void fio_rados_io_u_free(struct thread_data *td, struct io_u *io_u)
{
struct fio_rados_iou *fri = io_u->engine_data;
if (fri) {
io_u->engine_data = NULL;
fri->td = NULL;
if (fri->completion)
rados_aio_release(fri->completion);
if (fri->write_op)
rados_release_write_op(fri->write_op);
free(fri);
}
}
static int fio_rados_io_u_init(struct thread_data *td, struct io_u *io_u)
{
struct fio_rados_iou *fri;
fri = calloc(1, sizeof(*fri));
fri->io_u = io_u;
fri->td = td;
INIT_FLIST_HEAD(&fri->list);
io_u->engine_data = fri;
return 0;
}
/* ioengine_ops for get_ioengine() */
FIO_STATIC struct ioengine_ops ioengine = {
.name = "rados",
.version = FIO_IOOPS_VERSION,
.flags = FIO_DISKLESSIO,
.setup = fio_rados_setup,
.queue = fio_rados_queue,
.getevents = fio_rados_getevents,
.event = fio_rados_event,
.cleanup = fio_rados_cleanup,
.open_file = fio_rados_open,
.invalidate = fio_rados_invalidate,
.options = options,
.io_u_init = fio_rados_io_u_init,
.io_u_free = fio_rados_io_u_free,
.option_struct_size = sizeof(struct rados_options),
};
static void fio_init fio_rados_register(void)
{
register_ioengine(&ioengine);
}
static void fio_exit fio_rados_unregister(void)
{
unregister_ioengine(&ioengine);
}