4 * Copyright 1995 Alexandre Julliard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 #include "wine/port.h"
36 #include "wine/winbase16.h"
39 #include "kernel16_private.h"
40 #include "wine/exception.h"
41 #include "wine/debug.h"
43 WINE_DEFAULT_DEBUG_CHANNEL(module
);
44 WINE_DECLARE_DEBUG_CHANNEL(loaddll
);
45 WINE_DECLARE_DEBUG_CHANNEL(relay
);
48 typedef struct _GPHANDLERDEF
60 struct ne_segment_table_entry_s
62 WORD seg_data_offset
; /* Sector offset of segment data */
63 WORD seg_data_length
; /* Length of segment data */
64 WORD seg_flags
; /* Flags associated with this segment */
65 WORD min_alloc
; /* Minimum allocation size for this */
68 #define hFirstModule (pThhook->hExeHead)
70 static HINSTANCE16
NE_LoadModule( LPCSTR name
, BOOL lib_only
);
71 static BOOL16
NE_FreeModule( HMODULE16 hModule
, BOOL call_wep
);
73 static HINSTANCE16
MODULE_LoadModule16( LPCSTR libname
, BOOL implicit
, BOOL lib_only
);
75 static HMODULE16
NE_GetModuleByFilename( LPCSTR name
);
78 /* patch all the flat cs references of the code segment if necessary */
79 static inline void patch_code_segment( NE_MODULE
*pModule
)
83 SEGTABLEENTRY
*pSeg
= NE_SEG_TABLE( pModule
);
85 for (i
= 0; i
< pModule
->ne_cseg
; i
++, pSeg
++)
86 if (!(pSeg
->flags
& NE_SEGFLAGS_DATA
)) break; /* found the code segment */
88 call
= GlobalLock16( pSeg
->hSeg
);
90 /* patch glue code address and code selector */
91 for (i
= 0; call
[i
].pushl
== 0x68; i
++)
93 if (call
[i
].ret
[0] == 0xca66 || call
[i
].ret
[0] == 0xcb66) /* register entry point? */
94 call
[i
].glue
= __wine_call_from_16_regs
;
96 call
[i
].glue
= __wine_call_from_16
;
97 call
[i
].flatcs
= wine_get_cs();
100 if (TRACE_ON(relay
)) /* patch relay functions to all point to relay_call_from_16 */
101 for (i
= 0; call
[i
].pushl
== 0x68; i
++) call
[i
].relay
= relay_call_from_16
;
105 /***********************************************************************
108 static inline int contains_path( LPCSTR name
)
110 return ((*name
&& (name
[1] == ':')) || strchr(name
, '/') || strchr(name
, '\\'));
114 /***********************************************************************
117 * locale-independent case conversion for module lookups
119 static int NE_strcasecmp( const char *str1
, const char *str2
)
122 for ( ; ; str1
++, str2
++)
123 if ((ret
= RtlUpperChar(*str1
) - RtlUpperChar(*str2
)) || !*str1
) break;
128 /***********************************************************************
131 * locale-independent case conversion for module lookups
133 static int NE_strncasecmp( const char *str1
, const char *str2
, int len
)
136 for ( ; len
> 0; len
--, str1
++, str2
++)
137 if ((ret
= RtlUpperChar(*str1
) - RtlUpperChar(*str2
)) || !*str1
) break;
142 /***********************************************************************
145 NE_MODULE
*NE_GetPtr( HMODULE16 hModule
)
147 return GlobalLock16( GetExePtr(hModule
) );
151 /**********************************************************************
154 static void NE_RegisterModule( NE_MODULE
*pModule
)
156 pModule
->next
= hFirstModule
;
157 hFirstModule
= pModule
->self
;
161 /***********************************************************************
164 void NE_DumpModule( HMODULE16 hModule
)
174 if (!(pModule
= NE_GetPtr( hModule
)))
176 ERR( "**** %04x is not a module handle\n", hModule
);
180 /* Dump the module info */
182 TRACE( "Module %04x:\n", hModule
);
183 TRACE( "count=%d flags=%04x heap=%d stack=%d\n",
184 pModule
->count
, pModule
->ne_flags
,
185 pModule
->ne_heap
, pModule
->ne_stack
);
186 TRACE( "cs:ip=%04x:%04x ss:sp=%04x:%04x ds=%04x nb seg=%d modrefs=%d\n",
187 SELECTOROF(pModule
->ne_csip
), OFFSETOF(pModule
->ne_csip
),
188 SELECTOROF(pModule
->ne_sssp
), OFFSETOF(pModule
->ne_sssp
),
189 pModule
->ne_autodata
, pModule
->ne_cseg
, pModule
->ne_cmod
);
190 TRACE( "os_flags=%d swap_area=%d version=%04x\n",
191 pModule
->ne_exetyp
, pModule
->ne_swaparea
, pModule
->ne_expver
);
192 if (pModule
->ne_flags
& NE_FFLAGS_WIN32
)
193 TRACE( "PE module=%p\n", pModule
->module32
);
195 /* Dump the file info */
197 TRACE( "Filename: '%s'\n", NE_MODULE_NAME(pModule
) );
199 /* Dump the segment table */
201 TRACE( "Segment table:\n" );
202 pSeg
= NE_SEG_TABLE( pModule
);
203 for (i
= 0; i
< pModule
->ne_cseg
; i
++, pSeg
++)
204 TRACE( "%02x: pos=%d size=%d flags=%04x minsize=%d hSeg=%04x\n",
205 i
+ 1, pSeg
->filepos
, pSeg
->size
, pSeg
->flags
,
206 pSeg
->minsize
, pSeg
->hSeg
);
208 /* Dump the resource table */
210 TRACE( "Resource table:\n" );
211 if (pModule
->ne_rsrctab
)
213 pword
= (WORD
*)((BYTE
*)pModule
+ pModule
->ne_rsrctab
);
214 TRACE( "Alignment: %d\n", *pword
++ );
217 NE_TYPEINFO
*ptr
= (NE_TYPEINFO
*)pword
;
218 NE_NAMEINFO
*pname
= (NE_NAMEINFO
*)(ptr
+ 1);
219 TRACE( "id=%04x count=%d\n", ptr
->type_id
, ptr
->count
);
220 for (i
= 0; i
< ptr
->count
; i
++, pname
++)
221 TRACE( "offset=%d len=%d id=%04x\n",
222 pname
->offset
, pname
->length
, pname
->id
);
223 pword
= (WORD
*)pname
;
226 else TRACE( "None\n" );
228 /* Dump the resident name table */
230 TRACE( "Resident-name table:\n" );
231 pstr
= (BYTE
*) pModule
+ pModule
->ne_restab
;
234 TRACE( "%*.*s: %d\n", *pstr
, *pstr
, pstr
+ 1,
235 *(WORD
*)(pstr
+ *pstr
+ 1) );
236 pstr
+= *pstr
+ 1 + sizeof(WORD
);
239 /* Dump the module reference table */
241 TRACE( "Module ref table:\n" );
242 if (pModule
->ne_modtab
)
244 pword
= (WORD
*)((BYTE
*)pModule
+ pModule
->ne_modtab
);
245 for (i
= 0; i
< pModule
->ne_cmod
; i
++, pword
++)
248 GetModuleName16( *pword
, name
, sizeof(name
) );
249 TRACE( "%d: %04x -> '%s'\n", i
, *pword
, name
);
252 else TRACE( "None\n" );
254 /* Dump the entry table */
256 TRACE( "Entry table:\n" );
257 bundle
= (ET_BUNDLE
*)((BYTE
*)pModule
+pModule
->ne_enttab
);
259 entry
= (ET_ENTRY
*)((BYTE
*)bundle
+6);
260 TRACE( "Bundle %d-%d: %02x\n", bundle
->first
, bundle
->last
, entry
->type
);
261 ordinal
= bundle
->first
;
262 while (ordinal
< bundle
->last
)
264 if (entry
->type
== 0xff)
265 TRACE("%d: %02x:%04x (moveable)\n", ordinal
++, entry
->segnum
, entry
->offs
);
267 TRACE("%d: %02x:%04x (fixed)\n", ordinal
++, entry
->segnum
, entry
->offs
);
270 } while ( (bundle
->next
) && (bundle
= ((ET_BUNDLE
*)((BYTE
*)pModule
+ bundle
->next
))) );
272 /* Dump the non-resident names table */
274 TRACE( "Non-resident names table:\n" );
275 if (pModule
->nrname_handle
)
277 pstr
= GlobalLock16( pModule
->nrname_handle
);
280 TRACE( "%*.*s: %d\n", *pstr
, *pstr
, pstr
+ 1,
281 *(WORD
*)(pstr
+ *pstr
+ 1) );
282 pstr
+= *pstr
+ 1 + sizeof(WORD
);
289 /***********************************************************************
292 * Walk the module list and print the modules.
294 void NE_WalkModules(void)
296 HMODULE16 hModule
= hFirstModule
;
297 MESSAGE( "Module Flags Name\n" );
300 NE_MODULE
*pModule
= NE_GetPtr( hModule
);
303 MESSAGE( "Bad module %04x in list\n", hModule
);
306 MESSAGE( " %04x %04x %.*s\n", hModule
, pModule
->ne_flags
,
307 *((char *)pModule
+ pModule
->ne_restab
),
308 (char *)pModule
+ pModule
->ne_restab
+ 1 );
309 hModule
= pModule
->next
;
314 /***********************************************************************
315 * NE_InitResourceHandler
317 * Fill in 'resloader' fields in the resource table.
319 static void NE_InitResourceHandler( HMODULE16 hModule
)
321 static FARPROC16 proc
;
323 NE_TYPEINFO
*pTypeInfo
;
326 if (!(pModule
= NE_GetPtr( hModule
)) || !pModule
->ne_rsrctab
) return;
328 TRACE("InitResourceHandler[%04x]\n", hModule
);
330 if (!proc
) proc
= GetProcAddress16( GetModuleHandle16("KERNEL"), "DefResourceHandler" );
332 pTypeInfo
= (NE_TYPEINFO
*)((char *)pModule
+ pModule
->ne_rsrctab
+ 2);
333 while(pTypeInfo
->type_id
)
335 memcpy_unaligned( &pTypeInfo
->resloader
, &proc
, sizeof(FARPROC16
) );
336 pTypeInfo
= (NE_TYPEINFO
*)((char*)(pTypeInfo
+ 1) + pTypeInfo
->count
* sizeof(NE_NAMEINFO
));
341 /***********************************************************************
344 * Lookup the ordinal for a given name.
346 WORD
NE_GetOrdinal( HMODULE16 hModule
, const char *name
)
348 char buffer
[256], *p
;
353 if (!(pModule
= NE_GetPtr( hModule
))) return 0;
354 if (pModule
->ne_flags
& NE_FFLAGS_WIN32
) return 0;
356 TRACE("(%04x,'%s')\n", hModule
, name
);
358 /* First handle names of the form '#xxxx' */
360 if (name
[0] == '#') return atoi( name
+ 1 );
362 /* Now copy and uppercase the string */
364 strcpy( buffer
, name
);
365 for (p
= buffer
; *p
; p
++) *p
= RtlUpperChar(*p
);
368 /* First search the resident names */
370 cpnt
= (BYTE
*)pModule
+ pModule
->ne_restab
;
372 /* Skip the first entry (module name) */
373 cpnt
+= *cpnt
+ 1 + sizeof(WORD
);
376 if ((*cpnt
== len
) && !memcmp( cpnt
+1, buffer
, len
))
379 memcpy( &ordinal
, cpnt
+ *cpnt
+ 1, sizeof(ordinal
) );
380 TRACE(" Found: ordinal=%d\n", ordinal
);
383 cpnt
+= *cpnt
+ 1 + sizeof(WORD
);
386 /* Now search the non-resident names table */
388 if (!pModule
->nrname_handle
) return 0; /* No non-resident table */
389 cpnt
= GlobalLock16( pModule
->nrname_handle
);
391 /* Skip the first entry (module description string) */
392 cpnt
+= *cpnt
+ 1 + sizeof(WORD
);
395 if ((*cpnt
== len
) && !memcmp( cpnt
+1, buffer
, len
))
398 memcpy( &ordinal
, cpnt
+ *cpnt
+ 1, sizeof(ordinal
) );
399 TRACE(" Found: ordinal=%d\n", ordinal
);
402 cpnt
+= *cpnt
+ 1 + sizeof(WORD
);
408 /***********************************************************************
411 FARPROC16 WINAPI
NE_GetEntryPoint( HMODULE16 hModule
, WORD ordinal
)
413 return NE_GetEntryPointEx( hModule
, ordinal
, TRUE
);
416 /***********************************************************************
419 FARPROC16
NE_GetEntryPointEx( HMODULE16 hModule
, WORD ordinal
, BOOL16 snoop
)
427 if (!(pModule
= NE_GetPtr( hModule
))) return 0;
428 assert( !(pModule
->ne_flags
& NE_FFLAGS_WIN32
) );
430 bundle
= (ET_BUNDLE
*)((BYTE
*)pModule
+ pModule
->ne_enttab
);
431 while ((ordinal
< bundle
->first
+ 1) || (ordinal
> bundle
->last
))
435 bundle
= (ET_BUNDLE
*)((BYTE
*)pModule
+ bundle
->next
);
438 entry
= (ET_ENTRY
*)((BYTE
*)bundle
+6);
439 for (i
=0; i
< (ordinal
- bundle
->first
- 1); i
++)
443 memcpy( &offset
, &entry
->offs
, sizeof(WORD
) );
445 if (sel
== 0xfe) sel
= 0xffff; /* constant entry */
446 else sel
= GlobalHandleToSel16(NE_SEG_TABLE(pModule
)[sel
-1].hSeg
);
448 return (FARPROC16
)MAKESEGPTR( sel
, offset
);
450 return (FARPROC16
)MAKESEGPTR( sel
, offset
);
452 return SNOOP16_GetProcAddress16(hModule
,ordinal
,(FARPROC16
)MAKESEGPTR( sel
, offset
));
456 /***********************************************************************
457 * EntryAddrProc (KERNEL.667) Wine-specific export
459 * Return the entry point for a given ordinal.
461 FARPROC16 WINAPI
EntryAddrProc16( HMODULE16 hModule
, WORD ordinal
)
463 FARPROC16 ret
= NE_GetEntryPointEx( hModule
, ordinal
, TRUE
);
464 CURRENT_STACK16
->ecx
= hModule
; /* FIXME: might be incorrect value */
468 /***********************************************************************
471 * Change the value of an entry point. Use with caution!
472 * It can only change the offset value, not the selector.
474 BOOL16
NE_SetEntryPoint( HMODULE16 hModule
, WORD ordinal
, WORD offset
)
481 if (!(pModule
= NE_GetPtr( hModule
))) return FALSE
;
482 assert( !(pModule
->ne_flags
& NE_FFLAGS_WIN32
) );
484 bundle
= (ET_BUNDLE
*)((BYTE
*)pModule
+ pModule
->ne_enttab
);
485 while ((ordinal
< bundle
->first
+ 1) || (ordinal
> bundle
->last
))
487 bundle
= (ET_BUNDLE
*)((BYTE
*)pModule
+ bundle
->next
);
488 if (!(bundle
->next
)) return 0;
491 entry
= (ET_ENTRY
*)((BYTE
*)bundle
+6);
492 for (i
=0; i
< (ordinal
- bundle
->first
- 1); i
++)
495 memcpy( &entry
->offs
, &offset
, sizeof(WORD
) );
500 /***********************************************************************
503 * Build the entry table bundle data from the on-disk format. Helper for build_module.
505 static void *build_bundle_data( NE_MODULE
*pModule
, void *dest
, const BYTE
*table
)
507 ET_BUNDLE
*oldbundle
, *bundle
= dest
;
509 BYTE nr_entries
, type
;
511 memset(bundle
, 0, sizeof(ET_BUNDLE
)); /* in case no entry table exists */
512 entry
= (ET_ENTRY
*)((BYTE
*)bundle
+6);
514 while ((nr_entries
= *table
++))
516 if ((type
= *table
++))
518 bundle
->last
+= nr_entries
;
524 entry
->flags
= *table
++;
525 table
+= sizeof(WORD
);
526 entry
->segnum
= *table
++;
527 entry
->offs
= *(const WORD
*)table
;
528 table
+= sizeof(WORD
);
537 entry
->flags
= *table
++;
538 entry
->segnum
= type
;
539 entry
->offs
= *(const WORD
*)table
;
540 table
+= sizeof(WORD
);
547 if (bundle
->first
== bundle
->last
)
549 bundle
->first
+= nr_entries
;
550 bundle
->last
+= nr_entries
;
555 oldbundle
->next
= (char *)entry
- (char *)pModule
;
556 bundle
= (ET_BUNDLE
*)entry
;
557 bundle
->first
= bundle
->last
= oldbundle
->last
+ nr_entries
;
559 entry
= (ET_ENTRY
*)(((BYTE
*)entry
)+sizeof(ET_BUNDLE
));
567 /***********************************************************************
570 * Build the in-memory module from the on-disk data.
572 static HMODULE16
build_module( const void *mapping
, SIZE_T mapping_size
, LPCSTR path
)
574 const IMAGE_DOS_HEADER
*mz_header
= mapping
;
575 const IMAGE_OS2_HEADER
*ne_header
;
576 const struct ne_segment_table_entry_s
*pSeg
;
582 BYTE
*buffer
, *pData
, *end
;
585 if (mapping_size
< sizeof(*mz_header
)) return ERROR_BAD_FORMAT
;
586 if (mz_header
->e_magic
!= IMAGE_DOS_SIGNATURE
) return ERROR_BAD_FORMAT
;
587 ne_header
= (const IMAGE_OS2_HEADER
*)((const char *)mapping
+ mz_header
->e_lfanew
);
588 if (mz_header
->e_lfanew
+ sizeof(*ne_header
) > mapping_size
) return ERROR_BAD_FORMAT
;
589 if (ne_header
->ne_magic
== IMAGE_NT_SIGNATURE
) return 21; /* win32 exe */
590 if (ne_header
->ne_magic
== IMAGE_OS2_SIGNATURE_LX
)
592 MESSAGE("Sorry, %s is an OS/2 linear executable (LX) file!\n", path
);
595 if (ne_header
->ne_magic
!= IMAGE_OS2_SIGNATURE
) return ERROR_BAD_FORMAT
;
597 /* We now have a valid NE header */
599 /* check to be able to fall back to loading OS/2 programs as DOS
600 * FIXME: should this check be reversed in order to be less strict?
601 * (only fail for OS/2 ne_exetyp 0x01 here?) */
602 if ((ne_header
->ne_exetyp
!= 0x02 /* Windows */)
603 && (ne_header
->ne_exetyp
!= 0x04) /* Windows 386 */)
604 return ERROR_BAD_FORMAT
;
606 size
= sizeof(NE_MODULE
) +
608 ne_header
->ne_cseg
* sizeof(SEGTABLEENTRY
) +
610 ne_header
->ne_restab
- ne_header
->ne_rsrctab
+
611 /* resident names table */
612 ne_header
->ne_modtab
- ne_header
->ne_restab
+
613 /* module ref table */
614 ne_header
->ne_cmod
* sizeof(WORD
) +
615 /* imported names table */
616 ne_header
->ne_enttab
- ne_header
->ne_imptab
+
617 /* entry table length */
618 ne_header
->ne_cbenttab
+
619 /* entry table extra conversion space */
621 2 * (ne_header
->ne_cbenttab
- ne_header
->ne_cmovent
*6) +
622 /* loaded file info */
623 sizeof(OFSTRUCT
) - sizeof(ofs
->szPathName
) + strlen(path
) + 1;
625 hModule
= GlobalAlloc16( GMEM_FIXED
| GMEM_ZEROINIT
, size
);
626 if (!hModule
) return ERROR_BAD_FORMAT
;
628 FarSetOwner16( hModule
, hModule
);
629 pModule
= GlobalLock16( hModule
);
630 memcpy( pModule
, ne_header
, sizeof(*ne_header
) );
632 /* check programs for default minimal stack size */
633 if (!(pModule
->ne_flags
& NE_FFLAGS_LIBMODULE
) && (pModule
->ne_stack
< 0x1400))
634 pModule
->ne_stack
= 0x1400;
636 pModule
->self
= hModule
;
637 pModule
->mapping
= mapping
;
638 pModule
->mapping_size
= mapping_size
;
640 pData
= (BYTE
*)(pModule
+ 1);
642 /* Clear internal Wine flags in case they are set in the EXE file */
644 pModule
->ne_flags
&= ~(NE_FFLAGS_BUILTIN
| NE_FFLAGS_WIN32
);
646 /* Get the segment table */
648 pModule
->ne_segtab
= pData
- (BYTE
*)pModule
;
649 if (!(pSeg
= NE_GET_DATA( pModule
, mz_header
->e_lfanew
+ ne_header
->ne_segtab
,
650 ne_header
->ne_cseg
* sizeof(struct ne_segment_table_entry_s
) )))
652 for (i
= ne_header
->ne_cseg
; i
> 0; i
--, pSeg
++)
654 memcpy( pData
, pSeg
, sizeof(*pSeg
) );
655 pData
+= sizeof(SEGTABLEENTRY
);
658 /* Get the resource table */
660 if (ne_header
->ne_rsrctab
< ne_header
->ne_restab
)
662 pModule
->ne_rsrctab
= pData
- (BYTE
*)pModule
;
663 if (!NE_READ_DATA( pModule
, pData
, mz_header
->e_lfanew
+ ne_header
->ne_rsrctab
,
664 ne_header
->ne_restab
- ne_header
->ne_rsrctab
)) goto failed
;
665 pData
+= ne_header
->ne_restab
- ne_header
->ne_rsrctab
;
667 else pModule
->ne_rsrctab
= 0; /* No resource table */
669 /* Get the resident names table */
671 pModule
->ne_restab
= pData
- (BYTE
*)pModule
;
672 if (!NE_READ_DATA( pModule
, pData
, mz_header
->e_lfanew
+ ne_header
->ne_restab
,
673 ne_header
->ne_modtab
- ne_header
->ne_restab
)) goto failed
;
674 pData
+= ne_header
->ne_modtab
- ne_header
->ne_restab
;
676 /* Get the module references table */
678 if (ne_header
->ne_cmod
> 0)
680 pModule
->ne_modtab
= pData
- (BYTE
*)pModule
;
681 if (!NE_READ_DATA( pModule
, pData
, mz_header
->e_lfanew
+ ne_header
->ne_modtab
,
682 ne_header
->ne_cmod
* sizeof(WORD
) )) goto failed
;
683 pData
+= ne_header
->ne_cmod
* sizeof(WORD
);
685 else pModule
->ne_modtab
= 0; /* No module references */
687 /* Get the imported names table */
689 pModule
->ne_imptab
= pData
- (BYTE
*)pModule
;
690 if (!NE_READ_DATA( pModule
, pData
, mz_header
->e_lfanew
+ ne_header
->ne_imptab
,
691 ne_header
->ne_enttab
- ne_header
->ne_imptab
)) goto failed
;
692 pData
+= ne_header
->ne_enttab
- ne_header
->ne_imptab
;
694 /* Load entry table, convert it to the optimized version used by Windows */
696 pModule
->ne_enttab
= pData
- (BYTE
*)pModule
;
697 if (!(ptr
= NE_GET_DATA( pModule
, mz_header
->e_lfanew
+ ne_header
->ne_enttab
,
698 ne_header
->ne_cbenttab
))) goto failed
;
699 end
= build_bundle_data( pModule
, pData
, ptr
);
701 pData
+= ne_header
->ne_cbenttab
+ sizeof(ET_BUNDLE
) +
702 2 * (ne_header
->ne_cbenttab
- ne_header
->ne_cmovent
*6);
706 FIXME( "not enough space for entry table for %s\n", debugstr_a(path
) );
710 /* Store the filename information */
712 pModule
->fileinfo
= pData
- (BYTE
*)pModule
;
713 ofs
= (OFSTRUCT
*)pData
;
714 ofs
->cBytes
= sizeof(OFSTRUCT
) - sizeof(ofs
->szPathName
) + strlen(path
);
716 strcpy( ofs
->szPathName
, path
);
717 pData
+= ofs
->cBytes
+ 1;
718 assert( (BYTE
*)pModule
+ size
<= pData
);
720 /* Get the non-resident names table */
722 if (ne_header
->ne_cbnrestab
)
724 pModule
->nrname_handle
= GlobalAlloc16( 0, ne_header
->ne_cbnrestab
);
725 if (!pModule
->nrname_handle
) goto failed
;
726 FarSetOwner16( pModule
->nrname_handle
, hModule
);
727 buffer
= GlobalLock16( pModule
->nrname_handle
);
728 if (!NE_READ_DATA( pModule
, buffer
, ne_header
->ne_nrestab
, ne_header
->ne_cbnrestab
))
730 GlobalFree16( pModule
->nrname_handle
);
731 pModule
->nrname_handle
= 0;
734 else pModule
->nrname_handle
= 0;
736 /* Allocate a segment for the implicitly-loaded DLLs */
738 if (pModule
->ne_cmod
)
740 pModule
->dlls_to_init
= GlobalAlloc16( GMEM_ZEROINIT
,
741 (pModule
->ne_cmod
+1)*sizeof(HMODULE16
) );
742 if (!pModule
->dlls_to_init
)
744 if (pModule
->nrname_handle
) GlobalFree16( pModule
->nrname_handle
);
747 FarSetOwner16( pModule
->dlls_to_init
, hModule
);
749 else pModule
->dlls_to_init
= 0;
751 NE_RegisterModule( pModule
);
755 GlobalFree16( hModule
);
756 return ERROR_BAD_FORMAT
;
760 /***********************************************************************
763 * Load all DLLs implicitly linked to a module.
765 static BOOL
NE_LoadDLLs( NE_MODULE
*pModule
)
768 WORD
*pModRef
= (WORD
*)((char *)pModule
+ pModule
->ne_modtab
);
769 WORD
*pDLLs
= GlobalLock16( pModule
->dlls_to_init
);
771 for (i
= 0; i
< pModule
->ne_cmod
; i
++, pModRef
++)
773 char buffer
[260], *p
;
774 BYTE
*pstr
= (BYTE
*)pModule
+ pModule
->ne_imptab
+ *pModRef
;
775 memcpy( buffer
, pstr
+ 1, *pstr
);
776 *(buffer
+ *pstr
) = 0; /* terminate it */
778 TRACE("Loading '%s'\n", buffer
);
779 if (!(*pModRef
= GetModuleHandle16( buffer
)))
781 /* If the DLL is not loaded yet, load it and store */
782 /* its handle in the list of DLLs to initialize. */
785 /* Append .DLL to name if no extension present */
786 if (!(p
= strrchr( buffer
, '.')) || strchr( p
, '/' ) || strchr( p
, '\\'))
787 strcat( buffer
, ".DLL" );
789 if ((hDLL
= MODULE_LoadModule16( buffer
, TRUE
, TRUE
)) < 32)
791 /* FIXME: cleanup what was done */
793 MESSAGE( "Could not load '%s' required by '%.*s', error=%d\n",
794 buffer
, *((BYTE
*)pModule
+ pModule
->ne_restab
),
795 (char *)pModule
+ pModule
->ne_restab
+ 1, hDLL
);
798 *pModRef
= GetExePtr( hDLL
);
801 else /* Increment the reference count of the DLL */
803 NE_MODULE
*pOldDLL
= NE_GetPtr( *pModRef
);
804 if (pOldDLL
) pOldDLL
->count
++;
811 /**********************************************************************
814 * Load first instance of NE module from file.
816 * pModule must point to a module structure prepared by build_module.
817 * This routine must never be called twice on a module.
819 static HINSTANCE16
NE_DoLoadModule( NE_MODULE
*pModule
)
821 /* Allocate the segments for this module */
823 if (!NE_CreateAllSegments( pModule
))
824 return ERROR_NOT_ENOUGH_MEMORY
; /* 8 */
826 /* Load the referenced DLLs */
828 if (!NE_LoadDLLs( pModule
))
829 return ERROR_FILE_NOT_FOUND
; /* 2 */
831 /* Load the segments */
833 NE_LoadAllSegments( pModule
);
835 /* Make sure the usage count is 1 on the first loading of */
836 /* the module, even if it contains circular DLL references */
840 return NE_GetInstance( pModule
);
843 /**********************************************************************
846 * Load first instance of NE module. (Note: caller is responsible for
847 * ensuring the module isn't already loaded!)
849 * If the module turns out to be an executable module, only a
850 * handle to a module stub is returned; this needs to be initialized
851 * by calling NE_DoLoadModule later, in the context of the newly
854 * If lib_only is TRUE, however, the module is perforce treated
855 * like a DLL module, even if it is an executable module.
858 static HINSTANCE16
NE_LoadModule( LPCSTR name
, BOOL lib_only
)
862 HINSTANCE16 hInstance
;
867 MEMORY_BASIC_INFORMATION info
;
870 if ((hFile
= OpenFile16( name
, &ofs
, OF_READ
|OF_SHARE_DENY_WRITE
)) == HFILE_ERROR16
)
871 return ERROR_FILE_NOT_FOUND
;
873 mapping
= CreateFileMappingW( DosFileHandleToWin32Handle(hFile
), NULL
, PAGE_WRITECOPY
, 0, 0, NULL
);
875 if (!mapping
) return ERROR_BAD_FORMAT
;
877 ptr
= MapViewOfFile( mapping
, FILE_MAP_COPY
, 0, 0, 0 );
878 CloseHandle( mapping
);
879 if (!ptr
) return ERROR_BAD_FORMAT
;
881 VirtualQuery( ptr
, &info
, sizeof(info
) );
882 hModule
= build_module( ptr
, info
.RegionSize
, ofs
.szPathName
);
886 UnmapViewOfFile( ptr
);
890 SNOOP16_RegisterDLL( hModule
, ofs
.szPathName
);
891 NE_InitResourceHandler( hModule
);
893 pModule
= NE_GetPtr( hModule
);
895 if ( !lib_only
&& !( pModule
->ne_flags
& NE_FFLAGS_LIBMODULE
) )
898 hInstance
= NE_DoLoadModule( pModule
);
899 if ( hInstance
< 32 )
902 NE_FreeModule( hModule
, 0 );
909 /***********************************************************************
910 * NE_DoLoadBuiltinModule
912 * Load a built-in Win16 module. Helper function for NE_LoadBuiltinModule.
914 static HMODULE16
NE_DoLoadBuiltinModule( const IMAGE_DOS_HEADER
*mz_header
, const char *file_name
,
919 HINSTANCE16 hInstance
;
920 SIZE_T mapping_size
= ~0UL; /* assume builtins don't contain invalid offsets... */
922 hModule
= build_module( mz_header
, mapping_size
, file_name
);
923 if (hModule
< 32) return hModule
;
924 pModule
= GlobalLock16( hModule
);
925 pModule
->ne_flags
|= NE_FFLAGS_BUILTIN
;
926 pModule
->owner32
= owner32
;
928 /* fake the expected version the module should have according to the current Windows version */
929 pModule
->ne_expver
= MAKEWORD( NtCurrentTeb()->Peb
->OSMajorVersion
,
930 NtCurrentTeb()->Peb
->OSMinorVersion
);
932 hInstance
= NE_DoLoadModule( pModule
);
933 if (hInstance
< 32) NE_FreeModule( hModule
, 0 );
935 NE_InitResourceHandler( hModule
);
937 if (pModule
->ne_heap
)
939 SEGTABLEENTRY
*pSeg
= NE_SEG_TABLE( pModule
) + pModule
->ne_autodata
- 1;
940 unsigned int size
= pSeg
->minsize
+ pModule
->ne_heap
;
941 if (size
> 0xfffe) size
= 0xfffe;
942 LocalInit16( GlobalHandleToSel16(pSeg
->hSeg
), pSeg
->minsize
, size
);
945 patch_code_segment( pModule
);
951 /**********************************************************************
952 * MODULE_LoadModule16
954 * Load a NE module in the order of the loadorder specification.
955 * The caller is responsible that the module is not loaded already.
958 static HINSTANCE16
MODULE_LoadModule16( LPCSTR libname
, BOOL implicit
, BOOL lib_only
)
960 HINSTANCE16 hinst
= 2;
964 const IMAGE_DOS_HEADER
*descr
= NULL
;
965 const char *file_name
= NULL
;
967 const char *basename
, *main_module
, *p
;
969 /* strip path information */
972 if (basename
[0] && basename
[1] == ':') basename
+= 2; /* strip drive specification */
973 if ((p
= strrchr( basename
, '\\' ))) basename
= p
+ 1;
974 if ((p
= strrchr( basename
, '/' ))) basename
= p
+ 1;
976 if (strlen(basename
) < sizeof(dllname
)-6)
980 strcpy( dllname
, basename
);
981 q
= strrchr( dllname
, '.' );
982 if (!q
) strcat( dllname
, ".dll" );
983 for (q
= dllname
; *q
; q
++) if (*q
>= 'A' && *q
<= 'Z') *q
+= 32;
986 if ((mod32
= LoadLibraryA( dllname
)))
988 if (!(descr
= (void *)GetProcAddress( mod32
, "__wine_spec_dos_header" )))
990 WARN( "loaded %s but does not contain a 16-bit module\n", debugstr_a(dllname
) );
991 FreeLibrary( mod32
);
995 TRACE( "found %s with embedded 16-bit module\n", debugstr_a(dllname
) );
996 file_name
= basename
;
998 /* if module has a 32-bit owner, match the load order of the owner */
999 if ((main_module
= (void *)GetProcAddress( mod32
, "__wine_spec_main_module" )))
1002 HMODULE main_owner
= LoadLibraryA( main_module
);
1006 WARN( "couldn't load owner %s for 16-bit dll %s\n", main_module
, dllname
);
1007 FreeLibrary( mod32
);
1008 return ERROR_FILE_NOT_FOUND
;
1010 /* check if module was loaded native */
1011 if (LdrFindEntryForAddress( main_owner
, &ldr
) || !(ldr
->Flags
& LDR_WINE_INTERNAL
))
1013 FreeLibrary( mod32
);
1016 FreeLibrary( main_owner
);
1021 /* loading the 32-bit library can have the side effect of loading the module */
1022 /* if so, simply incr the ref count and return the module */
1023 if (descr
&& (hModule
= GetModuleHandle16( libname
)))
1025 TRACE( "module %s already loaded by owner\n", libname
);
1026 pModule
= NE_GetPtr( hModule
);
1027 if (pModule
) pModule
->count
++;
1028 FreeLibrary( mod32
);
1035 TRACE("Trying built-in '%s'\n", libname
);
1036 hinst
= NE_DoLoadBuiltinModule( descr
, file_name
, mod32
);
1037 if (hinst
> 32) TRACE_(loaddll
)("Loaded module %s : builtin\n", debugstr_a(file_name
));
1041 TRACE("Trying native dll '%s'\n", libname
);
1042 hinst
= NE_LoadModule(libname
, lib_only
);
1043 if (hinst
> 32) TRACE_(loaddll
)("Loaded module %s : native\n", debugstr_a(libname
));
1046 if (hinst
> 32 && !implicit
)
1048 hModule
= GetModuleHandle16(libname
);
1051 ERR("Serious trouble. Just loaded module '%s' (hinst=0x%04x), but can't get module handle. Filename too long ?\n",
1053 return ERROR_INVALID_HANDLE
;
1056 pModule
= NE_GetPtr(hModule
);
1059 ERR("Serious trouble. Just loaded module '%s' (hinst=0x%04x), but can't get NE_MODULE pointer\n",
1061 return ERROR_INVALID_HANDLE
;
1064 TRACE("Loaded module '%s' at 0x%04x.\n", libname
, hinst
);
1067 * Call initialization routines for all loaded DLLs. Note that
1068 * when we load implicitly linked DLLs this will be done by InitTask().
1070 if(pModule
->ne_flags
& NE_FFLAGS_LIBMODULE
)
1072 NE_InitializeDLLs(hModule
);
1073 NE_DllProcessAttach(hModule
);
1075 else DOSMEM_InitDosMemory(); /* we will be running a 16-bit task, setup DOS memory */
1077 return hinst
; /* The last error that occurred */
1081 /**********************************************************************
1084 * Create the thread for a 16-bit module.
1086 static HINSTANCE16
NE_CreateThread( NE_MODULE
*pModule
, WORD cmdShow
, LPCSTR cmdline
)
1091 HINSTANCE16 instance
= 0;
1093 if (!(hTask
= TASK_SpawnTask( pModule
, cmdShow
, cmdline
+ 1, *cmdline
, &hThread
)))
1096 /* Post event to start the task */
1097 PostEvent16( hTask
);
1099 /* Wait until we get the instance handle */
1102 DirectedYield16( hTask
);
1103 if (!IsTask16( hTask
)) /* thread has died */
1106 WaitForSingleObject( hThread
, INFINITE
);
1107 GetExitCodeThread( hThread
, &exit_code
);
1108 CloseHandle( hThread
);
1111 if (!(pTask
= GlobalLock16( hTask
))) break;
1112 instance
= pTask
->hInstance
;
1113 GlobalUnlock16( hTask
);
1114 } while (!instance
);
1116 CloseHandle( hThread
);
1121 /**********************************************************************
1122 * LoadModule (KERNEL.45)
1124 HINSTANCE16 WINAPI
LoadModule16( LPCSTR name
, LPVOID paramBlock
)
1126 BOOL lib_only
= !paramBlock
|| (paramBlock
== (LPVOID
)-1);
1127 LOADPARAMS16
*params
;
1131 WORD cmdShow
= 1; /* SW_SHOWNORMAL but we don't want to include winuser.h here */
1133 if (name
== NULL
) return 0;
1135 TRACE("name %s, paramBlock %p\n", name
, paramBlock
);
1139 if ( (hModule
= NE_GetModuleByFilename(name
) ) != 0 )
1141 /* Special case: second instance of an already loaded NE module */
1143 if ( !( pModule
= NE_GetPtr( hModule
) ) ) return ERROR_BAD_FORMAT
;
1144 if ( pModule
->module32
) return (HINSTANCE16
)21;
1146 /* Increment refcount */
1152 /* Main case: load first instance of NE module */
1154 if ( (hModule
= MODULE_LoadModule16( name
, FALSE
, lib_only
)) < 32 )
1157 if ( !(pModule
= NE_GetPtr( hModule
)) )
1158 return ERROR_BAD_FORMAT
;
1161 /* If library module, we just retrieve the instance handle */
1163 if ( ( pModule
->ne_flags
& NE_FFLAGS_LIBMODULE
) || lib_only
)
1164 return NE_GetInstance( pModule
);
1167 * At this point, we need to create a new process.
1169 * pModule points either to an already loaded module, whose refcount
1170 * has already been incremented (to avoid having the module vanish
1171 * in the meantime), or else to a stub module which contains only header
1174 params
= paramBlock
;
1175 if (params
->showCmd
)
1176 cmdShow
= ((WORD
*)MapSL( params
->showCmd
))[1];
1177 cmdline
= MapSL( params
->cmdLine
);
1178 return NE_CreateThread( pModule
, cmdShow
, cmdline
);
1182 /**********************************************************************
1185 * Startup code for a new 16-bit task.
1187 DWORD
NE_StartTask(void)
1189 TDB
*pTask
= TASK_GetCurrent();
1190 NE_MODULE
*pModule
= NE_GetPtr( pTask
->hModule
);
1191 HINSTANCE16 hInstance
, hPrevInstance
;
1192 SEGTABLEENTRY
*pSegTable
= NE_SEG_TABLE( pModule
);
1195 if ( pModule
->count
> 0 )
1197 /* Second instance of an already loaded NE module */
1198 /* Note that the refcount was already incremented by the parent */
1200 hPrevInstance
= NE_GetInstance( pModule
);
1202 if ( pModule
->ne_autodata
)
1203 if ( NE_CreateSegment( pModule
, pModule
->ne_autodata
) )
1204 NE_LoadSegment( pModule
, pModule
->ne_autodata
);
1206 hInstance
= NE_GetInstance( pModule
);
1207 TRACE("created second instance %04x[%d] of instance %04x.\n", hInstance
, pModule
->ne_autodata
, hPrevInstance
);
1212 /* Load first instance of NE module */
1214 pModule
->ne_flags
|= NE_FFLAGS_GUI
; /* FIXME: is this necessary? */
1216 hInstance
= NE_DoLoadModule( pModule
);
1220 if ( hInstance
>= 32 )
1224 /* Enter instance handles into task struct */
1226 pTask
->hInstance
= hInstance
;
1227 pTask
->hPrevInstance
= hPrevInstance
;
1229 /* Use DGROUP for 16-bit stack */
1231 if (!(sp
= OFFSETOF(pModule
->ne_sssp
)))
1232 sp
= pSegTable
[SELECTOROF(pModule
->ne_sssp
)-1].minsize
+ pModule
->ne_stack
;
1234 sp
-= sizeof(STACK16FRAME
);
1235 NtCurrentTeb()->WOW32Reserved
= (void *)MAKESEGPTR( GlobalHandleToSel16(hInstance
), sp
);
1237 /* Registers at initialization must be:
1239 * bx stack size in bytes
1240 * cx heap size in bytes
1241 * si previous app instance
1242 * di current app instance
1244 * es selector to the PSP
1245 * ds dgroup of the application
1247 * sp top of the stack
1249 memset( &context
, 0, sizeof(context
) );
1250 context
.SegCs
= GlobalHandleToSel16(pSegTable
[SELECTOROF(pModule
->ne_csip
) - 1].hSeg
);
1251 context
.SegDs
= GlobalHandleToSel16(pTask
->hInstance
);
1252 context
.SegEs
= pTask
->hPDB
;
1253 context
.SegFs
= wine_get_fs();
1254 context
.SegGs
= wine_get_gs();
1255 context
.Eip
= OFFSETOF(pModule
->ne_csip
);
1256 context
.Ebx
= pModule
->ne_stack
;
1257 context
.Ecx
= pModule
->ne_heap
;
1258 context
.Edi
= pTask
->hInstance
;
1259 context
.Esi
= pTask
->hPrevInstance
;
1261 /* Now call 16-bit entry point */
1263 TRACE("Starting main program: cs:ip=%04x:%04x ds=%04x ss:sp=%04x:%04x\n",
1264 context
.SegCs
, context
.Eip
, context
.SegDs
,
1265 SELECTOROF(NtCurrentTeb()->WOW32Reserved
),
1266 OFFSETOF(NtCurrentTeb()->WOW32Reserved
) );
1268 WOWCallback16Ex( 0, WCB16_REGS
, 0, NULL
, (DWORD
*)&context
);
1269 ExitThread( LOWORD(context
.Eax
) );
1271 return hInstance
; /* error code */
1274 /***********************************************************************
1275 * LoadLibrary (KERNEL.95)
1276 * LoadLibrary16 (KERNEL32.35)
1278 HINSTANCE16 WINAPI
LoadLibrary16( LPCSTR libname
)
1280 return LoadModule16(libname
, (LPVOID
)-1 );
1284 /**********************************************************************
1287 * Call a DLL's WEP, allowing it to shut down.
1288 * FIXME: we always pass the WEP WEP_FREE_DLL, never WEP_SYSTEM_EXIT
1290 static BOOL16
MODULE_CallWEP( HMODULE16 hModule
)
1293 FARPROC16 WEP
= GetProcAddress16( hModule
, "WEP" );
1294 if (!WEP
) return FALSE
;
1301 args
[0] = WEP_FREE_DLL
;
1302 WOWCallback16Ex( (DWORD
)WEP
, WCB16_PASCAL
, sizeof(args
), args
, &dwRet
);
1303 ret
= LOWORD(dwRet
);
1307 WARN("Page fault\n");
1316 /**********************************************************************
1319 * Implementation of FreeModule16().
1321 static BOOL16
NE_FreeModule( HMODULE16 hModule
, BOOL call_wep
)
1323 HMODULE16
*hPrevModule
;
1328 if (!(pModule
= NE_GetPtr( hModule
))) return FALSE
;
1329 hModule
= pModule
->self
;
1331 TRACE("%04x count %d\n", hModule
, pModule
->count
);
1333 if (((INT16
)(--pModule
->count
)) > 0 ) return TRUE
;
1334 else pModule
->count
= 0;
1336 if (call_wep
&& !(pModule
->ne_flags
& NE_FFLAGS_WIN32
))
1338 /* Free the objects owned by the DLL module */
1339 NE_CallUserSignalProc( hModule
, USIG16_DLL_UNLOAD
);
1341 if (pModule
->ne_flags
& NE_FFLAGS_LIBMODULE
)
1342 MODULE_CallWEP( hModule
);
1344 call_wep
= FALSE
; /* We are freeing a task -> no more WEPs */
1347 TRACE_(loaddll
)("Unloaded module %s : %s\n", debugstr_a(NE_MODULE_NAME(pModule
)),
1348 (pModule
->ne_flags
& NE_FFLAGS_BUILTIN
) ? "builtin" : "native");
1350 /* Clear magic number just in case */
1352 pModule
->ne_magic
= pModule
->self
= 0;
1353 if (pModule
->owner32
) FreeLibrary( pModule
->owner32
);
1354 else if (pModule
->mapping
) UnmapViewOfFile( pModule
->mapping
);
1356 /* Remove it from the linked list */
1358 hPrevModule
= &hFirstModule
;
1359 while (*hPrevModule
&& (*hPrevModule
!= hModule
))
1361 hPrevModule
= &(NE_GetPtr( *hPrevModule
))->next
;
1363 if (*hPrevModule
) *hPrevModule
= pModule
->next
;
1365 /* Free the referenced modules */
1367 pModRef
= (HMODULE16
*)((char *)pModule
+ pModule
->ne_modtab
);
1368 for (i
= 0; i
< pModule
->ne_cmod
; i
++, pModRef
++)
1370 NE_FreeModule( *pModRef
, call_wep
);
1373 /* Free the module storage */
1375 GlobalFreeAll16( hModule
);
1380 /**********************************************************************
1381 * FreeModule (KERNEL.46)
1383 BOOL16 WINAPI
FreeModule16( HMODULE16 hModule
)
1385 return NE_FreeModule( hModule
, TRUE
);
1389 /***********************************************************************
1390 * FreeLibrary (KERNEL.96)
1391 * FreeLibrary16 (KERNEL32.36)
1393 void WINAPI
FreeLibrary16( HINSTANCE16 handle
)
1395 TRACE("%04x\n", handle
);
1396 FreeModule16( handle
);
1400 /***********************************************************************
1401 * GetModuleHandle16 (KERNEL32.@)
1403 HMODULE16 WINAPI
GetModuleHandle16( LPCSTR name
)
1407 BYTE len
, *name_table
;
1408 char tmpstr
[MAX_PATH
];
1411 TRACE("(%s)\n", name
);
1413 if (!HIWORD(name
)) return GetExePtr(LOWORD(name
));
1418 lstrcpynA(tmpstr
, name
, sizeof(tmpstr
));
1420 /* If 'name' matches exactly the module name of a module:
1421 * Return its handle.
1423 for (hModule
= hFirstModule
; hModule
; hModule
= pModule
->next
)
1425 pModule
= NE_GetPtr( hModule
);
1426 if (!pModule
) break;
1427 if (pModule
->ne_flags
& NE_FFLAGS_WIN32
) continue;
1429 name_table
= (BYTE
*)pModule
+ pModule
->ne_restab
;
1430 if ((*name_table
== len
) && !strncmp(name
, (char*) name_table
+1, len
))
1434 /* If uppercased 'name' matches exactly the module name of a module:
1437 for (s
= tmpstr
; *s
; s
++) *s
= RtlUpperChar(*s
);
1439 for (hModule
= hFirstModule
; hModule
; hModule
= pModule
->next
)
1441 pModule
= NE_GetPtr( hModule
);
1442 if (!pModule
) break;
1443 if (pModule
->ne_flags
& NE_FFLAGS_WIN32
) continue;
1445 name_table
= (BYTE
*)pModule
+ pModule
->ne_restab
;
1446 /* FIXME: the strncasecmp is WRONG. It should not be case insensitive,
1447 * but case sensitive! (Unfortunately Winword 6 and subdlls have
1448 * lowercased module names, but try to load uppercase DLLs, so this
1449 * 'i' compare is just a quickfix until the loader handles that
1450 * correctly. -MM 990705
1452 if ((*name_table
== len
) && !NE_strncasecmp(tmpstr
, (const char*)name_table
+1, len
))
1456 /* If the base filename of 'name' matches the base filename of the module
1457 * filename of some module (case-insensitive compare):
1458 * Return its handle.
1461 /* basename: search backwards in passed name to \ / or : */
1462 s
= tmpstr
+ strlen(tmpstr
);
1465 if (s
[-1]=='/' || s
[-1]=='\\' || s
[-1]==':')
1470 /* search this in loaded filename list */
1471 for (hModule
= hFirstModule
; hModule
; hModule
= pModule
->next
)
1476 pModule
= NE_GetPtr( hModule
);
1477 if (!pModule
) break;
1478 if (!pModule
->fileinfo
) continue;
1479 if (pModule
->ne_flags
& NE_FFLAGS_WIN32
) continue;
1481 ofs
= (OFSTRUCT
*)((BYTE
*)pModule
+ pModule
->fileinfo
);
1482 loadedfn
= ((char*)ofs
->szPathName
) + strlen(ofs
->szPathName
);
1483 /* basename: search backwards in pathname to \ / or : */
1484 while (loadedfn
> (char*)ofs
->szPathName
)
1486 if (loadedfn
[-1]=='/' || loadedfn
[-1]=='\\' || loadedfn
[-1]==':')
1490 /* case insensitive compare ... */
1491 if (!NE_strcasecmp(loadedfn
, s
))
1498 /**********************************************************************
1499 * GetModuleName (KERNEL.27)
1501 BOOL16 WINAPI
GetModuleName16( HINSTANCE16 hinst
, LPSTR buf
, INT16 count
)
1506 if (!(pModule
= NE_GetPtr( hinst
))) return FALSE
;
1507 p
= (BYTE
*)pModule
+ pModule
->ne_restab
;
1508 if (count
> *p
) count
= *p
+ 1;
1511 memcpy( buf
, p
+ 1, count
- 1 );
1512 buf
[count
-1] = '\0';
1518 /**********************************************************************
1519 * GetModuleFileName (KERNEL.49)
1521 * See also: GetModuleFileNameA
1523 * This function returns short paths when the modules version field is < 4.0).
1525 * Even if invoked by second instance of a program,
1526 * it still returns path of first one.
1528 INT16 WINAPI
GetModuleFileName16( HINSTANCE16 hModule
, LPSTR lpFileName
,
1533 /* Win95 does not query hModule if set to 0 !
1534 * Is this wrong or maybe Win3.1 only ? */
1535 if (!hModule
) hModule
= GetCurrentTask();
1537 if (!(pModule
= NE_GetPtr( hModule
))) return 0;
1538 lstrcpynA( lpFileName
, NE_MODULE_NAME(pModule
), nSize
);
1539 if (pModule
->ne_expver
< 0x400)
1540 GetShortPathNameA(NE_MODULE_NAME(pModule
), lpFileName
, nSize
);
1541 TRACE("%04x -> '%s'\n", hModule
, lpFileName
);
1542 return strlen(lpFileName
);
1546 /**********************************************************************
1547 * GetModuleUsage (KERNEL.48)
1549 INT16 WINAPI
GetModuleUsage16( HINSTANCE16 hModule
)
1551 NE_MODULE
*pModule
= NE_GetPtr( hModule
);
1552 return pModule
? pModule
->count
: 0;
1556 /**********************************************************************
1557 * GetExpWinVer (KERNEL.167)
1559 WORD WINAPI
GetExpWinVer16( HMODULE16 hModule
)
1561 NE_MODULE
*pModule
= NE_GetPtr( hModule
);
1562 if ( !pModule
) return 0;
1563 return pModule
->ne_expver
;
1567 /***********************************************************************
1568 * WinExec (KERNEL.166)
1570 HINSTANCE16 WINAPI
WinExec16( LPCSTR lpCmdLine
, UINT16 nCmdShow
)
1572 LPCSTR p
, args
= NULL
;
1573 LPCSTR name_beg
, name_end
;
1574 LPSTR name
, cmdline
;
1577 char buffer
[MAX_PATH
];
1578 LOADPARAMS16 params
;
1581 if (*lpCmdLine
== '"') /* has to be only one and only at beginning ! */
1583 name_beg
= lpCmdLine
+1;
1584 p
= strchr ( lpCmdLine
+1, '"' );
1588 args
= strchr ( p
, ' ' );
1590 else /* yes, even valid with trailing '"' missing */
1591 name_end
= lpCmdLine
+strlen(lpCmdLine
);
1595 name_beg
= lpCmdLine
;
1596 args
= strchr( lpCmdLine
, ' ' );
1597 name_end
= args
? args
: lpCmdLine
+strlen(lpCmdLine
);
1600 if ((name_beg
== lpCmdLine
) && (!args
))
1601 { /* just use the original cmdline string as file name */
1602 name
= (LPSTR
)lpCmdLine
;
1606 if (!(name
= HeapAlloc( GetProcessHeap(), 0, name_end
- name_beg
+ 1 )))
1607 return ERROR_NOT_ENOUGH_MEMORY
;
1608 memcpy( name
, name_beg
, name_end
- name_beg
);
1609 name
[name_end
- name_beg
] = '\0';
1615 arglen
= strlen(args
);
1616 cmdline
= HeapAlloc( GetProcessHeap(), 0, 2 + arglen
);
1617 cmdline
[0] = (BYTE
)arglen
;
1618 strcpy( cmdline
+ 1, args
);
1622 cmdline
= HeapAlloc( GetProcessHeap(), 0, 2 );
1623 cmdline
[0] = cmdline
[1] = 0;
1626 TRACE("name: '%s', cmdline: '%.*s'\n", name
, cmdline
[0], &cmdline
[1]);
1629 showCmd
[1] = nCmdShow
;
1631 params
.hEnvironment
= 0;
1632 params
.cmdLine
= MapLS( cmdline
);
1633 params
.showCmd
= MapLS( showCmd
);
1634 params
.reserved
= 0;
1636 if (SearchPathA( NULL
, name
, ".exe", sizeof(buffer
), buffer
, NULL
))
1638 ret
= LoadModule16( buffer
, ¶ms
);
1640 else if (!contains_path( name
)) /* try 16-bit builtin */
1642 lstrcpynA( buffer
, name
, sizeof(buffer
) );
1643 if (strlen( buffer
) < sizeof(buffer
) - 4 && !strchr( buffer
, '.' )) strcat( buffer
, ".exe" );
1644 ret
= LoadModule16( buffer
, ¶ms
);
1645 if (ret
== ERROR_FILE_NOT_FOUND
) ret
= 21; /* it might be a 32-bit builtin too */
1647 else ret
= ERROR_FILE_NOT_FOUND
;
1649 UnMapLS( params
.cmdLine
);
1650 UnMapLS( params
.showCmd
);
1652 HeapFree( GetProcessHeap(), 0, cmdline
);
1653 if (name
!= lpCmdLine
) HeapFree( GetProcessHeap(), 0, name
);
1655 if (ret
== 21 || ret
== ERROR_BAD_FORMAT
) /* 32-bit module or unknown executable*/
1657 LOADPARAMS16 params
;
1660 showCmd
[1] = nCmdShow
;
1662 arglen
= strlen( lpCmdLine
);
1663 cmdline
= HeapAlloc( GetProcessHeap(), 0, arglen
+ 1 );
1664 cmdline
[0] = (BYTE
)arglen
;
1665 memcpy( cmdline
+ 1, lpCmdLine
, arglen
);
1667 params
.hEnvironment
= 0;
1668 params
.cmdLine
= MapLS( cmdline
);
1669 params
.showCmd
= MapLS( showCmd
);
1670 params
.reserved
= 0;
1672 ret
= LoadModule16( "winoldap.mod", ¶ms
);
1673 UnMapLS( params
.cmdLine
);
1674 UnMapLS( params
.showCmd
);
1679 /***********************************************************************
1680 * GetProcAddress (KERNEL.50)
1682 FARPROC16 WINAPI
GetProcAddress16( HMODULE16 hModule
, LPCSTR name
)
1687 if (!hModule
) hModule
= GetCurrentTask();
1688 hModule
= GetExePtr( hModule
);
1690 if (HIWORD(name
) != 0)
1692 ordinal
= NE_GetOrdinal( hModule
, name
);
1693 TRACE("%04x '%s'\n", hModule
, name
);
1697 ordinal
= LOWORD(name
);
1698 TRACE("%04x %04x\n", hModule
, ordinal
);
1700 if (!ordinal
) return NULL
;
1702 ret
= NE_GetEntryPoint( hModule
, ordinal
);
1704 TRACE("returning %p\n", ret
);
1709 /***************************************************************************
1710 * HasGPHandler (KERNEL.338)
1712 SEGPTR WINAPI
HasGPHandler16( SEGPTR address
)
1717 GPHANDLERDEF
*gpHandler
;
1719 if ( (hModule
= FarGetOwner16( SELECTOROF(address
) )) != 0
1720 && (gpOrdinal
= NE_GetOrdinal( hModule
, "__GP" )) != 0
1721 && (gpPtr
= (SEGPTR
)NE_GetEntryPointEx( hModule
, gpOrdinal
, FALSE
)) != 0
1722 && !IsBadReadPtr16( gpPtr
, sizeof(GPHANDLERDEF
) )
1723 && (gpHandler
= MapSL( gpPtr
)) != NULL
)
1725 while (gpHandler
->selector
)
1727 if ( SELECTOROF(address
) == gpHandler
->selector
1728 && OFFSETOF(address
) >= gpHandler
->rangeStart
1729 && OFFSETOF(address
) < gpHandler
->rangeEnd
)
1730 return MAKESEGPTR( gpHandler
->selector
, gpHandler
->handler
);
1739 /**********************************************************************
1740 * GetModuleHandle (KERNEL.47)
1742 * Find a module from a module name.
1744 * NOTE: The current implementation works the same way the Windows 95 one
1745 * does. Do not try to 'fix' it, fix the callers.
1746 * + It does not do ANY extension handling (except that strange .EXE bit)!
1747 * + It does not care about paths, just about basenames. (same as Windows)
1751 * the win16 module handle if found
1753 * HIWORD (undocumented, see "Undocumented Windows", chapter 5):
1754 * Always hFirstModule
1756 DWORD WINAPI
WIN16_GetModuleHandle( SEGPTR name
)
1758 if (HIWORD(name
) == 0)
1759 return MAKELONG(GetExePtr( (HINSTANCE16
)name
), hFirstModule
);
1760 return MAKELONG(GetModuleHandle16( MapSL(name
)), hFirstModule
);
1763 /**********************************************************************
1764 * NE_GetModuleByFilename
1766 static HMODULE16
NE_GetModuleByFilename( LPCSTR name
)
1770 BYTE len
, *name_table
;
1771 char tmpstr
[MAX_PATH
];
1774 lstrcpynA(tmpstr
, name
, sizeof(tmpstr
));
1776 /* If the base filename of 'name' matches the base filename of the module
1777 * filename of some module (case-insensitive compare):
1778 * Return its handle.
1781 /* basename: search backwards in passed name to \ / or : */
1782 s
= tmpstr
+ strlen(tmpstr
);
1785 if (s
[-1]=='/' || s
[-1]=='\\' || s
[-1]==':')
1790 /* search this in loaded filename list */
1791 for (hModule
= hFirstModule
; hModule
; hModule
= pModule
->next
)
1796 pModule
= NE_GetPtr( hModule
);
1797 if (!pModule
) break;
1798 if (!pModule
->fileinfo
) continue;
1799 if (pModule
->ne_flags
& NE_FFLAGS_WIN32
) continue;
1801 ofs
= (OFSTRUCT
*)((BYTE
*)pModule
+ pModule
->fileinfo
);
1802 loadedfn
= ((char*)ofs
->szPathName
) + strlen(ofs
->szPathName
);
1803 /* basename: search backwards in pathname to \ / or : */
1804 while (loadedfn
> (char*)ofs
->szPathName
)
1806 if (loadedfn
[-1]=='/' || loadedfn
[-1]=='\\' || loadedfn
[-1]==':')
1810 /* case insensitive compare ... */
1811 if (!NE_strcasecmp(loadedfn
, s
))
1814 /* If basename (without ext) matches the module name of a module:
1815 * Return its handle.
1818 if ( (p
= strrchr( s
, '.' )) != NULL
) *p
= '\0';
1821 for (hModule
= hFirstModule
; hModule
; hModule
= pModule
->next
)
1823 pModule
= NE_GetPtr( hModule
);
1824 if (!pModule
) break;
1825 if (pModule
->ne_flags
& NE_FFLAGS_WIN32
) continue;
1827 name_table
= (BYTE
*)pModule
+ pModule
->ne_restab
;
1828 if ((*name_table
== len
) && !NE_strncasecmp(s
, (const char*)name_table
+1, len
))
1835 /***********************************************************************
1836 * GetProcAddress16 (KERNEL32.37)
1837 * Get procaddress in 16bit module from win32... (kernel32 undoc. ordinal func)
1839 FARPROC16 WINAPI
WIN32_GetProcAddress16( HMODULE hModule
, LPCSTR name
)
1841 if (!hModule
) return 0;
1842 if (HIWORD(hModule
))
1844 WARN("hModule is Win32 handle (%p)\n", hModule
);
1847 return GetProcAddress16( LOWORD(hModule
), name
);
1850 /***************************************************************************
1851 * IsRomModule (KERNEL.323)
1853 BOOL16 WINAPI
IsRomModule16( HMODULE16 unused
)
1858 /***************************************************************************
1859 * IsRomFile (KERNEL.326)
1861 BOOL16 WINAPI
IsRomFile16( HFILE16 unused
)
1866 /***********************************************************************
1867 * create_dummy_module
1869 * Create a dummy NE module for Win32 or Winelib.
1871 static HMODULE16
create_dummy_module( HMODULE module32
)
1875 SEGTABLEENTRY
*pSegment
;
1878 const char *basename
, *s
;
1881 char filename
[MAX_PATH
];
1882 IMAGE_NT_HEADERS
*nt
= RtlImageNtHeader( module32
);
1884 if (!nt
) return ERROR_BAD_FORMAT
;
1886 /* Extract base filename */
1887 len
= GetModuleFileNameA( module32
, filename
, sizeof(filename
) );
1888 if (!len
|| len
>= sizeof(filename
)) return ERROR_BAD_FORMAT
;
1889 basename
= strrchr(filename
, '\\');
1890 if (!basename
) basename
= filename
;
1892 len
= strlen(basename
);
1893 if ((s
= strchr(basename
, '.'))) len
= s
- basename
;
1895 /* Allocate module */
1896 of_size
= sizeof(OFSTRUCT
) - sizeof(ofs
->szPathName
)
1897 + strlen(filename
) + 1;
1898 size
= sizeof(NE_MODULE
) +
1899 /* loaded file info */
1900 ((of_size
+ 3) & ~3) +
1901 /* segment table: DS,CS */
1902 2 * sizeof(SEGTABLEENTRY
) +
1905 /* several empty tables */
1908 hModule
= GlobalAlloc16( GMEM_MOVEABLE
| GMEM_ZEROINIT
, size
);
1909 if (!hModule
) return ERROR_BAD_FORMAT
;
1911 FarSetOwner16( hModule
, hModule
);
1912 pModule
= GlobalLock16( hModule
);
1914 /* Set all used entries */
1915 pModule
->ne_magic
= IMAGE_OS2_SIGNATURE
;
1918 pModule
->ne_flags
= NE_FFLAGS_WIN32
;
1919 pModule
->ne_autodata
= 0;
1920 pModule
->ne_sssp
= MAKESEGPTR( 0, 1 );
1921 pModule
->ne_csip
= MAKESEGPTR( 0, 2 );
1922 pModule
->ne_heap
= 0;
1923 pModule
->ne_stack
= 0;
1924 pModule
->ne_cseg
= 2;
1925 pModule
->ne_cmod
= 0;
1926 pModule
->ne_cbnrestab
= 0;
1927 pModule
->fileinfo
= sizeof(NE_MODULE
);
1928 pModule
->ne_exetyp
= NE_OSFLAGS_WINDOWS
;
1929 pModule
->self
= hModule
;
1930 pModule
->module32
= module32
;
1932 /* Set version and flags */
1933 pModule
->ne_expver
= ((nt
->OptionalHeader
.MajorSubsystemVersion
& 0xff) << 8 ) |
1934 (nt
->OptionalHeader
.MinorSubsystemVersion
& 0xff);
1935 if (nt
->FileHeader
.Characteristics
& IMAGE_FILE_DLL
)
1936 pModule
->ne_flags
|= NE_FFLAGS_LIBMODULE
| NE_FFLAGS_SINGLEDATA
;
1938 /* Set loaded file information */
1939 ofs
= (OFSTRUCT
*)(pModule
+ 1);
1940 memset( ofs
, 0, of_size
);
1941 ofs
->cBytes
= of_size
< 256 ? of_size
: 255; /* FIXME */
1942 strcpy( ofs
->szPathName
, filename
);
1944 pSegment
= (SEGTABLEENTRY
*)((char*)(pModule
+ 1) + ((of_size
+ 3) & ~3));
1945 pModule
->ne_segtab
= (char *)pSegment
- (char *)pModule
;
1948 pSegment
->flags
= NE_SEGFLAGS_DATA
;
1949 pSegment
->minsize
= 0x1000;
1952 pSegment
->flags
= 0;
1956 pStr
= (char *)pSegment
;
1957 pModule
->ne_restab
= pStr
- (char *)pModule
;
1960 lstrcpynA( pStr
+1, basename
, len
+1 );
1963 /* All tables zero terminated */
1964 pModule
->ne_rsrctab
= pModule
->ne_imptab
= pModule
->ne_enttab
= pStr
- (char *)pModule
;
1966 NE_RegisterModule( pModule
);
1967 pModule
->owner32
= LoadLibraryA( filename
); /* increment the ref count of the 32-bit module */
1971 /***********************************************************************
1972 * PrivateLoadLibrary (KERNEL32.@)
1974 * FIXME: rough guesswork, don't know what "Private" means
1976 HINSTANCE16 WINAPI
PrivateLoadLibrary(LPCSTR libname
)
1978 return LoadLibrary16(libname
);
1981 /***********************************************************************
1982 * PrivateFreeLibrary (KERNEL32.@)
1984 * FIXME: rough guesswork, don't know what "Private" means
1986 void WINAPI
PrivateFreeLibrary(HINSTANCE16 handle
)
1988 FreeLibrary16(handle
);
1991 /***********************************************************************
1992 * LoadLibrary32 (KERNEL.452)
1993 * LoadSystemLibrary32 (KERNEL.482)
1995 HMODULE WINAPI
LoadLibrary32_16( LPCSTR libname
)
2000 ReleaseThunkLock( &count
);
2001 hModule
= LoadLibraryA( libname
);
2002 RestoreThunkLock( count
);
2006 /***************************************************************************
2007 * MapHModuleLS (KERNEL32.@)
2009 HMODULE16 WINAPI
MapHModuleLS(HMODULE hmod
)
2015 return TASK_GetCurrent()->hInstance
;
2017 return LOWORD(hmod
); /* we already have a 16 bit module handle */
2018 pModule
= GlobalLock16(hFirstModule
);
2020 if (pModule
->module32
== hmod
)
2021 return pModule
->self
;
2022 pModule
= GlobalLock16(pModule
->next
);
2024 if ((ret
= create_dummy_module( hmod
)) < 32)
2032 /***************************************************************************
2033 * MapHModuleSL (KERNEL32.@)
2035 HMODULE WINAPI
MapHModuleSL(HMODULE16 hmod
)
2040 TDB
*pTask
= TASK_GetCurrent();
2041 hmod
= pTask
->hModule
;
2043 pModule
= GlobalLock16(hmod
);
2044 if ((pModule
->ne_magic
!= IMAGE_OS2_SIGNATURE
) || !(pModule
->ne_flags
& NE_FFLAGS_WIN32
))
2046 return pModule
->module32
;
2049 /***************************************************************************
2050 * MapHInstLS (KERNEL.472)
2052 void WINAPI
MapHInstLS16( CONTEXT
*context
)
2054 context
->Eax
= MapHModuleLS( (HMODULE
)context
->Eax
);
2057 /***************************************************************************
2058 * MapHInstSL (KERNEL.473)
2060 void WINAPI
MapHInstSL16( CONTEXT
*context
)
2062 context
->Eax
= (DWORD
)MapHModuleSL( context
->Eax
);
2065 /***************************************************************************
2066 * MapHInstLS (KERNEL32.@)
2068 __ASM_STDCALL_FUNC( MapHInstLS
, 0,
2070 "call " __ASM_NAME("MapHModuleLS") __ASM_STDCALL(4) "\n\t"
2073 /***************************************************************************
2074 * MapHInstSL (KERNEL32.@)
2076 __ASM_STDCALL_FUNC( MapHInstSL
, 0,
2078 "call " __ASM_NAME("MapHModuleSL") __ASM_STDCALL(4) "\n\t"
2081 /***************************************************************************
2082 * MapHInstLS_PN (KERNEL32.@)
2084 __ASM_STDCALL_FUNC( MapHInstLS_PN
, 0,
2085 "testl %eax,%eax\n\t"
2088 "call " __ASM_NAME("MapHModuleLS") __ASM_STDCALL(4) "\n"
2091 /***************************************************************************
2092 * MapHInstSL_PN (KERNEL32.@)
2094 __ASM_STDCALL_FUNC( MapHInstSL_PN
, 0,
2095 "andl $0xffff,%eax\n\t"
2098 "call " __ASM_NAME("MapHModuleSL") __ASM_STDCALL(4) "\n"