source: trunk/src/win32k/include/ModuleBase.h

Last change on this file was 21916, checked in by dmik, 14 years ago

Merge branch gcc-kmk to trunk.

File size: 5.9 KB
RevLine 
[5093]1/* $Id: ModuleBase.h,v 1.6 2001-02-11 14:59:20 bird Exp $
[1678]2 *
3 * ModuleBase - Declaration of the Basic module class.
4 *
[4164]5 * Copyright (c) 1999-2000 knut st. osmundsen
[1678]6 *
7 * Project Odin Software License can be found in LICENSE.TXT
8 *
9 */
[4164]10#ifndef _modulebase_h_
11#define _modulebase_h_
[1678]12
13
14/*******************************************************************************
15* Defined Constants And Macros *
16*******************************************************************************/
17/*
18 * Error definitions (used in addition to them in bseerr.h)
19 */
20#define ERROR_FAILED_TO_ADD_OBJECT 0x42000000UL
21#define ERROR_INITMETHOD_NOT_INITTIME 0x42000001UL
22#define ERROR_INTERNAL_PROCESSING_ERROR 0x42000002UL
23
24
25/*
[2501]26 * Some useful macros.
27 */
28#define NOREF(a) (a=a) /* Not referenced parameter warning fix. */
29#define ALIGN(a, alignment) (((a) + (alignment - 1UL)) & ~(alignment - 1UL))
30 /* aligns something, a, up to nearest alignment boundrary-
31 * Note: Aligment must be a 2**n number. */
32
[5093]33#ifndef PAGESHIFT
[2925]34#define PAGESHIFT 12 /* bytes to pages or pages to bytes shift value. */
[5093]35#endif
[2925]36#ifndef PAGESIZE
37#define PAGESIZE 0x1000 /* pagesize on i386 */
38#endif
[5093]39#ifndef PAGEOFFSET
[2925]40#define PAGEOFFSET(addr) ((addr) & (PAGESIZE-1)) /* Gets the offset into the page addr points into. */
[5093]41#endif
42#ifndef PAGESTART
[2925]43#define PAGESTART(addr) ((addr) & ~(PAGESIZE-1)) /* Gets the address of the page addr points into. */
[5093]44#endif
[2925]45
46
[2501]47/*
[1678]48 * Output macros.
49 * Macros: option infolevel
50 * printIPE -W1 Error
51 * printErr -W1 Error
52 * printWar -W2 Warning
53 * printInf -W3 Info
54 * printInfA -W4 InfoAll
55 */
56#define printIPE(a) (ModuleBase::ulInfoLevel >= ModuleBase::Error ? \
[21916]57 ModuleBase::printf("\nerror(%d:%s): !Internal Processing Error!\n\t", __LINE__, __FUNCTION__), \
[1678]58 ModuleBase::printf a, \
59 ModuleBase::printf("\n") \
60 : (void)0,(void)0,(void)0 )
61#define printErr(a) (ModuleBase::ulInfoLevel >= ModuleBase::Error ? \
[21916]62 ModuleBase::printf("error(%d:%s: ", __LINE__, __FUNCTION__), \
[1678]63 ModuleBase::printf a \
64 : (void)0,(void)0 )
65#define printWar(a) (ModuleBase::ulInfoLevel >= ModuleBase::Warning ? \
[21916]66 ModuleBase::printf("warning(%s): ", __FUNCTION__), \
[1678]67 ModuleBase::printf a \
68 : (void)0,(void)0 )
69#define printInf(a) (ModuleBase::ulInfoLevel >= ModuleBase::Info ? \
70 ModuleBase::printf a : (void)0 )
71#define printInfA(a)(ModuleBase::ulInfoLevel >= ModuleBase::InfoAll ? \
72 ModuleBase::printf a : (void)0 )
73
74
75/*
[2925]76 * Read macros.
77 * ReadAt: Reads from a file, hFile, at a given offset, ulOffset, into a buffer, pvBuffer,
78 * an amount of bytes, cbToRead.
79 * RING0: Map this to ldrRead with 0UL as flFlags.
80 * RING3: Implementes this function as a static function, ReadAt.
[4164]81 * ReadAtF: Same as ReadAt but two extra parameters; an additional far pointer to the buffer and
82 * a MTE pointer. Used in the read method.
[2925]83 * RING0: Map directly to ldrRead.
84 * RING3: Map to ReadAt, ignoring the two extra parameters.
[1678]85 */
[2925]86#ifdef RING0
87 #define ReadAt(hFile, ulOffset, pvBuffer, cbToRead) \
88 ldrRead(hFile, ulOffset, pvBuffer, 0UL, cbToRead, NULL)
[4164]89 #define ReadAtF(hFile, ulOffset, pvBuffer, fpBuffer, cbToRead, pMTE) \
90 ldrRead(hFile, ulOffset, pvBuffer, fpBuffer, cbToRead, pMTE)
[2925]91#else
[4164]92 #define ReadAtF(hFile, ulOffset, pvBuffer, fpBuffer, cbToRead, pMTE) \
[2925]93 ReadAt(hFile, ulOffset, pvBuffer, cbToRead)
94#endif
[1678]95
96
[2925]97/*******************************************************************************
98* Functions *
99*******************************************************************************/
100#ifndef RING0
101APIRET ReadAt(SFN hFile, ULONG ulOffset, PVOID pvBuffer, ULONG cbToRead);
102#endif
[1678]103
[4164]104/*
105 * Make sure that pLdrLv is defined.
106 */
107#if !defined(RING0) && !defined(_ldrCalls_h_)
108typedef struct ldrlv_s ldrlv_t;
109#endif
[1678]110
111/**
112 * Base class for executable modules.
113 * @author knut st. osmundsen
114 * @approval not approved yet...
115 */
116class ModuleBase
117{
118public:
119 /** @cat Constructor/Destructor */
120 ModuleBase(SFN hFile);
121 virtual ~ModuleBase();
122
123 /** @cat Public Main methods */
[4164]124 virtual ULONG init(PCSZ pszFilename);
125 virtual ULONG read(ULONG offLXFile, PVOID pvBuffer, ULONG fpBuffer, ULONG cbToRead, PMTE pMTE) = 0;
126 virtual ULONG applyFixups(PMTE pMTE, ULONG iObject, ULONG iPageTable, PVOID pvPage,
127 ULONG ulPageAddress, PVOID pvPTDA); /*(ldrEnum32bitRelRecs)*/
[4307]128 virtual ULONG openPath(PCHAR pachFilename, USHORT cchFilename, ldrlv_t *pLdrLv, PULONG pful, ULONG lLibPath); /* (ldrOpenPath) */
[1678]129 #ifndef RING0
[4164]130 virtual ULONG writeFile(PCSZ pszLXFilename);
[1678]131 #endif
132
133 /** @cat public Helper methods */
[4164]134 virtual VOID dumpVirtualLxFile() = 0;
135 BOOL queryIsModuleName(PCSZ pszFilename);
136 PCSZ getFilename();
137 PCSZ getModuleName();
[1678]138
139 /** @cat static print method */
140 static VOID printf(PCSZ pszFormat, ...);
141
142protected:
143 /** @cat private data members. */
144 #ifdef DEBUG
145 BOOL fInitTime; /* init time indicator (debug) */
146 #endif
147 SFN hFile; /* filehandle */
148 PSZ pszFilename; /* fullpath */
[4164]149 PSZ pszModuleName; /* filename without path and extention. */
[1678]150
151 /** @cat public static data. */
152public:
153 static ULONG ulInfoLevel; /* Current output message detail level. */
154 enum {Quiet, Error, Warning, Info, InfoAll}; /* Output message detail levels. */
155};
156
157
158#endif
159
160
Note: See TracBrowser for help on using the repository browser.