libxl_console_constype is an enum and can therefore be unsigned so
using -1 as a sentinel for unset in main_console fails to work as
expected.
Arrange for all valid enum values to be > 0 and use 0 as the sentinal
instead.
If the user does not request a specific type then always use the
primary console since using "-n" but not "-t" is not meaningful as we
do not know which type to request.
Also make libxl_console_exec reject invalid values of type.
Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
Acked-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Signed-off-by: Ian Jackson <ian.jackson@eu.citrix.com>
char *cons_num_s = libxl_sprintf(&gc, "%d", cons_num);
char *cons_type_s;
- if (type == LIBXL_CONSTYPE_PV)
+ switch (type) {
+ case LIBXL_CONSTYPE_PV:
cons_type_s = "pv";
- else
+ break;
+ case LIBXL_CONSTYPE_SERIAL:
cons_type_s = "serial";
+ break;
+ default:
+ goto out;
+ }
execl(p, p, domid_s, "--num", cons_num_s, "--type", cons_type_s, (void *)NULL);
+
+out:
libxl_free_all(&gc);
return ERROR_FAIL;
}
} libxl_qemu_machine_type;
typedef enum {
- LIBXL_CONSTYPE_SERIAL,
+ LIBXL_CONSTYPE_SERIAL = 1,
LIBXL_CONSTYPE_PV,
} libxl_console_constype;
int main_console(int argc, char **argv)
{
int opt = 0, num = 0;
- libxl_console_constype type = -1;
+ libxl_console_constype type = 0;
while ((opt = getopt(argc, argv, "hn:t:")) != -1) {
switch (opt) {
}
find_domain(argv[optind]);
- if (type <= 0 && num == 0)
+ if (!type)
libxl_primary_console_exec(&ctx, domid);
else
libxl_console_exec(&ctx, domid, num, type);