os/ossrv/lowlevellibsandfws/apputils/tsrc/T_BackupServerIPC.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2008-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
//
sl@0
    15
sl@0
    16
sl@0
    17
#include <e32test.h>
sl@0
    18
#include <e32math.h>
sl@0
    19
#include <e32debug.h>
sl@0
    20
sl@0
    21
#include "backup_std.h"
sl@0
    22
sl@0
    23
LOCAL_D RTest				TheTest (_L("T_BackupServerIPC"));
sl@0
    24
LOCAL_D CActiveScheduler*	TheScheduler;
sl@0
    25
_LIT(KServerLauncherProcess, "T_BackupServerLauncher");
sl@0
    26
_LIT(KServerStartProcess, "baksrvs");
sl@0
    27
sl@0
    28
_LIT(KServerName, "!BackupServer");
sl@0
    29
sl@0
    30
struct TTestInfo
sl@0
    31
	{
sl@0
    32
	TInt iFunction;
sl@0
    33
	TInt iType;
sl@0
    34
	TInt iArgCount;
sl@0
    35
	};
sl@0
    36
sl@0
    37
struct TExitDetails
sl@0
    38
	{
sl@0
    39
	TExitCategoryName iCategory;
sl@0
    40
	TExitType iExitType;
sl@0
    41
	TInt iReason;
sl@0
    42
	};
sl@0
    43
sl@0
    44
const TInt KAsynchDelay = 500000;
sl@0
    45
sl@0
    46
//===============================================================================
sl@0
    47
sl@0
    48
TBool IsFunctionAsynchronous(TInt aFunc)
sl@0
    49
	{
sl@0
    50
	TBool asynch = EFalse;
sl@0
    51
	switch(aFunc)
sl@0
    52
		{
sl@0
    53
		case EBakOpCodeEventReady:
sl@0
    54
		case EBakOpCodeCloseAllFiles:
sl@0
    55
		case EBakOpCodeCloseServer:
sl@0
    56
		case EBakOpCodeBackupOperationEventReady:
sl@0
    57
			asynch = ETrue;
sl@0
    58
			break;
sl@0
    59
sl@0
    60
		default:
sl@0
    61
			break;
sl@0
    62
		}
sl@0
    63
	return asynch;
sl@0
    64
	}
sl@0
    65
sl@0
    66
class RIpcFuzzTest : public RSessionBase
sl@0
    67
{
sl@0
    68
public: // Constructors and destructor
sl@0
    69
sl@0
    70
	/**
sl@0
    71
		* Constructor for performing 1st stage construction
sl@0
    72
		*/
sl@0
    73
	RIpcFuzzTest();
sl@0
    74
sl@0
    75
	/**
sl@0
    76
		* Destructor.
sl@0
    77
		*/
sl@0
    78
	~RIpcFuzzTest();
sl@0
    79
sl@0
    80
	/**
sl@0
    81
		* Performs test steps
sl@0
    82
		*/
sl@0
    83
sl@0
    84
	void RunTestL(const TDesC& aTargetSrvName, TInt aFunc,
sl@0
    85
				TInt aTestType, TInt aArgCount);
sl@0
    86
sl@0
    87
private:
sl@0
    88
	TInt Fuzz(TInt aMsg, TInt aArgCount);
sl@0
    89
	TInt FuzzL(TInt aMsg, TInt aArgCount);
sl@0
    90
	TInt Fuzz8L(TInt aMsg, TInt aArgCount);
sl@0
    91
};
sl@0
    92
sl@0
    93
RIpcFuzzTest::RIpcFuzzTest()
sl@0
    94
	{
sl@0
    95
	// No implementation required
sl@0
    96
	}
sl@0
    97
sl@0
    98
sl@0
    99
RIpcFuzzTest::~RIpcFuzzTest()
sl@0
   100
	{
sl@0
   101
	Close();
sl@0
   102
	}
