]> git.ipfire.org Git - nitsi.git/commitdiff
Refactor disk class master
authorJonatan Schlag <jonatan.schlag@ipfire.org>
Fri, 2 Nov 2018 18:33:17 +0000 (19:33 +0100)
committerJonatan Schlag <jonatan.schlag@ipfire.org>
Fri, 2 Nov 2018 18:33:17 +0000 (19:33 +0100)
This makes it possible to mount all partitions of a disk, without
knowing an UUID of a partition. This makes changing virtual disk images
a lot easier.

Signed-off-by: Jonatan Schlag <jonatan.schlag@ipfire.org>
src/nitsi/disk.py
src/nitsi/machine.py

index 1625006af8929d8db22e5429fc75c8e376218594..878bc7751465dc764b2e0f6b20d67307c7beada8 100755 (executable)
@@ -1,5 +1,6 @@
 #!/usr/bin/python3
 
 #!/usr/bin/python3
 
+import collections
 import guestfs
 import logging
 import os
 import guestfs
 import logging
 import os
@@ -19,11 +20,45 @@ class Disk():
         self.con = guestfs.GuestFS(python_return_dict=True)
         self.con.add_drive_opts(disk, format="qcow2")
 
         self.con = guestfs.GuestFS(python_return_dict=True)
         self.con.add_drive_opts(disk, format="qcow2")
 
-    def mount(self, uuid, path):
-        self.log.info("Trying to mount the partion with uuid: {} under {}".format(uuid, path))
+    def mount(self):
+        self.log.info("Trying to mount all partions of the found operating system")
+        for mountpoint, partition in self.mountpoints.items():
+            self.log.info("Trying to mount the partion {} under {}".format(partition, mountpoint))
+            self.con.mount(partition, mountpoint)
+
+    def inspect(self):
         self.con.launch()
         self.con.launch()
-        part = self.con.findfs_uuid(uuid)
-        self.con.mount(part, path)
+
+        # This inspects the given Disk and
+        # returns all root filesystems of the operating systems on this disk
+        root_filesystem = self.con.inspect_os()
+
+        # If we found more the one rootfile system we throw an error
+        # because we do not support multi boot systems
+        if len(root_filesystem) > 1:
+            raise DiskExeption("Found more then one operating system on the given disk.")
+
+        # We cannot go on if we found no operating system
+        if len(root_filesystem) == 0:
+            raise DiskExeption("Found no operating system on the given disk.")
+
+        root_filesystem = root_filesystem.pop()
+
+        # Get mountpoints of all filesystems accociated with this operationg system
+        tmp = self.con.inspect_get_mountpoints(root_filesystem)
+
+        # Sort mountpoints by length to mount / before /usr
+        # We are using an ordered dict here to keep the order of the keys
+        self.mountpoints = collections.OrderedDict(sorted(tmp.items(), key=lambda t: len(t[0])))
+
+        self.log.debug(self.mountpoints)
+
+        # Print some nice information about the found operationg system
+        self.log.info("Arch of the installed operating system: {}".format(
+            self.con.inspect_get_arch(root_filesystem)))
+        self.log.info("Distribution of the installed operating system: {}".format(
+            self.con.inspect_get_distro(root_filesystem)))
+
 
     def copy_in(self, fr, to):
         self.log.info("Going to copy some files into the image.")
 
     def copy_in(self, fr, to):
         self.log.info("Going to copy some files into the image.")
@@ -39,9 +74,11 @@ class Disk():
         self.con.tar_in_opts(tmp, to)
         self.log.debug(self.con.ls(to))
 
         self.con.tar_in_opts(tmp, to)
         self.log.debug(self.con.ls(to))
 
-    def umount(self, path):
-        self.log.info("Unmounting the image")
-        self.con.umount_opts(path)
+    def umount(self):
+        self.log.info("Trying to unmount all partions of the found operating system")
+        for mountpoint, partition in reversed(self.mountpoints.items()):
+            self.log.info("Trying to unmount the partion {} under {}".format(partition, mountpoint))
+            self.con.umount_opts(mountpoint)
 
     def close(self):
         self.log.info("Flush the image and closing the connection")
 
     def close(self):
         self.log.info("Flush the image and closing the connection")
index 057981db62098e11b45e7c8d6dc577e55f80c008..9aed5a0180dda8019d606e0c5be10536291bec7d 100644 (file)
@@ -176,10 +176,11 @@ class Machine():
 
     def copy_in(self, fr, to):
         try:
 
     def copy_in(self, fr, to):
         try:
-            self.disk.mount(self.root_uid, "/")
+            self.disk.inspect()
+            self.disk.mount()
             self.disk.copy_in(fr, to)
         except BaseException as e:
             self.log.error(e)
         finally:
             self.disk.copy_in(fr, to)
         except BaseException as e:
             self.log.error(e)
         finally:
-            self.disk.umount("/")
+            self.disk.umount()
             self.disk.close()
             self.disk.close()