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 // This file includes code SSLClientSocketNSS::DoVerifyCertComplete() derived
6 // from AuthCertificateCallback() in
7 // mozilla/security/manager/ssl/src/nsNSSCallbacks.cpp.
9 /* ***** BEGIN LICENSE BLOCK *****
10 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
12 * The contents of this file are subject to the Mozilla Public License Version
13 * 1.1 (the "License"); you may not use this file except in compliance with
14 * the License. You may obtain a copy of the License at
15 * http://www.mozilla.org/MPL/
17 * Software distributed under the License is distributed on an "AS IS" basis,
18 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
19 * for the specific language governing rights and limitations under the
22 * The Original Code is the Netscape security libraries.
24 * The Initial Developer of the Original Code is
25 * Netscape Communications Corporation.
26 * Portions created by the Initial Developer are Copyright (C) 2000
27 * the Initial Developer. All Rights Reserved.
30 * Ian McGreer <mcgreer@netscape.com>
31 * Javier Delgadillo <javi@netscape.com>
32 * Kai Engert <kengert@redhat.com>
34 * Alternatively, the contents of this file may be used under the terms of
35 * either the GNU General Public License Version 2 or later (the "GPL"), or
36 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
37 * in which case the provisions of the GPL or the LGPL are applicable instead
38 * of those above. If you wish to allow use of your version of this file only
39 * under the terms of either the GPL or the LGPL, and not to allow others to
40 * use your version of this file under the terms of the MPL, indicate your
41 * decision by deleting the provisions above and replace them with the notice
42 * and other provisions required by the GPL or the LGPL. If you do not delete
43 * the provisions above, a recipient may use your version of this file under
44 * the terms of any one of the MPL, the GPL or the LGPL.
46 * ***** END LICENSE BLOCK ***** */
48 #include "net/socket/ssl_client_socket_nss.h"
67 #include "base/bind.h"
68 #include "base/bind_helpers.h"
69 #include "base/callback_helpers.h"
70 #include "base/compiler_specific.h"
71 #include "base/logging.h"
72 #include "base/memory/singleton.h"
73 #include "base/metrics/histogram.h"
74 #include "base/single_thread_task_runner.h"
75 #include "base/stl_util.h"
76 #include "base/strings/string_number_conversions.h"
77 #include "base/strings/string_util.h"
78 #include "base/strings/stringprintf.h"
79 #include "base/thread_task_runner_handle.h"
80 #include "base/threading/thread_restrictions.h"
81 #include "base/values.h"
82 #include "crypto/ec_private_key.h"
83 #include "crypto/nss_util.h"
84 #include "crypto/nss_util_internal.h"
85 #include "crypto/rsa_private_key.h"
86 #include "crypto/scoped_nss_types.h"
87 #include "net/base/address_list.h"
88 #include "net/base/connection_type_histograms.h"
89 #include "net/base/dns_util.h"
90 #include "net/base/io_buffer.h"
91 #include "net/base/net_errors.h"
92 #include "net/base/net_log.h"
93 #include "net/cert/asn1_util.h"
94 #include "net/cert/cert_status_flags.h"
95 #include "net/cert/cert_verifier.h"
96 #include "net/cert/ct_objects_extractor.h"
97 #include "net/cert/ct_verifier.h"
98 #include "net/cert/ct_verify_result.h"
99 #include "net/cert/scoped_nss_types.h"
100 #include "net/cert/sct_status_flags.h"
101 #include "net/cert/single_request_cert_verifier.h"
102 #include "net/cert/x509_certificate_net_log_param.h"
103 #include "net/cert/x509_util.h"
104 #include "net/http/transport_security_state.h"
105 #include "net/ocsp/nss_ocsp.h"
106 #include "net/socket/client_socket_handle.h"
107 #include "net/socket/nss_ssl_util.h"
108 #include "net/ssl/ssl_cert_request_info.h"
109 #include "net/ssl/ssl_connection_status_flags.h"
110 #include "net/ssl/ssl_info.h"
114 #include <wincrypt.h>
116 #include "base/win/windows_version.h"
117 #elif defined(OS_MACOSX)
118 #include <Security/SecBase.h>
119 #include <Security/SecCertificate.h>
120 #include <Security/SecIdentity.h>
122 #include "base/mac/mac_logging.h"
123 #include "base/synchronization/lock.h"
124 #include "crypto/mac_security_services_lock.h"
125 #elif defined(USE_NSS)
131 // State machines are easier to debug if you log state transitions.
132 // Enable these if you want to see what's going on.
134 #define EnterFunction(x)
135 #define LeaveFunction(x)
136 #define GotoState(s) next_handshake_state_ = s
138 #define EnterFunction(x)\
139 VLOG(1) << (void *)this << " " << __FUNCTION__ << " enter " << x\
140 << "; next_handshake_state " << next_handshake_state_
141 #define LeaveFunction(x)\
142 VLOG(1) << (void *)this << " " << __FUNCTION__ << " leave " << x\
143 << "; next_handshake_state " << next_handshake_state_
144 #define GotoState(s)\
146 VLOG(1) << (void *)this << " " << __FUNCTION__ << " jump to state " << s;\
147 next_handshake_state_ = s;\
153 // SSL plaintext fragments are shorter than 16KB. Although the record layer
154 // overhead is allowed to be 2K + 5 bytes, in practice the overhead is much
155 // smaller than 1KB. So a 17KB buffer should be large enough to hold an
156 // entire SSL record.
157 const int kRecvBufferSize
= 17 * 1024;
158 const int kSendBufferSize
= 17 * 1024;
160 // Used by SSLClientSocketNSS::Core to indicate there is no read result
161 // obtained by a previous operation waiting to be returned to the caller.
162 // This constant can be any non-negative/non-zero value (eg: it does not
163 // overlap with any value of the net::Error range, including net::OK).
164 const int kNoPendingReadResult
= 1;
167 // CERT_OCSP_RESPONSE_PROP_ID is only implemented on Vista+, but it can be
168 // set on Windows XP without error. There is some overhead from the server
169 // sending the OCSP response if it supports the extension, for the subset of
170 // XP clients who will request it but be unable to use it, but this is an
171 // acceptable trade-off for simplicity of implementation.
172 bool IsOCSPStaplingSupported() {
175 #elif defined(USE_NSS)
177 (*CacheOCSPResponseFromSideChannelFunction
)(
178 CERTCertDBHandle
*handle
, CERTCertificate
*cert
, PRTime time
,
179 SECItem
*encodedResponse
, void *pwArg
);
181 // On Linux, we dynamically link against the system version of libnss3.so. In
182 // order to continue working on systems without up-to-date versions of NSS we
183 // lookup CERT_CacheOCSPResponseFromSideChannel with dlsym.
185 // RuntimeLibNSSFunctionPointers is a singleton which caches the results of any
186 // runtime symbol resolution that we need.
187 class RuntimeLibNSSFunctionPointers
{
189 CacheOCSPResponseFromSideChannelFunction
190 GetCacheOCSPResponseFromSideChannelFunction() {
191 return cache_ocsp_response_from_side_channel_
;
194 static RuntimeLibNSSFunctionPointers
* GetInstance() {
195 return Singleton
<RuntimeLibNSSFunctionPointers
>::get();
199 friend struct DefaultSingletonTraits
<RuntimeLibNSSFunctionPointers
>;
201 RuntimeLibNSSFunctionPointers() {
202 cache_ocsp_response_from_side_channel_
=
203 (CacheOCSPResponseFromSideChannelFunction
)
204 dlsym(RTLD_DEFAULT
, "CERT_CacheOCSPResponseFromSideChannel");
207 CacheOCSPResponseFromSideChannelFunction
208 cache_ocsp_response_from_side_channel_
;
211 CacheOCSPResponseFromSideChannelFunction
212 GetCacheOCSPResponseFromSideChannelFunction() {
213 return RuntimeLibNSSFunctionPointers::GetInstance()
214 ->GetCacheOCSPResponseFromSideChannelFunction();
217 bool IsOCSPStaplingSupported() {
218 return GetCacheOCSPResponseFromSideChannelFunction() != NULL
;
221 // TODO(agl): Figure out if we can plumb the OCSP response into Mac's system
222 // certificate validation functions.
223 bool IsOCSPStaplingSupported() {
230 // This callback is intended to be used with CertFindChainInStore. In addition
231 // to filtering by extended/enhanced key usage, we do not show expired
232 // certificates and require digital signature usage in the key usage
235 // This matches our behavior on Mac OS X and that of NSS. It also matches the
236 // default behavior of IE8. See http://support.microsoft.com/kb/890326 and
237 // http://blogs.msdn.com/b/askie/archive/2009/06/09/my-expired-client-certificates-no-longer-display-when-connecting-to-my-web-server-using-ie8.aspx
238 BOOL WINAPI
ClientCertFindCallback(PCCERT_CONTEXT cert_context
,
240 VLOG(1) << "Calling ClientCertFindCallback from _nss";
241 // Verify the certificate's KU is good.
243 if (CertGetIntendedKeyUsage(X509_ASN_ENCODING
, cert_context
->pCertInfo
,
245 if (!(key_usage
& CERT_DIGITAL_SIGNATURE_KEY_USAGE
))
248 DWORD err
= GetLastError();
249 // If |err| is non-zero, it's an actual error. Otherwise the extension
250 // just isn't present, and we treat it as if everything was allowed.
252 DLOG(ERROR
) << "CertGetIntendedKeyUsage failed: " << err
;
257 // Verify the current time is within the certificate's validity period.
258 if (CertVerifyTimeValidity(NULL
, cert_context
->pCertInfo
) != 0)
261 // Verify private key metadata is associated with this certificate.
263 if (!CertGetCertificateContextProperty(
264 cert_context
, CERT_KEY_PROV_INFO_PROP_ID
, NULL
, &size
)) {
273 // Helper functions to make it possible to log events from within the
274 // SSLClientSocketNSS::Core.
275 void AddLogEvent(const base::WeakPtr
<BoundNetLog
>& net_log
,
276 NetLog::EventType event_type
) {
279 net_log
->AddEvent(event_type
);
282 // Helper function to make it possible to log events from within the
283 // SSLClientSocketNSS::Core.
284 void AddLogEventWithCallback(const base::WeakPtr
<BoundNetLog
>& net_log
,
285 NetLog::EventType event_type
,
286 const NetLog::ParametersCallback
& callback
) {
289 net_log
->AddEvent(event_type
, callback
);
292 // Helper function to make it easier to call BoundNetLog::AddByteTransferEvent
293 // from within the SSLClientSocketNSS::Core.
294 // AddByteTransferEvent expects to receive a const char*, which within the
295 // Core is backed by an IOBuffer. If the "const char*" is bound via
296 // base::Bind and posted to another thread, and the IOBuffer that backs that
297 // pointer then goes out of scope on the origin thread, this would result in
298 // an invalid read of a stale pointer.
299 // Instead, provide a signature that accepts an IOBuffer*, so that a reference
300 // to the owning IOBuffer can be bound to the Callback. This ensures that the
301 // IOBuffer will stay alive long enough to cross threads if needed.
302 void LogByteTransferEvent(
303 const base::WeakPtr
<BoundNetLog
>& net_log
, NetLog::EventType event_type
,
304 int len
, IOBuffer
* buffer
) {
307 net_log
->AddByteTransferEvent(event_type
, len
, buffer
->data());
310 // PeerCertificateChain is a helper object which extracts the certificate
311 // chain, as given by the server, from an NSS socket and performs the needed
312 // resource management. The first element of the chain is the leaf certificate
313 // and the other elements are in the order given by the server.
314 class PeerCertificateChain
{
316 PeerCertificateChain() {}
317 PeerCertificateChain(const PeerCertificateChain
& other
);
318 ~PeerCertificateChain();
319 PeerCertificateChain
& operator=(const PeerCertificateChain
& other
);
321 // Resets the current chain, freeing any resources, and updates the current
322 // chain to be a copy of the chain stored in |nss_fd|.
323 // If |nss_fd| is NULL, then the current certificate chain will be freed.
324 void Reset(PRFileDesc
* nss_fd
);
326 // Returns the current certificate chain as a vector of DER-encoded
327 // base::StringPieces. The returned vector remains valid until Reset is
329 std::vector
<base::StringPiece
> AsStringPieceVector() const;
331 bool empty() const { return certs_
.empty(); }
333 CERTCertificate
* operator[](size_t index
) const {
334 DCHECK_LT(index
, certs_
.size());
335 return certs_
[index
];
339 std::vector
<CERTCertificate
*> certs_
;
342 PeerCertificateChain::PeerCertificateChain(
343 const PeerCertificateChain
& other
) {
347 PeerCertificateChain::~PeerCertificateChain() {
351 PeerCertificateChain
& PeerCertificateChain::operator=(
352 const PeerCertificateChain
& other
) {
357 certs_
.reserve(other
.certs_
.size());
358 for (size_t i
= 0; i
< other
.certs_
.size(); ++i
)
359 certs_
.push_back(CERT_DupCertificate(other
.certs_
[i
]));
364 void PeerCertificateChain::Reset(PRFileDesc
* nss_fd
) {
365 for (size_t i
= 0; i
< certs_
.size(); ++i
)
366 CERT_DestroyCertificate(certs_
[i
]);
372 CERTCertList
* list
= SSL_PeerCertificateChain(nss_fd
);
373 // The handshake on |nss_fd| may not have completed.
377 for (CERTCertListNode
* node
= CERT_LIST_HEAD(list
);
378 !CERT_LIST_END(node
, list
); node
= CERT_LIST_NEXT(node
)) {
379 certs_
.push_back(CERT_DupCertificate(node
->cert
));
381 CERT_DestroyCertList(list
);
384 std::vector
<base::StringPiece
>
385 PeerCertificateChain::AsStringPieceVector() const {
386 std::vector
<base::StringPiece
> v(certs_
.size());
387 for (unsigned i
= 0; i
< certs_
.size(); i
++) {
388 v
[i
] = base::StringPiece(
389 reinterpret_cast<const char*>(certs_
[i
]->derCert
.data
),
390 certs_
[i
]->derCert
.len
);
396 // HandshakeState is a helper struct used to pass handshake state between
397 // the NSS task runner and the network task runner.
399 // It contains members that may be read or written on the NSS task runner,
400 // but which also need to be read from the network task runner. The NSS task
401 // runner will notify the network task runner whenever this state changes, so
402 // that the network task runner can safely make a copy, which avoids the need
404 struct HandshakeState
{
405 HandshakeState() { Reset(); }
408 next_proto_status
= SSLClientSocket::kNextProtoUnsupported
;
410 channel_id_sent
= false;
411 server_cert_chain
.Reset(NULL
);
413 sct_list_from_tls_extension
.clear();
414 stapled_ocsp_response
.clear();
415 resumed_handshake
= false;
416 ssl_connection_status
= 0;
419 // Set to kNextProtoNegotiated if NPN was successfully negotiated, with the
420 // negotiated protocol stored in |next_proto|.
421 SSLClientSocket::NextProtoStatus next_proto_status
;
422 std::string next_proto
;
424 // True if a channel ID was sent.
425 bool channel_id_sent
;
427 // List of DER-encoded X.509 DistinguishedName of certificate authorities
428 // allowed by the server.
429 std::vector
<std::string
> cert_authorities
;
431 // Set when the handshake fully completes.
433 // The server certificate is first received from NSS as an NSS certificate
434 // chain (|server_cert_chain|) and then converted into a platform-specific
435 // X509Certificate object (|server_cert|). It's possible for some
436 // certificates to be successfully parsed by NSS, and not by the platform
437 // libraries (i.e.: when running within a sandbox, different parsing
438 // algorithms, etc), so it's not safe to assume that |server_cert| will
439 // always be non-NULL.
440 PeerCertificateChain server_cert_chain
;
441 scoped_refptr
<X509Certificate
> server_cert
;
442 // SignedCertificateTimestampList received via TLS extension (RFC 6962).
443 std::string sct_list_from_tls_extension
;
444 // Stapled OCSP response received.
445 std::string stapled_ocsp_response
;
447 // True if the current handshake was the result of TLS session resumption.
448 bool resumed_handshake
;
450 // The negotiated security parameters (TLS version, cipher, extensions) of
451 // the SSL connection.
452 int ssl_connection_status
;
455 // Client-side error mapping functions.
457 // Map NSS error code to network error code.
458 int MapNSSClientError(PRErrorCode err
) {
460 case SSL_ERROR_BAD_CERT_ALERT
:
461 case SSL_ERROR_UNSUPPORTED_CERT_ALERT
:
462 case SSL_ERROR_REVOKED_CERT_ALERT
:
463 case SSL_ERROR_EXPIRED_CERT_ALERT
:
464 case SSL_ERROR_CERTIFICATE_UNKNOWN_ALERT
:
465 case SSL_ERROR_UNKNOWN_CA_ALERT
:
466 case SSL_ERROR_ACCESS_DENIED_ALERT
:
467 return ERR_BAD_SSL_CLIENT_AUTH_CERT
;
469 return MapNSSError(err
);
475 // SSLClientSocketNSS::Core provides a thread-safe, ref-counted core that is
476 // able to marshal data between NSS functions and an underlying transport
479 // All public functions are meant to be called from the network task runner,
480 // and any callbacks supplied will be invoked there as well, provided that
481 // Detach() has not been called yet.
483 /////////////////////////////////////////////////////////////////////////////
485 // Threading within SSLClientSocketNSS and SSLClientSocketNSS::Core:
487 // Because NSS may block on either hardware or user input during operations
488 // such as signing, creating certificates, or locating private keys, the Core
489 // handles all of the interactions with the underlying NSS SSL socket, so
490 // that these blocking calls can be executed on a dedicated task runner.
492 // Note that the network task runner and the NSS task runner may be executing
493 // on the same thread. If that happens, then it's more performant to try to
494 // complete as much work as possible synchronously, even if it might block,
495 // rather than continually PostTask-ing to the same thread.
497 // Because NSS functions should only be called on the NSS task runner, while
498 // I/O resources should only be accessed on the network task runner, most
499 // public functions are implemented via three methods, each with different
500 // task runner affinities.
502 // In the single-threaded mode (where the network and NSS task runners run on
503 // the same thread), these are all attempted synchronously, while in the
504 // multi-threaded mode, message passing is used.
506 // 1) NSS Task Runner: Execute NSS function (DoPayloadRead, DoPayloadWrite,
508 // 2) NSS Task Runner: Prepare data to go from NSS to an IO function:
509 // (BufferRecv, BufferSend)
510 // 3) Network Task Runner: Perform IO on that data (DoBufferRecv,
511 // DoBufferSend, DoGetChannelID, OnGetChannelIDComplete)
512 // 4) Both Task Runners: Callback for asynchronous completion or to marshal
513 // data from the network task runner back to NSS (BufferRecvComplete,
514 // BufferSendComplete, OnHandshakeIOComplete)
516 /////////////////////////////////////////////////////////////////////////////
517 // Single-threaded example
519 // |--------------------------Network Task Runner--------------------------|
520 // SSLClientSocketNSS Core (Transport Socket)
522 // |-------------------------V
530 // |-------------------------V
532 // V-------------------------|
533 // BufferRecvComplete()
535 // PostOrRunCallback()
536 // V-------------------------|
539 /////////////////////////////////////////////////////////////////////////////
540 // Multi-threaded example:
542 // |--------------------Network Task Runner-------------|--NSS Task Runner--|
543 // SSLClientSocketNSS Core Socket Core
545 // |---------------------V
547 // |-------------------------------V
553 // V-------------------------------|
555 // |----------------V
557 // V----------------|
558 // BufferRecvComplete()
559 // |-------------------------------V
560 // BufferRecvComplete()
562 // PostOrRunCallback()
563 // V-------------------------------|
564 // PostOrRunCallback()
565 // V---------------------|
568 /////////////////////////////////////////////////////////////////////////////
569 class SSLClientSocketNSS::Core
: public base::RefCountedThreadSafe
<Core
> {
571 // Creates a new Core.
573 // Any calls to NSS are executed on the |nss_task_runner|, while any calls
574 // that need to operate on the underlying transport, net log, or server
575 // bound certificate fetching will happen on the |network_task_runner|, so
576 // that their lifetimes match that of the owning SSLClientSocketNSS.
578 // The caller retains ownership of |transport|, |net_log|, and
579 // |channel_id_service|, and they will not be accessed once Detach()
581 Core(base::SequencedTaskRunner
* network_task_runner
,
582 base::SequencedTaskRunner
* nss_task_runner
,
583 ClientSocketHandle
* transport
,
584 const HostPortPair
& host_and_port
,
585 const SSLConfig
& ssl_config
,
586 BoundNetLog
* net_log
,
587 ChannelIDService
* channel_id_service
);
589 // Called on the network task runner.
590 // Transfers ownership of |socket|, an NSS SSL socket, and |buffers|, the
591 // underlying memio implementation, to the Core. Returns true if the Core
592 // was successfully registered with the socket.
593 bool Init(PRFileDesc
* socket
, memio_Private
* buffers
);
595 // Called on the network task runner.
597 // Attempts to perform an SSL handshake. If the handshake cannot be
598 // completed synchronously, returns ERR_IO_PENDING, invoking |callback| on
599 // the network task runner once the handshake has completed. Otherwise,
600 // returns OK on success or a network error code on failure.
601 int Connect(const CompletionCallback
& callback
);
603 // Called on the network task runner.
604 // Signals that the resources owned by the network task runner are going
605 // away. No further callbacks will be invoked on the network task runner.
606 // May be called at any time.
609 // Called on the network task runner.
610 // Returns the current state of the underlying SSL socket. May be called at
612 const HandshakeState
& state() const { return network_handshake_state_
; }
614 // Called on the network task runner.
615 // Read() and Write() mirror the net::Socket functions of the same name.
616 // If ERR_IO_PENDING is returned, |callback| will be invoked on the network
617 // task runner at a later point, unless the caller calls Detach().
618 int Read(IOBuffer
* buf
, int buf_len
, const CompletionCallback
& callback
);
619 int Write(IOBuffer
* buf
, int buf_len
, const CompletionCallback
& callback
);
621 // Called on the network task runner.
622 bool IsConnected() const;
623 bool HasPendingAsyncOperation() const;
624 bool HasUnhandledReceivedData() const;
625 bool WasEverUsed() const;
627 // Called on the network task runner.
628 // Causes the associated SSL/TLS session ID to be added to NSS's session
629 // cache, but only if the connection has not been False Started.
631 // This should only be called after the server's certificate has been
632 // verified, and may not be called within an NSS callback.
633 void CacheSessionIfNecessary();
636 friend class base::RefCountedThreadSafe
<Core
>;
642 STATE_GET_DOMAIN_BOUND_CERT_COMPLETE
,
645 bool OnNSSTaskRunner() const;
646 bool OnNetworkTaskRunner() const;
648 ////////////////////////////////////////////////////////////////////////////
649 // Methods that are ONLY called on the NSS task runner:
650 ////////////////////////////////////////////////////////////////////////////
652 // Called by NSS during full handshakes to allow the application to
653 // verify the certificate. Instead of verifying the certificate in the midst
654 // of the handshake, SECSuccess is always returned and the peer's certificate
655 // is verified afterwards.
656 // This behaviour is an artifact of the original SSLClientSocketWin
657 // implementation, which could not verify the peer's certificate until after
658 // the handshake had completed, as well as bugs in NSS that prevent
659 // SSL_RestartHandshakeAfterCertReq from working.
660 static SECStatus
OwnAuthCertHandler(void* arg
,
665 // Callbacks called by NSS when the peer requests client certificate
667 // See the documentation in third_party/nss/ssl/ssl.h for the meanings of
669 #if defined(NSS_PLATFORM_CLIENT_AUTH)
670 // When NSS has been integrated with awareness of the underlying system
671 // cryptographic libraries, this callback allows the caller to supply a
672 // native platform certificate and key for use by NSS. At most, one of
673 // either (result_certs, result_private_key) or (result_nss_certificate,
674 // result_nss_private_key) should be set.
675 // |arg| contains a pointer to the current SSLClientSocketNSS::Core.
676 static SECStatus
PlatformClientAuthHandler(
679 CERTDistNames
* ca_names
,
680 CERTCertList
** result_certs
,
681 void** result_private_key
,
682 CERTCertificate
** result_nss_certificate
,
683 SECKEYPrivateKey
** result_nss_private_key
);
685 static SECStatus
ClientAuthHandler(void* arg
,
687 CERTDistNames
* ca_names
,
688 CERTCertificate
** result_certificate
,
689 SECKEYPrivateKey
** result_private_key
);
692 // Called by NSS to determine if we can False Start.
693 // |arg| contains a pointer to the current SSLClientSocketNSS::Core.
694 static SECStatus
CanFalseStartCallback(PRFileDesc
* socket
,
696 PRBool
* can_false_start
);
698 // Called by NSS once the handshake has completed.
699 // |arg| contains a pointer to the current SSLClientSocketNSS::Core.
700 static void HandshakeCallback(PRFileDesc
* socket
, void* arg
);
702 // Called once the handshake has succeeded.
703 void HandshakeSucceeded();
705 // Handles an NSS error generated while handshaking or performing IO.
706 // Returns a network error code mapped from the original NSS error.
707 int HandleNSSError(PRErrorCode error
);
709 int DoHandshakeLoop(int last_io_result
);
710 int DoReadLoop(int result
);
711 int DoWriteLoop(int result
);
714 int DoGetDBCertComplete(int result
);
717 int DoPayloadWrite();
719 bool DoTransportIO();
723 void OnRecvComplete(int result
);
724 void OnSendComplete(int result
);
726 void DoConnectCallback(int result
);
727 void DoReadCallback(int result
);
728 void DoWriteCallback(int result
);
730 // Client channel ID handler.
731 static SECStatus
ClientChannelIDHandler(
734 SECKEYPublicKey
**out_public_key
,
735 SECKEYPrivateKey
**out_private_key
);
737 // ImportChannelIDKeys is a helper function for turning a DER-encoded cert and
738 // key into a SECKEYPublicKey and SECKEYPrivateKey. Returns OK upon success
739 // and an error code otherwise.
740 // Requires |domain_bound_private_key_| and |domain_bound_cert_| to have been
741 // set by a call to ChannelIDService->GetChannelID. The caller
742 // takes ownership of the |*cert| and |*key|.
743 int ImportChannelIDKeys(SECKEYPublicKey
** public_key
, SECKEYPrivateKey
** key
);
745 // Updates the NSS and platform specific certificates.
746 void UpdateServerCert();
747 // Update the nss_handshake_state_ with the SignedCertificateTimestampList
748 // received in the handshake via a TLS extension.
749 void UpdateSignedCertTimestamps();
750 // Update the OCSP response cache with the stapled response received in the
751 // handshake, and update nss_handshake_state_ with
752 // the SignedCertificateTimestampList received in the stapled OCSP response.
753 void UpdateStapledOCSPResponse();
754 // Updates the nss_handshake_state_ with the negotiated security parameters.
755 void UpdateConnectionStatus();
756 // Record histograms for channel id support during full handshakes - resumed
757 // handshakes are ignored.
758 void RecordChannelIDSupportOnNSSTaskRunner();
759 // UpdateNextProto gets any application-layer protocol that may have been
760 // negotiated by the TLS connection.
761 void UpdateNextProto();
763 ////////////////////////////////////////////////////////////////////////////
764 // Methods that are ONLY called on the network task runner:
765 ////////////////////////////////////////////////////////////////////////////
766 int DoBufferRecv(IOBuffer
* buffer
, int len
);
767 int DoBufferSend(IOBuffer
* buffer
, int len
);
768 int DoGetChannelID(const std::string
& host
);
770 void OnGetChannelIDComplete(int result
);
771 void OnHandshakeStateUpdated(const HandshakeState
& state
);
772 void OnNSSBufferUpdated(int amount_in_read_buffer
);
773 void DidNSSRead(int result
);
774 void DidNSSWrite(int result
);
775 void RecordChannelIDSupportOnNetworkTaskRunner(
776 bool negotiated_channel_id
,
777 bool channel_id_enabled
,
778 bool supports_ecc
) const;
780 ////////////////////////////////////////////////////////////////////////////
781 // Methods that are called on both the network task runner and the NSS
783 ////////////////////////////////////////////////////////////////////////////
784 void OnHandshakeIOComplete(int result
);
785 void BufferRecvComplete(IOBuffer
* buffer
, int result
);
786 void BufferSendComplete(int result
);
788 // PostOrRunCallback is a helper function to ensure that |callback| is
789 // invoked on the network task runner, but only if Detach() has not yet
791 void PostOrRunCallback(const tracked_objects::Location
& location
,
792 const base::Closure
& callback
);
794 // Uses PostOrRunCallback and |weak_net_log_| to try and log a
795 // SSL_CLIENT_CERT_PROVIDED event, with the indicated count.
796 void AddCertProvidedEvent(int cert_count
);
798 // Sets the handshake state |channel_id_sent| flag and logs the
799 // SSL_CHANNEL_ID_PROVIDED event.
800 void SetChannelIDProvided();
802 ////////////////////////////////////////////////////////////////////////////
803 // Members that are ONLY accessed on the network task runner:
804 ////////////////////////////////////////////////////////////////////////////
806 // True if the owning SSLClientSocketNSS has called Detach(). No further
807 // callbacks will be invoked nor access to members owned by the network
811 // The underlying transport to use for network IO.
812 ClientSocketHandle
* transport_
;
813 base::WeakPtrFactory
<BoundNetLog
> weak_net_log_factory_
;
815 // The current handshake state. Mirrors |nss_handshake_state_|.
816 HandshakeState network_handshake_state_
;
818 // The service for retrieving Channel ID keys. May be NULL.
819 ChannelIDService
* channel_id_service_
;
820 ChannelIDService::RequestHandle domain_bound_cert_request_handle_
;
822 // The information about NSS task runner.
823 int unhandled_buffer_size_
;
824 bool nss_waiting_read_
;
825 bool nss_waiting_write_
;
828 // Set when Read() or Write() successfully reads or writes data to or from the
832 ////////////////////////////////////////////////////////////////////////////
833 // Members that are ONLY accessed on the NSS task runner:
834 ////////////////////////////////////////////////////////////////////////////
835 HostPortPair host_and_port_
;
836 SSLConfig ssl_config_
;
841 // Buffers for the network end of the SSL state machine
842 memio_Private
* nss_bufs_
;
844 // Used by DoPayloadRead() when attempting to fill the caller's buffer with
845 // as much data as possible, without blocking.
846 // If DoPayloadRead() encounters an error after having read some data, stores
847 // the results to return on the *next* call to DoPayloadRead(). A value of
848 // kNoPendingReadResult indicates there is no pending result, otherwise 0
849 // indicates EOF and < 0 indicates an error.
850 int pending_read_result_
;
851 // Contains the previously observed NSS error. Only valid when
852 // pending_read_result_ != kNoPendingReadResult.
853 PRErrorCode pending_read_nss_error_
;
855 // The certificate chain, in DER form, that is expected to be received from
857 std::vector
<std::string
> predicted_certs_
;
859 State next_handshake_state_
;
861 // True if channel ID extension was negotiated.
862 bool channel_id_xtn_negotiated_
;
863 // True if the handshake state machine was interrupted for channel ID.
864 bool channel_id_needed_
;
865 // True if the handshake state machine was interrupted for client auth.
866 bool client_auth_cert_needed_
;
867 // True if NSS has False Started.
869 // True if NSS has called HandshakeCallback.
870 bool handshake_callback_called_
;
872 HandshakeState nss_handshake_state_
;
874 bool transport_recv_busy_
;
875 bool transport_recv_eof_
;
876 bool transport_send_busy_
;
878 // Used by Read function.
879 scoped_refptr
<IOBuffer
> user_read_buf_
;
880 int user_read_buf_len_
;
882 // Used by Write function.
883 scoped_refptr
<IOBuffer
> user_write_buf_
;
884 int user_write_buf_len_
;
886 CompletionCallback user_connect_callback_
;
887 CompletionCallback user_read_callback_
;
888 CompletionCallback user_write_callback_
;
890 ////////////////////////////////////////////////////////////////////////////
891 // Members that are accessed on both the network task runner and the NSS
893 ////////////////////////////////////////////////////////////////////////////
894 scoped_refptr
<base::SequencedTaskRunner
> network_task_runner_
;
895 scoped_refptr
<base::SequencedTaskRunner
> nss_task_runner_
;
897 // Dereferenced only on the network task runner, but bound to tasks destined
898 // for the network task runner from the NSS task runner.
899 base::WeakPtr
<BoundNetLog
> weak_net_log_
;
901 // Written on the network task runner by the |channel_id_service_|,
902 // prior to invoking OnHandshakeIOComplete.
903 // Read on the NSS task runner when once OnHandshakeIOComplete is invoked
904 // on the NSS task runner.
905 std::string domain_bound_private_key_
;
906 std::string domain_bound_cert_
;
908 DISALLOW_COPY_AND_ASSIGN(Core
);
911 SSLClientSocketNSS::Core::Core(
912 base::SequencedTaskRunner
* network_task_runner
,
913 base::SequencedTaskRunner
* nss_task_runner
,
914 ClientSocketHandle
* transport
,
915 const HostPortPair
& host_and_port
,
916 const SSLConfig
& ssl_config
,
917 BoundNetLog
* net_log
,
918 ChannelIDService
* channel_id_service
)
920 transport_(transport
),
921 weak_net_log_factory_(net_log
),
922 channel_id_service_(channel_id_service
),
923 unhandled_buffer_size_(0),
924 nss_waiting_read_(false),
925 nss_waiting_write_(false),
926 nss_is_closed_(false),
927 was_ever_used_(false),
928 host_and_port_(host_and_port
),
929 ssl_config_(ssl_config
),
932 pending_read_result_(kNoPendingReadResult
),
933 pending_read_nss_error_(0),
934 next_handshake_state_(STATE_NONE
),
935 channel_id_xtn_negotiated_(false),
936 channel_id_needed_(false),
937 client_auth_cert_needed_(false),
938 false_started_(false),
939 handshake_callback_called_(false),
940 transport_recv_busy_(false),
941 transport_recv_eof_(false),
942 transport_send_busy_(false),
943 user_read_buf_len_(0),
944 user_write_buf_len_(0),
945 network_task_runner_(network_task_runner
),
946 nss_task_runner_(nss_task_runner
),
947 weak_net_log_(weak_net_log_factory_
.GetWeakPtr()) {
950 SSLClientSocketNSS::Core::~Core() {
951 // TODO(wtc): Send SSL close_notify alert.
952 if (nss_fd_
!= NULL
) {
959 bool SSLClientSocketNSS::Core::Init(PRFileDesc
* socket
,
960 memio_Private
* buffers
) {
961 DCHECK(OnNetworkTaskRunner());
968 SECStatus rv
= SECSuccess
;
970 if (!ssl_config_
.next_protos
.empty()) {
971 std::vector
<uint8_t> wire_protos
=
972 SerializeNextProtos(ssl_config_
.next_protos
);
973 rv
= SSL_SetNextProtoNego(
974 nss_fd_
, wire_protos
.empty() ? NULL
: &wire_protos
[0],
976 if (rv
!= SECSuccess
)
977 LogFailedNSSFunction(*weak_net_log_
, "SSL_SetNextProtoNego", "");
978 rv
= SSL_OptionSet(nss_fd_
, SSL_ENABLE_ALPN
, PR_TRUE
);
979 if (rv
!= SECSuccess
)
980 LogFailedNSSFunction(*weak_net_log_
, "SSL_OptionSet", "SSL_ENABLE_ALPN");
981 rv
= SSL_OptionSet(nss_fd_
, SSL_ENABLE_NPN
, PR_TRUE
);
982 if (rv
!= SECSuccess
)
983 LogFailedNSSFunction(*weak_net_log_
, "SSL_OptionSet", "SSL_ENABLE_NPN");
986 rv
= SSL_AuthCertificateHook(
987 nss_fd_
, SSLClientSocketNSS::Core::OwnAuthCertHandler
, this);
988 if (rv
!= SECSuccess
) {
989 LogFailedNSSFunction(*weak_net_log_
, "SSL_AuthCertificateHook", "");
993 #if defined(NSS_PLATFORM_CLIENT_AUTH)
994 rv
= SSL_GetPlatformClientAuthDataHook(
995 nss_fd_
, SSLClientSocketNSS::Core::PlatformClientAuthHandler
,
998 rv
= SSL_GetClientAuthDataHook(
999 nss_fd_
, SSLClientSocketNSS::Core::ClientAuthHandler
, this);
1001 if (rv
!= SECSuccess
) {
1002 LogFailedNSSFunction(*weak_net_log_
, "SSL_GetClientAuthDataHook", "");
1006 if (IsChannelIDEnabled(ssl_config_
, channel_id_service_
)) {
1007 rv
= SSL_SetClientChannelIDCallback(
1008 nss_fd_
, SSLClientSocketNSS::Core::ClientChannelIDHandler
, this);
1009 if (rv
!= SECSuccess
) {
1010 LogFailedNSSFunction(
1011 *weak_net_log_
, "SSL_SetClientChannelIDCallback", "");
1015 rv
= SSL_SetCanFalseStartCallback(
1016 nss_fd_
, SSLClientSocketNSS::Core::CanFalseStartCallback
, this);
1017 if (rv
!= SECSuccess
) {
1018 LogFailedNSSFunction(*weak_net_log_
, "SSL_SetCanFalseStartCallback", "");
1022 rv
= SSL_HandshakeCallback(
1023 nss_fd_
, SSLClientSocketNSS::Core::HandshakeCallback
, this);
1024 if (rv
!= SECSuccess
) {
1025 LogFailedNSSFunction(*weak_net_log_
, "SSL_HandshakeCallback", "");
1032 int SSLClientSocketNSS::Core::Connect(const CompletionCallback
& callback
) {
1033 if (!OnNSSTaskRunner()) {
1035 bool posted
= nss_task_runner_
->PostTask(
1037 base::Bind(IgnoreResult(&Core::Connect
), this, callback
));
1038 return posted
? ERR_IO_PENDING
: ERR_ABORTED
;
1041 DCHECK(OnNSSTaskRunner());
1042 DCHECK_EQ(STATE_NONE
, next_handshake_state_
);
1043 DCHECK(user_read_callback_
.is_null());
1044 DCHECK(user_write_callback_
.is_null());
1045 DCHECK(user_connect_callback_
.is_null());
1046 DCHECK(!user_read_buf_
.get());
1047 DCHECK(!user_write_buf_
.get());
1049 next_handshake_state_
= STATE_HANDSHAKE
;
1050 int rv
= DoHandshakeLoop(OK
);
1051 if (rv
== ERR_IO_PENDING
) {
1052 user_connect_callback_
= callback
;
1053 } else if (rv
> OK
) {
1056 if (rv
!= ERR_IO_PENDING
&& !OnNetworkTaskRunner()) {
1057 PostOrRunCallback(FROM_HERE
, base::Bind(callback
, rv
));
1058 return ERR_IO_PENDING
;
1064 void SSLClientSocketNSS::Core::Detach() {
1065 DCHECK(OnNetworkTaskRunner());
1069 weak_net_log_factory_
.InvalidateWeakPtrs();
1071 network_handshake_state_
.Reset();
1073 domain_bound_cert_request_handle_
.Cancel();
1076 int SSLClientSocketNSS::Core::Read(IOBuffer
* buf
, int buf_len
,
1077 const CompletionCallback
& callback
) {
1078 if (!OnNSSTaskRunner()) {
1079 DCHECK(OnNetworkTaskRunner());
1082 DCHECK(!nss_waiting_read_
);
1084 nss_waiting_read_
= true;
1085 bool posted
= nss_task_runner_
->PostTask(
1087 base::Bind(IgnoreResult(&Core::Read
), this, make_scoped_refptr(buf
),
1088 buf_len
, callback
));
1090 nss_is_closed_
= true;
1091 nss_waiting_read_
= false;
1093 return posted
? ERR_IO_PENDING
: ERR_ABORTED
;
1096 DCHECK(OnNSSTaskRunner());
1097 DCHECK(false_started_
|| handshake_callback_called_
);
1098 DCHECK_EQ(STATE_NONE
, next_handshake_state_
);
1099 DCHECK(user_read_callback_
.is_null());
1100 DCHECK(user_connect_callback_
.is_null());
1101 DCHECK(!user_read_buf_
.get());
1104 user_read_buf_
= buf
;
1105 user_read_buf_len_
= buf_len
;
1107 int rv
= DoReadLoop(OK
);
1108 if (rv
== ERR_IO_PENDING
) {
1109 if (OnNetworkTaskRunner())
1110 nss_waiting_read_
= true;
1111 user_read_callback_
= callback
;
1113 user_read_buf_
= NULL
;
1114 user_read_buf_len_
= 0;
1116 if (!OnNetworkTaskRunner()) {
1117 PostOrRunCallback(FROM_HERE
, base::Bind(&Core::DidNSSRead
, this, rv
));
1118 PostOrRunCallback(FROM_HERE
, base::Bind(callback
, rv
));
1119 return ERR_IO_PENDING
;
1121 DCHECK(!nss_waiting_read_
);
1123 nss_is_closed_
= true;
1125 was_ever_used_
= true;
1133 int SSLClientSocketNSS::Core::Write(IOBuffer
* buf
, int buf_len
,
1134 const CompletionCallback
& callback
) {
1135 if (!OnNSSTaskRunner()) {
1136 DCHECK(OnNetworkTaskRunner());
1139 DCHECK(!nss_waiting_write_
);
1141 nss_waiting_write_
= true;
1142 bool posted
= nss_task_runner_
->PostTask(
1144 base::Bind(IgnoreResult(&Core::Write
), this, make_scoped_refptr(buf
),
1145 buf_len
, callback
));
1147 nss_is_closed_
= true;
1148 nss_waiting_write_
= false;
1150 return posted
? ERR_IO_PENDING
: ERR_ABORTED
;
1153 DCHECK(OnNSSTaskRunner());
1154 DCHECK(false_started_
|| handshake_callback_called_
);
1155 DCHECK_EQ(STATE_NONE
, next_handshake_state_
);
1156 DCHECK(user_write_callback_
.is_null());
1157 DCHECK(user_connect_callback_
.is_null());
1158 DCHECK(!user_write_buf_
.get());
1161 user_write_buf_
= buf
;
1162 user_write_buf_len_
= buf_len
;
1164 int rv
= DoWriteLoop(OK
);
1165 if (rv
== ERR_IO_PENDING
) {
1166 if (OnNetworkTaskRunner())
1167 nss_waiting_write_
= true;
1168 user_write_callback_
= callback
;
1170 user_write_buf_
= NULL
;
1171 user_write_buf_len_
= 0;
1173 if (!OnNetworkTaskRunner()) {
1174 PostOrRunCallback(FROM_HERE
, base::Bind(&Core::DidNSSWrite
, this, rv
));
1175 PostOrRunCallback(FROM_HERE
, base::Bind(callback
, rv
));
1176 return ERR_IO_PENDING
;
1178 DCHECK(!nss_waiting_write_
);
1180 nss_is_closed_
= true;
1181 } else if (rv
> 0) {
1182 was_ever_used_
= true;
1190 bool SSLClientSocketNSS::Core::IsConnected() const {
1191 DCHECK(OnNetworkTaskRunner());
1192 return !nss_is_closed_
;
1195 bool SSLClientSocketNSS::Core::HasPendingAsyncOperation() const {
1196 DCHECK(OnNetworkTaskRunner());
1197 return nss_waiting_read_
|| nss_waiting_write_
;
1200 bool SSLClientSocketNSS::Core::HasUnhandledReceivedData() const {
1201 DCHECK(OnNetworkTaskRunner());
1202 return unhandled_buffer_size_
!= 0;
1205 bool SSLClientSocketNSS::Core::WasEverUsed() const {
1206 DCHECK(OnNetworkTaskRunner());
1207 return was_ever_used_
;
1210 void SSLClientSocketNSS::Core::CacheSessionIfNecessary() {
1211 // TODO(rsleevi): This should occur on the NSS task runner, due to the use of
1212 // nss_fd_. However, it happens on the network task runner in order to match
1213 // the buggy behavior of ExportKeyingMaterial.
1215 // Once http://crbug.com/330360 is fixed, this should be moved to an
1216 // implementation that exclusively does this work on the NSS TaskRunner. This
1217 // is "safe" because it is only called during the certificate verification
1218 // state machine of the main socket, which is safe because no underlying
1219 // transport IO will be occuring in that state, and NSS will not be blocking
1220 // on any PKCS#11 related locks that might block the Network TaskRunner.
1221 DCHECK(OnNetworkTaskRunner());
1223 // Only cache the session if the connection was not False Started, because
1224 // sessions should only be cached *after* the peer's Finished message is
1226 // In the case of False Start, the session will be cached once the
1227 // HandshakeCallback is called, which signals the receipt and processing of
1228 // the Finished message, and which will happen during a call to
1229 // PR_Read/PR_Write.
1230 if (!false_started_
)
1231 SSL_CacheSession(nss_fd_
);
1234 bool SSLClientSocketNSS::Core::OnNSSTaskRunner() const {
1235 return nss_task_runner_
->RunsTasksOnCurrentThread();
1238 bool SSLClientSocketNSS::Core::OnNetworkTaskRunner() const {
1239 return network_task_runner_
->RunsTasksOnCurrentThread();
1243 SECStatus
SSLClientSocketNSS::Core::OwnAuthCertHandler(
1248 Core
* core
= reinterpret_cast<Core
*>(arg
);
1249 if (core
->handshake_callback_called_
) {
1250 // Disallow the server certificate to change in a renegotiation.
1251 CERTCertificate
* old_cert
= core
->nss_handshake_state_
.server_cert_chain
[0];
1252 ScopedCERTCertificate
new_cert(SSL_PeerCertificate(socket
));
1253 if (new_cert
->derCert
.len
!= old_cert
->derCert
.len
||
1254 memcmp(new_cert
->derCert
.data
, old_cert
->derCert
.data
,
1255 new_cert
->derCert
.len
) != 0) {
1256 // NSS doesn't have an error code that indicates the server certificate
1257 // changed. Borrow SSL_ERROR_WRONG_CERTIFICATE (which NSS isn't using)
1258 // for this purpose.
1259 PORT_SetError(SSL_ERROR_WRONG_CERTIFICATE
);
1264 // Tell NSS to not verify the certificate.
1268 #if defined(NSS_PLATFORM_CLIENT_AUTH)
1270 SECStatus
SSLClientSocketNSS::Core::PlatformClientAuthHandler(
1273 CERTDistNames
* ca_names
,
1274 CERTCertList
** result_certs
,
1275 void** result_private_key
,
1276 CERTCertificate
** result_nss_certificate
,
1277 SECKEYPrivateKey
** result_nss_private_key
) {
1278 Core
* core
= reinterpret_cast<Core
*>(arg
);
1279 DCHECK(core
->OnNSSTaskRunner());
1281 core
->PostOrRunCallback(
1283 base::Bind(&AddLogEvent
, core
->weak_net_log_
,
1284 NetLog::TYPE_SSL_CLIENT_CERT_REQUESTED
));
1286 core
->client_auth_cert_needed_
= !core
->ssl_config_
.send_client_cert
;
1288 if (core
->ssl_config_
.send_client_cert
) {
1289 if (core
->ssl_config_
.client_cert
) {
1290 PCCERT_CONTEXT cert_context
=
1291 core
->ssl_config_
.client_cert
->os_cert_handle();
1293 HCRYPTPROV_OR_NCRYPT_KEY_HANDLE crypt_prov
= 0;
1295 BOOL must_free
= FALSE
;
1297 if (base::win::GetVersion() >= base::win::VERSION_VISTA
)
1298 flags
|= CRYPT_ACQUIRE_PREFER_NCRYPT_KEY_FLAG
;
1300 BOOL acquired_key
= CryptAcquireCertificatePrivateKey(
1301 cert_context
, flags
, NULL
, &crypt_prov
, &key_spec
, &must_free
);
1304 // Should never get a cached handle back - ownership must always be
1306 CHECK_EQ(must_free
, TRUE
);
1309 der_cert
.type
= siDERCertBuffer
;
1310 der_cert
.data
= cert_context
->pbCertEncoded
;
1311 der_cert
.len
= cert_context
->cbCertEncoded
;
1313 // TODO(rsleevi): Error checking for NSS allocation errors.
1314 CERTCertDBHandle
* db_handle
= CERT_GetDefaultCertDB();
1315 CERTCertificate
* user_cert
= CERT_NewTempCertificate(
1316 db_handle
, &der_cert
, NULL
, PR_FALSE
, PR_TRUE
);
1318 // Importing the certificate can fail for reasons including a serial
1319 // number collision. See crbug.com/97355.
1320 core
->AddCertProvidedEvent(0);
1323 CERTCertList
* cert_chain
= CERT_NewCertList();
1324 CERT_AddCertToListTail(cert_chain
, user_cert
);
1326 // Add the intermediates.
1327 X509Certificate::OSCertHandles intermediates
=
1328 core
->ssl_config_
.client_cert
->GetIntermediateCertificates();
1329 for (X509Certificate::OSCertHandles::const_iterator it
=
1330 intermediates
.begin(); it
!= intermediates
.end(); ++it
) {
1331 der_cert
.data
= (*it
)->pbCertEncoded
;
1332 der_cert
.len
= (*it
)->cbCertEncoded
;
1334 CERTCertificate
* intermediate
= CERT_NewTempCertificate(
1335 db_handle
, &der_cert
, NULL
, PR_FALSE
, PR_TRUE
);
1336 if (!intermediate
) {
1337 CERT_DestroyCertList(cert_chain
);
1338 core
->AddCertProvidedEvent(0);
1341 CERT_AddCertToListTail(cert_chain
, intermediate
);
1343 PCERT_KEY_CONTEXT key_context
= reinterpret_cast<PCERT_KEY_CONTEXT
>(
1344 PORT_ZAlloc(sizeof(CERT_KEY_CONTEXT
)));
1345 key_context
->cbSize
= sizeof(*key_context
);
1346 // NSS will free this context when no longer in use.
1347 key_context
->hCryptProv
= crypt_prov
;
1348 key_context
->dwKeySpec
= key_spec
;
1349 *result_private_key
= key_context
;
1350 *result_certs
= cert_chain
;
1352 int cert_count
= 1 + intermediates
.size();
1353 core
->AddCertProvidedEvent(cert_count
);
1356 LOG(WARNING
) << "Client cert found without private key";
1359 // Send no client certificate.
1360 core
->AddCertProvidedEvent(0);
1364 core
->nss_handshake_state_
.cert_authorities
.clear();
1366 std::vector
<CERT_NAME_BLOB
> issuer_list(ca_names
->nnames
);
1367 for (int i
= 0; i
< ca_names
->nnames
; ++i
) {
1368 issuer_list
[i
].cbData
= ca_names
->names
[i
].len
;
1369 issuer_list
[i
].pbData
= ca_names
->names
[i
].data
;
1370 core
->nss_handshake_state_
.cert_authorities
.push_back(std::string(
1371 reinterpret_cast<const char*>(ca_names
->names
[i
].data
),
1372 static_cast<size_t>(ca_names
->names
[i
].len
)));
1375 // Update the network task runner's view of the handshake state now that
1376 // server certificate request has been recorded.
1377 core
->PostOrRunCallback(
1378 FROM_HERE
, base::Bind(&Core::OnHandshakeStateUpdated
, core
,
1379 core
->nss_handshake_state_
));
1381 // Tell NSS to suspend the client authentication. We will then abort the
1382 // handshake by returning ERR_SSL_CLIENT_AUTH_CERT_NEEDED.
1383 return SECWouldBlock
;
1384 #elif defined(OS_MACOSX)
1385 if (core
->ssl_config_
.send_client_cert
) {
1386 if (core
->ssl_config_
.client_cert
.get()) {
1387 OSStatus os_error
= noErr
;
1388 SecIdentityRef identity
= NULL
;
1389 SecKeyRef private_key
= NULL
;
1390 X509Certificate::OSCertHandles chain
;
1392 base::AutoLock
lock(crypto::GetMacSecurityServicesLock());
1393 os_error
= SecIdentityCreateWithCertificate(
1394 NULL
, core
->ssl_config_
.client_cert
->os_cert_handle(), &identity
);
1396 if (os_error
== noErr
) {
1397 os_error
= SecIdentityCopyPrivateKey(identity
, &private_key
);
1398 CFRelease(identity
);
1401 if (os_error
== noErr
) {
1402 // TODO(rsleevi): Error checking for NSS allocation errors.
1403 *result_certs
= CERT_NewCertList();
1404 *result_private_key
= private_key
;
1406 chain
.push_back(core
->ssl_config_
.client_cert
->os_cert_handle());
1407 const X509Certificate::OSCertHandles
& intermediates
=
1408 core
->ssl_config_
.client_cert
->GetIntermediateCertificates();
1409 if (!intermediates
.empty())
1410 chain
.insert(chain
.end(), intermediates
.begin(), intermediates
.end());
1412 for (size_t i
= 0, chain_count
= chain
.size(); i
< chain_count
; ++i
) {
1413 CSSM_DATA cert_data
;
1414 SecCertificateRef cert_ref
= chain
[i
];
1415 os_error
= SecCertificateGetData(cert_ref
, &cert_data
);
1416 if (os_error
!= noErr
)
1420 der_cert
.type
= siDERCertBuffer
;
1421 der_cert
.data
= cert_data
.Data
;
1422 der_cert
.len
= cert_data
.Length
;
1423 CERTCertificate
* nss_cert
= CERT_NewTempCertificate(
1424 CERT_GetDefaultCertDB(), &der_cert
, NULL
, PR_FALSE
, PR_TRUE
);
1426 // In the event of an NSS error, make up an OS error and reuse
1427 // the error handling below.
1428 os_error
= errSecCreateChainFailed
;
1431 CERT_AddCertToListTail(*result_certs
, nss_cert
);
1435 if (os_error
== noErr
) {
1436 core
->AddCertProvidedEvent(chain
.size());
1440 OSSTATUS_LOG(WARNING
, os_error
)
1441 << "Client cert found, but could not be used";
1442 if (*result_certs
) {
1443 CERT_DestroyCertList(*result_certs
);
1444 *result_certs
= NULL
;
1446 if (*result_private_key
)
1447 *result_private_key
= NULL
;
1449 CFRelease(private_key
);
1452 // Send no client certificate.
1453 core
->AddCertProvidedEvent(0);
1457 core
->nss_handshake_state_
.cert_authorities
.clear();
1459 // Retrieve the cert issuers accepted by the server.
1460 std::vector
<CertPrincipal
> valid_issuers
;
1461 int n
= ca_names
->nnames
;
1462 for (int i
= 0; i
< n
; i
++) {
1463 core
->nss_handshake_state_
.cert_authorities
.push_back(std::string(
1464 reinterpret_cast<const char*>(ca_names
->names
[i
].data
),
1465 static_cast<size_t>(ca_names
->names
[i
].len
)));
1468 // Update the network task runner's view of the handshake state now that
1469 // server certificate request has been recorded.
1470 core
->PostOrRunCallback(
1471 FROM_HERE
, base::Bind(&Core::OnHandshakeStateUpdated
, core
,
1472 core
->nss_handshake_state_
));
1474 // Tell NSS to suspend the client authentication. We will then abort the
1475 // handshake by returning ERR_SSL_CLIENT_AUTH_CERT_NEEDED.
1476 return SECWouldBlock
;
1482 #elif defined(OS_IOS)
1484 SECStatus
SSLClientSocketNSS::Core::ClientAuthHandler(
1487 CERTDistNames
* ca_names
,
1488 CERTCertificate
** result_certificate
,
1489 SECKEYPrivateKey
** result_private_key
) {
1490 Core
* core
= reinterpret_cast<Core
*>(arg
);
1491 DCHECK(core
->OnNSSTaskRunner());
1493 core
->PostOrRunCallback(
1495 base::Bind(&AddLogEvent
, core
->weak_net_log_
,
1496 NetLog::TYPE_SSL_CLIENT_CERT_REQUESTED
));
1498 // TODO(droger): Support client auth on iOS. See http://crbug.com/145954).
1499 LOG(WARNING
) << "Client auth is not supported";
1501 // Never send a certificate.
1502 core
->AddCertProvidedEvent(0);
1506 #else // NSS_PLATFORM_CLIENT_AUTH
1509 // Based on Mozilla's NSS_GetClientAuthData.
1510 SECStatus
SSLClientSocketNSS::Core::ClientAuthHandler(
1513 CERTDistNames
* ca_names
,
1514 CERTCertificate
** result_certificate
,
1515 SECKEYPrivateKey
** result_private_key
) {
1516 Core
* core
= reinterpret_cast<Core
*>(arg
);
1517 DCHECK(core
->OnNSSTaskRunner());
1519 core
->PostOrRunCallback(
1521 base::Bind(&AddLogEvent
, core
->weak_net_log_
,
1522 NetLog::TYPE_SSL_CLIENT_CERT_REQUESTED
));
1524 // Regular client certificate requested.
1525 core
->client_auth_cert_needed_
= !core
->ssl_config_
.send_client_cert
;
1526 void* wincx
= SSL_RevealPinArg(socket
);
1528 if (core
->ssl_config_
.send_client_cert
) {
1529 // Second pass: a client certificate should have been selected.
1530 if (core
->ssl_config_
.client_cert
.get()) {
1531 CERTCertificate
* cert
=
1532 CERT_DupCertificate(core
->ssl_config_
.client_cert
->os_cert_handle());
1533 SECKEYPrivateKey
* privkey
= PK11_FindKeyByAnyCert(cert
, wincx
);
1535 // TODO(jsorianopastor): We should wait for server certificate
1536 // verification before sending our credentials. See
1537 // http://crbug.com/13934.
1538 *result_certificate
= cert
;
1539 *result_private_key
= privkey
;
1540 // A cert_count of -1 means the number of certificates is unknown.
1541 // NSS will construct the certificate chain.
1542 core
->AddCertProvidedEvent(-1);
1546 LOG(WARNING
) << "Client cert found without private key";
1548 // Send no client certificate.
1549 core
->AddCertProvidedEvent(0);
1553 // First pass: client certificate is needed.
1554 core
->nss_handshake_state_
.cert_authorities
.clear();
1556 // Retrieve the DER-encoded DistinguishedName of the cert issuers accepted by
1557 // the server and save them in |cert_authorities|.
1558 for (int i
= 0; i
< ca_names
->nnames
; i
++) {
1559 core
->nss_handshake_state_
.cert_authorities
.push_back(std::string(
1560 reinterpret_cast<const char*>(ca_names
->names
[i
].data
),
1561 static_cast<size_t>(ca_names
->names
[i
].len
)));
1564 // Update the network task runner's view of the handshake state now that
1565 // server certificate request has been recorded.
1566 core
->PostOrRunCallback(
1567 FROM_HERE
, base::Bind(&Core::OnHandshakeStateUpdated
, core
,
1568 core
->nss_handshake_state_
));
1570 // Tell NSS to suspend the client authentication. We will then abort the
1571 // handshake by returning ERR_SSL_CLIENT_AUTH_CERT_NEEDED.
1572 return SECWouldBlock
;
1574 #endif // NSS_PLATFORM_CLIENT_AUTH
1577 SECStatus
SSLClientSocketNSS::Core::CanFalseStartCallback(
1580 PRBool
* can_false_start
) {
1581 // If the server doesn't support NPN or ALPN, then we don't do False
1583 PRBool negotiated_extension
;
1584 SECStatus rv
= SSL_HandshakeNegotiatedExtension(socket
,
1585 ssl_app_layer_protocol_xtn
,
1586 &negotiated_extension
);
1587 if (rv
!= SECSuccess
|| !negotiated_extension
) {
1588 rv
= SSL_HandshakeNegotiatedExtension(socket
,
1589 ssl_next_proto_nego_xtn
,
1590 &negotiated_extension
);
1592 if (rv
!= SECSuccess
|| !negotiated_extension
) {
1593 *can_false_start
= PR_FALSE
;
1597 return SSL_RecommendedCanFalseStart(socket
, can_false_start
);
1601 void SSLClientSocketNSS::Core::HandshakeCallback(
1604 Core
* core
= reinterpret_cast<Core
*>(arg
);
1605 DCHECK(core
->OnNSSTaskRunner());
1607 core
->handshake_callback_called_
= true;
1608 if (core
->false_started_
) {
1609 core
->false_started_
= false;
1610 // If the connection was False Started, then at the time of this callback,
1611 // the peer's certificate will have been verified or the caller will have
1612 // accepted the error.
1613 // This is guaranteed when using False Start because this callback will
1614 // not be invoked until processing the peer's Finished message, which
1615 // will only happen in a PR_Read/PR_Write call, which can only happen
1616 // after the peer's certificate is verified.
1617 SSL_CacheSessionUnlocked(socket
);
1619 // Additionally, when False Starting, DoHandshake() will have already
1620 // called HandshakeSucceeded(), so return now.
1623 core
->HandshakeSucceeded();
1626 void SSLClientSocketNSS::Core::HandshakeSucceeded() {
1627 DCHECK(OnNSSTaskRunner());
1629 PRBool last_handshake_resumed
;
1630 SECStatus rv
= SSL_HandshakeResumedSession(nss_fd_
, &last_handshake_resumed
);
1631 if (rv
== SECSuccess
&& last_handshake_resumed
) {
1632 nss_handshake_state_
.resumed_handshake
= true;
1634 nss_handshake_state_
.resumed_handshake
= false;
1637 RecordChannelIDSupportOnNSSTaskRunner();
1639 UpdateSignedCertTimestamps();
1640 UpdateStapledOCSPResponse();
1641 UpdateConnectionStatus();
1644 // Update the network task runners view of the handshake state whenever
1645 // a handshake has completed.
1647 FROM_HERE
, base::Bind(&Core::OnHandshakeStateUpdated
, this,
1648 nss_handshake_state_
));
1651 int SSLClientSocketNSS::Core::HandleNSSError(PRErrorCode nss_error
) {
1652 DCHECK(OnNSSTaskRunner());
1654 int net_error
= MapNSSClientError(nss_error
);
1657 // On Windows, a handle to the HCRYPTPROV is cached in the X509Certificate
1658 // os_cert_handle() as an optimization. However, if the certificate
1659 // private key is stored on a smart card, and the smart card is removed,
1660 // the cached HCRYPTPROV will not be able to obtain the HCRYPTKEY again,
1661 // preventing client certificate authentication. Because the
1662 // X509Certificate may outlive the individual SSLClientSocketNSS, due to
1663 // caching in X509Certificate, this failure ends up preventing client
1664 // certificate authentication with the same certificate for all future
1665 // attempts, even after the smart card has been re-inserted. By setting
1666 // the CERT_KEY_PROV_HANDLE_PROP_ID to NULL, the cached HCRYPTPROV will
1667 // typically be freed. This allows a new HCRYPTPROV to be obtained from
1668 // the certificate on the next attempt, which should succeed if the smart
1669 // card has been re-inserted, or will typically prompt the user to
1670 // re-insert the smart card if not.
1671 if ((net_error
== ERR_SSL_CLIENT_AUTH_CERT_NO_PRIVATE_KEY
||
1672 net_error
== ERR_SSL_CLIENT_AUTH_SIGNATURE_FAILED
) &&
1673 ssl_config_
.send_client_cert
&& ssl_config_
.client_cert
) {
1674 CertSetCertificateContextProperty(
1675 ssl_config_
.client_cert
->os_cert_handle(),
1676 CERT_KEY_PROV_HANDLE_PROP_ID
, 0, NULL
);
1683 int SSLClientSocketNSS::Core::DoHandshakeLoop(int last_io_result
) {
1684 DCHECK(OnNSSTaskRunner());
1686 int rv
= last_io_result
;
1688 // Default to STATE_NONE for next state.
1689 State state
= next_handshake_state_
;
1690 GotoState(STATE_NONE
);
1693 case STATE_HANDSHAKE
:
1696 case STATE_GET_DOMAIN_BOUND_CERT_COMPLETE
:
1697 rv
= DoGetDBCertComplete(rv
);
1701 rv
= ERR_UNEXPECTED
;
1702 LOG(DFATAL
) << "unexpected state " << state
;
1706 // Do the actual network I/O
1707 bool network_moved
= DoTransportIO();
1708 if (network_moved
&& next_handshake_state_
== STATE_HANDSHAKE
) {
1709 // In general we exit the loop if rv is ERR_IO_PENDING. In this
1710 // special case we keep looping even if rv is ERR_IO_PENDING because
1711 // the transport IO may allow DoHandshake to make progress.
1712 DCHECK(rv
== OK
|| rv
== ERR_IO_PENDING
);
1713 rv
= OK
; // This causes us to stay in the loop.
1715 } while (rv
!= ERR_IO_PENDING
&& next_handshake_state_
!= STATE_NONE
);
1719 int SSLClientSocketNSS::Core::DoReadLoop(int result
) {
1720 DCHECK(OnNSSTaskRunner());
1721 DCHECK(false_started_
|| handshake_callback_called_
);
1722 DCHECK_EQ(STATE_NONE
, next_handshake_state_
);
1728 LOG(DFATAL
) << "!nss_bufs_";
1729 int rv
= ERR_UNEXPECTED
;
1732 base::Bind(&AddLogEventWithCallback
, weak_net_log_
,
1733 NetLog::TYPE_SSL_READ_ERROR
,
1734 CreateNetLogSSLErrorCallback(rv
, 0)));
1741 rv
= DoPayloadRead();
1742 network_moved
= DoTransportIO();
1743 } while (rv
== ERR_IO_PENDING
&& network_moved
);
1748 int SSLClientSocketNSS::Core::DoWriteLoop(int result
) {
1749 DCHECK(OnNSSTaskRunner());
1750 DCHECK(false_started_
|| handshake_callback_called_
);
1751 DCHECK_EQ(STATE_NONE
, next_handshake_state_
);
1757 LOG(DFATAL
) << "!nss_bufs_";
1758 int rv
= ERR_UNEXPECTED
;
1761 base::Bind(&AddLogEventWithCallback
, weak_net_log_
,
1762 NetLog::TYPE_SSL_READ_ERROR
,
1763 CreateNetLogSSLErrorCallback(rv
, 0)));
1770 rv
= DoPayloadWrite();
1771 network_moved
= DoTransportIO();
1772 } while (rv
== ERR_IO_PENDING
&& network_moved
);
1778 int SSLClientSocketNSS::Core::DoHandshake() {
1779 DCHECK(OnNSSTaskRunner());
1782 SECStatus rv
= SSL_ForceHandshake(nss_fd_
);
1784 // Note: this function may be called multiple times during the handshake, so
1785 // even though channel id and client auth are separate else cases, they can
1786 // both be used during a single SSL handshake.
1787 if (channel_id_needed_
) {
1788 GotoState(STATE_GET_DOMAIN_BOUND_CERT_COMPLETE
);
1789 net_error
= ERR_IO_PENDING
;
1790 } else if (client_auth_cert_needed_
) {
1791 net_error
= ERR_SSL_CLIENT_AUTH_CERT_NEEDED
;
1794 base::Bind(&AddLogEventWithCallback
, weak_net_log_
,
1795 NetLog::TYPE_SSL_HANDSHAKE_ERROR
,
1796 CreateNetLogSSLErrorCallback(net_error
, 0)));
1798 // If the handshake already succeeded (because the server requests but
1799 // doesn't require a client cert), we need to invalidate the SSL session
1800 // so that we won't try to resume the non-client-authenticated session in
1801 // the next handshake. This will cause the server to ask for a client
1803 if (rv
== SECSuccess
&& SSL_InvalidateSession(nss_fd_
) != SECSuccess
)
1804 LOG(WARNING
) << "Couldn't invalidate SSL session: " << PR_GetError();
1805 } else if (rv
== SECSuccess
) {
1806 if (!handshake_callback_called_
) {
1807 false_started_
= true;
1808 HandshakeSucceeded();
1811 PRErrorCode prerr
= PR_GetError();
1812 net_error
= HandleNSSError(prerr
);
1814 // If not done, stay in this state
1815 if (net_error
== ERR_IO_PENDING
) {
1816 GotoState(STATE_HANDSHAKE
);
1820 base::Bind(&AddLogEventWithCallback
, weak_net_log_
,
1821 NetLog::TYPE_SSL_HANDSHAKE_ERROR
,
1822 CreateNetLogSSLErrorCallback(net_error
, prerr
)));
1829 int SSLClientSocketNSS::Core::DoGetDBCertComplete(int result
) {
1833 base::Bind(&BoundNetLog::EndEventWithNetErrorCode
, weak_net_log_
,
1834 NetLog::TYPE_SSL_GET_DOMAIN_BOUND_CERT
, result
));
1836 channel_id_needed_
= false;
1841 SECKEYPublicKey
* public_key
;
1842 SECKEYPrivateKey
* private_key
;
1843 int error
= ImportChannelIDKeys(&public_key
, &private_key
);
1847 rv
= SSL_RestartHandshakeAfterChannelIDReq(nss_fd_
, public_key
, private_key
);
1848 if (rv
!= SECSuccess
)
1849 return MapNSSError(PORT_GetError());
1851 SetChannelIDProvided();
1852 GotoState(STATE_HANDSHAKE
);
1856 int SSLClientSocketNSS::Core::DoPayloadRead() {
1857 DCHECK(OnNSSTaskRunner());
1858 DCHECK(user_read_buf_
.get());
1859 DCHECK_GT(user_read_buf_len_
, 0);
1862 // If a previous greedy read resulted in an error that was not consumed (eg:
1863 // due to the caller having read some data successfully), then return that
1864 // pending error now.
1865 if (pending_read_result_
!= kNoPendingReadResult
) {
1866 rv
= pending_read_result_
;
1867 PRErrorCode prerr
= pending_read_nss_error_
;
1868 pending_read_result_
= kNoPendingReadResult
;
1869 pending_read_nss_error_
= 0;
1874 base::Bind(&LogByteTransferEvent
, weak_net_log_
,
1875 NetLog::TYPE_SSL_SOCKET_BYTES_RECEIVED
, rv
,
1876 scoped_refptr
<IOBuffer
>(user_read_buf_
)));
1880 base::Bind(&AddLogEventWithCallback
, weak_net_log_
,
1881 NetLog::TYPE_SSL_READ_ERROR
,
1882 CreateNetLogSSLErrorCallback(rv
, prerr
)));
1887 // Perform a greedy read, attempting to read as much as the caller has
1888 // requested. In the current NSS implementation, PR_Read will return
1889 // exactly one SSL application data record's worth of data per invocation.
1890 // The record size is dictated by the server, and may be noticeably smaller
1891 // than the caller's buffer. This may be as little as a single byte, if the
1892 // server is performing 1/n-1 record splitting.
1894 // However, this greedy read may result in renegotiations/re-handshakes
1895 // happening or may lead to some data being read, followed by an EOF (such as
1896 // a TLS close-notify). If at least some data was read, then that result
1897 // should be deferred until the next call to DoPayloadRead(). Otherwise, if no
1898 // data was read, it's safe to return the error or EOF immediately.
1899 int total_bytes_read
= 0;
1901 rv
= PR_Read(nss_fd_
, user_read_buf_
->data() + total_bytes_read
,
1902 user_read_buf_len_
- total_bytes_read
);
1904 total_bytes_read
+= rv
;
1905 } while (total_bytes_read
< user_read_buf_len_
&& rv
> 0);
1906 int amount_in_read_buffer
= memio_GetReadableBufferSize(nss_bufs_
);
1907 PostOrRunCallback(FROM_HERE
, base::Bind(&Core::OnNSSBufferUpdated
, this,
1908 amount_in_read_buffer
));
1910 if (total_bytes_read
== user_read_buf_len_
) {
1911 // The caller's entire request was satisfied without error. No further
1912 // processing needed.
1913 rv
= total_bytes_read
;
1915 // Otherwise, an error occurred (rv <= 0). The error needs to be handled
1916 // immediately, while the NSPR/NSS errors are still available in
1917 // thread-local storage. However, the handled/remapped error code should
1918 // only be returned if no application data was already read; if it was, the
1919 // error code should be deferred until the next call of DoPayloadRead.
1921 // If no data was read, |*next_result| will point to the return value of
1922 // this function. If at least some data was read, |*next_result| will point
1923 // to |pending_read_error_|, to be returned in a future call to
1924 // DoPayloadRead() (e.g.: after the current data is handled).
1925 int* next_result
= &rv
;
1926 if (total_bytes_read
> 0) {
1927 pending_read_result_
= rv
;
1928 rv
= total_bytes_read
;
1929 next_result
= &pending_read_result_
;
1932 if (client_auth_cert_needed_
) {
1933 *next_result
= ERR_SSL_CLIENT_AUTH_CERT_NEEDED
;
1934 pending_read_nss_error_
= 0;
1935 } else if (*next_result
< 0) {
1936 // If *next_result == 0, then that indicates EOF, and no special error
1937 // handling is needed.
1938 pending_read_nss_error_
= PR_GetError();
1939 *next_result
= HandleNSSError(pending_read_nss_error_
);
1940 if (rv
> 0 && *next_result
== ERR_IO_PENDING
) {
1941 // If at least some data was read from PR_Read(), do not treat
1942 // insufficient data as an error to return in the next call to
1943 // DoPayloadRead() - instead, let the call fall through to check
1944 // PR_Read() again. This is because DoTransportIO() may complete
1945 // in between the next call to DoPayloadRead(), and thus it is
1946 // important to check PR_Read() on subsequent invocations to see
1947 // if a complete record may now be read.
1948 pending_read_nss_error_
= 0;
1949 pending_read_result_
= kNoPendingReadResult
;
1954 DCHECK_NE(ERR_IO_PENDING
, pending_read_result_
);
1959 base::Bind(&LogByteTransferEvent
, weak_net_log_
,
1960 NetLog::TYPE_SSL_SOCKET_BYTES_RECEIVED
, rv
,
1961 scoped_refptr
<IOBuffer
>(user_read_buf_
)));
1962 } else if (rv
!= ERR_IO_PENDING
) {
1965 base::Bind(&AddLogEventWithCallback
, weak_net_log_
,
1966 NetLog::TYPE_SSL_READ_ERROR
,
1967 CreateNetLogSSLErrorCallback(rv
, pending_read_nss_error_
)));
1968 pending_read_nss_error_
= 0;
1973 int SSLClientSocketNSS::Core::DoPayloadWrite() {
1974 DCHECK(OnNSSTaskRunner());
1976 DCHECK(user_write_buf_
.get());
1978 int old_amount_in_read_buffer
= memio_GetReadableBufferSize(nss_bufs_
);
1979 int rv
= PR_Write(nss_fd_
, user_write_buf_
->data(), user_write_buf_len_
);
1980 int new_amount_in_read_buffer
= memio_GetReadableBufferSize(nss_bufs_
);
1981 // PR_Write could potentially consume the unhandled data in the memio read
1982 // buffer if a renegotiation is in progress. If the buffer is consumed,
1983 // notify the latest buffer size to NetworkRunner.
1984 if (old_amount_in_read_buffer
!= new_amount_in_read_buffer
) {
1987 base::Bind(&Core::OnNSSBufferUpdated
, this, new_amount_in_read_buffer
));
1992 base::Bind(&LogByteTransferEvent
, weak_net_log_
,
1993 NetLog::TYPE_SSL_SOCKET_BYTES_SENT
, rv
,
1994 scoped_refptr
<IOBuffer
>(user_write_buf_
)));
1997 PRErrorCode prerr
= PR_GetError();
1998 if (prerr
== PR_WOULD_BLOCK_ERROR
)
1999 return ERR_IO_PENDING
;
2001 rv
= HandleNSSError(prerr
);
2004 base::Bind(&AddLogEventWithCallback
, weak_net_log_
,
2005 NetLog::TYPE_SSL_WRITE_ERROR
,
2006 CreateNetLogSSLErrorCallback(rv
, prerr
)));
2010 // Do as much network I/O as possible between the buffer and the
2011 // transport socket. Return true if some I/O performed, false
2012 // otherwise (error or ERR_IO_PENDING).
2013 bool SSLClientSocketNSS::Core::DoTransportIO() {
2014 DCHECK(OnNSSTaskRunner());
2016 bool network_moved
= false;
2017 if (nss_bufs_
!= NULL
) {
2019 // Read and write as much data as we can. The loop is neccessary
2020 // because Write() may return synchronously.
2023 if (rv
!= ERR_IO_PENDING
&& rv
!= 0)
2024 network_moved
= true;
2026 if (!transport_recv_eof_
&& BufferRecv() != ERR_IO_PENDING
)
2027 network_moved
= true;
2029 return network_moved
;
2032 int SSLClientSocketNSS::Core::BufferRecv() {
2033 DCHECK(OnNSSTaskRunner());
2035 if (transport_recv_busy_
)
2036 return ERR_IO_PENDING
;
2038 // If NSS is blocked on reading from |nss_bufs_|, because it is empty,
2039 // determine how much data NSS wants to read. If NSS was not blocked,
2040 // this will return 0.
2041 int requested
= memio_GetReadRequest(nss_bufs_
);
2042 if (requested
== 0) {
2043 // This is not a perfect match of error codes, as no operation is
2044 // actually pending. However, returning 0 would be interpreted as a
2045 // possible sign of EOF, which is also an inappropriate match.
2046 return ERR_IO_PENDING
;
2050 int nb
= memio_GetReadParams(nss_bufs_
, &buf
);
2053 // buffer too full to read into, so no I/O possible at moment
2054 rv
= ERR_IO_PENDING
;
2056 scoped_refptr
<IOBuffer
> read_buffer(new IOBuffer(nb
));
2057 if (OnNetworkTaskRunner()) {
2058 rv
= DoBufferRecv(read_buffer
.get(), nb
);
2060 bool posted
= network_task_runner_
->PostTask(
2062 base::Bind(IgnoreResult(&Core::DoBufferRecv
), this, read_buffer
,
2064 rv
= posted
? ERR_IO_PENDING
: ERR_ABORTED
;
2067 if (rv
== ERR_IO_PENDING
) {
2068 transport_recv_busy_
= true;
2071 memcpy(buf
, read_buffer
->data(), rv
);
2072 } else if (rv
== 0) {
2073 transport_recv_eof_
= true;
2075 memio_PutReadResult(nss_bufs_
, MapErrorToNSS(rv
));
2081 // Return 0 if nss_bufs_ was empty,
2082 // > 0 for bytes transferred immediately,
2083 // < 0 for error (or the non-error ERR_IO_PENDING).
2084 int SSLClientSocketNSS::Core::BufferSend() {
2085 DCHECK(OnNSSTaskRunner());
2087 if (transport_send_busy_
)
2088 return ERR_IO_PENDING
;
2092 unsigned int len1
, len2
;
2093 if (memio_GetWriteParams(nss_bufs_
, &buf1
, &len1
, &buf2
, &len2
)) {
2094 // It is important this return synchronously to prevent spinning infinitely
2095 // in the off-thread NSS case. The error code itself is ignored, so just
2096 // return ERR_ABORTED. See https://crbug.com/381160.
2099 const unsigned int len
= len1
+ len2
;
2103 scoped_refptr
<IOBuffer
> send_buffer(new IOBuffer(len
));
2104 memcpy(send_buffer
->data(), buf1
, len1
);
2105 memcpy(send_buffer
->data() + len1
, buf2
, len2
);
2107 if (OnNetworkTaskRunner()) {
2108 rv
= DoBufferSend(send_buffer
.get(), len
);
2110 bool posted
= network_task_runner_
->PostTask(
2112 base::Bind(IgnoreResult(&Core::DoBufferSend
), this, send_buffer
,
2114 rv
= posted
? ERR_IO_PENDING
: ERR_ABORTED
;
2117 if (rv
== ERR_IO_PENDING
) {
2118 transport_send_busy_
= true;
2120 memio_PutWriteResult(nss_bufs_
, MapErrorToNSS(rv
));
2127 void SSLClientSocketNSS::Core::OnRecvComplete(int result
) {
2128 DCHECK(OnNSSTaskRunner());
2130 if (next_handshake_state_
== STATE_HANDSHAKE
) {
2131 OnHandshakeIOComplete(result
);
2135 // Network layer received some data, check if client requested to read
2137 if (!user_read_buf_
.get())
2140 int rv
= DoReadLoop(result
);
2141 if (rv
!= ERR_IO_PENDING
)
2145 void SSLClientSocketNSS::Core::OnSendComplete(int result
) {
2146 DCHECK(OnNSSTaskRunner());
2148 if (next_handshake_state_
== STATE_HANDSHAKE
) {
2149 OnHandshakeIOComplete(result
);
2153 // OnSendComplete may need to call DoPayloadRead while the renegotiation
2154 // handshake is in progress.
2155 int rv_read
= ERR_IO_PENDING
;
2156 int rv_write
= ERR_IO_PENDING
;
2159 if (user_read_buf_
.get())
2160 rv_read
= DoPayloadRead();
2161 if (user_write_buf_
.get())
2162 rv_write
= DoPayloadWrite();
2163 network_moved
= DoTransportIO();
2164 } while (rv_read
== ERR_IO_PENDING
&& rv_write
== ERR_IO_PENDING
&&
2165 (user_read_buf_
.get() || user_write_buf_
.get()) && network_moved
);
2167 // If the parent SSLClientSocketNSS is deleted during the processing of the
2168 // Read callback and OnNSSTaskRunner() == OnNetworkTaskRunner(), then the Core
2169 // will be detached (and possibly deleted). Guard against deletion by taking
2170 // an extra reference, then check if the Core was detached before invoking the
2172 scoped_refptr
<Core
> guard(this);
2173 if (user_read_buf_
.get() && rv_read
!= ERR_IO_PENDING
)
2174 DoReadCallback(rv_read
);
2176 if (OnNetworkTaskRunner() && detached_
)
2179 if (user_write_buf_
.get() && rv_write
!= ERR_IO_PENDING
)
2180 DoWriteCallback(rv_write
);
2183 // As part of Connect(), the SSLClientSocketNSS object performs an SSL
2184 // handshake. This requires network IO, which in turn calls
2185 // BufferRecvComplete() with a non-zero byte count. This byte count eventually
2186 // winds its way through the state machine and ends up being passed to the
2187 // callback. For Read() and Write(), that's what we want. But for Connect(),
2188 // the caller expects OK (i.e. 0) for success.
2189 void SSLClientSocketNSS::Core::DoConnectCallback(int rv
) {
2190 DCHECK(OnNSSTaskRunner());
2191 DCHECK_NE(rv
, ERR_IO_PENDING
);
2192 DCHECK(!user_connect_callback_
.is_null());
2194 base::Closure c
= base::Bind(
2195 base::ResetAndReturn(&user_connect_callback_
),
2197 PostOrRunCallback(FROM_HERE
, c
);
2200 void SSLClientSocketNSS::Core::DoReadCallback(int rv
) {
2201 DCHECK(OnNSSTaskRunner());
2202 DCHECK_NE(ERR_IO_PENDING
, rv
);
2203 DCHECK(!user_read_callback_
.is_null());
2205 user_read_buf_
= NULL
;
2206 user_read_buf_len_
= 0;
2207 int amount_in_read_buffer
= memio_GetReadableBufferSize(nss_bufs_
);
2208 // This is used to curry the |amount_int_read_buffer| and |user_cb| back to
2209 // the network task runner.
2212 base::Bind(&Core::OnNSSBufferUpdated
, this, amount_in_read_buffer
));
2215 base::Bind(&Core::DidNSSRead
, this, rv
));
2218 base::Bind(base::ResetAndReturn(&user_read_callback_
), rv
));
2221 void SSLClientSocketNSS::Core::DoWriteCallback(int rv
) {
2222 DCHECK(OnNSSTaskRunner());
2223 DCHECK_NE(ERR_IO_PENDING
, rv
);
2224 DCHECK(!user_write_callback_
.is_null());
2226 // Since Run may result in Write being called, clear |user_write_callback_|
2228 user_write_buf_
= NULL
;
2229 user_write_buf_len_
= 0;
2230 // Update buffer status because DoWriteLoop called DoTransportIO which may
2231 // perform read operations.
2232 int amount_in_read_buffer
= memio_GetReadableBufferSize(nss_bufs_
);
2233 // This is used to curry the |amount_int_read_buffer| and |user_cb| back to
2234 // the network task runner.
2237 base::Bind(&Core::OnNSSBufferUpdated
, this, amount_in_read_buffer
));
2240 base::Bind(&Core::DidNSSWrite
, this, rv
));
2243 base::Bind(base::ResetAndReturn(&user_write_callback_
), rv
));
2246 SECStatus
SSLClientSocketNSS::Core::ClientChannelIDHandler(
2249 SECKEYPublicKey
**out_public_key
,
2250 SECKEYPrivateKey
**out_private_key
) {
2251 Core
* core
= reinterpret_cast<Core
*>(arg
);
2252 DCHECK(core
->OnNSSTaskRunner());
2254 core
->PostOrRunCallback(
2256 base::Bind(&AddLogEvent
, core
->weak_net_log_
,
2257 NetLog::TYPE_SSL_CHANNEL_ID_REQUESTED
));
2259 // We have negotiated the TLS channel ID extension.
2260 core
->channel_id_xtn_negotiated_
= true;
2261 std::string host
= core
->host_and_port_
.host();
2262 int error
= ERR_UNEXPECTED
;
2263 if (core
->OnNetworkTaskRunner()) {
2264 error
= core
->DoGetChannelID(host
);
2266 bool posted
= core
->network_task_runner_
->PostTask(
2269 IgnoreResult(&Core::DoGetChannelID
),
2271 error
= posted
? ERR_IO_PENDING
: ERR_ABORTED
;
2274 if (error
== ERR_IO_PENDING
) {
2275 // Asynchronous case.
2276 core
->channel_id_needed_
= true;
2277 return SECWouldBlock
;
2280 core
->PostOrRunCallback(
2282 base::Bind(&BoundNetLog::EndEventWithNetErrorCode
, core
->weak_net_log_
,
2283 NetLog::TYPE_SSL_GET_DOMAIN_BOUND_CERT
, error
));
2284 SECStatus rv
= SECSuccess
;
2286 // Synchronous success.
2287 int result
= core
->ImportChannelIDKeys(out_public_key
, out_private_key
);
2289 core
->SetChannelIDProvided();
2299 int SSLClientSocketNSS::Core::ImportChannelIDKeys(SECKEYPublicKey
** public_key
,
2300 SECKEYPrivateKey
** key
) {
2301 // Set the certificate.
2303 cert_item
.data
= (unsigned char*) domain_bound_cert_
.data();
2304 cert_item
.len
= domain_bound_cert_
.size();
2305 ScopedCERTCertificate
cert(CERT_NewTempCertificate(CERT_GetDefaultCertDB(),
2311 return MapNSSError(PORT_GetError());
2313 crypto::ScopedPK11Slot
slot(PK11_GetInternalSlot());
2314 // Set the private key.
2315 if (!crypto::ECPrivateKey::ImportFromEncryptedPrivateKeyInfo(
2317 ChannelIDService::kEPKIPassword
,
2318 reinterpret_cast<const unsigned char*>(
2319 domain_bound_private_key_
.data()),
2320 domain_bound_private_key_
.size(),
2321 &cert
->subjectPublicKeyInfo
,
2326 int error
= MapNSSError(PORT_GetError());
2333 void SSLClientSocketNSS::Core::UpdateServerCert() {
2334 nss_handshake_state_
.server_cert_chain
.Reset(nss_fd_
);
2335 nss_handshake_state_
.server_cert
= X509Certificate::CreateFromDERCertChain(
2336 nss_handshake_state_
.server_cert_chain
.AsStringPieceVector());
2337 if (nss_handshake_state_
.server_cert
.get()) {
2338 // Since this will be called asynchronously on another thread, it needs to
2339 // own a reference to the certificate.
2340 NetLog::ParametersCallback net_log_callback
=
2341 base::Bind(&NetLogX509CertificateCallback
,
2342 nss_handshake_state_
.server_cert
);
2345 base::Bind(&AddLogEventWithCallback
, weak_net_log_
,
2346 NetLog::TYPE_SSL_CERTIFICATES_RECEIVED
,
2351 void SSLClientSocketNSS::Core::UpdateSignedCertTimestamps() {
2352 const SECItem
* signed_cert_timestamps
=
2353 SSL_PeerSignedCertTimestamps(nss_fd_
);
2355 if (!signed_cert_timestamps
|| !signed_cert_timestamps
->len
)
2358 nss_handshake_state_
.sct_list_from_tls_extension
= std::string(
2359 reinterpret_cast<char*>(signed_cert_timestamps
->data
),
2360 signed_cert_timestamps
->len
);
2363 void SSLClientSocketNSS::Core::UpdateStapledOCSPResponse() {
2364 PRBool ocsp_requested
= PR_FALSE
;
2365 SSL_OptionGet(nss_fd_
, SSL_ENABLE_OCSP_STAPLING
, &ocsp_requested
);
2366 const SECItemArray
* ocsp_responses
=
2367 SSL_PeerStapledOCSPResponses(nss_fd_
);
2368 bool ocsp_responses_present
= ocsp_responses
&& ocsp_responses
->len
;
2370 UMA_HISTOGRAM_BOOLEAN("Net.OCSPResponseStapled", ocsp_responses_present
);
2371 if (!ocsp_responses_present
)
2374 nss_handshake_state_
.stapled_ocsp_response
= std::string(
2375 reinterpret_cast<char*>(ocsp_responses
->items
[0].data
),
2376 ocsp_responses
->items
[0].len
);
2378 // TODO(agl): figure out how to plumb an OCSP response into the Mac
2379 // system library and update IsOCSPStaplingSupported for Mac.
2380 if (IsOCSPStaplingSupported()) {
2382 if (nss_handshake_state_
.server_cert
) {
2383 CRYPT_DATA_BLOB ocsp_response_blob
;
2384 ocsp_response_blob
.cbData
= ocsp_responses
->items
[0].len
;
2385 ocsp_response_blob
.pbData
= ocsp_responses
->items
[0].data
;
2386 BOOL ok
= CertSetCertificateContextProperty(
2387 nss_handshake_state_
.server_cert
->os_cert_handle(),
2388 CERT_OCSP_RESPONSE_PROP_ID
,
2389 CERT_SET_PROPERTY_IGNORE_PERSIST_ERROR_FLAG
,
2390 &ocsp_response_blob
);
2392 VLOG(1) << "Failed to set OCSP response property: "
2396 #elif defined(USE_NSS)
2397 CacheOCSPResponseFromSideChannelFunction cache_ocsp_response
=
2398 GetCacheOCSPResponseFromSideChannelFunction();
2400 cache_ocsp_response(
2401 CERT_GetDefaultCertDB(),
2402 nss_handshake_state_
.server_cert_chain
[0], PR_Now(),
2403 &ocsp_responses
->items
[0], NULL
);
2405 } // IsOCSPStaplingSupported()
2408 void SSLClientSocketNSS::Core::UpdateConnectionStatus() {
2409 SSLChannelInfo channel_info
;
2410 SECStatus ok
= SSL_GetChannelInfo(nss_fd_
,
2411 &channel_info
, sizeof(channel_info
));
2412 if (ok
== SECSuccess
&&
2413 channel_info
.length
== sizeof(channel_info
) &&
2414 channel_info
.cipherSuite
) {
2415 nss_handshake_state_
.ssl_connection_status
|=
2416 (static_cast<int>(channel_info
.cipherSuite
) &
2417 SSL_CONNECTION_CIPHERSUITE_MASK
) <<
2418 SSL_CONNECTION_CIPHERSUITE_SHIFT
;
2420 nss_handshake_state_
.ssl_connection_status
|=
2421 (static_cast<int>(channel_info
.compressionMethod
) &
2422 SSL_CONNECTION_COMPRESSION_MASK
) <<
2423 SSL_CONNECTION_COMPRESSION_SHIFT
;
2425 // NSS 3.14.x doesn't have a version macro for TLS 1.2 (because NSS didn't
2426 // support it yet), so use 0x0303 directly.
2427 int version
= SSL_CONNECTION_VERSION_UNKNOWN
;
2428 if (channel_info
.protocolVersion
< SSL_LIBRARY_VERSION_3_0
) {
2429 // All versions less than SSL_LIBRARY_VERSION_3_0 are treated as SSL
2431 version
= SSL_CONNECTION_VERSION_SSL2
;
2432 } else if (channel_info
.protocolVersion
== SSL_LIBRARY_VERSION_3_0
) {
2433 version
= SSL_CONNECTION_VERSION_SSL3
;
2434 } else if (channel_info
.protocolVersion
== SSL_LIBRARY_VERSION_3_1_TLS
) {
2435 version
= SSL_CONNECTION_VERSION_TLS1
;
2436 } else if (channel_info
.protocolVersion
== SSL_LIBRARY_VERSION_TLS_1_1
) {
2437 version
= SSL_CONNECTION_VERSION_TLS1_1
;
2438 } else if (channel_info
.protocolVersion
== 0x0303) {
2439 version
= SSL_CONNECTION_VERSION_TLS1_2
;
2441 nss_handshake_state_
.ssl_connection_status
|=
2442 (version
& SSL_CONNECTION_VERSION_MASK
) <<
2443 SSL_CONNECTION_VERSION_SHIFT
;
2446 PRBool peer_supports_renego_ext
;
2447 ok
= SSL_HandshakeNegotiatedExtension(nss_fd_
, ssl_renegotiation_info_xtn
,
2448 &peer_supports_renego_ext
);
2449 if (ok
== SECSuccess
) {
2450 if (!peer_supports_renego_ext
) {
2451 nss_handshake_state_
.ssl_connection_status
|=
2452 SSL_CONNECTION_NO_RENEGOTIATION_EXTENSION
;
2453 // Log an informational message if the server does not support secure
2454 // renegotiation (RFC 5746).
2455 VLOG(1) << "The server " << host_and_port_
.ToString()
2456 << " does not support the TLS renegotiation_info extension.";
2460 if (ssl_config_
.version_fallback
) {
2461 nss_handshake_state_
.ssl_connection_status
|=
2462 SSL_CONNECTION_VERSION_FALLBACK
;
2466 void SSLClientSocketNSS::Core::UpdateNextProto() {
2468 SSLNextProtoState state
;
2471 SECStatus rv
= SSL_GetNextProto(nss_fd_
, &state
, buf
, &buf_len
, sizeof(buf
));
2472 if (rv
!= SECSuccess
)
2475 nss_handshake_state_
.next_proto
=
2476 std::string(reinterpret_cast<char*>(buf
), buf_len
);
2478 case SSL_NEXT_PROTO_NEGOTIATED
:
2479 case SSL_NEXT_PROTO_SELECTED
:
2480 nss_handshake_state_
.next_proto_status
= kNextProtoNegotiated
;
2482 case SSL_NEXT_PROTO_NO_OVERLAP
:
2483 nss_handshake_state_
.next_proto_status
= kNextProtoNoOverlap
;
2485 case SSL_NEXT_PROTO_NO_SUPPORT
:
2486 nss_handshake_state_
.next_proto_status
= kNextProtoUnsupported
;
2494 void SSLClientSocketNSS::Core::RecordChannelIDSupportOnNSSTaskRunner() {
2495 DCHECK(OnNSSTaskRunner());
2496 if (nss_handshake_state_
.resumed_handshake
)
2499 // Copy the NSS task runner-only state to the network task runner and
2500 // log histograms from there, since the histograms also need access to the
2501 // network task runner state.
2504 base::Bind(&Core::RecordChannelIDSupportOnNetworkTaskRunner
,
2506 channel_id_xtn_negotiated_
,
2507 ssl_config_
.channel_id_enabled
,
2508 crypto::ECPrivateKey::IsSupported()));
2511 void SSLClientSocketNSS::Core::RecordChannelIDSupportOnNetworkTaskRunner(
2512 bool negotiated_channel_id
,
2513 bool channel_id_enabled
,
2514 bool supports_ecc
) const {
2515 DCHECK(OnNetworkTaskRunner());
2517 RecordChannelIDSupport(channel_id_service_
,
2518 negotiated_channel_id
,
2523 int SSLClientSocketNSS::Core::DoBufferRecv(IOBuffer
* read_buffer
, int len
) {
2524 DCHECK(OnNetworkTaskRunner());
2530 int rv
= transport_
->socket()->Read(
2532 base::Bind(&Core::BufferRecvComplete
, base::Unretained(this),
2533 scoped_refptr
<IOBuffer
>(read_buffer
)));
2535 if (!OnNSSTaskRunner() && rv
!= ERR_IO_PENDING
) {
2536 nss_task_runner_
->PostTask(
2537 FROM_HERE
, base::Bind(&Core::BufferRecvComplete
, this,
2538 scoped_refptr
<IOBuffer
>(read_buffer
), rv
));
2545 int SSLClientSocketNSS::Core::DoBufferSend(IOBuffer
* send_buffer
, int len
) {
2546 DCHECK(OnNetworkTaskRunner());
2552 int rv
= transport_
->socket()->Write(
2554 base::Bind(&Core::BufferSendComplete
,
2555 base::Unretained(this)));
2557 if (!OnNSSTaskRunner() && rv
!= ERR_IO_PENDING
) {
2558 nss_task_runner_
->PostTask(
2560 base::Bind(&Core::BufferSendComplete
, this, rv
));
2567 int SSLClientSocketNSS::Core::DoGetChannelID(const std::string
& host
) {
2568 DCHECK(OnNetworkTaskRunner());
2573 weak_net_log_
->BeginEvent(NetLog::TYPE_SSL_GET_DOMAIN_BOUND_CERT
);
2575 int rv
= channel_id_service_
->GetOrCreateChannelID(
2577 &domain_bound_private_key_
,
2578 &domain_bound_cert_
,
2579 base::Bind(&Core::OnGetChannelIDComplete
, base::Unretained(this)),
2580 &domain_bound_cert_request_handle_
);
2582 if (rv
!= ERR_IO_PENDING
&& !OnNSSTaskRunner()) {
2583 nss_task_runner_
->PostTask(
2585 base::Bind(&Core::OnHandshakeIOComplete
, this, rv
));
2586 return ERR_IO_PENDING
;
2592 void SSLClientSocketNSS::Core::OnHandshakeStateUpdated(
2593 const HandshakeState
& state
) {
2594 DCHECK(OnNetworkTaskRunner());
2595 network_handshake_state_
= state
;
2598 void SSLClientSocketNSS::Core::OnNSSBufferUpdated(int amount_in_read_buffer
) {
2599 DCHECK(OnNetworkTaskRunner());
2600 unhandled_buffer_size_
= amount_in_read_buffer
;
2603 void SSLClientSocketNSS::Core::DidNSSRead(int result
) {
2604 DCHECK(OnNetworkTaskRunner());
2605 DCHECK(nss_waiting_read_
);
2606 nss_waiting_read_
= false;
2608 nss_is_closed_
= true;
2610 was_ever_used_
= true;
2614 void SSLClientSocketNSS::Core::DidNSSWrite(int result
) {
2615 DCHECK(OnNetworkTaskRunner());
2616 DCHECK(nss_waiting_write_
);
2617 nss_waiting_write_
= false;
2619 nss_is_closed_
= true;
2620 } else if (result
> 0) {
2621 was_ever_used_
= true;
2625 void SSLClientSocketNSS::Core::BufferSendComplete(int result
) {
2626 if (!OnNSSTaskRunner()) {
2630 nss_task_runner_
->PostTask(
2631 FROM_HERE
, base::Bind(&Core::BufferSendComplete
, this, result
));
2635 DCHECK(OnNSSTaskRunner());
2637 memio_PutWriteResult(nss_bufs_
, MapErrorToNSS(result
));
2638 transport_send_busy_
= false;
2639 OnSendComplete(result
);
2642 void SSLClientSocketNSS::Core::OnHandshakeIOComplete(int result
) {
2643 if (!OnNSSTaskRunner()) {
2647 nss_task_runner_
->PostTask(
2648 FROM_HERE
, base::Bind(&Core::OnHandshakeIOComplete
, this, result
));
2652 DCHECK(OnNSSTaskRunner());
2654 int rv
= DoHandshakeLoop(result
);
2655 if (rv
!= ERR_IO_PENDING
)
2656 DoConnectCallback(rv
);
2659 void SSLClientSocketNSS::Core::OnGetChannelIDComplete(int result
) {
2660 DVLOG(1) << __FUNCTION__
<< " " << result
;
2661 DCHECK(OnNetworkTaskRunner());
2663 OnHandshakeIOComplete(result
);
2666 void SSLClientSocketNSS::Core::BufferRecvComplete(
2667 IOBuffer
* read_buffer
,
2669 DCHECK(read_buffer
);
2671 if (!OnNSSTaskRunner()) {
2675 nss_task_runner_
->PostTask(
2676 FROM_HERE
, base::Bind(&Core::BufferRecvComplete
, this,
2677 scoped_refptr
<IOBuffer
>(read_buffer
), result
));
2681 DCHECK(OnNSSTaskRunner());
2685 int nb
= memio_GetReadParams(nss_bufs_
, &buf
);
2686 CHECK_GE(nb
, result
);
2687 memcpy(buf
, read_buffer
->data(), result
);
2688 } else if (result
== 0) {
2689 transport_recv_eof_
= true;
2692 memio_PutReadResult(nss_bufs_
, MapErrorToNSS(result
));
2693 transport_recv_busy_
= false;
2694 OnRecvComplete(result
);
2697 void SSLClientSocketNSS::Core::PostOrRunCallback(
2698 const tracked_objects::Location
& location
,
2699 const base::Closure
& task
) {
2700 if (!OnNetworkTaskRunner()) {
2701 network_task_runner_
->PostTask(
2703 base::Bind(&Core::PostOrRunCallback
, this, location
, task
));
2707 if (detached_
|| task
.is_null())
2712 void SSLClientSocketNSS::Core::AddCertProvidedEvent(int cert_count
) {
2715 base::Bind(&AddLogEventWithCallback
, weak_net_log_
,
2716 NetLog::TYPE_SSL_CLIENT_CERT_PROVIDED
,
2717 NetLog::IntegerCallback("cert_count", cert_count
)));
2720 void SSLClientSocketNSS::Core::SetChannelIDProvided() {
2722 FROM_HERE
, base::Bind(&AddLogEvent
, weak_net_log_
,
2723 NetLog::TYPE_SSL_CHANNEL_ID_PROVIDED
));
2724 nss_handshake_state_
.channel_id_sent
= true;
2725 // Update the network task runner's view of the handshake state now that
2726 // channel id has been sent.
2728 FROM_HERE
, base::Bind(&Core::OnHandshakeStateUpdated
, this,
2729 nss_handshake_state_
));
2732 SSLClientSocketNSS::SSLClientSocketNSS(
2733 base::SequencedTaskRunner
* nss_task_runner
,
2734 scoped_ptr
<ClientSocketHandle
> transport_socket
,
2735 const HostPortPair
& host_and_port
,
2736 const SSLConfig
& ssl_config
,
2737 const SSLClientSocketContext
& context
)
2738 : nss_task_runner_(nss_task_runner
),
2739 transport_(transport_socket
.Pass()),
2740 host_and_port_(host_and_port
),
2741 ssl_config_(ssl_config
),
2742 cert_verifier_(context
.cert_verifier
),
2743 cert_transparency_verifier_(context
.cert_transparency_verifier
),
2744 channel_id_service_(context
.channel_id_service
),
2745 ssl_session_cache_shard_(context
.ssl_session_cache_shard
),
2746 completed_handshake_(false),
2747 next_handshake_state_(STATE_NONE
),
2749 net_log_(transport_
->socket()->NetLog()),
2750 transport_security_state_(context
.transport_security_state
),
2751 valid_thread_id_(base::kInvalidThreadId
) {
2757 SSLClientSocketNSS::~SSLClientSocketNSS() {
2764 void SSLClientSocket::ClearSessionCache() {
2765 // SSL_ClearSessionCache can't be called before NSS is initialized. Don't
2766 // bother initializing NSS just to clear an empty SSL session cache.
2767 if (!NSS_IsInitialized())
2770 SSL_ClearSessionCache();
2773 bool SSLClientSocketNSS::GetSSLInfo(SSLInfo
* ssl_info
) {
2776 if (core_
->state().server_cert_chain
.empty() ||
2777 !core_
->state().server_cert_chain
[0]) {
2781 ssl_info
->cert_status
= server_cert_verify_result_
.cert_status
;
2782 ssl_info
->cert
= server_cert_verify_result_
.verified_cert
;
2784 AddSCTInfoToSSLInfo(ssl_info
);
2786 ssl_info
->connection_status
=
2787 core_
->state().ssl_connection_status
;
2788 ssl_info
->public_key_hashes
= server_cert_verify_result_
.public_key_hashes
;
2789 ssl_info
->is_issued_by_known_root
=
2790 server_cert_verify_result_
.is_issued_by_known_root
;
2791 ssl_info
->client_cert_sent
=
2792 ssl_config_
.send_client_cert
&& ssl_config_
.client_cert
.get();
2793 ssl_info
->channel_id_sent
= WasChannelIDSent();
2794 ssl_info
->pinning_failure_log
= pinning_failure_log_
;
2796 PRUint16 cipher_suite
= SSLConnectionStatusToCipherSuite(
2797 core_
->state().ssl_connection_status
);
2798 SSLCipherSuiteInfo cipher_info
;
2799 SECStatus ok
= SSL_GetCipherSuiteInfo(cipher_suite
,
2800 &cipher_info
, sizeof(cipher_info
));
2801 if (ok
== SECSuccess
) {
2802 ssl_info
->security_bits
= cipher_info
.effectiveKeyBits
;
2804 ssl_info
->security_bits
= -1;
2805 LOG(DFATAL
) << "SSL_GetCipherSuiteInfo returned " << PR_GetError()
2806 << " for cipherSuite " << cipher_suite
;
2809 ssl_info
->handshake_type
= core_
->state().resumed_handshake
?
2810 SSLInfo::HANDSHAKE_RESUME
: SSLInfo::HANDSHAKE_FULL
;
2816 std::string
SSLClientSocketNSS::GetSessionCacheKey() const {
2818 return std::string();
2821 bool SSLClientSocketNSS::InSessionCache() const {
2822 // For now, always return true so that SSLConnectJobs are never held back.
2826 void SSLClientSocketNSS::SetHandshakeCompletionCallback(
2827 const base::Closure
& callback
) {
2831 void SSLClientSocketNSS::GetSSLCertRequestInfo(
2832 SSLCertRequestInfo
* cert_request_info
) {
2834 cert_request_info
->host_and_port
= host_and_port_
;
2835 cert_request_info
->cert_authorities
= core_
->state().cert_authorities
;
2839 int SSLClientSocketNSS::ExportKeyingMaterial(const base::StringPiece
& label
,
2841 const base::StringPiece
& context
,
2843 unsigned int outlen
) {
2845 return ERR_SOCKET_NOT_CONNECTED
;
2847 // SSL_ExportKeyingMaterial may block the current thread if |core_| is in
2848 // the midst of a handshake.
2849 SECStatus result
= SSL_ExportKeyingMaterial(
2850 nss_fd_
, label
.data(), label
.size(), has_context
,
2851 reinterpret_cast<const unsigned char*>(context
.data()),
2852 context
.length(), out
, outlen
);
2853 if (result
!= SECSuccess
) {
2854 LogFailedNSSFunction(net_log_
, "SSL_ExportKeyingMaterial", "");
2855 return MapNSSError(PORT_GetError());
2860 int SSLClientSocketNSS::GetTLSUniqueChannelBinding(std::string
* out
) {
2862 return ERR_SOCKET_NOT_CONNECTED
;
2863 unsigned char buf
[64];
2865 SECStatus result
= SSL_GetChannelBinding(nss_fd_
,
2866 SSL_CHANNEL_BINDING_TLS_UNIQUE
,
2867 buf
, &len
, arraysize(buf
));
2868 if (result
!= SECSuccess
) {
2869 LogFailedNSSFunction(net_log_
, "SSL_GetChannelBinding", "");
2870 return MapNSSError(PORT_GetError());
2872 out
->assign(reinterpret_cast<char*>(buf
), len
);
2876 SSLClientSocket::NextProtoStatus
2877 SSLClientSocketNSS::GetNextProto(std::string
* proto
) {
2878 *proto
= core_
->state().next_proto
;
2879 return core_
->state().next_proto_status
;
2882 int SSLClientSocketNSS::Connect(const CompletionCallback
& callback
) {
2884 DCHECK(transport_
.get());
2885 // It is an error to create an SSLClientSocket whose context has no
2886 // TransportSecurityState.
2887 DCHECK(transport_security_state_
);
2888 DCHECK_EQ(STATE_NONE
, next_handshake_state_
);
2889 DCHECK(user_connect_callback_
.is_null());
2890 DCHECK(!callback
.is_null());
2892 EnsureThreadIdAssigned();
2894 net_log_
.BeginEvent(NetLog::TYPE_SSL_CONNECT
);
2898 net_log_
.EndEventWithNetErrorCode(NetLog::TYPE_SSL_CONNECT
, rv
);
2902 rv
= InitializeSSLOptions();
2904 net_log_
.EndEventWithNetErrorCode(NetLog::TYPE_SSL_CONNECT
, rv
);
2908 rv
= InitializeSSLPeerName();
2910 net_log_
.EndEventWithNetErrorCode(NetLog::TYPE_SSL_CONNECT
, rv
);
2914 GotoState(STATE_HANDSHAKE
);
2916 rv
= DoHandshakeLoop(OK
);
2917 if (rv
== ERR_IO_PENDING
) {
2918 user_connect_callback_
= callback
;
2920 net_log_
.EndEventWithNetErrorCode(NetLog::TYPE_SSL_CONNECT
, rv
);
2924 return rv
> OK
? OK
: rv
;
2927 void SSLClientSocketNSS::Disconnect() {
2930 CHECK(CalledOnValidThread());
2932 // Shut down anything that may call us back.
2935 transport_
->socket()->Disconnect();
2937 // Reset object state.
2938 user_connect_callback_
.Reset();
2939 server_cert_verify_result_
.Reset();
2940 completed_handshake_
= false;
2941 start_cert_verification_time_
= base::TimeTicks();
2947 bool SSLClientSocketNSS::IsConnected() const {
2949 bool ret
= completed_handshake_
&&
2950 (core_
->HasPendingAsyncOperation() ||
2951 (core_
->IsConnected() && core_
->HasUnhandledReceivedData()) ||
2952 transport_
->socket()->IsConnected());
2957 bool SSLClientSocketNSS::IsConnectedAndIdle() const {
2959 bool ret
= completed_handshake_
&&
2960 !core_
->HasPendingAsyncOperation() &&
2961 !(core_
->IsConnected() && core_
->HasUnhandledReceivedData()) &&
2962 transport_
->socket()->IsConnectedAndIdle();
2967 int SSLClientSocketNSS::GetPeerAddress(IPEndPoint
* address
) const {
2968 return transport_
->socket()->GetPeerAddress(address
);
2971 int SSLClientSocketNSS::GetLocalAddress(IPEndPoint
* address
) const {
2972 return transport_
->socket()->GetLocalAddress(address
);
2975 const BoundNetLog
& SSLClientSocketNSS::NetLog() const {
2979 void SSLClientSocketNSS::SetSubresourceSpeculation() {
2980 if (transport_
.get() && transport_
->socket()) {
2981 transport_
->socket()->SetSubresourceSpeculation();
2987 void SSLClientSocketNSS::SetOmniboxSpeculation() {
2988 if (transport_
.get() && transport_
->socket()) {
2989 transport_
->socket()->SetOmniboxSpeculation();
2995 bool SSLClientSocketNSS::WasEverUsed() const {
2996 DCHECK(core_
.get());
2998 return core_
->WasEverUsed();
3001 bool SSLClientSocketNSS::UsingTCPFastOpen() const {
3002 if (transport_
.get() && transport_
->socket()) {
3003 return transport_
->socket()->UsingTCPFastOpen();
3009 int SSLClientSocketNSS::Read(IOBuffer
* buf
, int buf_len
,
3010 const CompletionCallback
& callback
) {
3011 DCHECK(core_
.get());
3012 DCHECK(!callback
.is_null());
3014 EnterFunction(buf_len
);
3015 int rv
= core_
->Read(buf
, buf_len
, callback
);
3021 int SSLClientSocketNSS::Write(IOBuffer
* buf
, int buf_len
,
3022 const CompletionCallback
& callback
) {
3023 DCHECK(core_
.get());
3024 DCHECK(!callback
.is_null());
3026 EnterFunction(buf_len
);
3027 int rv
= core_
->Write(buf
, buf_len
, callback
);
3033 int SSLClientSocketNSS::SetReceiveBufferSize(int32 size
) {
3034 return transport_
->socket()->SetReceiveBufferSize(size
);
3037 int SSLClientSocketNSS::SetSendBufferSize(int32 size
) {
3038 return transport_
->socket()->SetSendBufferSize(size
);
3041 int SSLClientSocketNSS::Init() {
3043 // Initialize the NSS SSL library in a threadsafe way. This also
3044 // initializes the NSS base library.
3046 if (!NSS_IsInitialized())
3047 return ERR_UNEXPECTED
;
3048 #if defined(USE_NSS) || defined(OS_IOS)
3049 if (ssl_config_
.cert_io_enabled
) {
3050 // We must call EnsureNSSHttpIOInit() here, on the IO thread, to get the IO
3051 // loop by MessageLoopForIO::current().
3052 // X509Certificate::Verify() runs on a worker thread of CertVerifier.
3053 EnsureNSSHttpIOInit();
3061 void SSLClientSocketNSS::InitCore() {
3062 core_
= new Core(base::ThreadTaskRunnerHandle::Get().get(),
3063 nss_task_runner_
.get(),
3068 channel_id_service_
);
3071 int SSLClientSocketNSS::InitializeSSLOptions() {
3072 // Transport connected, now hook it up to nss
3073 nss_fd_
= memio_CreateIOLayer(kRecvBufferSize
, kSendBufferSize
);
3074 if (nss_fd_
== NULL
) {
3075 return ERR_OUT_OF_MEMORY
; // TODO(port): map NSPR error code.
3078 // Grab pointer to buffers
3079 memio_Private
* nss_bufs
= memio_GetSecret(nss_fd_
);
3081 /* Create SSL state machine */
3082 /* Push SSL onto our fake I/O socket */
3083 if (SSL_ImportFD(GetNSSModelSocket(), nss_fd_
) == NULL
) {
3084 LogFailedNSSFunction(net_log_
, "SSL_ImportFD", "");
3087 return ERR_OUT_OF_MEMORY
; // TODO(port): map NSPR/NSS error code.
3089 // TODO(port): set more ssl options! Check errors!
3093 rv
= SSL_OptionSet(nss_fd_
, SSL_SECURITY
, PR_TRUE
);
3094 if (rv
!= SECSuccess
) {
3095 LogFailedNSSFunction(net_log_
, "SSL_OptionSet", "SSL_SECURITY");
3096 return ERR_UNEXPECTED
;
3099 rv
= SSL_OptionSet(nss_fd_
, SSL_ENABLE_SSL2
, PR_FALSE
);
3100 if (rv
!= SECSuccess
) {
3101 LogFailedNSSFunction(net_log_
, "SSL_OptionSet", "SSL_ENABLE_SSL2");
3102 return ERR_UNEXPECTED
;
3105 // Don't do V2 compatible hellos because they don't support TLS extensions.
3106 rv
= SSL_OptionSet(nss_fd_
, SSL_V2_COMPATIBLE_HELLO
, PR_FALSE
);
3107 if (rv
!= SECSuccess
) {
3108 LogFailedNSSFunction(net_log_
, "SSL_OptionSet", "SSL_V2_COMPATIBLE_HELLO");
3109 return ERR_UNEXPECTED
;
3112 SSLVersionRange version_range
;
3113 version_range
.min
= ssl_config_
.version_min
;
3114 version_range
.max
= ssl_config_
.version_max
;
3115 rv
= SSL_VersionRangeSet(nss_fd_
, &version_range
);
3116 if (rv
!= SECSuccess
) {
3117 LogFailedNSSFunction(net_log_
, "SSL_VersionRangeSet", "");
3118 return ERR_NO_SSL_VERSIONS_ENABLED
;
3121 if (ssl_config_
.version_fallback
) {
3122 rv
= SSL_OptionSet(nss_fd_
, SSL_ENABLE_FALLBACK_SCSV
, PR_TRUE
);
3123 if (rv
!= SECSuccess
) {
3124 LogFailedNSSFunction(
3125 net_log_
, "SSL_OptionSet", "SSL_ENABLE_FALLBACK_SCSV");
3129 for (std::vector
<uint16
>::const_iterator it
=
3130 ssl_config_
.disabled_cipher_suites
.begin();
3131 it
!= ssl_config_
.disabled_cipher_suites
.end(); ++it
) {
3132 // This will fail if the specified cipher is not implemented by NSS, but
3133 // the failure is harmless.
3134 SSL_CipherPrefSet(nss_fd_
, *it
, PR_FALSE
);
3138 rv
= SSL_OptionSet(nss_fd_
, SSL_ENABLE_SESSION_TICKETS
, PR_TRUE
);
3139 if (rv
!= SECSuccess
) {
3140 LogFailedNSSFunction(
3141 net_log_
, "SSL_OptionSet", "SSL_ENABLE_SESSION_TICKETS");
3144 rv
= SSL_OptionSet(nss_fd_
, SSL_ENABLE_FALSE_START
,
3145 ssl_config_
.false_start_enabled
);
3146 if (rv
!= SECSuccess
)
3147 LogFailedNSSFunction(net_log_
, "SSL_OptionSet", "SSL_ENABLE_FALSE_START");
3149 // We allow servers to request renegotiation. Since we're a client,
3150 // prohibiting this is rather a waste of time. Only servers are in a
3151 // position to prevent renegotiation attacks.
3152 // http://extendedsubset.com/?p=8
3154 rv
= SSL_OptionSet(nss_fd_
, SSL_ENABLE_RENEGOTIATION
,
3155 SSL_RENEGOTIATE_TRANSITIONAL
);
3156 if (rv
!= SECSuccess
) {
3157 LogFailedNSSFunction(
3158 net_log_
, "SSL_OptionSet", "SSL_ENABLE_RENEGOTIATION");
3161 rv
= SSL_OptionSet(nss_fd_
, SSL_CBC_RANDOM_IV
, PR_TRUE
);
3162 if (rv
!= SECSuccess
)
3163 LogFailedNSSFunction(net_log_
, "SSL_OptionSet", "SSL_CBC_RANDOM_IV");
3165 // Added in NSS 3.15
3166 #ifdef SSL_ENABLE_OCSP_STAPLING
3167 // Request OCSP stapling even on platforms that don't support it, in
3168 // order to extract Certificate Transparency information.
3169 rv
= SSL_OptionSet(nss_fd_
, SSL_ENABLE_OCSP_STAPLING
,
3170 (IsOCSPStaplingSupported() ||
3171 ssl_config_
.signed_cert_timestamps_enabled
));
3172 if (rv
!= SECSuccess
) {
3173 LogFailedNSSFunction(net_log_
, "SSL_OptionSet",
3174 "SSL_ENABLE_OCSP_STAPLING");
3178 rv
= SSL_OptionSet(nss_fd_
, SSL_ENABLE_SIGNED_CERT_TIMESTAMPS
,
3179 ssl_config_
.signed_cert_timestamps_enabled
);
3180 if (rv
!= SECSuccess
) {
3181 LogFailedNSSFunction(net_log_
, "SSL_OptionSet",
3182 "SSL_ENABLE_SIGNED_CERT_TIMESTAMPS");
3185 rv
= SSL_OptionSet(nss_fd_
, SSL_HANDSHAKE_AS_CLIENT
, PR_TRUE
);
3186 if (rv
!= SECSuccess
) {
3187 LogFailedNSSFunction(net_log_
, "SSL_OptionSet", "SSL_HANDSHAKE_AS_CLIENT");
3188 return ERR_UNEXPECTED
;
3191 if (!core_
->Init(nss_fd_
, nss_bufs
))
3192 return ERR_UNEXPECTED
;
3194 // Tell SSL the hostname we're trying to connect to.
3195 SSL_SetURL(nss_fd_
, host_and_port_
.host().c_str());
3197 // Tell SSL we're a client; needed if not letting NSPR do socket I/O
3198 SSL_ResetHandshake(nss_fd_
, PR_FALSE
);
3203 int SSLClientSocketNSS::InitializeSSLPeerName() {
3204 // Tell NSS who we're connected to
3205 IPEndPoint peer_address
;
3206 int err
= transport_
->socket()->GetPeerAddress(&peer_address
);
3210 SockaddrStorage storage
;
3211 if (!peer_address
.ToSockAddr(storage
.addr
, &storage
.addr_len
))
3212 return ERR_ADDRESS_INVALID
;
3215 memset(&peername
, 0, sizeof(peername
));
3216 DCHECK_LE(static_cast<size_t>(storage
.addr_len
), sizeof(peername
));
3217 size_t len
= std::min(static_cast<size_t>(storage
.addr_len
),
3219 memcpy(&peername
, storage
.addr
, len
);
3221 // Adjust the address family field for BSD, whose sockaddr
3222 // structure has a one-byte length and one-byte address family
3223 // field at the beginning. PRNetAddr has a two-byte address
3224 // family field at the beginning.
3225 peername
.raw
.family
= storage
.addr
->sa_family
;
3227 memio_SetPeerName(nss_fd_
, &peername
);
3229 // Set the peer ID for session reuse. This is necessary when we create an
3230 // SSL tunnel through a proxy -- GetPeerName returns the proxy's address
3231 // rather than the destination server's address in that case.
3232 std::string peer_id
= host_and_port_
.ToString();
3233 // If the ssl_session_cache_shard_ is non-empty, we append it to the peer id.
3234 // This will cause session cache misses between sockets with different values
3235 // of ssl_session_cache_shard_ and this is used to partition the session cache
3236 // for incognito mode.
3237 if (!ssl_session_cache_shard_
.empty()) {
3238 peer_id
+= "/" + ssl_session_cache_shard_
;
3240 SECStatus rv
= SSL_SetSockPeerID(nss_fd_
, const_cast<char*>(peer_id
.c_str()));
3241 if (rv
!= SECSuccess
)
3242 LogFailedNSSFunction(net_log_
, "SSL_SetSockPeerID", peer_id
.c_str());
3247 void SSLClientSocketNSS::DoConnectCallback(int rv
) {
3249 DCHECK_NE(ERR_IO_PENDING
, rv
);
3250 DCHECK(!user_connect_callback_
.is_null());
3252 base::ResetAndReturn(&user_connect_callback_
).Run(rv
> OK
? OK
: rv
);
3256 void SSLClientSocketNSS::OnHandshakeIOComplete(int result
) {
3257 EnterFunction(result
);
3258 int rv
= DoHandshakeLoop(result
);
3259 if (rv
!= ERR_IO_PENDING
) {
3260 net_log_
.EndEventWithNetErrorCode(NetLog::TYPE_SSL_CONNECT
, rv
);
3261 DoConnectCallback(rv
);
3266 int SSLClientSocketNSS::DoHandshakeLoop(int last_io_result
) {
3267 EnterFunction(last_io_result
);
3268 int rv
= last_io_result
;
3270 // Default to STATE_NONE for next state.
3271 // (This is a quirk carried over from the windows
3272 // implementation. It makes reading the logs a bit harder.)
3273 // State handlers can and often do call GotoState just
3274 // to stay in the current state.
3275 State state
= next_handshake_state_
;
3276 GotoState(STATE_NONE
);
3278 case STATE_HANDSHAKE
:
3281 case STATE_HANDSHAKE_COMPLETE
:
3282 rv
= DoHandshakeComplete(rv
);
3284 case STATE_VERIFY_CERT
:
3286 rv
= DoVerifyCert(rv
);
3288 case STATE_VERIFY_CERT_COMPLETE
:
3289 rv
= DoVerifyCertComplete(rv
);
3293 rv
= ERR_UNEXPECTED
;
3294 LOG(DFATAL
) << "unexpected state " << state
;
3297 } while (rv
!= ERR_IO_PENDING
&& next_handshake_state_
!= STATE_NONE
);
3302 int SSLClientSocketNSS::DoHandshake() {
3304 int rv
= core_
->Connect(
3305 base::Bind(&SSLClientSocketNSS::OnHandshakeIOComplete
,
3306 base::Unretained(this)));
3307 GotoState(STATE_HANDSHAKE_COMPLETE
);
3313 int SSLClientSocketNSS::DoHandshakeComplete(int result
) {
3314 EnterFunction(result
);
3317 // SSL handshake is completed. Let's verify the certificate.
3318 GotoState(STATE_VERIFY_CERT
);
3321 set_channel_id_sent(core_
->state().channel_id_sent
);
3322 set_signed_cert_timestamps_received(
3323 !core_
->state().sct_list_from_tls_extension
.empty());
3324 set_stapled_ocsp_response_received(
3325 !core_
->state().stapled_ocsp_response
.empty());
3327 LeaveFunction(result
);
3331 int SSLClientSocketNSS::DoVerifyCert(int result
) {
3332 DCHECK(!core_
->state().server_cert_chain
.empty());
3333 DCHECK(core_
->state().server_cert_chain
[0]);
3335 GotoState(STATE_VERIFY_CERT_COMPLETE
);
3337 // If the certificate is expected to be bad we can use the expectation as
3339 base::StringPiece
der_cert(
3340 reinterpret_cast<char*>(
3341 core_
->state().server_cert_chain
[0]->derCert
.data
),
3342 core_
->state().server_cert_chain
[0]->derCert
.len
);
3343 CertStatus cert_status
;
3344 if (ssl_config_
.IsAllowedBadCert(der_cert
, &cert_status
)) {
3345 DCHECK(start_cert_verification_time_
.is_null());
3346 VLOG(1) << "Received an expected bad cert with status: " << cert_status
;
3347 server_cert_verify_result_
.Reset();
3348 server_cert_verify_result_
.cert_status
= cert_status
;
3349 server_cert_verify_result_
.verified_cert
= core_
->state().server_cert
;
3353 // We may have failed to create X509Certificate object if we are
3354 // running inside sandbox.
3355 if (!core_
->state().server_cert
.get()) {
3356 server_cert_verify_result_
.Reset();
3357 server_cert_verify_result_
.cert_status
= CERT_STATUS_INVALID
;
3358 return ERR_CERT_INVALID
;
3361 start_cert_verification_time_
= base::TimeTicks::Now();
3364 if (ssl_config_
.rev_checking_enabled
)
3365 flags
|= CertVerifier::VERIFY_REV_CHECKING_ENABLED
;
3366 if (ssl_config_
.verify_ev_cert
)
3367 flags
|= CertVerifier::VERIFY_EV_CERT
;
3368 if (ssl_config_
.cert_io_enabled
)
3369 flags
|= CertVerifier::VERIFY_CERT_IO_ENABLED
;
3370 if (ssl_config_
.rev_checking_required_local_anchors
)
3371 flags
|= CertVerifier::VERIFY_REV_CHECKING_REQUIRED_LOCAL_ANCHORS
;
3372 verifier_
.reset(new SingleRequestCertVerifier(cert_verifier_
));
3373 return verifier_
->Verify(
3374 core_
->state().server_cert
.get(),
3375 host_and_port_
.host(),
3377 SSLConfigService::GetCRLSet().get(),
3378 &server_cert_verify_result_
,
3379 base::Bind(&SSLClientSocketNSS::OnHandshakeIOComplete
,
3380 base::Unretained(this)),
3384 // Derived from AuthCertificateCallback() in
3385 // mozilla/source/security/manager/ssl/src/nsNSSCallbacks.cpp.
3386 int SSLClientSocketNSS::DoVerifyCertComplete(int result
) {
3389 if (!start_cert_verification_time_
.is_null()) {
3390 base::TimeDelta verify_time
=
3391 base::TimeTicks::Now() - start_cert_verification_time_
;
3393 UMA_HISTOGRAM_TIMES("Net.SSLCertVerificationTime", verify_time
);
3395 UMA_HISTOGRAM_TIMES("Net.SSLCertVerificationTimeError", verify_time
);
3398 // We used to remember the intermediate CA certs in the NSS database
3399 // persistently. However, NSS opens a connection to the SQLite database
3400 // during NSS initialization and doesn't close the connection until NSS
3401 // shuts down. If the file system where the database resides is gone,
3402 // the database connection goes bad. What's worse, the connection won't
3403 // recover when the file system comes back. Until this NSS or SQLite bug
3404 // is fixed, we need to avoid using the NSS database for non-essential
3405 // purposes. See https://bugzilla.mozilla.org/show_bug.cgi?id=508081 and
3406 // http://crbug.com/15630 for more info.
3408 // TODO(hclam): Skip logging if server cert was expected to be bad because
3409 // |server_cert_verify_result_| doesn't contain all the information about
3412 LogConnectionTypeMetrics();
3414 bool sni_available
= ssl_config_
.version_max
>= SSL_PROTOCOL_VERSION_TLS1
||
3415 ssl_config_
.version_fallback
;
3416 const CertStatus cert_status
= server_cert_verify_result_
.cert_status
;
3417 if (transport_security_state_
&&
3419 (IsCertificateError(result
) && IsCertStatusMinorError(cert_status
))) &&
3420 !transport_security_state_
->CheckPublicKeyPins(
3421 host_and_port_
.host(),
3423 server_cert_verify_result_
.is_issued_by_known_root
,
3424 server_cert_verify_result_
.public_key_hashes
,
3425 &pinning_failure_log_
)) {
3426 result
= ERR_SSL_PINNED_KEY_NOT_IN_CERT_CHAIN
;
3430 // Only check Certificate Transparency if there were no other errors with
3434 // Only cache the session if the certificate verified successfully.
3435 core_
->CacheSessionIfNecessary();
3438 completed_handshake_
= true;
3440 // Exit DoHandshakeLoop and return the result to the caller to Connect.
3441 DCHECK_EQ(STATE_NONE
, next_handshake_state_
);
3445 void SSLClientSocketNSS::VerifyCT() {
3446 if (!cert_transparency_verifier_
)
3449 // Note that this is a completely synchronous operation: The CT Log Verifier
3450 // gets all the data it needs for SCT verification and does not do any
3451 // external communication.
3452 int result
= cert_transparency_verifier_
->Verify(
3453 server_cert_verify_result_
.verified_cert
.get(),
3454 core_
->state().stapled_ocsp_response
,
3455 core_
->state().sct_list_from_tls_extension
,
3458 // TODO(ekasper): wipe stapled_ocsp_response and sct_list_from_tls_extension
3459 // from the state after verification is complete, to conserve memory.
3461 VLOG(1) << "CT Verification complete: result " << result
3462 << " Invalid scts: " << ct_verify_result_
.invalid_scts
.size()
3463 << " Verified scts: " << ct_verify_result_
.verified_scts
.size()
3464 << " scts from unknown logs: "
3465 << ct_verify_result_
.unknown_logs_scts
.size();
3468 void SSLClientSocketNSS::LogConnectionTypeMetrics() const {
3469 UpdateConnectionTypeHistograms(CONNECTION_SSL
);
3470 int ssl_version
= SSLConnectionStatusToVersion(
3471 core_
->state().ssl_connection_status
);
3472 switch (ssl_version
) {
3473 case SSL_CONNECTION_VERSION_SSL2
:
3474 UpdateConnectionTypeHistograms(CONNECTION_SSL_SSL2
);
3476 case SSL_CONNECTION_VERSION_SSL3
:
3477 UpdateConnectionTypeHistograms(CONNECTION_SSL_SSL3
);
3479 case SSL_CONNECTION_VERSION_TLS1
:
3480 UpdateConnectionTypeHistograms(CONNECTION_SSL_TLS1
);
3482 case SSL_CONNECTION_VERSION_TLS1_1
:
3483 UpdateConnectionTypeHistograms(CONNECTION_SSL_TLS1_1
);
3485 case SSL_CONNECTION_VERSION_TLS1_2
:
3486 UpdateConnectionTypeHistograms(CONNECTION_SSL_TLS1_2
);
3491 void SSLClientSocketNSS::EnsureThreadIdAssigned() const {
3492 base::AutoLock
auto_lock(lock_
);
3493 if (valid_thread_id_
!= base::kInvalidThreadId
)
3495 valid_thread_id_
= base::PlatformThread::CurrentId();
3498 bool SSLClientSocketNSS::CalledOnValidThread() const {
3499 EnsureThreadIdAssigned();
3500 base::AutoLock
auto_lock(lock_
);
3501 return valid_thread_id_
== base::PlatformThread::CurrentId();
3504 void SSLClientSocketNSS::AddSCTInfoToSSLInfo(SSLInfo
* ssl_info
) const {
3505 for (ct::SCTList::const_iterator iter
=
3506 ct_verify_result_
.verified_scts
.begin();
3507 iter
!= ct_verify_result_
.verified_scts
.end(); ++iter
) {
3508 ssl_info
->signed_certificate_timestamps
.push_back(
3509 SignedCertificateTimestampAndStatus(*iter
, ct::SCT_STATUS_OK
));
3511 for (ct::SCTList::const_iterator iter
=
3512 ct_verify_result_
.invalid_scts
.begin();
3513 iter
!= ct_verify_result_
.invalid_scts
.end(); ++iter
) {
3514 ssl_info
->signed_certificate_timestamps
.push_back(
3515 SignedCertificateTimestampAndStatus(*iter
, ct::SCT_STATUS_INVALID
));
3517 for (ct::SCTList::const_iterator iter
=
3518 ct_verify_result_
.unknown_logs_scts
.begin();
3519 iter
!= ct_verify_result_
.unknown_logs_scts
.end(); ++iter
) {
3520 ssl_info
->signed_certificate_timestamps
.push_back(
3521 SignedCertificateTimestampAndStatus(*iter
,
3522 ct::SCT_STATUS_LOG_UNKNOWN
));
3526 scoped_refptr
<X509Certificate
>
3527 SSLClientSocketNSS::GetUnverifiedServerCertificateChain() const {
3528 return core_
->state().server_cert
.get();
3531 ChannelIDService
* SSLClientSocketNSS::GetChannelIDService() const {
3532 return channel_id_service_
;