Skip to content
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

lib: debug memstats-at-exit improvements #17155

Merged
merged 4 commits into from
Oct 25, 2024

Conversation

eqvinox
Copy link
Contributor

@eqvinox eqvinox commented Oct 17, 2024

Refactor the debug memstats-at-exit code a little bit:

  • DEFINE_MGROUP_ACTIVEATEXIT now works correctly to mark MTYPEs that are intentionally leaked at exit (this is only used for the logging subsystem, so we can log until the process really dies.)
    • also add a comment explaining this
  • actually use the logging subsystem to log the memstats themselves (kinda the point of keeping the logging subsystem active) ⇒ memstats can now be found in the same place as the regular logs
    • existing locations for memstats (stderr, /tmp/frr-memstats-…) still work as before
  • remove memstats from SEGV/crashlogs (it can hang if we're crashing in a bad place, e.g. inside malloc())
    • also add a comment explaining this

Well, this was only checked for exit status, which we didn't really
observe... so, uh, yeah, not particularly noticeable it wasn't even
wired up...

clang-format off/on added to not get formatting wrecked on this.

Signed-off-by: David Lamparter <[email protected]>
No `zlog_fini()`, please.  Getting log messages until the end is more
important than leaking memory allocated for zlog targets.

Signed-off-by: David Lamparter <[email protected]>
`log_memstats()` is not AS-safe.  It can hang the crash handler (or set
your PC on fire, or cause the sun to go supernova - according to POSIX
specs, anyway.)

Signed-off-by: David Lamparter <[email protected]>
Move the various destinations handling into lib/memory.c, include
"normal" logging as target, and make `ACTIVEATEXIT` properly non-error
as it was intended to be.

Signed-off-by: David Lamparter <[email protected]>
@eqvinox
Copy link
Contributor Author

eqvinox commented Oct 17, 2024

checkpatch warnings are unrelated, about strncpy() use in test_fuzz_isis_tlv.c

@donaldsharp donaldsharp merged commit 274c986 into FRRouting:master Oct 25, 2024
15 of 16 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants