os/persistentdata/persistentstorage/dbms/sdbms/Sd_Cli2.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
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 client/server session class - "DBMS security" related - full security support
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#include "SD_STD.H"
sl@0
    19
sl@0
    20
/**
sl@0
    21
Retrieves a list of names of secure shared databases, which share the same security policy,
sl@0
    22
as determined by the supplied UID.
sl@0
    23
If a database name is longer than KDbMaxName, it will not be added to the list. 
sl@0
    24
sl@0
    25
@param aDrive The drive number to be searched.
sl@0
    26
@param aPolicyUid Database security policy UID.
sl@0
    27
@return A list with names of the found databases, which have the same database security uid.
sl@0
    28
		The database name output format is: \<name\>.\<ext\>. The caller is resonsible for deleting 
sl@0
    29
		the database names list.
sl@0
    30
@leave KErrNoMemory - not enough memory for the operation to be done
sl@0
    31
@leave KErrArgument - invalid UID parameter (including KNullUid value)
sl@0
    32
@leave KErrBadName - invalid drive number (not in A-Z range)
sl@0
    33
@leave KErrNotReady - the drive is not presented in the system
sl@0
    34
@leave Some other system-wide error codes
sl@0
    35
sl@0
    36
@publishedAll
sl@0
    37
@released
sl@0
    38
*/
sl@0
    39
EXPORT_C CDbDatabaseNames* RDbs::DatabaseNamesL(TDriveNumber aDrive, TUid aPolicyUid)
sl@0
    40
	{
sl@0
    41
	TIpcArgs args(aDrive, aPolicyUid.iUid);
sl@0
    42
	RReadStream in(HDbsBuf::NewLC(*this, EDbsDatabaseList, args));
sl@0
    43
	CDbDatabaseNames* dbNames = CDbDatabaseNames::NewLC();
sl@0
    44
	in >> *dbNames;
sl@0
    45
	CleanupStack::Pop(dbNames);
sl@0
    46
	CleanupStack::PopAndDestroy();//HDbsBuf
sl@0
    47
	return dbNames;
sl@0
    48
	}
sl@0
    49
sl@0
    50
/**
sl@0
    51
Copies an existing secure shared database to a new secure shared database. 
sl@0
    52
The new database will have the same security policy as the old one.
sl@0
    53
The maximum length of the target database name (with the extension) is KDbMaxName.
sl@0
    54
sl@0
    55
@param aSrcDbName Source database name (\<drive\>:\<name\>.\<ext\> format)
sl@0
    56
@param aDestDbName Destination database name (\<drive\>:\<name\>.\<ext\> format)
sl@0
    57
@param aPolicyUid The database security policy UID. The destination database will have 
sl@0
    58
                  the same policy UID.
sl@0
    59
@return KErrNone if successful, otherwise one of the system-wide error codes, including:
sl@0
    60
		KErrPermissionDenied - the caller has not enough rights to do the operation or
sl@0
    61
		                   the destination drive is a ROM drive;
sl@0
    62
		KErrArgument - invalid source or destination database names (null name, too long name, only drive letter);
sl@0
    63
		               invalid or null UID;
sl@0
    64
		KErrNotReady - the drive in database name is not presented in the system;
sl@0
    65
		KErrNotFound - the source database not found;
sl@0
    66
		KErrInUse - the source database is in use;
sl@0
    67
		KErrAlreadyExists - the destination database already exists;
sl@0
    68
 		KErrNoMemory - not enough memory for the operation to be done;
sl@0
    69
sl@0
    70
@capability Note For a secure shared database, the caller must satisfy the schema 
sl@0
    71
            access policy for the database.
sl@0
    72
sl@0
    73
@publishedAll
sl@0
    74
@released
sl@0
    75
*/
sl@0
    76
EXPORT_C TInt RDbs::CopyDatabase(const TDesC& aSrcDbName, const TDesC& aDestDbName, TUid aPolicyUid)
sl@0
    77
	{
sl@0
    78
	TIpcArgs args(&aSrcDbName, &aDestDbName, aPolicyUid.iUid);
sl@0
    79
	return SendReceive(DbsMessage(EDbsCopyDatabase, KDbsSessionHandle), args);
sl@0
    80
	}
sl@0
    81
sl@0
    82
