blob: 4a2dedb74822bb6ea55eacf54c087ce08714ed31 (
plain)
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
|
// Copyright (c) 2012 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/ssl/ssl_client_auth_observer.h"
#include <utility>
#include "base/bind.h"
#include "base/logging.h"
#include "chrome/browser/chrome_notification_types.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/client_certificate_delegate.h"
#include "content/public/browser/notification_service.h"
#include "net/cert/x509_certificate.h"
#include "net/ssl/ssl_cert_request_info.h"
using content::BrowserThread;
typedef std::pair<net::SSLCertRequestInfo*, net::X509Certificate*> CertDetails;
SSLClientAuthObserver::SSLClientAuthObserver(
const content::BrowserContext* browser_context,
const scoped_refptr<net::SSLCertRequestInfo>& cert_request_info,
scoped_ptr<content::ClientCertificateDelegate> delegate)
: browser_context_(browser_context),
cert_request_info_(cert_request_info),
delegate_(delegate.Pass()) {
}
SSLClientAuthObserver::~SSLClientAuthObserver() {
}
void SSLClientAuthObserver::CertificateSelected(
net::X509Certificate* certificate) {
if (!delegate_)
return;
// Stop listening now that the delegate has been resolved. This is also to
// avoid getting a self-notification.
StopObserving();
CertDetails details;
details.first = cert_request_info_.get();
details.second = certificate;
content::NotificationService* service =
content::NotificationService::current();
service->Notify(chrome::NOTIFICATION_SSL_CLIENT_AUTH_CERT_SELECTED,
content::Source<content::BrowserContext>(browser_context_),
content::Details<CertDetails>(&details));
delegate_->ContinueWithCertificate(certificate);
delegate_.reset();
}
void SSLClientAuthObserver::CancelCertificateSelection() {
if (!delegate_)
return;
// Stop observing now that the delegate has been resolved.
StopObserving();
delegate_.reset();
}
void SSLClientAuthObserver::Observe(
int type,
const content::NotificationSource& source,
const content::NotificationDetails& details) {
DVLOG(1) << "SSLClientAuthObserver::Observe " << this;
DCHECK_CURRENTLY_ON(BrowserThread::UI);
DCHECK(type == chrome::NOTIFICATION_SSL_CLIENT_AUTH_CERT_SELECTED);
CertDetails* cert_details = content::Details<CertDetails>(details).ptr();
if (!cert_details->first->host_and_port.Equals(
cert_request_info_->host_and_port))
return;
DVLOG(1) << this << " got matching notification and selecting cert "
<< cert_details->second;
StopObserving();
delegate_->ContinueWithCertificate(cert_details->second);
delegate_.reset();
OnCertSelectedByNotification();
}
void SSLClientAuthObserver::StartObserving() {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
notification_registrar_.Add(
this, chrome::NOTIFICATION_SSL_CLIENT_AUTH_CERT_SELECTED,
content::Source<content::BrowserContext>(browser_context_));
}
void SSLClientAuthObserver::StopObserving() {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
notification_registrar_.RemoveAll();
}
|