Anthony Liguori | 48a32be | 2011-09-02 12:34:48 -0500 | [diff] [blame] | 1 | /* |
| 2 | * QEMU Management Protocol |
| 3 | * |
| 4 | * Copyright IBM, Corp. 2011 |
| 5 | * |
| 6 | * Authors: |
| 7 | * Anthony Liguori <aliguori@us.ibm.com> |
| 8 | * |
| 9 | * This work is licensed under the terms of the GNU GPL, version 2. See |
| 10 | * the COPYING file in the top-level directory. |
| 11 | * |
| 12 | */ |
| 13 | |
| 14 | #include "qemu-common.h" |
| 15 | #include "sysemu.h" |
| 16 | #include "qmp-commands.h" |
Luiz Capitulino | 292a260 | 2011-09-12 15:10:53 -0300 | [diff] [blame] | 17 | #include "kvm.h" |
| 18 | #include "arch_init.h" |
Anthony Liguori | 48a32be | 2011-09-02 12:34:48 -0500 | [diff] [blame] | 19 | |
| 20 | NameInfo *qmp_query_name(Error **errp) |
| 21 | { |
| 22 | NameInfo *info = g_malloc0(sizeof(*info)); |
| 23 | |
| 24 | if (qemu_name) { |
| 25 | info->has_name = true; |
| 26 | info->name = g_strdup(qemu_name); |
| 27 | } |
| 28 | |
| 29 | return info; |
| 30 | } |
Luiz Capitulino | b9c15f1 | 2011-08-26 17:38:13 -0300 | [diff] [blame] | 31 | |
| 32 | VersionInfo *qmp_query_version(Error **err) |
| 33 | { |
| 34 | VersionInfo *info = g_malloc0(sizeof(*info)); |
| 35 | const char *version = QEMU_VERSION; |
| 36 | char *tmp; |
| 37 | |
| 38 | info->qemu.major = strtol(version, &tmp, 10); |
| 39 | tmp++; |
| 40 | info->qemu.minor = strtol(tmp, &tmp, 10); |
| 41 | tmp++; |
| 42 | info->qemu.micro = strtol(tmp, &tmp, 10); |
| 43 | info->package = g_strdup(QEMU_PKGVERSION); |
| 44 | |
| 45 | return info; |
| 46 | } |
Luiz Capitulino | 292a260 | 2011-09-12 15:10:53 -0300 | [diff] [blame] | 47 | |
| 48 | KvmInfo *qmp_query_kvm(Error **errp) |
| 49 | { |
| 50 | KvmInfo *info = g_malloc0(sizeof(*info)); |
| 51 | |
| 52 | info->enabled = kvm_enabled(); |
| 53 | info->present = kvm_available(); |
| 54 | |
| 55 | return info; |
| 56 | } |
| 57 | |
Luiz Capitulino | efab767 | 2011-09-13 17:16:25 -0300 | [diff] [blame^] | 58 | UuidInfo *qmp_query_uuid(Error **errp) |
| 59 | { |
| 60 | UuidInfo *info = g_malloc0(sizeof(*info)); |
| 61 | char uuid[64]; |
| 62 | |
| 63 | snprintf(uuid, sizeof(uuid), UUID_FMT, qemu_uuid[0], qemu_uuid[1], |
| 64 | qemu_uuid[2], qemu_uuid[3], qemu_uuid[4], qemu_uuid[5], |
| 65 | qemu_uuid[6], qemu_uuid[7], qemu_uuid[8], qemu_uuid[9], |
| 66 | qemu_uuid[10], qemu_uuid[11], qemu_uuid[12], qemu_uuid[13], |
| 67 | qemu_uuid[14], qemu_uuid[15]); |
| 68 | |
| 69 | info->UUID = g_strdup(uuid); |
| 70 | return info; |
| 71 | } |
| 72 | |