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(CLIENTMESSAGE_H)
|
sl@0
|
20 |
#define CLIENTMESSAGE_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 |
|
sl@0
|
27 |
namespace BSUL
|
sl@0
|
28 |
{
|
sl@0
|
29 |
|
sl@0
|
30 |
//Version number of the client server framework code
|
sl@0
|
31 |
const TInt KClientMessageVersion = 0x1;
|
sl@0
|
32 |
|
sl@0
|
33 |
//Forward Declarations
|
sl@0
|
34 |
class CMessageParameterBase;
|
sl@0
|
35 |
|
sl@0
|
36 |
//Const Declarations
|
sl@0
|
37 |
|
sl@0
|
38 |
/**
|
sl@0
|
39 |
Returned to caller to indicate that the requested message number is not
|
sl@0
|
40 |
supported by the current server
|
sl@0
|
41 |
@publishedPartner
|
sl@0
|
42 |
@released
|
sl@0
|
43 |
*/
|
sl@0
|
44 |
const TInt KErrInvalidFunction = -1004;
|
sl@0
|
45 |
|
sl@0
|
46 |
/**
|
sl@0
|
47 |
Returned to caller if a message is passed in containing a non-descriptor
|
sl@0
|
48 |
parameter which doesn't meet the constraints specified in the schema
|
sl@0
|
49 |
@publishedPartner
|
sl@0
|
50 |
@released
|
sl@0
|
51 |
*/
|
sl@0
|
52 |
const TInt KErrBadParameter = -1005;
|
sl@0
|
53 |
|
sl@0
|
54 |
/**
|
sl@0
|
55 |
Returned to caller in UREL mode when the server attempts to call a
|
sl@0
|
56 |
CMessageParameterBase function which is not defined for the given
|
sl@0
|
57 |
parameter type. E.g. calling GetIntL() on a Descriptor parameter.
|
sl@0
|
58 |
@publishedPartner
|
sl@0
|
59 |
@released
|
sl@0
|
60 |
*/
|
sl@0
|
61 |
const TInt KErrWrongParameterType = -1006;
|
sl@0
|
62 |
|
sl@0
|
63 |
/**
|
sl@0
|
64 |
Returned to caller in UREL mode when a message is found to be
|
sl@0
|
65 |
incorrectly defined in the message schema.
|
sl@0
|
66 |
@publishedPartner
|
sl@0
|
67 |
@released
|
sl@0
|
68 |
*/
|
sl@0
|
69 |
const TInt KErrBadMessageSchema = -1007;
|
sl@0
|
70 |
|
sl@0
|
71 |
|
sl@0
|
72 |
/**
|
sl@0
|
73 |
Returned to caller to indicate that the requested parameter has not yet
|
sl@0
|
74 |
been validated
|
sl@0
|
75 |
@publishedPartner
|
sl@0
|
76 |
@released
|
sl@0
|
77 |
*/
|
sl@0
|
78 |
const TInt KErrNotValidated = -1008; //Server internal error
|
sl@0
|
79 |
|
sl@0
|
80 |
/**
|
sl@0
|
81 |
Returned to caller to indicate that the ClientMessage framework has
|
sl@0
|
82 |
not yet been initialised
|
sl@0
|
83 |
@publishedPartner
|
sl@0
|
84 |
@released
|
sl@0
|
85 |
*/
|
sl@0
|
86 |
const TInt KErrNotInitialised = -1009; //Server internal error
|
sl@0
|
87 |
|
sl@0
|
88 |
|
sl@0
|
89 |
//Enum Declarations
|
sl@0
|
90 |
|
sl@0
|
91 |
/**
|
sl@0
|
92 |
This is the list of Panic codes used by the ClientMessage framework
|
sl@0
|
93 |
@publishedPartner
|
sl@0
|
94 |
@released
|
sl@0
|
95 |
*/
|
sl@0
|
96 |
enum
|
sl@0
|
97 |
{
|
sl@0
|
98 |
/**This panic is raised in UDEB mode when the server attempts to call a
|
sl@0
|
99 |
CMessageParameterBase function which is not defined for the given
|
sl@0
|
100 |
parameter type. E.g. calling GetIntL() on a Descriptor parameter.
|
sl@0
|
101 |
*/
|
sl@0
|
102 |
ECMPanicWrongParameterType = 0,
|
sl@0
|
103 |
|
sl@0
|
104 |
/**This panic is raised when the server attempts to read from a
|
sl@0
|
105 |
descriptor in the clients process and supplies a target descriptor
|
sl@0
|
106 |
that is smaller than the client descriptor.
|
sl@0
|
107 |
*/
|
sl@0
|
108 |
ECMPanicBadDescriptor,
|
sl@0
|
109 |
|
sl@0
|
110 |
/**This panic is raised when a TParameterDetails structure for a
|
sl@0
|
111 |
given parameter is incorrectly defined in the message schema
|
sl@0
|
112 |
*/
|
sl@0
|
113 |
ECMPanicBadMessageSchema
|
sl@0
|
114 |
};
|
sl@0
|
115 |
|
sl@0
|
116 |
/**
|
sl@0
|
117 |
This Enum lists the currently supported Parameter types.
|
sl@0
|
118 |
These enum values are used as indices to the Parameter Factory Function
|
sl@0
|
119 |
which instantiates the appropriate CMessageParammeterBase derived
|
sl@0
|
120 |
object to represent a given message parameter.
|
sl@0
|
121 |
@publishedPartner
|
sl@0
|
122 |
@released
|
sl@0
|
123 |
*/
|
sl@0
|
124 |
enum TParamType
|
sl@0
|
125 |
{
|
sl@0
|
126 |
EParamNull = 0,
|
sl@0
|
127 |
EParamInt,
|
sl@0
|
128 |
EParamDes8Read,
|
sl@0
|
129 |
EParamDes8,
|
sl@0
|
130 |
EParamPckg,
|
sl@0
|
131 |
EParamDes16Read,
|
sl@0
|
132 |
EParamDes16,
|
sl@0
|
133 |
EParamPtr
|
sl@0
|
134 |
};
|
sl@0
|
135 |
|
sl@0
|
136 |
/**
|
sl@0
|
137 |
This enum lists the currently supported flags that can be passed to the server
|
sl@0
|
138 |
in TClientMessageServerData::iFlags. Note that internally this value is stored
|
sl@0
|
139 |
in a TBitFlags32 type but this type cannot be statically initialised in a dll
|
sl@0
|
140 |
so the value is passed to the framework in a TInt. The bottom 16 bit flags are
|
sl@0
|
141 |
reserved for the framework's internal use.
|
sl@0
|
142 |
|
sl@0
|
143 |
@publishedPartner
|
sl@0
|
144 |
@released
|
sl@0
|
145 |
*/
|
sl@0
|
146 |
enum TServerFlags
|
sl@0
|
147 |
{
|
sl@0
|
148 |
/** Default empty flag */
|
sl@0
|
149 |
ESrvFlagNone = 0,
|
sl@0
|
150 |
/** Setting this flag indicates that for bad message errors, request
|
sl@0
|
151 |
should be completed with error code rather than panicking the client */
|
sl@0
|
152 |
ESrvFlagDoNotPanicClientOnBadMessageErrors = 0x40000000,
|
sl@0
|
153 |
/** Indicates that bad messages should be logged in UDEB */
|
sl@0
|
154 |
ESrvFlagLogBadMessages = 0x80000000
|
sl@0
|
155 |
};
|
sl@0
|
156 |
|
sl@0
|
157 |
//Typedef Declarations
|
sl@0
|
158 |
|
sl@0
|
159 |
/**
|
sl@0
|
160 |
This typedef is used to simplify the declaration of custom
|
sl@0
|
161 |
parameter validation functions
|
sl@0
|
162 |
@publishedPartner
|
sl@0
|
163 |
@released
|
sl@0
|
164 |
*/
|
sl@0
|
165 |
typedef void (*TCustomValidationFn)(CMessageParameterBase* aParameter);
|
sl@0
|
166 |
|
sl@0
|
167 |
|
sl@0
|
168 |
|
sl@0
|
169 |
//Struct Declarations
|
sl@0
|
170 |
|
sl@0
|
171 |
/**
|
sl@0
|
172 |
This structure defines the format for storing information for an
|
sl@0
|
173 |
individual message parameter.
|
sl@0
|
174 |
|
sl@0
|
175 |
iType - This defines the parameter type and is used by the CMessageParameterBase
|
sl@0
|
176 |
class to instantiate the appropriate derived class via the
|
sl@0
|
177 |
KParameterFactoryFunctions factory lookup table.
|
sl@0
|
178 |
|
sl@0
|
179 |
iMin, iMax - These are two constraints that are used in the ValidateL
|
sl@0
|
180 |
method of a class derived from CMessageParameter to validate the message
|
sl@0
|
181 |
as required by that parameter.
|
sl@0
|
182 |
The constraints that are used depend on the type as follows:
|
sl@0
|
183 |
EParamInt:
|
sl@0
|
184 |
-iMin = Minimum int value accepted
|
sl@0
|
185 |
-iMax = Maximum int value accepted. This must be > iMin
|
sl@0
|
186 |
|
sl@0
|
187 |
NOTE: Currently unsigned integers are not explicitly supported,
|
sl@0
|
188 |
however 16 bit unsigned integers are implicitly supported
|
sl@0
|
189 |
by the EParamInt type. Note that the constraint above
|
sl@0
|
190 |
(iMax > iMin) means that the maximum supported value for an
|
sl@0
|
191 |
unsigned int is 0x7FFFFFFF.
|
sl@0
|
192 |
|
sl@0
|
193 |
EParamDes8Read:
|
sl@0
|
194 |
EParamDes16Read:
|
sl@0
|
195 |
-iMin = Minimum length of descriptor in clients address space.
|
sl@0
|
196 |
If no minimum restriction exists this should be set to 0 in
|
sl@0
|
197 |
the schema. This must be >= 0
|
sl@0
|
198 |
-iMax = Maximum length of descriptor in clients address space.
|
sl@0
|
199 |
The descriptor supplied by the client must not have a
|
sl@0
|
200 |
length that exceeds this value. This must be >= iMin
|
sl@0
|
201 |
EParamDes8:
|
sl@0
|
202 |
EParamDes16:
|
sl@0
|
203 |
-iMin = Minimum MaxLength of descriptor in clients address space.
|
sl@0
|
204 |
The descriptor supplied by the client must have a MaxLength
|
sl@0
|
205 |
that is at least as big as this value. This must be >= 0
|
sl@0
|
206 |
-iMax = Maximum length of descriptor in clients address space.
|
sl@0
|
207 |
The descriptor supplied by the client must not have a
|
sl@0
|
208 |
length that exceeds this value. This must be >= 0.
|
sl@0
|
209 |
|
sl@0
|
210 |
NOTE: As the EParamDes* types use MaxLength() as a restriction
|
sl@0
|
211 |
They cannot be used if the client intends to pass a TDesC
|
sl@0
|
212 |
derived descriptor. If the client intends read only use
|
sl@0
|
213 |
then the explicit EParamDes*Read types should be used instead.
|
sl@0
|
214 |
|
sl@0
|
215 |
EParamPckg:
|
sl@0
|
216 |
-iMin = Minimum length of descriptor in clients address space.
|
sl@0
|
217 |
If no minimum restriction exists this should be set to 0 in
|
sl@0
|
218 |
the schema. This must be >= 0
|
sl@0
|
219 |
-iMax = Maximum length of descriptor in clients address space.
|
sl@0
|
220 |
The descriptor supplied by the client must not have a
|
sl@0
|
221 |
length that exceeds this value. This must be >= iMin
|
sl@0
|
222 |
|
sl@0
|
223 |
EParamPtr:
|
sl@0
|
224 |
-iMin = Unused
|
sl@0
|
225 |
-iMax = Unused
|
sl@0
|
226 |
@publishedPartner
|
sl@0
|
227 |
@released
|
sl@0
|
228 |
*/
|
sl@0
|
229 |
struct TParameterDetails
|
sl@0
|
230 |
{
|
sl@0
|
231 |
const TInt iType;
|
sl@0
|
232 |
const TInt iMin;
|
sl@0
|
233 |
const TInt iMax;
|
sl@0
|
234 |
};
|
sl@0
|
235 |
|
sl@0
|
236 |
/**
|
sl@0
|
237 |
This struct is used to represent a single message from the client.
|
sl@0
|
238 |
It defines the function number corresponding to the message, the security
|
sl@0
|
239 |
policy for the message, the number of paramaters that are passed to the
|
sl@0
|
240 |
function and the type and constraint information for each of the parameters
|
sl@0
|
241 |
as described above. The server must define an array of these objects to be
|
sl@0
|
242 |
used by CClientMessage to validate all incoming messages.
|
sl@0
|
243 |
|
sl@0
|
244 |
NOTE: It is assumed that the message parameters are contiguous. I.E. if there is one
|
sl@0
|
245 |
parameter it is assumed to be located at index 0, if there are 2 parameters they
|
sl@0
|
246 |
are located at index 0,1 etc.
|
sl@0
|
247 |
|
sl@0
|
248 |
@publishedPartner
|
sl@0
|
249 |
@released
|
sl@0
|
250 |
*/
|
sl@0
|
251 |
struct TClientMessageSchema
|
sl@0
|
252 |
{
|
sl@0
|
253 |
|
sl@0
|
254 |
//Version number of the framework
|
sl@0
|
255 |
const TInt iVersion;
|
sl@0
|
256 |
|
sl@0
|
257 |
//The message number described by this schema
|
sl@0
|
258 |
const TInt iFunction;
|
sl@0
|
259 |
|
sl@0
|
260 |
//The security policy for this message. The CClientMessage framework
|
sl@0
|
261 |
//uses this security policy to police incoming messages.
|
sl@0
|
262 |
const TStaticSecurityPolicy& iPolicy;
|
sl@0
|
263 |
|
sl@0
|
264 |
//The number of parameters expected by this message
|
sl@0
|
265 |
const TInt iParamCount;
|
sl@0
|
266 |
|
sl@0
|
267 |
//The array of TParameterDetails structs describing the
|
sl@0
|
268 |
//parameter types and constraints for this message
|
sl@0
|
269 |
const TParameterDetails* iParams;
|
sl@0
|
270 |
|
sl@0
|
271 |
//Reserved values for future proofing
|
sl@0
|
272 |
const TInt iReserved1;
|
sl@0
|
273 |
const TInt iReserved2;
|
sl@0
|
274 |
};
|
sl@0
|
275 |
|
sl@0
|
276 |
/**
|
sl@0
|
277 |
This struct is used to initialise the ClientMessage Framework.
|
sl@0
|
278 |
This struct provides the framework with the message schema and
|
sl@0
|
279 |
the custom validation functions for the server as well as the server
|
sl@0
|
280 |
name and flags.
|
sl@0
|
281 |
The struct should be populated by the server using the SERVER_DATA
|
sl@0
|
282 |
macro defined below.
|
sl@0
|
283 |
@publishedPartner
|
sl@0
|
284 |
@released
|
sl@0
|
285 |
*/
|
sl@0
|
286 |
struct TClientMessageServerData
|
sl@0
|
287 |
{
|
sl@0
|
288 |
//Version number of this structure
|
sl@0
|
289 |
const TInt iVersion;
|
sl@0
|
290 |
|
sl@0
|
291 |
//The number of messages accepted by this server
|
sl@0
|
292 |
const TInt iMessageCount;
|
sl@0
|
293 |
|
sl@0
|
294 |
//The array of TClientMessageSchema structs defining the schema for
|
sl@0
|
295 |
//each message accpeted by this server
|
sl@0
|
296 |
const TClientMessageSchema* iMessageSchema;
|
sl@0
|
297 |
|
sl@0
|
298 |
//The number of custom validation fucntions suplpied by this server
|
sl@0
|
299 |
const TInt iValidationFnCount;
|
sl@0
|
300 |
|
sl@0
|
301 |
//The array of custom validation functions supplied by this server.
|
sl@0
|
302 |
//These validation functions are called from ValidateL to provide
|
sl@0
|
303 |
//customised validation of any parameter type.
|
sl@0
|
304 |
const TCustomValidationFn* iCustomValidationFns;
|
sl@0
|
305 |
|
sl@0
|
306 |
//The name of the server using the framework. This string is used both
|
sl@0
|
307 |
//in logging bad messages and in panicing the client or the server.
|
sl@0
|
308 |
//In line with Panic category strings, this value should be 16 characters or less.
|
sl@0
|
309 |
const TUint8* iServerName;
|
sl@0
|
310 |
|
sl@0
|
311 |
//Flags used to pass settings info into the framework. The supported values are
|
sl@0
|
312 |
//defined in the TServerFlags enum above.
|
sl@0
|
313 |
const TInt iFlags;
|
sl@0
|
314 |
|
sl@0
|
315 |
//Reserved values for future proofing
|
sl@0
|
316 |
const TInt iReserved1;
|
sl@0
|
317 |
const TInt iReserved2;
|
sl@0
|
318 |
};
|
sl@0
|
319 |
|
sl@0
|
320 |
//Macro Definitions
|
sl@0
|
321 |
|
sl@0
|
322 |
/**
|
sl@0
|
323 |
This macro is used to simplify declaration of TClientMessageSchema entries.
|
sl@0
|
324 |
The function number, security policy and pointer to array of TParameterDetails
|
sl@0
|
325 |
structures is converted into the expected format for the declaration of a
|
sl@0
|
326 |
TClientMessageSchema structure.
|
sl@0
|
327 |
@publishedPartner
|
sl@0
|
328 |
@released
|
sl@0
|
329 |
*/
|
sl@0
|
330 |
#define MESSAGE_SCHEMA(Function,Policy,Params) {KClientMessageVersion,Function,Policy,sizeof(Params)/sizeof(TParameterDetails),Params,0,0}
|
sl@0
|
331 |
|
sl@0
|
332 |
|
sl@0
|
333 |
/**
|
sl@0
|
334 |
This TParameterDetails structure is used to represent a message with no
|
sl@0
|
335 |
parameters. This is required as the schema expects a const TParameterDetails*.
|
sl@0
|
336 |
@publishedPartner
|
sl@0
|
337 |
@released
|
sl@0
|
338 |
*/
|
sl@0
|
339 |
const TParameterDetails KNoParams[1] = {{EParamNull,0,0}};
|
sl@0
|
340 |
|
sl@0
|
341 |
/**
|
sl@0
|
342 |
This macro is used to simplify declaration of TClientMessageSchema entries
|
sl@0
|
343 |
for functions with no parameters. Because the number of parameters is set
|
sl@0
|
344 |
to 0, a CMessageParameterBase derived object is not instantiated for this
|
sl@0
|
345 |
parameter type.
|
sl@0
|
346 |
@publishedPartner
|
sl@0
|
347 |
@released
|
sl@0
|
348 |
*/
|
sl@0
|
349 |
#define MESSAGE_SCHEMA_NO_PARAMS(Function,Policy) {KClientMessageVersion,Function,Policy,0,KNoParams,0,0}
|
sl@0
|
350 |
|
sl@0
|
351 |
|
sl@0
|
352 |
/**
|
sl@0
|
353 |
This macro is used to simplify declaration of the TClientMessageServerData structure.
|
sl@0
|
354 |
The pointer to the array of TClientMessageSchemas, pointer to array of
|
sl@0
|
355 |
TCustomValidationFns, server name and server flags are converted into the
|
sl@0
|
356 |
expected format for the declaration of a TClientMessageServerData structure.
|
sl@0
|
357 |
@publishedPartner
|
sl@0
|
358 |
@released
|
sl@0
|
359 |
*/
|
sl@0
|
360 |
#define SERVER_DATA(ClientMessages,ValidationFns,ServerName,Flags){KClientMessageVersion,sizeof(ClientMessages)/sizeof(TClientMessageSchema),ClientMessages,sizeof(ValidationFns)/sizeof(TCustomValidationFn),ValidationFns,(TUint8*)ServerName,Flags,0,0}
|
sl@0
|
361 |
|
sl@0
|
362 |
|
sl@0
|
363 |
//Class Declarations
|
sl@0
|
364 |
|
sl@0
|
365 |
/**
|
sl@0
|
366 |
This is the abstract base class for all message parameter classes.
|
sl@0
|
367 |
The class defines one pure virtual function, ValidateL, which all derived classes
|
sl@0
|
368 |
must implement. This class also defines default implementation for the access
|
sl@0
|
369 |
methods which should be properly defined in all derived classes.
|
sl@0
|
370 |
This class is not intended for external derivation.
|
sl@0
|
371 |
@publishedPartner
|
sl@0
|
372 |
@released
|
sl@0
|
373 |
*/
|
sl@0
|
374 |
NONSHARABLE_CLASS(CMessageParameterBase) : public CBase
|
sl@0
|
375 |
{
|
sl@0
|
376 |
public:
|
sl@0
|
377 |
static CMessageParameterBase* CreateL(const TParameterDetails& aParam, TInt aParamIndex,
|
sl@0
|
378 |
const RMessage2& aMessage);
|
sl@0
|
379 |
virtual void ValidateL() = 0;
|
sl@0
|
380 |
virtual ~CMessageParameterBase(){};
|
sl@0
|
381 |
|
sl@0
|
382 |
virtual TInt GetIntL();
|
sl@0
|
383 |
virtual const TAny* GetPtrL();
|
sl@0
|
384 |
virtual const TDesC8& GetDes8L();
|
sl@0
|
385 |
virtual const TDesC& GetDes16L();
|
sl@0
|
386 |
virtual TInt GetDesLengthL();
|
sl@0
|
387 |
virtual TInt GetDesMaxLengthL();
|
sl@0
|
388 |
virtual void ReadL(TDes8& aDes, TInt aOffset);
|
sl@0
|
389 |
virtual void ReadL(TDes& aDes, TInt aOffset);
|
sl@0
|
390 |
virtual void WriteL(const TDesC8& aDes, TInt aOffset);
|
sl@0
|
391 |
virtual void WriteL(const TDesC& aDes, TInt aOffset);
|
sl@0
|
392 |
|
sl@0
|
393 |
virtual TInt Min();
|
sl@0
|
394 |
virtual TInt Max();
|
sl@0
|
395 |
|
sl@0
|
396 |
protected:
|
sl@0
|
397 |
CMessageParameterBase(const TParameterDetails& aParam, TInt aParamIndex,
|
sl@0
|
398 |
const RMessage2& aMessage, TCustomValidationFn aValidationFn);
|
sl@0
|
399 |
|
sl@0
|
400 |
private:
|
sl@0
|
401 |
static TCustomValidationFn GetValidationFunctionL(const TParameterDetails& aParam);
|
sl@0
|
402 |
|
sl@0
|
403 |
protected:
|
sl@0
|
404 |
//The index of this parameter within the corresponding RMessage2 object
|
sl@0
|
405 |
TInt iIndex;
|
sl@0
|
406 |
|
sl@0
|
407 |
//A reference to the RMessage2 object that contains this parameter
|
sl@0
|
408 |
const RMessage2& iMessage;
|
sl@0
|
409 |
|
sl@0
|
410 |
//A reference to the structure that defines the expected type
|
sl@0
|
411 |
//and constraints for this parameter
|
sl@0
|
412 |
const TParameterDetails& iParamDetails;
|
sl@0
|
413 |
|
sl@0
|
414 |
//A custom validation function to allow user defined validation
|
sl@0
|
415 |
//this function is called from ValidateL
|
sl@0
|
416 |
TCustomValidationFn iValidationFn;
|
sl@0
|
417 |
|
sl@0
|
418 |
};
|
sl@0
|
419 |
|
sl@0
|
420 |
/**
|
sl@0
|
421 |
This class is used by a server to sanitise incoming messages.
|
sl@0
|
422 |
The class provides a wrapper around an RMessage2 object and provides a method
|
sl@0
|
423 |
for validation of the message against the constraints defined in the message schema.
|
sl@0
|
424 |
This class also provides methods for safely accessing the message arguments,
|
sl@0
|
425 |
and for error handling and logging of bad messages.
|
sl@0
|
426 |
This class is not intended for derivation.
|
sl@0
|
427 |
@publishedPartner
|
sl@0
|
428 |
@released
|
sl@0
|
429 |
*/
|
sl@0
|
430 |
NONSHARABLE_CLASS(CClientMessage) : public CBase
|
sl@0
|
431 |
{
|
sl@0
|
432 |
public:
|
sl@0
|
433 |
IMPORT_C static void InitialiseFrameworkL(const TClientMessageServerData& aServerData);
|
sl@0
|
434 |
IMPORT_C static CClientMessage* NewL(const RMessage2& aMessage);
|
sl@0
|
435 |
IMPORT_C virtual ~CClientMessage();
|
sl@0
|
436 |
|
sl@0
|
437 |
IMPORT_C TInt Function();
|
sl@0
|
438 |
IMPORT_C const RMessage2& Message();
|
sl@0
|
439 |
IMPORT_C virtual void ValidateL();
|
sl@0
|
440 |
IMPORT_C virtual void ValidateL(TInt aParam);
|
sl@0
|
441 |
IMPORT_C virtual void CompleteRequestL(TInt aError);
|
sl@0
|
442 |
IMPORT_C virtual void PanicClient(const TDesC& aServer, TInt aPanic);
|
sl@0
|
443 |
|
sl@0
|
444 |
IMPORT_C virtual TInt GetIntL(TInt aParam);
|
sl@0
|
445 |
IMPORT_C virtual const TAny* GetPtrL(TInt aParam);
|
sl@0
|
446 |
IMPORT_C virtual const TDesC8& GetDes8L(TInt aParam);
|
sl@0
|
447 |
IMPORT_C virtual const TDesC& GetDes16L(TInt aParam);
|
sl@0
|
448 |
IMPORT_C virtual TInt GetDesLengthL(TInt aParam);
|
sl@0
|
449 |
IMPORT_C virtual TInt GetDesMaxLengthL(TInt aParam);
|
sl@0
|
450 |
IMPORT_C virtual void ReadL(TInt aParam, TDes8& aDes, TInt aOffset = 0);
|
sl@0
|
451 |
IMPORT_C virtual void ReadL(TInt aParam, TDes16& aDes, TInt aOffset = 0);
|
sl@0
|
452 |
IMPORT_C virtual void WriteL(TInt aParam, const TDesC8& aDes, TInt aOffset = 0);
|
sl@0
|
453 |
IMPORT_C virtual void WriteL(TInt aParam, const TDesC16& aDes, TInt aOffset = 0);
|
sl@0
|
454 |
|
sl@0
|
455 |
private:
|
sl@0
|
456 |
virtual void LogBadMessageL(TInt aError);
|
sl@0
|
457 |
virtual void CheckSecurityPolicyL(const TSecurityPolicy& aPolicy);
|
sl@0
|
458 |
CClientMessage(const RMessage2& aMessage,const TClientMessageServerData& aServerData);
|
sl@0
|
459 |
void ConstructL();
|
sl@0
|
460 |
const TClientMessageSchema* FindMessageSchema();
|
sl@0
|
461 |
void CheckValidatedL(TInt aParam);
|
sl@0
|
462 |
TBool LogBadMessages();
|
sl@0
|
463 |
|
sl@0
|
464 |
private:
|
sl@0
|
465 |
//Array of pointers to CMessageParameterBase Derived parameter objects used
|
sl@0
|
466 |
// to validate and access the individual message arguments
|
sl@0
|
467 |
RPointerArray <CMessageParameterBase> iParameters;
|
sl@0
|
468 |
|
sl@0
|
469 |
//Reference to the underlying RMessage2 wrapped by this object
|
sl@0
|
470 |
const RMessage2& iMessage;
|
sl@0
|
471 |
|
sl@0
|
472 |
//Reference to TClientMessageServerData structure stored in TLS for
|
sl@0
|
473 |
//this thread. This structure is passed in to the framework by the server
|
sl@0
|
474 |
//on initialisation.
|
sl@0
|
475 |
const TClientMessageServerData& iServerData;
|
sl@0
|
476 |
|
sl@0
|
477 |
//Bit flags for use internally within CClientMessage.
|
sl@0
|
478 |
TBitFlags32 iFlags;
|
sl@0
|
479 |
};
|
sl@0
|
480 |
/**
|
sl@0
|
481 |
This class is used for Base64 based encoding and decoding .
|
sl@0
|
482 |
This class provides a method for encoding and decoding
|
sl@0
|
483 |
@publishedPartner
|
sl@0
|
484 |
@released
|
sl@0
|
485 |
*/
|
sl@0
|
486 |
class Base64Codec
|
sl@0
|
487 |
{
|
sl@0
|
488 |
// base64 and UU coding defines.
|
sl@0
|
489 |
/**
|
sl@0
|
490 |
This is the list of Bitmask used for encoding and decoding
|
sl@0
|
491 |
@publishedPartner
|
sl@0
|
492 |
@released
|
sl@0
|
493 |
*/
|
sl@0
|
494 |
enum EMaskValues
|
sl@0
|
495 |
{
|
sl@0
|
496 |
ESixBitMask = 0x3F,
|
sl@0
|
497 |
EEightBitMask = 0xFF
|
sl@0
|
498 |
};
|
sl@0
|
499 |
|
sl@0
|
500 |
/**
|
sl@0
|
501 |
This is the list of shift values used for encoding and decoding
|
sl@0
|
502 |
@publishedPartner
|
sl@0
|
503 |
@released
|
sl@0
|
504 |
*/
|
sl@0
|
505 |
enum EMaskShiftValues
|
sl@0
|
506 |
{
|
sl@0
|
507 |
ESix = 6,
|
sl@0
|
508 |
EFour = 4,
|
sl@0
|
509 |
ETwo = 2,
|
sl@0
|
510 |
EZero = 0
|
sl@0
|
511 |
};
|
sl@0
|
512 |
|
sl@0
|
513 |
/**
|
sl@0
|
514 |
This enum is used as padding charcter
|
sl@0
|
515 |
@publishedPartner
|
sl@0
|
516 |
@released
|
sl@0
|
517 |
*/
|
sl@0
|
518 |
enum
|
sl@0
|
519 |
{
|
sl@0
|
520 |
EPadChar = 64
|
sl@0
|
521 |
};
|
sl@0
|
522 |
public:
|
sl@0
|
523 |
IMPORT_C static TInt Encode(const TDesC8& aSrcString, TDes8& aDestString);
|
sl@0
|
524 |
IMPORT_C static TInt Decode(const TDesC8& aSrcString, TDes8& aDestString);
|
sl@0
|
525 |
};
|
sl@0
|
526 |
}//namespace
|
sl@0
|
527 |
|
sl@0
|
528 |
#endif
|