os/security/cryptomgmtlibs/securitytestfw/test/captestframework/captestframeworkstep.cpp
Update contrib.
2 * Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of the License "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
24 #define __INCLUDE_CAPABILITY_NAMES__
25 #include <e32capability.h>
27 #include "captestframeworkstep.h"
28 #include "captestframework.h"
30 #include <test/testexecutelog.h>
35 CCapTestFrameworkStep::CCapTestFrameworkStep(TThoroughness aThoroughness)
36 : iThoroughness(aThoroughness)
40 CCapTestFrameworkStep::~CCapTestFrameworkStep()
46 TVerdict CCapTestFrameworkStep::doTestStepPreambleL()
48 User::LeaveIfError(iFs.Connect());
49 User::LeaveIfError(iFs.ShareProtected());
51 if (EFalse==GetStringFromConfig(ConfigSection(), _L("DllName"), iDllName))
56 GetBoolFromConfig(ConfigSection(), _L("OmitTCBCapInComplementSet"), iOmitTCBCapInComplementSet);
62 TVerdict CCapTestFrameworkStep::doTestStepL()
64 for (iCurrentTest=0; iCurrentTest < iFactory->NumberOfTests(); ++iCurrentTest)
67 INFO_PRINTF2(_L("Running %S"), &iFactory->Test(iCurrentTest)->Name());
68 INFO_PRINTF1(_L("Assumed to require:"));
69 INFO_PRINTF2(_L("\tSid: %x"), iFactory->Test(iCurrentTest)->SidRequired());
70 INFO_PRINTF2(_L("\tVid: %x"), iFactory->Test(iCurrentTest)->VidRequired());
71 PrintCapabilitySet(iFactory->Test(iCurrentTest)->CapabilitiesRequired(), _L("\tCapabilities: "));
72 RunTestStepL(iFactory->Test(iCurrentTest));
78 void CCapTestFrameworkStep::RunTestStepL(MCapabilityTest* aTest)
80 // figure out capabilities required
81 TCapabilitySet capsRequired=aTest->CapabilitiesRequired();
82 TUid sidRequired=aTest->SidRequired();
83 TUid vidRequired=aTest->VidRequired();
85 RArray<TTestEnvironment> capTestEnvs;
86 CleanupClosePushL(capTestEnvs);
88 GenerateEnvironmentsL(capsRequired, sidRequired, vidRequired, capTestEnvs);
90 // for all cap sets needed
91 for (TInt i=0; i < capTestEnvs.Count(); ++i)
93 INFO_PRINTF1(_L("With:"));
94 INFO_PRINTF2(_L("\tSid: %x"), capTestEnvs[i].iSid);
95 INFO_PRINTF2(_L("\tVid: %x"), capTestEnvs[i].iVid);
96 PrintCapabilitySet(capTestEnvs[i].iCaps, _L("\tCapabilities: "));
98 // Set the capabilities of the helper
99 SetupHelperL(capTestEnvs[i]);
101 // run the helper and check results
102 RunHelperL(iCurrentTest, capTestEnvs[i].iExpectPass);
105 CleanupStack::PopAndDestroy(&capTestEnvs);
108 void CCapTestFrameworkStep::RunHelperL(TInt aTestNumber, TBool aShouldPass)
113 User::LeaveIfError(p.Create(_L("tempcaptestframeworkhelper.exe"), KNullDesC));
115 p.SetParameter(KDllNameTransferSlot, iDllName);
116 p.SetParameter(KShouldPassTransferSlot, aShouldPass);
117 p.SetParameter(KTestNumberTransferSlot, aTestNumber);
119 _LIT(KLogFileName , "\\captestframework.txt");
120 TDriveUnit sysDrive(RFs::GetSystemDrive());
122 TBuf<128> logFileNameOnSysDrive = sysDrive.Name();
123 logFileNameOnSysDrive.Append(KLogFileName);
124 p.SetParameter(KLogFileNameTransferSlot, logFileNameOnSysDrive);
126 // Wait for the test to finish
131 User::WaitForRequest(a);
134 // Extract the info from the logfile
135 RFileReadStream logFile;
136 logFile.Open(iFs, logFileNameOnSysDrive, 0);
137 CleanupClosePushL(logFile);
141 TInt32 pass=logFile.ReadInt32L();
142 if (pass==ETestsEnded)
144 break; // end of file
146 else if (pass==EFileEnd)
148 // reached end of file marker, with no success
149 SetTestStepResult(EFail);
152 else if (pass==ETestFailed)
154 HBufC* text=HBufC::NewL(logFile, KMaxTInt);
155 ERR_PRINTF2(_L("%S"), text);
158 else if (pass==ETestPassed)
160 HBufC* text=HBufC::NewL(logFile, KMaxTInt);
161 INFO_PRINTF2(_L("%S"), text);
166 CleanupStack::PopAndDestroy(&logFile);
169 void CCapTestFrameworkStep::SetupHelperL(const TTestEnvironment& aEnvironment)
172 // SETCAP source_exe capability [-SID secureId] [-VID vendorId] [destination_path]
173 _LIT(KArgsFormat, "captestframeworkhelper.exe %X -SID %X -VID %X tempcaptestframeworkhelper.exe");
175 // The 'capability' command line argument is the hexadecimal value of the
176 // capabilities when they are represented as a bit-field. E.g. the 3 capabilities
177 // LocalServices, ReadUserData and WriteUserData would together have a value of:
179 // (1<<ECapabilityLocalServices) | (<<ECapabilityReadUserData) | (1<<ECapabilityWriteUserData)
181 // Which in hexadecimal is '1c000'
183 const TCapabilitySet& aCapSet=aEnvironment.iCaps;
185 for (TInt c = 0; c < ECapability_Limit; ++c)
187 if (aCapSet.HasCapability(TCapability(c)))
194 cmdLine.Format(KArgsFormat, caps, aEnvironment.iSid, aEnvironment.iVid);
196 User::LeaveIfError(p.Create(_L("setcap.exe"), cmdLine));
198 // Wait for setcap to finish
200 TRequestStatus& rs=s;
204 User::WaitForRequest(rs);
208 void CCapTestFrameworkStep::PrintCapabilitySet(const TCapabilitySet& aCapSet, const TDesC& aExtra)
211 string.AppendFormat(_L("%S"), &aExtra);
212 for (TInt c = 0; c < ECapability_Limit; ++c)
214 if (aCapSet.HasCapability(TCapability(c)))
217 const char *p=CapabilityNames[c];
225 if (string.Length()==aExtra.Length())
227 string.AppendFormat(_L("None"));
229 INFO_PRINTF1(string);
233 void CCapTestFrameworkStep::GenerateEnvironmentsL(const TCapabilitySet& aCapsNeeded, const TUid& aSidNeeded, const TUid& aVidNeeded, RArray<TTestEnvironment>& aEnvironments)
235 for (TUid sid={0}; sid.iUid <= aSidNeeded.iUid; sid.iUid+= aSidNeeded.iUid ? aSidNeeded.iUid : 1) // if no sid is needed then only do check once
237 TBool shouldPass=ETrue;
244 for (TUid vid={0}; vid.iUid <= aVidNeeded.iUid; vid.iUid+= aVidNeeded.iUid ? aVidNeeded.iUid : 1)
251 //For each IPC, your test should implement the following:
253 // If an IPC is controlled by one capability only, the test code should run
254 //first with the required capability only and second with the complement set
255 //of the required capability. If the first test is successful and the second
256 //a failure, the IPC value is proven to be controlled by the required capability
259 // If an IPC is controlled by n capabilities, the test code should run first with
260 //exact n required capabilities and after with any combination of all subsets of
261 //n-1 capabilities with the complement set.
263 // For example, ABC controls an IPC. The full list of capabilities is
264 //A, B, C, D, E and F. Test code with ABC must be successful, while test code
265 //with ABDEF, ACDEF, BCDEF must all fail.
267 // So, the number of tests to run to validate a IPC is the combination of n
268 //capabilities, n-1 at a time (i.e. n!/(n-1)! ) plus 1 exact positive test,
269 //therefore a total of n+1 tests.
271 // possibly positive case (depends on Sid and Vid settings)
272 aEnvironments.Append(TTestEnvironment(aCapsNeeded, sid, vid, shouldPass));
274 if (iThoroughness == EBasicChecks) // will fail when cap set is empty, but there is no TCapabilitySet::NotEmpty exported, write a replacement copy
276 // Just add one with no caps and expect to fail
277 TCapabilitySet noCaps;
278 aEnvironments.Append(TTestEnvironment(noCaps, sid, vid, EFalse));
282 // Thorough, cap sets as per comment above
283 for (TInt c = 0; c < ECapability_Limit; ++c)
285 if (aCapsNeeded.HasCapability(TCapability(c)))
287 // Need to add a new one with (aCapsNeeded / c) | ~aCapsNeeded
288 TCapabilitySet caps(aCapsNeeded);
289 caps.RemoveCapability(TCapability(c)); // take cap c away
290 caps.Union(InvertCapSet(aCapsNeeded)); // add in complement
292 aEnvironments.Append(TTestEnvironment(caps, sid, vid, EFalse)); // add to sets, should fail
295 } // end thorough cap tests
303 TVerdict CCapTestFrameworkStep::doTestStepPostambleL()
309 TCapabilitySet CCapTestFrameworkStep::InvertCapSet(const TCapabilitySet& aCapSet)
314 for (TInt c = 0; c < ECapability_Limit; ++c)
316 if (c == ECapabilityTCB && iOmitTCBCapInComplementSet)
320 if (!aCapSet.HasCapability(TCapability(c)))
322 ret.AddCapability(TCapability(c));
328 MCapabilityTestFactory* CCapTestFrameworkStep::SetupFactoryL()
330 User::LeaveIfError(iLibrary.Load(iDllName));
332 TLibraryFunction testFactory=iLibrary.Lookup(1);
333 iFactory=reinterpret_cast<MCapabilityTestFactory*>(testFactory());
339 TTestEnvironment::TTestEnvironment(const TCapabilitySet& aCaps, TUid aSid, TUid aVid, TBool aExpectPass)
340 : iCaps(aCaps), iSid(aSid), iVid(aVid), iExpectPass(aExpectPass)