Menu

#483 expat: buffer over-read and crash in big2_toUtf8()

Test Required
closed-fixed
None
5
2016-03-11
2009-11-08
No

Hello SourceForge expat maintainers,

originally CVE-2009-3720 was reported in expat:
[1] http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2009-3720

Non-public, original bug report for CVE-2009-3720:
[2] http://sourceforge.net/tracker/?func=detail&aid=1990430&group_id=10127&atid=110127

And relevant patch for CVE-2009-3720:
[3] http://expat.cvs.sourceforge.net/viewvc/expat/expat/lib/xmltok_impl.c?r1=1.13&r2=1.15&view=patch

While the above patch [3] solves the issue in expat itself and in various other packages
(PyXML, 4Suite), which embed expat, or when called via perl-XML-Parser-Expat, it does
not help,when using the same reproducer via perl-XML-Twig module. In this case the
crash (buffer overread) occurs in expat's big2_toUtf8 () routine - more exactly in
DEFINE_UTF16_TO_UTF8(big2_) macro in lib/xmltok.c:626.

Have investigated the issue in more detail, and assuming the crash occurs in
540 E ## toUtf8(const ENCODING *enc, \...) routine, as present in
expat-2.0.1/lib/xmltok.c (at line 540).

Assuming the problematic line of the code is this one (lib/xmltok.c):

