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 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#include "panic.h"
|
sl@0
|
17 |
#include "shrepos.h"
|
sl@0
|
18 |
#include "srvrepos_noc.h"
|
sl@0
|
19 |
#include "srvres.h"
|
sl@0
|
20 |
#include "cachemgr.h"
|
sl@0
|
21 |
#include "sessnotf.h"
|
sl@0
|
22 |
#include "srvPerf.h"
|
sl@0
|
23 |
#include "srvreqs.h"
|
sl@0
|
24 |
#include "rstrepos.h"
|
sl@0
|
25 |
#ifdef SYMBIAN_BAFL_SYSUTIL
|
sl@0
|
26 |
#include <bafl/sysutil.h>
|
sl@0
|
27 |
#endif
|
sl@0
|
28 |
#include <e32def_private.h>
|
sl@0
|
29 |
|
sl@0
|
30 |
|
sl@0
|
31 |
void CServerRepository::OpenL(TUid aUid, MObserver& aObserver, TBool aFailIfNotFound)
|
sl@0
|
32 |
{
|
sl@0
|
33 |
iNotifier = &aObserver;
|
sl@0
|
34 |
|
sl@0
|
35 |
TServerResources::iObserver->iObservers.ReserveL(1);
|
sl@0
|
36 |
|
sl@0
|
37 |
TServerResources::iObserver->AddSharedRepositoryInfoL(aUid);
|
sl@0
|
38 |
|
sl@0
|
39 |
TRAPD( err, iRepository = TServerResources::iObserver->AccessL(aUid, aFailIfNotFound) );
|
sl@0
|
40 |
|
sl@0
|
41 |
//store uid
|
sl@0
|
42 |
iUid = aUid;
|
sl@0
|
43 |
|
sl@0
|
44 |
if (err == KErrNone)
|
sl@0
|
45 |
{
|
sl@0
|
46 |
TRAP( err, TServerResources::iObserver->AddObserverL(aUid, this) );
|
sl@0
|
47 |
}
|
sl@0
|
48 |
|
sl@0
|
49 |
if (err != KErrNone)
|
sl@0
|
50 |
{
|
sl@0
|
51 |
TServerResources::iObserver->RemoveSharedRepositoryInfo(aUid);
|
sl@0
|
52 |
User::Leave(err);
|
sl@0
|
53 |
}
|
sl@0
|
54 |
}
|
sl@0
|
55 |
|
sl@0
|
56 |
void CServerRepository::Close()
|
sl@0
|
57 |
{
|
sl@0
|
58 |
iRepository = NULL;
|
sl@0
|
59 |
|
sl@0
|
60 |
TInt index = TServerResources::iObserver->FindOpenRepository(iUid);
|
sl@0
|
61 |
|
sl@0
|
62 |
if (index>=0)
|
sl@0
|
63 |
{
|
sl@0
|
64 |
iRepository = TServerResources::iObserver->GetOpenRepository(index);
|
sl@0
|
65 |
}
|
sl@0
|
66 |
// cancel to ensure any read/write locks are released and transaction settings cleaned up
|
sl@0
|
67 |
|
sl@0
|
68 |
CancelTransaction();
|
sl@0
|
69 |
|
sl@0
|
70 |
|
sl@0
|
71 |
TServerResources::iObserver->RemoveObserver(iUid, this, index);
|
sl@0
|
72 |
|
sl@0
|
73 |
iNotifier = NULL;
|
sl@0
|
74 |
}
|
sl@0
|
75 |
|
sl@0
|
76 |
/**
|
sl@0
|
77 |
Notify about all changed keys stored in the specified reference to the
|
sl@0
|
78 |
CRestoredRepository.
|
sl@0
|
79 |
|
sl@0
|
80 |
@param aRstRepos The reference to CRestoredRepository which holds the list
|
sl@0
|
81 |
of the changed keys.
|
sl@0
|
82 |
*/
|
sl@0
|
83 |
void CServerRepository::RestoreNotify(const CRestoredRepository& aRstRepos)
|
sl@0
|
84 |
{
|
sl@0
|
85 |
const RArray<TUint32>& keys = aRstRepos.ChangedKeys();
|
sl@0
|
86 |
TInt count=keys.Count();
|
sl@0
|
87 |
for(TInt i = 0; i < count; i++)
|
sl@0
|
88 |
{
|
sl@0
|
89 |
iRepository->Notify(keys[i]);
|
sl@0
|
90 |
}
|
sl@0
|
91 |
}
|
sl@0
|
92 |
|
sl@0
|
93 |
/**
|
sl@0
|
94 |
Attempt to reset a single key to it's value in the file in the given location. Routine
|
sl@0
|
95 |
attempts to find a .cre file first. If ( and only if ) a cre file doesn't exist the
|
sl@0
|
96 |
routine attempts to find a txt file. In the presence of multi rofs, it needs to perform
|
sl@0
|
97 |
merging of all the rom keyspaces first before doing a reset, hence we are not able to perform
|
sl@0
|
98 |
the reading line by line for efficiency purpose.
|
sl@0
|
99 |
*/
|
sl@0
|
100 |
#ifdef SYMBIAN_CENTREP_SUPPORT_MULTIROFS
|
sl@0
|
101 |
void CServerRepository::ResetFromIniFileL(TUint32 aId,
|
sl@0
|
102 |
CIniFileIn::TIniFileOpenMode aIniFileOpenMode,
|
sl@0
|
103 |
TBool& aKeyFound)
|
sl@0
|
104 |
{
|
sl@0
|
105 |
aKeyFound=EFalse;
|
sl@0
|
106 |
|
sl@0
|
107 |
CSharedRepository* rep=NULL;
|
sl@0
|
108 |
// Attempt to reset key to the aLocation if exist
|
sl@0
|
109 |
//dont fail if repository not found
|
sl@0
|
110 |
TServerResources::iObserver->LoadRepositoryLC(iRepository->Uid(),EFalse,rep,aIniFileOpenMode);
|
sl@0
|
111 |
|
sl@0
|
112 |
if (rep)
|
sl@0
|
113 |
{
|
sl@0
|
114 |
TServerSetting* s = rep->GetSettings().Find(aId);
|
sl@0
|
115 |
if(s)
|
sl@0
|
116 |
{
|
sl@0
|
117 |
aKeyFound=ETrue;
|
sl@0
|
118 |
// Mark the setting as default again
|
sl@0
|
119 |
s->SetClean();
|
sl@0
|
120 |
iRepository->ResetAndPersistL(*s);
|
sl@0
|
121 |
s->SetAccessPolicy(GetFallbackAccessPolicy(aId));
|
sl@0
|
122 |
}
|
sl@0
|
123 |
}
|
sl@0
|
124 |
CleanupStack::PopAndDestroy(rep);
|
sl@0
|
125 |
}
|
sl@0
|
126 |
#else
|
sl@0
|
127 |
/**
|
sl@0
|
128 |
Attempt to reset a single key to it's value in the file in the given location. Routine
|
sl@0
|
129 |
attempts to find a .cre file first. If ( and only if ) a cre file doesn't exist the
|
sl@0
|
130 |
routine attempts to find a txt file.
|
sl@0
|
131 |
Note that it would be possible to use LoadRepositoryLC here but for the txt file
|
sl@0
|
132 |
that would take longer. This is because in LoadRepositoryLC the txt file is
|
sl@0
|
133 |
completely processed. The Reset specific txt file opening code below is quicker because
|
sl@0
|
134 |
it is just attempting to find the reset key.
|
sl@0
|
135 |
*/
|
sl@0
|
136 |
void CServerRepository::ResetFromIniFileL(TUint32 aId,
|
sl@0
|
137 |
TCentRepLocation aLocation,
|
sl@0
|
138 |
TBool& aKeyFound)
|
sl@0
|
139 |
{
|
sl@0
|
140 |
aKeyFound=EFalse;
|
sl@0
|
141 |
|
sl@0
|
142 |
// Attempt to reset key to value in cre file if it exists
|
sl@0
|
143 |
|
sl@0
|
144 |
// Attempt to create a temporary repository from the cre file in aLocation
|
sl@0
|
145 |
CSharedRepository* rep = CSharedRepository::NewL(iRepository->Uid());
|
sl@0
|
146 |
CleanupStack::PushL(rep);
|
sl@0
|
147 |
TInt err = rep->CreateRepositoryFromCreFileL(aLocation);
|
sl@0
|
148 |
|
sl@0
|
149 |
// Search for aId in the temporary repository
|
sl@0
|
150 |
if (err!=KErrNotFound)
|
sl@0
|
151 |
{
|
sl@0
|
152 |
// Note that for all errors except KErrNotFound code leaves and doesn't
|
sl@0
|
153 |
// attempt to look for txt file. This is intentional. Code does not
|
sl@0
|
154 |
// attempt to support coexisting cre and txt files.
|
sl@0
|
155 |
User::LeaveIfError(err);
|
sl@0
|
156 |
|
sl@0
|
157 |
// Search for aId in the temporary repository
|
sl@0
|
158 |
TServerSetting* s = rep->GetSettings().Find(aId);
|
sl@0
|
159 |
if(s)
|
sl@0
|
160 |
{
|
sl@0
|
161 |
aKeyFound=ETrue;
|
sl@0
|
162 |
// Mark the setting as default again
|
sl@0
|
163 |
s->SetClean();
|
sl@0
|
164 |
iRepository->ResetAndPersistL(*s);
|
sl@0
|
165 |
s->SetAccessPolicy(GetFallbackAccessPolicy(aId));
|
sl@0
|
166 |
}
|
sl@0
|
167 |
|
sl@0
|
168 |
CleanupStack::PopAndDestroy(rep);
|
sl@0
|
169 |
return;
|
sl@0
|
170 |
}
|
sl@0
|
171 |
else
|
sl@0
|
172 |
{
|
sl@0
|
173 |
CleanupStack::PopAndDestroy(rep);
|
sl@0
|
174 |
}
|
sl@0
|
175 |
|
sl@0
|
176 |
HBufC* fileName(NULL);
|
sl@0
|
177 |
TServerResources::CreateRepositoryFileNameLC(fileName,iRepository->Uid(),aLocation,EIni);
|
sl@0
|
178 |
|
sl@0
|
179 |
CIniFileIn* inputFile = 0;
|
sl@0
|
180 |
TInt r = CIniFileIn::NewLC(TServerResources::iFs,inputFile,*fileName);
|
sl@0
|
181 |
if(r==KErrNone)
|
sl@0
|
182 |
{
|
sl@0
|
183 |
//we don't want to read this stuff again... just skip over to get to settings!
|
sl@0
|
184 |
inputFile->SkipOwnerSectionL() ;
|
sl@0
|
185 |
inputFile->SkipTimeStampSectionL() ;
|
sl@0
|
186 |
inputFile->SkipDefaultMetaSectionL() ;
|
sl@0
|
187 |
inputFile->SkipPlatSecSectionL();
|
sl@0
|
188 |
|
sl@0
|
189 |
// Find start of Main section
|
sl@0
|
190 |
inputFile->FindMainSectionL();
|
sl@0
|
191 |
|
sl@0
|
192 |
TServerSetting s;
|
sl@0
|
193 |
TBool singleMetaFound=EFalse;
|
sl@0
|
194 |
TBool singleReadPolicyFound=EFalse;
|
sl@0
|
195 |
TBool singleWritePolicyFound=EFalse;
|
sl@0
|
196 |
TSecurityPolicy singleReadPolicy;
|
sl@0
|
197 |
TSecurityPolicy singleWritePolicy;
|
sl@0
|
198 |
|
sl@0
|
199 |
// Note that calling CIniFile::ReadSettingL causes the single policy ( if it exists ) to be read from the
|
sl@0
|
200 |
// file being reset to, but doesn't update the single policy array, which is not required in the reset case.
|
sl@0
|
201 |
while((r=inputFile->ReadSettingL(s,singleReadPolicy, singleWritePolicy, singleReadPolicyFound, singleWritePolicyFound, singleMetaFound)) == KErrNone)
|
sl@0
|
202 |
{
|
sl@0
|
203 |
iRepository->SetMetaDataOnRead( s, singleMetaFound);
|
sl@0
|
204 |
if(s.Key()==aId)
|
sl@0
|
205 |
{
|
sl@0
|
206 |
// Mark the setting as default again
|
sl@0
|
207 |
s.SetClean();
|
sl@0
|
208 |
iRepository->ResetAndPersistL(s);
|
sl@0
|
209 |
s.SetAccessPolicy(GetFallbackAccessPolicy(aId));
|
sl@0
|
210 |
aKeyFound = ETrue;
|
sl@0
|
211 |
break;
|
sl@0
|
212 |
}
|
sl@0
|
213 |
s.Reset();
|
sl@0
|
214 |
}
|
sl@0
|
215 |
|
sl@0
|
216 |
|
sl@0
|
217 |
}
|
sl@0
|
218 |
CleanupStack::PopAndDestroy(inputFile); // inputFile
|
sl@0
|
219 |
CleanupStack::PopAndDestroy(fileName); // filename
|
sl@0
|
220 |
}
|
sl@0
|
221 |
|
sl@0
|
222 |
#endif
|
sl@0
|
223 |
|
sl@0
|
224 |
TInt CServerRepository::ResetL(TUint32 aId)
|
sl@0
|
225 |
{
|
sl@0
|
226 |
// not yet supported in transactions
|
sl@0
|
227 |
ASSERT(!IsInTransaction());
|
sl@0
|
228 |
|
sl@0
|
229 |
// if setting has not changed, there nothing to do
|
sl@0
|
230 |
TServerSetting *targetSetting = GetSetting(aId) ;
|
sl@0
|
231 |
|
sl@0
|
232 |
if (targetSetting)
|
sl@0
|
233 |
{
|
sl@0
|
234 |
if ((targetSetting->Meta() & KMetaDefaultValue))
|
sl@0
|
235 |
{
|
sl@0
|
236 |
return KErrNone;
|
sl@0
|
237 |
}
|
sl@0
|
238 |
}
|
sl@0
|
239 |
|
sl@0
|
240 |
TInt error = KErrNone;
|
sl@0
|
241 |
TBool keyReset = EFalse;
|
sl@0
|
242 |
|
sl@0
|
243 |
// Check for default value in any installed file first
|
sl@0
|
244 |
#ifdef SYMBIAN_CENTREP_SUPPORT_MULTIROFS
|
sl@0
|
245 |
ResetFromIniFileL(aId, CIniFileIn::EInstallOnly, keyReset);
|
sl@0
|
246 |
#else
|
sl@0
|
247 |
ResetFromIniFileL(aId, EInstall, keyReset);
|
sl@0
|
248 |
#endif
|
sl@0
|
249 |
if (keyReset)
|
sl@0
|
250 |
return KErrNone;
|
sl@0
|
251 |
|
sl@0
|
252 |
// Either we couldn't find a matching key or
|
sl@0
|
253 |
// there wasn't an installed file - try for a ROM
|
sl@0
|
254 |
// file
|
sl@0
|
255 |
#ifdef SYMBIAN_CENTREP_SUPPORT_MULTIROFS
|
sl@0
|
256 |
ResetFromIniFileL(aId, CIniFileIn::ERomOnly, keyReset);
|
sl@0
|
257 |
#else
|
sl@0
|
258 |
ResetFromIniFileL(aId, ERom, keyReset);
|
sl@0
|
259 |
#endif
|
sl@0
|
260 |
if (keyReset)
|
sl@0
|
261 |
return KErrNone;
|
sl@0
|
262 |
|
sl@0
|
263 |
// No default value found in install or ROM file
|
sl@0
|
264 |
// delete the key!
|
sl@0
|
265 |
error = iRepository->DeleteAndPersist(aId);
|
sl@0
|
266 |
|
sl@0
|
267 |
return error ;
|
sl@0
|
268 |
}
|
sl@0
|
269 |
|
sl@0
|
270 |
|
sl@0
|
271 |
void CServerRepository::CacheRomVersionL(const TDesC& aFilename,TDesC8& aVersion)
|
sl@0
|
272 |
{
|
sl@0
|
273 |
|
sl@0
|
274 |
RFile file;
|
sl@0
|
275 |
TInt err = KErrNone;
|
sl@0
|
276 |
_LIT(KTmpPersistedRomVersionFile, "_:\\private\\10202be9\\romversion\\romversion_info.tmp");
|
sl@0
|
277 |
TBuf<KMaxFileName> tmpPersistedRomVersionFileName;
|
sl@0
|
278 |
|
sl@0
|
279 |
tmpPersistedRomVersionFileName.Copy(KTmpPersistedRomVersionFile);
|
sl@0
|
280 |
tmpPersistedRomVersionFileName[0] = RFs::GetSystemDriveChar();
|
sl@0
|
281 |
|
sl@0
|
282 |
//Create a new empty tmp file.
|
sl@0
|
283 |
err = file.Replace( TServerResources::iFs, tmpPersistedRomVersionFileName,
|
sl@0
|
284 |
EFileWrite | EFileStreamText );
|
sl@0
|
285 |
if (err != KErrNone)
|
sl@0
|
286 |
{
|
sl@0
|
287 |
file.Close();
|
sl@0
|
288 |
User::Leave(err);
|
sl@0
|
289 |
}
|
sl@0
|
290 |
|
sl@0
|
291 |
err = file.Write(aVersion);
|
sl@0
|
292 |
if (err != KErrNone)
|
sl@0
|
293 |
{
|
sl@0
|
294 |
file.Close();
|
sl@0
|
295 |
User::Leave(err);
|
sl@0
|
296 |
}
|
sl@0
|
297 |
|
sl@0
|
298 |
file.Close();
|
sl@0
|
299 |
|
sl@0
|
300 |
User::LeaveIfError(TServerResources::iFs.Replace(tmpPersistedRomVersionFileName,aFilename));
|
sl@0
|
301 |
|
sl@0
|
302 |
}
|
sl@0
|
303 |
|
sl@0
|
304 |
#ifdef SYMBIAN_BAFL_SYSUTIL
|
sl@0
|
305 |
void CServerRepository::CheckROMReflashL()
|
sl@0
|
306 |
{
|
sl@0
|
307 |
TInt err=KErrNone;
|
sl@0
|
308 |
|
sl@0
|
309 |
TBuf16<KSysUtilVersionTextLength> version;
|
sl@0
|
310 |
TBuf8<KSysUtilVersionTextLength*2> persistedCopyOfRomVersion;
|
sl@0
|
311 |
_LIT(KPersistedRomVersionFile, "_:\\private\\10202be9\\romversion\\romversion_info.txt");
|
sl@0
|
312 |
TBuf<KMaxFileName> persistedRomVersionFileName;
|
sl@0
|
313 |
persistedRomVersionFileName.Copy(KPersistedRomVersionFile);
|
sl@0
|
314 |
persistedRomVersionFileName[0] = RFs::GetSystemDriveChar();
|
sl@0
|
315 |
|
sl@0
|
316 |
TBuf8<KSysUtilVersionTextLength*2> eightBitVersion;
|
sl@0
|
317 |
|
sl@0
|
318 |
|
sl@0
|
319 |
if ((err = SysUtil::GetSWVersion(version)) == KErrNone )
|
sl@0
|
320 |
{
|
sl@0
|
321 |
eightBitVersion.Copy(version);//Converts to 8bit
|
sl@0
|
322 |
err = TServerResources::GetTextFromFile(persistedRomVersionFileName,persistedCopyOfRomVersion);
|
sl@0
|
323 |
if(err == KErrNone)
|
sl@0
|
324 |
{
|
sl@0
|
325 |
if(eightBitVersion == persistedCopyOfRomVersion)//No rom update has occurred do nothing
|
sl@0
|
326 |
{
|
sl@0
|
327 |
return;
|
sl@0
|
328 |
}
|
sl@0
|
329 |
else //rom update detected process persists files.
|
sl@0
|
330 |
{
|
sl@0
|
331 |
//Call function with flag set to true causing Reflash merging activity.
|
sl@0
|
332 |
ProcessPersistsRepositoriesL(ECenRepReflash);
|
sl@0
|
333 |
}
|
sl@0
|
334 |
}
|
sl@0
|
335 |
|
sl@0
|
336 |
//create the persisted rom version file
|
sl@0
|
337 |
//if the persists files are successfully processed
|
sl@0
|
338 |
//if the persists file doesnt exist
|
sl@0
|
339 |
//if the persists file is corrupt
|
sl@0
|
340 |
//if the persists file is corrupt in such a way that its contents are too large.
|
sl@0
|
341 |
if (err == KErrNone || err == KErrNotFound || err == KErrPathNotFound || err == KErrCorrupt || err == KErrTooBig)
|
sl@0
|
342 |
{
|
sl@0
|
343 |
CServerRepository::CacheRomVersionL(persistedRomVersionFileName,eightBitVersion);
|
sl@0
|
344 |
}
|
sl@0
|
345 |
else
|
sl@0
|
346 |
{
|
sl@0
|
347 |
User::Leave(err);
|
sl@0
|
348 |
}
|
sl@0
|
349 |
}
|
sl@0
|
350 |
else
|
sl@0
|
351 |
{
|
sl@0
|
352 |
User::Leave(err);
|
sl@0
|
353 |
}
|
sl@0
|
354 |
}
|
sl@0
|
355 |
#endif
|
sl@0
|
356 |
|
sl@0
|
357 |
void CServerRepository::RFSAllRepositoriesL()
|
sl@0
|
358 |
{
|
sl@0
|
359 |
ProcessPersistsRepositoriesL(ECenRepReset);
|
sl@0
|
360 |
}
|
sl@0
|
361 |
|
sl@0
|
362 |
void CServerRepository::ProcessPersistsRepositoriesL(TPersistedRepActions aRomFlashOrReset)
|
sl@0
|
363 |
{
|
sl@0
|
364 |
// Read contents of persist directory to get a list of repositories
|
sl@0
|
365 |
TPtr dataDirectory = TServerResources::iDataDirectory->Des();
|
sl@0
|
366 |
RDir persistDir;
|
sl@0
|
367 |
CleanupClosePushL(persistDir);
|
sl@0
|
368 |
|
sl@0
|
369 |
User::LeaveIfError(persistDir.Open(TServerResources::iFs, dataDirectory, KEntryAttNormal));
|
sl@0
|
370 |
|
sl@0
|
371 |
TEntryArray dirEntries;
|
sl@0
|
372 |
TInt readError = KErrNone;
|
sl@0
|
373 |
|
sl@0
|
374 |
while (readError != KErrEof)
|
sl@0
|
375 |
{
|
sl@0
|
376 |
readError = persistDir.Read(dirEntries);
|
sl@0
|
377 |
|
sl@0
|
378 |
if(readError != KErrNone && readError != KErrEof)
|
sl@0
|
379 |
{
|
sl@0
|
380 |
User::Leave(readError);
|
sl@0
|
381 |
}
|
sl@0
|
382 |
else
|
sl@0
|
383 |
{
|
sl@0
|
384 |
const TInt dirCount = dirEntries.Count();
|
sl@0
|
385 |
for (TInt i=0; i<dirCount; i++)
|
sl@0
|
386 |
{
|
sl@0
|
387 |
// Attempt to extract a repository UID from directory entry
|
sl@0
|
388 |
TUid uid;
|
sl@0
|
389 |
if (!TServerResources::GetUid(const_cast<TEntry&>(dirEntries[i]), uid))
|
sl@0
|
390 |
{
|
sl@0
|
391 |
CSessionNotifier notifier;
|
sl@0
|
392 |
|
sl@0
|
393 |
// Create shared repository
|
sl@0
|
394 |
CServerRepository *repository = new(ELeave) CServerRepository;
|
sl@0
|
395 |
CleanupStack::PushL(repository);
|
sl@0
|
396 |
|
sl@0
|
397 |
repository->OpenL(uid, notifier);
|
sl@0
|
398 |
|
sl@0
|
399 |
//Handle ROM re-flash
|
sl@0
|
400 |
TInt err = KErrNone;
|
sl@0
|
401 |
if(aRomFlashOrReset==ECenRepReflash)
|
sl@0
|
402 |
{
|
sl@0
|
403 |
TRAP(err, repository->HandleReflashofRepositoryL());
|
sl@0
|
404 |
}
|
sl@0
|
405 |
else if(aRomFlashOrReset==ECenRepReset)
|
sl@0
|
406 |
{
|
sl@0
|
407 |
// Restore settings
|
sl@0
|
408 |
TRAP(err,repository->RFSRepositoryL());
|
sl@0
|
409 |
}
|
sl@0
|
410 |
if(err != KErrNone)
|
sl@0
|
411 |
{
|
sl@0
|
412 |
if(err == KErrNoMemory)
|
sl@0
|
413 |
{
|
sl@0
|
414 |
repository->Close();
|
sl@0
|
415 |
User::LeaveNoMemory();
|
sl@0
|
416 |
}
|
sl@0
|
417 |
else
|
sl@0
|
418 |
{//Dont stop processing the rest of the persisted repositories becos one has a problem.
|
sl@0
|
419 |
__CENTREP_TRACE1("CENTREP: CServerRepository::ProcessPersistsRepositoriesL - Error = %d", err);
|
sl@0
|
420 |
}
|
sl@0
|
421 |
}
|
sl@0
|
422 |
|
sl@0
|
423 |
// delete repository.
|
sl@0
|
424 |
repository->Close();
|
sl@0
|
425 |
CleanupStack::PopAndDestroy(repository);
|
sl@0
|
426 |
}
|
sl@0
|
427 |
}
|
sl@0
|
428 |
}
|
sl@0
|
429 |
}
|
sl@0
|
430 |
|
sl@0
|
431 |
CleanupStack::PopAndDestroy(&persistDir);
|
sl@0
|
432 |
}
|
sl@0
|
433 |
|
sl@0
|
434 |
TInt CServerRepository::RFSRepositoryL()
|
sl@0
|
435 |
{
|
sl@0
|
436 |
// for each key in combined ROM/Install restore
|
sl@0
|
437 |
TUid uid = iRepository->Uid();
|
sl@0
|
438 |
|
sl@0
|
439 |
CSharedRepository* defaultRepository = 0;
|
sl@0
|
440 |
TInt err=KErrNone;
|
sl@0
|
441 |
|
sl@0
|
442 |
//Determine if ROM and Install files exist
|
sl@0
|
443 |
TBool romExists=TServerResources::RomFileExistsL(uid);
|
sl@0
|
444 |
TBool installExists=TServerResources::InstallFileExistsL(uid);
|
sl@0
|
445 |
|
sl@0
|
446 |
if(romExists)
|
sl@0
|
447 |
{
|
sl@0
|
448 |
// Create a rep using the ROM file
|
sl@0
|
449 |
TServerResources::iObserver->LoadRepositoryLC(uid, ETrue, defaultRepository, CIniFileIn::ERomOnly);
|
sl@0
|
450 |
|
sl@0
|
451 |
if(installExists)
|
sl@0
|
452 |
{
|
sl@0
|
453 |
CSharedRepository *installRep = 0;
|
sl@0
|
454 |
// Create install rep for merging
|
sl@0
|
455 |
TServerResources::iObserver->LoadRepositoryLC(uid, ETrue, installRep, CIniFileIn::EInstallOnly);
|
sl@0
|
456 |
|
sl@0
|
457 |
// If install and ROM exist create a merged rep to Reset against
|
sl@0
|
458 |
defaultRepository->MergeL(*installRep, ESWIUpgradeMerge);
|
sl@0
|
459 |
|
sl@0
|
460 |
//pop and destroy install repository as this has now been
|
sl@0
|
461 |
//merged with repository
|
sl@0
|
462 |
CleanupStack::PopAndDestroy(installRep);
|
sl@0
|
463 |
}
|
sl@0
|
464 |
}
|
sl@0
|
465 |
|
sl@0
|
466 |
else if(installExists)
|
sl@0
|
467 |
{
|
sl@0
|
468 |
// Reset against install repository if only the install file exists
|
sl@0
|
469 |
TServerResources::iObserver->LoadRepositoryLC(uid, ETrue, defaultRepository, CIniFileIn::EInstallOnly);
|
sl@0
|
470 |
}
|
sl@0
|
471 |
else
|
sl@0
|
472 |
{
|
sl@0
|
473 |
// The repository must exist in the ROM or install directory (or both).
|
sl@0
|
474 |
ASSERT(romExists || installExists);
|
sl@0
|
475 |
// Reset against empty repository if neither ROM or install file are found
|
sl@0
|
476 |
defaultRepository = CSharedRepository::NewL(uid);
|
sl@0
|
477 |
CleanupStack::PushL(defaultRepository);
|
sl@0
|
478 |
}
|
sl@0
|
479 |
|
sl@0
|
480 |
for(TInt i = 0; i < iRepository->GetSettings().Count(); i++)
|
sl@0
|
481 |
{
|
sl@0
|
482 |
// setting in persists
|
sl@0
|
483 |
TServerSetting* persistedSetting = &iRepository->GetSettings()[i];
|
sl@0
|
484 |
|
sl@0
|
485 |
// If the clean is set on setting in the persist, nothing to do
|
sl@0
|
486 |
if (persistedSetting->Meta() & KMetaDefaultValue)
|
sl@0
|
487 |
{
|
sl@0
|
488 |
continue;
|
sl@0
|
489 |
}
|
sl@0
|
490 |
|
sl@0
|
491 |
TUint32 key = persistedSetting->Key();
|
sl@0
|
492 |
// setting in ROM/install
|
sl@0
|
493 |
TServerSetting* defaultSetting = defaultRepository->GetSettings().Find(key);
|
sl@0
|
494 |
|
sl@0
|
495 |
if (defaultSetting)
|
sl@0
|
496 |
{
|
sl@0
|
497 |
if ((defaultSetting->Meta() & KMetaRfsValue))
|
sl@0
|
498 |
{
|
sl@0
|
499 |
iRepository->ResetNoPersistL(*defaultSetting);
|
sl@0
|
500 |
}
|
sl@0
|
501 |
//remove from Reset repository
|
sl@0
|
502 |
defaultRepository->GetSettings().Remove(key);
|
sl@0
|
503 |
}
|
sl@0
|
504 |
else
|
sl@0
|
505 |
{
|
sl@0
|
506 |
// if setting has no default value (i.e. doesn't exist in any default file but RFS meta is
|
sl@0
|
507 |
// set (using pre-set default range meta), delete the setting
|
sl@0
|
508 |
if ((persistedSetting->Meta() & KMetaRfsValue))
|
sl@0
|
509 |
{
|
sl@0
|
510 |
iRepository->DeleteNoPersist(key);
|
sl@0
|
511 |
}
|
sl@0
|
512 |
}
|
sl@0
|
513 |
}
|
sl@0
|
514 |
// search for remaining items in default file, because previous loop has already removed all items
|
sl@0
|
515 |
// from the persists file
|
sl@0
|
516 |
for(TInt i = 0; i < defaultRepository->GetSettings().Count(); i++)
|
sl@0
|
517 |
{
|
sl@0
|
518 |
TServerSetting* defaultSetting = &defaultRepository->GetSettings()[i];
|
sl@0
|
519 |
|
sl@0
|
520 |
if ((defaultSetting->Meta() & KMetaRfsValue) != KMetaRfsValue)
|
sl@0
|
521 |
{
|
sl@0
|
522 |
continue;
|
sl@0
|
523 |
}
|
sl@0
|
524 |
iRepository->ResetNoPersistL(*defaultSetting);
|
sl@0
|
525 |
}
|
sl@0
|
526 |
|
sl@0
|
527 |
// Persist settings
|
sl@0
|
528 |
iRepository->CommitChangesL();
|
sl@0
|
529 |
|
sl@0
|
530 |
CleanupStack::PopAndDestroy(defaultRepository);
|
sl@0
|
531 |
|
sl@0
|
532 |
return err;
|
sl@0
|
533 |
}
|
sl@0
|
534 |
|
sl@0
|
535 |
|
sl@0
|
536 |
TInt CServerRepository::HandleReflashofRepositoryL()
|
sl@0
|
537 |
{
|
sl@0
|
538 |
// for each key in persists repository
|
sl@0
|
539 |
TUid uid = iRepository->Uid();
|
sl@0
|
540 |
|
sl@0
|
541 |
CSharedRepository* defaultRepository = 0;
|
sl@0
|
542 |
|
sl@0
|
543 |
//Determine if ROM and Install files exist
|
sl@0
|
544 |
TBool romExists=TServerResources::RomFileExistsL(uid);
|
sl@0
|
545 |
TBool installExists=TServerResources::InstallFileExistsL(uid);
|
sl@0
|
546 |
|
sl@0
|
547 |
if(romExists)
|
sl@0
|
548 |
{
|
sl@0
|
549 |
// Create a rep using the ROM file
|
sl@0
|
550 |
TServerResources::iObserver->LoadRepositoryLC(uid, ETrue, defaultRepository, CIniFileIn::ERomOnly);
|
sl@0
|
551 |
|
sl@0
|
552 |
if(installExists)//Then create a merged repository of rom and install settings
|
sl@0
|
553 |
{
|
sl@0
|
554 |
CSharedRepository *installRep = 0;
|
sl@0
|
555 |
// Create install rep for merging
|
sl@0
|
556 |
TServerResources::iObserver->LoadRepositoryLC(uid, ETrue, installRep, CIniFileIn::EInstallOnly);
|
sl@0
|
557 |
|
sl@0
|
558 |
// If install and ROM exist create a merged rep to Reset against
|
sl@0
|
559 |
defaultRepository->MergeL(*installRep, ESWIUpgradeMerge);
|
sl@0
|
560 |
|
sl@0
|
561 |
//pop and destroy install repository as this has now been
|
sl@0
|
562 |
//merged with the rom repository
|
sl@0
|
563 |
CleanupStack::PopAndDestroy(installRep);
|
sl@0
|
564 |
}
|
sl@0
|
565 |
}
|
sl@0
|
566 |
else if(installExists)//There was no ROM repository just an install repository
|
sl@0
|
567 |
{
|
sl@0
|
568 |
// Reset against install repository if only the install file exists
|
sl@0
|
569 |
TServerResources::iObserver->LoadRepositoryLC(uid, ETrue, defaultRepository, CIniFileIn::EInstallOnly);
|
sl@0
|
570 |
}
|
sl@0
|
571 |
else //If rom file and install files have been removed for this repository
|
sl@0
|
572 |
{//then remove the persists file.
|
sl@0
|
573 |
TServerResources::DeleteCentrepFileL(uid, EPersists, ECre);
|
sl@0
|
574 |
TServerResources::DeleteCentrepFileL(uid, EPersists, EIni);
|
sl@0
|
575 |
return KErrNone;
|
sl@0
|
576 |
}
|
sl@0
|
577 |
|
sl@0
|
578 |
// Merge rom and/or install with persists repository
|
sl@0
|
579 |
iRepository->MergeL(*defaultRepository, ERomFlash);
|
sl@0
|
580 |
|
sl@0
|
581 |
// Persist settings
|
sl@0
|
582 |
iRepository->CommitChangesL();
|
sl@0
|
583 |
|
sl@0
|
584 |
CleanupStack::PopAndDestroy(defaultRepository);
|
sl@0
|
585 |
|
sl@0
|
586 |
return KErrNone;
|
sl@0
|
587 |
}
|
sl@0
|
588 |
|
sl@0
|
589 |
|
sl@0
|
590 |
TInt CServerRepository::ResetAllL()
|
sl@0
|
591 |
{
|
sl@0
|
592 |
// not yet supported in transactions
|
sl@0
|
593 |
ASSERT(!IsInTransaction());
|
sl@0
|
594 |
// fail all sessions' transactions first
|
sl@0
|
595 |
iRepository->FailAllTransactions(/*aExcludeTransactor*/NULL);
|
sl@0
|
596 |
|
sl@0
|
597 |
TUid uid = iRepository->Uid();
|
sl@0
|
598 |
|
sl@0
|
599 |
// Reset
|
sl@0
|
600 |
|
sl@0
|
601 |
// Create a rep using the ROM file
|
sl@0
|
602 |
CSharedRepository* rep = 0;
|
sl@0
|
603 |
TBool romExists=TServerResources::RomFileExistsL(uid);
|
sl@0
|
604 |
if(romExists)
|
sl@0
|
605 |
{
|
sl@0
|
606 |
TServerResources::iObserver->LoadRepositoryLC(uid, ETrue, rep, CIniFileIn::ERomOnly);
|
sl@0
|
607 |
}
|
sl@0
|
608 |
|
sl@0
|
609 |
// Create install rep for merging
|
sl@0
|
610 |
CSharedRepository *installRep = 0;
|
sl@0
|
611 |
TBool installExists=TServerResources::InstallFileExistsL(uid);
|
sl@0
|
612 |
if(installExists)
|
sl@0
|
613 |
{
|
sl@0
|
614 |
TServerResources::iObserver->LoadRepositoryLC(uid, ETrue, installRep, CIniFileIn::EInstallOnly);
|
sl@0
|
615 |
}
|
sl@0
|
616 |
|
sl@0
|
617 |
TInt err=KErrNone;
|
sl@0
|
618 |
if( romExists && installExists)
|
sl@0
|
619 |
{
|
sl@0
|
620 |
// If install and ROM exist create a merged rep to Reset against
|
sl@0
|
621 |
rep->MergeL(*installRep, ESWIUpgradeMerge);
|
sl@0
|
622 |
err=iRepository->ResetAllNoPersistL(*rep);
|
sl@0
|
623 |
CleanupStack::PopAndDestroy(installRep);
|
sl@0
|
624 |
CleanupStack::PopAndDestroy(rep);
|
sl@0
|
625 |
}
|
sl@0
|
626 |
else if(romExists)
|
sl@0
|
627 |
{
|
sl@0
|
628 |
// Reset against ROM
|
sl@0
|
629 |
err=iRepository->ResetAllNoPersistL(*rep);
|
sl@0
|
630 |
CleanupStack::PopAndDestroy(rep);
|
sl@0
|
631 |
}
|
sl@0
|
632 |
else if(installExists)
|
sl@0
|
633 |
{
|
sl@0
|
634 |
// Reset against install
|
sl@0
|
635 |
err=iRepository->ResetAllNoPersistL(*installRep);
|
sl@0
|
636 |
CleanupStack::PopAndDestroy(installRep);
|
sl@0
|
637 |
}
|
sl@0
|
638 |
else
|
sl@0
|
639 |
{
|
sl@0
|
640 |
// Reset against empty repository
|
sl@0
|
641 |
rep = CSharedRepository::NewL(uid);
|
sl@0
|
642 |
CleanupStack::PushL(rep);
|
sl@0
|
643 |
err=iRepository->ResetAllNoPersistL(*rep);
|
sl@0
|
644 |
CleanupStack::PopAndDestroy(rep);
|
sl@0
|
645 |
}
|
sl@0
|
646 |
|
sl@0
|
647 |
return err;
|
sl@0
|
648 |
}
|
sl@0
|
649 |
|
sl@0
|
650 |
// Handle install directory file update.
|
sl@0
|
651 |
void CServerRepository::HandleSWIUpdateL(TUid aUid, TTime aModified, CSessionNotifier &aNotifier)
|
sl@0
|
652 |
{
|
sl@0
|
653 |
// A file create or update has just occurred in the SWI directory.
|
sl@0
|
654 |
// Need to check if this is a new install.
|
sl@0
|
655 |
|
sl@0
|
656 |
if(TServerResources::PersistsFileExistsL(aUid) ||
|
sl@0
|
657 |
TServerResources::RomFileExistsL(aUid))
|
sl@0
|
658 |
{
|
sl@0
|
659 |
// Create a rep using the ROM or persists file
|
sl@0
|
660 |
OpenL(aUid, aNotifier);
|
sl@0
|
661 |
if(iRepository->IsTransactionActive())
|
sl@0
|
662 |
{
|
sl@0
|
663 |
// Fail transactions on any currently open session
|
sl@0
|
664 |
iRepository->FailAllTransactions(NULL);
|
sl@0
|
665 |
}
|
sl@0
|
666 |
|
sl@0
|
667 |
// Create install rep for merging
|
sl@0
|
668 |
CSharedRepository *installRep = 0;
|
sl@0
|
669 |
TRAPD( err, TServerResources::iObserver->LoadRepositoryLC(aUid, ETrue, installRep, CIniFileIn::EInstallOnly); CleanupStack::Pop(installRep) );
|
sl@0
|
670 |
|
sl@0
|
671 |
if (err == KErrNone)
|
sl@0
|
672 |
{
|
sl@0
|
673 |
// Perform merge
|
sl@0
|
674 |
TRAP( err, iRepository->HandleUpdateMergeL(aModified, *installRep) );
|
sl@0
|
675 |
}
|
sl@0
|
676 |
if (installRep!=NULL)
|
sl@0
|
677 |
{
|
sl@0
|
678 |
delete installRep;
|
sl@0
|
679 |
}
|
sl@0
|
680 |
Close();
|
sl@0
|
681 |
User::LeaveIfError(err);
|
sl@0
|
682 |
}
|
sl@0
|
683 |
else // No ROM or persists
|
sl@0
|
684 |
{
|
sl@0
|
685 |
// Create install rep for persisting
|
sl@0
|
686 |
OpenL(aUid, aNotifier);
|
sl@0
|
687 |
TRAPD(err, iRepository->CommitChangesL());
|
sl@0
|
688 |
Close();
|
sl@0
|
689 |
User::LeaveIfError(err);
|
sl@0
|
690 |
}
|
sl@0
|
691 |
}
|
sl@0
|
692 |
|
sl@0
|
693 |
|
sl@0
|
694 |
// Handle install directory file delete
|
sl@0
|
695 |
void CServerRepository::HandleSWIDeleteL(TUid aUid, CSessionNotifier &aNotifier)
|
sl@0
|
696 |
{
|
sl@0
|
697 |
// A file delete has just occurred in the SWI directory. If there is no ROM file
|
sl@0
|
698 |
// this is a complete uninstall, so delete persists file.Otherwise, do downgrade
|
sl@0
|
699 |
// merge.
|
sl@0
|
700 |
|
sl@0
|
701 |
if(TServerResources::RomFileExistsL(aUid)) // ROM file, this is a downgrade uninstall
|
sl@0
|
702 |
{
|
sl@0
|
703 |
if(!TServerResources::PersistsFileExistsL(aUid))
|
sl@0
|
704 |
{
|
sl@0
|
705 |
// If we are downgrading the ROM, there should be a persists file because the
|
sl@0
|
706 |
// original upgrade should have created one.
|
sl@0
|
707 |
// However if there isn't a persists file, there's nothing to do, so just return
|
sl@0
|
708 |
return;
|
sl@0
|
709 |
}
|
sl@0
|
710 |
|
sl@0
|
711 |
// Create a rep using the persists file
|
sl@0
|
712 |
OpenL(aUid, aNotifier);
|
sl@0
|
713 |
if(iRepository->IsTransactionActive())
|
sl@0
|
714 |
{
|
sl@0
|
715 |
// Fail transactions on any currently open session
|
sl@0
|
716 |
iRepository->FailAllTransactions(NULL);
|
sl@0
|
717 |
}
|
sl@0
|
718 |
|
sl@0
|
719 |
// Create ROM rep for merging
|
sl@0
|
720 |
CSharedRepository *romRep = 0;
|
sl@0
|
721 |
TRAPD( err, TServerResources::iObserver->LoadRepositoryLC(aUid, ETrue, romRep, CIniFileIn::ERomOnly); CleanupStack::Pop(romRep) );
|
sl@0
|
722 |
|
sl@0
|
723 |
if (err == KErrNone)
|
sl@0
|
724 |
{
|
sl@0
|
725 |
// Perform merge
|
sl@0
|
726 |
TRAP( err, iRepository->HandleDeleteMergeL(*romRep) );
|
sl@0
|
727 |
}
|
sl@0
|
728 |
if (romRep!=NULL)
|
sl@0
|
729 |
{
|
sl@0
|
730 |
delete romRep;
|
sl@0
|
731 |
}
|
sl@0
|
732 |
Close();
|
sl@0
|
733 |
User::LeaveIfError(err);
|
sl@0
|
734 |
}
|
sl@0
|
735 |
else // No ROM file, this is a complete uninstall
|
sl@0
|
736 |
{
|
sl@0
|
737 |
if(TServerResources::PersistsFileExistsL(aUid))
|
sl@0
|
738 |
{
|
sl@0
|
739 |
TServerResources::DeleteCentrepFileL(aUid, EPersists, ECre);
|
sl@0
|
740 |
|
sl@0
|
741 |
// Check if the repository was open
|
sl@0
|
742 |
TInt i = TServerResources::iObserver->FindOpenRepository(aUid);
|
sl@0
|
743 |
|
sl@0
|
744 |
// If repository is open, fail all transactions
|
sl@0
|
745 |
if(i>KErrNotFound)
|
sl@0
|
746 |
{
|
sl@0
|
747 |
OpenL(aUid, aNotifier);
|
sl@0
|
748 |
if(iRepository->IsTransactionActive())
|
sl@0
|
749 |
{
|
sl@0
|
750 |
// Fail transactions on any currently open session
|
sl@0
|
751 |
iRepository->FailAllTransactions(NULL);
|
sl@0
|
752 |
}
|
sl@0
|
753 |
iRepository->ResetContent();
|
sl@0
|
754 |
Close();
|
sl@0
|
755 |
}
|
sl@0
|
756 |
}
|
sl@0
|
757 |
}
|
sl@0
|
758 |
}
|
sl@0
|
759 |
|
sl@0
|
760 |
void CServerRepository::StoreRepositoryContentsL(CStreamStore& aStore, TStreamId & aSettingStreamId, TStreamId & aDeletedSettingsStreamId) const
|
sl@0
|
761 |
{
|
sl@0
|
762 |
StoreRepositorySettingValuesL(aStore, aSettingStreamId); // Stores current repository setting values
|
sl@0
|
763 |
|
sl@0
|
764 |
RStoreWriteStream outStream;
|
sl@0
|
765 |
aDeletedSettingsStreamId = outStream.CreateLC(aStore); // Creates the write for settings stream
|
sl@0
|
766 |
iRepository->WriteDeletedSettingsStream(outStream) ;
|
sl@0
|
767 |
outStream.CommitL(); // Commits the stream
|
sl@0
|
768 |
CleanupStack::PopAndDestroy(&outStream); // Performs cleanup on the write stream object
|
sl@0
|
769 |
}
|
sl@0
|
770 |
|
sl@0
|
771 |
void CServerRepository::StoreRepositorySettingValuesL(CStreamStore& aStore, TStreamId & aSettingStreamId) const
|
sl@0
|
772 |
{
|
sl@0
|
773 |
RStoreWriteStream outStream;
|
sl@0
|
774 |
aSettingStreamId = outStream.CreateLC(aStore); // Creates the write stream
|
sl@0
|
775 |
iRepository->WriteBackupStream(outStream); // Only care about repository contents.
|
sl@0
|
776 |
outStream.CommitL(); // Commits the stream
|
sl@0
|
777 |
CleanupStack::PopAndDestroy(&outStream); // Performs cleanup on the write stream object
|
sl@0
|
778 |
}
|
sl@0
|
779 |
|
sl@0
|
780 |
void CServerRepository::RestoreRepositoryContentsL(CStreamStore& aStore, TStreamId aSettingStreamId, TStreamId aDeletedSettingsStreamId, CRestoredRepository& aRstRepos)
|
sl@0
|
781 |
{
|
sl@0
|
782 |
RestoreRepositorySettingValuesL(aStore, aSettingStreamId, aRstRepos);
|
sl@0
|
783 |
|
sl@0
|
784 |
RStoreReadStream inStream;
|
sl@0
|
785 |
// If the backup contains a list of deleted settings read them in and apply them.
|
sl@0
|
786 |
if (aDeletedSettingsStreamId != KNullStreamId)
|
sl@0
|
787 |
{
|
sl@0
|
788 |
inStream.OpenLC(aStore, aDeletedSettingsStreamId); // Creates read stream for deleted settings (if available)
|
sl@0
|
789 |
|
sl@0
|
790 |
TCardinality numDeletedSettings ;
|
sl@0
|
791 |
inStream >> numDeletedSettings ;
|
sl@0
|
792 |
|
sl@0
|
793 |
for (TInt i = 0; i < numDeletedSettings; i++)
|
sl@0
|
794 |
{
|
sl@0
|
795 |
TUint32 settingToDelete ;
|
sl@0
|
796 |
inStream >> settingToDelete ;
|
sl@0
|
797 |
TInt err = iRepository->DeleteNoPersist(settingToDelete) ;
|
sl@0
|
798 |
// Add the deleted key to the restored repository if it has existed before being deleted.
|
sl@0
|
799 |
// If it has not existed before being deleted, we do not add it to the list because nothing
|
sl@0
|
800 |
// has changed.
|
sl@0
|
801 |
if(err == KErrNone)
|
sl@0
|
802 |
{
|
sl@0
|
803 |
aRstRepos.AddKeyL(settingToDelete);
|
sl@0
|
804 |
}
|
sl@0
|
805 |
}
|
sl@0
|
806 |
CleanupStack::PopAndDestroy(&inStream); // Perform cleanup on the read stream object
|
sl@0
|
807 |
}
|
sl@0
|
808 |
return;
|
sl@0
|
809 |
}
|
sl@0
|
810 |
|
sl@0
|
811 |
void CServerRepository::RestoreRepositorySettingValuesL(CStreamStore& aStore, TStreamId aSettingStreamId, CRestoredRepository& aRstRepos)
|
sl@0
|
812 |
{
|
sl@0
|
813 |
RStoreReadStream inStream;
|
sl@0
|
814 |
inStream.OpenLC(aStore, aSettingStreamId); // Creates the write stream
|
sl@0
|
815 |
iRepository->InternalizeL(inStream, aRstRepos); // Only care about repository contents.
|
sl@0
|
816 |
CleanupStack::PopAndDestroy(&inStream); // Perform cleanup on the read stream object
|
sl@0
|
817 |
}
|
sl@0
|
818 |
|
sl@0
|
819 |
static void CancelTransactionCleanupOperation(TAny* aRepository)
|
sl@0
|
820 |
{
|
sl@0
|
821 |
static_cast<CServerRepository*>(aRepository)->CancelTransaction();
|
sl@0
|
822 |
}
|
sl@0
|
823 |
|
sl@0
|
824 |
// So CancelTransaction is called in case of Leave. Must pop with CleanupStack::Pop() or similar
|
sl@0
|
825 |
void CServerRepository::CleanupCancelTransactionPushL()
|
sl@0
|
826 |
{
|
sl@0
|
827 |
CleanupStack::PushL(TCleanupItem(CancelTransactionCleanupOperation, this));
|
sl@0
|
828 |
}
|
sl@0
|
829 |
|
sl@0
|
830 |
/**
|
sl@0
|
831 |
@internalTechnology
|
sl@0
|
832 |
Check the range of security policies against RMessage
|
sl@0
|
833 |
@return
|
sl@0
|
834 |
KErrNone if read access policies of all settings in array pass,
|
sl@0
|
835 |
KErrPermissionDenied if any single policy fails.
|
sl@0
|
836 |
*/
|
sl@0
|
837 |
TInt CServerRepository::CheckPermissions(RSettingPointerArray& aSettings, const TClientRequest& aMessage, const char* aDiagnostic, TBool aReadPolicy,TUint32& aErrId)
|
sl@0
|
838 |
{
|
sl@0
|
839 |
TInt error = KErrNone;
|
sl@0
|
840 |
TInt numSettings = aSettings.Count();
|
sl@0
|
841 |
for (TInt i = 0; i < numSettings; i++)
|
sl@0
|
842 |
{
|
sl@0
|
843 |
ASSERT(aSettings[i]);
|
sl@0
|
844 |
const TServerSetting& setting = *aSettings[i];
|
sl@0
|
845 |
if (aReadPolicy)
|
sl@0
|
846 |
{
|
sl@0
|
847 |
if (!aMessage.CheckPolicy(GetReadAccessPolicy(setting),aDiagnostic))
|
sl@0
|
848 |
{
|
sl@0
|
849 |
aErrId=setting.Key();
|
sl@0
|
850 |
error = KErrPermissionDenied;
|
sl@0
|
851 |
break;
|
sl@0
|
852 |
}
|
sl@0
|
853 |
}
|
sl@0
|
854 |
else
|
sl@0
|
855 |
{
|
sl@0
|
856 |
if (!aMessage.CheckPolicy(GetWriteAccessPolicy(setting),aDiagnostic))
|
sl@0
|
857 |
{
|
sl@0
|
858 |
aErrId=setting.Key();
|
sl@0
|
859 |
error = KErrPermissionDenied;
|
sl@0
|
860 |
break;
|
sl@0
|
861 |
}
|
sl@0
|
862 |
}
|
sl@0
|
863 |
}
|
sl@0
|
864 |
return error;
|
sl@0
|
865 |
}
|
sl@0
|
866 |
|
sl@0
|
867 |
TInt CServerRepository::TransactionDeleteRangeL(const TClientRequest& aMessage, TUint32& aErrorKey)
|
sl@0
|
868 |
{
|
sl@0
|
869 |
// all write operations now done in a transaction
|
sl@0
|
870 |
ASSERT(IsInActiveReadWriteTransaction());
|
sl@0
|
871 |
TInt error = KErrNone;
|
sl@0
|
872 |
aErrorKey = KUnspecifiedKey;
|
sl@0
|
873 |
|
sl@0
|
874 |
TUint32 partialKey = aMessage.Int0();
|
sl@0
|
875 |
TUint32 keyMask = aMessage.Int1();
|
sl@0
|
876 |
|
sl@0
|
877 |
RSettingPointerArray settingsToDelete;
|
sl@0
|
878 |
CleanupClosePushL(settingsToDelete);
|
sl@0
|
879 |
error = FindSettings(partialKey, keyMask, settingsToDelete);
|
sl@0
|
880 |
if (error==KErrNoMemory)
|
sl@0
|
881 |
User::LeaveNoMemory();
|
sl@0
|
882 |
|
sl@0
|
883 |
//perform write security check first
|
sl@0
|
884 |
error=CheckPermissions(settingsToDelete,aMessage,__PLATSEC_DIAGNOSTIC_STRING("CenRep: CServerRepository::DeleteRangeL - Attempt made to delete a setting"),EFalse,aErrorKey);
|
sl@0
|
885 |
|
sl@0
|
886 |
if (error==KErrNone)
|
sl@0
|
887 |
{
|
sl@0
|
888 |
TRAP(error,DeleteSettingsRangeL(settingsToDelete,partialKey,aErrorKey));
|
sl@0
|
889 |
if (error==KErrNoMemory)
|
sl@0
|
890 |
User::LeaveNoMemory();
|
sl@0
|
891 |
}
|
sl@0
|
892 |
CleanupStack::PopAndDestroy(&settingsToDelete);
|
sl@0
|
893 |
|
sl@0
|
894 |
if ((error != KErrNone) && (error != KErrNotFound))
|
sl@0
|
895 |
{
|
sl@0
|
896 |
FailTransaction(error, aErrorKey);
|
sl@0
|
897 |
}
|
sl@0
|
898 |
return error;
|
sl@0
|
899 |
}
|
sl@0
|
900 |
|
sl@0
|
901 |
TInt CServerRepository::TransactionMoveL(const TClientRequest& aMessage, TUint32& aErrorKey)
|
sl@0
|
902 |
{
|
sl@0
|
903 |
// all write operations now done in a transaction
|
sl@0
|
904 |
ASSERT(IsInActiveReadWriteTransaction());
|
sl@0
|
905 |
//read the source and target partial key
|
sl@0
|
906 |
TKeyFilter sourceKeyIdentifier;
|
sl@0
|
907 |
TPckg<TKeyFilter> pSource(sourceKeyIdentifier);
|
sl@0
|
908 |
aMessage.Read(0, pSource);
|
sl@0
|
909 |
|
sl@0
|
910 |
TKeyFilter targetKeyIdentifier;
|
sl@0
|
911 |
TPckg<TKeyFilter> pTarget(targetKeyIdentifier);
|
sl@0
|
912 |
aMessage.Read(1, pTarget);
|
sl@0
|
913 |
|
sl@0
|
914 |
TUint32 sourceToTarget = (sourceKeyIdentifier.iPartialId & sourceKeyIdentifier.iIdMask) ^ (targetKeyIdentifier.iPartialId & targetKeyIdentifier.iIdMask);
|
sl@0
|
915 |
if (sourceToTarget==0)
|
sl@0
|
916 |
{
|
sl@0
|
917 |
return KErrNone;
|
sl@0
|
918 |
}
|
sl@0
|
919 |
|
sl@0
|
920 |
//Need to get the list of source settings to perform some security policy check
|
sl@0
|
921 |
RSettingPointerArray sourceSettings;
|
sl@0
|
922 |
CleanupClosePushL(sourceSettings);
|
sl@0
|
923 |
TInt error=FindSettings(sourceKeyIdentifier.iPartialId & sourceKeyIdentifier.iIdMask, sourceKeyIdentifier.iIdMask, sourceSettings);
|
sl@0
|
924 |
|
sl@0
|
925 |
//dont fail transaction if source settings is empty
|
sl@0
|
926 |
if ((error == KErrNone) && (sourceSettings.Count() == 0))
|
sl@0
|
927 |
{
|
sl@0
|
928 |
error = KErrNotFound;
|
sl@0
|
929 |
aErrorKey = sourceKeyIdentifier.iPartialId;
|
sl@0
|
930 |
CleanupStack::PopAndDestroy(&sourceSettings);
|
sl@0
|
931 |
TPckg<TUint32> p(aErrorKey);
|
sl@0
|
932 |
aMessage.WriteL(2, p);
|
sl@0
|
933 |
return error;
|
sl@0
|
934 |
|
sl@0
|
935 |
}
|
sl@0
|
936 |
if (error!=KErrNone)
|
sl@0
|
937 |
{
|
sl@0
|
938 |
aErrorKey = sourceKeyIdentifier.iPartialId;
|
sl@0
|
939 |
CleanupStack::PopAndDestroy(&sourceSettings);
|
sl@0
|
940 |
return error;
|
sl@0
|
941 |
}
|
sl@0
|
942 |
|
sl@0
|
943 |
//Now validate against the security policy before doing the settings move
|
sl@0
|
944 |
error=CheckMovePermissions(sourceSettings,aMessage,sourceToTarget,aErrorKey);
|
sl@0
|
945 |
if (error!=KErrNone)
|
sl@0
|
946 |
{
|
sl@0
|
947 |
CleanupStack::PopAndDestroy(&sourceSettings);
|
sl@0
|
948 |
return error;
|
sl@0
|
949 |
}
|
sl@0
|
950 |
|
sl@0
|
951 |
error =MoveL(sourceKeyIdentifier.iPartialId,targetKeyIdentifier.iPartialId,sourceKeyIdentifier.iIdMask,aErrorKey, sourceSettings);
|
sl@0
|
952 |
CleanupStack::PopAndDestroy(&sourceSettings);
|
sl@0
|
953 |
return error;
|
sl@0
|
954 |
}
|
sl@0
|
955 |
|
sl@0
|
956 |
void CServerRepository::LoadIniRepL(CIniFileIn::TIniFileOpenMode aMode)
|
sl@0
|
957 |
{
|
sl@0
|
958 |
if (iIniRep == NULL)
|
sl@0
|
959 |
{
|
sl@0
|
960 |
CSharedRepository *rep = NULL;
|
sl@0
|
961 |
TServerResources::iObserver->LoadRepositoryLC(iUid, ETrue, rep, aMode);
|
sl@0
|
962 |
CleanupStack::Pop();
|
sl@0
|
963 |
iIniRep = rep;
|
sl@0
|
964 |
}
|
sl@0
|
965 |
}
|
sl@0
|
966 |
|
sl@0
|
967 |
TBool CServerRepository::GetMetaFromIni(TUint32 aKey, TUint32& aMeta)
|
sl@0
|
968 |
{
|
sl@0
|
969 |
// Note: cannot use iRepository even if
|
sl@0
|
970 |
// iRepository->iSettings.IsDefault() is true.
|
sl@0
|
971 |
// The flag is not updated on TransactionCommit.
|
sl@0
|
972 |
if (iIniRep == NULL)
|
sl@0
|
973 |
{
|
sl@0
|
974 |
TInt err;
|
sl@0
|
975 |
TRAP(err, LoadIniRepL(CIniFileIn::EInstallOnly));
|
sl@0
|
976 |
if (err != KErrNone)
|
sl@0
|
977 |
{
|
sl@0
|
978 |
TRAP(err,LoadIniRepL(CIniFileIn::ERomOnly));
|
sl@0
|
979 |
}
|
sl@0
|
980 |
if (err != KErrNone)
|
sl@0
|
981 |
{
|
sl@0
|
982 |
return EFalse;
|
sl@0
|
983 |
}
|
sl@0
|
984 |
}
|
sl@0
|
985 |
|
sl@0
|
986 |
ASSERT(iIniRep);
|
sl@0
|
987 |
TServerSetting* s = iIniRep->GetSettings().Find(aKey);
|
sl@0
|
988 |
if (s)
|
sl@0
|
989 |
{
|
sl@0
|
990 |
aMeta = s->Meta();
|
sl@0
|
991 |
return ETrue;
|
sl@0
|
992 |
}
|
sl@0
|
993 |
|
sl@0
|
994 |
return EFalse;
|
sl@0
|
995 |
}
|
sl@0
|
996 |
|
sl@0
|
997 |
void CServerRepository::RestoreInstallRepositoryL(TUid aUid, CStreamStore& aStore, TStreamId& aSettingStreamId, CRestoredRepository& aRstRepos)
|
sl@0
|
998 |
{
|
sl@0
|
999 |
iRepository = CSharedRepository::NewL(aUid);
|
sl@0
|
1000 |
CleanupStack::PushL(iRepository);
|
sl@0
|
1001 |
iUid = aUid;
|
sl@0
|
1002 |
RestoreRepositorySettingValuesL(aStore, aSettingStreamId, aRstRepos);
|
sl@0
|
1003 |
CommitChangesL(EInstall);
|
sl@0
|
1004 |
CleanupStack::PopAndDestroy(iRepository);
|
sl@0
|
1005 |
iRepository = NULL;
|
sl@0
|
1006 |
}
|
sl@0
|
1007 |
|
sl@0
|
1008 |
void CServerRepository::BackupInstallRepositoryL(TUid aUid, CStreamStore& aStore, TStreamId& aSettingStreamId)
|
sl@0
|
1009 |
{
|
sl@0
|
1010 |
TServerResources::iObserver->LoadRepositoryLC(aUid, EFalse, iRepository, CIniFileIn::EInstallOnly);
|
sl@0
|
1011 |
iUid = aUid;
|
sl@0
|
1012 |
StoreRepositorySettingValuesL(aStore, aSettingStreamId);
|
sl@0
|
1013 |
CleanupStack::PopAndDestroy(iRepository);
|
sl@0
|
1014 |
iRepository = NULL;
|
sl@0
|
1015 |
}
|
sl@0
|
1016 |
|
sl@0
|
1017 |
TInt CServerRepository::CheckAccessPolicyBeforeMoving(const TClientRequest& aMessage, const TServerSetting* aSourceSetting,
|
sl@0
|
1018 |
TUint32 aSourceKey, const TServerSetting* aTargetSetting, TUint32 aTargetKey, TUint32& aErrorKey)
|
sl@0
|
1019 |
{
|
sl@0
|
1020 |
TInt error = KErrNone;
|
sl@0
|
1021 |
|
sl@0
|
1022 |
if (aTargetSetting && !aTargetSetting->IsDeleted())
|
sl@0
|
1023 |
{
|
sl@0
|
1024 |
error=KErrAlreadyExists;
|
sl@0
|
1025 |
aErrorKey=aTargetKey;
|
sl@0
|
1026 |
}
|
sl@0
|
1027 |
|
sl@0
|
1028 |
if (!aMessage.CheckPolicy(GetReadAccessPolicy(*aSourceSetting),
|
sl@0
|
1029 |
__PLATSEC_DIAGNOSTIC_STRING("CenRep: CServerRepository::MoveL - Attempt made to read a setting")))
|
sl@0
|
1030 |
{
|
sl@0
|
1031 |
error = KErrPermissionDenied;
|
sl@0
|
1032 |
aErrorKey = aSourceKey;
|
sl@0
|
1033 |
}
|
sl@0
|
1034 |
else if (!aMessage.CheckPolicy(GetWriteAccessPolicy(*aSourceSetting),
|
sl@0
|
1035 |
__PLATSEC_DIAGNOSTIC_STRING("CenRep: CServerRepository::MoveL - Attempt made to delete a setting")))
|
sl@0
|
1036 |
{
|
sl@0
|
1037 |
error = KErrPermissionDenied;
|
sl@0
|
1038 |
aErrorKey = aSourceKey;
|
sl@0
|
1039 |
}
|
sl@0
|
1040 |
else if (error == KErrAlreadyExists)
|
sl@0
|
1041 |
{
|
sl@0
|
1042 |
// set error to KErrPermissionDenied in preference to KErrAlreadyExists
|
sl@0
|
1043 |
if (!aMessage.CheckPolicy(GetWriteAccessPolicy(*aTargetSetting),
|
sl@0
|
1044 |
__PLATSEC_DIAGNOSTIC_STRING("CenRep: CServerRepository::MoveL - Attempt made to create a setting")))
|
sl@0
|
1045 |
{
|
sl@0
|
1046 |
error = KErrPermissionDenied;
|
sl@0
|
1047 |
aErrorKey = aTargetKey;
|
sl@0
|
1048 |
}
|
sl@0
|
1049 |
}
|
sl@0
|
1050 |
else if (!aMessage.CheckPolicy(GetFallbackWriteAccessPolicy(aTargetKey),
|
sl@0
|
1051 |
__PLATSEC_DIAGNOSTIC_STRING("CenRep: CServerRepository::MoveL - Attempt made to create a setting")))
|
sl@0
|
1052 |
{
|
sl@0
|
1053 |
error = KErrPermissionDenied;
|
sl@0
|
1054 |
aErrorKey = aTargetKey;
|
sl@0
|
1055 |
}
|
sl@0
|
1056 |
return error;
|
sl@0
|
1057 |
}
|