[lvm-devel] [RFC][PATCH] lvm2: limit accesses to broken devices (v3)

Takahiro Yasui takahiro.yasui at hds.com
Fri Jul 23 21:08:55 UTC 2010


Hi,

This is a updated patch (v3) to limit accesses to broken devices.

* v3 changes:
  Reset a device error count per device when vg lock is acquired
  or released, while a device error count is reset once in lvm
  command execution in the v2 patch.


* Issues and solution

lvm commands accesses same devices repeatedly  even if they are
broken and read or write I/Os fail. For example, lvconvert command
accesses 70 times to a broken device (the number depends on the
volume structure). lvconvert is used to recover a mirror volume
when an error is reported, and unnecessary access to broken devices
might prolong a recovery time.

As a solution, this patch introduces a new configuration parameter,
devices/dev_max_error_count. The number of errors on a device is
counted and the device is desabled when the count reaches the value
specified by the parameter, devices/dev_max_error_count. If a value
(0) is set to the parameter, no access control to a device is done.


* Test results

This rest result shows the number of accesses to a broken device
(8:32) when the parameter, devices/dev_max_error_count is set to 1.

- Environment
  # vgs
    VG   #PV #LV #SN Attr   VSize  VFree
    vg00   4   1   0 wz--n- 63.98G 63.95G
  # dmsetup ls --tree -o ascii
  vg00-lv00 (253:5)
   |-vg00-lv00_mimage_1 (253:4)
   |  `- (8:48)
   |-vg00-lv00_mimage_0 (253:3)
   |  `- (8:32)
   `-vg00-lv00_mlog (253:2)
      |-vg00-lv00_mlog_mimage_1 (253:1)
      |  `- (8:80)
      `-vg00-lv00_mlog_mimage_0 (253:0)
         `- (8:64)

- Result
  lvconvert --repair --use-policies vg00/lv00   85 times -> 1 time
  vgs                                            9 times -> 2 time
  lvs                                            7 times -> 2 time
  vgchange -an vg00                              7 times -> 1 time


I haven't found any problem on v2, but v3 keeps an error count during
vg lock and looks safer. In both patches, metadata is safely guarded
by vg lock and I think that no inconsistency on metadata occurs.

I appreciate your review and comments.

Thanks,
Taka


Signed-off-by: Takahiro Yasui <takahiro.yasui at hds.com>
---
 doc/example.conf.in        |    5 +++++
 lib/commands/toolcontext.c |    4 ++++
 lib/config/defaults.h      |    2 ++
 lib/device/dev-cache.c     |   19 +++++++++++++++++++
 lib/device/dev-cache.h     |    2 ++
 lib/device/dev-io.c        |   34 ++++++++++++++++++++++++++++++++--
 lib/device/device.h        |    2 ++
 lib/locking/locking.c      |    1 +
 lib/misc/lvm-globals.c     |   11 +++++++++++
 lib/misc/lvm-globals.h     |    4 ++++
 man/lvm.conf.5.in          |    5 +++++
 11 files changed, 87 insertions(+), 2 deletions(-)

Index: LVM2-2.02.70/doc/example.conf.in
===================================================================
--- LVM2-2.02.70.orig/doc/example.conf.in
+++ LVM2-2.02.70/doc/example.conf.in
@@ -130,6 +130,11 @@ devices {
     # Set this to 1 to skip such devices.  This should only be needed
     # in recovery situations.
     ignore_suspended_devices = 0
+
+    # Maximum number of error counts per device before disabling the device.
+    # This option prevents a broken device from being accessed repeatedly.
+    # Set to 0 to disable the error number control.
+    dev_max_error_count = 0
 }
 
 # This section that allows you to configure the nature of the
