* Re: Loop encryption module locking bug (linux-2.4.5).
[not found] <20010621135043.A13107@lxmayr6.informatik.tu-muenchen.de.suse.lists.linux.kernel>
@ 2001-06-21 12:36 ` Andi Kleen
[not found] ` <3B333180.A804582F@pp.inet.fi>
0 siblings, 1 reply; 4+ messages in thread
From: Andi Kleen @ 2001-06-21 12:36 UTC (permalink / raw)
To: Ingo Rohloff; +Cc: linux-kernel
<sarcasm>
I think your mail is offtopic for linux-kernel: it doesn't mention Microsoft or user space
java programming or pointer to random unrelated web pages, but an actual kernel bug.
</sarcasm>
Ingo Rohloff <rohloff@in.tum.de> writes:
>
> If lo_open doesn't call the cipher lock function and
> lo_release doesn't call the cipher unlock function, the issue
> is resolved. (So code gets deleted in the patch.)
I think it would be better if the low level module stays locked also while the
control fd is open. That would match the semantics of most other devices.
Right fix probably is to call ->lock twice in loop_set_status()
[Also the locking is not SMP safe, but that's a different issue, for the e.g. ->lock
would need to be replaced with a struct module *owner and also some other locking]
-Andi
^ permalink raw reply [flat|nested] 4+ messages in thread
* Loop encryption module locking bug (linux-2.4.5).
@ 2001-06-21 11:50 Ingo Rohloff
2001-06-21 18:19 ` Andreas Dilger
0 siblings, 1 reply; 4+ messages in thread
From: Ingo Rohloff @ 2001-06-21 11:50 UTC (permalink / raw)
To: linux-kernel
[-- Attachment #1: Type: text/plain, Size: 2183 bytes --]
Hi,
There is a bug in the locking scheme for the encryption functions,
which can be hooked into the loop device. I have a patch
which resolves the problem. First what happens:
If you do (for example) a losetup -e twofish /dev/loop0 test.lop
the following happens:
The loop0 device gets opened (to use ioctl after that). Because no cipher
is selected, the loop device hasn't an associated transfer function
(lo->lo_encrypt_type is zero). That means, that lo_open doesn't call a lock
function.
Then you set your password and loop_set_status is called (via ioctl), which
sets lo->lo_encrypt_type to the correct cipher and also calls the
lock function of the cipher.
When this is done, losetup closes the device and lo_release is called.
Now lo->lo_encrypt_type contains the right value and this leads to
calling the unlock function of the appropriate cipher.
After that the cipher isn't locked any more, so you can
rmmod the corresponding cipher, regardless of the fact that
the loop device still has hooks into it.
If lo_open doesn't call the cipher lock function and
lo_release doesn't call the cipher unlock function, the issue
is resolved. (So code gets deleted in the patch.)
xfer_funcs[type]->lock is then called, when a cipher is selected for a
specific loop device. Unlock is called when a cipher is deselected for a
specific loop device. It doesn't matter if the device is opened or
not, which isn't important for the locking anyway.
The patch which is attached, is against linux-2.4.5.
I try to get this patch in the kernel for quite some time, but
it seems I do something wrong (or no one is interested) ?
Perhaps it will go in this time...
so long
Ingo
PS: Because I try to understand the inner workings of the loop
device better, I have a question:
In lo_send is a loop: "while (len>0)". How can I configure
a loop device, so that this loop is executed more than once.
It seems this is only possible if "bh->b_size" is greater
than PAGE_CACHE_SIZE. Does this mean, you have to work on
a filesystem which uses blocks of a size > PAGE_CACHE_SIZE,
or is bh->b_size a fixed value (which is always less than
PAGE_CACHE_SIZE) ?
[-- Attachment #2: loop-lock.patch --]
[-- Type: text/plain, Size: 979 bytes --]
--- drivers/block/loop.c~ Mon Apr 30 17:59:20 2001
+++ drivers/block/loop.c Thu May 31 14:41:01 2001
@@ -864,7 +864,7 @@
static int lo_open(struct inode *inode, struct file *file)
{
struct loop_device *lo;
- int dev, type;
+ int dev;
if (!inode)
return -EINVAL;
@@ -879,10 +879,6 @@
lo = &loop_dev[dev];
MOD_INC_USE_COUNT;
down(&lo->lo_ctl_mutex);
-
- type = lo->lo_encrypt_type;
- if (type && xfer_funcs[type] && xfer_funcs[type]->lock)
- xfer_funcs[type]->lock(lo);
lo->lo_refcnt++;
up(&lo->lo_ctl_mutex);
return 0;
@@ -891,7 +887,7 @@
static int lo_release(struct inode *inode, struct file *file)
{
struct loop_device *lo;
- int dev, type;
+ int dev;
if (!inode)
return 0;
@@ -906,11 +902,7 @@
lo = &loop_dev[dev];
down(&lo->lo_ctl_mutex);
- type = lo->lo_encrypt_type;
--lo->lo_refcnt;
- if (xfer_funcs[type] && xfer_funcs[type]->unlock)
- xfer_funcs[type]->unlock(lo);
-
up(&lo->lo_ctl_mutex);
MOD_DEC_USE_COUNT;
return 0;
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: Loop encryption module locking bug (linux-2.4.5).
2001-06-21 11:50 Ingo Rohloff
@ 2001-06-21 18:19 ` Andreas Dilger
0 siblings, 0 replies; 4+ messages in thread
From: Andreas Dilger @ 2001-06-21 18:19 UTC (permalink / raw)
To: Ingo Rohloff; +Cc: linux-kernel
Ingo Rohloff writes:
> PS: Because I try to understand the inner workings of the loop
> device better, I have a question:
> In lo_send is a loop: "while (len>0)". How can I configure
> a loop device, so that this loop is executed more than once.
> It seems this is only possible if "bh->b_size" is greater
> than PAGE_CACHE_SIZE. Does this mean, you have to work on
> a filesystem which uses blocks of a size > PAGE_CACHE_SIZE,
> or is bh->b_size a fixed value (which is always less than
> PAGE_CACHE_SIZE) ?
Currently, filesystems must have block size <= PAGE_CACHE_SIZE.
This may not be true in the future, so it is likely that the loop
code is "forward looking" to try to still work if the block size
can exceed the PAGE_CACHE_SIZE.
Cheers, Andreas
--
Andreas Dilger \ "If a man ate a pound of pasta and a pound of antipasto,
\ would they cancel out, leaving him still hungry?"
http://www-mddsp.enel.ucalgary.ca/People/adilger/ -- Dogbert
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2001-06-22 15:08 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
[not found] <20010621135043.A13107@lxmayr6.informatik.tu-muenchen.de.suse.lists.linux.kernel>
2001-06-21 12:36 ` Loop encryption module locking bug (linux-2.4.5) Andi Kleen
[not found] ` <3B333180.A804582F@pp.inet.fi>
[not found] ` <20010622135942.A1591@gruyere.muc.suse.de>
2001-06-22 15:08 ` Ingo Rohloff
2001-06-21 11:50 Ingo Rohloff
2001-06-21 18:19 ` Andreas Dilger
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®