2 * Module/Library loadorder
4 * Copyright 1999 Bertho Stultiens
14 #include "loadorder.h"
21 DEFAULT_DEBUG_CHANNEL(module
)
24 /* #define DEBUG_LOADORDER */
26 #define LOADORDER_ALLOC_CLUSTER 32 /* Allocate with 32 entries at a time */
28 static module_loadorder_t default_loadorder
;
29 static module_loadorder_t
*module_loadorder
= NULL
;
30 static int nmodule_loadorder
= 0;
31 static int nmodule_loadorder_alloc
= 0;
33 static struct tagDllOverride
{
35 } DefaultDllOverrides
[] = {
36 {"kernel32,gdi32,user32", "builtin"},
37 {"kernel,gdi,user", "builtin"},
38 {"toolhelp", "builtin"},
39 {"comdlg32,commdlg", "elfdll,builtin,native"},
40 {"version,ver", "elfdll,builtin,native"},
41 {"shell32,shell", "builtin,native"},
42 {"lz32,lzexpand", "builtin,native"},
43 {"commctrl,comctl32", "builtin,native"},
44 {"wsock32,winsock", "builtin"},
45 {"advapi32,crtdll,ntdll", "builtin,native"},
46 {"mpr,winspool", "builtin,native"},
47 {"ddraw,dinput,dsound", "builtin,native"},
48 {"winmm, mmsystem", "builtin"},
49 {"msvideo, msvfw32", "builtin, native"},
50 {"mcicda.drv, mciseq.drv", "builtin, native"},
51 {"mciwave.drv", "builtin, native"},
52 {"mciavi.drv, mcianim.drv", "native, builtin"},
53 {"w32skrnl", "builtin"},
54 {"wnaspi32,wow32", "builtin"},
55 {"system,display,wprocs ", "builtin"},
56 {"wineps", "builtin"},
60 /***************************************************************************
61 * cmp_sort_func (internal, static)
63 * Sorting and comparing function used in sort and search of loadorder
66 static int cmp_sort_func(const void *s1
, const void *s2
)
68 return strcasecmp(((module_loadorder_t
*)s1
)->modulename
, ((module_loadorder_t
*)s2
)->modulename
);
72 /***************************************************************************
73 * get_tok (internal, static)
75 * strtok wrapper for non-destructive buffer writing.
76 * NOTE: strtok is not reentrant and therefore this code is neither.
78 static char *get_tok(const char *str
, const char *delim
)
80 static char *buf
= NULL
;
88 HeapFree(SystemHeap
, 0, buf
);
94 buf
= HEAP_strdupA(SystemHeap
, 0, str
);
95 cptr
= strtok(buf
, delim
);
99 cptr
= strtok(NULL
, delim
);
104 HeapFree(SystemHeap
, 0, buf
);
111 /***************************************************************************
112 * ParseLoadOrder (internal, static)
114 * Parses the loadorder options from the configuration and puts it into
117 static BOOL
ParseLoadOrder(char *order
, module_loadorder_t
*mlo
)
122 memset(mlo
->loadorder
, 0, sizeof(mlo
->loadorder
));
124 cptr
= get_tok(order
, ", \t");
127 char type
= MODULE_LOADORDER_INVALID
;
129 if(n
>= MODULE_LOADORDER_NTYPES
)
131 ERR(module
, "More than existing %d module-types specified, rest ignored", MODULE_LOADORDER_NTYPES
);
137 case 'N': /* Native */
138 case 'n': type
= MODULE_LOADORDER_DLL
; break;
140 case 'E': /* Elfdll */
141 case 'e': type
= MODULE_LOADORDER_ELFDLL
; break;
144 case 's': type
= MODULE_LOADORDER_SO
; break;
146 case 'B': /* Builtin */
147 case 'b': type
= MODULE_LOADORDER_BI
; break;
150 ERR(module
, "Invalid load order module-type '%s', ignored\n", cptr
);
153 if(type
!= MODULE_LOADORDER_INVALID
)
155 mlo
->loadorder
[n
++] = type
;
157 cptr
= get_tok(NULL
, ", \t");
163 /***************************************************************************
164 * AddLoadOrder (internal, static)
166 * Adds an entry in the list of overrides. If the entry exists then the
167 * override parameter determines whether it will be overwriten.
169 static BOOL
AddLoadOrder(module_loadorder_t
*plo
, BOOL override
)
173 /* TRACE(module, "'%s' -> %08lx\n", plo->modulename, *(DWORD *)(plo->loadorder)); */
175 for(i
= 0; i
< nmodule_loadorder
; i
++)
177 if(!cmp_sort_func(plo
, &module_loadorder
[i
]))
180 ERR(module
, "Module '%s' is already in the list of overrides, using first definition\n", plo
->modulename
);
182 memcpy(module_loadorder
[i
].loadorder
, plo
->loadorder
, sizeof(plo
->loadorder
));
187 if(nmodule_loadorder
>= nmodule_loadorder_alloc
)
189 /* No space in current array, make it larger */
190 nmodule_loadorder_alloc
+= LOADORDER_ALLOC_CLUSTER
;
191 module_loadorder
= (module_loadorder_t
*)HeapReAlloc(SystemHeap
,
194 nmodule_loadorder_alloc
* sizeof(module_loadorder_t
));
195 if(!module_loadorder
)
197 MSG("Virtual memory exhausted\n");
201 memcpy(module_loadorder
[nmodule_loadorder
].loadorder
, plo
->loadorder
, sizeof(plo
->loadorder
));
202 module_loadorder
[nmodule_loadorder
].modulename
= HEAP_strdupA(SystemHeap
, 0, plo
->modulename
);
208 /***************************************************************************
209 * AddLoadOrderSet (internal, static)
211 * Adds an set of entries in the list of overrides from the key parameter.
212 * If the entry exists then the override parameter determines whether it
213 * will be overwriten.
215 static BOOL
AddLoadOrderSet(char *key
, char *order
, BOOL override
)
217 module_loadorder_t ldo
;
220 /* Parse the loadorder before the rest because strtok is not reentrant */
221 if(!ParseLoadOrder(order
, &ldo
))
224 cptr
= get_tok(key
, ", \t");
227 char *ext
= strrchr(cptr
, '.');
230 if(strlen(ext
) == 4 && (!strcasecmp(ext
, ".dll") || !strcasecmp(ext
, ".exe")))
231 MSG("Warning: Loadorder override '%s' contains an extension and might not be found during lookup\n", cptr
);
234 ldo
.modulename
= cptr
;
235 if(!AddLoadOrder(&ldo
, override
))
237 cptr
= get_tok(NULL
, ", \t");
243 /***************************************************************************
244 * ParseCommandlineOverrides (internal, static)
246 * The commandline is in the form:
247 * name[,name,...]=native[,b,...][:...]
249 static BOOL
ParseCommandlineOverrides(void)
257 if(!Options
.dllFlags
)
260 cpy
= HEAP_strdupA(SystemHeap
, 0, Options
.dllFlags
);
263 for(; next
; key
= next
)
265 next
= strchr(key
, ':');
271 value
= strchr(key
, '=');
280 TRACE(module
, "Commandline override '%s' = '%s'\n", key
, value
);
282 if(!AddLoadOrderSet(key
, value
, TRUE
))
289 HeapFree(SystemHeap
, 0, cpy
);
294 /***************************************************************************
295 * MODULE_InitLoadOrder (internal)
297 * Initialize the load order from the wine.conf file.
298 * The section has tyhe following format:
303 * EXTRA_LD_LIBRARY_PATH=/usr/local/lib/wine[:/more/path/to/search[:...]]
304 * The path will be appended to any existing LD_LIBRARY_PATH from the
305 * environment (see note in code below).
307 * DefaultLoadOrder=native,elfdll,so,builtin
308 * A comma seperated list of module-types to try to load in that specific
309 * order. The DefaultLoadOrder key is used as a fallback when a module is
310 * not specified explicitely. If the DefaultLoadOrder key is not found,
311 * then the order "dll,elfdll,so,bi" is used
312 * The possible module-types are:
313 * - native Native windows dll files
314 * - elfdll Dlls encapsulated in .so libraries
315 * - so Native .so libraries mapped to dlls
316 * - builtin Built-in modules
318 * Case is not important and only the first letter of each type is enough to
319 * identify the type n[ative], e[lfdll], s[o], b[uiltin]. Also whitespace is
324 * native,elfdll,so,builtin
330 * There are no explicit keys defined other than module/library names. A comma
331 * separated list of modules is followed by an assignment of the load-order
332 * for these specific modules. See above for possible types. You should not
333 * specify an extension.
335 * kernel32, gdi32, user32 = builtin
336 * kernel, gdi, user = builtin
337 * comdlg32 = elfdll, native, builtin
338 * commdlg = native, builtin
339 * version, ver = elfdll, native, builtin
345 * This is a simple pairing in the form 'name1 = name2'. It is supposed to
346 * identify the dlls that cannot live without eachother unless they are
347 * loaded in the same format. Examples are common dialogs and controls,
348 * shell, kernel, gdi, user, etc...
349 * The code will issue a warning if the loadorder of these pairs are different
350 * and might cause hard-to-find bugs due to incompatible pairs loaded at
351 * run-time. Note that this pairing gives *no* guarantee that the pairs
352 * actually get loaded as the same type, nor that the correct versions are
353 * loaded (might be implemented later). It merely notes obvious trouble.
360 #define BUFFERSIZE 1024
362 BOOL
MODULE_InitLoadOrder(void)
364 char buffer
[BUFFERSIZE
];
367 #if defined(HAVE_DL_API)
368 /* Get/set the new LD_LIBRARY_PATH */
369 nbuffer
= PROFILE_GetWineIniString("DllDefaults", "EXTRA_LD_LIBRARY_PATH", "", buffer
, sizeof(buffer
));
373 extra_ld_library_path
= HEAP_strdupA(SystemHeap
, 0, buffer
);
374 TRACE(module
, "Setting extra LD_LIBRARY_PATH=%s\n", buffer
);
378 /* Get the default load order */
379 nbuffer
= PROFILE_GetWineIniString("DllDefaults", "DefaultLoadOrder", "n,e,s,b", buffer
, sizeof(buffer
));
382 MSG("MODULE_InitLoadOrder: misteriously read nothing from default loadorder\n");
386 TRACE(module
, "Setting default loadorder=%s\n", buffer
);
388 if(!ParseLoadOrder(buffer
, &default_loadorder
))
390 default_loadorder
.modulename
= "<none>";
394 for (i
=0;DefaultDllOverrides
[i
].key
;i
++)
396 DefaultDllOverrides
[i
].key
,
397 DefaultDllOverrides
[i
].value
,
402 /* Read the explicitely defined orders for specific modules as an entire section */
403 nbuffer
= PROFILE_GetWineIniString("DllOverrides", NULL
, "", buffer
, sizeof(buffer
));
404 if(nbuffer
== BUFFERSIZE
-2)
406 ERR(module
, "BUFFERSIZE %d is too small to read [DllOverrides]. Needs to grow in the source\n", BUFFERSIZE
);
411 /* We only have the keys in the buffer, not the values */
413 char value
[BUFFERSIZE
];
416 for(key
= buffer
; *key
; key
= next
)
418 next
= key
+ strlen(key
) + 1;
420 nbuffer
= PROFILE_GetWineIniString("DllOverrides", key
, "", value
, sizeof(value
));
423 ERR(module
, "Module(s) '%s' will always fail to load. Are you sure you want this?\n", key
);
424 value
[0] = '\0'; /* Just in case */
426 if(nbuffer
== BUFFERSIZE
-2)
428 ERR(module
, "BUFFERSIZE %d is too small to read [DllOverrides] key '%s'. Needs to grow in the source\n", BUFFERSIZE
, key
);
432 TRACE(module
, "Key '%s' uses override '%s'\n", key
, value
);
434 if(!AddLoadOrderSet(key
, value
, TRUE
))
439 /* Add the commandline overrides to the pool */
440 if(!ParseCommandlineOverrides())
442 MSG( "Syntax: -dll name[,name[,...]]={native|elfdll|so|builtin}[,{n|e|s|b}[,...]][:...]\n"
443 " - 'name' is the name of any dll without extension\n"
444 " - the order of loading (native, elfdll, so and builtin) can be abbreviated\n"
445 " with the first letter\n"
446 " - different loadorders for different dlls can be specified by seperating the\n"
447 " commandline entries with a ':'\n"
449 " -dll comdlg32,commdlg=n:shell,shell32=b\n"
454 /* Sort the array for quick lookup */
455 qsort(module_loadorder
, nmodule_loadorder
, sizeof(module_loadorder
[0]), cmp_sort_func
);
457 /* Check the pairs of dlls */
458 nbuffer
= PROFILE_GetWineIniString("DllPairs", NULL
, "", buffer
, sizeof(buffer
));
459 if(nbuffer
== BUFFERSIZE
-2)
461 ERR(module
, "BUFFERSIZE %d is too small to read [DllPairs]. Needs to grow in the source\n", BUFFERSIZE
);
466 /* We only have the keys in the buffer, not the values */
468 char value
[BUFFERSIZE
];
471 for(key
= buffer
; *key
; key
= next
)
473 module_loadorder_t
*plo1
, *plo2
;
475 next
= key
+ strlen(key
) + 1;
477 nbuffer
= PROFILE_GetWineIniString("DllPairs", key
, "", value
, sizeof(value
));
480 ERR(module
, "Module pair '%s' is not associated with another module?\n", key
);
483 if(nbuffer
== BUFFERSIZE
-2)
485 ERR(module
, "BUFFERSIZE %d is too small to read [DllPairs] key '%s'. Needs to grow in the source\n", BUFFERSIZE
, key
);
489 plo1
= MODULE_GetLoadOrder(key
);
490 plo2
= MODULE_GetLoadOrder(value
);
491 assert(plo1
&& plo2
);
493 if(memcmp(plo1
->loadorder
, plo2
->loadorder
, sizeof(plo1
->loadorder
)))
494 MSG("Warning: Modules '%s' and '%s' have different loadorder which may cause trouble\n", key
, value
);
501 static char types
[6] = "-NESB";
503 for(i
= 0; i
< nmodule_loadorder
; i
++)
505 DPRINTF("%3d: %-12s:", i
, module_loadorder
[i
].modulename
);
506 for(j
= 0; j
< MODULE_LOADORDER_NTYPES
; j
++)
507 DPRINTF(" %c", types
[module_loadorder
[i
].loadorder
[j
] % (MODULE_LOADORDER_NTYPES
+1)]);
516 /***************************************************************************
517 * MODULE_GetLoadOrder (internal)
519 * Locate the loadorder of a module.
520 * Any path is stripped from the path-argument and so are the extension
521 * '.dll' and '.exe'. A lookup in the table can yield an override for the
522 * specific dll. Otherwise the default load order is returned.
524 module_loadorder_t
*MODULE_GetLoadOrder(const char *path
)
526 module_loadorder_t lo
, *tmp
;
532 assert(path
!= NULL
);
534 /* Strip path information */
535 cptr
= strrchr(path
, '\\');
537 name
= strrchr(path
, '/');
539 name
= strrchr(cptr
, '/');
542 name
= cptr
? cptr
+1 : (char *)path
;
546 if((cptr
= strchr(name
, ':')) != NULL
) /* Also strip drive if in format 'C:MODULE.DLL' */
550 if(len
>= sizeof(fname
) || len
<= 0)
552 ERR(module
, "Path '%s' -> '%s' reduces to zilch or just too large...\n", path
, name
);
553 return &default_loadorder
;
557 if(len
>= 4 && (!lstrcmpiA(fname
+len
-4, ".dll") || !lstrcmpiA(fname
+len
-4, ".exe")))
560 lo
.modulename
= fname
;
561 tmp
= bsearch(&lo
, module_loadorder
, nmodule_loadorder
, sizeof(module_loadorder
[0]), cmp_sort_func
);
563 TRACE(module
, "Looking for '%s' (%s), found '%s'\n", path
, fname
, tmp
? tmp
->modulename
: "<nothing>");
566 return &default_loadorder
;