* Where is ext2/3 secure delete ("s") attribute?
@ 2002-11-21 17:52 Kent Borg
2002-11-21 18:24 ` Jeff Garzik
2002-11-21 19:14 ` Jeff Garzik
0 siblings, 2 replies; 21+ messages in thread
From: Kent Borg @ 2002-11-21 17:52 UTC (permalink / raw)
To: linux-kernel
I happened upon the chattr command and was pleased to see that "s"
means to write zeros (or is it random data?) to the blocks of deleted
files. Cool, except I can't see that it works.
First, deleting a large file with the "s" attribute happens far too
quickly.
Second, I can't see where any of this is implemented in the source
code (as of Red Hat's 2.4.18-17.7.x and straight 2.4.19). The file
fs/ext2/CHANGES talks about how the zero writing was changed to
writing random data--but nothing seems to implement this.
What happened to this feature? Was it too slow or buggy? Did the
Federales force its removal?
(Would this be best implemented as a background scrub and I am missing
a daemon?)
Thanks,
-kb, the Kent who would like to have his notebook not be full of
easily undeletable files.
^ permalink raw reply [flat|nested] 21+ messages in thread
* Where is ext2/3 secure delete ("s") attribute?
@ 2002-11-21 18:20 Marc-Christian Petersen
2002-11-21 22:43 ` Harald Arnesen
0 siblings, 1 reply; 21+ messages in thread
From: Marc-Christian Petersen @ 2002-11-21 18:20 UTC (permalink / raw)
To: linux-kernel; +Cc: Kent Borg
Hi Kent,
> What happened to this feature? Was it too slow or buggy? Did the
> Federales force its removal?
dunno, but:
man 1 chattr:
BUGS AND LIMITATIONS
As of Linux 2.2, the `c', 's', and `u' attribute are not honored
by the kernel filesystem code. These attributes will be implemented in
a future ext2 fs version.
Curious to see when the future is ;)
ciao, Marc
^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: Where is ext2/3 secure delete ("s") attribute?
2002-11-21 17:52 Kent Borg
@ 2002-11-21 18:24 ` Jeff Garzik
2002-11-21 18:39 ` Kent Borg
2002-11-21 19:14 ` Jeff Garzik
1 sibling, 1 reply; 21+ messages in thread
From: Jeff Garzik @ 2002-11-21 18:24 UTC (permalink / raw)
To: Kent Borg; +Cc: linux-kernel
Kent Borg wrote:
> What happened to this feature? Was it too slow or buggy? Did the
> Federales force its removal?
>
> (Would this be best implemented as a background scrub and I am missing
> a daemon?)
man shred(1)
Much better than anything implemented in-kernel
Jeff
^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: Where is ext2/3 secure delete ("s") attribute?
2002-11-21 18:24 ` Jeff Garzik
@ 2002-11-21 18:39 ` Kent Borg
2002-11-21 19:20 ` Alan Cox
0 siblings, 1 reply; 21+ messages in thread
From: Kent Borg @ 2002-11-21 18:39 UTC (permalink / raw)
To: Jeff Garzik; +Cc: linux-kernel
On Thu, Nov 21, 2002 at 01:24:39PM -0500, Jeff Garzik wrote:
> man shred(1)
>
> Much better than anything implemented in-kernel
Yes, but that will only apply to files that I specifically shred. I
hazard that a lot more files than the ones I explicitly "rm" in a day
get deleted by other means. Also, the shred man page even says that
it doesn't know if its "shredding" even happens in the same spot on
disk as the original data resided. It seems this has to happen down
in the file system if there is any hope of it working. And even there
it could use come help from the disk drive to make sure things can be
made to happen where they appear to happen.
-kb
^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: Where is ext2/3 secure delete ("s") attribute?
2002-11-21 19:20 ` Alan Cox
@ 2002-11-21 19:05 ` Kent Borg
2002-11-21 20:28 ` Alan Cox
0 siblings, 1 reply; 21+ messages in thread
From: Kent Borg @ 2002-11-21 19:05 UTC (permalink / raw)
To: Alan Cox; +Cc: Jeff Garzik, Linux Kernel Mailing List
On Thu, Nov 21, 2002 at 07:20:58PM +0000, Alan Cox wrote:
> Flash file systems are very very likely to leave old data around
Another example of why this needs to be done in the file system. (And
that help is sometimes needed from the "disk" particularly in cases
like flash IDE rives.)
And even if done well in ext2/3 it would not likely be flawless.
Still, it seems one of those cases where perfect can be the enemy of
good.
Something tells me that when the s-attribute was abandoned there were
not many Linux notebooks being carried around. What with RAM having
been limited a swap hard on NiCd batteries.
Also, encryption keys can be coerced in many cases where on-going
secure deletion would remain secure. Linux is picking up other
security features, it might be time to revisit this.
-kb, the Kent who is still curious about the history of the
s-attribute even as the thread threatens to drift off.
^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: Where is ext2/3 secure delete ("s") attribute?
2002-11-21 17:52 Kent Borg
2002-11-21 18:24 ` Jeff Garzik
@ 2002-11-21 19:14 ` Jeff Garzik
1 sibling, 0 replies; 21+ messages in thread
From: Jeff Garzik @ 2002-11-21 19:14 UTC (permalink / raw)
To: Kent Borg; +Cc: Alan Cox, Linux Kernel Mailing List
If you _really_ care about this, don't use a system that stores your
bytes unencrypted on the platter. Use a crypto loopback filesystem or
somesuch. Otherwise there will always be info leaks.
^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: Where is ext2/3 secure delete ("s") attribute?
2002-11-21 18:39 ` Kent Borg
@ 2002-11-21 19:20 ` Alan Cox
2002-11-21 19:05 ` Kent Borg
0 siblings, 1 reply; 21+ messages in thread
From: Alan Cox @ 2002-11-21 19:20 UTC (permalink / raw)
To: Kent Borg; +Cc: Jeff Garzik, Linux Kernel Mailing List
On Thu, 2002-11-21 at 18:39, Kent Borg wrote:
> disk as the original data resided. It seems this has to happen down
> in the file system if there is any hope of it working. And even there
> it could use come help from the disk drive to make sure things can be
> made to happen where they appear to happen.
Very real issue. Your IDE and SCSI disks may randomly leave recoverable
data around if they hit a block that is iffy and mark it bad before it
fails. Flash file systems are very very likely to leave old data around
but fortunately are much smaller and therefore easy to encrypt or blank
wholesale (or indeed blowtorch erase 8))
^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: Where is ext2/3 secure delete ("s") attribute?
2002-11-21 19:05 ` Kent Borg
@ 2002-11-21 20:28 ` Alan Cox
0 siblings, 0 replies; 21+ messages in thread
From: Alan Cox @ 2002-11-21 20:28 UTC (permalink / raw)
To: Kent Borg; +Cc: Jeff Garzik, Linux Kernel Mailing List
On Thu, 2002-11-21 at 19:05, Kent Borg wrote:
> Another example of why this needs to be done in the file system. (And
> that help is sometimes needed from the "disk" particularly in cases
> like flash IDE rives.)
The file system can't do it
The flash device won't give you the info to do it
The ide disk wont give you the info to do it
Its possibly a polite hint from the universe to use encryption 8)
^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: Where is ext2/3 secure delete ("s") attribute?
2002-11-21 18:20 Marc-Christian Petersen
@ 2002-11-21 22:43 ` Harald Arnesen
0 siblings, 0 replies; 21+ messages in thread
From: Harald Arnesen @ 2002-11-21 22:43 UTC (permalink / raw)
To: Marc-Christian Petersen; +Cc: linux-kernel, Kent Borg
Marc-Christian Petersen <m.c.p@wolk-project.de> writes:
> BUGS AND LIMITATIONS
> As of Linux 2.2, the `c', 's', and `u' attribute are not honored
> by the kernel filesystem code. These attributes will be implemented in
> a future ext2 fs version.
>
> Curious to see when the future is ;)
Anyway, it would be false security. Any government agency (or IBAS in
Norway) may be able to reconstruct any data on your hd, or they may not.
But you can't know it. So if you _really_ want to have private data on
you computer, strong encryption is the only solution. And be sure that
every temporary file is encrypted!
--
Hilsen Harald.
^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: Where is ext2/3 secure delete ("s") attribute?
@ 2002-11-22 1:22 Albert D. Cahalan
2002-11-22 1:30 ` Jeff Garzik
` (3 more replies)
0 siblings, 4 replies; 21+ messages in thread
From: Albert D. Cahalan @ 2002-11-22 1:22 UTC (permalink / raw)
To: linux-kernel; +Cc: kentborg, alan, jgarzik
Alan Cox writes:
> On Thu, 2002-11-21 at 19:05, Kent Borg wrote:
>> Another example of why this needs to be done in the file system. (And
>> that help is sometimes needed from the "disk" particularly in cases
>> like flash IDE rives.)
>
> The file system can't do it
> The flash device won't give you the info to do it
> The ide disk wont give you the info to do it
That's being an idealist. You can protect against everybody
except the NSA and the disk manufacturer. Most likely they'd
need to spend lots of money in a clean room to get your data.
Forget the shred program. It's less useful than having the
filesystem simply zero the blocks, because it's slow and you
can't be sure to hit the OS-visible blocks. Aside from encryption,
the useful options are:
1. plain old rm (protect from users)
2. filesystem clears the blocks (protect from root/kernel)
3. physically destroy the disk (protect from NSA & manufacturer)
^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: Where is ext2/3 secure delete ("s") attribute?
2002-11-22 1:22 Where is ext2/3 secure delete ("s") attribute? Albert D. Cahalan
@ 2002-11-22 1:30 ` Jeff Garzik
2002-11-22 2:41 ` Albert D. Cahalan
` (2 more replies)
2002-11-22 2:06 ` Mike Dresser
` (2 subsequent siblings)
3 siblings, 3 replies; 21+ messages in thread
From: Jeff Garzik @ 2002-11-22 1:30 UTC (permalink / raw)
To: Albert D. Cahalan; +Cc: linux-kernel, kentborg, alan
Albert D. Cahalan wrote:
> Forget the shred program. It's less useful than having the
> filesystem simply zero the blocks, because it's slow and you
> can't be sure to hit the OS-visible blocks.
Why not?
Please name a filesystem that moves allocated blocks around on you. And
point to code, too.
Jeff
^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: Where is ext2/3 secure delete ("s") attribute?
2002-11-22 1:22 Where is ext2/3 secure delete ("s") attribute? Albert D. Cahalan
2002-11-22 1:30 ` Jeff Garzik
@ 2002-11-22 2:06 ` Mike Dresser
2002-11-22 14:13 ` Jesse Pollard
2002-11-22 21:31 ` Krzysztof Halasa
3 siblings, 0 replies; 21+ messages in thread
From: Mike Dresser @ 2002-11-22 2:06 UTC (permalink / raw)
To: Albert D. Cahalan; +Cc: linux-kernel
On Thu, 21 Nov 2002, Albert D. Cahalan wrote:
> 3. physically destroy the disk (protect from NSA & manufacturer)
And besides, where else can you have the fun of drilling out that stubborn
cover screw, and the fun of bashing up a set of platters with a hammer?
It's almost too bad we don't have any of those glass plattered IBM's, I'd
like ot see how they take a hammer. Maxtor 13.6 gig drives just get
banged up a lot, nothing special like shattering or anything.
I should run a drive over to one of our 400 ton TOS presses, and see if
"pancake thin" is possible.
Mike
^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: Where is ext2/3 secure delete ("s") attribute?
2002-11-22 1:30 ` Jeff Garzik
@ 2002-11-22 2:41 ` Albert D. Cahalan
2002-11-22 4:39 ` Jeff Garzik
2002-11-22 7:12 ` Ingo Oeser
2002-11-22 13:38 ` Alan Cox
2 siblings, 1 reply; 21+ messages in thread
From: Albert D. Cahalan @ 2002-11-22 2:41 UTC (permalink / raw)
To: Jeff Garzik; +Cc: Albert D. Cahalan, linux-kernel, kentborg, alan
Jeff Garzik writes:
> Albert D. Cahalan wrote:
>> Forget the shred program. It's less useful than having the
>> filesystem simply zero the blocks, because it's slow and you
>> can't be sure to hit the OS-visible blocks.
>
> Why not?
>
> Please name a filesystem that moves allocated blocks around on you. And
> point to code, too.
Reiserfs tails
fs/reiserfs
ext3 with data journalling
fs/ext3
the journalling flash filesystems
fs/jffs
fs/jffs2
NTFS with compression
fs/ntfs
Some of these are listed in the shred man page.
Multiple overwrites won't protect you from the disk manufacturer
or the NSA. Only one is needed to protect against root & kernel.
So it makes sense to have the filesystem zero the blocks when
they are freed from a file.
^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: Where is ext2/3 secure delete ("s") attribute?
2002-11-22 2:41 ` Albert D. Cahalan
@ 2002-11-22 4:39 ` Jeff Garzik
2002-11-22 5:55 ` Albert D. Cahalan
0 siblings, 1 reply; 21+ messages in thread
From: Jeff Garzik @ 2002-11-22 4:39 UTC (permalink / raw)
To: Albert D. Cahalan; +Cc: linux-kernel, kentborg, alan
Albert D. Cahalan wrote:
> Jeff Garzik writes:
>
> >Albert D. Cahalan wrote:
>
>
> >>Forget the shred program. It's less useful than having the
> >>filesystem simply zero the blocks, because it's slow and you
> >>can't be sure to hit the OS-visible blocks.
> >
> >Why not?
> >
> >Please name a filesystem that moves allocated blocks around on you. And
> >point to code, too.
>
>
> Reiserfs tails
> fs/reiserfs
inodes don't move
> ext3 with data journalling
> fs/ext3
the allocated blocks don't change
> the journalling flash filesystems
> fs/jffs
> fs/jffs2
yep
> NTFS with compression
> fs/ntfs
the allocated blocks don't change
> Multiple overwrites won't protect you from the disk manufacturer
> or the NSA. Only one is needed to protect against root & kernel.
> So it makes sense to have the filesystem zero the blocks when
> they are freed from a file.
if you need to protect against root, then zeroing the blocks isn't going
to help for LVM or jffs or other journalling.
Jeff
^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: Where is ext2/3 secure delete ("s") attribute?
2002-11-22 4:39 ` Jeff Garzik
@ 2002-11-22 5:55 ` Albert D. Cahalan
0 siblings, 0 replies; 21+ messages in thread
From: Albert D. Cahalan @ 2002-11-22 5:55 UTC (permalink / raw)
To: Jeff Garzik; +Cc: Albert D. Cahalan, linux-kernel, kentborg, alan
Jeff Garzik writes:
> Albert D. Cahalan wrote:
>> Jeff Garzik writes:
>>> Please name a filesystem that moves allocated blocks around
>>> on you. And point to code, too.
>>
>> Reiserfs tails
>> fs/reiserfs
>
> inodes don't move
In that case I suppose you could iterate through all possible
tail sizes. In any case, Reiserfs 4 is coming. Reiserfs 4 shifts
the tree all over.
>> ext3 with data journalling
>> fs/ext3
>
> the allocated blocks don't change
Same effect though: only the filesystem driver can know how
to overwrite a file.
>> the journalling flash filesystems
>> fs/jffs
>> fs/jffs2
>
> yep
>
>> NTFS with compression
>> fs/ntfs
>
> the allocated blocks don't change
They must. I suppose that might not be implemented yet.
>> Multiple overwrites won't protect you from the disk manufacturer
>> or the NSA. Only one is needed to protect against root & kernel.
>> So it makes sense to have the filesystem zero the blocks when
>> they are freed from a file.
>
> if you need to protect against root, then zeroing the blocks isn't
> going to help for LVM or jffs or other journalling.
By "protect against root" of course I mean a future cracked box
or the drive put into another machine.
LVM has to cooperate. If it can't, then that's a bug. Snapshots
count the same as keeping backups on separate media. Likewise,
fsck and defraggers need to cooperate.
^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: Where is ext2/3 secure delete ("s") attribute?
2002-11-22 1:30 ` Jeff Garzik
2002-11-22 2:41 ` Albert D. Cahalan
@ 2002-11-22 7:12 ` Ingo Oeser
2002-11-22 13:38 ` Alan Cox
2 siblings, 0 replies; 21+ messages in thread
From: Ingo Oeser @ 2002-11-22 7:12 UTC (permalink / raw)
To: Jeff Garzik; +Cc: Albert D. Cahalan, linux-kernel, kentborg, alan
On Thu, Nov 21, 2002 at 08:30:35PM -0500, Jeff Garzik wrote:
> Please name a filesystem that moves allocated blocks around on you. And
> point to code, too.
TUX2 from Daniel Phillips. No in kernel and might not ever be,
buts a good argument, because there it is by design ;-)
Regards
Ingo Oeser
--
Science is what we can tell a computer. Art is everything else. --- D.E.Knuth
^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: Where is ext2/3 secure delete ("s") attribute?
2002-11-22 13:38 ` Alan Cox
@ 2002-11-22 13:27 ` Nikita Danilov
0 siblings, 0 replies; 21+ messages in thread
From: Nikita Danilov @ 2002-11-22 13:27 UTC (permalink / raw)
To: Alan Cox
Cc: Jeff Garzik, Albert D. Cahalan, Linux Kernel Mailing List,
kentborg
Alan Cox writes:
> On Fri, 2002-11-22 at 01:30, Jeff Garzik wrote:
> > Albert D. Cahalan wrote:
> >
> > > Forget the shred program. It's less useful than having the
> > > filesystem simply zero the blocks, because it's slow and you
> > > can't be sure to hit the OS-visible blocks.
> >
> >
> > Why not?
> >
> > Please name a filesystem that moves allocated blocks around on you. And
> > point to code, too.
>
> Anything on IDE or SCSI or Flash. Just its done below you
Journalling file systems also may leave copies of data in the journal area(s).
>
Nikita.
^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: Where is ext2/3 secure delete ("s") attribute?
2002-11-22 1:30 ` Jeff Garzik
2002-11-22 2:41 ` Albert D. Cahalan
2002-11-22 7:12 ` Ingo Oeser
@ 2002-11-22 13:38 ` Alan Cox
2002-11-22 13:27 ` Nikita Danilov
2 siblings, 1 reply; 21+ messages in thread
From: Alan Cox @ 2002-11-22 13:38 UTC (permalink / raw)
To: Jeff Garzik; +Cc: Albert D. Cahalan, Linux Kernel Mailing List, kentborg
On Fri, 2002-11-22 at 01:30, Jeff Garzik wrote:
> Albert D. Cahalan wrote:
>
> > Forget the shred program. It's less useful than having the
> > filesystem simply zero the blocks, because it's slow and you
> > can't be sure to hit the OS-visible blocks.
>
>
> Why not?
>
> Please name a filesystem that moves allocated blocks around on you. And
> point to code, too.
Anything on IDE or SCSI or Flash. Just its done below you
^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: Where is ext2/3 secure delete ("s") attribute?
2002-11-22 1:22 Where is ext2/3 secure delete ("s") attribute? Albert D. Cahalan
2002-11-22 1:30 ` Jeff Garzik
2002-11-22 2:06 ` Mike Dresser
@ 2002-11-22 14:13 ` Jesse Pollard
2002-11-22 21:31 ` Krzysztof Halasa
3 siblings, 0 replies; 21+ messages in thread
From: Jesse Pollard @ 2002-11-22 14:13 UTC (permalink / raw)
To: Albert D. Cahalan, linux-kernel; +Cc: kentborg, alan, jgarzik
On Thursday 21 November 2002 07:22 pm, Albert D. Cahalan wrote:
> Alan Cox writes:
> > On Thu, 2002-11-21 at 19:05, Kent Borg wrote:
> >> Another example of why this needs to be done in the file system. (And
> >> that help is sometimes needed from the "disk" particularly in cases
> >> like flash IDE rives.)
> >
> > The file system can't do it
> > The flash device won't give you the info to do it
> > The ide disk wont give you the info to do it
>
> That's being an idealist. You can protect against everybody
> except the NSA and the disk manufacturer. Most likely they'd
> need to spend lots of money in a clean room to get your data.
incomplete list....
NSA
DoD
Homeland Defense gestapo
disk manufacturer
anybody willing to spend about $1000-$5000.
And I'm not sure it is impossible to just reset the bad block list either.
I've been able to do that to SCSI drives in the past, so I think it is
still possible to do.
> Forget the shred program. It's less useful than having the
> filesystem simply zero the blocks, because it's slow and you
> can't be sure to hit the OS-visible blocks. Aside from encryption,
> the useful options are:
>
> 1. plain old rm (protect from users)
> 2. filesystem clears the blocks (protect from root/kernel)
> 3. physically destroy the disk (protect from NSA & manufacturer)
--
-------------------------------------------------------------------------
Jesse I Pollard, II
Email: pollard@navo.hpc.mil
Any opinions expressed are solely my own.
^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: Where is ext2/3 secure delete ("s") attribute?
2002-11-22 1:22 Where is ext2/3 secure delete ("s") attribute? Albert D. Cahalan
` (2 preceding siblings ...)
2002-11-22 14:13 ` Jesse Pollard
@ 2002-11-22 21:31 ` Krzysztof Halasa
3 siblings, 0 replies; 21+ messages in thread
From: Krzysztof Halasa @ 2002-11-22 21:31 UTC (permalink / raw)
To: linux-kernel
"Albert D. Cahalan" <acahalan@cs.uml.edu> writes:
> Forget the shred program. It's less useful than having the
> filesystem simply zero the blocks, because it's slow and you
> can't be sure to hit the OS-visible blocks. Aside from encryption,
> the useful options are:
>
> 1. plain old rm (protect from users)
> 2. filesystem clears the blocks (protect from root/kernel)
It won't protect you from the root. If you need protection from root,
be a root on your own machine. And be sure your unencrypted data, keys
etc. never make it to/through any hostile system.
--
Krzysztof Halasa
Network Administrator
^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: Where is ext2/3 secure delete ("s") attribute?
@ 2002-11-24 6:40 Albert D. Cahalan
0 siblings, 0 replies; 21+ messages in thread
From: Albert D. Cahalan @ 2002-11-24 6:40 UTC (permalink / raw)
To: khc; +Cc: linux-kernel
Krzysztof Halasa writes:
> "Albert D. Cahalan" <acahalan@cs.uml.edu> writes:
>> Forget the shred program. It's less useful than having the
>> filesystem simply zero the blocks, because it's slow and you
>> can't be sure to hit the OS-visible blocks. Aside from encryption,
>> the useful options are:
>>
>> 1. plain old rm (protect from users)
>> 2. filesystem clears the blocks (protect from root/kernel)
>
> It won't protect you from the root.
Sure it will. Like this:
1. you're a user, possibly root, on your own machine
2. you zero the disk blocks of a file
3. somebody cracks root
4. they look for the file -- not there
5. they read /dev/hda to find the data -- not there
6. they modify the kernel -- nope, data still not there
As long as nobody physically opens the drive, it would take some
seriously bad luck involving bad sectors to make your data at all
vulnerable... to somebody with drive manufacturer trade secrets.
If this worries you, destroy the drive and/or make an appointment
with your mental health professional.
Nothing counts if root is already malicious, so that issue
wasn't being addressed. You'd have keyboard snooping,
encryption tools that save a copy, man-in-the middle attacks
on everything... forget it. It's not worth discussing.
^ permalink raw reply [flat|nested] 21+ messages in thread
end of thread, other threads:[~2002-11-24 6:33 UTC | newest]
Thread overview: 21+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-11-22 1:22 Where is ext2/3 secure delete ("s") attribute? Albert D. Cahalan
2002-11-22 1:30 ` Jeff Garzik
2002-11-22 2:41 ` Albert D. Cahalan
2002-11-22 4:39 ` Jeff Garzik
2002-11-22 5:55 ` Albert D. Cahalan
2002-11-22 7:12 ` Ingo Oeser
2002-11-22 13:38 ` Alan Cox
2002-11-22 13:27 ` Nikita Danilov
2002-11-22 2:06 ` Mike Dresser
2002-11-22 14:13 ` Jesse Pollard
2002-11-22 21:31 ` Krzysztof Halasa
-- strict thread matches above, loose matches on Subject: below --
2002-11-24 6:40 Albert D. Cahalan
2002-11-21 18:20 Marc-Christian Petersen
2002-11-21 22:43 ` Harald Arnesen
2002-11-21 17:52 Kent Borg
2002-11-21 18:24 ` Jeff Garzik
2002-11-21 18:39 ` Kent Borg
2002-11-21 19:20 ` Alan Cox
2002-11-21 19:05 ` Kent Borg
2002-11-21 20:28 ` Alan Cox
2002-11-21 19:14 ` Jeff Garzik
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.