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