2 * 386-specific Win32 dll<->dll snooping functions
4 * Copyright 1998 Marcus Meissner
17 #include "builtin32.h"
20 #include "selectors.h"
21 #include "stackframe.h"
22 #include "debugtools.h"
23 #include "wine/exception.h"
25 DEFAULT_DEBUG_CHANNEL(snoop
);
27 static WINE_EXCEPTION_FILTER(page_fault
)
29 if (GetExceptionCode() == EXCEPTION_ACCESS_VIOLATION
)
30 return EXCEPTION_EXECUTE_HANDLER
;
31 return EXCEPTION_CONTINUE_SEARCH
;
34 char **debug_snoop_excludelist
= NULL
, **debug_snoop_includelist
= NULL
;
38 extern void WINAPI
SNOOP_Entry();
39 extern void WINAPI
SNOOP_Return();
41 #ifdef NEED_UNDERSCORE_PREFIX
49 typedef struct tagSNOOP_FUN
{
51 BYTE lcall
; /* 0xe8 call snoopentry (relative) */
52 /* NOTE: If you move snoopentry OR nrofargs fix the relative offset
55 DWORD snoopentry
; /* SNOOP_Entry relative */
62 typedef struct tagSNOOP_DLL
{
67 struct tagSNOOP_DLL
*next
;
69 typedef struct tagSNOOP_RETURNENTRY
{
71 BYTE lcall
; /* 0xe8 call snoopret relative*/
72 /* NOTE: If you move snoopret OR origreturn fix the relative offset
75 DWORD snoopret
; /* SNOOP_Ret relative */
81 DWORD
*args
; /* saved args across a stdcall */
84 typedef struct tagSNOOP_RETURNENTRIES
{
85 SNOOP_RETURNENTRY entry
[4092/sizeof(SNOOP_RETURNENTRY
)];
86 struct tagSNOOP_RETURNENTRIES
*next
;
87 } SNOOP_RETURNENTRIES
;
91 static SNOOP_DLL
*firstdll
= NULL
;
92 static SNOOP_RETURNENTRIES
*firstrets
= NULL
;
94 /***********************************************************************
95 * SNOOP_ShowDebugmsgSnoop
97 * Simple function to decide if a particular debugging message is
100 int SNOOP_ShowDebugmsgSnoop(const char *dll
, int ord
, const char *fname
) {
102 if(debug_snoop_excludelist
|| debug_snoop_includelist
) {
105 int len
, len2
, itemlen
, show
;
107 if(debug_snoop_excludelist
) {
109 listitem
= debug_snoop_excludelist
;
112 listitem
= debug_snoop_includelist
;
116 sprintf(buf
, "%s.%d", dll
, ord
);
118 for(; *listitem
; listitem
++) {
119 itemlen
= strlen(*listitem
);
120 if((itemlen
== len
&& !strncmp(*listitem
, buf
, len
)) ||
121 (itemlen
== len2
&& !strncmp(*listitem
, buf
, len2
)) ||
122 !strcmp(*listitem
, fname
)) {
133 SNOOP_RegisterDLL(HMODULE hmod
,LPCSTR name
,DWORD nrofordinals
) {
134 SNOOP_DLL
**dll
= &(firstdll
);
137 if (!TRACE_ON(snoop
)) return;
139 if ((*dll
)->hmod
== hmod
)
140 return; /* already registered */
141 dll
= &((*dll
)->next
);
143 *dll
= (SNOOP_DLL
*)HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY
,sizeof(SNOOP_DLL
));
146 (*dll
)->nrofordinals
= nrofordinals
;
147 (*dll
)->name
= HEAP_strdupA(GetProcessHeap(),0,name
);
148 if ((s
=strrchr((*dll
)->name
,'.')))
150 (*dll
)->funs
= VirtualAlloc(NULL
,nrofordinals
*sizeof(SNOOP_FUN
),MEM_COMMIT
|MEM_RESERVE
,PAGE_EXECUTE_READWRITE
);
151 memset((*dll
)->funs
,0,nrofordinals
*sizeof(SNOOP_FUN
));
153 HeapFree(GetProcessHeap(),0,*dll
);
154 FIXME("out of memory\n");
160 SNOOP_GetProcAddress(HMODULE hmod
,LPCSTR name
,DWORD ordinal
,FARPROC origfun
) {
161 SNOOP_DLL
*dll
= firstdll
;
164 IMAGE_SECTION_HEADER
*pe_seg
= PE_SECTIONS(hmod
);
166 if (!TRACE_ON(snoop
)) return origfun
;
167 if (!*(LPBYTE
)origfun
) /* 0x00 is an imposs. opcode, poss. dataref. */
169 for (j
=0;j
<PE_HEADER(hmod
)->FileHeader
.NumberOfSections
;j
++)
170 /* 0x42 is special ELF loader tag */
171 if ((pe_seg
[j
].VirtualAddress
==0x42) ||
172 (((DWORD
)origfun
-hmod
>=pe_seg
[j
].VirtualAddress
)&&
173 ((DWORD
)origfun
-hmod
<pe_seg
[j
].VirtualAddress
+
174 pe_seg
[j
].SizeOfRawData
178 /* If we looked through all sections (and didn't find one)
179 * or if the sectionname contains "data", we return the
180 * original function since it is most likely a datareference.
182 if ( (j
==PE_HEADER(hmod
)->FileHeader
.NumberOfSections
) ||
183 (strstr(pe_seg
[j
].Name
,"data")) ||
184 !(pe_seg
[j
].Characteristics
& IMAGE_SCN_CNT_CODE
)
189 if (hmod
== dll
->hmod
)
193 if (!dll
) /* probably internal */
195 if (!SNOOP_ShowDebugmsgSnoop(dll
->name
,ordinal
,name
))
197 assert(ordinal
<dll
->nrofordinals
);
198 fun
= dll
->funs
+ordinal
;
199 if (!fun
->name
) fun
->name
= HEAP_strdupA(GetProcessHeap(),0,name
);
201 /* NOTE: origreturn struct member MUST come directly after snoopentry */
202 fun
->snoopentry
= (char*)SNOOP_Entry
-((char*)(&fun
->nrofargs
));
203 fun
->origfun
= origfun
;
205 return (FARPROC
)&(fun
->lcall
);
209 SNOOP_PrintArg(DWORD x
) {
210 static char buf
[200];
213 MEMORY_BASIC_INFORMATION mbi
;
216 !VirtualQuery((LPVOID
)x
,&mbi
,sizeof(mbi
)) ||
219 sprintf(buf
,"%08lx",x
);
227 if (s
[i
]<0x20) {nostring
=1;break;}
228 if (s
[i
]>=0x80) {nostring
=1;break;}
233 wsnprintfA(buf
,sizeof(buf
),"%08lx %s",x
,debugstr_an((LPSTR
)x
,sizeof(buf
)-10));
238 __EXCEPT(page_fault
){}
247 if (s
[i
]<0x20) {nostring
=1;break;}
248 if (s
[i
]>0x100) {nostring
=1;break;}
253 wsnprintfA(buf
,sizeof(buf
),"%08lx %s",x
,debugstr_wn((LPWSTR
)x
,sizeof(buf
)-10));
258 __EXCEPT(page_fault
){}
262 sprintf(buf
,"%08lx",x
);
266 #define CALLER1REF (*(DWORD*)ESP_reg(context))
268 void WINAPI
SNOOP_DoEntry( CONTEXT86
*context
);
269 DEFINE_REGS_ENTRYPOINT_0( SNOOP_Entry
, SNOOP_DoEntry
);
270 void WINAPI
SNOOP_DoEntry( CONTEXT86
*context
)
272 DWORD ordinal
=0,entry
= EIP_reg(context
)-5;
273 SNOOP_DLL
*dll
= firstdll
;
274 SNOOP_FUN
*fun
= NULL
;
275 SNOOP_RETURNENTRIES
**rets
= &firstrets
;
276 SNOOP_RETURNENTRY
*ret
;
280 if ( ((char*)entry
>=(char*)dll
->funs
) &&
281 ((char*)entry
<=(char*)(dll
->funs
+dll
->nrofordinals
))
283 fun
= (SNOOP_FUN
*)entry
;
284 ordinal
= fun
-dll
->funs
;
290 FIXME("entrypoint 0x%08lx not found\n",entry
);
293 /* guess cdecl ... */
294 if (fun
->nrofargs
<0) {
295 /* Typical cdecl return frame is:
297 * which has (for xxxxxxxx up to 255 the opcode "83 C4 xx".
298 * (after that 81 C2 xx xx xx xx)
300 LPBYTE reteip
= (LPBYTE
)CALLER1REF
;
303 if ((reteip
[0]==0x83)&&(reteip
[1]==0xc4))
304 fun
->nrofargs
=reteip
[2]/4;
310 for (i
=0;i
<sizeof((*rets
)->entry
)/sizeof((*rets
)->entry
[0]);i
++)
311 if (!(*rets
)->entry
[i
].origreturn
)
313 if (i
!=sizeof((*rets
)->entry
)/sizeof((*rets
)->entry
[0]))
315 rets
= &((*rets
)->next
);
318 *rets
= VirtualAlloc(NULL
,4096,MEM_COMMIT
|MEM_RESERVE
,PAGE_EXECUTE_READWRITE
);
319 memset(*rets
,0,4096);
320 i
= 0; /* entry 0 is free */
322 ret
= &((*rets
)->entry
[i
]);
324 /* NOTE: origreturn struct member MUST come directly after snoopret */
325 ret
->snoopret
= ((char*)SNOOP_Return
)-(char*)(&ret
->origreturn
);
326 ret
->origreturn
= (FARPROC
)CALLER1REF
;
327 CALLER1REF
= (DWORD
)&ret
->lcall
;
330 ret
->ordinal
= ordinal
;
331 ret
->origESP
= ESP_reg(context
);
333 EIP_reg(context
)= (DWORD
)fun
->origfun
;
335 DPRINTF("Call %s.%ld: %s(",dll
->name
,ordinal
,fun
->name
);
336 if (fun
->nrofargs
>0) {
337 max
= fun
->nrofargs
; if (max
>16) max
=16;
339 DPRINTF("%s%s",SNOOP_PrintArg(*(DWORD
*)(ESP_reg(context
)+4+sizeof(DWORD
)*i
)),(i
<fun
->nrofargs
-1)?",":"");
340 if (max
!=fun
->nrofargs
)
342 } else if (fun
->nrofargs
<0) {
343 DPRINTF("<unknown, check return>");
344 ret
->args
= HeapAlloc(GetProcessHeap(),0,16*sizeof(DWORD
));
345 memcpy(ret
->args
,(LPBYTE
)(ESP_reg(context
)+4),sizeof(DWORD
)*16);
347 DPRINTF(") ret=%08lx fs=%04lx\n",(DWORD
)ret
->origreturn
,FS_reg(context
));
350 void WINAPI
SNOOP_DoReturn( CONTEXT86
*context
);
351 DEFINE_REGS_ENTRYPOINT_0( SNOOP_Return
, SNOOP_DoReturn
);
352 void WINAPI
SNOOP_DoReturn( CONTEXT86
*context
)
354 SNOOP_RETURNENTRY
*ret
= (SNOOP_RETURNENTRY
*)(EIP_reg(context
)-5);
356 /* We haven't found out the nrofargs yet. If we called a cdecl
357 * function it is too late anyway and we can just set '0' (which
358 * will be the difference between orig and current ESP
359 * If stdcall -> everything ok.
361 if (ret
->dll
->funs
[ret
->ordinal
].nrofargs
<0)
362 ret
->dll
->funs
[ret
->ordinal
].nrofargs
=(ESP_reg(context
)-ret
->origESP
-4)/4;
363 EIP_reg(context
) = (DWORD
)ret
->origreturn
;
367 DPRINTF("Ret %s.%ld: %s(",ret
->dll
->name
,ret
->ordinal
,ret
->dll
->funs
[ret
->ordinal
].name
);
368 max
= ret
->dll
->funs
[ret
->ordinal
].nrofargs
;
372 DPRINTF("%s%s",SNOOP_PrintArg(ret
->args
[i
]),(i
<max
-1)?",":"");
373 DPRINTF(") retval = %08lx ret=%08lx fs=%04lx\n",
374 EAX_reg(context
),(DWORD
)ret
->origreturn
,FS_reg(context
)
376 HeapFree(GetProcessHeap(),0,ret
->args
);
379 DPRINTF("Ret %s.%ld: %s() retval = %08lx ret=%08lx fs=%04lx\n",
380 ret
->dll
->name
,ret
->ordinal
,ret
->dll
->funs
[ret
->ordinal
].name
,
381 EAX_reg(context
),(DWORD
)ret
->origreturn
,FS_reg(context
)
383 ret
->origreturn
= NULL
; /* mark as empty */
385 #else /* !__i386__ */
386 void SNOOP_RegisterDLL(HMODULE hmod
,LPCSTR name
,DWORD nrofordinals
) {
387 FIXME("snooping works only on i386 for now.\n");
391 FARPROC
SNOOP_GetProcAddress(HMODULE hmod
,LPCSTR name
,DWORD ordinal
,FARPROC origfun
) {
394 #endif /* !__i386__ */