]> TLD Linux GIT Repositories - packages/libvirt.git/blob - libvirt-qemu-acl.patch
- BR docutils
[packages/libvirt.git] / libvirt-qemu-acl.patch
1 diff -ur libvirt-10.2.0.orig/src/qemu/qemu_command.c libvirt-10.2.0/src/qemu/qemu_command.c
2 --- libvirt-10.2.0.orig/src/qemu/qemu_command.c 2024-04-03 17:49:34.976744165 +0200
3 +++ libvirt-10.2.0/src/qemu/qemu_command.c      2024-04-03 17:49:53.468991419 +0200
4 @@ -8201,6 +8201,10 @@
5              virCommandAddEnvPair(cmd, "SASL_CONF_PATH", cfg->vncSASLdir);
6  
7          /* TODO: Support ACLs later */
8 +
9 +        if (cfg->vncACL)
10 +           virBufferAddLit(&opt, ",acl");
11 +
12      }
13  
14      if (graphics->data.vnc.powerControl != VIR_TRISTATE_BOOL_ABSENT) {
15 diff -ur libvirt-10.2.0.orig/src/qemu/qemu_conf.c libvirt-10.2.0/src/qemu/qemu_conf.c
16 --- libvirt-10.2.0.orig/src/qemu/qemu_conf.c    2024-04-03 17:49:34.976744165 +0200
17 +++ libvirt-10.2.0/src/qemu/qemu_conf.c 2024-04-03 17:49:53.472991473 +0200
18 @@ -441,6 +441,8 @@
19          return -1;
20      if (virConfGetValueBool(conf, "vnc_allow_host_audio", &cfg->vncAllowHostAudio) < 0)
21          return -1;
22 +    if (virConfGetValueBool(conf, "vnc_acl", &cfg->vncACL) < 0)
23 +        return -1;
24  
25      if (cfg->vncPassword &&
26          strlen(cfg->vncPassword) > 8) {
27 diff -ur libvirt-10.2.0.orig/src/qemu/qemu_conf.h libvirt-10.2.0/src/qemu/qemu_conf.h
28 --- libvirt-10.2.0.orig/src/qemu/qemu_conf.h    2024-04-03 17:49:34.980744218 +0200
29 +++ libvirt-10.2.0/src/qemu/qemu_conf.h 2024-04-03 17:49:53.472991473 +0200
30 @@ -120,6 +120,7 @@
31      bool vncTLSx509verify;
32      bool vncTLSx509verifyPresent;
33      bool vncSASL;
34 +    bool vncACL;
35      char *vncTLSx509certdir;
36      char *vncTLSx509secretUUID;
37      char *vncListen;
38 diff -ur libvirt-10.2.0.orig/src/qemu/qemu.conf.in libvirt-10.2.0/src/qemu/qemu.conf.in
39 --- libvirt-10.2.0.orig/src/qemu/qemu.conf.in   2024-04-03 17:49:34.976744165 +0200
40 +++ libvirt-10.2.0/src/qemu/qemu.conf.in        2024-04-03 17:49:53.472991473 +0200
41 @@ -147,6 +147,15 @@
42  #vnc_sasl = 1
43  
44  
45 +# Enable the VNC access control lists. When switched on this will
46 +# initially block all vnc users from accessing the vnc server. To
47 +# add and remove ids from the ACLs you will need to send the appropriate
48 +# commands to the qemu monitor as required by your particular version of
49 +# QEMU. See the QEMU documentation for more details.
50 +#
51 +# vnc_acl = 1
52 +
53 +
54  # The default SASL configuration file is located in /etc/sasl/
55  # When running libvirtd unprivileged, it may be desirable to
56  # override the configs in this location. Set this parameter to