]> git.proxmox.com Git - mirror_qemu.git/blame - block/gluster.c
block/gluster: return correct error value
[mirror_qemu.git] / block / gluster.c
CommitLineData
8d6d89cb
BR
1/*
2 * GlusterFS backend for QEMU
3 *
4 * Copyright (C) 2012 Bharata B Rao <bharata@linux.vnet.ibm.com>
5 *
85c09bc0
BR
6 * This work is licensed under the terms of the GNU GPL, version 2 or later.
7 * See the COPYING file in the top-level directory.
8d6d89cb 8 *
8d6d89cb 9 */
80c71a24 10#include "qemu/osdep.h"
8d6d89cb 11#include <glusterfs/api/glfs.h>
737e150e 12#include "block/block_int.h"
da34e65c 13#include "qapi/error.h"
1de7afc9 14#include "qemu/uri.h"
8d6d89cb
BR
15
16typedef struct GlusterAIOCB {
8d6d89cb
BR
17 int64_t size;
18 int ret;
8d6d89cb 19 QEMUBH *bh;
15744b0b 20 Coroutine *coroutine;
6ee50af2 21 AioContext *aio_context;
8d6d89cb
BR
22} GlusterAIOCB;
23
24typedef struct BDRVGlusterState {
25 struct glfs *glfs;
8d6d89cb 26 struct glfs_fd *fd;
8d6d89cb
BR
27} BDRVGlusterState;
28
8d6d89cb
BR
29typedef struct GlusterConf {
30 char *server;
31 int port;
32 char *volname;
33 char *image;
34 char *transport;
35} GlusterConf;
36
37static void qemu_gluster_gconf_free(GlusterConf *gconf)
38{
1b37b344
JC
39 if (gconf) {
40 g_free(gconf->server);
41 g_free(gconf->volname);
42 g_free(gconf->image);
43 g_free(gconf->transport);
44 g_free(gconf);
45 }
8d6d89cb
BR
46}
47
48static int parse_volume_options(GlusterConf *gconf, char *path)
49{
50 char *p, *q;
51
52 if (!path) {
53 return -EINVAL;
54 }
55
56 /* volume */
57 p = q = path + strspn(path, "/");
58 p += strcspn(p, "/");
59 if (*p == '\0') {
60 return -EINVAL;
61 }
62 gconf->volname = g_strndup(q, p - q);
63
64 /* image */
65 p += strspn(p, "/");
66 if (*p == '\0') {
67 return -EINVAL;
68 }
69 gconf->image = g_strdup(p);
70 return 0;
71}
72
73/*
74 * file=gluster[+transport]://[server[:port]]/volname/image[?socket=...]
75 *
76 * 'gluster' is the protocol.
77 *
78 * 'transport' specifies the transport type used to connect to gluster
79 * management daemon (glusterd). Valid transport types are
80 * tcp, unix and rdma. If a transport type isn't specified, then tcp
81 * type is assumed.
82 *
83 * 'server' specifies the server where the volume file specification for
84 * the given volume resides. This can be either hostname, ipv4 address
85 * or ipv6 address. ipv6 address needs to be within square brackets [ ].
dc6fb73d 86 * If transport type is 'unix', then 'server' field should not be specified.
8d6d89cb
BR
87 * The 'socket' field needs to be populated with the path to unix domain
88 * socket.
89 *
90 * 'port' is the port number on which glusterd is listening. This is optional
91 * and if not specified, QEMU will send 0 which will make gluster to use the
92 * default port. If the transport type is unix, then 'port' should not be
93 * specified.
94 *
95 * 'volname' is the name of the gluster volume which contains the VM image.
96 *
97 * 'image' is the path to the actual VM image that resides on gluster volume.
98 *
99 * Examples:
100 *
101 * file=gluster://1.2.3.4/testvol/a.img
102 * file=gluster+tcp://1.2.3.4/testvol/a.img
103 * file=gluster+tcp://1.2.3.4:24007/testvol/dir/a.img
104 * file=gluster+tcp://[1:2:3:4:5:6:7:8]/testvol/dir/a.img
105 * file=gluster+tcp://[1:2:3:4:5:6:7:8]:24007/testvol/dir/a.img
106 * file=gluster+tcp://server.domain.com:24007/testvol/dir/a.img
107 * file=gluster+unix:///testvol/dir/a.img?socket=/tmp/glusterd.socket
108 * file=gluster+rdma://1.2.3.4:24007/testvol/a.img
109 */
110static int qemu_gluster_parseuri(GlusterConf *gconf, const char *filename)
111{
112 URI *uri;
113 QueryParams *qp = NULL;
114 bool is_unix = false;
115 int ret = 0;
116
117 uri = uri_parse(filename);
118 if (!uri) {
119 return -EINVAL;
120 }
121
122 /* transport */
24897a76 123 if (!uri->scheme || !strcmp(uri->scheme, "gluster")) {
8d6d89cb
BR
124 gconf->transport = g_strdup("tcp");
125 } else if (!strcmp(uri->scheme, "gluster+tcp")) {
126 gconf->transport = g_strdup("tcp");
127 } else if (!strcmp(uri->scheme, "gluster+unix")) {
128 gconf->transport = g_strdup("unix");
129 is_unix = true;
130 } else if (!strcmp(uri->scheme, "gluster+rdma")) {
131 gconf->transport = g_strdup("rdma");
132 } else {
133 ret = -EINVAL;
134 goto out;
135 }
136
137 ret = parse_volume_options(gconf, uri->path);
138 if (ret < 0) {
139 goto out;
140 }
141
142 qp = query_params_parse(uri->query);
143 if (qp->n > 1 || (is_unix && !qp->n) || (!is_unix && qp->n)) {
144 ret = -EINVAL;
145 goto out;
146 }
147
148 if (is_unix) {
149 if (uri->server || uri->port) {
150 ret = -EINVAL;
151 goto out;
152 }
153 if (strcmp(qp->p[0].name, "socket")) {
154 ret = -EINVAL;
155 goto out;
156 }
157 gconf->server = g_strdup(qp->p[0].value);
158 } else {
24897a76 159 gconf->server = g_strdup(uri->server ? uri->server : "localhost");
8d6d89cb
BR
160 gconf->port = uri->port;
161 }
162
163out:
164 if (qp) {
165 query_params_free(qp);
166 }
167 uri_free(uri);
168 return ret;
169}
170
a7451cb8
PB
171static struct glfs *qemu_gluster_init(GlusterConf *gconf, const char *filename,
172 Error **errp)
8d6d89cb
BR
173{
174 struct glfs *glfs = NULL;
175 int ret;
176 int old_errno;
177
178 ret = qemu_gluster_parseuri(gconf, filename);
179 if (ret < 0) {
a7451cb8
PB
180 error_setg(errp, "Usage: file=gluster[+transport]://[server[:port]]/"
181 "volname/image[?socket=...]");
8d6d89cb
BR
182 errno = -ret;
183 goto out;
184 }
185
186 glfs = glfs_new(gconf->volname);
187 if (!glfs) {
188 goto out;
189 }
190
191 ret = glfs_set_volfile_server(glfs, gconf->transport, gconf->server,
192 gconf->port);
193 if (ret < 0) {
194 goto out;
195 }
196
197 /*
198 * TODO: Use GF_LOG_ERROR instead of hard code value of 4 here when
199 * GlusterFS makes GF_LOG_* macros available to libgfapi users.
200 */
201 ret = glfs_set_logging(glfs, "-", 4);
202 if (ret < 0) {
203 goto out;
204 }
205
206 ret = glfs_init(glfs);
207 if (ret) {
a7451cb8
PB
208 error_setg_errno(errp, errno,
209 "Gluster connection failed for server=%s port=%d "
210 "volume=%s image=%s transport=%s", gconf->server,
211 gconf->port, gconf->volname, gconf->image,
212 gconf->transport);
4557117d
PK
213
214 /* glfs_init sometimes doesn't set errno although docs suggest that */
215 if (errno == 0)
216 errno = EINVAL;
217
8d6d89cb
BR
218 goto out;
219 }
220 return glfs;
221
222out:
223 if (glfs) {
224 old_errno = errno;
225 glfs_fini(glfs);
226 errno = old_errno;
227 }
228 return NULL;
229}
230
15744b0b 231static void qemu_gluster_complete_aio(void *opaque)
8d6d89cb 232{
15744b0b 233 GlusterAIOCB *acb = (GlusterAIOCB *)opaque;
8d6d89cb 234
15744b0b
BR
235 qemu_bh_delete(acb->bh);
236 acb->bh = NULL;
237 qemu_coroutine_enter(acb->coroutine, NULL);
8d6d89cb
BR
238}
239
7c815372
BR
240/*
241 * AIO callback routine called from GlusterFS thread.
242 */
243static void gluster_finish_aiocb(struct glfs_fd *fd, ssize_t ret, void *arg)
244{
245 GlusterAIOCB *acb = (GlusterAIOCB *)arg;
246
247 if (!ret || ret == acb->size) {
248 acb->ret = 0; /* Success */
249 } else if (ret < 0) {
a8827453 250 acb->ret = -errno; /* Read/Write failed */
7c815372
BR
251 } else {
252 acb->ret = -EIO; /* Partial read/write - fail it */
253 }
254
6ee50af2 255 acb->bh = aio_bh_new(acb->aio_context, qemu_gluster_complete_aio, acb);
7c815372
BR
256 qemu_bh_schedule(acb->bh);
257}
258
b4894776
KW
259/* TODO Convert to fine grained options */
260static QemuOptsList runtime_opts = {
261 .name = "gluster",
262 .head = QTAILQ_HEAD_INITIALIZER(runtime_opts.head),
263 .desc = {
264 {
265 .name = "filename",
266 .type = QEMU_OPT_STRING,
267 .help = "URL to the gluster image",
268 },
269 { /* end of list */ }
270 },
271};
272
1b37b344
JC
273static void qemu_gluster_parse_flags(int bdrv_flags, int *open_flags)
274{
275 assert(open_flags != NULL);
276
277 *open_flags |= O_BINARY;
278
279 if (bdrv_flags & BDRV_O_RDWR) {
280 *open_flags |= O_RDWR;
281 } else {
282 *open_flags |= O_RDONLY;
283 }
284
285 if ((bdrv_flags & BDRV_O_NOCACHE)) {
286 *open_flags |= O_DIRECT;
287 }
288}
289
56d1b4d2 290static int qemu_gluster_open(BlockDriverState *bs, QDict *options,
015a1036 291 int bdrv_flags, Error **errp)
8d6d89cb
BR
292{
293 BDRVGlusterState *s = bs->opaque;
1b37b344 294 int open_flags = 0;
8d6d89cb 295 int ret = 0;
5839e53b 296 GlusterConf *gconf = g_new0(GlusterConf, 1);
b4894776
KW
297 QemuOpts *opts;
298 Error *local_err = NULL;
299 const char *filename;
300
87ea75d5 301 opts = qemu_opts_create(&runtime_opts, NULL, 0, &error_abort);
b4894776 302 qemu_opts_absorb_qdict(opts, options, &local_err);
84d18f06 303 if (local_err) {
a7451cb8 304 error_propagate(errp, local_err);
b4894776
KW
305 ret = -EINVAL;
306 goto out;
307 }
308
309 filename = qemu_opt_get(opts, "filename");
310
a7451cb8 311 s->glfs = qemu_gluster_init(gconf, filename, errp);
8d6d89cb
BR
312 if (!s->glfs) {
313 ret = -errno;
314 goto out;
315 }
316
1b37b344 317 qemu_gluster_parse_flags(bdrv_flags, &open_flags);
8d6d89cb
BR
318
319 s->fd = glfs_open(s->glfs, gconf->image, open_flags);
320 if (!s->fd) {
321 ret = -errno;
8d6d89cb 322 }
8d6d89cb
BR
323
324out:
b4894776 325 qemu_opts_del(opts);
8d6d89cb
BR
326 qemu_gluster_gconf_free(gconf);
327 if (!ret) {
328 return ret;
329 }
330 if (s->fd) {
331 glfs_close(s->fd);
332 }
333 if (s->glfs) {
334 glfs_fini(s->glfs);
335 }
336 return ret;
337}
338
adccfbcd
JC
339typedef struct BDRVGlusterReopenState {
340 struct glfs *glfs;
341 struct glfs_fd *fd;
342} BDRVGlusterReopenState;
343
344
345static int qemu_gluster_reopen_prepare(BDRVReopenState *state,
346 BlockReopenQueue *queue, Error **errp)
347{
348 int ret = 0;
349 BDRVGlusterReopenState *reop_s;
350 GlusterConf *gconf = NULL;
351 int open_flags = 0;
352
353 assert(state != NULL);
354 assert(state->bs != NULL);
355
5839e53b 356 state->opaque = g_new0(BDRVGlusterReopenState, 1);
adccfbcd
JC
357 reop_s = state->opaque;
358
359 qemu_gluster_parse_flags(state->flags, &open_flags);
360
5839e53b 361 gconf = g_new0(GlusterConf, 1);
adccfbcd 362
f55ea629 363 reop_s->glfs = qemu_gluster_init(gconf, state->bs->filename, errp);
adccfbcd
JC
364 if (reop_s->glfs == NULL) {
365 ret = -errno;
366 goto exit;
367 }
368
369 reop_s->fd = glfs_open(reop_s->glfs, gconf->image, open_flags);
370 if (reop_s->fd == NULL) {
371 /* reops->glfs will be cleaned up in _abort */
372 ret = -errno;
373 goto exit;
374 }
375
376exit:
377 /* state->opaque will be freed in either the _abort or _commit */
378 qemu_gluster_gconf_free(gconf);
379 return ret;
380}
381
382static void qemu_gluster_reopen_commit(BDRVReopenState *state)
383{
384 BDRVGlusterReopenState *reop_s = state->opaque;
385 BDRVGlusterState *s = state->bs->opaque;
386
387
388 /* close the old */
389 if (s->fd) {
390 glfs_close(s->fd);
391 }
392 if (s->glfs) {
393 glfs_fini(s->glfs);
394 }
395
396 /* use the newly opened image / connection */
397 s->fd = reop_s->fd;
398 s->glfs = reop_s->glfs;
399
400 g_free(state->opaque);
401 state->opaque = NULL;
402
403 return;
404}
405
406
407static void qemu_gluster_reopen_abort(BDRVReopenState *state)
408{
409 BDRVGlusterReopenState *reop_s = state->opaque;
410
411 if (reop_s == NULL) {
412 return;
413 }
414
415 if (reop_s->fd) {
416 glfs_close(reop_s->fd);
417 }
418
419 if (reop_s->glfs) {
420 glfs_fini(reop_s->glfs);
421 }
422
423 g_free(state->opaque);
424 state->opaque = NULL;
425
426 return;
427}
428
7c815372
BR
429#ifdef CONFIG_GLUSTERFS_ZEROFILL
430static coroutine_fn int qemu_gluster_co_write_zeroes(BlockDriverState *bs,
431 int64_t sector_num, int nb_sectors, BdrvRequestFlags flags)
432{
433 int ret;
c833d1e8 434 GlusterAIOCB acb;
7c815372
BR
435 BDRVGlusterState *s = bs->opaque;
436 off_t size = nb_sectors * BDRV_SECTOR_SIZE;
437 off_t offset = sector_num * BDRV_SECTOR_SIZE;
438
c833d1e8
PB
439 acb.size = size;
440 acb.ret = 0;
441 acb.coroutine = qemu_coroutine_self();
442 acb.aio_context = bdrv_get_aio_context(bs);
7c815372 443
c833d1e8 444 ret = glfs_zerofill_async(s->fd, offset, size, gluster_finish_aiocb, &acb);
7c815372 445 if (ret < 0) {
c833d1e8 446 return -errno;
7c815372
BR
447 }
448
449 qemu_coroutine_yield();
c833d1e8 450 return acb.ret;
7c815372 451}
cf7f616b
BR
452
453static inline bool gluster_supports_zerofill(void)
454{
455 return 1;
456}
457
458static inline int qemu_gluster_zerofill(struct glfs_fd *fd, int64_t offset,
459 int64_t size)
460{
461 return glfs_zerofill(fd, offset, size);
462}
463
464#else
465static inline bool gluster_supports_zerofill(void)
466{
467 return 0;
468}
469
470static inline int qemu_gluster_zerofill(struct glfs_fd *fd, int64_t offset,
471 int64_t size)
472{
473 return 0;
474}
7c815372
BR
475#endif
476
8d6d89cb 477static int qemu_gluster_create(const char *filename,
90c772de 478 QemuOpts *opts, Error **errp)
8d6d89cb
BR
479{
480 struct glfs *glfs;
481 struct glfs_fd *fd;
482 int ret = 0;
cf7f616b 483 int prealloc = 0;
8d6d89cb 484 int64_t total_size = 0;
90c772de 485 char *tmp = NULL;
5839e53b 486 GlusterConf *gconf = g_new0(GlusterConf, 1);
8d6d89cb 487
a7451cb8 488 glfs = qemu_gluster_init(gconf, filename, errp);
8d6d89cb 489 if (!glfs) {
4557117d 490 ret = -errno;
8d6d89cb
BR
491 goto out;
492 }
493
180e9526
HT
494 total_size = ROUND_UP(qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0),
495 BDRV_SECTOR_SIZE);
90c772de
CL
496
497 tmp = qemu_opt_get_del(opts, BLOCK_OPT_PREALLOC);
498 if (!tmp || !strcmp(tmp, "off")) {
499 prealloc = 0;
500 } else if (!strcmp(tmp, "full") &&
501 gluster_supports_zerofill()) {
502 prealloc = 1;
503 } else {
504 error_setg(errp, "Invalid preallocation mode: '%s'"
505 " or GlusterFS doesn't support zerofill API",
506 tmp);
507 ret = -EINVAL;
508 goto out;
8d6d89cb
BR
509 }
510
511 fd = glfs_creat(glfs, gconf->image,
512 O_WRONLY | O_CREAT | O_TRUNC | O_BINARY, S_IRUSR | S_IWUSR);
513 if (!fd) {
514 ret = -errno;
515 } else {
180e9526
HT
516 if (!glfs_ftruncate(fd, total_size)) {
517 if (prealloc && qemu_gluster_zerofill(fd, 0, total_size)) {
cf7f616b
BR
518 ret = -errno;
519 }
520 } else {
8d6d89cb
BR
521 ret = -errno;
522 }
cf7f616b 523
8d6d89cb
BR
524 if (glfs_close(fd) != 0) {
525 ret = -errno;
526 }
527 }
528out:
90c772de 529 g_free(tmp);
8d6d89cb
BR
530 qemu_gluster_gconf_free(gconf);
531 if (glfs) {
532 glfs_fini(glfs);
533 }
534 return ret;
535}
536
15744b0b
BR
537static coroutine_fn int qemu_gluster_co_rw(BlockDriverState *bs,
538 int64_t sector_num, int nb_sectors, QEMUIOVector *qiov, int write)
8d6d89cb
BR
539{
540 int ret;
c833d1e8 541 GlusterAIOCB acb;
8d6d89cb 542 BDRVGlusterState *s = bs->opaque;
15744b0b
BR
543 size_t size = nb_sectors * BDRV_SECTOR_SIZE;
544 off_t offset = sector_num * BDRV_SECTOR_SIZE;
8d6d89cb 545
c833d1e8
PB
546 acb.size = size;
547 acb.ret = 0;
548 acb.coroutine = qemu_coroutine_self();
549 acb.aio_context = bdrv_get_aio_context(bs);
8d6d89cb
BR
550
551 if (write) {
552 ret = glfs_pwritev_async(s->fd, qiov->iov, qiov->niov, offset, 0,
c833d1e8 553 gluster_finish_aiocb, &acb);
8d6d89cb
BR
554 } else {
555 ret = glfs_preadv_async(s->fd, qiov->iov, qiov->niov, offset, 0,
c833d1e8 556 gluster_finish_aiocb, &acb);
8d6d89cb
BR
557 }
558
559 if (ret < 0) {
c833d1e8 560 return -errno;
8d6d89cb 561 }
15744b0b
BR
562
563 qemu_coroutine_yield();
c833d1e8 564 return acb.ret;
8d6d89cb
BR
565}
566
42ec24e2
PB
567static int qemu_gluster_truncate(BlockDriverState *bs, int64_t offset)
568{
569 int ret;
570 BDRVGlusterState *s = bs->opaque;
571
572 ret = glfs_ftruncate(s->fd, offset);
573 if (ret < 0) {
574 return -errno;
575 }
576
577 return 0;
578}
579
15744b0b
BR
580static coroutine_fn int qemu_gluster_co_readv(BlockDriverState *bs,
581 int64_t sector_num, int nb_sectors, QEMUIOVector *qiov)
8d6d89cb 582{
15744b0b 583 return qemu_gluster_co_rw(bs, sector_num, nb_sectors, qiov, 0);
8d6d89cb
BR
584}
585
15744b0b
BR
586static coroutine_fn int qemu_gluster_co_writev(BlockDriverState *bs,
587 int64_t sector_num, int nb_sectors, QEMUIOVector *qiov)
8d6d89cb 588{
15744b0b 589 return qemu_gluster_co_rw(bs, sector_num, nb_sectors, qiov, 1);
8d6d89cb
BR
590}
591
15744b0b 592static coroutine_fn int qemu_gluster_co_flush_to_disk(BlockDriverState *bs)
8d6d89cb
BR
593{
594 int ret;
c833d1e8 595 GlusterAIOCB acb;
8d6d89cb
BR
596 BDRVGlusterState *s = bs->opaque;
597
c833d1e8
PB
598 acb.size = 0;
599 acb.ret = 0;
600 acb.coroutine = qemu_coroutine_self();
601 acb.aio_context = bdrv_get_aio_context(bs);
8d6d89cb 602
c833d1e8 603 ret = glfs_fsync_async(s->fd, gluster_finish_aiocb, &acb);
8d6d89cb 604 if (ret < 0) {
c833d1e8 605 return -errno;
8d6d89cb 606 }
15744b0b
BR
607
608 qemu_coroutine_yield();
c833d1e8 609 return acb.ret;
8d6d89cb
BR
610}
611
0c14fb47 612#ifdef CONFIG_GLUSTERFS_DISCARD
15744b0b
BR
613static coroutine_fn int qemu_gluster_co_discard(BlockDriverState *bs,
614 int64_t sector_num, int nb_sectors)
0c14fb47
BR
615{
616 int ret;
c833d1e8 617 GlusterAIOCB acb;
0c14fb47 618 BDRVGlusterState *s = bs->opaque;
15744b0b
BR
619 size_t size = nb_sectors * BDRV_SECTOR_SIZE;
620 off_t offset = sector_num * BDRV_SECTOR_SIZE;
0c14fb47 621
c833d1e8
PB
622 acb.size = 0;
623 acb.ret = 0;
624 acb.coroutine = qemu_coroutine_self();
625 acb.aio_context = bdrv_get_aio_context(bs);
0c14fb47 626
c833d1e8 627 ret = glfs_discard_async(s->fd, offset, size, gluster_finish_aiocb, &acb);
0c14fb47 628 if (ret < 0) {
c833d1e8 629 return -errno;
0c14fb47 630 }
15744b0b
BR
631
632 qemu_coroutine_yield();
c833d1e8 633 return acb.ret;
0c14fb47
BR
634}
635#endif
636
8d6d89cb
BR
637static int64_t qemu_gluster_getlength(BlockDriverState *bs)
638{
639 BDRVGlusterState *s = bs->opaque;
640 int64_t ret;
641
642 ret = glfs_lseek(s->fd, 0, SEEK_END);
643 if (ret < 0) {
644 return -errno;
645 } else {
646 return ret;
647 }
648}
649
650static int64_t qemu_gluster_allocated_file_size(BlockDriverState *bs)
651{
652 BDRVGlusterState *s = bs->opaque;
653 struct stat st;
654 int ret;
655
656 ret = glfs_fstat(s->fd, &st);
657 if (ret < 0) {
658 return -errno;
659 } else {
660 return st.st_blocks * 512;
661 }
662}
663
664static void qemu_gluster_close(BlockDriverState *bs)
665{
666 BDRVGlusterState *s = bs->opaque;
667
8d6d89cb
BR
668 if (s->fd) {
669 glfs_close(s->fd);
670 s->fd = NULL;
671 }
672 glfs_fini(s->glfs);
673}
674
8ab6feec
KW
675static int qemu_gluster_has_zero_init(BlockDriverState *bs)
676{
677 /* GlusterFS volume could be backed by a block device */
678 return 0;
679}
680
90c772de
CL
681static QemuOptsList qemu_gluster_create_opts = {
682 .name = "qemu-gluster-create-opts",
683 .head = QTAILQ_HEAD_INITIALIZER(qemu_gluster_create_opts.head),
684 .desc = {
685 {
686 .name = BLOCK_OPT_SIZE,
687 .type = QEMU_OPT_SIZE,
688 .help = "Virtual disk size"
689 },
690 {
691 .name = BLOCK_OPT_PREALLOC,
692 .type = QEMU_OPT_STRING,
693 .help = "Preallocation mode (allowed values: off, full)"
694 },
695 { /* end of list */ }
696 }
8d6d89cb
BR
697};
698
699static BlockDriver bdrv_gluster = {
700 .format_name = "gluster",
701 .protocol_name = "gluster",
702 .instance_size = sizeof(BDRVGlusterState),
030be321 703 .bdrv_needs_filename = true,
8d6d89cb 704 .bdrv_file_open = qemu_gluster_open,
adccfbcd
JC
705 .bdrv_reopen_prepare = qemu_gluster_reopen_prepare,
706 .bdrv_reopen_commit = qemu_gluster_reopen_commit,
707 .bdrv_reopen_abort = qemu_gluster_reopen_abort,
8d6d89cb 708 .bdrv_close = qemu_gluster_close,
c282e1fd 709 .bdrv_create = qemu_gluster_create,
8d6d89cb
BR
710 .bdrv_getlength = qemu_gluster_getlength,
711 .bdrv_get_allocated_file_size = qemu_gluster_allocated_file_size,
42ec24e2 712 .bdrv_truncate = qemu_gluster_truncate,
15744b0b
BR
713 .bdrv_co_readv = qemu_gluster_co_readv,
714 .bdrv_co_writev = qemu_gluster_co_writev,
715 .bdrv_co_flush_to_disk = qemu_gluster_co_flush_to_disk,
8ab6feec 716 .bdrv_has_zero_init = qemu_gluster_has_zero_init,
0c14fb47 717#ifdef CONFIG_GLUSTERFS_DISCARD
15744b0b 718 .bdrv_co_discard = qemu_gluster_co_discard,
7c815372
BR
719#endif
720#ifdef CONFIG_GLUSTERFS_ZEROFILL
721 .bdrv_co_write_zeroes = qemu_gluster_co_write_zeroes,
0c14fb47 722#endif
90c772de 723 .create_opts = &qemu_gluster_create_opts,
8d6d89cb
BR
724};
725
726static BlockDriver bdrv_gluster_tcp = {
727 .format_name = "gluster",
728 .protocol_name = "gluster+tcp",
729 .instance_size = sizeof(BDRVGlusterState),
030be321 730 .bdrv_needs_filename = true,
8d6d89cb 731 .bdrv_file_open = qemu_gluster_open,
adccfbcd
JC
732 .bdrv_reopen_prepare = qemu_gluster_reopen_prepare,
733 .bdrv_reopen_commit = qemu_gluster_reopen_commit,
734 .bdrv_reopen_abort = qemu_gluster_reopen_abort,
8d6d89cb 735 .bdrv_close = qemu_gluster_close,
c282e1fd 736 .bdrv_create = qemu_gluster_create,
8d6d89cb
BR
737 .bdrv_getlength = qemu_gluster_getlength,
738 .bdrv_get_allocated_file_size = qemu_gluster_allocated_file_size,
42ec24e2 739 .bdrv_truncate = qemu_gluster_truncate,
15744b0b
BR
740 .bdrv_co_readv = qemu_gluster_co_readv,
741 .bdrv_co_writev = qemu_gluster_co_writev,
742 .bdrv_co_flush_to_disk = qemu_gluster_co_flush_to_disk,
8ab6feec 743 .bdrv_has_zero_init = qemu_gluster_has_zero_init,
0c14fb47 744#ifdef CONFIG_GLUSTERFS_DISCARD
15744b0b 745 .bdrv_co_discard = qemu_gluster_co_discard,
7c815372
BR
746#endif
747#ifdef CONFIG_GLUSTERFS_ZEROFILL
748 .bdrv_co_write_zeroes = qemu_gluster_co_write_zeroes,
0c14fb47 749#endif
90c772de 750 .create_opts = &qemu_gluster_create_opts,
8d6d89cb
BR
751};
752
753static BlockDriver bdrv_gluster_unix = {
754 .format_name = "gluster",
755 .protocol_name = "gluster+unix",
756 .instance_size = sizeof(BDRVGlusterState),
030be321 757 .bdrv_needs_filename = true,
8d6d89cb 758 .bdrv_file_open = qemu_gluster_open,
adccfbcd
JC
759 .bdrv_reopen_prepare = qemu_gluster_reopen_prepare,
760 .bdrv_reopen_commit = qemu_gluster_reopen_commit,
761 .bdrv_reopen_abort = qemu_gluster_reopen_abort,
8d6d89cb 762 .bdrv_close = qemu_gluster_close,
c282e1fd 763 .bdrv_create = qemu_gluster_create,
8d6d89cb
BR
764 .bdrv_getlength = qemu_gluster_getlength,
765 .bdrv_get_allocated_file_size = qemu_gluster_allocated_file_size,
42ec24e2 766 .bdrv_truncate = qemu_gluster_truncate,
15744b0b
BR
767 .bdrv_co_readv = qemu_gluster_co_readv,
768 .bdrv_co_writev = qemu_gluster_co_writev,
769 .bdrv_co_flush_to_disk = qemu_gluster_co_flush_to_disk,
8ab6feec 770 .bdrv_has_zero_init = qemu_gluster_has_zero_init,
0c14fb47 771#ifdef CONFIG_GLUSTERFS_DISCARD
15744b0b 772 .bdrv_co_discard = qemu_gluster_co_discard,
7c815372
BR
773#endif
774#ifdef CONFIG_GLUSTERFS_ZEROFILL
775 .bdrv_co_write_zeroes = qemu_gluster_co_write_zeroes,
0c14fb47 776#endif
90c772de 777 .create_opts = &qemu_gluster_create_opts,
8d6d89cb
BR
778};
779
780static BlockDriver bdrv_gluster_rdma = {
781 .format_name = "gluster",
782 .protocol_name = "gluster+rdma",
783 .instance_size = sizeof(BDRVGlusterState),
030be321 784 .bdrv_needs_filename = true,
8d6d89cb 785 .bdrv_file_open = qemu_gluster_open,
adccfbcd
JC
786 .bdrv_reopen_prepare = qemu_gluster_reopen_prepare,
787 .bdrv_reopen_commit = qemu_gluster_reopen_commit,
788 .bdrv_reopen_abort = qemu_gluster_reopen_abort,
8d6d89cb 789 .bdrv_close = qemu_gluster_close,
c282e1fd 790 .bdrv_create = qemu_gluster_create,
8d6d89cb
BR
791 .bdrv_getlength = qemu_gluster_getlength,
792 .bdrv_get_allocated_file_size = qemu_gluster_allocated_file_size,
42ec24e2 793 .bdrv_truncate = qemu_gluster_truncate,
15744b0b
BR
794 .bdrv_co_readv = qemu_gluster_co_readv,
795 .bdrv_co_writev = qemu_gluster_co_writev,
796 .bdrv_co_flush_to_disk = qemu_gluster_co_flush_to_disk,
8ab6feec 797 .bdrv_has_zero_init = qemu_gluster_has_zero_init,
0c14fb47 798#ifdef CONFIG_GLUSTERFS_DISCARD
15744b0b 799 .bdrv_co_discard = qemu_gluster_co_discard,
7c815372
BR
800#endif
801#ifdef CONFIG_GLUSTERFS_ZEROFILL
802 .bdrv_co_write_zeroes = qemu_gluster_co_write_zeroes,
0c14fb47 803#endif
90c772de 804 .create_opts = &qemu_gluster_create_opts,
8d6d89cb
BR
805};
806
807static void bdrv_gluster_init(void)
808{
809 bdrv_register(&bdrv_gluster_rdma);
810 bdrv_register(&bdrv_gluster_unix);
811 bdrv_register(&bdrv_gluster_tcp);
812 bdrv_register(&bdrv_gluster);
813}
814
815block_init(bdrv_gluster_init);