]> git.proxmox.com Git - mirror_qemu.git/blame - block/nfs.c
migration: use migration_is_active to represent active state
[mirror_qemu.git] / block / nfs.c
CommitLineData
6542aa9c
PL
1/*
2 * QEMU Block driver for native access to files on NFS shares
3 *
f1a7ff77 4 * Copyright (c) 2014-2017 Peter Lieven <pl@kamp.de>
6542aa9c
PL
5 *
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:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
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
22 * THE SOFTWARE.
23 */
24
80c71a24 25#include "qemu/osdep.h"
6542aa9c
PL
26
27#include <poll.h>
6542aa9c
PL
28#include "qemu/config-file.h"
29#include "qemu/error-report.h"
d165b8cb 30#include "qapi/error.h"
6542aa9c 31#include "block/block_int.h"
609f45ea 32#include "block/qdict.h"
6542aa9c
PL
33#include "trace.h"
34#include "qemu/iov.h"
db725815 35#include "qemu/main-loop.h"
0b8fa32f 36#include "qemu/module.h"
922a01a0 37#include "qemu/option.h"
6542aa9c 38#include "qemu/uri.h"
0d94b746 39#include "qemu/cutils.h"
9af23989 40#include "qapi/qapi-visit-block-core.h"
94d6a7a7 41#include "qapi/qmp/qdict.h"
94d6a7a7 42#include "qapi/qmp/qstring.h"
94d6a7a7
AA
43#include "qapi/qobject-input-visitor.h"
44#include "qapi/qobject-output-visitor.h"
6542aa9c
PL
45#include <nfsc/libnfs.h>
46
94d6a7a7 47
29c838cd 48#define QEMU_NFS_MAX_READAHEAD_SIZE 1048576
d99b26c4 49#define QEMU_NFS_MAX_PAGECACHE_SIZE (8388608 / NFS_BLKSIZE)
7725b8bf 50#define QEMU_NFS_MAX_DEBUG_LEVEL 2
29c838cd 51
6542aa9c
PL
52typedef struct NFSClient {
53 struct nfs_context *context;
54 struct nfsfh *fh;
55 int events;
56 bool has_zero_init;
471799d1 57 AioContext *aio_context;
37d1e4d9 58 QemuMutex mutex;
18a8056e 59 blkcnt_t st_blocks;
38f8d5e0 60 bool cache_used;
94d6a7a7
AA
61 NFSServer *server;
62 char *path;
63 int64_t uid, gid, tcp_syncnt, readahead, pagecache, debug;
6542aa9c
PL
64} NFSClient;
65
66typedef struct NFSRPC {
d746427a 67 BlockDriverState *bs;
6542aa9c
PL
68 int ret;
69 int complete;
70 QEMUIOVector *iov;
71 struct stat *st;
72 Coroutine *co;
471799d1 73 NFSClient *client;
6542aa9c
PL
74} NFSRPC;
75
94d6a7a7
AA
76static int nfs_parse_uri(const char *filename, QDict *options, Error **errp)
77{
78 URI *uri = NULL;
79 QueryParams *qp = NULL;
80 int ret = -EINVAL, i;
81
82 uri = uri_parse(filename);
83 if (!uri) {
84 error_setg(errp, "Invalid URI specified");
85 goto out;
86 }
f69165a8 87 if (g_strcmp0(uri->scheme, "nfs") != 0) {
94d6a7a7
AA
88 error_setg(errp, "URI scheme must be 'nfs'");
89 goto out;
90 }
91
92 if (!uri->server) {
93 error_setg(errp, "missing hostname in URI");
94 goto out;
95 }
96
97 if (!uri->path) {
98 error_setg(errp, "missing file path in URI");
99 goto out;
100 }
101
102 qp = query_params_parse(uri->query);
103 if (!qp) {
104 error_setg(errp, "could not parse query parameters");
105 goto out;
106 }
107
46f5ac20
EB
108 qdict_put_str(options, "server.host", uri->server);
109 qdict_put_str(options, "server.type", "inet");
110 qdict_put_str(options, "path", uri->path);
94d6a7a7
AA
111
112 for (i = 0; i < qp->n; i++) {
8d20abe8 113 unsigned long long val;
94d6a7a7
AA
114 if (!qp->p[i].value) {
115 error_setg(errp, "Value for NFS parameter expected: %s",
116 qp->p[i].name);
117 goto out;
118 }
8d20abe8 119 if (parse_uint_full(qp->p[i].value, &val, 0)) {
94d6a7a7
AA
120 error_setg(errp, "Illegal value for NFS parameter: %s",
121 qp->p[i].name);
122 goto out;
123 }
124 if (!strcmp(qp->p[i].name, "uid")) {
46f5ac20 125 qdict_put_str(options, "user", qp->p[i].value);
94d6a7a7 126 } else if (!strcmp(qp->p[i].name, "gid")) {
46f5ac20 127 qdict_put_str(options, "group", qp->p[i].value);
94d6a7a7 128 } else if (!strcmp(qp->p[i].name, "tcp-syncnt")) {
46f5ac20 129 qdict_put_str(options, "tcp-syn-count", qp->p[i].value);
94d6a7a7 130 } else if (!strcmp(qp->p[i].name, "readahead")) {
46f5ac20 131 qdict_put_str(options, "readahead-size", qp->p[i].value);
94d6a7a7 132 } else if (!strcmp(qp->p[i].name, "pagecache")) {
46f5ac20 133 qdict_put_str(options, "page-cache-size", qp->p[i].value);
94d6a7a7 134 } else if (!strcmp(qp->p[i].name, "debug")) {
46f5ac20 135 qdict_put_str(options, "debug", qp->p[i].value);
94d6a7a7
AA
136 } else {
137 error_setg(errp, "Unknown NFS parameter name: %s",
138 qp->p[i].name);
139 goto out;
140 }
141 }
142 ret = 0;
143out:
144 if (qp) {
145 query_params_free(qp);
146 }
147 if (uri) {
148 uri_free(uri);
149 }
150 return ret;
151}
152
153static bool nfs_has_filename_options_conflict(QDict *options, Error **errp)
154{
155 const QDictEntry *qe;
156
157 for (qe = qdict_first(options); qe; qe = qdict_next(options, qe)) {
158 if (!strcmp(qe->key, "host") ||
159 !strcmp(qe->key, "path") ||
160 !strcmp(qe->key, "user") ||
161 !strcmp(qe->key, "group") ||
162 !strcmp(qe->key, "tcp-syn-count") ||
163 !strcmp(qe->key, "readahead-size") ||
164 !strcmp(qe->key, "page-cache-size") ||
7103d916 165 !strcmp(qe->key, "debug") ||
94d6a7a7
AA
166 strstart(qe->key, "server.", NULL))
167 {
168 error_setg(errp, "Option %s cannot be used with a filename",
169 qe->key);
170 return true;
171 }
172 }
173
174 return false;
175}
176
177static void nfs_parse_filename(const char *filename, QDict *options,
178 Error **errp)
179{
180 if (nfs_has_filename_options_conflict(options, errp)) {
181 return;
182 }
183
184 nfs_parse_uri(filename, options, errp);
185}
186
6542aa9c
PL
187static void nfs_process_read(void *arg);
188static void nfs_process_write(void *arg);
189
37d1e4d9 190/* Called with QemuMutex held. */
6542aa9c
PL
191static void nfs_set_events(NFSClient *client)
192{
193 int ev = nfs_which_events(client->context);
194 if (ev != client->events) {
dca21ef2
FZ
195 aio_set_fd_handler(client->aio_context, nfs_get_fd(client->context),
196 false,
471799d1 197 (ev & POLLIN) ? nfs_process_read : NULL,
f6a51c84
SH
198 (ev & POLLOUT) ? nfs_process_write : NULL,
199 NULL, client);
6542aa9c
PL
200
201 }
202 client->events = ev;
203}
204
205static void nfs_process_read(void *arg)
206{
207 NFSClient *client = arg;
9d456654 208
37d1e4d9 209 qemu_mutex_lock(&client->mutex);
6542aa9c
PL
210 nfs_service(client->context, POLLIN);
211 nfs_set_events(client);
37d1e4d9 212 qemu_mutex_unlock(&client->mutex);
6542aa9c
PL
213}
214
215static void nfs_process_write(void *arg)
216{
217 NFSClient *client = arg;
9d456654 218
37d1e4d9 219 qemu_mutex_lock(&client->mutex);
6542aa9c
PL
220 nfs_service(client->context, POLLOUT);
221 nfs_set_events(client);
37d1e4d9 222 qemu_mutex_unlock(&client->mutex);
6542aa9c
PL
223}
224
d746427a 225static void nfs_co_init_task(BlockDriverState *bs, NFSRPC *task)
6542aa9c
PL
226{
227 *task = (NFSRPC) {
471799d1 228 .co = qemu_coroutine_self(),
d746427a
PB
229 .bs = bs,
230 .client = bs->opaque,
6542aa9c
PL
231 };
232}
233
234static void nfs_co_generic_bh_cb(void *opaque)
235{
236 NFSRPC *task = opaque;
1919631e 237
a2c0fe2f 238 task->complete = 1;
1919631e 239 aio_co_wake(task->co);
6542aa9c
PL
240}
241
37d1e4d9 242/* Called (via nfs_service) with QemuMutex held. */
6542aa9c
PL
243static void
244nfs_co_generic_cb(int ret, struct nfs_context *nfs, void *data,
245 void *private_data)
246{
247 NFSRPC *task = private_data;
6542aa9c 248 task->ret = ret;
d746427a 249 assert(!task->st);
6542aa9c
PL
250 if (task->ret > 0 && task->iov) {
251 if (task->ret <= task->iov->size) {
252 qemu_iovec_from_buf(task->iov, 0, data, task->ret);
253 } else {
254 task->ret = -EIO;
255 }
256 }
20fccb18
PL
257 if (task->ret < 0) {
258 error_report("NFS Error: %s", nfs_get_error(nfs));
259 }
d746427a
PB
260 aio_bh_schedule_oneshot(task->client->aio_context,
261 nfs_co_generic_bh_cb, task);
6542aa9c
PL
262}
263
69785a22
PL
264static int coroutine_fn nfs_co_preadv(BlockDriverState *bs, uint64_t offset,
265 uint64_t bytes, QEMUIOVector *iov,
266 int flags)
6542aa9c
PL
267{
268 NFSClient *client = bs->opaque;
269 NFSRPC task;
270
d746427a 271 nfs_co_init_task(bs, &task);
6542aa9c
PL
272 task.iov = iov;
273
37d1e4d9 274 qemu_mutex_lock(&client->mutex);
6542aa9c 275 if (nfs_pread_async(client->context, client->fh,
69785a22 276 offset, bytes, nfs_co_generic_cb, &task) != 0) {
37d1e4d9 277 qemu_mutex_unlock(&client->mutex);
6542aa9c
PL
278 return -ENOMEM;
279 }
280
aa92d6c4 281 nfs_set_events(client);
37d1e4d9 282 qemu_mutex_unlock(&client->mutex);
6542aa9c 283 while (!task.complete) {
6542aa9c
PL
284 qemu_coroutine_yield();
285 }
286
287 if (task.ret < 0) {
288 return task.ret;
289 }
290
291 /* zero pad short reads */
292 if (task.ret < iov->size) {
293 qemu_iovec_memset(iov, task.ret, 0, iov->size - task.ret);
294 }
295
296 return 0;
297}
298
69785a22
PL
299static int coroutine_fn nfs_co_pwritev(BlockDriverState *bs, uint64_t offset,
300 uint64_t bytes, QEMUIOVector *iov,
301 int flags)
6542aa9c
PL
302{
303 NFSClient *client = bs->opaque;
304 NFSRPC task;
305 char *buf = NULL;
ef503a84 306 bool my_buffer = false;
6542aa9c 307
d746427a 308 nfs_co_init_task(bs, &task);
6542aa9c 309
ef503a84
PL
310 if (iov->niov != 1) {
311 buf = g_try_malloc(bytes);
312 if (bytes && buf == NULL) {
313 return -ENOMEM;
314 }
315 qemu_iovec_to_buf(iov, 0, buf, bytes);
316 my_buffer = true;
317 } else {
318 buf = iov->iov[0].iov_base;
2347dd7b
KW
319 }
320
37d1e4d9 321 qemu_mutex_lock(&client->mutex);
6542aa9c 322 if (nfs_pwrite_async(client->context, client->fh,
69785a22
PL
323 offset, bytes, buf,
324 nfs_co_generic_cb, &task) != 0) {
37d1e4d9 325 qemu_mutex_unlock(&client->mutex);
ef503a84
PL
326 if (my_buffer) {
327 g_free(buf);
328 }
6542aa9c
PL
329 return -ENOMEM;
330 }
331
aa92d6c4 332 nfs_set_events(client);
37d1e4d9 333 qemu_mutex_unlock(&client->mutex);
6542aa9c 334 while (!task.complete) {
6542aa9c
PL
335 qemu_coroutine_yield();
336 }
337
ef503a84
PL
338 if (my_buffer) {
339 g_free(buf);
340 }
6542aa9c 341
69785a22 342 if (task.ret != bytes) {
6542aa9c
PL
343 return task.ret < 0 ? task.ret : -EIO;
344 }
345
346 return 0;
347}
348
349static int coroutine_fn nfs_co_flush(BlockDriverState *bs)
350{
351 NFSClient *client = bs->opaque;
352 NFSRPC task;
353
d746427a 354 nfs_co_init_task(bs, &task);
6542aa9c 355
37d1e4d9 356 qemu_mutex_lock(&client->mutex);
6542aa9c
PL
357 if (nfs_fsync_async(client->context, client->fh, nfs_co_generic_cb,
358 &task) != 0) {
37d1e4d9 359 qemu_mutex_unlock(&client->mutex);
6542aa9c
PL
360 return -ENOMEM;
361 }
362
aa92d6c4 363 nfs_set_events(client);
37d1e4d9 364 qemu_mutex_unlock(&client->mutex);
6542aa9c 365 while (!task.complete) {
6542aa9c
PL
366 qemu_coroutine_yield();
367 }
368
369 return task.ret;
370}
371
471799d1
SH
372static void nfs_detach_aio_context(BlockDriverState *bs)
373{
374 NFSClient *client = bs->opaque;
375
dca21ef2 376 aio_set_fd_handler(client->aio_context, nfs_get_fd(client->context),
f6a51c84 377 false, NULL, NULL, NULL, NULL);
471799d1
SH
378 client->events = 0;
379}
380
381static void nfs_attach_aio_context(BlockDriverState *bs,
382 AioContext *new_context)
383{
384 NFSClient *client = bs->opaque;
385
386 client->aio_context = new_context;
387 nfs_set_events(client);
388}
389
6542aa9c
PL
390static void nfs_client_close(NFSClient *client)
391{
392 if (client->context) {
601dc655
PL
393 qemu_mutex_lock(&client->mutex);
394 aio_set_fd_handler(client->aio_context, nfs_get_fd(client->context),
395 false, NULL, NULL, NULL, NULL);
396 qemu_mutex_unlock(&client->mutex);
6542aa9c
PL
397 if (client->fh) {
398 nfs_close(client->context, client->fh);
113fe792 399 client->fh = NULL;
6542aa9c 400 }
d2c6becb
PL
401#ifdef LIBNFS_FEATURE_UMOUNT
402 nfs_umount(client->context);
403#endif
6542aa9c 404 nfs_destroy_context(client->context);
113fe792 405 client->context = NULL;
6542aa9c 406 }
113fe792
JC
407 g_free(client->path);
408 qemu_mutex_destroy(&client->mutex);
409 qapi_free_NFSServer(client->server);
410 client->server = NULL;
6542aa9c
PL
411}
412
413static void nfs_file_close(BlockDriverState *bs)
414{
415 NFSClient *client = bs->opaque;
416 nfs_client_close(client);
417}
418
c22a0345 419static int64_t nfs_client_open(NFSClient *client, BlockdevOptionsNfs *opts,
cb8d4bf6 420 int flags, int open_flags, Error **errp)
6542aa9c 421{
f1a7ff77 422 int64_t ret = -EINVAL;
6542aa9c 423 struct stat st;
6542aa9c
PL
424 char *file = NULL, *strp = NULL;
425
113fe792 426 qemu_mutex_init(&client->mutex);
94d6a7a7 427
c22a0345 428 client->path = g_strdup(opts->path);
94d6a7a7
AA
429
430 strp = strrchr(client->path, '/');
6542aa9c
PL
431 if (strp == NULL) {
432 error_setg(errp, "Invalid URL specified");
433 goto fail;
434 }
435 file = g_strdup(strp);
436 *strp = 0;
437
c22a0345
KW
438 /* Steal the NFSServer object from opts; set the original pointer to NULL
439 * to avoid use after free and double free. */
440 client->server = opts->server;
441 opts->server = NULL;
94d6a7a7 442
6542aa9c
PL
443 client->context = nfs_init_context();
444 if (client->context == NULL) {
445 error_setg(errp, "Failed to init NFS context");
446 goto fail;
447 }
448
c22a0345
KW
449 if (opts->has_user) {
450 client->uid = opts->user;
94d6a7a7
AA
451 nfs_set_uid(client->context, client->uid);
452 }
453
c22a0345
KW
454 if (opts->has_group) {
455 client->gid = opts->group;
94d6a7a7
AA
456 nfs_set_gid(client->context, client->gid);
457 }
458
c22a0345
KW
459 if (opts->has_tcp_syn_count) {
460 client->tcp_syncnt = opts->tcp_syn_count;
94d6a7a7
AA
461 nfs_set_tcp_syncnt(client->context, client->tcp_syncnt);
462 }
463
464#ifdef LIBNFS_FEATURE_READAHEAD
c22a0345 465 if (opts->has_readahead_size) {
94d6a7a7
AA
466 if (open_flags & BDRV_O_NOCACHE) {
467 error_setg(errp, "Cannot enable NFS readahead "
468 "if cache.direct = on");
6542aa9c
PL
469 goto fail;
470 }
c22a0345 471 client->readahead = opts->readahead_size;
94d6a7a7 472 if (client->readahead > QEMU_NFS_MAX_READAHEAD_SIZE) {
3dc6f869
AF
473 warn_report("Truncating NFS readahead size to %d",
474 QEMU_NFS_MAX_READAHEAD_SIZE);
94d6a7a7 475 client->readahead = QEMU_NFS_MAX_READAHEAD_SIZE;
7c24384b 476 }
94d6a7a7 477 nfs_set_readahead(client->context, client->readahead);
d99b26c4 478#ifdef LIBNFS_FEATURE_PAGECACHE
94d6a7a7 479 nfs_set_pagecache_ttl(client->context, 0);
d99b26c4 480#endif
94d6a7a7
AA
481 client->cache_used = true;
482 }
d99b26c4 483#endif
94d6a7a7 484
d99b26c4 485#ifdef LIBNFS_FEATURE_PAGECACHE
c22a0345 486 if (opts->has_page_cache_size) {
94d6a7a7
AA
487 if (open_flags & BDRV_O_NOCACHE) {
488 error_setg(errp, "Cannot enable NFS pagecache "
489 "if cache.direct = on");
490 goto fail;
491 }
c22a0345 492 client->pagecache = opts->page_cache_size;
94d6a7a7 493 if (client->pagecache > QEMU_NFS_MAX_PAGECACHE_SIZE) {
3dc6f869
AF
494 warn_report("Truncating NFS pagecache size to %d pages",
495 QEMU_NFS_MAX_PAGECACHE_SIZE);
94d6a7a7
AA
496 client->pagecache = QEMU_NFS_MAX_PAGECACHE_SIZE;
497 }
498 nfs_set_pagecache(client->context, client->pagecache);
499 nfs_set_pagecache_ttl(client->context, 0);
500 client->cache_used = true;
501 }
7725b8bf 502#endif
94d6a7a7 503
7725b8bf 504#ifdef LIBNFS_FEATURE_DEBUG
c22a0345
KW
505 if (opts->has_debug) {
506 client->debug = opts->debug;
94d6a7a7
AA
507 /* limit the maximum debug level to avoid potential flooding
508 * of our log files. */
509 if (client->debug > QEMU_NFS_MAX_DEBUG_LEVEL) {
3dc6f869
AF
510 warn_report("Limiting NFS debug level to %d",
511 QEMU_NFS_MAX_DEBUG_LEVEL);
94d6a7a7 512 client->debug = QEMU_NFS_MAX_DEBUG_LEVEL;
6542aa9c 513 }
94d6a7a7 514 nfs_set_debug(client->context, client->debug);
6542aa9c 515 }
94d6a7a7 516#endif
6542aa9c 517
94d6a7a7 518 ret = nfs_mount(client->context, client->server->host, client->path);
6542aa9c
PL
519 if (ret < 0) {
520 error_setg(errp, "Failed to mount nfs share: %s",
521 nfs_get_error(client->context));
522 goto fail;
523 }
524
525 if (flags & O_CREAT) {
526 ret = nfs_creat(client->context, file, 0600, &client->fh);
527 if (ret < 0) {
528 error_setg(errp, "Failed to create file: %s",
529 nfs_get_error(client->context));
530 goto fail;
531 }
532 } else {
533 ret = nfs_open(client->context, file, flags, &client->fh);
534 if (ret < 0) {
535 error_setg(errp, "Failed to open file : %s",
536 nfs_get_error(client->context));
537 goto fail;
538 }
539 }
540
541 ret = nfs_fstat(client->context, client->fh, &st);
542 if (ret < 0) {
543 error_setg(errp, "Failed to fstat file: %s",
544 nfs_get_error(client->context));
545 goto fail;
546 }
547
548 ret = DIV_ROUND_UP(st.st_size, BDRV_SECTOR_SIZE);
18a8056e 549 client->st_blocks = st.st_blocks;
6542aa9c 550 client->has_zero_init = S_ISREG(st.st_mode);
94d6a7a7 551 *strp = '/';
6542aa9c 552 goto out;
94d6a7a7 553
6542aa9c
PL
554fail:
555 nfs_client_close(client);
556out:
6542aa9c
PL
557 g_free(file);
558 return ret;
559}
560
a1a42af4
KW
561static BlockdevOptionsNfs *nfs_options_qdict_to_qapi(QDict *options,
562 Error **errp)
c22a0345
KW
563{
564 BlockdevOptionsNfs *opts = NULL;
c22a0345 565 Visitor *v;
c82be42c 566 const QDictEntry *e;
c22a0345 567 Error *local_err = NULL;
c22a0345 568
af91062e
MA
569 v = qobject_input_visitor_new_flat_confused(options, errp);
570 if (!v) {
a1a42af4 571 return NULL;
c22a0345
KW
572 }
573
c22a0345
KW
574 visit_type_BlockdevOptionsNfs(v, NULL, &opts, &local_err);
575 visit_free(v);
576
577 if (local_err) {
54b7af43 578 error_propagate(errp, local_err);
a1a42af4
KW
579 return NULL;
580 }
581
c82be42c
KW
582 /* Remove the processed options from the QDict (the visitor processes
583 * _all_ options in the QDict) */
584 while ((e = qdict_first(options))) {
585 qdict_del(options, e->key);
586 }
587
a1a42af4
KW
588 return opts;
589}
590
591static int64_t nfs_client_open_qdict(NFSClient *client, QDict *options,
592 int flags, int open_flags, Error **errp)
593{
594 BlockdevOptionsNfs *opts;
595 int ret;
596
597 opts = nfs_options_qdict_to_qapi(options, errp);
598 if (opts == NULL) {
c22a0345
KW
599 ret = -EINVAL;
600 goto fail;
601 }
602
603 ret = nfs_client_open(client, opts, flags, open_flags, errp);
604fail:
c22a0345
KW
605 qapi_free_BlockdevOptionsNfs(opts);
606 return ret;
607}
608
6542aa9c
PL
609static int nfs_file_open(BlockDriverState *bs, QDict *options, int flags,
610 Error **errp) {
611 NFSClient *client = bs->opaque;
612 int64_t ret;
6542aa9c 613
471799d1
SH
614 client->aio_context = bdrv_get_aio_context(bs);
615
c22a0345
KW
616 ret = nfs_client_open_qdict(client, options,
617 (flags & BDRV_O_RDWR) ? O_RDWR : O_RDONLY,
618 bs->open_flags, errp);
6542aa9c 619 if (ret < 0) {
94d6a7a7 620 return ret;
6542aa9c 621 }
113fe792 622
6542aa9c 623 bs->total_sectors = ret;
810f4f86 624 ret = 0;
810f4f86 625 return ret;
6542aa9c
PL
626}
627
fd752801
HR
628static QemuOptsList nfs_create_opts = {
629 .name = "nfs-create-opts",
630 .head = QTAILQ_HEAD_INITIALIZER(nfs_create_opts.head),
631 .desc = {
632 {
633 .name = BLOCK_OPT_SIZE,
634 .type = QEMU_OPT_SIZE,
635 .help = "Virtual disk size"
636 },
637 { /* end of list */ }
638 }
639};
640
a1a42af4 641static int nfs_file_co_create(BlockdevCreateOptions *options, Error **errp)
6542aa9c 642{
a1a42af4 643 BlockdevCreateOptionsNfs *opts = &options->u.nfs;
5839e53b 644 NFSClient *client = g_new0(NFSClient, 1);
a1a42af4
KW
645 int ret;
646
647 assert(options->driver == BLOCKDEV_DRIVER_NFS);
6542aa9c 648
471799d1
SH
649 client->aio_context = qemu_get_aio_context();
650
a1a42af4
KW
651 ret = nfs_client_open(client, opts->location, O_CREAT, 0, errp);
652 if (ret < 0) {
653 goto out;
654 }
655 ret = nfs_ftruncate(client->context, client->fh, opts->size);
656 nfs_client_close(client);
657
658out:
659 g_free(client);
660 return ret;
661}
662
663static int coroutine_fn nfs_file_co_create_opts(const char *url, QemuOpts *opts,
664 Error **errp)
665{
666 BlockdevCreateOptions *create_options;
667 BlockdevCreateOptionsNfs *nfs_opts;
668 QDict *options;
669 int ret;
670
671 create_options = g_new0(BlockdevCreateOptions, 1);
672 create_options->driver = BLOCKDEV_DRIVER_NFS;
673 nfs_opts = &create_options->u.nfs;
674
6542aa9c 675 /* Read out options */
a1a42af4
KW
676 nfs_opts->size = ROUND_UP(qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0),
677 BDRV_SECTOR_SIZE);
6542aa9c 678
94d6a7a7
AA
679 options = qdict_new();
680 ret = nfs_parse_uri(url, options, errp);
681 if (ret < 0) {
682 goto out;
683 }
684
a1a42af4
KW
685 nfs_opts->location = nfs_options_qdict_to_qapi(options, errp);
686 if (nfs_opts->location == NULL) {
687 ret = -EINVAL;
688 goto out;
689 }
690
691 ret = nfs_file_co_create(create_options, errp);
6542aa9c
PL
692 if (ret < 0) {
693 goto out;
694 }
a1a42af4
KW
695
696 ret = 0;
6542aa9c 697out:
cb3e7f08 698 qobject_unref(options);
a1a42af4 699 qapi_free_BlockdevCreateOptions(create_options);
6542aa9c
PL
700 return ret;
701}
702
703static int nfs_has_zero_init(BlockDriverState *bs)
704{
705 NFSClient *client = bs->opaque;
706 return client->has_zero_init;
707}
708
37d1e4d9 709/* Called (via nfs_service) with QemuMutex held. */
d746427a
PB
710static void
711nfs_get_allocated_file_size_cb(int ret, struct nfs_context *nfs, void *data,
712 void *private_data)
713{
714 NFSRPC *task = private_data;
715 task->ret = ret;
716 if (task->ret == 0) {
717 memcpy(task->st, data, sizeof(struct stat));
718 }
719 if (task->ret < 0) {
720 error_report("NFS Error: %s", nfs_get_error(nfs));
721 }
e2a6ae7f
PB
722
723 /* Set task->complete before reading bs->wakeup. */
724 atomic_mb_set(&task->complete, 1);
c9d1a561 725 bdrv_wakeup(task->bs);
d746427a
PB
726}
727
6542aa9c
PL
728static int64_t nfs_get_allocated_file_size(BlockDriverState *bs)
729{
730 NFSClient *client = bs->opaque;
731 NFSRPC task = {0};
732 struct stat st;
733
18a8056e
PL
734 if (bdrv_is_read_only(bs) &&
735 !(bs->open_flags & BDRV_O_NOCACHE)) {
736 return client->st_blocks * 512;
737 }
738
d746427a 739 task.bs = bs;
6542aa9c 740 task.st = &st;
d746427a 741 if (nfs_fstat_async(client->context, client->fh, nfs_get_allocated_file_size_cb,
6542aa9c
PL
742 &task) != 0) {
743 return -ENOMEM;
744 }
745
aa92d6c4 746 nfs_set_events(client);
d746427a 747 BDRV_POLL_WHILE(bs, !task.complete);
6542aa9c 748
055c6f91 749 return (task.ret < 0 ? task.ret : st.st_blocks * 512);
6542aa9c
PL
750}
751
061ca8a3
KW
752static int coroutine_fn
753nfs_file_co_truncate(BlockDriverState *bs, int64_t offset,
754 PreallocMode prealloc, Error **errp)
6542aa9c
PL
755{
756 NFSClient *client = bs->opaque;
f59adb32
HR
757 int ret;
758
8243ccb7
HR
759 if (prealloc != PREALLOC_MODE_OFF) {
760 error_setg(errp, "Unsupported preallocation mode '%s'",
977c736f 761 PreallocMode_str(prealloc));
8243ccb7
HR
762 return -ENOTSUP;
763 }
764
f59adb32
HR
765 ret = nfs_ftruncate(client->context, client->fh, offset);
766 if (ret < 0) {
767 error_setg_errno(errp, -ret, "Failed to truncate file");
768 return ret;
769 }
770
771 return 0;
6542aa9c
PL
772}
773
18a8056e
PL
774/* Note that this will not re-establish a connection with the NFS server
775 * - it is effectively a NOP. */
776static int nfs_reopen_prepare(BDRVReopenState *state,
777 BlockReopenQueue *queue, Error **errp)
778{
779 NFSClient *client = state->bs->opaque;
780 struct stat st;
781 int ret = 0;
782
783 if (state->flags & BDRV_O_RDWR && bdrv_is_read_only(state->bs)) {
784 error_setg(errp, "Cannot open a read-only mount as read-write");
785 return -EACCES;
786 }
787
38f8d5e0 788 if ((state->flags & BDRV_O_NOCACHE) && client->cache_used) {
d99b26c4
PL
789 error_setg(errp, "Cannot disable cache if libnfs readahead or"
790 " pagecache is enabled");
38f8d5e0
PL
791 return -EINVAL;
792 }
793
18a8056e
PL
794 /* Update cache for read-only reopens */
795 if (!(state->flags & BDRV_O_RDWR)) {
796 ret = nfs_fstat(client->context, client->fh, &st);
797 if (ret < 0) {
798 error_setg(errp, "Failed to fstat file: %s",
799 nfs_get_error(client->context));
800 return ret;
801 }
802 client->st_blocks = st.st_blocks;
803 }
804
805 return 0;
806}
807
998b3a1e 808static void nfs_refresh_filename(BlockDriverState *bs)
94d6a7a7
AA
809{
810 NFSClient *client = bs->opaque;
94d6a7a7
AA
811
812 if (client->uid && !client->gid) {
813 snprintf(bs->exact_filename, sizeof(bs->exact_filename),
814 "nfs://%s%s?uid=%" PRId64, client->server->host, client->path,
815 client->uid);
816 } else if (!client->uid && client->gid) {
817 snprintf(bs->exact_filename, sizeof(bs->exact_filename),
818 "nfs://%s%s?gid=%" PRId64, client->server->host, client->path,
819 client->gid);
820 } else if (client->uid && client->gid) {
821 snprintf(bs->exact_filename, sizeof(bs->exact_filename),
822 "nfs://%s%s?uid=%" PRId64 "&gid=%" PRId64,
823 client->server->host, client->path, client->uid, client->gid);
824 } else {
825 snprintf(bs->exact_filename, sizeof(bs->exact_filename),
826 "nfs://%s%s", client->server->host, client->path);
827 }
94d6a7a7
AA
828}
829
0dcbc54a
HR
830static char *nfs_dirname(BlockDriverState *bs, Error **errp)
831{
832 NFSClient *client = bs->opaque;
833
834 if (client->uid || client->gid) {
835 bdrv_refresh_filename(bs);
836 error_setg(errp, "Cannot generate a base directory for NFS node '%s'",
837 bs->filename);
838 return NULL;
839 }
840
841 return g_strdup_printf("nfs://%s%s/", client->server->host, client->path);
842}
843
d99b26c4 844#ifdef LIBNFS_FEATURE_PAGECACHE
2b148f39
PB
845static void coroutine_fn nfs_co_invalidate_cache(BlockDriverState *bs,
846 Error **errp)
d99b26c4
PL
847{
848 NFSClient *client = bs->opaque;
849 nfs_pagecache_invalidate(client->context, client->fh);
850}
851#endif
852
2654267c
HR
853static const char *nfs_strong_runtime_opts[] = {
854 "path",
855 "user",
856 "group",
857 "server.",
858
859 NULL
860};
861
6542aa9c 862static BlockDriver bdrv_nfs = {
471799d1
SH
863 .format_name = "nfs",
864 .protocol_name = "nfs",
865
866 .instance_size = sizeof(NFSClient),
94d6a7a7 867 .bdrv_parse_filename = nfs_parse_filename,
fd752801
HR
868 .create_opts = &nfs_create_opts,
869
471799d1 870 .bdrv_has_zero_init = nfs_has_zero_init,
1dcaf527 871 .bdrv_has_zero_init_truncate = nfs_has_zero_init,
471799d1 872 .bdrv_get_allocated_file_size = nfs_get_allocated_file_size,
061ca8a3 873 .bdrv_co_truncate = nfs_file_co_truncate,
471799d1
SH
874
875 .bdrv_file_open = nfs_file_open,
876 .bdrv_close = nfs_file_close,
a1a42af4 877 .bdrv_co_create = nfs_file_co_create,
efc75e2a 878 .bdrv_co_create_opts = nfs_file_co_create_opts,
18a8056e 879 .bdrv_reopen_prepare = nfs_reopen_prepare,
471799d1 880
69785a22
PL
881 .bdrv_co_preadv = nfs_co_preadv,
882 .bdrv_co_pwritev = nfs_co_pwritev,
471799d1
SH
883 .bdrv_co_flush_to_disk = nfs_co_flush,
884
885 .bdrv_detach_aio_context = nfs_detach_aio_context,
886 .bdrv_attach_aio_context = nfs_attach_aio_context,
94d6a7a7 887 .bdrv_refresh_filename = nfs_refresh_filename,
0dcbc54a 888 .bdrv_dirname = nfs_dirname,
d99b26c4 889
2654267c
HR
890 .strong_runtime_opts = nfs_strong_runtime_opts,
891
d99b26c4 892#ifdef LIBNFS_FEATURE_PAGECACHE
2b148f39 893 .bdrv_co_invalidate_cache = nfs_co_invalidate_cache,
d99b26c4 894#endif
6542aa9c
PL
895};
896
897static void nfs_block_init(void)
898{
899 bdrv_register(&bdrv_nfs);
900}
901
902block_init(nfs_block_init);