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