os/persistentdata/featuremgmt/featuremgr/test/rtest/src/t_fmgrbadclient.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) 2009-2010 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 <e32math.h>
sl@0
    18
#include <featmgr.h>
sl@0
    19
#include <featureuids.h>
sl@0
    20
#include "featurepanics.h"
sl@0
    21
#include <featurecontrol.h>
sl@0
    22
#include <featurenotifier.h>
sl@0
    23
#include "../src/inc/featmgrconfiguration.h"
sl@0
    24
#include "../src/inc/featmgrclientserver.h"
sl@0
    25
sl@0
    26
using namespace NFeature;
sl@0
    27
sl@0
    28
static RTest TheTest(_L("t_fmgrbadclient"));
sl@0
    29
sl@0
    30
const TInt KTestIterCount = 5000;
sl@0
    31
sl@0
    32
enum TArgType 
sl@0
    33
    {
sl@0
    34
    EIntArgType, 
sl@0
    35
    ETextArgType, 
sl@0
    36
    EBinArgType, 
sl@0
    37
    ELastArgType
sl@0
    38
    };
sl@0
    39
sl@0
    40
const TInt KMaxDesArgLen = 1000;
sl@0
    41
sl@0
    42
//If the FeatMgr server crashes and the test receives KErrServerTerminated error, then the 
sl@0
    43
//next set will contain the last:
sl@0
    44
// - iteration number;
sl@0
    45
// - handle type;
sl@0
    46
// - function code;
sl@0
    47
// - handle;
sl@0
    48
// - IPC arguments values;
sl@0
    49
struct TThreadData
sl@0
    50
    {
sl@0
    51
    TInt                iIteration;
sl@0
    52
    TInt                iFunction;
sl@0
    53
    TArgType            iArgType[KMaxMessageArguments];
sl@0
    54
    TInt                iIntArg[KMaxMessageArguments];
sl@0
    55
    TBuf<KMaxDesArgLen> iTextArg[KMaxMessageArguments];
sl@0
    56
    TBuf8<KMaxDesArgLen> iBinArg[KMaxMessageArguments];
sl@0
    57
    TInt64              iSeed;
sl@0
    58
    };
sl@0
    59
sl@0
    60
_LIT(KPanicCategory, "SrvTerm");
sl@0
    61
_LIT(KPanicCategory2, "InvArg");
sl@0
    62
const TInt KPanicCode = 1111;
sl@0
    63
const TInt KPanicCode2 = 2222;
sl@0
    64
sl@0
    65
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    66
sl@0
    67
//Deletes all created test files.
sl@0
    68
void DestroyTestEnv()
sl@0
    69
    {
sl@0
    70
    }
sl@0
    71
sl@0
    72
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    73
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    74
//Test macros and functions
sl@0
    75
void Check1(TInt aValue, TInt aLine, TBool aPrintThreadName = EFalse)
sl@0
    76
    {
sl@0
    77
    if(!aValue)
sl@0
    78
        {
sl@0
    79
        DestroyTestEnv();
sl@0
    80
        if(aPrintThreadName)
sl@0
    81
            {
sl@0
    82
            RThread th;
sl@0
    83
            TName name = th.Name();
sl@0
    84
            RDebug::Print(_L("*** Expression evaluated to false. Thread %S, Line %d\r\n"), &name, aLine);
sl@0
    85
            }
sl@0
    86
        else
sl@0
    87
            {
sl@0
    88
            TheTest.Printf(_L("*** Expression evaluated to false. Line %d\r\n"), aLine);
sl@0
    89
            }
sl@0
    90
        TheTest(EFalse, aLine);
sl@0
    91
        }
sl@0
    92
    }
sl@0
    93
void Check2(TInt aValue, TInt aExpected, TInt aLine, TBool aPrintThreadName = EFalse)
sl@0
    94
    {
sl@0
    95
    if(aValue != aExpected)
sl@0
    96
        {
sl@0
    97
        DestroyTestEnv();
sl@0
    98
        if(aPrintThreadName)
sl@0
    99
            {
sl@0
   100
            RThread th;
sl@0
   101
            TName name = th.Name();
sl@0
   102
            RDebug::Print(_L("*** Thread %S, Line %d Expected error: %d, got: %d\r\n"), &name, aLine, aExpected, aValue);
sl@0
   103
            }
sl@0
   104
        else
sl@0
   105
            {
sl@0
   106
            RDebug::Print(_L("*** Line %d, Expected error: %d, got: %d\r\n"), aLine, aExpected, aValue);
sl@0
   107
            }
sl@0
   108
        TheTest(EFalse, aLine);
sl@0
   109
        }
sl@0
   110
    }
