os/security/cryptomgmtlibs/securitycommonutils/inc/scscommon.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/*
sl@0
     2
* Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     3
* All rights reserved.
sl@0
     4
* This component and the accompanying materials are made available
sl@0
     5
* under the terms of the License "Eclipse Public License v1.0"
sl@0
     6
* which accompanies this distribution, and is available
sl@0
     7
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     8
*
sl@0
     9
* Initial Contributors:
sl@0
    10
* Nokia Corporation - initial contribution.
sl@0
    11
*
sl@0
    12
* Contributors:
sl@0
    13
*
sl@0
    14
* Description: 
sl@0
    15
* Information shared between SCS client and server implementations,
sl@0
    16
* and with the subclass implementations, but not with the client API user.
sl@0
    17
*
sl@0
    18
*/
sl@0
    19
sl@0
    20
sl@0
    21
/**
sl@0
    22
 @file
sl@0
    23
 @internalTechnology
sl@0
    24
 @released
sl@0
    25
*/
sl@0
    26
sl@0
    27
#ifndef SCSCOMMON_H
sl@0
    28
#define SCSCOMMON_H
sl@0
    29
sl@0
    30
#include <e32std.h>
sl@0
    31
sl@0
    32
#ifndef BULLSEYE_OFF
sl@0
    33
#ifdef _BullseyeCoverage
sl@0
    34
#define BULLSEYE_OFF "BullseyeCoverage save off";
sl@0
    35
#define BULLSEYE_RESTORE "BullseyeCoverage restore";
sl@0
    36
#else
sl@0
    37
#define BULLSEYE_OFF 
sl@0
    38
#define BULLSEYE_RESTORE 
sl@0
    39
#endif
sl@0
    40
#endif
sl@0
    41
sl@0
    42
