Difference between revisions of "Studio:Delegating ISHELL SendEvent"

From STRIDE Wiki
Jump to: navigation, search
Line 28: Line 28:
 
This allows you to dynamically intercept the call for the application under test.
 
This allows you to dynamically intercept the call for the application under test.
  
[[Category:Miscellaneous]]
+
[[Category:Intercept Modules]]

Revision as of 00:54, 14 September 2008

When trying to dynamically intercept a call for the application under test, intercepting only the call/method of interest was difficult when delegating the IShell Virtual Table, as it allows all methods to be intercepted for all callers.

Delegating the user's call to the IShell helper macro ISHELL_SendEvent is a better method. ISHELL_SendEvent is defined in AEEShell.h as follows:

#define ISHELL_SendEvent(p,cls,ec,wp,dw)
GET_PVTBL(p,IShell)->SendEvent(p,0,cls,ec,wp,dw)

This requires a small amount of instrumentation to the calling application, essentially to define the Group ID and include IM.h. You must also complete the following steps:

  1. Ensure that the calling application is using the helper macro to call the Send event.
  2. Add the following code to the AEEShell.h file instead of the #ifdef _SCL conditional block:
  3. #undef ISHELL_SendEvent
    int ISHELL_SendEvent(IShell *po, AEECLSID cls, AEEEvent eCode, uint16 wParam, uint32 dwParam);
    #pragma scl_function(ISHELL_SendEvent)
    #pragma scl_ptr_opaque(ISHELL_SendEvent,po)
    
  4. Create a user-mangled dynamic delegate for the function ISHELL_SendEvent.
  5. Add the instrumentation to the calling application's code:
  6. #ifdef srIMON
    #define <groupid-name>
    #include <name>IM.h
    #endif
    

    This allows you to dynamically intercept the call for the application under test.