sl@0
   111
#define TEST(arg) ::Check1((arg), __LINE__)
sl@0
   112
#define TEST2(aValue, aExpected) ::Check2(aValue, aExpected, __LINE__)
sl@0
   113
#define TTEST(arg) ::Check1((arg), __LINE__, ETrue)
sl@0
   114
#define TTEST2(aValue, aExpected) ::Check2(aValue, aExpected, __LINE__, ETrue)
sl@0
   115
sl@0
   116
//////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   117
sl@0
   118
static TInt StartFeatMgrServer()
sl@0
   119
    {
sl@0
   120
    RProcess server;
sl@0
   121
    const TUidType serverUid( KNullUid, KServerUid2, KNullUid );
sl@0
   122
    TInt err = server.Create( KServerExeName, // FeatMgrServer.exe
sl@0
   123
                           KNullDesC, // A descriptor containing data passed as 
sl@0
   124
                                      // an argument to the thread function of 
sl@0
   125
                                      // the new process's main thread, when it 
sl@0
   126
                                      // is first scheduled.
sl@0
   127
                           serverUid, // FeatMgr server UID
sl@0
   128
                           EOwnerProcess ); // Ownership of this process handle 
sl@0
   129
sl@0
   130
    // Return error code if we couldn't create a process
sl@0
   131
    if ( err == KErrNone )
sl@0
   132
        {
sl@0
   133
        // Rendezvous is used to detect server start
sl@0
   134
        TRequestStatus stat;
sl@0
   135
        server.Rendezvous( stat );
sl@0
   136
sl@0
   137
        if ( stat != KRequestPending )
sl@0
   138
            {
sl@0
   139
            server.Kill( KErrNone ); // Abort startup
sl@0
   140
            }
sl@0
   141
        else
sl@0
   142
            {
sl@0
   143
            server.Resume();  // Logon OK - start the server
sl@0
   144
            }
sl@0
   145
sl@0
   146
        User::WaitForRequest( stat ); // Wait for start or death
sl@0
   147
sl@0
   148
        // We can't use the 'exit reason' if the server paniced as this
sl@0
   149
        // is the panic 'reason' and may be '0' which cannot be distinguished
sl@0
   150
        // from KErrNone
sl@0
   151
        err = (server.ExitType() == EExitPanic)? KErrGeneral : stat.Int();
sl@0
   152
sl@0
   153
        // We can close the handle now
sl@0
   154
        server.Close();        
sl@0
   155
        }
sl@0
   156
sl@0
   157
    return err;
sl@0
   158
    }
sl@0
   159
sl@0
   160
//////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   161
/////////////////////////////        RTestFeatMgrSession          ////////////////////////////////
sl@0
   162
//////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   163
sl@0
   164
class RTestFeatMgrSession : public RSessionBase
sl@0
   165
    {
sl@0
   166
public: 
sl@0
   167
    TInt Connect();
sl@0
   168
    void Close();
sl@0
   169
    TInt SendReceive(TInt aFunction);
sl@0
   170
    TInt SendReceive(TInt aFunction, const TIpcArgs& aArgs);
sl@0
   171
    void SendReceive(TInt aFunction, const TIpcArgs& aArgs, TRequestStatus& aStatus);
sl@0
   172
sl@0
   173
private:
sl@0
   174
    TInt DoCreateSession();
sl@0
   175
    };
sl@0
   176
    
sl@0
   177
TInt RTestFeatMgrSession::Connect()
sl@0
   178
    {
sl@0
   179
    TInt err = DoCreateSession();
sl@0
   180
    if(err != KErrNone && err != KErrAlreadyExists)
sl@0
   181
        {
sl@0
   182
        Close();
sl@0
   183
        }
sl@0
   184
    return err;
sl@0
   185
    }
sl@0
   186
sl@0
   187
void RTestFeatMgrSession::Close()
sl@0
   188
    {
sl@0
   189
    RSessionBase::Close();
sl@0
   190
    }
sl@0
   191
sl@0
   192
TInt RTestFeatMgrSession::SendReceive(TInt aFunction)
sl@0
   193
    {
sl@0
   194
    return RSessionBase::SendReceive(aFunction);    
sl@0
   195
    }
sl@0
   196
    
sl@0
   197
