Fix infinite loop problem in wineclipsrv startup.
[wine/dcerpc.git] / if1632 / builtin.c
blobbffd41b538cfc69e25bc5b57f79c92de238740e9
1 /*
2 * Built-in modules
4 * Copyright 1996 Alexandre Julliard
5 */
7 #include <assert.h>
8 #include <ctype.h>
9 #include <string.h>
10 #include <stdio.h>
11 #include "winbase.h"
12 #include "wine/winbase16.h"
13 #include "builtin16.h"
14 #include "global.h"
15 #include "file.h"
16 #include "module.h"
17 #include "miscemu.h"
18 #include "stackframe.h"
19 #include "debugtools.h"
20 #include "toolhelp.h"
22 DEFAULT_DEBUG_CHANNEL(module);
24 /* Table of all built-in DLLs */
26 #define MAX_DLLS 50
28 static const BUILTIN16_DESCRIPTOR *builtin_dlls[MAX_DLLS];
29 static int nb_dlls;
32 /* patch all the flat cs references of the code segment if necessary */
33 inline static void patch_code_segment( void *code_segment )
35 #ifdef __i386__
36 CALLFROM16 *call = code_segment;
37 if (call->flatcs == __get_cs()) return; /* nothing to patch */
38 while (call->pushl == 0x68)
40 call->flatcs = __get_cs();
41 call++;
43 #endif
47 /***********************************************************************
48 * BUILTIN_DoLoadModule16
50 * Load a built-in Win16 module. Helper function for BUILTIN_LoadModule.
52 static HMODULE16 BUILTIN_DoLoadModule16( const BUILTIN16_DESCRIPTOR *descr )
54 NE_MODULE *pModule;
55 int minsize;
56 SEGTABLEENTRY *pSegTable;
57 HMODULE16 hModule;
59 hModule = GLOBAL_CreateBlock( GMEM_MOVEABLE, descr->module_start,
60 descr->module_size, 0, WINE_LDT_FLAGS_DATA );
61 if (!hModule) return 0;
62 FarSetOwner16( hModule, hModule );
64 pModule = (NE_MODULE *)GlobalLock16( hModule );
65 pModule->self = hModule;
66 /* NOTE: (Ab)use the hRsrcMap parameter for resource data pointer */
67 pModule->hRsrcMap = (void *)descr->rsrc;
69 /* Allocate the code segment */
71 pSegTable = NE_SEG_TABLE( pModule );
72 pSegTable->hSeg = GLOBAL_CreateBlock( GMEM_FIXED, descr->code_start,
73 pSegTable->minsize, hModule,
74 WINE_LDT_FLAGS_CODE|WINE_LDT_FLAGS_32BIT );
75 if (!pSegTable->hSeg) return 0;
76 patch_code_segment( descr->code_start );
77 pSegTable++;
79 /* Allocate the data segment */
81 minsize = pSegTable->minsize ? pSegTable->minsize : 0x10000;
82 minsize += pModule->heap_size;
83 if (minsize > 0x10000) minsize = 0x10000;
84 pSegTable->hSeg = GlobalAlloc16( GMEM_FIXED, minsize );
85 if (!pSegTable->hSeg) return 0;
86 FarSetOwner16( pSegTable->hSeg, hModule );
87 if (pSegTable->minsize) memcpy( GlobalLock16( pSegTable->hSeg ),
88 descr->data_start, pSegTable->minsize);
89 if (pModule->heap_size)
90 LocalInit16( GlobalHandleToSel16(pSegTable->hSeg),
91 pSegTable->minsize, minsize );
93 if (descr->rsrc) NE_InitResourceHandler(hModule);
95 NE_RegisterModule( pModule );
97 /* make sure the 32-bit library containing this one is loaded too */
98 LoadLibraryA( descr->owner );
100 return hModule;
104 /***********************************************************************
105 * find_dll_descr
107 * Find a descriptor in the list
109 static const BUILTIN16_DESCRIPTOR *find_dll_descr( const char *dllname )
111 int i;
112 for (i = 0; i < nb_dlls; i++)
114 const BUILTIN16_DESCRIPTOR *descr = builtin_dlls[i];
115 NE_MODULE *pModule = (NE_MODULE *)descr->module_start;
116 OFSTRUCT *pOfs = (OFSTRUCT *)((LPBYTE)pModule + pModule->fileinfo);
117 BYTE *name_table = (BYTE *)pModule + pModule->name_table;
119 /* check the dll file name */
120 if (!FILE_strcasecmp( pOfs->szPathName, dllname ))
121 return descr;
122 /* check the dll module name (without extension) */
123 if (!FILE_strncasecmp( dllname, name_table+1, *name_table ) &&
124 !strcmp( dllname + *name_table, ".dll" ))
125 return descr;
127 return NULL;
131 /***********************************************************************
132 * BUILTIN_LoadModule
134 * Load a built-in module.
136 HMODULE16 BUILTIN_LoadModule( LPCSTR name )
138 const BUILTIN16_DESCRIPTOR *descr;
139 char dllname[20], *p;
140 void *handle;
142 /* Fix the name in case we have a full path and extension */
144 if ((p = strrchr( name, '\\' ))) name = p + 1;
145 if ((p = strrchr( name, '/' ))) name = p + 1;
147 if (strlen(name) >= sizeof(dllname)-4) return (HMODULE16)2;
149 strcpy( dllname, name );
150 p = strrchr( dllname, '.' );
151 if (!p) strcat( dllname, ".dll" );
152 for (p = dllname; *p; p++) *p = FILE_tolower(*p);
154 if ((descr = find_dll_descr( dllname )))
155 return BUILTIN_DoLoadModule16( descr );
157 if ((handle = BUILTIN32_dlopen( dllname )))
159 if ((descr = find_dll_descr( dllname )))
160 return BUILTIN_DoLoadModule16( descr );
162 ERR( "loaded .so but dll %s still not found\n", dllname );
163 BUILTIN32_dlclose( handle );
166 return (HMODULE16)2;
170 /***********************************************************************
171 * BUILTIN_GetEntryPoint16
173 * Return the ordinal, name, and type info corresponding to a CS:IP address.
174 * This is used only by relay debugging.
176 LPCSTR BUILTIN_GetEntryPoint16( STACK16FRAME *frame, LPSTR name, WORD *pOrd )
178 WORD i, max_offset;
179 register BYTE *p;
180 NE_MODULE *pModule;
181 ET_BUNDLE *bundle;
182 ET_ENTRY *entry;
184 if (!(pModule = NE_GetPtr( FarGetOwner16( GlobalHandle16( frame->module_cs ) ))))
185 return NULL;
187 max_offset = 0;
188 *pOrd = 0;
189 bundle = (ET_BUNDLE *)((BYTE *)pModule + pModule->entry_table);
192 entry = (ET_ENTRY *)((BYTE *)bundle+6);
193 for (i = bundle->first + 1; i <= bundle->last; i++)
195 if ((entry->offs < frame->entry_ip)
196 && (entry->segnum == 1) /* code segment ? */
197 && (entry->offs >= max_offset))
199 max_offset = entry->offs;
200 *pOrd = i;
202 entry++;
204 } while ( (bundle->next)
205 && (bundle = (ET_BUNDLE *)((BYTE *)pModule+bundle->next)));
207 /* Search for the name in the resident names table */
208 /* (built-in modules have no non-resident table) */
210 p = (BYTE *)pModule + pModule->name_table;
211 while (*p)
213 p += *p + 1 + sizeof(WORD);
214 if (*(WORD *)(p + *p + 1) == *pOrd) break;
217 sprintf( name, "%.*s.%d: %.*s",
218 *((BYTE *)pModule + pModule->name_table),
219 (char *)pModule + pModule->name_table + 1,
220 *pOrd, *p, (char *)(p + 1) );
222 /* Retrieve type info string */
223 return *(LPCSTR *)((LPBYTE)MapSL( MAKESEGPTR( frame->module_cs, frame->callfrom_ip )) + 4);
227 /***********************************************************************
228 * __wine_register_dll_16 (KERNEL32.@)
230 * Register a built-in DLL descriptor.
232 void __wine_register_dll_16( const BUILTIN16_DESCRIPTOR *descr )
234 assert( nb_dlls < MAX_DLLS );
235 builtin_dlls[nb_dlls++] = descr;