-
-
Notifications
You must be signed in to change notification settings - Fork 733
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
Add an "--all" option to the got command #1101
Conversation
This draft is functional, but incomplete. It does not include documentation or tests. In its current condition, it exists only to ask whether the maintainers are interested in expanding the "got" command to provide information about relocations in mapped shared object files or not. And, if so, what the output from that command might look like. The current implementation merely prints relocations for all files, without indicating which file's relocations are being printed. I'm also not sure whether such a command needs to accept a filter, allowing the user to print relocations for specific files, other than the primary executable file. Please let me know what you think, and whether or not I should finish work on this command. |
Can you please show its use? Couldn't you just add this as an argument to the existing got command? |
I can show its output, but it tends to be quite long. I'll try attaching it as a file. The existing got command will show the state of relocatable symbols present in the primary binary executable. That's not all of the relocations, though. For example, the Arguments to the current |
Attaching got-all and got output for the login process |
Yes I understand, but we could add an argument to have it run got 'deeper'. I see this as a recursive GOT command, but with depth one. We could add a |
You could do that, but since the existing behavior is for all arguments to act as filters, the change would not be fully backward compatible, which is largely why I didn't pursue that path. If that's your preference, I can continue developing in that direction. |
I believe it would be, but maybe it would be breaking searching for symbols that contain |
I'm with @Grazfather on this, I don't feel like this doesn't deserve its own standalone command, but if you wish to make it so, then I'd suggest moving it to |
I've modified the implementation to use an optional flag to the got command. The current implementation prints the GOT for each shared object without labeling them, which isn't very user-friendly. What would be idiomatic for GEF? |
you could do something like title = Color.colorify(lib_name, "yellow bold") # idc about the colour much, but should be bold or maybe title = titlify(lib_name) though this is used more for drawing the context window. |
Using titlify:
|
That looks pretty good to me. |
I'm happier with this test setup. There's still the matter of the do_invoke_for function name, if that's important to you. Otherwise, if you are happy with this, I can squash it before merging... |
Other than line length nitpicking looks good to me. |
Thank you for your review. It sounds like this is just about ready, so I've squashed the commits. |
(Squashed again.) |
I've attached a commit that partially fixes the use of the got command with remote debugging. However, the realpath() property still doesn't work some of the time, because So, for example, Personally, I think this is a problem that should be solved in a separate PR. The patch is a little messy, and fixing the got command when remote debugging isn't strictly related to the --all option. If you agree, I'm happy to back that commit out and open a new PR. |
I think that resolving remote use of got will require fixing bug https://sourceware.org/bugzilla/show_bug.cgi?id=23764 The current suggestion is that python code should use realpath instead using I've requested an account for sourceware's bug system, but those require human approval, so it'll take a while to set that up. And since this looks like a gdb bug, I don't think it's going to be possible to fix remote use of The patch that I've provided for remote debugging is probably still good, and appropriate, but as I said earlier: messy. |
GDB bugs take years to fix. Does your last path work decently well? We could just add a note to the docs that it doesn't work well with remote sessions and make a note to fix it later. |
Yes, that's what I meant by "not in the immediate future." :)
It allows the But on RHEL systems, /lib64 is a symlink to /usr/lib64, so most solibs won't work if the remote host is RHEL or a related system. I'll move it to a separate PR, though, because I think it bears some discussion about style and consistency. |
Yeah, let's just add a note to the docs about its current state for this PR. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, good stuff
Description
This change adds a "got-all" command which expands on the existing "got" command by providing data about relocations in mapped shared object files in addition to the relocations specific to the main executable.
Particularly for auditing purposes, users may be interested in the state of all relocations, not only those for the primary executable file.