-
Notifications
You must be signed in to change notification settings - Fork 5.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
memdb: compatible with Go 1.14's checkptr #14972
Merged
Merged
Conversation
This file contains 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
Codecov Report
@@ Coverage Diff @@
## master #14972 +/- ##
===========================================
Coverage ? 80.3461%
===========================================
Files ? 502
Lines ? 131455
Branches ? 0
===========================================
Hits ? 105619
Misses ? 17500
Partials ? 8336 |
LGTM |
LGTM Some of my personal projects might also be influenced by Go 1.14, I miss C so much... |
/run-all-tests |
jackysp
approved these changes
Feb 27, 2020
/merge |
sre-bot
added
the
status/can-merge
Indicates a PR has been approved by a committer.
label
Feb 27, 2020
/run-all-tests |
@bobotu merge failed. |
/merge |
Your auto merge job has been accepted, waiting for 14962 |
/run-all-tests |
/merge |
/run-all-tests |
This was referenced Mar 3, 2020
This was referenced Jun 23, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
status/can-merge
Indicates a PR has been approved by a committer.
status/LGT2
Indicates that a PR has LGTM 2.
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.Pointer
safety rules dynamically. The new flag-d=checkptr
is enabled by default with the-race
or-msan
flags.Specifically,
-d=checkptr
checks 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
-race
in 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
node
struct is actually a variable-sized struct, thenexts
array is dynamically allocated according to the node's height. ButcheckptrAlignment
will 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.nexts
doesn't in the memory space returned by the allocator.To address this problem, I modified the definition of
node
struct, changenexts
array 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
-race
using Go 1.14