mem stomp in cpplib.c?
Robert Lipe
robertl@sco.com
Wed Jul 5 08:23:00 GMT 2000
This results in cpp coring:
$ > /tmp/x.c
$ ./cpp -Amachine\(i386\) -Acpu\(i386\) /tmp/x.c
The offending code looks to be in cpplib.c:1330.
*answerp = answer;
len = predicate->val.name.len + 1;
sym = alloca (len);
/* Prefix '#' to get it out of macro namespace. */
sym[0] = '#';
memcpy (sym + 1, predicate->val.name.text, len);
return cpp_lookup (pfile, sym, len);
error:
'sym' holds 'len' bytes of storage. We then copy 'len' bytes of storage
starting at 'sym+1'. So we have a tiny little stack overwrite here.
The obvious thing of adding 1 to the size of the allocated buffer cures
this testcase.
RJL
More information about the Gcc
mailing list