device-hotplug.c 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /*
  2. * QEMU device hotplug helpers
  3. *
  4. * Copyright (c) 2004 Fabrice Bellard
  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. #include "hw.h"
  25. #include "boards.h"
  26. #include "net.h"
  27. #include "blockdev.h"
  28. #include "qemu-config.h"
  29. #include "sysemu.h"
  30. #include "monitor.h"
  31. DriveInfo *add_init_drive(const char *optstr)
  32. {
  33. DriveInfo *dinfo;
  34. QemuOpts *opts;
  35. opts = drive_def(optstr);
  36. if (!opts)
  37. return NULL;
  38. dinfo = drive_init(opts, current_machine->use_scsi);
  39. if (!dinfo) {
  40. qemu_opts_del(opts);
  41. return NULL;
  42. }
  43. return dinfo;
  44. }
  45. #if !defined(TARGET_I386)
  46. int pci_drive_hot_add(Monitor *mon, const QDict *qdict,
  47. DriveInfo *dinfo, int type)
  48. {
  49. /* On non-x86 we don't do PCI hotplug */
  50. monitor_printf(mon, "Can't hot-add drive to type %d\n", type);
  51. return -1;
  52. }
  53. #endif
  54. void drive_hot_add(Monitor *mon, const QDict *qdict)
  55. {
  56. int type;
  57. DriveInfo *dinfo = NULL;
  58. const char *opts = qdict_get_str(qdict, "opts");
  59. dinfo = add_init_drive(opts);
  60. if (!dinfo) {
  61. goto err;
  62. }
  63. if (dinfo->devaddr) {
  64. monitor_printf(mon, "Parameter addr not supported\n");
  65. goto err;
  66. }
  67. type = dinfo->type;
  68. switch (type) {
  69. case IF_NONE:
  70. monitor_printf(mon, "OK\n");
  71. break;
  72. default:
  73. if (pci_drive_hot_add(mon, qdict, dinfo, type)) {
  74. goto err;
  75. }
  76. }
  77. return;
  78. err:
  79. if (dinfo) {
  80. drive_put_ref(dinfo);
  81. }
  82. return;
  83. }