sl@0
   103
sl@0
   104
TInt RIpcFuzzTest::Fuzz(TInt aMsg, TInt aArgCount)
sl@0
   105
	{
sl@0
   106
	TIpcArgs args;
sl@0
   107
sl@0
   108
	for(TInt i = 0; i < aArgCount;i++)
sl@0
   109
		{
sl@0
   110
		args.Set(i,Math::Random());
sl@0
   111
		}
sl@0
   112
sl@0
   113
	TInt ret;
sl@0
   114
sl@0
   115
	if(IsFunctionAsynchronous(aMsg))
sl@0
   116
		{
sl@0
   117
		ret = Send(aMsg, args);
sl@0
   118
		User::After(KAsynchDelay);
sl@0
   119
		}
sl@0
   120
	else
sl@0
   121
		{
sl@0
   122
		ret = SendReceive(aMsg, args);
sl@0
   123
		}
sl@0
   124
	return ret;
sl@0
   125
	}
sl@0
   126
sl@0
   127
TInt RIpcFuzzTest::Fuzz8L(TInt aMsg, TInt aArgCount)
sl@0
   128
	{
sl@0
   129
	HBufC8* buf = HBufC8::NewLC(255);
sl@0
   130
	TPtr8 ptr = buf->Des();
sl@0
   131
	ptr.Fill(Math::Random(),255);
sl@0
   132
sl@0
   133
	TIpcArgs args;
sl@0
   134
sl@0
   135
	for(TInt i = 0; i < aArgCount;i++)
sl@0
   136
		{
sl@0
   137
		args.Set(i,&ptr);
sl@0
   138
		}
sl@0
   139
sl@0
   140
	TInt ret;
sl@0
   141
sl@0
   142
	if(IsFunctionAsynchronous(aMsg))
sl@0
   143
		{
sl@0
   144
		ret = Send(aMsg, args);
sl@0
   145
		User::After(KAsynchDelay);
sl@0
   146
		}
sl@0
   147
	else
sl@0
   148
		{
sl@0
   149
		ret = SendReceive(aMsg, args);
sl@0
   150
		}
sl@0
   151
sl@0
   152
	CleanupStack::PopAndDestroy(buf);
sl@0
   153
	return ret;
sl@0
   154
	}
sl@0
   155
sl@0
   156
TInt RIpcFuzzTest::FuzzL(TInt aMsg, TInt aArgCount)
sl@0
   157
	{
sl@0
   158
	HBufC* buf = HBufC::NewLC(255);
sl@0
   159
	TPtr ptr = buf->Des();
sl@0
   160
	ptr.Fill(Math::Random(),255);
sl@0
   161
sl@0
   162
	TIpcArgs args;
sl@0
   163
sl@0
   164
	for(TInt i = 0; i < aArgCount;i++)
sl@0
   165
		{
sl@0
   166
		args.Set(i,&ptr);
sl@0
   167
		}
sl@0
   168
sl@0
   169
	TInt ret;
sl@0
   170
sl@0
   171
	if(IsFunctionAsynchronous(aMsg))
sl@0
   172
		{
sl@0
   173
		ret = Send(aMsg, args);
sl@0
   174
		User::After(KAsynchDelay);
sl@0
   175
		}
sl@0
   176
	else
sl@0
   177
		{
sl@0
   178
		ret = SendReceive(aMsg, args);
sl@0
   179
		}
sl@0
   180
sl@0
   181
	CleanupStack::PopAndDestroy(buf);
sl@0
   182
	return ret;
sl@0
   183
	}
sl@0
   184
sl@0
   185
void RIpcFuzzTest::RunTestL(const TDesC& aTargetSrvName,
sl@0
   186
							TInt aFunc, TInt aTestType, TInt aArgCount)
