A tiny memory leak exists in net_processing.cpp, this patch fixes it
Details
- Reviewers
deadalnix freetrader - Group Reviewers
Restricted Project - Commits
- rSTAGING75b99eb1cb9d: Cleanup of dead mapBlockSource entries that aren't needed in FinalizeNode
rABC75b99eb1cb9d: Cleanup of dead mapBlockSource entries that aren't needed in FinalizeNode
Compile and run bitcoin. No log messages are generated to verify this is working, but if you wish, you can add some to FinalizeNode() to see stale mapBlockSource entries accumulate as bitcoin runs.
Diff Detail
- Repository
- rABC Bitcoin ABC
- Lint
Lint Not Applicable - Unit
Tests Not Applicable
Event Timeline
Good question. I'll investigate that and if it's the case that it can be accelerated somehow (maybe using test suite using a specifically constructed test?), I will either add a test case or figure out how it's reproduced.
Bump.
I can't figure out where they leak -- but I do know it's related to the crash we had before (for which you had to add a guard to check a stale mapBlockSource entry).
I do know the only place they can get cleaned up is in the BlockSignals().BlockChecked() call (which ends up being BlockChecked() in net_processing.cpp)... so some code path isn't triggering this signal under normal operation.
I'm going to bump this and request we merge it. It does no harm, costs us nothing, and if anything it saves a few bytes of leaked memory.
It's sad I can't actually characterize *why* it's happening right now.. :/
I don't see an obvious/easy way to test this. This is all about an internal data structure that sometimes leaks under very specific conditions.
I'm requesting you allow this change in.
Also: about the braces -- we need to talk about that. I advise you to allow flexibility in the style guide regarding braces. I think for obvious simple one-liners like this braces aren't necessary. You risk alienating potential contributors to the project with such draconian coding style rules, if you don't mind my saying so.
Anyway bump...
Ok for the test. Please update the loop to use remove_if if possible.
src/net_processing.cpp | ||
---|---|---|
323 ↗ | (On Diff #927) | I see. This is error prone. Maybe it is best to just use remove_if then. |
Unfortunately no remove_if on std::map...
I'll add braces to please you, despite my better judgement. :)
src/net_processing.cpp | ||
---|---|---|
323 ↗ | (On Diff #927) | Are you referring to my code as error-prone or the C++ way of doing it as being error prone? It's the boiler plate way in C++ to erase while iterating through a map. Most experienced C++ programmers have seen it a thousand times. So this construct is not any more error prone than any other code running somewhere in the universe that erases while iterating from a map. It's just std::map's own quirks here. Now you may be able to build an argument for this use case of std::map being error prone, or perhaps poorly thought out. Maybe the designers had their reasons for invalidating iterators after erasing (in fact I know they have -- it's faster and cheaper and C++ is all about being fast). |