]> Git Repo - qemu.git/commitdiff
vl: exit if maxcpus is negative
authorSeeteena Thoufeek <[email protected]>
Mon, 4 Sep 2017 07:43:51 +0000 (13:13 +0530)
committerEduardo Habkost <[email protected]>
Tue, 10 Oct 2017 02:21:52 +0000 (23:21 -0300)
Signed-off-by: Eduardo Habkost <[email protected]>
---Steps to Reproduce---

When passed a negative number to 'maxcpus' parameter, Qemu aborts
with a core dump.

Run the following command with maxcpus argument as negative number

ppc64-softmmu/qemu-system-ppc64 --nographic -vga none -machine
pseries,accel=kvm,kvm-type=HV -m size=200g -device virtio-blk-pci,
drive=rootdisk -drive file=/home/images/pegas-1.0-ppc64le.qcow2,
if=none,cache=none,id=rootdisk,format=qcow2 -monitor telnet
:127.0.0.1:1234,server,nowait -net nic,model=virtio -net
user -redir tcp:2000::22 -device nec-usb-xhci -smp 8,cores=1,
threads=1,maxcpus=-12

(process:12149): GLib-ERROR **: gmem.c:130: failed to allocate
 18446744073709550568 bytes

Trace/breakpoint trap

Reported-by: R.Nageswara Sastry <[email protected]>
Signed-off-by: Seeteena Thoufeek <[email protected]>
Message-Id: <1504511031[email protected]>
Reviewed-by: Philippe Mathieu-Daudé <[email protected]>
include/sysemu/sysemu.h
vl.c

index b21369672a20654adcd299aaba8863408515a3ce..c083869fcfcb044663181871dbdc2cc512cb9ad7 100644 (file)
@@ -113,7 +113,7 @@ extern int win2k_install_hack;
 extern int alt_grab;
 extern int ctrl_grab;
 extern int smp_cpus;
-extern int max_cpus;
+extern unsigned int max_cpus;
 extern int cursor_hide;
 extern int graphic_rotate;
 extern int no_quit;
diff --git a/vl.c b/vl.c
index ebea42e0ea9f5729bb7bc5bbde320a1ad0d84a0f..d7c349233fed4a31a0c30cc308bd1d8ac7aa39c0 100644 (file)
--- a/vl.c
+++ b/vl.c
@@ -161,7 +161,7 @@ Chardev *sclp_hds[MAX_SCLP_CONSOLES];
 int win2k_install_hack = 0;
 int singlestep = 0;
 int smp_cpus = 1;
-int max_cpus = 1;
+unsigned int max_cpus = 1;
 int smp_cores = 1;
 int smp_threads = 1;
 int acpi_enabled = 1;
@@ -4331,8 +4331,8 @@ int main(int argc, char **argv, char **envp)
 
     machine_class->max_cpus = machine_class->max_cpus ?: 1; /* Default to UP */
     if (max_cpus > machine_class->max_cpus) {
-        error_report("Number of SMP CPUs requested (%d) exceeds max CPUs "
-                     "supported by machine '%s' (%d)", max_cpus,
+        error_report("Invalid SMP CPUs %d. The max CPUs "
+                     "supported by machine '%s' is %d", max_cpus,
                      machine_class->name, machine_class->max_cpus);
         exit(1);
     }
This page took 0.029234 seconds and 4 git commands to generate.