Fixes for -Wmissing-declaration and -Wwrite-string warnings.
[wine] / dlls / ntdll / relay.c
1 /*
2  * Win32 relay and snoop functions
3  *
4  * Copyright 1997 Alexandre Julliard
5  * Copyright 1998 Marcus Meissner
6  *
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.
11  *
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.
16  *
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
20  */
21
22 #include "config.h"
23 #include "wine/port.h"
24
25 #include <assert.h>
26 #include <string.h>
27 #include <stdarg.h>
28 #include <stdio.h>
29
30 #include "windef.h"
31 #include "winbase.h"
32 #include "winreg.h"
33 #include "winternl.h"
34 #include "excpt.h"
35 #include "wine/exception.h"
36 #include "ntdll_misc.h"
37 #include "wine/unicode.h"
38 #include "wine/debug.h"
39
40 WINE_DEFAULT_DEBUG_CHANNEL(relay);
41 WINE_DECLARE_DEBUG_CHANNEL(snoop);
42 WINE_DECLARE_DEBUG_CHANNEL(seh);
43
44 static const WCHAR **debug_relay_excludelist;
45 static const WCHAR **debug_relay_includelist;
46 static const WCHAR **debug_snoop_excludelist;
47 static const WCHAR **debug_snoop_includelist;
48 static const WCHAR **debug_from_relay_excludelist;
49 static const WCHAR **debug_from_relay_includelist;
50 static const WCHAR **debug_from_snoop_excludelist;
51 static const WCHAR **debug_from_snoop_includelist;
52
53 /* compare an ASCII and a Unicode string without depending on the current codepage */
54 inline static int strcmpAW( const char *strA, const WCHAR *strW )
55 {
56     while (*strA && ((unsigned char)*strA == *strW)) { strA++; strW++; }
57     return (unsigned char)*strA - *strW;
58 }
59
60 /* compare an ASCII and a Unicode string without depending on the current codepage */
61 inline static int strncmpiAW( const char *strA, const WCHAR *strW, int n )
62 {
63     int ret = 0;
64     for ( ; n > 0; n--, strA++, strW++)
65         if ((ret = toupperW((unsigned char)*strA) - toupperW(*strW)) || !*strA) break;
66     return ret;
67 }
68
69 /***********************************************************************
70  *           build_list
71  *
72  * Build a function list from a ';'-separated string.
73  */
74 static const WCHAR **build_list( const WCHAR *buffer )
75 {
76     int count = 1;
77     const WCHAR *p = buffer;
78     const WCHAR **ret;
79
80     while ((p = strchrW( p, ';' )))
81     {
82         count++;
83         p++;
84     }
85     /* allocate count+1 pointers, plus the space for a copy of the string */
86     if ((ret = RtlAllocateHeap( GetProcessHeap(), 0,
87                                 (count+1) * sizeof(WCHAR*) + (strlenW(buffer)+1) * sizeof(WCHAR) )))
88     {
89         WCHAR *str = (WCHAR *)(ret + count + 1);
90         WCHAR *p = str;
91
92         strcpyW( str, buffer );
93         count = 0;
94         for (;;)
95         {
96             ret[count++] = p;
97             if (!(p = strchrW( p, ';' ))) break;
98             *p++ = 0;
99         }
100         ret[count++] = NULL;
101     }
102     return ret;
103 }
104
105
106 /***********************************************************************
107  *           RELAY_InitDebugLists
108  *
109  * Build the relay include/exclude function lists.
110  */
111 void RELAY_InitDebugLists(void)
112 {
113     OBJECT_ATTRIBUTES attr;
114     UNICODE_STRING name;
115     char buffer[1024];
116     HKEY hkey;
117     DWORD count;
118     WCHAR *str;
119     static const WCHAR configW[] = {'M','a','c','h','i','n','e','\\',
120                                     'S','o','f','t','w','a','r','e','\\',
121                                     'W','i','n','e','\\',
122                                     'W','i','n','e','\\',
123                                     'C','o','n','f','i','g','\\',
124                                     'D','e','b','u','g',0};
125     static const WCHAR RelayIncludeW[] = {'R','e','l','a','y','I','n','c','l','u','d','e',0};
126     static const WCHAR RelayExcludeW[] = {'R','e','l','a','y','E','x','c','l','u','d','e',0};
127     static const WCHAR SnoopIncludeW[] = {'S','n','o','o','p','I','n','c','l','u','d','e',0};
128     static const WCHAR SnoopExcludeW[] = {'S','n','o','o','p','E','x','c','l','u','d','e',0};
129     static const WCHAR RelayFromIncludeW[] = {'R','e','l','a','y','F','r','o','m','I','n','c','l','u','d','e',0};
130     static const WCHAR RelayFromExcludeW[] = {'R','e','l','a','y','F','r','o','m','E','x','c','l','u','d','e',0};
131     static const WCHAR SnoopFromIncludeW[] = {'S','n','o','o','p','F','r','o','m','I','n','c','l','u','d','e',0};
132     static const WCHAR SnoopFromExcludeW[] = {'S','n','o','o','p','F','r','o','m','E','x','c','l','u','d','e',0};
133
134     attr.Length = sizeof(attr);
135     attr.RootDirectory = 0;
136     attr.ObjectName = &name;
137     attr.Attributes = 0;
138     attr.SecurityDescriptor = NULL;
139     attr.SecurityQualityOfService = NULL;
140     RtlInitUnicodeString( &name, configW );
141
142     /* @@ Wine registry key: HKLM\Software\Wine\Wine\Config\Debug */
143     if (NtOpenKey( &hkey, KEY_ALL_ACCESS, &attr )) return;
144
145     str = (WCHAR *)((KEY_VALUE_PARTIAL_INFORMATION *)buffer)->Data;
146     RtlInitUnicodeString( &name, RelayIncludeW );
147     if (!NtQueryValueKey( hkey, &name, KeyValuePartialInformation, buffer, sizeof(buffer), &count ))
148     {
149         TRACE("RelayInclude = %s\n", debugstr_w(str) );
150         debug_relay_includelist = build_list( str );
151     }
152
153     RtlInitUnicodeString( &name, RelayExcludeW );
154     if (!NtQueryValueKey( hkey, &name, KeyValuePartialInformation, buffer, sizeof(buffer), &count ))
155     {
156         TRACE( "RelayExclude = %s\n", debugstr_w(str) );
157         debug_relay_excludelist = build_list( str );
158     }
159
160     RtlInitUnicodeString( &name, SnoopIncludeW );
161     if (!NtQueryValueKey( hkey, &name, KeyValuePartialInformation, buffer, sizeof(buffer), &count ))
162     {
163         TRACE_(snoop)( "SnoopInclude = %s\n", debugstr_w(str) );
164         debug_snoop_includelist = build_list( str );
165     }
166
167     RtlInitUnicodeString( &name, SnoopExcludeW );
168     if (!NtQueryValueKey( hkey, &name, KeyValuePartialInformation, buffer, sizeof(buffer), &count ))
169     {
170         TRACE_(snoop)( "SnoopExclude = %s\n", debugstr_w(str) );
171         debug_snoop_excludelist = build_list( str );
172     }
173
174     RtlInitUnicodeString( &name, RelayFromIncludeW );
175     if (!NtQueryValueKey( hkey, &name, KeyValuePartialInformation, buffer, sizeof(buffer), &count ))
176     {
177         TRACE("RelayFromInclude = %s\n", debugstr_w(str) );
178         debug_from_relay_includelist = build_list( str );
179     }
180
181     RtlInitUnicodeString( &name, RelayFromExcludeW );
182     if (!NtQueryValueKey( hkey, &name, KeyValuePartialInformation, buffer, sizeof(buffer), &count ))
183     {
184         TRACE( "RelayFromExclude = %s\n", debugstr_w(str) );
185         debug_from_relay_excludelist = build_list( str );
186     }
187
188     RtlInitUnicodeString( &name, SnoopFromIncludeW );
189     if (!NtQueryValueKey( hkey, &name, KeyValuePartialInformation, buffer, sizeof(buffer), &count ))
190     {
191         TRACE_(snoop)("SnoopFromInclude = %s\n", debugstr_w(str) );
192         debug_from_snoop_includelist = build_list( str );
193     }
194
195     RtlInitUnicodeString( &name, SnoopFromExcludeW );
196     if (!NtQueryValueKey( hkey, &name, KeyValuePartialInformation, buffer, sizeof(buffer), &count ))
197     {
198         TRACE_(snoop)( "SnoopFromExclude = %s\n", debugstr_w(str) );
199         debug_from_snoop_excludelist = build_list( str );
200     }
201
202     NtClose( hkey );
203 }
204
205
206 #ifdef __i386__
207
208 #include "pshpack1.h"
209
210 typedef struct
211 {
212     BYTE          call;         /* 0xe8 call callfrom32 (relative) */
213     DWORD         callfrom32;   /* RELAY_CallFrom32 relative addr */
214     BYTE          ret;          /* 0xc2 ret $n  or  0xc3 ret */
215     WORD          args;         /* nb of args to remove from the stack */
216     void         *orig;         /* original entry point */
217     DWORD         argtypes;     /* argument types */
218 } DEBUG_ENTRY_POINT;
219
220 typedef struct
221 {
222         /* code part */
223         BYTE            lcall;          /* 0xe8 call snoopentry (relative) */
224         /* NOTE: If you move snoopentry OR nrofargs fix the relative offset
225          * calculation!
226          */
227         DWORD           snoopentry;     /* SNOOP_Entry relative */
228         /* unreached */
229         int             nrofargs;
230         FARPROC origfun;
231         const char *name;
232 } SNOOP_FUN;
233
234 typedef struct tagSNOOP_DLL {
235         HMODULE hmod;
236         SNOOP_FUN       *funs;
237         DWORD           ordbase;
238         DWORD           nrofordinals;
239         struct tagSNOOP_DLL     *next;
240         char name[1];
241 } SNOOP_DLL;
242
243 typedef struct
244 {
245         /* code part */
246         BYTE            lcall;          /* 0xe8 call snoopret relative*/
247         /* NOTE: If you move snoopret OR origreturn fix the relative offset
248          * calculation!
249          */
250         DWORD           snoopret;       /* SNOOP_Ret relative */
251         /* unreached */
252         FARPROC origreturn;
253         SNOOP_DLL       *dll;
254         DWORD           ordinal;
255         DWORD           origESP;
256         DWORD           *args;          /* saved args across a stdcall */
257 } SNOOP_RETURNENTRY;
258
259 typedef struct tagSNOOP_RETURNENTRIES {
260         SNOOP_RETURNENTRY entry[4092/sizeof(SNOOP_RETURNENTRY)];
261         struct tagSNOOP_RETURNENTRIES   *next;
262 } SNOOP_RETURNENTRIES;
263
264 #include "poppack.h"
265
266 extern void WINAPI SNOOP_Entry();
267 extern void WINAPI SNOOP_Return();
268
269 static SNOOP_DLL *firstdll;
270 static SNOOP_RETURNENTRIES *firstrets;
271
272 static WINE_EXCEPTION_FILTER(page_fault)
273 {
274     if (GetExceptionCode() == EXCEPTION_ACCESS_VIOLATION ||
275         GetExceptionCode() == EXCEPTION_PRIV_INSTRUCTION)
276         return EXCEPTION_EXECUTE_HANDLER;
277     return EXCEPTION_CONTINUE_SEARCH;
278 }
279
280 /***********************************************************************
281  *           check_list
282  *
283  * Check if a given module and function is in the list.
284  */
285 static BOOL check_list( const char *module, int ordinal, const char *func, const WCHAR **list )
286 {
287     char ord_str[10];
288
289     sprintf( ord_str, "%d", ordinal );
290     for(; *list; list++)
291     {
292         const WCHAR *p = strrchrW( *list, '.' );
293         if (p && p > *list)  /* check module and function */
294         {
295             int len = p - *list;
296             if (strncmpiAW( module, *list, len-1 ) || module[len]) continue;
297             if (p[1] == '*' && !p[2]) return TRUE;
298             if (!strcmpAW( ord_str, p + 1 )) return TRUE;
299             if (func && !strcmpAW( func, p + 1 )) return TRUE;
300         }
301         else  /* function only */
302         {
303             if (func && !strcmpAW( func, *list )) return TRUE;
304         }
305     }
306     return FALSE;
307 }
308
309
310 /***********************************************************************
311  *           check_relay_include
312  *
313  * Check if a given function must be included in the relay output.
314  */
315 static BOOL check_relay_include( const char *module, int ordinal, const char *func )
316 {
317     if (debug_relay_excludelist && check_list( module, ordinal, func, debug_relay_excludelist ))
318         return FALSE;
319     if (debug_relay_includelist && !check_list( module, ordinal, func, debug_relay_includelist ))
320         return FALSE;
321     return TRUE;
322 }
323
324 /***********************************************************************
325  *           check_from_module
326  *
327  * Check if calls from a given module must be included in the relay/snoop output,
328  * given the exclusion and inclusion lists.
329  */
330 static BOOL check_from_module( const WCHAR **includelist, const WCHAR **excludelist, const WCHAR *module )
331 {
332     static const WCHAR dllW[] = {'.','d','l','l',0 };
333     const WCHAR **listitem;
334     BOOL show;
335
336     if (!module) return TRUE;
337     if (!includelist && !excludelist) return TRUE;
338     if (excludelist)
339     {
340         show = TRUE;
341         listitem = excludelist;
342     }
343     else
344     {
345         show = FALSE;
346         listitem = includelist;
347     }
348     for(; *listitem; listitem++)
349     {
350         int len;
351
352         if (!strcmpiW( *listitem, module )) return !show;
353         len = strlenW( *listitem );
354         if (!strncmpiW( *listitem, module, len ) && !strcmpiW( module + len, dllW ))
355             return !show;
356     }
357     return show;
358 }
359
360 /***********************************************************************
361  *           find_exported_name
362  *
363  * Find the name of an exported function.
364  */
365 static const char *find_exported_name( HMODULE module,
366                                        IMAGE_EXPORT_DIRECTORY *exp, int ordinal )
367 {
368     unsigned int i;
369     const char *ret = NULL;
370
371     WORD *ordptr = (WORD *)((char *)module + exp->AddressOfNameOrdinals);
372     for (i = 0; i < exp->NumberOfNames; i++, ordptr++)
373         if (*ordptr + exp->Base == ordinal) break;
374     if (i < exp->NumberOfNames)
375         ret = (char *)module + ((DWORD*)((char *)module + exp->AddressOfNames))[i];
376     return ret;
377 }
378
379
380 /***********************************************************************
381  *           get_entry_point
382  *
383  * Get the name of the DLL entry point corresponding to a relay address.
384  */
385 static void get_entry_point( char *buffer, DEBUG_ENTRY_POINT *relay )
386 {
387     IMAGE_EXPORT_DIRECTORY *exp = NULL;
388     DEBUG_ENTRY_POINT *debug;
389     char *p;
390     const char *name;
391     int ordinal = 0;
392     PLIST_ENTRY mark, entry;
393     PLDR_MODULE mod = NULL;
394     DWORD size;
395
396     /* First find the module */
397
398     mark = &NtCurrentTeb()->Peb->LdrData->InLoadOrderModuleList;
399     for (entry = mark->Flink; entry != mark; entry = entry->Flink)
400     {
401         mod = CONTAINING_RECORD(entry, LDR_MODULE, InLoadOrderModuleList);
402         if (!(mod->Flags & LDR_WINE_INTERNAL)) continue;
403         exp = RtlImageDirectoryEntryToData( mod->BaseAddress, TRUE, IMAGE_DIRECTORY_ENTRY_EXPORT, &size );
404         if (!exp) continue;
405         debug = (DEBUG_ENTRY_POINT *)((char *)exp + size);
406         if (debug <= relay && relay < debug + exp->NumberOfFunctions)
407         {
408             ordinal = relay - debug;
409             break;
410         }
411     }
412
413     /* Now find the function */
414
415     strcpy( buffer, (char *)mod->BaseAddress + exp->Name );
416     p = buffer + strlen(buffer);
417     if (p > buffer + 4 && !strcasecmp( p - 4, ".dll" )) p -= 4;
418
419     if ((name = find_exported_name( mod->BaseAddress, exp, ordinal + exp->Base )))
420         sprintf( p, ".%s", name );
421     else
422         sprintf( p, ".%ld", ordinal + exp->Base );
423 }
424
425
426 /***********************************************************************
427  *           RELAY_PrintArgs
428  */
429 static inline void RELAY_PrintArgs( int *args, int nb_args, unsigned int typemask )
430 {
431     while (nb_args--)
432     {
433         if ((typemask & 3) && HIWORD(*args))
434         {
435             if (typemask & 2)
436                 DPRINTF( "%08x %s", *args, debugstr_w((LPWSTR)*args) );
437             else
438                 DPRINTF( "%08x %s", *args, debugstr_a((LPCSTR)*args) );
439         }
440         else DPRINTF( "%08x", *args );
441         if (nb_args) DPRINTF( "," );
442         args++;
443         typemask >>= 2;
444     }
445 }
446
447
448 typedef LONGLONG (*LONGLONG_CPROC)();
449 typedef LONGLONG (WINAPI *LONGLONG_FARPROC)();
450
451
452 /***********************************************************************
453  *           call_cdecl_function
454  */
455 static LONGLONG call_cdecl_function( LONGLONG_CPROC func, int nb_args, const int *args )
456 {
457     LONGLONG ret;
458     switch(nb_args)
459     {
460     case 0: ret = func(); break;
461     case 1: ret = func(args[0]); break;
462     case 2: ret = func(args[0],args[1]); break;
463     case 3: ret = func(args[0],args[1],args[2]); break;
464     case 4: ret = func(args[0],args[1],args[2],args[3]); break;
465     case 5: ret = func(args[0],args[1],args[2],args[3],args[4]); break;
466     case 6: ret = func(args[0],args[1],args[2],args[3],args[4],
467                        args[5]); break;
468     case 7: ret = func(args[0],args[1],args[2],args[3],args[4],args[5],
469                        args[6]); break;
470     case 8: ret = func(args[0],args[1],args[2],args[3],args[4],args[5],
471                        args[6],args[7]); break;
472     case 9: ret = func(args[0],args[1],args[2],args[3],args[4],args[5],
473                        args[6],args[7],args[8]); break;
474     case 10: ret = func(args[0],args[1],args[2],args[3],args[4],args[5],
475                         args[6],args[7],args[8],args[9]); break;
476     case 11: ret = func(args[0],args[1],args[2],args[3],args[4],args[5],
477                         args[6],args[7],args[8],args[9],args[10]); break;
478     case 12: ret = func(args[0],args[1],args[2],args[3],args[4],args[5],
479                         args[6],args[7],args[8],args[9],args[10],
480                         args[11]); break;
481     case 13: ret = func(args[0],args[1],args[2],args[3],args[4],args[5],
482                         args[6],args[7],args[8],args[9],args[10],args[11],
483                         args[12]); break;
484     case 14: ret = func(args[0],args[1],args[2],args[3],args[4],args[5],
485                         args[6],args[7],args[8],args[9],args[10],args[11],
486                         args[12],args[13]); break;
487     case 15: ret = func(args[0],args[1],args[2],args[3],args[4],args[5],
488                         args[6],args[7],args[8],args[9],args[10],args[11],
489                         args[12],args[13],args[14]); break;
490     case 16: ret = func(args[0],args[1],args[2],args[3],args[4],args[5],
491                         args[6],args[7],args[8],args[9],args[10],args[11],
492                         args[12],args[13],args[14],args[15]); break;
493     case 17: ret = func(args[0],args[1],args[2],args[3],args[4],args[5],
494                         args[6],args[7],args[8],args[9],args[10],args[11],
495                         args[12],args[13],args[14],args[15],args[16]); break;
496     case 18: ret = func(args[0],args[1],args[2],args[3],args[4],args[5],
497                         args[6],args[7],args[8],args[9],args[10],args[11],
498                         args[12],args[13],args[14],args[15],args[16],
499                         args[17]); break;
500     default:
501         ERR( "Unsupported nb of args %d\n", nb_args );
502         assert(FALSE);
503         ret = 0;
504         break;
505     }
506     return ret;
507 }
508
509
510 /***********************************************************************
511  *           call_stdcall_function
512  */
513 static LONGLONG call_stdcall_function( LONGLONG_FARPROC func, int nb_args, const int *args )
514 {
515     LONGLONG ret;
516     switch(nb_args)
517     {
518     case 0: ret = func(); break;
519     case 1: ret = func(args[0]); break;
520     case 2: ret = func(args[0],args[1]); break;
521     case 3: ret = func(args[0],args[1],args[2]); break;
522     case 4: ret = func(args[0],args[1],args[2],args[3]); break;
523     case 5: ret = func(args[0],args[1],args[2],args[3],args[4]); break;
524     case 6: ret = func(args[0],args[1],args[2],args[3],args[4],
525                        args[5]); break;
526     case 7: ret = func(args[0],args[1],args[2],args[3],args[4],args[5],
527                        args[6]); break;
528     case 8: ret = func(args[0],args[1],args[2],args[3],args[4],args[5],
529                        args[6],args[7]); break;
530     case 9: ret = func(args[0],args[1],args[2],args[3],args[4],args[5],
531                        args[6],args[7],args[8]); break;
532     case 10: ret = func(args[0],args[1],args[2],args[3],args[4],args[5],
533                         args[6],args[7],args[8],args[9]); break;
534     case 11: ret = func(args[0],args[1],args[2],args[3],args[4],args[5],
535                         args[6],args[7],args[8],args[9],args[10]); break;
536     case 12: ret = func(args[0],args[1],args[2],args[3],args[4],args[5],
537                         args[6],args[7],args[8],args[9],args[10],
538                         args[11]); break;
539     case 13: ret = func(args[0],args[1],args[2],args[3],args[4],args[5],
540                         args[6],args[7],args[8],args[9],args[10],args[11],
541                         args[12]); break;
542     case 14: ret = func(args[0],args[1],args[2],args[3],args[4],args[5],
543                         args[6],args[7],args[8],args[9],args[10],args[11],
544                         args[12],args[13]); break;
545     case 15: ret = func(args[0],args[1],args[2],args[3],args[4],args[5],
546                         args[6],args[7],args[8],args[9],args[10],args[11],
547                         args[12],args[13],args[14]); break;
548     case 16: ret = func(args[0],args[1],args[2],args[3],args[4],args[5],
549                         args[6],args[7],args[8],args[9],args[10],args[11],
550                         args[12],args[13],args[14],args[15]); break;
551     case 17: ret = func(args[0],args[1],args[2],args[3],args[4],args[5],
552                         args[6],args[7],args[8],args[9],args[10],args[11],
553                         args[12],args[13],args[14],args[15],args[16]); break;
554     case 18: ret = func(args[0],args[1],args[2],args[3],args[4],args[5],
555                         args[6],args[7],args[8],args[9],args[10],args[11],
556                         args[12],args[13],args[14],args[15],args[16],
557                         args[17]); break;
558     default:
559         ERR( "Unsupported nb of args %d\n", nb_args );
560         assert(FALSE);
561         ret = 0;
562         break;
563     }
564     return ret;
565 }
566
567
568 /***********************************************************************
569  *           RELAY_CallFrom32
570  *
571  * Stack layout on entry to this function:
572  *  ...      ...
573  * (esp+12)  arg2
574  * (esp+8)   arg1
575  * (esp+4)   ret_addr
576  * (esp)     return addr to relay code
577  */
578 static LONGLONG RELAY_CallFrom32( int ret_addr, ... )
579 {
580     LONGLONG ret;
581     char buffer[80];
582
583     int *args = &ret_addr + 1;
584     /* Relay addr is the return address for this function */
585     BYTE *relay_addr = (BYTE *)__builtin_return_address(0);
586     DEBUG_ENTRY_POINT *relay = (DEBUG_ENTRY_POINT *)(relay_addr - 5);
587     WORD nb_args = relay->args / sizeof(int);
588
589     if (TRACE_ON(relay))
590     {
591         get_entry_point( buffer, relay );
592
593         DPRINTF( "%04lx:Call %s(", GetCurrentThreadId(), buffer );
594         RELAY_PrintArgs( args, nb_args, relay->argtypes );
595         DPRINTF( ") ret=%08x\n", ret_addr );
596     }
597
598     if (relay->ret == 0xc3) /* cdecl */
599     {
600         ret = call_cdecl_function( (LONGLONG_CPROC)relay->orig, nb_args, args );
601     }
602     else  /* stdcall */
603     {
604         ret = call_stdcall_function( (LONGLONG_FARPROC)relay->orig, nb_args, args );
605     }
606
607     if (TRACE_ON(relay))
608     {
609         BOOL ret64 = (relay->argtypes & 0x80000000) && (nb_args < 16);
610         if (ret64)
611             DPRINTF( "%04lx:Ret  %s() retval=%08x%08x ret=%08x\n",
612                      GetCurrentThreadId(),
613                      buffer, (UINT)(ret >> 32), (UINT)ret, ret_addr );
614         else
615             DPRINTF( "%04lx:Ret  %s() retval=%08x ret=%08x\n",
616                      GetCurrentThreadId(),
617                      buffer, (UINT)ret, ret_addr );
618     }
619     return ret;
620 }
621
622
623 /***********************************************************************
624  *           RELAY_CallFrom32Regs
625  *
626  * Stack layout (esp is context->Esp, not the current %esp):
627  *
628  * ...
629  * (esp+4) first arg
630  * (esp)   return addr to caller
631  * (esp-4) return addr to DEBUG_ENTRY_POINT
632  * (esp-8) ptr to relay entry code for RELAY_CallFrom32Regs
633  *  ...    >128 bytes space free to be modified (ensured by the assembly glue)
634  */
635 void WINAPI RELAY_DoCallFrom32Regs( CONTEXT86 *context )
636 {
637     char buffer[80];
638     int* args;
639     int args_copy[17];
640     BYTE *entry_point;
641
642     BYTE *relay_addr = *((BYTE **)context->Esp - 1);
643     DEBUG_ENTRY_POINT *relay = (DEBUG_ENTRY_POINT *)(relay_addr - 5);
644     WORD nb_args = relay->args / sizeof(int);
645
646     /* remove extra stuff from the stack */
647     context->Eip = *(DWORD *)context->Esp;
648     context->Esp += sizeof(DWORD);
649     args = (int *)context->Esp;
650     if (relay->ret == 0xc2) /* stdcall */
651         context->Esp += nb_args * sizeof(int);
652
653     entry_point = (BYTE *)relay->orig;
654     assert( *entry_point == 0xe8 /* lcall */ );
655
656     if (TRACE_ON(relay))
657     {
658         get_entry_point( buffer, relay );
659
660         DPRINTF( "%04lx:Call %s(", GetCurrentThreadId(), buffer );
661         RELAY_PrintArgs( args, nb_args, relay->argtypes );
662         DPRINTF( ") ret=%08lx fs=%04lx\n", context->Eip, context->SegFs );
663
664         DPRINTF(" eax=%08lx ebx=%08lx ecx=%08lx edx=%08lx esi=%08lx edi=%08lx\n",
665                 context->Eax, context->Ebx, context->Ecx,
666                 context->Edx, context->Esi, context->Edi );
667         DPRINTF(" ebp=%08lx esp=%08lx ds=%04lx es=%04lx gs=%04lx flags=%08lx\n",
668                 context->Ebp, context->Esp, context->SegDs,
669                 context->SegEs, context->SegGs, context->EFlags );
670     }
671
672     /* Now call the real function */
673
674     memcpy( args_copy, args, nb_args * sizeof(args[0]) );
675     args_copy[nb_args] = (int)context;  /* append context argument */
676     if (relay->ret == 0xc3) /* cdecl */
677     {
678         call_cdecl_function( *(LONGLONG_CPROC *)(entry_point + 5), nb_args+1, args_copy );
679     }
680     else  /* stdcall */
681     {
682         call_stdcall_function( *(LONGLONG_FARPROC *)(entry_point + 5), nb_args+1, args_copy );
683     }
684
685     if (TRACE_ON(relay))
686     {
687         DPRINTF( "%04lx:Ret  %s() retval=%08lx ret=%08lx fs=%04lx\n",
688                  GetCurrentThreadId(),
689                  buffer, context->Eax, context->Eip, context->SegFs );
690
691         DPRINTF(" eax=%08lx ebx=%08lx ecx=%08lx edx=%08lx esi=%08lx edi=%08lx\n",
692                 context->Eax, context->Ebx, context->Ecx,
693                 context->Edx, context->Esi, context->Edi );
694         DPRINTF(" ebp=%08lx esp=%08lx ds=%04lx es=%04lx gs=%04lx flags=%08lx\n",
695                 context->Ebp, context->Esp, context->SegDs,
696                 context->SegEs, context->SegGs, context->EFlags );
697     }
698 }
699
700 void WINAPI RELAY_CallFrom32Regs(void);
701 __ASM_GLOBAL_FUNC( RELAY_CallFrom32Regs,
702                    "call " __ASM_NAME("__wine_call_from_32_regs") "\n\t"
703                    ".long " __ASM_NAME("RELAY_DoCallFrom32Regs") ",0" );
704
705
706 /* check whether the function at addr starts with a call to __wine_call_from_32_regs */
707 static BOOL is_register_entry_point( const BYTE *addr )
708 {
709     extern void __wine_call_from_32_regs();
710     const int *offset;
711     const void *ptr;
712
713     if (*addr != 0xe8) return FALSE;  /* not a call */
714     /* check if call target is __wine_call_from_32_regs */
715     offset = (const int *)(addr + 1);
716     if (*offset == (const char *)__wine_call_from_32_regs - (const char *)(offset + 1)) return TRUE;
717     /* now check if call target is an import table jump to __wine_call_from_32_regs */
718     addr = (const BYTE *)(offset + 1) + *offset;
719     if (addr[0] != 0xff || addr[1] != 0x25) return FALSE;  /* not an indirect jmp */
720     ptr = *(const void * const*)(addr + 2);  /* get indirect jmp target address */
721     return (*(const char * const*)ptr == (char *)__wine_call_from_32_regs);
722 }
723
724
725 /***********************************************************************
726  *           RELAY_GetProcAddress
727  *
728  * Return the proc address to use for a given function.
729  */
730 FARPROC RELAY_GetProcAddress( HMODULE module, const IMAGE_EXPORT_DIRECTORY *exports,
731                               DWORD exp_size, FARPROC proc, const WCHAR *user )
732 {
733     const DEBUG_ENTRY_POINT *debug = (DEBUG_ENTRY_POINT *)proc;
734     const DEBUG_ENTRY_POINT *list = (const DEBUG_ENTRY_POINT *)((const char *)exports + exp_size);
735
736     if (debug < list || debug >= list + exports->NumberOfFunctions) return proc;
737     if (list + (debug - list) != debug) return proc;  /* not a valid address */
738     if (check_from_module( debug_from_relay_includelist, debug_from_relay_excludelist, user ))
739        return proc;  /* we want to relay it */
740     if (!debug->call) return proc;  /* not a normal function */
741     if (debug->call != 0xe8 && debug->call != 0xe9) return proc; /* not a debug thunk at all */
742     return debug->orig;
743 }
744
745
746 /***********************************************************************
747  *           RELAY_SetupDLL
748  *
749  * Setup relay debugging for a built-in dll.
750  */
751 void RELAY_SetupDLL( HMODULE module )
752 {
753     IMAGE_EXPORT_DIRECTORY *exports;
754     DEBUG_ENTRY_POINT *debug;
755     DWORD *funcs;
756     unsigned int i;
757     const char *name;
758     char *p, dllname[80];
759     DWORD size;
760
761     exports = RtlImageDirectoryEntryToData( module, TRUE, IMAGE_DIRECTORY_ENTRY_EXPORT, &size );
762     if (!exports) return;
763     debug = (DEBUG_ENTRY_POINT *)((char *)exports + size);
764     funcs = (DWORD *)((char *)module + exports->AddressOfFunctions);
765     strcpy( dllname, (char *)module + exports->Name );
766     p = dllname + strlen(dllname) - 4;
767     if (p > dllname && !strcasecmp( p, ".dll" )) *p = 0;
768
769     for (i = 0; i < exports->NumberOfFunctions; i++, funcs++, debug++)
770     {
771         int on = 1;
772
773         if (!debug->call) continue;  /* not a normal function */
774         if (debug->call != 0xe8 && debug->call != 0xe9) break; /* not a debug thunk at all */
775
776         name = find_exported_name( module, exports, i + exports->Base );
777         on = check_relay_include( dllname, i + exports->Base, name );
778
779         if (on)
780         {
781             debug->call = 0xe8;  /* call relative */
782             if (is_register_entry_point( debug->orig ))
783                 debug->callfrom32 = (char *)RELAY_CallFrom32Regs - (char *)&debug->ret;
784             else
785                 debug->callfrom32 = (char *)RELAY_CallFrom32 - (char *)&debug->ret;
786         }
787         else
788         {
789             debug->call = 0xe9;  /* jmp relative */
790             debug->callfrom32 = (char *)debug->orig - (char *)&debug->ret;
791         }
792         *funcs = (char *)debug - (char *)module;
793     }
794 }
795
796
797 /***********************************************************************
798  *          SNOOP_ShowDebugmsgSnoop
799  *
800  * Simple function to decide if a particular debugging message is
801  * wanted.
802  */
803 static BOOL SNOOP_ShowDebugmsgSnoop(const char *module, int ordinal, const char *func)
804 {
805     if (debug_snoop_excludelist && check_list( module, ordinal, func, debug_snoop_excludelist ))
806         return FALSE;
807     if (debug_snoop_includelist && !check_list( module, ordinal, func, debug_snoop_includelist ))
808         return FALSE;
809     return TRUE;
810 }
811
812
813 /***********************************************************************
814  *           SNOOP_SetupDLL
815  *
816  * Setup snoop debugging for a native dll.
817  */
818 void SNOOP_SetupDLL(HMODULE hmod)
819 {
820     SNOOP_DLL **dll = &firstdll;
821     char *p, *name;
822     void *addr;
823     SIZE_T size;
824     IMAGE_EXPORT_DIRECTORY *exports;
825
826     exports = RtlImageDirectoryEntryToData( hmod, TRUE, IMAGE_DIRECTORY_ENTRY_EXPORT, &size );
827     if (!exports) return;
828     name = (char *)hmod + exports->Name;
829
830     TRACE_(snoop)("hmod=%p, name=%s\n", hmod, name);
831
832     while (*dll) {
833         if ((*dll)->hmod == hmod)
834         {
835             /* another dll, loaded at the same address */
836             addr = (*dll)->funs;
837             size = (*dll)->nrofordinals * sizeof(SNOOP_FUN);
838             NtFreeVirtualMemory(NtCurrentProcess(), &addr, &size, MEM_RELEASE);
839             break;
840         }
841         dll = &((*dll)->next);
842     }
843     if (*dll)
844         *dll = RtlReAllocateHeap(GetProcessHeap(),
845                              HEAP_ZERO_MEMORY, *dll,
846                              sizeof(SNOOP_DLL) + strlen(name));
847     else
848         *dll = RtlAllocateHeap(GetProcessHeap(),
849                              HEAP_ZERO_MEMORY,
850                              sizeof(SNOOP_DLL) + strlen(name));
851     (*dll)->hmod        = hmod;
852     (*dll)->ordbase = exports->Base;
853     (*dll)->nrofordinals = exports->NumberOfFunctions;
854     strcpy( (*dll)->name, name );
855     p = (*dll)->name + strlen((*dll)->name) - 4;
856     if (p > (*dll)->name && !strcasecmp( p, ".dll" )) *p = 0;
857
858     size = exports->NumberOfFunctions * sizeof(SNOOP_FUN);
859     addr = NULL;
860     NtAllocateVirtualMemory(NtCurrentProcess(), &addr, 0, &size,
861                             MEM_COMMIT | MEM_RESERVE, PAGE_EXECUTE_READWRITE);
862     if (!addr) {
863         RtlFreeHeap(GetProcessHeap(),0,*dll);
864         FIXME("out of memory\n");
865         return;
866     }
867     (*dll)->funs = addr;
868     memset((*dll)->funs,0,size);
869 }
870
871
872 /***********************************************************************
873  *           SNOOP_GetProcAddress
874  *
875  * Return the proc address to use for a given function.
876  */
877 FARPROC SNOOP_GetProcAddress( HMODULE hmod, const IMAGE_EXPORT_DIRECTORY *exports,
878                               DWORD exp_size, FARPROC origfun, DWORD ordinal,
879                               const WCHAR *user)
880 {
881     unsigned int i;
882     const char *ename;
883     const WORD *ordinals;
884     const DWORD *names;
885     SNOOP_DLL *dll = firstdll;
886     SNOOP_FUN *fun;
887     const IMAGE_SECTION_HEADER *sec;
888
889     if (!TRACE_ON(snoop)) return origfun;
890     if (!check_from_module( debug_from_snoop_includelist, debug_from_snoop_excludelist, user ))
891         return origfun; /* the calling module was explicitly excluded */
892
893     if (!*(LPBYTE)origfun) /* 0x00 is an imposs. opcode, poss. dataref. */
894         return origfun;
895
896     sec = RtlImageRvaToSection( RtlImageNtHeader(hmod), hmod, (char *)origfun - (char *)hmod );
897
898     if (!sec || !(sec->Characteristics & IMAGE_SCN_CNT_CODE))
899         return origfun;  /* most likely a data reference */
900
901     while (dll) {
902         if (hmod == dll->hmod)
903             break;
904         dll = dll->next;
905     }
906     if (!dll)   /* probably internal */
907         return origfun;
908
909     /* try to find a name for it */
910     ename = NULL;
911     names = (const DWORD *)((const char *)hmod + exports->AddressOfNames);
912     ordinals = (const WORD *)((const char *)hmod + exports->AddressOfNameOrdinals);
913     if (names) for (i = 0; i < exports->NumberOfNames; i++)
914     {
915         if (ordinals[i] == ordinal)
916         {
917             ename = (const char *)hmod + names[i];
918             break;
919         }
920     }
921     if (!SNOOP_ShowDebugmsgSnoop(dll->name,ordinal,ename))
922         return origfun;
923     assert(ordinal < dll->nrofordinals);
924     fun = dll->funs + ordinal;
925     if (!fun->name)
926     {
927         fun->name       = ename;
928         fun->lcall      = 0xe8;
929         /* NOTE: origreturn struct member MUST come directly after snoopentry */
930         fun->snoopentry = (char*)SNOOP_Entry-((char*)(&fun->nrofargs));
931         fun->origfun    = origfun;
932         fun->nrofargs   = -1;
933     }
934     return (FARPROC)&(fun->lcall);
935 }
936
937 static void SNOOP_PrintArg(DWORD x)
938 {
939     int i,nostring;
940
941     DPRINTF("%08lx",x);
942     if (!HIWORD(x) || TRACE_ON(seh)) return; /* trivial reject to avoid faults */
943     __TRY
944     {
945         LPBYTE s=(LPBYTE)x;
946         i=0;nostring=0;
947         while (i<80) {
948             if (s[i]==0) break;
949             if (s[i]<0x20) {nostring=1;break;}
950             if (s[i]>=0x80) {nostring=1;break;}
951             i++;
952         }
953         if (!nostring && i > 5)
954             DPRINTF(" %s",debugstr_an((LPSTR)x,i));
955         else  /* try unicode */
956         {
957             LPWSTR s=(LPWSTR)x;
958             i=0;nostring=0;
959             while (i<80) {
960                 if (s[i]==0) break;
961                 if (s[i]<0x20) {nostring=1;break;}
962                 if (s[i]>0x100) {nostring=1;break;}
963                 i++;
964             }
965             if (!nostring && i > 5) DPRINTF(" %s",debugstr_wn((LPWSTR)x,i));
966         }
967     }
968     __EXCEPT(page_fault)
969     {
970     }
971     __ENDTRY
972 }
973
974 #define CALLER1REF (*(DWORD*)context->Esp)
975
976 void WINAPI SNOOP_DoEntry( CONTEXT86 *context )
977 {
978         DWORD           ordinal=0,entry = context->Eip - 5;
979         SNOOP_DLL       *dll = firstdll;
980         SNOOP_FUN       *fun = NULL;
981         SNOOP_RETURNENTRIES     **rets = &firstrets;
982         SNOOP_RETURNENTRY       *ret;
983         int             i=0, max;
984
985         while (dll) {
986                 if (    ((char*)entry>=(char*)dll->funs)        &&
987                         ((char*)entry<=(char*)(dll->funs+dll->nrofordinals))
988                 ) {
989                         fun = (SNOOP_FUN*)entry;
990                         ordinal = fun-dll->funs;
991                         break;
992                 }
993                 dll=dll->next;
994         }
995         if (!dll) {
996                 FIXME("entrypoint 0x%08lx not found\n",entry);
997                 return; /* oops */
998         }
999         /* guess cdecl ... */
1000         if (fun->nrofargs<0) {
1001                 /* Typical cdecl return frame is:
1002                  *     add esp, xxxxxxxx
1003                  * which has (for xxxxxxxx up to 255 the opcode "83 C4 xx".
1004                  * (after that 81 C2 xx xx xx xx)
1005                  */
1006                 LPBYTE  reteip = (LPBYTE)CALLER1REF;
1007
1008                 if (reteip) {
1009                         if ((reteip[0]==0x83)&&(reteip[1]==0xc4))
1010                                 fun->nrofargs=reteip[2]/4;
1011                 }
1012         }
1013
1014
1015         while (*rets) {
1016                 for (i=0;i<sizeof((*rets)->entry)/sizeof((*rets)->entry[0]);i++)
1017                         if (!(*rets)->entry[i].origreturn)
1018                                 break;
1019                 if (i!=sizeof((*rets)->entry)/sizeof((*rets)->entry[0]))
1020                         break;
1021                 rets = &((*rets)->next);
1022         }
1023         if (!*rets) {
1024                 SIZE_T size = 4096;
1025                 VOID* addr = NULL;
1026
1027                 NtAllocateVirtualMemory(NtCurrentProcess(), &addr, 0, &size, 
1028                                         MEM_COMMIT | MEM_RESERVE,
1029                                         PAGE_EXECUTE_READWRITE);
1030                 if (!addr) return;
1031                 *rets = addr;
1032                 memset(*rets,0,4096);
1033                 i = 0;  /* entry 0 is free */
1034         }
1035         ret = &((*rets)->entry[i]);
1036         ret->lcall      = 0xe8;
1037         /* NOTE: origreturn struct member MUST come directly after snoopret */
1038         ret->snoopret   = ((char*)SNOOP_Return)-(char*)(&ret->origreturn);
1039         ret->origreturn = (FARPROC)CALLER1REF;
1040         CALLER1REF      = (DWORD)&ret->lcall;
1041         ret->dll        = dll;
1042         ret->args       = NULL;
1043         ret->ordinal    = ordinal;
1044         ret->origESP    = context->Esp;
1045
1046         context->Eip = (DWORD)fun->origfun;
1047
1048         if (fun->name) DPRINTF("%04lx:CALL %s.%s(",GetCurrentThreadId(),dll->name,fun->name);
1049         else DPRINTF("%04lx:CALL %s.%ld(",GetCurrentThreadId(),dll->name,dll->ordbase+ordinal);
1050         if (fun->nrofargs>0) {
1051                 max = fun->nrofargs; if (max>16) max=16;
1052                 for (i=0;i<max;i++)
1053                 {
1054                     SNOOP_PrintArg(*(DWORD*)(context->Esp + 4 + sizeof(DWORD)*i));
1055                     if (i<fun->nrofargs-1) DPRINTF(",");
1056                 }
1057                 if (max!=fun->nrofargs)
1058                         DPRINTF(" ...");
1059         } else if (fun->nrofargs<0) {
1060                 DPRINTF("<unknown, check return>");
1061                 ret->args = RtlAllocateHeap(GetProcessHeap(),
1062                                             0,16*sizeof(DWORD));
1063                 memcpy(ret->args,(LPBYTE)(context->Esp + 4),sizeof(DWORD)*16);
1064         }
1065         DPRINTF(") ret=%08lx\n",(DWORD)ret->origreturn);
1066 }
1067
1068
1069 void WINAPI SNOOP_DoReturn( CONTEXT86 *context )
1070 {
1071         SNOOP_RETURNENTRY       *ret = (SNOOP_RETURNENTRY*)(context->Eip - 5);
1072         SNOOP_FUN *fun = &ret->dll->funs[ret->ordinal];
1073
1074         /* We haven't found out the nrofargs yet. If we called a cdecl
1075          * function it is too late anyway and we can just set '0' (which
1076          * will be the difference between orig and current ESP
1077          * If stdcall -> everything ok.
1078          */
1079         if (ret->dll->funs[ret->ordinal].nrofargs<0)
1080                 ret->dll->funs[ret->ordinal].nrofargs=(context->Esp - ret->origESP-4)/4;
1081         context->Eip = (DWORD)ret->origreturn;
1082         if (ret->args) {
1083                 int     i,max;
1084
1085                 if (fun->name)
1086                     DPRINTF("%04lx:RET  %s.%s(", GetCurrentThreadId(), ret->dll->name, fun->name);
1087                 else
1088                     DPRINTF("%04lx:RET  %s.%ld(", GetCurrentThreadId(),
1089                             ret->dll->name,ret->dll->ordbase+ret->ordinal);
1090
1091                 max = fun->nrofargs;
1092                 if (max>16) max=16;
1093
1094                 for (i=0;i<max;i++)
1095                 {
1096                     SNOOP_PrintArg(ret->args[i]);
1097                     if (i<max-1) DPRINTF(",");
1098                 }
1099                 DPRINTF(") retval=%08lx ret=%08lx\n",
1100                         context->Eax,(DWORD)ret->origreturn );
1101                 RtlFreeHeap(GetProcessHeap(),0,ret->args);
1102                 ret->args = NULL;
1103         }
1104         else
1105         {
1106             if (fun->name)
1107                 DPRINTF("%04lx:RET  %s.%s() retval=%08lx ret=%08lx\n",
1108                         GetCurrentThreadId(),
1109                         ret->dll->name, fun->name, context->Eax, (DWORD)ret->origreturn);
1110             else
1111                 DPRINTF("%04lx:RET  %s.%ld() retval=%08lx ret=%08lx\n",
1112                         GetCurrentThreadId(),
1113                         ret->dll->name,ret->dll->ordbase+ret->ordinal,
1114                         context->Eax, (DWORD)ret->origreturn);
1115         }
1116         ret->origreturn = NULL; /* mark as empty */
1117 }
1118
1119 /* assembly wrappers that save the context */
1120 __ASM_GLOBAL_FUNC( SNOOP_Entry,
1121                    "call " __ASM_NAME("__wine_call_from_32_regs") "\n\t"
1122                    ".long " __ASM_NAME("SNOOP_DoEntry") ",0" );
1123 __ASM_GLOBAL_FUNC( SNOOP_Return,
1124                    "call " __ASM_NAME("__wine_call_from_32_regs") "\n\t"
1125                    ".long " __ASM_NAME("SNOOP_DoReturn") ",0" );
1126
1127 #else  /* __i386__ */
1128
1129 FARPROC RELAY_GetProcAddress( HMODULE module, const IMAGE_EXPORT_DIRECTORY *exports,
1130                               DWORD exp_size, FARPROC proc, const WCHAR *user )
1131 {
1132     return proc;
1133 }
1134
1135 FARPROC SNOOP_GetProcAddress( HMODULE hmod, const IMAGE_EXPORT_DIRECTORY *exports, DWORD exp_size,
1136                               FARPROC origfun, DWORD ordinal, const WCHAR *user )
1137 {
1138     return origfun;
1139 }
1140
1141 void RELAY_SetupDLL( HMODULE module )
1142 {
1143 }
1144
1145 void SNOOP_SetupDLL( HMODULE hmod )
1146 {
1147     FIXME("snooping works only on i386 for now.\n");
1148 }
1149
1150 #endif /* __i386__ */