summaryrefslogtreecommitdiffstats
path: root/remoting/protocol/ssl_hmac_channel_authenticator.h
diff options
context:
space:
mode:
Diffstat (limited to 'remoting/protocol/ssl_hmac_channel_authenticator.h')
-rw-r--r--remoting/protocol/ssl_hmac_channel_authenticator.h110
1 files changed, 110 insertions, 0 deletions
diff --git a/remoting/protocol/ssl_hmac_channel_authenticator.h b/remoting/protocol/ssl_hmac_channel_authenticator.h
new file mode 100644
index 0000000..e86e25e
--- /dev/null
+++ b/remoting/protocol/ssl_hmac_channel_authenticator.h
@@ -0,0 +1,110 @@
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef REMOTING_PROTOCOL_SSL_HMAC_CHANNEL_AUTHENTICATOR_H_
+#define REMOTING_PROTOCOL_SSL_HMAC_CHANNEL_AUTHENTICATOR_H_
+
+#include <string>
+
+#include "base/callback.h"
+#include "base/memory/ref_counted.h"
+#include "base/memory/scoped_ptr.h"
+#include "base/threading/non_thread_safe.h"
+#include "remoting/protocol/channel_authenticator.h"
+
+namespace crypto {
+class RSAPrivateKey;
+} // namespace crypto
+
+namespace net {
+class CertVerifier;
+class DrainableIOBuffer;
+class GrowableIOBuffer;
+class SSLSocket;
+} // namespace net
+
+namespace remoting {
+namespace protocol {
+
+// SslHmacChannelAuthenticator implements ChannelAuthenticator that
+// secures channels using SSL and authenticates them with a shared
+// secret HMAC.
+class SslHmacChannelAuthenticator : public ChannelAuthenticator,
+ public base::NonThreadSafe {
+ public:
+ enum LegacyMode {
+ NONE,
+ SEND_ONLY,
+ RECEIVE_ONLY,
+ };
+
+ // CreateForClient() and CreateForHost() create an authenticator
+ // instances for client and host. |auth_key| specifies shared key
+ // known by both host and client. In case of V1Authenticator the
+ // |auth_key| is set to access code. For EKE-based authentication
+ // |auth_key| is the key established using EKE over the signaling
+ // channel.
+ static SslHmacChannelAuthenticator* CreateForClient(
+ const std::string& remote_cert,
+ const std::string& auth_key);
+
+ static SslHmacChannelAuthenticator* CreateForHost(
+ const std::string& local_cert,
+ crypto::RSAPrivateKey* local_private_key,
+ const std::string& auth_key);
+
+ // TODO(sergeyu): This method is used only for the legacy
+ // V1Authenticator. Remove it when V1Authenticator is removed.
+ void SetLegacyOneWayMode(LegacyMode legacy_mode);
+
+ virtual ~SslHmacChannelAuthenticator();
+
+ // ChannelAuthenticator interface.
+ virtual void SecureAndAuthenticate(
+ net::StreamSocket* socket, const DoneCallback& done_callback) OVERRIDE;
+
+ private:
+ SslHmacChannelAuthenticator(const std::string& auth_key);
+
+ bool is_ssl_server();
+
+ void OnConnected(int result);
+
+ void WriteAuthenticationBytes(bool* callback_called);
+ void OnAuthBytesWritten(int result);
+ bool HandleAuthBytesWritten(int result, bool* callback_called);
+
+ void ReadAuthenticationBytes();
+ void OnAuthBytesRead(int result);
+ bool HandleAuthBytesRead(int result);
+ bool VerifyAuthBytes(const std::string& received_auth_bytes);
+
+ void CheckDone(bool* callback_called);
+
+ // The mutual secret used for authentication.
+ std::string auth_key_;
+
+ // Used in the SERVER mode only.
+ std::string local_cert_;
+ crypto::RSAPrivateKey* local_private_key_;
+
+ // Used in the CLIENT mode only.
+ std::string remote_cert_;
+ scoped_ptr<net::CertVerifier> cert_verifier_;
+
+ LegacyMode legacy_mode_;
+
+ scoped_ptr<net::SSLSocket> socket_;
+ DoneCallback done_callback_;
+
+ scoped_refptr<net::DrainableIOBuffer> auth_write_buf_;
+ scoped_refptr<net::GrowableIOBuffer> auth_read_buf_;
+
+ DISALLOW_COPY_AND_ASSIGN(SslHmacChannelAuthenticator);
+};
+
+} // namespace protocol
+} // namespace remoting
+
+#endif // REMOTING_PROTOCOL_SSL_HMAC_CHANNEL_AUTHENTICATOR_H_