sl@0
   187
	{
sl@0
   188
		TVersion version(0,0,0);
sl@0
   189
sl@0
   190
		User::LeaveIfError(CreateSession(aTargetSrvName, version, 200));
sl@0
   191
sl@0
   192
		switch(aTestType)
sl@0
   193
			{
sl@0
   194
			case 0:
sl@0
   195
				Fuzz(aFunc,aArgCount);
sl@0
   196
				break;
sl@0
   197
sl@0
   198
			case 1:
sl@0
   199
				Fuzz8L(aFunc,aArgCount);
sl@0
   200
				break;
sl@0
   201
sl@0
   202
			case 2:
sl@0
   203
				FuzzL(aFunc,aArgCount);
sl@0
   204
				break;
sl@0
   205
			}
sl@0
   206
	}
sl@0
   207
sl@0
   208
sl@0
   209
TInt KillProcess(const TDesC& aProcessName)
sl@0
   210
	{
sl@0
   211
	TFullName name;
sl@0
   212
sl@0
   213
	RDebug::Print(_L("Find and kill \"%S\" process.\n"), &aProcessName);
sl@0
   214
sl@0
   215
	TBuf<64> pattern(aProcessName);
sl@0
   216
	TInt length = pattern.Length();
sl@0
   217
	pattern += _L("*");
sl@0
   218
	TFindProcess procFinder(pattern);
sl@0
   219
sl@0
   220
	while (procFinder.Next(name) == KErrNone)
sl@0
   221
		{
sl@0
   222
		if (name.Length() > length)
sl@0
   223
			{//If found name is a string containing aProcessName string.
sl@0
   224
			TChar c(name[length]);
sl@0
   225
			if (c.IsAlphaDigit() ||
sl@0
   226
				c == TChar('_') ||
sl@0
   227
				c == TChar('-'))
sl@0
   228
				{
sl@0
   229
				// If the found name is other valid application name
sl@0
   230
				// starting with aProcessName string.
sl@0
   231
				RDebug::Print(_L(":: Process name: \"%S\".\n"), &name);
sl@0
   232
				continue;
sl@0
   233
				}
sl@0
   234
			}
sl@0
   235
		RProcess proc;
sl@0
   236
		if (proc.Open(name) == KErrNone)
sl@0
   237
			{
sl@0
   238
			proc.Kill(0);
sl@0
   239
			RDebug::Print(_L("\"%S\" process killed.\n"), &name);
sl@0
   240
			}
sl@0
   241
		proc.Close();
sl@0
   242
		}
sl@0
   243
	return KErrNone;
sl@0
   244
	}
sl@0
   245
sl@0
   246
sl@0
   247
TInt FuzzServerL(TAny* aTestInfo)
sl@0
   248
	{
sl@0
   249
   	CTrapCleanup* cleanup=CTrapCleanup::New();
sl@0
   250
   	TInt err=KErrNoMemory;
sl@0
   251
   	if (cleanup)
sl@0
   252
   		{
sl@0
   253
sl@0
   254
		TTestInfo* info = (TTestInfo*)aTestInfo;
sl@0
   255
		RIpcFuzzTest fuzzer;
sl@0
   256
sl@0
   257
		TRAP(err,fuzzer.RunTestL(KServerName,info->iFunction
sl@0
   258
				,info->iType, info->iArgCount));
sl@0
   259
sl@0
   260
		fuzzer.Close();
sl@0
   261
sl@0
   262
   		delete cleanup;
sl@0
   263
   		}
sl@0
   264
   	return err;
sl@0
   265
	}
sl@0
   266
sl@0
   267
void TestServerApi(TInt aFunctionNumber,
sl@0
   268
			TInt aTestType,TInt aArgCount, TExitDetails& aExitDetails)
