From: mbroz@sourceware.org <mbroz@sourceware.org>
To: lvm-devel@redhat.com
Subject: LVM2 ./WHATS_NEW lib/format_text/export.c test ...
Date: 19 May 2009 09:48:32 -0000 [thread overview]
Message-ID: <20090519094832.29152.qmail@sourceware.org> (raw)
CVSROOT: /cvs/lvm2
Module name: LVM2
Changes by: mbroz at sourceware.org 2009-05-19 09:48:32
Modified files:
. : WHATS_NEW
lib/format_text: export.c
test : t-vgcfgbackup-usage.sh
Log message:
Use PV UUID in hash for device name when exporting metadata.
Currently code uses pv_dev_name() for hash when getting internal
"pvX" name.
This produce corrupted metadata if PVs are missing, pv->dev
is NULL and all these missing devices returns one name
(using "unknown device" for all missing devices as hash key).
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/WHATS_NEW.diff?cvsroot=lvm2&r1=1.1112&r2=1.1113
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/lib/format_text/export.c.diff?cvsroot=lvm2&r1=1.68&r2=1.69
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/test/t-vgcfgbackup-usage.sh.diff?cvsroot=lvm2&r1=1.1&r2=1.2
--- LVM2/WHATS_NEW 2009/05/14 16:46:12 1.1112
+++ LVM2/WHATS_NEW 2009/05/19 09:48:32 1.1113
@@ -1,5 +1,6 @@
Version 2.02.46 -
================================
+ Fix metadata export for VG with missing PVs.
Add vgimportclone and install it and the man page by default.
Force max_lv restriction only for newly created LV.
Remove unneeded import parameter from lv_create_empty.
--- LVM2/lib/format_text/export.c 2009/05/13 21:27:43 1.68
+++ LVM2/lib/format_text/export.c 2009/05/19 09:48:32 1.69
@@ -378,10 +378,19 @@
* Get the pv%d name from the formatters hash
* table.
*/
+static const char *_get_pv_name_from_uuid(struct formatter *f, char *uuid)
+{
+ return dm_hash_lookup(f->pv_names, uuid);
+}
+
static const char *_get_pv_name(struct formatter *f, struct physical_volume *pv)
{
- return (pv) ? (const char *)
- dm_hash_lookup(f->pv_names, pv_dev_name(pv)) : "Missing";
+ char uuid[64] __attribute((aligned(8)));
+
+ if (!pv || !id_write_format(&pv->id, uuid, sizeof(uuid)))
+ return_NULL;
+
+ return _get_pv_name_from_uuid(f, uuid);
}
static int _print_pvs(struct formatter *f, struct volume_group *vg)
@@ -398,16 +407,16 @@
dm_list_iterate_items(pvl, &vg->pvs) {
pv = pvl->pv;
- if (!(name = _get_pv_name(f, pv)))
+ if (!id_write_format(&pv->id, buffer, sizeof(buffer)))
+ return_0;
+
+ if (!(name = _get_pv_name_from_uuid(f, buffer)))
return_0;
outnl(f);
outf(f, "%s {", name);
_inc_indent(f);
- if (!id_write_format(&pv->id, buffer, sizeof(buffer)))
- return_0;
-
outf(f, "id = \"%s\"", buffer);
if (!(buf = alloca(escaped_len(pv_dev_name(pv))))) {
@@ -621,7 +630,7 @@
int count = 0;
struct pv_list *pvl;
struct physical_volume *pv;
- char buffer[32], *name;
+ char buffer[32], *uuid, *name;
if (!(f->mem = dm_pool_create("text pv_names", 512)))
return_0;
@@ -639,7 +648,11 @@
if (!(name = dm_pool_strdup(f->mem, buffer)))
return_0;
- if (!dm_hash_insert(f->pv_names, pv_dev_name(pv), name))
+ if (!(uuid = dm_pool_zalloc(f->mem, 64)) ||
+ !id_write_format(&pv->id, uuid, 64))
+ return_0;
+
+ if (!dm_hash_insert(f->pv_names, uuid, name))
return_0;
}
--- LVM2/test/t-vgcfgbackup-usage.sh 2008/11/11 15:29:24 1.1
+++ LVM2/test/t-vgcfgbackup-usage.sh 2009/05/19 09:48:32 1.2
@@ -11,14 +11,32 @@
. ./test-utils.sh
-aux prepare_pvs 2
+aux prepare_pvs 4
# vgcfgbackup handles similar VG names (bz458941)
vg1=${PREFIX}vg00
-vg1=${PREFIX}vg01
+vg2=${PREFIX}vg01
vgcreate $vg1 $dev1
vgcreate $vg2 $dev2
vgcfgbackup -f /tmp/bak-%s >out
grep "Volume group \"$vg1\" successfully backed up." out
grep "Volume group \"$vg2\" successfully backed up." out
+vgremove -ff $vg1
+vgremove -ff $vg2
+# vgcfgbackup correctly stores metadata with missing PVs
+# and vgcfgrestore able to restore them when device reappears
+pv1_uuid=$(pvs --noheadings -o pv_uuid $dev1)
+pv2_uuid=$(pvs --noheadings -o pv_uuid $dev2)
+vgcreate $vg $devs
+lvcreate -l1 -n $lv1 $vg $dev1
+lvcreate -l1 -n $lv2 $vg $dev2
+lvcreate -l1 -n $lv3 $vg $dev3
+vgchange -a n $vg
+pvcreate -ff -y $dev1
+pvcreate -ff -y $dev2
+vgcfgbackup -f "$(pwd)/backup.$$" $vg
+sed 's/flags = \[\"MISSING\"\]/flags = \[\]/' "$(pwd)/backup.$$" > "$(pwd)/backup.$$1"
+pvcreate -ff -y -u $pv1_uuid $dev1
+pvcreate -ff -y -u $pv2_uuid $dev2
+vgcfgrestore -f "$(pwd)/backup.$$1" $vg
next reply other threads:[~2009-05-19 9:48 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-05-19 9:48 mbroz [this message]
2009-05-20 9:14 ` LVM2 ./WHATS_NEW lib/format_text/export.c test Alasdair G Kergon
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20090519094832.29152.qmail@sourceware.org \
--to=mbroz@sourceware.org \
--cc=lvm-devel@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.