Update contrib.
2 * Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "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.
20 #ifndef FEATMGR_SECURITY_POLICY_H
21 #define FEATMGR_SECURITY_POLICY_H
25 * Number of different IPC ranges
27 const TUint KFeatMgrPlatSecRangeCount = 3;
30 #ifndef EXTENDED_FEATURE_MANAGER_TEST
33 // The security ranges for messages in the framework.
34 // See also featmgrclientserver.h for message enum TFeatMgrServRequest
38 * IPC ranges segmented into groups based on their capability requirements
40 const TInt KFeatMgrPlatSecRanges[KFeatMgrPlatSecRangeCount] =
42 0, // IPC 0-7 Always passed
43 8, // IPC 8-19 WriteDeviceData
44 20 // IPC Not supported: 20 = 16 messages + 4 "resource check" messages
49 * IPC segments and their capability requirements
51 const TUint8 KFeatMgrPlatSecElementsIndex[KFeatMgrPlatSecRangeCount] =
53 CPolicyServer::EAlwaysPass, // IPC 0-3
55 CPolicyServer::ENotSupported // IPC 20 ->
60 // CONFIGURED test server has debug only API(s) built into the framework.
61 // e.g. EFeatMgrNumberOfNotifyFeatures which will return debug information about
62 // the server for testing purposes. Consequently, the platform security setup
63 // for the test server differs slightly to allow these specific debug only message(s).
67 * IPC ranges segmented into groups based on their capability requirements
69 const TInt KFeatMgrPlatSecRanges[KFeatMgrPlatSecRangeCount] =
71 0, // IPC 0-9 Always passed
72 10, // IPC 10-21 WriteDeviceData
73 22 // IPC Not supported 22 ->
76 * IPC segments and their capability requirements
78 const TUint8 KFeatMgrPlatSecElementsIndex[KFeatMgrPlatSecRangeCount] =
80 CPolicyServer::EAlwaysPass, // IPC 0-3
82 CPolicyServer::ENotSupported // IPC 22 ->
89 * Capability sets and the action performed in case of failure
91 const CPolicyServer::TPolicyElement KFeatMgrPlatSecElements[] =
95 _INIT_SECURITY_POLICY_C1( ECapabilityWriteDeviceData ),
96 CPolicyServer::EFailClient
103 * Platform security policy that Feature Manager server uses.
105 const CPolicyServer::TPolicy KFeatMgrPlatSecPolicy =
107 CPolicyServer::EAlwaysPass, // Specifies all connect attempts should pass
108 KFeatMgrPlatSecRangeCount, // Number of IPC ranges
109 KFeatMgrPlatSecRanges, // IPC Ranges
110 KFeatMgrPlatSecElementsIndex, // Policy to IPC mapping array
111 KFeatMgrPlatSecElements // Policies used in Feature Manager Server