/**
sl@0
    83
Deletes an existing secure shared database.
sl@0
    84
sl@0
    85
@param aDbName Source database name (\<drive\>:\<name\>.\<ext\> format)
sl@0
    86
@param aPolicyUid Database security policy UID.
sl@0
    87
@return KErrNone if successful, otherwise one of the system-wide error codes, including:
sl@0
    88
		KErrInUse (if the database is in use at the moment);
sl@0
    89
		KErrNotFound - the database not found;
sl@0
    90
		KErrPermissionDenied - the caller has not enough rights to do the operation;
sl@0
    91
sl@0
    92
@capability Note For a secure shared database, the caller must satisfy the schema 
sl@0
    93
            access policy for the database.
sl@0
    94
sl@0
    95
@publishedAll
sl@0
    96
@released
sl@0
    97
*/
sl@0
    98
EXPORT_C TInt RDbs::DeleteDatabase(const TDesC& aDbName, TUid aPolicyUid)
sl@0
    99
	{
sl@0
   100
	TIpcArgs args(&aDbName, aPolicyUid.iUid);
sl@0
   101
	return SendReceive(DbsMessage(EDbsDeleteDatabase, KDbsSessionHandle), args);
sl@0
   102
	}
sl@0
   103
sl@0
   104
/**
sl@0
   105
Returns in aPolicy output parameter requested database/table security policy of type aPolicyType.
sl@0
   106
@param aPolicyUid Database security policy UID
sl@0
   107
@param aTableName Table name.
sl@0
   108
@param aMask Bit-field: it includes ther policy type: EReadPolicy, EWritePolicy, ESchemaPolicy
sl@0
   109
             and the request type - database or table.
sl@0
   110
@param aPolicy It will be initialized with the requested security policy data after a successfull call.
sl@0
   111
@return KErrNone if successful, otherwise some of the system-wide error codes, including:
sl@0
   112
				KErrArgument - some of the arguments has an invalid value.
sl@0
   113
				KErrNotSupported - the method has been called with aMask containing ESchemaPolicy
sl@0
   114
				                   for a table object.
sl@0
   115
sl@0
   116
@publishedAll
sl@0
   117
@released
sl@0
   118
*/
sl@0
   119
TInt RDbs::GetPolicy(TUid aPolicyUid, const TDesC& aTableName, TUint aMask, 
sl@0
   120
					 TSecurityPolicy& aPolicy)
sl@0
   121
	{
sl@0
   122
	TBuf8<sizeof(TSecurityPolicy)> spData;
sl@0
   123
	TIpcArgs args(aPolicyUid.iUid, aMask, &aTableName, &spData);
sl@0
   124
	TInt err = SendReceive(DbsMessage(EDbsGetSecurityPolicy, KDbsSessionHandle), args);
sl@0
   125
	if(err == KErrNone)
sl@0
   126
		{
sl@0
   127
		err = aPolicy.Set(spData);
sl@0
   128
		}
sl@0
   129
	return err;
sl@0
   130
	}
sl@0
   131
sl@0
   132
/**
sl@0
   133
Returns in the aDbPolicy output parameter the requested database security policy of type aPolicyType.
sl@0
   134
sl@0
   135
@param aPolicyUid Database security policy UID.
sl@0
   136
@param aPolicyType Policy type: EReadPolicy, EWritePolicy, ESchemaPolicy.
sl@0
   137
@param aDbPolicy It will be initialized with the requested security policy data after a successfull call.
sl@0
   138
@return KErrNone if successful, otherwise one of the system-wide error codes, including
sl@0
   139
				KErrArgument - some of the arguments has an invalid value.
sl@0
   140
sl@0
   141
@publishedAll
sl@0
   142
@released
sl@0
   143
*/
sl@0
   144
EXPORT_C TInt RDbs::GetDatabasePolicy(TUid aPolicyUid, TPolicyType aPolicyType, 
sl@0
   145
									  TSecurityPolicy& aDbPolicy)
sl@0
   146
	{
sl@0
   147
	return GetPolicy(aPolicyUid, KNullDesC, aPolicyType, aDbPolicy);
sl@0
   148
	}
sl@0
   149
sl@0
   150
/**
sl@0
   151
Returns in the aTablePolicy output parameter the requested table security policy of type aPolicyType.
sl@0
   152
sl@0
   153
@param aPolicyUid Database security policy UID.
sl@0
   154
@param aTableName Table name.
sl@0
   155
@param aPolicyType Policy type: EReadPolicy, EWritePolicy.
sl@0
   156
@param aTablePolicy It will be initialized with the requested security policy data after a successfull call.
sl@0
   157
@return KErrNone if successful, otherwise one of the system-wide error codes, including:
sl@0
   158
		KErrArgument - some of the arguments has an invalid value.
sl@0
   159
		KErrNotSupported - the method has been called with aPolicyType = ESchemaPolicy;
sl@0
   160
sl@0
   161
@publishedAll
sl@0
   162
@released
sl@0
   163
*/
sl@0
   164
