forked from Mirror/pmbootstrap
core: chroot: validate name for rootfs chroot (MR 2332)
Make sure we get a valid name in the rootfs type chroot. Signed-off-by: Caleb Connolly <caleb@postmarketos.org>
This commit is contained in:
parent
35eff91564
commit
9daa888f0f
1 changed files with 4 additions and 0 deletions
|
@ -70,6 +70,10 @@ class Chroot:
|
||||||
if self.__type == ChrootType.IMAGE and not Path(self.__name).exists():
|
if self.__type == ChrootType.IMAGE and not Path(self.__name).exists():
|
||||||
raise ValueError(f"Image file '{self.__name}' does not exist")
|
raise ValueError(f"Image file '{self.__name}' does not exist")
|
||||||
|
|
||||||
|
# rootfs suffixes must have a valid device name
|
||||||
|
if self.__type == ChrootType.ROOTFS and (len(self.__name) < 3 or "-" not in self.__name):
|
||||||
|
raise ValueError(f"Invalid device name: '{self.__name}'")
|
||||||
|
|
||||||
def __str__(self) -> str:
|
def __str__(self) -> str:
|
||||||
if len(self.__name) > 0 and self.type != ChrootType.IMAGE:
|
if len(self.__name) > 0 and self.type != ChrootType.IMAGE:
|
||||||
return f"{self.__type.value}_{self.__name}"
|
return f"{self.__type.value}_{self.__name}"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue