[master 1/4] Improve format handling for lvm snapshots.

dwlehman installerbot-noreply at redhat.com
Mon Jun 29 19:06:03 UTC 2015


From: David Lehman <dlehman at redhat.com>

Non-existent lvm snapshots have a copy of the origin's format as their
format. When an origin's format changes, all non-existent snapshots of
that origin must have their formats updated as well.

Related: rhbz#1113207
---
 blivet/devices/lvm.py | 49 +++++++++++++++++++++++++++++++++++++------------
 1 file changed, 37 insertions(+), 12 deletions(-)

diff --git a/blivet/devices/lvm.py b/blivet/devices/lvm.py
index d1b234f..400dd80 100644
--- a/blivet/devices/lvm.py
+++ b/blivet/devices/lvm.py
@@ -22,6 +22,7 @@
 from decimal import Decimal
 from six import add_metaclass
 import abc
+import copy
 import pprint
 import re
 import os
@@ -32,7 +33,6 @@
 
 from .. import errors
 from .. import util
-from ..formats import getFormat
 from ..storage_log import log_method_call
 from .. import udev
 from ..size import Size, KiB, MiB, ROUND_UP, ROUND_DOWN
@@ -506,13 +506,15 @@ def __init__(self, name, parents=None, size=None, uuid=None, segType=None,
 
         """
 
+        # When this device's format is set in the superclass constructor it will
+        # try to access self.snapshots.
+        self.snapshots = []
         DMDevice.__init__(self, name, size=size, fmt=fmt,
                           sysfsPath=sysfsPath, parents=parents,
                           exists=exists)
 
         self.uuid = uuid
         self.segType = segType or "linear"
-        self.snapshots = []
 
         self.req_grow = None
         self.req_max_size = Size(0)
@@ -630,6 +632,11 @@ def vgSpaceUsed(self):
         return (self.vg.align(self.size, roundup=True) * self.copies
                 + self.logSize + self.metaDataSize + cache_size)
 
+    def _setFormat(self, fmt):
+        super(LVMLogicalVolumeDevice, self)._setFormat(fmt)
+        for snapshot in (s for s in self.snapshots if not s.exists):
+            snapshot._updateFormatFromOrigin()
+
     @property
     def vg(self):
         """ This Logical Volume's Volume Group. """
@@ -1142,8 +1149,8 @@ class LVMSnapShotBase(object):
         Normal/old snapshots must be removed with their origin, while thin
         snapshots can remain after their origin is removed.
 
-        It is also impossible to set the format for a snapshot explicitly as it
-        always has the same format as its origin.
+        It is also impossible to set the format for a non-existent snapshot
+        explicitly as it always has the same format as its origin.
     """
     _type = "lvmsnapshotbase"
 
@@ -1186,15 +1193,33 @@ def _voriginExistenceCheck(self, vorigin, exists):
         if vorigin and not exists:
             raise ValueError("only existing vorigin snapshots are supported")
 
-    def _setFormat(self, fmt):
-        pass
+    def _updateFormatFromOrigin(self):
+        """ Update the snapshot's format to reflect the origin's.
 
-    def _getFormat(self):
-        if self.origin is None:
-            fmt = getFormat(None)
+            .. note::
+                This should only be called for non-existent snapshot devices.
+                Once a snapshot exists its format is distinct from that of its
+                origin.
+
+        """
+        fmt = copy.deepcopy(self.origin.format)
+        fmt.exists = False
+        if hasattr(fmt, "mountpoint"):
+            fmt.mountpoint = ""
+            fmt._chrootedMountpoint = None
+            fmt.device = self.path # pylint: disable=no-member
+
+        super(LVMSnapShotBase, self)._setFormat(fmt)
+
+    def _setFormat(self, fmt):
+        # If a snapshot exists it can have a format that is distinct from its
+        # origin's. If it does not exist its format must be a copy of its
+        # origin's.
+        if self.exists: # pylint: disable=no-member
+            super(LVMSnapShotBase, self)._setFormat(fmt)
         else:
-            fmt = self.origin.format
-        return fmt
+            log.info("copying %s origin's format", self.name) # pylint: disable=no-member
+            self._updateFormatFromOrigin()
 
     @abc.abstractmethod
     def _create(self):
@@ -1548,7 +1573,7 @@ def __init__(self, name, parents=None, sysfsPath='', origin=None,
 
         LVMSnapShotBase.__init__(self, origin=origin, exists=exists)
         LVMThinLogicalVolumeDevice.__init__(self, name, parents=parents,
-                                            sysfsPath=sysfsPath,fmt=None,
+                                            sysfsPath=sysfsPath,fmt=fmt,
                                             segType=segType,
                                             uuid=uuid, size=size, exists=exists)
 


-- 
To view this commit on github, visit https://github.com/rhinstaller/blivet/commit/1c2d8a0b3633145b0528c4a0734e4ac7a7bffed8


More information about the anaconda-patches mailing list