blob: 0461d278ad5860e714d0b24260c9a9952feff5b4 (
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
|
// Copyright (c) 2011 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.
#ifndef CONTENT_BROWSER_SSL_SSL_CLIENT_AUTH_HANDLER_H_
#define CONTENT_BROWSER_SSL_SSL_CLIENT_AUTH_HANDLER_H_
#pragma once
#include "base/basictypes.h"
#include "base/memory/ref_counted.h"
#include "base/message_loop_helpers.h"
#include "content/common/content_export.h"
#include "content/public/browser/browser_thread.h"
#include "net/base/ssl_cert_request_info.h"
namespace net {
class HttpNetworkSession;
class URLRequest;
class X509Certificate;
} // namespace net
// This class handles the approval and selection of a certificate for SSL client
// authentication by the user.
// It is self-owned and deletes itself when the UI reports the user selection or
// when the net::URLRequest is cancelled.
class CONTENT_EXPORT SSLClientAuthHandler
: public base::RefCountedThreadSafe<
SSLClientAuthHandler, content::BrowserThread::DeleteOnIOThread> {
public:
SSLClientAuthHandler(net::URLRequest* request,
net::SSLCertRequestInfo* cert_request_info);
// Selects a certificate and resumes the URL request with that certificate.
// Should only be called on the IO thread.
void SelectCertificate();
// Invoked when the request associated with this handler is cancelled.
// Should only be called on the IO thread.
void OnRequestCancelled();
// Calls DoCertificateSelected on the I/O thread.
// Called on the UI thread after the user has made a selection (which may
// be long after DoSelectCertificate returns, if the UI is modeless/async.)
void CertificateSelected(net::X509Certificate* cert);
protected:
virtual ~SSLClientAuthHandler();
private:
friend class base::RefCountedThreadSafe<
SSLClientAuthHandler, content::BrowserThread::DeleteOnIOThread>;
friend class content::BrowserThread;
friend class base::DeleteHelper<SSLClientAuthHandler>;
// Notifies that the user has selected a cert.
// Called on the IO thread.
void DoCertificateSelected(net::X509Certificate* cert);
// Selects a client certificate on the UI thread.
void DoSelectCertificate(int render_process_host_id,
int render_view_host_id);
// The net::URLRequest that triggered this client auth.
net::URLRequest* request_;
// The HttpNetworkSession |request_| is associated with.
const net::HttpNetworkSession* http_network_session_;
// The certs to choose from.
scoped_refptr<net::SSLCertRequestInfo> cert_request_info_;
DISALLOW_COPY_AND_ASSIGN(SSLClientAuthHandler);
};
#endif // CONTENT_BROWSER_SSL_SSL_CLIENT_AUTH_HANDLER_H_
|