- removed next & prev fields from WINE_MODREF and implement instead
[wine] / relay32 / relay386.c
1 /*
2  * 386-specific Win32 relay functions
3  *
4  * Copyright 1997 Alexandre Julliard
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20
21 #include "config.h"
22 #include "wine/port.h"
23
24 #include <assert.h>
25 #include <string.h>
26 #include <stdio.h>
27
28 #include "winternl.h"
29 #include "stackframe.h"
30 #include "wine/unicode.h"
31 #include "wine/debug.h"
32 #include "ntdll_misc.h"
33
34 WINE_DEFAULT_DEBUG_CHANNEL(relay);
35 WINE_DECLARE_DEBUG_CHANNEL(snoop);
36
37 const char **debug_relay_excludelist = NULL;
38 const char **debug_relay_includelist = NULL;
39 const char **debug_snoop_excludelist = NULL;
40 const char **debug_snoop_includelist = NULL;
41
42 static const char **debug_from_relay_excludelist;
43 static const char **debug_from_relay_includelist;
44
45 /***********************************************************************
46  *           build_list
47  *
48  * Build a function list from a ';'-separated string.
49  */
50 static const char **build_list( const WCHAR *bufferW )
51 {
52     int count = 1;
53     char buffer[1024];
54     const char *p = buffer;
55     const char **ret;
56
57     RtlUnicodeToMultiByteN( buffer, sizeof(buffer), NULL,
58                             bufferW, (strlenW(bufferW)+1) * sizeof(WCHAR) );
59
60     while ((p = strchr( p, ';' )))
61     {
62          count++;
63         p++;
64     }
65     /* allocate count+1 pointers, plus the space for a copy of the string */
66     if ((ret = RtlAllocateHeap( ntdll_get_process_heap(), 0, (count+1) * sizeof(char*) + strlen(buffer) + 1 )))
67     {
68         char *str = (char *)(ret + count + 1);
69         char *p = str;
70
71         strcpy( str, buffer );
72         count = 0;
73         for (;;)
74         {
75             ret[count++] = p;
76             if (!(p = strchr( p, ';' ))) break;
77             *p++ = 0;
78         }
79         ret[count++] = NULL;
80     }
81     return ret;
82 }
83
84
85 /***********************************************************************
86  *           RELAY_InitDebugLists
87  *
88  * Build the relay include/exclude function lists.
89  */
90 void RELAY_InitDebugLists(void)
91 {
92     OBJECT_ATTRIBUTES attr;
93     UNICODE_STRING name;
94     char buffer[1024];
95     HKEY hkey;
96     DWORD count;
97     WCHAR *str;
98     static const WCHAR configW[] = {'M','a','c','h','i','n','e','\\',
99                                     'S','o','f','t','w','a','r','e','\\',
100                                     'W','i','n','e','\\',
101                                     'W','i','n','e','\\',
102                                     'C','o','n','f','i','g','\\',
103                                     'D','e','b','u','g',0};
104     static const WCHAR RelayIncludeW[] = {'R','e','l','a','y','I','n','c','l','u','d','e',0};
105     static const WCHAR RelayExcludeW[] = {'R','e','l','a','y','E','x','c','l','u','d','e',0};
106     static const WCHAR SnoopIncludeW[] = {'S','n','o','o','p','I','n','c','l','u','d','e',0};
107     static const WCHAR SnoopExcludeW[] = {'S','n','o','o','p','E','x','c','l','u','d','e',0};
108     static const WCHAR RelayFromIncludeW[] = {'R','e','l','a','y','F','r','o','m','I','n','c','l','u','d','e',0};
109     static const WCHAR RelayFromExcludeW[] = {'R','e','l','a','y','F','r','o','m','E','x','c','l','u','d','e',0};
110
111     attr.Length = sizeof(attr);
112     attr.RootDirectory = 0;
113     attr.ObjectName = &name;
114     attr.Attributes = 0;
115     attr.SecurityDescriptor = NULL;
116     attr.SecurityQualityOfService = NULL;
117     RtlInitUnicodeString( &name, configW );
118
119     if (NtOpenKey( &hkey, KEY_ALL_ACCESS, &attr )) return;
120
121     str = (WCHAR *)((KEY_VALUE_PARTIAL_INFORMATION *)buffer)->Data;
122     RtlInitUnicodeString( &name, RelayIncludeW );
123     if (!NtQueryValueKey( hkey, &name, KeyValuePartialInformation, buffer, sizeof(buffer), &count ))
124     {
125         TRACE("RelayInclude = %s\n", debugstr_w(str) );
126         debug_relay_includelist = build_list( str );
127     }
128
129     RtlInitUnicodeString( &name, RelayExcludeW );
130     if (!NtQueryValueKey( hkey, &name, KeyValuePartialInformation, buffer, sizeof(buffer), &count ))
131     {
132         TRACE( "RelayExclude = %s\n", debugstr_w(str) );
133         debug_relay_excludelist = build_list( str );
134     }
135
136     RtlInitUnicodeString( &name, SnoopIncludeW );
137     if (!NtQueryValueKey( hkey, &name, KeyValuePartialInformation, buffer, sizeof(buffer), &count ))
138     {
139         TRACE_(snoop)( "SnoopInclude = %s\n", debugstr_w(str) );
140         debug_snoop_includelist = build_list( str );
141     }
142
143     RtlInitUnicodeString( &name, SnoopExcludeW );
144     if (!NtQueryValueKey( hkey, &name, KeyValuePartialInformation, buffer, sizeof(buffer), &count ))
145     {
146         TRACE_(snoop)( "SnoopExclude = %s\n", debugstr_w(str) );
147         debug_snoop_excludelist = build_list( str );
148     }
149
150     RtlInitUnicodeString( &name, RelayFromIncludeW );
151     if (!NtQueryValueKey( hkey, &name, KeyValuePartialInformation, buffer, sizeof(buffer), &count ))
152     {
153         TRACE("RelayFromInclude = %s\n", debugstr_w(str) );
154         debug_from_relay_includelist = build_list( str );
155     }
156
157     RtlInitUnicodeString( &name, RelayFromExcludeW );
158     if (!NtQueryValueKey( hkey, &name, KeyValuePartialInformation, buffer, sizeof(buffer), &count ))
159     {
160         TRACE( "RelayFromExclude = %s\n", debugstr_w(str) );
161         debug_from_relay_excludelist = build_list( str );
162     }
163
164     NtClose( hkey );
165 }
166
167
168 #ifdef __i386__
169
170 typedef struct
171 {
172     BYTE          call;                    /* 0xe8 call callfrom32 (relative) */
173     DWORD         callfrom32 WINE_PACKED;  /* RELAY_CallFrom32 relative addr */
174     BYTE          ret;                     /* 0xc2 ret $n  or  0xc3 ret */
175     WORD          args;                    /* nb of args to remove from the stack */
176     void         *orig;                    /* original entry point */
177     DWORD         argtypes;                /* argument types */
178 } DEBUG_ENTRY_POINT;
179
180
181 /***********************************************************************
182  *           check_relay_include
183  *
184  * Check if a given function must be included in the relay output.
185  */
186 static BOOL check_relay_include( const char *module, const char *func )
187 {
188     const char **listitem;
189     BOOL show;
190
191     if (!debug_relay_excludelist && !debug_relay_includelist) return TRUE;
192     if (debug_relay_excludelist)
193     {
194         show = TRUE;
195         listitem = debug_relay_excludelist;
196     }
197     else
198     {
199         show = FALSE;
200         listitem = debug_relay_includelist;
201     }
202     for(; *listitem; listitem++)
203     {
204         char *p = strrchr( *listitem, '.' );
205         if (p && p > *listitem)  /* check module and function */
206         {
207             int len = p - *listitem;
208             if (strncasecmp( *listitem, module, len-1 ) || module[len]) continue;
209             if (!strcmp( p + 1, func ) || !strcmp( p + 1, "*" )) return !show;
210         }
211         else  /* function only */
212         {
213             if (!strcmp( *listitem, func )) return !show;
214         }
215     }
216     return show;
217 }
218
219
220 /***********************************************************************
221  *           check_relay_from_module
222  *
223  * Check if calls from a given module must be included in the relay output.
224  */
225 static BOOL check_relay_from_module( const char *module )
226 {
227     const char **listitem;
228     BOOL show;
229
230     if (!debug_from_relay_excludelist && !debug_from_relay_includelist) return TRUE;
231     if (debug_from_relay_excludelist)
232     {
233         show = TRUE;
234         listitem = debug_from_relay_excludelist;
235     }
236     else
237     {
238         show = FALSE;
239         listitem = debug_from_relay_includelist;
240     }
241     for(; *listitem; listitem++)
242     {
243         int len;
244
245         if (!strcasecmp( *listitem, module )) return !show;
246         len = strlen( *listitem );
247         if (!strncasecmp( *listitem, module, len ) && !strcasecmp( module + len, ".dll" ))
248             return !show;
249     }
250     return show;
251 }
252
253
254 /***********************************************************************
255  *           find_exported_name
256  *
257  * Find the name of an exported function.
258  */
259 static const char *find_exported_name( const char *module,
260                                        IMAGE_EXPORT_DIRECTORY *exp, int ordinal )
261 {
262     int i;
263     const char *ret = NULL;
264
265     WORD *ordptr = (WORD *)(module + exp->AddressOfNameOrdinals);
266     for (i = 0; i < exp->NumberOfNames; i++, ordptr++)
267         if (*ordptr + exp->Base == ordinal) break;
268     if (i < exp->NumberOfNames)
269         ret = module + ((DWORD*)(module + exp->AddressOfNames))[i];
270     return ret;
271 }
272
273
274 /***********************************************************************
275  *           get_entry_point
276  *
277  * Get the name of the DLL entry point corresponding to a relay address.
278  */
279 static void get_entry_point( char *buffer, DEBUG_ENTRY_POINT *relay )
280 {
281     IMAGE_EXPORT_DIRECTORY *exp = NULL;
282     DEBUG_ENTRY_POINT *debug;
283     char *p, *base = NULL;
284     const char *name;
285     int ordinal = 0;
286     PLIST_ENTRY mark, entry;
287     PLDR_MODULE mod = NULL;
288     DWORD size;
289
290     /* First find the module */
291
292     mark = &NtCurrentTeb()->Peb->LdrData->InLoadOrderModuleList;
293     for (entry = mark->Flink; entry != mark; entry = entry->Flink)
294     {
295         mod = CONTAINING_RECORD(entry, LDR_MODULE, InLoadOrderModuleList);
296         if (!(mod->Flags & LDR_WINE_INTERNAL)) continue;
297         exp = RtlImageDirectoryEntryToData( mod->BaseAddress, TRUE, IMAGE_DIRECTORY_ENTRY_EXPORT, &size );
298         if (!exp) continue;
299         debug = (DEBUG_ENTRY_POINT *)((char *)exp + size);
300         if (debug <= relay && relay < debug + exp->NumberOfFunctions)
301         {
302             ordinal = relay - debug;
303             break;
304         }
305     }
306
307     /* Now find the function */
308
309     base = (char *)mod->BaseAddress;
310     strcpy( buffer, base + exp->Name );
311     p = buffer + strlen(buffer);
312     if (p > buffer + 4 && !strcasecmp( p - 4, ".dll" )) p -= 4;
313
314     if ((name = find_exported_name( base, exp, ordinal + exp->Base )))
315         sprintf( p, ".%s", name );
316     else
317         sprintf( p, ".%ld", ordinal + exp->Base );
318 }
319
320
321 /***********************************************************************
322  *           RELAY_PrintArgs
323  */
324 static inline void RELAY_PrintArgs( int *args, int nb_args, unsigned int typemask )
325 {
326     while (nb_args--)
327     {
328         if ((typemask & 3) && HIWORD(*args))
329         {
330             if (typemask & 2)
331                 DPRINTF( "%08x %s", *args, debugstr_w((LPWSTR)*args) );
332             else
333                 DPRINTF( "%08x %s", *args, debugstr_a((LPCSTR)*args) );
334         }
335         else DPRINTF( "%08x", *args );
336         if (nb_args) DPRINTF( "," );
337         args++;
338         typemask >>= 2;
339     }
340 }
341
342
343 typedef LONGLONG (*LONGLONG_CPROC)();
344 typedef LONGLONG (WINAPI *LONGLONG_FARPROC)();
345
346
347 /***********************************************************************
348  *           call_cdecl_function
349  */
350 static LONGLONG call_cdecl_function( LONGLONG_CPROC func, int nb_args, const int *args )
351 {
352     LONGLONG ret;
353     switch(nb_args)
354     {
355     case 0: ret = func(); break;
356     case 1: ret = func(args[0]); break;
357     case 2: ret = func(args[0],args[1]); break;
358     case 3: ret = func(args[0],args[1],args[2]); break;
359     case 4: ret = func(args[0],args[1],args[2],args[3]); break;
360     case 5: ret = func(args[0],args[1],args[2],args[3],args[4]); break;
361     case 6: ret = func(args[0],args[1],args[2],args[3],args[4],
362                        args[5]); break;
363     case 7: ret = func(args[0],args[1],args[2],args[3],args[4],args[5],
364                        args[6]); break;
365     case 8: ret = func(args[0],args[1],args[2],args[3],args[4],args[5],
366                        args[6],args[7]); break;
367     case 9: ret = func(args[0],args[1],args[2],args[3],args[4],args[5],
368                        args[6],args[7],args[8]); break;
369     case 10: ret = func(args[0],args[1],args[2],args[3],args[4],args[5],
370                         args[6],args[7],args[8],args[9]); break;
371     case 11: ret = func(args[0],args[1],args[2],args[3],args[4],args[5],
372                         args[6],args[7],args[8],args[9],args[10]); break;
373     case 12: ret = func(args[0],args[1],args[2],args[3],args[4],args[5],
374                         args[6],args[7],args[8],args[9],args[10],
375                         args[11]); break;
376     case 13: ret = func(args[0],args[1],args[2],args[3],args[4],args[5],
377                         args[6],args[7],args[8],args[9],args[10],args[11],
378                         args[12]); break;
379     case 14: ret = func(args[0],args[1],args[2],args[3],args[4],args[5],
380                         args[6],args[7],args[8],args[9],args[10],args[11],
381                         args[12],args[13]); break;
382     case 15: ret = func(args[0],args[1],args[2],args[3],args[4],args[5],
383                         args[6],args[7],args[8],args[9],args[10],args[11],
384                         args[12],args[13],args[14]); break;
385     case 16: ret = func(args[0],args[1],args[2],args[3],args[4],args[5],
386                         args[6],args[7],args[8],args[9],args[10],args[11],
387                         args[12],args[13],args[14],args[15]); break;
388     default:
389         ERR( "Unsupported nb of args %d\n", nb_args );
390         assert(FALSE);
391         ret = 0;
392         break;
393     }
394     return ret;
395 }
396
397
398 /***********************************************************************
399  *           call_stdcall_function
400  */
401 static LONGLONG call_stdcall_function( LONGLONG_FARPROC func, int nb_args, const int *args )
402 {
403     LONGLONG ret;
404     switch(nb_args)
405     {
406     case 0: ret = func(); break;
407     case 1: ret = func(args[0]); break;
408     case 2: ret = func(args[0],args[1]); break;
409     case 3: ret = func(args[0],args[1],args[2]); break;
410     case 4: ret = func(args[0],args[1],args[2],args[3]); break;
411     case 5: ret = func(args[0],args[1],args[2],args[3],args[4]); break;
412     case 6: ret = func(args[0],args[1],args[2],args[3],args[4],
413                        args[5]); break;
414     case 7: ret = func(args[0],args[1],args[2],args[3],args[4],args[5],
415                        args[6]); break;
416     case 8: ret = func(args[0],args[1],args[2],args[3],args[4],args[5],
417                        args[6],args[7]); break;
418     case 9: ret = func(args[0],args[1],args[2],args[3],args[4],args[5],
419                        args[6],args[7],args[8]); break;
420     case 10: ret = func(args[0],args[1],args[2],args[3],args[4],args[5],
421                         args[6],args[7],args[8],args[9]); break;
422     case 11: ret = func(args[0],args[1],args[2],args[3],args[4],args[5],
423                         args[6],args[7],args[8],args[9],args[10]); break;
424     case 12: ret = func(args[0],args[1],args[2],args[3],args[4],args[5],
425                         args[6],args[7],args[8],args[9],args[10],
426                         args[11]); break;
427     case 13: ret = func(args[0],args[1],args[2],args[3],args[4],args[5],
428                         args[6],args[7],args[8],args[9],args[10],args[11],
429                         args[12]); break;
430     case 14: ret = func(args[0],args[1],args[2],args[3],args[4],args[5],
431                         args[6],args[7],args[8],args[9],args[10],args[11],
432                         args[12],args[13]); break;
433     case 15: ret = func(args[0],args[1],args[2],args[3],args[4],args[5],
434                         args[6],args[7],args[8],args[9],args[10],args[11],
435                         args[12],args[13],args[14]); break;
436     case 16: ret = func(args[0],args[1],args[2],args[3],args[4],args[5],
437                         args[6],args[7],args[8],args[9],args[10],args[11],
438                         args[12],args[13],args[14],args[15]); break;
439     default:
440         ERR( "Unsupported nb of args %d\n", nb_args );
441         assert(FALSE);
442         ret = 0;
443         break;
444     }
445     return ret;
446 }
447
448
449 /***********************************************************************
450  *           RELAY_CallFrom32
451  *
452  * Stack layout on entry to this function:
453  *  ...      ...
454  * (esp+12)  arg2
455  * (esp+8)   arg1
456  * (esp+4)   ret_addr
457  * (esp)     return addr to relay code
458  */
459 static LONGLONG RELAY_CallFrom32( int ret_addr, ... )
460 {
461     LONGLONG ret;
462     char buffer[80];
463
464     int *args = &ret_addr + 1;
465     /* Relay addr is the return address for this function */
466     BYTE *relay_addr = (BYTE *)__builtin_return_address(0);
467     DEBUG_ENTRY_POINT *relay = (DEBUG_ENTRY_POINT *)(relay_addr - 5);
468     WORD nb_args = relay->args / sizeof(int);
469
470     if (TRACE_ON(relay))
471     {
472         get_entry_point( buffer, relay );
473
474         DPRINTF( "%04lx:Call %s(", GetCurrentThreadId(), buffer );
475         RELAY_PrintArgs( args, nb_args, relay->argtypes );
476         DPRINTF( ") ret=%08x\n", ret_addr );
477     }
478
479     if (relay->ret == 0xc3) /* cdecl */
480     {
481         ret = call_cdecl_function( (LONGLONG_CPROC)relay->orig, nb_args, args );
482     }
483     else  /* stdcall */
484     {
485         ret = call_stdcall_function( (LONGLONG_FARPROC)relay->orig, nb_args, args );
486     }
487
488     if (TRACE_ON(relay))
489     {
490         BOOL ret64 = (relay->argtypes & 0x80000000) && (nb_args < 16);
491         if (ret64)
492             DPRINTF( "%04lx:Ret  %s() retval=%08x%08x ret=%08x\n",
493                      GetCurrentThreadId(),
494                      buffer, (UINT)(ret >> 32), (UINT)ret, ret_addr );
495         else
496             DPRINTF( "%04lx:Ret  %s() retval=%08x ret=%08x\n",
497                      GetCurrentThreadId(),
498                      buffer, (UINT)ret, ret_addr );
499     }
500     return ret;
501 }
502
503
504 /***********************************************************************
505  *           RELAY_CallFrom32Regs
506  *
507  * Stack layout (esp is context->Esp, not the current %esp):
508  *
509  * ...
510  * (esp+4) first arg
511  * (esp)   return addr to caller
512  * (esp-4) return addr to DEBUG_ENTRY_POINT
513  * (esp-8) ptr to relay entry code for RELAY_CallFrom32Regs
514  *  ...    >128 bytes space free to be modified (ensured by the assembly glue)
515  */
516 void WINAPI RELAY_DoCallFrom32Regs( CONTEXT86 *context )
517 {
518     char buffer[80];
519     int* args;
520     int args_copy[17];
521     BYTE *entry_point;
522
523     BYTE *relay_addr = *((BYTE **)context->Esp - 1);
524     DEBUG_ENTRY_POINT *relay = (DEBUG_ENTRY_POINT *)(relay_addr - 5);
525     WORD nb_args = relay->args / sizeof(int);
526
527     /* remove extra stuff from the stack */
528     context->Eip = stack32_pop(context);
529     args = (int *)context->Esp;
530     if (relay->ret == 0xc2) /* stdcall */
531         context->Esp += nb_args * sizeof(int);
532
533     entry_point = (BYTE *)relay->orig;
534     assert( *entry_point == 0xe8 /* lcall */ );
535
536     if (TRACE_ON(relay))
537     {
538         get_entry_point( buffer, relay );
539
540         DPRINTF( "%04lx:Call %s(", GetCurrentThreadId(), buffer );
541         RELAY_PrintArgs( args, nb_args, relay->argtypes );
542         DPRINTF( ") ret=%08lx fs=%04lx\n", context->Eip, context->SegFs );
543
544         DPRINTF(" eax=%08lx ebx=%08lx ecx=%08lx edx=%08lx esi=%08lx edi=%08lx\n",
545                 context->Eax, context->Ebx, context->Ecx,
546                 context->Edx, context->Esi, context->Edi );
547         DPRINTF(" ebp=%08lx esp=%08lx ds=%04lx es=%04lx gs=%04lx flags=%08lx\n",
548                 context->Ebp, context->Esp, context->SegDs,
549                 context->SegEs, context->SegGs, context->EFlags );
550     }
551
552     /* Now call the real function */
553
554     memcpy( args_copy, args, nb_args * sizeof(args[0]) );
555     args_copy[nb_args] = (int)context;  /* append context argument */
556     if (relay->ret == 0xc3) /* cdecl */
557     {
558         call_cdecl_function( *(LONGLONG_CPROC *)(entry_point + 5), nb_args+1, args_copy );
559     }
560     else  /* stdcall */
561     {
562         call_stdcall_function( *(LONGLONG_FARPROC *)(entry_point + 5), nb_args+1, args_copy );
563     }
564
565     if (TRACE_ON(relay))
566     {
567         DPRINTF( "%04lx:Ret  %s() retval=%08lx ret=%08lx fs=%04lx\n",
568                  GetCurrentThreadId(),
569                  buffer, context->Eax, context->Eip, context->SegFs );
570
571         DPRINTF(" eax=%08lx ebx=%08lx ecx=%08lx edx=%08lx esi=%08lx edi=%08lx\n",
572                 context->Eax, context->Ebx, context->Ecx,
573                 context->Edx, context->Esi, context->Edi );
574         DPRINTF(" ebp=%08lx esp=%08lx ds=%04lx es=%04lx gs=%04lx flags=%08lx\n",
575                 context->Ebp, context->Esp, context->SegDs,
576                 context->SegEs, context->SegGs, context->EFlags );
577     }
578 }
579
580 void WINAPI RELAY_CallFrom32Regs(void);
581 __ASM_GLOBAL_FUNC( RELAY_CallFrom32Regs,
582                    "call " __ASM_NAME("__wine_call_from_32_regs") "\n\t"
583                    ".long " __ASM_NAME("RELAY_DoCallFrom32Regs") ",0" );
584
585
586 /* check whether the function at addr starts with a call to __wine_call_from_32_regs */
587 static BOOL is_register_entry_point( const BYTE *addr )
588 {
589     extern void __wine_call_from_32_regs();
590     int *offset;
591     void *ptr;
592
593     if (*addr != 0xe8) return FALSE;  /* not a call */
594     /* check if call target is __wine_call_from_32_regs */
595     offset = (int *)(addr + 1);
596     if (*offset == (char *)__wine_call_from_32_regs - (char *)(offset + 1)) return TRUE;
597     /* now check if call target is an import table jump to __wine_call_from_32_regs */
598     addr = (BYTE *)(offset + 1) + *offset;
599     if (addr[0] != 0xff || addr[1] != 0x25) return FALSE;  /* not an indirect jmp */
600     ptr = *(void **)(addr + 2);  /* get indirect jmp target address */
601     return (*(char **)ptr == (char *)__wine_call_from_32_regs);
602 }
603
604
605 /***********************************************************************
606  *           RELAY_GetProcAddress
607  *
608  * Return the proc address to use for a given function.
609  */
610 FARPROC RELAY_GetProcAddress( HMODULE module, IMAGE_EXPORT_DIRECTORY *exports,
611                               DWORD exp_size, FARPROC proc, const char *user )
612 {
613     DEBUG_ENTRY_POINT *debug = (DEBUG_ENTRY_POINT *)proc;
614     DEBUG_ENTRY_POINT *list = (DEBUG_ENTRY_POINT *)((char *)exports + exp_size);
615
616     if (debug < list || debug >= list + exports->NumberOfFunctions) return proc;
617     if (list + (debug - list) != debug) return proc;  /* not a valid address */
618     if (check_relay_from_module( user )) return proc;  /* we want to relay it */
619     if (!debug->call) return proc;  /* not a normal function */
620     if (debug->call != 0xe8 && debug->call != 0xe9) return proc; /* not a debug thunk at all */
621     return debug->orig;
622 }
623
624
625 /***********************************************************************
626  *           RELAY_SetupDLL
627  *
628  * Setup relay debugging for a built-in dll.
629  */
630 void RELAY_SetupDLL( const char *module )
631 {
632     IMAGE_EXPORT_DIRECTORY *exports;
633     DEBUG_ENTRY_POINT *debug;
634     DWORD *funcs;
635     int i;
636     const char *name;
637     char *p, dllname[80];
638     DWORD size;
639
640     exports = RtlImageDirectoryEntryToData( (HMODULE)module, TRUE,
641                                             IMAGE_DIRECTORY_ENTRY_EXPORT, &size );
642     if (!exports) return;
643     debug = (DEBUG_ENTRY_POINT *)((char *)exports + size);
644     funcs = (DWORD *)(module + exports->AddressOfFunctions);
645     strcpy( dllname, module + exports->Name );
646     p = dllname + strlen(dllname) - 4;
647     if (p > dllname && !strcasecmp( p, ".dll" )) *p = 0;
648
649     for (i = 0; i < exports->NumberOfFunctions; i++, funcs++, debug++)
650     {
651         int on = 1;
652
653         if (!debug->call) continue;  /* not a normal function */
654         if (debug->call != 0xe8 && debug->call != 0xe9) break; /* not a debug thunk at all */
655
656         if ((name = find_exported_name( module, exports, i + exports->Base )))
657             on = check_relay_include( dllname, name );
658
659         if (on)
660         {
661             debug->call = 0xe8;  /* call relative */
662             if (is_register_entry_point( debug->orig ))
663                 debug->callfrom32 = (char *)RELAY_CallFrom32Regs - (char *)&debug->ret;
664             else
665                 debug->callfrom32 = (char *)RELAY_CallFrom32 - (char *)&debug->ret;
666         }
667         else
668         {
669             debug->call = 0xe9;  /* jmp relative */
670             debug->callfrom32 = (char *)debug->orig - (char *)&debug->ret;
671         }
672
673         debug->orig = (FARPROC)(module + (DWORD)*funcs);
674         *funcs = (char *)debug - module;
675     }
676 }
677
678 #else  /* __i386__ */
679
680 FARPROC RELAY_GetProcAddress( HMODULE module, IMAGE_EXPORT_DIRECTORY *exports,
681                               DWORD exp_size, FARPROC proc, const char *user )
682 {
683     return proc;
684 }
685
686 void RELAY_SetupDLL( const char *module )
687 {
688 }
689
690 #endif /* __i386__ */