blob: c03f128873b42380620b760305390e5131243d7c [file] [log] [blame]
Bertho Stultienscebb2f11999-04-18 12:09:21 +00001/*
2 * Module/Library loadorder
3 *
4 * Copyright 1999 Bertho Stultiens
5 */
6
7#include <stdlib.h>
8#include <string.h>
9#include <assert.h>
10
Bertho Stultiens3b5c29f1999-04-22 09:13:38 +000011#include "config.h"
Bertho Stultienscebb2f11999-04-18 12:09:21 +000012#include "windef.h"
13#include "options.h"
Bertho Stultienscebb2f11999-04-18 12:09:21 +000014#include "loadorder.h"
15#include "heap.h"
Aric Stewarte4d09322000-12-03 03:14:29 +000016#include "file.h"
Bertho Stultiens3b5c29f1999-04-22 09:13:38 +000017#include "module.h"
Alexandre Julliarda099a551999-06-12 15:45:58 +000018#include "debugtools.h"
Bertho Stultienscebb2f11999-04-18 12:09:21 +000019
Dimitrie O. Paun529da542000-11-27 23:54:25 +000020DEFAULT_DEBUG_CHANNEL(module);
Patrik Stridvallb4b9fae1999-04-19 14:56:29 +000021
Bertho Stultienscebb2f11999-04-18 12:09:21 +000022
23/* #define DEBUG_LOADORDER */
24
25#define LOADORDER_ALLOC_CLUSTER 32 /* Allocate with 32 entries at a time */
26
27static module_loadorder_t default_loadorder;
28static module_loadorder_t *module_loadorder = NULL;
29static int nmodule_loadorder = 0;
30static int nmodule_loadorder_alloc = 0;
31
Andreas Mohr6d527872000-10-02 03:33:51 +000032/* DLL order is irrelevant ! Gets sorted later. */
Marcus Meissnera739a691999-04-25 09:15:25 +000033static struct tagDllOverride {
34 char *key,*value;
35} DefaultDllOverrides[] = {
Andreas Mohr6d527872000-10-02 03:33:51 +000036 /* "system" DLLs */
Marcus Meissnera739a691999-04-25 09:15:25 +000037 {"kernel32,gdi32,user32", "builtin"},
Eric Pouech448b34a1999-10-13 16:02:40 +000038 {"krnl386,gdi,user", "builtin"},
Marcus Meissnera739a691999-04-25 09:15:25 +000039 {"toolhelp", "builtin"},
Andreas Mohr1563abe2000-10-13 20:26:52 +000040 {"windebug", "native,builtin"},
Andreas Mohr6d527872000-10-02 03:33:51 +000041 {"system,display", "builtin"},
42 {"w32skrnl,wow32", "builtin"},
43 {"advapi32,crtdll,ntdll", "builtin,native"},
44 {"lz32,lzexpand", "builtin,native"},
Alexandre Julliard32fcfc22000-11-30 01:15:30 +000045 {"version,ver", "builtin,native"},
Jon Griffiths1db20bf2001-01-10 23:59:25 +000046 {"msvcrt", "native,builtin"},
Andreas Mohr6d527872000-10-02 03:33:51 +000047 /* "new" interface */
Alexandre Julliard32fcfc22000-11-30 01:15:30 +000048 {"comdlg32,commdlg", "builtin,native"},
Marcus Meissnera739a691999-04-25 09:15:25 +000049 {"shell32,shell", "builtin,native"},
Juergen Schmied1e5f0fe1999-08-15 17:03:37 +000050 {"shlwapi", "native,builtin"},
Andreas Mohr6d527872000-10-02 03:33:51 +000051 {"shfolder", "builtin,native"},
52 {"comctl32,commctrl", "builtin,native"},
53 /* network */
Andreas Mohr1563abe2000-10-13 20:26:52 +000054 {"wsock32,ws2_32,winsock", "builtin"},
Francois Gougetedf3e431999-11-07 21:22:17 +000055 {"icmp", "builtin"},
Andreas Mohr6d527872000-10-02 03:33:51 +000056 /* multimedia */
57 {"ddraw,dinput,dsound", "builtin,native"},
58 {"winmm,mmsystem", "builtin"},
59 {"msvfw32,msvideo", "builtin,native"},
60 {"mcicda.drv,mciseq.drv", "builtin,native"},
61 {"mciwave.drv", "builtin,native"},
62 {"mciavi.drv,mcianim.drv", "native,builtin"},
63 {"msacm.drv,midimap.drv", "builtin,native"},
Eric Pouechc4c73242001-01-06 01:23:11 +000064 {"msacm,msacm32", "builtin,native"},
Andreas Mohr6d527872000-10-02 03:33:51 +000065 {"opengl32", "builtin,native"},
Andreas Mohr1563abe2000-10-13 20:26:52 +000066 /* we have to use libglideXx.so instead of glideXx.dll ... */
67 {"glide2x,glide3x", "so,native"},
Andreas Mohr6d527872000-10-02 03:33:51 +000068 /* other stuff */
69 {"mpr,winspool.drv", "builtin,native"},
70 {"wnaspi32,winaspi", "builtin"},
Alexandre Julliard8551f8c1999-12-11 23:56:46 +000071 {"odbc32", "builtin"},
Huw D M Davies10b1b232000-07-15 19:53:50 +000072 {"rpcrt4", "native,builtin"},
Andreas Mohr6d527872000-10-02 03:33:51 +000073 /* non-windows DLLs */
74 {"wineps,wprocs,x11drv", "builtin"},
Marcus Meissnera739a691999-04-25 09:15:25 +000075 {NULL,NULL},
76};
77
Alexandre Julliard431cf322000-02-19 20:51:01 +000078static const struct tagDllPair {
79 const char *dll1, *dll2;
80} DllPairs[] = {
81 { "krnl386", "kernel32" },
82 { "gdi", "gdi32" },
83 { "user", "user32" },
84 { "commdlg", "comdlg32" },
85 { "commctrl", "comctl32" },
86 { "ver", "version" },
87 { "shell", "shell32" },
88 { "lzexpand", "lz32" },
89 { "mmsystem", "winmm" },
90 { "msvideo", "msvfw32" },
Eric Pouechc4c73242001-01-06 01:23:11 +000091 { "msacm", "msacm32" },
Alexandre Julliard431cf322000-02-19 20:51:01 +000092 { "winsock", "wsock32" },
93 { NULL, NULL }
94};
95
Bertho Stultienscebb2f11999-04-18 12:09:21 +000096/***************************************************************************
97 * cmp_sort_func (internal, static)
98 *
99 * Sorting and comparing function used in sort and search of loadorder
100 * entries.
101 */
102static int cmp_sort_func(const void *s1, const void *s2)
103{
Aric Stewarte4d09322000-12-03 03:14:29 +0000104 return FILE_strcasecmp(((module_loadorder_t *)s1)->modulename,
105 ((module_loadorder_t *)s2)->modulename);
Bertho Stultienscebb2f11999-04-18 12:09:21 +0000106}
107
108
109/***************************************************************************
110 * get_tok (internal, static)
111 *
112 * strtok wrapper for non-destructive buffer writing.
113 * NOTE: strtok is not reentrant and therefore this code is neither.
114 */
115static char *get_tok(const char *str, const char *delim)
116{
117 static char *buf = NULL;
118 char *cptr;
119
Bertho Stultiens94bb5bb1999-04-19 16:44:22 +0000120 if(!str && !buf)
Bertho Stultienscebb2f11999-04-18 12:09:21 +0000121 return NULL;
122
123 if(str && buf)
124 {
Alexandre Julliard90476d62000-02-16 22:47:24 +0000125 HeapFree(GetProcessHeap(), 0, buf);
Bertho Stultienscebb2f11999-04-18 12:09:21 +0000126 buf = NULL;
127 }
128
129 if(str && !buf)
130 {
Alexandre Julliard90476d62000-02-16 22:47:24 +0000131 buf = HEAP_strdupA(GetProcessHeap(), 0, str);
Bertho Stultienscebb2f11999-04-18 12:09:21 +0000132 cptr = strtok(buf, delim);
133 }
134 else
135 {
136 cptr = strtok(NULL, delim);
137 }
138
139 if(!cptr)
140 {
Alexandre Julliard90476d62000-02-16 22:47:24 +0000141 HeapFree(GetProcessHeap(), 0, buf);
Bertho Stultienscebb2f11999-04-18 12:09:21 +0000142 buf = NULL;
143 }
144 return cptr;
145}
146
147
148/***************************************************************************
149 * ParseLoadOrder (internal, static)
150 *
151 * Parses the loadorder options from the configuration and puts it into
152 * a structure.
153 */
154static BOOL ParseLoadOrder(char *order, module_loadorder_t *mlo)
155{
Alexandre Julliard32fcfc22000-11-30 01:15:30 +0000156 static int warn;
Bertho Stultienscebb2f11999-04-18 12:09:21 +0000157 char *cptr;
158 int n = 0;
159
160 memset(mlo->loadorder, 0, sizeof(mlo->loadorder));
161
162 cptr = get_tok(order, ", \t");
163 while(cptr)
164 {
165 char type = MODULE_LOADORDER_INVALID;
166
167 if(n >= MODULE_LOADORDER_NTYPES)
168 {
Alexandre Julliarda099a551999-06-12 15:45:58 +0000169 ERR("More than existing %d module-types specified, rest ignored", MODULE_LOADORDER_NTYPES);
Bertho Stultienscebb2f11999-04-18 12:09:21 +0000170 break;
171 }
172
173 switch(*cptr)
174 {
175 case 'N': /* Native */
176 case 'n': type = MODULE_LOADORDER_DLL; break;
177
178 case 'E': /* Elfdll */
Alexandre Julliard32fcfc22000-11-30 01:15:30 +0000179 case 'e':
Alexandre Julliard84f91bd2000-12-09 03:25:34 +0000180 if (!warn++) MESSAGE("Load order 'elfdll' no longer supported, ignored\n");
Alexandre Julliard32fcfc22000-11-30 01:15:30 +0000181 break;
Bertho Stultienscebb2f11999-04-18 12:09:21 +0000182 case 'S': /* So */
183 case 's': type = MODULE_LOADORDER_SO; break;
184
185 case 'B': /* Builtin */
186 case 'b': type = MODULE_LOADORDER_BI; break;
187
188 default:
Alexandre Julliarda099a551999-06-12 15:45:58 +0000189 ERR("Invalid load order module-type '%s', ignored\n", cptr);
Bertho Stultienscebb2f11999-04-18 12:09:21 +0000190 }
191
192 if(type != MODULE_LOADORDER_INVALID)
193 {
194 mlo->loadorder[n++] = type;
195 }
196 cptr = get_tok(NULL, ", \t");
197 }
198 return TRUE;
199}
200
201
202/***************************************************************************
203 * AddLoadOrder (internal, static)
204 *
Andreas Mohr8cd93512000-01-29 21:12:58 +0000205 * Adds an entry in the list of overrides. If the entry exists, then the
206 * override parameter determines whether it will be overwritten.
Bertho Stultienscebb2f11999-04-18 12:09:21 +0000207 */
208static BOOL AddLoadOrder(module_loadorder_t *plo, BOOL override)
209{
210 int i;
211
212 /* TRACE(module, "'%s' -> %08lx\n", plo->modulename, *(DWORD *)(plo->loadorder)); */
213
214 for(i = 0; i < nmodule_loadorder; i++)
215 {
216 if(!cmp_sort_func(plo, &module_loadorder[i]))
217 {
218 if(!override)
Alexandre Julliarda099a551999-06-12 15:45:58 +0000219 ERR("Module '%s' is already in the list of overrides, using first definition\n", plo->modulename);
Bertho Stultienscebb2f11999-04-18 12:09:21 +0000220 else
221 memcpy(module_loadorder[i].loadorder, plo->loadorder, sizeof(plo->loadorder));
222 return TRUE;
223 }
224 }
225
226 if(nmodule_loadorder >= nmodule_loadorder_alloc)
227 {
228 /* No space in current array, make it larger */
229 nmodule_loadorder_alloc += LOADORDER_ALLOC_CLUSTER;
Alexandre Julliard90476d62000-02-16 22:47:24 +0000230 module_loadorder = (module_loadorder_t *)HeapReAlloc(GetProcessHeap(),
Bertho Stultienscebb2f11999-04-18 12:09:21 +0000231 0,
232 module_loadorder,
233 nmodule_loadorder_alloc * sizeof(module_loadorder_t));
234 if(!module_loadorder)
235 {
Alexandre Julliarda099a551999-06-12 15:45:58 +0000236 MESSAGE("Virtual memory exhausted\n");
Bertho Stultienscebb2f11999-04-18 12:09:21 +0000237 exit(1);
238 }
239 }
240 memcpy(module_loadorder[nmodule_loadorder].loadorder, plo->loadorder, sizeof(plo->loadorder));
Alexandre Julliard90476d62000-02-16 22:47:24 +0000241 module_loadorder[nmodule_loadorder].modulename = HEAP_strdupA(GetProcessHeap(), 0, plo->modulename);
Bertho Stultienscebb2f11999-04-18 12:09:21 +0000242 nmodule_loadorder++;
243 return TRUE;
244}
245
246
247/***************************************************************************
248 * AddLoadOrderSet (internal, static)
249 *
Andreas Mohr8cd93512000-01-29 21:12:58 +0000250 * Adds a set of entries in the list of overrides from the key parameter.
251 * If the entry exists, then the override parameter determines whether it
252 * will be overwritten.
Bertho Stultienscebb2f11999-04-18 12:09:21 +0000253 */
254static BOOL AddLoadOrderSet(char *key, char *order, BOOL override)
255{
256 module_loadorder_t ldo;
257 char *cptr;
258
259 /* Parse the loadorder before the rest because strtok is not reentrant */
260 if(!ParseLoadOrder(order, &ldo))
261 return FALSE;
262
263 cptr = get_tok(key, ", \t");
264 while(cptr)
265 {
Bertho Stultiens71680701999-04-26 14:55:24 +0000266 char *ext = strrchr(cptr, '.');
267 if(ext)
268 {
Aric Stewarte4d09322000-12-03 03:14:29 +0000269 if(strlen(ext) == 4 &&
270 (!FILE_strcasecmp(ext, ".dll") || !FILE_strcasecmp(ext, ".exe")))
Alexandre Julliarda099a551999-06-12 15:45:58 +0000271 MESSAGE("Warning: Loadorder override '%s' contains an extension and might not be found during lookup\n", cptr);
Bertho Stultiens71680701999-04-26 14:55:24 +0000272 }
Bertho Stultienscebb2f11999-04-18 12:09:21 +0000273
274 ldo.modulename = cptr;
275 if(!AddLoadOrder(&ldo, override))
276 return FALSE;
277 cptr = get_tok(NULL, ", \t");
278 }
279 return TRUE;
280}
281
282
283/***************************************************************************
284 * ParseCommandlineOverrides (internal, static)
285 *
286 * The commandline is in the form:
Peter Gantenc7c42462000-08-28 21:33:28 +0000287 * name[,name,...]=native[,b,...][+...]
Bertho Stultienscebb2f11999-04-18 12:09:21 +0000288 */
289static BOOL ParseCommandlineOverrides(void)
290{
291 char *cpy;
292 char *key;
293 char *next;
294 char *value;
295 BOOL retval = TRUE;
296
297 if(!Options.dllFlags)
298 return TRUE;
299
Alexandre Julliard90476d62000-02-16 22:47:24 +0000300 cpy = HEAP_strdupA(GetProcessHeap(), 0, Options.dllFlags);
Bertho Stultienscebb2f11999-04-18 12:09:21 +0000301 key = cpy;
302 next = key;
303 for(; next; key = next)
304 {
Peter Gantenc7c42462000-08-28 21:33:28 +0000305 next = strchr(key, '+');
Bertho Stultienscebb2f11999-04-18 12:09:21 +0000306 if(next)
307 {
308 *next = '\0';
309 next++;
310 }
311 value = strchr(key, '=');
312 if(!value)
313 {
314 retval = FALSE;
315 goto endit;
316 }
317 *value = '\0';
318 value++;
319
Alexandre Julliarda099a551999-06-12 15:45:58 +0000320 TRACE("Commandline override '%s' = '%s'\n", key, value);
Bertho Stultienscebb2f11999-04-18 12:09:21 +0000321
322 if(!AddLoadOrderSet(key, value, TRUE))
323 {
324 retval = FALSE;
325 goto endit;
326 }
327 }
328endit:
Alexandre Julliard90476d62000-02-16 22:47:24 +0000329 HeapFree(GetProcessHeap(), 0, cpy);
Bertho Stultienscebb2f11999-04-18 12:09:21 +0000330 return retval;;
331}
332
333
334/***************************************************************************
335 * MODULE_InitLoadOrder (internal)
336 *
337 * Initialize the load order from the wine.conf file.
Andreas Mohr8cd93512000-01-29 21:12:58 +0000338 * The section has the following format:
Bertho Stultienscebb2f11999-04-18 12:09:21 +0000339 * Section:
340 * [DllDefaults]
341 *
342 * Keys:
Alexandre Julliard32fcfc22000-11-30 01:15:30 +0000343 * DefaultLoadOrder=native,so,builtin
Andreas Mohr8cd93512000-01-29 21:12:58 +0000344 * A comma separated list of module types to try to load in that specific
Bertho Stultienscebb2f11999-04-18 12:09:21 +0000345 * order. The DefaultLoadOrder key is used as a fallback when a module is
Andreas Mohr8cd93512000-01-29 21:12:58 +0000346 * not specified explicitly. If the DefaultLoadOrder key is not found,
Alexandre Julliard32fcfc22000-11-30 01:15:30 +0000347 * then the order "dll,so,bi" is used
Andreas Mohr8cd93512000-01-29 21:12:58 +0000348 * The possible module types are:
Bertho Stultienscebb2f11999-04-18 12:09:21 +0000349 * - native Native windows dll files
Bertho Stultienscebb2f11999-04-18 12:09:21 +0000350 * - so Native .so libraries mapped to dlls
351 * - builtin Built-in modules
352 *
353 * Case is not important and only the first letter of each type is enough to
Alexandre Julliard32fcfc22000-11-30 01:15:30 +0000354 * identify the type n[ative], s[o], b[uiltin]. Also whitespace is
Bertho Stultienscebb2f11999-04-18 12:09:21 +0000355 * ignored.
356 * E.g.:
Alexandre Julliard32fcfc22000-11-30 01:15:30 +0000357 * n,s , b
Bertho Stultienscebb2f11999-04-18 12:09:21 +0000358 * is equal to:
Alexandre Julliard32fcfc22000-11-30 01:15:30 +0000359 * native,so,builtin
Bertho Stultienscebb2f11999-04-18 12:09:21 +0000360 *
361 * Section:
362 * [DllOverrides]
363 *
364 * Keys:
365 * There are no explicit keys defined other than module/library names. A comma
366 * separated list of modules is followed by an assignment of the load-order
367 * for these specific modules. See above for possible types. You should not
368 * specify an extension.
369 * Examples:
370 * kernel32, gdi32, user32 = builtin
371 * kernel, gdi, user = builtin
Alexandre Julliard32fcfc22000-11-30 01:15:30 +0000372 * comdlg32 = native, builtin
Bertho Stultienscebb2f11999-04-18 12:09:21 +0000373 * commdlg = native, builtin
Alexandre Julliard32fcfc22000-11-30 01:15:30 +0000374 * version, ver = native, builtin
Bertho Stultienscebb2f11999-04-18 12:09:21 +0000375 *
Bertho Stultienscebb2f11999-04-18 12:09:21 +0000376 */
377
378#define BUFFERSIZE 1024
379
380BOOL MODULE_InitLoadOrder(void)
381{
382 char buffer[BUFFERSIZE];
Alexandre Julliard431cf322000-02-19 20:51:01 +0000383 char key[256];
Bertho Stultienscebb2f11999-04-18 12:09:21 +0000384 int nbuffer;
Alexandre Julliard431cf322000-02-19 20:51:01 +0000385 int idx;
386 const struct tagDllPair *dllpair;
Bertho Stultienscebb2f11999-04-18 12:09:21 +0000387
Bertho Stultienscebb2f11999-04-18 12:09:21 +0000388 /* Get the default load order */
Alexandre Julliard32fcfc22000-11-30 01:15:30 +0000389 nbuffer = PROFILE_GetWineIniString("DllDefaults", "DefaultLoadOrder", "n,b,s", buffer, sizeof(buffer));
Bertho Stultienscebb2f11999-04-18 12:09:21 +0000390 if(!nbuffer)
391 {
Andreas Mohr8cd93512000-01-29 21:12:58 +0000392 MESSAGE("MODULE_InitLoadOrder: mysteriously read nothing from default loadorder\n");
Bertho Stultienscebb2f11999-04-18 12:09:21 +0000393 return FALSE;
394 }
395
Alexandre Julliarda099a551999-06-12 15:45:58 +0000396 TRACE("Setting default loadorder=%s\n", buffer);
Bertho Stultienscebb2f11999-04-18 12:09:21 +0000397
398 if(!ParseLoadOrder(buffer, &default_loadorder))
399 return FALSE;
400 default_loadorder.modulename = "<none>";
401
Marcus Meissnera739a691999-04-25 09:15:25 +0000402 {
403 int i;
404 for (i=0;DefaultDllOverrides[i].key;i++)
405 AddLoadOrderSet(
406 DefaultDllOverrides[i].key,
407 DefaultDllOverrides[i].value,
408 FALSE
409 );
410 }
411
Bertho Stultienscebb2f11999-04-18 12:09:21 +0000412 /* Read the explicitely defined orders for specific modules as an entire section */
Alexandre Julliard431cf322000-02-19 20:51:01 +0000413 idx = 0;
414 while (PROFILE_EnumWineIniString( "DllOverrides", idx++, key, sizeof(key),
415 buffer, sizeof(buffer)))
416 {
417 TRACE("Key '%s' uses override '%s'\n", key, buffer);
418 if(!AddLoadOrderSet(key, buffer, TRUE))
419 return FALSE;
420 }
Bertho Stultienscebb2f11999-04-18 12:09:21 +0000421
422 /* Add the commandline overrides to the pool */
423 if(!ParseCommandlineOverrides())
424 {
Alexandre Julliard32fcfc22000-11-30 01:15:30 +0000425 MESSAGE( "Syntax: -dll name[,name[,...]]={native|so|builtin}[,{n|s|b}[,...]][+...]\n"
Bertho Stultienscebb2f11999-04-18 12:09:21 +0000426 " - 'name' is the name of any dll without extension\n"
Alexandre Julliard32fcfc22000-11-30 01:15:30 +0000427 " - the order of loading (native, so and builtin) can be abbreviated\n"
Bertho Stultienscebb2f11999-04-18 12:09:21 +0000428 " with the first letter\n"
429 " - different loadorders for different dlls can be specified by seperating the\n"
Peter Gantenc7c42462000-08-28 21:33:28 +0000430 " commandline entries with a '+'\n"
Bertho Stultienscebb2f11999-04-18 12:09:21 +0000431 " Example:\n"
Peter Gantenc7c42462000-08-28 21:33:28 +0000432 " -dll comdlg32,commdlg=n+shell,shell32=b\n"
Bertho Stultienscebb2f11999-04-18 12:09:21 +0000433 );
434 return FALSE;
435 }
436
437 /* Sort the array for quick lookup */
438 qsort(module_loadorder, nmodule_loadorder, sizeof(module_loadorder[0]), cmp_sort_func);
439
440 /* Check the pairs of dlls */
Alexandre Julliard431cf322000-02-19 20:51:01 +0000441 dllpair = DllPairs;
442 while (dllpair->dll1)
443 {
444 module_loadorder_t *plo1, *plo2;
Peter Gantenc7c42462000-08-28 21:33:28 +0000445 plo1 = MODULE_GetLoadOrder(dllpair->dll1, FALSE);
446 plo2 = MODULE_GetLoadOrder(dllpair->dll2, FALSE);
Alexandre Julliard431cf322000-02-19 20:51:01 +0000447 assert(plo1 && plo2);
448 if(memcmp(plo1->loadorder, plo2->loadorder, sizeof(plo1->loadorder)))
449 MESSAGE("Warning: Modules '%s' and '%s' have different loadorder which may cause trouble\n", dllpair->dll1, dllpair->dll2);
450 dllpair++;
451 }
Bertho Stultienscebb2f11999-04-18 12:09:21 +0000452
453 if(TRACE_ON(module))
454 {
455 int i, j;
Alexandre Julliard32fcfc22000-11-30 01:15:30 +0000456 static char types[] = "-NSB";
Bertho Stultienscebb2f11999-04-18 12:09:21 +0000457
458 for(i = 0; i < nmodule_loadorder; i++)
459 {
460 DPRINTF("%3d: %-12s:", i, module_loadorder[i].modulename);
461 for(j = 0; j < MODULE_LOADORDER_NTYPES; j++)
462 DPRINTF(" %c", types[module_loadorder[i].loadorder[j] % (MODULE_LOADORDER_NTYPES+1)]);
463 DPRINTF("\n");
464 }
465 }
466
467 return TRUE;
468}
469
470
471/***************************************************************************
472 * MODULE_GetLoadOrder (internal)
473 *
474 * Locate the loadorder of a module.
475 * Any path is stripped from the path-argument and so are the extension
Eric Pouechc672c001999-09-03 12:36:20 +0000476 * '.dll' and '.exe'. A lookup in the table can yield an override for
Huw D M Davies5fce6fb1999-07-30 18:06:35 +0000477 * the specific dll. Otherwise the default load order is returned.
Bertho Stultienscebb2f11999-04-18 12:09:21 +0000478 */
Peter Gantenc7c42462000-08-28 21:33:28 +0000479module_loadorder_t *MODULE_GetLoadOrder(const char *path, BOOL win32 )
Bertho Stultienscebb2f11999-04-18 12:09:21 +0000480{
481 module_loadorder_t lo, *tmp;
482 char fname[256];
Peter Gantenc7c42462000-08-28 21:33:28 +0000483 char sysdir[MAX_PATH+1];
Bertho Stultienscebb2f11999-04-18 12:09:21 +0000484 char *cptr;
485 char *name;
486 int len;
487
Lionel Ulmerbedf40b2000-05-12 20:18:14 +0000488 TRACE("looking for %s\n", path);
489
Bertho Stultienscebb2f11999-04-18 12:09:21 +0000490 assert(path != NULL);
491
Peter Gantenc7c42462000-08-28 21:33:28 +0000492 if ( ! GetSystemDirectoryA ( sysdir, MAX_PATH ) )
493 return &default_loadorder; /* Hmmm ... */
Bertho Stultienscebb2f11999-04-18 12:09:21 +0000494
Peter Gantenc7c42462000-08-28 21:33:28 +0000495 /* Strip path information for 16 bit modules or if the module
496 resides in the system directory */
Aric Stewarte4d09322000-12-03 03:14:29 +0000497 if ( !win32 || !FILE_strncasecmp ( sysdir, path, strlen (sysdir) ) )
Peter Gantenc7c42462000-08-28 21:33:28 +0000498 {
499
500 cptr = strrchr(path, '\\');
501 if(!cptr)
502 name = strrchr(path, '/');
503 else
504 name = strrchr(cptr, '/');
505
506 if(!name)
507 name = cptr ? cptr+1 : (char *)path;
508 else
509 name++;
510
511 if((cptr = strchr(name, ':')) != NULL) /* Also strip drive if in format 'C:MODULE.DLL' */
512 name = cptr+1;
513 }
514 else
515 name = (char *)path;
516
Bertho Stultienscebb2f11999-04-18 12:09:21 +0000517 len = strlen(name);
518 if(len >= sizeof(fname) || len <= 0)
519 {
Peter Gantenc7c42462000-08-28 21:33:28 +0000520 ERR("Path '%s' -> '%s' reduces to zilch or just too large...\n", path, name);
521 return &default_loadorder;
Bertho Stultienscebb2f11999-04-18 12:09:21 +0000522 }
523
524 strcpy(fname, name);
Aric Stewarte4d09322000-12-03 03:14:29 +0000525 if(len >= 4 && (!FILE_strcasecmp(fname+len-4, ".dll") || !FILE_strcasecmp(fname+len-4, ".exe")))
Bertho Stultienscebb2f11999-04-18 12:09:21 +0000526 fname[len-4] = '\0';
527
528 lo.modulename = fname;
529 tmp = bsearch(&lo, module_loadorder, nmodule_loadorder, sizeof(module_loadorder[0]), cmp_sort_func);
530
Alexandre Julliarda099a551999-06-12 15:45:58 +0000531 TRACE("Looking for '%s' (%s), found '%s'\n", path, fname, tmp ? tmp->modulename : "<nothing>");
Bertho Stultienscebb2f11999-04-18 12:09:21 +0000532
533 if(!tmp)
534 return &default_loadorder;
535 return tmp;
536}
537