Skip to content

Commit

Permalink
Fix div-by-zero loophole in gradient factory func
Browse files Browse the repository at this point in the history
Bug: oss-fuzz:10373
Change-Id: I4277fb63e3186ee34feaf09ecf6aeddeb532f9c1
Reviewed-on: https://skia-review.googlesource.com/c/168269
Reviewed-by: Kevin Lubick <[email protected]>
Commit-Queue: Michael Ludwig <[email protected]>
  • Loading branch information
lhkbob authored and Skia Commit-Bot committed Nov 5, 2018
1 parent 5206547 commit c34dd6c
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 11 deletions.
22 changes: 13 additions & 9 deletions src/shaders/gradients/SkGradientShader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -694,19 +694,23 @@ sk_sp<SkShader> SkGradientShader::MakeTwoPointConical(const SkPoint& start,
if (startRadius < 0 || endRadius < 0) {
return nullptr;
}
if (SkScalarNearlyZero((start - end).length()) && SkScalarNearlyZero(startRadius)) {
// We can treat this gradient as radial, which is faster.
return MakeRadial(start, endRadius, colors, std::move(colorSpace), pos, colorCount,
mode, flags, localMatrix);
if (SkScalarNearlyZero((start - end).length())) {
// If the center positions are the same, then the gradient is the radial variant of a
// 2 pt conical gradient, or an actual radial gradient (startRadius == 0), or it is
// fully degenerate (startRadius == endRadius).
if (SkScalarNearlyEqual(startRadius, endRadius)) {
// Degenerate case
return SkShader::MakeEmptyShader();
} else if (SkScalarNearlyZero(startRadius)) {
// We can treat this gradient as radial, which is faster.
return MakeRadial(start, endRadius, colors, std::move(colorSpace), pos, colorCount,
mode, flags, localMatrix);
}
}
if (!valid_grad(colors, pos, colorCount, mode)) {
return nullptr;
}
if (startRadius == endRadius) {
if (start == end || startRadius == 0) {
return SkShader::MakeEmptyShader();
}
}

if (localMatrix && !localMatrix->invert(nullptr)) {
return nullptr;
}
Expand Down
6 changes: 4 additions & 2 deletions src/shaders/gradients/SkTwoPointConicalGradient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,10 @@ sk_sp<SkShader> SkTwoPointConicalGradient::Create(const SkPoint& c0, SkScalar r0
Type gradientType;

if (SkScalarNearlyZero((c0 - c1).length())) {
if (SkScalarNearlyZero(SkTMax(r0, r1))) {
return nullptr; // Degenerate case; avoid dividing by zero.
if (SkScalarNearlyZero(SkTMax(r0, r1)) || SkScalarNearlyEqual(r0, r1)) {
// Degenerate case; avoid dividing by zero. Should have been caught by caller but
// just in case, recheck here.
return nullptr;
}
// Concentric case: we can pretend we're radial (with a tiny twist).
const SkScalar scale = sk_ieee_float_divide(1, SkTMax(r0, r1));
Expand Down

0 comments on commit c34dd6c

Please sign in to comment.