os/ossrv/lowlevellibsandfws/apputils/bsul/inc/clientmessagecmn.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// Wrapper around RMessage2 that provides message validation and error handling
sl@0
    15
// to improve robustness of system servers under IPC attack
sl@0
    16
// 
sl@0
    17
//
sl@0
    18
sl@0
    19
#if !defined(CLIENTMESSAGECMN_H)
sl@0
    20
#define CLIENTMESSAGECMN_H
sl@0
    21
sl@0
    22
#include <e32std.h>
sl@0
    23
#include <e32base.h>
sl@0
    24
#include <e32debug.h>
sl@0
    25
#include <babitflags.h>
sl@0
    26
#include "clientmessage.h"
sl@0
    27
sl@0
    28
namespace BSUL
sl@0
    29
	{
sl@0
    30
sl@0
    31
	
sl@0
    32
	/**
sl@0
    33
	This defines the maximum number of parameters that can be stored in a  
sl@0
    34
	TClientMessageSchema structure.  This corresponds to the maximum number
sl@0
    35
	of arguments in an RMessage2
sl@0
    36
	@internalComponent
sl@0
    37
	*/
sl@0
    38
	const TInt KMaxParameters = 4;
sl@0
    39
	
sl@0
    40
	/**
sl@0
    41
	This mask is used to select the parameter type from TParameterDetails.iType
sl@0
    42
	@internalComponent
sl@0
    43
	*/	
sl@0
    44
	const TInt KParamTypeMask = 0xFFFF;
sl@0
    45
	
sl@0
    46
	/**
sl@0
    47
	This mask is used to select the validation function index from 
sl@0
    48
	TParameterDetails.iType
sl@0
    49
	@internalComponent
sl@0
    50
	*/	
sl@0
    51
	const TInt KValidationFnIndexMask = 0xFFFF0000;
sl@0
    52
	
sl@0
    53
	/**
sl@0
    54
	This is used to shift down the value masked using KValidationFnIndexMask 
sl@0
    55
	@internalComponent
sl@0
    56
	*/	
sl@0
    57
	const TInt KShift16Bit = 16;
sl@0
    58
	
sl@0
    59
	
sl@0
    60
	/**
sl@0
    61
	This enum lists the flags currently represented by the TBitFlags32
sl@0
    62
	CClientMessage::iFlags
sl@0
    63
	@internalComponent 
sl@0
    64
	**/
sl@0
    65
	enum TFlagValues
sl@0
    66
		{
sl@0
    67
		EFlagParam0Validated = 0,
sl@0
    68
		EFlagParam1Validated,
sl@0
    69
		EFlagParam2Validated,
sl@0
    70
		EFlagParam3Validated,
sl@0
    71
		/** Informs CompleteRequestL() that message not valid as client has already been panicked. */
sl@0
    72
		EFlagPanicClient,
sl@0
    73
		/** Setting this flag indicates that for bad message errors, request 
sl@0
    74
		should be completed with error code rather than panicking the client */
sl@0
    75
		EFlagDoNotPanicClientOnBadMessageErrors = 30,
sl@0
    76
		EFlagLogBadMessages = 31
sl@0
    77
		};
sl@0
    78
	
sl@0
    79
	/**
sl@0
    80
	This class implements the behaviour for a TInt parameter type.
sl@0
    81
	The ValidateL function reads the Int value from the clients message and checks 
sl@0
    82
	that the value read is between the iMax and iMin constraints defined in the 
sl@0
    83
	message schema.
sl@0
    84
	@internalComponent
sl@0
    85
	*/
sl@0
    86
	NONSHARABLE_CLASS(CIntParameter) : public CMessageParameterBase
sl@0
    87
	{
sl@0
    88
	public:
sl@0
    89
		
sl@0
    90
		static CMessageParameterBase* NewL(const TParameterDetails& aParam, TInt aParamIndex, 
sl@0
    91
				const RMessage2& aMessage, TCustomValidationFn aValidationFn);
sl@0
    92
		virtual ~CIntParameter();
sl@0
    93
		virtual void ValidateL();
sl@0
    94
		virtual TInt GetIntL();
sl@0
    95
		
sl@0
    96
	private:
sl@0
    97
		CIntParameter(const TParameterDetails& aParam,TInt aParamIndex, 
sl@0
    98
				const RMessage2& aMessage, TCustomValidationFn aValidationFn);
sl@0
    99
	
sl@0
   100
	private:	
sl@0
   101
		//This stores the TInt value read from the client message during validation
sl@0
   102
		TInt iValue;
sl@0
   103
	};
sl@0
   104
	
sl@0
   105
	/**
sl@0
   106
	This class implements the behaviour for a read only 8 bit
sl@0
   107
	descriptor parameter type.  The ValidateL function checks that the length 
sl@0
   108
	of the descriptor argument in the client’s process does not exceed iMax 
sl@0
   109
	defined in the message schema.
sl@0
   110
	@internalComponent
sl@0
   111
	*/
sl@0
   112
	NONSHARABLE_CLASS(CDes8ReadParameter) : public CMessageParameterBase
sl@0
   113
	{
sl@0
   114
	public:
sl@0
   115
		static CMessageParameterBase* NewL(const TParameterDetails& aParam, TInt aParamIndex, 
sl@0
   116
				const RMessage2& aMessage, TCustomValidationFn aValidationFn);
sl@0
   117
		virtual ~CDes8ReadParameter();
sl@0
   118
		virtual void ValidateL();
sl@0
   119
		virtual const TDesC8& GetDes8L();
sl@0
   120
		virtual TInt GetDesLengthL();
sl@0
   121
		virtual void ReadL(TDes8& aDes, TInt aOffset);	
sl@0
   122
		
sl@0
   123
	private:
sl@0
   124
		CDes8ReadParameter(const TParameterDetails& aParam, TInt aParamIndex, 
sl@0
   125
				const RMessage2& aMessage, TCustomValidationFn aValidationFn);
sl@0
   126
		
sl@0
   127
	private:	
sl@0
   128
		//On validation this descriptor is instantiated and the contents or the client 
sl@0
   129
		//descriptor are read into the local descriptor 
sl@0
   130
		HBufC8* iValue;
sl@0
   131
	};
sl@0
   132
	
sl@0
   133
	/**
sl@0
   134
	This class implements the behaviour for a read\write 8 bit
sl@0
   135
	descriptor parameter type.  The ValidateL function checks that the MaxLength 
sl@0
   136
	of the descriptor in the client’s process is not less than iMin and that the 
sl@0
   137
	length of the descriptor does not exceed iMax defined in the message schema. 
sl@0
   138
	@internalComponent
sl@0
   139
	*/
sl@0
   140
	NONSHARABLE_CLASS(CDes8Parameter) : public CMessageParameterBase
sl@0
   141
	{
sl@0
   142
	public:
sl@0
   143
		static CMessageParameterBase* NewL(const TParameterDetails& aParam, TInt aParamIndex, 
sl@0
   144
				const RMessage2& aMessage, TCustomValidationFn aValidationFn);
sl@0
   145
		virtual ~CDes8Parameter();
sl@0
   146
		virtual void ValidateL();
sl@0
   147
		virtual void WriteL(const TDesC8& aDes, TInt aOffset);
sl@0
   148
		virtual void ReadL(TDes8& aDes, TInt aOffset);
sl@0
   149
		virtual TInt GetDesLengthL();
sl@0
   150
		virtual TInt GetDesMaxLengthL();
sl@0
   151
		
sl@0
   152
	protected:
sl@0
   153
		CDes8Parameter(const TParameterDetails& aParam, TInt aParamIndex, 
sl@0
   154
				const RMessage2& aMessage, TCustomValidationFn aValidationFn);
sl@0
   155
	};
sl@0
   156
	
sl@0
   157
	/**
sl@0
   158
	This class implements the behaviour for a read only 16 bit
sl@0
   159
	descriptor parameter type.  The ValidateL function checks that the length 
sl@0
   160
	of the descriptor argument in the client’s process does not exceed iMax 
sl@0
   161
	defined in the message schema.
sl@0
   162
	@internalComponent
sl@0
   163
	*/
sl@0
   164
	NONSHARABLE_CLASS(CDes16ReadParameter) : public CMessageParameterBase
sl@0
   165
	{
sl@0
   166
	public:
sl@0
   167
		static CMessageParameterBase* NewL(const TParameterDetails& aParam, TInt aParamIndex, 
sl@0
   168
				const RMessage2& aMessage, TCustomValidationFn aValidationFn);	
sl@0
   169
		virtual ~CDes16ReadParameter();
sl@0
   170
		virtual void ValidateL();
sl@0
   171
		virtual const TDesC& GetDes16L();
sl@0
   172
		virtual TInt GetDesLengthL();
sl@0
   173
		virtual void ReadL(TDes& aDes, TInt aOffset);
sl@0
   174
		
sl@0
   175
		
sl@0
   176
	private:
sl@0
   177
		CDes16ReadParameter(const TParameterDetails& aParam, TInt aParamIndex, 
sl@0
   178
				const RMessage2& aMessage, TCustomValidationFn aValidationFn);
sl@0
   179
		
sl@0
   180
	private:
sl@0
   181
		//On validation this descriptor is instantiated and the contents or the client 
sl@0
   182
		//descriptor are read into the local descriptor 
sl@0
   183
		HBufC* iValue;
sl@0
   184
	};
sl@0
   185
	
sl@0
   186
	/**
sl@0
   187
	This class implements the behaviour for a read\write 16 bit
sl@0
   188
	descriptor parameter type.  The ValidateL function checks that the MaxLength 
sl@0
   189
	of the descriptor in the client’s process is not less than iMin and that the 
sl@0
   190
	length of the descriptor does not exceed iMax defined in the message schema. 
sl@0
   191
	@internalComponent
sl@0
   192
	*/
sl@0
   193
	NONSHARABLE_CLASS(CDes16Parameter) : public CMessageParameterBase
sl@0
   194
	{
sl@0
   195
	public:
sl@0
   196
		static CMessageParameterBase* NewL(const TParameterDetails& aParam, TInt aParamIndex, 
sl@0
   197
				const RMessage2& aMessage, TCustomValidationFn aValidationFn);
sl@0
   198
		virtual ~CDes16Parameter();
sl@0
   199
		virtual void ValidateL();
sl@0
   200
		virtual void WriteL(const TDesC& aDes, TInt aOffset);
sl@0
   201
		virtual void ReadL(TDes& aDes, TInt aOffset);
sl@0
   202
		virtual TInt GetDesLengthL();
sl@0
   203
		virtual TInt GetDesMaxLengthL();
sl@0
   204
		
sl@0
   205
	private:
sl@0
   206
		CDes16Parameter(const TParameterDetails& aParam, TInt aParamIndex, 
sl@0
   207
				const RMessage2& aMessage, TCustomValidationFn aValidationFn);
sl@0
   208
	};
sl@0
   209
	
sl@0
   210
	
sl@0
   211
	/**
sl@0
   212
	This class implements the behaviour for a generic TPckg<>
sl@0
   213
	parameter type.  The ValidateL function calls the custom validation function 
sl@0
   214
	passed in to the object on creation.
sl@0
   215
	@internalComponent
sl@0
   216
	*/
sl@0
   217
	NONSHARABLE_CLASS(CPckgParameter) : public CDes8Parameter
sl@0
   218
	{
sl@0
   219
	public:
sl@0
   220
		static CMessageParameterBase* NewL(const TParameterDetails& aParam, TInt aParamIndex, 
sl@0
   221
				const RMessage2& aMessage, TCustomValidationFn aValidationFn);
sl@0
   222
		virtual ~CPckgParameter();
sl@0
   223
		virtual void ValidateL();
sl@0
   224
		
sl@0
   225
	private:
sl@0
   226
		CPckgParameter(const TParameterDetails& aParam, TInt aParamIndex, 
sl@0
   227
				const RMessage2& aMessage, TCustomValidationFn aValidationFn );
sl@0
   228
	};
sl@0
   229
	
sl@0
   230
	
sl@0
   231
	/**
sl@0
   232
	This class implements the behaviour for a Ptr parameter type.
sl@0
   233
	The ValidateL function reads the TAny* from the clients message and stores it for
sl@0
   234
	retrieval.
sl@0
   235
	@internalComponent
sl@0
   236
	*/
sl@0
   237
	NONSHARABLE_CLASS(CPtrParameter) : public CMessageParameterBase
sl@0
   238
	{
sl@0
   239
	public:
sl@0
   240
		static CMessageParameterBase* NewL(const TParameterDetails& aParam, TInt aParamIndex, 
sl@0
   241
				const RMessage2& aMessage, TCustomValidationFn aValidationFn);
sl@0
   242
		
sl@0
   243
		/**
sl@0
   244
		Destructor for CPtrParameter class.
sl@0
   245
		*/
sl@0
   246
		virtual ~CPtrParameter(){};
sl@0
   247
		virtual void ValidateL();
sl@0
   248
		virtual const TAny* GetPtrL();
sl@0
   249
		
sl@0
   250
	private:
sl@0
   251
	
sl@0
   252
		/**
sl@0
   253
		Constructor for CPtrParameter class.
sl@0
   254
		*/
sl@0
   255
		CPtrParameter(const TParameterDetails& aParam, TInt aParamIndex, 
sl@0
   256
				const RMessage2& aMessage, TCustomValidationFn aValidationFn);
sl@0
   257
		
sl@0
   258
	private:
sl@0
   259
		//This stores the TAny* value read from the client message during validation
sl@0
   260
		const TAny* iValue;
sl@0
   261
	};
sl@0
   262
	
sl@0
   263
	/**
sl@0
   264
	This typedef is used to simplify the declaration of the message schema
sl@0
   265
	table defined by the server.
sl@0
   266
	@internalComponent
sl@0
   267
	*/
sl@0
   268
	typedef CMessageParameterBase* (*TMessageParameterFactoryFn)(const TParameterDetails& aParam, 
sl@0
   269
				TInt aParamIndex, const RMessage2& aMessage, TCustomValidationFn aValidationFn);
sl@0
   270
		
sl@0
   271
	}//namespace
sl@0
   272
sl@0
   273
#endif