From 6e442037ad5785ab984bd488d39c7feadc27853d Mon Sep 17 00:00:00 2001 From: Philip Pronin Date: Tue, 10 Sep 2013 06:24:40 -0700 Subject: [PATCH] fix memcpy-param-overlap (asan) in GroupVarint Test Plan: . Reviewed By: tudorb@fb.com FB internal diff: D962972 --- folly/GroupVarint.h | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/folly/GroupVarint.h b/folly/GroupVarint.h index dc269195..86b22a3b 100644 --- a/folly/GroupVarint.h +++ b/folly/GroupVarint.h @@ -509,15 +509,17 @@ class GroupVarintDecoder { : rrest_(data.end()), p_(data.data()), end_(data.end()), + limit_(end_), pos_(0), count_(0), remaining_(maxCount) { } - void reset(StringPiece data, size_t maxCount=(size_t)-1) { + void reset(StringPiece data, size_t maxCount = (size_t)-1) { rrest_ = data.end(); p_ = data.data(); end_ = data.end(); + limit_ = end_; pos_ = 0; count_ = 0; remaining_ = maxCount; @@ -540,10 +542,11 @@ class GroupVarintDecoder { // The best way to ensure this is to ensure that data has at least // Base::kMaxSize - 1 bytes readable *after* the end, otherwise we'll copy // into a temporary buffer. - if (rem < Base::kMaxSize) { + if (limit_ - p_ < Base::kMaxSize) { memcpy(tmp_, p_, rem); p_ = tmp_; end_ = p_ + rem; + limit_ = tmp_ + sizeof(tmp_); } pos_ = 0; const char* n = Base::decode(p_, buf_); @@ -591,7 +594,8 @@ class GroupVarintDecoder { const char* rrest_; const char* p_; const char* end_; - char tmp_[Base::kMaxSize]; + const char* limit_; + char tmp_[2 * Base::kMaxSize]; type buf_[Base::kGroupSize]; size_t pos_; size_t count_; -- 2.34.1