os/persistentdata/persistentstorage/centralrepository/cenrepsrv/srvsubsess.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) 2006-2010 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
#include "srvreqs.h"
sl@0
    17
#include "backup.h"
sl@0
    18
#include "srvsubsess.h"
sl@0
    19
#include "log.h"
sl@0
    20
#include "centralrepositoryinternal.h"
sl@0
    21
#include <e32def_private.h>
sl@0
    22
sl@0
    23
using namespace NCentralRepositoryConstants;
sl@0
    24
sl@0
    25
CServerSubSession::CServerSubSession(CServerSession* aSession)
sl@0
    26
 : iSession(aSession), iInitialised(EFalse)
sl@0
    27
	{
sl@0
    28
	}
sl@0
    29
sl@0
    30
CServerSubSession::~CServerSubSession()
sl@0
    31
	{
sl@0
    32
#ifdef SRVSUBSESS_TRACE
sl@0
    33
	TUid uid = RepositoryUid();
sl@0
    34
sl@0
    35
	__SRVSUBSESS_TRACE1("~CServerSubSession() UID: 0x%x\n",uid.iUid);
sl@0
    36
#endif
sl@0
    37
sl@0
    38
	iRepository.Close();
sl@0
    39
	iFindResult.Close();
sl@0
    40
	iInitialised = EFalse;
sl@0
    41
	}
sl@0
    42
sl@0
    43
// if session ServiceL Leaves, execution resumes in this method.
sl@0
    44
// this allows us to panic clients using bad descriptors, to deal with OOM conditions
sl@0
    45
// and to fail transactions with the correct reason: OOM etc.
sl@0
    46
void CServerSubSession::ServiceError(TInt aError)
sl@0
    47
	{
sl@0
    48
	// ensure any transaction is failed for the reason aError
sl@0
    49
	iRepository.FailTransaction(aError, KUnspecifiedKey);
sl@0
    50
	}
sl@0
    51
sl@0
    52
TInt CServerSubSession::ServiceL(const RMessage2& aMessage)
sl@0
    53
	{
sl@0
    54
	const TClientRequest msg(aMessage);
sl@0
    55
sl@0
    56
	struct SAction
sl@0
    57
		{
sl@0
    58
		TServerRequest req;
sl@0
    59
		TInt (CServerSubSession::*groupFuncL)(const TClientRequest&, TServerFunc);
sl@0
    60
		TServerFunc funcL;
sl@0
    61
		};
sl@0
    62
sl@0
    63
	static const SAction actionTable[] =
sl@0
    64
		{
sl@0
    65
			{EInitialise,				&CServerSubSession::GeneralOperationsL,	&CServerSubSession::InitialiseL},
sl@0
    66
			{ECreateInt,				&CServerSubSession::WriteOperationsL,	&CServerSubSession::CreateIntL},
sl@0
    67
			{ECreateReal,				&CServerSubSession::WriteOperationsL,	&CServerSubSession::CreateRealL},
sl@0
    68
			{ECreateString,				&CServerSubSession::WriteOperationsL,	&CServerSubSession::CreateStringL},
sl@0
    69
			{EDelete,					&CServerSubSession::WriteOperationsL,	&CServerSubSession::DeleteL},
sl@0
    70
			{EGetInt,					&CServerSubSession::ReadOperationsL,	&CServerSubSession::GetIntL},
sl@0
    71
			{ESetInt,					&CServerSubSession::WriteOperationsL,	&CServerSubSession::SetIntL},
sl@0
    72
			{EGetReal,					&CServerSubSession::ReadOperationsL,	&CServerSubSession::GetRealL},
sl@0
    73
			{ESetReal,					&CServerSubSession::WriteOperationsL,	&CServerSubSession::SetRealL},
sl@0
    74
			{EGetString,				&CServerSubSession::ReadOperationsL,	&CServerSubSession::GetStringL},
sl@0
    75
			{ESetString,				&CServerSubSession::WriteOperationsL,	&CServerSubSession::SetStringL},
sl@0
    76
			{EFind,						&CServerSubSession::ReadOperationsL,	&CServerSubSession::FindL},
sl@0
    77
			{EFindEqInt,				&CServerSubSession::ReadOperationsL,	&CServerSubSession::FindEqIntL},
sl@0
    78
			{EFindEqReal,				&CServerSubSession::ReadOperationsL,	&CServerSubSession::FindEqRealL},
sl@0
    79
			{EFindEqString,				&CServerSubSession::ReadOperationsL,	&CServerSubSession::FindEqStringL},
sl@0
    80
			{EFindNeqInt,				&CServerSubSession::ReadOperationsL,	&CServerSubSession::FindNeqIntL},
sl@0
    81
			{EFindNeqReal,				&CServerSubSession::ReadOperationsL,	&CServerSubSession::FindNeqRealL},
sl@0
    82
			{EFindNeqString,			&CServerSubSession::ReadOperationsL,	&CServerSubSession::FindNeqStringL},
sl@0
    83
			{EGetFindResult,			&CServerSubSession::ReadOperationsL,	&CServerSubSession::GetFindResultL},
sl@0
    84
			{ENotifyRequestCheck,		&CServerSubSession::GeneralOperationsL,	&CServerSubSession::NotifyRequestCheck},
sl@0
    85
			{ENotifyRequest,			&CServerSubSession::GeneralOperationsL,	&CServerSubSession::NotifyRequest},
sl@0
    86
			{ENotifyCancel,				&CServerSubSession::GeneralOperationsL,	&CServerSubSession::NotifyCancel},
sl@0
    87
			{ENotifyCancelAll,			&CServerSubSession::GeneralOperationsL,	&CServerSubSession::NotifyCancelAll},
sl@0
    88
			{EGroupNotifyRequest,		&CServerSubSession::GeneralOperationsL,	&CServerSubSession::GroupNotifyRequest},
sl@0
    89
			{EGroupNotifyCancel,		&CServerSubSession::GeneralOperationsL,	&CServerSubSession::GroupNotifyCancel},
sl@0
    90
			{EReset,					&CServerSubSession::ResetOperationsL,	&CServerSubSession::ResetL},
sl@0
    91
			{EResetAll,					&CServerSubSession::ResetOperationsL,	&CServerSubSession::ResetAllL},
sl@0
    92
			{ETransactionStart,			&CServerSubSession::GeneralOperationsL,	&CServerSubSession::TransactionStart},
sl@0
    93
  			{ETransactionCommit,		&CServerSubSession::GeneralOperationsL,	&CServerSubSession::TransactionCommitL},
sl@0
    94
  			{ETransactionCancel,		&CServerSubSession::GeneralOperationsL,	&CServerSubSession::TransactionCancel},
sl@0
    95
			{EMove,						&CServerSubSession::WriteOperationsL,	&CServerSubSession::MoveL},
sl@0
    96
			{ETransactionState,			&CServerSubSession::GeneralOperationsL,	&CServerSubSession::TransactionStateL},
sl@0
    97
			{ETransactionFail,			&CServerSubSession::GeneralOperationsL,	&CServerSubSession::TransactionFail},
sl@0
    98
			{EDeleteRange,				&CServerSubSession::WriteOperationsL,	&CServerSubSession::DeleteRangeL},
sl@0
    99
			{EGetMeta,					&CServerSubSession::ReadOperationsL,	&CServerSubSession::GetMeta}
sl@0
   100
		};
sl@0
   101
sl@0
   102
#ifdef SRVSUBSESS_TRACE
sl@0
   103
	const TPtrC actionTableNames[] =
sl@0
   104
		{
sl@0
   105
			_L("EInitialize"),
sl@0
   106
			_L("ECreateInt"),
sl@0
   107
			_L("ECreateReal"),
sl@0
   108
			_L("ECreateString"),
sl@0
   109
			_L("EDelete"),
sl@0
   110
			_L("EGetInt"),
sl@0
   111
			_L("ESetInt"),
sl@0
   112
			_L("EGetReal"),
sl@0
   113
			_L("ESetReal"),
sl@0
   114
			_L("EGetString"),
sl@0
   115
			_L("ESetString"),
sl@0
   116
			_L("EFind"),
sl@0
   117
			_L("EFindEqInt"),
sl@0
   118
			_L("EFindEqReal"),
sl@0
   119
			_L("EFindEqString"),
sl@0
   120
			_L("EFindNeqInt"),
sl@0
   121
			_L("EFindNeqReal"),
sl@0
   122
			_L("EFindNeqString"),
sl@0
   123
			_L("EGetFindResult"),
sl@0
   124
			_L("ENotifyRequestCheck"),
sl@0
   125
			_L("ENotifyRequest"),
sl@0
   126
			_L("ENotifyCancel"),
sl@0
   127
			_L("ENotifyCancelAll"),
sl@0
   128
			_L("EGroupNotifyRequest"),
sl@0
   129
			_L("EGroupNotifyCancel"),
sl@0
   130
			_L("EReset"),
sl@0
   131
			_L("EResetAll"),
sl@0
   132
			_L("ETransactionStart"),
sl@0
   133
	  		_L("ETransactionCommit"),
sl@0
   134
	  		_L("ETransactionCancel"),
sl@0
   135
			_L("EMove"),
sl@0
   136
			_L("ETransactionState"),
sl@0
   137
			_L("ETransactionFail"),
sl@0
   138
			_L("EDeleteRange"),
sl@0
   139
			_L("EGetMeta")
sl@0
   140
		};
sl@0
   141
#endif
sl@0
   142
sl@0
   143
	TInt r;
sl@0
   144
	TServerRequest fn = static_cast<TServerRequest>(aMessage.Function());
sl@0
   145
sl@0
   146
	__ASSERT_ALWAYS(iInitialised || fn==EInitialise, PanicClient(ESessionNotInitialised, msg));
sl@0
   147
	// In this assert we use (ELastInTable - 1) rather than ELastInTable because EClose is handled in the session
sl@0
   148
	// rather than the subsession, consiquently the actionTable array is one element shorter than ELastInTable
sl@0
   149
	__ASSERT_ALWAYS((fn < (ELastInTable)) && (fn >= EInitialise), PanicClient(EBadMessageNumber, msg));
sl@0
   150
sl@0
   151
	if (EInitialise != fn)
sl@0
   152
		{
sl@0
   153
		iRepository.AccessRepositoryL();
sl@0
   154
		}
sl@0
   155
#ifdef SRVSUBSESS_TRACE
sl@0
   156
sl@0
   157
	if (EInitialise != fn)
sl@0
   158
		{
sl@0
   159
		TUid uid = RepositoryUid();
sl@0
   160
sl@0
   161
		__SRVSUBSESS_TRACE2("CServerSubSession::ServiceL - UID: 0x%x %S\n",uid.iUid,&actionTableNames[fn]);
sl@0
   162
		}
sl@0
   163
	else
sl@0
   164
		{
sl@0
   165
		__SRVSUBSESS_TRACE1("CServerSubSession::ServiceL - UID: 0x?? %S\n",&actionTableNames[fn]);
sl@0
   166
		}
sl@0
   167
sl@0
   168
#endif
sl@0
   169
	// plus need to check we are initialised
sl@0
   170
	// this comment removes a false positive from the coverity output.  if fn >= ELastInTable then this code
sl@0
   171
	// will assert (see above).  but coverity doesn't consider this and therefore complains that there is a
sl@0
   172
	// posibility that actionTable could be indexed beyond it's length
sl@0
   173
	//coverity[overrun-local]
sl@0
   174
	r = (this->*actionTable[fn].groupFuncL)(aMessage, actionTable[fn].funcL);
sl@0
   175
sl@0
   176
	return r;
sl@0
   177
	}
