Bug 52032 - [BUG] & [partial-PATCH] HWPF - ArrayIndexOutofBoundsException with no stack trace (broken after revision 1178063)
Summary: [BUG] & [partial-PATCH] HWPF - ArrayIndexOutofBoundsException with no stack t...
Status: RESOLVED FIXED
Alias: None
Product: POI
Classification: Unclassified
Component: HWPF (show other bugs)
Version: 3.8-dev
Hardware: PC All
: P2 major (vote)
Target Milestone: ---
Assignee: POI Developers List
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-10-14 18:58 UTC by Jeremy
Modified: 2011-11-07 13:43 UTC (History)
0 users



Attachments
Patch of files to get AIOOB stack trace out (3.67 KB, application/octet-stream)
2011-10-14 18:58 UTC, Jeremy
Details
Hex-edited Sample test file to blow AIOOB #1 (40.50 KB, application/msword)
2011-10-18 18:33 UTC, Jeremy
Details
Hex-edited Sample test file to blow AIOOB #2 (213.00 KB, application/msword)
2011-10-18 18:33 UTC, Jeremy
Details
Hex-edited Sample test file to blow AIOOB #3 (89.00 KB, application/msword)
2011-10-18 18:34 UTC, Jeremy
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Jeremy 2011-10-14 18:58:33 UTC
Created attachment 27776 [details]
Patch of files to get AIOOB stack trace out

I have a collection of files that when being processed via Tika will encounter a RuntimeException stemming from a ArrayIndexOutofBoundsException with no stack trace or Cause information.  The root AIOOB issue was fixed for many of these files in the daily build after the 3.8-b4 release, but was re-introduced by the HWPF rework done in revision 1178083. (The files are successful with revision 1178063)

The files that produce this error are confirmed as valid with the MS's bffvalidator utility.  Due to the sensitive nature of their contents, I'm not able to include them as examples.  I may be able to get a coworker to help me hex-edit out the sensitive info so that I can include them at a later point to help fix the root issue causing the AIOOB.

In the meantime , I was able to pinpoint the location where the mysterious AIOOB exception was spawning from.  It is originating out of ListLevel() when performing a LittleEndian.getShort().

The patch I've included does two things:
  * Logs a warning message when the buffers bounds are about to be over blown.
  * Catches and rethrows the AIOOB exception from the getShort() call as a RuntimeException,  so that additional stack trace information is available. (At least it is now visible in Tika)

The patch should help highlight future documents that encounter this problem and at least make it easier with tracking down and making the fix to get them to work in the future.
Comment 1 Jeremy 2011-10-18 18:33:02 UTC
Created attachment 27806 [details]
Hex-edited Sample test file to blow AIOOB #1

Test case file 1...  Hexedited original to remove sensitive information. Post hex-editing first attempt produced stack trace, subsequent runs did not.  This file worked with revision 1178063
Comment 2 Jeremy 2011-10-18 18:33:50 UTC
Created attachment 27807 [details]
Hex-edited Sample test file to blow AIOOB #2

Test case file 2...  Hexedited original to remove sensitive information.  This file worked with revision 1178063
Comment 3 Jeremy 2011-10-18 18:34:17 UTC
Created attachment 27808 [details]
Hex-edited Sample test file to blow AIOOB #3

Test case file 3...  Hexedited original to remove sensitive information. Post hex-editing first attempt produced stack trace, subsequent runs did not.  This file worked with revision 1178063
Comment 4 Sergey Vladimirov 2011-10-29 23:58:51 UTC
shall be fixed in revision 1195077
Please, check.
Comment 5 Jeremy 2011-11-07 13:43:49 UTC
Fix appears to have resolved issue for 90% of files.  Will try to get examples of the remaining cases and open a new bug if those files are valid and still failing.

Thanks for the fix!!