From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 From: Dietmar Maurer Date: Mon, 6 Apr 2020 12:16:55 +0200 Subject: [PATCH] PVE: Allow version code in machine type E.g. pc-i440fx-4.0+pve3 would print 'pve3' as version code while selecting pc-i440fx-4.0 as machine type. Version is made available as 'pve-version' in query-machines (same as, and only if 'is-current'). Signed-off-by: Stefan Reiter --- hw/core/machine-qmp-cmds.c | 6 ++++++ include/hw/boards.h | 2 ++ qapi/machine.json | 4 +++- softmmu/vl.c | 15 ++++++++++++++- 4 files changed, 25 insertions(+), 2 deletions(-) diff --git a/hw/core/machine-qmp-cmds.c b/hw/core/machine-qmp-cmds.c index 3fcb82ce2f..7868241bd5 100644 --- a/hw/core/machine-qmp-cmds.c +++ b/hw/core/machine-qmp-cmds.c @@ -238,6 +238,12 @@ MachineInfoList *qmp_query_machines(Error **errp) if (strcmp(mc->name, MACHINE_GET_CLASS(current_machine)->name) == 0) { info->has_is_current = true; info->is_current = true; + + // PVE version string only exists for current machine + if (mc->pve_version) { + info->has_pve_version = true; + info->pve_version = g_strdup(mc->pve_version); + } } if (mc->default_cpu_type) { diff --git a/include/hw/boards.h b/include/hw/boards.h index a49e3a6b44..8e0a8c5571 100644 --- a/include/hw/boards.h +++ b/include/hw/boards.h @@ -165,6 +165,8 @@ struct MachineClass { const char *desc; const char *deprecation_reason; + const char *pve_version; + void (*init)(MachineState *state); void (*reset)(MachineState *state); void (*wakeup)(MachineState *state); diff --git a/qapi/machine.json b/qapi/machine.json index dfc1a49d3c..32fc674042 100644 --- a/qapi/machine.json +++ b/qapi/machine.json @@ -337,6 +337,8 @@ # # @default-ram-id: the default ID of initial RAM memory backend (since 5.2) # +# @pve-version: custom PVE version suffix specified as 'machine+pveN' +# # Since: 1.2.0 ## { 'struct': 'MachineInfo', @@ -344,7 +346,7 @@ '*is-default': 'bool', '*is-current': 'bool', 'cpu-max': 'int', 'hotpluggable-cpus': 'bool', 'numa-mem-supported': 'bool', 'deprecated': 'bool', '*default-cpu-type': 'str', - '*default-ram-id': 'str' } } + '*default-ram-id': 'str', '*pve-version': 'str' } } ## # @query-machines: diff --git a/softmmu/vl.c b/softmmu/vl.c index da204d24f0..5b5512128e 100644 --- a/softmmu/vl.c +++ b/softmmu/vl.c @@ -2325,6 +2325,8 @@ static MachineClass *machine_parse(const char *name, GSList *machines) { MachineClass *mc; GSList *el; + size_t pvever_index = 0; + gchar *name_clean; if (is_help_option(name)) { printf("Supported machines are:\n"); @@ -2341,12 +2343,23 @@ static MachineClass *machine_parse(const char *name, GSList *machines) exit(0); } - mc = find_machine(name, machines); + // PVE version is specified with '+' as seperator, e.g. pc-i440fx+pvever + pvever_index = strcspn(name, "+"); + + name_clean = g_strndup(name, pvever_index); + mc = find_machine(name_clean, machines); + g_free(name_clean); + if (!mc) { error_report("unsupported machine type"); error_printf("Use -machine help to list supported machines\n"); exit(1); } + + if (pvever_index < strlen(name)) { + mc->pve_version = &name[pvever_index+1]; + } + return mc; }