2012-08-22 22:43:07 +08:00
|
|
|
/*
|
|
|
|
* Serving QEMU block devices via NBD
|
|
|
|
*
|
|
|
|
* Copyright (c) 2012 Red Hat, Inc.
|
|
|
|
*
|
|
|
|
* Author: Paolo Bonzini <pbonzini@redhat.com>
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or
|
|
|
|
* later. See the COPYING file in the top-level directory.
|
|
|
|
*/
|
|
|
|
|
2016-01-30 01:50:05 +08:00
|
|
|
#include "qemu/osdep.h"
|
2012-12-18 01:20:04 +08:00
|
|
|
#include "sysemu/blockdev.h"
|
2014-11-18 19:21:17 +08:00
|
|
|
#include "sysemu/block-backend.h"
|
2013-02-06 00:06:20 +08:00
|
|
|
#include "hw/block/block.h"
|
2012-12-18 01:19:43 +08:00
|
|
|
#include "qapi/qmp/qerror.h"
|
2012-12-18 01:20:04 +08:00
|
|
|
#include "sysemu/sysemu.h"
|
2012-08-22 22:43:07 +08:00
|
|
|
#include "qmp-commands.h"
|
|
|
|
#include "trace.h"
|
2012-12-18 01:19:44 +08:00
|
|
|
#include "block/nbd.h"
|
2016-02-11 02:41:03 +08:00
|
|
|
#include "io/channel-socket.h"
|
2012-08-22 22:43:07 +08:00
|
|
|
|
2016-02-11 02:41:03 +08:00
|
|
|
static QIOChannelSocket *server_ioc;
|
|
|
|
static int server_watch = -1;
|
2012-08-22 22:43:07 +08:00
|
|
|
|
2016-02-11 02:41:03 +08:00
|
|
|
static gboolean nbd_accept(QIOChannel *ioc, GIOCondition condition,
|
|
|
|
gpointer opaque)
|
2012-08-22 22:43:07 +08:00
|
|
|
{
|
2016-02-11 02:41:03 +08:00
|
|
|
QIOChannelSocket *cioc;
|
2012-08-22 22:43:07 +08:00
|
|
|
|
2016-02-11 02:41:03 +08:00
|
|
|
cioc = qio_channel_socket_accept(QIO_CHANNEL_SOCKET(ioc),
|
|
|
|
NULL);
|
|
|
|
if (!cioc) {
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2016-02-11 02:41:11 +08:00
|
|
|
nbd_client_new(NULL, cioc, NULL, NULL, nbd_client_put);
|
2016-02-11 02:41:03 +08:00
|
|
|
object_unref(OBJECT(cioc));
|
|
|
|
return TRUE;
|
2012-08-22 22:43:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void qmp_nbd_server_start(SocketAddress *addr, Error **errp)
|
|
|
|
{
|
2016-02-11 02:41:03 +08:00
|
|
|
if (server_ioc) {
|
2012-08-22 22:43:07 +08:00
|
|
|
error_setg(errp, "NBD server already running");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-02-11 02:41:03 +08:00
|
|
|
server_ioc = qio_channel_socket_new();
|
|
|
|
if (qio_channel_socket_listen_sync(server_ioc, addr, errp) < 0) {
|
|
|
|
return;
|
2012-08-22 22:43:07 +08:00
|
|
|
}
|
2016-02-11 02:41:03 +08:00
|
|
|
|
|
|
|
server_watch = qio_channel_add_watch(QIO_CHANNEL(server_ioc),
|
|
|
|
G_IO_IN,
|
|
|
|
nbd_accept,
|
|
|
|
NULL,
|
|
|
|
NULL);
|
2012-08-22 22:43:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void qmp_nbd_server_add(const char *device, bool has_writable, bool writable,
|
|
|
|
Error **errp)
|
|
|
|
{
|
2014-11-18 19:21:17 +08:00
|
|
|
BlockBackend *blk;
|
2012-08-22 22:43:07 +08:00
|
|
|
NBDExport *exp;
|
|
|
|
|
2016-02-11 02:41:03 +08:00
|
|
|
if (!server_ioc) {
|
2012-11-12 21:25:17 +08:00
|
|
|
error_setg(errp, "NBD server not running");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-08-22 22:43:07 +08:00
|
|
|
if (nbd_export_find(device)) {
|
|
|
|
error_setg(errp, "NBD server already exporting device '%s'", device);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-11-18 19:21:17 +08:00
|
|
|
blk = blk_by_name(device);
|
|
|
|
if (!blk) {
|
2015-03-16 15:57:47 +08:00
|
|
|
error_set(errp, ERROR_CLASS_DEVICE_NOT_FOUND,
|
|
|
|
"Device '%s' not found", device);
|
2012-08-22 22:43:07 +08:00
|
|
|
return;
|
|
|
|
}
|
2014-11-18 19:21:17 +08:00
|
|
|
if (!blk_is_inserted(blk)) {
|
2015-03-17 18:54:50 +08:00
|
|
|
error_setg(errp, QERR_DEVICE_HAS_NO_MEDIUM, device);
|
2014-05-18 18:50:04 +08:00
|
|
|
return;
|
|
|
|
}
|
2012-08-22 22:43:07 +08:00
|
|
|
|
2012-11-04 19:43:37 +08:00
|
|
|
if (!has_writable) {
|
2012-11-28 18:46:39 +08:00
|
|
|
writable = false;
|
2012-11-04 19:43:37 +08:00
|
|
|
}
|
2014-11-18 19:21:17 +08:00
|
|
|
if (blk_is_read_only(blk)) {
|
2012-11-04 19:43:37 +08:00
|
|
|
writable = false;
|
|
|
|
}
|
|
|
|
|
2015-02-26 02:08:21 +08:00
|
|
|
exp = nbd_export_new(blk, 0, -1, writable ? 0 : NBD_FLAG_READ_ONLY, NULL,
|
|
|
|
errp);
|
|
|
|
if (!exp) {
|
|
|
|
return;
|
|
|
|
}
|
2012-08-22 22:43:07 +08:00
|
|
|
|
|
|
|
nbd_export_set_name(exp, device);
|
|
|
|
|
2016-01-29 23:36:06 +08:00
|
|
|
/* The list of named exports has a strong reference to this export now and
|
|
|
|
* our only way of accessing it is through nbd_export_find(), so we can drop
|
|
|
|
* the strong reference that is @exp. */
|
|
|
|
nbd_export_put(exp);
|
2012-08-22 22:43:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void qmp_nbd_server_stop(Error **errp)
|
|
|
|
{
|
2016-01-29 23:36:06 +08:00
|
|
|
nbd_export_close_all();
|
2012-08-22 22:43:07 +08:00
|
|
|
|
2016-02-11 02:41:03 +08:00
|
|
|
if (server_watch != -1) {
|
|
|
|
g_source_remove(server_watch);
|
|
|
|
server_watch = -1;
|
|
|
|
}
|
|
|
|
if (server_ioc) {
|
|
|
|
object_unref(OBJECT(server_ioc));
|
|
|
|
server_ioc = NULL;
|
2012-11-12 21:12:54 +08:00
|
|
|
}
|
2012-08-22 22:43:07 +08:00
|
|
|
}
|