os/persistentdata/persistentstorage/dbms/sdbms/Sd_DbProps2.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
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
// RDbPropsFactory class - "DBMS Security" related - full security support
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#include <f32file.h>
sl@0
    19
#include "D32DRVR.H"
sl@0
    20
#include "U32STD.H"
sl@0
    21
#include "D32Strings.h"
sl@0
    22
#include "Sd_DbProps.h"
sl@0
    23
#include "Sd_DbList.h"
sl@0
    24
sl@0
    25
using namespace DBSC;
sl@0
    26
sl@0
    27
/**
sl@0
    28
Utility method, which can be used separately to remove the common part of a secure
sl@0
    29
shared database name. The input string format is:
sl@0
    30
"DBS_UID_<DbName>". 
sl@0
    31
The output string format is:
sl@0
    32
"<DbName>". 
sl@0
    33
@param aDbName An output/input parameter. Th input format is: "DBS_UID_<DbName>".
sl@0
    34
               The output format is: "<DbName>". 
sl@0
    35
@panic The method will panic in debug builds in case of a bad input string.
sl@0
    36
*/
sl@0
    37
void RDbPropsFactory::StripCommonPart(TDes& aDbName)
sl@0
    38
	{
sl@0
    39
	TInt pos = aDbName.FindF(KDbsPrefix);
sl@0
    40
	__ASSERT_DEBUG(pos != KErrNotFound, User::Invariant());
sl@0
    41
	aDbName.Delete(pos, KDbsPrefix().Length());
sl@0
    42
	//Remove the UID from the string
sl@0
    43
	TInt pos_b = aDbName.Locate('_');
sl@0
    44
	
sl@0
    45
	TPtrC right = aDbName.Mid(pos_b+1);
sl@0
    46
	TInt pos_e = right.Locate('_') + pos_b + 1;
sl@0
    47
	
sl@0
    48
	__ASSERT_DEBUG(pos_b != KErrNotFound && pos_e != KErrNotFound, User::Invariant());
sl@0
    49
	aDbName.Delete(pos_b, pos_e - pos_b + 1);
sl@0
    50
	}
sl@0
    51
sl@0
    52
/**
sl@0
    53
Utility method, which can be used separately to construct the common part of the secure
sl@0
    54
shared database name. The result string format is:
sl@0
    55
"DBS_UID_"
sl@0
    56
@param aPolicyUid Security policy UID.
sl@0
    57
@param aRes An output parameter, referencing the location, where the constructed string will be stored.
sl@0
    58
*/
sl@0
    59
void RDbPropsFactory::ConstructCommonPart(TUid aPolicyUid, TDes& aRes)
sl@0
    60
	{
sl@0
    61
	aRes.Zero();
sl@0
    62
	aRes.Append(KDbsPrefix);
sl@0
    63
	aRes.Append('_');
sl@0
    64
	aRes.AppendNumFixedWidthUC(aPolicyUid.iUid, EHex, 8);
sl@0
    65
	aRes.Append('_');
sl@0
    66
	}
sl@0
    67
sl@0
    68
/**
sl@0
    69
Standard factory method for TDbProps instances.
sl@0
    70
The created TDbProps instance will be pushed in the cleanup stack.
sl@0
    71
@return A pointer to the created TDbProps instance.
sl@0
    72
@leave KErrNoMemory
sl@0
    73
@internalComponent
sl@0
    74
*/
sl@0
    75
static TDbProps* NewDbPropsLC()
sl@0
    76
	{
sl@0
    77
	TDbProps* dbProps = new (ELeave) TDbProps;
sl@0
    78
	CleanupStack::PushL(dbProps);
sl@0
    79
	return dbProps;
sl@0
    80
	}
sl@0
    81
sl@0
    82
/**
sl@0
    83
Extracts the drive number from the supplied TParse instance.
sl@0
    84
@param aFileNameParser A reference to TParse instance, which will be used to extract the 
sl@0
    85
drive number.
sl@0
    86
@return Extracted TDriveNumber value.
sl@0
    87
@leave KErrArgument aFileNameParser parameter does not contain a drive number or it cannot
sl@0
    88
					be constructed from the string.
sl@0
    89
@internalComponent
sl@0
    90
*/
sl@0
    91
