sl@0: // Copyright (c) 1995-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of the License "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // e32\include\u32std.h sl@0: // sl@0: // sl@0: sl@0: /** sl@0: @file sl@0: @internalComponent sl@0: @released sl@0: */ sl@0: sl@0: #ifndef __U32STD_H__ sl@0: #define __U32STD_H__ sl@0: #include sl@0: #ifndef SYMBIAN_ENABLE_SPLIT_HEADERS sl@0: #include sl@0: #endif sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: #include sl@0: sl@0: #ifdef __MARM__ sl@0: #define EKA2_ENTRY_POINT_VERSION_IDENTIFIER \ sl@0: asm("tst pc, #%a0" : : "i" ((TInt)0) ) sl@0: #endif sl@0: sl@0: struct TUnicodeDataSet; // forward declaration sl@0: struct TCollationDataSet; // forward declaration sl@0: sl@0: /* sl@0: The LCharSet structure is used in Unicode builds to supply locale-specific sl@0: character attribute and collation data. sl@0: sl@0: The structure is defined in both builds to avoid having to have a dummy ExecHandler::GetLocaleCharSet function sl@0: with a different signature in the 8-bit build. sl@0: */ sl@0: struct LCharSet sl@0: { sl@0: const TUnicodeDataSet* iCharDataSet; // if non-null, character data overriding standard Unicode data sl@0: const TCollationDataSet* iCollationDataSet; // if non-null, locale-specific collation data sl@0: }; sl@0: sl@0: extern const LCharSet* GetLocaleCharSet(); sl@0: sl@0: /** @internalTechnology */ sl@0: const TInt KNumLocaleExports = 22; sl@0: sl@0: // sl@0: // The bits in the type table (non-Unicode build only) sl@0: // sl@0: #ifndef _UNICODE sl@0: sl@0: /** @internalTechnology */ sl@0: const TUint __U=0x01; // Uppercase letter sl@0: sl@0: /** @internalTechnology */ sl@0: const TUint __L=0x02; // Lowercase letter sl@0: sl@0: /** @internalTechnology */ sl@0: const TUint __D=0x04; // Decimal digit sl@0: sl@0: /** @internalTechnology */ sl@0: const TUint __S=0x08; // Space sl@0: sl@0: /** @internalTechnology */ sl@0: const TUint __P=0x10; // Punctuation sl@0: sl@0: /** @internalTechnology */ sl@0: const TUint __C=0x20; // Control character sl@0: sl@0: /** @internalTechnology */ sl@0: const TUint __X=0x40; // Hex digit sl@0: sl@0: /** @internalTechnology */ sl@0: const TUint __B=0x80; // A blank character sl@0: sl@0: #endif sl@0: sl@0: // sl@0: // Time set mode parameters for setting system time and offset sl@0: // sl@0: enum TTimeSetMode sl@0: { sl@0: ETimeSetTime = 1, // set the time to the value given, else leave it unchanged sl@0: ETimeSetOffset = 2, // set the offset to the value given, else leave it unchanged sl@0: ETimeSetAllowTimeReversal = 4, // allow time to go backwards sl@0: ETimeSetNoTimeUpdate = 8, // Don't restart second queue or notify changes - not valid with ESetTime, used early in boot only sl@0: ETimeSetLocalTime = 16, // Set time in local time, instead of UTC sl@0: ETimeSetSecure = 32, // use when setting the secure hardware clock sl@0: }; sl@0: sl@0: // sl@0: enum TMatchType {EMatchNormal,EMatchFolded,EMatchCollated}; sl@0: sl@0: // sl@0: // Constants for descriptor implementation code sl@0: // sl@0: enum TDesType {EBufC,EPtrC,EPtr,EBuf,EBufCPtr}; sl@0: const TUint KMaskDesLength=0xfffffff; sl@0: const TInt KShiftDesType=28; sl@0: sl@0: // sl@0: // Constants for iFlags in DProcess and DThread sl@0: // sl@0: const TUint KThreadFlagProcessCritical = 0x00000001; // thread panic panics process sl@0: const TUint KThreadFlagProcessPermanent = 0x00000002; // thread exit of any kind causes process to exit (=main) sl@0: const TUint KThreadFlagSystemCritical = 0x00000004; // thread panic reboots entire system sl@0: const TUint KThreadFlagSystemPermanent = 0x00000008; // thread exit of any kind reboots entire system sl@0: const TUint KThreadFlagOriginal = 0x00000010; sl@0: const TUint KThreadFlagLastChance = 0x00000020; sl@0: const TUint KThreadFlagRealtime = 0x00000040; // thread will be panicked when using some non-realtime functions sl@0: const TUint KThreadFlagRealtimeTest = 0x00000080; // non-realtime functions only warn rather than panic sl@0: const TUint KThreadFlagLocalThreadDataValid = 0x00000100; // thread has valid local thread data sl@0: const TUint KProcessFlagPriorityControl = 0x40000000; sl@0: const TUint KProcessFlagJustInTime = 0x80000000; sl@0: const TUint KProcessFlagSystemCritical = KThreadFlagSystemCritical; // process panic reboots entire system sl@0: const TUint KProcessFlagSystemPermanent = KThreadFlagSystemPermanent; // process exit of any kind reboots entire system sl@0: // sl@0: const TUint KThreadHandle=0x40000000; sl@0: // sl@0: struct SPtrC8 {TInt length;const TUint8 *ptr;}; sl@0: struct SBufC8 {TInt length;TUint8 buf[1];}; sl@0: struct SPtr8 {TInt length;TInt maxLength;TUint8 *ptr;}; sl@0: struct SBuf8 {TInt length;TInt maxLength;TUint8 buf[1];}; sl@0: struct SBufCPtr8 {TInt length;TInt maxLength;SBufC8 *ptr;}; sl@0: sl@0: struct SPtrC16 {TInt length;const TUint16 *ptr;}; sl@0: struct SBufC16 {TInt length;TUint16 buf[1];}; sl@0: struct SPtr16 {TInt length;TInt maxLength;TUint16 *ptr;}; sl@0: struct SBuf16 {TInt length;TInt maxLength;TUint16 buf[1];}; sl@0: struct SBufCPtr16 {TInt length;TInt maxLength;SBufC16 *ptr;}; sl@0: sl@0: // sl@0: // Flags used for IPC copy functions sl@0: // sl@0: const TInt KChunkShiftBy0=0; sl@0: const TInt KChunkShiftBy1=KMinTInt; sl@0: const TInt KIpcDirRead=0; sl@0: const TInt KIpcDirWrite=0x10000000; sl@0: sl@0: class TChunkCreate sl@0: { sl@0: public: sl@0: // Attributes for chunk creation that are used by both euser and the kernel sl@0: // by classes TChunkCreateInfo and SChunkCreateInfo, respectively. sl@0: enum TChunkCreateAtt sl@0: { sl@0: ENormal = 0x00000000, sl@0: EDoubleEnded = 0x00000001, sl@0: EDisconnected = 0x00000002, sl@0: ECache = 0x00000003, sl@0: EMappingMask = 0x0000000f, sl@0: ELocal = 0x00000000, sl@0: EGlobal = 0x00000010, sl@0: EData = 0x00000000, sl@0: ECode = 0x00000020, sl@0: EMemoryNotOwned = 0x00000040, sl@0: sl@0: // Force local chunk to be named. Only required for thread heap sl@0: // chunks, all other local chunks should be nameless. sl@0: ELocalNamed = 0x000000080, sl@0: sl@0: // Make global chunk read only to all processes but the controlling owner sl@0: EReadOnly = 0x000000100, sl@0: sl@0: // Paging attributes for chunks. sl@0: EPagingUnspec = 0x00000000, sl@0: EPaged = 0x80000000, sl@0: EUnpaged = 0x40000000, sl@0: EPagingMask = EPaged | EUnpaged, sl@0: sl@0: EChunkCreateAttMask = EMappingMask | EGlobal | ECode | sl@0: ELocalNamed | EReadOnly | EPagingMask, sl@0: }; sl@0: public: sl@0: TUint iAtt; sl@0: TBool iForceFixed; sl@0: TInt iInitialBottom; sl@0: TInt iInitialTop; sl@0: TInt iMaxSize; sl@0: TUint8 iClearByte; sl@0: }; sl@0: sl@0: enum TChunkRestrictions sl@0: { sl@0: // Keep this in sync with definitions in RChunk sl@0: EChunkPreventAdjust = 0x01, // Disallow Adjust, Commit, Allocate and Decommit sl@0: }; sl@0: sl@0: class TChannelDoCreate sl@0: { sl@0: public: sl@0: TVersion iVer; sl@0: const TDesC *iName; sl@0: const TDesC *iPhysicalDevice; sl@0: const TDesC8 *iInfo; sl@0: }; sl@0: sl@0: class TCreateSession sl@0: { sl@0: public: sl@0: TVersion iVer; sl@0: TInt iMessageSlots; sl@0: }; sl@0: sl@0: enum TObjectType sl@0: { sl@0: EThread=0, sl@0: EProcess, sl@0: EChunk, sl@0: ELibrary, sl@0: ESemaphore, sl@0: EMutex, sl@0: ETimer, sl@0: EServer, sl@0: ESession, sl@0: ELogicalDevice, sl@0: EPhysicalDevice, sl@0: ELogicalChannel, sl@0: EChangeNotifier, sl@0: EUndertaker, sl@0: EMsgQueue, sl@0: EPropertyRef, sl@0: ECondVar, sl@0: EShPool, sl@0: EShBuf, sl@0: ENumObjectTypes, // number of DObject-derived types sl@0: EObjectTypeAny=-1, sl@0: sl@0: EIpcMessageD=0x20, // lookup IPC message handle, allow disconnect sl@0: EIpcMessage=0x21, // lookup IPC message handle, don't allow disconnect sl@0: EIpcClient=0x22, // lookup IPC message client, don't allow disconnect sl@0: }; sl@0: sl@0: class TObjectOpenInfo sl@0: { sl@0: public: sl@0: TObjectType iObjType; sl@0: TBool isReadOnly; sl@0: }; sl@0: sl@0: class TChannelCreateInfo sl@0: { sl@0: public: sl@0: TVersion iVersion; sl@0: TInt iUnit; sl@0: const TDesC* iPhysicalDevice; sl@0: const TDesC8* iInfo; sl@0: }; sl@0: sl@0: #if defined(_UNICODE) && !defined(__KERNEL_MODE__) sl@0: class TChannelCreateInfo8 sl@0: { sl@0: public: sl@0: TVersion iVersion; sl@0: TInt iUnit; sl@0: const TDesC8* iPhysicalDevice; sl@0: const TDesC8* iInfo; sl@0: }; sl@0: #else sl@0: typedef TChannelCreateInfo TChannelCreateInfo8; sl@0: #endif sl@0: sl@0: const TInt KMaxThreadCreateInfo = 256; sl@0: struct SThreadCreateInfo sl@0: { sl@0: TAny* iHandle; sl@0: TInt iType; sl@0: TThreadFunction iFunction; sl@0: TAny* iPtr; sl@0: TAny* iSupervisorStack; sl@0: TInt iSupervisorStackSize; sl@0: TAny* iUserStack; sl@0: TInt iUserStackSize; sl@0: TInt iInitialThreadPriority; sl@0: TPtrC iName; sl@0: TInt iTotalSize; // Size including any extras (must be a multiple of 8 bytes) sl@0: }; sl@0: sl@0: enum TThreadCreationFlags sl@0: { sl@0: ETraceHeapAllocs = 0x00000001, sl@0: EMonitorHeapMemory = 0x00000002, sl@0: sl@0: EThreadCreateFlagPaged = 0x00000004, sl@0: EThreadCreateFlagUnpaged = 0x00000008, sl@0: EThreadCreateFlagPagingUnspec = 0x00000000, sl@0: EThreadCreateFlagPagingMask = EThreadCreateFlagPaged | EThreadCreateFlagUnpaged, sl@0: sl@0: EThreadCreateFlagMask = ETraceHeapAllocs | EMonitorHeapMemory | EThreadCreateFlagPagingMask, sl@0: }; sl@0: sl@0: struct SStdEpocThreadCreateInfo : public SThreadCreateInfo sl@0: { sl@0: SStdEpocThreadCreateInfo() sl@0: : iFlags(0) // Must be clear on creation. sl@0: { sl@0: }; sl@0: RAllocator* iAllocator; sl@0: TInt iHeapInitialSize; sl@0: TInt iHeapMaxSize; sl@0: TUint iFlags; sl@0: }; sl@0: sl@0: #if defined(_UNICODE) && !defined(__KERNEL_MODE__) sl@0: struct SThreadCreateInfo8 sl@0: { sl@0: TAny* iHandle; sl@0: TInt iType; sl@0: TThreadFunction iFunction; sl@0: TAny* iPtr; sl@0: TAny* iSupervisorStack; sl@0: TInt iSupervisorStackSize; sl@0: TAny* iUserStack; sl@0: TInt iUserStackSize; sl@0: TInt iInitialThreadPriority; sl@0: TPtrC8 iName; sl@0: TInt iTotalSize; // size including any extras sl@0: }; sl@0: sl@0: struct SStdEpocThreadCreateInfo8 : public SThreadCreateInfo8 sl@0: { sl@0: SStdEpocThreadCreateInfo8() sl@0: : iFlags(0) // Must be clear on creation. sl@0: { sl@0: }; sl@0: RAllocator* iAllocator; sl@0: TInt iHeapInitialSize; sl@0: TInt iHeapMaxSize; sl@0: TUint iFlags; sl@0: }; sl@0: #else sl@0: typedef SThreadCreateInfo SThreadCreateInfo8; sl@0: typedef SStdEpocThreadCreateInfo SStdEpocThreadCreateInfo8; sl@0: #endif sl@0: sl@0: struct SIpcCopyInfo sl@0: { sl@0: TUint8* iLocalPtr; sl@0: TInt iLocalLen; sl@0: TInt iFlags; sl@0: }; sl@0: sl@0: enum TChunkAdjust sl@0: { sl@0: EChunkAdjust=0, sl@0: EChunkAdjustDoubleEnded=1, sl@0: EChunkCommit=2, sl@0: EChunkDecommit=3, sl@0: EChunkAllocate=4, sl@0: EChunkUnlock=5, sl@0: EChunkLock=6 sl@0: }; sl@0: sl@0: enum TMemModelAttributes sl@0: { sl@0: EMemModelTypeMask=0xf, // bottom 4 bits give type of memory model sl@0: EMemModelTypeDirect=0, // direct memory model on hardware sl@0: EMemModelTypeMoving=1, // moving memory model on hardware sl@0: EMemModelTypeMultiple=2, // multiple memory model on hardware sl@0: EMemModelTypeEmul=3, // emulation using single host process sl@0: EMemModelTypeFlexible=4, // flexible memory model on hardware sl@0: sl@0: EMemModelAttrRomPaging=0x10, // Demand paging of XIP ROM sl@0: EMemModelAttrCodePaging=0x20, // Demand paging of RAM loaded code sl@0: EMemModelAttrDataPaging=0x40, // Demand paging of all RAM sl@0: EMemModelAttrPagingMask=0xf0, // Mask for demand paging attributes sl@0: sl@0: EMemModelAttrNonExProt=(TInt)0x80000000,// accesses to nonexistent addresses are trapped sl@0: EMemModelAttrKernProt=0x40000000, // accesses to kernel memory from user mode are trapped sl@0: EMemModelAttrWriteProt=0x20000000, // addresses can be marked as read-only; writes to these are trapped sl@0: EMemModelAttrVA=0x10000000, // system supports virtual addresses sl@0: EMemModelAttrProcessProt=0x08000000, // accesses to other processes' memory are trapped sl@0: EMemModelAttrSameVA=0x04000000, // different processes map the same virtual address to different physical addresses sl@0: EMemModelAttrSupportFixed=0x02000000, // 'fixed' processes are supported sl@0: EMemModelAttrSvKernProt=0x01000000, // unexpected accesses to kernel memory within an executive call are trapped sl@0: EMemModelAttrIPCKernProt=0x00800000, // accesses to kernel memory via IPC are trapped sl@0: EMemModelAttrIPCFullProt=0x00400000, // accesses via IPC have same protection as user mode sl@0: EMemModelAttrRamCodeProt=0x00200000, // RAM-loaded code is only visible to processes which have loaded it sl@0: }; sl@0: sl@0: /** @test */ sl@0: enum TKernelHeapDebugFunction {EDbgMarkStart,EDbgMarkCheck,EDbgMarkEnd,EDbgSetAllocFail,EDbgSetBurstAllocFail,EDbgCheckFailure}; sl@0: sl@0: /** @test */ sl@0: class TKernelHeapMarkCheckInfo sl@0: { sl@0: public: sl@0: TBool iCountAll; sl@0: const TDesC8* iFileName; sl@0: TInt iLineNum; sl@0: }; sl@0: // sl@0: class TTrapHandler; sl@0: class CActiveScheduler; sl@0: class TLocale; sl@0: sl@0: // sl@0: // sl@0: // sl@0: // Handler below is used by test prints to trucate rather than panic the caller. sl@0: // sl@0: #if defined(_UNICODE) && !defined(__KERNEL_MODE__) sl@0: NONSHARABLE_CLASS(TestOverflowTruncate) : public TDes16Overflow sl@0: { sl@0: public: sl@0: virtual void Overflow(TDes16 &aDes); sl@0: }; sl@0: #else sl@0: NONSHARABLE_CLASS(TestOverflowTruncate) : public TDes8Overflow sl@0: { sl@0: public: sl@0: virtual void Overflow(TDes8 &aDes); sl@0: }; sl@0: #endif sl@0: // sl@0: sl@0: /******************************************** sl@0: * Thread local storage entry sl@0: ********************************************/ sl@0: struct STls sl@0: { sl@0: TInt iHandle; sl@0: TInt iDllUid; sl@0: TAny* iPtr; sl@0: }; sl@0: sl@0: const TInt KDllUid_Default = 0; // for ROM DLLs and direct calls to UserSvr::DllTls sl@0: const TInt KDllUid_Special = -1; // used on emulator to instruct the kernel to get the DLL UID from the module handle sl@0: sl@0: /******************************************** sl@0: * Entry point call values sl@0: ********************************************/ sl@0: const TInt KModuleEntryReasonProcessInit =0; // Process start sl@0: const TInt KModuleEntryReasonThreadInit =1; // Start new thread sl@0: const TInt KModuleEntryReasonProcessAttach =2; // Process attach (init static data) sl@0: const TInt KModuleEntryReasonProcessDetach =3; // Process detach (destroy static data) sl@0: const TInt KModuleEntryReasonException =4; // Handle exception sl@0: const TInt KModuleEntryReasonVariantInit0 =-3; // Call variant static constructors sl@0: sl@0: /** @publishedPartner sl@0: @released sl@0: */ sl@0: const TInt KModuleEntryReasonExtensionInit0 =-2; // Extension early initialisation check sl@0: sl@0: /** @publishedPartner sl@0: @released sl@0: */ sl@0: const TInt KModuleEntryReasonExtensionInit1 =-1; // Extension initialisation sl@0: sl@0: /** sl@0: Flags returned by Exec::KernelConfigFlags() sl@0: */ sl@0: enum TKernelConfigFlags sl@0: { sl@0: EKernelConfigIpcV1Available = 1<<0, sl@0: EKernelConfigPlatSecEnforcement = 1<<1, sl@0: EKernelConfigPlatSecDiagnostics = 1<<2, sl@0: EKernelConfigPlatSecProcessIsolation = 1<<3, sl@0: EKernelConfigPlatSecEnforceSysBin = 1<<4, sl@0: sl@0: // paging policy values use by 2-bit code and data paging policy enums... sl@0: EKernelConfigPagingPolicyNoPaging = 0, sl@0: EKernelConfigPagingPolicyAlwaysPage = 1, sl@0: EKernelConfigPagingPolicyDefaultUnpaged = 2, sl@0: EKernelConfigPagingPolicyDefaultPaged = 3, sl@0: sl@0: EKernelConfigCodePagingPolicyShift = 5, sl@0: EKernelConfigCodePagingPolicyMask = 3<<5, sl@0: EKernelConfigCodePagingPolicyNoPaging = EKernelConfigPagingPolicyNoPaging<<5, sl@0: EKernelConfigCodePagingPolicyAlwaysPage = EKernelConfigPagingPolicyAlwaysPage<<5, sl@0: EKernelConfigCodePagingPolicyDefaultUnpaged = EKernelConfigPagingPolicyDefaultUnpaged<<5, sl@0: EKernelConfigCodePagingPolicyDefaultPaged = EKernelConfigPagingPolicyDefaultPaged<<5, sl@0: sl@0: EKernelConfigPlatSecLocked = 1<<7, // Primarily used by __PLATSEC_UNLOCKED__ (q.v.) test code sl@0: sl@0: EKernelConfigCrazyScheduling = 1<<8, // Enables thread priority/timeslice craziness sl@0: sl@0: EKernelConfigDataPagingPolicyShift = 9, sl@0: EKernelConfigDataPagingPolicyMask = 3<<9, sl@0: EKernelConfigDataPagingPolicyNoPaging = EKernelConfigPagingPolicyNoPaging<<9, sl@0: EKernelConfigDataPagingPolicyAlwaysPage = EKernelConfigPagingPolicyAlwaysPage<<9, sl@0: EKernelConfigDataPagingPolicyDefaultUnpaged = EKernelConfigPagingPolicyDefaultUnpaged<<9, sl@0: EKernelConfigDataPagingPolicyDefaultPaged = EKernelConfigPagingPolicyDefaultPaged<<9, sl@0: sl@0: EKernelConfigSMPUnsafeCompat = 1<<12, // Enables compatibility mode for SMP-unsafe processes sl@0: EKernelConfigSMPUnsafeCPU0 = 1<<13, // Slow compatibility mode: all SMP-unsafe processes run on CPU 0 only sl@0: EKernelConfigSMPCrazyInterrupts = 1<<14, // Enables CPU target rotation for HW Interrupts. sl@0: sl@0: EKernelConfigDisableAPs = 1u<<30, sl@0: sl@0: EKernelConfigTest = 1u<<31, // Only used by test code for __PLATSEC_UNLOCKED__ sl@0: }; sl@0: sl@0: /** sl@0: If __PLATSEC_UNLOCKED__ is not defined, these flags must always sl@0: be considered to be set. See KernelConfigFlags() in kern_priv.h. sl@0: sl@0: @see KernelConfigFlags() sl@0: sl@0: @internalTechnology sl@0: */ sl@0: #ifdef __PLATSEC_UNLOCKED__ sl@0: #define __PLATSEC_FORCED_FLAGS__ 0 sl@0: #else sl@0: #define __PLATSEC_FORCED_FLAGS__ (EKernelConfigPlatSecEnforcement|EKernelConfigPlatSecProcessIsolation|EKernelConfigPlatSecEnforceSysBin) sl@0: #endif sl@0: sl@0: /** sl@0: @internalTechnology sl@0: */ sl@0: enum TGlobalUserData sl@0: { sl@0: ELocaleDefaultCharSet, sl@0: ELocalePreferredCharSet, sl@0: EMaxGlobalUserData sl@0: }; sl@0: sl@0: typedef void (*TGlobalDestructorFunc)(void); sl@0: sl@0: // This must not conflict with any possible valid TLS keys sl@0: const TInt KGlobalDestructorTlsKey = -1; sl@0: sl@0: GLREF_C void ExitCurrentThread(TExitType, TInt, const TDesC8*); sl@0: sl@0: #ifndef __REMOVE_PLATSEC_DIAGNOSTICS__ sl@0: /** sl@0: @internalTechnology sl@0: */ sl@0: class TPlatSecDiagnostic sl@0: { sl@0: public: sl@0: enum TType sl@0: { sl@0: ELoaderCapabilityViolation1, sl@0: ELoaderCapabilityViolation2, sl@0: EThreadCapabilityCheckFail, sl@0: EProcessCapabilityCheckFail, sl@0: EKernelSecureIdCheckFail, sl@0: EKernelObjectPolicyCheckFail, sl@0: EHandleCapabilityCheckFail, sl@0: ECreatorCapabilityCheckFail, sl@0: EMessageCapabilityCheckFail, sl@0: EKernelProcessIsolationFail, sl@0: EKernelProcessIsolationIPCFail, sl@0: ECreatorPolicyCheckFail, sl@0: }; sl@0: public: sl@0: inline TPlatSecDiagnostic(); sl@0: inline TPlatSecDiagnostic(TType aType); sl@0: inline TPlatSecDiagnostic(TType aType, TInt aInt1, TInt aInt2, const SCapabilitySet& aCaps); sl@0: inline TPlatSecDiagnostic(TType aType, TInt aInt1, const SSecurityInfo& aCaps); sl@0: inline TPlatSecDiagnostic(TType aType, TInt aInt, const TDesC8& aString, const SCapabilitySet& aCaps); sl@0: inline TPlatSecDiagnostic(TType aType, const TDesC8& aString1, const TDesC8& aString2, const SCapabilitySet& aCaps); sl@0: inline TPlatSecDiagnostic(TType aType, TInt aInt1, TInt aInt2); sl@0: inline TPlatSecDiagnostic(TType aType, TInt aInt1); sl@0: inline const TDesC8* String1(); sl@0: inline const TDesC8* String2(); sl@0: public: sl@0: TType iType; sl@0: TInt iArg1; sl@0: TInt iArg2; sl@0: const char* iContextText; sl@0: TInt iContextTextLength; sl@0: SSecurityInfo iSecurityInfo; sl@0: }; sl@0: sl@0: inline TPlatSecDiagnostic::TPlatSecDiagnostic() sl@0: {} sl@0: sl@0: inline TPlatSecDiagnostic::TPlatSecDiagnostic(TType aType) sl@0: : iType(aType) sl@0: {} sl@0: sl@0: inline TPlatSecDiagnostic::TPlatSecDiagnostic(TType aType,TInt aInt1) sl@0: : iType(aType), iArg1(aInt1) sl@0: {} sl@0: sl@0: inline TPlatSecDiagnostic::TPlatSecDiagnostic(TType aType, TInt aInt1, TInt aInt2, const SCapabilitySet& aCaps) sl@0: : iType(aType), iArg1(aInt1), iArg2(aInt2), iContextText(0) sl@0: { sl@0: iSecurityInfo.iSecureId = 0; sl@0: iSecurityInfo.iVendorId = 0; sl@0: iSecurityInfo.iCaps = aCaps; sl@0: }; sl@0: inline TPlatSecDiagnostic::TPlatSecDiagnostic(TType aType, TInt aInt1, const SSecurityInfo& aInfo) sl@0: : iType(aType), iArg1(aInt1), iArg2(ECapability_None), iContextText(0), iSecurityInfo(aInfo) sl@0: { sl@0: }; sl@0: sl@0: inline TPlatSecDiagnostic::TPlatSecDiagnostic(TType aType, TInt aInt, const TDesC8& aString, const SCapabilitySet& aCaps) sl@0: : iType(aType), iArg1(aInt), iArg2((TInt)&aString), iContextText(0) sl@0: { sl@0: iSecurityInfo.iSecureId = 0; sl@0: iSecurityInfo.iVendorId = 0; sl@0: iSecurityInfo.iCaps = aCaps; sl@0: }; sl@0: sl@0: inline TPlatSecDiagnostic::TPlatSecDiagnostic(TType aType, const TDesC8& aString1, const TDesC8& aString2, const SCapabilitySet& aCaps) sl@0: : iType(aType), iArg1((TInt)&aString1), iArg2((TInt)&aString2), iContextText(0) sl@0: { sl@0: iSecurityInfo.iSecureId = 0; sl@0: iSecurityInfo.iVendorId = 0; sl@0: iSecurityInfo.iCaps = aCaps; sl@0: }; sl@0: sl@0: inline TPlatSecDiagnostic::TPlatSecDiagnostic(TType aType, TInt aInt1, TInt aInt2) sl@0: : iType(aType), iArg1(aInt1), iArg2(aInt2) sl@0: { sl@0: iSecurityInfo.iSecureId = 0; sl@0: iSecurityInfo.iVendorId = 0; sl@0: iSecurityInfo.iCaps[0] = 0; sl@0: iSecurityInfo.iCaps[1] = 0; sl@0: }; sl@0: sl@0: inline const TDesC8* TPlatSecDiagnostic::String1() sl@0: { return (const TDesC8*)iArg1; } sl@0: sl@0: inline const TDesC8* TPlatSecDiagnostic::String2() sl@0: { return (const TDesC8*)iArg2; } sl@0: sl@0: inline TInt PlatSec::LoaderCapabilityViolation(const TDesC8& aImporterName, const TDesC8& aFileName, const SCapabilitySet& aMissingCaps) sl@0: { sl@0: TPlatSecDiagnostic d(TPlatSecDiagnostic::ELoaderCapabilityViolation2,aImporterName,aFileName,aMissingCaps); sl@0: return EmitDiagnostic(d, NULL); sl@0: } sl@0: sl@0: #ifdef __KERNEL_MODE__ sl@0: sl@0: inline TInt PlatSec::CapabilityCheckFail(const DProcess* aViolatingProcess, TCapability aCapability, const char* aContextText) sl@0: { sl@0: TPlatSecDiagnostic d(TPlatSecDiagnostic::EProcessCapabilityCheckFail,(TInt)aViolatingProcess,(TInt)aCapability); sl@0: return EmitDiagnostic(d,aContextText); sl@0: } sl@0: sl@0: inline TInt PlatSec::CapabilityCheckFail(const DThread* aViolatingThread, TCapability aCapability, const char* aContextText) sl@0: { sl@0: TPlatSecDiagnostic d(TPlatSecDiagnostic::EThreadCapabilityCheckFail,(TInt)aViolatingThread,(TInt)aCapability); sl@0: return EmitDiagnostic(d,aContextText); sl@0: } sl@0: sl@0: inline TInt PlatSec::SecureIdCheckFail(const DProcess* aViolatingProcess, TSecureId aSid, const char* aContextText) sl@0: { sl@0: TPlatSecDiagnostic d(TPlatSecDiagnostic::EKernelSecureIdCheckFail,(TInt)aViolatingProcess,(TInt)aSid); sl@0: return EmitDiagnostic(d,aContextText); sl@0: } sl@0: sl@0: inline TInt PlatSec::PolicyCheckFail(const DProcess* aProcess, const SSecurityInfo& aMissingSecurityInfo, const char* aContextText) sl@0: { sl@0: TPlatSecDiagnostic d(TPlatSecDiagnostic::EKernelObjectPolicyCheckFail,(TInt)aProcess,(const SSecurityInfo&)aMissingSecurityInfo); sl@0: return EmitDiagnostic(d,aContextText); sl@0: } sl@0: sl@0: inline TInt PlatSec::PolicyCheckFail(const DThread* aThread, const SSecurityInfo& aMissingSecurityInfo, const char* aContextText) sl@0: { sl@0: TPlatSecDiagnostic d(TPlatSecDiagnostic::EKernelObjectPolicyCheckFail,(TInt)aThread,(const SSecurityInfo&)aMissingSecurityInfo); sl@0: return EmitDiagnostic(d,aContextText); sl@0: } sl@0: sl@0: inline TInt PlatSec::ProcessIsolationFail(const char* aContextText) sl@0: { sl@0: TPlatSecDiagnostic d(TPlatSecDiagnostic::EKernelProcessIsolationFail); sl@0: return EmitDiagnostic(d,aContextText); sl@0: } sl@0: sl@0: inline TInt PlatSec::ProcessIsolationIPCFail(RMessageK* aMessage, const char* aContextText) sl@0: { sl@0: TPlatSecDiagnostic d(TPlatSecDiagnostic::EKernelProcessIsolationIPCFail,(TInt)aMessage); sl@0: return EmitDiagnostic(d,aContextText); sl@0: } sl@0: sl@0: #else // !__KERNEL_MODE__ sl@0: sl@0: inline TInt PlatSec::LoaderCapabilityViolation(RProcess aLoadingProcess, const TDesC8& aFileName, const SCapabilitySet& aMissingCaps) sl@0: { sl@0: TPlatSecDiagnostic d(TPlatSecDiagnostic::ELoaderCapabilityViolation1,aLoadingProcess.Handle(),aFileName,aMissingCaps); sl@0: return EmitDiagnostic(d, NULL); sl@0: } sl@0: sl@0: inline TInt PlatSec::CreatorCapabilityCheckFail(TCapability aCapability, const char* aContextText) sl@0: { sl@0: TPlatSecDiagnostic d(TPlatSecDiagnostic::ECreatorCapabilityCheckFail,(TInt)0,aCapability); sl@0: return EmitDiagnostic(d,aContextText); sl@0: } sl@0: sl@0: inline TInt PlatSec::CreatorCapabilityCheckFail(const TCapabilitySet& aMissingCaps, const char* aContextText) sl@0: { sl@0: TPlatSecDiagnostic d(TPlatSecDiagnostic::ECreatorCapabilityCheckFail,(TInt)0,ECapability_None,(const SCapabilitySet&)aMissingCaps); sl@0: return EmitDiagnostic(d,aContextText); sl@0: } sl@0: sl@0: inline TInt PlatSec::CapabilityCheckFail(TInt aHandle, TCapability aCapability, const char* aContextText) sl@0: { sl@0: TPlatSecDiagnostic d(TPlatSecDiagnostic::EHandleCapabilityCheckFail,aHandle,aCapability); sl@0: return EmitDiagnostic(d,aContextText); sl@0: } sl@0: sl@0: inline TInt PlatSec::CapabilityCheckFail(TInt aHandle, const TCapabilitySet& aMissingCaps, const char* aContextText) sl@0: { sl@0: TPlatSecDiagnostic d(TPlatSecDiagnostic::EHandleCapabilityCheckFail,aHandle,ECapability_None,(const SCapabilitySet&)aMissingCaps); sl@0: return EmitDiagnostic(d,aContextText); sl@0: } sl@0: sl@0: inline TInt PlatSec::PolicyCheckFail(TInt aHandle, const SSecurityInfo& aMissingSecurityInfo, const char* aContextText) sl@0: { sl@0: TPlatSecDiagnostic d(TPlatSecDiagnostic::EHandleCapabilityCheckFail,aHandle,(const SSecurityInfo&)aMissingSecurityInfo); sl@0: return EmitDiagnostic(d,aContextText); sl@0: } sl@0: sl@0: inline TInt PlatSec::CapabilityCheckFail(RMessagePtr2 aMessage, TCapability aCapability, const char* aContextText) sl@0: { sl@0: TPlatSecDiagnostic d(TPlatSecDiagnostic::EMessageCapabilityCheckFail,(TInt)aMessage.Handle(),aCapability); sl@0: return EmitDiagnostic(d,aContextText); sl@0: } sl@0: sl@0: inline TInt PlatSec::CapabilityCheckFail(RMessagePtr2 aMessage, const TCapabilitySet& aMissingCaps, const char* aContextText) sl@0: { sl@0: TPlatSecDiagnostic d(TPlatSecDiagnostic::EMessageCapabilityCheckFail,(TInt)aMessage.Handle(),ECapability_None,(const SCapabilitySet&)aMissingCaps); sl@0: return EmitDiagnostic(d,aContextText); sl@0: } sl@0: sl@0: inline TInt PlatSec::PolicyCheckFail(RMessagePtr2 aMessage, const SSecurityInfo& aMissing, const char* aContextText) sl@0: { sl@0: TPlatSecDiagnostic d(TPlatSecDiagnostic::EMessageCapabilityCheckFail,(TInt)aMessage.Handle(),(const SSecurityInfo&)aMissing); sl@0: return EmitDiagnostic(d,aContextText); sl@0: } sl@0: sl@0: inline TInt PlatSec::CreatorPolicyCheckFail(const SSecurityInfo& aMissing, const char* aContextText) sl@0: { sl@0: TPlatSecDiagnostic d(TPlatSecDiagnostic::ECreatorPolicyCheckFail,(TInt)0,(const SSecurityInfo&)aMissing); sl@0: return EmitDiagnostic(d,aContextText); sl@0: } sl@0: sl@0: #endif //__KERNEL_MODE__ sl@0: #endif // !__REMOVE_PLATSEC_DIAGNOSTICS__ sl@0: sl@0: const TInt KTlsArrayGranularity=2; sl@0: sl@0: #ifdef __CPU_HAS_CP15_THREAD_ID_REG sl@0: sl@0: #define __USERSIDE_THREAD_DATA__ sl@0: sl@0: class TLocalThreadData sl@0: { sl@0: public: sl@0: void Close(); sl@0: #ifndef __KERNEL_MODE__ sl@0: TAny* DllTls(TInt aHandle, TInt aDllUid); sl@0: TInt DllSetTls(TInt aHandle, TInt aDllUid, TAny* aPtr); sl@0: void DllFreeTls(TInt aHandle); sl@0: #endif sl@0: public: sl@0: RAllocator* iHeap; ///< The thread's current heap sl@0: CActiveScheduler* iScheduler; ///< The thread's current active scheduler sl@0: TTrapHandler* iTrapHandler; ///< The thread's current trap handler sl@0: private: sl@0: RAllocator* iTlsHeap; ///< The heap that the DLL TLS data is stored on sl@0: RArray iTls; ///< DLL TLS data sl@0: }; sl@0: sl@0: const TInt KLocalThreadDataSize = _ALIGN_UP(sizeof(TLocalThreadData), 8); sl@0: sl@0: #endif sl@0: sl@0: #ifdef __WINS__ sl@0: sl@0: enum TWin32RuntimeReason sl@0: { sl@0: // Same values as passed to DllMain sl@0: EWin32RuntimeProcessAttach = 1, sl@0: EWin32RuntimeThreadAttach = 2, sl@0: EWin32RuntimeThreadDetach = 3, sl@0: EWin32RuntimeProcessDetach = 4, sl@0: }; sl@0: sl@0: typedef TBool (*TWin32RuntimeHook)(TWin32RuntimeReason); sl@0: sl@0: #endif sl@0: sl@0: struct SAtomicOpInfo64 sl@0: { sl@0: TAny* iA; sl@0: TAny* iQ; sl@0: TUint64 i1; sl@0: TUint64 i2; sl@0: TUint64 i3; sl@0: }; sl@0: sl@0: struct SAtomicOpInfo32 sl@0: { sl@0: TAny* iA; sl@0: union sl@0: { sl@0: TAny* iQ; sl@0: TUint32 i0; sl@0: }; sl@0: TUint32 i1; sl@0: TUint32 i2; sl@0: }; sl@0: sl@0: #endif //__U32STD_H__