sl@0
   178
sl@0
   179
//method allows transactions and notify requests to get through during backup/restore
sl@0
   180
//process to prevent them from being blocked.
sl@0
   181
//Transactions being blocked would lead clients to be panicked
sl@0
   182
//if they were trying to open a second transaction in the same session.
sl@0
   183
// Notify cancels must be allowed through because they must always succeed.
sl@0
   184
TInt CServerSubSession::GeneralOperationsL(const TClientRequest& aMessage, TServerFunc aFuncL)
sl@0
   185
	{
sl@0
   186
	ASSERT(aFuncL != NULL);
sl@0
   187
	return (this->*aFuncL)(aMessage);
sl@0
   188
	}
sl@0
   189
sl@0
   190
// method allows read operations to share transaction-related tasks.
sl@0
   191
// Read operations are allowed only during backup process.
sl@0
   192
// During restore it fails transactions with KErrLocked and returns KErrAbort
sl@0
   193
// and if it is a standalone read oparation it rejects it with KErrServerBusy.
sl@0
   194
TInt CServerSubSession::ReadOperationsL(const TClientRequest& aMessage, TServerFunc aFuncL)
sl@0
   195
	{
sl@0
   196
	TInt backupStatus = CRepositoryBackupClient::GetBackupStatus();
sl@0
   197
sl@0
   198
	if (iRepository.IsInFailedTransaction())
sl@0
   199
		{
sl@0
   200
		return KErrAbort;
sl@0
   201
		}
sl@0
   202
	else if (iRepository.IsInTransaction() && (backupStatus == ERestoreInProgress) )
sl@0
   203
	    {
sl@0
   204
	    iRepository.FailTransaction(KErrLocked,KUnspecifiedKey);
sl@0
   205
	    return KErrAbort;
sl@0
   206
	    }
sl@0
   207
	else if (backupStatus == ERestoreInProgress)
sl@0
   208
	    {
sl@0
   209
	    return KErrServerBusy;
sl@0
   210
	    }
sl@0
   211
sl@0
   212
	ASSERT(aFuncL != NULL);
sl@0
   213
	return (this->*aFuncL)(aMessage);
sl@0
   214
	}
sl@0
   215
sl@0
   216
// method allows write operations to share transaction-related tasks
sl@0
   217
// All write operations are not allowed either during backup or restore process.
sl@0
   218
// If backup or restore is in progress it fails transaction with KErrLocked,
sl@0
   219
// returns KErrAbort or if it is a standalone operation it returns KErrServerBusy.
sl@0
   220
TInt CServerSubSession::WriteOperationsL(const TClientRequest& aMessage, TServerFunc aFuncL)
sl@0
   221
	{
sl@0
   222
	TInt backupStatus = CRepositoryBackupClient::GetBackupStatus();
sl@0
   223
sl@0
   224
	if (iRepository.IsInFailedTransaction())
sl@0
   225
		{
sl@0
   226
		return KErrAbort;
sl@0
   227
		}
sl@0
   228
	else if (iRepository.IsInTransaction() && (backupStatus != ENoBackupActivty) )
sl@0
   229
	    {
sl@0
   230
	    iRepository.FailTransaction(KErrLocked,KUnspecifiedKey);
sl@0
   231
	    return KErrAbort;
sl@0
   232
	    }
sl@0
   233
    else if (backupStatus != ENoBackupActivty)
sl@0
   234
        {
sl@0
   235
        return KErrServerBusy;
sl@0
   236
        }
sl@0
   237
sl@0
   238
	// if not already in a transaction, create a temporary concurrent read/write transaction
sl@0
   239
	const TBool tempTransaction = !iRepository.IsInTransaction();
sl@0
   240
	if (tempTransaction)
sl@0
   241
		{
sl@0
   242
		// concurrent read/write transaction is guaranteed to start
sl@0
   243
		iRepository.StartTransaction(EConcurrentReadWriteTransaction);
sl@0
   244
		// to protect against Leaves:
sl@0
   245
		iRepository.CleanupCancelTransactionPushL();
sl@0
   246
		}
sl@0
   247
	else
sl@0
   248
		{
sl@0
   249
		if (iRepository.IsInActiveReadTransaction())
sl@0
   250
			{
sl@0
   251
			// must be a read/write transaction to continue
sl@0
   252
			iRepository.AttemptPromoteTransactionToReadWrite();
sl@0
   253
			// Note we don't check the return value of the above and return it here.
sl@0
   254
			// Instead we call the next level write function and expect it to have the
sl@0
   255
			// following code:
sl@0
   256
			//	if (iRepository.IsInActiveReadTransaction())
sl@0
   257
			//		{
sl@0
   258
			//		return iRepository.FailTransaction(KErrLocked, key);
sl@0
   259
			//		}
sl@0
   260
			// this ensures CommitTransaction reports the failing key.
sl@0
   261
			}
sl@0
   262
		// Note ServiceError will fail the transaction if write operation leaves
sl@0
   263
		}
sl@0
   264
sl@0
   265
	// call the server function
sl@0
   266
	ASSERT(aFuncL != NULL);
sl@0
   267
	TInt result = (this->*aFuncL)(aMessage);
sl@0
   268
sl@0
   269
	// commit the temporary transaction
sl@0
   270
	if (tempTransaction)
sl@0
   271
		{
sl@0
   272
		CleanupStack::Pop(); // remove cleanup item from earlier
sl@0
   273
		// absorb result and keyInfo from commit of temporary transaction
sl@0
   274
		TUint32 tempKeyInfo;
sl@0
   275
		User::LeaveIfError(iRepository.CommitTransaction(tempKeyInfo));
sl@0
   276
		}
sl@0
   277
	return result;
sl@0
   278
	}
sl@0
   279
sl@0
   280
TInt CServerSubSession::ResetOperationsL(const TClientRequest& aMessage, TServerFunc aFuncL)
sl@0
   281
	{
sl@0
   282
	// reset operations are not currently supported in transactions
sl@0
   283
	if (iRepository.IsInTransaction())
sl@0
   284
		{
sl@0
   285
		// fail transaction otherwise client may be misled to believe operation worked
sl@0
   286
		return iRepository.FailTransaction(KErrNotSupported, KUnspecifiedKey);
sl@0
   287
		}
sl@0
   288
   //can't reset when backup or restore is in progress
sl@0
   289
   else if (CRepositoryBackupClient::GetBackupStatus() != ENoBackupActivty)
sl@0
   290
        {
sl@0
   291
        return KErrServerBusy;
sl@0
   292
        }
sl@0
   293
	ASSERT(aFuncL != NULL);
sl@0
   294
	return (this->*aFuncL)(aMessage);
sl@0
   295
	}
sl@0
   296
sl@0
   297
TInt CServerSubSession::InitialiseL(const TClientRequest& aMessage)
sl@0
   298
	{
sl@0
   299
	__ASSERT_ALWAYS(!iInitialised,
sl@0
   300
		PanicClient(ESessionAlreadyInitialised, aMessage));
sl@0
   301
	// We let anyone to open a repository...
sl@0
   302
	// it's not considered a breach of security to let people know
sl@0
   303
	// that a repository is there...
sl@0
   304
	TUid uid = TUid::Uid(aMessage.Int0());
sl@0
   305
sl@0
   306
	__SRVSUBSESS_TRACE1("CServerSubSession::InitialiseL UID: 0x%x\n",uid.iUid);
sl@0
   307
sl@0
   308
	// Calls iObserver->AccessL internally
sl@0
   309
	iRepository.OpenL(uid, iNotifier);
sl@0
   310
sl@0
   311
	iInitialised = ETrue;
sl@0
   312
sl@0
   313
	return KErrNone;
sl@0
   314
	}
sl@0
   315
sl@0
   316
TInt CServerSubSession::CreateIntL(const TClientRequest& aMessage)
sl@0
   317
	{
sl@0
   318
	TUint32 key = aMessage.Int0();
sl@0
   319
sl@0
   320
	// cannot make changes in a read transaction - upgrade must have failed due to write lock being used
sl@0
   321
	if (iRepository.IsInActiveReadTransaction())
sl@0
   322
		{
sl@0
   323
		return iRepository.FailTransaction(KErrLocked, key);
sl@0
   324
		}
sl@0
   325
sl@0
   326
	if(KErrNone !=  CheckPolicy(aMessage,iRepository.GetWriteAccessPolicy(key),
sl@0
   327
			__PLATSEC_DIAGNOSTIC_STRING("CenRep: CServerSubSession::CreateIntL - Attempt made to create a setting")))
sl@0
   328
		return iRepository.FailTransaction(KErrPermissionDenied, key);
sl@0
   329
sl@0
   330
	TInt val = aMessage.Int1();
sl@0
   331
sl@0
   332
#ifdef SRVSUBSESS_TRACE
sl@0
   333
	TUid uid = RepositoryUid();
sl@0
   334
sl@0
   335
	__SRVSUBSESS_TRACE2("CServerSubSession::CreateIntL UID: 0x%x Key=0x%x\n",uid.iUid,key);
sl@0
   336
#endif
sl@0
   337
sl@0
   338
	TInt r = iRepository.TransactionCreateL(key, val, NULL);
sl@0
   339
sl@0
   340
	return r;
sl@0
   341
	}
