We try to avoid throwing NullPointerException, ClassCastExceptions
and StackOverflowException, but it was possible to trigger them
Also improve some exception messages
Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=62698
https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=62606
https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=62685
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@
1912707 13f79535-47bb-0310-9956-
ffa450edef68
@Override
public Rectangle2D getAnchor(){
CTTransform2D xfrm = ((CTGraphicalObjectFrame)getXmlObject()).getXfrm();
+ if (xfrm == null) {
+ throw new IllegalArgumentException("Could not retrieve an Xfrm from the XML object");
+ }
+
CTPoint2D off = xfrm.getOff();
double x = Units.toPoints(POIXMLUnits.parseLength(off.xgetX()));
double y = Units.toPoints(POIXMLUnits.parseLength(off.xgetY()));
return super.isBold();
} else {
final CTTextCharacterProperties rPr = super.getRPr(false);
- if (rPr.isSetB()) {
+ if (rPr != null && rPr.isSetB()) {
// If this run has bold set locally, then it overrides table cell style.
return rPr.getB();
} else {
return super.isItalic();
} else {
final CTTextCharacterProperties rPr = super.getRPr(false);
- if (rPr.isSetI()) {
+ if (rPr != null && rPr.isSetI()) {
// If this run has italic set locally, then it overrides table cell style.
return rPr.getI();
} else {
setRandomAccessWindowSize(_workbook.getRandomAccessWindowSize());
try {
_autoSizeColumnTracker = new AutoSizeColumnTracker(this);
- } catch (UnsatisfiedLinkError | InternalError e) {
- LOG.atWarn().log("Failed to create AutoSizeColumnTracker, possibly due to fonts not being installed in your OS", e);
+ } catch (UnsatisfiedLinkError | NoClassDefFoundError | InternalError |
+ // thrown when no fonts are available in the workbook
+ IndexOutOfBoundsException e) {
+ LOG.atWarn()
+ .withThrowable(e)
+ .log("Failed to create AutoSizeColumnTracker, possibly due to fonts not being installed in your OS");
}
}
public class PointerContainingStream extends Stream { // TODO - instantiable superclass
private static final Logger LOG = LogManager.getLogger(PointerContainingStream.class);
- private static final int MAX_CHILDREN_NESTING = 1000;
+ private static final int MAX_CHILDREN_NESTING = 500;
private final Pointer[] childPointers;
private Stream[] childStreams;
try {
return CodePageUtil.getStringFromCodePage(data, cp);
} catch (UnsupportedEncodingException uee) {
- throw new IllegalArgumentException("Unsupported codepage requested", uee);
+ throw new IllegalArgumentException("Unsupported codepage requested: " + cp, uee);
}
}