sl@0
|
1 |
// Copyright (c) 2004-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 __D32SECURITY_H__
|
sl@0
|
17 |
#define __D32SECURITY_H__
|
sl@0
|
18 |
|
sl@0
|
19 |
#include "D32Assert.h"
|
sl@0
|
20 |
|
sl@0
|
21 |
//Forward declarations
|
sl@0
|
22 |
class RFs;
|
sl@0
|
23 |
|
sl@0
|
24 |
/**
|
sl@0
|
25 |
DBSC namespace is a placeholder for security policy framework.
|
sl@0
|
26 |
DBSC stands for [D]ata[B]ase [S]e[C]urity.
|
sl@0
|
27 |
@internalComponent
|
sl@0
|
28 |
*/
|
sl@0
|
29 |
namespace DBSC
|
sl@0
|
30 |
{
|
sl@0
|
31 |
|
sl@0
|
32 |
/**
|
sl@0
|
33 |
KPolicyTypesCount specifies how many different policy type are maintained by the system.
|
sl@0
|
34 |
@internalComponent
|
sl@0
|
35 |
*/
|
sl@0
|
36 |
const TInt KPolicyTypesCount = 3;
|
sl@0
|
37 |
|
sl@0
|
38 |
/**
|
sl@0
|
39 |
Each secure shared database/table have a security policy associated with it.
|
sl@0
|
40 |
There are three security policy types:"READ" - EPTRead - for any database/table read operation,
|
sl@0
|
41 |
"WRITE"- EPTWrite - for any database/table write operation.
|
sl@0
|
42 |
"SCHEMA"- EPTSchema - for any database admin operation.
|
sl@0
|
43 |
To execute particular DBMS operation, the caller must have a set of Capabilities/SID/VID,
|
sl@0
|
44 |
which must satisfy related R/W/S security policies of the database/table, on which the operation
|
sl@0
|
45 |
has to be performed.
|
sl@0
|
46 |
@internalComponent
|
sl@0
|
47 |
*/
|
sl@0
|
48 |
typedef enum
|
sl@0
|
49 |
{
|
sl@0
|
50 |
EPTNone = 0,
|
sl@0
|
51 |
EPTRead = 1 << 0,
|
sl@0
|
52 |
EPTWrite = 1 << 1,
|
sl@0
|
53 |
EPTSchema = 1 << 2,
|
sl@0
|
54 |
EPTLast = 1 << (KPolicyTypesCount - 1)
|
sl@0
|
55 |
} TPolicyType;
|
sl@0
|
56 |
|
sl@0
|
57 |
/**
|
sl@0
|
58 |
Type of the controled by the security policy object: database or table
|
sl@0
|
59 |
@internalComponent
|
sl@0
|
60 |
*/
|
sl@0
|
61 |
typedef enum
|
sl@0
|
62 |
{
|
sl@0
|
63 |
EPOTNone,
|
sl@0
|
64 |
EPOTDatabase,
|
sl@0
|
65 |
EPOTTable
|
sl@0
|
66 |
} TPolicyObjType;
|
sl@0
|
67 |
|
sl@0
|
68 |
/**
|
sl@0
|
69 |
This enum represents possible type of the requested access when opening/creating a database
|
sl@0
|
70 |
on the server side:
|
sl@0
|
71 |
EATNonSecure - non-secure access to private/legacy/shared-non-secure database
|
sl@0
|
72 |
EATSecure - secure access to shared-secure database
|
sl@0
|
73 |
@internalComponent
|
sl@0
|
74 |
*/
|
sl@0
|
75 |
typedef enum
|
sl@0
|
76 |
{
|
sl@0
|
77 |
EATNonSecure,
|
sl@0
|
78 |
EATSecure
|
sl@0
|
79 |
} TAccessType;
|
sl@0
|
80 |
|
sl@0
|
81 |
/**
|
sl@0
|
82 |
This structure packs together the uid from the database format string and
|
sl@0
|
83 |
requested access type to the database.
|
sl@0
|
84 |
@internalComponent
|
sl@0
|
85 |
*/
|
sl@0
|
86 |
struct TDbPolicyRequest
|
sl@0
|
87 |
{
|
sl@0
|
88 |
TUid iUid;
|
sl@0
|
89 |
TAccessType iAccessType;
|
sl@0
|
90 |
};
|
sl@0
|
91 |
|
sl@0
|
92 |
/**
|
sl@0
|
93 |
MPolicy interface is used to check DBMS client capabilities against the security policy
|
sl@0
|
94 |
managed by this interface.
|
sl@0
|
95 |
The Check() method parameter, aPolicyType, specifies against which policy (R/W/S) caller
|
sl@0
|
96 |
capabilities/SID/VID have to be asserted.
|
sl@0
|
97 |
Do not put MPolicy interfaces in the CleanupStack! MPolicySpace instance will
|
sl@0
|
98 |
take care about them.
|
sl@0
|
99 |
Using MPolicy::Dump() method you can dump the content of the controled object
|
sl@0
|
100 |
into a text file. Note that the dump works only if you have __DBDUMP__ macro defined.
|
sl@0
|
101 |
@internalComponent
|
sl@0
|
102 |
*/
|
sl@0
|
103 |
class MPolicy
|
sl@0
|
104 |
{
|
sl@0
|
105 |
public:
|
sl@0
|
106 |
virtual TBool Check(const RMessage2& aMessage, TPolicyType aPolicyType) const = 0;
|
sl@0
|
107 |
virtual TInt Get(TPolicyType aPolicyType, TSecurityPolicy& aPolicy) const = 0;
|
sl@0
|
108 |
DECLARE_DB_DUMP(aFile)
|
sl@0
|
109 |
};
|
sl@0
|
110 |
|
sl@0
|
111 |
/**
|
sl@0
|
112 |
MPolicySpace interface represents an interface to the security policiy space, which manages
|
sl@0
|
113 |
all the security policies, presented in the system.
|
sl@0
|
114 |
It can be used to retrieve MPolicy interface for particular database/table object or
|
sl@0
|
115 |
getting the backup&restore security ID.
|
sl@0
|
116 |
MPolicySpace interface manages static data structure, created during the DBMS startup.
|
sl@0
|
117 |
The data in this structure will never be modified during the DBMS server life time.
|
sl@0
|
118 |
DbPolicyL() and TblPolicyL() leave with KErrArgument error, if there is no policy for
|
sl@0
|
119 |
the database/table object, represented in the method arguments.
|
sl@0
|
120 |
@internalComponent
|
sl@0
|
121 |
*/
|
sl@0
|
122 |
class MPolicySpace
|
sl@0
|
123 |
{
|
sl@0
|
124 |
public:
|
sl@0
|
125 |
virtual void Release() = 0;
|
sl@0
|
126 |
virtual const MPolicy* DbPolicyL(const TDbPolicyRequest& aDbPolicyRequest) const = 0;
|
sl@0
|
127 |
virtual const MPolicy* TblPolicyL(const TDbPolicyRequest& aDbPolicyRequest, const TDesC& aTblName) const = 0;
|
sl@0
|
128 |
virtual TSecureId BackupSIDL(TUid aDbUid) const = 0;
|
sl@0
|
129 |
};
|
sl@0
|
130 |
|
sl@0
|
131 |
/**
|
sl@0
|
132 |
TPolicySpaceFactory is a factory class, used for creating an object, which implements
|
sl@0
|
133 |
MPolicySpace interface.
|
sl@0
|
134 |
Do not forget that MPolicySpace is a "M" interface, so if
|
sl@0
|
135 |
you want to push it in the Cleanup Stack, you should use CleanupReleasePushL() call, but not
|
sl@0
|
136 |
CleanupStack::PushL().
|
sl@0
|
137 |
@internalComponent
|
sl@0
|
138 |
*/
|
sl@0
|
139 |
class TPolicySpaceFactory
|
sl@0
|
140 |
{
|
sl@0
|
141 |
public:
|
sl@0
|
142 |
static MPolicySpace* NewPolicySpaceL(RFs& aFs, const TDesC& aPrivatePath);
|
sl@0
|
143 |
};
|
sl@0
|
144 |
|
sl@0
|
145 |
} //end of - namespace DBSC
|
sl@0
|
146 |
|
sl@0
|
147 |
#endif//__D32SECURITY_H__
|