sl@0
   342
sl@0
   343
TInt CServerSubSession::CreateRealL(const TClientRequest& aMessage)
sl@0
   344
	{
sl@0
   345
	TUint32 key = aMessage.Int0();
sl@0
   346
sl@0
   347
	// cannot make changes in a read transaction - upgrade must have failed due to write lock being used
sl@0
   348
	if (iRepository.IsInActiveReadTransaction())
sl@0
   349
		{
sl@0
   350
		return iRepository.FailTransaction(KErrLocked, key);
sl@0
   351
		}
sl@0
   352
sl@0
   353
	if(KErrNone != CheckPolicy(aMessage,iRepository.GetWriteAccessPolicy(key),
sl@0
   354
			__PLATSEC_DIAGNOSTIC_STRING("CenRep: CServerSession::CreateRealL - Attempt made to create a setting")))
sl@0
   355
		return iRepository.FailTransaction(KErrPermissionDenied, key);
sl@0
   356
sl@0
   357
	TReal val;
sl@0
   358
	TPckg<TReal> p(val);
sl@0
   359
	aMessage.ReadL(1, p);
sl@0
   360
sl@0
   361
#ifdef SRVSUBSESS_TRACE
sl@0
   362
	TUid uid = RepositoryUid();
sl@0
   363
sl@0
   364
	__SRVSUBSESS_TRACE2("CServerSubSession::CreateRealL UID: 0x%x Key=0x%x\n",uid.iUid,key);
sl@0
   365
#endif
sl@0
   366
	TInt r = iRepository.TransactionCreateL(key, val, NULL);
sl@0
   367
sl@0
   368
	return r;
sl@0
   369
	}
sl@0
   370
sl@0
   371
TInt CServerSubSession::CreateStringL(const TClientRequest& aMessage)
sl@0
   372
	{
sl@0
   373
	TUint32 key = aMessage.Int0();
sl@0
   374
sl@0
   375
	// cannot make changes in a read transaction - upgrade must have failed due to write lock being used
sl@0
   376
	if (iRepository.IsInActiveReadTransaction())
sl@0
   377
		{
sl@0
   378
		return iRepository.FailTransaction(KErrLocked, key);
sl@0
   379
		}
sl@0
   380
sl@0
   381
	// sometime: must ensure bad descriptor results in client being panic'd
sl@0
   382
sl@0
   383
	// check for descriptor-too-long was previously on the client side,
sl@0
   384
	// hence test code expects KErrArgument response before KErrPermissionDenied
sl@0
   385
	TInt length = aMessage.GetDesLengthL(1);
sl@0
   386
	if (length > KMaxBinaryLength)
sl@0
   387
		{
sl@0
   388
		return iRepository.FailTransaction(KErrArgument, key);
sl@0
   389
		}
sl@0
   390
sl@0
   391
	if(KErrNone != CheckPolicy(aMessage,iRepository.GetWriteAccessPolicy(key),
sl@0
   392
			__PLATSEC_DIAGNOSTIC_STRING("CenRep: CServerSession::CreateStringL - Attempt made to create a setting")))
sl@0
   393
		return iRepository.FailTransaction(KErrPermissionDenied, key);
sl@0
   394
sl@0
   395
	TBuf8<KMaxBinaryLength> val;
sl@0
   396
	aMessage.ReadL(1, val);
sl@0
   397
sl@0
   398
#ifdef SRVSUBSESS_TRACE
sl@0
   399
	TUid uid = RepositoryUid();
sl@0
   400
sl@0
   401
	__SRVSUBSESS_TRACE2("CServerSubSession::CreateStringL UID: 0x%x Key=0x%x\n",uid.iUid,key);
sl@0
   402
#endif
sl@0
   403
sl@0
   404
	TInt error = iRepository.TransactionCreateL(key, val, NULL);
sl@0
   405
sl@0
   406
	return error;
sl@0
   407
	}
sl@0
   408
sl@0
   409
TInt CServerSubSession::DeleteL(const TClientRequest& aMessage)
sl@0
   410
	{
sl@0
   411
	TUint32 key = aMessage.Int0();
sl@0
   412
sl@0
   413
	// cannot make changes in a read transaction - upgrade must have failed due to write lock being used
sl@0
   414
	if (iRepository.IsInActiveReadTransaction())
sl@0
   415
		{
sl@0
   416
		return iRepository.FailTransaction(KErrLocked, key);
sl@0
   417
		}
sl@0
   418
sl@0
   419
	if(KErrNone != CheckPolicy(aMessage,iRepository.GetWriteAccessPolicy(key),
sl@0
   420
			__PLATSEC_DIAGNOSTIC_STRING("CenRep: CServerSession::DeleteL - Attempt made to delete a setting")))
sl@0
   421
		return iRepository.FailTransaction(KErrPermissionDenied, key);
sl@0
   422
sl@0
   423
#ifdef SRVSUBSESS_TRACE
sl@0
   424
	TUid uid = RepositoryUid();
sl@0
   425
sl@0
   426
	__SRVSUBSESS_TRACE2("CServerSubSession::DeleteL UID: 0x%x Key=0x%x\n",uid.iUid,key);
sl@0
   427
#endif
sl@0
   428
sl@0
   429
	TInt r = iRepository.TransactionDeleteL(key);
sl@0
   430
sl@0
   431
	return r;
sl@0
   432
	}
sl@0
   433
sl@0
   434
TInt CServerSubSession::GetIntL(const TClientRequest& aMessage)
sl@0
   435
	{
sl@0
   436
	TUint32 key = aMessage.Int0();
sl@0
   437
sl@0
   438
	if(KErrNone != CheckPolicy(aMessage,iRepository.GetReadAccessPolicy(key),
sl@0
   439
				__PLATSEC_DIAGNOSTIC_STRING("CenRep: CServerSession::GetIntL - Attempt made to read a setting")))
sl@0
   440
		return KErrPermissionDenied;
sl@0
   441
sl@0
   442
	TInt val;
sl@0
   443
	TInt error = iRepository.Get(key, val);
sl@0
   444
sl@0
   445
	if (error == KErrNone)
sl@0
   446
		{
sl@0
   447
		TPckg<TInt> p(val);
sl@0
   448
		aMessage.WriteL(1, p);
sl@0
   449
		}
sl@0
   450
sl@0
   451
#ifdef SRVSUBSESS_TRACE
sl@0
   452
	TUid uid = RepositoryUid();
sl@0
   453
sl@0
   454
	if (error == KErrNone)
sl@0
   455
		{
sl@0
   456
		__SRVSUBSESS_TRACE3("CServerSubSession::GetIntL UID: 0x%x Key=0x%x Value=%d\n",uid.iUid,key,val);
sl@0
   457
		}
sl@0
   458
	else
sl@0
   459
		{
sl@0
   460
		__SRVSUBSESS_TRACE2("CServerSubSession::GetIntL **Failure** UID: 0x%x Key=0x%x\n",uid.iUid,key);
sl@0
   461
		}
sl@0
   462
#endif
sl@0
   463
sl@0
   464
	return error;
sl@0
   465
	}
sl@0
   466
sl@0
   467
TInt CServerSubSession::SetIntL(const TClientRequest& aMessage)
sl@0
   468
	{
sl@0
   469
	TUint32 key = aMessage.Int0();
sl@0
   470
sl@0
   471
	// cannot make changes in a read transaction - upgrade must have failed due to write lock being used
sl@0
   472
	if (iRepository.IsInActiveReadTransaction())
sl@0
   473
		{
sl@0
   474
		return iRepository.FailTransaction(KErrLocked, key);
sl@0
   475
		}
sl@0
   476
sl@0
   477
	if(KErrNone != CheckPolicy(aMessage,iRepository.GetWriteAccessPolicy(key),
sl@0
   478
				__PLATSEC_DIAGNOSTIC_STRING("CenRep: CServerSession::SetIntL - Attempt made to write a setting")))
sl@0
   479
		return iRepository.FailTransaction(KErrPermissionDenied, key);
sl@0
   480
sl@0
   481
	TInt val = aMessage.Int1();
sl@0
   482
	TInt error = iRepository.TransactionSetL(key, val);
sl@0
   483
sl@0
   484
#ifdef SRVSUBSESS_TRACE
sl@0
   485
	TUid uid = RepositoryUid();
sl@0
   486
sl@0
   487
	if (error == KErrNone)
sl@0
   488
		{
sl@0
   489
		__SRVSUBSESS_TRACE3("CServerSubSession::SetIntL UID: 0x%x Key=0x%x Value=%d\n",uid.iUid,key,val);
sl@0
   490
		}
sl@0
   491
	else
sl@0
   492
		{
sl@0
   493
		__SRVSUBSESS_TRACE3("CServerSubSession::SetIntL **Failure** UID: 0x%x Key=0x%x Value=%d\n",uid.iUid,key,val);
sl@0
   494
		}
sl@0
   495
#endif
sl@0
   496
	return error;
sl@0
   497
	}
sl@0
   498
sl@0
   499