static TDriveNumber ExtractDriveNumberL(TParse& aFileNameParser)
sl@0
    92
	{
sl@0
    93
	TPtrC drvPtr = aFileNameParser.Drive();
sl@0
    94
	if(drvPtr.Length() == 0)
sl@0
    95
		{
sl@0
    96
		__LEAVE(KErrArgument);
sl@0
    97
		}
sl@0
    98
	TInt drvId = 0;
sl@0
    99
	__LEAVE_IF_ERROR(RFs::CharToDrive(drvPtr[0], drvId));
sl@0
   100
	return static_cast <TDriveNumber> (drvId);
sl@0
   101
	}
sl@0
   102
sl@0
   103
/**
sl@0
   104
Creates private directory of the DBMS server if it does not exist (on a specific drive).
sl@0
   105
If the supplied aDriveNumber parameter refers to a rom drive, the method does nothing.
sl@0
   106
@param aDriveNumber The drive number, where the private DBMS data directory has to be created.
sl@0
   107
@param aFs A file session instance.
sl@0
   108
@leave RFs::CreatePrivatePath() leave error codes.
sl@0
   109
@internalComponent
sl@0
   110
*/
sl@0
   111
static void CreatePrivateDataPathL(TDriveNumber aDriveNumber, RFs& aFs)
sl@0
   112
	{
sl@0
   113
	TDriveInfo driveInfo;
sl@0
   114
	__LEAVE_IF_ERROR(aFs.Drive(driveInfo, aDriveNumber));
sl@0
   115
	if(driveInfo.iDriveAtt & KDriveAttRom)
sl@0
   116
		{//ROM drive - do nothing.
sl@0
   117
		return;
sl@0
   118
		}
sl@0
   119
	TInt err = aFs.CreatePrivatePath(aDriveNumber);
sl@0
   120
	if(err != KErrNone && err != KErrAlreadyExists)
sl@0
   121
		{
sl@0
   122
		__LEAVE(err);
sl@0
   123
		}
sl@0
   124
	}
sl@0
   125
sl@0
   126
/**
sl@0
   127
*/
sl@0
   128
RDbPropsFactory::RDbPropsFactory(RFs& aFs) :
sl@0
   129
	iFs(aFs),
sl@0
   130
	iFileNameParser(NULL),
sl@0
   131
	iPrivateDataPath(NULL)
sl@0
   132
	{
sl@0
   133
	}
sl@0
   134
sl@0
   135
/**
sl@0
   136
Initializes RDbPropsFactory instance
sl@0
   137
@leave One of the system wide error codes, including KErrNoMemory.
sl@0
   138
*/
sl@0
   139
void RDbPropsFactory::OpenL()
sl@0
   140
	{
sl@0
   141
	iFileNameParser = new (ELeave) TParse;
sl@0
   142
	iPrivateDataPath = HBufC::NewL(KMaxFileName);
sl@0
   143
	TPtr ptr(iPrivateDataPath->Des());
sl@0
   144
	__LEAVE_IF_ERROR(iFs.PrivatePath(ptr));
sl@0
   145
	}
sl@0
   146
sl@0
   147
/**
sl@0
   148
*/
sl@0
   149
void RDbPropsFactory::Close()
sl@0
   150
	{
sl@0
   151
	delete iPrivateDataPath;
sl@0
   152
	delete iFileNameParser;
sl@0
   153
	}
sl@0
   154
sl@0
   155
/**
sl@0
   156
Extracts database properties from the database path and format string.
sl@0
   157
The created and returned TDbProps instance will be pushed in the cleanup stack.
sl@0
   158
@param aPath Database path.
sl@0
   159
@param aFormatStr database format string.
sl@0
   160
@return A pointer to the created TDbProps instance.
sl@0
   161
@leave One of the system-wide error codes, including KErrNoMemory.
sl@0
   162
*/
sl@0
   163
