vm/qubesvm: improve name property setter
Split it into two functions: validate_name - context-less verification, and actual _setter_name which perform additional verification in context of actual VM. Switch to qubes.exc.* exceptions where appropriate.
This commit is contained in:
parent
dbf2066dfd
commit
a036e2a8a0
@ -75,20 +75,35 @@ def _setter_qid(self, prop, value):
|
|||||||
return value
|
return value
|
||||||
|
|
||||||
|
|
||||||
def _setter_name(self, prop, value):
|
def validate_name(holder, prop, value):
|
||||||
''' Helper for setting the domain name '''
|
''' Check if value is syntactically correct VM name '''
|
||||||
if not isinstance(value, str):
|
if not isinstance(value, str):
|
||||||
raise TypeError('{} value must be string, {!r} found'.format(
|
raise TypeError('VM name must be string, {!r} found'.format(
|
||||||
prop.__name__, type(value).__name__))
|
type(value).__name__))
|
||||||
if len(value) > 31:
|
if len(value) > 31:
|
||||||
raise ValueError('{} value must be shorter than 32 characters'.format(
|
if holder is not None and prop is not None:
|
||||||
prop.__name__))
|
raise qubes.exc.QubesPropertyValueError(holder, prop, value,
|
||||||
|
'{} value must be shorter than 32 characters'.format(
|
||||||
|
prop.__name__))
|
||||||
|
else:
|
||||||
|
raise qubes.exc.QubesValueError(
|
||||||
|
'VM name must be shorter than 32 characters')
|
||||||
|
|
||||||
# this regexp does not contain '+'; if it had it, we should specifically
|
# this regexp does not contain '+'; if it had it, we should specifically
|
||||||
# disallow 'lost+found' #1440
|
# disallow 'lost+found' #1440
|
||||||
if re.match(r"^[a-zA-Z][a-zA-Z0-9_-]*$", value) is None:
|
if re.match(r"^[a-zA-Z][a-zA-Z0-9_-]*$", value) is None:
|
||||||
raise ValueError('{} value contains illegal characters'.format(
|
if holder is not None and prop is not None:
|
||||||
prop.__name__))
|
raise qubes.exc.QubesPropertyValueError(holder, prop, value,
|
||||||
|
'{} value contains illegal characters'.format(prop.__name__))
|
||||||
|
else:
|
||||||
|
raise qubes.exc.QubesValueError(
|
||||||
|
'VM name contains illegal characters')
|
||||||
|
|
||||||
|
|
||||||
|
def _setter_name(self, prop, value):
|
||||||
|
''' Helper for setting the domain name '''
|
||||||
|
validate_name(self, prop, value)
|
||||||
|
|
||||||
if self.is_running():
|
if self.is_running():
|
||||||
raise qubes.exc.QubesVMNotHaltedError(
|
raise qubes.exc.QubesVMNotHaltedError(
|
||||||
self, 'Cannot change name of running VM')
|
self, 'Cannot change name of running VM')
|
||||||
@ -101,7 +116,7 @@ def _setter_name(self, prop, value):
|
|||||||
pass
|
pass
|
||||||
|
|
||||||
if value in self.app.domains:
|
if value in self.app.domains:
|
||||||
raise qubes.exc.QubesValueError(
|
raise qubes.exc.QubesPropertyValueError(self, prop, value,
|
||||||
'VM named {} alread exists'.format(value))
|
'VM named {} alread exists'.format(value))
|
||||||
|
|
||||||
return value
|
return value
|
||||||
|
Loading…
Reference in New Issue
Block a user