TInt CServerSubSession::GetRealL(const TClientRequest& aMessage)
sl@0
   500
	{
sl@0
   501
	TUint32 key = aMessage.Int0();
sl@0
   502
sl@0
   503
	if(KErrNone != CheckPolicy(aMessage,iRepository.GetReadAccessPolicy(key),
sl@0
   504
				__PLATSEC_DIAGNOSTIC_STRING("CenRep: CServerSession::GetRealL - Attempt made to read a setting")))
sl@0
   505
		return KErrPermissionDenied;
sl@0
   506
sl@0
   507
	TReal val;
sl@0
   508
	TInt error = iRepository.Get(key, val);
sl@0
   509
sl@0
   510
	if(error==KErrNone)
sl@0
   511
		{
sl@0
   512
		TPckg<TReal> p(val);
sl@0
   513
		aMessage.WriteL(1, p);
sl@0
   514
		}
sl@0
   515
sl@0
   516
#ifdef SRVSUBSESS_TRACE
sl@0
   517
	TUid uid = RepositoryUid();
sl@0
   518
sl@0
   519
	if (error == KErrNone)
sl@0
   520
		{
sl@0
   521
		__SRVSUBSESS_TRACE3("CServerSubSession::GetRealL UID: 0x%x Key=0x%x Value=%d\n",uid.iUid,key,val);
sl@0
   522
		}
sl@0
   523
	else
sl@0
   524
		{
sl@0
   525
		__SRVSUBSESS_TRACE2("CServerSubSession::GetRealL **Failure** UID: 0x%x Key=0x%x\n",uid.iUid,key);
sl@0
   526
		}
sl@0
   527
#endif
sl@0
   528
	return error;
sl@0
   529
	}
sl@0
   530
sl@0
   531
TInt CServerSubSession::SetRealL(const TClientRequest& aMessage)
sl@0
   532
	{
sl@0
   533
	TUint32 key = aMessage.Int0();
sl@0
   534
sl@0
   535
	// cannot make changes in a read transaction - upgrade must have failed due to write lock being used
sl@0
   536
	if (iRepository.IsInActiveReadTransaction())
sl@0
   537
		{
sl@0
   538
		return iRepository.FailTransaction(KErrLocked, key);
sl@0
   539
		}
sl@0
   540
sl@0
   541
	if(KErrNone != CheckPolicy(aMessage,iRepository.GetWriteAccessPolicy(key),
sl@0
   542
				__PLATSEC_DIAGNOSTIC_STRING("CenRep: CServerSession::SetRealL - Attempt made to write a setting")))
sl@0
   543
		return iRepository.FailTransaction(KErrPermissionDenied, key);
sl@0
   544
sl@0
   545
	TReal val;
sl@0
   546
	TPckg<TReal> p(val);
sl@0
   547
	aMessage.ReadL(1, p);
sl@0
   548
sl@0
   549
	TInt error = iRepository.TransactionSetL(key, val);
sl@0
   550
sl@0
   551
#ifdef SRVSUBSESS_TRACE
sl@0
   552
	TUid uid = RepositoryUid();
sl@0
   553
sl@0
   554
	if (error == KErrNone)
sl@0
   555
		{
sl@0
   556
		__SRVSUBSESS_TRACE3("CServerSubSession::SetRealL UID: 0x%x Key=0x%x Value=%d\n",uid.iUid,key,val);
sl@0
   557
		}
sl@0
   558
	else
sl@0
   559
		{
sl@0
   560
		__SRVSUBSESS_TRACE3("CServerSubSession::SetRealL **Failure** UID: 0x%x Key=0x%x Value=%d\n",uid.iUid,key,val);
sl@0
   561
		}
sl@0
   562
#endif
sl@0
   563
sl@0
   564
	return error;
sl@0
   565
	}
sl@0
   566
sl@0
   567
TInt CServerSubSession::GetStringL(const TClientRequest& aMessage)
sl@0
   568
	{
sl@0
   569
	TUint32 key = aMessage.Int0();
sl@0
   570
sl@0
   571
	if(KErrNone != CheckPolicy(aMessage,iRepository.GetReadAccessPolicy(key),
sl@0
   572
				__PLATSEC_DIAGNOSTIC_STRING("CenRep: CServerSession::GetStringL - Attempt made to read a setting")))
sl@0
   573
		return KErrPermissionDenied;
sl@0
   574
sl@0
   575
	TBuf8<KMaxBinaryLength> val;
sl@0
   576
sl@0
   577
	TInt error = iRepository.Get(key, val);
sl@0
   578
sl@0
   579
	if(error==KErrNone)
sl@0
   580
		{
sl@0
   581
		TInt clientMaxDescriptorLength;
sl@0
   582
		TPckg<TInt> pInt (clientMaxDescriptorLength);
sl@0
   583
		aMessage.Read(2, pInt);
sl@0
   584
sl@0
   585
		TInt descriptorLength = val.Length();
sl@0
   586
sl@0
   587
		// write the descriptor length to aMessage
sl@0
   588
		TPckg<TInt> p(descriptorLength);
sl@0
   589
		error = aMessage.Write(2, p);
sl@0
   590
sl@0
   591
		if(error==KErrNone)
sl@0
   592
			{
sl@0
   593
			if(descriptorLength > clientMaxDescriptorLength)
sl@0
   594
				{
sl@0
   595
				// if it is, fill the descriptor up to its max length
sl@0
   596
				error = aMessage.Write(1, val.Left(clientMaxDescriptorLength));
sl@0
   597
sl@0
   598
				// if client-side descriptor is too small to take the value, which it is, returns KErrOverflow
sl@0
   599
				if(error == KErrNone)
sl@0
   600
					{
sl@0
   601
					error = KErrOverflow;
sl@0
   602
					}
sl@0
   603
				}
sl@0
   604
			else
sl@0
   605
				{
sl@0
   606
				error = aMessage.Write(1, val);
sl@0
   607
				}
sl@0
   608
sl@0
   609
#ifdef SRVSUBSESS_TRACE
sl@0
   610
			TUid uid = RepositoryUid();
sl@0
   611
sl@0
   612
			if (error == KErrNone)
sl@0
   613
				{
sl@0
   614
				__SRVSUBSESS_TRACE3("CServerSubSession::GetStringL UID: 0x%x Key=0x%x Value=%S\n",uid.iUid,key,&val);
sl@0
   615
				}
sl@0
   616
			else
sl@0
   617
				{
sl@0
   618
				__SRVSUBSESS_TRACE2("CServerSubSession::GetStringL **Failure** UID: 0x%x Key=0x%x\n",uid.iUid,key);
sl@0
   619
				}
sl@0
   620
#endif
sl@0
   621
			}
sl@0
   622
sl@0
   623
		// if error is KErrOverflow should not failing transaction
sl@0
   624
		if ((error != KErrNone) && (error != KErrOverflow))
sl@0
   625
			{
sl@0
   626
			// ServiceError will fail transaction
sl@0
   627
			User::Leave(error);
sl@0
   628
			}
sl@0
   629
		}
sl@0
   630
	return error;
sl@0
   631
	}
sl@0
   632
sl@0
   633
TInt CServerSubSession::SetStringL(const TClientRequest& aMessage)
sl@0
   634
	{
sl@0
   635
	TUint32 key = aMessage.Int0();
sl@0
   636
sl@0
   637
	// cannot make changes in a read transaction - upgrade must have failed due to write lock being used
sl@0
   638
	if (iRepository.IsInActiveReadTransaction())
sl@0
   639
		{
sl@0
   640
		return iRepository.FailTransaction(KErrLocked, key);
sl@0
   641
		}
sl@0
   642
sl@0
   643
	// check for descriptor-too-long was previously on the client side,
sl@0
   644
	// hence test code expects KErrArgument response before KErrPermissionDenied
sl@0
   645
	TInt length = aMessage.GetDesLengthL(1);
sl@0
   646
	if (length > KMaxBinaryLength)
sl@0
   647
		{
sl@0
   648
		return iRepository.FailTransaction(KErrArgument, key);
sl@0
   649
		}
sl@0
   650
sl@0
   651
	if(KErrNone != CheckPolicy(aMessage,iRepository.GetWriteAccessPolicy(key),
sl@0
   652
				__PLATSEC_DIAGNOSTIC_STRING("CenRep: CServerSession::SetStringL - Attempt made to write a setting")))
sl@0
   653
		return iRepository.FailTransaction(KErrPermissionDenied, key);
sl@0
   654
sl@0
   655
	TBuf8<KMaxBinaryLength> val;
sl@0
   656
	aMessage.ReadL(1, val);  // no error if too long, truncated instead
sl@0
   657
sl@0
   658
	TInt error = iRepository.TransactionSetL(key, val);
sl@0
   659
sl@0
   660
#ifdef SRVSUBSESS_TRACE
sl@0
   661
	TUid uid = RepositoryUid();
sl@0
   662
sl@0
   663
	if (error == KErrNone)
sl@0
   664
		{
sl@0
   665
		__SRVSUBSESS_TRACE3("CServerSubSession::SetStringL UID: 0x%x Key=0x%x Value=%S\n",uid.iUid,key,&val);
sl@0
   666
		}
sl@0
   667
	else
sl@0
   668
		{
sl@0
   669
		__SRVSUBSESS_TRACE2("CServerSubSession::SetStringL **Failure** UID: 0x%x Key=0x%x\n",uid.iUid,key);
sl@0
   670
		}
sl@0
   671
#endif
sl@0
   672
sl@0
   673
	return error;
sl@0
   674
	}
sl@0
   675
sl@0
   676
TInt CServerSubSession::GetMeta(const TClientRequest& aMessage)
sl@0
   677
	{
sl@0
   678
	TUint32 key = aMessage.Int0();
sl@0
   679
sl@0
   680
	if(KErrNone != CheckPolicy(aMessage,iRepository.GetReadAccessPolicy(key),
sl@0
   681
				__PLATSEC_DIAGNOSTIC_STRING("CenRep: CServerSession::GetMeta - Attempt made to read a setting")))
sl@0
   682
		return KErrPermissionDenied;
sl@0
   683
sl@0
   684
	TUint32 meta;
sl@0
   685
	TInt error = iRepository.GetMeta(key, meta);
sl@0
   686
sl@0
   687
	if (error == KErrNone)
sl@0
   688
		{
sl@0
   689
		TPckg<TUint32> p(meta);
sl@0
   690
		error = aMessage.Write(1, p);
sl@0
   691
		}
sl@0
   692
sl@0
   693
#ifdef SRVSUBSESS_TRACE
sl@0
   694
	TUid uid = RepositoryUid();
sl@0
   695
sl@0
   696
	if (error == KErrNone)
sl@0
   697
		{
sl@0
   698
		__SRVSUBSESS_TRACE3("CServerSubSession::GetMeta UID: 0x%x Key=0x%x Meta=0x%x\n",uid.iUid,key,meta);
sl@0
   699
		}
sl@0
   700
	else
sl@0
   701
		{
sl@0
   702
		__SRVSUBSESS_TRACE2("CServerSubSession::GetMeta **Failure** UID: 0x%x Key=0x%x\n",uid.iUid,key);
sl@0
   703
		}
sl@0
   704
#endif
sl@0
   705
sl@0
   706
	return error;
sl@0
   707
	}
