2 * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
17 * @file task_certify.cpp
18 * @author Pawel Sikorski (p.sikorski@samgsung.com)
26 #include <dpl/assert.h>
27 #include <appcore-common.h> //TODO is it necessary here?
31 #include <widget_install/task_certify.h>
32 #include <widget_install/job_widget_install.h>
33 #include <widget_install/widget_install_errors.h>
34 #include <widget_install/widget_install_context.h>
35 #include <dpl/log/log.h>
36 #include <wrt_error.h>
37 #include <dpl/wrt-dao-ro/global_config.h>
38 #include "wac_widget_id.h"
40 #include <vcore/SignatureReader.h>
41 #include <vcore/SignatureFinder.h>
42 #include <vcore/SignatureValidator.h>
43 #include <vcore/DeveloperModeValidator.h>
44 #include <dpl/utils/wrt_global_settings.h>
45 #include <dpl/wrt-dao-ro/global_dao_read_only.h>
47 #include <ITapiModem.h>
48 #include <tapi_common.h>
50 using namespace ValidationCore;
51 using namespace WrtDB;
54 const std::string LABEL_NEW_LINE = "<br>";
55 const std::string LABEL_NEW_LINE_2 = "<br><br>";
56 const std::string UNTRUSTED_WIDGET ="It is an Untrusted Widget";
57 const char *QUESTION ="Do you wanto to install?";
59 WidgetCertificateData toWidgetCertificateData(const SignatureData &data,
62 WidgetCertificateData result;
64 result.chainId = data.getSignatureNumber();
66 result.owner = data.isAuthorSignature() ?
67 WidgetCertificateData::AUTHOR : WidgetCertificateData::DISTRIBUTOR;
70 WidgetCertificateData::ROOT : WidgetCertificateData::ENDENTITY;
72 CertificatePtr certificate;
75 certificate = data.getRootCaCertificatePtr();
77 certificate = data.getEndEntityCertificatePtr();
80 Assert(certificate && !certificate->getCommonName().IsNull() &&
81 "CommonName is Null");
83 result.strCommonName = *certificate->getCommonName();
85 result.strMD5Fingerprint = std::string("md5 ") +
86 SignatureValidator::FingerprintToColonHex(
87 certificate->getFingerprint(Certificate::FINGERPRINT_MD5));
89 result.strSHA1Fingerprint = std::string("sha-1 ") +
90 SignatureValidator::FingerprintToColonHex(
91 certificate->getFingerprint(Certificate::FINGERPRINT_SHA1));
95 } // namespace anonymous
98 namespace WidgetInstall {
99 TaskCertify::TaskCertify(InstallerContext &inCont) :
100 DPL::TaskDecl<TaskCertify>(this),
101 m_contextData(inCont),
102 WidgetInstallPopup(inCont)
104 /* This is temporary comment for certi error
105 After security-server, cert-svc release, should remove comment
106 AddStep(&TaskCertify::stepSignature);
109 // Block until fixed popup issues
110 if (!GlobalSettings::PopupsTestModeEnabled()
111 && !m_installContext.m_quiet && !isTizenWebApp()) {
112 AddStep(&TaskCertify::stepWarningPopup);
113 AddStep(&TaskCertify::stepWarningPopupAnswer);
114 AddStep(&TaskCertify::stepAuthorInfoPopup);
115 AddStep(&TaskCertify::stepAuthorInfoPopupAnswer);
116 AddStep(&TaskCertify::StepDeletePopupWin);
118 AddStep(&TaskCertify::stepFinalize);
121 void TaskCertify::processDistributorSignature(const SignatureData &data,
124 // this signature is verified -
125 // no point in check domain WAC_ROOT and WAC_RECOGNIZED
126 m_contextData.wacSecurity.setDistributorSigned(true);
128 if (data.getStorageType().contains(CertStoreId::WAC_ROOT)) {
129 m_contextData.wacSecurity.setWacSigned(true);
132 CertificateCollection collection;
133 collection.load(data.getCertList());
135 Assert(collection.isChain() &&
136 "Certificate collection is not able to create chain. "
137 "It is not possible to verify this signature.");
139 m_contextData.wacSecurity.getCertificateChainListRef().push_back(
143 m_contextData.wacSecurity.getCertificateListRef().push_back(
144 toWidgetCertificateData(data, true));
145 m_contextData.wacSecurity.getCertificateListRef().push_back(
146 toWidgetCertificateData(data, false));
150 void TaskCertify::processAuthorSignature(const SignatureData &data)
152 using namespace ValidationCore;
153 LogInfo("DNS Identity match!");
154 // this signature is verified or widget is distributor signed
155 m_contextData.wacSecurity.getAuthorCertificatePtr() =
156 data.getEndEntityCertificatePtr();
157 m_contextData.wacSecurity.getCertificateListRef().push_back(
158 toWidgetCertificateData(data, true));
159 m_contextData.wacSecurity.getCertificateListRef().push_back(
160 toWidgetCertificateData(data, false));
162 // match widget_id with one from dns identity set
163 WacWidgetId widgetId(m_contextData.widgetConfig.configInfo.widget_id);
165 CertificatePtr cert = data.getEndEntityCertificatePtr();
167 Certificate::AltNameSet dnsIdentity = cert->getAlternativeNameDNS();
169 CertificateCollection collection;
170 collection.load(data.getCertList());
172 Assert(collection.isChain() &&
173 "Certificate collection is not able to create chain. "
174 "It is not possible to verify this signature.");
176 m_contextData.wacSecurity.getAuthorsCertificateChainListRef().push_back(
179 FOREACH(it, dnsIdentity){
180 if (widgetId.matchHost(*it)) {
181 m_contextData.wacSecurity.setRecognized(true);
187 void TaskCertify::stepSignature()
191 std::string widgetPath = m_contextData.locations->getTemporaryRootDir() + "/";
193 SignatureFileInfoSet signatureFiles;
194 SignatureFinder signatureFinder(widgetPath);
195 if (SignatureFinder::NO_ERROR != signatureFinder.find(signatureFiles)) {
196 LogError("Error in Signature Finder");
197 ThrowMsg(Exceptions::InvalidPackage,
198 "Error openig temporary widget directory");
201 SignatureFileInfoSet::reverse_iterator iter = signatureFiles.rbegin();
202 LogInfo("No of signatures: " << signatureFiles.size());
204 bool firstDistributorSignature = true;
205 bool testCertificate = false;
207 bool complianceMode = GlobalDAOReadOnly::getComplianceMode();
209 for (; iter != signatureFiles.rend(); ++iter) {
210 LogInfo("Checking signature with id=" << iter->getFileNumber());
211 SignatureData data(widgetPath + iter->getFileName(),
212 iter->getFileNumber());
216 xml.initialize(data, GlobalConfig::GetSignatureXmlSchema());
219 SignatureValidator validator(!GlobalSettings::OCSPTestModeEnabled(),
220 !GlobalSettings::CrlTestModeEnabled(),
222 SignatureValidator::Result result =
223 validator.check(data, widgetPath);
225 if (result == SignatureValidator::SIGNATURE_REVOKED) {
226 LogWarning("Certificate is REVOKED");
227 ThrowMsg(Exceptions::InvalidPackage,
228 "Certificate is REVOKED");
231 if (result == SignatureValidator::SIGNATURE_INVALID) {
232 LogWarning("Signature is INVALID");
233 // TODO change exception name
234 ThrowMsg(Exceptions::InvalidPackage,
238 if (data.isAuthorSignature()) {
239 if (result == SignatureValidator::SIGNATURE_VERIFIED ||
240 m_contextData.wacSecurity.isDistributorSigned())
242 processAuthorSignature(data);
243 } else if (result == SignatureValidator::SIGNATURE_DISREGARD) {
247 if (result == SignatureValidator::SIGNATURE_DISREGARD) {
250 // now signature _must_ be verified
251 processDistributorSignature(data, firstDistributorSignature);
252 firstDistributorSignature = false;
255 bool developerMode = GlobalDAOReadOnly::GetDeveloperMode();
257 std::string realMEID;
258 TapiHandle *tapiHandle = tel_init(NULL);
259 char *meid = tel_get_misc_me_sn_sync(tapiHandle);
265 tel_deinit(tapiHandle);
267 DeveloperModeValidator developerModeValidator(
270 GlobalDAOReadOnly::getComplianceFakeImei(),
271 GlobalDAOReadOnly::getComplianceFakeMeid(),
274 developerModeValidator.check(data);
277 data.getStorageType().contains(CertStoreId::DEVELOPER);
279 if (testCertificate && !developerMode) {
280 LogError("Widget signed by test certificate, "
281 "but developer mode is off.");
282 ThrowMsg(Exceptions::InvalidPackage,
283 "Widget signed by test certificate, "
284 "but developer mode is off.");
286 m_contextData.widgetConfig.isTestWidget = testCertificate;
287 } Catch(ParserSchemaException::Base) {
288 LogError("Error occured in ParserSchema.");
289 ReThrowMsg(Exceptions::InvalidPackage,
290 "Error occured in ParserSchema.");
292 Catch(DeveloperModeValidator::Exception::Base) {
293 LogError("Cannot validate developer certificate.");
294 ReThrowMsg(Exceptions::InvalidPackage,
295 "Cannot validate developer certificate.");
299 if (signatureFiles.empty()) {
300 LogInfo("No signature files has been found.");
303 LogInfo("================ Step: <<CSignature>> DONE ================");
305 m_contextData.job->UpdateProgress(
306 InstallerContext::INSTALL_DIGSIG_CHECK,
307 "Widget Signature checked");
310 void TaskCertify::createInstallPopup(PopupType type, const std::string &label)
312 m_contextData.job->Pause();
315 bool ret = createPopup();
318 loadPopup(type, label);
322 void TaskCertify::StepDeletePopupWin()
327 void TaskCertify::stepWarningPopup()
329 LogInfo("Step:: <<Warning Popup>>");
330 // SP-2151: If widget is not recognized (OCSP status of any of certificates
331 // it is signed with is not recognized) WRT must notify user that
332 // widget cannot be installed as a trusted application, and let the
333 // user decide whether it should be installed as an untrusted
335 if (!m_contextData.wacSecurity.isDistributorSigned()) {
336 std::string label = UNTRUSTED_WIDGET +
339 createInstallPopup(PopupType::WIDGET_UNRECOGNIZED, label);
343 std::string TaskCertify::createAuthorWidgetInfo() const
345 std::string authorInfo;
346 if (m_contextData.wacSecurity.isRecognized()) {
347 //authorInfo += _("IDS_IM_WIDGET_RECOGNISED");
348 authorInfo += _("WIDGET RECOGNISED");
350 //authorInfo += _("IDS_IM_WIDGET_UNRECOGNISED");
351 authorInfo += _("WIDGET UNRECOGNISED");
354 authorInfo += LABEL_NEW_LINE_2;
355 ValidationCore::CertificatePtr authorCert =
356 m_contextData.wacSecurity.getAuthorCertificatePtr();
358 DPL::Optional < DPL::String > organizationName =
359 authorCert->getOrganizationName();
361 //authorInfo += _("IDS_IM_WIDGET_AUTHOR_ORGANIZATION_NAME");
362 authorInfo += _("AUTHOR ORGANIZATION NAME");
363 authorInfo += LABEL_NEW_LINE;
365 if (!organizationName.IsNull()) {
366 authorInfo += DPL::ToUTF8String(*organizationName);
368 //authorInfo += _("IDS_IM_WIDGET_ORGANIZATION_UNKNOWN");
369 authorInfo += _("WIDGET ORGANIZATION UNKNOWN");
372 authorInfo += LABEL_NEW_LINE_2;
374 DPL::Optional < DPL::String > countryName =
375 authorCert->getCountryName();
377 //authorInfo += _("IDS_IM_WIDGET_COUNTRY_NAME");
378 authorInfo += _("WIDGET COUNTRY NAME");
379 authorInfo += LABEL_NEW_LINE;
381 if (!countryName.IsNull()) {
382 authorInfo += DPL::ToUTF8String(*countryName);
384 //authorInfo += _("IDS_IM_WIDGET_COUNTRY_UNKNOWN");
385 authorInfo += _("WIDGET COUNTRY UNKNOWN");
389 //_("IDS_IM_WIDGET_DOES_NOT_CONTAIN_RECOGNIZED_AUTHOR_SIGNATURE");
390 _("Widget does not contain recognized author signature");
395 void TaskCertify::stepAuthorInfoPopup()
397 LogInfo("Step:: <<Author Popup Information>>");
399 = createAuthorWidgetInfo() + LABEL_NEW_LINE_2 + QUESTION;
400 createInstallPopup(PopupType::WIDGET_AUTHOR_INFO, label);
403 void TaskCertify::stepFinalize()
405 LogInfo("Step: <<CERTYFYING DONE>>");
407 m_contextData.job->UpdateProgress(
408 InstallerContext::INSTALL_CERT_CHECK,
409 "Widget Certification Check Finished");
413 void TaskCertify::stepWarningPopupAnswer()
415 LogInfo("Step: <<Warning Popup Answer>>");
416 if (false == m_contextData.wacSecurity.isDistributorSigned() &&
417 WRT_POPUP_BUTTON_CANCEL == m_installCancel)
419 LogWarning("User does not agreed to install unsigned widgets!");
420 m_installCancel = WRT_POPUP_BUTTON;
422 ThrowMsg(Exceptions::NotAllowed, "Widget not allowed");
426 void TaskCertify::stepAuthorInfoPopupAnswer()
428 LogInfo("Step: <<Author Info Popup Answer>>");
429 if ( WRT_POPUP_BUTTON_CANCEL == m_installCancel) {
430 LogWarning("User does not agreed to install widget!");
431 m_installCancel = WRT_POPUP_BUTTON;
433 ThrowMsg(Exceptions::NotAllowed, "Widget not allowed");
437 bool TaskCertify::isTizenWebApp() const
440 if (m_installContext.widgetConfig.type.appType
441 == WrtDB::AppType::APP_TYPE_TIZENWEBAPP)
446 } //namespace WidgetInstall