sl@0
   269
	{
sl@0
   270
sl@0
   271
    TTestInfo testInfo;
sl@0
   272
	testInfo.iFunction = aFunctionNumber;
sl@0
   273
	testInfo.iType = aTestType;
sl@0
   274
	testInfo.iArgCount = aArgCount;
sl@0
   275
sl@0
   276
    RThread thread;
sl@0
   277
    _LIT(KThreadName,"FuzzerThread" );
sl@0
   278
	thread.Create(KThreadName,&FuzzServerL, KDefaultStackSize, NULL,&testInfo);
sl@0
   279
sl@0
   280
	TRequestStatus threadStat;
sl@0
   281
	thread.Logon(threadStat);
sl@0
   282
sl@0
   283
	TBool jit = User::JustInTime();
sl@0
   284
	User::SetJustInTime(EFalse);
sl@0
   285
sl@0
   286
	thread.Resume();
sl@0
   287
sl@0
   288
	User::WaitForRequest(threadStat);
sl@0
   289
sl@0
   290
	User::SetJustInTime(jit);
sl@0
   291
sl@0
   292
	aExitDetails.iCategory = thread.ExitCategory();
sl@0
   293
	aExitDetails.iReason = thread.ExitReason();
sl@0
   294
	aExitDetails.iExitType = thread.ExitType();
sl@0
   295
sl@0
   296
	thread.Close();
sl@0
   297
sl@0
   298
	}
sl@0
   299
sl@0
   300
sl@0
   301
TInt LaunchServer(RProcess& aServer)
sl@0
   302
	{
sl@0
   303
sl@0
   304
	TheTest.Printf(_L("Launching BackupServer...\n"));
sl@0
   305
sl@0
   306
	TInt err = aServer.Create(KServerLauncherProcess, _L(""));
sl@0
   307
sl@0
   308
	 if(err == KErrNone)
sl@0
   309
		 {
sl@0
   310
		 //Start server and wait until it is running
sl@0
   311
		 TRequestStatus serverStat;
sl@0
   312
		 aServer.SetJustInTime(false);
sl@0
   313
		 aServer.Resume();
sl@0
   314
sl@0
   315
		 aServer.Rendezvous(serverStat);
sl@0
   316
		 User::WaitForRequest(serverStat);
sl@0
   317
		 }
sl@0
   318
sl@0
   319
	 return err;
sl@0
   320
sl@0
   321
	}
sl@0
   322
sl@0
   323
void PrintTestMessage(TInt iFunc, TInt iType, TInt iArgCount)
sl@0
   324
	{
sl@0
   325
	switch(iType)
sl@0
   326
		{
sl@0
   327
		case 0:
sl@0
   328
			TheTest.Printf(_L("\nFuzz Test on function number %d using random Int data. Number of Args = %d\n"), iFunc, iArgCount);
sl@0
   329
			break;
sl@0
   330
sl@0
   331
		case 1:
sl@0
   332
			TheTest.Printf(_L("\nFuzz Test on function number %d using random Des8 data. Number of Args = %d\n"), iFunc, iArgCount);
sl@0
   333
			break;
sl@0
   334
sl@0
   335
		case 2:
sl@0
   336
			TheTest.Printf(_L("\nFuzz Test on function number %d using random Des data. Number of Args = %d\n"), iFunc, iArgCount);
sl@0
   337
			break;
sl@0
   338
sl@0
   339
		}
sl@0
   340
sl@0
   341
	}
sl@0
   342
sl@0
   343
/**
sl@0
   344
Invoke the tests
sl@0
   345
*/
sl@0
   346
/**
sl@0
   347
@SYMTestCaseID          SYSLIB-BAFL-CT-4039
sl@0
   348
@SYMTestCaseDesc	    Tests Bafl Backup Server APIs for IPC Robustness
sl@0
   349
@SYMTestPriority 	    High
sl@0
   350
@SYMTestActions  	    The function calls each of the Bafl Backup Server APIs through a
sl@0
   351
						custom session object passing random TInt, Des8 and Des16 data .
sl@0
   352
@SYMTestExpectedResults The server should be robust to all malformed messages and should not
sl@0
   353
						hang or panic.
sl@0
   354
@SYMDEF                	INC113760
sl@0
   355
*/
sl@0
   356