sl@0
   708
sl@0
   709
TInt CServerSubSession::FindL(const TClientRequest& aMessage)
sl@0
   710
	{
sl@0
   711
	// PLATSEC NOTE:
sl@0
   712
	// There are no read policy checks on FindL.
sl@0
   713
	// Client is returned the full list of keys whether they have read permission or not.
sl@0
   714
	// They were able to find this out by brute force using FindL on single setting ranges
sl@0
   715
	// anyway (because it would return KErrPermissionDenied if it existed, KErrNotFound otherwise).
sl@0
   716
	// Revealing the existence of settings is not considered a breach of security.
sl@0
   717
	TKeyFilter keyIdentifier;
sl@0
   718
	TPckg<TKeyFilter> p(keyIdentifier);
sl@0
   719
	aMessage.Read(0, p);
sl@0
   720
	// we reset results first since we do not police GetResult
sl@0
   721
	// and this way we can guarantee no results are available if access not granted
sl@0
   722
	iFindResult.Reset();
sl@0
   723
	
sl@0
   724
	RArray<TUint32> settingsToSend;
sl@0
   725
	CleanupClosePushL(settingsToSend);
sl@0
   726
sl@0
   727
	TInt error=KErrNone;
sl@0
   728
	TRAP(error,iRepository.FindL(keyIdentifier.iPartialId, keyIdentifier.iIdMask,settingsToSend,KCentRepFindBufSize,iFindResult));	
sl@0
   729
	if (error==KErrNone)
sl@0
   730
		{
sl@0
   731
		//write back the total number of settingsFound;
sl@0
   732
		TInt numSettings=settingsToSend.Count()+iFindResult.Count();
sl@0
   733
		TPtrC8 count(reinterpret_cast<TUint8*>(&numSettings),sizeof(TUint32));
sl@0
   734
		error=aMessage.Write(2,count);
sl@0
   735
		if (error==KErrNone)
sl@0
   736
			{
sl@0
   737
			TPtrC8 p(reinterpret_cast<TUint8*>(&(settingsToSend[0])), (settingsToSend.Count())*sizeof(TUint32));
sl@0
   738
			error=aMessage.Write(2,p,4);
sl@0
   739
			}
sl@0
   740
	
sl@0
   741
#ifdef SRVSUBSESS_TRACE
sl@0
   742
		TUid uid = RepositoryUid();
sl@0
   743
		if (error == KErrNone)
sl@0
   744
			{
sl@0
   745
			__SRVSUBSESS_TRACE4("CServerSubSession::FindL UID: 0x%x Key=0x%x Mask=0x%x Value=%S\n",uid.iUid,keyIdentifier.iPartialId,
sl@0
   746
					keyIdentifier.iIdMask,&p);
sl@0
   747
			}
sl@0
   748
		else
sl@0
   749
			{
sl@0
   750
			__SRVSUBSESS_TRACE4("CServerSubSession::FindL (failed write) UID: 0x%x Key=0x%x Mask=0x%x Value=%S\n",uid.iUid,keyIdentifier.iPartialId,
sl@0
   751
					keyIdentifier.iIdMask,&p);			
sl@0
   752
			}
sl@0
   753
#endif
sl@0
   754
		}
sl@0
   755
	CleanupStack::PopAndDestroy(); //settingsToSend
sl@0
   756
	
sl@0
   757
	if (error != KErrNone)
sl@0
   758
		{
sl@0
   759
		iFindResult.Reset();
sl@0
   760
		if ((error != KErrNone) && (error != KErrNotFound))
sl@0
   761
			{
sl@0
   762
			// ServiceError will fail transaction
sl@0
   763
			User::Leave(error);
sl@0
   764
			}
sl@0
   765
		}
sl@0
   766
	return error;
sl@0
   767
	}
sl@0
   768
sl@0
   769
TInt CServerSubSession::FindEqIntL(const TClientRequest& aMessage)
sl@0
   770
	{
sl@0
   771
	TInt val = aMessage.Int1();
sl@0
   772
	// PlatSec check done in FindValueL
sl@0
   773
	return FindValueL(aMessage, val);
sl@0
   774
	}
sl@0
   775
sl@0
   776
TInt CServerSubSession::FindEqRealL(const TClientRequest& aMessage)
sl@0
   777
	{
sl@0
   778
	TReal val;
sl@0
   779
	TPckg<TReal> p(val);
sl@0
   780
	aMessage.Read(1, p);
sl@0
   781
	// PlatSec check done in FindValueL
sl@0
   782
	return FindValueL(aMessage, val);
sl@0
   783
	}
sl@0
   784
sl@0
   785
TInt CServerSubSession::FindEqStringL(const TClientRequest& aMessage)
sl@0
   786
	{
sl@0
   787
	TBuf8<KMaxBinaryLength> val;
sl@0
   788
	aMessage.ReadL(1, val);  // no error if too long, truncated instead
sl@0
   789
	// PlatSec check done in FindValueL
sl@0
   790
	return FindValueL(aMessage, val);
sl@0
   791
	}
sl@0
   792
sl@0
   793
TInt CServerSubSession::FindNeqIntL(const TClientRequest& aMessage)
sl@0
   794
	{
sl@0
   795
	TInt val = aMessage.Int1();
sl@0
   796
	// PlatSec check done in FindValueL
sl@0
   797
	return FindValueL(aMessage, val, ENotEqual);
sl@0
   798
	}
sl@0
   799
sl@0
   800
TInt CServerSubSession::FindNeqRealL(const TClientRequest& aMessage)
sl@0
   801
	{
sl@0
   802
	TReal val;
sl@0
   803
	TPckg<TReal> p(val);
sl@0
   804
	aMessage.Read(1, p);
sl@0
   805
	// PlatSec check done in FindValueL
sl@0
   806
	return FindValueL(aMessage, val, ENotEqual);
sl@0
   807
	}
sl@0
   808
sl@0
   809
TInt CServerSubSession::FindNeqStringL(const TClientRequest& aMessage)
sl@0
   810
	{
sl@0
   811
	TBuf8<KMaxBinaryLength> val;
sl@0
   812
	aMessage.ReadL(1, val);  // no error if too long, truncated instead
sl@0
   813
	// PlatSec check done in FindValueL
sl@0
   814
	return FindValueL(aMessage, val, ENotEqual);
sl@0
   815
	}
sl@0
   816
sl@0
   817
template <class T>
sl@0
   818
TInt CServerSubSession::FindValueL(const TClientRequest& aMessage, const T& aVal,TComparison aComparison)
sl@0
   819
	{
sl@0
   820
	// IMPORTANT PLATSEC NOTE:
sl@0
   821
	// MUST return KErrPermissionDenied if read policy of ANY setting in the search range not passed.
sl@0
   822
	// MUST NOT merely check read policy of matching entries, otherwise it is possible to determine
sl@0
   823
	// secret values by brute force: Using single-value ranges, cycling through the possible values and
sl@0
   824
	// confirming a match when it returns KErrPermissionDenied rather than KErrNotFound.
sl@0
   825
	TKeyFilter keyIdentifier;
sl@0
   826
	TPckg<TKeyFilter> p(keyIdentifier);
sl@0
   827
	aMessage.Read(0, p);
sl@0
   828
	// we reset results first since we do not police GetResult
sl@0
   829
	// and this way we can guarantee no results are available if access not granted
sl@0
   830
	iFindResult.Reset();
sl@0
   831
	RSettingPointerArray settings;
sl@0
   832
	CleanupClosePushL(settings);
sl@0
   833
	TInt error = iRepository.FindSettings(keyIdentifier.iPartialId, keyIdentifier.iIdMask, settings);
sl@0
   834
	if (error == KErrNone)
sl@0
   835
		{
sl@0
   836
		//perform the read checking policies first
sl@0
   837
		TUint32 dummyErrId;
sl@0
   838
		error=iRepository.CheckPermissions(settings,aMessage,
sl@0
   839
		__PLATSEC_DIAGNOSTIC_STRING("CenRep: CServerSession::FindValueL - Attempt made to search settings"),ETrue,dummyErrId);
sl@0
   840
		if (error==KErrPermissionDenied)
sl@0
   841
			iFindResult.Reset();
sl@0
   842
sl@0
   843
		//now if everything passes, do perform the FindValue
sl@0
   844
		if (error==KErrNone)
sl@0
   845
			{
sl@0
   846
			TRAP(error,iRepository.FindCompareL(settings,aVal,aComparison,iFindResult));
sl@0
   847
			if (error==KErrNone)
sl@0
   848
				{
sl@0
   849
				const TInt numSettings = iFindResult.Count();
sl@0
   850
				const TInt numInitial = numSettings > KCentRepFindBufSize ? KCentRepFindBufSize : numSettings;
sl@0
   851
				RArray<TUint32> settingsToSend;
sl@0
   852
				CleanupClosePushL(settingsToSend);
sl@0
   853
				
sl@0
   854
				//reserve memory for everything that needs to be added to the array
sl@0
   855
				settingsToSend.ReserveL(numInitial + 1); // the plus one is for the numSettings value
sl@0
   856
				
sl@0
   857
				//first append the number of found settings
sl@0
   858
				settingsToSend.AppendL(numSettings);
sl@0
   859
sl@0
   860
				//now append up to KCentRepFindBufSize settings
sl@0
   861
				for(TInt i = 0; i < numInitial; i++)
sl@0
   862
					{
sl@0
   863
					settingsToSend.AppendL(iFindResult[0]);
sl@0
   864
					iFindResult.Remove(0);
sl@0
   865
					}
sl@0
   866
					
sl@0
   867
				if(iFindResult.Count() == 0)
sl@0
   868
					{
sl@0
   869
					iFindResult.Reset();
sl@0
   870
					}
sl@0
   871
sl@0
   872
				//send:
sl@0
   873
				//1 - the count of total settings found
sl@0
   874
				//2 - the settings that fit in the buffer allocated for the first IPC 
sl@0
   875
				TPtrC8 p(reinterpret_cast<TUint8*>(&(settingsToSend[0])), (numInitial+1)*sizeof(TUint32));
sl@0
   876
				error = aMessage.Write(2, p);
sl@0
   877
sl@0
   878
	#ifdef SRVSUBSESS_TRACE
sl@0
   879
				TUid uid = RepositoryUid();
sl@0
   880
				
sl@0
   881
				__SRVSUBSESS_TRACE4("CServerSubSession::FindValueL UID: 0x%x Key=0x%x Mask=0x%x Value=%S\n",uid.iUid,keyIdentifier.iPartialId, 
sl@0
   882
						keyIdentifier.iIdMask,&p);
sl@0
   883
	#endif
sl@0
   884
				CleanupStack::PopAndDestroy(); //settingsToSend		
sl@0
   885
				}
sl@0
   886
			}
sl@0
   887
		}
sl@0
   888
	if ((error != KErrNone) && (error != KErrNotFound) && (error != KErrPermissionDenied))
sl@0
   889
		{
sl@0
   890
		iFindResult.Reset();
sl@0
   891
		CleanupStack::PopAndDestroy(); //settings
sl@0
   892
sl@0
   893
		// ServiceError will fail transaction
sl@0
   894
		User::Leave(error);
sl@0
   895
		}
sl@0
   896
#ifdef SRVSUBSESS_TRACE
sl@0
   897
	else
sl@0
   898
		{
sl@0
   899
		TUid uid = RepositoryUid();
sl@0
   900
sl@0
   901
		__SRVSUBSESS_TRACE3("CServerSubSession::FindValueL **Failure** UID: 0x%x Key=0x%x Mask=0x%x\n",uid.iUid,keyIdentifier.iPartialId,
sl@0
   902
				keyIdentifier.iIdMask);
sl@0
   903
		}
sl@0
   904
#endif
sl@0
   905
sl@0
   906
	CleanupStack::PopAndDestroy(); //settings
sl@0
   907
	return error;
sl@0
   908
	}
