sl@0: /* sl@0: * Copyright (c) 2007-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: * Information shared between SCS client and server implementations, sl@0: * and with the subclass implementations, but not with the client API user. sl@0: * sl@0: */ sl@0: sl@0: sl@0: /** sl@0: @file sl@0: @internalTechnology sl@0: @released sl@0: */ sl@0: sl@0: #ifndef SCSCOMMON_H sl@0: #define SCSCOMMON_H sl@0: sl@0: #include sl@0: sl@0: #ifndef BULLSEYE_OFF sl@0: #ifdef _BullseyeCoverage sl@0: #define BULLSEYE_OFF "BullseyeCoverage save off"; sl@0: #define BULLSEYE_RESTORE "BullseyeCoverage restore"; sl@0: #else sl@0: #define BULLSEYE_OFF sl@0: #define BULLSEYE_RESTORE sl@0: #endif sl@0: #endif sl@0: sl@0: namespace ScsImpl sl@0: { sl@0: /** sl@0: Bit position of SCS code in function code. sl@0: sl@0: Do not change - Some of the codes based off this definition sl@0: ARE public. sl@0: */ sl@0: const TInt KScsFunctionPos = 24; sl@0: sl@0: /** sl@0: Mask used to extract SCS commands. sl@0: sl@0: Do not change - Some of the codes based off this definition sl@0: ARE public. sl@0: */ sl@0: const TInt KScsFunctionMask = 0xFF000000; sl@0: sl@0: enum TScsFunction sl@0: /** sl@0: Bits 31:24 of the function code are reserved for SCS fields. sl@0: The values below should be or'd into the code that is sent to sl@0: the server, on the client side. sl@0: sl@0: The recognized values intentionally exclude zero, to ensure sl@0: that a field is added on the client side. sl@0: */ sl@0: { sl@0: /** sl@0: Function should be handled by session's DoServiceL. sl@0: sl@0: This value is effectively PUBLIC because the range used is sl@0: described by defines in scsserver.h (used for configuring sl@0: server security). sl@0: */ sl@0: ECallSessionFunc = 1 << KScsFunctionPos, sl@0: sl@0: /** sl@0: The SCS sends the lower bits of the function code to the subsession's sl@0: (not the session's) ServiceL implementation. sl@0: sl@0: The session's implementation of [Do]ServiceL is not involved. sl@0: sl@0: This value is effectively PUBLIC because the range used is sl@0: described by defines in scsserver.h (used for configuring sl@0: server security). sl@0: */ sl@0: ECallSubsessionFunc = 2 << KScsFunctionPos, sl@0: sl@0: /** sl@0: This message is send with no function identifier or sl@0: IPC arguments just before the session is closed. Although sl@0: not necessary, it will cancel any outstanding requests on sl@0: the session or its subsessions with KErrCancel, so if the sl@0: client has any outstanding requests they will still get sl@0: completed. sl@0: */ sl@0: EPreCloseSession = 3 << KScsFunctionPos, sl@0: sl@0: /** sl@0: Cancel an asynchronous session-relative function. The low sl@0: bits of the function code should be the same as the original sl@0: function code. E.g. if the function was set up with sl@0: ENoScsFunction | X then it would be cancelled with ECancelSessionFunction | X. sl@0: sl@0: The session's implementation of [Do]ServiceL is not involved. sl@0: */ sl@0: ECancelSessionFunc = 4 << KScsFunctionPos, sl@0: sl@0: /** sl@0: Tells the server that this function will create a new subsession. sl@0: The low bits can be interpreted by the implementation to indicate sl@0: a type of subsession. sl@0: */ sl@0: ECreateSubsession = 5 << KScsFunctionPos, sl@0: /** sl@0: This SCS code should be used on its own. Any information in the sl@0: lower bits will be ignored. sl@0: */ sl@0: ECloseSubsession = 6 << KScsFunctionPos, sl@0: sl@0: /** sl@0: Similar to ECancelSessionFunction, this cancels an asynchronous sl@0: request on a subsession object. The request will be completed with sl@0: KErrCancel. sl@0: sl@0: The subsession's implementation of ServiceL is not involved. sl@0: sl@0: @see ECancelSessionFunction sl@0: */ sl@0: ECancelSubsessionFunc = 7 << KScsFunctionPos, sl@0: sl@0: /** sl@0: Only supported in debug builds, this function starts a server-side sl@0: heap mark with __UHEAP_MARK and sets a deterministic failure rate. sl@0: This function should only be used by RScsClientBase::SetServerHeapFail. sl@0: sl@0: @see EUHeapResetFail sl@0: @see RScsClientBase::SetServerHeapFail sl@0: */ sl@0: EUHeapSetFail = 8 << KScsFunctionPos, sl@0: sl@0: /** sl@0: Only supported in debug builds, this function ends the server-side sl@0: heap mark set up with EUHeapSetFail, with __UHEAP_MARKEND, and resets sl@0: the heap failure rate. This function should only be used by sl@0: RScsClientBase::ResetServerHeapFail. sl@0: sl@0: @see EUHeapSetFail sl@0: @see RScsClientBase::ResetServerHeapFail sl@0: */ sl@0: EUHeapResetFail = 9 << KScsFunctionPos, sl@0: sl@0: /** sl@0: Intended for debug use, but also present in production builds. sl@0: sl@0: Returns the PID of the server. This is a number, not a sl@0: handle, so does not impact security. sl@0: sl@0: */ sl@0: EGetServerPid = 10 << KScsFunctionPos, sl@0: sl@0: /** sl@0: Intended for debug use, but also present in production builds. sl@0: sl@0: This call causes a server which has an inactivity shutdown sl@0: timer to shutdown immediately the next time it is sl@0: idle. This is just adjusts the timing of existing sl@0: functionality, so is not believed to impact security. sl@0: sl@0: If the server has a shutdown timer, then a flag is set sl@0: which causes the server to immediately exit the next time sl@0: it becomes idle. sl@0: sl@0: If the server does not have a shutdown timer, then the sl@0: calls fails with KErrNotSupported. sl@0: */ sl@0: EShutdownAsap = 11 << KScsFunctionPos, sl@0: sl@0: /** sl@0: This value is not used by the server implementation. It is provided sl@0: for test code to confirm the server handles an uncrecognized instruction sl@0: correctly, by failing with KErrNotSupported. sl@0: */ sl@0: EScsUnused = 0x20 << KScsFunctionPos sl@0: }; sl@0: sl@0: inline void ExtractScsAndImplFunctions(const RMessage2& aMessage, TScsFunction* aScsFunc, TInt* aImplFunc); sl@0: inline TBool ScsFieldUsed(TInt aFunction); sl@0: sl@0: /** sl@0: SCS clients are panicked with this category when invalid sl@0: input to the server is detected. sl@0: sl@0: @see TClientPanic sl@0: */ sl@0: _LIT(KScsClientPanicCat, "SCS-Client"); sl@0: sl@0: enum TScsClientPanic sl@0: /** sl@0: Reasons why the SCS server might panic its clients. sl@0: sl@0: @see KScsClientPanicCat sl@0: */ sl@0: { sl@0: EScsClBadDesc = 0, ///< Client provided a bad descriptor as an IPC argument. sl@0: EScsClBadHandle = 1, ///< Client passed a bad subsession handle. sl@0: EScsClAsyncAlreadyQueued = 2, ///< Client attempted to requeue an outstanding request. sl@0: sl@0: /** No-arg session-relative function identifier used reserved SCS bits. */ sl@0: EScsClNoArgsSessUsedScs = 4, sl@0: sl@0: /** Arg session-relative function identifier used reserved SCS bits. */ sl@0: EScsClArgsSessUsedScs = 5, sl@0: sl@0: /** Arg session-relative async function identifier used reserved SCS bits. */ sl@0: EScsClArgsSessAsyncUsedScs = 6, sl@0: sl@0: /** Session-relative cancel function identifier used reserved SCS bits. */ sl@0: EScsClCancelSessUsedScs = 7, sl@0: sl@0: /** No-arg subsession-relative function identifier used reserved SCS bits. */ sl@0: EScsClNoArgsSubsessUsedScs = 16, sl@0: sl@0: /** Arg subsession-relative function identifier used reserved SCS bits. */ sl@0: EScsClArgsSubsessUsedScs = 17, sl@0: sl@0: /** Arg subsession-relative async function identifier used reserved SCS bits. */ sl@0: EScsClArgsSubsessAsyncUsedScs = 18, sl@0: sl@0: /* Subsesion-relative cancel function identifier used reserved SCS bits. */ sl@0: EScsClCancelSubsessUsedScs = 19 sl@0: }; sl@0: sl@0: // defined only in client-side implementation sl@0: void ClientSidePanic(ScsImpl::TScsClientPanic aReason); sl@0: } // namespace ScsImpl sl@0: sl@0: #include sl@0: sl@0: #endif // #ifndef SCSCOMMON_H sl@0: