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

Side by Side Diff: net/socket/ssl_client_socket_nss.h

Issue 2605007: Fix a regression on Windows introduced by r48650.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | net/socket/ssl_client_socket_nss.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 #ifndef NET_SOCKET_SSL_CLIENT_SOCKET_NSS_H_ 5 #ifndef NET_SOCKET_SSL_CLIENT_SOCKET_NSS_H_
6 #define NET_SOCKET_SSL_CLIENT_SOCKET_NSS_H_ 6 #define NET_SOCKET_SSL_CLIENT_SOCKET_NSS_H_
7 7
8 #include <certt.h> 8 #include <certt.h>
9 #include <keyt.h> 9 #include <keyt.h>
10 #include <nspr.h> 10 #include <nspr.h>
11 #include <nss.h> 11 #include <nss.h>
12 12
13 #include <string> 13 #include <string>
14 #include <vector> 14 #include <vector>
15 15
16 #include "base/scoped_ptr.h" 16 #include "base/scoped_ptr.h"
17 #include "net/base/cert_verify_result.h" 17 #include "net/base/cert_verify_result.h"
18 #include "net/base/completion_callback.h" 18 #include "net/base/completion_callback.h"
19 #include "net/base/net_log.h" 19 #include "net/base/net_log.h"
20 #include "net/base/nss_memio.h" 20 #include "net/base/nss_memio.h"
21 #include "net/base/ssl_config_service.h" 21 #include "net/base/ssl_config_service.h"
22 #include "net/base/x509_certificate.h"
22 #include "net/socket/ssl_client_socket.h" 23 #include "net/socket/ssl_client_socket.h"
23 24
24 namespace net { 25 namespace net {
25 26
26 class BoundNetLog; 27 class BoundNetLog;
27 class CertVerifier; 28 class CertVerifier;
28 class X509Certificate;
29 29
30 // An SSL client socket implemented with Mozilla NSS. 30 // An SSL client socket implemented with Mozilla NSS.
31 class SSLClientSocketNSS : public SSLClientSocket { 31 class SSLClientSocketNSS : public SSLClientSocket {
32 public: 32 public:
33 // Takes ownership of the transport_socket, which may already be connected. 33 // Takes ownership of the transport_socket, which may already be connected.
34 // The given hostname will be compared with the name(s) in the server's 34 // The given hostname will be compared with the name(s) in the server's
35 // certificate during the SSL handshake. ssl_config specifies the SSL 35 // certificate during the SSL handshake. ssl_config specifies the SSL
36 // settings. 36 // settings.
37 SSLClientSocketNSS(ClientSocket* transport_socket, 37 SSLClientSocketNSS(ClientSocket* transport_socket,
38 const std::string& hostname, 38 const std::string& hostname,
(...skipping 19 matching lines...) Expand all
58 virtual bool SetReceiveBufferSize(int32 size); 58 virtual bool SetReceiveBufferSize(int32 size);
59 virtual bool SetSendBufferSize(int32 size); 59 virtual bool SetSendBufferSize(int32 size);
60 60
61 void set_handshake_callback_called() { handshake_callback_called_ = true; } 61 void set_handshake_callback_called() { handshake_callback_called_ = true; }
62 62
63 private: 63 private:
64 // Initializes NSS SSL options. Returns a net error code. 64 // Initializes NSS SSL options. Returns a net error code.
65 int InitializeSSLOptions(); 65 int InitializeSSLOptions();
66 66
67 void InvalidateSessionIfBadCertificate(); 67 void InvalidateSessionIfBadCertificate();
68 #if defined(OS_MACOSX) || defined(OS_WIN)
69 // Creates an OS certificate from a DER-encoded certificate.
70 static X509Certificate::OSCertHandle CreateOSCert(const SECItem& der_cert);
71 #endif
68 X509Certificate* UpdateServerCert(); 72 X509Certificate* UpdateServerCert();
69 void CheckSecureRenegotiation() const; 73 void CheckSecureRenegotiation() const;
70 void DoReadCallback(int result); 74 void DoReadCallback(int result);
71 void DoWriteCallback(int result); 75 void DoWriteCallback(int result);
72 void DoConnectCallback(int result); 76 void DoConnectCallback(int result);
73 void OnHandshakeIOComplete(int result); 77 void OnHandshakeIOComplete(int result);
74 void OnSendComplete(int result); 78 void OnSendComplete(int result);
75 void OnRecvComplete(int result); 79 void OnRecvComplete(int result);
76 80
77 int DoHandshakeLoop(int last_io_result); 81 int DoHandshakeLoop(int last_io_result);
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 162
159 // The NSS SSL state machine 163 // The NSS SSL state machine
160 PRFileDesc* nss_fd_; 164 PRFileDesc* nss_fd_;
161 165
162 // Buffers for the network end of the SSL state machine 166 // Buffers for the network end of the SSL state machine
163 memio_Private* nss_bufs_; 167 memio_Private* nss_bufs_;
164 168
165 BoundNetLog net_log_; 169 BoundNetLog net_log_;
166 170
167 #if defined(OS_WIN) 171 #if defined(OS_WIN)
168 // A CryptoAPI in-memory certificate store. We use it for one purpose: 172 // A CryptoAPI in-memory certificate store. We use it for two purposes:
169 // 1. Copy client certificates from the "MY" system certificate store into 173 // 1. Import server certificates into this store so that we can verify and
174 // display the certificates using CryptoAPI.
175 // 2. Copy client certificates from the "MY" system certificate store into
170 // this store so that we can close the system store when we finish 176 // this store so that we can close the system store when we finish
171 // searching for client certificates. 177 // searching for client certificates.
172 static HCERTSTORE cert_store_; 178 static HCERTSTORE cert_store_;
173 #endif 179 #endif
174 }; 180 };
175 181
176 } // namespace net 182 } // namespace net
177 183
178 #endif // NET_SOCKET_SSL_CLIENT_SOCKET_NSS_H_ 184 #endif // NET_SOCKET_SSL_CLIENT_SOCKET_NSS_H_
OLDNEW
« no previous file with comments | « no previous file | net/socket/ssl_client_socket_nss.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698