os/ossrv/lowlevellibsandfws/pluginfw/Framework/SimpleTests/t_rogueplugin.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) 2006-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
#include <e32test.h>
sl@0
    17
#include <ecom/ecom.h>
sl@0
    18
#include "Interface.h" // ECOM CExampleInterface class
sl@0
    19
#include "exampleNine.h" // CRoguePlugin class
sl@0
    20
sl@0
    21
sl@0
    22
//Test utils for copying plugin to C
sl@0
    23
#include "EcomTestUtils.h"
sl@0
    24
sl@0
    25
_LIT(KTestTitle, "DEF094656 Rogue plugin should not override build-in");
sl@0
    26
sl@0
    27
LOCAL_D RTest TheTest(_L("Rogue plugin with duplicated Impl. UID"));
sl@0
    28
sl@0
    29
LOCAL_D TBool correctTypeCastPassed = EFalse;
sl@0
    30
sl@0
    31
_LIT(KRoguePluginDllOnZ,	"Z:\\RAMOnly\\exampleNine.dll");
sl@0
    32
_LIT(KRoguePluginDllOnC,	"C:\\sys\\bin\\exampleNine.dll");
sl@0
    33
_LIT(KRoguePluginRscOnZ,	"Z:\\RAMOnly\\exampleNine.rsc");
sl@0
    34
_LIT(KRoguePluginRscOnC,	"C:\\resource\\plugins\\exampleNine.rsc");
sl@0
    35
sl@0
    36
/** Copy the rogue plugin to C: drive
sl@0
    37
*/
sl@0
    38
LOCAL_C void CopyPluginsL()
sl@0
    39
    {
sl@0
    40
	// Copy the dlls and .rsc files on to RAM
sl@0
    41
	EComTestUtils::FileManCopyFileL(KRoguePluginDllOnZ, KRoguePluginDllOnC);
sl@0
    42
	EComTestUtils::FileManCopyFileL(KRoguePluginRscOnZ, KRoguePluginRscOnC);
sl@0
    43
	// Pause in case ECOM server is already up and running and needs
sl@0
    44
	// time to activate the scanning timer active object.
sl@0
    45
	User::After(3000000);
sl@0
    46
	}
sl@0
    47
sl@0
    48
/** Remove resource file and dll copied to C: drive
sl@0
    49
*/
sl@0
    50
LOCAL_C void DeleteTestPlugin()
sl@0
    51
	{
sl@0
    52
	TRAPD(ignoreErr, EComTestUtils::FileManDeleteFileL(KRoguePluginRscOnC));
sl@0
    53
	TRAP(ignoreErr, EComTestUtils::RLoaderDeleteFileL(KRoguePluginDllOnC));
sl@0
    54
	}
sl@0
    55
sl@0
    56
/**
sl@0
    57
Test rogue plugin trying to override a ROM based plugin by
sl@0
    58
duplicating the legitimate DLL's implementation UID (different
sl@0
    59
interface UID so that ECOM not treat it as an update).
sl@0
    60
sl@0
    61
@SYMTestCaseID			SYSLIB-ECOM-CIT-3161
sl@0
    62
@SYMTestCaseDesc	    Copy a rogue plugin to C drive. This plugin duplicates the
sl@0
    63
						implementation UID of a built-in dll. Test if the rogue
sl@0
    64
						plugin will over shadow the built-in dll.
sl@0
    65
@SYMTestPriority		High
sl@0
    66
@SYMTestActions			1. copy the rsc and dll of the rogue plugin to C:
sl@0
    67
						2. Use the CreateImplementation API which does not specify
sl@0
    68
						   the i/f UID to instantiate the built-in implementation.
sl@0
    69
						   Test the instance works normally.
sl@0
    70
						3. Repeat 2 but instantiate the pointer as the rogue plugin
sl@0
    71
						   class. Pass NULL as the initialising param in the call
sl@0
    72
						   to CreateImplementationL. Because the actual plugin returned by
sl@0
    73
						   ECOM needs this initParam, KERN-EXEC 3 panic occurs.
sl@0
    74
@SYMTestExpectedResults	The test must not fail.
sl@0
    75
@SYMDEF					DEF094656
sl@0
    76
*/
sl@0
    77
