Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(224)

Side by Side Diff: net/socket/ssl_client_socket_openssl.cc

Issue 353713005: Implements new, more robust design for communicating between SSLConnectJobs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added a new state to SSLClientSocket Connect, fixed various comment issues. Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // OpenSSL binding for SSLClientSocket. The class layout and general principle 5 // OpenSSL binding for SSLClientSocket. The class layout and general principle
6 // of operation is derived from SSLClientSocketNSS. 6 // of operation is derived from SSLClientSocketNSS.
7 7
8 #include "net/socket/ssl_client_socket_openssl.h" 8 #include "net/socket/ssl_client_socket_openssl.h"
9 9
10 #include <openssl/err.h> 10 #include <openssl/err.h>
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 return SSL_CONNECTION_VERSION_TLS1; 80 return SSL_CONNECTION_VERSION_TLS1;
81 case 0x0302: 81 case 0x0302:
82 return SSL_CONNECTION_VERSION_TLS1_1; 82 return SSL_CONNECTION_VERSION_TLS1_1;
83 case 0x0303: 83 case 0x0303:
84 return SSL_CONNECTION_VERSION_TLS1_2; 84 return SSL_CONNECTION_VERSION_TLS1_2;
85 default: 85 default:
86 return SSL_CONNECTION_VERSION_UNKNOWN; 86 return SSL_CONNECTION_VERSION_UNKNOWN;
87 } 87 }
88 } 88 }
89 89
90 // Compute a unique key string for the SSL session cache. |socket| is an
91 // input socket object. Return a string.
92 std::string GetSocketSessionCacheKey(const SSLClientSocketOpenSSL& socket) {
93 std::string result = socket.host_and_port().ToString();
94 result.append("/");
95 result.append(socket.ssl_session_cache_shard());
96 return result;
97 }
98
99 } // namespace 90 } // namespace
100 91
101 class SSLClientSocketOpenSSL::SSLContext { 92 class SSLClientSocketOpenSSL::SSLContext {
102 public: 93 public:
103 static SSLContext* GetInstance() { return Singleton<SSLContext>::get(); } 94 static SSLContext* GetInstance() { return Singleton<SSLContext>::get(); }
104 SSL_CTX* ssl_ctx() { return ssl_ctx_.get(); } 95 SSL_CTX* ssl_ctx() { return ssl_ctx_.get(); }
105 SSLSessionCacheOpenSSL* session_cache() { return &session_cache_; } 96 SSLSessionCacheOpenSSL* session_cache() { return &session_cache_; }
106 97
107 SSLClientSocketOpenSSL* GetClientSocketFromSSL(const SSL* ssl) { 98 SSLClientSocketOpenSSL* GetClientSocketFromSSL(const SSL* ssl) {
108 DCHECK(ssl); 99 DCHECK(ssl);
(...skipping 23 matching lines...) Expand all
132 // TODO(kristianm): Only select this if ssl_config_.next_proto is not empty. 123 // TODO(kristianm): Only select this if ssl_config_.next_proto is not empty.
133 // It would be better if the callback were not a global setting, 124 // It would be better if the callback were not a global setting,
134 // but that is an OpenSSL issue. 125 // but that is an OpenSSL issue.
135 SSL_CTX_set_next_proto_select_cb(ssl_ctx_.get(), SelectNextProtoCallback, 126 SSL_CTX_set_next_proto_select_cb(ssl_ctx_.get(), SelectNextProtoCallback,
136 NULL); 127 NULL);
137 } 128 }
138 129
139 static std::string GetSessionCacheKey(const SSL* ssl) { 130 static std::string GetSessionCacheKey(const SSL* ssl) {
140 SSLClientSocketOpenSSL* socket = GetInstance()->GetClientSocketFromSSL(ssl); 131 SSLClientSocketOpenSSL* socket = GetInstance()->GetClientSocketFromSSL(ssl);
141 DCHECK(socket); 132 DCHECK(socket);
142 return GetSocketSessionCacheKey(*socket); 133 return socket->GetSessionCacheKey();
143 } 134 }
144 135
145 static SSLSessionCacheOpenSSL::Config kDefaultSessionCacheConfig; 136 static SSLSessionCacheOpenSSL::Config kDefaultSessionCacheConfig;
146 137
147 static int ClientCertCallback(SSL* ssl, X509** x509, EVP_PKEY** pkey) { 138 static int ClientCertCallback(SSL* ssl, X509** x509, EVP_PKEY** pkey) {
148 SSLClientSocketOpenSSL* socket = GetInstance()->GetClientSocketFromSSL(ssl); 139 SSLClientSocketOpenSSL* socket = GetInstance()->GetClientSocketFromSSL(ssl);
149 CHECK(socket); 140 CHECK(socket);
150 return socket->ClientCertRequestCallback(ssl, x509, pkey); 141 return socket->ClientCertRequestCallback(ssl, x509, pkey);
151 } 142 }
152 143
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
353 transport_bio_(NULL), 344 transport_bio_(NULL),
354 transport_(transport_socket.Pass()), 345 transport_(transport_socket.Pass()),
355 host_and_port_(host_and_port), 346 host_and_port_(host_and_port),
356 ssl_config_(ssl_config), 347 ssl_config_(ssl_config),
357 ssl_session_cache_shard_(context.ssl_session_cache_shard), 348 ssl_session_cache_shard_(context.ssl_session_cache_shard),
358 trying_cached_session_(false), 349 trying_cached_session_(false),
359 next_handshake_state_(STATE_NONE), 350 next_handshake_state_(STATE_NONE),
360 npn_status_(kNextProtoUnsupported), 351 npn_status_(kNextProtoUnsupported),
361 channel_id_request_return_value_(ERR_UNEXPECTED), 352 channel_id_request_return_value_(ERR_UNEXPECTED),
362 channel_id_xtn_negotiated_(false), 353 channel_id_xtn_negotiated_(false),
363 net_log_(transport_->socket()->NetLog()) {} 354 net_log_(transport_->socket()->NetLog()) {
355 }
364 356
365 SSLClientSocketOpenSSL::~SSLClientSocketOpenSSL() { 357 SSLClientSocketOpenSSL::~SSLClientSocketOpenSSL() {
366 Disconnect(); 358 Disconnect();
367 } 359 }
368 360
361 bool SSLClientSocketOpenSSL::InSessionCache() const {
362 SSLContext* context = SSLContext::GetInstance();
363 std::string cache_key = GetSessionCacheKey();
364 return context->session_cache()->SSLSessionIsInCache(cache_key);
365 }
366
367 void SSLClientSocketOpenSSL::SetHandshakeCompletionCallback(
368 const base::Closure& callback) {
369 handshake_completion_callback_ = callback;
370 SSLContext* context = SSLContext::GetInstance();
371 context->session_cache()->SetSessionAddedCallback(
372 ssl_,
373 base::Bind(&SSLClientSocketOpenSSL::OnHandshakeCompletion,
374 base::Unretained(this)));
375 }
376
369 void SSLClientSocketOpenSSL::GetSSLCertRequestInfo( 377 void SSLClientSocketOpenSSL::GetSSLCertRequestInfo(
370 SSLCertRequestInfo* cert_request_info) { 378 SSLCertRequestInfo* cert_request_info) {
371 cert_request_info->host_and_port = host_and_port_; 379 cert_request_info->host_and_port = host_and_port_;
372 cert_request_info->cert_authorities = cert_authorities_; 380 cert_request_info->cert_authorities = cert_authorities_;
373 cert_request_info->cert_key_types = cert_key_types_; 381 cert_request_info->cert_key_types = cert_key_types_;
374 } 382 }
375 383
376 SSLClientSocket::NextProtoStatus SSLClientSocketOpenSSL::GetNextProto( 384 SSLClientSocket::NextProtoStatus SSLClientSocketOpenSSL::GetNextProto(
377 std::string* proto, std::string* server_protos) { 385 std::string* proto, std::string* server_protos) {
378 *proto = npn_proto_; 386 *proto = npn_proto_;
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
423 431
424 // Set SSL to client mode. Handshake happens in the loop below. 432 // Set SSL to client mode. Handshake happens in the loop below.
425 SSL_set_connect_state(ssl_); 433 SSL_set_connect_state(ssl_);
426 434
427 GotoState(STATE_HANDSHAKE); 435 GotoState(STATE_HANDSHAKE);
428 rv = DoHandshakeLoop(OK); 436 rv = DoHandshakeLoop(OK);
429 if (rv == ERR_IO_PENDING) { 437 if (rv == ERR_IO_PENDING) {
430 user_connect_callback_ = callback; 438 user_connect_callback_ = callback;
431 } else { 439 } else {
432 net_log_.EndEventWithNetErrorCode(NetLog::TYPE_SSL_CONNECT, rv); 440 net_log_.EndEventWithNetErrorCode(NetLog::TYPE_SSL_CONNECT, rv);
441 if (rv < OK)
442 OnHandshakeCompletion();
433 } 443 }
434 444
435 return rv > OK ? OK : rv; 445 return rv > OK ? OK : rv;
436 } 446 }
437 447
438 void SSLClientSocketOpenSSL::Disconnect() { 448 void SSLClientSocketOpenSSL::Disconnect() {
449 OnHandshakeCompletion();
Ryan Sleevi 2014/07/25 01:36:36 This surprises me, since we traditionally don't ca
mshelley 2014/07/26 00:58:27 The idea here was that we want to ensure that if a
Ryan Sleevi 2014/07/26 02:22:32 Right, I got that part.
439 if (ssl_) { 450 if (ssl_) {
451 SSLContext* context = SSLContext::GetInstance();
452 context->session_cache()->RemoveSessionAddedCallback(ssl_);
440 // Calling SSL_shutdown prevents the session from being marked as 453 // Calling SSL_shutdown prevents the session from being marked as
441 // unresumable. 454 // unresumable.
442 SSL_shutdown(ssl_); 455 SSL_shutdown(ssl_);
443 SSL_free(ssl_); 456 SSL_free(ssl_);
444 ssl_ = NULL; 457 ssl_ = NULL;
445 } 458 }
446 if (transport_bio_) { 459 if (transport_bio_) {
447 BIO_free_all(transport_bio_); 460 BIO_free_all(transport_bio_);
448 transport_bio_ = NULL; 461 transport_bio_ = NULL;
449 } 462 }
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
599 int buf_len, 612 int buf_len,
600 const CompletionCallback& callback) { 613 const CompletionCallback& callback) {
601 user_read_buf_ = buf; 614 user_read_buf_ = buf;
602 user_read_buf_len_ = buf_len; 615 user_read_buf_len_ = buf_len;
603 616
604 int rv = DoReadLoop(OK); 617 int rv = DoReadLoop(OK);
605 618
606 if (rv == ERR_IO_PENDING) { 619 if (rv == ERR_IO_PENDING) {
607 user_read_callback_ = callback; 620 user_read_callback_ = callback;
608 } else { 621 } else {
609 if (rv > 0) 622 if (rv > 0) {
610 was_ever_used_ = true; 623 was_ever_used_ = true;
624 } else if (rv < 0) {
625 // Failure of a read attempt may indicate a failed false start
626 // connection.
627 OnHandshakeCompletion();
628 }
Ryan Sleevi 2014/07/25 01:36:36 I would actually move this to line 632 if (rv !=
mshelley 2014/07/26 00:58:27 Done.
611 user_read_buf_ = NULL; 629 user_read_buf_ = NULL;
612 user_read_buf_len_ = 0; 630 user_read_buf_len_ = 0;
613 } 631 }
614 632
615 return rv; 633 return rv;
616 } 634 }
617 635
618 int SSLClientSocketOpenSSL::Write(IOBuffer* buf, 636 int SSLClientSocketOpenSSL::Write(IOBuffer* buf,
619 int buf_len, 637 int buf_len,
620 const CompletionCallback& callback) { 638 const CompletionCallback& callback) {
621 user_write_buf_ = buf; 639 user_write_buf_ = buf;
622 user_write_buf_len_ = buf_len; 640 user_write_buf_len_ = buf_len;
623 641
624 int rv = DoWriteLoop(OK); 642 int rv = DoWriteLoop(OK);
625 643
626 if (rv == ERR_IO_PENDING) { 644 if (rv == ERR_IO_PENDING) {
627 user_write_callback_ = callback; 645 user_write_callback_ = callback;
628 } else { 646 } else {
629 if (rv > 0) 647 if (rv > 0) {
630 was_ever_used_ = true; 648 was_ever_used_ = true;
649 } else {
650 // Failure of a write attempt may indicate a failed false start
651 // connection.
652 OnHandshakeCompletion();
653 }
631 user_write_buf_ = NULL; 654 user_write_buf_ = NULL;
632 user_write_buf_len_ = 0; 655 user_write_buf_len_ = 0;
633 } 656 }
634 657
635 return rv; 658 return rv;
636 } 659 }
637 660
638 int SSLClientSocketOpenSSL::SetReceiveBufferSize(int32 size) { 661 int SSLClientSocketOpenSSL::SetReceiveBufferSize(int32 size) {
639 return transport_->socket()->SetReceiveBufferSize(size); 662 return transport_->socket()->SetReceiveBufferSize(size);
640 } 663 }
(...skipping 10 matching lines...) Expand all
651 crypto::OpenSSLErrStackTracer err_tracer(FROM_HERE); 674 crypto::OpenSSLErrStackTracer err_tracer(FROM_HERE);
652 675
653 ssl_ = SSL_new(context->ssl_ctx()); 676 ssl_ = SSL_new(context->ssl_ctx());
654 if (!ssl_ || !context->SetClientSocketForSSL(ssl_, this)) 677 if (!ssl_ || !context->SetClientSocketForSSL(ssl_, this))
655 return ERR_UNEXPECTED; 678 return ERR_UNEXPECTED;
656 679
657 if (!SSL_set_tlsext_host_name(ssl_, host_and_port_.host().c_str())) 680 if (!SSL_set_tlsext_host_name(ssl_, host_and_port_.host().c_str()))
658 return ERR_UNEXPECTED; 681 return ERR_UNEXPECTED;
659 682
660 trying_cached_session_ = context->session_cache()->SetSSLSessionWithKey( 683 trying_cached_session_ = context->session_cache()->SetSSLSessionWithKey(
661 ssl_, GetSocketSessionCacheKey(*this)); 684 ssl_, GetSessionCacheKey());
662 685
663 BIO* ssl_bio = NULL; 686 BIO* ssl_bio = NULL;
664 // 0 => use default buffer sizes. 687 // 0 => use default buffer sizes.
665 if (!BIO_new_bio_pair(&ssl_bio, 0, &transport_bio_, 0)) 688 if (!BIO_new_bio_pair(&ssl_bio, 0, &transport_bio_, 0))
666 return ERR_UNEXPECTED; 689 return ERR_UNEXPECTED;
667 DCHECK(ssl_bio); 690 DCHECK(ssl_bio);
668 DCHECK(transport_bio_); 691 DCHECK(transport_bio_);
669 692
670 SSL_set_bio(ssl_, ssl_bio, ssl_bio); 693 SSL_set_bio(ssl_, ssl_bio, ssl_bio);
671 694
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
755 return OK; 778 return OK;
756 } 779 }
757 780
758 void SSLClientSocketOpenSSL::DoReadCallback(int rv) { 781 void SSLClientSocketOpenSSL::DoReadCallback(int rv) {
759 // Since Run may result in Read being called, clear |user_read_callback_| 782 // Since Run may result in Read being called, clear |user_read_callback_|
760 // up front. 783 // up front.
761 if (rv > 0) 784 if (rv > 0)
762 was_ever_used_ = true; 785 was_ever_used_ = true;
763 user_read_buf_ = NULL; 786 user_read_buf_ = NULL;
764 user_read_buf_len_ = 0; 787 user_read_buf_len_ = 0;
788 if (rv < 0)
789 OnHandshakeCompletion();
765 base::ResetAndReturn(&user_read_callback_).Run(rv); 790 base::ResetAndReturn(&user_read_callback_).Run(rv);
766 } 791 }
767 792
768 void SSLClientSocketOpenSSL::DoWriteCallback(int rv) { 793 void SSLClientSocketOpenSSL::DoWriteCallback(int rv) {
769 // Since Run may result in Write being called, clear |user_write_callback_| 794 // Since Run may result in Write being called, clear |user_write_callback_|
770 // up front. 795 // up front.
771 if (rv > 0) 796 if (rv > 0)
772 was_ever_used_ = true; 797 was_ever_used_ = true;
773 user_write_buf_ = NULL; 798 user_write_buf_ = NULL;
774 user_write_buf_len_ = 0; 799 user_write_buf_len_ = 0;
800 if (rv < 0)
801 OnHandshakeCompletion();
775 base::ResetAndReturn(&user_write_callback_).Run(rv); 802 base::ResetAndReturn(&user_write_callback_).Run(rv);
776 } 803 }
777 804
805 std::string SSLClientSocketOpenSSL::GetSessionCacheKey() const {
806 return CreateSessionCacheKey(host_and_port_, ssl_session_cache_shard_);
807 }
808
809 void SSLClientSocketOpenSSL::OnHandshakeCompletion() {
810 if (!handshake_completion_callback_.is_null())
811 base::ResetAndReturn(&handshake_completion_callback_).Run();
812 }
813
778 bool SSLClientSocketOpenSSL::DoTransportIO() { 814 bool SSLClientSocketOpenSSL::DoTransportIO() {
779 bool network_moved = false; 815 bool network_moved = false;
780 int rv; 816 int rv;
781 // Read and write as much data as possible. The loop is necessary because 817 // Read and write as much data as possible. The loop is necessary because
782 // Write() may return synchronously. 818 // Write() may return synchronously.
783 do { 819 do {
784 rv = BufferSend(); 820 rv = BufferSend();
785 if (rv != ERR_IO_PENDING && rv != 0) 821 if (rv != ERR_IO_PENDING && rv != 0)
786 network_moved = true; 822 network_moved = true;
787 } while (rv > 0); 823 } while (rv > 0);
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
900 DCHECK_EQ(STATE_NONE, next_handshake_state_); 936 DCHECK_EQ(STATE_NONE, next_handshake_state_);
901 return result; 937 return result;
902 } 938 }
903 939
904 void SSLClientSocketOpenSSL::DoConnectCallback(int rv) { 940 void SSLClientSocketOpenSSL::DoConnectCallback(int rv) {
905 if (!user_connect_callback_.is_null()) { 941 if (!user_connect_callback_.is_null()) {
906 CompletionCallback c = user_connect_callback_; 942 CompletionCallback c = user_connect_callback_;
907 user_connect_callback_.Reset(); 943 user_connect_callback_.Reset();
908 c.Run(rv > OK ? OK : rv); 944 c.Run(rv > OK ? OK : rv);
909 } 945 }
946 if (rv < OK)
947 OnHandshakeCompletion();
Ryan Sleevi 2014/07/25 01:36:36 This surprises me, as it's inverted from your orde
mshelley 2014/07/26 00:58:27 Ah yes, this is wrong; it should be called before
910 } 948 }
911 949
912 X509Certificate* SSLClientSocketOpenSSL::UpdateServerCert() { 950 X509Certificate* SSLClientSocketOpenSSL::UpdateServerCert() {
913 server_cert_chain_->Reset(SSL_get_peer_cert_chain(ssl_)); 951 server_cert_chain_->Reset(SSL_get_peer_cert_chain(ssl_));
914 server_cert_ = server_cert_chain_->AsOSChain(); 952 server_cert_ = server_cert_chain_->AsOSChain();
915 953
916 if (!server_cert_chain_->IsValid()) 954 if (!server_cert_chain_->IsValid())
917 DVLOG(1) << "UpdateServerCert received invalid certificate chain from peer"; 955 DVLOG(1) << "UpdateServerCert received invalid certificate chain from peer";
918
919 return server_cert_.get(); 956 return server_cert_.get();
920 } 957 }
921 958
922 void SSLClientSocketOpenSSL::OnHandshakeIOComplete(int result) { 959 void SSLClientSocketOpenSSL::OnHandshakeIOComplete(int result) {
923 int rv = DoHandshakeLoop(result); 960 int rv = DoHandshakeLoop(result);
924 if (rv != ERR_IO_PENDING) { 961 if (rv != ERR_IO_PENDING) {
925 net_log_.EndEventWithNetErrorCode(NetLog::TYPE_SSL_CONNECT, rv); 962 net_log_.EndEventWithNetErrorCode(NetLog::TYPE_SSL_CONNECT, rv);
926 DoConnectCallback(rv); 963 DoConnectCallback(rv);
927 } 964 }
928 } 965 }
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
1008 } 1045 }
1009 1046
1010 bool network_moved = DoTransportIO(); 1047 bool network_moved = DoTransportIO();
1011 if (network_moved && next_handshake_state_ == STATE_HANDSHAKE) { 1048 if (network_moved && next_handshake_state_ == STATE_HANDSHAKE) {
1012 // In general we exit the loop if rv is ERR_IO_PENDING. In this 1049 // In general we exit the loop if rv is ERR_IO_PENDING. In this
1013 // special case we keep looping even if rv is ERR_IO_PENDING because 1050 // special case we keep looping even if rv is ERR_IO_PENDING because
1014 // the transport IO may allow DoHandshake to make progress. 1051 // the transport IO may allow DoHandshake to make progress.
1015 rv = OK; // This causes us to stay in the loop. 1052 rv = OK; // This causes us to stay in the loop.
1016 } 1053 }
1017 } while (rv != ERR_IO_PENDING && next_handshake_state_ != STATE_NONE); 1054 } while (rv != ERR_IO_PENDING && next_handshake_state_ != STATE_NONE);
1055
1018 return rv; 1056 return rv;
1019 } 1057 }
1020 1058
1021 int SSLClientSocketOpenSSL::DoReadLoop(int result) { 1059 int SSLClientSocketOpenSSL::DoReadLoop(int result) {
1022 if (result < 0) 1060 if (result < 0)
1023 return result; 1061 return result;
1024 1062
1025 bool network_moved; 1063 bool network_moved;
1026 int rv; 1064 int rv;
1027 do { 1065 do {
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
1109 if (rv >= 0) { 1147 if (rv >= 0) {
1110 net_log_.AddByteTransferEvent(NetLog::TYPE_SSL_SOCKET_BYTES_RECEIVED, rv, 1148 net_log_.AddByteTransferEvent(NetLog::TYPE_SSL_SOCKET_BYTES_RECEIVED, rv,
1111 user_read_buf_->data()); 1149 user_read_buf_->data());
1112 } 1150 }
1113 return rv; 1151 return rv;
1114 } 1152 }
1115 1153
1116 int SSLClientSocketOpenSSL::DoPayloadWrite() { 1154 int SSLClientSocketOpenSSL::DoPayloadWrite() {
1117 crypto::OpenSSLErrStackTracer err_tracer(FROM_HERE); 1155 crypto::OpenSSLErrStackTracer err_tracer(FROM_HERE);
1118 int rv = SSL_write(ssl_, user_write_buf_->data(), user_write_buf_len_); 1156 int rv = SSL_write(ssl_, user_write_buf_->data(), user_write_buf_len_);
1119
1120 if (rv >= 0) { 1157 if (rv >= 0) {
1121 net_log_.AddByteTransferEvent(NetLog::TYPE_SSL_SOCKET_BYTES_SENT, rv, 1158 net_log_.AddByteTransferEvent(NetLog::TYPE_SSL_SOCKET_BYTES_SENT, rv,
1122 user_write_buf_->data()); 1159 user_write_buf_->data());
1123 return rv; 1160 return rv;
1124 } 1161 }
1125 1162
1126 int err = SSL_get_error(ssl_, rv); 1163 int err = SSL_get_error(ssl_, rv);
1127 return MapOpenSSLError(err, err_tracer); 1164 return MapOpenSSLError(err, err_tracer);
1128 } 1165 }
1129 1166
(...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after
1430 DVLOG(2) << "next protocol: '" << npn_proto_ << "' status: " << npn_status_; 1467 DVLOG(2) << "next protocol: '" << npn_proto_ << "' status: " << npn_status_;
1431 return SSL_TLSEXT_ERR_OK; 1468 return SSL_TLSEXT_ERR_OK;
1432 } 1469 }
1433 1470
1434 scoped_refptr<X509Certificate> 1471 scoped_refptr<X509Certificate>
1435 SSLClientSocketOpenSSL::GetUnverifiedServerCertificateChain() const { 1472 SSLClientSocketOpenSSL::GetUnverifiedServerCertificateChain() const {
1436 return server_cert_; 1473 return server_cert_;
1437 } 1474 }
1438 1475
1439 } // namespace net 1476 } // namespace net
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698