EXPORT_C TInt RDbs::GetTablePolicy(TUid aPolicyUid, const TDesC& aTableName, TPolicyType aPolicyType, 
sl@0
   165
								   TSecurityPolicy& aTablePolicy)
sl@0
   166
	{
sl@0
   167
	return GetPolicy(aPolicyUid, aTableName, aPolicyType | KTablePolicyMaskBit, aTablePolicy);
sl@0
   168
	}
sl@0
   169
sl@0
   170
/**
sl@0
   171
Returns in the aDbPolicy and aTablePolicy output parameters the requested database and table 
sl@0
   172
security policies of type aPolicyType.
sl@0
   173
sl@0
   174
@param aPolicyUid Database security policy UID.
sl@0
   175
@param aTableName Table name.
sl@0
   176
@param aPolicyType Policy type: EReadPolicy, EWritePolicy.
sl@0
   177
@param aDbPolicy It will be initialized with the requested security policy data after a successfull call.
sl@0
   178
@param aTablePolicy It will be initialized with the requested security policy data after a successfull call.
sl@0
   179
@return KErrNone if successful, otherwise one of the system-wide error codes, including:
sl@0
   180
		KErrArgument - some of the arguments has an invalid value.
sl@0
   181
		KErrNotSupported - the method has been called with aPolicyType = ESchemaPolicy;
sl@0
   182
sl@0
   183
@publishedAll
sl@0
   184
@released
sl@0
   185
*/
sl@0
   186
EXPORT_C TInt RDbs::GetTablePolicies(TUid aPolicyUid, const TDesC& aTableName, TPolicyType aPolicyType, 
sl@0
   187
									 TSecurityPolicy& aDbPolicy, TSecurityPolicy& aTablePolicy)
sl@0
   188
	{
sl@0
   189
	TInt err = GetDatabasePolicy(aPolicyUid, aPolicyType, aDbPolicy);
sl@0
   190
	if(err == KErrNone)
sl@0
   191
		{
sl@0
   192
		err = GetTablePolicy(aPolicyUid, aTableName, aPolicyType, aTablePolicy);
sl@0
   193
		}
sl@0
   194
	return err;
sl@0
   195
	}
sl@0
   196
sl@0
   197
/**
sl@0
   198
The method will fill out aBackupPath argument with the full path of aDbName secure
sl@0
   199
shared database.
sl@0
   200
@param aRequesterSID Security ID of the process which is supposed to backup or restore 
sl@0
   201
					 the database. 0 or ECapability_None are invalid values for 
sl@0
   202
					 aRequesterSID parameter.
sl@0
   203
@param aDbName       Secure shared database name, which path will be set in aBackupPath
sl@0
   204
                     parameter. The name's format is \<drive\>:\<name\>.\<ext\>
sl@0
   205
@param aDbPolicyUid  Database security policy UID.
sl@0
   206
@param aBackupPath   An output parameter. After a successfull call, the DBMS server
sl@0
   207
 					 will fill out the full database path there. aBackupPath must offer
sl@0
   208
 					 enough space to get the whole database path. Probably the best
sl@0
   209
 					 aBackupPath length is KMaxPath value.
sl@0
   210
@return KErrNone if successful, otherwise one of the system-wide error codes, including:
sl@0
   211
		- KErrArgument - 0 or ECapability_None process SID, null UID, 
sl@0
   212
						 null or invalid database name,
sl@0
   213
						 the database is not secure shared database;
sl@0
   214
		- KErrNotFound - the database file does not exist;
sl@0
   215
		- KErrPermissionDenied - the supplied process SID does not match the database backup&
sl@0
   216
						 restore SID or the database backup&restore SID is 0 or ECapability_None. 
sl@0
   217
@deprecated
sl@0
   218
*/
sl@0
   219
EXPORT_C TInt RDbs::GetBackupPath(TSecureId aRequesterSID, const TDesC& aDbName, 
sl@0
   220
								  TUid aDbPolicyUid, TDes& aBackupPath)
sl@0
   221
	{
sl@0
   222
	TIpcArgs args(aRequesterSID.iId, aDbPolicyUid.iUid, &aDbName, &aBackupPath);
sl@0
   223
	return SendReceive(DbsMessage(EDbsGetBackupPath, KDbsSessionHandle), args);
sl@0
   224
	}
