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.
14 // CPDTextLoader class
18 #define __INCLUDE_CAPABILITY_NAMES__
19 #define __REFERENCE_CAPABILITY_NAMES__
20 #include "e32capability.h"
22 #include "SC_Strings.h"
23 #include "SC_TextIn.h"
29 Max capability count, when SID or VID used.
32 const TInt KMaxCapabilityCount1 = 3;
35 Max capability count, when no SID and no VID are used.
38 const TInt KMaxCapabilityCount2 = 7;
40 static TInt CompareCapabilities(const TCapability& aLeft, const TCapability& aRight)
42 return aRight - aLeft;
46 TStmtProps describes an object representing text file statement type and value
47 (the right side of "=" expression)
62 StmtType2Class() function returns the statement class of the supplied statement type parameter.
63 @param aType Statement type.
64 @return Statement class.
67 static TStmtClass StmtType2Class(TStmtType aType)
76 return EStmtCPolicyObj;
80 return EStmtCPolicyType;
81 case EStmtTCapability:
84 return EStmtCPolicyItem;
98 const TInt KCapabilityCount = sizeof(CapabilityNames) / sizeof(CapabilityNames[0]);
101 CapabilityName2Id() function searches and returns the related capability ID having
102 the capability name as an input parameter.
103 @param aName Capability name
104 @return Related to aName capability ID
107 static TCapability CapabilityName2Id(const TDesC& aName)
109 const TInt KMaxCapabilityStringLen = 20;
111 TBufC8<KMaxCapabilityStringLen> cap;
112 TPtr8 capPtr (cap.Des());
116 for(TInt i=0;i<KCapabilityCount;++i)
118 if(0 == capPtr.CompareF(TBuf8<20>((TText8*)CapabilityNames[i])))
119 return (TCapability)i;
121 return (TCapability) -1; // Return 'None' if no other capabilities are found
125 Statement keywords, which format is:
127 KStmtKeywordT1 array is in 1:1 relation with KStmtT1 array, except the last KStmtT1
128 member - EStmtTInvalid - it does not have a match in KStmtKeywordT1 array.
131 const TDesC* const KStmtKeywordT1[] =
133 &KDbStr(), &KTblStr(), &KReadStr(), &KWriteStr(), &KSchemaStr(), &KBackupStr()
137 Statements count, which format is:
141 const TInt KStmtT1Count = sizeof(KStmtKeywordT1) / sizeof(KStmtKeywordT1[0]);
144 Statement IDs, which format is:
146 KStmtKeywordT1 array is in 1:1 relation with KStmtT1 array, except the last KStmtT1
147 member - EStmtTInvalid - it does not have a match in KStmtKeywordT1 array.
148 "EStmtTInvalid" always has to be the last array element.
151 const TStmtType KStmtT1[KStmtT1Count + 1] =
153 EStmtTDatabase, EStmtTTable, EStmtTRead, EStmtTWrite, EStmtTSchema, EStmtTBackup, EStmtTInvalid
157 StmtKeywordT1ToId() function searches and returns the related statement ID having
158 the statement keyword as an input parameter.
159 @param aKeyword Statement keyword
160 @return Related to aKeyword statement ID
163 static TStmtType StmtKeywordT1ToId(const TDesC& aKeyword)
166 for(i=0;i<KStmtT1Count && aKeyword.CompareF(*(KStmtKeywordT1[i]));++i)
173 Statement keywords, which format is:
175 KStmtKeywordT2 array is in 1:1 relation with KStmtT2 array, except the last KStmtT2
176 member - EStmtTInvalid - it does not have a match in KStmtKeywordT2 array.
179 const TDesC* const KStmtKeywordT2[] =
181 &KNameStr(), &KCapabilityStr(), &KSIDStr(), &KVIDStr()
185 Statements count, which format is:
189 const TInt KStmtT2Count = sizeof(KStmtKeywordT2) / sizeof(KStmtKeywordT2[0]);
192 Statement IDs, which format is:
194 KStmtKeywordT2 array is in 1:1 relation with KStmtT2 array, except the last KStmtT2
195 member - EStmtTInvalid - it does not have a match in KStmtKeywordT2 array.
196 EStmtTInvalid always has to be the last element in KStmtT2 array.
199 const TStmtType KStmtT2[KStmtT2Count + 1] =
201 EStmtTName, EStmtTCapability, EStmtTSID, EStmtTVID, EStmtTInvalid
205 StmtKeywordT2ToId() function searches and returns the related statement ID having
206 the statement keyword as an input parameter.
207 @param aKeyword Statement keyword
208 @return Related to aKeyword statement ID
211 static TStmtType StmtKeywordT2ToId(const TDesC& aKeyword)
214 for(i=0;i<KStmtT2Count && aKeyword.CompareF(*(KStmtKeywordT2[i]));++i)
221 TDes::Trim() does not work properly when the descriptor length is 0,
222 or the descriptor holds a NULL pointer.
225 static void Trim(TDes& aDes)
227 if(aDes.Length() > 0)
234 StmtType2PolicyType() function returns the related to aStmtType value - policy type.
235 @param aStmtType Statement type
236 @return The related policy type - R/W/S
239 static TPolicyType StmtType2PolicyType(TStmtType aStmtType)
256 Creates TSecurityPolicy instance of type 1: SID and a set of up to 3 capabilities.
257 @param aSid Security ID
258 @param aCapabilities Capabilities array.
259 @param aSecurityPolicy Output. Created security policy.
262 static void CreateSecurityPolicyT1(TSecureId aSid, const RArray<TCapability>& aCapabilities,
263 TSecurityPolicy& aSecurityPolicy)
265 TInt count = aCapabilities.Count();
268 aSecurityPolicy = TSecurityPolicy(aSid);
272 aSecurityPolicy = TSecurityPolicy(aSid, aCapabilities[0]);
276 aSecurityPolicy = TSecurityPolicy(aSid, aCapabilities[0], aCapabilities[1]);
280 aSecurityPolicy = TSecurityPolicy(aSid, aCapabilities[0], aCapabilities[1], aCapabilities[2]);
289 Creates TSecurityPolicy instance of type 2: VID and a set of up to 3 capabilities.
290 @param aVid Vendor ID
291 @param aCapabilities Capabilities array.
292 @param aSecurityPolicy Output. Created security policy.
295 static void CreateSecurityPolicyT2(TVendorId aVid, const RArray<TCapability>& aCapabilities,
296 TSecurityPolicy& aSecurityPolicy)
298 TInt count = aCapabilities.Count();
301 aSecurityPolicy = TSecurityPolicy(aVid);
305 aSecurityPolicy = TSecurityPolicy(aVid, aCapabilities[0]);
309 aSecurityPolicy = TSecurityPolicy(aVid, aCapabilities[0], aCapabilities[1]);
313 aSecurityPolicy = TSecurityPolicy(aVid, aCapabilities[0], aCapabilities[1], aCapabilities[2]);
322 Creates TSecurityPolicy instance of type 3: A set of up to 7 capabilities.
323 @param aCapabilities Capabilities array.
324 @param aSecurityPolicy Output. Created security policy.
327 static void CreateSecurityPolicyT3(const RArray<TCapability>& aCapabilities, TSecurityPolicy& aSecurityPolicy)
329 TInt count = aCapabilities.Count();
332 aSecurityPolicy = TSecurityPolicy(aCapabilities[0]);
336 aSecurityPolicy = TSecurityPolicy(aCapabilities[0], aCapabilities[1]);
340 aSecurityPolicy = TSecurityPolicy(aCapabilities[0], aCapabilities[1], aCapabilities[2]);
344 aSecurityPolicy = TSecurityPolicy(aCapabilities[0], aCapabilities[1], aCapabilities[2], aCapabilities[3]);
348 aSecurityPolicy = TSecurityPolicy(aCapabilities[0], aCapabilities[1], aCapabilities[2], aCapabilities[3], aCapabilities[4]);
352 aSecurityPolicy = TSecurityPolicy(aCapabilities[0], aCapabilities[1], aCapabilities[2], aCapabilities[3], aCapabilities[4], aCapabilities[5]);
356 aSecurityPolicy = TSecurityPolicy(aCapabilities[0], aCapabilities[1], aCapabilities[2], aCapabilities[3], aCapabilities[4], aCapabilities[5], aCapabilities[6]);
365 Creates TSecurityPolicy instance (initializing aSecurityPolicy parameter).
366 @param aSid Security ID
367 @param aVid Vendor ID
368 @param aCapabilities Capabilities array.
369 @leave KErrCorrupt Bad set of SID/VID/Capabilities
372 static void CreateSecurityPolicyL(TSecureId aSid, TVendorId aVid,
373 const RArray<TCapability>& aCapabilities,
374 TSecurityPolicy& aSecurityPolicy)
376 TInt cababilityCount = aCapabilities.Count();
377 if(aSid != 0 && aVid != 0)
379 __LEAVE(KErrCorrupt);
381 if(aSid != 0 || aVid != 0)
383 if(cababilityCount > KMaxCapabilityCount1)
385 __LEAVE(KErrCorrupt);
389 DBSC::CreateSecurityPolicyT1(aSid, aCapabilities, aSecurityPolicy);
393 DBSC::CreateSecurityPolicyT2(aVid, aCapabilities, aSecurityPolicy);
396 else if(cababilityCount > KMaxCapabilityCount2 || cababilityCount == 0)
398 __LEAVE(KErrCorrupt);
402 DBSC::CreateSecurityPolicyT3(aCapabilities, aSecurityPolicy);
408 inline CPDTextLoader::CPDTextLoader()
413 Standard phase-one factory method for CPDTextLoader instance.
414 CPDTextLoader instance will be used for loading a set of security policies information
415 from a text file, creating the related security policy objects and adding them to
416 a CPolicyDomain collection.
417 @param aFs File server session
418 @param aTextFileName Full text file path, which will be used as an input.
419 @return A pointer to just created CPDTextLoader instance.
420 @leave System-wide error codes, including KErrNoMemory.
422 CPDTextLoader* CPDTextLoader::NewLC(RFs& aFs, const TDesC& aTextFileName)
424 CPDTextLoader* self = new (ELeave) CPDTextLoader;
425 CleanupStack::PushL(self);
426 self->ConstructL(aFs, aTextFileName);
432 CPDTextLoader::~CPDTextLoader()
438 Standard phase-two construction method for CPDTextLoader instance.
439 @param aFs File server session
440 @param aTextFileName Full text file path, which will be used as an input.
442 void CPDTextLoader::ConstructL(RFs& aFs, const TDesC& aTextFileName)
444 __LEAVE_IF_ERROR(iRdStream.Open(aFs, aTextFileName, EFileRead | EFileStreamText));
448 MPolicyDomainLoader::RunL() implementation, which is used to load security policies
449 from a text file, create the related security policy objects and add them
450 to CPolicyDomain instance, controlled by aPolicyDomainBuilder object.
451 It is not called directly, but will be called back.
452 @param aPolicyDomainBuilder TPolicyDomainBuilder instance, which will be used to add
453 created security policy objects to the controlled by it collection.
454 @leave System-wide error codes
456 void CPDTextLoader::RunL(TPolicyDomainBuilder& aPolicyDomainBuilder)
458 TStmtProps stmtProps;
459 const CDbPolicy* dbPolicy = LoadDbPolicyL(aPolicyDomainBuilder, stmtProps);
461 LoadTblPoliciesL(aPolicyDomainBuilder, stmtProps, dbPolicy);
462 LoadBackupSIDL(aPolicyDomainBuilder, stmtProps);
466 The method returns ETrue if this is the end of file.
467 @return ETrue - EOF, EFalse otherwise
469 TBool CPDTextLoader::IsEofL()
471 return iRdStream.Source()->TellL(MStreamBuf::ERead) >= iRdStream.Source()->SizeL();
475 The method parses a line from the text file, detects its type and gets the right side
476 of "=" as a text line data descriptor. The information will be stored in aStmtProps
477 parameter. If the text line is not recognizable, the method leaves with KErrCorrupt.
478 Recognizable text line formats are:
484 @param aStmt Current text line
485 @param aStmtProps The collected information will be stored there. Output parameter.
486 @leave KErrCorrupt - the text line has unknown format
488 void CPDTextLoader::GetStmtPropsL(const TDesC& aStmt, TStmtProps& aStmtProps) const
490 aStmtProps.iValue.Set(aStmt);
491 if(aStmt.Length() == 0)
493 aStmtProps.iType = EStmtTBlank;
496 else if(aStmt[0] == ';')
498 aStmtProps.iType = EStmtTComment;
501 TBool res = TryGetStmt1Props(aStmt, aStmtProps);
504 res = TryGetStmt2Props(aStmt, aStmtProps);
508 __LEAVE(KErrCorrupt);
513 Tries to process a text line as a:
517 @param aStmt Current text line
518 @param aStmtProps Output parameter
519 @return ETrue, if it is recognizable text line. Then the method will set the text line type
520 in aStmtProps.iType data member.
521 EFalse This is not recognizable text line with <keyword> or <[keyword]> format.
523 TBool CPDTextLoader::TryGetStmt1Props(const TDesC& aStmt, TStmtProps& aStmtProps) const
525 aStmtProps.iType = DBSC::StmtKeywordT1ToId(aStmt);
526 return aStmtProps.iType != EStmtTInvalid;
530 Tries to process a text line as a:
532 @param aStmt Current text line
533 @param aStmtProps Output parameter
534 @return ETrue, if it is recognizable text line. Then the method will set the text line type
535 in aStmtProps.iType data member and the line value in aStmtProps.iValue
536 data member. The text will be converted to a upper case.
537 EFalse This is not recognizable text line with <keyword>=<value> format.
539 TBool CPDTextLoader::TryGetStmt2Props(const TDesC& aStmt, TStmtProps& aStmtProps) const
541 TInt eqPos = aStmt.Find(KEqStr);
542 if(eqPos != KErrNotFound && eqPos < (aStmt.Length() - 1))
544 TPtr stmtKeyword(const_cast <TText*> (aStmt.Left(eqPos).Ptr()), eqPos, eqPos);
545 DBSC::Trim(stmtKeyword);
546 aStmtProps.iType = DBSC::StmtKeywordT2ToId(stmtKeyword);
547 if(aStmtProps.iType != EStmtTInvalid)
549 TInt valPos = eqPos + 1;
550 TInt valLen = aStmt.Length() - valPos;
551 TPtr value(const_cast <TText*> (aStmt.Mid(valPos).Ptr()), valLen, valLen);
553 aStmtProps.iValue.Set(value);
561 The method loads a single text line from the file in the place, pointed by aStmt parameter.
562 @param aStmt The place, where the text line data will be stored
563 @return ETrue This not the end of file, the information in aStmt is valid.
565 @leave System-wide error codes, including KErrCorrupt - unknown file format.
567 TBool CPDTextLoader::LoadStmtL(TPtr& aStmt)
575 iRdStream.ReadL(iStmt8, char_LF);
577 const TInt len = aStmt.Length();
579 {//Unknown text file format. The text line should have at the end CR-LF pair.
580 __LEAVE(KErrCorrupt);
582 if(TChar(aStmt[len - 1]) != char_LF)
584 __LEAVE(KErrCorrupt);
586 aStmt.SetLength(len - 1);
587 //The last character is (CR). Check for (LF).
589 if(TChar(aStmt[len - 2]) == char_CR)
591 aStmt.SetLength(len - 2);
598 The method loads a single text line from the file in the place, pointed by iStmt data member
599 skipping lines with comments and blank lines.
600 @param aStmtProps Output parameter. It will be initialized after the call.
601 @return Statement class.
602 @leave System-wide error codes, including KErrCorrupt - unknown file format.
604 TStmtClass CPDTextLoader::LoadNextStmtL(TStmtProps& aStmtProps)
606 TPtr stmt(const_cast <TText*> (iStmt.Ptr()), 0, iStmt.MaxLength());
607 TStmtClass stmtClass = EStmtCInvalid;
612 aStmtProps.iType = EStmtTEof;
615 GetStmtPropsL(stmt, aStmtProps);
617 while((stmtClass = DBSC::StmtType2Class(aStmtProps.iType)) == EStmtCNoData);
622 The method loads a single text line from the file in the place, pointed by iStmt data member
623 skipping lines with comments and blank lines. The loaded text line type is expected to be
625 @param aStmtProps Output parameter. It will be initialized after the call.
626 @param aStmtType Expected type of the loaded text line.
627 @leave System-wide error codes, including KErrCorrupt - unknown file format or the loaded line type is
628 not the expected type.
630 void CPDTextLoader::LoadNextStmtOfTypeL(TStmtProps& aStmtProps, TStmtType aStmtType)
632 (void)LoadNextStmtL(aStmtProps);
633 if(aStmtProps.iType != aStmtType)
635 __LEAVE(KErrCorrupt);
640 The method loads all database policy related data from the text file.
641 @param aPolicyDomainBuilder TPolicyDomainBuilder instance, which will be used to add
642 created database security policy object to the controlled by it policy collection.
643 @param aStmtProps The information about the last loaded text line.
644 @return A const pointer to just created database policy object from loaded text data.
645 @leave System-wide error codes.
647 const CDbPolicy* CPDTextLoader::LoadDbPolicyL(TPolicyDomainBuilder& aPolicyDomainBuilder,
648 TStmtProps& aStmtProps)
650 LoadNextStmtOfTypeL(aStmtProps, EStmtTDatabase);
652 CPolicyBase::RPolicyCollection policyColl;
653 CleanupClosePushL(policyColl);
655 LoadSecurityPoliciesL(policyColl, aStmtProps);
657 CDbPolicy* dbPolicy = CDbPolicy::NewLC(policyColl);
658 aPolicyDomainBuilder.SetDbPolicyL(dbPolicy);
659 CleanupStack::Pop(dbPolicy);
661 CleanupStack::PopAndDestroy(&policyColl);
666 The method loads all table policy related data from the text file.
667 @param aPolicyDomainBuilder TPolicyDomainBuilder instance, which will be used to add
668 created table security policy objects to the controlled by it policy collection.
669 @param aStmtProps The information about the last loaded text line.
670 @param aDbPolicy A const pointer to the database policy object, created previously from loaded text data.
671 @leave System-wide error codes.
673 void CPDTextLoader::LoadTblPoliciesL(TPolicyDomainBuilder& aPolicyDomainBuilder,
674 TStmtProps& aStmtProps, const CDbPolicy* aDbPolicy)
677 CPolicyBase::RPolicyCollection policyColl;
678 CleanupClosePushL(policyColl);
679 while(aStmtProps.iType == EStmtTTable)
681 LoadNextStmtOfTypeL(aStmtProps, EStmtTName);
682 TBufC<KMaxFileName> tableName;
683 tableName = aStmtProps.iValue;
685 LoadSecurityPoliciesL(policyColl, aStmtProps);
687 CTblPolicy* tblPolicy = CTblPolicy::NewLC(tableName, policyColl, aDbPolicy);
688 aPolicyDomainBuilder.AddTblPolicyL(tblPolicy);
689 CleanupStack::Pop(tblPolicy);
691 CleanupStack::PopAndDestroy(&policyColl);
695 The method loads the backup & restore SID, if it is in the file.
696 @param aPolicyDomainBuilder TPolicyDomainBuilder instance, which will be used to store
697 loaded backup & restore SID.
698 @param aStmtProps The information about the last loaded text line.
699 @leave System-wide error codes.
701 void CPDTextLoader::LoadBackupSIDL(TPolicyDomainBuilder& aPolicyDomainBuilder,
702 TStmtProps& aStmtProps)
704 TSecureId backupSID((TUint32)ECapability_None);//ECapability_None is used in TSecurityPolicy constructors too.
705 if(aStmtProps.iType == EStmtTBackup)
707 LoadNextStmtOfTypeL(aStmtProps, EStmtTSID);
708 backupSID = GetIdL(aStmtProps.iValue);
710 else if(aStmtProps.iType != EStmtTEof)
712 __LEAVE(KErrCorrupt);
714 aPolicyDomainBuilder.SetBackupSID(backupSID);
718 The method loads all database/table related security policy information from the text file.
719 @param aPolicyColl Output parameter - an array, which elements type is CPolicyBase::RPolicyCollection.
720 The collected from the text file security policy information wil be stored there.
721 @param aStmtProps The information about the last loaded text line.
722 @leave System-wide error codes.
724 void CPDTextLoader::LoadSecurityPoliciesL(CPolicyBase::RPolicyCollection& aPolicyColl,
725 TStmtProps& aStmtProps)
728 (void)LoadNextStmtL(aStmtProps);
729 while(DBSC::StmtType2Class(aStmtProps.iType) == EStmtCPolicyType)
731 CPolicyBase::TPolicy policy;
732 policy.iType = DBSC::StmtType2PolicyType(aStmtProps.iType);
733 __ASSERT(policy.iType != EPTNone);
734 LoadSecurityPolicyL(policy.iData, aStmtProps);
735 __LEAVE_IF_ERROR(aPolicyColl.Append(policy));
737 if(aPolicyColl.Count() == 0)
739 __LEAVE(KErrCorrupt);
744 The method loads a single security policy from the text file.
745 @param aSecurityPolicy Output parameter - the information from the file will be stored there.
746 The collected from the text file security policy information wil be stored there.
747 @param aStmtProps The information about the last loaded text line.
748 @leave System-wide error codes.
750 void CPDTextLoader::LoadSecurityPolicyL(TSecurityPolicy& aSecurityPolicy,
751 TStmtProps& aStmtProps)
755 RArray<TCapability> capabilities;
756 CleanupClosePushL(capabilities);
757 while(LoadNextStmtL(aStmtProps) == EStmtCPolicyItem)
759 if(aStmtProps.iType == EStmtTCapability)
761 GetCapabilitiesL(aStmtProps.iValue, capabilities);
763 else if(aStmtProps.iType == EStmtTSID)
766 {//duplicated SID text line
767 __LEAVE(KErrCorrupt);
769 sid = GetIdL(aStmtProps.iValue);
771 else if(aStmtProps.iType == EStmtTVID)
774 {//duplicated VID text line
775 __LEAVE(KErrCorrupt);
777 vid = GetIdL(aStmtProps.iValue);
784 if(capabilities.Count() == 0 && sid == 0 && vid == 0)
785 {//invalid security policy data
786 __LEAVE(KErrCorrupt);
788 DBSC::CreateSecurityPolicyL(sid, vid, capabilities, aSecurityPolicy);
789 CleanupStack::PopAndDestroy(&capabilities);
793 The method parses a string with capabilities information and puts found capabilities in aCapability
795 @param aCapabilityStr Capabilities string.
796 @param aCapabilities The collected capabilities will be stored there.
797 @leave System-wide error codes. KErrCorrupt, if aCapability is not 0, which means there are
798 2 or more capability strings for the same policy.
800 void CPDTextLoader::GetCapabilitiesL(const TDesC& aCapabilityStr,
801 RArray<TCapability>& aCapabilities) const
803 if(aCapabilities.Count() > 0)
804 {//No more than one "capability" statement in the text file!
805 __LEAVE(KErrCorrupt);
807 TLinearOrder<TCapability> linearOrder(&DBSC::CompareCapabilities);
808 TLex lex(aCapabilityStr);
809 for(TPtrC token=lex.NextToken();token.Length()!=0;token.Set(lex.NextToken()))
811 TCapability cap = DBSC::CapabilityName2Id(token);
812 if(cap != ECapability_Limit)
813 {//InsertInOrder() - to warn the user in case of duplicates
814 __LEAVE_IF_ERROR(aCapabilities.InsertInOrder(cap, linearOrder));
818 __LEAVE(KErrGeneral);//Unknown capability
824 @param aStr A string with SID or VID.
825 @return The UID, extracted from the string
826 @leave System-wide error codes.
828 TUint CPDTextLoader::GetIdL(const TDesC& aStr) const
832 __LEAVE_IF_ERROR(lex.Val(id, EHex));
835 __LEAVE(KErrCorrupt);
840 } //end of - namespace DBSC