TInt RTestFeatMgrSession::SendReceive(TInt aFunction, const TIpcArgs& aArgs)
sl@0
   198
    {
sl@0
   199
    return RSessionBase::SendReceive(aFunction, aArgs); 
sl@0
   200
    }
sl@0
   201
sl@0
   202
void RTestFeatMgrSession::SendReceive(TInt aFunction, const TIpcArgs& aArgs, TRequestStatus& aStatus)
sl@0
   203
    {
sl@0
   204
    RSessionBase::SendReceive(aFunction, aArgs, aStatus); 
sl@0
   205
    }
sl@0
   206
sl@0
   207
TInt RTestFeatMgrSession::DoCreateSession()
sl@0
   208
    {
sl@0
   209
    const TInt KRetry( 2 );
sl@0
   210
    // Try this twice
sl@0
   211
    TInt retry( KRetry );
sl@0
   212
    TInt err( KErrNone );
sl@0
   213
sl@0
   214
    while ( retry > 0 )
sl@0
   215
        {
sl@0
   216
        // Try to create a FeatMgr Server session
sl@0
   217
        err = CreateSession(KServerProcessName, 
sl@0
   218
                            TVersion(KServerVersionMajor, KServerVersionMinor, KServerVersionBuild), 
sl@0
   219
                            KDefaultAsyncSlots);
sl@0
   220
sl@0
   221
        if ( err != KErrNotFound && err != KErrServerTerminated )
sl@0
   222
            {
sl@0
   223
            // KErrNone or unrecoverable error
sl@0
   224
            retry = 0;
sl@0
   225
            }
sl@0
   226
        else
sl@0
   227
            {
sl@0
   228
            // Return code was KErrNotFound or KErrServerTerminated.
sl@0
   229
            // Try to start a new FeatMgr Server
sl@0
   230
            err = StartFeatMgrServer();
sl@0
   231
sl@0
   232
            if ( err != KErrNone && err != KErrAlreadyExists )
sl@0
   233
                {
sl@0
   234
                // Unrecoverable error
sl@0
   235
                retry = 0;
sl@0
   236
                }
sl@0
   237
            }
sl@0
   238
            
sl@0
   239
        retry--;
sl@0
   240
        }
sl@0
   241
            
sl@0
   242
    return err;
sl@0
   243
    }
sl@0
   244
    
sl@0
   245
void PrintIterationCount(TInt aIteration, TBool aFromThread = EFalse)
sl@0
   246
    {
sl@0
   247
    if((aIteration % 100) == 0)
sl@0
   248
        {
sl@0
   249
        TTime time;
sl@0
   250
        time.HomeTime();
sl@0
   251
        TDateTime dt = time.DateTime();
sl@0
   252
        TBuf<16> tbuf;
sl@0
   253
        tbuf.Format(_L("%02d:%02d:%02d.%06d"), dt.Hour(), dt.Minute(), dt.Second(), dt.MicroSecond());
sl@0
   254
        if(aFromThread)
sl@0
   255
            {
sl@0
   256
            RDebug::Print(_L("-----[%S] Test iterations: %d\r\n"), &tbuf, aIteration);
sl@0
   257
            }
sl@0
   258
        else
sl@0
   259
            {
sl@0
   260
            TheTest.Printf(_L("-----[%S] Test iterations: %d\r\n"), &tbuf, aIteration);
sl@0
   261
            }
sl@0
   262
        }
sl@0
   263
    }
sl@0
   264
sl@0
   265
//Worker thread function.
sl@0
   266
//It behaves as a malicious client. Connects to the FeatMgr server. In each test iteration generates some random values
sl@0
   267
//for the function number, handle, IPC arguments. Then sends a command to the server using these
sl@0
   268
//randomly generated values. If the server crashes and the thread function receives KErrServerTerminated error,
sl@0
   269
//then the thread kills itself and the main thread will get KPanicCategory and KPanicCode as a reason for the
sl@0
   270
//worker thread's death. The last set of randomly generated values will be stored in the memory, pointed by aData argument.
sl@0
   271
