ACPI: Add definitions for the SPCR table
[qemu/ar7.git] / block / nfs.c
blobca9e24efe5487e56c5b8c0d58b2196191a7afb28
1 /*
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
22 * THE SOFTWARE.
25 #include "config-host.h"
27 #include <poll.h>
28 #include "qemu-common.h"
29 #include "qemu/config-file.h"
30 #include "qemu/error-report.h"
31 #include "block/block_int.h"
32 #include "trace.h"
33 #include "qemu/iov.h"
34 #include "qemu/uri.h"
35 #include "sysemu/sysemu.h"
36 #include <nfsc/libnfs.h>
38 typedef struct NFSClient {
39 struct nfs_context *context;
40 struct nfsfh *fh;
41 int events;
42 bool has_zero_init;
43 AioContext *aio_context;
44 } NFSClient;
46 typedef struct NFSRPC {
47 int ret;
48 int complete;
49 QEMUIOVector *iov;
50 struct stat *st;
51 Coroutine *co;
52 QEMUBH *bh;
53 NFSClient *client;
54 } NFSRPC;
56 static void nfs_process_read(void *arg);
57 static void nfs_process_write(void *arg);
59 static void nfs_set_events(NFSClient *client)
61 int ev = nfs_which_events(client->context);
62 if (ev != client->events) {
63 aio_set_fd_handler(client->aio_context,
64 nfs_get_fd(client->context),
65 (ev & POLLIN) ? nfs_process_read : NULL,
66 (ev & POLLOUT) ? nfs_process_write : NULL,
67 client);
70 client->events = ev;
73 static void nfs_process_read(void *arg)
75 NFSClient *client = arg;
76 nfs_service(client->context, POLLIN);
77 nfs_set_events(client);
80 static void nfs_process_write(void *arg)
82 NFSClient *client = arg;
83 nfs_service(client->context, POLLOUT);
84 nfs_set_events(client);
87 static void nfs_co_init_task(NFSClient *client, NFSRPC *task)
89 *task = (NFSRPC) {
90 .co = qemu_coroutine_self(),
91 .client = client,
95 static void nfs_co_generic_bh_cb(void *opaque)
97 NFSRPC *task = opaque;
98 task->complete = 1;
99 qemu_bh_delete(task->bh);
100 qemu_coroutine_enter(task->co, NULL);
103 static void
104 nfs_co_generic_cb(int ret, struct nfs_context *nfs, void *data,
105 void *private_data)
107 NFSRPC *task = private_data;
108 task->ret = ret;
109 if (task->ret > 0 && task->iov) {
110 if (task->ret <= task->iov->size) {
111 qemu_iovec_from_buf(task->iov, 0, data, task->ret);
112 } else {
113 task->ret = -EIO;
116 if (task->ret == 0 && task->st) {
117 memcpy(task->st, data, sizeof(struct stat));
119 if (task->ret < 0) {
120 error_report("NFS Error: %s", nfs_get_error(nfs));
122 if (task->co) {
123 task->bh = aio_bh_new(task->client->aio_context,
124 nfs_co_generic_bh_cb, task);
125 qemu_bh_schedule(task->bh);
126 } else {
127 task->complete = 1;
131 static int coroutine_fn nfs_co_readv(BlockDriverState *bs,
132 int64_t sector_num, int nb_sectors,
133 QEMUIOVector *iov)
135 NFSClient *client = bs->opaque;
136 NFSRPC task;
138 nfs_co_init_task(client, &task);
139 task.iov = iov;
141 if (nfs_pread_async(client->context, client->fh,
142 sector_num * BDRV_SECTOR_SIZE,
143 nb_sectors * BDRV_SECTOR_SIZE,
144 nfs_co_generic_cb, &task) != 0) {
145 return -ENOMEM;
148 while (!task.complete) {
149 nfs_set_events(client);
150 qemu_coroutine_yield();
153 if (task.ret < 0) {
154 return task.ret;
157 /* zero pad short reads */
158 if (task.ret < iov->size) {
159 qemu_iovec_memset(iov, task.ret, 0, iov->size - task.ret);
162 return 0;
165 static int coroutine_fn nfs_co_writev(BlockDriverState *bs,
166 int64_t sector_num, int nb_sectors,
167 QEMUIOVector *iov)
169 NFSClient *client = bs->opaque;
170 NFSRPC task;
171 char *buf = NULL;
173 nfs_co_init_task(client, &task);
175 buf = g_try_malloc(nb_sectors * BDRV_SECTOR_SIZE);
176 if (nb_sectors && buf == NULL) {
177 return -ENOMEM;
180 qemu_iovec_to_buf(iov, 0, buf, nb_sectors * BDRV_SECTOR_SIZE);
182 if (nfs_pwrite_async(client->context, client->fh,
183 sector_num * BDRV_SECTOR_SIZE,
184 nb_sectors * BDRV_SECTOR_SIZE,
185 buf, nfs_co_generic_cb, &task) != 0) {
186 g_free(buf);
187 return -ENOMEM;
190 while (!task.complete) {
191 nfs_set_events(client);
192 qemu_coroutine_yield();
195 g_free(buf);
197 if (task.ret != nb_sectors * BDRV_SECTOR_SIZE) {
198 return task.ret < 0 ? task.ret : -EIO;
201 return 0;
204 static int coroutine_fn nfs_co_flush(BlockDriverState *bs)
206 NFSClient *client = bs->opaque;
207 NFSRPC task;
209 nfs_co_init_task(client, &task);
211 if (nfs_fsync_async(client->context, client->fh, nfs_co_generic_cb,
212 &task) != 0) {
213 return -ENOMEM;
216 while (!task.complete) {
217 nfs_set_events(client);
218 qemu_coroutine_yield();
221 return task.ret;
224 /* TODO Convert to fine grained options */
225 static QemuOptsList runtime_opts = {
226 .name = "nfs",
227 .head = QTAILQ_HEAD_INITIALIZER(runtime_opts.head),
228 .desc = {
230 .name = "filename",
231 .type = QEMU_OPT_STRING,
232 .help = "URL to the NFS file",
234 { /* end of list */ }
238 static void nfs_detach_aio_context(BlockDriverState *bs)
240 NFSClient *client = bs->opaque;
242 aio_set_fd_handler(client->aio_context,
243 nfs_get_fd(client->context),
244 NULL, NULL, NULL);
245 client->events = 0;
248 static void nfs_attach_aio_context(BlockDriverState *bs,
249 AioContext *new_context)
251 NFSClient *client = bs->opaque;
253 client->aio_context = new_context;
254 nfs_set_events(client);
257 static void nfs_client_close(NFSClient *client)
259 if (client->context) {
260 if (client->fh) {
261 nfs_close(client->context, client->fh);
263 aio_set_fd_handler(client->aio_context,
264 nfs_get_fd(client->context),
265 NULL, NULL, NULL);
266 nfs_destroy_context(client->context);
268 memset(client, 0, sizeof(NFSClient));
271 static void nfs_file_close(BlockDriverState *bs)
273 NFSClient *client = bs->opaque;
274 nfs_client_close(client);
277 static int64_t nfs_client_open(NFSClient *client, const char *filename,
278 int flags, Error **errp)
280 int ret = -EINVAL, i;
281 struct stat st;
282 URI *uri;
283 QueryParams *qp = NULL;
284 char *file = NULL, *strp = NULL;
286 uri = uri_parse(filename);
287 if (!uri) {
288 error_setg(errp, "Invalid URL specified");
289 goto fail;
291 if (!uri->server) {
292 error_setg(errp, "Invalid URL specified");
293 goto fail;
295 strp = strrchr(uri->path, '/');
296 if (strp == NULL) {
297 error_setg(errp, "Invalid URL specified");
298 goto fail;
300 file = g_strdup(strp);
301 *strp = 0;
303 client->context = nfs_init_context();
304 if (client->context == NULL) {
305 error_setg(errp, "Failed to init NFS context");
306 goto fail;
309 qp = query_params_parse(uri->query);
310 for (i = 0; i < qp->n; i++) {
311 unsigned long long val;
312 if (!qp->p[i].value) {
313 error_setg(errp, "Value for NFS parameter expected: %s",
314 qp->p[i].name);
315 goto fail;
317 if (parse_uint_full(qp->p[i].value, &val, 0)) {
318 error_setg(errp, "Illegal value for NFS parameter: %s",
319 qp->p[i].name);
320 goto fail;
322 if (!strcmp(qp->p[i].name, "uid")) {
323 nfs_set_uid(client->context, val);
324 } else if (!strcmp(qp->p[i].name, "gid")) {
325 nfs_set_gid(client->context, val);
326 } else if (!strcmp(qp->p[i].name, "tcp-syncnt")) {
327 nfs_set_tcp_syncnt(client->context, val);
328 #ifdef LIBNFS_FEATURE_READAHEAD
329 } else if (!strcmp(qp->p[i].name, "readahead")) {
330 nfs_set_readahead(client->context, val);
331 #endif
332 } else {
333 error_setg(errp, "Unknown NFS parameter name: %s",
334 qp->p[i].name);
335 goto fail;
339 ret = nfs_mount(client->context, uri->server, uri->path);
340 if (ret < 0) {
341 error_setg(errp, "Failed to mount nfs share: %s",
342 nfs_get_error(client->context));
343 goto fail;
346 if (flags & O_CREAT) {
347 ret = nfs_creat(client->context, file, 0600, &client->fh);
348 if (ret < 0) {
349 error_setg(errp, "Failed to create file: %s",
350 nfs_get_error(client->context));
351 goto fail;
353 } else {
354 ret = nfs_open(client->context, file, flags, &client->fh);
355 if (ret < 0) {
356 error_setg(errp, "Failed to open file : %s",
357 nfs_get_error(client->context));
358 goto fail;
362 ret = nfs_fstat(client->context, client->fh, &st);
363 if (ret < 0) {
364 error_setg(errp, "Failed to fstat file: %s",
365 nfs_get_error(client->context));
366 goto fail;
369 ret = DIV_ROUND_UP(st.st_size, BDRV_SECTOR_SIZE);
370 client->has_zero_init = S_ISREG(st.st_mode);
371 goto out;
372 fail:
373 nfs_client_close(client);
374 out:
375 if (qp) {
376 query_params_free(qp);
378 uri_free(uri);
379 g_free(file);
380 return ret;
383 static int nfs_file_open(BlockDriverState *bs, QDict *options, int flags,
384 Error **errp) {
385 NFSClient *client = bs->opaque;
386 int64_t ret;
387 QemuOpts *opts;
388 Error *local_err = NULL;
390 client->aio_context = bdrv_get_aio_context(bs);
392 opts = qemu_opts_create(&runtime_opts, NULL, 0, &error_abort);
393 qemu_opts_absorb_qdict(opts, options, &local_err);
394 if (local_err) {
395 error_propagate(errp, local_err);
396 ret = -EINVAL;
397 goto out;
399 ret = nfs_client_open(client, qemu_opt_get(opts, "filename"),
400 (flags & BDRV_O_RDWR) ? O_RDWR : O_RDONLY,
401 errp);
402 if (ret < 0) {
403 goto out;
405 bs->total_sectors = ret;
406 ret = 0;
407 out:
408 qemu_opts_del(opts);
409 return ret;
412 static QemuOptsList nfs_create_opts = {
413 .name = "nfs-create-opts",
414 .head = QTAILQ_HEAD_INITIALIZER(nfs_create_opts.head),
415 .desc = {
417 .name = BLOCK_OPT_SIZE,
418 .type = QEMU_OPT_SIZE,
419 .help = "Virtual disk size"
421 { /* end of list */ }
425 static int nfs_file_create(const char *url, QemuOpts *opts, Error **errp)
427 int ret = 0;
428 int64_t total_size = 0;
429 NFSClient *client = g_new0(NFSClient, 1);
431 client->aio_context = qemu_get_aio_context();
433 /* Read out options */
434 total_size = ROUND_UP(qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0),
435 BDRV_SECTOR_SIZE);
437 ret = nfs_client_open(client, url, O_CREAT, errp);
438 if (ret < 0) {
439 goto out;
441 ret = nfs_ftruncate(client->context, client->fh, total_size);
442 nfs_client_close(client);
443 out:
444 g_free(client);
445 return ret;
448 static int nfs_has_zero_init(BlockDriverState *bs)
450 NFSClient *client = bs->opaque;
451 return client->has_zero_init;
454 static int64_t nfs_get_allocated_file_size(BlockDriverState *bs)
456 NFSClient *client = bs->opaque;
457 NFSRPC task = {0};
458 struct stat st;
460 task.st = &st;
461 if (nfs_fstat_async(client->context, client->fh, nfs_co_generic_cb,
462 &task) != 0) {
463 return -ENOMEM;
466 while (!task.complete) {
467 nfs_set_events(client);
468 aio_poll(client->aio_context, true);
471 return (task.ret < 0 ? task.ret : st.st_blocks * st.st_blksize);
474 static int nfs_file_truncate(BlockDriverState *bs, int64_t offset)
476 NFSClient *client = bs->opaque;
477 return nfs_ftruncate(client->context, client->fh, offset);
480 static BlockDriver bdrv_nfs = {
481 .format_name = "nfs",
482 .protocol_name = "nfs",
484 .instance_size = sizeof(NFSClient),
485 .bdrv_needs_filename = true,
486 .create_opts = &nfs_create_opts,
488 .bdrv_has_zero_init = nfs_has_zero_init,
489 .bdrv_get_allocated_file_size = nfs_get_allocated_file_size,
490 .bdrv_truncate = nfs_file_truncate,
492 .bdrv_file_open = nfs_file_open,
493 .bdrv_close = nfs_file_close,
494 .bdrv_create = nfs_file_create,
496 .bdrv_co_readv = nfs_co_readv,
497 .bdrv_co_writev = nfs_co_writev,
498 .bdrv_co_flush_to_disk = nfs_co_flush,
500 .bdrv_detach_aio_context = nfs_detach_aio_context,
501 .bdrv_attach_aio_context = nfs_attach_aio_context,
504 static void nfs_block_init(void)
506 bdrv_register(&bdrv_nfs);
509 block_init(nfs_block_init);