First public contribution.
2 Copyright (c) 2009-2010 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
4 Redistribution and use in source and binary forms, with or without
5 modification, are permitted provided that the following conditions are met:
7 * Redistributions of source code must retain the above copyright notice, this
8 list of conditions and the following disclaimer.
9 * Redistributions in binary form must reproduce the above copyright notice,
10 this list of conditions and the following disclaimer in the documentation
11 and/or other materials provided with the distribution.
12 * Neither the name of Nokia Corporation nor the names of its contributors
13 may be used to endorse or promote products derived from this software
14 without specific prior written permission.
16 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
20 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
22 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
23 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24 OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 Description: Contains implementation for x509_add_symbian_cert - to use certificates installed in Symbian with OpenSSL code.
31 #include "certretriever.h"
32 #include "createx509.h"
34 #include <securitydefsconst.h>
40 int X509_add_symbian_certsL(X509_STORE * store)
42 CActiveScheduler* activeScheduler;
43 CActiveScheduler* CurrentActiveScheduler = CActiveScheduler::Current();
44 if(CurrentActiveScheduler == NULL)
46 activeScheduler = new (ELeave) CActiveScheduler;
47 CleanupStack::PushL(activeScheduler);
49 CActiveScheduler::Install(activeScheduler);
53 TRequestStatus status;
54 CCertRetriever* certRetriever;
55 TRAPD(error, certRetriever = CCertRetriever::NewL(store, status, CActiveScheduler::Current()));
57 // create CActiveSchedulerWait
58 if (CurrentActiveScheduler)
60 certRetriever->activeSchedulerwait = new (ELeave) CActiveSchedulerWait;
61 certRetriever->OwnScheduler = EFalse;
67 CleanupStack::PopAndDestroy(); // activeScheduler
71 CleanupStack::PushL(certRetriever);
73 TRAP(error,certRetriever->RetriveCertificateL());
76 if(CurrentActiveScheduler == NULL)
78 CleanupStack::PopAndDestroy(2); // activeScheduler, certRetriever
81 CleanupStack::PopAndDestroy(); // certRetriever
86 if(CurrentActiveScheduler == NULL)
88 activeScheduler->Start();
89 CleanupStack::PopAndDestroy(2); // If you destroy the object it will not be there
90 // in the iActiveQ, and hence stray signal.
92 //CleanupStack::Pop(2); // So just pop it. // activeScheduler, certRetriever
96 // CurrentActiveScheduler->Start();// If you are using CActiveScheduler::Current();
97 // Why u want to start it again?
99 // CleanupStack::PopAndDestroy(); // If you destroy the object it will not be there
100 // in the iActiveQ, and hence stray signal.
102 // should wait here untill it finish loading certificates, ths API is synchronous
103 certRetriever->activeSchedulerwait->Start();
105 CleanupStack::Pop(); // So just pop it. // certRetriever
110 if(status == KErrNone)
119 CCertRetriever::CCertRetriever(X509_STORE* aStore,
120 TRequestStatus& aStatus,
121 const CActiveScheduler* aActiveScheduler)
122 : CActive(CActive::EPriorityHigh),
124 iFinStatus ( aStatus ),
125 iActiveScheduler(aActiveScheduler),
130 OwnScheduler = ETrue;
132 iActiveScheduler->Add(this);
135 CCertRetriever::~CCertRetriever()
145 delete activeSchedulerwait;
148 CCertRetriever* CCertRetriever::NewLC(X509_STORE* aStore,
149 TRequestStatus& aStatus,
150 const CActiveScheduler* aActiveScheduler)
152 CCertRetriever* self = new (ELeave) CCertRetriever(aStore, aStatus, aActiveScheduler);
153 CleanupStack::PushL(self);
154 TRAPD(err,self->ConstructL());
155 if(err != KErrNotFound)
158 CleanupStack::PopAndDestroy(self);
162 CCertRetriever* CCertRetriever::NewL(X509_STORE* aStore,
163 TRequestStatus& aStatus,
164 const CActiveScheduler* aActiveScheduler)
166 CCertRetriever* self = CCertRetriever::NewLC(aStore, aStatus, aActiveScheduler);
172 void CCertRetriever::ConstructL()
174 TInt err = iFs.Connect();
178 iState = EInitializeCertStore;
179 iBuf = HBufC8::NewL(KMaxCertLength);
183 void CCertRetriever::RunL()
185 // 1. All certificates retrieved.
186 // 2. yes. check iActiveScheduler. if null then call User::RequestComplete(iStatus) else iActiveScheduler->Stop();
187 User::LeaveIfError(iStatus.Int());
191 case EInitializeCertStore:
192 OpenUnifiedCertStoreL();
199 if (!iCerts.Count()) // no certificate in store.
210 if (iState != ENoCerts)
212 ProcessCertsL(); //Process the last certificate
220 iActiveScheduler->Stop();
222 activeSchedulerwait->AsyncStop();
224 iFinStatus = iStatus;
228 TRequestStatus *s = &iFinStatus;
229 User::RequestComplete(s, KErrNone);
236 User::Leave(KErrNotFound);
242 void CCertRetriever::DoCancel()
246 TInt CCertRetriever::RunError(TInt aError)
248 //Can do some error handling here
251 iActiveScheduler->Stop();
252 iFinStatus = iStatus;
256 TRequestStatus *s = &iFinStatus;
257 User::RequestComplete(s, aError);
263 void CCertRetriever::RetriveCertificateL()
265 OpenUnifiedCertStoreL();
269 void CCertRetriever::OpenUnifiedCertStoreL()
275 iCertStore = CUnifiedCertStore::NewL(iFs, EFalse);
276 iCertStore->Initialize(iStatus);
280 void CCertRetriever::ListCertsL()
282 // Create filter object
286 iCertFilter = CCertAttributeFilter::NewL();
287 iCertFilter->SetFormat(EX509Certificate);
288 iCertFilter->SetOwnerType(ECACertificate);
289 iCertFilter->SetUid(KTlsApplicabilityUid);
291 iStatus = KRequestPending;
293 iCertStore->List(iCerts, *iCertFilter, iStatus);
294 iState = EAppendCerts;
297 void CCertRetriever::AppendCertsL()
302 CCTCertInfo *cert = iCerts[iCertCount];
305 iStatus == KRequestPending;
307 iCertPtr.Set( iBuf->Des() );
308 iCertStore->Retrieve((*cert),iCertPtr,iStatus);
312 if(iCertCount == iCerts.Count())
317 void CCertRetriever::ProcessCertsL()
319 CX509Certificate *X509Cert;
320 TRAPD(error, X509Cert = CX509Certificate::NewL( iCertPtr ));
324 CleanupStack::PushL(X509Cert);
326 X509* x509 = CX509_Initializer::CreateX509L(X509Cert);
330 X509_STORE_add_cert(iStore,x509);
334 CleanupStack::PopAndDestroy(); //X509Cert