core: forbid 'lost+found' as VM name

When /var/lib/qubes/appvms is a mount point of ext4 filesystem, there
will be already 'lost+found' directory. Avoid this conflict.

Fixes QubesOS/qubes-issues#1440
This commit is contained in:
Marek Marczykowski-Górecki 2015-12-26 02:20:28 +01:00
parent adb282ef8e
commit e3e8a55c92
No known key found for this signature in database
GPG Key ID: 063938BA42CFA724

View File

@ -566,6 +566,10 @@ class QubesVm(object):
return False
if len(name) > 31:
return False
if name == 'lost+found':
# avoid conflict when /var/lib/qubes/appvms is mounted on
# separate partition
return False
return re.match(r"^[a-zA-Z][a-zA-Z0-9_.-]*$", name) is not None
def pre_rename(self, new_name):