2 * Win32 relay and snoop functions
4 * Copyright 1997 Alexandre Julliard
5 * Copyright 1998 Marcus Meissner
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #include "wine/port.h"
33 #include "wine/exception.h"
34 #include "ntdll_misc.h"
35 #include "wine/unicode.h"
36 #include "wine/debug.h"
38 WINE_DEFAULT_DEBUG_CHANNEL(relay);
39 WINE_DECLARE_DEBUG_CHANNEL(snoop);
40 WINE_DECLARE_DEBUG_CHANNEL(seh);
44 struct relay_descr /* descriptor for a module */
46 void *magic; /* signature */
47 void *relay_from_32; /* functions to call from relay thunks */
48 void *relay_from_32_regs;
49 void *private; /* reserved for the relay code private data */
50 const char *entry_point_base; /* base address of entry point thunks */
51 const unsigned int *entry_point_offsets; /* offsets of entry points thunks */
52 const unsigned int *arg_types; /* table of argument types for all entry points */
55 #define RELAY_DESCR_MAGIC ((void *)0xdeb90001)
57 /* private data built at dll load time */
59 struct relay_entry_point
61 void *orig_func; /* original entry point function */
62 const char *name; /* function name (if any) */
65 struct relay_private_data
67 HMODULE module; /* module handle of this dll */
68 unsigned int base; /* ordinal base */
69 char dllname[40]; /* dll name (without .dll extension) */
70 struct relay_entry_point entry_points[1]; /* list of dll entry points */
73 static const WCHAR **debug_relay_excludelist;
74 static const WCHAR **debug_relay_includelist;
75 static const WCHAR **debug_snoop_excludelist;
76 static const WCHAR **debug_snoop_includelist;
77 static const WCHAR **debug_from_relay_excludelist;
78 static const WCHAR **debug_from_relay_includelist;
79 static const WCHAR **debug_from_snoop_excludelist;
80 static const WCHAR **debug_from_snoop_includelist;
82 static BOOL init_done;
84 /* compare an ASCII and a Unicode string without depending on the current codepage */
85 inline static int strcmpAW( const char *strA, const WCHAR *strW )
87 while (*strA && ((unsigned char)*strA == *strW)) { strA++; strW++; }
88 return (unsigned char)*strA - *strW;
91 /* compare an ASCII and a Unicode string without depending on the current codepage */
92 inline static int strncmpiAW( const char *strA, const WCHAR *strW, int n )
95 for ( ; n > 0; n--, strA++, strW++)
96 if ((ret = toupperW((unsigned char)*strA) - toupperW(*strW)) || !*strA) break;
100 /***********************************************************************
103 * Build a function list from a ';'-separated string.
105 static const WCHAR **build_list( const WCHAR *buffer )
108 const WCHAR *p = buffer;
111 while ((p = strchrW( p, ';' )))
116 /* allocate count+1 pointers, plus the space for a copy of the string */
117 if ((ret = RtlAllocateHeap( GetProcessHeap(), 0,
118 (count+1) * sizeof(WCHAR*) + (strlenW(buffer)+1) * sizeof(WCHAR) )))
120 WCHAR *str = (WCHAR *)(ret + count + 1);
123 strcpyW( str, buffer );
128 if (!(p = strchrW( p, ';' ))) break;
137 /***********************************************************************
140 * Build the relay include/exclude function lists.
142 static void init_debug_lists(void)
144 OBJECT_ATTRIBUTES attr;
150 static const WCHAR configW[] = {'S','o','f','t','w','a','r','e','\\',
151 'W','i','n','e','\\',
152 'D','e','b','u','g',0};
153 static const WCHAR RelayIncludeW[] = {'R','e','l','a','y','I','n','c','l','u','d','e',0};
154 static const WCHAR RelayExcludeW[] = {'R','e','l','a','y','E','x','c','l','u','d','e',0};
155 static const WCHAR SnoopIncludeW[] = {'S','n','o','o','p','I','n','c','l','u','d','e',0};
156 static const WCHAR SnoopExcludeW[] = {'S','n','o','o','p','E','x','c','l','u','d','e',0};
157 static const WCHAR RelayFromIncludeW[] = {'R','e','l','a','y','F','r','o','m','I','n','c','l','u','d','e',0};
158 static const WCHAR RelayFromExcludeW[] = {'R','e','l','a','y','F','r','o','m','E','x','c','l','u','d','e',0};
159 static const WCHAR SnoopFromIncludeW[] = {'S','n','o','o','p','F','r','o','m','I','n','c','l','u','d','e',0};
160 static const WCHAR SnoopFromExcludeW[] = {'S','n','o','o','p','F','r','o','m','E','x','c','l','u','d','e',0};
162 if (init_done) return;
165 RtlOpenCurrentUser( KEY_ALL_ACCESS, &root );
166 attr.Length = sizeof(attr);
167 attr.RootDirectory = root;
168 attr.ObjectName = &name;
170 attr.SecurityDescriptor = NULL;
171 attr.SecurityQualityOfService = NULL;
172 RtlInitUnicodeString( &name, configW );
174 /* @@ Wine registry key: HKCU\Software\Wine\Debug */
175 if (NtOpenKey( &hkey, KEY_ALL_ACCESS, &attr )) hkey = 0;
179 str = (WCHAR *)((KEY_VALUE_PARTIAL_INFORMATION *)buffer)->Data;
180 RtlInitUnicodeString( &name, RelayIncludeW );
181 if (!NtQueryValueKey( hkey, &name, KeyValuePartialInformation, buffer, sizeof(buffer), &count ))
183 TRACE("RelayInclude = %s\n", debugstr_w(str) );
184 debug_relay_includelist = build_list( str );
187 RtlInitUnicodeString( &name, RelayExcludeW );
188 if (!NtQueryValueKey( hkey, &name, KeyValuePartialInformation, buffer, sizeof(buffer), &count ))
190 TRACE( "RelayExclude = %s\n", debugstr_w(str) );
191 debug_relay_excludelist = build_list( str );
194 RtlInitUnicodeString( &name, SnoopIncludeW );
195 if (!NtQueryValueKey( hkey, &name, KeyValuePartialInformation, buffer, sizeof(buffer), &count ))
197 TRACE_(snoop)( "SnoopInclude = %s\n", debugstr_w(str) );
198 debug_snoop_includelist = build_list( str );
201 RtlInitUnicodeString( &name, SnoopExcludeW );
202 if (!NtQueryValueKey( hkey, &name, KeyValuePartialInformation, buffer, sizeof(buffer), &count ))
204 TRACE_(snoop)( "SnoopExclude = %s\n", debugstr_w(str) );
205 debug_snoop_excludelist = build_list( str );
208 RtlInitUnicodeString( &name, RelayFromIncludeW );
209 if (!NtQueryValueKey( hkey, &name, KeyValuePartialInformation, buffer, sizeof(buffer), &count ))
211 TRACE("RelayFromInclude = %s\n", debugstr_w(str) );
212 debug_from_relay_includelist = build_list( str );
215 RtlInitUnicodeString( &name, RelayFromExcludeW );
216 if (!NtQueryValueKey( hkey, &name, KeyValuePartialInformation, buffer, sizeof(buffer), &count ))
218 TRACE( "RelayFromExclude = %s\n", debugstr_w(str) );
219 debug_from_relay_excludelist = build_list( str );
222 RtlInitUnicodeString( &name, SnoopFromIncludeW );
223 if (!NtQueryValueKey( hkey, &name, KeyValuePartialInformation, buffer, sizeof(buffer), &count ))
225 TRACE_(snoop)("SnoopFromInclude = %s\n", debugstr_w(str) );
226 debug_from_snoop_includelist = build_list( str );
229 RtlInitUnicodeString( &name, SnoopFromExcludeW );
230 if (!NtQueryValueKey( hkey, &name, KeyValuePartialInformation, buffer, sizeof(buffer), &count ))
232 TRACE_(snoop)( "SnoopFromExclude = %s\n", debugstr_w(str) );
233 debug_from_snoop_excludelist = build_list( str );
240 /***********************************************************************
243 * Check if a given module and function is in the list.
245 static BOOL check_list( const char *module, int ordinal, const char *func, const WCHAR **list )
249 sprintf( ord_str, "%d", ordinal );
252 const WCHAR *p = strrchrW( *list, '.' );
253 if (p && p > *list) /* check module and function */
256 if (strncmpiAW( module, *list, len-1 ) || module[len]) continue;
257 if (p[1] == '*' && !p[2]) return TRUE;
258 if (!strcmpAW( ord_str, p + 1 )) return TRUE;
259 if (func && !strcmpAW( func, p + 1 )) return TRUE;
261 else /* function only */
263 if (func && !strcmpAW( func, *list )) return TRUE;
270 /***********************************************************************
271 * check_relay_include
273 * Check if a given function must be included in the relay output.
275 static BOOL check_relay_include( const char *module, int ordinal, const char *func )
277 if (debug_relay_excludelist && check_list( module, ordinal, func, debug_relay_excludelist ))
279 if (debug_relay_includelist && !check_list( module, ordinal, func, debug_relay_includelist ))
284 /***********************************************************************
287 * Check if calls from a given module must be included in the relay/snoop output,
288 * given the exclusion and inclusion lists.
290 static BOOL check_from_module( const WCHAR **includelist, const WCHAR **excludelist, const WCHAR *module )
292 static const WCHAR dllW[] = {'.','d','l','l',0 };
293 const WCHAR **listitem;
296 if (!module) return TRUE;
297 if (!includelist && !excludelist) return TRUE;
301 listitem = excludelist;
306 listitem = includelist;
308 for(; *listitem; listitem++)
312 if (!strcmpiW( *listitem, module )) return !show;
313 len = strlenW( *listitem );
314 if (!strncmpiW( *listitem, module, len ) && !strcmpiW( module + len, dllW ))
320 /***********************************************************************
323 static inline void RELAY_PrintArgs( int *args, int nb_args, unsigned int typemask )
327 if ((typemask & 3) && HIWORD(*args))
330 DPRINTF( "%08x %s", *args, debugstr_w((LPWSTR)*args) );
332 DPRINTF( "%08x %s", *args, debugstr_a((LPCSTR)*args) );
334 else DPRINTF( "%08x", *args );
335 if (nb_args) DPRINTF( "," );
341 extern LONGLONG call_entry_point( void *func, int nb_args, const int *args );
342 __ASM_GLOBAL_FUNC( call_entry_point,
347 "\tmovl 12(%ebp),%edx\n"
352 "\tmovl 12(%ebp),%ecx\n"
353 "\tmovl 16(%ebp),%esi\n"
357 "1:\tcall *8(%ebp)\n"
358 "\tleal -8(%ebp),%esp\n"
365 /***********************************************************************
368 * stack points to the return address, i.e. the first argument is stack[1].
370 static LONGLONG WINAPI relay_call_from_32( struct relay_descr *descr, unsigned int idx, int *stack )
373 WORD ordinal = LOWORD(idx);
374 BYTE nb_args = LOBYTE(HIWORD(idx));
375 BYTE flags = HIBYTE(HIWORD(idx));
376 struct relay_private_data *data = descr->private;
377 struct relay_entry_point *entry_point = data->entry_points + ordinal;
379 if (!TRACE_ON(relay))
380 ret = call_entry_point( entry_point->orig_func, nb_args, stack + 1 );
383 if (entry_point->name)
384 DPRINTF( "%04lx:Call %s.%s(", GetCurrentThreadId(), data->dllname, entry_point->name );
386 DPRINTF( "%04lx:Call %s.%u(", GetCurrentThreadId(), data->dllname, data->base + ordinal );
387 RELAY_PrintArgs( stack + 1, nb_args, descr->arg_types[ordinal] );
388 DPRINTF( ") ret=%08x\n", stack[0] );
390 ret = call_entry_point( entry_point->orig_func, nb_args, stack + 1 );
392 if (entry_point->name)
393 DPRINTF( "%04lx:Ret %s.%s()", GetCurrentThreadId(), data->dllname, entry_point->name );
395 DPRINTF( "%04lx:Ret %s.%u()", GetCurrentThreadId(), data->dllname, data->base + ordinal );
397 if (flags & 1) /* 64-bit return value */
398 DPRINTF( " retval=%08x%08x ret=%08x\n",
399 (UINT)(ret >> 32), (UINT)ret, stack[0] );
401 DPRINTF( " retval=%08x ret=%08x\n", (UINT)ret, stack[0] );
407 /***********************************************************************
408 * relay_call_from_32_regs
410 void WINAPI __regs_relay_call_from_32_regs( struct relay_descr *descr, unsigned int idx,
411 unsigned int orig_eax, unsigned int ret_addr,
414 WORD ordinal = LOWORD(idx);
415 BYTE nb_args = LOBYTE(HIWORD(idx));
416 BYTE flags = HIBYTE(HIWORD(idx));
417 struct relay_private_data *data = descr->private;
418 struct relay_entry_point *entry_point = data->entry_points + ordinal;
419 BYTE *orig_func = entry_point->orig_func;
420 int *args = (int *)context->Esp;
423 /* restore the context to what it was before the relay thunk */
424 context->Eax = orig_eax;
425 context->Eip = ret_addr;
426 if (flags & 2) /* stdcall */
427 context->Esp += nb_args * sizeof(int);
431 if (entry_point->name)
432 DPRINTF( "%04lx:Call %s.%s(", GetCurrentThreadId(), data->dllname, entry_point->name );
434 DPRINTF( "%04lx:Call %s.%u(", GetCurrentThreadId(), data->dllname, data->base + ordinal );
435 RELAY_PrintArgs( args, nb_args, descr->arg_types[ordinal] );
436 DPRINTF( ") ret=%08x\n", ret_addr );
438 DPRINTF( "%04lx: eax=%08lx ebx=%08lx ecx=%08lx edx=%08lx esi=%08lx edi=%08lx "
439 "ebp=%08lx esp=%08lx ds=%04lx es=%04lx fs=%04lx gs=%04lx flags=%08lx\n",
440 GetCurrentThreadId(), context->Eax, context->Ebx, context->Ecx,
441 context->Edx, context->Esi, context->Edi, context->Ebp, context->Esp,
442 context->SegDs, context->SegEs, context->SegFs, context->SegGs, context->EFlags );
444 assert( orig_func[0] == 0x50 /* pushl %eax */ );
445 assert( orig_func[1] == 0xe8 /* call */ );
448 /* now call the real function */
450 memcpy( args_copy, args, nb_args * sizeof(args[0]) );
451 args_copy[nb_args++] = (int)context; /* append context argument */
453 call_entry_point( orig_func + 6 + *(int *)(orig_func + 6), nb_args, args_copy );
458 if (entry_point->name)
459 DPRINTF( "%04lx:Ret %s.%s() retval=%08lx ret=%08lx\n",
460 GetCurrentThreadId(), data->dllname, entry_point->name,
461 context->Eax, context->Eip );
463 DPRINTF( "%04lx:Ret %s.%u() retval=%08lx ret=%08lx\n",
464 GetCurrentThreadId(), data->dllname, data->base + ordinal,
465 context->Eax, context->Eip );
466 DPRINTF( "%04lx: eax=%08lx ebx=%08lx ecx=%08lx edx=%08lx esi=%08lx edi=%08lx "
467 "ebp=%08lx esp=%08lx ds=%04lx es=%04lx fs=%04lx gs=%04lx flags=%08lx\n",
468 GetCurrentThreadId(), context->Eax, context->Ebx, context->Ecx,
469 context->Edx, context->Esi, context->Edi, context->Ebp, context->Esp,
470 context->SegDs, context->SegEs, context->SegFs, context->SegGs, context->EFlags );
473 extern void WINAPI relay_call_from_32_regs(void);
474 DEFINE_REGS_ENTRYPOINT( relay_call_from_32_regs, 16, 16 );
477 /***********************************************************************
478 * RELAY_GetProcAddress
480 * Return the proc address to use for a given function.
482 FARPROC RELAY_GetProcAddress( HMODULE module, const IMAGE_EXPORT_DIRECTORY *exports,
483 DWORD exp_size, FARPROC proc, DWORD ordinal, const WCHAR *user )
485 struct relay_private_data *data;
486 const struct relay_descr *descr = (const struct relay_descr *)((const char *)exports + exp_size);
488 if (descr->magic != RELAY_DESCR_MAGIC || !(data = descr->private)) return proc; /* no relay data */
489 if (!data->entry_points[ordinal].orig_func) return proc; /* not a relayed function */
490 if (check_from_module( debug_from_relay_includelist, debug_from_relay_excludelist, user ))
491 return proc; /* we want to relay it */
492 return data->entry_points[ordinal].orig_func;
496 /***********************************************************************
499 * Setup relay debugging for a built-in dll.
501 void RELAY_SetupDLL( HMODULE module )
503 IMAGE_EXPORT_DIRECTORY *exports;
506 DWORD size, entry_point_rva;
507 struct relay_descr *descr;
508 struct relay_private_data *data;
511 if (!init_done) init_debug_lists();
513 exports = RtlImageDirectoryEntryToData( module, TRUE, IMAGE_DIRECTORY_ENTRY_EXPORT, &size );
514 if (!exports) return;
516 descr = (struct relay_descr *)((char *)exports + size);
517 if (descr->magic != RELAY_DESCR_MAGIC) return;
519 if (!(data = RtlAllocateHeap( GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*data) +
520 (exports->NumberOfFunctions-1) * sizeof(data->entry_points) )))
523 descr->relay_from_32 = relay_call_from_32;
524 descr->relay_from_32_regs = relay_call_from_32_regs;
525 descr->private = data;
527 data->module = module;
528 data->base = exports->Base;
529 len = strlen( (char *)module + exports->Name );
530 if (len > 4 && !strcasecmp( (char *)module + exports->Name + len - 4, ".dll" )) len -= 4;
531 len = min( len, sizeof(data->dllname) - 1 );
532 memcpy( data->dllname, (char *)module + exports->Name, len );
533 data->dllname[len] = 0;
535 /* fetch name pointer for all entry points and store them in the private structure */
537 ordptr = (const WORD *)((char *)module + exports->AddressOfNameOrdinals);
538 for (i = 0; i < exports->NumberOfNames; i++, ordptr++)
540 DWORD name_rva = ((DWORD*)((char *)module + exports->AddressOfNames))[i];
541 data->entry_points[*ordptr].name = (const char *)module + name_rva;
544 /* patch the functions in the export table to point to the relay thunks */
546 funcs = (DWORD *)((char *)module + exports->AddressOfFunctions);
547 entry_point_rva = (const char *)descr->entry_point_base - (const char *)module;
548 for (i = 0; i < exports->NumberOfFunctions; i++, funcs++)
550 if (!descr->entry_point_offsets[i]) continue; /* not a normal function */
551 if (!check_relay_include( data->dllname, i + exports->Base, data->entry_points[i].name ))
552 continue; /* don't include this entry point */
554 data->entry_points[i].orig_func = (char *)module + *funcs;
555 *funcs = entry_point_rva + descr->entry_point_offsets[i];
561 /***********************************************************************/
563 /***********************************************************************/
565 #include "pshpack1.h"
570 BYTE lcall; /* 0xe8 call snoopentry (relative) */
571 /* NOTE: If you move snoopentry OR nrofargs fix the relative offset
574 DWORD snoopentry; /* SNOOP_Entry relative */
581 typedef struct tagSNOOP_DLL {
586 struct tagSNOOP_DLL *next;
593 BYTE lcall; /* 0xe8 call snoopret relative*/
594 /* NOTE: If you move snoopret OR origreturn fix the relative offset
597 DWORD snoopret; /* SNOOP_Ret relative */
603 DWORD *args; /* saved args across a stdcall */
606 typedef struct tagSNOOP_RETURNENTRIES {
607 SNOOP_RETURNENTRY entry[4092/sizeof(SNOOP_RETURNENTRY)];
608 struct tagSNOOP_RETURNENTRIES *next;
609 } SNOOP_RETURNENTRIES;
613 extern void WINAPI SNOOP_Entry(void);
614 extern void WINAPI SNOOP_Return(void);
616 static SNOOP_DLL *firstdll;
617 static SNOOP_RETURNENTRIES *firstrets;
620 /***********************************************************************
621 * SNOOP_ShowDebugmsgSnoop
623 * Simple function to decide if a particular debugging message is
626 static BOOL SNOOP_ShowDebugmsgSnoop(const char *module, int ordinal, const char *func)
628 if (debug_snoop_excludelist && check_list( module, ordinal, func, debug_snoop_excludelist ))
630 if (debug_snoop_includelist && !check_list( module, ordinal, func, debug_snoop_includelist ))
636 /***********************************************************************
639 * Setup snoop debugging for a native dll.
641 void SNOOP_SetupDLL(HMODULE hmod)
643 SNOOP_DLL **dll = &firstdll;
647 IMAGE_EXPORT_DIRECTORY *exports;
649 if (!init_done) init_debug_lists();
651 exports = RtlImageDirectoryEntryToData( hmod, TRUE, IMAGE_DIRECTORY_ENTRY_EXPORT, &size );
652 if (!exports) return;
653 name = (char *)hmod + exports->Name;
655 TRACE_(snoop)("hmod=%p, name=%s\n", hmod, name);
658 if ((*dll)->hmod == hmod)
660 /* another dll, loaded at the same address */
662 size = (*dll)->nrofordinals * sizeof(SNOOP_FUN);
663 NtFreeVirtualMemory(NtCurrentProcess(), &addr, &size, MEM_RELEASE);
666 dll = &((*dll)->next);
669 *dll = RtlReAllocateHeap(GetProcessHeap(),
670 HEAP_ZERO_MEMORY, *dll,
671 sizeof(SNOOP_DLL) + strlen(name));
673 *dll = RtlAllocateHeap(GetProcessHeap(),
675 sizeof(SNOOP_DLL) + strlen(name));
677 (*dll)->ordbase = exports->Base;
678 (*dll)->nrofordinals = exports->NumberOfFunctions;
679 strcpy( (*dll)->name, name );
680 p = (*dll)->name + strlen((*dll)->name) - 4;
681 if (p > (*dll)->name && !strcasecmp( p, ".dll" )) *p = 0;
683 size = exports->NumberOfFunctions * sizeof(SNOOP_FUN);
685 NtAllocateVirtualMemory(NtCurrentProcess(), &addr, 0, &size,
686 MEM_COMMIT | MEM_RESERVE, PAGE_EXECUTE_READWRITE);
688 RtlFreeHeap(GetProcessHeap(),0,*dll);
689 FIXME("out of memory\n");
693 memset((*dll)->funs,0,size);
697 /***********************************************************************
698 * SNOOP_GetProcAddress
700 * Return the proc address to use for a given function.
702 FARPROC SNOOP_GetProcAddress( HMODULE hmod, const IMAGE_EXPORT_DIRECTORY *exports,
703 DWORD exp_size, FARPROC origfun, DWORD ordinal,
708 const WORD *ordinals;
710 SNOOP_DLL *dll = firstdll;
712 const IMAGE_SECTION_HEADER *sec;
714 if (!TRACE_ON(snoop)) return origfun;
715 if (!check_from_module( debug_from_snoop_includelist, debug_from_snoop_excludelist, user ))
716 return origfun; /* the calling module was explicitly excluded */
718 if (!*(LPBYTE)origfun) /* 0x00 is an imposs. opcode, poss. dataref. */
721 sec = RtlImageRvaToSection( RtlImageNtHeader(hmod), hmod, (char *)origfun - (char *)hmod );
723 if (!sec || !(sec->Characteristics & IMAGE_SCN_CNT_CODE))
724 return origfun; /* most likely a data reference */
727 if (hmod == dll->hmod)
731 if (!dll) /* probably internal */
734 /* try to find a name for it */
736 names = (const DWORD *)((const char *)hmod + exports->AddressOfNames);
737 ordinals = (const WORD *)((const char *)hmod + exports->AddressOfNameOrdinals);
738 if (names) for (i = 0; i < exports->NumberOfNames; i++)
740 if (ordinals[i] == ordinal)
742 ename = (const char *)hmod + names[i];
746 if (!SNOOP_ShowDebugmsgSnoop(dll->name,ordinal,ename))
748 assert(ordinal < dll->nrofordinals);
749 fun = dll->funs + ordinal;
754 /* NOTE: origreturn struct member MUST come directly after snoopentry */
755 fun->snoopentry = (char*)SNOOP_Entry-((char*)(&fun->nrofargs));
756 fun->origfun = origfun;
759 return (FARPROC)&(fun->lcall);
762 static void SNOOP_PrintArg(DWORD x)
767 if (!HIWORD(x) || TRACE_ON(seh)) return; /* trivial reject to avoid faults */
774 if (s[i]<0x20) {nostring=1;break;}
775 if (s[i]>=0x80) {nostring=1;break;}
778 if (!nostring && i > 5)
779 DPRINTF(" %s",debugstr_an((LPSTR)x,i));
780 else /* try unicode */
786 if (s[i]<0x20) {nostring=1;break;}
787 if (s[i]>0x100) {nostring=1;break;}
790 if (!nostring && i > 5) DPRINTF(" %s",debugstr_wn((LPWSTR)x,i));
799 #define CALLER1REF (*(DWORD*)context->Esp)
801 void WINAPI __regs_SNOOP_Entry( CONTEXT86 *context )
803 DWORD ordinal=0,entry = context->Eip - 5;
804 SNOOP_DLL *dll = firstdll;
805 SNOOP_FUN *fun = NULL;
806 SNOOP_RETURNENTRIES **rets = &firstrets;
807 SNOOP_RETURNENTRY *ret;
811 if ( ((char*)entry>=(char*)dll->funs) &&
812 ((char*)entry<=(char*)(dll->funs+dll->nrofordinals))
814 fun = (SNOOP_FUN*)entry;
815 ordinal = fun-dll->funs;
821 FIXME("entrypoint 0x%08lx not found\n",entry);
824 /* guess cdecl ... */
825 if (fun->nrofargs<0) {
826 /* Typical cdecl return frame is:
828 * which has (for xxxxxxxx up to 255 the opcode "83 C4 xx".
829 * (after that 81 C2 xx xx xx xx)
831 LPBYTE reteip = (LPBYTE)CALLER1REF;
834 if ((reteip[0]==0x83)&&(reteip[1]==0xc4))
835 fun->nrofargs=reteip[2]/4;
841 for (i=0;i<sizeof((*rets)->entry)/sizeof((*rets)->entry[0]);i++)
842 if (!(*rets)->entry[i].origreturn)
844 if (i!=sizeof((*rets)->entry)/sizeof((*rets)->entry[0]))
846 rets = &((*rets)->next);
852 NtAllocateVirtualMemory(NtCurrentProcess(), &addr, 0, &size,
853 MEM_COMMIT | MEM_RESERVE,
854 PAGE_EXECUTE_READWRITE);
857 memset(*rets,0,4096);
858 i = 0; /* entry 0 is free */
860 ret = &((*rets)->entry[i]);
862 /* NOTE: origreturn struct member MUST come directly after snoopret */
863 ret->snoopret = ((char*)SNOOP_Return)-(char*)(&ret->origreturn);
864 ret->origreturn = (FARPROC)CALLER1REF;
865 CALLER1REF = (DWORD)&ret->lcall;
868 ret->ordinal = ordinal;
869 ret->origESP = context->Esp;
871 context->Eip = (DWORD)fun->origfun;
873 if (fun->name) DPRINTF("%04lx:CALL %s.%s(",GetCurrentThreadId(),dll->name,fun->name);
874 else DPRINTF("%04lx:CALL %s.%ld(",GetCurrentThreadId(),dll->name,dll->ordbase+ordinal);
875 if (fun->nrofargs>0) {
876 max = fun->nrofargs; if (max>16) max=16;
879 SNOOP_PrintArg(*(DWORD*)(context->Esp + 4 + sizeof(DWORD)*i));
880 if (i<fun->nrofargs-1) DPRINTF(",");
882 if (max!=fun->nrofargs)
884 } else if (fun->nrofargs<0) {
885 DPRINTF("<unknown, check return>");
886 ret->args = RtlAllocateHeap(GetProcessHeap(),
888 memcpy(ret->args,(LPBYTE)(context->Esp + 4),sizeof(DWORD)*16);
890 DPRINTF(") ret=%08lx\n",(DWORD)ret->origreturn);
894 void WINAPI __regs_SNOOP_Return( CONTEXT86 *context )
896 SNOOP_RETURNENTRY *ret = (SNOOP_RETURNENTRY*)(context->Eip - 5);
897 SNOOP_FUN *fun = &ret->dll->funs[ret->ordinal];
899 /* We haven't found out the nrofargs yet. If we called a cdecl
900 * function it is too late anyway and we can just set '0' (which
901 * will be the difference between orig and current ESP
902 * If stdcall -> everything ok.
904 if (ret->dll->funs[ret->ordinal].nrofargs<0)
905 ret->dll->funs[ret->ordinal].nrofargs=(context->Esp - ret->origESP-4)/4;
906 context->Eip = (DWORD)ret->origreturn;
911 DPRINTF("%04lx:RET %s.%s(", GetCurrentThreadId(), ret->dll->name, fun->name);
913 DPRINTF("%04lx:RET %s.%ld(", GetCurrentThreadId(),
914 ret->dll->name,ret->dll->ordbase+ret->ordinal);
921 SNOOP_PrintArg(ret->args[i]);
922 if (i<max-1) DPRINTF(",");
924 DPRINTF(") retval=%08lx ret=%08lx\n",
925 context->Eax,(DWORD)ret->origreturn );
926 RtlFreeHeap(GetProcessHeap(),0,ret->args);
932 DPRINTF("%04lx:RET %s.%s() retval=%08lx ret=%08lx\n",
933 GetCurrentThreadId(),
934 ret->dll->name, fun->name, context->Eax, (DWORD)ret->origreturn);
936 DPRINTF("%04lx:RET %s.%ld() retval=%08lx ret=%08lx\n",
937 GetCurrentThreadId(),
938 ret->dll->name,ret->dll->ordbase+ret->ordinal,
939 context->Eax, (DWORD)ret->origreturn);
941 ret->origreturn = NULL; /* mark as empty */
944 /* assembly wrappers that save the context */
945 DEFINE_REGS_ENTRYPOINT( SNOOP_Entry, 0, 0 );
946 DEFINE_REGS_ENTRYPOINT( SNOOP_Return, 0, 0 );
950 FARPROC RELAY_GetProcAddress( HMODULE module, const IMAGE_EXPORT_DIRECTORY *exports,
951 DWORD exp_size, FARPROC proc, DWORD ordinal, const WCHAR *user )
956 FARPROC SNOOP_GetProcAddress( HMODULE hmod, const IMAGE_EXPORT_DIRECTORY *exports, DWORD exp_size,
957 FARPROC origfun, DWORD ordinal, const WCHAR *user )
962 void RELAY_SetupDLL( HMODULE module )
966 void SNOOP_SetupDLL( HMODULE hmod )
968 FIXME("snooping works only on i386 for now.\n");
971 #endif /* __i386__ */