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 |
// DBMS server-session and support classes - "DBMS security" related - full support
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#include <s32file.h>
|
sl@0
|
19 |
#include "D32Strings.h"
|
sl@0
|
20 |
#include "SD_STD.H"
|
sl@0
|
21 |
#include "Sd_DbList.h"
|
sl@0
|
22 |
|
sl@0
|
23 |
using namespace DBSC;
|
sl@0
|
24 |
|
sl@0
|
25 |
CDbsSession::CDbsSession() :
|
sl@0
|
26 |
iDbPolicyRqColl(TLinearOrder< TPair<TInt, TDbPolicyRequest> > (&Compare<TInt, TDbPolicyRequest>))
|
sl@0
|
27 |
{
|
sl@0
|
28 |
}
|
sl@0
|
29 |
|
sl@0
|
30 |
/**
|
sl@0
|
31 |
New "DBMS security" related messages processed here!
|
sl@0
|
32 |
@param aMessage DBMS server message
|
sl@0
|
33 |
@param aDbsFunction DBMS server function code
|
sl@0
|
34 |
@return An error code (< 0) or a DBMS server session object handle (EDbsDatabase, EDbsIncremental,...).
|
sl@0
|
35 |
*/
|
sl@0
|
36 |
TInt CDbsSession::ExtServiceL(const RMessage2& aMessage, TDbsFunction aDbsFunction)
|
sl@0
|
37 |
{
|
sl@0
|
38 |
TInt handle = 0;
|
sl@0
|
39 |
switch(aDbsFunction)
|
sl@0
|
40 |
{
|
sl@0
|
41 |
case EDbsCreateDatabase:
|
sl@0
|
42 |
handle=CreateDatabaseL(aMessage);
|
sl@0
|
43 |
break;
|
sl@0
|
44 |
case EDbsDatabaseList:
|
sl@0
|
45 |
handle=GetDatabaseListL(aMessage);
|
sl@0
|
46 |
break;
|
sl@0
|
47 |
case EDbsCopyDatabase:
|
sl@0
|
48 |
CopyDatabaseL(aMessage);
|
sl@0
|
49 |
break;
|
sl@0
|
50 |
case EDbsDeleteDatabase:
|
sl@0
|
51 |
DeleteDatabaseL(aMessage);
|
sl@0
|
52 |
break;
|
sl@0
|
53 |
case EDbsGetSecurityPolicy:
|
sl@0
|
54 |
GetSecurityPolicyL(aMessage);
|
sl@0
|
55 |
break;
|
sl@0
|
56 |
case EDbsGetBackupPath:
|
sl@0
|
57 |
GetBackupPathL(aMessage);
|
sl@0
|
58 |
break;
|
sl@0
|
59 |
case EDbsGetBackupPaths:
|
sl@0
|
60 |
handle=GetBackupPathsL(aMessage);
|
sl@0
|
61 |
break;
|
sl@0
|
62 |
default:
|
sl@0
|
63 |
handle = KErrNotSupported;
|
sl@0
|
64 |
break;
|
sl@0
|
65 |
}
|
sl@0
|
66 |
return handle;
|
sl@0
|
67 |
}
|
sl@0
|
68 |
|
sl@0
|
69 |
/**
|
sl@0
|
70 |
Extracts aMessage's "aIndex" argument (which is expected to be a file name) and
|
sl@0
|
71 |
stores it to CDbsServer::iFileName data member.
|
sl@0
|
72 |
@param aIndex The index of RMessage parameter
|
sl@0
|
73 |
@param aMessage
|
sl@0
|
74 |
@return A descriptor of the file name,extracted from aMessage and stored in CDbsServer::iFileName.
|
sl@0
|
75 |
*/
|
sl@0
|
76 |
const TDesC& CDbsSession::ReadFileNameL(TInt aIndex, const RMessage2& aMessage)
|
sl@0
|
77 |
{
|
sl@0
|
78 |
TDes& name = Server().FileName();
|
sl@0
|
79 |
aMessage.ReadL(aIndex, name);
|
sl@0
|
80 |
return name;
|
sl@0
|
81 |
}
|
sl@0
|
82 |
|
sl@0
|
83 |
/**
|
sl@0
|
84 |
Extracts database name (aMessage's arg 0) and database format string (aMessage's arg 1)
|
sl@0
|
85 |
and use them to extract database properties, such as: database UID, access type (secure/non-secure),
|
sl@0
|
86 |
full database file path, database format string, drive number.
|
sl@0
|
87 |
@return A pointer to a TDbProps object, which contains some properties, extracted from the database name.
|
sl@0
|
88 |
*/
|
sl@0
|
89 |
TDbProps* CDbsSession::ExtractDbPropsLC(const RMessage2& aMessage)
|
sl@0
|
90 |
{
|
sl@0
|
91 |
const TDesC& dbName = ReadFileNameL(0, aMessage);
|
sl@0
|
92 |
const TDesC& dbFormat = ReadName0L(1, aMessage);
|
sl@0
|
93 |
return Server().DbPropsFactory().ExtractLC(dbName, dbFormat);
|
sl@0
|
94 |
}
|
sl@0
|
95 |
|
sl@0
|
96 |
/**
|
sl@0
|
97 |
This method creates new EDbsDatabase type object.
|
sl@0
|
98 |
The related MPolicy interface will be retrieved and
|
sl@0
|
99 |
put together with the EDbsDatabase object in TEntry list.
|
sl@0
|
100 |
|
sl@0
|
101 |
The initial contact for a database. Open a database source
|
sl@0
|
102 |
return the database handle for the client
|
sl@0
|
103 |
*/
|
sl@0
|
104 |
TInt CDbsSession::OpenDatabaseL(const RMessage2& aMessage)
|
sl@0
|
105 |
{
|
sl@0
|
106 |
TDbProps* dbProps = ExtractDbPropsLC(aMessage);
|
sl@0
|
107 |
const MPolicy* policy = Server().PolicyProxy().DbPolicyL(dbProps->iDbPolicyRequest);
|
sl@0
|
108 |
Server().PolicyProxy().CheckL(aMessage, *policy);
|
sl@0
|
109 |
TInt dbHandle = DoOpenDatabaseL(aMessage, *dbProps);
|
sl@0
|
110 |
CleanupStack::PopAndDestroy(dbProps);
|
sl@0
|
111 |
return dbHandle;
|
sl@0
|
112 |
}
|
sl@0
|
113 |
|
sl@0
|
114 |
|
sl@0
|
115 |
/**
|
sl@0
|
116 |
SYMBIAN_REMOVE_TRIVIAL_ENCRYPTION version of the method.
|
sl@0
|
117 |
Opens a database. It is used by both: OpenDatabase() and CreateDatabase() methods.
|
sl@0
|
118 |
@param aMessage DBMS server message:EDbsCreateDatabase or EDbsOpenDatabase.
|
sl@0
|
119 |
@param aDbProps A TDbProps object created from the database name and format string.
|
sl@0
|
120 |
@return A handle to the opened/created database object.
|
sl@0
|
121 |
@leave One of the system-wide error codes.
|
sl@0
|
122 |
*/
|
sl@0
|
123 |
TInt CDbsSession::DoOpenDatabaseL(const RMessage2& aMessage, const TDbProps& aDbProps)
|
sl@0
|
124 |
{
|
sl@0
|
125 |
CDbsConnection* dbConnection = Sources().OpenLC(Server().Fs(), aDbProps.iPath, aDbProps.iFormatStr);
|
sl@0
|
126 |
CDbObject* dbObj = DoAuthenticateL(dbConnection, aMessage);
|
sl@0
|
127 |
dbConnection->Attach(dbObj);
|
sl@0
|
128 |
CleanupStack::Pop(dbConnection);
|
sl@0
|
129 |
|
sl@0
|
130 |
//dbObj does not have to be pushed in the cleanup stack!
|
sl@0
|
131 |
//NewDbEntryL() will take care of its destruction, if the database entry cannot be created.
|
sl@0
|
132 |
//NewDbEntryL() will destroy the connection also in this case.
|
sl@0
|
133 |
TInt dbHandle = 0;
|
sl@0
|
134 |
NewDbEntryL(dbObj, aDbProps.iDbPolicyRequest, dbHandle);
|
sl@0
|
135 |
return dbHandle;
|
sl@0
|
136 |
}
|
sl@0
|
137 |
|
sl@0
|
138 |
//SYMBIAN_REMOVE_TRIVIAL_ENCRYPTION version of the method.
|
sl@0
|
139 |
//Authenticates a database.
|
sl@0
|
140 |
CDbObject* CDbsSession::DoAuthenticateL(CDbsConnection* aDbsConnection, const RMessage2&)
|
sl@0
|
141 |
{
|
sl@0
|
142 |
__ASSERT(aDbsConnection);
|
sl@0
|
143 |
CDbSource& src = aDbsConnection->Source().Source();
|
sl@0
|
144 |
return src.AuthenticateL();
|
sl@0
|
145 |
}
|
sl@0
|
146 |
|
sl@0
|
147 |
|
sl@0
|
148 |
//Adds a new database entry to the session list of database session objects.
|
sl@0
|
149 |
void CDbsSession::NewDbEntryL(CDbObject* aDbObject, const TDbPolicyRequest& aDbPolicyRequest, TInt& aDbHandle)
|
sl@0
|
150 |
{
|
sl@0
|
151 |
__ASSERT(aDbObject);
|
sl@0
|
152 |
const MPolicy* policy = Server().PolicyProxy().DbPolicyL(aDbPolicyRequest);
|
sl@0
|
153 |
|
sl@0
|
154 |
aDbHandle = DoAdd(aDbObject, EDbsDatabase, policy);
|
sl@0
|
155 |
|
sl@0
|
156 |
//Store the database uid for later use
|
sl@0
|
157 |
TInt err = iDbPolicyRqColl.Insert(aDbHandle, aDbPolicyRequest);
|
sl@0
|
158 |
if(err != KErrNone)
|
sl@0
|
159 |
{//If iDbPolicyRqColl.Insert() fails, then remove the object from TEntry list and then return.
|
sl@0
|
160 |
TEntry& e = Object(aDbHandle);
|
sl@0
|
161 |
Free(e);
|
sl@0
|
162 |
User::Leave(err);
|
sl@0
|
163 |
}
|
sl@0
|
164 |
}
|
sl@0
|
165 |
|
sl@0
|
166 |
/**
|
sl@0
|
167 |
Converts RDbs::TPolicyType parameter value to the internally used DBSC::TPolicyType value.
|
sl@0
|
168 |
@param aPolicyType Security policy type - client side
|
sl@0
|
169 |
@return Security policy type used on the server side.
|
sl@0
|
170 |
@leave KErrArgument if it is an invalid security policy type
|
sl@0
|
171 |
*/
|
sl@0
|
172 |
static TPolicyType ConvertPolicyTypeL(RDbs::TPolicyType aPolicyType)
|
sl@0
|
173 |
{
|
sl@0
|
174 |
TPolicyType policyType = static_cast <TPolicyType> (1 << aPolicyType);
|
sl@0
|
175 |
if(policyType > EPTLast || policyType <= EPTNone)
|
sl@0
|
176 |
{
|
sl@0
|
177 |
__LEAVE(KErrArgument);
|
sl@0
|
178 |
}
|
sl@0
|
179 |
return policyType;
|
sl@0
|
180 |
}
|
sl@0
|
181 |
|
sl@0
|
182 |
/**
|
sl@0
|
183 |
Creates secure shared database.
|
sl@0
|
184 |
@param aMessage DBMS server message: EDbsCreateDatabase.
|
sl@0
|
185 |
@return A handle to the created database object.
|
sl@0
|
186 |
@leave One of the system-wide error codes, including:
|
sl@0
|
187 |
KErrNotSupported An attempt to create non-secure shared database
|
sl@0
|
188 |
KErrAlreadyExists The database with the supplied name already exists
|
sl@0
|
189 |
*/
|
sl@0
|
190 |
TInt CDbsSession::CreateDatabaseL(const RMessage2& aMessage)
|
sl@0
|
191 |
{
|
sl@0
|
192 |
TDbProps* dbProps = ExtractDbPropsLC(aMessage);
|
sl@0
|
193 |
if(dbProps->iDbPolicyRequest.iAccessType == EATNonSecure)
|
sl@0
|
194 |
{//This method works only for secure shared databases
|
sl@0
|
195 |
__LEAVE(KErrNotSupported);
|
sl@0
|
196 |
}
|
sl@0
|
197 |
const MPolicy* policy = Server().PolicyProxy().DbPolicyL(dbProps->iDbPolicyRequest);
|
sl@0
|
198 |
Server().PolicyProxy().CheckL(aMessage, *policy);
|
sl@0
|
199 |
//Leave if the file is already there
|
sl@0
|
200 |
::TEntry fileEntry;
|
sl@0
|
201 |
TBool dbFileExist = Server().Fs().Entry(dbProps->iPath, fileEntry) == KErrNone;
|
sl@0
|
202 |
if(dbFileExist)
|
sl@0
|
203 |
{
|
sl@0
|
204 |
__LEAVE(KErrAlreadyExists);
|
sl@0
|
205 |
}
|
sl@0
|
206 |
TInt dbHandle = 0;
|
sl@0
|
207 |
TRAPD(err, dbHandle = DoCreateDatabaseL(aMessage, *dbProps));
|
sl@0
|
208 |
if(err != KErrNone)
|
sl@0
|
209 |
{//Cleanup if the creation fails
|
sl@0
|
210 |
// Although the file delete below could return at error since we are
|
sl@0
|
211 |
// already on an error-path a design decision has been made to ignore the
|
sl@0
|
212 |
// error in favor of the one returned by DoCreateDatabaseL()
|
sl@0
|
213 |
|
sl@0
|
214 |
// If a debug build - record error
|
sl@0
|
215 |
TInt fileDeleteErr = Server().Fs().Delete(dbProps->iPath);
|
sl@0
|
216 |
#ifdef _DEBUG
|
sl@0
|
217 |
if (fileDeleteErr != KErrNone)
|
sl@0
|
218 |
{
|
sl@0
|
219 |
RDebug::Print(_L("CDbsSession::CreateDatabaseL - Failed to delete file. Error = %d"), fileDeleteErr);
|
sl@0
|
220 |
}
|
sl@0
|
221 |
#endif
|
sl@0
|
222 |
|
sl@0
|
223 |
__LEAVE(err);
|
sl@0
|
224 |
}
|
sl@0
|
225 |
CleanupStack::PopAndDestroy(dbProps);
|
sl@0
|
226 |
return dbHandle;
|
sl@0
|
227 |
}
|
sl@0
|
228 |
|
sl@0
|
229 |
//Creates secure shared database.
|
sl@0
|
230 |
//Originaly, the database were always created on the client side, using ::CreateDatabaseL() call.
|
sl@0
|
231 |
//I am not very sure how this function works and prefer to call ::CreateDatabaseL() to create
|
sl@0
|
232 |
//the database on the server side, then delete it and the open it in the same way, as it
|
sl@0
|
233 |
//worked before for opening/sharing databases on the server side.
|
sl@0
|
234 |
TInt CDbsSession::DoCreateDatabaseL(const RMessage2& aMessage, const TDbProps& aDbProps)
|
sl@0
|
235 |
{
|
sl@0
|
236 |
CDbDatabase* db = ::CreateDatabaseL(TDbFormat::ECreate, Server().Fs(), aDbProps.iPath, aDbProps.iFormatStr);
|
sl@0
|
237 |
delete db;
|
sl@0
|
238 |
TInt dbHandle = DoOpenDatabaseL(aMessage, aDbProps);
|
sl@0
|
239 |
return dbHandle;
|
sl@0
|
240 |
}
|
sl@0
|
241 |
|
sl@0
|
242 |
/**
|
sl@0
|
243 |
Copies an existing secure shared database to a new database.
|
sl@0
|
244 |
The new database will have the same security policy as the old one.
|
sl@0
|
245 |
@param aMessage DBMS server message (EDbsCopyDatabase)
|
sl@0
|
246 |
@leave One of the system-wide error codes, including KErrArgument - a null uid supplied
|
sl@0
|
247 |
as an argument.
|
sl@0
|
248 |
*/
|
sl@0
|
249 |
void CDbsSession::CopyDatabaseL(const RMessage2& aMessage)
|
sl@0
|
250 |
{
|
sl@0
|
251 |
RDbPropsFactory& dbPropsFactory = Server().DbPropsFactory();
|
sl@0
|
252 |
TUid uid;
|
sl@0
|
253 |
uid.iUid = aMessage.Int2();
|
sl@0
|
254 |
if(uid == KNullUid)
|
sl@0
|
255 |
{
|
sl@0
|
256 |
__LEAVE(KErrArgument);
|
sl@0
|
257 |
}
|
sl@0
|
258 |
//Do not change the order, because ReadFileNameL() uses the same place to store the names.
|
sl@0
|
259 |
const TDesC& srcDbName = ReadFileNameL(0, aMessage);
|
sl@0
|
260 |
TDbProps* srcDbProps = dbPropsFactory.ExtractLC(srcDbName, uid);
|
sl@0
|
261 |
const TDesC& destDbName = ReadFileNameL(1, aMessage);
|
sl@0
|
262 |
TDbProps* destDbProps = dbPropsFactory.ExtractLC(destDbName, uid);
|
sl@0
|
263 |
|
sl@0
|
264 |
const MPolicy* policy = Server().PolicyProxy().DbPolicyL(srcDbProps->iDbPolicyRequest);
|
sl@0
|
265 |
Server().PolicyProxy().CheckL(aMessage, *policy);
|
sl@0
|
266 |
|
sl@0
|
267 |
CFileMan* fileMan = CFileMan::NewL(Server().Fs());
|
sl@0
|
268 |
CleanupStack::PushL(fileMan);
|
sl@0
|
269 |
__LEAVE_IF_ERROR(fileMan->Copy(srcDbProps->iPath, destDbProps->iPath, 0));
|
sl@0
|
270 |
//"Copy" operation executed without errors. Now it is a time to turn off the read-only
|
sl@0
|
271 |
//flag of the target file (which may be on if the source files is on a read-only drive)
|
sl@0
|
272 |
__LEAVE_IF_ERROR(Server().Fs().SetAtt(destDbProps->iPath, 0, KEntryAttReadOnly));
|
sl@0
|
273 |
CleanupStack::PopAndDestroy(3);//srcDbProps, destDbProps, fileMan
|
sl@0
|
274 |
}
|
sl@0
|
275 |
|
sl@0
|
276 |
/**
|
sl@0
|
277 |
Deletes secure shared database
|
sl@0
|
278 |
@param aMessage DBMS server message (EDbsDeleteDatabase)
|
sl@0
|
279 |
@leave One of the system-wide error codes, including KErrArgument - a null uid supplied
|
sl@0
|
280 |
as an argument.
|
sl@0
|
281 |
*/
|
sl@0
|
282 |
void CDbsSession::DeleteDatabaseL(const RMessage2& aMessage)
|
sl@0
|
283 |
{
|
sl@0
|
284 |
TUid uid;
|
sl@0
|
285 |
uid.iUid = aMessage.Int1();
|
sl@0
|
286 |
if(uid == KNullUid)
|
sl@0
|
287 |
{
|
sl@0
|
288 |
__LEAVE(KErrArgument);
|
sl@0
|
289 |
}
|
sl@0
|
290 |
const TDesC& dbName = ReadFileNameL(0, aMessage);
|
sl@0
|
291 |
TDbProps* dbProps = Server().DbPropsFactory().ExtractLC(dbName, uid);
|
sl@0
|
292 |
const MPolicy* policy = Server().PolicyProxy().DbPolicyL(dbProps->iDbPolicyRequest);
|
sl@0
|
293 |
Server().PolicyProxy().CheckL(aMessage, *policy);
|
sl@0
|
294 |
__LEAVE_IF_ERROR(Server().Fs().Delete(dbProps->iPath));
|
sl@0
|
295 |
CleanupStack::PopAndDestroy(dbProps);
|
sl@0
|
296 |
}
|
sl@0
|
297 |
|
sl@0
|
298 |
/**
|
sl@0
|
299 |
Gets the list of names of datatbases, which have the same uid.
|
sl@0
|
300 |
@param aMessage DBMS server message (EDbsDatabaseList)
|
sl@0
|
301 |
@return A stream handle to a stream with the database names found.
|
sl@0
|
302 |
@leave One of the system-wide error codes, including KErrArgument - a null uid supplied
|
sl@0
|
303 |
as an argument.
|
sl@0
|
304 |
*/
|
sl@0
|
305 |
TInt CDbsSession::GetDatabaseListL(const RMessage2& aMessage)
|
sl@0
|
306 |
{
|
sl@0
|
307 |
CDbNamesFactory* dbNamesFactory = CDbNamesFactory::NewLC();
|
sl@0
|
308 |
TDriveNumber driveNumber;
|
sl@0
|
309 |
TDbPolicyRequest dbPolicyRequest;
|
sl@0
|
310 |
CDbNamesFactory::ExtractArgs(aMessage, driveNumber, dbPolicyRequest);
|
sl@0
|
311 |
if(dbPolicyRequest.iUid == KNullUid)
|
sl@0
|
312 |
{
|
sl@0
|
313 |
__LEAVE(KErrArgument);
|
sl@0
|
314 |
}
|
sl@0
|
315 |
const MPolicy* policy = Server().PolicyProxy().DbPolicyL(dbPolicyRequest);
|
sl@0
|
316 |
Server().PolicyProxy().CheckL(aMessage, *policy);
|
sl@0
|
317 |
CDbDatabaseNames* dbNames = dbNamesFactory->DbNamesLC(driveNumber, dbPolicyRequest, Server().DbPropsFactory(), Server().Fs());
|
sl@0
|
318 |
//NewStreamL() will take care about destroying dbNames.
|
sl@0
|
319 |
TInt streamHandle = NewStreamL(dbNames, Externalizer(dbNames), aMessage, policy);
|
sl@0
|
320 |
CleanupStack::PopAndDestroy(dbNamesFactory);
|
sl@0
|
321 |
return streamHandle;
|
sl@0
|
322 |
}
|
sl@0
|
323 |
|
sl@0
|
324 |
/**
|
sl@0
|
325 |
Gets database/table security policy.
|
sl@0
|
326 |
@param aMessage DBMS server message (EDbsGetSecurityPolicy)
|
sl@0
|
327 |
@leave One of the system-wide error codes, including KErrArgument - a null uid supplied
|
sl@0
|
328 |
as an argument.
|
sl@0
|
329 |
*/
|
sl@0
|
330 |
void CDbsSession::GetSecurityPolicyL(const RMessage2& aMessage)
|
sl@0
|
331 |
{
|
sl@0
|
332 |
//No security policy check.
|
sl@0
|
333 |
TUid dbUid = TUid::Uid(aMessage.Int0());
|
sl@0
|
334 |
if(dbUid == KNullUid)
|
sl@0
|
335 |
{
|
sl@0
|
336 |
__LEAVE(KErrArgument);
|
sl@0
|
337 |
}
|
sl@0
|
338 |
TPolicyType policyTypeRq = ::ConvertPolicyTypeL(static_cast <RDbs::TPolicyType> (aMessage.Int1() & ~KTablePolicyMaskBit));
|
sl@0
|
339 |
TBool tblPolicyRq = aMessage.Int1() & KTablePolicyMaskBit;
|
sl@0
|
340 |
if(tblPolicyRq)
|
sl@0
|
341 |
{
|
sl@0
|
342 |
ReadName0L(2, aMessage);
|
sl@0
|
343 |
if(Server().Name0() == KNullDesC)
|
sl@0
|
344 |
{
|
sl@0
|
345 |
__LEAVE(KErrArgument);
|
sl@0
|
346 |
}
|
sl@0
|
347 |
}
|
sl@0
|
348 |
TDbPolicyRequest dbPolicyRequest;
|
sl@0
|
349 |
dbPolicyRequest.iUid = dbUid;
|
sl@0
|
350 |
dbPolicyRequest.iAccessType = EATSecure;
|
sl@0
|
351 |
const MPolicy* policy = tblPolicyRq ? Server().PolicyProxy().TblPolicyL(dbPolicyRequest, Server().Name0()) :
|
sl@0
|
352 |
Server().PolicyProxy().DbPolicyL(dbPolicyRequest);
|
sl@0
|
353 |
__ASSERT(policy);
|
sl@0
|
354 |
TSecurityPolicy secPolicy;
|
sl@0
|
355 |
__LEAVE_IF_ERROR(policy->Get(policyTypeRq, secPolicy));
|
sl@0
|
356 |
aMessage.WriteL(3, secPolicy.Package());
|
sl@0
|
357 |
}
|
sl@0
|
358 |
|
sl@0
|
359 |
/**
|
sl@0
|
360 |
The function extracts backup&restore process SID from aMessage argument (parameter 0).
|
sl@0
|
361 |
@param aMessage DBMS server message - EDbsGetBackupPath or EDbsGetBackupPaths.
|
sl@0
|
362 |
@return Backup&restore process SID
|
sl@0
|
363 |
@leave KErrArgument 0 or ECapability_None backup&restore process SID
|
sl@0
|
364 |
@internalComponent
|
sl@0
|
365 |
*/
|
sl@0
|
366 |
static TSecureId BackupSIDL(const RMessage2& aMessage)
|
sl@0
|
367 |
{
|
sl@0
|
368 |
TSecureId backupSID = TSecureId(aMessage.Int0());
|
sl@0
|
369 |
if(backupSID.iId == 0 || backupSID.iId == (TUint32)ECapability_None)
|
sl@0
|
370 |
{
|
sl@0
|
371 |
__LEAVE(KErrArgument);
|
sl@0
|
372 |
}
|
sl@0
|
373 |
return backupSID;
|
sl@0
|
374 |
}
|
sl@0
|
375 |
|
sl@0
|
376 |
/**
|
sl@0
|
377 |
The function extracts database security policy UID from aMessage argument (parameter 1).
|
sl@0
|
378 |
@param aMessage DBMS server message - EDbsGetBackupPath or EDbsGetBackupPaths.
|
sl@0
|
379 |
@return Database security policy UID
|
sl@0
|
380 |
@leave KErrArgument Null database security policy UID
|
sl@0
|
381 |
@internalComponent
|
sl@0
|
382 |
*/
|
sl@0
|
383 |
static TUid SecurityPolicyUidL(const RMessage2& aMessage)
|
sl@0
|
384 |
{
|
sl@0
|
385 |
TUid dbUid = TUid::Uid(aMessage.Int1());
|
sl@0
|
386 |
if(dbUid == KNullUid)
|
sl@0
|
387 |
{
|
sl@0
|
388 |
__LEAVE(KErrArgument);
|
sl@0
|
389 |
}
|
sl@0
|
390 |
return dbUid;
|
sl@0
|
391 |
}
|
sl@0
|
392 |
|
sl@0
|
393 |
/**
|
sl@0
|
394 |
The function gets the backup&restore process SID from the related database security policy,
|
sl@0
|
395 |
identified by aDbUid argument.
|
sl@0
|
396 |
@param aPolicyProxy A reference to CPolicyProxy object, which might be asked for particular
|
sl@0
|
397 |
database or table policy.
|
sl@0
|
398 |
@param aBackupSID Backup&restore process SID, extracted from RMessage2 object.
|
sl@0
|
399 |
@param aDbUid Database security policy UID, extracted from RMessage2 object.
|
sl@0
|
400 |
@return Backup&restore process SID, which is part of the database security policy.
|
sl@0
|
401 |
@leave KErrPermissionDenied - the supplied process SID does not match the database backup&
|
sl@0
|
402 |
restore SID or the database backup&restore SID is 0 or ECapability_None.
|
sl@0
|
403 |
@internalComponent
|
sl@0
|
404 |
*/
|
sl@0
|
405 |
static TSecureId RegisteredBackupSIDL(CPolicyProxy& aPolicyProxy, TSecureId aBackupSID, TUid aDbUid)
|
sl@0
|
406 |
{
|
sl@0
|
407 |
TSecureId regBackupSID = aPolicyProxy.BackupSIDL(aDbUid);
|
sl@0
|
408 |
if((regBackupSID == 0 || regBackupSID == (TUint32)ECapability_None) || aBackupSID != regBackupSID)
|
sl@0
|
409 |
{
|
sl@0
|
410 |
__LEAVE(KErrPermissionDenied);
|
sl@0
|
411 |
}
|
sl@0
|
412 |
return regBackupSID;
|
sl@0
|
413 |
}
|
sl@0
|
414 |
|
sl@0
|
415 |
/**
|
sl@0
|
416 |
The method will return via aMessage argument the full path to the secure shared database,
|
sl@0
|
417 |
which name is packed in aMessage argument too.
|
sl@0
|
418 |
@param aMessage DBMS server message (EDbsGetBackupPath)
|
sl@0
|
419 |
@leave One of the system-wide error codes, including:
|
sl@0
|
420 |
- KErrArgument - 0 or ECapability_None process SID, null UID,
|
sl@0
|
421 |
null or invalid database name,
|
sl@0
|
422 |
the database is not secure shared database;
|
sl@0
|
423 |
- KErrNotFound - the database file does not exist;
|
sl@0
|
424 |
- KErrPermissionDenied - the supplied process SID does not match the database backup&
|
sl@0
|
425 |
restore SID or the database backup&restore SID is 0 or ECapability_None.
|
sl@0
|
426 |
@deprecated
|
sl@0
|
427 |
*/
|
sl@0
|
428 |
void CDbsSession::GetBackupPathL(const RMessage2& aMessage)
|
sl@0
|
429 |
{
|
sl@0
|
430 |
//Backup&restore process SID
|
sl@0
|
431 |
TSecureId backupSID = ::BackupSIDL(aMessage);
|
sl@0
|
432 |
//Security policy UID
|
sl@0
|
433 |
TUid dbUid = ::SecurityPolicyUidL(aMessage);
|
sl@0
|
434 |
//Database name and drive, format: <drive>:<name>.<ext>
|
sl@0
|
435 |
ReadName0L(2, aMessage);
|
sl@0
|
436 |
if(Server().Name0() == KNullDesC)
|
sl@0
|
437 |
{
|
sl@0
|
438 |
__LEAVE(KErrArgument);
|
sl@0
|
439 |
}
|
sl@0
|
440 |
//Database path
|
sl@0
|
441 |
RDbPropsFactory& dbPropsFactory = Server().DbPropsFactory();
|
sl@0
|
442 |
TDbProps* dbProps = dbPropsFactory.ExtractLC(Server().Name0(), dbUid);
|
sl@0
|
443 |
if(dbProps->iDbPolicyRequest.iAccessType != EATSecure)
|
sl@0
|
444 |
{
|
sl@0
|
445 |
__LEAVE(KErrArgument);
|
sl@0
|
446 |
}
|
sl@0
|
447 |
//Check if the database file exists
|
sl@0
|
448 |
::TEntry fileEntry;
|
sl@0
|
449 |
TBool dbFileExist = Server().Fs().Entry(dbProps->iPath, fileEntry) == KErrNone;
|
sl@0
|
450 |
if(!dbFileExist)
|
sl@0
|
451 |
{
|
sl@0
|
452 |
__LEAVE(KErrNotFound);
|
sl@0
|
453 |
}
|
sl@0
|
454 |
//Get and check backup&restore SID
|
sl@0
|
455 |
TSecureId regBackupSID = ::RegisteredBackupSIDL(Server().PolicyProxy(), backupSID, dbUid);
|
sl@0
|
456 |
//
|
sl@0
|
457 |
aMessage.WriteL(3, dbProps->iPath);
|
sl@0
|
458 |
//
|
sl@0
|
459 |
CleanupStack::PopAndDestroy(dbProps);
|
sl@0
|
460 |
}
|
sl@0
|
461 |
|
sl@0
|
462 |
/**
|
sl@0
|
463 |
This function processes "aFileEntries" array, which is a result of TFindFile::FindWildByDir()
|
sl@0
|
464 |
or TFindFile::FindWild() calls. In a loop the function will get an element from "aFileEntries"
|
sl@0
|
465 |
array, copy it to a temporary string adding the drive and the path, and will add that string
|
sl@0
|
466 |
to "aDatabasePaths" array.
|
sl@0
|
467 |
Note: If the created full file path length is bigger than KDbMaxStrLen characters, then the
|
sl@0
|
468 |
string will not be added to "aDatabasePaths" array!
|
sl@0
|
469 |
@param aFileEntries An array of file names, result of TFindFile::FindWildByDir() or
|
sl@0
|
470 |
TFindFile::FindWild() calls.
|
sl@0
|
471 |
@param aFileSpec A string, containing the drive and the directory of the file names in
|
sl@0
|
472 |
aFileEntries array.
|
sl@0
|
473 |
@param aDatabasePaths Output argument. Each file name from aFileEntries array will be "decorated"
|
sl@0
|
474 |
with the drive and path and then the created new string will be added to
|
sl@0
|
475 |
aDatabasePaths array.
|
sl@0
|
476 |
@leave One of the system-wide error codes, including KErrNoMemory.
|
sl@0
|
477 |
@internalComponent
|
sl@0
|
478 |
*/
|
sl@0
|
479 |
static void ProcessFileEntriesL(CDir& aFileEntries, const TDesC& aFileSpec,
|
sl@0
|
480 |
CDbStrings& aDatabasePaths)
|
sl@0
|
481 |
{
|
sl@0
|
482 |
TParse parse;
|
sl@0
|
483 |
__LEAVE_IF_ERROR(parse.Set(aFileSpec, NULL, NULL));
|
sl@0
|
484 |
TInt cnt = aFileEntries.Count();
|
sl@0
|
485 |
for(TInt i=0;i<cnt;++i)
|
sl@0
|
486 |
{
|
sl@0
|
487 |
TFileName fileName;
|
sl@0
|
488 |
fileName.Copy(parse.DriveAndPath());
|
sl@0
|
489 |
const ::TEntry& entry = aFileEntries[i];
|
sl@0
|
490 |
fileName.Append(entry.iName);
|
sl@0
|
491 |
if(fileName.Length() < KDbMaxStrLen)
|
sl@0
|
492 |
{
|
sl@0
|
493 |
aDatabasePaths.AddL(fileName);
|
sl@0
|
494 |
}
|
sl@0
|
495 |
}
|
sl@0
|
496 |
}
|
sl@0
|
497 |
|
sl@0
|
498 |
/**
|
sl@0
|
499 |
Gets a list of paths of the databases, which have the same security policy uid.
|
sl@0
|
500 |
@param aMessage DBMS server message (EDbsGetBackupPaths)
|
sl@0
|
501 |
@return A stream handle to a stream with the database names found.
|
sl@0
|
502 |
@leave One of the system-wide error codes, including:
|
sl@0
|
503 |
- KErrArgument - 0 or ECapability_None process SID, null database security policy UID;
|
sl@0
|
504 |
- KErrPermissionDenied - the supplied process SID does not match databases backup&
|
sl@0
|
505 |
restore SID or databases backup&restore SID is 0 or ECapability_None.
|
sl@0
|
506 |
*/
|
sl@0
|
507 |
TInt CDbsSession::GetBackupPathsL(const RMessage2& aMessage)
|
sl@0
|
508 |
{
|
sl@0
|
509 |
//Backup&restore process SID
|
sl@0
|
510 |
TSecureId backupSID = ::BackupSIDL(aMessage);
|
sl@0
|
511 |
//Security policy UID
|
sl@0
|
512 |
TUid dbUid = ::SecurityPolicyUidL(aMessage);
|
sl@0
|
513 |
//Get and check backup&restore SID
|
sl@0
|
514 |
TSecureId regBackupSID = ::RegisteredBackupSIDL(Server().PolicyProxy(), backupSID, dbUid);
|
sl@0
|
515 |
//Get the related database security policy
|
sl@0
|
516 |
TDbPolicyRequest dbPolicyRequest = {dbUid, EATSecure};
|
sl@0
|
517 |
const MPolicy* policy = Server().PolicyProxy().DbPolicyL(dbPolicyRequest);
|
sl@0
|
518 |
//
|
sl@0
|
519 |
CDbStrings* dbPaths = CDbStrings::NewLC();
|
sl@0
|
520 |
//DBMS server - private data path. CDbServer::iFileName used as a storage for the path.
|
sl@0
|
521 |
__LEAVE_IF_ERROR(Server().Fs().PrivatePath(Server().FileName()));
|
sl@0
|
522 |
//Construct search pattern. CDbServer::iName1 used as a storage for the search pattern.
|
sl@0
|
523 |
RDbPropsFactory::ConstructCommonPart(dbUid, Server().Name1());
|
sl@0
|
524 |
Server().Name1().Append('*');
|
sl@0
|
525 |
//Search....
|
sl@0
|
526 |
TFindFile findFile(Server().Fs());
|
sl@0
|
527 |
CDir* fileEntries = NULL;
|
sl@0
|
528 |
TInt err = findFile.FindWildByDir(Server().Name1(), Server().FileName(), fileEntries);
|
sl@0
|
529 |
if(err == KErrNone)
|
sl@0
|
530 |
{
|
sl@0
|
531 |
do
|
sl@0
|
532 |
{
|
sl@0
|
533 |
__ASSERT(fileEntries);
|
sl@0
|
534 |
CleanupStack::PushL(fileEntries);
|
sl@0
|
535 |
::ProcessFileEntriesL(*fileEntries, findFile.File(), *dbPaths);
|
sl@0
|
536 |
CleanupStack::PopAndDestroy(fileEntries);
|
sl@0
|
537 |
fileEntries = NULL;
|
sl@0
|
538 |
} while(findFile.FindWild(fileEntries) == KErrNone);
|
sl@0
|
539 |
}
|
sl@0
|
540 |
if(err != KErrNotFound && err != KErrNone)
|
sl@0
|
541 |
{
|
sl@0
|
542 |
__LEAVE(err);
|
sl@0
|
543 |
}
|
sl@0
|
544 |
//NewStreamL() will take care about destroying dbPaths.
|
sl@0
|
545 |
TInt streamHandle = NewStreamL(dbPaths, Externalizer(dbPaths), aMessage, policy);
|
sl@0
|
546 |
return streamHandle;
|
sl@0
|
547 |
}
|