Index: LVM2-2.02.70/lib/commands/toolcontext.c
===================================================================
--- LVM2-2.02.70.orig/lib/commands/toolcontext.c
+++ LVM2-2.02.70/lib/commands/toolcontext.c
@@ -558,6 +558,10 @@ static int _init_dev_cache(struct cmd_co
 	const struct config_node *cn;
 	struct config_value *cv;
 
+	init_dev_max_error_count(
+		find_config_tree_int(cmd, "devices/dev_max_error_count",
+				     DEFAULT_MAX_ERROR_COUNT));
+
 	if (!dev_cache_init(cmd))
 		return_0;
 
Index: LVM2-2.02.70/lib/config/defaults.h
===================================================================
--- LVM2-2.02.70.orig/lib/config/defaults.h
+++ LVM2-2.02.70/lib/config/defaults.h
@@ -112,6 +112,8 @@
 #  define DEFAULT_MAX_HISTORY 100
 #endif
 
+#define DEFAULT_MAX_ERROR_COUNT	NO_DEV_ERROR_COUNT_LIMIT
+
 #define DEFAULT_REP_ALIGNED 1
 #define DEFAULT_REP_BUFFERED 1
 #define DEFAULT_REP_COLUMNS_AS_ROWS 0
Index: LVM2-2.02.70/lib/device/dev-cache.c
===================================================================
--- LVM2-2.02.70.orig/lib/device/dev-cache.c
+++ LVM2-2.02.70/lib/device/dev-cache.c
@@ -104,6 +104,8 @@ struct device *dev_create_file(const cha
 	dev->dev = 0;
 	dev->fd = -1;
 	dev->open_count = 0;
+	dev->error_count = 0;
+	dev->max_error_count = NO_DEV_ERROR_COUNT_LIMIT;
 	dev->block_size = -1;
 	dev->read_ahead = -1;
 	memset(dev->pvid, 0, sizeof(dev->pvid));
@@ -125,6 +127,7 @@ static struct device *_dev_create(dev_t 
 	dev->dev = d;
 	dev->fd = -1;
 	dev->open_count = 0;
+	dev->max_error_count = dev_max_error_count();
 	dev->block_size = -1;
 	dev->read_ahead = -1;
 	dev->end = UINT64_C(0);
@@ -791,6 +794,22 @@ struct device *dev_iter_get(struct dev_i
 	return NULL;
 }
 
+void dev_reset_error_count(struct cmd_context *cmd)
+{
+	struct dev_iter *iter;
+	struct device *dev;
+
+	if (!(iter = dev_iter_create(cmd->filter, 0))) {
+		log_error("Resetting device error count failed");
+		return;
+	}
+
+	for (dev = dev_iter_get(iter); dev; dev = dev_iter_get(iter))
+		dev->error_count = 0;
+
+	dev_iter_destroy(iter);
+}
+
 int dev_fd(struct device *dev)
 {
 	return dev->fd;
Index: LVM2-2.02.70/lib/device/dev-cache.h
===================================================================
--- LVM2-2.02.70.orig/lib/device/dev-cache.h
+++ LVM2-2.02.70/lib/device/dev-cache.h
@@ -52,4 +52,6 @@ struct dev_iter *dev_iter_create(struct 
 void dev_iter_destroy(struct dev_iter *iter);
 struct device *dev_iter_get(struct dev_iter *iter);
 
+void dev_reset_error_count(struct cmd_context *cmd);
+
 #endif
Index: LVM2-2.02.70/lib/device/dev-io.c
===================================================================
--- LVM2-2.02.70.orig/lib/device/dev-io.c
+++ LVM2-2.02.70/lib/device/dev-io.c
@@ -595,18 +595,40 @@ void dev_close_all(void)
 	}
 }
 
+static inline int _dev_is_valid(struct device *dev)
+{
+	return (dev->max_error_count == NO_DEV_ERROR_COUNT_LIMIT ||
+		dev->error_count < dev->max_error_count);
+}
+
+static void _dev_inc_error_count(struct device *dev)
+{
+	if (++dev->error_count == dev->max_error_count)
+		log_warn("WARNING: Error counts reached a limit of %d. "
+			 "Device %s was disabled",
+			 dev->max_error_count, dev_name(dev));
+}
+
 int dev_read(struct device *dev, uint64_t offset, size_t len, void *buffer)
 {
 	struct device_area where;
+	int ret;
 
 	if (!dev->open_count)
 		return_0;
 
+	if (!_dev_is_valid(dev))
+		return 0;
+
 	where.dev = dev;
 	where.start = offset;
 	where.size = len;
 
-	return _aligned_io(&where, buffer, 0);
+	ret = _aligned_io(&where, buffer, 0);
+	if (!ret)
+		_dev_inc_error_count(dev);
+
+	return ret;
 }
 
 /*
@@ -662,17 +684,25 @@ int dev_append(struct device *dev, size_
 int dev_write(struct device *dev, uint64_t offset, size_t len, void *buffer)
 {
 	struct device_area where;
+	int ret;
 
 	if (!dev->open_count)
 		return_0;
 
+	if (!_dev_is_valid(dev))
+		return 0;
+
 	where.dev = dev;
 	where.start = offset;
 	where.size = len;
 
 	dev->flags |= DEV_ACCESSED_W;
 
-	return _aligned_io(&where, buffer, 1);
+	ret = _aligned_io(&where, buffer, 1);
+	if (!ret)
+		_dev_inc_error_count(dev);
+
+	return ret;
 }
 
 int dev_set(struct device *dev, uint64_t offset, size_t len, int value)
Index: LVM2-2.02.70/lib/device/device.h
===================================================================
--- LVM2-2.02.70.orig/lib/device/device.h
+++ LVM2-2.02.70/lib/device/device.h
@@ -39,6 +39,8 @@ struct device {
 	/* private */
 	int fd;
 	int open_count;
+	int error_count;
+	int max_error_count;
 	int block_size;
 	int read_ahead;
 	uint32_t flags;
Index: LVM2-2.02.70/lib/locking/locking.c
===================================================================
--- LVM2-2.02.70.orig/lib/locking/locking.c
+++ LVM2-2.02.70/lib/locking/locking.c
@@ -382,6 +382,7 @@ static int _lock_vol(struct cmd_context 
 			else
 				lvmcache_lock_vgname(resource, (flags & LCK_TYPE_MASK)
 								== LCK_READ);
+			dev_reset_error_count(cmd);
 		}
 
 		_update_vg_lock_count(resource, flags);
Index: LVM2-2.02.70/lib/misc/lvm-globals.c
===================================================================
--- LVM2-2.02.70.orig/lib/misc/lvm-globals.c
+++ LVM2-2.02.70/lib/misc/lvm-globals.c
@@ -40,6 +40,7 @@ static int _ignore_suspended_devices = 0
 static int _error_message_produced = 0;
 static unsigned _is_static = 0;
 static int _udev_checking = 1;
+static int _dev_max_error_count = DEFAULT_MAX_ERROR_COUNT;
 
 void init_verbose(int level)
 {
@@ -121,6 +122,11 @@ void init_udev_checking(int checking)
 		log_debug("LVM udev checking disabled");
 }
 
+void init_dev_max_error_count(int value)
+{
+	_dev_max_error_count = value;
+}
+
 void set_cmd_name(const char *cmd)
 {
 	strncpy(_cmd_name, cmd, sizeof(_cmd_name));
@@ -224,3 +230,8 @@ int udev_checking(void)
 {
 	return _udev_checking;
 }
+
+int dev_max_error_count(void)
+{
+	return _dev_max_error_count;
+}
Index: LVM2-2.02.70/lib/misc/lvm-globals.h
===================================================================
--- LVM2-2.02.70.orig/lib/misc/lvm-globals.h
+++ LVM2-2.02.70/lib/misc/lvm-globals.h
@@ -37,6 +37,7 @@ void init_ignore_suspended_devices(int i
 void init_error_message_produced(int produced);
 void init_is_static(unsigned value);
 void init_udev_checking(int checking);
+void init_dev_max_error_count(int value);
 
 void set_cmd_name(const char *cmd_name);
 
@@ -56,8 +57,11 @@ int ignore_suspended_devices(void);
 const char *log_command_name(void);
 unsigned is_static(void);
 int udev_checking(void);
+int dev_max_error_count(void);
 
 #define DMEVENTD_MONITOR_IGNORE -1
 int dmeventd_monitor_mode(void);
 
+#define NO_DEV_ERROR_COUNT_LIMIT 0
+
 #endif
Index: LVM2-2.02.70/man/lvm.conf.5.in
===================================================================
--- LVM2-2.02.70.orig/man/lvm.conf.5.in
+++ LVM2-2.02.70/man/lvm.conf.5.in
@@ -165,6 +165,11 @@ use \fBpvs -o +pe_start\fP .  It will be
 \fBdata_alignment\fP plus the alignment_offset from
 \fBdata_alignment_offset_detection\fP (if enabled) or the pvcreate
 commandline.
+.IP
+\fBdev_max_error_count\fP \(em Maximum number of error counts per device
+before disabling devices. This option prevents a broken device from
+being accessed repeatedly. If set to 0, no access control to devices is
+done.
 .TP
 \fBlog\fP \(em Default log settings
 .IP

-- 
Takahiro Yasui
Hitachi Data Systems




More information about the lvm-devel mailing list