2 * QEMU Block driver for native access to files on NFS shares
4 * Copyright (c) 2014 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 "config-host.h"
28 #include "qemu-common.h"
29 #include "qemu/config-file.h"
30 #include "qemu/error-report.h"
31 #include "block/block_int.h"
35 #include "sysemu/sysemu.h"
36 #include <nfsc/libnfs.h>
38 #define QEMU_NFS_MAX_READAHEAD_SIZE 1048576
40 typedef struct NFSClient
{
41 struct nfs_context
*context
;
45 AioContext
*aio_context
;
49 typedef struct NFSRPC
{
59 static void nfs_process_read(void *arg
);
60 static void nfs_process_write(void *arg
);
62 static void nfs_set_events(NFSClient
*client
)
64 int ev
= nfs_which_events(client
->context
);
65 if (ev
!= client
->events
) {
66 aio_set_fd_handler(client
->aio_context
,
67 nfs_get_fd(client
->context
),
68 (ev
& POLLIN
) ? nfs_process_read
: NULL
,
69 (ev
& POLLOUT
) ? nfs_process_write
: NULL
,
76 static void nfs_process_read(void *arg
)
78 NFSClient
*client
= arg
;
79 nfs_service(client
->context
, POLLIN
);
80 nfs_set_events(client
);
83 static void nfs_process_write(void *arg
)
85 NFSClient
*client
= arg
;
86 nfs_service(client
->context
, POLLOUT
);
87 nfs_set_events(client
);
90 static void nfs_co_init_task(NFSClient
*client
, NFSRPC
*task
)
93 .co
= qemu_coroutine_self(),
98 static void nfs_co_generic_bh_cb(void *opaque
)
100 NFSRPC
*task
= opaque
;
102 qemu_bh_delete(task
->bh
);
103 qemu_coroutine_enter(task
->co
, NULL
);
107 nfs_co_generic_cb(int ret
, struct nfs_context
*nfs
, void *data
,
110 NFSRPC
*task
= private_data
;
112 if (task
->ret
> 0 && task
->iov
) {
113 if (task
->ret
<= task
->iov
->size
) {
114 qemu_iovec_from_buf(task
->iov
, 0, data
, task
->ret
);
119 if (task
->ret
== 0 && task
->st
) {
120 memcpy(task
->st
, data
, sizeof(struct stat
));
123 error_report("NFS Error: %s", nfs_get_error(nfs
));
126 task
->bh
= aio_bh_new(task
->client
->aio_context
,
127 nfs_co_generic_bh_cb
, task
);
128 qemu_bh_schedule(task
->bh
);
134 static int coroutine_fn
nfs_co_readv(BlockDriverState
*bs
,
135 int64_t sector_num
, int nb_sectors
,
138 NFSClient
*client
= bs
->opaque
;
141 nfs_co_init_task(client
, &task
);
144 if (nfs_pread_async(client
->context
, client
->fh
,
145 sector_num
* BDRV_SECTOR_SIZE
,
146 nb_sectors
* BDRV_SECTOR_SIZE
,
147 nfs_co_generic_cb
, &task
) != 0) {
151 while (!task
.complete
) {
152 nfs_set_events(client
);
153 qemu_coroutine_yield();
160 /* zero pad short reads */
161 if (task
.ret
< iov
->size
) {
162 qemu_iovec_memset(iov
, task
.ret
, 0, iov
->size
- task
.ret
);
168 static int coroutine_fn
nfs_co_writev(BlockDriverState
*bs
,
169 int64_t sector_num
, int nb_sectors
,
172 NFSClient
*client
= bs
->opaque
;
176 nfs_co_init_task(client
, &task
);
178 buf
= g_try_malloc(nb_sectors
* BDRV_SECTOR_SIZE
);
179 if (nb_sectors
&& buf
== NULL
) {
183 qemu_iovec_to_buf(iov
, 0, buf
, nb_sectors
* BDRV_SECTOR_SIZE
);
185 if (nfs_pwrite_async(client
->context
, client
->fh
,
186 sector_num
* BDRV_SECTOR_SIZE
,
187 nb_sectors
* BDRV_SECTOR_SIZE
,
188 buf
, nfs_co_generic_cb
, &task
) != 0) {
193 while (!task
.complete
) {
194 nfs_set_events(client
);
195 qemu_coroutine_yield();
200 if (task
.ret
!= nb_sectors
* BDRV_SECTOR_SIZE
) {
201 return task
.ret
< 0 ? task
.ret
: -EIO
;
207 static int coroutine_fn
nfs_co_flush(BlockDriverState
*bs
)
209 NFSClient
*client
= bs
->opaque
;
212 nfs_co_init_task(client
, &task
);
214 if (nfs_fsync_async(client
->context
, client
->fh
, nfs_co_generic_cb
,
219 while (!task
.complete
) {
220 nfs_set_events(client
);
221 qemu_coroutine_yield();
227 /* TODO Convert to fine grained options */
228 static QemuOptsList runtime_opts
= {
230 .head
= QTAILQ_HEAD_INITIALIZER(runtime_opts
.head
),
234 .type
= QEMU_OPT_STRING
,
235 .help
= "URL to the NFS file",
237 { /* end of list */ }
241 static void nfs_detach_aio_context(BlockDriverState
*bs
)
243 NFSClient
*client
= bs
->opaque
;
245 aio_set_fd_handler(client
->aio_context
,
246 nfs_get_fd(client
->context
),
251 static void nfs_attach_aio_context(BlockDriverState
*bs
,
252 AioContext
*new_context
)
254 NFSClient
*client
= bs
->opaque
;
256 client
->aio_context
= new_context
;
257 nfs_set_events(client
);
260 static void nfs_client_close(NFSClient
*client
)
262 if (client
->context
) {
264 nfs_close(client
->context
, client
->fh
);
266 aio_set_fd_handler(client
->aio_context
,
267 nfs_get_fd(client
->context
),
269 nfs_destroy_context(client
->context
);
271 memset(client
, 0, sizeof(NFSClient
));
274 static void nfs_file_close(BlockDriverState
*bs
)
276 NFSClient
*client
= bs
->opaque
;
277 nfs_client_close(client
);
280 static int64_t nfs_client_open(NFSClient
*client
, const char *filename
,
281 int flags
, Error
**errp
)
283 int ret
= -EINVAL
, i
;
286 QueryParams
*qp
= NULL
;
287 char *file
= NULL
, *strp
= NULL
;
289 uri
= uri_parse(filename
);
291 error_setg(errp
, "Invalid URL specified");
295 error_setg(errp
, "Invalid URL specified");
298 strp
= strrchr(uri
->path
, '/');
300 error_setg(errp
, "Invalid URL specified");
303 file
= g_strdup(strp
);
306 client
->context
= nfs_init_context();
307 if (client
->context
== NULL
) {
308 error_setg(errp
, "Failed to init NFS context");
312 qp
= query_params_parse(uri
->query
);
313 for (i
= 0; i
< qp
->n
; i
++) {
314 unsigned long long val
;
315 if (!qp
->p
[i
].value
) {
316 error_setg(errp
, "Value for NFS parameter expected: %s",
320 if (parse_uint_full(qp
->p
[i
].value
, &val
, 0)) {
321 error_setg(errp
, "Illegal value for NFS parameter: %s",
325 if (!strcmp(qp
->p
[i
].name
, "uid")) {
326 nfs_set_uid(client
->context
, val
);
327 } else if (!strcmp(qp
->p
[i
].name
, "gid")) {
328 nfs_set_gid(client
->context
, val
);
329 } else if (!strcmp(qp
->p
[i
].name
, "tcp-syncnt")) {
330 nfs_set_tcp_syncnt(client
->context
, val
);
331 #ifdef LIBNFS_FEATURE_READAHEAD
332 } else if (!strcmp(qp
->p
[i
].name
, "readahead")) {
333 if (val
> QEMU_NFS_MAX_READAHEAD_SIZE
) {
334 error_report("NFS Warning: Truncating NFS readahead"
335 " size to %d", QEMU_NFS_MAX_READAHEAD_SIZE
);
336 val
= QEMU_NFS_MAX_READAHEAD_SIZE
;
338 nfs_set_readahead(client
->context
, val
);
341 error_setg(errp
, "Unknown NFS parameter name: %s",
347 ret
= nfs_mount(client
->context
, uri
->server
, uri
->path
);
349 error_setg(errp
, "Failed to mount nfs share: %s",
350 nfs_get_error(client
->context
));
354 if (flags
& O_CREAT
) {
355 ret
= nfs_creat(client
->context
, file
, 0600, &client
->fh
);
357 error_setg(errp
, "Failed to create file: %s",
358 nfs_get_error(client
->context
));
362 ret
= nfs_open(client
->context
, file
, flags
, &client
->fh
);
364 error_setg(errp
, "Failed to open file : %s",
365 nfs_get_error(client
->context
));
370 ret
= nfs_fstat(client
->context
, client
->fh
, &st
);
372 error_setg(errp
, "Failed to fstat file: %s",
373 nfs_get_error(client
->context
));
377 ret
= DIV_ROUND_UP(st
.st_size
, BDRV_SECTOR_SIZE
);
378 client
->st_blocks
= st
.st_blocks
;
379 client
->has_zero_init
= S_ISREG(st
.st_mode
);
382 nfs_client_close(client
);
385 query_params_free(qp
);
392 static int nfs_file_open(BlockDriverState
*bs
, QDict
*options
, int flags
,
394 NFSClient
*client
= bs
->opaque
;
397 Error
*local_err
= NULL
;
399 client
->aio_context
= bdrv_get_aio_context(bs
);
401 opts
= qemu_opts_create(&runtime_opts
, NULL
, 0, &error_abort
);
402 qemu_opts_absorb_qdict(opts
, options
, &local_err
);
404 error_propagate(errp
, local_err
);
408 ret
= nfs_client_open(client
, qemu_opt_get(opts
, "filename"),
409 (flags
& BDRV_O_RDWR
) ? O_RDWR
: O_RDONLY
,
414 bs
->total_sectors
= ret
;
421 static QemuOptsList nfs_create_opts
= {
422 .name
= "nfs-create-opts",
423 .head
= QTAILQ_HEAD_INITIALIZER(nfs_create_opts
.head
),
426 .name
= BLOCK_OPT_SIZE
,
427 .type
= QEMU_OPT_SIZE
,
428 .help
= "Virtual disk size"
430 { /* end of list */ }
434 static int nfs_file_create(const char *url
, QemuOpts
*opts
, Error
**errp
)
437 int64_t total_size
= 0;
438 NFSClient
*client
= g_new0(NFSClient
, 1);
440 client
->aio_context
= qemu_get_aio_context();
442 /* Read out options */
443 total_size
= ROUND_UP(qemu_opt_get_size_del(opts
, BLOCK_OPT_SIZE
, 0),
446 ret
= nfs_client_open(client
, url
, O_CREAT
, errp
);
450 ret
= nfs_ftruncate(client
->context
, client
->fh
, total_size
);
451 nfs_client_close(client
);
457 static int nfs_has_zero_init(BlockDriverState
*bs
)
459 NFSClient
*client
= bs
->opaque
;
460 return client
->has_zero_init
;
463 static int64_t nfs_get_allocated_file_size(BlockDriverState
*bs
)
465 NFSClient
*client
= bs
->opaque
;
469 if (bdrv_is_read_only(bs
) &&
470 !(bs
->open_flags
& BDRV_O_NOCACHE
)) {
471 return client
->st_blocks
* 512;
475 if (nfs_fstat_async(client
->context
, client
->fh
, nfs_co_generic_cb
,
480 while (!task
.complete
) {
481 nfs_set_events(client
);
482 aio_poll(client
->aio_context
, true);
485 return (task
.ret
< 0 ? task
.ret
: st
.st_blocks
* 512);
488 static int nfs_file_truncate(BlockDriverState
*bs
, int64_t offset
)
490 NFSClient
*client
= bs
->opaque
;
491 return nfs_ftruncate(client
->context
, client
->fh
, offset
);
494 /* Note that this will not re-establish a connection with the NFS server
495 * - it is effectively a NOP. */
496 static int nfs_reopen_prepare(BDRVReopenState
*state
,
497 BlockReopenQueue
*queue
, Error
**errp
)
499 NFSClient
*client
= state
->bs
->opaque
;
503 if (state
->flags
& BDRV_O_RDWR
&& bdrv_is_read_only(state
->bs
)) {
504 error_setg(errp
, "Cannot open a read-only mount as read-write");
508 /* Update cache for read-only reopens */
509 if (!(state
->flags
& BDRV_O_RDWR
)) {
510 ret
= nfs_fstat(client
->context
, client
->fh
, &st
);
512 error_setg(errp
, "Failed to fstat file: %s",
513 nfs_get_error(client
->context
));
516 client
->st_blocks
= st
.st_blocks
;
522 static BlockDriver bdrv_nfs
= {
523 .format_name
= "nfs",
524 .protocol_name
= "nfs",
526 .instance_size
= sizeof(NFSClient
),
527 .bdrv_needs_filename
= true,
528 .create_opts
= &nfs_create_opts
,
530 .bdrv_has_zero_init
= nfs_has_zero_init
,
531 .bdrv_get_allocated_file_size
= nfs_get_allocated_file_size
,
532 .bdrv_truncate
= nfs_file_truncate
,
534 .bdrv_file_open
= nfs_file_open
,
535 .bdrv_close
= nfs_file_close
,
536 .bdrv_create
= nfs_file_create
,
537 .bdrv_reopen_prepare
= nfs_reopen_prepare
,
539 .bdrv_co_readv
= nfs_co_readv
,
540 .bdrv_co_writev
= nfs_co_writev
,
541 .bdrv_co_flush_to_disk
= nfs_co_flush
,
543 .bdrv_detach_aio_context
= nfs_detach_aio_context
,
544 .bdrv_attach_aio_context
= nfs_attach_aio_context
,
547 static void nfs_block_init(void)
549 bdrv_register(&bdrv_nfs
);
552 block_init(nfs_block_init
);