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