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 |
// TPDStreamLoader class
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#include <s32file.h>
|
sl@0
|
19 |
#include "SC_Defs.h"
|
sl@0
|
20 |
#include "SC_StrmIn.h"
|
sl@0
|
21 |
|
sl@0
|
22 |
namespace DBSC
|
sl@0
|
23 |
{
|
sl@0
|
24 |
|
sl@0
|
25 |
/**
|
sl@0
|
26 |
MPolicyDomainLoader::RunL() implementation, which is used to load security policies
|
sl@0
|
27 |
from a binary file, create the related security policy objects and add them
|
sl@0
|
28 |
to CPolicyDomain instance, controlled by aPolicyDomainBuilder object.
|
sl@0
|
29 |
It is not called directly, but will be called back.
|
sl@0
|
30 |
@param aPolicyDomainBuilder TPolicyDomainBuilder instance, which will be used to add
|
sl@0
|
31 |
created security policy objects to the controlled by it collection.
|
sl@0
|
32 |
@leave System-wide error codes
|
sl@0
|
33 |
*/
|
sl@0
|
34 |
void TPDStreamLoader::RunL(TPolicyDomainBuilder& aPolicyDomainBuilder)
|
sl@0
|
35 |
{
|
sl@0
|
36 |
//Load policy file version
|
sl@0
|
37 |
TVersion fileVer;
|
sl@0
|
38 |
iStream >> fileVer.iMajor;
|
sl@0
|
39 |
iStream >> fileVer.iMinor;
|
sl@0
|
40 |
iStream >> fileVer.iBuild;
|
sl@0
|
41 |
//Check policy file version against the software version
|
sl@0
|
42 |
TInt fileVersion = CVERSION(fileVer.iMajor, fileVer.iMinor);
|
sl@0
|
43 |
if(KDBSCVersion < fileVersion)
|
sl@0
|
44 |
{
|
sl@0
|
45 |
__LEAVE(KErrNotSupported);
|
sl@0
|
46 |
}
|
sl@0
|
47 |
//
|
sl@0
|
48 |
CPolicyBase::RPolicyCollection policyColl;
|
sl@0
|
49 |
CleanupClosePushL(policyColl);
|
sl@0
|
50 |
//Load database policy
|
sl@0
|
51 |
LoadPolicyCollectionL(policyColl);
|
sl@0
|
52 |
CDbPolicy* dbPolicy = CDbPolicy::NewLC(policyColl);
|
sl@0
|
53 |
aPolicyDomainBuilder.SetDbPolicyL(dbPolicy);
|
sl@0
|
54 |
CleanupStack::Pop(dbPolicy);
|
sl@0
|
55 |
//Load all table policies
|
sl@0
|
56 |
TInt16 tblCnt;
|
sl@0
|
57 |
iStream >> tblCnt;
|
sl@0
|
58 |
for(TInt i=0;i<TInt(tblCnt);++i)
|
sl@0
|
59 |
{
|
sl@0
|
60 |
TBuf<KMaxFileName> tblName;
|
sl@0
|
61 |
iStream >> tblName;
|
sl@0
|
62 |
LoadPolicyCollectionL(policyColl);
|
sl@0
|
63 |
CTblPolicy* tblPolicy = CTblPolicy::NewLC(tblName, policyColl, dbPolicy);
|
sl@0
|
64 |
aPolicyDomainBuilder.AddTblPolicyL(tblPolicy);
|
sl@0
|
65 |
CleanupStack::Pop(tblPolicy);
|
sl@0
|
66 |
}
|
sl@0
|
67 |
CleanupStack::PopAndDestroy(&policyColl);
|
sl@0
|
68 |
//Load backup&restore SID (supported after version 1.1 (including 1.1)).
|
sl@0
|
69 |
if(fileVersion >= CVERSION(KDBSCMajorVersion1, KDBSCMinorVersion1_1))
|
sl@0
|
70 |
{
|
sl@0
|
71 |
TSecureId backupSID;
|
sl@0
|
72 |
iStream >> backupSID.iId;
|
sl@0
|
73 |
aPolicyDomainBuilder.SetBackupSID(backupSID);
|
sl@0
|
74 |
}
|
sl@0
|
75 |
}
|
sl@0
|
76 |
|
sl@0
|
77 |
/**
|
sl@0
|
78 |
Loads security policies collection from a binary file
|
sl@0
|
79 |
@param aPolicyColl A reference to a security policy collection object which has
|
sl@0
|
80 |
to be filled with the loaded security policies.
|
sl@0
|
81 |
@leave System-wide error codes
|
sl@0
|
82 |
*/
|
sl@0
|
83 |
void TPDStreamLoader::LoadPolicyCollectionL(CPolicyBase::RPolicyCollection& aPolicyColl)
|
sl@0
|
84 |
{
|
sl@0
|
85 |
aPolicyColl.Reset();
|
sl@0
|
86 |
TInt8 cnt;
|
sl@0
|
87 |
iStream >> cnt;
|
sl@0
|
88 |
for(TInt i=0;i<TInt(cnt);++i)
|
sl@0
|
89 |
{
|
sl@0
|
90 |
CPolicyBase::TPolicy policy;
|
sl@0
|
91 |
TInt8 type;
|
sl@0
|
92 |
iStream >> type;
|
sl@0
|
93 |
policy.iType = static_cast <TPolicyType> (type);
|
sl@0
|
94 |
TBuf8<sizeof(TSecurityPolicy)> buf;
|
sl@0
|
95 |
iStream >> buf;
|
sl@0
|
96 |
__LEAVE_IF_ERROR(policy.iData.Set(buf));
|
sl@0
|
97 |
__LEAVE_IF_ERROR(aPolicyColl.Append(policy));
|
sl@0
|
98 |
}
|
sl@0
|
99 |
}
|
sl@0
|
100 |
|
sl@0
|
101 |
} //end of - namespace DBSC
|