From: Eric Sandeen <sandeen@redhat.com>
To: ext4 development <linux-ext4@vger.kernel.org>
Subject: RFC, 32-bit compat handlers for EXT4_IOC_GROUP_ADD
Date: Thu, 04 Dec 2008 16:37:57 -0600 [thread overview]
Message-ID: <49385BC5.2070703@redhat.com> (raw)
Unfortunately the argument to EXT4_IOC_GROUP_ADD contains padding on
64-bit arches, not present on 32-bit arches:
struct ext4_new_group_input {
__u32 group; /* 0 4 */
/* XXX 4 bytes hole, try to pack */
__u64 block_bitmap; /* 8 8 */
__u64 inode_bitmap; /* 16 8 */
__u64 inode_table; /* 24 8 */
__u32 blocks_count; /* 32 4 */
__u16 reserved_blocks; /* 36 2 */
__u16 unused; /* 38 2 */
/* size: 40, cachelines: 1 */
/* sum members: 36, holes: 1, sum holes: 4 */
/* last cacheline: 40 bytes */
};
due to the new 64-bit types, which want to align on 64-bit boundaries.
So, when called from an ia32 executable on a 64-bit kernel, the size of
the arg is "wrong" and the ioctl fails:
ioctl32(resize2fs:3595): Unknown cmd fd(99) cmd(80186608){t:'f';sz:24}
arg(ff8ce8a0) on /mnt/tmp
The simple/straightforward fix is to add a compat handler, which I've
written:
ext4.h | 12 ++++++++++++
ioctl.c | 25 ++++++++++++++++++++++++-
2 files changed, 36 insertions(+), 1 deletion(-)
this bloats the kernel just a bit; we have to add a compat arg structure
which is packed, then copy in the elements, and dispatch it to the
native ioctl handler.
It's too bad this wasn't caught sooner, but I wonder if maybe it's still
not too late; can we change the structure in the kernel and have newer
e2fsprogs try both the old & new? The new interface would add 32 bits
of padding to the structure; this would leave it unchanged on 64-bit
boxes so everything would continue to work. Newer e2fsprogs would try
both, so still work on older kernels. 32-bit compat would have a simple
handler, *but* this *would* break resize of ext4 on native 32-bit
machines with older e2fsprogs (the kernel would have a padded struct;
older userspace would not, and the ioctl would fail).
How far out of "dev" are we? I'm leaning towards saying "oh well, would
have been nicer the other way" but going ahead and just putting the
compat handler into the kernel.
Thoughts?
-Eric
next reply other threads:[~2008-12-04 22:38 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-12-04 22:37 Eric Sandeen [this message]
2008-12-06 1:02 ` RFC, 32-bit compat handlers for EXT4_IOC_GROUP_ADD Andreas Dilger
2008-12-06 20:24 ` Theodore Tso
2008-12-08 16:31 ` Eric Sandeen
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=49385BC5.2070703@redhat.com \
--to=sandeen@redhat.com \
--cc=linux-ext4@vger.kernel.org \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).