sl@0
|
1 |
// Copyright (c) 2005-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 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#ifndef __LOGSERVSECURITY_H__
|
sl@0
|
17 |
#define __LOGSERVSECURITY_H__
|
sl@0
|
18 |
|
sl@0
|
19 |
#include <e32base.h>
|
sl@0
|
20 |
|
sl@0
|
21 |
class RMessage2;
|
sl@0
|
22 |
class CLogServResourceInterpreter;
|
sl@0
|
23 |
|
sl@0
|
24 |
/**
|
sl@0
|
25 |
The enum declares two basic types of operations performed on LogEngServer events
|
sl@0
|
26 |
and their data - "read" and "write". Every time when a client tries to execute
|
sl@0
|
27 |
"read" and "write" operation for a specified event type, its capabilities have
|
sl@0
|
28 |
to be asserted against a predefined set of read/write capabilities for that event type.
|
sl@0
|
29 |
@internalComponent
|
sl@0
|
30 |
*/
|
sl@0
|
31 |
enum TEventOp
|
sl@0
|
32 |
{
|
sl@0
|
33 |
EReadOp,
|
sl@0
|
34 |
EWriteOp
|
sl@0
|
35 |
};
|
sl@0
|
36 |
|
sl@0
|
37 |
/**
|
sl@0
|
38 |
This class manages security info against which client requests can be checked
|
sl@0
|
39 |
for the necessary capabilities. An instance of this class is created in
|
sl@0
|
40 |
CLogServServer::ConstructL(). The security settings are defined in logwrap.rss
|
sl@0
|
41 |
- see the sections entitled 'r_log_security' and 'r_log_initial_events'.
|
sl@0
|
42 |
@internalComponent
|
sl@0
|
43 |
*/
|
sl@0
|
44 |
class CLogServSecurity : public CBase
|
sl@0
|
45 |
{
|
sl@0
|
46 |
public:
|
sl@0
|
47 |
static CLogServSecurity* NewL(CLogServResourceInterpreter& aResourceInterface);
|
sl@0
|
48 |
virtual ~CLogServSecurity();
|
sl@0
|
49 |
virtual TBool IsAllowed(const RMessage2& aMsg,
|
sl@0
|
50 |
TUid aEventType,
|
sl@0
|
51 |
TEventOp aEventOp, const char* aDiagnostic) = 0;
|
sl@0
|
52 |
|
sl@0
|
53 |
#ifdef LOGSERV_CAPABILITY_TEST
|
sl@0
|
54 |
virtual TSecurityPolicy SecurityPolicy(TUid aEventType, TEventOp aEventOp) = 0;
|
sl@0
|
55 |
#endif //LOGSERV_CAPABILITY_TEST
|
sl@0
|
56 |
};
|
sl@0
|
57 |
|
sl@0
|
58 |
#endif //__LOGSERVSECURITY_H__
|