1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
|
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/certificate_manager_model.h"
#include <cert.h>
#include "base/i18n/time_formatting.h"
#include "base/logging.h"
#include "base/utf_string_conversions.h"
#include "chrome/third_party/mozilla_security_manager/nsNSSCertHelper.h"
#include "chrome/third_party/mozilla_security_manager/nsNSSCertificate.h"
#include "net/base/net_errors.h"
#include "net/base/x509_certificate.h"
// TODO(mattm): Try to make this use only X509Certificate stuff rather than NSS
// functions in some places. (Not very important at this time since this is only
// used w/NSS anyway.)
// PSM = Mozilla's Personal Security Manager.
namespace psm = mozilla_security_manager;
namespace {
// Convert a char* return value from NSS into a std::string and free the NSS
// memory. If the arg is NULL, an empty string will be returned instead.
std::string Stringize(char* nss_text) {
std::string s;
if (nss_text) {
s = nss_text;
PORT_Free(nss_text);
}
return s;
}
std::string GetCertNameOrNickname(CERTCertificate* os_cert) {
std::string name = psm::ProcessIDN(
Stringize(CERT_GetCommonName(&os_cert->subject)));
if (name.empty() && os_cert->nickname) {
name = os_cert->nickname;
// Hack copied from mozilla: Cut off text before first :, which seems to
// just be the token name.
size_t colon_pos = name.find(':');
if (colon_pos != std::string::npos)
name = name.substr(colon_pos + 1);
}
return name;
}
} // namespace
CertificateManagerModel::CertificateManagerModel(Observer* observer)
: observer_(observer) {
}
CertificateManagerModel::~CertificateManagerModel() {
}
void CertificateManagerModel::Refresh() {
VLOG(1) << "refresh started";
cert_db_.ListCerts(&cert_list_);
observer_->CertificatesRefreshed();
VLOG(1) << "refresh finished";
}
void CertificateManagerModel::FilterAndBuildOrgGroupingMap(
net::CertType filter_type,
CertificateManagerModel::OrgGroupingMap* map) const {
for (net::CertificateList::const_iterator i = cert_list_.begin();
i != cert_list_.end(); ++i) {
net::X509Certificate* cert = i->get();
net::CertType type = psm::GetCertType(cert->os_cert_handle());
if (type != filter_type)
continue;
std::string org;
if (!cert->subject().organization_names.empty())
org = cert->subject().organization_names[0];
if (org.empty())
org = cert->subject().GetDisplayName();
(*map)[org].push_back(cert);
}
}
string16 CertificateManagerModel::GetColumnText(
const net::X509Certificate& cert,
Column column) const {
string16 rv;
switch (column) {
case COL_SUBJECT_NAME:
rv = UTF8ToUTF16(GetCertNameOrNickname(cert.os_cert_handle()));
break;
case COL_CERTIFICATE_STORE:
rv = UTF8ToUTF16(psm::GetCertTokenName(cert.os_cert_handle()));
break;
case COL_SERIAL_NUMBER:
rv = ASCIIToUTF16(Stringize(CERT_Hexify(
&cert.os_cert_handle()->serialNumber, PR_TRUE)));
break;
case COL_EXPIRES_ON:
if (!cert.valid_expiry().is_null()) {
rv = WideToUTF16Hack(
base::TimeFormatShortDateNumeric(cert.valid_expiry()));
}
break;
case COL_EMAIL_ADDRESS:
if (cert.os_cert_handle()->emailAddr)
rv = UTF8ToUTF16(cert.os_cert_handle()->emailAddr);
break;
default:
NOTREACHED();
}
return rv;
}
int CertificateManagerModel::ImportFromPKCS12(const std::string& data,
const string16& password) {
int result = cert_db_.ImportFromPKCS12(data, password);
if (result == net::OK)
Refresh();
return result;
}
int CertificateManagerModel::ExportToPKCS12(const net::CertificateList& certs,
const string16& password,
std::string* output) const {
return cert_db_.ExportToPKCS12(certs, password, output);
}
unsigned int CertificateManagerModel::GetCertTrust(
const net::X509Certificate* cert, net::CertType type) const {
return cert_db_.GetCertTrust(cert, type);
}
bool CertificateManagerModel::SetCertTrust(const net::X509Certificate* cert,
net::CertType type,
unsigned int trust_bits) {
return cert_db_.SetCertTrust(cert, type, trust_bits);
}
bool CertificateManagerModel::Delete(net::X509Certificate* cert) {
bool result = cert_db_.DeleteCertAndKey(cert);
if (result)
Refresh();
return result;
}
|