TInt ThreadFunc1(void* aData)
sl@0
   272
    {
sl@0
   273
    __UHEAP_MARK;
sl@0
   274
    
sl@0
   275
    CTrapCleanup* tc = CTrapCleanup::New();
sl@0
   276
    TTEST(tc != NULL);
sl@0
   277
sl@0
   278
    TThreadData* p = static_cast <TThreadData*> (aData);
sl@0
   279
    TTEST(p != NULL);
sl@0
   280
    TThreadData& data = *p;
sl@0
   281
sl@0
   282
    RTestFeatMgrSession sess;
sl@0
   283
    TInt err = sess.Connect();
sl@0
   284
    TTEST2(err, KErrNone);
sl@0
   285
sl@0
   286
    while(++data.iIteration <= KTestIterCount)
sl@0
   287
        {
sl@0
   288
        PrintIterationCount(data.iIteration, ETrue);
sl@0
   289
        TIpcArgs args;
sl@0
   290
        data.iFunction = Math::Rand(data.iSeed) % (EFeatMgrSWIEnd + 1);//EFeatMgrSWIEnd - the last server message number (without resource checking IPCs))
sl@0
   291
        for(TInt i=0;i<KMaxMessageArguments;++i)
sl@0
   292
            {
sl@0
   293
            //Initialize arguments
sl@0
   294
            data.iArgType[i] = static_cast <TArgType> (Math::Rand(data.iSeed) % ELastArgType);
sl@0
   295
            switch(data.iArgType[i])
sl@0
   296
                {
sl@0
   297
                case EIntArgType:
sl@0
   298
                    data.iIntArg[i] = Math::Rand(data.iSeed) % 9711;
sl@0
   299
                    args.Set(i, data.iIntArg[i]);
sl@0
   300
                    break;
sl@0
   301
                case ETextArgType:
sl@0
   302
                    {
sl@0
   303
                    TInt len = Math::Rand(data.iSeed) % KMaxDesArgLen;  
sl@0
   304
                    data.iTextArg[i].SetLength(len);
sl@0
   305
                    args.Set(i, &data.iTextArg[i]);
sl@0
   306
                    }
sl@0
   307
                    break;
sl@0
   308
                case EBinArgType:
sl@0
   309
                    {
sl@0
   310
                    TInt len = Math::Rand(data.iSeed) % KMaxDesArgLen;  
sl@0
   311
                    data.iBinArg[i].SetLength(len);
sl@0
   312
                    args.Set(i, &data.iBinArg[i]);
sl@0
   313
                    }
sl@0
   314
                    break;
sl@0
   315
                default:
sl@0
   316
                    User::Panic(KPanicCategory2, KPanicCode2);
sl@0
   317
                    break;
sl@0
   318
                }
sl@0
   319
            }
sl@0
   320
        //Send arguments
sl@0
   321
        User::SetJustInTime(EFalse);
sl@0
   322
        TInt err = KErrNone;
sl@0
   323
        if(data.iFunction == EFeatMgrReqNotify)
sl@0
   324
            {
sl@0
   325
            TRequestStatus status;
sl@0
   326
            sess.SendReceive(data.iFunction, args, status);
sl@0
   327
            if(status == KRequestPending)
sl@0
   328
                {
sl@0
   329
                err = sess.SendReceive(EFeatMgrReqNotifyCancelAll);
sl@0
   330
                }
sl@0
   331
            else
sl@0
   332
                {
sl@0
   333
                err = status.Int();
sl@0
   334
                }
sl@0
   335
            }
sl@0
   336
        else
sl@0
   337
            {
sl@0
   338
            err = sess.SendReceive(data.iFunction, args);
sl@0
   339
            }
sl@0
   340
        if(err == KErrServerTerminated)
sl@0
   341
            {
sl@0
   342
            User::Panic(KPanicCategory, KPanicCode);
sl@0
   343
            }
sl@0
   344
        User::SetJustInTime(ETrue);
sl@0
   345
        }
sl@0
   346
sl@0
   347
    sess.Close();
sl@0
   348
sl@0
   349
    delete tc;  
sl@0
   350
    
sl@0
   351
    __UHEAP_MARKEND;
sl@0
   352
    
sl@0
   353
    return KErrNone;        
sl@0
   354
    }
sl@0
   355
sl@0
   356
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   357
sl@0
   358
/**
sl@0
   359
@SYMTestCaseID          PDS-EFM-CT-4065
sl@0
   360
@SYMTestCaseDesc        
sl@0
   361
@SYMTestPriority        High
sl@0
   362
@SYMTestActions         
sl@0
   363
@SYMTestExpectedResults Test must not fail
sl@0
   364
@SYMDEF                 DEF144262
sl@0
   365
*/
sl@0
   366
