[2826] | 1 | /* $Id: kLdrInternal.h 2843 2006-10-30 04:16:08Z bird $ */
|
---|
[2825] | 2 | /** @file
|
---|
| 3 | *
|
---|
| 4 | * kLdr - The Dynamic Loader, internal header.
|
---|
| 5 | *
|
---|
| 6 | * Copyright (c) 2006 knut st. osmundsen <bird-kbuild-src@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 |
|
---|
| 28 | #ifndef __kLdrInternal_h__
|
---|
| 29 | #define __kLdrInternal_h__
|
---|
| 30 |
|
---|
| 31 | #ifdef __cplusplus
|
---|
| 32 | extern "C" {
|
---|
| 33 | #endif
|
---|
| 34 |
|
---|
[2827] | 35 | /* ignore definitions in winnt.h */
|
---|
| 36 | #undef IMAGE_DOS_SIGNATURE
|
---|
| 37 | #undef IMAGE_NT_SIGNATURE
|
---|
| 38 |
|
---|
| 39 | /** @name Signatures we know
|
---|
| 40 | * @{ */
|
---|
| 41 | /** ELF signature ("\x7fELF"). */
|
---|
| 42 | #define IMAGE_ELF_SIGNATURE KLDRHLP_LE2H_U32(0x7f | ('E' << 8) | ((uint32_t)'L' << 16) | ((uint32_t)'F' << 24))
|
---|
| 43 | /** PE signature ("PE\0\0"). */
|
---|
| 44 | #define IMAGE_NT_SIGNATURE KLDRHLP_LE2H_U32('P' | ('E' << 8))
|
---|
| 45 | /** LX signature ("LX") */
|
---|
| 46 | #define IMAGE_LX_SIGNATURE KLDRHLP_LE2H_U16('L' | ('X' << 8))
|
---|
| 47 | /** LE signature ("LE") */
|
---|
| 48 | #define IMAGE_LE_SIGNATURE KLDRHLP_LE2H_U16('L' | ('E' << 8))
|
---|
| 49 | /** NE signature ("NE") */
|
---|
| 50 | #define IMAGE_NE_SIGNATURE KLDRHLP_LE2H_U16('N' | ('E' << 8))
|
---|
| 51 | /** MZ signature ("MZ"). */
|
---|
| 52 | #define IMAGE_DOS_SIGNATURE KLDRHLP_LE2H_U16('M' | ('Z' << 8))
|
---|
| 53 | /** @} */
|
---|
| 54 |
|
---|
[2833] | 55 | /** @defgroup grp_kLdrInternal Internals
|
---|
| 56 | * @internal
|
---|
| 57 | * @{
|
---|
| 58 | */
|
---|
[2827] | 59 |
|
---|
[2833] | 60 |
|
---|
[2825] | 61 | /** Native file provider operations. */
|
---|
| 62 | extern const KLDRRDROPS g_kLdrRdrFileOps;
|
---|
| 63 |
|
---|
| 64 |
|
---|
| 65 | /**
|
---|
| 66 | * The state of a dynamic loader module.
|
---|
[2840] | 67 | * @image html KLDRSTATE.gif "The state diagram"
|
---|
[2825] | 68 | */
|
---|
| 69 | typedef enum KLDRSTATE
|
---|
| 70 | {
|
---|
| 71 | /** The usual invalid 0 enum. */
|
---|
| 72 | KLDRSTATE_INVALID = 0,
|
---|
[2840] | 73 |
|
---|
| 74 | /** The module has just been opened and linked into the load list.
|
---|
| 75 | *
|
---|
[2836] | 76 | * Prev state: -
|
---|
[2840] | 77 | * Next state: MAPPED, PENDING_DESTROY
|
---|
[2836] | 78 | */
|
---|
[2825] | 79 | KLDRSTATE_OPEN,
|
---|
[2840] | 80 |
|
---|
| 81 | /** The module segments has been mapped into the process memory.
|
---|
| 82 | *
|
---|
[2836] | 83 | * Prev state: OPEN
|
---|
[2840] | 84 | * Next state: LOADED_PREREQUISITES, PENDING_DESTROY
|
---|
[2836] | 85 | */
|
---|
| 86 | KLDRSTATE_MAPPED,
|
---|
[2837] | 87 | /** The module has been reloaded and needs to be fixed up again.
|
---|
[2840] | 88 | * This can occure when the loader is called recursivly.
|
---|
| 89 | *
|
---|
| 90 | * The reason RELOADED modules must go back to the PENDING_GC state is
|
---|
| 91 | * because we want to guard against uninit order issues, and therefore
|
---|
| 92 | * doesn't unmap modules untill all pending termintation callbacks has
|
---|
| 93 | * been executed.
|
---|
| 94 | *
|
---|
[2837] | 95 | * Prev state: PENDING_GC
|
---|
[2840] | 96 | * Next state: RELOADED_LOADED_PREREQUISITES, PENDING_GC
|
---|
[2837] | 97 | */
|
---|
| 98 | KLDRSTATE_RELOADED,
|
---|
[2840] | 99 |
|
---|
[2837] | 100 | /** The immediate prerequisites have been loaded.
|
---|
[2840] | 101 | *
|
---|
| 102 | * Prev state: MAPPED
|
---|
| 103 | * Next state: FIXED_UP, PENDING_DESTROY
|
---|
[2836] | 104 | */
|
---|
[2837] | 105 | KLDRSTATE_LOADED_PREREQUISITES,
|
---|
[2840] | 106 | /** The immediate prerequisites have been loaded for a reloaded module.
|
---|
| 107 | *
|
---|
| 108 | * Prev state: RELOADED
|
---|
| 109 | * Next state: RELOADED_FIXED_UP, PENDING_GC
|
---|
| 110 | */
|
---|
| 111 | KLDRSTATE_RELOADED_LOADED_PREREQUISITES,
|
---|
| 112 |
|
---|
[2836] | 113 | /** Fixups has been applied.
|
---|
[2840] | 114 | *
|
---|
[2837] | 115 | * Prev state: LOADED_PREREQUISITES
|
---|
[2840] | 116 | * Next state: PENDING_INITIALIZATION, PENDING_DESTROY
|
---|
[2836] | 117 | */
|
---|
| 118 | KLDRSTATE_FIXED_UP,
|
---|
[2840] | 119 | /** Fixups has been applied.
|
---|
| 120 | *
|
---|
| 121 | * Prev state: RELOADED_LOADED_PREREQUISITES
|
---|
[2836] | 122 | * Next state: PENDING_INITIALIZATION, PENDING_GC
|
---|
| 123 | */
|
---|
[2840] | 124 | KLDRSTATE_RELOADED_FIXED_UP,
|
---|
| 125 |
|
---|
| 126 | /** Pending initialization.
|
---|
| 127 | * While the module is in this state the loader is in reentrant mode.
|
---|
| 128 | *
|
---|
| 129 | * Prev state: FIXED_UP, RELOADED_FIXED_UP
|
---|
| 130 | * Next state: INITIALIZATION, PENDING_GC
|
---|
| 131 | */
|
---|
[2836] | 132 | KLDRSTATE_PENDING_INITIALIZATION,
|
---|
[2840] | 133 |
|
---|
[2836] | 134 | /** Initializing.
|
---|
[2840] | 135 | * While the module is in this state the loader is in reentrant mode.
|
---|
| 136 | *
|
---|
[2836] | 137 | * Prev state: PENDING_INITIALIZATION
|
---|
| 138 | * Next state: GOOD, PENDING_GC
|
---|
| 139 | */
|
---|
| 140 | KLDRSTATE_INITIALIZING,
|
---|
[2840] | 141 |
|
---|
| 142 | /** Initialization failed.
|
---|
| 143 | *
|
---|
| 144 | * This is somewhat similar to PENDING_GC except that, a module
|
---|
| 145 | * in this state cannot be reloaded untill we've done GC. This ensures
|
---|
| 146 | * that a init failure during recursive loading is propagated up.
|
---|
| 147 | *
|
---|
| 148 | * While the module is in this state the loader is in reentrant mode.
|
---|
| 149 | *
|
---|
| 150 | * Prev state: INITIALIZING
|
---|
| 151 | * Next state: GC
|
---|
| 152 | */
|
---|
| 153 | KLDRSTATE_INITIALIZATION_FAILED,
|
---|
| 154 |
|
---|
[2836] | 155 | /** The module has been successfully loaded and initialized.
|
---|
[2840] | 156 | * While the module is in this state the loader can be in reentrant
|
---|
| 157 | * or 'unused' mode.
|
---|
| 158 | *
|
---|
[2836] | 159 | * Prev state: INITIALIZING
|
---|
| 160 | * Next state: PENDING_TERMINATION
|
---|
| 161 | */
|
---|
| 162 | KLDRSTATE_GOOD,
|
---|
[2840] | 163 |
|
---|
[2836] | 164 | /** Pending termination, reference count is 0.
|
---|
[2840] | 165 | * While the module is in this state the loader is in reentrant mode.
|
---|
[2842] | 166 | * Prerequisite modules are dropped when a module enters this state.
|
---|
[2840] | 167 | *
|
---|
[2836] | 168 | * Prev state: GOOD
|
---|
| 169 | * Next state: TERMINATING, GOOD
|
---|
| 170 | */
|
---|
| 171 | KLDRSTATE_PENDING_TERMINATION,
|
---|
[2840] | 172 |
|
---|
[2836] | 173 | /** Terminating, reference count is still 0.
|
---|
[2840] | 174 | * While the module is in this state the loader is in reentrant mode.
|
---|
| 175 | *
|
---|
[2836] | 176 | * Prev state: PENDING_TERMINATION
|
---|
| 177 | * Next state: PENDING_GC
|
---|
| 178 | */
|
---|
| 179 | KLDRSTATE_TERMINATING,
|
---|
[2840] | 180 |
|
---|
[2836] | 181 | /** Pending garbage collection.
|
---|
[2842] | 182 | * Prerequisite modules are dropped when a module enters this state (if not done already).
|
---|
[2840] | 183 | *
|
---|
| 184 | * Prev state: TERMINATING, PENDING_INITIALIZATION, INITIALIZATION_FAILED
|
---|
[2837] | 185 | * Next state: GC, RELOADED
|
---|
[2836] | 186 | */
|
---|
| 187 | KLDRSTATE_PENDING_GC,
|
---|
[2840] | 188 |
|
---|
[2836] | 189 | /** Being garbage collected.
|
---|
[2840] | 190 | *
|
---|
| 191 | * Prev state: PENDING_GC, INITIALIZATION_FAILED
|
---|
[2837] | 192 | * Next state: PENDING_DESTROY, DESTROYED
|
---|
[2836] | 193 | */
|
---|
| 194 | KLDRSTATE_GC,
|
---|
[2840] | 195 |
|
---|
[2837] | 196 | /** The module has be unlinked, but there are still stack references to it.
|
---|
[2840] | 197 | *
|
---|
| 198 | * Prev state: GC, FIXED_UP, LOADED_PREREQUISITES, MAPPED, OPEN
|
---|
[2837] | 199 | * Next state: DESTROYED
|
---|
[2836] | 200 | */
|
---|
[2837] | 201 | KLDRSTATE_PENDING_DESTROY,
|
---|
[2840] | 202 |
|
---|
[2836] | 203 | /** The module has been destroyed and is no longer valid.
|
---|
[2840] | 204 | *
|
---|
[2837] | 205 | * Prev state: GC, PENDING_DESTROY
|
---|
[2836] | 206 | */
|
---|
| 207 | KLDRSTATE_DESTROYED,
|
---|
[2840] | 208 |
|
---|
[2825] | 209 | /** The end of valid states (exclusive) */
|
---|
[2836] | 210 | KLDRSTATE_END = KLDRSTATE_DESTROYED,
|
---|
[2825] | 211 | /** The usual 32-bit blowup. */
|
---|
| 212 | KLDRSTATE_32BIT_HACK = 0x7fffffff
|
---|
| 213 | } KLDRSTATE;
|
---|
| 214 |
|
---|
| 215 |
|
---|
| 216 | /**
|
---|
| 217 | * Dynamic loader module.
|
---|
| 218 | */
|
---|
[2833] | 219 | typedef struct KLDRDYLDMOD
|
---|
[2825] | 220 | {
|
---|
[2833] | 221 | /** Magic number. */
|
---|
| 222 | uint32_t u32MagicHead;
|
---|
| 223 | /** The module state. */
|
---|
| 224 | KLDRSTATE enmState;
|
---|
[2825] | 225 | /** The module. */
|
---|
| 226 | PKLDRMOD pMod;
|
---|
[2836] | 227 | /** The module handle. */
|
---|
| 228 | HKLDRMOD hMod;
|
---|
[2837] | 229 | /** The total number of references. */
|
---|
[2825] | 230 | uint32_t cRefs;
|
---|
[2837] | 231 | /** The number of dependency references. */
|
---|
| 232 | uint32_t cDepRefs;
|
---|
| 233 | /** The number of dynamic load references. */
|
---|
[2825] | 234 | uint32_t cDynRefs;
|
---|
[2836] | 235 | /** Set if this is the executable module.
|
---|
| 236 | * When clear, the module is a shared object or relocatable object. */
|
---|
[2825] | 237 | uint32_t fExecutable : 1;
|
---|
| 238 | /** Global DLL (set) or specific DLL (clear). */
|
---|
[2836] | 239 | uint32_t fGlobalOrSpecific : 1;
|
---|
| 240 | /** Whether the module contains bindable symbols in the global unix namespace. */
|
---|
| 241 | uint32_t fBindable : 1;
|
---|
[2842] | 242 | /** Set if linked into the global init list. */
|
---|
| 243 | uint32_t fInitList : 1;
|
---|
| 244 | /** Already loaded or checked prerequisites.
|
---|
| 245 | * This flag is used when loading prerequisites, when set it means that
|
---|
| 246 | * this module is already seen and shouldn't be processed again. */
|
---|
| 247 | uint32_t fAlreadySeen : 1;
|
---|
[2825] | 248 | /** Reserved for future use. */
|
---|
[2842] | 249 | uint32_t fReserved : 27;
|
---|
[2836] | 250 | /** The load list linkage. */
|
---|
| 251 | struct
|
---|
| 252 | {
|
---|
| 253 | /** The next module in the list. */
|
---|
| 254 | struct KLDRDYLDMOD *pNext;
|
---|
| 255 | /** The prev module in the list. */
|
---|
| 256 | struct KLDRDYLDMOD *pPrev;
|
---|
| 257 | } Load;
|
---|
[2842] | 258 | /** The initialization and termination list linkage.
|
---|
| 259 | * If non-recursive initialization is used, the module will be pushed on
|
---|
| 260 | * the initialization list.
|
---|
[2840] | 261 | * A module will be linked into the termination list upon a successful
|
---|
| 262 | * return from module initialization. */
|
---|
[2836] | 263 | struct
|
---|
| 264 | {
|
---|
| 265 | /** The next module in the list. */
|
---|
| 266 | struct KLDRDYLDMOD *pNext;
|
---|
| 267 | /** The prev module in the list. */
|
---|
| 268 | struct KLDRDYLDMOD *pPrev;
|
---|
[2842] | 269 | } InitTerm;
|
---|
[2836] | 270 | /** The bind order list linkage.
|
---|
| 271 | * The module is not in this list when fBindable is clear. */
|
---|
| 272 | struct
|
---|
| 273 | {
|
---|
| 274 | /** The next module in the list. */
|
---|
| 275 | struct KLDRDYLDMOD *pNext;
|
---|
| 276 | /** The prev module in the list. */
|
---|
| 277 | struct KLDRDYLDMOD *pPrev;
|
---|
| 278 | } Bind;
|
---|
[2842] | 279 |
|
---|
| 280 | /** The number of prerequisite modules in the prereq array. */
|
---|
| 281 | uint32_t cPrereqs;
|
---|
| 282 | /** Pointer to an array of prerequisite module pointers.
|
---|
| 283 | * This array is only filled when in the states starting with
|
---|
| 284 | * KLDRSTATE_LOADED_PREREQUISITES thru KLDRSTATE_GOOD.
|
---|
| 285 | */
|
---|
| 286 | struct KLDRDYLDMOD **papPrereqs;
|
---|
| 287 |
|
---|
[2833] | 288 | /** Magic number. */
|
---|
| 289 | uint32_t u32MagicTail;
|
---|
| 290 | } KLDRDYLDMOD, *PKLDRDYLDMOD, **PPKLDRDYLDMOD;
|
---|
[2825] | 291 |
|
---|
[2836] | 292 | /** KLDRDYLDMOD magic value. (Fuyumi Soryo) */
|
---|
[2833] | 293 | #define KLDRDYMOD_MAGIC 0x19590106
|
---|
[2825] | 294 |
|
---|
[2833] | 295 | /** Return / crash validation of a module handle argument. */
|
---|
| 296 | #define KLDRDYLD_VALIDATE_HKLDRMOD(hMod) \
|
---|
| 297 | do { \
|
---|
| 298 | if ( (hMod) == NIL_HKLDRMOD \
|
---|
| 299 | || (hMod)->u32MagicHead != KLDRDYMOD_MAGIC \
|
---|
| 300 | || (hMod)->u32MagicTail != KLDRDYMOD_MAGIC) \
|
---|
| 301 | { \
|
---|
| 302 | return KLDR_ERR_INVALID_HANDLE; \
|
---|
| 303 | } \
|
---|
| 304 | } while (0)
|
---|
| 305 |
|
---|
| 306 |
|
---|
[2843] | 307 | int kldrDyldFindNewModule(const char *pszName, const char *pszPrefix, const char *pszSuffix,
|
---|
[2835] | 308 | KLDRDYLDSEARCH enmSearch, unsigned fFlags, PPKLDRDYLDMOD ppMod);
|
---|
[2843] | 309 | int kldrDyldFindExistingModule(const char *pszName, const char *pszPrefix, const char *pszSuffix,
|
---|
[2835] | 310 | KLDRDYLDSEARCH enmSearch, unsigned fFlags, PPKLDRDYLDMOD ppMod);
|
---|
| 311 |
|
---|
| 312 |
|
---|
| 313 | int kldrDyldModCreate(PKLDRRDR pRdr, PPKLDRDYLDMOD ppMod);
|
---|
| 314 | int kldrDyldModDestroy(PKLDRDYLDMOD pMod);
|
---|
[2837] | 315 | int kldrDyldModAddRef(PKLDRDYLDMOD pMod);
|
---|
| 316 | void kldrDyldModDeref(PKLDRDYLDMOD pMod);
|
---|
| 317 | int kldrDyldModAddDep(PKLDRDYLDMOD pMod, PKLDRDYLDMOD pDep);
|
---|
| 318 | void kldrDyldModRemoveDep(PKLDRDYLDMOD pMod, PKLDRDYLDMOD pDep);
|
---|
[2835] | 319 | int kldrDyldModDynamicLoad(PKLDRDYLDMOD pMod);
|
---|
| 320 | int kldrDyldModDynamicUnload(PKLDRDYLDMOD pMod);
|
---|
| 321 | int kldrDyldModMarkGlobal(PKLDRDYLDMOD pMod);
|
---|
| 322 | int kldrDyldModMarkSpecific(PKLDRDYLDMOD pMod);
|
---|
| 323 | int kldrDyldModSetBindable(PKLDRDYLDMOD pMod);
|
---|
| 324 | int kldrDyldModClearBindable(PKLDRDYLDMOD pMod);
|
---|
| 325 | int kldrDyldModSetDeepBindable(PKLDRDYLDMOD pMod);
|
---|
| 326 | int kldrDyldModClearDeepBindable(PKLDRDYLDMOD pMod);
|
---|
| 327 | int kldrDyldModMap(PKLDRDYLDMOD pMod);
|
---|
| 328 | int kldrDyldModUnmap(PKLDRDYLDMOD pMod);
|
---|
[2843] | 329 | int kldrDyldModLoadPrerequisites(PKLDRDYLDMOD pMod, const char *pszPrefix, const char *pszSuffix,
|
---|
[2837] | 330 | KLDRDYLDSEARCH enmSearch, unsigned fFlags);
|
---|
| 331 | int kldrDyldModCheckPrerequisites(PKLDRDYLDMOD pMod);
|
---|
| 332 | void kldrDyldModUnloadPrerequisites(PKLDRDYLDMOD pMod);
|
---|
[2835] | 333 | int kldrDyldModFixup(PKLDRDYLDMOD pMod);
|
---|
| 334 | int kldrDyldModCallInit(PKLDRDYLDMOD pMod);
|
---|
[2837] | 335 | void kldrDyldModCallTerm(PKLDRDYLDMOD pMod);
|
---|
| 336 | int kldrDyldModReload(PKLDRDYLDMOD pMod);
|
---|
[2836] | 337 | int kldrDyldModAttachThread(PKLDRDYLDMOD pMod);
|
---|
| 338 | int kldrDyldModDetachThread(PKLDRDYLDMOD pMod);
|
---|
[2843] | 339 | int kldrDyldModGetStackInfo(PKLDRDYLDMOD pMod, void **ppvStack, size_t *pcbStack);
|
---|
[2835] | 340 | int kldrDyldModStartExe(PKLDRDYLDMOD pMod);
|
---|
| 341 |
|
---|
| 342 | int kldrDyldModGetName(PKLDRDYLDMOD pMod, char *pszName, size_t cchName);
|
---|
| 343 | int kldrDyldModGetFilename(PKLDRDYLDMOD pMod, char *pszFilename, size_t cchFilename);
|
---|
| 344 | int kldrDyldModQuerySymbol(PKLDRDYLDMOD pMod, uint32_t uSymbolOrdinal, const char *pszSymbolName, uintptr_t *pValue, uint32_t *pfKind);
|
---|
| 345 |
|
---|
| 346 |
|
---|
[2843] | 347 | int kldrDyldFailure(int rc, const char *pszFilename, ...);
|
---|
| 348 | int kldrInit(void);
|
---|
| 349 | void kldrTerm(void);
|
---|
[2835] | 350 |
|
---|
| 351 |
|
---|
[2842] | 352 | /** Pointer to the head module (the executable).
|
---|
| 353 | * (This is exported, so no prefix.) */
|
---|
| 354 | extern PKLDRDYLDMOD kLdrDyldHead;
|
---|
| 355 | /** Pointer to the tail module.
|
---|
| 356 | * (This is exported, so no prefix.) */
|
---|
| 357 | extern PKLDRDYLDMOD kLdrDyldTail;
|
---|
[2836] | 358 | /** Pointer to the head module of the termination order list. */
|
---|
| 359 | extern PKLDRDYLDMOD g_pkLdrDyldTermHead;
|
---|
| 360 | /** Pointer to the tail module of the termination order list. */
|
---|
| 361 | extern PKLDRDYLDMOD g_pkLdrDyldTermTail;
|
---|
| 362 | /** Pointer to the head module of the bind order list.
|
---|
| 363 | * The modules in this list makes up the global namespace used when binding symbol unix fashion. */
|
---|
| 364 | extern PKLDRDYLDMOD g_pkLdrDyldBindHead;
|
---|
| 365 | /** Pointer to the tail module of the bind order list. */
|
---|
| 366 | extern PKLDRDYLDMOD g_pkLdrDyldBindTail;
|
---|
| 367 |
|
---|
[2835] | 368 | /** The global error buffer. */
|
---|
| 369 | extern char g_szkLdrDyldError[1024];
|
---|
[2825] | 370 |
|
---|
[2836] | 371 | /** The Library search path. */
|
---|
| 372 | extern char kLdrDyldLibraryPath[4096];
|
---|
[2833] | 373 |
|
---|
[2836] | 374 |
|
---|
[2825] | 375 | /** @} */
|
---|
| 376 | #ifdef __cplusplus
|
---|
| 377 | }
|
---|
| 378 | #endif
|
---|
| 379 |
|
---|
| 380 | #endif
|
---|