[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: zlib bug
Ted U <grendel@heorot.stanford.edu> writes:
> On 12 Mar 2002, Ian D wrote:
>
> > > No, it does not affect OpenBSD because of the superior
> > > malloc (free, to be exact) implementation.
> > > I read /. too and I instantly checked with the man pages.
> >
> > Is OpenBSD as a whole immune to this bug, or just OpenBSD's OpenSSH
> > implementation?
>
> I think immune is a strong word. It's still a bug. But BSD malloc
> implementations are safe for the most part from being exploited.
>
> OpenBSD as a whole, until a few hours ago, was vulnerable to the flaw in
> any program that used libz (I count 7 in /usr/bin) would double free. It
> just so happens that double freeing reports a warning instead of
> corrupting the heap.
That depends on in which order you do the double free.
if it's:
x = malloc();
free(x);
free(x);
Then everything should be safe with phk malloc.
But if it's:
x = malloc();
free(x);
a = malloc();
free(x);
b = malloc();
no malloc implementation will catch that and you have a big risk that
'a' and 'b' will point to the same memory.
I don't know how bad it was in zlib.
//art