TDbProps* RDbPropsFactory::ExtractLC(const TDesC& aPath, const TDesC& aFormatStr)
sl@0
   164
	{
sl@0
   165
	__ASSERT(iFileNameParser);
sl@0
   166
	__ASSERT(iPrivateDataPath);
sl@0
   167
sl@0
   168
	__LEAVE_IF_ERROR(iFileNameParser->Set(aPath, NULL, NULL));
sl@0
   169
	TDbProps* dbProps = ::NewDbPropsLC();
sl@0
   170
sl@0
   171
	//TDbProps::iDbsUid.iUid, TDbProps::iDbsUid.iRqAccess
sl@0
   172
	TPtrC fmtIdent;//fmtIdent may contain KSecure keyword.
sl@0
   173
	::ExtractUidAndName(aFormatStr, dbProps->iDbPolicyRequest.iUid, fmtIdent);
sl@0
   174
	dbProps->iDbPolicyRequest.iAccessType = (fmtIdent.CompareF(KSecure) == 0 ? EATSecure : EATNonSecure);
sl@0
   175
sl@0
   176
	//TDbProps::iDriveNumber
sl@0
   177
	dbProps->iDriveNumber = ::ExtractDriveNumberL(*iFileNameParser);
sl@0
   178
	::CheckDriveL(iFs, dbProps->iDriveNumber);
sl@0
   179
sl@0
   180
	if(dbProps->iDbPolicyRequest.iAccessType == EATSecure)
sl@0
   181
		{//requested access to a secure shared database
sl@0
   182
		ExtractSecureL(aFormatStr, *dbProps);
sl@0
   183
		}
sl@0
   184
	else
sl@0
   185
		{//requested access to a non-secure database
sl@0
   186
		ExtractNonSecureL(aPath, aFormatStr, *dbProps);
sl@0
   187
		}
sl@0
   188
sl@0
   189
	return dbProps;
sl@0
   190
	}
sl@0
   191
sl@0
   192
/**
sl@0
   193
Extracts database properties from the database path, assuming that this is a secure shared
sl@0
   194
database.
sl@0
   195
The created and returned TDbProps instance will be pushed in the cleanup stack.
sl@0
   196
@param aPath Database path.
sl@0
   197
@param aPolicyUid Security policy UID.
sl@0
   198
@return A pointer to the created TDbProps instance.
sl@0
   199
@leave One of the system-wide error codes, including KErrNoMemory.
sl@0
   200
*/
sl@0
   201
TDbProps* RDbPropsFactory::ExtractLC(const TDesC& aPath, TUid aPolicyUid)
sl@0
   202
	{
sl@0
   203
	TBuf<32> dbFormat;
sl@0
   204
	dbFormat.Copy(KSecure);
sl@0
   205
	dbFormat.Append(aPolicyUid.Name());
sl@0
   206
	return ExtractLC(aPath, dbFormat);
sl@0
   207
	}
sl@0
   208
sl@0
   209
/**
sl@0
   210
Utility method, which can be used separately to get the common part of the secure
sl@0
   211
shared database full path. The result string format is:
sl@0
   212
"<Drive>:\<PrivatePath>\"
sl@0
   213
@param aDriveNumber A drive number, for which the private data path string has to be constructed.
sl@0
   214
@param aRes An output parameter, referencing the location, where the created private path has to be copied.
sl@0
   215
@leave RFs::DriveToChar() leave error codes
sl@0
   216
*/
sl@0
   217
void RDbPropsFactory::GetPrivatePathL(TDriveNumber aDriveNumber, TDes& aRes) const
sl@0
   218
	{
sl@0
   219
	aRes.Zero();
sl@0
   220
	TChar driveChar;
sl@0
   221
	__LEAVE_IF_ERROR(RFs::DriveToChar(aDriveNumber, driveChar));
sl@0
   222
	aRes.Append(driveChar);
sl@0
   223
	aRes.Append(':');
sl@0
   224
	aRes.Append(*iPrivateDataPath);
sl@0
   225
	}
sl@0
   226
sl@0
   227
/**
sl@0
   228
Extracts secure shared database properties.
sl@0
   229
@param aFormatStr Secure shared database format string.
sl@0
   230
@param aDbProps An output parameter, referencing the location, where the datapase properties will be stored.
sl@0
   231
@leave KErrArgument Bad format string. Some of the other system-wide error codes.
sl@0
   232
*/
sl@0
   233
void RDbPropsFactory::ExtractSecureL(const TDesC& aFormatStr, TDbProps& aDbProps)
sl@0
   234
	{	
sl@0
   235
	if(aDbProps.iDbPolicyRequest.iUid == KNullUid)
sl@0
   236
		{//Secure shared database cannot have null uid.
sl@0
   237
		__LEAVE(KErrArgument);
sl@0
   238
		}
sl@0
   239
	if(iFileNameParser->PathPresent())
sl@0
   240
		{//The path can contain only the database name.
sl@0
   241
		__LEAVE(KErrArgument);
sl@0
   242
		}
sl@0
   243
	TPtrC dbName = iFileNameParser->NameAndExt();
sl@0
   244
	if(dbName.Length() > KDbMaxName)
sl@0
   245
		{//There is a limit for the secure shared database names
sl@0
   246
		__LEAVE(KErrArgument);
sl@0
   247
		}
sl@0
   248
	::CreatePrivateDataPathL(aDbProps.iDriveNumber, iFs);
sl@0
   249
	ConstructFullDbPathL(aDbProps);
sl@0
   250
	ConstructFormatString(aDbProps, aFormatStr);
sl@0
   251
	}