namespace ScsImpl
sl@0
    43
	{
sl@0
    44
	/** 
sl@0
    45
		Bit position of SCS code in function code.
sl@0
    46
sl@0
    47
		Do not change - Some of the codes based off this definition
sl@0
    48
		ARE public.
sl@0
    49
	*/
sl@0
    50
	const TInt KScsFunctionPos = 24;
sl@0
    51
	
sl@0
    52
	/** 
sl@0
    53
		Mask used to extract SCS commands.
sl@0
    54
sl@0
    55
		Do not change - Some of the codes based off this definition
sl@0
    56
		ARE public.
sl@0
    57
	*/
sl@0
    58
	const TInt KScsFunctionMask = 0xFF000000;
sl@0
    59
	
sl@0
    60
	enum TScsFunction
sl@0
    61
	/**
sl@0
    62
		Bits 31:24 of the function code are reserved for SCS fields.
sl@0
    63
		The values below should be or'd into the code that is sent to
sl@0
    64
		the server, on the client side.
sl@0
    65
		
sl@0
    66
		The recognized values intentionally exclude zero, to ensure
sl@0
    67
		that a field is added on the client side.
sl@0
    68
	 */
sl@0
    69
		{
sl@0
    70
		/** 
sl@0
    71
			Function should be handled by session's DoServiceL.
sl@0
    72
sl@0
    73
			This value is effectively PUBLIC because the range used is
sl@0
    74
			described by defines in scsserver.h (used for configuring
sl@0
    75
			server security).
sl@0
    76
		*/
sl@0
    77
		ECallSessionFunc = 1 << KScsFunctionPos,
sl@0
    78
		
sl@0
    79
		/**
sl@0
    80
			The SCS sends the lower bits of the function code to the subsession's
sl@0
    81
			(not the session's) ServiceL implementation.
sl@0
    82
sl@0
    83
			The session's implementation of [Do]ServiceL is not involved.
sl@0
    84
sl@0
    85
			This value is effectively PUBLIC because the range used is
sl@0
    86
			described by defines in scsserver.h (used for configuring
sl@0
    87
			server security).
sl@0
    88
		 */
sl@0
    89
		ECallSubsessionFunc = 2 << KScsFunctionPos,
sl@0
    90
sl@0
    91
		/**
sl@0
    92
			This message is send with no function identifier or
sl@0
    93
			IPC arguments just before the session is closed.  Although
sl@0
    94
			not necessary, it will cancel any outstanding requests on
sl@0
    95
			the session or its subsessions with KErrCancel, so if the
sl@0
    96
			client has any outstanding requests they will still get
sl@0
    97
			completed.
sl@0
    98
		 */
sl@0
    99
		EPreCloseSession = 3 << KScsFunctionPos,
sl@0
   100
		
sl@0
   101
		/**
sl@0
   102
			Cancel an asynchronous session-relative function.  The low
sl@0
   103
			bits of the function code should be the same as the original
sl@0
   104
			function code.  E.g. if the function was set up with
sl@0
   105
			ENoScsFunction | X then it would be cancelled with ECancelSessionFunction | X.
sl@0
   106
sl@0
   107
			The session's implementation of [Do]ServiceL is not involved.
sl@0
   108
		 */
sl@0
   109
		ECancelSessionFunc = 4 << KScsFunctionPos,
sl@0
   110
sl@0
   111
		/**
sl@0
   112
			Tells the server that this function will create a new subsession.
sl@0
   113
			The low bits can be interpreted by the implementation to indicate
sl@0
   114
			a type of subsession.
sl@0
   115
		 */
sl@0
   116
		ECreateSubsession = 5 << KScsFunctionPos,
sl@0
   117
		/**
sl@0
   118
			This SCS code should be used on its own.  Any information in the
sl@0
   119
			lower bits will be ignored.
sl@0
   120
		 */
sl@0
   121
		ECloseSubsession = 6 << KScsFunctionPos,
sl@0
   122
sl@0
   123
		/**
sl@0
   124
			Similar to ECancelSessionFunction, this cancels an asynchronous
sl@0
   125
			request on a subsession object.  The request will be completed with
sl@0
   126
			KErrCancel.
sl@0
   127
sl@0
   128
			The subsession's implementation of ServiceL is not involved.
sl@0
   129
sl@0
   130
			@see ECancelSessionFunction
sl@0
   131
		 */
sl@0
   132
		ECancelSubsessionFunc = 7 << KScsFunctionPos,
sl@0
   133
		
sl@0
   134
		/**
sl@0
   135
			Only supported in debug builds, this function starts a server-side
sl@0
   136
			heap mark with __UHEAP_MARK and sets a deterministic failure rate.
sl@0
   137
			This function should only be used by RScsClientBase::SetServerHeapFail.
sl@0
   138
sl@0
   139
			@see EUHeapResetFail
sl@0
   140
			@see RScsClientBase::SetServerHeapFail
sl@0
   141
		 */
sl@0
   142
		EUHeapSetFail = 8 << KScsFunctionPos,
sl@0
   143
sl@0
   144
		/**
sl@0
   145
			Only supported in debug builds, this function ends the server-side
sl@0
   146
			heap mark set up with EUHeapSetFail, with __UHEAP_MARKEND, and resets
sl@0
   147
			the heap failure rate.  This function should only be used by
sl@0
   148
			RScsClientBase::ResetServerHeapFail.
sl@0
   149
sl@0
   150
			@see EUHeapSetFail
sl@0
   151
			@see RScsClientBase::ResetServerHeapFail
sl@0
   152
		 */
sl@0
   153
		EUHeapResetFail = 9 << KScsFunctionPos,
sl@0
   154
sl@0
   155
		/**
sl@0
   156
			Intended for debug use, but also present in production builds.
sl@0
   157
sl@0
   158
			Returns the PID of the server. This is a number, not a
sl@0
   159
			handle, so does not impact security.
sl@0
   160
sl@0
   161
		 */
sl@0
   162
		EGetServerPid = 10 << KScsFunctionPos,
sl@0
   163
sl@0
   164
		/**
sl@0
   165
			Intended for debug use, but also present in production builds.
sl@0
   166
sl@0
   167
			This call causes a server which has an inactivity shutdown
sl@0
   168
			timer to shutdown immediately the next time it is
sl@0
   169
			idle. This is just adjusts the timing of existing
sl@0
   170
			functionality, so is not believed to impact security.
sl@0
   171
sl@0
   172
			If the server has a shutdown timer, then a flag is set
sl@0
   173
			which causes the server to immediately exit the next time
sl@0
   174
			it becomes idle.
sl@0
   175
sl@0
   176
			If the server does not have a shutdown timer, then the
sl@0
   177
			calls fails with KErrNotSupported.
sl@0
   178
		 */
sl@0
   179
		EShutdownAsap = 11 << KScsFunctionPos,
sl@0
   180
		
sl@0
   181
		/**
sl@0
   182
			This value is not used by the server implementation.  It is provided
sl@0
   183
			for test code to confirm the server handles an uncrecognized instruction
sl@0
   184
			correctly, by failing with KErrNotSupported.
sl@0
   185
		 */
sl@0
   186
		EScsUnused = 0x20 << KScsFunctionPos
sl@0
   187
		};
sl@0
   188
	
sl@0
   189
	inline void ExtractScsAndImplFunctions(const RMessage2& aMessage, TScsFunction* aScsFunc, TInt* aImplFunc);
sl@0
   190
	inline TBool ScsFieldUsed(TInt aFunction);
sl@0
   191
sl@0
   192
	/**
sl@0
   193
		SCS clients are panicked with this category when invalid
sl@0
   194
		input to the server is detected.
sl@0
   195
sl@0
   196
		@see TClientPanic
sl@0
   197
	 */
sl@0
   198
	_LIT(KScsClientPanicCat, "SCS-Client");
sl@0
   199
sl@0
   200
	enum TScsClientPanic
sl@0
   201
	/**
sl@0
   202
		Reasons why the SCS server might panic its clients.
sl@0
   203
sl@0
   204
		@see KScsClientPanicCat
sl@0
   205
	 */
sl@0
   206
		{
sl@0
   207
		EScsClBadDesc = 0,				///< Client provided a bad descriptor as an IPC argument.
sl@0
   208
		EScsClBadHandle = 1,			///< Client passed a bad subsession handle.
sl@0
   209
		EScsClAsyncAlreadyQueued = 2,	///< Client attempted to requeue an outstanding request.
sl@0
   210
		
sl@0
   211
		/** No-arg session-relative function identifier used reserved SCS bits. */
sl@0
   212
		EScsClNoArgsSessUsedScs = 4,
sl@0
   213
		
sl@0
   214
		/** Arg session-relative function identifier used reserved SCS bits. */
sl@0
   215
		EScsClArgsSessUsedScs = 5,
sl@0
   216
		
sl@0
   217
		/** Arg session-relative async function identifier used reserved SCS bits. */
sl@0
   218
		EScsClArgsSessAsyncUsedScs = 6,
sl@0
   219
		
sl@0
   220
		/** Session-relative cancel function identifier used reserved SCS bits. */
sl@0
   221
		EScsClCancelSessUsedScs = 7,
sl@0
   222
		
sl@0
   223
		/** No-arg subsession-relative function identifier used reserved SCS bits. */
sl@0
   224
		EScsClNoArgsSubsessUsedScs = 16,
sl@0
   225
		
sl@0
   226
		/** Arg subsession-relative function identifier used reserved SCS bits. */
sl@0
   227
		EScsClArgsSubsessUsedScs = 17,
sl@0
   228
		
sl@0
   229
		/** Arg subsession-relative async function identifier used reserved SCS bits. */
sl@0
   230
		EScsClArgsSubsessAsyncUsedScs = 18,
sl@0
   231
		
sl@0
   232
		/* Subsesion-relative cancel function identifier used reserved SCS bits. */
sl@0
   233
		EScsClCancelSubsessUsedScs = 19
sl@0
   234
		};
sl@0
   235
	
sl@0
   236
	// defined only in client-side implementation
sl@0
   237
	void ClientSidePanic(ScsImpl::TScsClientPanic aReason);
sl@0
   238
	}	// namespace ScsImpl
sl@0
   239
sl@0
   240
#include <scs/scscommon.inl>
sl@0
   241
sl@0
   242
#endif	// #ifndef SCSCOMMON_H
sl@0
   243