4 * Copyright 1995 Alexandre Julliard
13 #include "wine/port.h"
14 #include "wine/winbase16.h"
15 #include "wine/library.h"
23 #include "builtin16.h"
24 #include "stackframe.h"
25 #include "debugtools.h"
26 #include "loadorder.h"
29 DEFAULT_DEBUG_CHANNEL(module
);
30 DECLARE_DEBUG_CHANNEL(loaddll
);
35 struct ne_segment_table_entry_s
37 WORD seg_data_offset
; /* Sector offset of segment data */
38 WORD seg_data_length
; /* Length of segment data */
39 WORD seg_flags
; /* Flags associated with this segment */
40 WORD min_alloc
; /* Minimum allocation size for this */
43 #define hFirstModule (pThhook->hExeHead)
45 static NE_MODULE
*pCachedModule
= 0; /* Module cached by NE_OpenFile */
47 static HINSTANCE16
NE_LoadModule( LPCSTR name
, BOOL lib_only
);
48 static BOOL16
NE_FreeModule( HMODULE16 hModule
, BOOL call_wep
);
49 static void NE_InitProcess(void) WINE_NORETURN
;
51 static HINSTANCE16
MODULE_LoadModule16( LPCSTR libname
, BOOL implicit
, BOOL lib_only
);
53 static HMODULE16
NE_GetModuleByFilename( LPCSTR name
);
55 /* ### start build ### */
56 extern WORD CALLBACK
NE_CallTo16_word_w(FARPROC16
,WORD
);
57 /* ### stop build ### */
59 /***********************************************************************
62 NE_MODULE
*NE_GetPtr( HMODULE16 hModule
)
64 return (NE_MODULE
*)GlobalLock16( GetExePtr(hModule
) );
68 /***********************************************************************
71 void NE_DumpModule( HMODULE16 hModule
)
81 if (!(pModule
= NE_GetPtr( hModule
)))
83 MESSAGE( "**** %04x is not a module handle\n", hModule
);
87 /* Dump the module info */
89 DPRINTF( "Module %04x:\n", hModule
);
90 DPRINTF( "count=%d flags=%04x heap=%d stack=%d\n",
91 pModule
->count
, pModule
->flags
,
92 pModule
->heap_size
, pModule
->stack_size
);
93 DPRINTF( "cs:ip=%04x:%04x ss:sp=%04x:%04x ds=%04x nb seg=%d modrefs=%d\n",
94 pModule
->cs
, pModule
->ip
, pModule
->ss
, pModule
->sp
, pModule
->dgroup
,
95 pModule
->seg_count
, pModule
->modref_count
);
96 DPRINTF( "os_flags=%d swap_area=%d version=%04x\n",
97 pModule
->os_flags
, pModule
->min_swap_area
,
98 pModule
->expected_version
);
99 if (pModule
->flags
& NE_FFLAGS_WIN32
)
100 DPRINTF( "PE module=%08x\n", pModule
->module32
);
102 /* Dump the file info */
104 DPRINTF( "Filename: '%s'\n", NE_MODULE_NAME(pModule
) );
106 /* Dump the segment table */
108 DPRINTF( "Segment table:\n" );
109 pSeg
= NE_SEG_TABLE( pModule
);
110 for (i
= 0; i
< pModule
->seg_count
; i
++, pSeg
++)
111 DPRINTF( "%02x: pos=%d size=%d flags=%04x minsize=%d hSeg=%04x\n",
112 i
+ 1, pSeg
->filepos
, pSeg
->size
, pSeg
->flags
,
113 pSeg
->minsize
, pSeg
->hSeg
);
115 /* Dump the resource table */
117 DPRINTF( "Resource table:\n" );
118 if (pModule
->res_table
)
120 pword
= (WORD
*)((BYTE
*)pModule
+ pModule
->res_table
);
121 DPRINTF( "Alignment: %d\n", *pword
++ );
124 NE_TYPEINFO
*ptr
= (NE_TYPEINFO
*)pword
;
125 NE_NAMEINFO
*pname
= (NE_NAMEINFO
*)(ptr
+ 1);
126 DPRINTF( "id=%04x count=%d\n", ptr
->type_id
, ptr
->count
);
127 for (i
= 0; i
< ptr
->count
; i
++, pname
++)
128 DPRINTF( "offset=%d len=%d id=%04x\n",
129 pname
->offset
, pname
->length
, pname
->id
);
130 pword
= (WORD
*)pname
;
133 else DPRINTF( "None\n" );
135 /* Dump the resident name table */
137 DPRINTF( "Resident-name table:\n" );
138 pstr
= (char *)pModule
+ pModule
->name_table
;
141 DPRINTF( "%*.*s: %d\n", *pstr
, *pstr
, pstr
+ 1,
142 *(WORD
*)(pstr
+ *pstr
+ 1) );
143 pstr
+= *pstr
+ 1 + sizeof(WORD
);
146 /* Dump the module reference table */
148 DPRINTF( "Module ref table:\n" );
149 if (pModule
->modref_table
)
151 pword
= (WORD
*)((BYTE
*)pModule
+ pModule
->modref_table
);
152 for (i
= 0; i
< pModule
->modref_count
; i
++, pword
++)
155 GetModuleName16( *pword
, name
, sizeof(name
) );
156 DPRINTF( "%d: %04x -> '%s'\n", i
, *pword
, name
);
159 else DPRINTF( "None\n" );
161 /* Dump the entry table */
163 DPRINTF( "Entry table:\n" );
164 bundle
= (ET_BUNDLE
*)((BYTE
*)pModule
+pModule
->entry_table
);
166 entry
= (ET_ENTRY
*)((BYTE
*)bundle
+6);
167 DPRINTF( "Bundle %d-%d: %02x\n", bundle
->first
, bundle
->last
, entry
->type
);
168 ordinal
= bundle
->first
;
169 while (ordinal
< bundle
->last
)
171 if (entry
->type
== 0xff)
172 DPRINTF("%d: %02x:%04x (moveable)\n", ordinal
++, entry
->segnum
, entry
->offs
);
174 DPRINTF("%d: %02x:%04x (fixed)\n", ordinal
++, entry
->segnum
, entry
->offs
);
177 } while ( (bundle
->next
)
178 && (bundle
= ((ET_BUNDLE
*)((BYTE
*)pModule
+ bundle
->next
))) );
180 /* Dump the non-resident names table */
182 DPRINTF( "Non-resident names table:\n" );
183 if (pModule
->nrname_handle
)
185 pstr
= (char *)GlobalLock16( pModule
->nrname_handle
);
188 DPRINTF( "%*.*s: %d\n", *pstr
, *pstr
, pstr
+ 1,
189 *(WORD
*)(pstr
+ *pstr
+ 1) );
190 pstr
+= *pstr
+ 1 + sizeof(WORD
);
197 /***********************************************************************
200 * Walk the module list and print the modules.
202 void NE_WalkModules(void)
204 HMODULE16 hModule
= hFirstModule
;
205 MESSAGE( "Module Flags Name\n" );
208 NE_MODULE
*pModule
= NE_GetPtr( hModule
);
211 MESSAGE( "Bad module %04x in list\n", hModule
);
214 MESSAGE( " %04x %04x %.*s\n", hModule
, pModule
->flags
,
215 *((char *)pModule
+ pModule
->name_table
),
216 (char *)pModule
+ pModule
->name_table
+ 1 );
217 hModule
= pModule
->next
;
222 /**********************************************************************
225 void NE_RegisterModule( NE_MODULE
*pModule
)
227 pModule
->next
= hFirstModule
;
228 hFirstModule
= pModule
->self
;
232 /***********************************************************************
235 * Lookup the ordinal for a given name.
237 WORD
NE_GetOrdinal( HMODULE16 hModule
, const char *name
)
239 unsigned char buffer
[256], *cpnt
;
243 if (!(pModule
= NE_GetPtr( hModule
))) return 0;
244 assert( !(pModule
->flags
& NE_FFLAGS_WIN32
) );
246 TRACE("(%04x,'%s')\n", hModule
, name
);
248 /* First handle names of the form '#xxxx' */
250 if (name
[0] == '#') return atoi( name
+ 1 );
252 /* Now copy and uppercase the string */
254 strcpy( buffer
, name
);
255 for (cpnt
= buffer
; *cpnt
; cpnt
++) *cpnt
= FILE_toupper(*cpnt
);
258 /* First search the resident names */
260 cpnt
= (char *)pModule
+ pModule
->name_table
;
262 /* Skip the first entry (module name) */
263 cpnt
+= *cpnt
+ 1 + sizeof(WORD
);
266 if (((BYTE
)*cpnt
== len
) && !memcmp( cpnt
+1, buffer
, len
))
268 WORD ordinal
= GET_UA_WORD( cpnt
+ *cpnt
+ 1 );
269 TRACE(" Found: ordinal=%d\n", ordinal
);
272 cpnt
+= *cpnt
+ 1 + sizeof(WORD
);
275 /* Now search the non-resident names table */
277 if (!pModule
->nrname_handle
) return 0; /* No non-resident table */
278 cpnt
= (char *)GlobalLock16( pModule
->nrname_handle
);
280 /* Skip the first entry (module description string) */
281 cpnt
+= *cpnt
+ 1 + sizeof(WORD
);
284 if (((BYTE
)*cpnt
== len
) && !memcmp( cpnt
+1, buffer
, len
))
286 WORD ordinal
= GET_UA_WORD( cpnt
+ *cpnt
+ 1 );
287 TRACE(" Found: ordinal=%d\n", ordinal
);
290 cpnt
+= *cpnt
+ 1 + sizeof(WORD
);
296 /***********************************************************************
297 * NE_GetEntryPoint / EntryAddrProc16 (KERNEL Wine-specific export)
299 * Return the entry point for a given ordinal.
301 FARPROC16 WINAPI
EntryAddrProc16( HMODULE16 hModule
, WORD ordinal
)
303 FARPROC16 ret
= NE_GetEntryPointEx( hModule
, ordinal
, TRUE
);
304 CURRENT_STACK16
->ecx
= hModule
; /* FIXME: might be incorrect value */
307 FARPROC16 WINAPI
NE_GetEntryPoint( HMODULE16 hModule
, WORD ordinal
)
309 return NE_GetEntryPointEx( hModule
, ordinal
, TRUE
);
311 FARPROC16
NE_GetEntryPointEx( HMODULE16 hModule
, WORD ordinal
, BOOL16 snoop
)
319 if (!(pModule
= NE_GetPtr( hModule
))) return 0;
320 assert( !(pModule
->flags
& NE_FFLAGS_WIN32
) );
322 bundle
= (ET_BUNDLE
*)((BYTE
*)pModule
+ pModule
->entry_table
);
323 while ((ordinal
< bundle
->first
+ 1) || (ordinal
> bundle
->last
))
327 bundle
= (ET_BUNDLE
*)((BYTE
*)pModule
+ bundle
->next
);
330 entry
= (ET_ENTRY
*)((BYTE
*)bundle
+6);
331 for (i
=0; i
< (ordinal
- bundle
->first
- 1); i
++)
335 offset
= GET_UA_WORD( &entry
->offs
);
337 if (sel
== 0xfe) sel
= 0xffff; /* constant entry */
338 else sel
= GlobalHandleToSel16(NE_SEG_TABLE(pModule
)[sel
-1].hSeg
);
340 return (FARPROC16
)MAKESEGPTR( sel
, offset
);
342 return (FARPROC16
)MAKESEGPTR( sel
, offset
);
344 return (FARPROC16
)SNOOP16_GetProcAddress16(hModule
,ordinal
,(FARPROC16
)MAKESEGPTR( sel
, offset
));
348 /***********************************************************************
351 * Change the value of an entry point. Use with caution!
352 * It can only change the offset value, not the selector.
354 BOOL16
NE_SetEntryPoint( HMODULE16 hModule
, WORD ordinal
, WORD offset
)
361 if (!(pModule
= NE_GetPtr( hModule
))) return FALSE
;
362 assert( !(pModule
->flags
& NE_FFLAGS_WIN32
) );
364 bundle
= (ET_BUNDLE
*)((BYTE
*)pModule
+ pModule
->entry_table
);
365 while ((ordinal
< bundle
->first
+ 1) || (ordinal
> bundle
->last
))
367 bundle
= (ET_BUNDLE
*)((BYTE
*)pModule
+ bundle
->next
);
372 entry
= (ET_ENTRY
*)((BYTE
*)bundle
+6);
373 for (i
=0; i
< (ordinal
- bundle
->first
- 1); i
++)
376 PUT_UA_WORD( &entry
->offs
, offset
);
381 /***********************************************************************
384 HANDLE
NE_OpenFile( NE_MODULE
*pModule
)
388 static HANDLE cachedfd
= INVALID_HANDLE_VALUE
;
390 TRACE("(%p) cache: mod=%p fd=%d\n",
391 pModule
, pCachedModule
, cachedfd
);
392 if (pCachedModule
== pModule
) return cachedfd
;
393 CloseHandle( cachedfd
);
394 pCachedModule
= pModule
;
395 name
= NE_MODULE_NAME( pModule
);
396 if ((cachedfd
= CreateFileA( name
, GENERIC_READ
, FILE_SHARE_READ
,
397 NULL
, OPEN_EXISTING
, 0, 0 )) == INVALID_HANDLE_VALUE
)
398 MESSAGE( "Can't open file '%s' for module %04x\n", name
, pModule
->self
);
399 TRACE("opened '%s' -> %d\n",
405 /***********************************************************************
408 static HMODULE16
NE_LoadExeHeader( HANDLE hFile
, LPCSTR path
)
410 IMAGE_DOS_HEADER mz_header
;
411 IMAGE_OS2_HEADER ne_header
;
415 BYTE
*pData
, *pTempEntryTable
;
416 char *buffer
, *fastload
= NULL
;
417 int fastload_offset
= 0, fastload_length
= 0;
419 ET_BUNDLE
*bundle
, *oldbundle
;
422 /* Read a block from either the file or the fast-load area. */
423 #define READ(offset,size,buffer) \
424 ((fastload && ((offset) >= fastload_offset) && \
425 ((offset)+(size) <= fastload_offset+fastload_length)) ? \
426 (memcpy( buffer, fastload+(offset)-fastload_offset, (size) ), TRUE) : \
427 (_llseek( hFile, (offset), SEEK_SET), \
428 _lread( hFile, (buffer), (size) ) == (size)))
430 _llseek( hFile
, 0, SEEK_SET
);
431 if ((_lread(hFile
,&mz_header
,sizeof(mz_header
)) != sizeof(mz_header
)) ||
432 (mz_header
.e_magic
!= IMAGE_DOS_SIGNATURE
))
433 return (HMODULE16
)11; /* invalid exe */
435 _llseek( hFile
, mz_header
.e_lfanew
, SEEK_SET
);
436 if (_lread( hFile
, &ne_header
, sizeof(ne_header
) ) != sizeof(ne_header
))
437 return (HMODULE16
)11; /* invalid exe */
439 if (ne_header
.ne_magic
== IMAGE_NT_SIGNATURE
) return (HMODULE16
)21; /* win32 exe */
440 if (ne_header
.ne_magic
== IMAGE_OS2_SIGNATURE_LX
) {
441 MESSAGE("Sorry, this is an OS/2 linear executable (LX) file !\n");
442 return (HMODULE16
)12;
444 if (ne_header
.ne_magic
!= IMAGE_OS2_SIGNATURE
) return (HMODULE16
)11; /* invalid exe */
446 /* We now have a valid NE header */
448 size
= sizeof(NE_MODULE
) +
450 ne_header
.ne_cseg
* sizeof(SEGTABLEENTRY
) +
452 ne_header
.ne_restab
- ne_header
.ne_rsrctab
+
453 /* resident names table */
454 ne_header
.ne_modtab
- ne_header
.ne_restab
+
455 /* module ref table */
456 ne_header
.ne_cmod
* sizeof(WORD
) +
457 /* imported names table */
458 ne_header
.ne_enttab
- ne_header
.ne_imptab
+
459 /* entry table length */
460 ne_header
.ne_cbenttab
+
461 /* entry table extra conversion space */
463 2 * (ne_header
.ne_cbenttab
- ne_header
.ne_cmovent
*6) +
464 /* loaded file info */
465 sizeof(OFSTRUCT
) - sizeof(ofs
->szPathName
) + strlen(path
) + 1;
467 hModule
= GlobalAlloc16( GMEM_FIXED
| GMEM_ZEROINIT
, size
);
468 if (!hModule
) return (HMODULE16
)11; /* invalid exe */
470 FarSetOwner16( hModule
, hModule
);
471 pModule
= (NE_MODULE
*)GlobalLock16( hModule
);
472 memcpy( pModule
, &ne_header
, sizeof(ne_header
) );
474 /* check *programs* for default minimal stack size */
475 if ( (!(pModule
->flags
& NE_FFLAGS_LIBMODULE
))
476 && (pModule
->stack_size
< 0x1400) )
477 pModule
->stack_size
= 0x1400;
478 pModule
->module32
= 0;
479 pModule
->self
= hModule
;
480 pModule
->self_loading_sel
= 0;
481 pData
= (BYTE
*)(pModule
+ 1);
483 /* Clear internal Wine flags in case they are set in the EXE file */
485 pModule
->flags
&= ~(NE_FFLAGS_BUILTIN
| NE_FFLAGS_WIN32
);
487 /* Read the fast-load area */
489 if (ne_header
.ne_flagsothers
& NE_AFLAGS_FASTLOAD
)
491 fastload_offset
=ne_header
.fastload_offset
<< ne_header
.ne_align
;
492 fastload_length
=ne_header
.fastload_length
<< ne_header
.ne_align
;
493 TRACE("Using fast-load area offset=%x len=%d\n",
494 fastload_offset
, fastload_length
);
495 if ((fastload
= HeapAlloc( GetProcessHeap(), 0, fastload_length
)) != NULL
)
497 _llseek( hFile
, fastload_offset
, SEEK_SET
);
498 if (_lread(hFile
, fastload
, fastload_length
) != fastload_length
)
500 HeapFree( GetProcessHeap(), 0, fastload
);
501 WARN("Error reading fast-load area!\n");
507 /* Get the segment table */
509 pModule
->seg_table
= pData
- (BYTE
*)pModule
;
510 buffer
= HeapAlloc( GetProcessHeap(), 0, ne_header
.ne_cseg
*
511 sizeof(struct ne_segment_table_entry_s
));
515 struct ne_segment_table_entry_s
*pSeg
;
517 if (!READ( mz_header
.e_lfanew
+ ne_header
.ne_segtab
,
518 ne_header
.ne_cseg
* sizeof(struct ne_segment_table_entry_s
),
521 HeapFree( GetProcessHeap(), 0, buffer
);
523 HeapFree( GetProcessHeap(), 0, fastload
);
524 GlobalFree16( hModule
);
525 return (HMODULE16
)11; /* invalid exe */
527 pSeg
= (struct ne_segment_table_entry_s
*)buffer
;
528 for (i
= ne_header
.ne_cseg
; i
> 0; i
--, pSeg
++)
530 memcpy( pData
, pSeg
, sizeof(*pSeg
) );
531 pData
+= sizeof(SEGTABLEENTRY
);
533 HeapFree( GetProcessHeap(), 0, buffer
);
538 HeapFree( GetProcessHeap(), 0, fastload
);
539 GlobalFree16( hModule
);
540 return (HMODULE16
)11; /* invalid exe */
543 /* Get the resource table */
545 if (ne_header
.ne_rsrctab
< ne_header
.ne_restab
)
547 pModule
->res_table
= pData
- (BYTE
*)pModule
;
548 if (!READ(mz_header
.e_lfanew
+ ne_header
.ne_rsrctab
,
549 ne_header
.ne_restab
- ne_header
.ne_rsrctab
,
551 return (HMODULE16
)11; /* invalid exe */
552 pData
+= ne_header
.ne_restab
- ne_header
.ne_rsrctab
;
553 NE_InitResourceHandler( hModule
);
555 else pModule
->res_table
= 0; /* No resource table */
557 /* Get the resident names table */
559 pModule
->name_table
= pData
- (BYTE
*)pModule
;
560 if (!READ( mz_header
.e_lfanew
+ ne_header
.ne_restab
,
561 ne_header
.ne_modtab
- ne_header
.ne_restab
,
565 HeapFree( GetProcessHeap(), 0, fastload
);
566 GlobalFree16( hModule
);
567 return (HMODULE16
)11; /* invalid exe */
569 pData
+= ne_header
.ne_modtab
- ne_header
.ne_restab
;
571 /* Get the module references table */
573 if (ne_header
.ne_cmod
> 0)
575 pModule
->modref_table
= pData
- (BYTE
*)pModule
;
576 if (!READ( mz_header
.e_lfanew
+ ne_header
.ne_modtab
,
577 ne_header
.ne_cmod
* sizeof(WORD
),
581 HeapFree( GetProcessHeap(), 0, fastload
);
582 GlobalFree16( hModule
);
583 return (HMODULE16
)11; /* invalid exe */
585 pData
+= ne_header
.ne_cmod
* sizeof(WORD
);
587 else pModule
->modref_table
= 0; /* No module references */
589 /* Get the imported names table */
591 pModule
->import_table
= pData
- (BYTE
*)pModule
;
592 if (!READ( mz_header
.e_lfanew
+ ne_header
.ne_imptab
,
593 ne_header
.ne_enttab
- ne_header
.ne_imptab
,
597 HeapFree( GetProcessHeap(), 0, fastload
);
598 GlobalFree16( hModule
);
599 return (HMODULE16
)11; /* invalid exe */
601 pData
+= ne_header
.ne_enttab
- ne_header
.ne_imptab
;
603 /* Load entry table, convert it to the optimized version used by Windows */
605 if ((pTempEntryTable
= HeapAlloc( GetProcessHeap(), 0, ne_header
.ne_cbenttab
)) != NULL
)
607 BYTE nr_entries
, type
, *s
;
609 TRACE("Converting entry table.\n");
610 pModule
->entry_table
= pData
- (BYTE
*)pModule
;
611 if (!READ( mz_header
.e_lfanew
+ ne_header
.ne_enttab
,
612 ne_header
.ne_cbenttab
, pTempEntryTable
))
614 HeapFree( GetProcessHeap(), 0, pTempEntryTable
);
616 HeapFree( GetProcessHeap(), 0, fastload
);
617 GlobalFree16( hModule
);
618 return (HMODULE16
)11; /* invalid exe */
622 TRACE("entry table: offs %04x, len %04x, entries %d\n", ne_header
.ne_enttab
, ne_header
.ne_cbenttab
, *s
);
624 bundle
= (ET_BUNDLE
*)pData
;
625 TRACE("first bundle: %p\n", bundle
);
626 memset(bundle
, 0, sizeof(ET_BUNDLE
)); /* in case no entry table exists */
627 entry
= (ET_ENTRY
*)((BYTE
*)bundle
+6);
629 while ((nr_entries
= *s
++))
633 bundle
->last
+= nr_entries
;
640 entry
->segnum
= *s
++;
641 entry
->offs
= *(WORD
*)s
; s
+= 2;
642 /*TRACE(module, "entry: %p, type: %d, flags: %d, segnum: %d, offs: %04x\n", entry, entry->type, entry->flags, entry->segnum, entry->offs);*/
650 entry
->segnum
= type
;
651 entry
->offs
= *(WORD
*)s
; s
+= 2;
652 /*TRACE(module, "entry: %p, type: %d, flags: %d, segnum: %d, offs: %04x\n", entry, entry->type, entry->flags, entry->segnum, entry->offs);*/
658 if (bundle
->first
== bundle
->last
)
660 bundle
->first
+= nr_entries
;
661 bundle
->last
+= nr_entries
;
666 oldbundle
->next
= ((int)entry
- (int)pModule
);
667 bundle
= (ET_BUNDLE
*)entry
;
668 TRACE("new bundle: %p\n", bundle
);
669 bundle
->first
= bundle
->last
=
670 oldbundle
->last
+ nr_entries
;
672 (BYTE
*)entry
+= sizeof(ET_BUNDLE
);
676 HeapFree( GetProcessHeap(), 0, pTempEntryTable
);
681 HeapFree( GetProcessHeap(), 0, fastload
);
682 GlobalFree16( hModule
);
683 return (HMODULE16
)11; /* invalid exe */
686 pData
+= ne_header
.ne_cbenttab
+ sizeof(ET_BUNDLE
) +
687 2 * (ne_header
.ne_cbenttab
- ne_header
.ne_cmovent
*6);
689 if ((DWORD
)entry
> (DWORD
)pData
)
690 ERR("converted entry table bigger than reserved space !!!\nentry: %p, pData: %p. Please report !\n", entry
, pData
);
692 /* Store the filename information */
694 pModule
->fileinfo
= pData
- (BYTE
*)pModule
;
695 size
= sizeof(OFSTRUCT
) - sizeof(ofs
->szPathName
) + strlen(path
) + 1;
696 ofs
= (OFSTRUCT
*)pData
;
697 ofs
->cBytes
= size
- 1;
699 strcpy( ofs
->szPathName
, path
);
702 /* Free the fast-load area */
706 HeapFree( GetProcessHeap(), 0, fastload
);
708 /* Get the non-resident names table */
710 if (ne_header
.ne_cbnrestab
)
712 pModule
->nrname_handle
= GlobalAlloc16( 0, ne_header
.ne_cbnrestab
);
713 if (!pModule
->nrname_handle
)
715 GlobalFree16( hModule
);
716 return (HMODULE16
)11; /* invalid exe */
718 FarSetOwner16( pModule
->nrname_handle
, hModule
);
719 buffer
= GlobalLock16( pModule
->nrname_handle
);
720 _llseek( hFile
, ne_header
.ne_nrestab
, SEEK_SET
);
721 if (_lread( hFile
, buffer
, ne_header
.ne_cbnrestab
)
722 != ne_header
.ne_cbnrestab
)
724 GlobalFree16( pModule
->nrname_handle
);
725 GlobalFree16( hModule
);
726 return (HMODULE16
)11; /* invalid exe */
729 else pModule
->nrname_handle
= 0;
731 /* Allocate a segment for the implicitly-loaded DLLs */
733 if (pModule
->modref_count
)
735 pModule
->dlls_to_init
= GlobalAlloc16( GMEM_ZEROINIT
,
736 (pModule
->modref_count
+1)*sizeof(HMODULE16
) );
737 if (!pModule
->dlls_to_init
)
739 if (pModule
->nrname_handle
) GlobalFree16( pModule
->nrname_handle
);
740 GlobalFree16( hModule
);
741 return (HMODULE16
)11; /* invalid exe */
743 FarSetOwner16( pModule
->dlls_to_init
, hModule
);
745 else pModule
->dlls_to_init
= 0;
747 NE_RegisterModule( pModule
);
748 SNOOP16_RegisterDLL(pModule
,path
);
753 /***********************************************************************
756 * Load all DLLs implicitly linked to a module.
758 static BOOL
NE_LoadDLLs( NE_MODULE
*pModule
)
761 WORD
*pModRef
= (WORD
*)((char *)pModule
+ pModule
->modref_table
);
762 WORD
*pDLLs
= (WORD
*)GlobalLock16( pModule
->dlls_to_init
);
764 for (i
= 0; i
< pModule
->modref_count
; i
++, pModRef
++)
766 char buffer
[260], *p
;
767 BYTE
*pstr
= (BYTE
*)pModule
+ pModule
->import_table
+ *pModRef
;
768 memcpy( buffer
, pstr
+ 1, *pstr
);
769 *(buffer
+ *pstr
) = 0; /* terminate it */
771 TRACE("Loading '%s'\n", buffer
);
772 if (!(*pModRef
= GetModuleHandle16( buffer
)))
774 /* If the DLL is not loaded yet, load it and store */
775 /* its handle in the list of DLLs to initialize. */
778 /* Append .DLL to name if no extension present */
779 if (!(p
= strrchr( buffer
, '.')) || strchr( p
, '/' ) || strchr( p
, '\\'))
780 strcat( buffer
, ".DLL" );
782 if ((hDLL
= MODULE_LoadModule16( buffer
, TRUE
, TRUE
)) < 32)
784 /* FIXME: cleanup what was done */
786 MESSAGE( "Could not load '%s' required by '%.*s', error=%d\n",
787 buffer
, *((BYTE
*)pModule
+ pModule
->name_table
),
788 (char *)pModule
+ pModule
->name_table
+ 1, hDLL
);
791 *pModRef
= GetExePtr( hDLL
);
794 else /* Increment the reference count of the DLL */
798 pOldDLL
= NE_GetPtr( *pModRef
);
799 if (pOldDLL
) pOldDLL
->count
++;
806 /**********************************************************************
809 * Load first instance of NE module from file.
811 * pModule must point to a module structure prepared by NE_LoadExeHeader.
812 * This routine must never be called twice on a module.
815 static HINSTANCE16
NE_DoLoadModule( NE_MODULE
*pModule
)
817 /* Allocate the segments for this module */
819 if (!NE_CreateAllSegments( pModule
))
820 return ERROR_NOT_ENOUGH_MEMORY
; /* 8 */
822 /* Load the referenced DLLs */
824 if (!NE_LoadDLLs( pModule
))
825 return ERROR_FILE_NOT_FOUND
; /* 2 */
827 /* Load the segments */
829 NE_LoadAllSegments( pModule
);
831 /* Make sure the usage count is 1 on the first loading of */
832 /* the module, even if it contains circular DLL references */
836 return NE_GetInstance( pModule
);
839 /**********************************************************************
842 * Load first instance of NE module. (Note: caller is responsible for
843 * ensuring the module isn't already loaded!)
845 * If the module turns out to be an executable module, only a
846 * handle to a module stub is returned; this needs to be initialized
847 * by calling NE_DoLoadModule later, in the context of the newly
850 * If lib_only is TRUE, however, the module is perforce treated
851 * like a DLL module, even if it is an executable module.
854 static HINSTANCE16
NE_LoadModule( LPCSTR name
, BOOL lib_only
)
858 HINSTANCE16 hInstance
;
863 if ((hFile
= OpenFile16( name
, &ofs
, OF_READ
)) == HFILE_ERROR16
)
864 return (HMODULE16
)2; /* File not found */
866 hModule
= NE_LoadExeHeader( DosFileHandleToWin32Handle(hFile
), ofs
.szPathName
);
868 if (hModule
< 32) return hModule
;
870 pModule
= NE_GetPtr( hModule
);
871 if ( !pModule
) return hModule
;
873 if ( !lib_only
&& !( pModule
->flags
& NE_FFLAGS_LIBMODULE
) )
876 hInstance
= NE_DoLoadModule( pModule
);
877 if ( hInstance
< 32 )
880 NE_FreeModule( hModule
, 0 );
887 /**********************************************************************
888 * MODULE_LoadModule16
890 * Load a NE module in the order of the loadorder specification.
891 * The caller is responsible that the module is not loaded already.
894 static HINSTANCE16
MODULE_LoadModule16( LPCSTR libname
, BOOL implicit
, BOOL lib_only
)
898 module_loadorder_t
*plo
;
899 const char *filetype
= "";
901 plo
= MODULE_GetLoadOrder(libname
, FALSE
);
903 for(i
= 0; i
< MODULE_LOADORDER_NTYPES
; i
++)
905 switch(plo
->loadorder
[i
])
907 case MODULE_LOADORDER_DLL
:
908 TRACE("Trying native dll '%s'\n", libname
);
909 hinst
= NE_LoadModule(libname
, lib_only
);
913 case MODULE_LOADORDER_BI
:
914 TRACE("Trying built-in '%s'\n", libname
);
915 hinst
= BUILTIN_LoadModule(libname
);
916 filetype
= "builtin";
920 ERR("Got invalid loadorder type %d (%s index %d)\n", plo
->loadorder
[i
], plo
->modulename
, i
);
923 case MODULE_LOADORDER_SO
: /* This is not supported for NE modules */
924 case MODULE_LOADORDER_INVALID
: /* We ignore this as it is an empty entry */
936 hModule
= GetModuleHandle16(libname
);
939 ERR("Serious trouble. Just loaded module '%s' (hinst=0x%04x), but can't get module handle. Filename too long ?\n",
941 return 6; /* ERROR_INVALID_HANDLE seems most appropriate */
944 pModule
= NE_GetPtr(hModule
);
947 ERR("Serious trouble. Just loaded module '%s' (hinst=0x%04x), but can't get NE_MODULE pointer\n",
949 return 6; /* ERROR_INVALID_HANDLE seems most appropriate */
952 TRACE("Loaded module '%s' at 0x%04x.\n", libname
, hinst
);
953 if (!TRACE_ON(module
))
954 TRACE_(loaddll
)("Loaded module '%s' : %s\n", libname
, filetype
);
957 * Call initialization routines for all loaded DLLs. Note that
958 * when we load implicitly linked DLLs this will be done by InitTask().
960 if(pModule
->flags
& NE_FFLAGS_LIBMODULE
)
962 NE_InitializeDLLs(hModule
);
963 NE_DllProcessAttach(hModule
);
971 /* We quit searching when we get another error than 'File not found' */
975 return hinst
; /* The last error that occured */
979 /**********************************************************************
982 * Create the thread for a 16-bit module.
984 static HINSTANCE16
NE_CreateThread( NE_MODULE
*pModule
, WORD cmdShow
, LPCSTR cmdline
)
991 HINSTANCE16 instance
= 0;
995 struct new_thread_request
*req
= server_alloc_req( sizeof(*req
), 0 );
998 if (!server_call( REQ_NEW_THREAD
))
1000 hThread
= req
->handle
;
1001 socket
= wine_server_recv_fd( hThread
, 0 );
1005 if (!hThread
) return 0;
1007 if (!(teb
= THREAD_Create( socket
, 0, FALSE
))) goto error
;
1008 teb
->tibflags
&= ~TEBF_WIN32
;
1009 teb
->startup
= NE_InitProcess
;
1011 /* Create a task for this process */
1013 if (!TASK_Create( pModule
, cmdShow
, teb
, cmdline
+ 1, *cmdline
)) goto error
;
1014 hTask
= teb
->htask16
;
1015 if (SYSDEPS_SpawnThread( teb
) == -1) goto error
;
1017 /* Post event to start the task */
1018 PostEvent16( hTask
);
1020 /* Wait until we get the instance handle */
1023 DirectedYield16( hTask
);
1024 if (!IsTask16( hTask
)) /* thread has died */
1027 WaitForSingleObject( hThread
, INFINITE
);
1028 GetExitCodeThread( hThread
, &exit_code
);
1029 CloseHandle( hThread
);
1032 if (!(pTask
= (TDB
*)GlobalLock16( hTask
))) break;
1033 instance
= pTask
->hInstance
;
1034 GlobalUnlock16( hTask
);
1035 } while (!instance
);
1040 /* FIXME: free TEB and task */
1042 CloseHandle( hThread
);
1043 return 0; /* FIXME */
1047 /**********************************************************************
1048 * LoadModule16 (KERNEL.45)
1050 HINSTANCE16 WINAPI
LoadModule16( LPCSTR name
, LPVOID paramBlock
)
1052 BOOL lib_only
= !paramBlock
|| (paramBlock
== (LPVOID
)-1);
1053 LOADPARAMS16
*params
;
1061 if ( (hModule
= NE_GetModuleByFilename(name
) ) != 0 )
1063 /* Special case: second instance of an already loaded NE module */
1065 if ( !( pModule
= NE_GetPtr( hModule
) ) ) return (HINSTANCE16
)11;
1066 if ( pModule
->module32
) return (HINSTANCE16
)21;
1068 /* Increment refcount */
1074 /* Main case: load first instance of NE module */
1076 if ( (hModule
= MODULE_LoadModule16( name
, FALSE
, lib_only
)) < 32 )
1079 if ( !(pModule
= NE_GetPtr( hModule
)) )
1080 return (HINSTANCE16
)11;
1083 /* If library module, we just retrieve the instance handle */
1085 if ( ( pModule
->flags
& NE_FFLAGS_LIBMODULE
) || lib_only
)
1086 return NE_GetInstance( pModule
);
1089 * At this point, we need to create a new process.
1091 * pModule points either to an already loaded module, whose refcount
1092 * has already been incremented (to avoid having the module vanish
1093 * in the meantime), or else to a stub module which contains only header
1096 params
= (LOADPARAMS16
*)paramBlock
;
1097 cmdShow
= ((WORD
*)MapSL(params
->showCmd
))[1];
1098 cmdline
= MapSL( params
->cmdLine
);
1099 return NE_CreateThread( pModule
, cmdShow
, cmdline
);
1103 /**********************************************************************
1106 * Start the main NE task.
1108 HINSTANCE16
NE_StartMain( LPCSTR name
, HANDLE file
)
1114 LPSTR pCmdLine
, cmdline
= GetCommandLineA();
1116 if ((hModule
= NE_LoadExeHeader( file
, name
)) < 32) return hModule
;
1118 if (!(pModule
= NE_GetPtr( hModule
))) return (HINSTANCE16
)11;
1119 if (pModule
->flags
& NE_FFLAGS_LIBMODULE
)
1121 MESSAGE( "%s is not a valid Win16 executable\n", name
);
1122 ExitProcess( ERROR_BAD_EXE_FORMAT
);
1125 while (*cmdline
&& *cmdline
!= ' ') cmdline
++;
1126 if (*cmdline
) cmdline
++;
1127 len
= strlen(cmdline
);
1128 pCmdLine
= HeapAlloc(GetProcessHeap(), 0, len
+2);
1131 strcpy(pCmdLine
+1, cmdline
);
1134 GetStartupInfoA( &info
);
1135 if (!(info
.dwFlags
& STARTF_USESHOWWINDOW
)) info
.wShowWindow
= 1;
1137 return NE_CreateThread( pModule
, info
.wShowWindow
, pCmdLine
);
1141 /**********************************************************************
1144 static void NE_InitProcess(void)
1146 TDB
*pTask
= (TDB
*)GlobalLock16( GetCurrentTask() );
1147 NE_MODULE
*pModule
= NE_GetPtr( pTask
->hModule
);
1148 HINSTANCE16 hInstance
, hPrevInstance
;
1149 SEGTABLEENTRY
*pSegTable
= NE_SEG_TABLE( pModule
);
1154 if ( pModule
->count
> 0 )
1156 /* Second instance of an already loaded NE module */
1157 /* Note that the refcount was already incremented by the parent */
1159 hPrevInstance
= NE_GetInstance( pModule
);
1161 if ( pModule
->dgroup
)
1162 if ( NE_CreateSegment( pModule
, pModule
->dgroup
) )
1163 NE_LoadSegment( pModule
, pModule
->dgroup
);
1165 hInstance
= NE_GetInstance( pModule
);
1166 TRACE("created second instance %04x[%d] of instance %04x.\n", hInstance
, pModule
->dgroup
, hPrevInstance
);
1171 /* Load first instance of NE module */
1173 pModule
->flags
|= NE_FFLAGS_GUI
; /* FIXME: is this necessary? */
1175 hInstance
= NE_DoLoadModule( pModule
);
1179 if ( hInstance
>= 32 )
1183 /* Enter instance handles into task struct */
1185 pTask
->hInstance
= hInstance
;
1186 pTask
->hPrevInstance
= hPrevInstance
;
1188 /* Use DGROUP for 16-bit stack */
1190 if (!(sp
= pModule
->sp
))
1191 sp
= pSegTable
[pModule
->ss
-1].minsize
+ pModule
->stack_size
;
1193 sp
-= sizeof(STACK16FRAME
);
1194 pTask
->teb
->cur_stack
= MAKESEGPTR( GlobalHandleToSel16(hInstance
), sp
);
1196 /* Registers at initialization must be:
1198 * bx stack size in bytes
1199 * cx heap size in bytes
1200 * si previous app instance
1201 * di current app instance
1203 * es selector to the PSP
1204 * ds dgroup of the application
1206 * sp top of the stack
1208 memset( &context
, 0, sizeof(context
) );
1209 context
.SegCs
= GlobalHandleToSel16(pSegTable
[pModule
->cs
- 1].hSeg
);
1210 context
.SegDs
= GlobalHandleToSel16(pTask
->hInstance
);
1211 context
.SegEs
= pTask
->hPDB
;
1212 context
.Eip
= pModule
->ip
;
1213 context
.Ebx
= pModule
->stack_size
;
1214 context
.Ecx
= pModule
->heap_size
;
1215 context
.Edi
= pTask
->hInstance
;
1216 context
.Esi
= pTask
->hPrevInstance
;
1218 /* Now call 16-bit entry point */
1220 TRACE("Starting main program: cs:ip=%04lx:%04lx ds=%04lx ss:sp=%04x:%04x\n",
1221 context
.SegCs
, context
.Eip
, context
.SegDs
,
1222 SELECTOROF(pTask
->teb
->cur_stack
),
1223 OFFSETOF(pTask
->teb
->cur_stack
) );
1225 wine_call_to_16_regs_short( &context
, 0 );
1226 ExitThread( LOWORD(context
.Eax
) );
1230 ExitThread( hInstance
);
1233 /***********************************************************************
1234 * LoadLibrary16 (KERNEL.95)
1236 HINSTANCE16 WINAPI
LoadLibrary16( LPCSTR libname
)
1238 return LoadModule16(libname
, (LPVOID
)-1 );
1242 /**********************************************************************
1245 * Call a DLL's WEP, allowing it to shut down.
1246 * FIXME: we always pass the WEP WEP_FREE_DLL, never WEP_SYSTEM_EXIT
1248 static BOOL16
MODULE_CallWEP( HMODULE16 hModule
)
1250 FARPROC16 WEP
= GetProcAddress16( hModule
, "WEP" );
1251 if (!WEP
) return FALSE
;
1252 return NE_CallTo16_word_w( WEP
, WEP_FREE_DLL
);
1256 /**********************************************************************
1259 * Implementation of FreeModule16().
1261 static BOOL16
NE_FreeModule( HMODULE16 hModule
, BOOL call_wep
)
1263 HMODULE16
*hPrevModule
;
1268 if (!(pModule
= NE_GetPtr( hModule
))) return FALSE
;
1269 hModule
= pModule
->self
;
1271 TRACE("%04x count %d\n", hModule
, pModule
->count
);
1273 if (((INT16
)(--pModule
->count
)) > 0 ) return TRUE
;
1274 else pModule
->count
= 0;
1276 if (pModule
->flags
& NE_FFLAGS_BUILTIN
)
1277 return FALSE
; /* Can't free built-in module */
1279 if (call_wep
&& !(pModule
->flags
& NE_FFLAGS_WIN32
))
1281 if (pModule
->flags
& NE_FFLAGS_LIBMODULE
)
1283 MODULE_CallWEP( hModule
);
1285 /* Free the objects owned by the DLL module */
1286 TASK_CallTaskSignalProc( USIG16_DLL_UNLOAD
, hModule
);
1287 PROCESS_CallUserSignalProc( USIG_DLL_UNLOAD_WIN16
, hModule
);
1290 call_wep
= FALSE
; /* We are freeing a task -> no more WEPs */
1294 /* Clear magic number just in case */
1296 pModule
->magic
= pModule
->self
= 0;
1298 /* Remove it from the linked list */
1300 hPrevModule
= &hFirstModule
;
1301 while (*hPrevModule
&& (*hPrevModule
!= hModule
))
1303 hPrevModule
= &(NE_GetPtr( *hPrevModule
))->next
;
1305 if (*hPrevModule
) *hPrevModule
= pModule
->next
;
1307 /* Free the referenced modules */
1309 pModRef
= (HMODULE16
*)NE_MODULE_TABLE( pModule
);
1310 for (i
= 0; i
< pModule
->modref_count
; i
++, pModRef
++)
1312 NE_FreeModule( *pModRef
, call_wep
);
1315 /* Free the module storage */
1317 GlobalFreeAll16( hModule
);
1319 /* Remove module from cache */
1321 if (pCachedModule
== pModule
) pCachedModule
= NULL
;
1326 /**********************************************************************
1327 * FreeModule16 (KERNEL.46)
1329 BOOL16 WINAPI
FreeModule16( HMODULE16 hModule
)
1331 return NE_FreeModule( hModule
, TRUE
);
1335 /***********************************************************************
1336 * FreeLibrary16 (KERNEL.96)
1338 void WINAPI
FreeLibrary16( HINSTANCE16 handle
)
1340 TRACE("%04x\n", handle
);
1341 FreeModule16( handle
);
1345 /**********************************************************************
1346 * GetModuleName (KERNEL.27)
1348 BOOL16 WINAPI
GetModuleName16( HINSTANCE16 hinst
, LPSTR buf
, INT16 count
)
1353 if (!(pModule
= NE_GetPtr( hinst
))) return FALSE
;
1354 p
= (BYTE
*)pModule
+ pModule
->name_table
;
1355 if (count
> *p
) count
= *p
+ 1;
1358 memcpy( buf
, p
+ 1, count
- 1 );
1359 buf
[count
-1] = '\0';
1365 /**********************************************************************
1366 * GetModuleUsage (KERNEL.48)
1368 INT16 WINAPI
GetModuleUsage16( HINSTANCE16 hModule
)
1370 NE_MODULE
*pModule
= NE_GetPtr( hModule
);
1371 return pModule
? pModule
->count
: 0;
1375 /**********************************************************************
1376 * GetExpWinVer (KERNEL.167)
1378 WORD WINAPI
GetExpWinVer16( HMODULE16 hModule
)
1380 NE_MODULE
*pModule
= NE_GetPtr( hModule
);
1381 if ( !pModule
) return 0;
1384 * For built-in modules, fake the expected version the module should
1385 * have according to the Windows version emulated by Wine
1387 if ( !pModule
->expected_version
)
1389 OSVERSIONINFOA versionInfo
;
1390 versionInfo
.dwOSVersionInfoSize
= sizeof(versionInfo
);
1392 if ( GetVersionExA( &versionInfo
) )
1393 pModule
->expected_version
=
1394 (versionInfo
.dwMajorVersion
& 0xff) << 8
1395 | (versionInfo
.dwMinorVersion
& 0xff);
1398 return pModule
->expected_version
;
1402 /**********************************************************************
1403 * GetModuleFileName16 (KERNEL.49)
1405 * Comment: see GetModuleFileNameA
1407 * Even if invoked by second instance of a program,
1408 * it still returns path of first one.
1410 INT16 WINAPI
GetModuleFileName16( HINSTANCE16 hModule
, LPSTR lpFileName
,
1415 /* Win95 does not query hModule if set to 0 !
1416 * Is this wrong or maybe Win3.1 only ? */
1417 if (!hModule
) hModule
= GetCurrentTask();
1419 if (!(pModule
= NE_GetPtr( hModule
))) return 0;
1420 lstrcpynA( lpFileName
, NE_MODULE_NAME(pModule
), nSize
);
1421 if (pModule
->expected_version
>= 0x400)
1422 GetLongPathNameA(NE_MODULE_NAME(pModule
), lpFileName
, nSize
);
1423 TRACE("%04x -> '%s'\n", hModule
, lpFileName
);
1424 return strlen(lpFileName
);
1428 /**********************************************************************
1429 * GetModuleHandle (KERNEL.47)
1431 * Find a module from a module name.
1433 * NOTE: The current implementation works the same way the Windows 95 one
1434 * does. Do not try to 'fix' it, fix the callers.
1435 * + It does not do ANY extension handling (except that strange .EXE bit)!
1436 * + It does not care about paths, just about basenames. (same as Windows)
1440 * the win16 module handle if found
1442 * HIWORD (undocumented, see "Undocumented Windows", chapter 5):
1443 * Always hFirstModule
1445 DWORD WINAPI
WIN16_GetModuleHandle( SEGPTR name
)
1447 if (HIWORD(name
) == 0)
1448 return MAKELONG(GetExePtr( (HINSTANCE16
)name
), hFirstModule
);
1449 return MAKELONG(GetModuleHandle16( MapSL(name
)), hFirstModule
);
1452 /***********************************************************************
1453 * GetModuleHandle16 (KERNEL but also exported from KERNEL32 in Wine)
1455 HMODULE16 WINAPI
GetModuleHandle16( LPCSTR name
)
1457 HMODULE16 hModule
= hFirstModule
;
1459 BYTE len
, *name_table
;
1460 char tmpstr
[MAX_PATH
];
1463 TRACE("(%s)\n", name
);
1466 return GetExePtr(LOWORD(name
));
1472 lstrcpynA(tmpstr
, name
, sizeof(tmpstr
));
1474 /* If 'name' matches exactly the module name of a module:
1475 * Return its handle.
1477 for (hModule
= hFirstModule
; hModule
; hModule
= pModule
->next
)
1479 pModule
= NE_GetPtr( hModule
);
1480 if (!pModule
) break;
1481 if (pModule
->flags
& NE_FFLAGS_WIN32
) continue;
1483 name_table
= (BYTE
*)pModule
+ pModule
->name_table
;
1484 if ((*name_table
== len
) && !strncmp(name
, name_table
+1, len
))
1488 /* If uppercased 'name' matches exactly the module name of a module:
1491 for (s
= tmpstr
; *s
; s
++) *s
= FILE_toupper(*s
);
1493 for (hModule
= hFirstModule
; hModule
; hModule
= pModule
->next
)
1495 pModule
= NE_GetPtr( hModule
);
1496 if (!pModule
) break;
1497 if (pModule
->flags
& NE_FFLAGS_WIN32
) continue;
1499 name_table
= (BYTE
*)pModule
+ pModule
->name_table
;
1500 /* FIXME: the strncasecmp is WRONG. It should not be case insensitive,
1501 * but case sensitive! (Unfortunately Winword 6 and subdlls have
1502 * lowercased module names, but try to load uppercase DLLs, so this
1503 * 'i' compare is just a quickfix until the loader handles that
1504 * correctly. -MM 990705
1506 if ((*name_table
== len
) && !FILE_strncasecmp(tmpstr
, name_table
+1, len
))
1510 /* If the base filename of 'name' matches the base filename of the module
1511 * filename of some module (case-insensitive compare):
1512 * Return its handle.
1515 /* basename: search backwards in passed name to \ / or : */
1516 s
= tmpstr
+ strlen(tmpstr
);
1519 if (s
[-1]=='/' || s
[-1]=='\\' || s
[-1]==':')
1524 /* search this in loaded filename list */
1525 for (hModule
= hFirstModule
; hModule
; hModule
= pModule
->next
)
1530 pModule
= NE_GetPtr( hModule
);
1531 if (!pModule
) break;
1532 if (!pModule
->fileinfo
) continue;
1533 if (pModule
->flags
& NE_FFLAGS_WIN32
) continue;
1535 ofs
= (OFSTRUCT
*)((BYTE
*)pModule
+ pModule
->fileinfo
);
1536 loadedfn
= ((char*)ofs
->szPathName
) + strlen(ofs
->szPathName
);
1537 /* basename: search backwards in pathname to \ / or : */
1538 while (loadedfn
> (char*)ofs
->szPathName
)
1540 if (loadedfn
[-1]=='/' || loadedfn
[-1]=='\\' || loadedfn
[-1]==':')
1544 /* case insensitive compare ... */
1545 if (!FILE_strcasecmp(loadedfn
, s
))
1549 /* If the extension of 'name' is '.EXE' and the base filename of 'name'
1550 * matches the base filename of the module filename of some 32-bit module:
1551 * Return the corresponding 16-bit dummy module handle.
1553 if (len
>= 4 && !FILE_strcasecmp(name
+len
-4, ".EXE"))
1555 HMODULE hModule
= GetModuleHandleA( name
);
1557 return MapHModuleLS( hModule
);
1560 if (!strcmp(tmpstr
,"MSDOS"))
1563 if (!strcmp(tmpstr
,"TIMER"))
1565 FIXME("Eh... Should return caller's code segment, expect crash\n");
1572 /**********************************************************************
1573 * NE_GetModuleByFilename
1575 static HMODULE16
NE_GetModuleByFilename( LPCSTR name
)
1579 BYTE len
, *name_table
;
1580 char tmpstr
[MAX_PATH
];
1583 lstrcpynA(tmpstr
, name
, sizeof(tmpstr
));
1585 /* If the base filename of 'name' matches the base filename of the module
1586 * filename of some module (case-insensitive compare):
1587 * Return its handle.
1590 /* basename: search backwards in passed name to \ / or : */
1591 s
= tmpstr
+ strlen(tmpstr
);
1594 if (s
[-1]=='/' || s
[-1]=='\\' || s
[-1]==':')
1599 /* search this in loaded filename list */
1600 for (hModule
= hFirstModule
; hModule
; hModule
= pModule
->next
)
1605 pModule
= NE_GetPtr( hModule
);
1606 if (!pModule
) break;
1607 if (!pModule
->fileinfo
) continue;
1608 if (pModule
->flags
& NE_FFLAGS_WIN32
) continue;
1610 ofs
= (OFSTRUCT
*)((BYTE
*)pModule
+ pModule
->fileinfo
);
1611 loadedfn
= ((char*)ofs
->szPathName
) + strlen(ofs
->szPathName
);
1612 /* basename: search backwards in pathname to \ / or : */
1613 while (loadedfn
> (char*)ofs
->szPathName
)
1615 if (loadedfn
[-1]=='/' || loadedfn
[-1]=='\\' || loadedfn
[-1]==':')
1619 /* case insensitive compare ... */
1620 if (!FILE_strcasecmp(loadedfn
, s
))
1623 /* If basename (without ext) matches the module name of a module:
1624 * Return its handle.
1627 if ( (p
= strrchr( s
, '.' )) != NULL
) *p
= '\0';
1630 for (hModule
= hFirstModule
; hModule
; hModule
= pModule
->next
)
1632 pModule
= NE_GetPtr( hModule
);
1633 if (!pModule
) break;
1634 if (pModule
->flags
& NE_FFLAGS_WIN32
) continue;
1636 name_table
= (BYTE
*)pModule
+ pModule
->name_table
;
1637 if ((*name_table
== len
) && !FILE_strncasecmp(s
, name_table
+1, len
))
1644 /**********************************************************************
1645 * ModuleFirst (TOOLHELP.59)
1647 BOOL16 WINAPI
ModuleFirst16( MODULEENTRY
*lpme
)
1649 lpme
->wNext
= hFirstModule
;
1650 return ModuleNext16( lpme
);
1654 /**********************************************************************
1655 * ModuleNext (TOOLHELP.60)
1657 BOOL16 WINAPI
ModuleNext16( MODULEENTRY
*lpme
)
1662 if (!lpme
->wNext
) return FALSE
;
1663 if (!(pModule
= NE_GetPtr( lpme
->wNext
))) return FALSE
;
1664 name
= (char *)pModule
+ pModule
->name_table
;
1665 memcpy( lpme
->szModule
, name
+ 1, min(*name
, MAX_MODULE_NAME
) );
1666 lpme
->szModule
[min(*name
, MAX_MODULE_NAME
)] = '\0';
1667 lpme
->hModule
= lpme
->wNext
;
1668 lpme
->wcUsage
= pModule
->count
;
1669 lstrcpynA( lpme
->szExePath
, NE_MODULE_NAME(pModule
), sizeof(lpme
->szExePath
) );
1670 lpme
->wNext
= pModule
->next
;
1675 /**********************************************************************
1676 * ModuleFindName (TOOLHELP.61)
1678 BOOL16 WINAPI
ModuleFindName16( MODULEENTRY
*lpme
, LPCSTR name
)
1680 lpme
->wNext
= GetModuleHandle16( name
);
1681 return ModuleNext16( lpme
);
1685 /**********************************************************************
1686 * ModuleFindHandle (TOOLHELP.62)
1688 BOOL16 WINAPI
ModuleFindHandle16( MODULEENTRY
*lpme
, HMODULE16 hModule
)
1690 hModule
= GetExePtr( hModule
);
1691 lpme
->wNext
= hModule
;
1692 return ModuleNext16( lpme
);
1696 /***************************************************************************
1697 * IsRomModule16 (KERNEL.323)
1699 BOOL16 WINAPI
IsRomModule16( HMODULE16 unused
)
1704 /***************************************************************************
1705 * IsRomFile16 (KERNEL.326)
1707 BOOL16 WINAPI
IsRomFile16( HFILE16 unused
)
1712 /***************************************************************************
1713 * MapHModuleLS (KERNEL32.520)
1715 HMODULE16 WINAPI
MapHModuleLS(HMODULE hmod
) {
1719 return ((TDB
*)GlobalLock16(GetCurrentTask()))->hInstance
;
1721 return hmod
; /* we already have a 16 bit module handle */
1722 pModule
= (NE_MODULE
*)GlobalLock16(hFirstModule
);
1724 if (pModule
->module32
== hmod
)
1725 return pModule
->self
;
1726 pModule
= (NE_MODULE
*)GlobalLock16(pModule
->next
);
1731 /***************************************************************************
1732 * MapHModuleSL (KERNEL32.521)
1734 HMODULE WINAPI
MapHModuleSL(HMODULE16 hmod
) {
1738 TDB
*pTask
= (TDB
*)GlobalLock16(GetCurrentTask());
1740 hmod
= pTask
->hModule
;
1742 pModule
= (NE_MODULE
*)GlobalLock16(hmod
);
1743 if ( (pModule
->magic
!=IMAGE_OS2_SIGNATURE
) ||
1744 !(pModule
->flags
& NE_FFLAGS_WIN32
)
1747 return pModule
->module32
;
1750 /***************************************************************************
1751 * MapHInstLS (KERNEL32.516)(KERNEL.472)
1753 void WINAPI
MapHInstLS( CONTEXT86
*context
)
1755 context
->Eax
= MapHModuleLS(context
->Eax
);
1758 /***************************************************************************
1759 * MapHInstSL (KERNEL32.518)(KERNEL.473)
1761 void WINAPI
MapHInstSL( CONTEXT86
*context
)
1763 context
->Eax
= MapHModuleSL(context
->Eax
);
1766 /***************************************************************************
1767 * MapHInstLS_PN (KERNEL32.517)
1769 void WINAPI
MapHInstLS_PN( CONTEXT86
*context
)
1771 if (context
->Eax
) context
->Eax
= MapHModuleLS(context
->Eax
);
1774 /***************************************************************************
1775 * MapHInstSL_PN (KERNEL32.519)
1777 void WINAPI
MapHInstSL_PN( CONTEXT86
*context
)
1779 if (context
->Eax
) context
->Eax
= MapHModuleSL(context
->Eax
);