os/security/cryptomgmtlibs/cryptotokenfw/inc/secdlgImplDefs.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 2001-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  @file
    21  @publishedPartner
    22  @released
    23 */
    24 
    25 #ifndef __SECDLGIMPLDEFS_H__
    26 #define __SECDLGIMPLDEFS_H__
    27 
    28 #include <e32std.h>
    29 
    30 #include <secdlg.h>
    31 
    32 /** */
    33 // KUidSecurityDialogNotifier is named KUidWIMDialogNotifier in the UID database
    34 const TUid KUidSecurityDialogNotifier = { 0x101F3CBB };
    35 
    36 /** */
    37 typedef TUint TSecurityDialogNotification;
    38 
    39 /** */
    40 typedef TPckgBuf<TSecurityDialogNotification> TSecurityDialogNotificationBuf;
    41 
    42 
    43 /**
    44  * Defines the operations provided by the security dialog. 
    45  *
    46  * It is used to identify the operation when transferring over to the notifier plugin.
    47  */
    48 enum TSecurityDialogOperation
    49 	{
    50 	/** Secure connection */
    51 	ESecureConnection = 0x01,
    52 	/** Sign text */
    53 	ESignText = 0x02,
    54 	/** Enter PIN */
    55 	EEnterPIN = 0x04,
    56 	/** Enable PIN */
    57 	EEnablePIN = 0x08,
    58 	/** Disable PIN */
    59 	EDisablePIN = 0x10,
    60 	/** Change PIN */
    61 	EChangePIN = 0x20,
    62 	/** Unblock PIN */
    63 	EUnblockPIN = 0x40,
    64 	/** PIN blocked */
    65 	EPINBlocked = 0x80,
    66 	/** Total blocked */
    67 	ETotalBlocked = 0x100,
    68 	/** Unblock PIN in clear */
    69 	EUnblockPINInClear = 0x200,
    70 	/** ServerAuthenticationFailure */
    71 	EServerAuthenticationFailure = 0x400
    72 	};
    73 
    74 /** */
    75 const TInt KSecurityDialogOperationMask = 0xFFFF;
    76 const TInt KServerNameBuf    = 0xFF;  // 0xFF  = 255
    77 const TInt KEncodedCertBuf   = 0x400; // 0x400 = 1024
    78 
    79 /** Security dialog error condition */
    80 enum TSecurityDialogErrorCondition
    81 	{
    82 	/** Incorrect PIN value */
    83 	EPINValueIncorrect = 0x10000000
    84 	};
    85 
    86 /** */
    87 //Passed back in TRequestStatus, if client agrees to authenticate/ The client TRequeststatus never gets set to this
    88 const TInt KClientAuthenticationRequested = 1;	
    89 
    90 /**
    91  * Class used with corresponding TPckgBuf to build buffer for the
    92  * Server Authentication Failure Dialog operation.
    93  */
    94 class TServerAuthenticationFailureInput
    95 	{
    96 public:
    97 	/** EServerAuthenticationFailure */
    98 	TSecurityDialogNotification iOperation;
    99 	
   100 	/** Server name */
   101 	TInt iServerNameLength;
   102 
   103 	/** Encoded Certificate */
   104 	TInt iEncodedCertLength;
   105 
   106 	/** Failure Reason */
   107 	TValidationError iFailureReason;
   108 	};
   109 
   110 /** */
   111 typedef TPckgBuf<TServerAuthenticationFailureInput> TServerAuthenticationFailureInputBuf;
   112 
   113 /**
   114  * The input buffer for the secure connection and sign text operations.
   115  */
   116 class TSignInput
   117 	{
   118 public:
   119 	/**  */
   120 	TSecurityDialogNotification iOperation;
   121 	
   122 	/**  */
   123 	TUint iVariableDataSize;
   124 	
   125 	/**  */
   126 	TUint iCertHandleArrayTotal;
   127 	
   128 	/** 
   129 	 * Whether to do client authentication 
   130 	 *
   131 	 * Used only for secure connection dialog
   132 	 */
   133 	TBool iDoClientAuthentication;
   134 	
   135 	/** The connection type */
   136 	MSecurityDialog::TConnectionType iConnectionType;
   137 	};
   138 
   139 /** */
   140 typedef TPckgBuf<TSignInput> TSignInputBuf;
   141 
   142 /** */
   143 typedef TPckgBuf<TCTTokenObjectHandle> TCTTokenObjectHandleBuf;
   144 
   145 
   146 /**
   147  * Input data for the EEnterPIN, EChangePIN, EPINBlocked operations.
   148  */
   149 class TPINInput
   150 	{
   151 public:
   152 	/**  */
   153 	TSecurityDialogNotification iOperation;
   154 
   155 	/** Information associated with the PIN */
   156 	TPINParams iPIN;
   157 	};
   158 
   159 /** */
   160 typedef TPckgBuf<TPINInput> TPINInputBuf;
   161 
   162 
   163 
   164 /**
   165  * Input data for the EUnblockPIN operation.
   166  */
   167 class TUnblockPINInput
   168 	{
   169 public:
   170 	TSecurityDialogNotification iOperation;
   171 	TPINParams iPIN;
   172 	TPINParams iUnblockPIN;
   173 	};
   174 
   175 /** */
   176 typedef TPckgBuf<TUnblockPINInput> TUnblockPINInputBuf;
   177 
   178 /**
   179  * Output from the EServerAuthenticationFailure operations.
   180  */
   181  /** Security dialog error condition */
   182 enum TServerAuthenticationFailureDialogResult
   183 	{	
   184 	EContinue = 0x01,
   185 	EStop     = 0x02
   186 	}; 
   187 /** */
   188 typedef TPckgBuf<TServerAuthenticationFailureDialogResult> TServerAuthenticationFailureOutputBuf;
   189 
   190 /**
   191  * Output from the EChangePIN and EUnblockPIN operations.
   192  */
   193 class TTwoPINOutput
   194 	{
   195 public:
   196 	// This could be for the current PIN or the unblocking PIN
   197 	TPINValue iPINValueToCheck;
   198 	TPINValue iNewPINValue;
   199 	};
   200 
   201 /** */
   202 typedef TPckgBuf<TTwoPINOutput> TTwoPINOutputBuf;
   203 
   204 /** */
   205 typedef TPckgBuf<TPINValue> TPINValueBuf;
   206 
   207 
   208 
   209 /**
   210  * Output from the EUnblockPINInClear operation.
   211  */
   212 class TUnblockPINInClearOutput
   213 	{
   214 public:
   215 	// This could be for the current PIN or the unblocking PIN
   216 	TUnblockPINValue iPINValueToCheck;
   217 	TPINValue iNewPINValue;
   218 	};
   219 
   220 /** */
   221 typedef TPckgBuf<TUnblockPINInClearOutput> TUnblockPINInClearOutputBuf;
   222 
   223 
   224 /**
   225  * This class is used by the reference implementation of the security dialog,
   226  * CRefSecurityDialog, to pack the notifier buffer for the Server
   227  * Authentication Failure Dialog operation, and by the notifier server plugin
   228  * to unpack the buffer.
   229  */
   230 
   231 class CServerAuthenticationFailureInput : public CBase
   232 	{
   233 public:
   234 
   235 	virtual ~CServerAuthenticationFailureInput();
   236 
   237 	/**	
   238 	 * @internalComponent
   239 	 * 
   240 	* Static constructor function that uses the data passed in the call to
   241 	* MSecurityDialog::ServerAuthenticationFailure to instantiate the object.
   242 	*
   243 	* Depending on the value of aCreateOwnBuffers, the object can allocate
   244 	* new buffers with copies of the server name and encoded cert data, or it
   245 	* can use pointers to the buffers for the existing descriptors.  It should
   246 	* only use the existing buffers if they won't be freed before an input
   247 	* buffer for the notifier is created using PackBufferL.
   248 	*
   249 	* @param aServerName		Name of the server with the certificate that
   250 	*							failed authentication.
   251 	* @param aFailureReason		Reason for certificate authentication failure.
   252 	* @param aEncodedCert		Encoded X509 Certificate data.
   253 	* @param aCreateOwnBuffers	Indicates whether new heap buffers are needed.
   254 	*
   255 	* @return					The new CServerAuthenticationFailureInput
   256 	*							object. */
   257 
   258 	static CServerAuthenticationFailureInput* NewL(const TDesC8& aServerName,const TValidationError& aFailureReason, const TDesC8& aEncodedCert, const TBool aCreateOwnBuffers = EFalse);
   259 	/** @internalComponent */
   260 	static CServerAuthenticationFailureInput* NewLC(const TDesC8& aServerName,const TValidationError& aFailureReason, const TDesC8& aEncodedCert, const TBool aCreateOwnBuffers = EFalse);
   261 
   262 	/**	
   263 	* Static constructor function that constructs the object using the data
   264 	* in a supplied buffer.  This can be used in the implementation of a
   265 	* plugin for the extended notifier framework; the buffer supplied to the
   266 	* notifier for this dialog operation will be in the correct format to
   267 	* construct the class with this function.
   268 	*
   269 	* Depending on the value of aCreateOwnBuffers, new buffers can be
   270 	* allocated to hold copies of the server name and encoded cert data, or
   271 	* the object can use pointers to the data positions within the input
   272 	* buffer.  It should only use the existing buffer if it will persist
   273 	* until the data is no longer needed.
   274 	*
   275 	* @param aBuffer			A data buffer containing the data needed
   276 	*							for the dialog.
   277 	* @param aCreateOwnBuffers	Indicates whether new heap buffers are
   278 	*							needed.
   279 	*
   280 	* @return					The new CServerAuthenticationFailureInput
   281 	*							object. */
   282 
   283 	IMPORT_C static CServerAuthenticationFailureInput* NewL(const TDesC8& aBuffer, const TBool aCreateOwnBuffers = EFalse);
   284 	IMPORT_C static CServerAuthenticationFailureInput* NewLC(const TDesC8& aBuffer, const TBool aCreateOwnBuffers = EFalse);
   285 	
   286 
   287 	/**
   288 	* Gets the reason for validation failure.	
   289 	*
   290 	* @return	The failure reason. */
   291 	IMPORT_C TValidationError FailureReason();
   292 
   293 	/**
   294 	* Sets the supplied TPtrC8 to point to the buffer for the server name.	
   295 	*
   296 	* @param aServerNamePtr	A reference to a TPtrC8 to set to point to
   297 	*						the server name data. */
   298 	IMPORT_C void GetServerName(TPtrC8& aServerNamePtr);
   299 
   300 	/**
   301 	* Sets the supplied TPtrC8 to point to the buffer for the encoded cert.	
   302 	*
   303 	* @param aServerNamePtr	A reference to a TPtrC8 to set to point to
   304 	*						the encoded cert data. */
   305 	IMPORT_C void GetEncodedCert(TPtrC8& aEncodedCertPtr);
   306 	
   307 	/**
   308 	 * @internalComponent
   309 	 * 
   310 	* Allocates and fills a heap buffer with the data to be sent to the
   311 	* notifier server.  Ownership of this buffer passes to the calling
   312 	* method.
   313 	*
   314 	* @return	The allocated buffer. */
   315 
   316 	HBufC8* PackBufferL() const;
   317 	 
   318 private:
   319 	CServerAuthenticationFailureInput();
   320 	
   321 	void ConstructL(const TDesC8& aServerName,const TValidationError& aFailureReason, const TDesC8& aEncodedCert, const TBool aCreateOwnBuffers = EFalse);
   322 	void ConstructL(const TDesC8& aBuffer, const TBool aCreateOwnBuffers = EFalse);
   323 
   324 private:
   325 	/** EServerAuthenticationFailure */
   326 	TSecurityDialogNotification iOperation;
   327 
   328 	/** Failure Reason */
   329 	TValidationError iFailureReason;
   330 
   331 	/** Server name */
   332 	HBufC8* iServerName;
   333 	TPtrC8 iServerNamePtr;
   334 
   335 	/** Encoded Certificate */
   336 	HBufC8* iEncodedCert;
   337 	TPtrC8 iEncodedCertPtr;
   338 
   339 	};
   340 
   341 #endif