Update contrib.
1 // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
18 #include "srvrepos_noc.h"
25 #ifdef SYMBIAN_BAFL_SYSUTIL
26 #include <bafl/sysutil.h>
28 #include <e32def_private.h>
31 void CServerRepository::OpenL(TUid aUid, MObserver& aObserver, TBool aFailIfNotFound)
33 iNotifier = &aObserver;
35 TServerResources::iObserver->iObservers.ReserveL(1);
37 TServerResources::iObserver->AddSharedRepositoryInfoL(aUid);
39 TRAPD( err, iRepository = TServerResources::iObserver->AccessL(aUid, aFailIfNotFound) );
46 TRAP( err, TServerResources::iObserver->AddObserverL(aUid, this) );
51 TServerResources::iObserver->RemoveSharedRepositoryInfo(aUid);
56 void CServerRepository::Close()
60 TInt index = TServerResources::iObserver->FindOpenRepository(iUid);
64 iRepository = TServerResources::iObserver->GetOpenRepository(index);
66 // cancel to ensure any read/write locks are released and transaction settings cleaned up
71 TServerResources::iObserver->RemoveObserver(iUid, this, index);
77 Notify about all changed keys stored in the specified reference to the
80 @param aRstRepos The reference to CRestoredRepository which holds the list
83 void CServerRepository::RestoreNotify(const CRestoredRepository& aRstRepos)
85 const RArray<TUint32>& keys = aRstRepos.ChangedKeys();
86 TInt count=keys.Count();
87 for(TInt i = 0; i < count; i++)
89 iRepository->Notify(keys[i]);
94 Attempt to reset a single key to it's value in the file in the given location. Routine
95 attempts to find a .cre file first. If ( and only if ) a cre file doesn't exist the
96 routine attempts to find a txt file. In the presence of multi rofs, it needs to perform
97 merging of all the rom keyspaces first before doing a reset, hence we are not able to perform
98 the reading line by line for efficiency purpose.
100 #ifdef SYMBIAN_CENTREP_SUPPORT_MULTIROFS
101 void CServerRepository::ResetFromIniFileL(TUint32 aId,
102 CIniFileIn::TIniFileOpenMode aIniFileOpenMode,
107 CSharedRepository* rep=NULL;
108 // Attempt to reset key to the aLocation if exist
109 //dont fail if repository not found
110 TServerResources::iObserver->LoadRepositoryLC(iRepository->Uid(),EFalse,rep,aIniFileOpenMode);
114 TServerSetting* s = rep->GetSettings().Find(aId);
118 // Mark the setting as default again
120 iRepository->ResetAndPersistL(*s);
121 s->SetAccessPolicy(GetFallbackAccessPolicy(aId));
124 CleanupStack::PopAndDestroy(rep);
128 Attempt to reset a single key to it's value in the file in the given location. Routine
129 attempts to find a .cre file first. If ( and only if ) a cre file doesn't exist the
130 routine attempts to find a txt file.
131 Note that it would be possible to use LoadRepositoryLC here but for the txt file
132 that would take longer. This is because in LoadRepositoryLC the txt file is
133 completely processed. The Reset specific txt file opening code below is quicker because
134 it is just attempting to find the reset key.
136 void CServerRepository::ResetFromIniFileL(TUint32 aId,
137 TCentRepLocation aLocation,
142 // Attempt to reset key to value in cre file if it exists
144 // Attempt to create a temporary repository from the cre file in aLocation
145 CSharedRepository* rep = CSharedRepository::NewL(iRepository->Uid());
146 CleanupStack::PushL(rep);
147 TInt err = rep->CreateRepositoryFromCreFileL(aLocation);
149 // Search for aId in the temporary repository
150 if (err!=KErrNotFound)
152 // Note that for all errors except KErrNotFound code leaves and doesn't
153 // attempt to look for txt file. This is intentional. Code does not
154 // attempt to support coexisting cre and txt files.
155 User::LeaveIfError(err);
157 // Search for aId in the temporary repository
158 TServerSetting* s = rep->GetSettings().Find(aId);
162 // Mark the setting as default again
164 iRepository->ResetAndPersistL(*s);
165 s->SetAccessPolicy(GetFallbackAccessPolicy(aId));
168 CleanupStack::PopAndDestroy(rep);
173 CleanupStack::PopAndDestroy(rep);
176 HBufC* fileName(NULL);
177 TServerResources::CreateRepositoryFileNameLC(fileName,iRepository->Uid(),aLocation,EIni);
179 CIniFileIn* inputFile = 0;
180 TInt r = CIniFileIn::NewLC(TServerResources::iFs,inputFile,*fileName);
183 //we don't want to read this stuff again... just skip over to get to settings!
184 inputFile->SkipOwnerSectionL() ;
185 inputFile->SkipTimeStampSectionL() ;
186 inputFile->SkipDefaultMetaSectionL() ;
187 inputFile->SkipPlatSecSectionL();
189 // Find start of Main section
190 inputFile->FindMainSectionL();
193 TBool singleMetaFound=EFalse;
194 TBool singleReadPolicyFound=EFalse;
195 TBool singleWritePolicyFound=EFalse;
196 TSecurityPolicy singleReadPolicy;
197 TSecurityPolicy singleWritePolicy;
199 // Note that calling CIniFile::ReadSettingL causes the single policy ( if it exists ) to be read from the
200 // file being reset to, but doesn't update the single policy array, which is not required in the reset case.
201 while((r=inputFile->ReadSettingL(s,singleReadPolicy, singleWritePolicy, singleReadPolicyFound, singleWritePolicyFound, singleMetaFound)) == KErrNone)
203 iRepository->SetMetaDataOnRead( s, singleMetaFound);
206 // Mark the setting as default again
208 iRepository->ResetAndPersistL(s);
209 s.SetAccessPolicy(GetFallbackAccessPolicy(aId));
218 CleanupStack::PopAndDestroy(inputFile); // inputFile
219 CleanupStack::PopAndDestroy(fileName); // filename
224 TInt CServerRepository::ResetL(TUint32 aId)
226 // not yet supported in transactions
227 ASSERT(!IsInTransaction());
229 // if setting has not changed, there nothing to do
230 TServerSetting *targetSetting = GetSetting(aId) ;
234 if ((targetSetting->Meta() & KMetaDefaultValue))
240 TInt error = KErrNone;
241 TBool keyReset = EFalse;
243 // Check for default value in any installed file first
244 #ifdef SYMBIAN_CENTREP_SUPPORT_MULTIROFS
245 ResetFromIniFileL(aId, CIniFileIn::EInstallOnly, keyReset);
247 ResetFromIniFileL(aId, EInstall, keyReset);
252 // Either we couldn't find a matching key or
253 // there wasn't an installed file - try for a ROM
255 #ifdef SYMBIAN_CENTREP_SUPPORT_MULTIROFS
256 ResetFromIniFileL(aId, CIniFileIn::ERomOnly, keyReset);
258 ResetFromIniFileL(aId, ERom, keyReset);
263 // No default value found in install or ROM file
265 error = iRepository->DeleteAndPersist(aId);
271 void CServerRepository::CacheRomVersionL(const TDesC& aFilename,TDesC8& aVersion)
276 _LIT(KTmpPersistedRomVersionFile, "_:\\private\\10202be9\\romversion\\romversion_info.tmp");
277 TBuf<KMaxFileName> tmpPersistedRomVersionFileName;
279 tmpPersistedRomVersionFileName.Copy(KTmpPersistedRomVersionFile);
280 tmpPersistedRomVersionFileName[0] = RFs::GetSystemDriveChar();
282 //Create a new empty tmp file.
283 err = file.Replace( TServerResources::iFs, tmpPersistedRomVersionFileName,
284 EFileWrite | EFileStreamText );
291 err = file.Write(aVersion);
300 User::LeaveIfError(TServerResources::iFs.Replace(tmpPersistedRomVersionFileName,aFilename));
304 #ifdef SYMBIAN_BAFL_SYSUTIL
305 void CServerRepository::CheckROMReflashL()
309 TBuf16<KSysUtilVersionTextLength> version;
310 TBuf8<KSysUtilVersionTextLength*2> persistedCopyOfRomVersion;
311 _LIT(KPersistedRomVersionFile, "_:\\private\\10202be9\\romversion\\romversion_info.txt");
312 TBuf<KMaxFileName> persistedRomVersionFileName;
313 persistedRomVersionFileName.Copy(KPersistedRomVersionFile);
314 persistedRomVersionFileName[0] = RFs::GetSystemDriveChar();
316 TBuf8<KSysUtilVersionTextLength*2> eightBitVersion;
319 if ((err = SysUtil::GetSWVersion(version)) == KErrNone )
321 eightBitVersion.Copy(version);//Converts to 8bit
322 err = TServerResources::GetTextFromFile(persistedRomVersionFileName,persistedCopyOfRomVersion);
325 if(eightBitVersion == persistedCopyOfRomVersion)//No rom update has occurred do nothing
329 else //rom update detected process persists files.
331 //Call function with flag set to true causing Reflash merging activity.
332 ProcessPersistsRepositoriesL(ECenRepReflash);
336 //create the persisted rom version file
337 //if the persists files are successfully processed
338 //if the persists file doesnt exist
339 //if the persists file is corrupt
340 //if the persists file is corrupt in such a way that its contents are too large.
341 if (err == KErrNone || err == KErrNotFound || err == KErrPathNotFound || err == KErrCorrupt || err == KErrTooBig)
343 CServerRepository::CacheRomVersionL(persistedRomVersionFileName,eightBitVersion);
357 void CServerRepository::RFSAllRepositoriesL()
359 ProcessPersistsRepositoriesL(ECenRepReset);
362 void CServerRepository::ProcessPersistsRepositoriesL(TPersistedRepActions aRomFlashOrReset)
364 // Read contents of persist directory to get a list of repositories
365 TPtr dataDirectory = TServerResources::iDataDirectory->Des();
367 CleanupClosePushL(persistDir);
369 User::LeaveIfError(persistDir.Open(TServerResources::iFs, dataDirectory, KEntryAttNormal));
371 TEntryArray dirEntries;
372 TInt readError = KErrNone;
374 while (readError != KErrEof)
376 readError = persistDir.Read(dirEntries);
378 if(readError != KErrNone && readError != KErrEof)
380 User::Leave(readError);
384 const TInt dirCount = dirEntries.Count();
385 for (TInt i=0; i<dirCount; i++)
387 // Attempt to extract a repository UID from directory entry
389 if (!TServerResources::GetUid(const_cast<TEntry&>(dirEntries[i]), uid))
391 CSessionNotifier notifier;
393 // Create shared repository
394 CServerRepository *repository = new(ELeave) CServerRepository;
395 CleanupStack::PushL(repository);
397 repository->OpenL(uid, notifier);
399 //Handle ROM re-flash
401 if(aRomFlashOrReset==ECenRepReflash)
403 TRAP(err, repository->HandleReflashofRepositoryL());
405 else if(aRomFlashOrReset==ECenRepReset)
408 TRAP(err,repository->RFSRepositoryL());
412 if(err == KErrNoMemory)
415 User::LeaveNoMemory();
418 {//Dont stop processing the rest of the persisted repositories becos one has a problem.
419 __CENTREP_TRACE1("CENTREP: CServerRepository::ProcessPersistsRepositoriesL - Error = %d", err);
423 // delete repository.
425 CleanupStack::PopAndDestroy(repository);
431 CleanupStack::PopAndDestroy(&persistDir);
434 TInt CServerRepository::RFSRepositoryL()
436 // for each key in combined ROM/Install restore
437 TUid uid = iRepository->Uid();
439 CSharedRepository* defaultRepository = 0;
442 //Determine if ROM and Install files exist
443 TBool romExists=TServerResources::RomFileExistsL(uid);
444 TBool installExists=TServerResources::InstallFileExistsL(uid);
448 // Create a rep using the ROM file
449 TServerResources::iObserver->LoadRepositoryLC(uid, ETrue, defaultRepository, CIniFileIn::ERomOnly);
453 CSharedRepository *installRep = 0;
454 // Create install rep for merging
455 TServerResources::iObserver->LoadRepositoryLC(uid, ETrue, installRep, CIniFileIn::EInstallOnly);
457 // If install and ROM exist create a merged rep to Reset against
458 defaultRepository->MergeL(*installRep, ESWIUpgradeMerge);
460 //pop and destroy install repository as this has now been
461 //merged with repository
462 CleanupStack::PopAndDestroy(installRep);
466 else if(installExists)
468 // Reset against install repository if only the install file exists
469 TServerResources::iObserver->LoadRepositoryLC(uid, ETrue, defaultRepository, CIniFileIn::EInstallOnly);
473 // The repository must exist in the ROM or install directory (or both).
474 ASSERT(romExists || installExists);
475 // Reset against empty repository if neither ROM or install file are found
476 defaultRepository = CSharedRepository::NewL(uid);
477 CleanupStack::PushL(defaultRepository);
480 for(TInt i = 0; i < iRepository->GetSettings().Count(); i++)
482 // setting in persists
483 TServerSetting* persistedSetting = &iRepository->GetSettings()[i];
485 // If the clean is set on setting in the persist, nothing to do
486 if (persistedSetting->Meta() & KMetaDefaultValue)
491 TUint32 key = persistedSetting->Key();
492 // setting in ROM/install
493 TServerSetting* defaultSetting = defaultRepository->GetSettings().Find(key);
497 if ((defaultSetting->Meta() & KMetaRfsValue))
499 iRepository->ResetNoPersistL(*defaultSetting);
501 //remove from Reset repository
502 defaultRepository->GetSettings().Remove(key);
506 // if setting has no default value (i.e. doesn't exist in any default file but RFS meta is
507 // set (using pre-set default range meta), delete the setting
508 if ((persistedSetting->Meta() & KMetaRfsValue))
510 iRepository->DeleteNoPersist(key);
514 // search for remaining items in default file, because previous loop has already removed all items
515 // from the persists file
516 for(TInt i = 0; i < defaultRepository->GetSettings().Count(); i++)
518 TServerSetting* defaultSetting = &defaultRepository->GetSettings()[i];
520 if ((defaultSetting->Meta() & KMetaRfsValue) != KMetaRfsValue)
524 iRepository->ResetNoPersistL(*defaultSetting);
528 iRepository->CommitChangesL();
530 CleanupStack::PopAndDestroy(defaultRepository);
536 TInt CServerRepository::HandleReflashofRepositoryL()
538 // for each key in persists repository
539 TUid uid = iRepository->Uid();
541 CSharedRepository* defaultRepository = 0;
543 //Determine if ROM and Install files exist
544 TBool romExists=TServerResources::RomFileExistsL(uid);
545 TBool installExists=TServerResources::InstallFileExistsL(uid);
549 // Create a rep using the ROM file
550 TServerResources::iObserver->LoadRepositoryLC(uid, ETrue, defaultRepository, CIniFileIn::ERomOnly);
552 if(installExists)//Then create a merged repository of rom and install settings
554 CSharedRepository *installRep = 0;
555 // Create install rep for merging
556 TServerResources::iObserver->LoadRepositoryLC(uid, ETrue, installRep, CIniFileIn::EInstallOnly);
558 // If install and ROM exist create a merged rep to Reset against
559 defaultRepository->MergeL(*installRep, ESWIUpgradeMerge);
561 //pop and destroy install repository as this has now been
562 //merged with the rom repository
563 CleanupStack::PopAndDestroy(installRep);
566 else if(installExists)//There was no ROM repository just an install repository
568 // Reset against install repository if only the install file exists
569 TServerResources::iObserver->LoadRepositoryLC(uid, ETrue, defaultRepository, CIniFileIn::EInstallOnly);
571 else //If rom file and install files have been removed for this repository
572 {//then remove the persists file.
573 TServerResources::DeleteCentrepFileL(uid, EPersists, ECre);
574 TServerResources::DeleteCentrepFileL(uid, EPersists, EIni);
578 // Merge rom and/or install with persists repository
579 iRepository->MergeL(*defaultRepository, ERomFlash);
582 iRepository->CommitChangesL();
584 CleanupStack::PopAndDestroy(defaultRepository);
590 TInt CServerRepository::ResetAllL()
592 // not yet supported in transactions
593 ASSERT(!IsInTransaction());
594 // fail all sessions' transactions first
595 iRepository->FailAllTransactions(/*aExcludeTransactor*/NULL);
597 TUid uid = iRepository->Uid();
601 // Create a rep using the ROM file
602 CSharedRepository* rep = 0;
603 TBool romExists=TServerResources::RomFileExistsL(uid);
606 TServerResources::iObserver->LoadRepositoryLC(uid, ETrue, rep, CIniFileIn::ERomOnly);
609 // Create install rep for merging
610 CSharedRepository *installRep = 0;
611 TBool installExists=TServerResources::InstallFileExistsL(uid);
614 TServerResources::iObserver->LoadRepositoryLC(uid, ETrue, installRep, CIniFileIn::EInstallOnly);
618 if( romExists && installExists)
620 // If install and ROM exist create a merged rep to Reset against
621 rep->MergeL(*installRep, ESWIUpgradeMerge);
622 err=iRepository->ResetAllNoPersistL(*rep);
623 CleanupStack::PopAndDestroy(installRep);
624 CleanupStack::PopAndDestroy(rep);
629 err=iRepository->ResetAllNoPersistL(*rep);
630 CleanupStack::PopAndDestroy(rep);
632 else if(installExists)
634 // Reset against install
635 err=iRepository->ResetAllNoPersistL(*installRep);
636 CleanupStack::PopAndDestroy(installRep);
640 // Reset against empty repository
641 rep = CSharedRepository::NewL(uid);
642 CleanupStack::PushL(rep);
643 err=iRepository->ResetAllNoPersistL(*rep);
644 CleanupStack::PopAndDestroy(rep);
650 // Handle install directory file update.
651 void CServerRepository::HandleSWIUpdateL(TUid aUid, TTime aModified, CSessionNotifier &aNotifier)
653 // A file create or update has just occurred in the SWI directory.
654 // Need to check if this is a new install.
656 if(TServerResources::PersistsFileExistsL(aUid) ||
657 TServerResources::RomFileExistsL(aUid))
659 // Create a rep using the ROM or persists file
660 OpenL(aUid, aNotifier);
661 if(iRepository->IsTransactionActive())
663 // Fail transactions on any currently open session
664 iRepository->FailAllTransactions(NULL);
667 // Create install rep for merging
668 CSharedRepository *installRep = 0;
669 TRAPD( err, TServerResources::iObserver->LoadRepositoryLC(aUid, ETrue, installRep, CIniFileIn::EInstallOnly); CleanupStack::Pop(installRep) );
674 TRAP( err, iRepository->HandleUpdateMergeL(aModified, *installRep) );
676 if (installRep!=NULL)
681 User::LeaveIfError(err);
683 else // No ROM or persists
685 // Create install rep for persisting
686 OpenL(aUid, aNotifier);
687 TRAPD(err, iRepository->CommitChangesL());
689 User::LeaveIfError(err);
694 // Handle install directory file delete
695 void CServerRepository::HandleSWIDeleteL(TUid aUid, CSessionNotifier &aNotifier)
697 // A file delete has just occurred in the SWI directory. If there is no ROM file
698 // this is a complete uninstall, so delete persists file.Otherwise, do downgrade
701 if(TServerResources::RomFileExistsL(aUid)) // ROM file, this is a downgrade uninstall
703 if(!TServerResources::PersistsFileExistsL(aUid))
705 // If we are downgrading the ROM, there should be a persists file because the
706 // original upgrade should have created one.
707 // However if there isn't a persists file, there's nothing to do, so just return
711 // Create a rep using the persists file
712 OpenL(aUid, aNotifier);
713 if(iRepository->IsTransactionActive())
715 // Fail transactions on any currently open session
716 iRepository->FailAllTransactions(NULL);
719 // Create ROM rep for merging
720 CSharedRepository *romRep = 0;
721 TRAPD( err, TServerResources::iObserver->LoadRepositoryLC(aUid, ETrue, romRep, CIniFileIn::ERomOnly); CleanupStack::Pop(romRep) );
726 TRAP( err, iRepository->HandleDeleteMergeL(*romRep) );
733 User::LeaveIfError(err);
735 else // No ROM file, this is a complete uninstall
737 if(TServerResources::PersistsFileExistsL(aUid))
739 TServerResources::DeleteCentrepFileL(aUid, EPersists, ECre);
741 // Check if the repository was open
742 TInt i = TServerResources::iObserver->FindOpenRepository(aUid);
744 // If repository is open, fail all transactions
747 OpenL(aUid, aNotifier);
748 if(iRepository->IsTransactionActive())
750 // Fail transactions on any currently open session
751 iRepository->FailAllTransactions(NULL);
753 iRepository->ResetContent();
760 void CServerRepository::StoreRepositoryContentsL(CStreamStore& aStore, TStreamId & aSettingStreamId, TStreamId & aDeletedSettingsStreamId) const
762 StoreRepositorySettingValuesL(aStore, aSettingStreamId); // Stores current repository setting values
764 RStoreWriteStream outStream;
765 aDeletedSettingsStreamId = outStream.CreateLC(aStore); // Creates the write for settings stream
766 iRepository->WriteDeletedSettingsStream(outStream) ;
767 outStream.CommitL(); // Commits the stream
768 CleanupStack::PopAndDestroy(&outStream); // Performs cleanup on the write stream object
771 void CServerRepository::StoreRepositorySettingValuesL(CStreamStore& aStore, TStreamId & aSettingStreamId) const
773 RStoreWriteStream outStream;
774 aSettingStreamId = outStream.CreateLC(aStore); // Creates the write stream
775 iRepository->WriteBackupStream(outStream); // Only care about repository contents.
776 outStream.CommitL(); // Commits the stream
777 CleanupStack::PopAndDestroy(&outStream); // Performs cleanup on the write stream object
780 void CServerRepository::RestoreRepositoryContentsL(CStreamStore& aStore, TStreamId aSettingStreamId, TStreamId aDeletedSettingsStreamId, CRestoredRepository& aRstRepos)
782 RestoreRepositorySettingValuesL(aStore, aSettingStreamId, aRstRepos);
784 RStoreReadStream inStream;
785 // If the backup contains a list of deleted settings read them in and apply them.
786 if (aDeletedSettingsStreamId != KNullStreamId)
788 inStream.OpenLC(aStore, aDeletedSettingsStreamId); // Creates read stream for deleted settings (if available)
790 TCardinality numDeletedSettings ;
791 inStream >> numDeletedSettings ;
793 for (TInt i = 0; i < numDeletedSettings; i++)
795 TUint32 settingToDelete ;
796 inStream >> settingToDelete ;
797 TInt err = iRepository->DeleteNoPersist(settingToDelete) ;
798 // Add the deleted key to the restored repository if it has existed before being deleted.
799 // If it has not existed before being deleted, we do not add it to the list because nothing
803 aRstRepos.AddKeyL(settingToDelete);
806 CleanupStack::PopAndDestroy(&inStream); // Perform cleanup on the read stream object
811 void CServerRepository::RestoreRepositorySettingValuesL(CStreamStore& aStore, TStreamId aSettingStreamId, CRestoredRepository& aRstRepos)
813 RStoreReadStream inStream;
814 inStream.OpenLC(aStore, aSettingStreamId); // Creates the write stream
815 iRepository->InternalizeL(inStream, aRstRepos); // Only care about repository contents.
816 CleanupStack::PopAndDestroy(&inStream); // Perform cleanup on the read stream object
819 static void CancelTransactionCleanupOperation(TAny* aRepository)
821 static_cast<CServerRepository*>(aRepository)->CancelTransaction();
824 // So CancelTransaction is called in case of Leave. Must pop with CleanupStack::Pop() or similar
825 void CServerRepository::CleanupCancelTransactionPushL()
827 CleanupStack::PushL(TCleanupItem(CancelTransactionCleanupOperation, this));
832 Check the range of security policies against RMessage
834 KErrNone if read access policies of all settings in array pass,
835 KErrPermissionDenied if any single policy fails.
837 TInt CServerRepository::CheckPermissions(RSettingPointerArray& aSettings, const TClientRequest& aMessage, const char* aDiagnostic, TBool aReadPolicy,TUint32& aErrId)
839 TInt error = KErrNone;
840 TInt numSettings = aSettings.Count();
841 for (TInt i = 0; i < numSettings; i++)
843 ASSERT(aSettings[i]);
844 const TServerSetting& setting = *aSettings[i];
847 if (!aMessage.CheckPolicy(GetReadAccessPolicy(setting),aDiagnostic))
849 aErrId=setting.Key();
850 error = KErrPermissionDenied;
856 if (!aMessage.CheckPolicy(GetWriteAccessPolicy(setting),aDiagnostic))
858 aErrId=setting.Key();
859 error = KErrPermissionDenied;
867 TInt CServerRepository::TransactionDeleteRangeL(const TClientRequest& aMessage, TUint32& aErrorKey)
869 // all write operations now done in a transaction
870 ASSERT(IsInActiveReadWriteTransaction());
871 TInt error = KErrNone;
872 aErrorKey = KUnspecifiedKey;
874 TUint32 partialKey = aMessage.Int0();
875 TUint32 keyMask = aMessage.Int1();
877 RSettingPointerArray settingsToDelete;
878 CleanupClosePushL(settingsToDelete);
879 error = FindSettings(partialKey, keyMask, settingsToDelete);
880 if (error==KErrNoMemory)
881 User::LeaveNoMemory();
883 //perform write security check first
884 error=CheckPermissions(settingsToDelete,aMessage,__PLATSEC_DIAGNOSTIC_STRING("CenRep: CServerRepository::DeleteRangeL - Attempt made to delete a setting"),EFalse,aErrorKey);
888 TRAP(error,DeleteSettingsRangeL(settingsToDelete,partialKey,aErrorKey));
889 if (error==KErrNoMemory)
890 User::LeaveNoMemory();
892 CleanupStack::PopAndDestroy(&settingsToDelete);
894 if ((error != KErrNone) && (error != KErrNotFound))
896 FailTransaction(error, aErrorKey);
901 TInt CServerRepository::TransactionMoveL(const TClientRequest& aMessage, TUint32& aErrorKey)
903 // all write operations now done in a transaction
904 ASSERT(IsInActiveReadWriteTransaction());
905 //read the source and target partial key
906 TKeyFilter sourceKeyIdentifier;
907 TPckg<TKeyFilter> pSource(sourceKeyIdentifier);
908 aMessage.Read(0, pSource);
910 TKeyFilter targetKeyIdentifier;
911 TPckg<TKeyFilter> pTarget(targetKeyIdentifier);
912 aMessage.Read(1, pTarget);
914 TUint32 sourceToTarget = (sourceKeyIdentifier.iPartialId & sourceKeyIdentifier.iIdMask) ^ (targetKeyIdentifier.iPartialId & targetKeyIdentifier.iIdMask);
915 if (sourceToTarget==0)
920 //Need to get the list of source settings to perform some security policy check
921 RSettingPointerArray sourceSettings;
922 CleanupClosePushL(sourceSettings);
923 TInt error=FindSettings(sourceKeyIdentifier.iPartialId & sourceKeyIdentifier.iIdMask, sourceKeyIdentifier.iIdMask, sourceSettings);
925 //dont fail transaction if source settings is empty
926 if ((error == KErrNone) && (sourceSettings.Count() == 0))
928 error = KErrNotFound;
929 aErrorKey = sourceKeyIdentifier.iPartialId;
930 CleanupStack::PopAndDestroy(&sourceSettings);
931 TPckg<TUint32> p(aErrorKey);
932 aMessage.WriteL(2, p);
938 aErrorKey = sourceKeyIdentifier.iPartialId;
939 CleanupStack::PopAndDestroy(&sourceSettings);
943 //Now validate against the security policy before doing the settings move
944 error=CheckMovePermissions(sourceSettings,aMessage,sourceToTarget,aErrorKey);
947 CleanupStack::PopAndDestroy(&sourceSettings);
951 error =MoveL(sourceKeyIdentifier.iPartialId,targetKeyIdentifier.iPartialId,sourceKeyIdentifier.iIdMask,aErrorKey, sourceSettings);
952 CleanupStack::PopAndDestroy(&sourceSettings);
956 void CServerRepository::LoadIniRepL(CIniFileIn::TIniFileOpenMode aMode)
960 CSharedRepository *rep = NULL;
961 TServerResources::iObserver->LoadRepositoryLC(iUid, ETrue, rep, aMode);
967 TBool CServerRepository::GetMetaFromIni(TUint32 aKey, TUint32& aMeta)
969 // Note: cannot use iRepository even if
970 // iRepository->iSettings.IsDefault() is true.
971 // The flag is not updated on TransactionCommit.
975 TRAP(err, LoadIniRepL(CIniFileIn::EInstallOnly));
978 TRAP(err,LoadIniRepL(CIniFileIn::ERomOnly));
987 TServerSetting* s = iIniRep->GetSettings().Find(aKey);
997 void CServerRepository::RestoreInstallRepositoryL(TUid aUid, CStreamStore& aStore, TStreamId& aSettingStreamId, CRestoredRepository& aRstRepos)
999 iRepository = CSharedRepository::NewL(aUid);
1000 CleanupStack::PushL(iRepository);
1002 RestoreRepositorySettingValuesL(aStore, aSettingStreamId, aRstRepos);
1003 CommitChangesL(EInstall);
1004 CleanupStack::PopAndDestroy(iRepository);
1008 void CServerRepository::BackupInstallRepositoryL(TUid aUid, CStreamStore& aStore, TStreamId& aSettingStreamId)
1010 TServerResources::iObserver->LoadRepositoryLC(aUid, EFalse, iRepository, CIniFileIn::EInstallOnly);
1012 StoreRepositorySettingValuesL(aStore, aSettingStreamId);
1013 CleanupStack::PopAndDestroy(iRepository);
1017 TInt CServerRepository::CheckAccessPolicyBeforeMoving(const TClientRequest& aMessage, const TServerSetting* aSourceSetting,
1018 TUint32 aSourceKey, const TServerSetting* aTargetSetting, TUint32 aTargetKey, TUint32& aErrorKey)
1020 TInt error = KErrNone;
1022 if (aTargetSetting && !aTargetSetting->IsDeleted())
1024 error=KErrAlreadyExists;
1025 aErrorKey=aTargetKey;
1028 if (!aMessage.CheckPolicy(GetReadAccessPolicy(*aSourceSetting),
1029 __PLATSEC_DIAGNOSTIC_STRING("CenRep: CServerRepository::MoveL - Attempt made to read a setting")))
1031 error = KErrPermissionDenied;
1032 aErrorKey = aSourceKey;
1034 else if (!aMessage.CheckPolicy(GetWriteAccessPolicy(*aSourceSetting),
1035 __PLATSEC_DIAGNOSTIC_STRING("CenRep: CServerRepository::MoveL - Attempt made to delete a setting")))
1037 error = KErrPermissionDenied;
1038 aErrorKey = aSourceKey;
1040 else if (error == KErrAlreadyExists)
1042 // set error to KErrPermissionDenied in preference to KErrAlreadyExists
1043 if (!aMessage.CheckPolicy(GetWriteAccessPolicy(*aTargetSetting),
1044 __PLATSEC_DIAGNOSTIC_STRING("CenRep: CServerRepository::MoveL - Attempt made to create a setting")))
1046 error = KErrPermissionDenied;
1047 aErrorKey = aTargetKey;
1050 else if (!aMessage.CheckPolicy(GetFallbackWriteAccessPolicy(aTargetKey),
1051 __PLATSEC_DIAGNOSTIC_STRING("CenRep: CServerRepository::MoveL - Attempt made to create a setting")))
1053 error = KErrPermissionDenied;
1054 aErrorKey = aTargetKey;