memdb: compatible with Go 1.14's checkptr#14972
Merged
sre-bot merged 4 commits intopingcap:masterfrom Feb 28, 2020
Merged
Conversation
Codecov Report
@@ Coverage Diff @@
## master #14972 +/- ##
===========================================
Coverage ? 80.3461%
===========================================
Files ? 502
Lines ? 131455
Branches ? 0
===========================================
Hits ? 105619
Misses ? 17500
Partials ? 8336 |
Member
|
LGTM |
Contributor
|
LGTM Some of my personal projects might also be influenced by Go 1.14, I miss C so much... |
Contributor
|
/run-all-tests |
jackysp
approved these changes
Feb 27, 2020
Contributor
|
/merge |
Contributor
|
/run-all-tests |
Contributor
|
@bobotu merge failed. |
Contributor
|
/merge |
Contributor
|
Your auto merge job has been accepted, waiting for 14962 |
Contributor
|
/run-all-tests |
Contributor
|
/merge |
Contributor
|
/run-all-tests |
This was referenced Mar 3, 2020
This was referenced Jun 23, 2020
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What problem does this PR solve?
The Go 1.14 introduces new instrumentation to check that Go code is following
unsafe.Pointersafety rules dynamically. The new flag-d=checkptris enabled by default with the-raceor-msanflags.Specifically,
-d=checkptrchecks the following:*T, the resulting pointer must be aligned appropriately forT.unsafe.Pointer-typed operands must point into the same object.So if you run unit test with
-racein Go 1.14 you will get a panic likeWhat is changed and how it works?
In fact, the current implementation does not really cause illegal memory access. The
nodestruct is actually a variable-sized struct, thenextsarray is dynamically allocated according to the node's height. ButcheckptrAlignmentwill use the size defined by the struct, which is usually larger than the actual size of the object.As a result, when Go's checker check the memory boundary according to rule 2, it will find some bytes in the
node.nextsdoesn't in the memory space returned by the allocator.To address this problem, I modified the definition of
nodestruct, changenextsarray tonextsBase. Because each node always has at least one element innexts, the checker will never fail.The rule 1 is easy to address, just align the allocation in
arenaBlock.Check List
Tests
-raceusing Go 1.14