1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "chrome/browser/ui/webui/certificate_viewer_webui.h"
8 #include "base/bind_helpers.h"
9 #include "base/i18n/time_formatting.h"
10 #include "base/json/json_writer.h"
11 #include "base/strings/string_number_conversions.h"
12 #include "base/strings/utf_string_conversions.h"
13 #include "chrome/browser/certificate_viewer.h"
14 #include "chrome/browser/platform_util.h"
15 #include "chrome/browser/ui/browser_dialogs.h"
16 #include "chrome/browser/ui/certificate_dialogs.h"
17 #include "chrome/browser/ui/webui/certificate_viewer_ui.h"
18 #include "chrome/browser/ui/webui/constrained_web_dialog_ui.h"
19 #include "chrome/common/net/x509_certificate_model.h"
20 #include "chrome/common/url_constants.h"
21 #include "content/public/browser/web_contents.h"
22 #include "grit/generated_resources.h"
23 #include "ui/base/l10n/l10n_util.h"
24 #include "ui/gfx/size.h"
26 using content::WebContents
;
27 using content::WebUIMessageHandler
;
28 using web_modal::NativeWebContentsModalDialog
;
30 // Shows a certificate using the WebUI certificate viewer.
31 void ShowCertificateViewer(WebContents
* web_contents
,
32 gfx::NativeWindow parent
,
33 net::X509Certificate
* cert
) {
34 CertificateViewerDialog
* dialog
= new CertificateViewerDialog(cert
);
35 dialog
->Show(web_contents
, parent
);
38 ////////////////////////////////////////////////////////////////////////////////
39 // CertificateViewerDialog
41 CertificateViewerModalDialog::CertificateViewerModalDialog(
42 net::X509Certificate
* cert
)
43 : cert_(cert
), webui_(NULL
), window_(NULL
) {
44 // Construct the dialog title from the certificate.
45 net::X509Certificate::OSCertHandles cert_chain
;
46 x509_certificate_model::GetCertChainFromCert(cert_
->os_cert_handle(),
48 title_
= l10n_util::GetStringFUTF16(IDS_CERT_INFO_DIALOG_TITLE
,
49 base::UTF8ToUTF16(x509_certificate_model::GetTitle(cert_chain
.front())));
52 CertificateViewerModalDialog::~CertificateViewerModalDialog() {
55 void CertificateViewerModalDialog::Show(content::WebContents
* web_contents
,
56 gfx::NativeWindow parent
) {
57 window_
= chrome::ShowWebDialog(parent
,
58 web_contents
->GetBrowserContext(),
62 NativeWebContentsModalDialog
63 CertificateViewerModalDialog::GetNativeWebContentsModalDialog() {
72 ui::ModalType
CertificateViewerModalDialog::GetDialogModalType() const {
73 return ui::MODAL_TYPE_SYSTEM
;
76 base::string16
CertificateViewerModalDialog::GetDialogTitle() const {
80 GURL
CertificateViewerModalDialog::GetDialogContentURL() const {
81 return GURL(chrome::kChromeUICertificateViewerDialogURL
);
84 void CertificateViewerModalDialog::GetWebUIMessageHandlers(
85 std::vector
<WebUIMessageHandler
*>* handlers
) const {
86 handlers
->push_back(new CertificateViewerDialogHandler(
87 const_cast<CertificateViewerModalDialog
*>(this), cert_
.get()));
90 void CertificateViewerModalDialog::GetDialogSize(gfx::Size
* size
) const {
91 const int kDefaultWidth
= 544;
92 const int kDefaultHeight
= 628;
93 size
->SetSize(kDefaultWidth
, kDefaultHeight
);
96 std::string
CertificateViewerModalDialog::GetDialogArgs() const {
99 // Certificate information. The keys in this dictionary's general key
100 // correspond to the IDs in the Html page.
101 base::DictionaryValue cert_info
;
102 net::X509Certificate::OSCertHandle cert_hnd
= cert_
->os_cert_handle();
104 // Get the certificate chain.
105 net::X509Certificate::OSCertHandles cert_chain
;
106 x509_certificate_model::GetCertChainFromCert(cert_hnd
, &cert_chain
);
108 // Certificate usage.
109 std::vector
<std::string
> usages
;
110 x509_certificate_model::GetUsageStrings(cert_hnd
, &usages
);
111 std::string usagestr
;
112 for (std::vector
<std::string
>::iterator it
= usages
.begin();
113 it
!= usages
.end(); ++it
) {
114 if (usagestr
.length() > 0) {
119 cert_info
.SetString("general.usages", usagestr
);
121 // Standard certificate details.
122 const std::string alternative_text
=
123 l10n_util::GetStringUTF8(IDS_CERT_INFO_FIELD_NOT_PRESENT
);
124 cert_info
.SetString("general.title", l10n_util::GetStringFUTF8(
125 IDS_CERT_INFO_DIALOG_TITLE
,
126 base::UTF8ToUTF16(x509_certificate_model::GetTitle(
127 cert_chain
.front()))));
129 // Issued to information.
130 cert_info
.SetString("general.issued-cn",
131 x509_certificate_model::GetSubjectCommonName(cert_hnd
, alternative_text
));
132 cert_info
.SetString("general.issued-o",
133 x509_certificate_model::GetSubjectOrgName(cert_hnd
, alternative_text
));
134 cert_info
.SetString("general.issued-ou",
135 x509_certificate_model::GetSubjectOrgUnitName(cert_hnd
,
137 cert_info
.SetString("general.issued-sn",
138 x509_certificate_model::GetSerialNumberHexified(cert_hnd
,
141 // Issuer information.
142 cert_info
.SetString("general.issuer-cn",
143 x509_certificate_model::GetIssuerCommonName(cert_hnd
, alternative_text
));
144 cert_info
.SetString("general.issuer-o",
145 x509_certificate_model::GetIssuerOrgName(cert_hnd
, alternative_text
));
146 cert_info
.SetString("general.issuer-ou",
147 x509_certificate_model::GetIssuerOrgUnitName(cert_hnd
, alternative_text
));
150 base::Time issued
, expires
;
151 std::string issued_str
, expires_str
;
152 if (x509_certificate_model::GetTimes(cert_hnd
, &issued
, &expires
)) {
153 issued_str
= base::UTF16ToUTF8(
154 base::TimeFormatShortDateNumeric(issued
));
155 expires_str
= base::UTF16ToUTF8(
156 base::TimeFormatShortDateNumeric(expires
));
158 issued_str
= alternative_text
;
159 expires_str
= alternative_text
;
161 cert_info
.SetString("general.issue-date", issued_str
);
162 cert_info
.SetString("general.expiry-date", expires_str
);
164 cert_info
.SetString("general.sha256",
165 x509_certificate_model::HashCertSHA256(cert_hnd
));
166 cert_info
.SetString("general.sha1",
167 x509_certificate_model::HashCertSHA1(cert_hnd
));
169 // Certificate hierarchy is constructed from bottom up.
170 base::ListValue
* children
= NULL
;
172 for (net::X509Certificate::OSCertHandles::const_iterator i
=
173 cert_chain
.begin(); i
!= cert_chain
.end(); ++i
, ++index
) {
174 base::DictionaryValue
* cert_node
= new base::DictionaryValue();
175 base::ListValue cert_details
;
176 cert_node
->SetString("label", x509_certificate_model::GetTitle(*i
).c_str());
177 cert_node
->SetDouble("payload.index", index
);
178 // Add the child from the previous iteration.
180 cert_node
->Set("children", children
);
182 // Add this node to the children list for the next iteration.
183 children
= new base::ListValue();
184 children
->Append(cert_node
);
186 // Set the last node as the top of the certificate hierarchy.
187 cert_info
.Set("hierarchy", children
);
189 base::JSONWriter::Write(&cert_info
, &data
);
194 void CertificateViewerModalDialog::OnDialogShown(
195 content::WebUI
* webui
,
196 content::RenderViewHost
* render_view_host
) {
200 void CertificateViewerModalDialog::OnDialogClosed(
201 const std::string
& json_retval
) {
204 void CertificateViewerModalDialog::OnCloseContents(WebContents
* source
,
205 bool* out_close_dialog
) {
206 if (out_close_dialog
)
207 *out_close_dialog
= true;
210 bool CertificateViewerModalDialog::ShouldShowDialogTitle() const {
214 ////////////////////////////////////////////////////////////////////////////////
215 // CertificateViewerDialog
217 CertificateViewerDialog::CertificateViewerDialog(net::X509Certificate
* cert
)
218 : CertificateViewerModalDialog(cert
),
222 CertificateViewerDialog::~CertificateViewerDialog() {
225 void CertificateViewerDialog::Show(WebContents
* web_contents
,
226 gfx::NativeWindow parent
) {
227 // TODO(bshe): UI tweaks needed for Aura HTML Dialog, such as adding padding
228 // on the title for Aura ConstrainedWebDialogUI.
229 dialog_
= CreateConstrainedWebDialog(
230 web_contents
->GetBrowserContext(),
236 NativeWebContentsModalDialog
237 CertificateViewerDialog::GetNativeWebContentsModalDialog() {
238 return dialog_
->GetNativeDialog();
241 GURL
CertificateViewerDialog::GetDialogContentURL() const {
242 return GURL(chrome::kChromeUICertificateViewerURL
);
245 ui::ModalType
CertificateViewerDialog::GetDialogModalType() const {
246 return ui::MODAL_TYPE_NONE
;
249 ////////////////////////////////////////////////////////////////////////////////
250 // CertificateViewerDialogHandler
252 CertificateViewerDialogHandler::CertificateViewerDialogHandler(
253 CertificateViewerModalDialog
* dialog
,
254 net::X509Certificate
* cert
) : cert_(cert
), dialog_(dialog
) {
255 x509_certificate_model::GetCertChainFromCert(cert_
->os_cert_handle(),
259 CertificateViewerDialogHandler::~CertificateViewerDialogHandler() {
262 void CertificateViewerDialogHandler::RegisterMessages() {
263 web_ui()->RegisterMessageCallback("exportCertificate",
264 base::Bind(&CertificateViewerDialogHandler::ExportCertificate
,
265 base::Unretained(this)));
266 web_ui()->RegisterMessageCallback("requestCertificateFields",
267 base::Bind(&CertificateViewerDialogHandler::RequestCertificateFields
,
268 base::Unretained(this)));
271 void CertificateViewerDialogHandler::ExportCertificate(
272 const base::ListValue
* args
) {
273 int cert_index
= GetCertificateIndex(args
);
277 NativeWebContentsModalDialog window
=
278 platform_util::GetTopLevel(dialog_
->GetNativeWebContentsModalDialog());
279 ShowCertExportDialog(web_ui()->GetWebContents(),
281 cert_chain_
[cert_index
]);
284 void CertificateViewerDialogHandler::RequestCertificateFields(
285 const base::ListValue
* args
) {
286 int cert_index
= GetCertificateIndex(args
);
290 net::X509Certificate::OSCertHandle cert
= cert_chain_
[cert_index
];
292 base::ListValue root_list
;
293 base::DictionaryValue
* node_details
;
294 base::DictionaryValue
* alt_node_details
;
295 base::ListValue
* cert_sub_fields
;
296 root_list
.Append(node_details
= new base::DictionaryValue());
297 node_details
->SetString("label", x509_certificate_model::GetTitle(cert
));
299 base::ListValue
* cert_fields
;
300 node_details
->Set("children", cert_fields
= new base::ListValue());
301 cert_fields
->Append(node_details
= new base::DictionaryValue());
303 node_details
->SetString("label",
304 l10n_util::GetStringUTF8(IDS_CERT_DETAILS_CERTIFICATE
));
305 node_details
->Set("children", cert_fields
= new base::ListValue());
307 // Main certificate fields.
308 cert_fields
->Append(node_details
= new base::DictionaryValue());
309 node_details
->SetString("label",
310 l10n_util::GetStringUTF8(IDS_CERT_DETAILS_VERSION
));
311 std::string version
= x509_certificate_model::GetVersion(cert
);
312 if (!version
.empty())
313 node_details
->SetString("payload.val",
314 l10n_util::GetStringFUTF8(IDS_CERT_DETAILS_VERSION_FORMAT
,
315 base::UTF8ToUTF16(version
)));
317 cert_fields
->Append(node_details
= new base::DictionaryValue());
318 node_details
->SetString("label",
319 l10n_util::GetStringUTF8(IDS_CERT_DETAILS_SERIAL_NUMBER
));
320 node_details
->SetString("payload.val",
321 x509_certificate_model::GetSerialNumberHexified(cert
,
322 l10n_util::GetStringUTF8(IDS_CERT_INFO_FIELD_NOT_PRESENT
)));
324 cert_fields
->Append(node_details
= new base::DictionaryValue());
325 node_details
->SetString("label",
326 l10n_util::GetStringUTF8(IDS_CERT_DETAILS_CERTIFICATE_SIG_ALG
));
327 node_details
->SetString("payload.val",
328 x509_certificate_model::ProcessSecAlgorithmSignature(cert
));
330 cert_fields
->Append(node_details
= new base::DictionaryValue());
331 node_details
->SetString("label",
332 l10n_util::GetStringUTF8(IDS_CERT_DETAILS_ISSUER
));
333 node_details
->SetString("payload.val",
334 x509_certificate_model::GetIssuerName(cert
));
337 cert_fields
->Append(node_details
= new base::DictionaryValue());
338 node_details
->SetString("label",
339 l10n_util::GetStringUTF8(IDS_CERT_DETAILS_VALIDITY
));
341 node_details
->Set("children", cert_sub_fields
= new base::ListValue());
342 cert_sub_fields
->Append(node_details
= new base::DictionaryValue());
343 node_details
->SetString("label",
344 l10n_util::GetStringUTF8(IDS_CERT_DETAILS_NOT_BEFORE
));
345 cert_sub_fields
->Append(alt_node_details
= new base::DictionaryValue());
346 alt_node_details
->SetString("label",
347 l10n_util::GetStringUTF8(IDS_CERT_DETAILS_NOT_AFTER
));
348 base::Time issued
, expires
;
349 if (x509_certificate_model::GetTimes(cert
, &issued
, &expires
)) {
350 node_details
->SetString("payload.val",
351 base::UTF16ToUTF8(base::TimeFormatShortDateAndTime(issued
)));
352 alt_node_details
->SetString("payload.val",
353 base::UTF16ToUTF8(base::TimeFormatShortDateAndTime(expires
)));
356 cert_fields
->Append(node_details
= new base::DictionaryValue());
357 node_details
->SetString("label",
358 l10n_util::GetStringUTF8(IDS_CERT_DETAILS_SUBJECT
));
359 node_details
->SetString("payload.val",
360 x509_certificate_model::GetSubjectName(cert
));
362 // Subject key information.
363 cert_fields
->Append(node_details
= new base::DictionaryValue());
364 node_details
->SetString("label",
365 l10n_util::GetStringUTF8(IDS_CERT_DETAILS_SUBJECT_KEY_INFO
));
367 node_details
->Set("children", cert_sub_fields
= new base::ListValue());
368 cert_sub_fields
->Append(node_details
= new base::DictionaryValue());
369 node_details
->SetString("label",
370 l10n_util::GetStringUTF8(IDS_CERT_DETAILS_SUBJECT_KEY_ALG
));
371 node_details
->SetString("payload.val",
372 x509_certificate_model::ProcessSecAlgorithmSubjectPublicKey(cert
));
373 cert_sub_fields
->Append(node_details
= new base::DictionaryValue());
374 node_details
->SetString("label",
375 l10n_util::GetStringUTF8(IDS_CERT_DETAILS_SUBJECT_KEY
));
376 node_details
->SetString("payload.val",
377 x509_certificate_model::ProcessSubjectPublicKeyInfo(cert
));
380 x509_certificate_model::Extensions extensions
;
381 x509_certificate_model::GetExtensions(
382 l10n_util::GetStringUTF8(IDS_CERT_EXTENSION_CRITICAL
),
383 l10n_util::GetStringUTF8(IDS_CERT_EXTENSION_NON_CRITICAL
),
386 if (!extensions
.empty()) {
387 cert_fields
->Append(node_details
= new base::DictionaryValue());
388 node_details
->SetString("label",
389 l10n_util::GetStringUTF8(IDS_CERT_DETAILS_EXTENSIONS
));
391 node_details
->Set("children", cert_sub_fields
= new base::ListValue());
392 for (x509_certificate_model::Extensions::const_iterator i
=
393 extensions
.begin(); i
!= extensions
.end(); ++i
) {
394 cert_sub_fields
->Append(node_details
= new base::DictionaryValue());
395 node_details
->SetString("label", i
->name
);
396 node_details
->SetString("payload.val", i
->value
);
400 cert_fields
->Append(node_details
= new base::DictionaryValue());
401 node_details
->SetString("label",
402 l10n_util::GetStringUTF8(IDS_CERT_DETAILS_CERTIFICATE_SIG_ALG
));
403 node_details
->SetString("payload.val",
404 x509_certificate_model::ProcessSecAlgorithmSignatureWrap(cert
));
406 cert_fields
->Append(node_details
= new base::DictionaryValue());
407 node_details
->SetString("label",
408 l10n_util::GetStringUTF8(IDS_CERT_DETAILS_CERTIFICATE_SIG_VALUE
));
409 node_details
->SetString("payload.val",
410 x509_certificate_model::ProcessRawBitsSignatureWrap(cert
));
412 cert_fields
->Append(node_details
= new base::DictionaryValue());
413 node_details
->SetString("label",
414 l10n_util::GetStringUTF8(IDS_CERT_INFO_FINGERPRINTS_GROUP
));
415 node_details
->Set("children", cert_sub_fields
= new base::ListValue());
417 cert_sub_fields
->Append(node_details
= new base::DictionaryValue());
418 node_details
->SetString("label",
419 l10n_util::GetStringUTF8(IDS_CERT_INFO_SHA256_FINGERPRINT_LABEL
));
420 node_details
->SetString("payload.val",
421 x509_certificate_model::HashCertSHA256(cert
));
422 cert_sub_fields
->Append(node_details
= new base::DictionaryValue());
423 node_details
->SetString("label",
424 l10n_util::GetStringUTF8(IDS_CERT_INFO_SHA1_FINGERPRINT_LABEL
));
425 node_details
->SetString("payload.val",
426 x509_certificate_model::HashCertSHA1(cert
));
428 // Send certificate information to javascript.
429 web_ui()->CallJavascriptFunction("cert_viewer.getCertificateFields",
433 int CertificateViewerDialogHandler::GetCertificateIndex(
434 const base::ListValue
* args
) const {
437 if (!(args
->GetDouble(0, &val
)))
439 cert_index
= static_cast<int>(val
);
440 if (cert_index
< 0 || cert_index
>= static_cast<int>(cert_chain_
.size()))