Pin
|
Classes | |
struct | DEBUG_CONNECTION_INFO |
struct | DEBUG_MODE |
Typedefs | |
typedef BOOL(* | LEVEL_PINCLIENT::DEBUG_INTERPRETER_CALLBACK) (THREADID threadIndex, CONTEXT *ctxt, const std::string &cmd, std::string *reply, VOID *v) |
typedef BOOL(* | LEVEL_PINCLIENT::DEBUG_BREAKPOINT_CALLBACK) (ADDRINT addr, UINT size, BOOL insert, VOID *v) |
typedef BOOL(* LEVEL_PINCLIENT::DEBUG_BREAKPOINT_CALLBACK) (ADDRINT addr, UINT size, BOOL insert, VOID *v) |
Call-back function to handle breakpoint set requests from a debugger.
Once a callback accepted control over a breakpoint at the given address, Pin and PinADX will not stop at that address. The stop responsibility is handled solely by the tool.
However, PinADX does keep track of the breakpoint, in case the tool wants to "reset" the breakpoint and give the control back to PinADX.
[in] | addr | The address of the requested breakpoint. |
[in] | size | The size of the breakpoint (HW/SW) |
[in] | insert | Whether if this is a breakpoint insertion or deletion. |
[in] | v | The tool's call-back value. |
typedef BOOL(* LEVEL_PINCLIENT::DEBUG_INTERPRETER_CALLBACK) (THREADID threadIndex, CONTEXT *ctxt, const std::string &cmd, std::string *reply, VOID *v) |
Call-back function to handle commands from a debugger.
The format of the cmd and reply strings may vary depending on which debugger is connected to Pin. Tools can call PIN_GetDebuggerType() to tell which debugger is connected.
When the debugger is GDB, cmd is the text string that the user types after the "monitor" command and reply is displayed verbatim as a response to the command.
Pin reserves all command strings that start with the prefix "pin " or "pin:". Pin interprets these commands itself and does not pass them on to the tool.
[in] | threadIndex | The Pin thread ID of the debugger's "focus" thread. |
[in] | ctxt | Application register state of the debugger's "focus" thread. The interpreter can change this state if it handles cmd. When the debugger resumes this thread, it will use the new register state in ctxt. |
[in] | cmd | The debugger command. |
[out] | reply | Receives the reply to the command, if the interpreter understands cmd. |
[in] | v | The tool's call-back value. |
Possible connection types for an application debugger. The connection type can be specified either via the -appdebug knobs or by PIN_SetDebugMode().
enum DEBUG_MODE_OPTION |
Options which affect application debugging.
Enumerator | |
---|---|
DEBUG_MODE_OPTION_NONE | No options specified. |
DEBUG_MODE_OPTION_STOP_AT_ENTRY | If this option is set, Pin stops the application at the first instruction and execution remains stopped until a debugger connects and continues the application. If this option is cleared, the application immediately runs when PIN_StartProgram() is called. |
DEBUG_MODE_OPTION_SILENT | If debugging is enabled Pin normally prints a message to the console when PIN_StartProgram() is called which tells the user how to connect a debugger. This option suppresses the message. |
DEBUG_MODE_OPTION_ALLOW_REMOTE | By default, Pin only listens for a debugger's TCP connection on the local machine. If this option is enabled, Pin will also listen for a connection from a remote machine. |
enum DEBUG_STATUS |
Possible status codes telling the state of application level debugging.
enum DEBUGGER_TYPE |
Application debugger types that could be connected to Pin.
PIN_CALLBACK LEVEL_PINCLIENT::PIN_AddBreakpointHandler | ( | DEBUG_BREAKPOINT_CALLBACK | fun, |
VOID * | val | ||
) |
Register a handler that can intercept breakpoint set/delete commands sent from an application debugger. This API allows a tool to take control over specific breakpoints stop behavior.
A tool may install more than one handler function. Pin calls each one until it reaches an handler that understand the command.
[in] | fun | The breakpoint handler function. |
[in] | val | Value to pass to the handler function. |
PIN_CALLBACK LEVEL_PINCLIENT::PIN_AddDebugInterpreter | ( | DEBUG_INTERPRETER_CALLBACK | fun, |
VOID * | val | ||
) |
Register a handler that can interpret commands sent from an application debugger. This API allows a tool to extend the normal set of commands understood by a debugger that is connected to Pin.
A tool may install more than one interpreter function. Pin calls each one until it reaches an interpreter that understand the command.
[in] | fun | The debug interpreter function. |
[in] | val | Value to pass to the interpreter function. |
VOID LEVEL_PINCLIENT::PIN_ApplicationBreakpoint | ( | const CONTEXT * | ctxt, |
THREADID | tid, | ||
BOOL | waitIfNoDebugger, | ||
const std::string & | msg | ||
) |
A tool can call this API to stop execution in an application debugger as though a breakpoint was hit. The ctxt parameter tells the register state that the debugger sees when the application stops. If application level debugging is not enabled in this Pin session, execution does not stop, but resumes immediately at ctxt. Tools can tell if application level debugging is enabled by calling PIN_GetDebugStatus().
The semantics of this API are very similar to PIN_ExecuteAt(). Both APIs abandon the current analysis function and resume execution at a new CONTEXT. The only difference is that PIN_ApplicationBreakpoint() also stops at a breakpoint in the application debugger.
This API can be called from an analysis function or a replacement routine, but not from a callback.
When this API is called from an analysis function or replacement function, and if they execute the current routine or instruction being analyzed, then execution will resume at the instrumented routine or instruction and the analysis function will be called again. It is the pintool's responsibility to avoid going into an infinite loop of calls to the analysis function.
The expected format of the msg string may depend on which debugger is connected to Pin. Tools can call PIN_GetDebuggerType() to find the debugger type.
When used with GDB, the msg string is displayed verbatim to the user when the debugger stops. The debugger adds a newline to the end of the string before displaying it.
[in] | ctxt | The register state that is reported to the debugger. When the debugger resumes this thread, it resumes execution at this register state (unless the debugger changes the register state). |
[in] | tid | The ID of the calling thread. |
[in] | waitIfNoDebugger | If waitIfNoDebugger is TRUE and the status is DEBUG_STATUS_UNCONNECTED, PIN_ApplicationBreakpoint() blocks until a debugger connects. Tools can call PIN_GetDebugStatus() to get the status. If waitIfNoDebugger is FALSE or if the status is DEBUG_STATUS_DISABLED or DEBUG_STATUS_UNCONNECTABLE, PIN_ApplicationBreakpoint() resumes immediately at the new context when no debugger is connected. |
[in] | msg | Tells the reason why the breakpoint was triggered. |
BOOL LEVEL_PINCLIENT::PIN_ChangePendingToolBreakpointOnStoppedThread | ( | THREADID | tid, |
BOOL | squash, | ||
const std::string & | msg | ||
) |
If the given stopped thread has a pending tool breakpoint, this function can change the message associated with that breakpoint request or it can squash the breakpoint request entirely. The debugger will see the effect of the changed breakpoint after it resumes execution of the thread. If the tool changes the breakpoint message, the debugger will receive the breakpoint event with the new message. If the tool squashes the breakpoint request, the thread will not stop at the breakpoint at all. Instead, it continues executing at the \i ctxt parameter that was passed to PIN_ApplicationBreakpoint().
[in] | tid | Pin ID of a stopped thread. |
[in] | squash | If TRUE, the breakpoint request is squashed. The msg parameter is ignored in this case. |
[in] | msg | The new breakpoint message for this breakpoint request. |
BOOL LEVEL_PINCLIENT::PIN_GetDebugConnectionInfo | ( | DEBUG_CONNECTION_INFO * | info | ) |
This function retrieves the information that an application level debugger will need in order to connect to this Pin session.
[out] | info | Receives the connection information. |
DEBUGGER_TYPE LEVEL_PINCLIENT::PIN_GetDebuggerType | ( | ) |
This function tells the type of application level debugger (if any) that is connected to Pin. If no debugger is connected, returns DEBUGGER_TYPE_UNKNOWN.
DEBUG_STATUS LEVEL_PINCLIENT::PIN_GetDebugStatus | ( | ) |
This function tells whether application level debugging is enabled in this Pin session. If so, it tells whether an application debugger is currently connected to Pin.
BOOL LEVEL_PINCLIENT::PIN_GetStoppedThreadPendingToolBreakpoint | ( | THREADID | tid, |
std::string * | msg | ||
) |
Tells whether a stopped thread has called PIN_ApplicationBreakpoint(), but the breakpoint has NOT yet been reported to the debugger. For example, this can occur if two threads call PIN_ApplicationBreakpoint() simultaneously and the debugger has asked Pin to report one debugger event at a time. In this case, Pin reports one breakpoint to the debugger and leaves the other breakpoint pending.
[in] | tid | Pin ID of a stopped thread. |
[out] | msg | If there is a pending breakpoint and if msg is not NULL, msg receives the breakpoint message. |
VOID LEVEL_PINCLIENT::PIN_RemoveBreakpointHandler | ( | DEBUG_BREAKPOINT_CALLBACK | fun | ) |
Remove a previously installed breakpoint handler function.
[in] | fun | The breakpoint handler to remove. |
VOID LEVEL_PINCLIENT::PIN_RemoveDebugInterpreter | ( | DEBUG_INTERPRETER_CALLBACK | fun | ) |
Remove a previously installed debug interpreter function.
[in] | fun | The interpreter function to remove. |
VOID LEVEL_PINCLIENT::PIN_ResetBreakpointAt | ( | ADDRINT | addr | ) |
Resets the breakpoint address, and returns the control back to PinADX.
[in] | addr | The breakpoint address. |
BOOL LEVEL_PINCLIENT::PIN_SetDebugMode | ( | const DEBUG_MODE * | mode | ) |
Set whether application debugging is enabled or disabled in this Pin session and set the debugging mode if debugging is enabled. This API overrides the following knobs if they are specified on the command line:
If the tool calls this API, it must be called before PIN_StartProgram().
[in] | mode | Tells whether application debugging is enabled and specifies the mode. If mode->_tcpClient->_ip is set, this method makes a copy of the string. |
BOOL LEVEL_PINCLIENT::PIN_WaitForDebuggerToConnect | ( | unsigned | timeout | ) |
Waits for an application level debugger to connect to this Pin session. This function may only be called after PIN_StartProgram(). If the debugger status is DEBUG_STATUS_DISABLED or DEBUG_STATUS_UNCONNECTABLE, it returns FALSE immediately.
After a successful return, an application level debugger is connected to Pin. The debugger will stop the application soon, but there is no guarantee that this will happen immediately after this API returns. If the tool wants to guarantee an immediate stop, it should call PIN_ApplicationBreakpoint().
[in] | timeout | A timeout value (milliseconds). This function returns (with FALSE) if a debugger has not connected by the end of the timeout period. A timeout value of zero means wait forever. |