Add "mod" command.#6
Open
alesax wants to merge 3 commits intocrash-python:crash-wipcrash-python/crash-python:crash-wipfrom
Open
Add "mod" command.#6alesax wants to merge 3 commits intocrash-python:crash-wipcrash-python/crash-python:crash-wipfrom
alesax wants to merge 3 commits intocrash-python:crash-wipcrash-python/crash-python:crash-wipfrom
Conversation
x86_64: fix active task %rip retrieval, clear up scheduled task's registers retrieval.
Currently it serves only for finding & loading debuginfo. It should be invoked like "mod -S path/to/module/debuginfos". It searches for all the *.ko.debug files under the given path, then walks the list of loaded modules and is trying to load the debuginfo at the given address.
Member
|
Shouldn't the debuginfos be located via the notes in the module .ko files? |
Contributor
|
Yeah ... AFAIK those notes may not always exist. But that could be added later if someone needs debugging a kernel compiled without the notes. |
Author
|
This is my initial version, which entirely ignores all the .ko files. Because at first I was using dumps from SLE11 where all we needed was the debuginfo. Yes, the logic should be better (and ideally preventing you from loading nonmatching files). |
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.
Only "pymod -S path/to/debuginfo" works.