sl@0
   252
sl@0
   253
/**
sl@0
   254
Extracts non-secure database properties.
sl@0
   255
@param aPath Database path.
sl@0
   256
@param aFormatStr Database format string.
sl@0
   257
@param aDbProps An output parameter, referencing the location, where the datapase properties will be stored.
sl@0
   258
@leave KErrPermissionDenied The database path contains the DBMS server private data path.
sl@0
   259
*/
sl@0
   260
void RDbPropsFactory::ExtractNonSecureL(const TDesC& aPath, const TDesC& aFormatStr, 
sl@0
   261
										TDbProps& aDbProps)
sl@0
   262
	{
sl@0
   263
	//DBMS private data path cannot be the first in the database path. This is non-secure database.
sl@0
   264
	TInt pos = aPath.FindF(iPrivateDataPath->Des());
sl@0
   265
	if(pos != KErrNotFound)
sl@0
   266
		{//If pos is 2 (pos 0 - drive letter, pos 1 - ':'), then 
sl@0
   267
		 //the caller wants to create/open non-secure database in the DBMS private directory,
sl@0
   268
		 //which is not allowed. 
sl@0
   269
		if(pos == 2)
sl@0
   270
			{
sl@0
   271
			__LEAVE(KErrPermissionDenied);
sl@0
   272
			}
sl@0
   273
		}
sl@0
   274
	//The database path and format string stay the same
sl@0
   275
	aDbProps.iPath.Copy(aPath);
sl@0
   276
	aDbProps.iFormatStr.Copy(aFormatStr);
sl@0
   277
	}
sl@0
   278
sl@0
   279
/**
sl@0
   280
Constructs the full physical path of the secure shared database
sl@0
   281
@param aDbProps An output parameter, where the database path will be stored.
sl@0
   282
@leave RDbPropsFactory::GetPrivatePathL() leaving error codes
sl@0
   283
@see RDbPropsFactory::GetPrivatePathL()
sl@0
   284
*/
sl@0
   285
void RDbPropsFactory::ConstructFullDbPathL(TDbProps& aDbProps)
sl@0
   286
	{
sl@0
   287
	GetPrivatePathL(aDbProps.iDriveNumber, aDbProps.iPath);
sl@0
   288
	TBuf<32> dbNameCmnPart;
sl@0
   289
	RDbPropsFactory::ConstructCommonPart(aDbProps.iDbPolicyRequest.iUid, dbNameCmnPart);
sl@0
   290
	aDbProps.iPath.Append(dbNameCmnPart);
sl@0
   291
	aDbProps.iPath.Append(iFileNameParser->Name());
sl@0
   292
	aDbProps.iPath.Append(iFileNameParser->Ext());
sl@0
   293
	}
sl@0
   294
sl@0
   295
/**
sl@0
   296
Processes the format string of secure shared database. "SECURE" keyword and security policy UID
sl@0
   297
will be removed.
sl@0
   298
@param aDbProps An input/output parameter, referencing TDbProps instance, where the processed
sl@0
   299
                database format string will be stored.
sl@0
   300
@param aFormatStr The database format string.
sl@0
   301
*/
sl@0
   302
void RDbPropsFactory::ConstructFormatString(TDbProps& aDbProps, const TDesC& aFormatStr)
sl@0
   303
	{
sl@0
   304
	TDes& fmtStr = aDbProps.iFormatStr;
sl@0
   305
	fmtStr.Copy(aFormatStr);
sl@0
   306
	//Remove KSecure keyword from the format string 
sl@0
   307
	TInt pos = fmtStr.FindF(KSecure);
sl@0
   308
	__ASSERT_DEBUG(pos != KErrNotFound, User::Invariant());
sl@0
   309
	fmtStr.Delete(pos, KSecure().Length());
sl@0
   310
	//Remove the UID from the format string
sl@0
   311
	TInt pos_b = fmtStr.Locate('[');
sl@0
   312
	TInt pos_e = fmtStr.Locate(']');
sl@0
   313
	__ASSERT_DEBUG(pos_b != KErrNotFound && pos_e != KErrNotFound, User::Invariant());
sl@0
   314
	fmtStr.Delete(pos_b, pos_e - pos_b + 1);
sl@0
   315
	}