LOCAL_C void DEF094656_TestCaseL()
sl@0
    78
	{
sl@0
    79
	// DuplicateImplUidTestL SYSLIB-ECOM-CT-3157 is similar to this testcase.
sl@0
    80
	// CT-3157 tests higher driver letter > lower driver letter,
sl@0
    81
	// and lower i/f UID > higher i/f UID.
sl@0
    82
sl@0
    83
	// Note that this function is expected to panic. Hence not bother
sl@0
    84
	// with __UHEAP_MARK.
sl@0
    85
sl@0
    86
	//Check if the rogue plugin is in the registry.
sl@0
    87
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CIT-3161 "));
sl@0
    88
	RImplInfoPtrArray ifArray;
sl@0
    89
	REComSession::ListImplementationsL(KRogueInterfaceUid, ifArray);
sl@0
    90
sl@0
    91
	TInt count = ifArray.Count();
sl@0
    92
	TheTest.Printf(_L("Found %d implementations of I/f 0x%X"), count, KRogueInterfaceUid.iUid);
sl@0
    93
sl@0
    94
	TheTest(count == 1);
sl@0
    95
	TheTest(KRogueImplUid == ifArray[0]->ImplementationUid());
sl@0
    96
sl@0
    97
	ifArray.ResetAndDestroy();
sl@0
    98
sl@0
    99
	TUid dtor_key;
sl@0
   100
	// Initialisation parameter needed by CImplementationClassOne
sl@0
   101
	CExampleInterface::TExampleInterfaceInitParams initParams;
sl@0
   102
	initParams.integer		= 0;
sl@0
   103
	initParams.descriptor	= NULL;
sl@0
   104
sl@0
   105
	// First test creating the correct class.
sl@0
   106
	CExampleInterface* correctDll = reinterpret_cast<CExampleInterface*>(
sl@0
   107
		REComSession::CreateImplementationL(KRogueImplUid,
sl@0
   108
											dtor_key,
sl@0
   109
											&initParams) );
sl@0
   110
	TheTest(correctDll != NULL);
sl@0
   111
sl@0
   112
	TUid testUid = correctDll->ImplId();
sl@0
   113
	// the example plugins should return the value 10009DC3.
sl@0
   114
	TheTest(testUid == KRogueImplUid);
sl@0
   115
sl@0
   116
	REComSession::DestroyedImplementation(dtor_key);
sl@0
   117
	delete correctDll;
sl@0
   118
sl@0
   119
	// Indicate to thread creator that first stage test passed.
sl@0
   120
	correctTypeCastPassed = ETrue;
sl@0
   121
sl@0
   122
	// This create should crash because the plugin returned by
sl@0
   123
	// ECOM is really CImplementationClassOne which needs a properly
sl@0
   124
	// constructed initParam.
sl@0
   125
	CRoguePlugin* wrongDll = reinterpret_cast<CRoguePlugin*>(
sl@0
   126
		REComSession::CreateImplementationL(KRogueImplUid,
sl@0
   127
											dtor_key,
sl@0
   128
											NULL) );
sl@0
   129
sl@0
   130
	// If gets here then someone has changed CImplementationClassOne::NewL
sl@0
   131
	// or 10009DC3 has been updated by another implementation.
sl@0
   132
	if (wrongDll)
sl@0
   133
		{
sl@0
   134
		REComSession::DestroyedImplementation(dtor_key);
sl@0
   135
		delete wrongDll;
sl@0
   136
		}
sl@0
   137
sl@0
   138
	REComSession::FinalClose();
sl@0
   139
sl@0
   140
	TheTest(EFalse);
sl@0
   141
	}
sl@0
   142
sl@0
   143
LOCAL_C void ThreadMainL()
sl@0
   144
	{
sl@0
   145
	CConsoleBase* newConsole = Console::NewL(KTestTitle,
sl@0
   146
		TSize(KConsFullScreen, KConsFullScreen));
sl@0
   147
sl@0
   148
	// Thread creator needs to save the original console because this
sl@0
   149
	// thread is expected to crash, hence cannot cleanup.
sl@0
   150
	TheTest.SetConsole(newConsole);
sl@0
   151
	DEF094656_TestCaseL();
sl@0
   152
	TheTest.SetConsole(NULL);
sl@0
   153
sl@0
   154
	delete newConsole;
sl@0
   155
	}
