If the dibsection is based on a file-mapping object, then make sure
[wine] / dlls / ntdll / loader.c
1 /*
2  * Loader functions
3  *
4  * Copyright 1995, 2003 Alexandre Julliard
5  * Copyright 2002 Dmitry Timoshkov for CodeWeavers
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 <stdarg.h>
27
28 #include "windef.h"
29 #include "winbase.h"
30 #include "winnt.h"
31 #include "winreg.h"
32 #include "winternl.h"
33
34 #include "module.h"
35 #include "wine/exception.h"
36 #include "excpt.h"
37 #include "wine/unicode.h"
38 #include "wine/debug.h"
39 #include "wine/server.h"
40 #include "ntdll_misc.h"
41
42 WINE_DEFAULT_DEBUG_CHANNEL(module);
43 WINE_DECLARE_DEBUG_CHANNEL(relay);
44 WINE_DECLARE_DEBUG_CHANNEL(snoop);
45 WINE_DECLARE_DEBUG_CHANNEL(loaddll);
46
47 typedef DWORD (CALLBACK *DLLENTRYPROC)(HMODULE,DWORD,LPVOID);
48
49 static int process_detaching = 0;  /* set on process detach to avoid deadlocks with thread detach */
50 static int free_lib_count;   /* recursion depth of LdrUnloadDll calls */
51
52 /* filter for page-fault exceptions */
53 static WINE_EXCEPTION_FILTER(page_fault)
54 {
55     if (GetExceptionCode() == EXCEPTION_ACCESS_VIOLATION)
56         return EXCEPTION_EXECUTE_HANDLER;
57     return EXCEPTION_CONTINUE_SEARCH;
58 }
59
60 static const char * const reason_names[] =
61 {
62     "PROCESS_DETACH",
63     "PROCESS_ATTACH",
64     "THREAD_ATTACH",
65     "THREAD_DETACH"
66 };
67
68 static const WCHAR dllW[] = {'.','d','l','l',0};
69
70 /* internal representation of 32bit modules. per process. */
71 typedef struct _wine_modref
72 {
73     LDR_MODULE            ldr;
74     int                   nDeps;
75     struct _wine_modref **deps;
76 } WINE_MODREF;
77
78 /* info about the current builtin dll load */
79 /* used to keep track of things across the register_dll constructor call */
80 struct builtin_load_info
81 {
82     const WCHAR *load_path;
83     NTSTATUS     status;
84     WINE_MODREF *wm;
85 };
86
87 static struct builtin_load_info default_load_info;
88 static struct builtin_load_info *builtin_load_info = &default_load_info;
89
90 static UINT tls_module_count;      /* number of modules with TLS directory */
91 static UINT tls_total_size;        /* total size of TLS storage */
92 static const IMAGE_TLS_DIRECTORY **tls_dirs;  /* array of TLS directories */
93
94 UNICODE_STRING system_dir = { 0, 0, NULL };  /* system directory */
95
96 static CRITICAL_SECTION loader_section;
97 static CRITICAL_SECTION_DEBUG critsect_debug =
98 {
99     0, 0, &loader_section,
100     { &critsect_debug.ProcessLocksList, &critsect_debug.ProcessLocksList },
101       0, 0, { 0, (DWORD)(__FILE__ ": loader_section") }
102 };
103 static CRITICAL_SECTION loader_section = { &critsect_debug, -1, 0, 0, 0, 0 };
104
105 static WINE_MODREF *cached_modref;
106 static WINE_MODREF *current_modref;
107 static WINE_MODREF *last_failed_modref;
108
109 static NTSTATUS load_dll( LPCWSTR load_path, LPCWSTR libname, DWORD flags, WINE_MODREF** pwm );
110 static FARPROC find_named_export( HMODULE module, const IMAGE_EXPORT_DIRECTORY *exports,
111                                   DWORD exp_size, const char *name, int hint );
112
113 /* convert PE image VirtualAddress to Real Address */
114 inline static void *get_rva( HMODULE module, DWORD va )
115 {
116     return (void *)((char *)module + va);
117 }
118
119 /* check whether the file name contains a path */
120 inline static int contains_path( LPCWSTR name )
121 {
122     return ((*name && (name[1] == ':')) || strchrW(name, '/') || strchrW(name, '\\'));
123 }
124
125 /* convert from straight ASCII to Unicode without depending on the current codepage */
126 inline static void ascii_to_unicode( WCHAR *dst, const char *src, size_t len )
127 {
128     while (len--) *dst++ = (unsigned char)*src++;
129 }
130
131
132 /*************************************************************************
133  *              call_dll_entry_point
134  *
135  * Some brain-damaged dlls (ir32_32.dll for instance) modify ebx in
136  * their entry point, so we need a small asm wrapper.
137  */
138 #ifdef __i386__
139 extern BOOL call_dll_entry_point( DLLENTRYPROC proc, void *module, UINT reason, void *reserved );
140 __ASM_GLOBAL_FUNC(call_dll_entry_point,
141                   "pushl %ebp\n\t"
142                   "movl %esp,%ebp\n\t"
143                   "pushl %ebx\n\t"
144                   "pushl 20(%ebp)\n\t"
145                   "pushl 16(%ebp)\n\t"
146                   "pushl 12(%ebp)\n\t"
147                   "movl 8(%ebp),%eax\n\t"
148                   "call *%eax\n\t"
149                   "leal -4(%ebp),%esp\n\t"
150                   "popl %ebx\n\t"
151                   "popl %ebp\n\t"
152                   "ret" );
153 #else /* __i386__ */
154 static inline BOOL call_dll_entry_point( DLLENTRYPROC proc, void *module,
155                                          UINT reason, void *reserved )
156 {
157     return proc( module, reason, reserved );
158 }
159 #endif /* __i386__ */
160
161
162 #ifdef __i386__
163 /*************************************************************************
164  *              stub_entry_point
165  *
166  * Entry point for stub functions.
167  */
168 static void stub_entry_point( const char *dll, const char *name, ... )
169 {
170     EXCEPTION_RECORD rec;
171
172     rec.ExceptionCode           = EXCEPTION_WINE_STUB;
173     rec.ExceptionFlags          = EH_NONCONTINUABLE;
174     rec.ExceptionRecord         = NULL;
175 #ifdef __GNUC__
176     rec.ExceptionAddress        = __builtin_return_address(0);
177 #else
178     rec.ExceptionAddress        = *((void **)&dll - 1);
179 #endif
180     rec.NumberParameters        = 2;
181     rec.ExceptionInformation[0] = (ULONG_PTR)dll;
182     rec.ExceptionInformation[1] = (ULONG_PTR)name;
183     for (;;) RtlRaiseException( &rec );
184 }
185
186
187 #include <pshpack1.h>
188 struct stub
189 {
190     BYTE        popl_eax;   /* popl %eax */
191     BYTE        pushl1;     /* pushl $name */
192     const char *name;
193     BYTE        pushl2;     /* pushl $dll */
194     const char *dll;
195     BYTE        pushl_eax;  /* pushl %eax */
196     BYTE        jmp;        /* jmp stub_entry_point */
197     DWORD       entry;
198 };
199 #include <poppack.h>
200
201 /*************************************************************************
202  *              allocate_stub
203  *
204  * Allocate a stub entry point.
205  */
206 static void *allocate_stub( const char *dll, const char *name )
207 {
208 #define MAX_SIZE 65536
209     static struct stub *stubs;
210     static unsigned int nb_stubs;
211     struct stub *stub;
212
213     if (nb_stubs >= MAX_SIZE / sizeof(*stub)) return (void *)0xdeadbeef;
214
215     if (!stubs)
216     {
217         ULONG size = MAX_SIZE;
218         if (NtAllocateVirtualMemory( NtCurrentProcess(), (void **)&stubs, 0, &size,
219                                      MEM_COMMIT, PAGE_EXECUTE_WRITECOPY ) != STATUS_SUCCESS)
220             return (void *)0xdeadbeef;
221     }
222     stub = &stubs[nb_stubs++];
223     stub->popl_eax  = 0x58;  /* popl %eax */
224     stub->pushl1    = 0x68;  /* pushl $name */
225     stub->name      = name;
226     stub->pushl2    = 0x68;  /* pushl $dll */
227     stub->dll       = dll;
228     stub->pushl_eax = 0x50;  /* pushl %eax */
229     stub->jmp       = 0xe9;  /* jmp stub_entry_point */
230     stub->entry     = (BYTE *)stub_entry_point - (BYTE *)(&stub->entry + 1);
231     return stub;
232 }
233
234 #else  /* __i386__ */
235 static inline void *allocate_stub( const char *dll, const char *name ) { return (void *)0xdeadbeef; }
236 #endif  /* __i386__ */
237
238
239 /*************************************************************************
240  *              get_modref
241  *
242  * Looks for the referenced HMODULE in the current process
243  * The loader_section must be locked while calling this function.
244  */
245 static WINE_MODREF *get_modref( HMODULE hmod )
246 {
247     PLIST_ENTRY mark, entry;
248     PLDR_MODULE mod;
249
250     if (cached_modref && cached_modref->ldr.BaseAddress == hmod) return cached_modref;
251
252     mark = &NtCurrentTeb()->Peb->LdrData->InMemoryOrderModuleList;
253     for (entry = mark->Flink; entry != mark; entry = entry->Flink)
254     {
255         mod = CONTAINING_RECORD(entry, LDR_MODULE, InMemoryOrderModuleList);
256         if (mod->BaseAddress == hmod)
257             return cached_modref = CONTAINING_RECORD(mod, WINE_MODREF, ldr);
258         if (mod->BaseAddress > (void*)hmod) break;
259     }
260     return NULL;
261 }
262
263
264 /**********************************************************************
265  *          find_basename_module
266  *
267  * Find a module from its base name.
268  * The loader_section must be locked while calling this function
269  */
270 static WINE_MODREF *find_basename_module( LPCWSTR name )
271 {
272     PLIST_ENTRY mark, entry;
273
274     if (cached_modref && !strcmpiW( name, cached_modref->ldr.BaseDllName.Buffer ))
275         return cached_modref;
276
277     mark = &NtCurrentTeb()->Peb->LdrData->InLoadOrderModuleList;
278     for (entry = mark->Flink; entry != mark; entry = entry->Flink)
279     {
280         LDR_MODULE *mod = CONTAINING_RECORD(entry, LDR_MODULE, InLoadOrderModuleList);
281         if (!strcmpiW( name, mod->BaseDllName.Buffer ))
282         {
283             cached_modref = CONTAINING_RECORD(mod, WINE_MODREF, ldr);
284             return cached_modref;
285         }
286     }
287     return NULL;
288 }
289
290
291 /**********************************************************************
292  *          find_fullname_module
293  *
294  * Find a module from its full path name.
295  * The loader_section must be locked while calling this function
296  */
297 static WINE_MODREF *find_fullname_module( LPCWSTR name )
298 {
299     PLIST_ENTRY mark, entry;
300
301     if (cached_modref && !strcmpiW( name, cached_modref->ldr.FullDllName.Buffer ))
302         return cached_modref;
303
304     mark = &NtCurrentTeb()->Peb->LdrData->InLoadOrderModuleList;
305     for (entry = mark->Flink; entry != mark; entry = entry->Flink)
306     {
307         LDR_MODULE *mod = CONTAINING_RECORD(entry, LDR_MODULE, InLoadOrderModuleList);
308         if (!strcmpiW( name, mod->FullDllName.Buffer ))
309         {
310             cached_modref = CONTAINING_RECORD(mod, WINE_MODREF, ldr);
311             return cached_modref;
312         }
313     }
314     return NULL;
315 }
316
317
318 /*************************************************************************
319  *              find_forwarded_export
320  *
321  * Find the final function pointer for a forwarded function.
322  * The loader_section must be locked while calling this function.
323  */
324 static FARPROC find_forwarded_export( HMODULE module, const char *forward )
325 {
326     const IMAGE_EXPORT_DIRECTORY *exports;
327     DWORD exp_size;
328     WINE_MODREF *wm;
329     WCHAR mod_name[32];
330     const char *end = strchr(forward, '.');
331     FARPROC proc = NULL;
332
333     if (!end) return NULL;
334     if ((end - forward) * sizeof(WCHAR) >= sizeof(mod_name) - sizeof(dllW)) return NULL;
335     ascii_to_unicode( mod_name, forward, end - forward );
336     memcpy( mod_name + (end - forward), dllW, sizeof(dllW) );
337
338     if (!(wm = find_basename_module( mod_name )))
339     {
340         ERR("module not found for forward '%s' used by %s\n",
341             forward, debugstr_w(get_modref(module)->ldr.FullDllName.Buffer) );
342         return NULL;
343     }
344     if ((exports = RtlImageDirectoryEntryToData( wm->ldr.BaseAddress, TRUE,
345                                                  IMAGE_DIRECTORY_ENTRY_EXPORT, &exp_size )))
346         proc = find_named_export( wm->ldr.BaseAddress, exports, exp_size, end + 1, -1 );
347
348     if (!proc)
349     {
350         ERR("function not found for forward '%s' used by %s."
351             " If you are using builtin %s, try using the native one instead.\n",
352             forward, debugstr_w(get_modref(module)->ldr.FullDllName.Buffer),
353             debugstr_w(get_modref(module)->ldr.BaseDllName.Buffer) );
354     }
355     return proc;
356 }
357
358
359 /*************************************************************************
360  *              find_ordinal_export
361  *
362  * Find an exported function by ordinal.
363  * The exports base must have been subtracted from the ordinal already.
364  * The loader_section must be locked while calling this function.
365  */
366 static FARPROC find_ordinal_export( HMODULE module, const IMAGE_EXPORT_DIRECTORY *exports,
367                                     DWORD exp_size, int ordinal )
368 {
369     FARPROC proc;
370     const DWORD *functions = get_rva( module, exports->AddressOfFunctions );
371
372     if (ordinal >= exports->NumberOfFunctions)
373     {
374         TRACE(" ordinal %ld out of range!\n", ordinal + exports->Base );
375         return NULL;
376     }
377     if (!functions[ordinal]) return NULL;
378
379     proc = get_rva( module, functions[ordinal] );
380
381     /* if the address falls into the export dir, it's a forward */
382     if (((const char *)proc >= (const char *)exports) && 
383         ((const char *)proc < (const char *)exports + exp_size))
384         return find_forwarded_export( module, (const char *)proc );
385
386     if (TRACE_ON(snoop))
387     {
388         const WCHAR *user = current_modref ? current_modref->ldr.BaseDllName.Buffer : NULL;
389         proc = SNOOP_GetProcAddress( module, exports, exp_size, proc, ordinal, user );
390     }
391     if (TRACE_ON(relay))
392     {
393         const WCHAR *user = current_modref ? current_modref->ldr.BaseDllName.Buffer : NULL;
394         proc = RELAY_GetProcAddress( module, exports, exp_size, proc, user );
395     }
396     return proc;
397 }
398
399
400 /*************************************************************************
401  *              find_named_export
402  *
403  * Find an exported function by name.
404  * The loader_section must be locked while calling this function.
405  */
406 static FARPROC find_named_export( HMODULE module, const IMAGE_EXPORT_DIRECTORY *exports,
407                                   DWORD exp_size, const char *name, int hint )
408 {
409     const WORD *ordinals = get_rva( module, exports->AddressOfNameOrdinals );
410     const DWORD *names = get_rva( module, exports->AddressOfNames );
411     int min = 0, max = exports->NumberOfNames - 1;
412
413     /* first check the hint */
414     if (hint >= 0 && hint <= max)
415     {
416         char *ename = get_rva( module, names[hint] );
417         if (!strcmp( ename, name ))
418             return find_ordinal_export( module, exports, exp_size, ordinals[hint] );
419     }
420
421     /* then do a binary search */
422     while (min <= max)
423     {
424         int res, pos = (min + max) / 2;
425         char *ename = get_rva( module, names[pos] );
426         if (!(res = strcmp( ename, name )))
427             return find_ordinal_export( module, exports, exp_size, ordinals[pos] );
428         if (res > 0) max = pos - 1;
429         else min = pos + 1;
430     }
431     return NULL;
432
433 }
434
435
436 /*************************************************************************
437  *              import_dll
438  *
439  * Import the dll specified by the given import descriptor.
440  * The loader_section must be locked while calling this function.
441  */
442 static WINE_MODREF *import_dll( HMODULE module, const IMAGE_IMPORT_DESCRIPTOR *descr, LPCWSTR load_path )
443 {
444     NTSTATUS status;
445     WINE_MODREF *wmImp;
446     HMODULE imp_mod;
447     const IMAGE_EXPORT_DIRECTORY *exports;
448     DWORD exp_size;
449     const IMAGE_THUNK_DATA *import_list;
450     IMAGE_THUNK_DATA *thunk_list;
451     WCHAR buffer[32];
452     const char *name = get_rva( module, descr->Name );
453     DWORD len = strlen(name) + 1;
454     PVOID protect_base;
455     DWORD protect_size = 0;
456     DWORD protect_old;
457
458     thunk_list = get_rva( module, (DWORD)descr->FirstThunk );
459     if (descr->u.OriginalFirstThunk)
460         import_list = get_rva( module, (DWORD)descr->u.OriginalFirstThunk );
461     else
462         import_list = thunk_list;
463
464     if (len * sizeof(WCHAR) <= sizeof(buffer))
465     {
466         ascii_to_unicode( buffer, name, len );
467         status = load_dll( load_path, buffer, 0, &wmImp );
468     }
469     else  /* need to allocate a larger buffer */
470     {
471         WCHAR *ptr = RtlAllocateHeap( GetProcessHeap(), 0, len * sizeof(WCHAR) );
472         if (!ptr) return NULL;
473         ascii_to_unicode( ptr, name, len );
474         status = load_dll( load_path, ptr, 0, &wmImp );
475         RtlFreeHeap( GetProcessHeap(), 0, ptr );
476     }
477
478     if (status)
479     {
480         if (status == STATUS_DLL_NOT_FOUND)
481             ERR("Library %s (which is needed by %s) not found\n",
482                 name, debugstr_w(current_modref->ldr.FullDllName.Buffer));
483         else
484             ERR("Loading library %s (which is needed by %s) failed (error %lx).\n",
485                 name, debugstr_w(current_modref->ldr.FullDllName.Buffer), status);
486         return NULL;
487     }
488
489     /* unprotect the import address table since it can be located in
490      * readonly section */
491     while (import_list[protect_size].u1.Ordinal) protect_size++;
492     protect_base = thunk_list;
493     protect_size *= sizeof(*thunk_list);
494     NtProtectVirtualMemory( NtCurrentProcess(), &protect_base,
495                             &protect_size, PAGE_WRITECOPY, &protect_old );
496
497     imp_mod = wmImp->ldr.BaseAddress;
498     exports = RtlImageDirectoryEntryToData( imp_mod, TRUE, IMAGE_DIRECTORY_ENTRY_EXPORT, &exp_size );
499
500     if (!exports)
501     {
502         /* set all imported function to deadbeef */
503         while (import_list->u1.Ordinal)
504         {
505             if (IMAGE_SNAP_BY_ORDINAL(import_list->u1.Ordinal))
506             {
507                 int ordinal = IMAGE_ORDINAL(import_list->u1.Ordinal);
508                 WARN("No implementation for %s.%d", name, ordinal );
509                 thunk_list->u1.Function = allocate_stub( name, (const char *)ordinal );
510             }
511             else
512             {
513                 IMAGE_IMPORT_BY_NAME *pe_name = get_rva( module, (DWORD)import_list->u1.AddressOfData );
514                 WARN("No implementation for %s.%s", name, pe_name->Name );
515                 thunk_list->u1.Function = allocate_stub( name, pe_name->Name );
516             }
517             WARN(" imported from %s, allocating stub %p\n",
518                 debugstr_w(current_modref->ldr.FullDllName.Buffer),
519                 thunk_list->u1.Function );
520             import_list++;
521             thunk_list++;
522         }
523         goto done;
524     }
525
526     while (import_list->u1.Ordinal)
527     {
528         if (IMAGE_SNAP_BY_ORDINAL(import_list->u1.Ordinal))
529         {
530             int ordinal = IMAGE_ORDINAL(import_list->u1.Ordinal);
531
532             thunk_list->u1.Function = (PDWORD)find_ordinal_export( imp_mod, exports, exp_size,
533                                                                    ordinal - exports->Base );
534             if (!thunk_list->u1.Function)
535             {
536                 thunk_list->u1.Function = allocate_stub( name, (const char *)ordinal );
537                 WARN("No implementation for %s.%d imported from %s, setting to %p\n",
538                     name, ordinal, debugstr_w(current_modref->ldr.FullDllName.Buffer),
539                     thunk_list->u1.Function );
540             }
541             TRACE("--- Ordinal %s.%d = %p\n", name, ordinal, thunk_list->u1.Function );
542         }
543         else  /* import by name */
544         {
545             IMAGE_IMPORT_BY_NAME *pe_name;
546             pe_name = get_rva( module, (DWORD)import_list->u1.AddressOfData );
547             thunk_list->u1.Function = (PDWORD)find_named_export( imp_mod, exports, exp_size,
548                                                                  pe_name->Name, pe_name->Hint );
549             if (!thunk_list->u1.Function)
550             {
551                 thunk_list->u1.Function = allocate_stub( name, pe_name->Name );
552                 WARN("No implementation for %s.%s imported from %s, setting to %p\n",
553                     name, pe_name->Name, debugstr_w(current_modref->ldr.FullDllName.Buffer),
554                     thunk_list->u1.Function );
555             }
556             TRACE("--- %s %s.%d = %p\n", pe_name->Name, name, pe_name->Hint, thunk_list->u1.Function);
557         }
558         import_list++;
559         thunk_list++;
560     }
561
562 done:
563     /* restore old protection of the import address table */
564     NtProtectVirtualMemory( NtCurrentProcess(), &protect_base, &protect_size, protect_old, NULL );
565     return wmImp;
566 }
567
568
569 /****************************************************************
570  *       fixup_imports
571  *
572  * Fixup all imports of a given module.
573  * The loader_section must be locked while calling this function.
574  */
575 static NTSTATUS fixup_imports( WINE_MODREF *wm, LPCWSTR load_path )
576 {
577     int i, nb_imports;
578     const IMAGE_IMPORT_DESCRIPTOR *imports;
579     WINE_MODREF *prev;
580     DWORD size;
581     NTSTATUS status;
582
583     if (!(imports = RtlImageDirectoryEntryToData( wm->ldr.BaseAddress, TRUE,
584                                                   IMAGE_DIRECTORY_ENTRY_IMPORT, &size )))
585         return STATUS_SUCCESS;
586
587     nb_imports = size / sizeof(*imports);
588     for (i = 0; i < nb_imports; i++)
589     {
590         if (!imports[i].Name)
591         {
592             nb_imports = i;
593             break;
594         }
595     }
596     if (!nb_imports) return STATUS_SUCCESS;  /* no imports */
597
598     /* Allocate module dependency list */
599     wm->nDeps = nb_imports;
600     wm->deps  = RtlAllocateHeap( GetProcessHeap(), 0, nb_imports*sizeof(WINE_MODREF *) );
601
602     /* load the imported modules. They are automatically
603      * added to the modref list of the process.
604      */
605     prev = current_modref;
606     current_modref = wm;
607     status = STATUS_SUCCESS;
608     for (i = 0; i < nb_imports; i++)
609     {
610         if (!(wm->deps[i] = import_dll( wm->ldr.BaseAddress, &imports[i], load_path )))
611             status = STATUS_DLL_NOT_FOUND;
612     }
613     current_modref = prev;
614     return status;
615 }
616
617
618 /*************************************************************************
619  *              alloc_module
620  *
621  * Allocate a WINE_MODREF structure and add it to the process list
622  * The loader_section must be locked while calling this function.
623  */
624 static WINE_MODREF *alloc_module( HMODULE hModule, LPCWSTR filename )
625 {
626     WINE_MODREF *wm;
627     const WCHAR *p;
628     const IMAGE_NT_HEADERS *nt = RtlImageNtHeader(hModule);
629     PLIST_ENTRY entry, mark;
630
631     if (!(wm = RtlAllocateHeap( GetProcessHeap(), 0, sizeof(*wm) ))) return NULL;
632
633     wm->nDeps    = 0;
634     wm->deps     = NULL;
635
636     wm->ldr.BaseAddress   = hModule;
637     wm->ldr.EntryPoint    = NULL;
638     wm->ldr.SizeOfImage   = nt->OptionalHeader.SizeOfImage;
639     wm->ldr.Flags         = 0;
640     wm->ldr.LoadCount     = 0;
641     wm->ldr.TlsIndex      = -1;
642     wm->ldr.SectionHandle = NULL;
643     wm->ldr.CheckSum      = 0;
644     wm->ldr.TimeDateStamp = 0;
645
646     RtlCreateUnicodeString( &wm->ldr.FullDllName, filename );
647     if ((p = strrchrW( wm->ldr.FullDllName.Buffer, '\\' ))) p++;
648     else p = wm->ldr.FullDllName.Buffer;
649     RtlInitUnicodeString( &wm->ldr.BaseDllName, p );
650
651     if (nt->FileHeader.Characteristics & IMAGE_FILE_DLL)
652     {
653         wm->ldr.Flags |= LDR_IMAGE_IS_DLL;
654         if (nt->OptionalHeader.AddressOfEntryPoint)
655             wm->ldr.EntryPoint = (char *)hModule + nt->OptionalHeader.AddressOfEntryPoint;
656     }
657
658     InsertTailList(&NtCurrentTeb()->Peb->LdrData->InLoadOrderModuleList,
659                    &wm->ldr.InLoadOrderModuleList);
660
661     /* insert module in MemoryList, sorted in increasing base addresses */
662     mark = &NtCurrentTeb()->Peb->LdrData->InMemoryOrderModuleList;
663     for (entry = mark->Flink; entry != mark; entry = entry->Flink)
664     {
665         if (CONTAINING_RECORD(entry, LDR_MODULE, InMemoryOrderModuleList)->BaseAddress > wm->ldr.BaseAddress)
666             break;
667     }
668     entry->Blink->Flink = &wm->ldr.InMemoryOrderModuleList;
669     wm->ldr.InMemoryOrderModuleList.Blink = entry->Blink;
670     wm->ldr.InMemoryOrderModuleList.Flink = entry;
671     entry->Blink = &wm->ldr.InMemoryOrderModuleList;
672
673     /* wait until init is called for inserting into this list */
674     wm->ldr.InInitializationOrderModuleList.Flink = NULL;
675     wm->ldr.InInitializationOrderModuleList.Blink = NULL;
676     return wm;
677 }
678
679
680 /*************************************************************************
681  *              alloc_process_tls
682  *
683  * Allocate the process-wide structure for module TLS storage.
684  */
685 static NTSTATUS alloc_process_tls(void)
686 {
687     PLIST_ENTRY mark, entry;
688     PLDR_MODULE mod;
689     const IMAGE_TLS_DIRECTORY *dir;
690     ULONG size, i;
691
692     mark = &NtCurrentTeb()->Peb->LdrData->InMemoryOrderModuleList;
693     for (entry = mark->Flink; entry != mark; entry = entry->Flink)
694     {
695         mod = CONTAINING_RECORD(entry, LDR_MODULE, InMemoryOrderModuleList);
696         if (!(dir = RtlImageDirectoryEntryToData( mod->BaseAddress, TRUE,
697                                                   IMAGE_DIRECTORY_ENTRY_TLS, &size )))
698             continue;
699         size = (dir->EndAddressOfRawData - dir->StartAddressOfRawData) + dir->SizeOfZeroFill;
700         if (!size) continue;
701         tls_total_size += size;
702         tls_module_count++;
703     }
704     if (!tls_module_count) return STATUS_SUCCESS;
705
706     TRACE( "count %u size %u\n", tls_module_count, tls_total_size );
707
708     tls_dirs = RtlAllocateHeap( GetProcessHeap(), 0, tls_module_count * sizeof(*tls_dirs) );
709     if (!tls_dirs) return STATUS_NO_MEMORY;
710
711     for (i = 0, entry = mark->Flink; entry != mark; entry = entry->Flink)
712     {
713         mod = CONTAINING_RECORD(entry, LDR_MODULE, InMemoryOrderModuleList);
714         if (!(dir = RtlImageDirectoryEntryToData( mod->BaseAddress, TRUE,
715                                                   IMAGE_DIRECTORY_ENTRY_TLS, &size )))
716             continue;
717         tls_dirs[i] = dir;
718         *dir->AddressOfIndex = i;
719         mod->TlsIndex = i;
720         mod->LoadCount = -1;  /* can't unload it */
721         i++;
722     }
723     return STATUS_SUCCESS;
724 }
725
726
727 /*************************************************************************
728  *              alloc_thread_tls
729  *
730  * Allocate the per-thread structure for module TLS storage.
731  */
732 static NTSTATUS alloc_thread_tls(void)
733 {
734     void **pointers;
735     char *data;
736     UINT i;
737
738     if (!tls_module_count) return STATUS_SUCCESS;
739
740     if (!(pointers = RtlAllocateHeap( GetProcessHeap(), 0,
741                                       tls_module_count * sizeof(*pointers) )))
742         return STATUS_NO_MEMORY;
743
744     if (!(data = RtlAllocateHeap( GetProcessHeap(), 0, tls_total_size )))
745     {
746         RtlFreeHeap( GetProcessHeap(), 0, pointers );
747         return STATUS_NO_MEMORY;
748     }
749
750     for (i = 0; i < tls_module_count; i++)
751     {
752         const IMAGE_TLS_DIRECTORY *dir = tls_dirs[i];
753         ULONG size = dir->EndAddressOfRawData - dir->StartAddressOfRawData;
754
755         TRACE( "thread %04lx idx %d: %ld/%ld bytes from %p to %p\n",
756                GetCurrentThreadId(), i, size, dir->SizeOfZeroFill,
757                (void *)dir->StartAddressOfRawData, data );
758
759         pointers[i] = data;
760         memcpy( data, (void *)dir->StartAddressOfRawData, size );
761         data += size;
762         memset( data, 0, dir->SizeOfZeroFill );
763         data += dir->SizeOfZeroFill;
764     }
765     NtCurrentTeb()->ThreadLocalStoragePointer = pointers;
766     return STATUS_SUCCESS;
767 }
768
769
770 /*************************************************************************
771  *              call_tls_callbacks
772  */
773 static void call_tls_callbacks( HMODULE module, UINT reason )
774 {
775     const IMAGE_TLS_DIRECTORY *dir;
776     const PIMAGE_TLS_CALLBACK *callback;
777     ULONG dirsize;
778
779     dir = RtlImageDirectoryEntryToData( module, TRUE, IMAGE_DIRECTORY_ENTRY_TLS, &dirsize );
780     if (!dir || !dir->AddressOfCallBacks) return;
781
782     for (callback = dir->AddressOfCallBacks; *callback; callback++)
783     {
784         if (TRACE_ON(relay))
785             DPRINTF("%04lx:Call TLS callback (proc=%p,module=%p,reason=%s,reserved=0)\n",
786                     GetCurrentThreadId(), *callback, module, reason_names[reason] );
787         (*callback)( module, reason, NULL );
788         if (TRACE_ON(relay))
789             DPRINTF("%04lx:Ret  TLS callback (proc=%p,module=%p,reason=%s,reserved=0)\n",
790                     GetCurrentThreadId(), *callback, module, reason_names[reason] );
791     }
792 }
793
794
795 /*************************************************************************
796  *              MODULE_InitDLL
797  */
798 static BOOL MODULE_InitDLL( WINE_MODREF *wm, UINT reason, LPVOID lpReserved )
799 {
800     WCHAR mod_name[32];
801     BOOL retv = TRUE;
802     DLLENTRYPROC entry = wm->ldr.EntryPoint;
803     void *module = wm->ldr.BaseAddress;
804
805     /* Skip calls for modules loaded with special load flags */
806
807     if (wm->ldr.Flags & LDR_DONT_RESOLVE_REFS) return TRUE;
808     if (wm->ldr.TlsIndex != -1) call_tls_callbacks( wm->ldr.BaseAddress, reason );
809     if (!entry) return TRUE;
810
811     if (TRACE_ON(relay))
812     {
813         size_t len = min( wm->ldr.BaseDllName.Length, sizeof(mod_name)-sizeof(WCHAR) );
814         memcpy( mod_name, wm->ldr.BaseDllName.Buffer, len );
815         mod_name[len / sizeof(WCHAR)] = 0;
816         DPRINTF("%04lx:Call PE DLL (proc=%p,module=%p %s,reason=%s,res=%p)\n",
817                 GetCurrentThreadId(), entry, module, debugstr_w(mod_name),
818                 reason_names[reason], lpReserved );
819     }
820     else TRACE("(%p %s,%s,%p) - CALL\n", module, debugstr_w(wm->ldr.BaseDllName.Buffer),
821                reason_names[reason], lpReserved );
822
823     retv = call_dll_entry_point( entry, module, reason, lpReserved );
824
825     /* The state of the module list may have changed due to the call
826        to the dll. We cannot assume that this module has not been
827        deleted.  */
828     if (TRACE_ON(relay))
829         DPRINTF("%04lx:Ret  PE DLL (proc=%p,module=%p %s,reason=%s,res=%p) retval=%x\n",
830                 GetCurrentThreadId(), entry, module, debugstr_w(mod_name),
831                 reason_names[reason], lpReserved, retv );
832     else TRACE("(%p,%s,%p) - RETURN %d\n", module, reason_names[reason], lpReserved, retv );
833
834     return retv;
835 }
836
837
838 /*************************************************************************
839  *              process_attach
840  *
841  * Send the process attach notification to all DLLs the given module
842  * depends on (recursively). This is somewhat complicated due to the fact that
843  *
844  * - we have to respect the module dependencies, i.e. modules implicitly
845  *   referenced by another module have to be initialized before the module
846  *   itself can be initialized
847  *
848  * - the initialization routine of a DLL can itself call LoadLibrary,
849  *   thereby introducing a whole new set of dependencies (even involving
850  *   the 'old' modules) at any time during the whole process
851  *
852  * (Note that this routine can be recursively entered not only directly
853  *  from itself, but also via LoadLibrary from one of the called initialization
854  *  routines.)
855  *
856  * Furthermore, we need to rearrange the main WINE_MODREF list to allow
857  * the process *detach* notifications to be sent in the correct order.
858  * This must not only take into account module dependencies, but also
859  * 'hidden' dependencies created by modules calling LoadLibrary in their
860  * attach notification routine.
861  *
862  * The strategy is rather simple: we move a WINE_MODREF to the head of the
863  * list after the attach notification has returned.  This implies that the
864  * detach notifications are called in the reverse of the sequence the attach
865  * notifications *returned*.
866  *
867  * The loader_section must be locked while calling this function.
868  */
869 static NTSTATUS process_attach( WINE_MODREF *wm, LPVOID lpReserved )
870 {
871     NTSTATUS status = STATUS_SUCCESS;
872     int i;
873
874     /* prevent infinite recursion in case of cyclical dependencies */
875     if (    ( wm->ldr.Flags & LDR_LOAD_IN_PROGRESS )
876          || ( wm->ldr.Flags & LDR_PROCESS_ATTACHED ) )
877         return status;
878
879     TRACE("(%s,%p) - START\n", debugstr_w(wm->ldr.BaseDllName.Buffer), lpReserved );
880
881     /* Tag current MODREF to prevent recursive loop */
882     wm->ldr.Flags |= LDR_LOAD_IN_PROGRESS;
883
884     /* Recursively attach all DLLs this one depends on */
885     for ( i = 0; i < wm->nDeps; i++ )
886     {
887         if (!wm->deps[i]) continue;
888         if ((status = process_attach( wm->deps[i], lpReserved )) != STATUS_SUCCESS) break;
889     }
890
891     /* Call DLL entry point */
892     if (status == STATUS_SUCCESS)
893     {
894         WINE_MODREF *prev = current_modref;
895         current_modref = wm;
896         if (MODULE_InitDLL( wm, DLL_PROCESS_ATTACH, lpReserved ))
897         {
898             wm->ldr.Flags |= LDR_PROCESS_ATTACHED;
899         }
900         else
901         {
902             /* point to the name so LdrInitializeThunk can print it */
903             last_failed_modref = wm;
904             WARN("Initialization of %s failed\n", debugstr_w(wm->ldr.BaseDllName.Buffer));
905             status = STATUS_DLL_INIT_FAILED;
906         }
907         current_modref = prev;
908     }
909
910     InsertTailList(&NtCurrentTeb()->Peb->LdrData->InInitializationOrderModuleList, 
911                    &wm->ldr.InInitializationOrderModuleList);
912
913     /* Remove recursion flag */
914     wm->ldr.Flags &= ~LDR_LOAD_IN_PROGRESS;
915
916     TRACE("(%s,%p) - END\n", debugstr_w(wm->ldr.BaseDllName.Buffer), lpReserved );
917     return status;
918 }
919
920 /*************************************************************************
921  *              process_detach
922  *
923  * Send DLL process detach notifications.  See the comment about calling
924  * sequence at process_attach.  Unless the bForceDetach flag
925  * is set, only DLLs with zero refcount are notified.
926  */
927 static void process_detach( BOOL bForceDetach, LPVOID lpReserved )
928 {
929     PLIST_ENTRY mark, entry;
930     PLDR_MODULE mod;
931
932     RtlEnterCriticalSection( &loader_section );
933     if (bForceDetach) process_detaching = 1;
934     mark = &NtCurrentTeb()->Peb->LdrData->InInitializationOrderModuleList;
935     do
936     {
937         for (entry = mark->Blink; entry != mark; entry = entry->Blink)
938         {
939             mod = CONTAINING_RECORD(entry, LDR_MODULE, 
940                                     InInitializationOrderModuleList);
941             /* Check whether to detach this DLL */
942             if ( !(mod->Flags & LDR_PROCESS_ATTACHED) )
943                 continue;
944             if ( mod->LoadCount && !bForceDetach )
945                 continue;
946
947             /* Call detach notification */
948             mod->Flags &= ~LDR_PROCESS_ATTACHED;
949             MODULE_InitDLL( CONTAINING_RECORD(mod, WINE_MODREF, ldr), 
950                             DLL_PROCESS_DETACH, lpReserved );
951
952             /* Restart at head of WINE_MODREF list, as entries might have
953                been added and/or removed while performing the call ... */
954             break;
955         }
956     } while (entry != mark);
957
958     RtlLeaveCriticalSection( &loader_section );
959 }
960
961 /*************************************************************************
962  *              MODULE_DllThreadAttach
963  *
964  * Send DLL thread attach notifications. These are sent in the
965  * reverse sequence of process detach notification.
966  *
967  */
968 NTSTATUS MODULE_DllThreadAttach( LPVOID lpReserved )
969 {
970     PLIST_ENTRY mark, entry;
971     PLDR_MODULE mod;
972     NTSTATUS    status;
973
974     /* don't do any attach calls if process is exiting */
975     if (process_detaching) return STATUS_SUCCESS;
976     /* FIXME: there is still a race here */
977
978     RtlEnterCriticalSection( &loader_section );
979
980     if ((status = alloc_thread_tls()) != STATUS_SUCCESS) goto done;
981
982     mark = &NtCurrentTeb()->Peb->LdrData->InInitializationOrderModuleList;
983     for (entry = mark->Flink; entry != mark; entry = entry->Flink)
984     {
985         mod = CONTAINING_RECORD(entry, LDR_MODULE, 
986                                 InInitializationOrderModuleList);
987         if ( !(mod->Flags & LDR_PROCESS_ATTACHED) )
988             continue;
989         if ( mod->Flags & LDR_NO_DLL_CALLS )
990             continue;
991
992         MODULE_InitDLL( CONTAINING_RECORD(mod, WINE_MODREF, ldr),
993                         DLL_THREAD_ATTACH, lpReserved );
994     }
995
996 done:
997     RtlLeaveCriticalSection( &loader_section );
998     return status;
999 }
1000
1001 /******************************************************************
1002  *              LdrDisableThreadCalloutsForDll (NTDLL.@)
1003  *
1004  */
1005 NTSTATUS WINAPI LdrDisableThreadCalloutsForDll(HMODULE hModule)
1006 {
1007     WINE_MODREF *wm;
1008     NTSTATUS    ret = STATUS_SUCCESS;
1009
1010     RtlEnterCriticalSection( &loader_section );
1011
1012     wm = get_modref( hModule );
1013     if (!wm || wm->ldr.TlsIndex != -1)
1014         ret = STATUS_DLL_NOT_FOUND;
1015     else
1016         wm->ldr.Flags |= LDR_NO_DLL_CALLS;
1017
1018     RtlLeaveCriticalSection( &loader_section );
1019
1020     return ret;
1021 }
1022
1023 /******************************************************************
1024  *              LdrFindEntryForAddress (NTDLL.@)
1025  *
1026  * The loader_section must be locked while calling this function
1027  */
1028 NTSTATUS WINAPI LdrFindEntryForAddress(const void* addr, PLDR_MODULE* pmod)
1029 {
1030     PLIST_ENTRY mark, entry;
1031     PLDR_MODULE mod;
1032
1033     mark = &NtCurrentTeb()->Peb->LdrData->InMemoryOrderModuleList;
1034     for (entry = mark->Flink; entry != mark; entry = entry->Flink)
1035     {
1036         mod = CONTAINING_RECORD(entry, LDR_MODULE, InMemoryOrderModuleList);
1037         if ((const void *)mod->BaseAddress <= addr &&
1038             (const char *)addr < (char*)mod->BaseAddress + mod->SizeOfImage)
1039         {
1040             *pmod = mod;
1041             return STATUS_SUCCESS;
1042         }
1043         if ((const void *)mod->BaseAddress > addr) break;
1044     }
1045     return STATUS_NO_MORE_ENTRIES;
1046 }
1047
1048 /******************************************************************
1049  *              LdrLockLoaderLock  (NTDLL.@)
1050  *
1051  * Note: flags are not implemented.
1052  * Flag 0x01 is used to raise exceptions on errors.
1053  * Flag 0x02 is used to avoid waiting on the section (does RtlTryEnterCriticalSection instead).
1054  */
1055 NTSTATUS WINAPI LdrLockLoaderLock( ULONG flags, ULONG *result, ULONG *magic )
1056 {
1057     if (flags) FIXME( "flags %lx not supported\n", flags );
1058
1059     if (result) *result = 1;
1060     if (!magic) return STATUS_INVALID_PARAMETER_3;
1061     RtlEnterCriticalSection( &loader_section );
1062     *magic = GetCurrentThreadId();
1063     return STATUS_SUCCESS;
1064 }
1065
1066
1067 /******************************************************************
1068  *              LdrUnlockLoaderUnlock  (NTDLL.@)
1069  */
1070 NTSTATUS WINAPI LdrUnlockLoaderLock( ULONG flags, ULONG magic )
1071 {
1072     if (magic)
1073     {
1074         if (magic != GetCurrentThreadId()) return STATUS_INVALID_PARAMETER_2;
1075         RtlLeaveCriticalSection( &loader_section );
1076     }
1077     return STATUS_SUCCESS;
1078 }
1079
1080
1081 /******************************************************************
1082  *              LdrGetDllHandle (NTDLL.@)
1083  */
1084 NTSTATUS WINAPI LdrGetDllHandle(ULONG x, ULONG y, const UNICODE_STRING *name, HMODULE *base)
1085 {
1086     NTSTATUS status = STATUS_DLL_NOT_FOUND;
1087     WCHAR dllname[MAX_PATH+4], *p;
1088     UNICODE_STRING str;
1089     PLIST_ENTRY mark, entry;
1090     PLDR_MODULE mod;
1091
1092     if (x != 0 || y != 0)
1093         FIXME("Unknown behavior, please report\n");
1094
1095     /* Append .DLL to name if no extension present */
1096     if (!(p = strrchrW( name->Buffer, '.')) || strchrW( p, '/' ) || strchrW( p, '\\'))
1097     {
1098         if (name->Length >= MAX_PATH) return STATUS_NAME_TOO_LONG;
1099         strcpyW( dllname, name->Buffer );
1100         strcatW( dllname, dllW );
1101         RtlInitUnicodeString( &str, dllname );
1102         name = &str;
1103     }
1104
1105     RtlEnterCriticalSection( &loader_section );
1106
1107     if (cached_modref)
1108     {
1109         if (RtlEqualUnicodeString( name, &cached_modref->ldr.FullDllName, TRUE ) ||
1110             RtlEqualUnicodeString( name, &cached_modref->ldr.BaseDllName, TRUE ))
1111         {
1112             *base = cached_modref->ldr.BaseAddress;
1113             status = STATUS_SUCCESS;
1114             goto done;
1115         }
1116     }
1117
1118     mark = &NtCurrentTeb()->Peb->LdrData->InLoadOrderModuleList;
1119     for (entry = mark->Flink; entry != mark; entry = entry->Flink)
1120     {
1121         mod = CONTAINING_RECORD(entry, LDR_MODULE, InLoadOrderModuleList);
1122
1123         if (RtlEqualUnicodeString( name, &mod->FullDllName, TRUE ) ||
1124             RtlEqualUnicodeString( name, &mod->BaseDllName, TRUE ))
1125         {
1126             cached_modref = CONTAINING_RECORD(mod, WINE_MODREF, ldr);
1127             *base = mod->BaseAddress;
1128             status = STATUS_SUCCESS;
1129             break;
1130         }
1131     }
1132 done:
1133     RtlLeaveCriticalSection( &loader_section );
1134     TRACE("%lx %lx %s -> %p\n", x, y, debugstr_us(name), status ? NULL : *base);
1135     return status;
1136 }
1137
1138
1139 /******************************************************************
1140  *              LdrGetProcedureAddress  (NTDLL.@)
1141  */
1142 NTSTATUS WINAPI LdrGetProcedureAddress(HMODULE module, const ANSI_STRING *name,
1143                                        ULONG ord, PVOID *address)
1144 {
1145     IMAGE_EXPORT_DIRECTORY *exports;
1146     DWORD exp_size;
1147     NTSTATUS ret = STATUS_PROCEDURE_NOT_FOUND;
1148
1149     RtlEnterCriticalSection( &loader_section );
1150
1151     if ((exports = RtlImageDirectoryEntryToData( module, TRUE,
1152                                                  IMAGE_DIRECTORY_ENTRY_EXPORT, &exp_size )))
1153     {
1154         void *proc = name ? find_named_export( module, exports, exp_size, name->Buffer, -1 )
1155                           : find_ordinal_export( module, exports, exp_size, ord - exports->Base );
1156         if (proc)
1157         {
1158             *address = proc;
1159             ret = STATUS_SUCCESS;
1160         }
1161     }
1162     else
1163     {
1164         /* check if the module itself is invalid to return the proper error */
1165         if (!get_modref( module )) ret = STATUS_DLL_NOT_FOUND;
1166     }
1167
1168     RtlLeaveCriticalSection( &loader_section );
1169     return ret;
1170 }
1171
1172
1173 /***********************************************************************
1174  *           load_builtin_callback
1175  *
1176  * Load a library in memory; callback function for wine_dll_register
1177  */
1178 static void load_builtin_callback( void *module, const char *filename )
1179 {
1180     static const WCHAR emptyW[1];
1181     void *addr;
1182     IMAGE_NT_HEADERS *nt;
1183     WINE_MODREF *wm;
1184     WCHAR *fullname, *p;
1185     const WCHAR *load_path;
1186
1187     if (!module)
1188     {
1189         ERR("could not map image for %s\n", filename ? filename : "main exe" );
1190         return;
1191     }
1192     if (!(nt = RtlImageNtHeader( module )))
1193     {
1194         ERR( "bad module for %s\n", filename ? filename : "main exe" );
1195         builtin_load_info->status = STATUS_INVALID_IMAGE_FORMAT;
1196         return;
1197     }
1198     if (!(nt->FileHeader.Characteristics & IMAGE_FILE_DLL))
1199     {
1200         /* if we already have an executable, ignore this one */
1201         if (!NtCurrentTeb()->Peb->ImageBaseAddress)
1202         {
1203             NtCurrentTeb()->Peb->ImageBaseAddress = module;
1204             return; /* don't create the modref here, will be done later on */
1205         }
1206     }
1207
1208     /* create the MODREF */
1209
1210     if (!(fullname = RtlAllocateHeap( GetProcessHeap(), 0,
1211                                       system_dir.MaximumLength + (strlen(filename) + 1) * sizeof(WCHAR) )))
1212     {
1213         ERR( "can't load %s\n", filename );
1214         builtin_load_info->status = STATUS_NO_MEMORY;
1215         return;
1216     }
1217     memcpy( fullname, system_dir.Buffer, system_dir.Length );
1218     p = fullname + system_dir.Length / sizeof(WCHAR);
1219     if (p > fullname && p[-1] != '\\') *p++ = '\\';
1220     ascii_to_unicode( p, filename, strlen(filename) + 1 );
1221
1222     wm = alloc_module( module, fullname );
1223     RtlFreeHeap( GetProcessHeap(), 0, fullname );
1224     if (!wm)
1225     {
1226         ERR( "can't load %s\n", filename );
1227         builtin_load_info->status = STATUS_NO_MEMORY;
1228         return;
1229     }
1230     wm->ldr.Flags |= LDR_WINE_INTERNAL;
1231     addr = module;
1232     NtAllocateVirtualMemory( NtCurrentProcess(), &addr, 0, &nt->OptionalHeader.SizeOfImage,
1233                              MEM_SYSTEM | MEM_IMAGE, PAGE_EXECUTE_WRITECOPY );
1234
1235     /* fixup imports */
1236
1237     load_path = builtin_load_info->load_path;
1238     if (!load_path) load_path = NtCurrentTeb()->Peb->ProcessParameters->DllPath.Buffer;
1239     if (!load_path) load_path = emptyW;
1240     if (fixup_imports( wm, load_path ) != STATUS_SUCCESS)
1241     {
1242         /* the module has only be inserted in the load & memory order lists */
1243         RemoveEntryList(&wm->ldr.InLoadOrderModuleList);
1244         RemoveEntryList(&wm->ldr.InMemoryOrderModuleList);
1245         /* FIXME: free the modref */
1246         builtin_load_info->status = STATUS_DLL_NOT_FOUND;
1247         return;
1248     }
1249     builtin_load_info->wm = wm;
1250     TRACE( "loaded %s %p %p\n", filename, wm, module );
1251
1252     /* send the DLL load event */
1253
1254     SERVER_START_REQ( load_dll )
1255     {
1256         req->handle     = 0;
1257         req->base       = module;
1258         req->size       = nt->OptionalHeader.SizeOfImage;
1259         req->dbg_offset = nt->FileHeader.PointerToSymbolTable;
1260         req->dbg_size   = nt->FileHeader.NumberOfSymbols;
1261         req->name       = &wm->ldr.FullDllName.Buffer;
1262         wine_server_add_data( req, wm->ldr.FullDllName.Buffer, wm->ldr.FullDllName.Length );
1263         wine_server_call( req );
1264     }
1265     SERVER_END_REQ;
1266
1267     /* setup relay debugging entry points */
1268     if (TRACE_ON(relay)) RELAY_SetupDLL( module );
1269 }
1270
1271
1272 /******************************************************************************
1273  *      load_native_dll  (internal)
1274  */
1275 static NTSTATUS load_native_dll( LPCWSTR load_path, LPCWSTR name, HANDLE file,
1276                                  DWORD flags, WINE_MODREF** pwm )
1277 {
1278     void *module;
1279     HANDLE mapping;
1280     OBJECT_ATTRIBUTES attr;
1281     LARGE_INTEGER size;
1282     IMAGE_NT_HEADERS *nt;
1283     DWORD len = 0;
1284     WINE_MODREF *wm;
1285     NTSTATUS status;
1286
1287     TRACE( "loading %s\n", debugstr_w(name) );
1288
1289     attr.Length                   = sizeof(attr);
1290     attr.RootDirectory            = 0;
1291     attr.ObjectName               = NULL;
1292     attr.Attributes               = 0;
1293     attr.SecurityDescriptor       = NULL;
1294     attr.SecurityQualityOfService = NULL;
1295     size.QuadPart = 0;
1296
1297     status = NtCreateSection( &mapping, STANDARD_RIGHTS_REQUIRED | SECTION_QUERY | SECTION_MAP_READ,
1298                               &attr, &size, 0, SEC_IMAGE, file );
1299     if (status != STATUS_SUCCESS) return status;
1300
1301     module = NULL;
1302     status = NtMapViewOfSection( mapping, NtCurrentProcess(),
1303                                  &module, 0, 0, &size, &len, ViewShare, 0, PAGE_READONLY );
1304     NtClose( mapping );
1305     if (status != STATUS_SUCCESS) return status;
1306
1307     /* create the MODREF */
1308
1309     if (!(wm = alloc_module( module, name ))) return STATUS_NO_MEMORY;
1310
1311     /* fixup imports */
1312
1313     if (!(flags & DONT_RESOLVE_DLL_REFERENCES))
1314     {
1315         if ((status = fixup_imports( wm, load_path )) != STATUS_SUCCESS)
1316         {
1317             /* the module has only be inserted in the load & memory order lists */
1318             RemoveEntryList(&wm->ldr.InLoadOrderModuleList);
1319             RemoveEntryList(&wm->ldr.InMemoryOrderModuleList);
1320
1321             /* FIXME: there are several more dangling references
1322              * left. Including dlls loaded by this dll before the
1323              * failed one. Unrolling is rather difficult with the
1324              * current structure and we can leave them lying
1325              * around with no problems, so we don't care.
1326              * As these might reference our wm, we don't free it.
1327              */
1328             return status;
1329         }
1330     }
1331     else wm->ldr.Flags |= LDR_DONT_RESOLVE_REFS;
1332
1333     /* send DLL load event */
1334
1335     nt = RtlImageNtHeader( module );
1336
1337     /* don't keep the file open if the mapping is from removable media */
1338     if (!VIRTUAL_HasMapping( module )) file = 0;
1339
1340     SERVER_START_REQ( load_dll )
1341     {
1342         req->handle     = file;
1343         req->base       = module;
1344         req->size       = nt->OptionalHeader.SizeOfImage;
1345         req->dbg_offset = nt->FileHeader.PointerToSymbolTable;
1346         req->dbg_size   = nt->FileHeader.NumberOfSymbols;
1347         req->name       = &wm->ldr.FullDllName.Buffer;
1348         wine_server_add_data( req, wm->ldr.FullDllName.Buffer, wm->ldr.FullDllName.Length );
1349         wine_server_call( req );
1350     }
1351     SERVER_END_REQ;
1352
1353     if (TRACE_ON(snoop)) SNOOP_SetupDLL( module );
1354
1355     *pwm = wm;
1356     return STATUS_SUCCESS;
1357 }
1358
1359
1360 /***********************************************************************
1361  *           load_builtin_dll
1362  */
1363 static NTSTATUS load_builtin_dll( LPCWSTR load_path, LPCWSTR path, DWORD flags, WINE_MODREF** pwm )
1364 {
1365     char error[256], dllname[MAX_PATH];
1366     int file_exists;
1367     const WCHAR *name, *p;
1368     DWORD len, i;
1369     void *handle;
1370     struct builtin_load_info info, *prev_info;
1371
1372     /* Fix the name in case we have a full path and extension */
1373     name = path;
1374     if ((p = strrchrW( name, '\\' ))) name = p + 1;
1375     if ((p = strrchrW( name, '/' ))) name = p + 1;
1376
1377     /* we don't want to depend on the current codepage here */
1378     len = strlenW( name ) + 1;
1379     if (len >= sizeof(dllname)) return STATUS_NAME_TOO_LONG;
1380     for (i = 0; i < len; i++)
1381     {
1382         if (name[i] > 127) return STATUS_DLL_NOT_FOUND;
1383         dllname[i] = (char)name[i];
1384         if (dllname[i] >= 'A' && dllname[i] <= 'Z') dllname[i] += 'a' - 'A';
1385     }
1386
1387     /* load_library will modify info.status. Note also that load_library can be
1388      * called several times, if the .so file we're loading has dependencies.
1389      * info.status will gather all the errors we may get while loading all these
1390      * libraries
1391      */
1392     info.load_path = load_path;
1393     info.status    = STATUS_SUCCESS;
1394     info.wm        = NULL;
1395     prev_info = builtin_load_info;
1396     builtin_load_info = &info;
1397     handle = wine_dll_load( dllname, error, sizeof(error), &file_exists );
1398     builtin_load_info = prev_info;
1399
1400     if (!handle)
1401     {
1402         if (!file_exists)
1403         {
1404             /* The file does not exist -> WARN() */
1405             WARN("cannot open .so lib for builtin %s: %s\n", debugstr_w(name), error);
1406             return STATUS_DLL_NOT_FOUND;
1407         }
1408         /* ERR() for all other errors (missing functions, ...) */
1409         ERR("failed to load .so lib for builtin %s: %s\n", debugstr_w(name), error );
1410         return STATUS_PROCEDURE_NOT_FOUND;
1411     }
1412     if (info.status != STATUS_SUCCESS) return info.status;
1413
1414     if (!info.wm)
1415     {
1416         /* The constructor wasn't called, this means the .so is already
1417          * loaded under a different name. We can't support multiple names
1418          * for the same module, so return an error. */
1419         return STATUS_INVALID_IMAGE_FORMAT;
1420     }
1421
1422     info.wm->ldr.SectionHandle = handle;
1423     if (strcmpiW( info.wm->ldr.BaseDllName.Buffer, name ))
1424     {
1425         ERR( "loaded .so for %s but got %s instead - probably 16-bit dll\n",
1426              debugstr_w(name), debugstr_w(info.wm->ldr.BaseDllName.Buffer) );
1427         /* wine_dll_unload( handle );*/
1428         return STATUS_INVALID_IMAGE_FORMAT;
1429     }
1430     *pwm = info.wm;
1431     return STATUS_SUCCESS;
1432 }
1433
1434
1435 /***********************************************************************
1436  *      find_dll_file
1437  *
1438  * Find the file (or already loaded module) for a given dll name.
1439  */
1440 static NTSTATUS find_dll_file( const WCHAR *load_path, const WCHAR *libname,
1441                                WCHAR *filename, ULONG *size, WINE_MODREF **pwm, HANDLE *handle )
1442 {
1443     OBJECT_ATTRIBUTES attr;
1444     IO_STATUS_BLOCK io;
1445     UNICODE_STRING nt_name;
1446     WCHAR *file_part, *ext, *dllname;
1447     ULONG len;
1448
1449     /* first append .dll if needed */
1450
1451     dllname = NULL;
1452     if (!(ext = strrchrW( libname, '.')) || strchrW( ext, '/' ) || strchrW( ext, '\\'))
1453     {
1454         if (!(dllname = RtlAllocateHeap( GetProcessHeap(), 0,
1455                                          (strlenW(libname) * sizeof(WCHAR)) + sizeof(dllW) )))
1456             return STATUS_NO_MEMORY;
1457         strcpyW( dllname, libname );
1458         strcatW( dllname, dllW );
1459         libname = dllname;
1460     }
1461
1462     nt_name.Buffer = NULL;
1463     if (RtlDetermineDosPathNameType_U( libname ) == RELATIVE_PATH)
1464     {
1465         /* we need to search for it */
1466         len = RtlDosSearchPath_U( load_path, libname, NULL, *size, filename, &file_part );
1467         if (len)
1468         {
1469             if (len >= *size) goto overflow;
1470             if ((*pwm = find_fullname_module( filename )) != NULL) goto found;
1471
1472             /* check for already loaded module in a different path */
1473             if (!contains_path( libname ))
1474             {
1475                 if ((*pwm = find_basename_module( file_part )) != NULL) goto found;
1476             }
1477             if (!RtlDosPathNameToNtPathName_U( filename, &nt_name, NULL, NULL ))
1478             {
1479                 RtlFreeHeap( GetProcessHeap(), 0, dllname );
1480                 return STATUS_NO_MEMORY;
1481             }
1482             attr.Length = sizeof(attr);
1483             attr.RootDirectory = 0;
1484             attr.Attributes = OBJ_CASE_INSENSITIVE;
1485             attr.ObjectName = &nt_name;
1486             attr.SecurityDescriptor = NULL;
1487             attr.SecurityQualityOfService = NULL;
1488             if (NtOpenFile( handle, GENERIC_READ, &attr, &io, FILE_SHARE_READ|FILE_SHARE_DELETE, 0 )) *handle = 0;
1489             goto found;
1490         }
1491
1492         /* not found */
1493
1494         if (!contains_path( libname ))
1495         {
1496             /* if libname doesn't contain a path at all, we simply return the name as is,
1497              * to be loaded as builtin */
1498             len = strlenW(libname) * sizeof(WCHAR);
1499             if (len >= *size) goto overflow;
1500             strcpyW( filename, libname );
1501             *pwm = find_basename_module( filename );
1502             goto found;
1503         }
1504     }
1505
1506     /* absolute path name, or relative path name but not found above */
1507
1508     if (!RtlDosPathNameToNtPathName_U( libname, &nt_name, &file_part, NULL ))
1509     {
1510         RtlFreeHeap( GetProcessHeap(), 0, dllname );
1511         return STATUS_NO_MEMORY;
1512     }
1513     len = nt_name.Length - 4*sizeof(WCHAR);  /* for \??\ prefix */
1514     if (len >= *size) goto overflow;
1515     memcpy( filename, nt_name.Buffer + 4, len + sizeof(WCHAR) );
1516     if (!(*pwm = find_fullname_module( filename )))
1517     {
1518         attr.Length = sizeof(attr);
1519         attr.RootDirectory = 0;
1520         attr.Attributes = OBJ_CASE_INSENSITIVE;
1521         attr.ObjectName = &nt_name;
1522         attr.SecurityDescriptor = NULL;
1523         attr.SecurityQualityOfService = NULL;
1524         if (NtOpenFile( handle, GENERIC_READ, &attr, &io, FILE_SHARE_READ|FILE_SHARE_DELETE, 0 )) *handle = 0;
1525     }
1526 found:
1527     RtlFreeUnicodeString( &nt_name );
1528     RtlFreeHeap( GetProcessHeap(), 0, dllname );
1529     return STATUS_SUCCESS;
1530
1531 overflow:
1532     RtlFreeUnicodeString( &nt_name );
1533     RtlFreeHeap( GetProcessHeap(), 0, dllname );
1534     *size = len + sizeof(WCHAR);
1535     return STATUS_BUFFER_TOO_SMALL;
1536 }
1537
1538
1539 /***********************************************************************
1540  *      load_dll  (internal)
1541  *
1542  * Load a PE style module according to the load order.
1543  * The loader_section must be locked while calling this function.
1544  */
1545 static NTSTATUS load_dll( LPCWSTR load_path, LPCWSTR libname, DWORD flags, WINE_MODREF** pwm )
1546 {
1547     int i;
1548     enum loadorder_type loadorder[LOADORDER_NTYPES];
1549     WCHAR buffer[32];
1550     WCHAR *filename;
1551     ULONG size;
1552     const char *filetype = "";
1553     WINE_MODREF *main_exe;
1554     HANDLE handle = 0;
1555     NTSTATUS nts;
1556
1557     TRACE( "looking for %s in %s\n", debugstr_w(libname), debugstr_w(load_path) );
1558
1559     filename = buffer;
1560     size = sizeof(buffer);
1561     for (;;)
1562     {
1563         nts = find_dll_file( load_path, libname, filename, &size, pwm, &handle );
1564         if (nts == STATUS_SUCCESS) break;
1565         if (filename != buffer) RtlFreeHeap( GetProcessHeap(), 0, filename );
1566         if (nts != STATUS_BUFFER_TOO_SMALL) return nts;
1567         /* grow the buffer and retry */
1568         if (!(filename = RtlAllocateHeap( GetProcessHeap(), 0, size ))) return STATUS_NO_MEMORY;
1569     }
1570
1571     if (*pwm)  /* found already loaded module */
1572     {
1573         if ((*pwm)->ldr.LoadCount != -1) (*pwm)->ldr.LoadCount++;
1574
1575         if (((*pwm)->ldr.Flags & LDR_DONT_RESOLVE_REFS) &&
1576             !(flags & DONT_RESOLVE_DLL_REFERENCES))
1577         {
1578             (*pwm)->ldr.Flags &= ~LDR_DONT_RESOLVE_REFS;
1579             fixup_imports( *pwm, load_path );
1580         }
1581         TRACE("Found loaded module %s for %s at %p, count=%d\n",
1582               debugstr_w((*pwm)->ldr.FullDllName.Buffer), debugstr_w(libname),
1583               (*pwm)->ldr.BaseAddress, (*pwm)->ldr.LoadCount);
1584         if (filename != buffer) RtlFreeHeap( GetProcessHeap(), 0, filename );
1585         return STATUS_SUCCESS;
1586     }
1587
1588     main_exe = get_modref( NtCurrentTeb()->Peb->ImageBaseAddress );
1589     MODULE_GetLoadOrderW( loadorder, main_exe ? main_exe->ldr.BaseDllName.Buffer : NULL, filename );
1590
1591     nts = STATUS_DLL_NOT_FOUND;
1592     for (i = 0; i < LOADORDER_NTYPES; i++)
1593     {
1594         if (loadorder[i] == LOADORDER_INVALID) break;
1595
1596         switch (loadorder[i])
1597         {
1598         case LOADORDER_DLL:
1599             TRACE("Trying native dll %s\n", debugstr_w(filename));
1600             if (!handle) continue;  /* it cannot possibly be loaded */
1601             nts = load_native_dll( load_path, filename, handle, flags, pwm );
1602             filetype = "native";
1603             break;
1604         case LOADORDER_BI:
1605             TRACE("Trying built-in %s\n", debugstr_w(filename));
1606             nts = load_builtin_dll( load_path, filename, flags, pwm );
1607             filetype = "builtin";
1608             break;
1609         default:
1610             nts = STATUS_INTERNAL_ERROR;
1611             break;
1612         }
1613
1614         if (nts == STATUS_SUCCESS)
1615         {
1616             /* Initialize DLL just loaded */
1617             TRACE("Loaded module %s (%s) at %p\n",
1618                   debugstr_w(filename), filetype, (*pwm)->ldr.BaseAddress);
1619             if (!TRACE_ON(module))
1620                 TRACE_(loaddll)("Loaded module %s : %s\n",
1621                                 debugstr_w((*pwm)->ldr.FullDllName.Buffer), filetype);
1622             /* Set the ldr.LoadCount here so that an attach failure will */
1623             /* decrement the dependencies through the MODULE_FreeLibrary call. */
1624             (*pwm)->ldr.LoadCount = 1;
1625             if (handle) NtClose( handle );
1626             if (filename != buffer) RtlFreeHeap( GetProcessHeap(), 0, filename );
1627             return nts;
1628         }
1629         if (nts != STATUS_DLL_NOT_FOUND) break;
1630     }
1631
1632     WARN("Failed to load module %s; status=%lx\n", debugstr_w(libname), nts);
1633     if (handle) NtClose( handle );
1634     if (filename != buffer) RtlFreeHeap( GetProcessHeap(), 0, filename );
1635     return nts;
1636 }
1637
1638 /******************************************************************
1639  *              LdrLoadDll (NTDLL.@)
1640  */
1641 NTSTATUS WINAPI LdrLoadDll(LPCWSTR path_name, DWORD flags,
1642                            const UNICODE_STRING *libname, HMODULE* hModule)
1643 {
1644     WINE_MODREF *wm;
1645     NTSTATUS nts;
1646
1647     RtlEnterCriticalSection( &loader_section );
1648
1649     if (!path_name) path_name = NtCurrentTeb()->Peb->ProcessParameters->DllPath.Buffer;
1650     nts = load_dll( path_name, libname->Buffer, flags, &wm );
1651
1652     if (nts == STATUS_SUCCESS && !(wm->ldr.Flags & LDR_DONT_RESOLVE_REFS))
1653     {
1654         nts = process_attach( wm, NULL );
1655         if (nts != STATUS_SUCCESS)
1656         {
1657             WARN("Attach failed for module %s\n", debugstr_w(libname->Buffer));
1658             LdrUnloadDll(wm->ldr.BaseAddress);
1659             wm = NULL;
1660         }
1661     }
1662     *hModule = (wm) ? wm->ldr.BaseAddress : NULL;
1663
1664     RtlLeaveCriticalSection( &loader_section );
1665     return nts;
1666 }
1667
1668 /******************************************************************
1669  *              LdrQueryProcessModuleInformation
1670  *
1671  */
1672 NTSTATUS WINAPI LdrQueryProcessModuleInformation(PSYSTEM_MODULE_INFORMATION smi, 
1673                                                  ULONG buf_size, ULONG* req_size)
1674 {
1675     SYSTEM_MODULE*      sm = &smi->Modules[0];
1676     ULONG               size = sizeof(ULONG);
1677     NTSTATUS            nts = STATUS_SUCCESS;
1678     ANSI_STRING         str;
1679     char*               ptr;
1680     PLIST_ENTRY         mark, entry;
1681     PLDR_MODULE         mod;
1682
1683     smi->ModulesCount = 0;
1684
1685     RtlEnterCriticalSection( &loader_section );
1686     mark = &NtCurrentTeb()->Peb->LdrData->InLoadOrderModuleList;
1687     for (entry = mark->Flink; entry != mark; entry = entry->Flink)
1688     {
1689         mod = CONTAINING_RECORD(entry, LDR_MODULE, InLoadOrderModuleList);
1690         size += sizeof(*sm);
1691         if (size <= buf_size)
1692         {
1693             sm->Reserved1 = 0; /* FIXME */
1694             sm->Reserved2 = 0; /* FIXME */
1695             sm->ImageBaseAddress = mod->BaseAddress;
1696             sm->ImageSize = mod->SizeOfImage;
1697             sm->Flags = mod->Flags;
1698             sm->Id = 0; /* FIXME */
1699             sm->Rank = 0; /* FIXME */
1700             sm->Unknown = 0; /* FIXME */
1701             str.Length = 0;
1702             str.MaximumLength = MAXIMUM_FILENAME_LENGTH;
1703             str.Buffer = sm->Name;
1704             RtlUnicodeStringToAnsiString(&str, &mod->FullDllName, FALSE);
1705             ptr = strrchr(sm->Name, '\\');
1706             sm->NameOffset = (ptr != NULL) ? (ptr - (char*)sm->Name + 1) : 0;
1707
1708             smi->ModulesCount++;
1709             sm++;
1710         }
1711         else nts = STATUS_INFO_LENGTH_MISMATCH;
1712     }
1713     RtlLeaveCriticalSection( &loader_section );
1714
1715     if (req_size) *req_size = size;
1716
1717     return nts;
1718 }
1719
1720 /******************************************************************
1721  *              LdrShutdownProcess (NTDLL.@)
1722  *
1723  */
1724 void WINAPI LdrShutdownProcess(void)
1725 {
1726     TRACE("()\n");
1727     process_detach( TRUE, (LPVOID)1 );
1728 }
1729
1730 /******************************************************************
1731  *              LdrShutdownThread (NTDLL.@)
1732  *
1733  */
1734 void WINAPI LdrShutdownThread(void)
1735 {
1736     PLIST_ENTRY mark, entry;
1737     PLDR_MODULE mod;
1738
1739     TRACE("()\n");
1740
1741     /* don't do any detach calls if process is exiting */
1742     if (process_detaching) return;
1743     /* FIXME: there is still a race here */
1744
1745     RtlEnterCriticalSection( &loader_section );
1746
1747     mark = &NtCurrentTeb()->Peb->LdrData->InInitializationOrderModuleList;
1748     for (entry = mark->Blink; entry != mark; entry = entry->Blink)
1749     {
1750         mod = CONTAINING_RECORD(entry, LDR_MODULE, 
1751                                 InInitializationOrderModuleList);
1752         if ( !(mod->Flags & LDR_PROCESS_ATTACHED) )
1753             continue;
1754         if ( mod->Flags & LDR_NO_DLL_CALLS )
1755             continue;
1756
1757         MODULE_InitDLL( CONTAINING_RECORD(mod, WINE_MODREF, ldr), 
1758                         DLL_THREAD_DETACH, NULL );
1759     }
1760
1761     RtlLeaveCriticalSection( &loader_section );
1762 }
1763
1764 /***********************************************************************
1765  *           MODULE_FlushModrefs
1766  *
1767  * Remove all unused modrefs and call the internal unloading routines
1768  * for the library type.
1769  *
1770  * The loader_section must be locked while calling this function.
1771  */
1772 static void MODULE_FlushModrefs(void)
1773 {
1774     PLIST_ENTRY mark, entry, prev;
1775     PLDR_MODULE mod;
1776     WINE_MODREF*wm;
1777
1778     mark = &NtCurrentTeb()->Peb->LdrData->InInitializationOrderModuleList;
1779     for (entry = mark->Blink; entry != mark; entry = prev)
1780     {
1781         mod = CONTAINING_RECORD(entry, LDR_MODULE, 
1782                                 InInitializationOrderModuleList);
1783         wm = CONTAINING_RECORD(mod, WINE_MODREF, ldr);
1784
1785         prev = entry->Blink;
1786         if (mod->LoadCount) continue;
1787
1788         RemoveEntryList(&mod->InLoadOrderModuleList);
1789         RemoveEntryList(&mod->InMemoryOrderModuleList);
1790         RemoveEntryList(&mod->InInitializationOrderModuleList);
1791
1792         TRACE(" unloading %s\n", debugstr_w(mod->FullDllName.Buffer));
1793         if (!TRACE_ON(module))
1794             TRACE_(loaddll)("Unloaded module %s : %s\n",
1795                             debugstr_w(mod->FullDllName.Buffer),
1796                             (wm->ldr.Flags & LDR_WINE_INTERNAL) ? "builtin" : "native" );
1797
1798         SERVER_START_REQ( unload_dll )
1799         {
1800             req->base = mod->BaseAddress;
1801             wine_server_call( req );
1802         }
1803         SERVER_END_REQ;
1804
1805         NtUnmapViewOfSection( NtCurrentProcess(), mod->BaseAddress );
1806         if (wm->ldr.Flags & LDR_WINE_INTERNAL) wine_dll_unload( wm->ldr.SectionHandle );
1807         if (cached_modref == wm) cached_modref = NULL;
1808         RtlFreeUnicodeString( &mod->FullDllName );
1809         RtlFreeHeap( GetProcessHeap(), 0, wm->deps );
1810         RtlFreeHeap( GetProcessHeap(), 0, wm );
1811     }
1812 }
1813
1814 /***********************************************************************
1815  *           MODULE_DecRefCount
1816  *
1817  * The loader_section must be locked while calling this function.
1818  */
1819 static void MODULE_DecRefCount( WINE_MODREF *wm )
1820 {
1821     int i;
1822
1823     if ( wm->ldr.Flags & LDR_UNLOAD_IN_PROGRESS )
1824         return;
1825
1826     if ( wm->ldr.LoadCount <= 0 )
1827         return;
1828
1829     --wm->ldr.LoadCount;
1830     TRACE("(%s) ldr.LoadCount: %d\n", debugstr_w(wm->ldr.BaseDllName.Buffer), wm->ldr.LoadCount );
1831
1832     if ( wm->ldr.LoadCount == 0 )
1833     {
1834         wm->ldr.Flags |= LDR_UNLOAD_IN_PROGRESS;
1835
1836         for ( i = 0; i < wm->nDeps; i++ )
1837             if ( wm->deps[i] )
1838                 MODULE_DecRefCount( wm->deps[i] );
1839
1840         wm->ldr.Flags &= ~LDR_UNLOAD_IN_PROGRESS;
1841     }
1842 }
1843
1844 /******************************************************************
1845  *              LdrUnloadDll (NTDLL.@)
1846  *
1847  *
1848  */
1849 NTSTATUS WINAPI LdrUnloadDll( HMODULE hModule )
1850 {
1851     NTSTATUS retv = STATUS_SUCCESS;
1852
1853     TRACE("(%p)\n", hModule);
1854
1855     RtlEnterCriticalSection( &loader_section );
1856
1857     /* if we're stopping the whole process (and forcing the removal of all
1858      * DLLs) the library will be freed anyway
1859      */
1860     if (!process_detaching)
1861     {
1862         WINE_MODREF *wm;
1863
1864         free_lib_count++;
1865         if ((wm = get_modref( hModule )) != NULL)
1866         {
1867             TRACE("(%s) - START\n", debugstr_w(wm->ldr.BaseDllName.Buffer));
1868
1869             /* Recursively decrement reference counts */
1870             MODULE_DecRefCount( wm );
1871
1872             /* Call process detach notifications */
1873             if ( free_lib_count <= 1 )
1874             {
1875                 process_detach( FALSE, NULL );
1876                 MODULE_FlushModrefs();
1877             }
1878
1879             TRACE("END\n");
1880         }
1881         else
1882             retv = STATUS_DLL_NOT_FOUND;
1883
1884         free_lib_count--;
1885     }
1886
1887     RtlLeaveCriticalSection( &loader_section );
1888
1889     return retv;
1890 }
1891
1892 /***********************************************************************
1893  *           RtlImageNtHeader   (NTDLL.@)
1894  */
1895 PIMAGE_NT_HEADERS WINAPI RtlImageNtHeader(HMODULE hModule)
1896 {
1897     IMAGE_NT_HEADERS *ret;
1898
1899     __TRY
1900     {
1901         IMAGE_DOS_HEADER *dos = (IMAGE_DOS_HEADER *)hModule;
1902
1903         ret = NULL;
1904         if (dos->e_magic == IMAGE_DOS_SIGNATURE)
1905         {
1906             ret = (IMAGE_NT_HEADERS *)((char *)dos + dos->e_lfanew);
1907             if (ret->Signature != IMAGE_NT_SIGNATURE) ret = NULL;
1908         }
1909     }
1910     __EXCEPT(page_fault)
1911     {
1912         return NULL;
1913     }
1914     __ENDTRY
1915     return ret;
1916 }
1917
1918
1919 /******************************************************************
1920  *              LdrInitializeThunk (NTDLL.@)
1921  *
1922  * FIXME: the arguments are not correct, main_file is a Wine invention.
1923  */
1924 void WINAPI LdrInitializeThunk( HANDLE main_file, ULONG unknown2, ULONG unknown3, ULONG unknown4 )
1925 {
1926     NTSTATUS status;
1927     WINE_MODREF *wm;
1928     LPCWSTR load_path;
1929     PEB *peb = NtCurrentTeb()->Peb;
1930     UNICODE_STRING *main_exe_name = &peb->ProcessParameters->ImagePathName;
1931     IMAGE_NT_HEADERS *nt = RtlImageNtHeader( peb->ImageBaseAddress );
1932
1933     /* allocate the modref for the main exe */
1934     if (!(wm = alloc_module( peb->ImageBaseAddress, main_exe_name->Buffer )))
1935     {
1936         status = STATUS_NO_MEMORY;
1937         goto error;
1938     }
1939     wm->ldr.LoadCount = -1;  /* can't unload main exe */
1940
1941     /* the main exe needs to be the first in the load order list */
1942     RemoveEntryList( &wm->ldr.InLoadOrderModuleList );
1943     InsertHeadList( &peb->LdrData->InLoadOrderModuleList, &wm->ldr.InLoadOrderModuleList );
1944
1945     /* Install signal handlers; this cannot be done before, since we cannot
1946      * send exceptions to the debugger before the create process event that
1947      * is sent by REQ_INIT_PROCESS_DONE.
1948      * We do need the handlers in place by the time the request is over, so
1949      * we set them up here. If we segfault between here and the server call
1950      * something is very wrong... */
1951     if (!SIGNAL_Init()) exit(1);
1952
1953     /* Signal the parent process to continue */
1954     SERVER_START_REQ( init_process_done )
1955     {
1956         req->module      = peb->ImageBaseAddress;
1957         req->module_size = wm->ldr.SizeOfImage;
1958         req->entry       = (char *)peb->ImageBaseAddress + nt->OptionalHeader.AddressOfEntryPoint;
1959         /* API requires a double indirection */
1960         req->name        = &main_exe_name->Buffer;
1961         req->exe_file    = main_file;
1962         req->gui         = (nt->OptionalHeader.Subsystem != IMAGE_SUBSYSTEM_WINDOWS_CUI);
1963         wine_server_add_data( req, main_exe_name->Buffer, main_exe_name->Length );
1964         wine_server_call( req );
1965     }
1966     SERVER_END_REQ;
1967
1968     if (main_file) NtClose( main_file ); /* we no longer need it */
1969
1970     if (TRACE_ON(relay) || TRACE_ON(snoop))
1971     {
1972         RELAY_InitDebugLists();
1973
1974         if (TRACE_ON(relay))  /* setup relay for already loaded dlls */
1975         {
1976             LIST_ENTRY *entry, *mark = &peb->LdrData->InLoadOrderModuleList;
1977             for (entry = mark->Flink; entry != mark; entry = entry->Flink)
1978             {
1979                 LDR_MODULE *mod = CONTAINING_RECORD(entry, LDR_MODULE, InLoadOrderModuleList);
1980                 if (mod->Flags & LDR_WINE_INTERNAL) RELAY_SetupDLL( mod->BaseAddress );
1981             }
1982         }
1983     }
1984
1985     RtlEnterCriticalSection( &loader_section );
1986
1987     load_path = NtCurrentTeb()->Peb->ProcessParameters->DllPath.Buffer;
1988     if ((status = fixup_imports( wm, load_path )) != STATUS_SUCCESS) goto error;
1989     if ((status = alloc_process_tls()) != STATUS_SUCCESS) goto error;
1990     if ((status = alloc_thread_tls()) != STATUS_SUCCESS) goto error;
1991     if ((status = process_attach( wm, (LPVOID)1 )) != STATUS_SUCCESS)
1992     {
1993         if (last_failed_modref)
1994             ERR( "%s failed to initialize, aborting\n", debugstr_w(last_failed_modref->ldr.BaseDllName.Buffer) + 1 );
1995         goto error;
1996     }
1997
1998     RtlLeaveCriticalSection( &loader_section );
1999
2000     if (nt->FileHeader.Characteristics & IMAGE_FILE_LARGE_ADDRESS_AWARE) VIRTUAL_UseLargeAddressSpace();
2001     return;
2002
2003 error:
2004     ERR( "Main exe initialization for %s failed, status %lx\n", debugstr_w(main_exe_name->Buffer), status );
2005     exit(1);
2006 }
2007
2008
2009 /***********************************************************************
2010  *           RtlImageDirectoryEntryToData   (NTDLL.@)
2011  */
2012 PVOID WINAPI RtlImageDirectoryEntryToData( HMODULE module, BOOL image, WORD dir, ULONG *size )
2013 {
2014     const IMAGE_NT_HEADERS *nt;
2015     DWORD addr;
2016
2017     if ((ULONG_PTR)module & 1)  /* mapped as data file */
2018     {
2019         module = (HMODULE)((ULONG_PTR)module & ~1);
2020         image = FALSE;
2021     }
2022     if (!(nt = RtlImageNtHeader( module ))) return NULL;
2023     if (dir >= nt->OptionalHeader.NumberOfRvaAndSizes) return NULL;
2024     if (!(addr = nt->OptionalHeader.DataDirectory[dir].VirtualAddress)) return NULL;
2025     *size = nt->OptionalHeader.DataDirectory[dir].Size;
2026     if (image || addr < nt->OptionalHeader.SizeOfHeaders) return (char *)module + addr;
2027
2028     /* not mapped as image, need to find the section containing the virtual address */
2029     return RtlImageRvaToVa( nt, module, addr, NULL );
2030 }
2031
2032
2033 /***********************************************************************
2034  *           RtlImageRvaToSection   (NTDLL.@)
2035  */
2036 PIMAGE_SECTION_HEADER WINAPI RtlImageRvaToSection( const IMAGE_NT_HEADERS *nt,
2037                                                    HMODULE module, DWORD rva )
2038 {
2039     int i;
2040     const IMAGE_SECTION_HEADER *sec;
2041
2042     sec = (const IMAGE_SECTION_HEADER*)((const char*)&nt->OptionalHeader +
2043                                         nt->FileHeader.SizeOfOptionalHeader);
2044     for (i = 0; i < nt->FileHeader.NumberOfSections; i++, sec++)
2045     {
2046         if ((sec->VirtualAddress <= rva) && (sec->VirtualAddress + sec->SizeOfRawData > rva))
2047             return (PIMAGE_SECTION_HEADER)sec;
2048     }
2049     return NULL;
2050 }
2051
2052
2053 /***********************************************************************
2054  *           RtlImageRvaToVa   (NTDLL.@)
2055  */
2056 PVOID WINAPI RtlImageRvaToVa( const IMAGE_NT_HEADERS *nt, HMODULE module,
2057                               DWORD rva, IMAGE_SECTION_HEADER **section )
2058 {
2059     IMAGE_SECTION_HEADER *sec;
2060
2061     if (section && *section)  /* try this section first */
2062     {
2063         sec = *section;
2064         if ((sec->VirtualAddress <= rva) && (sec->VirtualAddress + sec->SizeOfRawData > rva))
2065             goto found;
2066     }
2067     if (!(sec = RtlImageRvaToSection( nt, module, rva ))) return NULL;
2068  found:
2069     if (section) *section = sec;
2070     return (char *)module + sec->PointerToRawData + (rva - sec->VirtualAddress);
2071 }
2072
2073
2074 /***********************************************************************
2075  *           NtLoadDriver   (NTDLL.@)
2076  *           ZwLoadDriver   (NTDLL.@)
2077  */
2078 NTSTATUS WINAPI NtLoadDriver( const UNICODE_STRING *DriverServiceName )
2079 {
2080     FIXME("(%p), stub!\n",DriverServiceName);
2081     return STATUS_NOT_IMPLEMENTED;
2082 }
2083
2084
2085 /***********************************************************************
2086  *           NtUnloadDriver   (NTDLL.@)
2087  *           ZwUnloadDriver   (NTDLL.@)
2088  */
2089 NTSTATUS WINAPI NtUnloadDriver( const UNICODE_STRING *DriverServiceName )
2090 {
2091     FIXME("(%p), stub!\n",DriverServiceName);
2092     return STATUS_NOT_IMPLEMENTED;
2093 }
2094
2095
2096 /******************************************************************
2097  *              __wine_init_windows_dir   (NTDLL.@)
2098  *
2099  * Windows and system dir initialization once kernel32 has been loaded.
2100  */
2101 void __wine_init_windows_dir( const WCHAR *windir, const WCHAR *sysdir )
2102 {
2103     PLIST_ENTRY mark, entry;
2104     LPWSTR buffer, p;
2105
2106     RtlCreateUnicodeString( &system_dir, sysdir );
2107
2108     /* prepend the system dir to the name of the already created modules */
2109     mark = &NtCurrentTeb()->Peb->LdrData->InLoadOrderModuleList;
2110     for (entry = mark->Flink; entry != mark; entry = entry->Flink)
2111     {
2112         LDR_MODULE *mod = CONTAINING_RECORD( entry, LDR_MODULE, InLoadOrderModuleList );
2113
2114         assert( mod->Flags & LDR_WINE_INTERNAL );
2115
2116         buffer = RtlAllocateHeap( GetProcessHeap(), 0,
2117                                   system_dir.Length + mod->FullDllName.Length + 2*sizeof(WCHAR) );
2118         if (!buffer) continue;
2119         strcpyW( buffer, system_dir.Buffer );
2120         p = buffer + strlenW( buffer );
2121         if (p > buffer && p[-1] != '\\') *p++ = '\\';
2122         strcpyW( p, mod->FullDllName.Buffer );
2123         RtlInitUnicodeString( &mod->FullDllName, buffer );
2124         RtlInitUnicodeString( &mod->BaseDllName, p );
2125     }
2126 }
2127
2128
2129 /***********************************************************************
2130  *           __wine_process_init
2131  */
2132 void __wine_process_init( int argc, char *argv[] )
2133 {
2134     static const WCHAR kernel32W[] = {'k','e','r','n','e','l','3','2','.','d','l','l',0};
2135
2136     WINE_MODREF *wm;
2137     NTSTATUS status;
2138     ANSI_STRING func_name;
2139     void (* DECLSPEC_NORETURN init_func)();
2140     extern mode_t FILE_umask;
2141
2142     thread_init();
2143
2144     /* retrieve current umask */
2145     FILE_umask = umask(0777);
2146     umask( FILE_umask );
2147
2148     /* setup the load callback and create ntdll modref */
2149     wine_dll_set_callback( load_builtin_callback );
2150
2151     if ((status = load_builtin_dll( NULL, kernel32W, 0, &wm )) != STATUS_SUCCESS)
2152     {
2153         MESSAGE( "wine: could not load kernel32.dll, status %lx\n", status );
2154         exit(1);
2155     }
2156     RtlInitAnsiString( &func_name, "__wine_kernel_init" );
2157     if ((status = LdrGetProcedureAddress( wm->ldr.BaseAddress, &func_name,
2158                                           0, (void **)&init_func )) != STATUS_SUCCESS)
2159     {
2160         MESSAGE( "wine: could not find __wine_kernel_init in kernel32.dll, status %lx\n", status );
2161         exit(1);
2162     }
2163     init_func();
2164 }