source: trunk/kStuff/kLdr/kLdr.h@ 3567

Last change on this file since 3567 was 3567, checked in by bird, 18 years ago

Use the new type system.

  • Property svn:keywords set to Id
File size: 57.0 KB
Line 
1/* $Id: kLdr.h 3567 2007-08-27 19:54:05Z bird $ */
2/** @file
3 *
4 * kLdr - The Dynamic Loader.
5 *
6 * Copyright (c) 2006 knut st. osmundsen <bird@anduin.net>
7 *
8 *
9 * This file is part of kLdr.
10 *
11 * kLdr is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * kLdr is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with kLdr; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 *
25 */
26
27#ifndef ___kLdr_h___
28#define ___kLdr_h___
29
30#ifdef __cplusplus
31extern "C" {
32#endif
33
34/*
35 * Include the base typedefs and macros.
36 */
37#include "kLdrBase.h"
38
39
40/** @defgroup grp_kLdrBasic kLdr Basic Types
41 * @{ */
42
43/** The kLdr address type. */
44typedef KU64 KLDRADDR;
45/** Pointer to a kLdr address. */
46typedef KLDRADDR *PKLDRADDR;
47/** Pointer to a const kLdr address. */
48typedef const KLDRADDR *PCKLDRADDR;
49
50/** NIL address. */
51#define NIL_KLDRADDR (~(KU64)0)
52
53/** @def PRI_KLDRADDR
54 * printf format type. */
55#ifdef _MSC_VER
56# define PRI_KLDRADDR "I64x"
57#else
58# define PRI_KLDRADDR "llx"
59#endif
60
61
62/** The kLdr size type. */
63typedef KU64 KLDRSIZE;
64/** Pointer to a kLdr size. */
65typedef KLDRSIZE *PKLDRSIZE;
66/** Pointer to a const kLdr size. */
67typedef const KLDRSIZE *PCKLDRSIZE;
68
69/** @def PRI_KLDRSIZE
70 * printf format type. */
71#ifdef _MSC_VER
72# define PRI_KLDRSIZE "I64x"
73#else
74# define PRI_KLDRSIZE "llx"
75#endif
76
77
78/** The kLdr file offset type. */
79typedef long KLDRFOFF;
80/** Pointer to a kLdr file offset type. */
81typedef KLDRFOFF *PKLDRFOFF;
82/** Pointer to a const kLdr file offset type. */
83typedef const KLDRFOFF *PCKLDRFOFF;
84
85/** @def PRI_KLDRFOFF
86 * printf format type. */
87#define PRI_KLDRFOFF "lx"
88
89
90/**
91 * Union of all the integer types.
92 */
93typedef union KLDRU
94{
95 KI8 i8; /**< KI8 view. */
96 KU8 u8; /**< KU8 view. */
97 KI16 i16; /**< KI16 view. */
98 KU16 u16; /**< KU16 view. */
99 KI32 i32; /**< KI32 view. */
100 KU32 u32; /**< KU32 view. */
101 KI64 i64; /**< KI64 view. */
102 KU64 u64; /**< KU64 view. */
103
104 KI8 ai8[8]; /**< KI8 array view . */
105 KU8 au8[8]; /**< KU8 array view. */
106 KI16 ai16[4];/**< KI16 array view . */
107 KU16 au16[4];/**< KU16 array view. */
108 KI32 ai32[2];/**< KI32 array view . */
109 KU32 au32[2];/**< KU32 array view. */
110
111 signed char ch; /**< signed char view. */
112 unsigned char uch; /**< unsigned char view. */
113 signed short s; /**< signed short view. */
114 unsigned short us; /**< unsigned short view. */
115 signed int i; /**< signed int view. */
116 unsigned int u; /**< unsigned int view. */
117 signed long l; /**< signed long view. */
118 unsigned long ul; /**< unsigned long view. */
119 void *pv; /**< void pointer view. */
120
121 KLDRADDR Addr; /**< kLdr address view. */
122 KLDRSIZE Size; /**< kLdr size view. */
123} KLDRU;
124/** Pointer to an integer union. */
125typedef KLDRU *PKLDRU;
126/** Pointer to a const integer union. */
127typedef const KLDRU *PCKLDRU;
128
129
130/**
131 * Union of pointers to all the integer types.
132 */
133typedef union KLDRPU
134{
135 KI8 *pi8; /**< KI8 view. */
136 KU8 *pu8; /**< KU8 view. */
137 KI16 *pi16; /**< KI16 view. */
138 KU16 *pu16; /**< KU16 view. */
139 KI32 *pi32; /**< KI32 view. */
140 KU32 *pu32; /**< KU32 view. */
141 KI64 *pi64; /**< KI64 view. */
142 KU64 *pu64; /**< KU64 view. */
143
144 signed char *pch; /**< signed char view. */
145 unsigned char *puch; /**< unsigned char view. */
146 signed short *ps; /**< signed short view. */
147 unsigned short *pus; /**< unsigned short view. */
148 signed int *pi; /**< signed int view. */
149 unsigned int *pu; /**< unsigned int view. */
150 signed long *pl; /**< signed long view. */
151 unsigned long *pul; /**< unsigned long view. */
152 void *pv; /**< void pointer view. */
153} KLDRPU;
154/** Pointer to an integer pointer union. */
155typedef KLDRPU *PKLDRPU;
156/** Pointer to a const integer pointer union. */
157typedef const KLDRPU *PCKLDRPU;
158
159
160/**
161 * Memory Mapping Protections.
162 *
163 * @remark Shared segments can be mapped using the non copy-on-write variant.
164 * (Normally the copy-on-write variant is used because changes must
165 * be private and not shared with other processes mapping the file.)
166 */
167typedef enum KLDRPROT
168{
169 /** The usual invalid 0. */
170 KLDRPROT_INVALID = 0,
171 /** No access (page not present). */
172 KLDRPROT_NOACCESS,
173 /** Read only. */
174 KLDRPROT_READONLY,
175 /** Read & write. */
176 KLDRPROT_READWRITE,
177 /** Read & copy on write. */
178 KLDRPROT_WRITECOPY,
179 /** Execute only. */
180 KLDRPROT_EXECUTE,
181 /** Execute & read. */
182 KLDRPROT_EXECUTE_READ,
183 /** Execute, read & write. */
184 KLDRPROT_EXECUTE_READWRITE,
185 /** Execute, read & copy on write. */
186 KLDRPROT_EXECUTE_WRITECOPY,
187 /** The usual end value. (exclusive) */
188 KLDRPROT_END,
189 /** Blow the type up to 32-bits. */
190 KLDRPROT_32BIT_HACK = 0x7fffffff
191} KLDRPROT;
192
193/** Pointer to a loader segment. */
194typedef struct KLDRSEG *PKLDRSEG;
195/** Pointer to a loader segment. */
196typedef const struct KLDRSEG *PCKLDRSEG;
197
198/** @} */
199
200
201/** @defgroup grp_kLdrRdr kLdrRdr - The file provider
202 * @{ */
203
204/** Pointer to a file provider instance core. */
205typedef struct KLDRRDR *PKLDRRDR;
206/** Pointer to a file provider instance core pointer. */
207typedef struct KLDRRDR **PPKLDRRDR;
208
209/**
210 * File provider instance operations.
211 */
212typedef struct KLDRRDROPS
213{
214 /** The name of this file provider. */
215 const char *pszName;
216 /** Pointer to the next file provider. */
217 const struct KLDRRDROPS *pNext;
218
219 /** Try create a new file provider instance.
220 *
221 * @returns 0 on success, OS specific error code on failure.
222 * @param ppRdr Where to store the file provider instance.
223 * @param pszFilename The filename to open.
224 */
225 int (* pfnCreate)( PPKLDRRDR ppRdr, const char *pszFilename);
226 /** Destroy the file provider instance.
227 *
228 * @returns 0 on success, OS specific error code on failure.
229 * On failure, the file provider instance will be in an indeterminate state - don't touch it!
230 * @param pRdr The file provider instance.
231 */
232 int (* pfnDestroy)( PKLDRRDR pRdr);
233 /** @copydoc kLdrRdrRead */
234 int (* pfnRead)( PKLDRRDR pRdr, void *pvBuf, KSIZE cb, KLDRFOFF off);
235 /** @copydoc kLdrRdrAllMap */
236 int (* pfnAllMap)( PKLDRRDR pRdr, const void **ppvBits);
237 /** @copydoc kLdrRdrAllUnmap */
238 int (* pfnAllUnmap)(PKLDRRDR pRdr, const void *pvBits);
239 /** @copydoc kLdrRdrSize */
240 KLDRFOFF (* pfnSize)( PKLDRRDR pRdr);
241 /** @copydoc kLdrRdrTell */
242 KLDRFOFF (* pfnTell)( PKLDRRDR pRdr);
243 /** @copydoc kLdrRdrName */
244 const char * (* pfnName)(PKLDRRDR pRdr);
245 /** @copydoc kLdrRdrPageSize */
246 KSIZE (* pfnPageSize)(PKLDRRDR pRdr);
247 /** @copydoc kLdrRdrMap */
248 int (* pfnMap)( PKLDRRDR pRdr, void **ppvBase, KU32 cSegments, PCKLDRSEG paSegments, unsigned fFixed);
249 /** @copydoc kLdrRdrRefresh */
250 int (* pfnRefresh)( PKLDRRDR pRdr, void *pvBase, KU32 cSegments, PCKLDRSEG paSegments);
251 /** @copydoc kLdrRdrProtect */
252 int (* pfnProtect)( PKLDRRDR pRdr, void *pvBase, KU32 cSegments, PCKLDRSEG paSegments, unsigned fUnprotectOrProtect);
253 /** @copydoc kLdrRdrUnmap */
254 int (* pfnUnmap)( PKLDRRDR pRdr, void *pvBase, KU32 cSegments, PCKLDRSEG paSegments);
255 /** @copydoc kLdrRdrDone */
256 void (* pfnDone)( PKLDRRDR pRdr);
257 /** The usual non-zero dummy that makes sure we've initialized all members. */
258 KU32 u32Dummy;
259} KLDRRDROPS;
260/** Pointer to file provider operations. */
261typedef KLDRRDROPS *PKLDRRDROPS;
262/** Pointer to const file provider operations. */
263typedef const KLDRRDROPS *PCKLDRRDROPS;
264
265
266/**
267 * File provider instance core.
268 */
269typedef struct KLDRRDR
270{
271 /** Magic number (KLDRRDR_MAGIC). */
272 KU32 u32Magic;
273 /** Pointer to the file provider operations. */
274 PCKLDRRDROPS pOps;
275} KLDRRDR;
276
277/** The magic for KLDRRDR::u32Magic. (Katsu Aki (Katsuaki Nakamura)) */
278#define KLDRRDR_MAGIC 0x19610919
279
280void kLdrRdrAddProvider(PKLDRRDROPS pAdd);
281
282int kLdrRdrOpen( PPKLDRRDR ppRdr, const char *pszFilename);
283int kLdrRdrClose( PKLDRRDR pRdr);
284int kLdrRdrRead( PKLDRRDR pRdr, void *pvBuf, KSIZE cb, KLDRFOFF off);
285int kLdrRdrAllMap( PKLDRRDR pRdr, const void **ppvBits);
286int kLdrRdrAllUnmap(PKLDRRDR pRdr, const void *pvBits);
287KLDRFOFF kLdrRdrSize( PKLDRRDR pRdr);
288KLDRFOFF kLdrRdrTell( PKLDRRDR pRdr);
289const char *kLdrRdrName(PKLDRRDR pRdr);
290KSIZE kLdrRdrPageSize(PKLDRRDR pRdr);
291int kLdrRdrMap( PKLDRRDR pRdr, void **ppvBase, KU32 cSegments, PCKLDRSEG paSegments, unsigned fFixed);
292int kLdrRdrRefresh( PKLDRRDR pRdr, void *pvBase, KU32 cSegments, PCKLDRSEG paSegments);
293int kLdrRdrProtect( PKLDRRDR pRdr, void *pvBase, KU32 cSegments, PCKLDRSEG paSegments, unsigned fUnprotectOrProtect);
294int kLdrRdrUnmap( PKLDRRDR pRdr, void *pvBase, KU32 cSegments, PCKLDRSEG paSegments);
295void kLdrRdrDone( PKLDRRDR pRdr);
296
297/** @} */
298
299
300
301/** @defgroup grp_kLdrMod kLdrMod - The executable image intepreter
302 * @{ */
303
304/**
305 * CPU Architecture.
306 * @todo Double check the non intel architectures.
307 */
308typedef enum KLDRARCH
309{
310 /** The usual invalid one. */
311 KLDRARCH_INVALID = 0,
312 /** Clone or Intel 16-bit x86. */
313 KLDRARCH_X86_16,
314 /** Clone or Intel 32-bit x86. */
315 KLDRARCH_X86_32,
316 /** AMD64 (including clones). */
317 KLDRARCH_AMD64,
318 /** Itanic (64-bit). */
319 KLDRARCH_IA64,
320 /** ALPHA (64-bit). */
321 KLDRARCH_ALPHA,
322 /** ALPHA limited to 32-bit. */
323 KLDRARCH_ALPHA_32,
324 /** 32-bit ARM. */
325 KLDRARCH_ARM_32,
326 /** 64-bit ARM. */
327 KLDRARCH_ARM_64,
328 /** 32-bit MIPS. */
329 KLDRARCH_MIPS_32,
330 /** 64-bit MIPS. */
331 KLDRARCH_MIPS_64,
332 /** 32-bit PowerPC. */
333 KLDRARCH_POWERPC_32,
334 /** 64-bit PowerPC. */
335 KLDRARCH_POWERPC_64,
336 /** 32-bit SPARC. */
337 KLDRARCH_SPARC_32,
338 /** 64-bit SPARC. */
339 KLDRARCH_SPARC_64,
340 /** The end of the valid architecture values (exclusive). */
341 KLDRARCH_END,
342 /** Hack to blow the type up to 32-bit. */
343 KLDRARCH_32BIT_HACK = 0x7fffffff
344} KLDRARCH;
345/** Pointer to a CPU architecture type. */
346typedef KLDRARCH *PKLDRARCH;
347
348/**
349 * CPU models.
350 */
351typedef enum KLDRCPU
352{
353 /** The usual invalid cpu. */
354 KLDRCPU_INVALID = 0,
355 /** @name KLDRARCH_X86_16
356 * @{ */
357 KLDRCPU_I8086,
358 KLDRCPU_I8088,
359 KLDRCPU_I80186,
360 KLDRCPU_I80286,
361 KLDRCPU_I386_16,
362 KLDRCPU_I486_16,
363 KLDRCPU_I486SX_16,
364 KLDRCPU_I586_16,
365 KLDRCPU_I686_16,
366 KLDRCPU_P4_16,
367 KLDRCPU_CORE2_16,
368 KLDRCPU_K6_16,
369 KLDRCPU_K7_16,
370 KLDRCPU_K8_16,
371 KLDRCPU_FIRST_X86_16 = KLDRCPU_I8086,
372 KLDRCPU_LAST_X86_16 = KLDRCPU_K8_16,
373 /** @} */
374
375 /** @name KLDRARCH_X86_32
376 * @{ */
377 KLDRCPU_X86_32_BLEND,
378 KLDRCPU_I386,
379 KLDRCPU_I486,
380 KLDRCPU_I486SX,
381 KLDRCPU_I586,
382 KLDRCPU_I686,
383 KLDRCPU_P4,
384 KLDRCPU_CORE2_32,
385 KLDRCPU_K6,
386 KLDRCPU_K7,
387 KLDRCPU_K8_32,
388 KLDRCPU_FIRST_X86_32 = KLDRCPU_I386,
389 KLDRCPU_LAST_X86_32 = KLDRCPU_K8_32,
390 /** @} */
391
392 /** @name KLDRARCH_AMD64
393 * @{ */
394 KLDRCPU_AMD64_BLEND,
395 KLDRCPU_K8,
396 KLDRCPU_P4_64,
397 KLDRCPU_CORE2,
398 KLDRCPU_FIRST_AMD64 = KLDRCPU_K8,
399 KLDRCPU_LAST_AMD64 = KLDRCPU_CORE2,
400 /** @} */
401
402 /** The end of the valid cpu values (exclusive). */
403 KLDRCPU_END,
404 /** Hack to blow the type up to 32-bit. */
405 KLDRCPU_32BIT_HACK = 0x7fffffff
406} KLDRCPU;
407/** Pointer to a CPU type. */
408typedef KLDRCPU *PKLDRCPU;
409
410void kLdrGetArchCpu(PKLDRARCH penmArch, PKLDRCPU penmCpu);
411int kLdrCompareCpus(KLDRARCH enmCodeArch, KLDRCPU enmCodeCpu, KLDRARCH enmArch, KLDRCPU enmCpu);
412
413
414/**
415 * Debug info type (from the loader point of view).
416 */
417typedef enum KLDRDBGINFOTYPE
418{
419 /** The usual invalid enum value. */
420 KLDRDBGINFOTYPE_INVALID = 0,
421 /** Unknown debug info format. */
422 KLDRDBGINFOTYPE_UNKNOWN,
423 /** Stabs. */
424 KLDRDBGINFOTYPE_STABS,
425 /** Debug With Arbitrary Record Format (DWARF). */
426 KLDRDBGINFOTYPE_DWARF,
427 /** Microsoft Codeview debug info. */
428 KLDRDBGINFOTYPE_CODEVIEW,
429 /** Watcom debug info. */
430 KLDRDBGINFOTYPE_WATCOM,
431 /** IBM High Level Language debug info.. */
432 KLDRDBGINFOTYPE_HLL,
433 /** The end of the valid debug info values (exclusive). */
434 KLDRDBGINFOTYPE_END,
435 /** Blow the type up to 32-bit. */
436 KLDRDBGINFOTYPE_32BIT_HACK = 0x7fffffff
437} KLDRDBGINFOTYPE;
438/** Pointer to a kLdr debug info type. */
439typedef KLDRDBGINFOTYPE *PKLDRDBGINFOTYPE;
440
441
442/**
443 * Stack information.
444 */
445typedef struct KLDRSTACKINFO
446{
447 /** The base address of the stack (sub) segment.
448 * Set this to NIL_KLDRADDR if the module doesn't include any stack segment. */
449 KLDRADDR Address;
450 /** The base address of the stack (sub) segment, link address.
451 * Set this to NIL_KLDRADDR if the module doesn't include any stack (sub)segment. */
452 KLDRADDR LinkAddress;
453 /** The stack size of the main thread.
454 * If no stack (sub)segment in the module, this is the stack size of the main thread.
455 * If the module doesn't contain this kind of information this field will be set to 0. */
456 KLDRSIZE cbStack;
457 /** The stack size of non-main threads.
458 * If the module doesn't contain this kind of information this field will be set to 0. */
459 KLDRSIZE cbStackThread;
460} KLDRSTACKINFO;
461/** Pointer to stack information. */
462typedef KLDRSTACKINFO *PKLDRSTACKINFO;
463/** Pointer to const stack information. */
464typedef const KLDRSTACKINFO *PCKLDRSTACKINFO;
465
466
467/**
468 * Loader segment.
469 */
470typedef struct KLDRSEG
471{
472 /** Variable free to use for the kLdr user. */
473 void *pvUser;
474 /** The segment name. (Might not be zero terminated!) */
475 const char *pchName;
476 /** The length of the segment name. */
477 KU32 cchName;
478 /** The flat selector to use for the segment (i.e. data/code).
479 * Primarily a way for the user to specify selectors for the LX/LE and NE interpreters. */
480 KU16 SelFlat;
481 /** The 16-bit selector to use for the segment.
482 * Primarily a way for the user to specify selectors for the LX/LE and NE interpreters. */
483 KU16 Sel16bit;
484 /** Segment flags. */
485 KU32 fFlags;
486 /** The segment protection. */
487 KLDRPROT enmProt;
488 /** The size of the segment. */
489 KLDRSIZE cb;
490 /** The required segment alignment.
491 * The to 0 if the segment isn't supposed to be mapped. */
492 KLDRADDR Alignment;
493 /** The link address.
494 * Set to NIL_KLDRADDR if the segment isn't supposed to be
495 * mapped or if the image doesn't have link addresses. */
496 KLDRADDR LinkAddress;
497 /** File offset of the segment.
498 * Set to -1 if no file backing (like BSS). */
499 KLDRFOFF offFile;
500 /** Size of the file bits of the segment.
501 * Set to -1 if no file backing (like BSS). */
502 KLDRFOFF cbFile;
503 /** The relative virtual address when mapped.
504 * Set to NIL_KLDRADDR if the segment isn't supposed to be mapped. */
505 KLDRADDR RVA;
506 /** The size of the segment including the alignment gap up to the next segment when mapped. */
507 KSIZE cbMapped;
508 /** The address the segment was mapped at by kLdrModMap().
509 * Set to 0 if not mapped. */
510 KUPTR MapAddress;
511} KLDRSEG;
512
513
514/** @name Segment flags
515 * @{ */
516/** The segment is 16-bit. When not set the default of the target architecture is assumed. */
517#define KLDRSEG_FLAG_16BIT 1
518/** The segment requires a 16-bit selector alias. (OS/2) */
519#define KLDRSEG_FLAG_OS2_ALIAS16 2
520/** Conforming segment (x86 weirdness). (OS/2) */
521#define KLDRSEG_FLAG_OS2_CONFORM 4
522/** IOPL (ring-2) segment. (OS/2) */
523#define KLDRSEG_FLAG_OS2_IOPL 8
524/** @} */
525
526
527/**
528 * Loader module format.
529 */
530typedef enum KLDRFMT
531{
532 /** The usual invalid 0 format. */
533 KLDRFMT_INVALID = 0,
534 /** The native OS loader. */
535 KLDRFMT_NATIVE,
536 /** The AOUT loader. */
537 KLDRFMT_AOUT,
538 /** The ELF loader. */
539 KLDRFMT_ELF,
540 /** The LX loader. */
541 KLDRFMT_LX,
542 /** The Mach-O loader. */
543 KLDRFMT_MACHO,
544 /** The PE loader. */
545 KLDRFMT_PE,
546 /** The end of the valid format values (exclusive). */
547 KLDRFMT_END,
548 /** Hack to blow the type up to 32-bit. */
549 KLDRFMT_32BIT_HACK = 0x7fffffff
550} KLDRFMT;
551
552
553/**
554 * Loader module type.
555 */
556typedef enum KLDRTYPE
557{
558 /** The usual invalid 0 type. */
559 KLDRTYPE_INVALID = 0,
560 /** Object file. */
561 KLDRTYPE_OBJECT,
562 /** Executable module, fixed load address. */
563 KLDRTYPE_EXECUTABLE_FIXED,
564 /** Executable module, relocatable, non-fixed load address. */
565 KLDRTYPE_EXECUTABLE_RELOCATABLE,
566 /** Executable module, position independent code, non-fixed load address. */
567 KLDRTYPE_EXECUTABLE_PIC,
568 /** Shared library, fixed load address.
569 * Typically a system library. */
570 KLDRTYPE_SHARED_LIBRARY_FIXED,
571 /** Shared library, relocatable, non-fixed load address. */
572 KLDRTYPE_SHARED_LIBRARY_RELOCATABLE,
573 /** Shared library, position independent code, non-fixed load address. */
574 KLDRTYPE_SHARED_LIBRARY_PIC,
575 /** DLL that contains no code or data only imports and exports. (Chiefly OS/2.) */
576 KLDRTYPE_FORWARDER_DLL,
577 /** Core or dump. */
578 KLDRTYPE_CORE,
579 /** The end of the valid types values (exclusive). */
580 KLDRTYPE_END,
581 /** Hack to blow the type up to 32-bit. */
582 KLDRTYPE_32BIT_HACK = 0x7fffffff
583} KLDRTYPE;
584
585
586/**
587 * Loader endian indicator.
588 */
589typedef enum KLDRENDIAN
590{
591 /** The usual invalid endian. */
592 KLDRENDIAN_INVALID,
593 /** Little endian. */
594 KLDRENDIAN_LITTLE,
595 /** Bit endian. */
596 KLDRENDIAN_BIG,
597 /** Endianness doesn't have a meaning in the context. */
598 KLDRENDIAN_NA,
599 /** The end of the valid endian values (exclusive). */
600 KLDRENDIAN_END,
601 /** Hack to blow the type up to 32-bit. */
602 KLDRENDIAN_32BIT_HACK = 0x7fffffff
603} KLDRENDIAN;
604
605
606/** Pointer to a module interpreter method table. */
607typedef struct KLDRMODOPS *PKLDRMODOPS;
608/** Pointer to const module interpreter methods table. */
609typedef const struct KLDRMODOPS *PCKLDRMODOPS;
610
611/**
612 * Module interpreter instance.
613 * All members are read only unless you're kLdrMod or the module interpreter.
614 */
615typedef struct KLDRMOD
616{
617 /** Magic number (KLDRMOD_MAGIC). */
618 KU32 u32Magic;
619 /** The format of this module. */
620 KLDRFMT enmFmt;
621 /** The type of module. */
622 KLDRTYPE enmType;
623 /** The architecture this module was built for. */
624 KLDRARCH enmArch;
625 /** The minium cpu this module was built for.
626 * This might not be accurate, so use kLdrModCanExecuteOn() to check. */
627 KLDRARCH enmCpu;
628 /** The endian used by the module. */
629 KLDRENDIAN enmEndian;
630 /** The filename length (bytes). */
631 KU32 cchFilename;
632 /** The filename. */
633 const char *pszFilename;
634 /** The module name. */
635 const char *pszName;
636 /** The module name length (bytes). */
637 KU32 cchName;
638 /** The number of segments in the module. */
639 KU32 cSegments;
640 /** Pointer to the loader methods.
641 * Not meant for calling directly thru! */
642 PCKLDRMODOPS pOps;
643 /** Pointer to the read instance. (Can be NULL after kLdrModDone().)*/
644 PKLDRRDR pRdr;
645 /** The module data. */
646 void *pvData;
647 /** Segments. (variable size, can be zero) */
648 KLDRSEG aSegments[1];
649} KLDRMOD, *PKLDRMOD, **PPKLDRMOD;
650
651/** The magic for KLDRMOD::u32Magic. (Kosuke Fujishima) */
652#define KLDRMOD_MAGIC 0x19640707
653
654
655/** Special base address value alias for the link address. */
656#define KLDRMOD_BASEADDRESS_LINK (~(KLDRADDR)1)
657/** Special base address value alias for the actual load address (must be mapped). */
658#define KLDRMOD_BASEADDRESS_MAP (~(KLDRADDR)2)
659
660/** Special import module ordinal value used to indicate that there is no
661 * specific module associated with the requested symbol. */
662#define NIL_KLDRMOD_IMPORT (~(KU32)0)
663
664/** Special symbol ordinal value used to indicate that the symbol
665 * only has a string name. */
666#define NIL_KLDRMOD_SYM_ORDINAL (~(KU32)0)
667
668
669/** @name Load symbol kind flags.
670 * @{ */
671/** The bitness doesn't matter. */
672#define KLDRSYMKIND_NO_BIT 0x00000000
673/** 16-bit symbol. */
674#define KLDRSYMKIND_16BIT 0x00000001
675/** 32-bit symbol. */
676#define KLDRSYMKIND_32BIT 0x00000002
677/** 64-bit symbol. */
678#define KLDRSYMKIND_64BIT 0x00000003
679/** Mask out the bit.*/
680#define KLDRSYMKIND_BIT_MASK 0x00000003
681/** We don't know the type of symbol. */
682#define KLDRSYMKIND_NO_TYPE 0x00000000
683/** The symbol is a code object (method/function/procedure/whateveryouwannacallit). */
684#define KLDRSYMKIND_CODE 0x00000010
685/** The symbol is a data object. */
686#define KLDRSYMKIND_DATA 0x00000020
687/** Mask out the symbol type. */
688#define KLDRSYMKIND_TYPE_MASK 0x00000030
689/** Valid symbol kind mask. */
690#define KLDRSYMKIND_MASK 0x00000033
691/** Weak symbol. */
692#define KLDRSYMKIND_WEAK 0x00000100
693/** Forwarder symbol. */
694#define KLDRSYMKIND_FORWARDER 0x00000200
695/** Request a flat symbol address. */
696#define KLDRSYMKIND_REQ_FLAT 0x00000000
697/** Request a segmented symbol address. */
698#define KLDRSYMKIND_REQ_SEGMENTED 0x40000000
699/** Request type mask. */
700#define KLDRSYMKIND_REQ_TYPE_MASK 0x40000000
701/** @} */
702
703/** @name kLdrModEnumSymbols flags.
704 * @{ */
705/** Returns ALL kinds of symbols. The default is to only return public/exported symbols. */
706#define KLDRMOD_ENUM_SYMS_FLAGS_ALL 0x00000001
707/** @} */
708
709
710/**
711 * Callback for resolving imported symbols when applying fixups.
712 *
713 * @returns 0 on success and *pValue and *pfKind filled.
714 * @returns Non-zero OS specific or kLdr status code on failure.
715 *
716 * @param pMod The module which fixups are begin applied.
717 * @param iImport The import module ordinal number or NIL_KLDRMOD_IMPORT.
718 * @param iSymbol The symbol ordinal number or NIL_KLDRMOD_SYM_ORDINAL.
719 * @param pchSymbol The symbol name. Can be NULL if iSymbol isn't nil. Doesn't have to be null-terminated.
720 * @param cchSymbol The length of the symbol.
721 * @param pszVersion The symbol version. NULL if not versioned.
722 * @param puValue Where to store the symbol value.
723 * @param pfKind Where to store the symbol kind flags.
724 * @param pvUser The user parameter specified to the relocation function.
725 */
726typedef int FNKLDRMODGETIMPORT(PKLDRMOD pMod, KU32 iImport, KU32 iSymbol, const char *pchSymbol, KSIZE cchSymbol,
727 const char *pszVersion, PKLDRADDR puValue, KU32 *pfKind, void *pvUser);
728/** Pointer to a import callback. */
729typedef FNKLDRMODGETIMPORT *PFNKLDRMODGETIMPORT;
730
731/**
732 * Symbol enumerator callback.
733 *
734 * @returns 0 if enumeration should continue.
735 * @returns non-zero if the enumeration should stop. This status code will then be returned by kLdrModEnumSymbols().
736 *
737 * @param pMod The module which symbols are being enumerated.s
738 * @param iSymbol The symbol ordinal number or NIL_KLDRMOD_SYM_ORDINAL.
739 * @param pchSymbol The symbol name. This can be NULL if there is a symbol ordinal.
740 * This can also be an empty string if the symbol doesn't have a name
741 * or it's name has been stripped.
742 * Important, this doesn't have to be a null-terminated string.
743 * @param cchSymbol The length of the symbol.
744 * @param pszVersion The symbol version. NULL if not versioned.
745 * @param uValue The symbol value.
746 * @param fKind The symbol kind flags.
747 * @param pvUser The user parameter specified to kLdrModEnumSymbols().
748 */
749typedef int FNKLDRMODENUMSYMS(PKLDRMOD pMod, KU32 iSymbol, const char *pchSymbol, KSIZE cchSymbol, const char *pszVersion,
750 KLDRADDR uValue, KU32 fKind, void *pvUser);
751/** Pointer to a symbol enumerator callback. */
752typedef FNKLDRMODENUMSYMS *PFNKLDRMODENUMSYMS;
753
754/**
755 * Debug info enumerator callback.
756 *
757 * @returns 0 to continue the enumeration.
758 * @returns non-zero if the enumeration should stop. This status code will then be returned by kLdrModEnumDbgInfo().
759 *
760 * @param pMod The module.
761 * @param iDbgInfo The debug info ordinal number / id.
762 * @param enmType The debug info type.
763 * @param iMajorVer The major version number of the debug info format. -1 if unknow - implies invalid iMinorVer.
764 * @param iMinorVer The minor version number of the debug info format. -1 when iMajorVer is -1.
765 * @param offFile The file offset *if* this type has one specific location in the executable image file.
766 * This is -1 if there isn't any specific file location.
767 * @param LinkAddress The link address of the debug info if it's loadable. NIL_KLDRADDR if not loadable.
768 * @param cb The size of the debug information. -1 is used if this isn't applicable.
769 * @param pszExtFile This points to the name of an external file containing the debug info.
770 * This is NULL if there isn't any external file.
771 * @param pvUser The user parameter specified to kLdrModEnumDbgInfo.
772 */
773typedef int FNKLDRENUMDBG(PKLDRMOD pMod, KU32 iDbgInfo, KLDRDBGINFOTYPE enmType, KI16 iMajorVer, KI16 iMinorVer,
774 KLDRFOFF offFile, KLDRADDR LinkAddress, KLDRSIZE cb, const char *pszExtFile, void *pvUser);
775/** Pointer to a debug info enumerator callback. */
776typedef FNKLDRENUMDBG *PFNKLDRENUMDBG;
777
778/**
779 * Resource enumerator callback.
780 *
781 * @returns 0 to continue the enumeration.
782 * @returns non-zero if the enumeration should stop. This status code will then be returned by kLdrModEnumResources().
783 *
784 * @param pMod The module.
785 * @param idType The resource type id. NIL_KLDRMOD_RSRC_TYPE_ID if no type id.
786 * @param pszType The resource type name. NULL if no type name.
787 * @param idName The resource id. NIL_KLDRMOD_RSRC_NAME_ID if no id.
788 * @param pszName The resource name. NULL if no name.
789 * @param idLang The language id.
790 * @param AddrRsrc The address value for the resource.
791 * @param cbRsrc The size of the resource.
792 * @param pvUser The user parameter specified to kLdrModEnumDbgInfo.
793 */
794typedef int FNKLDRENUMRSRC(PKLDRMOD pMod, KU32 idType, const char *pszType, KU32 idName, const char *pszName,
795 KU32 idLang, KLDRADDR AddrRsrc, KLDRSIZE cbRsrc, void *pvUser);
796/** Pointer to a resource enumerator callback. */
797typedef FNKLDRENUMRSRC *PFNKLDRENUMRSRC;
798
799/** NIL resource name ID. */
800#define NIL_KLDRMOD_RSRC_NAME_ID ( ~(KU32)0 )
801/** NIL resource type ID. */
802#define NIL_KLDRMOD_RSRC_TYPE_ID ( ~(KU32)0 )
803/** @name Language ID
804 *
805 * Except for the special IDs #defined here, the values are considered
806 * format specific for now since it's only used by the PE resources.
807 *
808 * @{ */
809/** NIL language ID. */
810#define NIL_KLDR_LANG_ID ( ~(KU32)0 )
811/** Special language id value for matching any language. */
812#define KLDR_LANG_ID_ANY ( ~(KU32)1 )
813/** Special language id value indicating language neutral. */
814#define KLDR_LANG_ID_NEUTRAL ( ~(KU32)2 )
815/** Special language id value indicating user default language. */
816#define KLDR_LANG_ID_USER_DEFAULT ( ~(KU32)3 )
817/** Special language id value indicating system default language. */
818#define KLDR_LANG_ID_SYS_DEFAULT ( ~(KU32)4 )
819/** Special language id value indicating default custom locale. */
820#define KLDR_LANG_ID_CUSTOM_DEFAULT ( ~(KU32)5 )
821/** Special language id value indicating unspecified custom locale. */
822#define KLDR_LANG_ID_CUSTOM_UNSPECIFIED ( ~(KU32)6 )
823/** Special language id value indicating default custom MUI locale. */
824#define KLDR_LANG_ID_UI_CUSTOM_DEFAULT ( ~(KU32)7 )
825/** @} */
826
827
828int kLdrModOpen(const char *pszFilename, PPKLDRMOD ppMod);
829int kLdrModOpenFromRdr(PKLDRRDR pRdr, PPKLDRMOD ppMod);
830int kLdrModOpenNative(const char *pszFilename, PPKLDRMOD ppMod);
831int kLdrModOpenNativeByHandle(KUPTR uHandle, PPKLDRMOD ppMod);
832int kLdrModClose(PKLDRMOD pMod);
833
834int kLdrModQuerySymbol(PKLDRMOD pMod, const void *pvBits, KLDRADDR BaseAddress, KU32 iSymbol,
835 const char *pchSymbol, KSIZE cchSymbol, const char *pszVersion,
836 PFNKLDRMODGETIMPORT pfnGetForwarder, void *pvUser, PKLDRADDR puValue, KU32 *pfKind);
837int kLdrModEnumSymbols(PKLDRMOD pMod, const void *pvBits, KLDRADDR BaseAddress,
838 KU32 fFlags, PFNKLDRMODENUMSYMS pfnCallback, void *pvUser);
839int kLdrModGetImport(PKLDRMOD pMod, const void *pvBits, KU32 iImport, char *pszName, KSIZE cchName);
840KI32 kLdrModNumberOfImports(PKLDRMOD pMod, const void *pvBits);
841int kLdrModCanExecuteOn(PKLDRMOD pMod, const void *pvBits, KLDRARCH enmArch, KLDRCPU enmCpu);
842int kLdrModGetStackInfo(PKLDRMOD pMod, const void *pvBits, KLDRADDR BaseAddress, PKLDRSTACKINFO pStackInfo);
843int kLdrModQueryMainEntrypoint(PKLDRMOD pMod, const void *pvBits, KLDRADDR BaseAddress, PKLDRADDR pMainEPAddress);
844int kLdrModQueryResource(PKLDRMOD pMod, const void *pvBits, KLDRADDR BaseAddress, KU32 idType, const char *pszType,
845 KU32 idName, const char *pszName, KU32 idLang, PKLDRADDR pAddrRsrc, KSIZE *pcbRsrc);
846int kLdrModEnumResources(PKLDRMOD pMod, const void *pvBits, KLDRADDR BaseAddress, KU32 idType, const char *pszType,
847 KU32 idName, const char *pszName, KU32 idLang, PFNKLDRENUMRSRC pfnCallback, void *pvUser);
848int kLdrModEnumDbgInfo(PKLDRMOD pMod, const void *pvBits, PFNKLDRENUMDBG pfnCallback, void *pvUser);
849int kLdrModHasDbgInfo(PKLDRMOD pMod, const void *pvBits);
850int kLdrModMostlyDone(PKLDRMOD pMod);
851
852
853/** @name Operations On The Internally Managed Mapping
854 * @{ */
855int kLdrModMap(PKLDRMOD pMod);
856int kLdrModUnmap(PKLDRMOD pMod);
857int kLdrModAllocTLS(PKLDRMOD pMod);
858void kLdrModFreeTLS(PKLDRMOD pMod);
859int kLdrModReload(PKLDRMOD pMod);
860int kLdrModFixupMapping(PKLDRMOD pMod, PFNKLDRMODGETIMPORT pfnGetImport, void *pvUser);
861int kLdrModCallInit(PKLDRMOD pMod, KUPTR uHandle);
862int kLdrModCallTerm(PKLDRMOD pMod, KUPTR uHandle);
863int kLdrModCallThread(PKLDRMOD pMod, KUPTR uHandle, unsigned fAttachingOrDetaching);
864/** @} */
865
866/** @name Operations On The Externally Managed Mappings
867 * @{ */
868KLDRADDR kLdrModSize(PKLDRMOD pMod);
869int kLdrModGetBits(PKLDRMOD pMod, void *pvBits, KLDRADDR BaseAddress, PFNKLDRMODGETIMPORT pfnGetImport, void *pvUser);
870int kLdrModRelocateBits(PKLDRMOD pMod, void *pvBits, KLDRADDR NewBaseAddress, KLDRADDR OldBaseAddress,
871 PFNKLDRMODGETIMPORT pfnGetImport, void *pvUser);
872/** @} */
873
874
875/**
876 * The loader module operation.
877 */
878typedef struct KLDRMODOPS
879{
880 /** The name of this module interpreter. */
881 const char *pszName;
882 /** Pointer to the next module interpreter. */
883 PCKLDRMODOPS pNext;
884
885 /**
886 * Create a loader module instance interpreting the executable image found
887 * in the specified file provider instance.
888 *
889 * @returns 0 on success and *ppMod pointing to a module instance.
890 * On failure, a non-zero OS specific error code is returned.
891 * @param pOps Pointer to the registered method table.
892 * @param pRdr The file provider instance to use.
893 * @param offNewHdr The offset of the new header in MZ files. -1 if not found.
894 * @param ppMod Where to store the module instance pointer.
895 */
896 int (* pfnCreate)(PCKLDRMODOPS pOps, PKLDRRDR pRdr, KLDRFOFF offNewHdr, PPKLDRMOD ppMod);
897 /**
898 * Destroys an loader module instance.
899 *
900 * The caller is responsible for calling kLdrModUnmap() and kLdrFreeTLS() first.
901 *
902 * @returns 0 on success, non-zero on failure. The module instance state
903 * is unknown on failure, it's best not to touch it.
904 * @param pMod The module.
905 */
906 int (* pfnDestroy)(PKLDRMOD pMod);
907
908 /** @copydoc kLdrModQuerySymbol */
909 int (* pfnQuerySymbol)(PKLDRMOD pMod, const void *pvBits, KLDRADDR BaseAddress, KU32 iSymbol,
910 const char *pchSymbol, KSIZE cchSymbol, const char *pszVersion,
911 PFNKLDRMODGETIMPORT pfnGetForwarder, void *pvUser, PKLDRADDR puValue, KU32 *pfKind);
912 /** @copydoc kLdrModEnumSymbols */
913 int (* pfnEnumSymbols)(PKLDRMOD pMod, const void *pvBits, KLDRADDR BaseAddress, KU32 fFlags,
914 PFNKLDRMODENUMSYMS pfnCallback, void *pvUser);
915 /** @copydoc kLdrModGetImport */
916 int (* pfnGetImport)(PKLDRMOD pMod, const void *pvBits, KU32 iImport, char *pszName, KSIZE cchName);
917 /** @copydoc kLdrModNumberOfImports */
918 KI32 (* pfnNumberOfImports)(PKLDRMOD pMod, const void *pvBits);
919 /** @copydoc kLdrModCanExecuteOn */
920 int (* pfnCanExecuteOn)(PKLDRMOD pMod, const void *pvBits, KLDRARCH enmArch, KLDRCPU enmCpu);
921 /** @copydoc kLdrModGetStackInfo */
922 int (* pfnGetStackInfo)(PKLDRMOD pMod, const void *pvBits, KLDRADDR BaseAddress, PKLDRSTACKINFO pStackInfo);
923 /** @copydoc kLdrModQueryMainEntrypoint */
924 int (* pfnQueryMainEntrypoint)(PKLDRMOD pMod, const void *pvBits, KLDRADDR BaseAddress, PKLDRADDR pMainEPAddress);
925 /** @copydoc kLdrModQueryResource */
926 int (* pfnQueryResource)(PKLDRMOD pMod, const void *pvBits, KLDRADDR BaseAddress, KU32 idType, const char *pszType,
927 KU32 idName, const char *pszName, KU32 idLang, PKLDRADDR pAddrRsrc, KSIZE *pcbRsrc);
928 /** @copydoc kLdrModEnumResources */
929 int (* pfnEnumResources)(PKLDRMOD pMod, const void *pvBits, KLDRADDR BaseAddress, KU32 idType, const char *pszType,
930 KU32 idName, const char *pszName, KU32 idLang, PFNKLDRENUMRSRC pfnCallback, void *pvUser);
931 /** @copydoc kLdrModEnumDbgInfo */
932 int (* pfnEnumDbgInfo)(PKLDRMOD pMod, const void *pvBits, PFNKLDRENUMDBG pfnCallback, void *pvUser);
933 /** @copydoc kLdrModHasDbgInfo */
934 int (* pfnHasDbgInfo)(PKLDRMOD pMod, const void *pvBits);
935 /** @copydoc kLdrModMap */
936 int (* pfnMap)(PKLDRMOD pMod);
937 /** @copydoc kLdrModUnmap */
938 int (* pfnUnmap)(PKLDRMOD pMod);
939 /** @copydoc kLdrModAllocTLS */
940 int (* pfnAllocTLS)(PKLDRMOD pMod);
941 /** @copydoc kLdrModFreeTLS */
942 void (* pfnFreeTLS)(PKLDRMOD pMod);
943 /** @copydoc kLdrModReload */
944 int (* pfnReload)(PKLDRMOD pMod);
945 /** @copydoc kLdrModFixupMapping */
946 int (* pfnFixupMapping)(PKLDRMOD pMod, PFNKLDRMODGETIMPORT pfnGetImport, void *pvUser);
947 /** @copydoc kLdrModCallInit */
948 int (* pfnCallInit)(PKLDRMOD pMod, KUPTR uHandle);
949 /** @copydoc kLdrModCallTerm */
950 int (* pfnCallTerm)(PKLDRMOD pMod, KUPTR uHandle);
951 /** @copydoc kLdrModCallThread */
952 int (* pfnCallThread)(PKLDRMOD pMod, KUPTR uHandle, unsigned fAttachingOrDetaching);
953 /** @copydoc kLdrModSize */
954 KLDRADDR (* pfnSize)(PKLDRMOD pMod);
955 /** @copydoc kLdrModGetBits */
956 int (* pfnGetBits)(PKLDRMOD pMod, void *pvBits, KLDRADDR BaseAddress, PFNKLDRMODGETIMPORT pfnGetImport, void *pvUser);
957 /** @copydoc kLdrModRelocateBits */
958 int (* pfnRelocateBits)(PKLDRMOD pMod, void *pvBits, KLDRADDR NewBaseAddress, KLDRADDR OldBaseAddress,
959 PFNKLDRMODGETIMPORT pfnGetImport, void *pvUser);
960 /** @copydoc kLdrModMostlyDone */
961 int (* pfnMostlyDone)(PKLDRMOD pMod);
962 /** Dummy which should be assigned a non-zero value. */
963 KU32 uEndOfStructure;
964} KLDRMODOPS;
965
966
967/** @} */
968
969
970
971
972/** @defgroup grp_kLdrDyld kLdrDyld - The dynamic loader
973 * @{ */
974
975/** The handle to a dynamic loader module. */
976typedef struct KLDRDYLDMOD *HKLDRMOD;
977/** Pointer to the handle to a dynamic loader module. */
978typedef HKLDRMOD *PHKLDRMOD;
979/** NIL handle value. */
980#define NIL_HKLDRMOD ((HKLDRMOD)0)
981
982
983/**
984 * File search method.
985 *
986 * In addition to it's own way of finding files, kLdr emulates
987 * the methods employed by the most popular systems.
988 */
989typedef enum KLDRDYLDSEARCH
990{
991 /** The usual invalid file search method. */
992 KLDRDYLD_SEARCH_INVALID = 0,
993 /** Uses the kLdr file search method.
994 * @todo invent me. */
995 KLDRDYLD_SEARCH_KLDR,
996 /** Use the emulation closest to the host system. */
997 KLDRDYLD_SEARCH_HOST,
998 /** Emulate the OS/2 file search method.
999 * On non-OS/2 systems, BEGINLIBPATH, LIBPATH, ENDLIBPATH and LIBPATHSTRICT are
1000 * taken form the environment. */
1001 KLDRDYLD_SEARCH_OS2,
1002 /** Emulate the standard window file search method. */
1003 KLDRDYLD_SEARCH_WINDOWS,
1004 /** Emulate the alternative window file search method. */
1005 KLDRDYLD_SEARCH_WINDOWS_ALTERED,
1006 /** Emulate the most common UNIX file search method. */
1007 KLDRDYLD_SEARCH_UNIX_COMMON,
1008 /** End of the valid file search method values. */
1009 KLDRDYLD_SEARCH_END,
1010 /** Hack to blow the type up to 32-bit. */
1011 KLDRDYLD_SEARCH_32BIT_HACK = 0x7fffffff
1012} KLDRDYLDSEARCH;
1013
1014/** @name kLdrDyldLoad and kLdrDyldFindByName flags.
1015 * @{ */
1016/** The symbols in the module should be loaded into the global unix namespace.
1017 * If not specified, the symbols are local and can only be referenced directly. */
1018#define KLDRYDLD_LOAD_FLAGS_GLOBAL_SYMBOLS 0x00000001
1019/** The symbols in the module should be loaded into the global unix namespace and
1020 * it's symbols should take precedence over all currently loaded modules.
1021 * This implies KLDRYDLD_LOAD_FLAGS_GLOBAL_SYMBOLS. */
1022#define KLDRYDLD_LOAD_FLAGS_DEEP_SYMBOLS 0x00000002
1023/** The module shouldn't be found by a global module search.
1024 * If not specified, the module can be found by unspecified module searches,
1025 * typical used when loading import/dep modules. */
1026#define KLDRYDLD_LOAD_FLAGS_SPECIFIC_MODULE 0x00000004
1027/** Do a recursive initialization calls instead of defering them to the outermost call. */
1028#define KLDRDYLD_LOAD_FLAGS_RECURSIVE_INIT 0x00000008
1029/** We're loading the executable module.
1030 * @internal */
1031#define KLDRDYLD_LOAD_FLAGS_EXECUTABLE 0x40000000
1032/** @} */
1033
1034
1035int kLdrDyldLoad(const char *pszDll, const char *pszPrefix, const char *pszSuffix, KLDRDYLDSEARCH enmSearch,
1036 unsigned fFlags, PHKLDRMOD phMod, char *pszErr, KSIZE cchErr);
1037int kLdrDyldUnload(HKLDRMOD hMod);
1038int kLdrDyldFindByName(const char *pszDll, const char *pszPrefix, const char *pszSuffix, KLDRDYLDSEARCH enmSearch,
1039 unsigned fFlags, PHKLDRMOD phMod);
1040int kLdrDyldFindByAddress(KUPTR Address, PHKLDRMOD phMod, KU32 *piSegment, KUPTR *poffSegment);
1041int kLdrDyldGetName(HKLDRMOD hMod, char *pszName, KSIZE cchName);
1042int kLdrDyldGetFilename(HKLDRMOD hMod, char *pszFilename, KSIZE cchFilename);
1043int kLdrDyldQuerySymbol(HKLDRMOD hMod, KU32 uSymbolOrdinal, const char *pszSymbolName,
1044 const char *pszSymbolVersion, KUPTR *pValue, KU32 *pfKind);
1045int kLdrDyldQueryResource(HKLDRMOD hMod, KU32 idType, const char *pszType, KU32 idName,
1046 const char *pszName, KU32 idLang, void **pvRsrc, KSIZE *pcbRsrc);
1047int kLdrDyldEnumResources(HKLDRMOD hMod, KU32 idType, const char *pszType, KU32 idName,
1048 const char *pszName, KU32 idLang, PFNKLDRENUMRSRC pfnCallback, void *pvUser);
1049
1050/** @name OS/2 like API
1051 * @{ */
1052#if defined(__OS2__)
1053# define KLDROS2API _System
1054#else
1055# define KLDROS2API
1056#endif
1057int kLdrDosLoadModule(char *pszObject, KSIZE cbObject, const char *pszModule, PHKLDRMOD phMod);
1058int kLdrDosFreeModule(HKLDRMOD hMod);
1059int kLdrDosQueryModuleHandle(const char *pszModname, PHKLDRMOD phMod);
1060int kLdrDosQueryModuleName(HKLDRMOD hMod, KSIZE cchName, char *pszName);
1061int kLdrDosQueryProcAddr(HKLDRMOD hMod, KU32 iOrdinal, const char *pszProcName, void **ppvProcAddr);
1062int kLdrDosQueryProcType(HKLDRMOD hMod, KU32 iOrdinal, const char *pszProcName, KU32 *pfProcType);
1063int kLdrDosQueryModFromEIP(PHKLDRMOD phMod, KU32 *piObject, KSIZE cbName, char *pszName, KUPTR *poffObject, KUPTR ulEIP);
1064int kLdrDosReplaceModule(const char *pszOldModule, const char *pszNewModule, const char *pszBackupModule);
1065int kLdrDosGetResource(HKLDRMOD hMod, KU32 idType, KU32 idName, void **pvResAddr);
1066int kLdrDosQueryResourceSize(HKLDRMOD hMod, KU32 idType, KU32 idName, KU32 *pcb);
1067int kLdrDosFreeResource(void *pvResAddr);
1068/** @} */
1069
1070/** @name POSIX like API
1071 * @{ */
1072HKLDRMOD kLdrDlOpen(const char *pszLibrary, int fFlags);
1073const char *kLdrDlError(void);
1074void * kLdrDlSym(HKLDRMOD hMod, const char *pszSymbol);
1075int kLdrDlClose(HKLDRMOD hMod);
1076/** @todo GNU extensions */
1077/** @} */
1078
1079/** @name Win32 like API
1080 * @{ */
1081#if defined(_MSC_VER)
1082# define KLDRWINAPI __stdcall
1083#else
1084# define KLDRWINAPI
1085#endif
1086HKLDRMOD KLDRWINAPI kLdrWLoadLibrary(const char *pszFilename);
1087HKLDRMOD KLDRWINAPI kLdrWLoadLibraryEx(const char *pszFilename, void *hFileReserved, KU32 fFlags);
1088KU32 KLDRWINAPI kLdrWGetModuleFileName(HKLDRMOD hMod, char *pszModName, KSIZE cchModName);
1089HKLDRMOD KLDRWINAPI kLdrWGetModuleHandle(const char *pszFilename);
1090int KLDRWINAPI kLdrWGetModuleHandleEx(KU32 fFlags, const char *pszFilename, HKLDRMOD hMod);
1091void * KLDRWINAPI kLdrWGetProcAddress(HKLDRMOD hMod, const char *pszProcName);
1092KU32 KLDRWINAPI kLdrWGetDllDirectory(KSIZE cchDir, char *pszDir);
1093int KLDRWINAPI kLdrWSetDllDirectory(const char *pszDir);
1094int KLDRWINAPI kLdrWFreeLibrary(HKLDRMOD hMod);
1095int KLDRWINAPI kLdrWDisableThreadLibraryCalls(HKLDRMOD hMod);
1096
1097/** The handle to a resource that's been found. */
1098typedef struct KLDRWRSRCFOUND *HKLDRWRSRCFOUND;
1099/** The handle to a loaded resource. */
1100typedef struct KLDRWRSRCLOADED *HKLDRWRSRCLOADED;
1101HKLDRWRSRCFOUND KLDRWINAPI kLdrWFindResource(HKLDRMOD hMod, const char *pszType, const char *pszName);
1102HKLDRWRSRCFOUND KLDRWINAPI kLdrWFindResourceEx(HKLDRMOD hMod, const char *pszType, const char *pszName, KU16 idLang);
1103KU32 KLDRWINAPI kLdrWSizeofResource(HKLDRMOD hMod, HKLDRWRSRCFOUND hFoundRsrc);
1104HKLDRWRSRCLOADED KLDRWINAPI kLdrWLoadResource(HKLDRMOD hMod, HKLDRWRSRCFOUND hFoundRsrc);
1105void *KLDRWINAPI kLdrWLockResource(HKLDRMOD hMod, HKLDRWRSRCLOADED hLoadedRsrc);
1106int KLDRWINAPI kLdrWFreeResource(HKLDRMOD hMod, HKLDRWRSRCLOADED hLoadedRsrc);
1107
1108typedef int (KLDRWINAPI *PFNKLDRWENUMRESTYPE)(HKLDRMOD hMod, const char *pszType, KUPTR uUser);
1109int KLDRWINAPI kLdrWEnumResourceTypes(HKLDRMOD hMod, PFNKLDRWENUMRESTYPE pfnEnum, KUPTR uUser);
1110int KLDRWINAPI kLdrWEnumResourceTypesEx(HKLDRMOD hMod, PFNKLDRWENUMRESTYPE pfnEnum, KUPTR uUser, KU32 fFlags, KU16 idLang);
1111
1112typedef int (KLDRWINAPI *PFNKLDRWENUMRESNAME)(HKLDRMOD hMod, const char *pszType, char *pszName, KUPTR uUser);
1113int KLDRWINAPI kLdrWEnumResourceNames(HKLDRMOD hMod, const char *pszType, PFNKLDRWENUMRESNAME pfnEnum, KUPTR uUser);
1114int KLDRWINAPI kLdrWEnumResourceNamesEx(HKLDRMOD hMod, const char *pszType, PFNKLDRWENUMRESNAME pfnEnum, KUPTR uUser, KU32 fFlags, KU16 idLang);
1115
1116typedef int (KLDRWINAPI *PFNKLDRWENUMRESLANG)(HKLDRMOD hMod, const char *pszType, const char *pszName, KU16 idLang, KUPTR uUser);
1117int KLDRWINAPI kLdrWEnumResourceLanguages(HKLDRMOD hMod, const char *pszType, const char *pszName, PFNKLDRWENUMRESLANG pfnEnum, KUPTR uUser);
1118int KLDRWINAPI kLdrWEnumResourceLanguagesEx(HKLDRMOD hMod, const char *pszType, const char *pszName,
1119 PFNKLDRWENUMRESLANG pfnEnum, KUPTR uUser, KU32 fFlags, KU16 idLang);
1120/** @} */
1121
1122
1123/** @name Process Bootstrapping
1124 * @{ */
1125
1126/**
1127 * Argument package from the stub.
1128 */
1129typedef struct KLDREXEARGS
1130{
1131 /** Load & search flags, some which will become defaults. */
1132 KU32 fFlags;
1133 /** The default search method. */
1134 KLDRDYLDSEARCH enmSearch;
1135 /** The executable file that the stub is supposed to load. */
1136 char szExecutable[260];
1137 /** The default prefix used when searching for DLLs. */
1138 char szDefPrefix[16];
1139 /** The default suffix used when searching for DLLs. */
1140 char szDefSuffix[16];
1141 /** The LD_LIBRARY_PATH prefix for the process.. */
1142 char szLibPath[4096 - sizeof(KU32) - sizeof(KLDRDYLDSEARCH) - 16 - 16 - 260];
1143} KLDREXEARGS, *PKLDREXEARGS;
1144/** Pointer to a const argument package from the stub. */
1145typedef const KLDREXEARGS *PCKLDREXEARGS;
1146
1147void kLdrLoadExe(PCKLDREXEARGS pArgs, void *pvOS);
1148
1149/** @} */
1150
1151/** @} */
1152
1153
1154/** @defgroup grp_kLdrErr kLdr Status Codes
1155 * kLdr uses a mix of native status codes and it's own status codes.
1156 * A status code of 0 means success, all other status codes means failure.
1157 * @{
1158 */
1159
1160#define KLDR_ERR_BASE 420000
1161
1162/** The image format is unknown. */
1163#define KLDR_ERR_UNKNOWN_FORMAT (KLDR_ERR_BASE + 0)
1164/** The MZ image format isn't supported by this kLdr build. */
1165#define KLDR_ERR_MZ_NOT_SUPPORTED (KLDR_ERR_BASE + 1)
1166/** The NE image format isn't supported by this kLdr build. */
1167#define KLDR_ERR_NE_NOT_SUPPORTED (KLDR_ERR_BASE + 2)
1168/** The LX image format isn't supported by this kLdr build. */
1169#define KLDR_ERR_LX_NOT_SUPPORTED (KLDR_ERR_BASE + 3)
1170/** The LE image format isn't supported by this kLdr build. */
1171#define KLDR_ERR_LE_NOT_SUPPORTED (KLDR_ERR_BASE + 4)
1172/** The PE image format isn't supported by this kLdr build. */
1173#define KLDR_ERR_PE_NOT_SUPPORTED (KLDR_ERR_BASE + 5)
1174/** The ELF image format isn't supported by this kLdr build. */
1175#define KLDR_ERR_ELF_NOT_SUPPORTED (KLDR_ERR_BASE + 6)
1176/** The mach-o image format isn't supported by this kLdr build. */
1177#define KLDR_ERR_MACHO_NOT_SUPPORTED (KLDR_ERR_BASE + 7)
1178/** The FAT image format isn't supported by this kLdr build or
1179 * a direct open was attempt without going thru the FAT file provider.
1180 * FAT images are also known as Universal Binaries. */
1181#define KLDR_ERR_FAT_NOT_SUPPORTED (KLDR_ERR_BASE + 8)
1182/** The a.out image format isn't supported by this kLdr build. */
1183#define KLDR_ERR_AOUT_NOT_SUPPORTED (KLDR_ERR_BASE + 9)
1184
1185/** Invalid parameter to a kLdr API. */
1186#define KLDR_ERR_INVALID_PARAMETER (KLDR_ERR_BASE + 32)
1187/** Invalid handle parameter to a kLdr API. */
1188#define KLDR_ERR_INVALID_HANDLE (KLDR_ERR_BASE + 33)
1189/** The module wasn't loaded dynamically. */
1190#define KLDR_ERR_NOT_LOADED_DYNAMICALLY (KLDR_ERR_BASE + 34)
1191/** The module wasn't found. */
1192#define KLDR_ERR_MODULE_NOT_FOUND (KLDR_ERR_BASE + 35)
1193/** A prerequisit module wasn't found. */
1194#define KLDR_ERR_PREREQUISITE_MODULE_NOT_FOUND (KLDR_ERR_BASE + 36)
1195/** The module is being terminated and can therefore not be loaded. */
1196#define KLDR_ERR_MODULE_TERMINATING (KLDR_ERR_BASE + 37)
1197/** A prerequisit module is being terminated and can therefore not be loaded. */
1198#define KLDR_ERR_PREREQUISITE_MODULE_TERMINATING (KLDR_ERR_BASE + 38)
1199/** The module initialization failed. */
1200#define KLDR_ERR_MODULE_INIT_FAILED (KLDR_ERR_BASE + 39)
1201/** The initialization of a prerequisite module failed. */
1202#define KLDR_ERR_PREREQUISITE_MODULE_INIT_FAILED (KLDR_ERR_BASE + 40)
1203/** The module has already failed initialization and can't be attempted reloaded until
1204 * after we've finished garbage collection. */
1205#define KLDR_ERR_MODULE_INIT_FAILED_ALREADY (KLDR_ERR_BASE + 41)
1206/** A prerequisite module has already failed initialization and can't be attempted
1207 * reloaded until after we've finished garbage collection. */
1208#define KLDR_ERR_PREREQUISITE_MODULE_INIT_FAILED_ALREADY (KLDR_ERR_BASE + 42)
1209/** Prerequisite recursed too deeply. */
1210#define KLDR_ERR_PREREQUISITE_RECURSED_TOO_DEEPLY (KLDR_ERR_BASE + 43)
1211/** Failed to allocate the main stack. */
1212#define KLDR_ERR_MAIN_STACK_ALLOC_FAILED (KLDR_ERR_BASE + 44)
1213/** Buffer overflow. */
1214#define KLDR_ERR_BUFFER_OVERFLOW (KLDR_ERR_BASE + 45)
1215/** The specified ARCH+CPU isn't compatible with image. */
1216#define KLDR_ERR_ARCH_CPU_NOT_COMPATIBLE (KLDR_ERR_BASE + 46)
1217/** Symbol not found. */
1218#define KLDR_ERR_SYMBOL_NOT_FOUND (KLDR_ERR_BASE + 47)
1219/** A forward symbol was encountered but the caller didn't provide any means to resolve it. */
1220#define KLDR_ERR_FORWARDER_SYMBOL (KLDR_ERR_BASE + 48)
1221/** Encountered a bad fixup. */
1222#define KLDR_ERR_BAD_FIXUP (KLDR_ERR_BASE + 49)
1223/** A memory allocation failed. */
1224#define KLDR_ERR_NO_MEMORY (KLDR_ERR_BASE + 50)
1225/** The import ordinal was out of bounds. */
1226#define KLDR_ERR_IMPORT_ORDINAL_OUT_OF_BOUNDS (KLDR_ERR_BASE + 51)
1227/** A forwarder chain was too long. */
1228#define KLDR_ERR_TOO_LONG_FORWARDER_CHAIN (KLDR_ERR_BASE + 52)
1229/** The module has no debug info. */
1230#define KLDR_ERR_NO_DEBUG_INFO (KLDR_ERR_BASE + 53)
1231/** The module is already mapped.
1232 * kLdrModMap() can only be called once (without kLdrModUnmap() in between). */
1233#define KLDR_ERR_ALREADY_MAPPED (KLDR_ERR_BASE + 54)
1234/** The module was not mapped.
1235 * kLdrModUnmap() should not called without being preceeded by a kLdrModMap(). */
1236#define KLDR_ERR_NOT_MAPPED (KLDR_ERR_BASE + 55)
1237/** Couldn't fit the address value into the field. Typically a relocation kind of error. */
1238#define KLDR_ERR_ADDRESS_OVERFLOW (KLDR_ERR_BASE + 56)
1239/** Couldn't fit a calculated size value into the native size type of the host. */
1240#define KLDR_ERR_SIZE_OVERFLOW (KLDR_ERR_BASE + 57)
1241/** Thread attach failed. */
1242#define KLDR_ERR_THREAD_ATTACH_FAILED (KLDR_ERR_BASE + 58)
1243/** The file reader can't take more concurrent mappings. */
1244#define KLDR_ERR_TOO_MANY_MAPPINGS (KLDR_ERR_BASE + 59)
1245/** The module wasn't a DLL or object file. */
1246#define KLDR_ERR_NOT_DLL (KLDR_ERR_BASE + 60)
1247/** The module wasn't an EXE. */
1248#define KLDR_ERR_NOT_EXE (KLDR_ERR_BASE + 61)
1249/** Not implemented yet. */
1250#define KLDR_ERR_TODO (KLDR_ERR_BASE + 62)
1251
1252
1253/** @name kLdrModPE status codes
1254 * @{ */
1255#define KLDR_ERR_PE_BASE (KLDR_ERR_BASE + 63)
1256/** The machine isn't supported by the interpreter. */
1257#define KLDR_ERR_PE_UNSUPPORTED_MACHINE (KLDR_ERR_PE_BASE + 0)
1258/** The file handler isn't valid. */
1259#define KLDR_ERR_PE_BAD_FILE_HEADER (KLDR_ERR_PE_BASE + 1)
1260/** The the optional headers isn't valid. */
1261#define KLDR_ERR_PE_BAD_OPTIONAL_HEADER (KLDR_ERR_PE_BASE + 2)
1262/** One of the section headers aren't valid. */
1263#define KLDR_ERR_PE_BAD_SECTION_HEADER (KLDR_ERR_PE_BASE + 3)
1264/** Bad forwarder entry. */
1265#define KLDR_ERR_PE_BAD_FORWARDER (KLDR_ERR_PE_BASE + 4)
1266/** Forwarder module not found in the import descriptor table. */
1267#define KLDR_ERR_PE_FORWARDER_IMPORT_NOT_FOUND (KLDR_ERR_PE_BASE + 5)
1268/** Bad PE fixups. */
1269#define KLDR_ERR_PE_BAD_FIXUP (KLDR_ERR_PE_BASE + 6)
1270/** Bad PE import (thunk). */
1271#define KLDR_ERR_PE_BAD_IMPORT (KLDR_ERR_PE_BASE + 7)
1272/** @} */
1273
1274/** @name kLdrModLX status codes
1275 * @{ */
1276#define KLDR_ERR_LX_BASE (KLDR_ERR_PE_BASE + 8)
1277/** validation of LX header failed. */
1278#define KLDR_ERR_LX_BAD_HEADER (KLDR_ERR_LX_BASE + 0)
1279/** validation of the loader section (in the LX header) failed. */
1280#define KLDR_ERR_LX_BAD_LOADER_SECTION (KLDR_ERR_LX_BASE + 1)
1281/** validation of the fixup section (in the LX header) failed. */
1282#define KLDR_ERR_LX_BAD_FIXUP_SECTION (KLDR_ERR_LX_BASE + 2)
1283/** validation of the LX object table failed. */
1284#define KLDR_ERR_LX_BAD_OBJECT_TABLE (KLDR_ERR_LX_BASE + 3)
1285/** A bad page map entry was encountered. */
1286#define KLDR_ERR_LX_BAD_PAGE_MAP (KLDR_ERR_LX_BASE + 4)
1287/** Bad iterdata (EXEPACK) data. */
1288#define KLDR_ERR_LX_BAD_ITERDATA (KLDR_ERR_LX_BASE + 5)
1289/** Bad iterdata2 (EXEPACK2) data. */
1290#define KLDR_ERR_LX_BAD_ITERDATA2 (KLDR_ERR_LX_BASE + 6)
1291/** Bad bundle data. */
1292#define KLDR_ERR_LX_BAD_BUNDLE (KLDR_ERR_LX_BASE + 7)
1293/** No soname. */
1294#define KLDR_ERR_LX_NO_SONAME (KLDR_ERR_LX_BASE + 8)
1295/** Bad soname. */
1296#define KLDR_ERR_LX_BAD_SONAME (KLDR_ERR_LX_BASE + 9)
1297/** Bad forwarder entry. */
1298#define KLDR_ERR_LX_BAD_FORWARDER (KLDR_ERR_LX_BASE + 10)
1299/** internal fixup chain isn't implemented yet. */
1300#define KLDR_ERR_LX_NRICHAIN_NOT_SUPPORTED (KLDR_ERR_LX_BASE + 11)
1301/** @} */
1302
1303/** @name
1304 * @{ */
1305#define KLDR_ERR_MACHO_BASE (KLDR_ERR_LX_BASE + 12)
1306/** Only native endian Mach-O files are supported. */
1307#define KLDR_ERR_MACHO_OTHER_ENDIAN_NOT_SUPPORTED (KLDR_ERR_MACHO_BASE + 0)
1308/** 64-bit Mach-O files aren't supported yet. */
1309#define KLDR_ERR_MACHO_64BIT_NOT_SUPPORTED (KLDR_ERR_MACHO_BASE + 1)
1310/** The Mach-O header is bad or contains new and unsupported features. */
1311#define KLDR_ERR_MACHO_BAD_HEADER (KLDR_ERR_MACHO_BASE + 2)
1312/** The file type isn't supported. */
1313#define KLDR_ERR_MACHO_UNSUPPORTED_FILE_TYPE (KLDR_ERR_MACHO_BASE + 3)
1314/** The machine (cputype / cpusubtype combination) isn't supported. */
1315#define KLDR_ERR_MACHO_UNSUPPORTED_MACHINE (KLDR_ERR_MACHO_BASE + 4)
1316/** Bad load command(s). */
1317#define KLDR_ERR_MACHO_BAD_LOAD_COMMAND (KLDR_ERR_MACHO_BASE + 5)
1318/** Encountered an unknown load command.*/
1319#define KLDR_ERR_MACHO_UNKNOWN_LOAD_COMMAND (KLDR_ERR_MACHO_BASE + 6)
1320/** Encountered a load command that's not implemented.*/
1321#define KLDR_ERR_MACHO_UNSUPPORTED_LOAD_COMMAND (KLDR_ERR_MACHO_BASE + 7)
1322/** Bad section. */
1323#define KLDR_ERR_MACHO_BAD_SECTION (KLDR_ERR_MACHO_BASE + 8)
1324/** Encountered a section type that's not implemented.*/
1325#define KLDR_ERR_MACHO_UNSUPPORTED_SECTION (KLDR_ERR_MACHO_BASE + 9)
1326/** Encountered a section type that's not known to the loader. (probably invalid) */
1327#define KLDR_ERR_MACHO_UNKNOWN_SECTION (KLDR_ERR_MACHO_BASE + 10)
1328/** The sections aren't ordered by segment as expected by the loader. */
1329#define KLDR_ERR_MACHO_BAD_SECTION_ORDER (KLDR_ERR_MACHO_BASE + 11)
1330/** The image is 32-bit and contains 64-bit load commands or vise versa. */
1331#define KLDR_ERR_MACHO_BIT_MIX (KLDR_ERR_MACHO_BASE + 12)
1332/** Bad MH_OBJECT file. */
1333#define KLDR_ERR_MACHO_BAD_OBJECT_FILE (KLDR_ERR_MACHO_BASE + 13)
1334/** Bad symbol table entry. */
1335#define KLDR_ERR_MACHO_BAD_SYMBOL (KLDR_ERR_MACHO_BASE + 14)
1336/** Unsupported fixup type. */
1337#define KLDR_ERR_MACHO_UNSUPPORTED_FIXUP_TYPE (KLDR_ERR_MACHO_BASE + 15)
1338/** @} */
1339
1340/** End of the valid kLdr status codes. */
1341#define KLDR_ERR_END (KLDR_ERR_MACHO_BASE + 16)
1342
1343const char *kLdrErrStr(int rc);
1344
1345/** @} */
1346
1347
1348#ifdef __cplusplus
1349}
1350#endif
1351
1352#endif
1353
Note: See TracBrowser for help on using the repository browser.