void BadClientTest()
sl@0
   367
    {
sl@0
   368
    TThreadData* p = new TThreadData;
sl@0
   369
    TEST(p != NULL);
sl@0
   370
    TThreadData& data = *p;
sl@0
   371
    data.iFunction = 0;
sl@0
   372
    TTime now;
sl@0
   373
    now.UniversalTime();
sl@0
   374
    data.iSeed = now.Int64();
sl@0
   375
    
sl@0
   376
    _LIT(KThreadName, "WorkThrd");
sl@0
   377
    
sl@0
   378
    for(data.iIteration=0;data.iIteration<KTestIterCount;++data.iIteration)
sl@0
   379
        {
sl@0
   380
        PrintIterationCount(data.iIteration);
sl@0
   381
        //Run the malicious client (one worker theread which will try to crash the FeatMgr server)
sl@0
   382
        RThread thread;
sl@0
   383
        TEST2(thread.Create(KThreadName, &ThreadFunc1, 0x2000, 0x1000, 0x10000, &data, EOwnerProcess), KErrNone);
sl@0
   384
        TRequestStatus status;
sl@0
   385
        thread.Logon(status);
sl@0
   386
        TEST2(status.Int(), KRequestPending);
sl@0
   387
        thread.Resume();
sl@0
   388
        User::WaitForRequest(status);
sl@0
   389
        User::SetJustInTime(ETrue); // enable debugger panic handling
sl@0
   390
        if(thread.ExitType() == EExitPanic)
sl@0
   391
            {
sl@0
   392
            if(thread.ExitReason() == KPanicCode)
sl@0
   393
                {
sl@0
   394
                TheTest.Printf(_L("##Server terminated!\r\n"));
sl@0
   395
                TheTest.Printf(_L("##Iteration=%d, Function(hex)=%X, Handle=%d\r\n"), data.iIteration, data.iFunction);
sl@0
   396
                for(TInt i=0;i<KMaxMessageArguments;++i)
sl@0
   397
                    {
sl@0
   398
                    switch(data.iArgType[i])
sl@0
   399
                        {
sl@0
   400
                        case EIntArgType:
sl@0
   401
                            TheTest.Printf(_L("##Arg %d, Integer, value=%d\r\n"), i, data.iIntArg[i]);
sl@0
   402
                            break;
sl@0
   403
                        case ETextArgType:
sl@0
   404
                            TheTest.Printf(_L("##Arg %d, Text,    length=%d\r\n"), i, data.iTextArg[i].Length());
sl@0
   405
                            break;
sl@0
   406
                        case EBinArgType:
sl@0
   407
                            TheTest.Printf(_L("##Arg %d, Binary,  length=%d\r\n"), i, data.iBinArg[i].Length());
sl@0
   408
                            break;
sl@0
   409
                        default:
sl@0
   410
                            TheTest.Printf(_L("##Arg %d, Invalid argument type: %d\r\n"), i, data.iArgType[i]);
sl@0
   411
                            break;
sl@0
   412
                        }
sl@0
   413
                    }
sl@0
   414
                TEST(0);
sl@0
   415
                }
sl@0
   416
            }
sl@0
   417
        thread.Close();
sl@0
   418
        }
sl@0
   419
    User::SetJustInTime(ETrue); // enable debugger panic handling
sl@0
   420
    delete p;
sl@0
   421
    }
sl@0
   422
sl@0
   423
void DoTestsL()
sl@0
   424
    {
sl@0
   425
    //This test won't pass
sl@0
   426
    TheTest.Start(_L("@SYMTestCaseID:PDS-EFM-CT-4065 Bad client test"));
sl@0
   427
    BadClientTest();
sl@0
   428
    }
sl@0
   429
sl@0
   430
TInt E32Main()
sl@0
   431
    {
sl@0
   432
    TheTest.Title();
sl@0
   433
    
sl@0
   434
    CTrapCleanup* tc = CTrapCleanup::New();
sl@0
   435
    TheTest(tc != NULL);
sl@0
   436
    
sl@0
   437
    __UHEAP_MARK;
sl@0
   438
    
sl@0
   439
    TRAPD(err, DoTestsL());
sl@0
   440
    DestroyTestEnv();
sl@0
   441
    TEST2(err, KErrNone);
sl@0
   442
sl@0
   443
    __UHEAP_MARKEND;
sl@0
   444
    
sl@0
   445
    TheTest.End();
sl@0
   446
    TheTest.Close();
sl@0
   447
    
sl@0
   448
    delete tc;
sl@0
   449
sl@0
   450
    User::Heap().Check();
sl@0
   451
    return KErrNone;
sl@0
   452
    }