sl@0
   225
sl@0
   226
/**
sl@0
   227
Retrieves a list of paths of secure shared databases, which share the same security policy,
sl@0
   228
as determined by the supplied aDbPolicyUid parameter.
sl@0
   229
Note: If there is a database file which full path length is bigger than KDbMaxStrLen characters, 
sl@0
   230
	  then this file will not be added to the returned CDbStrings array.
sl@0
   231
sl@0
   232
@param aRequesterSID Security ID of the process which is supposed to backup or restore 
sl@0
   233
					 the database. 0 and ECapability_None are invalid values for 
sl@0
   234
					 aRequesterSID parameter.
sl@0
   235
@param aDbPolicyUid  Database security policy UID.
sl@0
   236
@return A list with paths of the found databases, which have the same database security uid.
sl@0
   237
		The caller is resonsible for deleting the database paths list.
sl@0
   238
@leave KErrArgument - 0 or ECapability_None process SID, null database security UID.
sl@0
   239
@leave KErrPermissionDenied - the supplied process SID does not match the database backup&
sl@0
   240
						 restore SID or the database backup&restore SID is 0 or ECapability_None. 
sl@0
   241
@leave Some other system-wide error codes
sl@0
   242
sl@0
   243
@publishedAll
sl@0
   244
@released
sl@0
   245
*/
sl@0
   246
EXPORT_C CDbStrings* RDbs::BackupPathsL(TSecureId aRequesterSid, TUid aDbPolicyUid)
sl@0
   247
	{
sl@0
   248
	TIpcArgs args(aRequesterSid.iId, aDbPolicyUid.iUid);
sl@0
   249
	RReadStream in(HDbsBuf::NewLC(*this, EDbsGetBackupPaths, args));
sl@0
   250
	CDbStrings* dbPaths = CDbStrings::NewLC();
sl@0
   251
	in >> *dbPaths;
sl@0
   252
	CleanupStack::Pop(dbPaths);
sl@0
   253
	CleanupStack::PopAndDestroy();//HDbsBuf
sl@0
   254
	return dbPaths;
sl@0
   255
	}
sl@0
   256
sl@0
   257
/**
sl@0
   258
Creates a secure shared database.
sl@0
   259
Max allowed database name length (with the extension) is KDbMaxName symbols.
sl@0
   260
sl@0
   261
In this "client-server" mode the database can be shared with the other clients.
sl@0
   262
sl@0
   263
For creating a non-secure database, see RDbNamedDatabase::Create(), which first
sl@0
   264
argument is a RFs reference (or RDbNamedDatabase::Replace()).
sl@0
   265
sl@0
   266
@param aDbs A reference to DBMS session instance.
sl@0
   267
@param aDatabase Database name. The name format is: \<drive\>:\<name\>.\<ext\>
sl@0
   268
@param aFormat Database format string. The string format is: "SECURE[UID]", where UID
sl@0
   269
			   is the database security policy UID. "SECURE" keyword is case insensitive.
sl@0
   270
@return KErrNone if successful otherwise one of the system-wide error codes, including:
sl@0
   271
		KErrAlreadyExists - the database already exists;
sl@0
   272
		KErrNotSupported - invalid format string;
sl@0
   273
		KErrArgument - bad argument, including null/invaluid uids, the database name includes a path;
sl@0
   274
		KErrPermissionDenied - the caller has not enough rights to do the operation;
sl@0
   275
sl@0
   276
@capability Note For a secure shared database, the caller must satisfy the schema 
sl@0
   277
            access policy for the database.
sl@0
   278
sl@0
   279
@see RDbNamedDatabase::Create(RFs& aFs, const TDesC& aSource, const TDesC& aFormat)
sl@0
   280
@see RDbNamedDatabase::Replace(RFs& aFs, const TDesC& aSource, const TDesC& aFormat)
sl@0
   281
sl@0
   282
@publishedAll
sl@0
   283
@released
sl@0
   284
*/
sl@0
   285
EXPORT_C TInt RDbNamedDatabase::Create(RDbs& aDbs, const TDesC& aDatabase, const TDesC& aFormat)
sl@0
   286
	{
sl@0
   287
	TRAPD(r,iDatabase=CDbsSecureDatabase::NewL(aDbs,aDatabase,aFormat));
sl@0
   288
	return r;
sl@0
   289
	}