sl@0
   909
sl@0
   910
TInt CServerSubSession::GetFindResultL(const TClientRequest& aMessage)
sl@0
   911
	{
sl@0
   912
	TInt n = iFindResult.Count();	
sl@0
   913
	if (n==0)
sl@0
   914
		{
sl@0
   915
		return KErrNotFound;
sl@0
   916
		}
sl@0
   917
sl@0
   918
  	TPtrC8 p(reinterpret_cast<TUint8*>(&(iFindResult[0])), n*sizeof(TUint32));
sl@0
   919
  	TInt error = aMessage.Write(0, p);
sl@0
   920
  	// Free up iFindResult - it's no longer needed
sl@0
   921
  	iFindResult.Reset();
sl@0
   922
	// ServiceError will fail transaction
sl@0
   923
sl@0
   924
#ifdef SRVSUBSESS_TRACE
sl@0
   925
  	TUid uid = RepositoryUid();
sl@0
   926
sl@0
   927
	if (error == KErrNone)
sl@0
   928
		{
sl@0
   929
		__SRVSUBSESS_TRACE2("CServerSubSession::GetFindResultL UID: 0x%x Value=%S\n",uid.iUid,&p);
sl@0
   930
		}
sl@0
   931
	else
sl@0
   932
		{
sl@0
   933
		__SRVSUBSESS_TRACE1("CServerSubSession::GetFindResultL **Failure** UID: 0x%x\n",uid.iUid);
sl@0
   934
		}
sl@0
   935
#endif
sl@0
   936
	return User::LeaveIfError(error);
sl@0
   937
	}
sl@0
   938
sl@0
   939
TInt CServerSubSession::NotifyRequestCheck(const TClientRequest& aMessage)
sl@0
   940
	{
sl@0
   941
	TUint32 key = aMessage.Int0();
sl@0
   942
	if(KErrNone != CheckPolicy(aMessage,iRepository.GetReadAccessPolicy(key),
sl@0
   943
				__PLATSEC_DIAGNOSTIC_STRING("CenRep: CServerSession::NotifyRequestCheck - Attempt made to check Notify request")))
sl@0
   944
		return KErrPermissionDenied;
sl@0
   945
sl@0
   946
	TInt error = iRepository.GetPersistentSetting(key) ? KErrNone : KErrNotFound;
sl@0
   947
sl@0
   948
#ifdef SRVSUBSESS_TRACE
sl@0
   949
	TUid uid = RepositoryUid();
sl@0
   950
sl@0
   951
	if (error == KErrNone)
sl@0
   952
		{
sl@0
   953
		__SRVSUBSESS_TRACE2("CServerSubSession::NotifyRequestCheck UID: 0x%x Key=0x%x\n",uid.iUid,key);
sl@0
   954
		}
sl@0
   955
	else
sl@0
   956
		{
sl@0
   957
		__SRVSUBSESS_TRACE1("CServerSubSession::NotifyRequestCheck **Failure** UID: 0x%x\n",uid.iUid);
sl@0
   958
		}
sl@0
   959
#endif
sl@0
   960
	return error;
sl@0
   961
	}
sl@0
   962
sl@0
   963
TInt CServerSubSession::NotifyRequest(const TClientRequest& aMessage)
sl@0
   964
	{
sl@0
   965
	TUint32 key = aMessage.Int0();
sl@0
   966
	if(KErrNone != CheckPolicy(aMessage,iRepository.GetReadAccessPolicy(key),
sl@0
   967
				__PLATSEC_DIAGNOSTIC_STRING("CenRep: CServerSession::NotifyRequest - Attempt made to register for Notify")))
sl@0
   968
		return KErrPermissionDenied;
sl@0
   969
	TInt error = iNotifier.AddRequest(key, aMessage);
sl@0
   970
sl@0
   971
#ifdef SRVSUBSESS_TRACE
sl@0
   972
	TUid uid = RepositoryUid();
sl@0
   973
sl@0
   974
	if (error == KErrNone)
sl@0
   975
		{
sl@0
   976
		__SRVSUBSESS_TRACE2("CServerSubSession::NotifyRequest UID: 0x%x Key=0x%x\n",uid.iUid,key);
sl@0
   977
		}
sl@0
   978
	else
sl@0
   979
		{
sl@0
   980
		__SRVSUBSESS_TRACE1("CServerSubSession::NotifyRequest **Failure** UID: 0x%x\n",uid.iUid);
sl@0
   981
		}
sl@0
   982
#endif
sl@0
   983
sl@0
   984
	return (error == KErrNone) ? KDontCompleteMessage : error;
sl@0
   985
	}
sl@0
   986
sl@0
   987
TInt CServerSubSession::NotifyCancel(const TClientRequest& aMessage)
sl@0
   988
	{
sl@0
   989
	TUint32 key = aMessage.Int0();
sl@0
   990
sl@0
   991
#ifdef SRVSUBSESS_TRACE
sl@0
   992
	TUid uid = RepositoryUid();
sl@0
   993
sl@0
   994
	__SRVSUBSESS_TRACE2("CServerSubSession::NotifyCancel UID: 0x%x Key=0x%x\n",uid.iUid,key);
sl@0
   995
#endif
sl@0
   996
sl@0
   997
	return iNotifier.CancelRequest(key);
sl@0
   998
	}
sl@0
   999
sl@0
  1000
TInt CServerSubSession::NotifyCancelAll(const TClientRequest& /*aMessage*/)
sl@0
  1001
	{
sl@0
  1002
#ifdef SRVSUBSESS_TRACE
sl@0
  1003
	TUid uid = RepositoryUid();
sl@0
  1004
sl@0
  1005
	__SRVSUBSESS_TRACE1("CServerSubSession::NotifyCancelAll UID: 0x%x\n",uid.iUid);
sl@0
  1006
#endif
sl@0
  1007
	return iNotifier.CancelAllRequests();
sl@0
  1008
	}
sl@0
  1009
sl@0
  1010
TInt CServerSubSession::GroupNotifyRequest(const TClientRequest& aMessage)
sl@0
  1011
	{
sl@0
  1012
	TUint32 partialId = aMessage.Int0();
sl@0
  1013
	TUint32 idMask = aMessage.Int1();
sl@0
  1014
	RSettingPointerArray settings;
sl@0
  1015
	TInt error = iRepository.FindPersistentSettings(partialId, idMask, settings);
sl@0
  1016
	if (error == KErrNone)
sl@0
  1017
		{
sl@0
  1018
		TUint32 dummyErrId;
sl@0
  1019
		error = iRepository.CheckPermissions(settings, aMessage,
sl@0
  1020
			__PLATSEC_DIAGNOSTIC_STRING("CenRep: CServerSession::GroupNotifyRequest - Attempt made to register for group Notify"),ETrue,dummyErrId);
sl@0
  1021
		}
sl@0
  1022
	settings.Reset();
sl@0
  1023
	if (error != KErrNone)
sl@0
  1024
		{
sl@0
  1025
#ifdef SRVSUBSESS_TRACE
sl@0
  1026
		TUid uid = RepositoryUid();
sl@0
  1027
sl@0
  1028
		__SRVSUBSESS_TRACE3("CServerSubSession::GroupNotifyRequest **Failure** UID: 0x%x\n PartialId=0x%x Mask=0x%x\n",
sl@0
  1029
				uid.iUid,partialId,idMask);
sl@0
  1030
#endif
sl@0
  1031
sl@0
  1032
		return KErrPermissionDenied;
sl@0
  1033
		}
sl@0
  1034
sl@0
  1035
	error = iNotifier.AddRequest(partialId, idMask, aMessage);
sl@0
  1036
sl@0
  1037
#ifdef SRVSUBSESS_TRACE
sl@0
  1038
	TUid uid = RepositoryUid();
sl@0
  1039
sl@0
  1040
	if (error == KErrNone)
sl@0
  1041
		{
sl@0
  1042
		__SRVSUBSESS_TRACE3("CServerSubSession::GroupNotifyRequest UID: 0x%x PartialId=0x%x Mask=0x%x\n",
sl@0
  1043
				uid.iUid,partialId,idMask);
sl@0
  1044
		}
sl@0
  1045
	else
sl@0
  1046
		{
sl@0
  1047
		__SRVSUBSESS_TRACE3("CServerSubSession::GroupNotifyRequest **Failure** UID: 0x%x PartialId=0x%x Mask=0x%x\n",uid.iUid,
sl@0
  1048
				partialId,idMask);
sl@0
  1049
		}
sl@0
  1050
#endif
sl@0
  1051
sl@0
  1052
	return error==KErrNone ? KDontCompleteMessage : error;
sl@0
  1053
	}