sl@0
   156
sl@0
   157
LOCAL_C TInt ThreadFunc(TAny*)
sl@0
   158
	{
sl@0
   159
	__UHEAP_MARK;
sl@0
   160
	CTrapCleanup* threadcleanup = CTrapCleanup::New();
sl@0
   161
	TRAPD(err, ThreadMainL());
sl@0
   162
	delete threadcleanup;
sl@0
   163
	__UHEAP_MARKEND;
sl@0
   164
	return err;
sl@0
   165
	}
sl@0
   166
sl@0
   167
LOCAL_C void RunTestThreadL()
sl@0
   168
	{
sl@0
   169
	__UHEAP_MARK;
sl@0
   170
sl@0
   171
	CopyPluginsL();
sl@0
   172
sl@0
   173
	_LIT(KThreadName, "RoguePluginTest");
sl@0
   174
sl@0
   175
	TBool jit = User::JustInTime();
sl@0
   176
	User::SetJustInTime(EFalse);
sl@0
   177
sl@0
   178
	TheTest.Start(KTestTitle);
sl@0
   179
sl@0
   180
	// Save the console because the created thread must use its own
sl@0
   181
	// console.
sl@0
   182
	CConsoleBase* savedConsole = TheTest.Console();
sl@0
   183
sl@0
   184
	RThread tt;
sl@0
   185
	TInt err = tt.Create(KThreadName, &ThreadFunc, KDefaultStackSize,
sl@0
   186
		KMinHeapSize, 0x100000, 0);
sl@0
   187
	User::LeaveIfError(err);
sl@0
   188
sl@0
   189
	TRequestStatus status;
sl@0
   190
	tt.Logon(status);
sl@0
   191
	tt.Resume();
sl@0
   192
sl@0
   193
	User::WaitForRequest(status);
sl@0
   194
sl@0
   195
	// restore console
sl@0
   196
	TheTest.SetConsole(savedConsole);
sl@0
   197
sl@0
   198
	TExitCategoryName exitcategory = tt.ExitCategory();
sl@0
   199
	TExitType exittype = tt.ExitType();
sl@0
   200
	TInt exitReason = tt.ExitReason();
sl@0
   201
	tt.Close();
sl@0
   202
sl@0
   203
	TheTest.Printf(_L("Thread exit type %d, reason %d, category %S"), exittype, exitReason, &exitcategory);
sl@0
   204
sl@0
   205
	User::SetJustInTime(jit);
sl@0
   206
	DeleteTestPlugin();
sl@0
   207
sl@0
   208
	// Check if tt thread passes this checkpoint
sl@0
   209
	TheTest(correctTypeCastPassed);
sl@0
   210
sl@0
   211
	// Check if tt thread die of KERN-EXEC.
sl@0
   212
	_LIT(KKernExec, "KERN-EXEC");
sl@0
   213
	TheTest(exitcategory.CompareF(KKernExec) == 0);
sl@0
   214
sl@0
   215
	TheTest.End();
sl@0
   216
	TheTest.Close();
sl@0
   217
sl@0
   218
	__UHEAP_MARKEND;
sl@0
   219
	}
sl@0
   220
sl@0
   221
GLDEF_C TInt E32Main()
sl@0
   222
	{
sl@0
   223
	__UHEAP_MARK;
sl@0
   224
sl@0
   225
	CTrapCleanup* cleanup = CTrapCleanup::New();
sl@0
   226
	CActiveScheduler* scheduler = new(ELeave)CActiveScheduler;
sl@0
   227
	CActiveScheduler::Install(scheduler);
sl@0
   228
sl@0
   229
	TRAP_IGNORE( RunTestThreadL() );
sl@0
   230
sl@0
   231
	delete scheduler;
sl@0
   232
	delete cleanup;
sl@0
   233
sl@0
   234
	__UHEAP_MARKEND;
sl@0
   235
	return KErrNone;
sl@0
   236
	}