LOCAL_C void DoTestsL ()
sl@0
   357
    {
sl@0
   358
sl@0
   359
    RProcess server;
sl@0
   360
    const TInt KMinFuncNumber = 20;
sl@0
   361
    const TInt KMaxFuncNumber = 35;
sl@0
   362
sl@0
   363
    TInt err = LaunchServer(server);
sl@0
   364
    TheTest(err == 0);
sl@0
   365
sl@0
   366
    TExitDetails exitDetails;
sl@0
   367
sl@0
   368
    for(TInt i = KMinFuncNumber;i<= KMaxFuncNumber;i++)
sl@0
   369
    	{
sl@0
   370
sl@0
   371
    	//Carry out each type of test
sl@0
   372
    	for(TInt testType = 0; testType < 3;testType++)
sl@0
   373
    		{
sl@0
   374
       		//Carry out each test with number of arguments 1 - 4
sl@0
   375
    		for(TInt argCount = 1;argCount <= 4;argCount++)
sl@0
   376
    			{
sl@0
   377
    			PrintTestMessage(i, testType, argCount);
sl@0
   378
sl@0
   379
    			TestServerApi(i, testType, argCount, exitDetails);
sl@0
   380
		    	//Kill the server process and verify that it was still running
sl@0
   381
		    	//If the server was already dead it would return the reason it exited
sl@0
   382
	    		if(server.ExitType() != EExitPending)
sl@0
   383
	    			{
sl@0
   384
	    			server.Kill(0);
sl@0
   385
	    			TInt exitReason = server.ExitReason();
sl@0
   386
	    			server.Close();
sl@0
   387
	    			TheTest(exitReason == 0);
sl@0
   388
	    			User::LeaveIfError(LaunchServer(server));
sl@0
   389
	    			}
sl@0
   390
    			}
sl@0
   391
sl@0
   392
	    	TheTest.Printf(_L("\nFuzz Test Successful\n"));
sl@0
   393
    		}
sl@0
   394
    	}
sl@0
   395
    }
sl@0
   396
sl@0
   397
void SetupTestL()
sl@0
   398
	{
sl@0
   399
	TheScheduler = new (ELeave) CActiveScheduler;
sl@0
   400
   	CActiveScheduler::Install (TheScheduler);
sl@0
   401
sl@0
   402
	}
sl@0
   403
sl@0
   404
sl@0
   405
GLDEF_C TInt E32Main ()
sl@0
   406
	{
sl@0
   407
sl@0
   408
	TheTest.Printf (_L ("\n"));
sl@0
   409
	TheTest.Title ();
sl@0
   410
	TheTest.Start (_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-4039 IPC Fuzz Tests "));
sl@0
   411
sl@0
   412
   	CTrapCleanup* cleanup=CTrapCleanup::New();
sl@0
   413
sl@0
   414
   	TInt err=KErrNoMemory;
sl@0
   415
   	if (cleanup)
sl@0
   416
   		{
sl@0
   417
   		// Construct and install the active scheduler
sl@0
   418
   		TRAP(err, SetupTestL());
sl@0
   419
sl@0
   420
   		//Kill baksrvs which may have already been launched by another test
sl@0
   421
   		KillProcess(KServerStartProcess);
sl@0
   422
   		KillProcess(KServerLauncherProcess);
sl@0
   423
sl@0
   424
   		TRAP (err, DoTestsL ());
sl@0
   425
   		TheTest (err == KErrNone);
sl@0
   426
sl@0
   427
   		TheTest.End ();
sl@0
   428
   		TheTest.Close ();
sl@0
   429
sl@0
   430
   		delete TheScheduler;
sl@0
   431
   		delete cleanup;
sl@0
   432
sl@0
   433
   		}
sl@0
   434
	return err;
sl@0
   435
	}