]> git.proxmox.com Git - pve-qemu.git/blame - debian/patches/pve/0020-PVE-Add-dummy-id-command-line-parameter.patch
update to QEMU 5.1
[pve-qemu.git] / debian / patches / pve / 0020-PVE-Add-dummy-id-command-line-parameter.patch
CommitLineData
53e83913
WB
1From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
2From: Wolfgang Bumiller <w.bumiller@proxmox.com>
83faa3fe
TL
3Date: Mon, 6 Apr 2020 12:16:48 +0200
4Subject: [PATCH] PVE: Add dummy -id command line parameter
53e83913
WB
5
6This used to be part of the qemu-side PVE authentication for
7VNC. Now this does nothing.
8
9Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
b855dce7 10Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
53e83913
WB
11---
12 qemu-options.hx | 3 +++
83faa3fe 13 softmmu/vl.c | 8 ++++++++
53e83913
WB
14 2 files changed, 11 insertions(+)
15
16diff --git a/qemu-options.hx b/qemu-options.hx
60ae3775 17index d32995cc50..abfde19ce0 100644
53e83913
WB
18--- a/qemu-options.hx
19+++ b/qemu-options.hx
60ae3775 20@@ -914,6 +914,9 @@ DEFHEADING()
83faa3fe
TL
21
22 DEFHEADING(Block device options:)
53e83913
WB
23
24+DEF("id", HAS_ARG, QEMU_OPTION_id,
25+ "-id n set the VMID", QEMU_ARCH_ALL)
26+
27 DEF("fda", HAS_ARG, QEMU_OPTION_fda,
28 "-fda/-fdb file use 'file' as floppy disk 0/1 image\n", QEMU_ARCH_ALL)
29 DEF("fdb", HAS_ARG, QEMU_OPTION_fdb, "", QEMU_ARCH_ALL)
83faa3fe 30diff --git a/softmmu/vl.c b/softmmu/vl.c
60ae3775 31index 670b7e427c..366e30e594 100644
83faa3fe
TL
32--- a/softmmu/vl.c
33+++ b/softmmu/vl.c
60ae3775 34@@ -2832,6 +2832,7 @@ static void create_default_memdev(MachineState *ms, const char *path)
83faa3fe 35 void qemu_init(int argc, char **argv, char **envp)
53e83913
WB
36 {
37 int i;
38+ long vm_id;
39 int snapshot, linux_boot;
40 const char *initrd_filename;
41 const char *kernel_filename, *kernel_cmdline;
60ae3775 42@@ -3530,6 +3531,13 @@ void qemu_init(int argc, char **argv, char **envp)
53e83913
WB
43 exit(1);
44 }
45 break;
46+ case QEMU_OPTION_id:
47+ vm_id = strtol(optarg, (char **)&optarg, 10);
48+ if (*optarg != 0 || vm_id < 100 || vm_id > INT_MAX) {
49+ error_report("invalid -id argument %s", optarg);
50+ exit(1);
51+ }
52+ break;
53 case QEMU_OPTION_vnc:
54 vnc_parse(optarg, &error_fatal);
55 break;