sl@0
  1054
sl@0
  1055
TInt CServerSubSession::GroupNotifyCancel(const TClientRequest& aMessage)
sl@0
  1056
	{
sl@0
  1057
	TKeyFilter keyIdentifier;
sl@0
  1058
	TPckg<TKeyFilter> p(keyIdentifier);
sl@0
  1059
	aMessage.Read(0, p);
sl@0
  1060
sl@0
  1061
	RSettingPointerArray settings;
sl@0
  1062
	TInt error = iRepository.FindPersistentSettings(keyIdentifier.iPartialId, keyIdentifier.iIdMask, settings);
sl@0
  1063
	settings.Reset();
sl@0
  1064
	if (error != KErrNone)
sl@0
  1065
		{
sl@0
  1066
#ifdef SRVSUBSESS_TRACE
sl@0
  1067
		TUid uid = RepositoryUid();
sl@0
  1068
sl@0
  1069
		__SRVSUBSESS_TRACE3("CServerSubSession::GroupNotifyCancel **Failure** UID: 0x%x\n PartialId=0x%x Mask=0x%x\n",
sl@0
  1070
				uid.iUid,keyIdentifier.iPartialId, keyIdentifier.iIdMask);
sl@0
  1071
#endif
sl@0
  1072
		return error;
sl@0
  1073
		}
sl@0
  1074
sl@0
  1075
	error = iNotifier.CancelRequest(keyIdentifier.iPartialId, keyIdentifier.iIdMask);
sl@0
  1076
sl@0
  1077
#ifdef SRVSUBSESS_TRACE
sl@0
  1078
	TUid uid = RepositoryUid();
sl@0
  1079
sl@0
  1080
	if (error == KErrNone)
sl@0
  1081
		{
sl@0
  1082
		__SRVSUBSESS_TRACE3("CServerSubSession::GroupNotifyCancel UID: 0x%x PartialId=0x%x Mask=0x%x\n",
sl@0
  1083
				uid.iUid,keyIdentifier.iPartialId, keyIdentifier.iIdMask);
sl@0
  1084
		}
sl@0
  1085
	else
sl@0
  1086
		{
sl@0
  1087
		__SRVSUBSESS_TRACE3("CServerSubSession::GroupNotifyCancel **Failure** UID: 0x%x PartialId=0x%x Mask=0x%x\n",uid.iUid,
sl@0
  1088
				keyIdentifier.iPartialId, keyIdentifier.iIdMask);
sl@0
  1089
		}
sl@0
  1090
#endif
sl@0
  1091
sl@0
  1092
sl@0
  1093
	return error;
sl@0
  1094
	}
sl@0
  1095
sl@0
  1096
TInt CServerSubSession::ResetL(const TClientRequest& aMessage)
sl@0
  1097
	{
sl@0
  1098
	// individual setting reset is not yet supported in transactions
sl@0
  1099
	ASSERT(!iRepository.IsInTransaction());
sl@0
  1100
	TUint32 key = aMessage.Int0();
sl@0
  1101
	if(KErrNone != CheckPolicy(aMessage,iRepository.GetWriteAccessPolicy(key),
sl@0
  1102
				__PLATSEC_DIAGNOSTIC_STRING("CenRep: CServerSession::ResetL - Attempt made to reset a setting")))
sl@0
  1103
		return iRepository.FailTransaction(KErrPermissionDenied, key);
sl@0
  1104
sl@0
  1105
	TInt error = iRepository.ResetL(key);
sl@0
  1106
sl@0
  1107
#ifdef SRVSUBSESS_TRACE
sl@0
  1108
	TUid uid = RepositoryUid();
sl@0
  1109
sl@0
  1110
	if (error == KErrNone)
sl@0
  1111
		{
sl@0
  1112
		__SRVSUBSESS_TRACE2("CServerSubSession::ResetL UID: 0x%x Key=0x%x\n",
sl@0
  1113
				uid.iUid,key);
sl@0
  1114
		}
sl@0
  1115
	else
sl@0
  1116
		{
sl@0
  1117
		__SRVSUBSESS_TRACE2("CServerSubSession::ResetL **Failure** UID: 0x%x Key=0x%x\n",uid.iUid,key);
sl@0
  1118
		}
sl@0
  1119
#endif
sl@0
  1120
sl@0
  1121
	return error;
sl@0
  1122
	}
sl@0
  1123
sl@0
  1124
TInt CServerSubSession::ResetAllL(const TClientRequest& aMessage)
sl@0
  1125
	{
sl@0
  1126
	// factory reset operation is not yet supported in transactions
sl@0
  1127
	ASSERT(!iRepository.IsInTransaction());
sl@0
  1128
	if(KErrNone != CheckPolicy(aMessage,iRepository.GetDefaultWriteAccessPolicy(),
sl@0
  1129
				__PLATSEC_DIAGNOSTIC_STRING("CenRep: CServerSession::ResetAllL - Attempt made to reset repository")))
sl@0
  1130
		return KErrPermissionDenied;
sl@0
  1131
sl@0
  1132
	iNotifier.IdReportingOff();
sl@0
  1133
	TInt error = iRepository.ResetAllL();
sl@0
  1134
	iNotifier.IdReportingOn();
sl@0
  1135
sl@0
  1136
	if (error == KErrNone)
sl@0
  1137
		{
sl@0
  1138
		iRepository.CommitChangesL();  // temporary measure
sl@0
  1139
		}
sl@0
  1140
sl@0
  1141
#ifdef SRVSUBSESS_TRACE
sl@0
  1142
	TUid uid = RepositoryUid();
sl@0
  1143
sl@0
  1144
	if (error == KErrNone)
sl@0
  1145
		{
sl@0
  1146
		__SRVSUBSESS_TRACE1("CServerSubSession::ResetAllL UID: 0x%x\n",uid.iUid);
sl@0
  1147
		}
sl@0
  1148
	else
sl@0
  1149
		{
sl@0
  1150
		__SRVSUBSESS_TRACE1("CServerSubSession::ResetAllL **Failure** UID: 0x%x\n",uid.iUid);
sl@0
  1151
		}
sl@0
  1152
#endif
sl@0
  1153
sl@0
  1154
	return error;
sl@0
  1155
	}
sl@0
  1156
sl@0
  1157
TInt CServerSubSession::MoveL(const TClientRequest& aMessage)
sl@0
  1158
	{
sl@0
  1159
	if (iRepository.IsInActiveReadTransaction())
sl@0
  1160
		{
sl@0
  1161
		TKeyFilter keyIdentifier;
sl@0
  1162
		TPckg<TKeyFilter> p(keyIdentifier);
sl@0
  1163
		aMessage.Read(0, p);
sl@0
  1164
sl@0
  1165
#ifdef SRVSUBSESS_TRACE
sl@0
  1166
		TUid uid = RepositoryUid();
sl@0
  1167
sl@0
  1168
		__SRVSUBSESS_TRACE3("CServerSubSession::MoveL **Failure** In Transaction UID: 0x%x PartialId=0x%x Mask=0x%x\n",
sl@0
  1169
				uid.iUid,keyIdentifier.iPartialId,keyIdentifier.iIdMask);
sl@0
  1170
#endif
sl@0
  1171
sl@0
  1172
		// could not promote to read/write: fail & give the source partialKey as the error key
sl@0
  1173
		return iRepository.FailTransaction(KErrLocked, keyIdentifier.iPartialId);
sl@0
  1174
		}
sl@0
  1175
	
sl@0
  1176
	TUint32 errorKey = KUnspecifiedKey;
sl@0
  1177
	TInt result = iRepository.TransactionMoveL(aMessage, errorKey);
sl@0
  1178
sl@0
  1179
#ifdef SRVSUBSESS_TRACE
sl@0
  1180
	TUid uid = RepositoryUid();
sl@0
  1181
sl@0
  1182
	if (result == KErrNone)
sl@0
  1183
		{
sl@0
  1184
		__SRVSUBSESS_TRACE1("CServerSubSession::MoveL UID: 0x%x\n",uid.iUid);
sl@0
  1185
		}
sl@0
  1186
	else
sl@0
  1187
		{
sl@0
  1188
		__SRVSUBSESS_TRACE2("CServerSubSession::MoveL **Failure** UID: 0x%x Error=%d\n",uid.iUid,errorKey);
sl@0
  1189
		}
sl@0
  1190
#endif
sl@0
  1191
sl@0
  1192
	if (result != KErrNone && result!=KErrNotFound)
sl@0
  1193
		{
sl@0
  1194
		iRepository.FailTransaction(result, errorKey);
sl@0
  1195
		TPckg<TUint32> p(errorKey);
sl@0
  1196
		aMessage.WriteL(2, p);
sl@0
  1197
		}
sl@0
  1198
	return result;
sl@0
  1199
	}
sl@0
  1200
sl@0
  1201
