This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: misbehaviour with md5_process_bytes and maybe in optimization
- From: Pierre Vittet <piervit at pvittet dot com>
- To: Ian Lance Taylor <iant at google dot com>
- Cc: gcc at gcc dot gnu dot org, Basile Starynkevitch <basile at starynkevitch dot net>, gcc-melt at googlegroups dot com, Alexandre Lissy <alexandre dot lissy at etu dot univ-tours dot fr>, sje at cup dot hp dot com
- Date: Fri, 23 Sep 2011 20:16:40 +0200
- Subject: Re: misbehaviour with md5_process_bytes and maybe in optimization
- References: <4E7C987C.1040505@pvittet.com> <mcr8vpfwauf.fsf@coign.corp.google.com>
Thanks for your interest,
I just checked revision 179127 of GCC. Last revision is 177700, it has
not been change for 6 weeks.
My file is the same as this one:
http://gcc.gnu.org/viewcvs/trunk/libiberty/md5.c?revision=177700&view=markup
in libiberty/md5.c, function md5_process_bytes start line 203.
On 23/09/2011 17:13, Ian Lance Taylor wrote:
> Pierre Vittet <piervit@pvittet.com> writes:
>
>> The bug appears when:
>> 1) We use libiberty compiled with -O0
>> 2) We first call md5_process_bytes with a less than 64 bits buffer (we
>> call his size len1).
>> 3) We make a new call of md5_process_bytes with a buffer which has a
>> size len2 such as:
>> len2 > 127 + 65 (so test in line 228 of md5.C will be true)
line 228 is the following: if (len > 64)
>> 128 -len1 != Mulint with Mulint % __alignof__ (md5_uint32) != 0 (so
>> condition on line 238 is true)
line 238 is the following: if (UNALIGNED_P (buffer))
>> len2 - (128 - len1) = Mul64 and Mul64 such as Mul %64=0 (so the loop of
>> line 239 is broken with len = 64, this leads to the bug as, line 249,
>> (len & ~63) = 64 and we shift the buffer without processing the data).
line 239 is the following: while (len > 64)
line 249: buffer = (const void *) ((const char *) buffer + (len & ~63));
>
> The line numbers you mention do not correspond to any version of
> libiberty/md5.c that I can see. Can you list the exact line for each
> line number you mention, so that your explanation is easier to follow?
> Thanks.
I give about the same explanation in the README (which is in the
attached archive of my previous mail) but I does not use line number but
direct quote of the code. It mights be more easy to try the plugin with
gdb but it needs to compile libiberty.a with -O0.
>
> Ian
>