* Wed Jun 20 2007 Eric Sandeen <esandeen@redhat.com> 1.39-12
- add LUKS support to libblkid
This commit is contained in:
parent
bed34d683a
commit
87171d8b31
87
e2fsprogs-1.39-LUKS-blkid.patch
Normal file
87
e2fsprogs-1.39-LUKS-blkid.patch
Normal file
@ -0,0 +1,87 @@
|
|||||||
|
Theodore Tso schrieb:
|
||||||
|
> > On Mon, Jun 11, 2007 at 01:51:24PM +0200, Karsten Hopp wrote:
|
||||||
|
>> >> +static int probe_luks(struct blkid_probe *probe,
|
||||||
|
>> >> + struct blkid_magic *id __BLKID_ATTR((unused)),
|
||||||
|
>> >> + unsigned char *buf)
|
||||||
|
>> >> +{
|
||||||
|
>> >> + unsigned char *p_buf = buf;
|
||||||
|
>> >> + unsigned char uuid[40];
|
||||||
|
>> >> + /* 168 is the offset to the 40 character uuid:
|
||||||
|
>> >> + * http://luks.endorphin.org/LUKS-on-disk-format.pdf */
|
||||||
|
>> >> + p_buf += 168;
|
||||||
|
>> >> + strncpy(uuid, p_buf, 40);
|
||||||
|
> >
|
||||||
|
> > Why bother with p_buf? It would actually be shorter and sweeter to
|
||||||
|
> > do:
|
||||||
|
> >
|
||||||
|
> > strncpy(uuid, buf+168, 40);
|
||||||
|
> >
|
||||||
|
> > And remove the lines dealing with p_buf above.
|
||||||
|
> >
|
||||||
|
>> >> + { "crypt_LUKS",0, 0, 6, "LUKS\xba\xbe", probe_luks },
|
||||||
|
> >
|
||||||
|
> > Any particular reason to use "crypt_LUKS" instead of just "LUKS"? In
|
||||||
|
> > your documentation you generally just refer to it as LUKS.
|
||||||
|
> >
|
||||||
|
> > - Ted
|
||||||
|
|
||||||
|
I've used 'luks' in my first patch, but changed it to 'crypt_LUKS' when
|
||||||
|
Karel Zak pointed out that libvolume_id from udev already uses 'crypt_LUKS'
|
||||||
|
for this.
|
||||||
|
My first patch also did some other (unnecessary) stuff with p_buf and I just
|
||||||
|
didn't bother to remove it.
|
||||||
|
I'll attach a new patch without p_buf.
|
||||||
|
|
||||||
|
Karsten
|
||||||
|
|
||||||
|
--
|
||||||
|
Karsten Hopp | Mail: karsten@redhat.de
|
||||||
|
Red Hat Deutschland | Tel: +49-711-96437-0
|
||||||
|
Hauptstaetterstr.58 | Fax: +49-711-613590
|
||||||
|
D-70178 Stuttgart | http://www.redhat.de
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
e2fsprogs-1.39-luks.patch
|
||||||
|
Problem: libblkid doesn't detect/report UUIDs of cryptsetup-luks partitio
|
||||||
|
ns
|
||||||
|
Solution: Add probe for luks UUID
|
||||||
|
Signed-off-by: Karsten Hopp <karsten@redhat.com>
|
||||||
|
|
||||||
|
--- e2fsprogs-1.39/lib/blkid/ChangeLog.luksuuid 2007-06-11 13:40:14.000000000 +0200
|
||||||
|
+++ e2fsprogs-1.39/lib/blkid/ChangeLog 2007-06-11 13:40:14.000000000 +0200
|
||||||
|
@@ -0,0 +1,4 @@
|
||||||
|
+2007-05-22 Karsten Hopp <karsten@redhat.com>
|
||||||
|
+
|
||||||
|
+ * probe.c (probe_luks): Add support for cryptsetup-luks partitions
|
||||||
|
+
|
||||||
|
--- e2fsprogs-1.39/lib/blkid/probe.c.luksuuid 2007-06-11 13:40:14.000000000 +0200
|
||||||
|
+++ e2fsprogs-1.39/lib/blkid/probe.c 2007-06-13 12:50:27.000000000 +0200
|
||||||
|
@@ -468,6 +468,18 @@ static int probe_jfs(struct blkid_probe
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
+static int probe_luks(struct blkid_probe *probe,
|
||||||
|
+ struct blkid_magic *id __BLKID_ATTR((unused)),
|
||||||
|
+ unsigned char *buf)
|
||||||
|
+{
|
||||||
|
+ unsigned char uuid[40];
|
||||||
|
+ /* 168 is the offset to the 40 character uuid:
|
||||||
|
+ * http://luks.endorphin.org/LUKS-on-disk-format.pdf */
|
||||||
|
+ strncpy(uuid, buf+168, 40);
|
||||||
|
+ blkid_set_tag(probe->dev, "UUID", uuid, sizeof(uuid));
|
||||||
|
+ return 0;
|
||||||
|
+}
|
||||||
|
+
|
||||||
|
static int probe_romfs(struct blkid_probe *probe,
|
||||||
|
struct blkid_magic *id __BLKID_ATTR((unused)),
|
||||||
|
unsigned char *buf)
|
||||||
|
@@ -775,6 +787,7 @@ static struct blkid_magic type_array[] =
|
||||||
|
{ "ocfs2", 2, 0, 6, "OCFSV2", probe_ocfs2 },
|
||||||
|
{ "ocfs2", 4, 0, 6, "OCFSV2", probe_ocfs2 },
|
||||||
|
{ "ocfs2", 8, 0, 6, "OCFSV2", probe_ocfs2 },
|
||||||
|
+ { "crypt_LUKS",0, 0, 6, "LUKS\xba\xbe", probe_luks },
|
||||||
|
{ NULL, 0, 0, 0, NULL, NULL }
|
||||||
|
};
|
||||||
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
|||||||
Summary: Utilities for managing the second and third extended (ext2/ext3) filesystems
|
Summary: Utilities for managing the second and third extended (ext2/ext3) filesystems
|
||||||
Name: e2fsprogs
|
Name: e2fsprogs
|
||||||
Version: 1.39
|
Version: 1.39
|
||||||
Release: 11
|
Release: 12
|
||||||
License: GPL
|
License: GPL
|
||||||
Group: System Environment/Base
|
Group: System Environment/Base
|
||||||
Source: ftp://download.sourceforge.net/pub/sourceforge/e2fsprogs/e2fsprogs-%{version}.tar.gz
|
Source: ftp://download.sourceforge.net/pub/sourceforge/e2fsprogs/e2fsprogs-%{version}.tar.gz
|
||||||
@ -31,6 +31,7 @@ Patch59: e2fsprogs-1.39-large_file_size.patch
|
|||||||
Patch60: e2fsprogs-1.39-e2p_percent_div.patch
|
Patch60: e2fsprogs-1.39-e2p_percent_div.patch
|
||||||
Patch61: e2fsprogs-1.39-uuid.patch
|
Patch61: e2fsprogs-1.39-uuid.patch
|
||||||
Patch62: e2fsprogs-1.39-mkinstalldirs.patch
|
Patch62: e2fsprogs-1.39-mkinstalldirs.patch
|
||||||
|
Patch63: e2fsprogs-1.39-LUKS-blkid.patch
|
||||||
Url: http://e2fsprogs.sourceforge.net/
|
Url: http://e2fsprogs.sourceforge.net/
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||||
Requires: e2fsprogs-libs = %{version}-%{release}, device-mapper
|
Requires: e2fsprogs-libs = %{version}-%{release}, device-mapper
|
||||||
@ -113,6 +114,7 @@ also want to install e2fsprogs.
|
|||||||
%patch60 -p1 -b .e2p_percent_div
|
%patch60 -p1 -b .e2p_percent_div
|
||||||
%patch61 -p1 -b .uuid
|
%patch61 -p1 -b .uuid
|
||||||
%patch62 -p1 -b .mkinstalldirs
|
%patch62 -p1 -b .mkinstalldirs
|
||||||
|
%patch63 -p1 -b .LUKS
|
||||||
|
|
||||||
%build
|
%build
|
||||||
aclocal
|
aclocal
|
||||||
@ -264,6 +266,9 @@ exit 0
|
|||||||
%{_mandir}/man3/uuid_unparse.3*
|
%{_mandir}/man3/uuid_unparse.3*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Jun 20 2007 Eric Sandeen <esandeen@redhat.com> 1.39-12
|
||||||
|
- add LUKS support to libblkid
|
||||||
|
|
||||||
* Fri Feb 23 2007 Karsten Hopp <karsten@redhat.com> 1.39-11
|
* Fri Feb 23 2007 Karsten Hopp <karsten@redhat.com> 1.39-11
|
||||||
- fix post/preun requirements
|
- fix post/preun requirements
|
||||||
- use smp flags
|
- use smp flags
|
||||||
|
Loading…
Reference in New Issue
Block a user