os/security/cryptomgmtlibs/securitytestfw/test/captestframework/captestframeworkstep.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
     3 * All rights reserved.
     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".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description: 
    15 *
    16 */
    17 
    18 
    19 
    20 
    21 /**
    22  @file 
    23 */
    24 #define __INCLUDE_CAPABILITY_NAMES__
    25 #include <e32capability.h>
    26 
    27 #include "captestframeworkstep.h"
    28 #include "captestframework.h"
    29 
    30 #include <test/testexecutelog.h>
    31 #include <s32file.h>
    32 #include <f32file.h>
    33 
    34 
    35 CCapTestFrameworkStep::CCapTestFrameworkStep(TThoroughness aThoroughness)
    36 	: iThoroughness(aThoroughness)
    37 	{
    38 	}
    39 
    40 CCapTestFrameworkStep::~CCapTestFrameworkStep()
    41 	{
    42 	iLibrary.Close();
    43 	iFs.Close();	
    44 	}
    45 	
    46 TVerdict CCapTestFrameworkStep::doTestStepPreambleL()
    47 	{
    48 	User::LeaveIfError(iFs.Connect());
    49 	User::LeaveIfError(iFs.ShareProtected());
    50 	
    51 	if (EFalse==GetStringFromConfig(ConfigSection(), _L("DllName"), iDllName))
    52 		{
    53 		return EFail;
    54 		}
    55 
    56 	GetBoolFromConfig(ConfigSection(), _L("OmitTCBCapInComplementSet"), iOmitTCBCapInComplementSet);
    57 
    58 	SetupFactoryL();
    59 	return EPass;
    60 	}
    61 
    62 TVerdict CCapTestFrameworkStep::doTestStepL()
    63 	{
    64 	for (iCurrentTest=0; iCurrentTest < iFactory->NumberOfTests(); ++iCurrentTest)
    65 		{
    66 		INFO_PRINTF1(_L(""));
    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));
    73 		}
    74 	
    75 	return EPass;
    76 	}
    77 
    78 void CCapTestFrameworkStep::RunTestStepL(MCapabilityTest* aTest)
    79 	{
    80 	// figure out capabilities required
    81 	TCapabilitySet capsRequired=aTest->CapabilitiesRequired();
    82 	TUid sidRequired=aTest->SidRequired();
    83 	TUid vidRequired=aTest->VidRequired();
    84 	
    85 	RArray<TTestEnvironment> capTestEnvs;
    86 	CleanupClosePushL(capTestEnvs);
    87 	
    88 	GenerateEnvironmentsL(capsRequired, sidRequired, vidRequired, capTestEnvs);
    89 
    90 	// for all cap sets needed
    91 	for (TInt i=0; i < capTestEnvs.Count(); ++i)
    92 		{
    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: "));
    97 
    98 		// Set the capabilities of the helper
    99 		SetupHelperL(capTestEnvs[i]);
   100 
   101 		// run the helper and check results
   102 		RunHelperL(iCurrentTest, capTestEnvs[i].iExpectPass);
   103 		}
   104 	
   105 	CleanupStack::PopAndDestroy(&capTestEnvs);
   106 	}
   107 
   108 void CCapTestFrameworkStep::RunHelperL(TInt aTestNumber, TBool aShouldPass)
   109 	{
   110 	RProcess p;
   111 	
   112 	//Launching process
   113 	User::LeaveIfError(p.Create(_L("tempcaptestframeworkhelper.exe"), KNullDesC));
   114 
   115 	p.SetParameter(KDllNameTransferSlot, iDllName);
   116 	p.SetParameter(KShouldPassTransferSlot, aShouldPass);
   117 	p.SetParameter(KTestNumberTransferSlot, aTestNumber);
   118 	
   119 	_LIT(KLogFileName , "\\captestframework.txt");
   120 	TDriveUnit sysDrive(RFs::GetSystemDrive());
   121 	
   122 	TBuf<128> logFileNameOnSysDrive = sysDrive.Name();
   123 	logFileNameOnSysDrive.Append(KLogFileName);
   124 	p.SetParameter(KLogFileNameTransferSlot, logFileNameOnSysDrive);
   125 	
   126 	// Wait for the test to finish
   127 	TRequestStatus s;
   128 	TRequestStatus& a=s;
   129 	p.Logon(a);
   130 	p.Resume();
   131 	User::WaitForRequest(a);
   132 	p.Close();
   133 
   134 	// Extract the info from the logfile
   135 	RFileReadStream logFile;
   136 	logFile.Open(iFs, logFileNameOnSysDrive, 0);
   137 	CleanupClosePushL(logFile);
   138 
   139 	while (ETrue)
   140 		{
   141 		TInt32 pass=logFile.ReadInt32L();
   142 		if (pass==ETestsEnded)
   143 			{
   144 			break;	// end of file
   145 			}
   146 		else if (pass==EFileEnd)
   147 			{
   148 			// reached end of file marker, with no success
   149 			SetTestStepResult(EFail);
   150 			break;	
   151 			}
   152 		else if (pass==ETestFailed)
   153 			{
   154 			HBufC* text=HBufC::NewL(logFile, KMaxTInt);
   155 			ERR_PRINTF2(_L("%S"), text);
   156 			delete text;
   157 			}
   158 		else if (pass==ETestPassed)
   159 			{
   160 			HBufC* text=HBufC::NewL(logFile, KMaxTInt);
   161 			INFO_PRINTF2(_L("%S"), text);
   162 			delete text;
   163 			}
   164 		}	
   165 
   166 	CleanupStack::PopAndDestroy(&logFile);
   167 	}
   168 
   169 void CCapTestFrameworkStep::SetupHelperL(const TTestEnvironment& aEnvironment)
   170 	{
   171 	RProcess p;
   172 // SETCAP source_exe capability [-SID secureId] [-VID vendorId] [destination_path]
   173 	_LIT(KArgsFormat, "captestframeworkhelper.exe  %X -SID %X -VID %X tempcaptestframeworkhelper.exe");
   174 
   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:
   178 //
   179 // (1<<ECapabilityLocalServices) | (<<ECapabilityReadUserData) | (1<<ECapabilityWriteUserData)
   180 //
   181 // Which in hexadecimal is '1c000'
   182  
   183  	const TCapabilitySet& aCapSet=aEnvironment.iCaps;
   184 	TInt caps=0;
   185 	for (TInt c = 0; c < ECapability_Limit; ++c)
   186 		{
   187 		if (aCapSet.HasCapability(TCapability(c)))
   188 			{
   189 			caps+=(1<<c);
   190 			}
   191 		}
   192 
   193 	TBuf<512> cmdLine;
   194 	cmdLine.Format(KArgsFormat, caps, aEnvironment.iSid, aEnvironment.iVid);
   195 
   196 	User::LeaveIfError(p.Create(_L("setcap.exe"), cmdLine));
   197 	
   198 	// Wait for setcap to finish
   199 	TRequestStatus s;
   200 	TRequestStatus& rs=s;
   201 	p.Logon(rs);
   202 
   203 	p.Resume();
   204 	User::WaitForRequest(rs);
   205 	p.Close();
   206 	}
   207 
   208 void CCapTestFrameworkStep::PrintCapabilitySet(const TCapabilitySet& aCapSet, const TDesC& aExtra)
   209 	{
   210 	TBuf<512> string;
   211 	string.AppendFormat(_L("%S"), &aExtra);
   212 	for (TInt c = 0; c < ECapability_Limit; ++c)
   213 		{
   214 		if (aCapSet.HasCapability(TCapability(c)))
   215 			{
   216 			string.Append(' ');
   217 			const char *p=CapabilityNames[c];
   218 			
   219 			while(*p)
   220 				{
   221 				string.Append(*p++);
   222 				}
   223 			}
   224 		}
   225 	if (string.Length()==aExtra.Length())
   226 		{
   227 		string.AppendFormat(_L("None"));
   228 		}
   229 	INFO_PRINTF1(string);
   230 	}
   231 
   232 
   233 void CCapTestFrameworkStep::GenerateEnvironmentsL(const TCapabilitySet& aCapsNeeded, const TUid& aSidNeeded, const TUid& aVidNeeded, RArray<TTestEnvironment>& aEnvironments)
   234 	{
   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
   236 		{
   237 		TBool shouldPass=ETrue;
   238 
   239 		if (sid!=aSidNeeded)
   240 			{
   241 			shouldPass=EFalse;
   242 			}
   243 		
   244 		for (TUid vid={0}; vid.iUid <= aVidNeeded.iUid; vid.iUid+= aVidNeeded.iUid ? aVidNeeded.iUid : 1)
   245 			{
   246 			if (vid!=aVidNeeded)
   247 				{
   248 				shouldPass=EFalse;
   249 				}
   250 			
   251 			//For each IPC, your test should implement the following:
   252 			//
   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
   257 			//only. 
   258 			//
   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. 
   262 			//
   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.
   266 			//
   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.
   270 			
   271 			// possibly positive case (depends on Sid and Vid settings)
   272 			aEnvironments.Append(TTestEnvironment(aCapsNeeded, sid, vid, shouldPass));
   273 
   274 			if (iThoroughness == EBasicChecks) // will fail when cap set is empty, but there is no TCapabilitySet::NotEmpty exported, write a replacement copy
   275 				{
   276 				// Just add one with no caps and expect to fail
   277 				TCapabilitySet noCaps;
   278 				aEnvironments.Append(TTestEnvironment(noCaps, sid, vid, EFalse));
   279 				}
   280 			else
   281 				{
   282 				// Thorough, cap sets as per comment above 
   283 				for (TInt c = 0; c < ECapability_Limit; ++c)
   284 					{
   285 					if (aCapsNeeded.HasCapability(TCapability(c)))
   286 						{
   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
   291 
   292 						aEnvironments.Append(TTestEnvironment(caps, sid, vid, EFalse)); // add to sets, should fail
   293 						}
   294 					}
   295 				} // end thorough cap tests
   296 			
   297 			} // end vid loop
   298 		
   299 		} // end sid loop
   300 	}
   301 
   302 
   303 TVerdict CCapTestFrameworkStep::doTestStepPostambleL()
   304 	{
   305 	return EPass;
   306 	}
   307 
   308 // helper functions
   309 TCapabilitySet CCapTestFrameworkStep::InvertCapSet(const TCapabilitySet& aCapSet)
   310 	{
   311 	TCapabilitySet ret;
   312 	ret.SetEmpty();
   313 
   314 	for (TInt c = 0; c < ECapability_Limit; ++c)
   315 		{
   316 		if (c == ECapabilityTCB && iOmitTCBCapInComplementSet)
   317 			{
   318 			continue;
   319 			}
   320 		if (!aCapSet.HasCapability(TCapability(c)))
   321 			{
   322 			ret.AddCapability(TCapability(c));
   323 			}
   324 		}
   325 	return ret;
   326 	}
   327 
   328 MCapabilityTestFactory* CCapTestFrameworkStep::SetupFactoryL()
   329 	{
   330 	User::LeaveIfError(iLibrary.Load(iDllName));
   331 	
   332 	TLibraryFunction testFactory=iLibrary.Lookup(1);
   333 	iFactory=reinterpret_cast<MCapabilityTestFactory*>(testFactory());
   334 	
   335 	return iFactory;
   336 	}
   337 
   338 // TCapSetTestInfo
   339 TTestEnvironment::TTestEnvironment(const TCapabilitySet& aCaps, TUid aSid, TUid aVid, TBool aExpectPass)
   340 	: iCaps(aCaps), iSid(aSid), iVid(aVid), iExpectPass(aExpectPass)
   341 	{
   342 	}