Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(112)

Unified Diff: ui/gfx/geometry/rect.h

Issue 2268423003: Adjust gfx::Rect's width and height to avoid integer overflow (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Sometimes size could be negative... Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | ui/gfx/geometry/rect.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gfx/geometry/rect.h
diff --git a/ui/gfx/geometry/rect.h b/ui/gfx/geometry/rect.h
index 2a5fe8e39d2d0714d893e27dd7ee3fc950480e71..20d497af88a1c15a58fb6cd5cc8a328d098d7cfe 100644
--- a/ui/gfx/geometry/rect.h
+++ b/ui/gfx/geometry/rect.h
@@ -37,10 +37,13 @@ class GFX_EXPORT Rect {
constexpr Rect() = default;
constexpr Rect(int width, int height) : size_(width, height) {}
constexpr Rect(int x, int y, int width, int height)
- : origin_(x, y), size_(width, height) {}
+ : origin_(x, y),
+ size_(GetClampedValue(x, width), GetClampedValue(y, height)) {}
constexpr explicit Rect(const Size& size) : size_(size) {}
constexpr Rect(const Point& origin, const Size& size)
- : origin_(origin), size_(size) {}
+ : origin_(origin),
+ size_(GetClampedValue(origin.x(), size.width()),
+ GetClampedValue(origin.y(), size.height())) {}
#if defined(OS_WIN)
explicit Rect(const RECT& r);
@@ -57,22 +60,38 @@ class GFX_EXPORT Rect {
#endif
constexpr int x() const { return origin_.x(); }
- void set_x(int x) { origin_.set_x(x); }
+ void set_x(int x) {
+ origin_.set_x(x);
+ size_.set_width(GetClampedValue(x, width()));
+ }
constexpr int y() const { return origin_.y(); }
- void set_y(int y) { origin_.set_y(y); }
+ void set_y(int y) {
+ origin_.set_y(y);
+ size_.set_height(GetClampedValue(y, height()));
+ }
constexpr int width() const { return size_.width(); }
- void set_width(int width) { size_.set_width(width); }
+ void set_width(int width) { size_.set_width(GetClampedValue(x(), width)); }
constexpr int height() const { return size_.height(); }
- void set_height(int height) { size_.set_height(height); }
+ void set_height(int height) {
+ size_.set_height(GetClampedValue(y(), height));
+ }
constexpr const Point& origin() const { return origin_; }
- void set_origin(const Point& origin) { origin_ = origin; }
+ void set_origin(const Point& origin) {
+ origin_ = origin;
+ // Ensure that width and height remain valid.
+ set_width(width());
+ set_height(height());
+ }
constexpr const Size& size() const { return size_; }
- void set_size(const Size& size) { size_ = size; }
+ void set_size(const Size& size) {
+ set_width(size.width());
+ set_height(size.height());
+ }
constexpr int right() const { return x() + width(); }
constexpr int bottom() const { return y() + height(); }
@@ -85,7 +104,9 @@ class GFX_EXPORT Rect {
void SetRect(int x, int y, int width, int height) {
origin_.SetPoint(x, y);
- size_.SetSize(width, height);
+ // Ensure that width and height remain valid.
+ set_width(width);
+ set_height(height);
}
// Shrink the rectangle by a horizontal and vertical distance on all sides.
@@ -184,6 +205,14 @@ class GFX_EXPORT Rect {
private:
gfx::Point origin_;
gfx::Size size_;
+
+ static constexpr int GetClampedValue(int origin, int size) {
+ return origin > 0 && size > 0 &&
danakj 2016/09/01 20:22:39 Can you explain in a comment each of the 3 cases b
+ static_cast<unsigned>(std::numeric_limits<int>::max() -
+ origin) < static_cast<unsigned>(size)
+ ? std::numeric_limits<int>::max() - origin
+ : size;
+ }
};
inline bool operator==(const Rect& lhs, const Rect& rhs) {
« no previous file with comments | « no previous file | ui/gfx/geometry/rect.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698