2009-02-11 16:21:54 +01:00
|
|
|
/*
|
|
|
|
* QEMU device hotplug helpers
|
|
|
|
*
|
|
|
|
* Copyright (c) 2004 Fabrice Bellard
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2016-01-29 18:50:05 +01:00
|
|
|
#include "qemu/osdep.h"
|
2013-02-04 17:20:47 +01:00
|
|
|
#include "hw/hw.h"
|
|
|
|
#include "hw/boards.h"
|
2014-10-07 13:59:09 +02:00
|
|
|
#include "sysemu/block-backend.h"
|
2012-12-17 18:20:04 +01:00
|
|
|
#include "sysemu/blockdev.h"
|
2012-12-17 18:20:00 +01:00
|
|
|
#include "qemu/config-file.h"
|
2012-12-17 18:20:04 +01:00
|
|
|
#include "sysemu/sysemu.h"
|
2012-12-17 18:19:49 +01:00
|
|
|
#include "monitor/monitor.h"
|
2016-02-23 17:33:24 +01:00
|
|
|
#include "block/block_int.h"
|
2009-02-11 16:21:54 +01:00
|
|
|
|
2015-02-26 17:21:13 +01:00
|
|
|
static DriveInfo *add_init_drive(const char *optstr)
|
2009-02-11 16:21:54 +01:00
|
|
|
{
|
2009-07-22 16:42:57 +02:00
|
|
|
DriveInfo *dinfo;
|
2009-07-22 16:43:04 +02:00
|
|
|
QemuOpts *opts;
|
2014-03-05 18:30:47 +01:00
|
|
|
MachineClass *mc;
|
2009-02-11 16:21:54 +01:00
|
|
|
|
2011-01-28 11:21:41 +01:00
|
|
|
opts = drive_def(optstr);
|
2009-07-22 16:43:04 +02:00
|
|
|
if (!opts)
|
2009-07-22 16:42:57 +02:00
|
|
|
return NULL;
|
2009-02-11 16:21:54 +01:00
|
|
|
|
2014-03-05 18:30:47 +01:00
|
|
|
mc = MACHINE_GET_CLASS(current_machine);
|
2014-06-06 14:50:58 +02:00
|
|
|
dinfo = drive_new(opts, mc->block_default_type);
|
2009-07-22 16:42:57 +02:00
|
|
|
if (!dinfo) {
|
2009-07-22 16:43:04 +02:00
|
|
|
qemu_opts_del(opts);
|
2009-07-22 16:42:57 +02:00
|
|
|
return NULL;
|
2009-02-11 16:21:54 +01:00
|
|
|
}
|
|
|
|
|
2009-07-22 16:42:57 +02:00
|
|
|
return dinfo;
|
2009-02-11 16:21:54 +01:00
|
|
|
}
|
2010-08-23 23:43:10 +02:00
|
|
|
|
hmp: Name HMP command handler functions hmp_COMMAND()
Some are called do_COMMAND() (old ones, usually), some hmp_COMMAND(),
and sometimes COMMAND pointlessly differs in spelling.
Normalize to hmp_COMMAND(), where COMMAND is exactly the command name
with '-' replaced by '_'.
Exceptions:
* do_device_add() and client_migrate_info() *not* renamed to
hmp_device_add(), hmp_client_migrate_info(), because they're also
QMP handlers. They still need to be converted to QAPI.
* do_memory_dump(), do_physical_memory_dump(), do_ioport_read(),
do_ioport_write() renamed do hmp_* instead of hmp_x(), hmp_xp(),
hmp_i(), hmp_o(), because those names are too cryptic for my taste.
* do_info_help() renamed to hmp_info_help() instead of hmp_info(),
because it only covers help.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
2015-02-06 13:55:43 +01:00
|
|
|
void hmp_drive_add(Monitor *mon, const QDict *qdict)
|
2010-08-23 23:43:10 +02:00
|
|
|
{
|
|
|
|
DriveInfo *dinfo = NULL;
|
|
|
|
const char *opts = qdict_get_str(qdict, "opts");
|
2016-02-23 17:33:24 +01:00
|
|
|
bool node = qdict_get_try_bool(qdict, "node", false);
|
|
|
|
|
|
|
|
if (node) {
|
|
|
|
hmp_drive_add_node(mon, opts);
|
|
|
|
return;
|
|
|
|
}
|
2010-08-23 23:43:10 +02:00
|
|
|
|
|
|
|
dinfo = add_init_drive(opts);
|
|
|
|
if (!dinfo) {
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
if (dinfo->devaddr) {
|
|
|
|
monitor_printf(mon, "Parameter addr not supported\n");
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
2012-11-22 15:16:36 +01:00
|
|
|
switch (dinfo->type) {
|
2010-08-23 23:43:10 +02:00
|
|
|
case IF_NONE:
|
|
|
|
monitor_printf(mon, "OK\n");
|
|
|
|
break;
|
|
|
|
default:
|
2015-02-26 17:21:13 +01:00
|
|
|
monitor_printf(mon, "Can't hot-add drive to type %d\n", dinfo->type);
|
|
|
|
goto err;
|
2010-08-23 23:43:10 +02:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
|
|
|
|
err:
|
|
|
|
if (dinfo) {
|
2016-03-16 19:54:38 +01:00
|
|
|
BlockBackend *blk = blk_by_legacy_dinfo(dinfo);
|
|
|
|
monitor_remove_blk(blk);
|
|
|
|
blk_unref(blk);
|
2010-08-23 23:43:10 +02:00
|
|
|
}
|
|
|
|
}
|