TInt CServerSubSession::TransactionStart(const TClientRequest& aMessage)
sl@0
  1202
	{
sl@0
  1203
	// check if we are already in a transaction
sl@0
  1204
	TBool inTransactionAlready = iRepository.IsInTransaction();
sl@0
  1205
sl@0
  1206
	// panic client if attempting to start a transaction when already in one
sl@0
  1207
	__ASSERT_ALWAYS(!inTransactionAlready, PanicClient(EStartAlreadyInTransaction, aMessage));
sl@0
  1208
sl@0
  1209
	// if the client has been panicked then we don't want to continue.
sl@0
  1210
	// client session will already have been taken down so don't want to complete the message
sl@0
  1211
	if (inTransactionAlready)
sl@0
  1212
		{
sl@0
  1213
#ifdef SRVSUBSESS_TRACE
sl@0
  1214
		TUid uid = RepositoryUid();
sl@0
  1215
sl@0
  1216
		__SRVSUBSESS_TRACE1("CServerSubSession::TransactionStart **Failure** already in transaction UID=0x%x\n",uid.iUid);
sl@0
  1217
#endif
sl@0
  1218
sl@0
  1219
		return KDontCompleteMessage;
sl@0
  1220
		}
sl@0
  1221
sl@0
  1222
	const TInt mode = aMessage.Int0();
sl@0
  1223
sl@0
  1224
	TInt error = iRepository.StartTransaction(mode);
sl@0
  1225
sl@0
  1226
#ifdef SRVSUBSESS_TRACE
sl@0
  1227
sl@0
  1228
	TUid uid = RepositoryUid();
sl@0
  1229
sl@0
  1230
	// mode strings match transstate.h - if that is updated, this should be as well.
sl@0
  1231
	const TPtrC modeStrings[] =
sl@0
  1232
		{
sl@0
  1233
			_L("ENoTransaction"),                              // 0
sl@0
  1234
			_L("EReadTransaction"),                            // EReadBit     1
sl@0
  1235
			_L("EConcurrentReadWriteTransaction"),             // EWriteBit    2
sl@0
  1236
			_L("EReadWriteTransaction|EAllTransactionBits"),   //EReadBit | EWriteBit 3
sl@0
  1237
			_L("EFailedBit")                                   // 4
sl@0
  1238
		};
sl@0
  1239
sl@0
  1240
	if (error == KErrNone)
sl@0
  1241
		{
sl@0
  1242
		__SRVSUBSESS_TRACE3("CServerSubSession::TransactionStart UID: 0x%x Mode=%d (%S)\n",uid.iUid,mode,&modeStrings[mode]);
sl@0
  1243
		}
sl@0
  1244
	else
sl@0
  1245
		{
sl@0
  1246
		__SRVSUBSESS_TRACE3("CServerSubSession::TransactionStart **Failure** UID: 0x%x Mode=%d (%S)\n",uid.iUid,mode,&modeStrings[mode]);
sl@0
  1247
		}
sl@0
  1248
#endif
sl@0
  1249
sl@0
  1250
	return error;
sl@0
  1251
	}
sl@0
  1252
sl@0
  1253
// serves as both rollback and async cancel
sl@0
  1254
TInt CServerSubSession::TransactionCancel(const TClientRequest& /*aMessage*/)
sl@0
  1255
	{
sl@0
  1256
#ifdef SRVSUBSESS_TRACE
sl@0
  1257
	TUid uid = RepositoryUid();
sl@0
  1258
sl@0
  1259
	__SRVSUBSESS_TRACE1("CServerSubSession::TransactionCancel UID: 0x%x",uid.iUid);
sl@0
  1260
#endif
sl@0
  1261
	iRepository.CancelTransaction();
sl@0
  1262
	return KErrNone;
sl@0
  1263
	}
sl@0
  1264
sl@0
  1265
TInt CServerSubSession::TransactionCommitL(const TClientRequest& aMessage)
sl@0
  1266
	{
sl@0
  1267
	// check if we are in a transaction
sl@0
  1268
	TBool inTransaction = iRepository.IsInTransaction();
sl@0
  1269
sl@0
  1270
	// panic client if attempting to commit a transaction when we are not in one
sl@0
  1271
	__ASSERT_ALWAYS(inTransaction, PanicClient(ECommitNotInTransaction, aMessage));
sl@0
  1272
sl@0
  1273
	// if the client has been panicked then we don't want to continue.
sl@0
  1274
	// client session will already have been taken down so don't want to complete the message
sl@0
  1275
	if (!inTransaction)
sl@0
  1276
		{
sl@0
  1277
#ifdef SRVSUBSESS_TRACE
sl@0
  1278
		TUid uid = RepositoryUid();
sl@0
  1279
sl@0
  1280
		__SRVSUBSESS_TRACE1("CServerSubSession::TransactionCommitL **Failure** In Transaction UID: 0x%x TransactionKey=%d\n",uid.iUid);
sl@0
  1281
#endif
sl@0
  1282
		return KDontCompleteMessage;
sl@0
  1283
		}
sl@0
  1284
sl@0
  1285
	TUint32 keyInfo = KUnspecifiedKey;
sl@0
  1286
	TInt result = iRepository.CommitTransaction(keyInfo);
sl@0
  1287
sl@0
  1288
	TPckg<TUint32> p(keyInfo);
sl@0
  1289
	aMessage.WriteL(0, p);
sl@0
  1290
sl@0
  1291
#ifdef SRVSUBSESS_TRACE
sl@0
  1292
	TUid uid = RepositoryUid();
sl@0
  1293
sl@0
  1294
	if (result == KErrNone)
sl@0
  1295
		{
sl@0
  1296
		__SRVSUBSESS_TRACE2("CServerSubSession::TransactionCommitL UID: 0x%x TransactionKey=%d\n",uid.iUid,keyInfo);
sl@0
  1297
		}
sl@0
  1298
	else
sl@0
  1299
		{
sl@0
  1300
		__SRVSUBSESS_TRACE2("CServerSubSession::TransactionCommitL **Failure** UID: 0x%x TransactionKey=%d\n",uid.iUid,keyInfo);
sl@0
  1301
		}
sl@0
  1302
#endif
sl@0
  1303
	return result;
sl@0
  1304
	}
sl@0
  1305
sl@0
  1306
TInt CServerSubSession::DeleteRangeL(const TClientRequest& aMessage)
sl@0
  1307
	{
sl@0
  1308
	if (iRepository.IsInActiveReadTransaction())
sl@0
  1309
		{
sl@0
  1310
		// could not promote to read/write: fail & give the partialKey as the error key
sl@0
  1311
		TUint32 partialKey = aMessage.Int0();
sl@0
  1312
		return iRepository.FailTransaction(KErrLocked, partialKey);
sl@0
  1313
		}
sl@0
  1314
	TUint32 errorKey = KUnspecifiedKey;
sl@0
  1315
	TInt result = iRepository.TransactionDeleteRangeL(aMessage, errorKey);
sl@0
  1316
	if (result != KErrNone)
sl@0
  1317
		{
sl@0
  1318
		TPckg<TUint32> p(errorKey);
sl@0
  1319
		aMessage.WriteL(2, p);
sl@0
  1320
		}
sl@0
  1321
sl@0
  1322
#ifdef SRVSUBSESS_TRACE
sl@0
  1323
	TUid uid = RepositoryUid();
sl@0
  1324
	TUint32 partialKey = aMessage.Int0();
sl@0
  1325
	TUint32 keyMask    = aMessage.Int1();
sl@0
  1326
sl@0
  1327
	if (result == KErrNone)
sl@0
  1328
		{
sl@0
  1329
		__SRVSUBSESS_TRACE3("CServerSubSession::DeleteRangeL UID: 0x%x Key=0x%x Mask=0x%x\n",uid.iUid,partialKey,keyMask);
sl@0
  1330
		}
sl@0
  1331
	else
sl@0
  1332
		{
sl@0
  1333
		__SRVSUBSESS_TRACE2("CServerSubSession::DeleteRangeL **Failure** UID: 0x%x ErrorKey=%d\n",uid.iUid,errorKey);
sl@0
  1334
		}
sl@0
  1335
#endif
sl@0
  1336
sl@0
  1337
	return result;
sl@0
  1338
	}
sl@0
  1339
sl@0
  1340
TInt CServerSubSession::TransactionStateL(const TClientRequest& aMessage)
sl@0
  1341
	{
sl@0
  1342
	TInt iState = iRepository.TransactionState();
sl@0
  1343
sl@0
  1344
	TPckg<TInt> p(iState);
sl@0
  1345
	aMessage.WriteL(0, p);
sl@0
  1346
sl@0
  1347
#ifdef SRVSUBSESS_TRACE
sl@0
  1348
	TUid uid = RepositoryUid();
sl@0
  1349
sl@0
  1350
	__SRVSUBSESS_TRACE2("CServerSubSession::TransactionStateL UID: 0x%x State=%d\n",uid.iUid,iState);
sl@0
  1351
#endif
sl@0
  1352
sl@0
  1353
	return KErrNone;
sl@0
  1354
	}
sl@0
  1355
sl@0
  1356
TInt CServerSubSession::TransactionFail(const TClientRequest& aMessage)
sl@0
  1357
	{
sl@0
  1358
#ifdef SRVSUBSESS_TRACE
sl@0
  1359
	TUid uid = RepositoryUid();
sl@0
  1360
sl@0
  1361
	__SRVSUBSESS_TRACE1("CServerSubSession::TransactionFail UID: 0x%x",uid.iUid);
sl@0
  1362
#endif
sl@0
  1363
sl@0
  1364
	iRepository.FailTransaction(aMessage.Int0(), KUnspecifiedKey);
sl@0
  1365
	return KErrNone;
sl@0
  1366
	}
sl@0
  1367
sl@0
  1368
//Check the security policy against a RMessage.
sl@0
  1369
TInt CServerSubSession::CheckPolicy(const TClientRequest& msg,
sl@0
  1370
								 const TSecurityPolicy& aPolicy,
sl@0
  1371
								 const char *aDiagnostic)
sl@0
  1372
	{
sl@0
  1373
	return msg.CheckPolicy(aPolicy,aDiagnostic) ? KErrNone : KErrPermissionDenied;
sl@0
  1374
	}