545 for (from = *fromP; from != fromLim; from += 2) { \

'from' represents pointer to the start of XML data, we are about to
parse, 'fromLim' represents upper bound - point, where parsing
should end. In each pass of the for loop we increment 'from'
value by two (because on lines:

548 unsigned char lo = GET_LO(from); \ 549 unsigned char hi = GET_HI(from); \

we consumed both parts of from). This works perfect,
when addresses of 'from' and 'fromLim' are aligned,
i.e. both are multiple of '2'. But the problem arises,
when 'fromLim' has not value dividable by two
(for example 165218551) - in that case, 'from' value
can't never equal to 'fromLim' value (in last round
== 'fromLim - 1', so we increment it by two, but
now we already 'skipped' it from == fromLim + 1,
and keep incrementing it (in the effort to reach
from == fromLim condition) in an infinite loop,
till the operating system recognizes we tried to
access memory location, which doesn't belong
to us and kills the process.

Discussion

  • Jan Lieskovsky

    Jan Lieskovsky - 2009-11-08

    Here is my further issue analysis (some of the information might be duplicate, but there is also additional one):

    While running "perl XML-Parser-Expat.pl" reports error on fixed
    CVE-2009-3720 expat packages, running "perl XML-Twig.pl" still crashes:

    $ perl XML-Twig.pl
    Segmentation fault (core dumped)

    gdb output:
    ...
    Core was generated by `perl XML-Twig.pl'.
    Program terminated with signal 11, Segmentation fault.
    [New process 23957]
    #0 0x009e9cb9 in big2_toUtf8 (enc=0xa00900, fromP=0xbffa17b0,
    fromLim=0x8ceca2f "", toP=0xbffa179c, toLim=0x88115f4 "\201") at
    lib/xmltok.c:634
    634 DEFINE_UTF16_TO_UTF8(big2_)

    The problem is present in expat-2.0.1/lib/xmltok.c in toUtf8() macro:

    538 #define DEFINE_UTF16_TO_UTF8(E) \ 539 static void PTRCALL \ 540 E ## toUtf8(const ENCODING *enc, \ 541 const char **fromP, const char *fromLim, \ 542 char **toP, const char *toLim) \ 543 { \ 544 const char *from; \ 545 for (from = *fromP; from != fromLim; from += 2) { \ 546 int plane; \ 547 unsigned char lo2; \ 548 unsigned char lo = GET_LO(from); \ 549 unsigned char hi = GET_HI(from); \ 550 switch (hi) { \ 551 case 0: \ 552 if (lo < 0x80) { \ 553 if (*toP == toLim) { \ 554 *fromP = from; \ 555 return; \ 556 } \ 557 *(*toP)++ = lo; \ 558 break; \ 559 } \ 560 /* fall through */ \ 561 case 0x1: case 0x2: case 0x3: \ 562 case 0x4: case 0x5: case 0x6: case 0x7: \ 563 if (toLim - *toP < 2) { \ 564 *fromP = from; \ 565 return; \ 566 } \ 567 *(*toP)++ = ((lo >> 6) | (hi << 2) | UTF8_cval2); \ 568 *(*toP)++ = ((lo & 0x3f) | 0x80); \ 569 break; \ 570 default: \ 571 if (toLim - *toP < 3) { \ 572 *fromP = from; \ 573 return; \ 574 } \

    "from" should point to start of the data and "fromLim" represents upper
    bound till above for cycle should loop. In each pass of the for loop,
    we increment the "from" value by 2 because we have already eaten its
    both parts:

    548 unsigned char lo = GET_LO(from); \ 549 unsigned char hi = GET_HI(from); \

    and can move further. But the problem arises, when the address of "fromLim"
    is not aligned with the address of "from", i.e. it's not multiple of two.
    In that case (assume from == fromLim -1) we will increment from value
    (because it != fromLim) but cross the limit value for the "fromLim" and
    end up in an infinite loop till the OS recognizes buffer over read and
    kills the process.

    Running "perl XML-Twig.pl" demonstrates this issue.

    Patched expat-2.0.1 to be more verbose which branch the code went through,
    and after finding out that by processing "pythontest1.xml" it loops in
    "case 0:" for "hi", added functions to print out the values of "from" and
    "fromLim" variables. Here is the output:

    fromLim (end) has value = 165218551
    from has value = 165218548
    Went by default branch
    fromLim (end) has value = 165218551
    from has value = 165218552
    fromLim (end) has value = 165218551
    from has value = 165218554
    ...
    from has value = 165416942
    fromLim (end) has value = 165218551
    from has value = 165416944
    seg fault

    So at startup from < fromLim, we increment from with 2, so the distance
    is < 3 -> we go to "default:" break part ("Went by the default branch"),
    detect "from" still isn't equal to "fromLim" and increment "from" value
    again by two. From now we end up in endless loop, killed by OS.

    Further note:
    -------------
    When you add one more characted (even space) into 'pythontest1.xml',
    save it and try to process it again - syntax error by processing XML
    file is reported:

    $ perl XML-Twig.pl

    syntax error at line 1, column 1, byte 2 at
    /usr/lib/perl5/vendor_perl/5.10.0/i386-linux-thread-multi/XML/Parser.pm line
    187
    at XML-Twig.pl line 4
    at XML-Twig.pl line 4

     
  • Jan Lieskovsky

    Jan Lieskovsky - 2009-11-08

    Reproducer:

    The invalid XML file, containing UTF-8 character, the crash occurs on, can be retrieved from:

    https://bugzilla.redhat.com/attachment.cgi?id=366572

    To reproduce the crash, create XML-Twig.pl script in the form of:

    use XML::Twig;

    my $twig=XML::Twig->new(); # create the twig
    $twig->parsefile('pythontest1.xml'); # build it
    #my_process( $twig); # my_process isn't valid XML::Twig routine, so let this commented out
    #$twig->print; # output the twig

    And run the reproducer as:

    perl XML-Twig.pl ->
    Segmentation fault (core dumped)

    Investigating the crash in gdb leads to:
    # gdb /usr/bin/perl core.28422
    ...
    Core was generated by `perl XML-Twig.pl'.
    Program terminated with signal 11, Segmentation fault.
    [New process 28422]
    #0 0x00fcd76f in big2_toUtf8 (enc=0xfdf860, fromP=0xbf8c57ac, fromLim=0x9c8bb4b "", toP=0xbf8c57bc, toLim=0x9868a28 "\005") at lib/xmltok.c:626
    626 DEFINE_UTF16_TO_UTF8(big2_)

    (gdb) bt
    #0 0x00fcd76f in big2_toUtf8 (enc=0xfdf860, fromP=0xbf8c57ac, fromLim=0x9c8bb4b "", toP=0xbf8c57bc, toLim=0x9868a28 "\005") at lib/xmltok.c:626
    #1 0x00fc1ac8 in reportDefault (parser=0x982cac8, enc=0xfdf860, s=0x9cabb3e "", end=0x9c8bb4b "") at lib/xmlparse.c:5128
    #2 0x00fc7f2a in doProlog (parser=0x982cac8, enc=0xfdf860, s=0x9c8bb48 "", end=0x9c8bb4b "", tok=-15, next=0x9c8bb4b "", nextPtr=0x982cae0,
    haveMore=0 '\0') at lib/xmlparse.c:4497
    #3 0x00fc9d05 in prologProcessor (parser=0x982cac8, s=0x9c8bb48 "", end=0x9c8bb4b "", nextPtr=0x982cae0) at lib/xmlparse.c:3551
    #4 0x00fc150b in XML_ParseBuffer (parser=0x982cac8, len=0, isFinal=1) at lib/xmlparse.c:1562
    #5 0x007d1f35 in ?? () from /usr/lib/perl5/vendor_perl/5.8.8/i386-linux-thread-multi/auto/XML/Parser/Expat/Expat.so
    #6 0x007d2ab4 in XS_XML__Parser__Expat_ParseStream () from /usr/lib/perl5/vendor_perl/5.8.8/i386-linux-thread-multi/auto/XML/Parser/Expat/Expat.so
    #7 0x065ad51d in Perl_pp_entersub () from /usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE/libperl.so
    #8 0x065a698f in Perl_runops_standard () from /usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE/libperl.so
    #9 0x0654c20e in perl_run () from /usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE/libperl.so
    #10 0x0804921e in main ()

     
  • Jan Lieskovsky

    Jan Lieskovsky - 2009-11-08

    To verify, the issue isn't present in / it isn't fault ot XML-Parser-Expat create following XML-Parser-Expat.pl file:

    use XML::Parser::Expat;

    $parser = new XML::Parser::Expat;
    $parser->setHandlers('Start' => \&sh,
    'End' => \&eh,
    'Char' => \&ch);
    #open(FOO, 'pythontest1.xml') or die "Couldn't open";
    #$parser->parse(*FOO);
    $parser->parsefile('pythontest1.xml');
    close(FOO);

    and run it as:

    perl XML-Parser-Expat.pl

    This results in:

    # perl XML-Parser-Expat.pl

    no element found at line 2, column 1, byte 3 at XML-Parser-Expat.pl line 9

    Further note:
    -----------------
    Even when you modify mentioned 'pythontest1.xml' file, i.e. add one more character
    to it, it's properly parsed by expat (in this case 'from' and 'fromLim' addresses are
    aligned so the parsing ends 'in finite time'):

    Added "a" characted at the end of pythontest1.xml (i.e. it looks like ^@a). This returns:

    # perl XML-Twig.pl

    syntax error at line 1, column 0, byte 0 at /usr/lib/perl5/vendor_perl/5.8.8/i386-linux-thread-multi/XML/Parser.pm line 187

     
  • Jan Lieskovsky

    Jan Lieskovsky - 2009-11-08

    Here is the valgrind output (proving it's buffer over-read) in the moment of crash:

    ==28534== Memcheck, a memory error detector.
    ==28534== Copyright (C) 2002-2006, and GNU GPL'd, by Julian Seward et al.
    ==28534== Using LibVEX rev 1658, a library for dynamic binary translation.
    ==28534== Copyright (C) 2004-2006, and GNU GPL'd, by OpenWorks LLP.
    ==28534== Using valgrind-3.2.1, a dynamic binary instrumentation framework.
    ==28534== Copyright (C) 2000-2006, and GNU GPL'd, by Julian Seward et al.
    ==28534== For more details, rerun with: -v
    ==28534==
    ==28534== Conditional jump or move depends on uninitialised value(s)
    ==28534== at 0x457077C: big2_toUtf8 (xmltok.c:626)
    ==28534== by 0x4564AC7: reportDefault (xmlparse.c:5128)
    ==28534== by 0x456AF29: doProlog (xmlparse.c:4497)
    ==28534== by 0x456CD04: prologProcessor (xmlparse.c:3551)
    ==28534== by 0x456450A: XML_ParseBuffer (xmlparse.c:1562)
    ==28534== by 0x400EF34: (within /usr/lib/perl5/vendor_perl/5.8.8/i386-linux-thread-multi/auto/XML/Parser/Expat/Expat.so)
    ==28534== by 0x400FAB3: XS_XML__Parser__Expat_ParseStream (in /usr/lib/perl5/vendor_perl/5.8.8/i386-linux-thread-multi/auto/XML/Parser/Expat/Expat.so)
    ==28534== by 0x65AD51C: Perl_pp_entersub (in /usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE/libperl.so)
    ==28534== by 0x65A698E: Perl_runops_standard (in /usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE/libperl.so)
    ==28534== by 0x654C20D: perl_run (in /usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE/libperl.so)
    ==28534== by 0x804921D: main (in /usr/bin/perl)
    ==28534==
    ==28534== Conditional jump or move depends on uninitialised value(s)
    ==28534== at 0x4570733: big2_toUtf8 (xmltok.c:626)
    ==28534== by 0x4564AC7: reportDefault (xmlparse.c:5128)
    ==28534== by 0x456AF29: doProlog (xmlparse.c:4497)
    ==28534== by 0x456CD04: prologProcessor (xmlparse.c:3551)
    ==28534== by 0x456450A: XML_ParseBuffer (xmlparse.c:1562)
    ==28534== by 0x400EF34: (within /usr/lib/perl5/vendor_perl/5.8.8/i386-linux-thread-multi/auto/XML/Parser/Expat/Expat.so)
    ==28534== by 0x400FAB3: XS_XML__Parser__Expat_ParseStream (in /usr/lib/perl5/vendor_perl/5.8.8/i386-linux-thread-multi/auto/XML/Parser/Expat/Expat.so)
    ==28534== by 0x65AD51C: Perl_pp_entersub (in /usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE/libperl.so)
    ==28534== by 0x65A698E: Perl_runops_standard (in /usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE/libperl.so)
    ==28534== by 0x654C20D: perl_run (in /usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE/libperl.so)
    ==28534== by 0x804921D: main (in /usr/bin/perl)
    ==28534==
    ==28534== Conditional jump or move depends on uninitialised value(s)
    ==28534== at 0x4570740: big2_toUtf8 (xmltok.c:626)
    ==28534== by 0x4564AC7: reportDefault (xmlparse.c:5128)
    ==28534== by 0x456AF29: doProlog (xmlparse.c:4497)
    ==28534== by 0x456CD04: prologProcessor (xmlparse.c:3551)
    ==28534== by 0x456450A: XML_ParseBuffer (xmlparse.c:1562)
    ==28534== by 0x400EF34: (within /usr/lib/perl5/vendor_perl/5.8.8/i386-linux-thread-multi/auto/XML/Parser/Expat/Expat.so)
    ==28534== by 0x400FAB3: XS_XML__Parser__Expat_ParseStream (in /usr/lib/perl5/vendor_perl/5.8.8/i386-linux-thread-multi/auto/XML/Parser/Expat/Expat.so)
    ==28534== by 0x65AD51C: Perl_pp_entersub (in /usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE/libperl.so)
    ==28534== by 0x65A698E: Perl_runops_standard (in /usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE/libperl.so)
    ==28534== by 0x654C20D: perl_run (in /usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE/libperl.so)
    ==28534== by 0x804921D: main (in /usr/bin/perl)
    ==28534==
    ==28534== Conditional jump or move depends on uninitialised value(s)
    ==28534== at 0x660AAB5: Perl_utf8n_to_uvuni (in /usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE/libperl.so)
    ==28534== by 0x6600CB1: (within /usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE/libperl.so)
    ==28534== by 0x6604DB4: (within /usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE/libperl.so)
    ==28534== by 0x66094E0: Perl_regexec_flags (in /usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE/libperl.so)
    ==28534== by 0x65AB011: Perl_pp_match (in /usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE/libperl.so)
    ==28534== by 0x65A698E: Perl_runops_standard (in /usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE/libperl.so)
    ==28534== by 0x654703D: (within /usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE/libperl.so)
    ==28534== by 0x654B79F: Perl_call_sv (in /usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE/libperl.so)
    ==28534== by 0x4016E7E: (within /usr/lib/perl5/vendor_perl/5.8.8/i386-linux-thread-multi/auto/XML/Parser/Expat/Expat.so)
    ==28534== by 0x4564AE8: reportDefault (xmlparse.c:5130)
    ==28534== by 0x456AF29: doProlog (xmlparse.c:4497)
    ==28534== by 0x456CD04: prologProcessor (xmlparse.c:3551)
    ==28534==
    ==28534== Conditional jump or move depends on uninitialised value(s)
    ==28534== at 0x6600CB4: (within /usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE/libperl.so)
    ==28534== by 0x6604DB4: (within /usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE/libperl.so)
    ==28534== by 0x66094E0: Perl_regexec_flags (in /usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE/libperl.so)
    ==28534== by 0x65AB011: Perl_pp_match (in /usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE/libperl.so)
    ==28534== by 0x65A698E: Perl_runops_standard (in /usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE/libperl.so)
    ==28534== by 0x654703D: (within /usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE/libperl.so)
    ==28534== by 0x654B79F: Perl_call_sv (in /usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE/libperl.so)
    ==28534== by 0x4016E7E: (within /usr/lib/perl5/vendor_perl/5.8.8/i386-linux-thread-multi/auto/XML/Parser/Expat/Expat.so)
    ==28534== by 0x4564AE8: reportDefault (xmlparse.c:5130)
    ==28534== by 0x456AF29: doProlog (xmlparse.c:4497)
    ==28534== by 0x456CD04: prologProcessor (xmlparse.c:3551)
    ==28534== by 0x456450A: XML_ParseBuffer (xmlparse.c:1562)
    ==28534==
    ==28534== Invalid read of size 1
    ==28534== at 0x457076F: big2_toUtf8 (xmltok.c:626)
    ==28534== by 0x4564AC7: reportDefault (xmlparse.c:5128)
    ==28534== by 0x456AF29: doProlog (xmlparse.c:4497)
    ==28534== by 0x456CD04: prologProcessor (xmlparse.c:3551)
    ==28534== by 0x456450A: XML_ParseBuffer (xmlparse.c:1562)
    ==28534== by 0x400EF34: (within /usr/lib/perl5/vendor_perl/5.8.8/i386-linux-thread-multi/auto/XML/Parser/Expat/Expat.so)
    ==28534== by 0x400FAB3: XS_XML__Parser__Expat_ParseStream (in /usr/lib/perl5/vendor_perl/5.8.8/i386-linux-thread-multi/auto/XML/Parser/Expat/Expat.so)
    ==28534== by 0x65AD51C: Perl_pp_entersub (in /usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE/libperl.so)
    ==28534== by 0x65A698E: Perl_runops_standard (in /usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE/libperl.so)
    ==28534== by 0x654C20D: perl_run (in /usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE/libperl.so)
    ==28534== by 0x804921D: main (in /usr/bin/perl)
    ==28534== Address 0x4E676A0 is 0 bytes after a block of size 65,536 alloc'd
    ==28534== at 0x40053C0: malloc (vg_replace_malloc.c:149)
    ==28534== by 0x6595C1E: Perl_safesysmalloc (in /usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE/libperl.so)
    ==28534== by 0x4015A3C: (within /usr/lib/perl5/vendor_perl/5.8.8/i386-linux-thread-multi/auto/XML/Parser/Expat/Expat.so)
    ==28534== by 0x4566262: XML_GetBuffer (xmlparse.c:1634)
    ==28534== by 0x400EE5C: (within /usr/lib/perl5/vendor_perl/5.8.8/i386-linux-thread-multi/auto/XML/Parser/Expat/Expat.so)
    ==28534== by 0x400FAB3: XS_XML__Parser__Expat_ParseStream (in /usr/lib/perl5/vendor_perl/5.8.8/i386-linux-thread-multi/auto/XML/Parser/Expat/Expat.so)
    ==28534== by 0x65AD51C: Perl_pp_entersub (in /usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE/libperl.so)
    ==28534== by 0x65A698E: Perl_runops_standard (in /usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE/libperl.so)
    ==28534== by 0x654C20D: perl_run (in /usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE/libperl.so)
    ==28534== by 0x804921D: main (in /usr/bin/perl)
    ==28534==
    ==28534== Invalid read of size 1
    ==28534== at 0x4570772: big2_toUtf8 (xmltok.c:626)
    ==28534== by 0x4564AC7: reportDefault (xmlparse.c:5128)
    ==28534== by 0x456AF29: doProlog (xmlparse.c:4497)
    ==28534== by 0x456CD04: prologProcessor (xmlparse.c:3551)
    ==28534== by 0x456450A: XML_ParseBuffer (xmlparse.c:1562)
    ==28534== by 0x400EF34: (within /usr/lib/perl5/vendor_perl/5.8.8/i386-linux-thread-multi/auto/XML/Parser/Expat/Expat.so)
    ==28534== by 0x400FAB3: XS_XML__Parser__Expat_ParseStream (in /usr/lib/perl5/vendor_perl/5.8.8/i386-linux-thread-multi/auto/XML/Parser/Expat/Expat.so)
    ==28534== by 0x65AD51C: Perl_pp_entersub (in /usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE/libperl.so)
    ==28534== by 0x65A698E: Perl_runops_standard (in /usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE/libperl.so)
    ==28534== by 0x654C20D: perl_run (in /usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE/libperl.so)
    ==28534== by 0x804921D: main (in /usr/bin/perl)
    ==28534== Address 0x4E676A1 is 1 bytes after a block of size 65,536 alloc'd
    ==28534== at 0x40053C0: malloc (vg_replace_malloc.c:149)
    ==28534== by 0x6595C1E: Perl_safesysmalloc (in /usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE/libperl.so)
    ==28534== by 0x4015A3C: (within /usr/lib/perl5/vendor_perl/5.8.8/i386-linux-thread-multi/auto/XML/Parser/Expat/Expat.so)
    ==28534== by 0x4566262: XML_GetBuffer (xmlparse.c:1634)
    ==28534== by 0x400EE5C: (within /usr/lib/perl5/vendor_perl/5.8.8/i386-linux-thread-multi/auto/XML/Parser/Expat/Expat.so)
    ==28534== by 0x400FAB3: XS_XML__Parser__Expat_ParseStream (in /usr/lib/perl5/vendor_perl/5.8.8/i386-linux-thread-multi/auto/XML/Parser/Expat/Expat.so)
    ==28534== by 0x65AD51C: Perl_pp_entersub (in /usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE/libperl.so)
    ==28534== by 0x65A698E: Perl_runops_standard (in /usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE/libperl.so)
    ==28534== by 0x654C20D: perl_run (in /usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE/libperl.so)
    ==28534== by 0x804921D: main (in /usr/bin/perl)
    ==28534==
    ==28534== Invalid read of size 1
    ==28534== at 0x4570891: big2_toUtf8 (xmltok.c:626)
    ==28534== by 0x4564AC7: reportDefault (xmlparse.c:5128)
    ==28534== by 0x456AF29: doProlog (xmlparse.c:4497)
    ==28534== by 0x456CD04: prologProcessor (xmlparse.c:3551)
    ==28534== by 0x456450A: XML_ParseBuffer (xmlparse.c:1562)
    ==28534== by 0x400EF34: (within /usr/lib/perl5/vendor_perl/5.8.8/i386-linux-thread-multi/auto/XML/Parser/Expat/Expat.so)
    ==28534== by 0x400FAB3: XS_XML__Parser__Expat_ParseStream (in /usr/lib/perl5/vendor_perl/5.8.8/i386-linux-thread-multi/auto/XML/Parser/Expat/Expat.so)
    ==28534== by 0x65AD51C: Perl_pp_entersub (in /usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE/libperl.so)
    ==28534== by 0x65A698E: Perl_runops_standard (in /usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE/libperl.so)
    ==28534== by 0x654C20D: perl_run (in /usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE/libperl.so)
    ==28534== by 0x804921D: main (in /usr/bin/perl)
    ==28534== Address 0x4E83005 is not stack'd, malloc'd or (recently) free'd
    ==28534==
    ==28534== Invalid read of size 1
    ==28534== at 0x45708B0: big2_toUtf8 (xmltok.c:626)
    ==28534== by 0x4564AC7: reportDefault (xmlparse.c:5128)
    ==28534== by 0x456AF29: doProlog (xmlparse.c:4497)
    ==28534== by 0x456CD04: prologProcessor (xmlparse.c:3551)
    ==28534== by 0x456450A: XML_ParseBuffer (xmlparse.c:1562)
    ==28534== by 0x400EF34: (within /usr/lib/perl5/vendor_perl/5.8.8/i386-linux-thread-multi/auto/XML/Parser/Expat/Expat.so)
    ==28534== by 0x400FAB3: XS_XML__Parser__Expat_ParseStream (in /usr/lib/perl5/vendor_perl/5.8.8/i386-linux-thread-multi/auto/XML/Parser/Expat/Expat.so)
    ==28534== by 0x65AD51C: Perl_pp_entersub (in /usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE/libperl.so)
    ==28534== by 0x65A698E: Perl_runops_standard (in /usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE/libperl.so)
    ==28534== by 0x654C20D: perl_run (in /usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE/libperl.so)
    ==28534== by 0x804921D: main (in /usr/bin/perl)
    ==28534== Address 0x4E83004 is not stack'd, malloc'd or (recently) free'd
    ==28534==
    ==28534== Process terminating with default action of signal 11 (SIGSEGV): dumping core
    ==28534== Access not within mapped region at address 0x5283000
    ==28534== at 0x457076F: big2_toUtf8 (xmltok.c:626)
    ==28534== by 0x4564AC7: reportDefault (xmlparse.c:5128)
    ==28534== by 0x456AF29: doProlog (xmlparse.c:4497)
    ==28534== by 0x456CD04: prologProcessor (xmlparse.c:3551)
    ==28534== by 0x456450A: XML_ParseBuffer (xmlparse.c:1562)
    ==28534== by 0x400EF34: (within /usr/lib/perl5/vendor_perl/5.8.8/i386-linux-thread-multi/auto/XML/Parser/Expat/Expat.so)
    ==28534== by 0x400FAB3: XS_XML__Parser__Expat_ParseStream (in /usr/lib/perl5/vendor_perl/5.8.8/i386-linux-thread-multi/auto/XML/Parser/Expat/Expat.so)
    ==28534== by 0x65AD51C: Perl_pp_entersub (in /usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE/libperl.so)
    ==28534== by 0x65A698E: Perl_runops_standard (in /usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE/libperl.so)
    ==28534== by 0x654C20D: perl_run (in /usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE/libperl.so)
    ==28534== by 0x804921D: main (in /usr/bin/perl)
    ==28534==
    ==28534== ERROR SUMMARY: 4417417 errors from 9 contexts (suppressed: 30 from 1)
    ==28534== malloc/free: in use at exit: 4,192,790 bytes in 95,243 blocks.
    ==28534== malloc/free: 141,904 allocs, 46,661 frees, 12,100,734 bytes allocated.
    ==28534== For counts of detected errors, rerun with: -v
    ==28534== searching for pointers to 95,243 not-freed blocks.
    ==28534== checked 4,132,360 bytes.
    ==28534==
    ==28534== LEAK SUMMARY:
    ==28534== definitely lost: 1,415 bytes in 33 blocks.
    ==28534== possibly lost: 0 bytes in 0 blocks.
    ==28534== still reachable: 4,191,375 bytes in 95,210 blocks.
    ==28534== suppressed: 0 bytes in 0 blocks.
    ==28534== Use --leak-check=full to see details of leaked memory.

     
  • Jan Lieskovsky

    Jan Lieskovsky - 2009-11-08
    • assigned_to: nobody --> kwaclaw
     
  • Jan Lieskovsky

    Jan Lieskovsky - 2009-11-08

    The following patch seems to fix the issue for me (under assumption patch for CVE-2009-3720 is also applied):

    $ cat expat-toUtf8.patch
    --- expat-2.0.1/lib/xmltok.c.orig 2006-11-26 18:34:46.000000000 +0100
    +++ expat-2.0.1/lib/xmltok.c 2009-11-08 15:12:27.000000000 +0100
    @@ -543,6 +543,9 @@ E ## toUtf8(const ENCODING *enc, \ { \ const char *from; \ for (from = *fromP; from != fromLim; from += 2) { \ + /* Stop parsing if from && fromLim addresses aren't aligned */ \ + if (from == fromLim - 1) \ + goto after; \ int plane; \ unsigned char lo2; \ unsigned char lo = GET_LO(from); \ @@ -596,6 +599,8 @@ E ## toUtf8(const ENCODING *enc, \ } \ } \ *fromP = from; \ +after: \ + *fromP = from + 1; \ }

    #define DEFINE_UTF16_TO_UTF16(E) \

    The output is then:

    # perl XML-Twig.pl

    no element found at line 2, column 1, byte 3 at /usr/lib/perl5/vendor_perl/5.8.8/i386-linux-thread-multi/XML/Parser.pm line 187

    But not sure, we shouldn't check also for case, when addresses
    of 'to' and 'toLim' aren't aligned (we are doing so in utf8_toUtf16()
    routine:

    340 static void PTRCALL
    341 utf8_toUtf16(const ENCODING *enc,

    at line:

    358 case BT_LEAD4:
    359 {
    360 unsigned long n;
    361 if (to + 1 == toLim)
    362 goto after;
    ...
    377 after:
    378 *fromP = from;
    379 *toP = to;
    380 }

    So the resulting patch would then check both cases from == fromLim -1 || to == toLim - 1,
    will attach it in next comment - opinions appreciated.

     
  • Jan Lieskovsky

    Jan Lieskovsky - 2009-11-08

    Grrr, when changing content of pythontest1.xml to contain:

    ^@space or ^@spacea

    Substitute space for ' '.

    the crash is back (pointer are mangled again at the same function :().
    Now stopping to fuzze with this, because we will never fix it.

     
  • Jan Lieskovsky

    Jan Lieskovsky - 2009-11-09

    Just to make my report complete - this issue is present in all versions of expat from 1.95.5 up to latest stable
    one - 2.0.1

     
  • Jan Lieskovsky

    Jan Lieskovsky - 2009-11-09
    • assigned_to: kwaclaw --> fdrake
    • priority: 5 --> 9
     
  • Karl Waclawek

    Karl Waclawek - 2009-11-09

    Can you attach the file that allows us to reproduce this?

     
  • Karl Waclawek

    Karl Waclawek - 2009-11-09
    • priority: 9 --> 5
     
  • Karl Waclawek

    Karl Waclawek - 2009-11-09

    This is not a showstopper issue that happens all over the place. Priority reset to default.

     
  • Jan Lieskovsky

    Jan Lieskovsky - 2009-11-09

    The malformed XML file - pythontest1.xml can be downloaded here:

    https://bugzilla.redhat.com/attachment.cgi?id=366572

    Don't wonder, it really contains only "^@" characters.

    From https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2009-3720.

    The XML-Twig.pl script code is as follows:

    --- Script start ---

    use XML::Twig;

    my $twig=XML::Twig->new(); # create the twig
    $twig->parsefile('pythontest1.xml'); # build it
    #my_process( $twig); # my_process isn't valid XML::Twig routine, so let this commented out
    #$twig->print; # output the twig

    --- Script end ---

    Run it as: perl ./XML-Twig.pl

    Apologize for asking you to download the PoC, but three times
    tried to attach it here, but was unsuccessful (due *.txt attachment
    format and attachment size < 256 K requirement) - changed suffix
    of both files to *.txt and both of them are lower in size than 256 K,
    but still wasn't successful - maybe I am just doing something wrong.

    Thanks, Jan.

     
  • Karl Waclawek

    Karl Waclawek - 2009-11-12

    I have a hard time reproducing this directly with Expat. It simply works for me using the two files attached to Bugzilla issue. I don't use Perl at all, and I am doing my work on Windows. Can you tell me if you use a specially compiled version of Expat, and how Perl configures Expat when calling it?

    Maybe Fred is better at debugging this, as he is more of a Unix guy.

    Btw, my feeling is that this is more related to a bug in the parsing initialization, as these macros have no safe-guards at all and rely on the calling code to prevent anomalous situations.

     
  • Jan Lieskovsky

    Jan Lieskovsky - 2009-11-13

    Karl, Fred,

    could you please add Joe Orton (nickname jorton) to the Cc-list of this ticket? I would do so, but I don't know how -
    - didn't find explicit Cc field to be able to do so. Or the only way how to make this visible for him is to remove
    the Private checkbox sign (wouldn't like to do so, as since then it would be visible for everyone :(). Would like
    rather to find the patch for it first.

    Thanks && Regards, Jan.
    --
    Jan iankko Lieskovsky

     
  • Karl Waclawek

    Karl Waclawek - 2009-11-27

    Fixed in xmlparse.c rev. 1.165. Needs regression testing.

     
  • Karl Waclawek

    Karl Waclawek - 2009-11-27
    • milestone: --> Test Required
     
  • Karl Waclawek

    Karl Waclawek - 2012-02-21
    • status: open --> open-fixed
     
  • Karl Waclawek

    Karl Waclawek - 2012-02-21

    Updated Resolution.

     
  • Karl Waclawek

    Karl Waclawek - 2012-03-03

    Testing?

     
  • Karl Waclawek

    Karl Waclawek - 2012-03-03
    • assigned_to: fdrake --> kwaclaw
    • labels: 322751 -->
     
  • Sebastian Pipping

    • status: open-fixed --> closed-fixed
     
  • Sebastian Pipping

    Fixed since 2.1.0, commit a247ccd476970b9a0036379c584cb592cf08d79b, closing.

     

Log in to post a comment.