2 * QEMU Block driver for native access to files on NFS shares
4 * Copyright (c) 2014-2016 Peter Lieven <pl@kamp.de>
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 #include "qemu/osdep.h"
28 #include "qemu-common.h"
29 #include "qemu/config-file.h"
30 #include "qemu/error-report.h"
31 #include "qapi/error.h"
32 #include "block/block_int.h"
36 #include "qemu/cutils.h"
37 #include "sysemu/sysemu.h"
38 #include "qapi/qmp/qdict.h"
39 #include "qapi/qmp/qint.h"
40 #include "qapi/qmp/qstring.h"
41 #include "qapi-visit.h"
42 #include "qapi/qobject-input-visitor.h"
43 #include "qapi/qobject-output-visitor.h"
44 #include <nfsc/libnfs.h>
47 #define QEMU_NFS_MAX_READAHEAD_SIZE 1048576
48 #define QEMU_NFS_MAX_PAGECACHE_SIZE (8388608 / NFS_BLKSIZE)
49 #define QEMU_NFS_MAX_DEBUG_LEVEL 2
51 typedef struct NFSClient
{
52 struct nfs_context
*context
;
56 AioContext
*aio_context
;
61 int64_t uid
, gid
, tcp_syncnt
, readahead
, pagecache
, debug
;
64 typedef struct NFSRPC
{
74 static int nfs_parse_uri(const char *filename
, QDict
*options
, Error
**errp
)
77 QueryParams
*qp
= NULL
;
80 uri
= uri_parse(filename
);
82 error_setg(errp
, "Invalid URI specified");
85 if (strcmp(uri
->scheme
, "nfs") != 0) {
86 error_setg(errp
, "URI scheme must be 'nfs'");
91 error_setg(errp
, "missing hostname in URI");
96 error_setg(errp
, "missing file path in URI");
100 qp
= query_params_parse(uri
->query
);
102 error_setg(errp
, "could not parse query parameters");
106 qdict_put(options
, "server.host", qstring_from_str(uri
->server
));
107 qdict_put(options
, "server.type", qstring_from_str("inet"));
108 qdict_put(options
, "path", qstring_from_str(uri
->path
));
110 for (i
= 0; i
< qp
->n
; i
++) {
111 unsigned long long val
;
112 if (!qp
->p
[i
].value
) {
113 error_setg(errp
, "Value for NFS parameter expected: %s",
117 if (parse_uint_full(qp
->p
[i
].value
, &val
, 0)) {
118 error_setg(errp
, "Illegal value for NFS parameter: %s",
122 if (!strcmp(qp
->p
[i
].name
, "uid")) {
123 qdict_put(options
, "user",
124 qstring_from_str(qp
->p
[i
].value
));
125 } else if (!strcmp(qp
->p
[i
].name
, "gid")) {
126 qdict_put(options
, "group",
127 qstring_from_str(qp
->p
[i
].value
));
128 } else if (!strcmp(qp
->p
[i
].name
, "tcp-syncnt")) {
129 qdict_put(options
, "tcp-syn-count",
130 qstring_from_str(qp
->p
[i
].value
));
131 } else if (!strcmp(qp
->p
[i
].name
, "readahead")) {
132 qdict_put(options
, "readahead-size",
133 qstring_from_str(qp
->p
[i
].value
));
134 } else if (!strcmp(qp
->p
[i
].name
, "pagecache")) {
135 qdict_put(options
, "page-cache-size",
136 qstring_from_str(qp
->p
[i
].value
));
137 } else if (!strcmp(qp
->p
[i
].name
, "debug")) {
138 qdict_put(options
, "debug",
139 qstring_from_str(qp
->p
[i
].value
));
141 error_setg(errp
, "Unknown NFS parameter name: %s",
149 query_params_free(qp
);
157 static bool nfs_has_filename_options_conflict(QDict
*options
, Error
**errp
)
159 const QDictEntry
*qe
;
161 for (qe
= qdict_first(options
); qe
; qe
= qdict_next(options
, qe
)) {
162 if (!strcmp(qe
->key
, "host") ||
163 !strcmp(qe
->key
, "path") ||
164 !strcmp(qe
->key
, "user") ||
165 !strcmp(qe
->key
, "group") ||
166 !strcmp(qe
->key
, "tcp-syn-count") ||
167 !strcmp(qe
->key
, "readahead-size") ||
168 !strcmp(qe
->key
, "page-cache-size") ||
169 !strcmp(qe
->key
, "debug") ||
170 strstart(qe
->key
, "server.", NULL
))
172 error_setg(errp
, "Option %s cannot be used with a filename",
181 static void nfs_parse_filename(const char *filename
, QDict
*options
,
184 if (nfs_has_filename_options_conflict(options
, errp
)) {
188 nfs_parse_uri(filename
, options
, errp
);
191 static void nfs_process_read(void *arg
);
192 static void nfs_process_write(void *arg
);
194 static void nfs_set_events(NFSClient
*client
)
196 int ev
= nfs_which_events(client
->context
);
197 if (ev
!= client
->events
) {
198 aio_set_fd_handler(client
->aio_context
, nfs_get_fd(client
->context
),
200 (ev
& POLLIN
) ? nfs_process_read
: NULL
,
201 (ev
& POLLOUT
) ? nfs_process_write
: NULL
,
208 static void nfs_process_read(void *arg
)
210 NFSClient
*client
= arg
;
212 aio_context_acquire(client
->aio_context
);
213 nfs_service(client
->context
, POLLIN
);
214 nfs_set_events(client
);
215 aio_context_release(client
->aio_context
);
218 static void nfs_process_write(void *arg
)
220 NFSClient
*client
= arg
;
222 aio_context_acquire(client
->aio_context
);
223 nfs_service(client
->context
, POLLOUT
);
224 nfs_set_events(client
);
225 aio_context_release(client
->aio_context
);
228 static void nfs_co_init_task(BlockDriverState
*bs
, NFSRPC
*task
)
231 .co
= qemu_coroutine_self(),
233 .client
= bs
->opaque
,
237 static void nfs_co_generic_bh_cb(void *opaque
)
239 NFSRPC
*task
= opaque
;
242 aio_co_wake(task
->co
);
246 nfs_co_generic_cb(int ret
, struct nfs_context
*nfs
, void *data
,
249 NFSRPC
*task
= private_data
;
252 if (task
->ret
> 0 && task
->iov
) {
253 if (task
->ret
<= task
->iov
->size
) {
254 qemu_iovec_from_buf(task
->iov
, 0, data
, task
->ret
);
260 error_report("NFS Error: %s", nfs_get_error(nfs
));
262 aio_bh_schedule_oneshot(task
->client
->aio_context
,
263 nfs_co_generic_bh_cb
, task
);
266 static int coroutine_fn
nfs_co_readv(BlockDriverState
*bs
,
267 int64_t sector_num
, int nb_sectors
,
270 NFSClient
*client
= bs
->opaque
;
273 nfs_co_init_task(bs
, &task
);
276 if (nfs_pread_async(client
->context
, client
->fh
,
277 sector_num
* BDRV_SECTOR_SIZE
,
278 nb_sectors
* BDRV_SECTOR_SIZE
,
279 nfs_co_generic_cb
, &task
) != 0) {
283 nfs_set_events(client
);
284 while (!task
.complete
) {
285 qemu_coroutine_yield();
292 /* zero pad short reads */
293 if (task
.ret
< iov
->size
) {
294 qemu_iovec_memset(iov
, task
.ret
, 0, iov
->size
- task
.ret
);
300 static int coroutine_fn
nfs_co_writev(BlockDriverState
*bs
,
301 int64_t sector_num
, int nb_sectors
,
304 NFSClient
*client
= bs
->opaque
;
308 nfs_co_init_task(bs
, &task
);
310 buf
= g_try_malloc(nb_sectors
* BDRV_SECTOR_SIZE
);
311 if (nb_sectors
&& buf
== NULL
) {
315 qemu_iovec_to_buf(iov
, 0, buf
, nb_sectors
* BDRV_SECTOR_SIZE
);
317 if (nfs_pwrite_async(client
->context
, client
->fh
,
318 sector_num
* BDRV_SECTOR_SIZE
,
319 nb_sectors
* BDRV_SECTOR_SIZE
,
320 buf
, nfs_co_generic_cb
, &task
) != 0) {
325 nfs_set_events(client
);
326 while (!task
.complete
) {
327 qemu_coroutine_yield();
332 if (task
.ret
!= nb_sectors
* BDRV_SECTOR_SIZE
) {
333 return task
.ret
< 0 ? task
.ret
: -EIO
;
339 static int coroutine_fn
nfs_co_flush(BlockDriverState
*bs
)
341 NFSClient
*client
= bs
->opaque
;
344 nfs_co_init_task(bs
, &task
);
346 if (nfs_fsync_async(client
->context
, client
->fh
, nfs_co_generic_cb
,
351 nfs_set_events(client
);
352 while (!task
.complete
) {
353 qemu_coroutine_yield();
359 static QemuOptsList runtime_opts
= {
361 .head
= QTAILQ_HEAD_INITIALIZER(runtime_opts
.head
),
365 .type
= QEMU_OPT_STRING
,
366 .help
= "Path of the image on the host",
370 .type
= QEMU_OPT_NUMBER
,
371 .help
= "UID value to use when talking to the server",
375 .type
= QEMU_OPT_NUMBER
,
376 .help
= "GID value to use when talking to the server",
379 .name
= "tcp-syn-count",
380 .type
= QEMU_OPT_NUMBER
,
381 .help
= "Number of SYNs to send during the session establish",
384 .name
= "readahead-size",
385 .type
= QEMU_OPT_NUMBER
,
386 .help
= "Set the readahead size in bytes",
389 .name
= "page-cache-size",
390 .type
= QEMU_OPT_NUMBER
,
391 .help
= "Set the pagecache size in bytes",
395 .type
= QEMU_OPT_NUMBER
,
396 .help
= "Set the NFS debug level (max 2)",
398 { /* end of list */ }
402 static void nfs_detach_aio_context(BlockDriverState
*bs
)
404 NFSClient
*client
= bs
->opaque
;
406 aio_set_fd_handler(client
->aio_context
, nfs_get_fd(client
->context
),
407 false, NULL
, NULL
, NULL
, NULL
);
411 static void nfs_attach_aio_context(BlockDriverState
*bs
,
412 AioContext
*new_context
)
414 NFSClient
*client
= bs
->opaque
;
416 client
->aio_context
= new_context
;
417 nfs_set_events(client
);
420 static void nfs_client_close(NFSClient
*client
)
422 if (client
->context
) {
424 nfs_close(client
->context
, client
->fh
);
426 aio_set_fd_handler(client
->aio_context
, nfs_get_fd(client
->context
),
427 false, NULL
, NULL
, NULL
, NULL
);
428 nfs_destroy_context(client
->context
);
430 memset(client
, 0, sizeof(NFSClient
));
433 static void nfs_file_close(BlockDriverState
*bs
)
435 NFSClient
*client
= bs
->opaque
;
436 nfs_client_close(client
);
439 static NFSServer
*nfs_config(QDict
*options
, Error
**errp
)
441 NFSServer
*server
= NULL
;
443 QObject
*crumpled_addr
= NULL
;
445 Error
*local_error
= NULL
;
447 qdict_extract_subqdict(options
, &addr
, "server.");
448 if (!qdict_size(addr
)) {
449 error_setg(errp
, "NFS server address missing");
453 crumpled_addr
= qdict_crumple(addr
, errp
);
454 if (!crumpled_addr
) {
458 iv
= qobject_input_visitor_new(crumpled_addr
, true);
459 visit_type_NFSServer(iv
, NULL
, &server
, &local_error
);
461 error_propagate(errp
, local_error
);
467 qobject_decref(crumpled_addr
);
473 static int64_t nfs_client_open(NFSClient
*client
, QDict
*options
,
474 int flags
, Error
**errp
, int open_flags
)
477 QemuOpts
*opts
= NULL
;
478 Error
*local_err
= NULL
;
480 char *file
= NULL
, *strp
= NULL
;
482 opts
= qemu_opts_create(&runtime_opts
, NULL
, 0, &error_abort
);
483 qemu_opts_absorb_qdict(opts
, options
, &local_err
);
485 error_propagate(errp
, local_err
);
490 client
->path
= g_strdup(qemu_opt_get(opts
, "path"));
493 error_setg(errp
, "No path was specified");
497 strp
= strrchr(client
->path
, '/');
499 error_setg(errp
, "Invalid URL specified");
502 file
= g_strdup(strp
);
505 /* Pop the config into our state object, Exit if invalid */
506 client
->server
= nfs_config(options
, errp
);
507 if (!client
->server
) {
512 client
->context
= nfs_init_context();
513 if (client
->context
== NULL
) {
514 error_setg(errp
, "Failed to init NFS context");
518 if (qemu_opt_get(opts
, "user")) {
519 client
->uid
= qemu_opt_get_number(opts
, "user", 0);
520 nfs_set_uid(client
->context
, client
->uid
);
523 if (qemu_opt_get(opts
, "group")) {
524 client
->gid
= qemu_opt_get_number(opts
, "group", 0);
525 nfs_set_gid(client
->context
, client
->gid
);
528 if (qemu_opt_get(opts
, "tcp-syn-count")) {
529 client
->tcp_syncnt
= qemu_opt_get_number(opts
, "tcp-syn-count", 0);
530 nfs_set_tcp_syncnt(client
->context
, client
->tcp_syncnt
);
533 #ifdef LIBNFS_FEATURE_READAHEAD
534 if (qemu_opt_get(opts
, "readahead-size")) {
535 if (open_flags
& BDRV_O_NOCACHE
) {
536 error_setg(errp
, "Cannot enable NFS readahead "
537 "if cache.direct = on");
540 client
->readahead
= qemu_opt_get_number(opts
, "readahead-size", 0);
541 if (client
->readahead
> QEMU_NFS_MAX_READAHEAD_SIZE
) {
542 error_report("NFS Warning: Truncating NFS readahead "
543 "size to %d", QEMU_NFS_MAX_READAHEAD_SIZE
);
544 client
->readahead
= QEMU_NFS_MAX_READAHEAD_SIZE
;
546 nfs_set_readahead(client
->context
, client
->readahead
);
547 #ifdef LIBNFS_FEATURE_PAGECACHE
548 nfs_set_pagecache_ttl(client
->context
, 0);
550 client
->cache_used
= true;
554 #ifdef LIBNFS_FEATURE_PAGECACHE
555 if (qemu_opt_get(opts
, "page-cache-size")) {
556 if (open_flags
& BDRV_O_NOCACHE
) {
557 error_setg(errp
, "Cannot enable NFS pagecache "
558 "if cache.direct = on");
561 client
->pagecache
= qemu_opt_get_number(opts
, "page-cache-size", 0);
562 if (client
->pagecache
> QEMU_NFS_MAX_PAGECACHE_SIZE
) {
563 error_report("NFS Warning: Truncating NFS pagecache "
564 "size to %d pages", QEMU_NFS_MAX_PAGECACHE_SIZE
);
565 client
->pagecache
= QEMU_NFS_MAX_PAGECACHE_SIZE
;
567 nfs_set_pagecache(client
->context
, client
->pagecache
);
568 nfs_set_pagecache_ttl(client
->context
, 0);
569 client
->cache_used
= true;
573 #ifdef LIBNFS_FEATURE_DEBUG
574 if (qemu_opt_get(opts
, "debug")) {
575 client
->debug
= qemu_opt_get_number(opts
, "debug", 0);
576 /* limit the maximum debug level to avoid potential flooding
577 * of our log files. */
578 if (client
->debug
> QEMU_NFS_MAX_DEBUG_LEVEL
) {
579 error_report("NFS Warning: Limiting NFS debug level "
580 "to %d", QEMU_NFS_MAX_DEBUG_LEVEL
);
581 client
->debug
= QEMU_NFS_MAX_DEBUG_LEVEL
;
583 nfs_set_debug(client
->context
, client
->debug
);
587 ret
= nfs_mount(client
->context
, client
->server
->host
, client
->path
);
589 error_setg(errp
, "Failed to mount nfs share: %s",
590 nfs_get_error(client
->context
));
594 if (flags
& O_CREAT
) {
595 ret
= nfs_creat(client
->context
, file
, 0600, &client
->fh
);
597 error_setg(errp
, "Failed to create file: %s",
598 nfs_get_error(client
->context
));
602 ret
= nfs_open(client
->context
, file
, flags
, &client
->fh
);
604 error_setg(errp
, "Failed to open file : %s",
605 nfs_get_error(client
->context
));
610 ret
= nfs_fstat(client
->context
, client
->fh
, &st
);
612 error_setg(errp
, "Failed to fstat file: %s",
613 nfs_get_error(client
->context
));
617 ret
= DIV_ROUND_UP(st
.st_size
, BDRV_SECTOR_SIZE
);
618 client
->st_blocks
= st
.st_blocks
;
619 client
->has_zero_init
= S_ISREG(st
.st_mode
);
624 nfs_client_close(client
);
631 static int nfs_file_open(BlockDriverState
*bs
, QDict
*options
, int flags
,
633 NFSClient
*client
= bs
->opaque
;
636 client
->aio_context
= bdrv_get_aio_context(bs
);
638 ret
= nfs_client_open(client
, options
,
639 (flags
& BDRV_O_RDWR
) ? O_RDWR
: O_RDONLY
,
640 errp
, bs
->open_flags
);
644 bs
->total_sectors
= ret
;
649 static QemuOptsList nfs_create_opts
= {
650 .name
= "nfs-create-opts",
651 .head
= QTAILQ_HEAD_INITIALIZER(nfs_create_opts
.head
),
654 .name
= BLOCK_OPT_SIZE
,
655 .type
= QEMU_OPT_SIZE
,
656 .help
= "Virtual disk size"
658 { /* end of list */ }
662 static int nfs_file_create(const char *url
, QemuOpts
*opts
, Error
**errp
)
665 int64_t total_size
= 0;
666 NFSClient
*client
= g_new0(NFSClient
, 1);
667 QDict
*options
= NULL
;
669 client
->aio_context
= qemu_get_aio_context();
671 /* Read out options */
672 total_size
= ROUND_UP(qemu_opt_get_size_del(opts
, BLOCK_OPT_SIZE
, 0),
675 options
= qdict_new();
676 ret
= nfs_parse_uri(url
, options
, errp
);
681 ret
= nfs_client_open(client
, options
, O_CREAT
, errp
, 0);
685 ret
= nfs_ftruncate(client
->context
, client
->fh
, total_size
);
686 nfs_client_close(client
);
693 static int nfs_has_zero_init(BlockDriverState
*bs
)
695 NFSClient
*client
= bs
->opaque
;
696 return client
->has_zero_init
;
700 nfs_get_allocated_file_size_cb(int ret
, struct nfs_context
*nfs
, void *data
,
703 NFSRPC
*task
= private_data
;
705 if (task
->ret
== 0) {
706 memcpy(task
->st
, data
, sizeof(struct stat
));
709 error_report("NFS Error: %s", nfs_get_error(nfs
));
712 bdrv_wakeup(task
->bs
);
715 static int64_t nfs_get_allocated_file_size(BlockDriverState
*bs
)
717 NFSClient
*client
= bs
->opaque
;
721 if (bdrv_is_read_only(bs
) &&
722 !(bs
->open_flags
& BDRV_O_NOCACHE
)) {
723 return client
->st_blocks
* 512;
728 if (nfs_fstat_async(client
->context
, client
->fh
, nfs_get_allocated_file_size_cb
,
733 nfs_set_events(client
);
734 BDRV_POLL_WHILE(bs
, !task
.complete
);
736 return (task
.ret
< 0 ? task
.ret
: st
.st_blocks
* 512);
739 static int nfs_file_truncate(BlockDriverState
*bs
, int64_t offset
)
741 NFSClient
*client
= bs
->opaque
;
742 return nfs_ftruncate(client
->context
, client
->fh
, offset
);
745 /* Note that this will not re-establish a connection with the NFS server
746 * - it is effectively a NOP. */
747 static int nfs_reopen_prepare(BDRVReopenState
*state
,
748 BlockReopenQueue
*queue
, Error
**errp
)
750 NFSClient
*client
= state
->bs
->opaque
;
754 if (state
->flags
& BDRV_O_RDWR
&& bdrv_is_read_only(state
->bs
)) {
755 error_setg(errp
, "Cannot open a read-only mount as read-write");
759 if ((state
->flags
& BDRV_O_NOCACHE
) && client
->cache_used
) {
760 error_setg(errp
, "Cannot disable cache if libnfs readahead or"
761 " pagecache is enabled");
765 /* Update cache for read-only reopens */
766 if (!(state
->flags
& BDRV_O_RDWR
)) {
767 ret
= nfs_fstat(client
->context
, client
->fh
, &st
);
769 error_setg(errp
, "Failed to fstat file: %s",
770 nfs_get_error(client
->context
));
773 client
->st_blocks
= st
.st_blocks
;
779 static void nfs_refresh_filename(BlockDriverState
*bs
, QDict
*options
)
781 NFSClient
*client
= bs
->opaque
;
782 QDict
*opts
= qdict_new();
783 QObject
*server_qdict
;
786 qdict_put(opts
, "driver", qstring_from_str("nfs"));
788 if (client
->uid
&& !client
->gid
) {
789 snprintf(bs
->exact_filename
, sizeof(bs
->exact_filename
),
790 "nfs://%s%s?uid=%" PRId64
, client
->server
->host
, client
->path
,
792 } else if (!client
->uid
&& client
->gid
) {
793 snprintf(bs
->exact_filename
, sizeof(bs
->exact_filename
),
794 "nfs://%s%s?gid=%" PRId64
, client
->server
->host
, client
->path
,
796 } else if (client
->uid
&& client
->gid
) {
797 snprintf(bs
->exact_filename
, sizeof(bs
->exact_filename
),
798 "nfs://%s%s?uid=%" PRId64
"&gid=%" PRId64
,
799 client
->server
->host
, client
->path
, client
->uid
, client
->gid
);
801 snprintf(bs
->exact_filename
, sizeof(bs
->exact_filename
),
802 "nfs://%s%s", client
->server
->host
, client
->path
);
805 ov
= qobject_output_visitor_new(&server_qdict
);
806 visit_type_NFSServer(ov
, NULL
, &client
->server
, &error_abort
);
807 visit_complete(ov
, &server_qdict
);
808 assert(qobject_type(server_qdict
) == QTYPE_QDICT
);
810 qdict_put_obj(opts
, "server", server_qdict
);
811 qdict_put(opts
, "path", qstring_from_str(client
->path
));
814 qdict_put(opts
, "user", qint_from_int(client
->uid
));
817 qdict_put(opts
, "group", qint_from_int(client
->gid
));
819 if (client
->tcp_syncnt
) {
820 qdict_put(opts
, "tcp-syn-cnt",
821 qint_from_int(client
->tcp_syncnt
));
823 if (client
->readahead
) {
824 qdict_put(opts
, "readahead-size",
825 qint_from_int(client
->readahead
));
827 if (client
->pagecache
) {
828 qdict_put(opts
, "page-cache-size",
829 qint_from_int(client
->pagecache
));
832 qdict_put(opts
, "debug", qint_from_int(client
->debug
));
837 bs
->full_open_options
= opts
;
840 #ifdef LIBNFS_FEATURE_PAGECACHE
841 static void nfs_invalidate_cache(BlockDriverState
*bs
,
844 NFSClient
*client
= bs
->opaque
;
845 nfs_pagecache_invalidate(client
->context
, client
->fh
);
849 static BlockDriver bdrv_nfs
= {
850 .format_name
= "nfs",
851 .protocol_name
= "nfs",
853 .instance_size
= sizeof(NFSClient
),
854 .bdrv_parse_filename
= nfs_parse_filename
,
855 .create_opts
= &nfs_create_opts
,
857 .bdrv_has_zero_init
= nfs_has_zero_init
,
858 .bdrv_get_allocated_file_size
= nfs_get_allocated_file_size
,
859 .bdrv_truncate
= nfs_file_truncate
,
861 .bdrv_file_open
= nfs_file_open
,
862 .bdrv_close
= nfs_file_close
,
863 .bdrv_create
= nfs_file_create
,
864 .bdrv_reopen_prepare
= nfs_reopen_prepare
,
866 .bdrv_co_readv
= nfs_co_readv
,
867 .bdrv_co_writev
= nfs_co_writev
,
868 .bdrv_co_flush_to_disk
= nfs_co_flush
,
870 .bdrv_detach_aio_context
= nfs_detach_aio_context
,
871 .bdrv_attach_aio_context
= nfs_attach_aio_context
,
872 .bdrv_refresh_filename
= nfs_refresh_filename
,
874 #ifdef LIBNFS_FEATURE_PAGECACHE
875 .bdrv_invalidate_cache
= nfs_invalidate_cache
,
879 static void nfs_block_init(void)
881 bdrv_register(&bdrv_nfs
);
884 block_init(nfs_block_init
);