]> xenbits.xensource.com Git - libvirt.git/commitdiff
virt-aa-helper: allow spaces in vm names
authorChristian Ehrhardt <christian.ehrhardt@canonical.com>
Wed, 20 Sep 2017 14:59:08 +0000 (16:59 +0200)
committerMichal Privoznik <mprivozn@redhat.com>
Fri, 6 Oct 2017 09:14:49 +0000 (11:14 +0200)
libvirt allows spaces in vm names, there were issues in the past but it
seems not removed so the assumption has to be that spaces are continuing
to be allowed.

Therefore virt-aa-helper should not reject spaces in vm names anymore if
it is going to be refused causing issues then the parser or xml schema
should do so.
Apparmor rules are in quotes, so a space in a path based on the name works.

Signed-off-by: Christian Ehrhardt <christian.ehrhardt@canonical.com>
Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
src/security/virt-aa-helper.c

index d1518eab39e27e28836e93bbf0ffc43f06121497..5f4519dc9994c6de11ae8091903876070fd6b911 100644 (file)
@@ -449,7 +449,7 @@ valid_name(const char *name)
 {
     /* just try to filter out any dangerous characters in the name that can be
      * used to subvert the profile */
-    const char *bad = " /[]*";
+    const char *bad = "/[]*";
 
     if (strlen(name) == 0)
         return -1;