1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317
|
// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "remoting/host/security_key/security_key_auth_handler.h"
#include <unistd.h>
#include <cstdint>
#include <map>
#include <memory>
#include <string>
#include <utility>
#include "base/files/file_path.h"
#include "base/files/file_util.h"
#include "base/functional/bind.h"
#include "base/functional/callback.h"
#include "base/lazy_instance.h"
#include "base/location.h"
#include "base/logging.h"
#include "base/memory/ptr_util.h"
#include "base/memory/ref_counted.h"
#include "base/memory/weak_ptr.h"
#include "base/task/single_thread_task_runner.h"
#include "base/threading/thread_checker.h"
#include "base/time/time.h"
#include "net/base/net_errors.h"
#include "net/socket/stream_socket.h"
#include "net/socket/unix_domain_server_socket_posix.h"
#include "remoting/base/logging.h"
#include "remoting/host/security_key/security_key_socket.h"
namespace {
const int64_t kDefaultRequestTimeoutSeconds = 60;
// The name of the socket to listen for security key requests on.
base::LazyInstance<base::FilePath>::Leaky g_security_key_socket_name =
LAZY_INSTANCE_INITIALIZER;
// Socket authentication function that only allows connections from callers with
// the current uid.
bool MatchUid(const net::UnixDomainServerSocket::Credentials& credentials) {
bool allowed = credentials.user_id == getuid();
if (!allowed) {
HOST_LOG << "Refused socket connection from uid " << credentials.user_id;
}
return allowed;
}
// Returns the command code (the first byte of the data) if it exists, or -1 if
// the data is empty.
unsigned int GetCommandCode(const std::string& data) {
return data.empty() ? -1 : static_cast<unsigned int>(data[0]);
}
} // namespace
namespace remoting {
class SecurityKeyAuthHandlerPosix : public SecurityKeyAuthHandler {
public:
explicit SecurityKeyAuthHandlerPosix(
scoped_refptr<base::SingleThreadTaskRunner> file_task_runner);
SecurityKeyAuthHandlerPosix(const SecurityKeyAuthHandlerPosix&) = delete;
SecurityKeyAuthHandlerPosix& operator=(const SecurityKeyAuthHandlerPosix&) =
delete;
~SecurityKeyAuthHandlerPosix() override;
private:
using ActiveSockets = std::map<int, std::unique_ptr<SecurityKeySocket>>;
// SecurityKeyAuthHandler interface.
void CreateSecurityKeyConnection() override;
bool IsValidConnectionId(int security_key_connection_id) const override;
void SendClientResponse(int security_key_connection_id,
const std::string& response) override;
void SendErrorAndCloseConnection(int security_key_connection_id) override;
void SetSendMessageCallback(const SendMessageCallback& callback) override;
size_t GetActiveConnectionCountForTest() const override;
void SetRequestTimeoutForTest(base::TimeDelta timeout) override;
// Sets up the socket used for accepting new connections.
void CreateSocket(bool success);
// Starts listening for connection.
void DoAccept();
// Called when a connection is accepted.
void OnAccepted(int result);
// Called when a SecurityKeySocket has done reading.
void OnReadComplete(int security_key_connection_id);
// Gets an active socket iterator for |security_key_connection_id|.
ActiveSockets::const_iterator GetSocketForConnectionId(
int security_key_connection_id) const;
// Send an error and closes an active socket.
void SendErrorAndCloseActiveSocket(const ActiveSockets::const_iterator& iter);
// A request timed out.
void RequestTimedOut(int security_key_connection_id);
// Ensures SecurityKeyAuthHandlerPosix methods are called on the same thread.
base::ThreadChecker thread_checker_;
// Socket used to listen for authorization requests.
std::unique_ptr<net::UnixDomainServerSocket> auth_socket_;
// A temporary holder for an accepted connection.
std::unique_ptr<net::StreamSocket> accept_socket_;
// Used to pass security key extension messages to the client.
SendMessageCallback send_message_callback_;
// The last assigned security key connection id.
int last_connection_id_ = 0;
// Sockets by connection id used to process gnubbyd requests.
ActiveSockets active_sockets_;
// Used to perform blocking File IO.
scoped_refptr<base::SingleThreadTaskRunner> file_task_runner_;
// Timeout used for a request.
base::TimeDelta request_timeout_;
base::WeakPtrFactory<SecurityKeyAuthHandlerPosix> weak_factory_{this};
};
std::unique_ptr<SecurityKeyAuthHandler> SecurityKeyAuthHandler::Create(
ClientSessionDetails* client_session_details,
const SendMessageCallback& send_message_callback,
scoped_refptr<base::SingleThreadTaskRunner> file_task_runner) {
std::unique_ptr<SecurityKeyAuthHandler> auth_handler(
new SecurityKeyAuthHandlerPosix(file_task_runner));
auth_handler->SetSendMessageCallback(send_message_callback);
return auth_handler;
}
void SecurityKeyAuthHandler::SetSecurityKeySocketName(
const base::FilePath& security_key_socket_name) {
g_security_key_socket_name.Get() = security_key_socket_name;
}
SecurityKeyAuthHandlerPosix::SecurityKeyAuthHandlerPosix(
scoped_refptr<base::SingleThreadTaskRunner> file_task_runner)
: file_task_runner_(file_task_runner),
request_timeout_(base::Seconds(kDefaultRequestTimeoutSeconds)) {}
SecurityKeyAuthHandlerPosix::~SecurityKeyAuthHandlerPosix() {
DCHECK(thread_checker_.CalledOnValidThread());
if (file_task_runner_) {
// Attempt to clean up the socket before being destroyed.
file_task_runner_->PostTask(
FROM_HERE,
base::GetDeleteFileCallback(g_security_key_socket_name.Get()));
}
}
void SecurityKeyAuthHandlerPosix::CreateSecurityKeyConnection() {
DCHECK(thread_checker_.CalledOnValidThread());
DCHECK(!g_security_key_socket_name.Get().empty());
// We need to run the DeleteFile method on |file_task_runner_| as it is a
// blocking function call which cannot be run on the main thread. Once
// that task has completed, the main thread will be called back and we will
// resume setting up our security key auth socket there.
file_task_runner_->PostTask(
FROM_HERE, base::GetDeleteFileCallback(
g_security_key_socket_name.Get(),
base::BindOnce(&SecurityKeyAuthHandlerPosix::CreateSocket,
weak_factory_.GetWeakPtr())));
}
void SecurityKeyAuthHandlerPosix::CreateSocket(bool success) {
DCHECK(thread_checker_.CalledOnValidThread());
HOST_LOG << "Listening for security key requests on "
<< g_security_key_socket_name.Get().value();
if (!success) {
LOG(ERROR) << "Delete g_security_key_socket_name failed";
return;
}
auth_socket_ = std::make_unique<net::UnixDomainServerSocket>(
base::BindRepeating(MatchUid), false);
int rv = auth_socket_->BindAndListen(g_security_key_socket_name.Get().value(),
/*backlog=*/1);
if (rv != net::OK) {
LOG(ERROR) << "Failed to open socket for auth requests: '" << rv << "'";
return;
}
DoAccept();
}
bool SecurityKeyAuthHandlerPosix::IsValidConnectionId(int connection_id) const {
return GetSocketForConnectionId(connection_id) != active_sockets_.end();
}
void SecurityKeyAuthHandlerPosix::SendClientResponse(
int connection_id,
const std::string& response) {
auto iter = GetSocketForConnectionId(connection_id);
if (iter != active_sockets_.end()) {
HOST_DLOG << "Sending client response to socket: " << connection_id;
iter->second->SendResponse(response);
iter->second->StartReadingRequest(
base::BindOnce(&SecurityKeyAuthHandlerPosix::OnReadComplete,
base::Unretained(this), connection_id));
} else {
LOG(WARNING) << "Unknown gnubby-auth connection id: " << connection_id;
}
}
void SecurityKeyAuthHandlerPosix::SendErrorAndCloseConnection(int id) {
auto iter = GetSocketForConnectionId(id);
if (iter != active_sockets_.end()) {
HOST_DLOG << "Sending error and closing socket: " << id;
SendErrorAndCloseActiveSocket(iter);
} else {
LOG(WARNING) << "Unknown gnubby-auth connection id: " << id;
}
}
void SecurityKeyAuthHandlerPosix::SetSendMessageCallback(
const SendMessageCallback& callback) {
send_message_callback_ = callback;
}
size_t SecurityKeyAuthHandlerPosix::GetActiveConnectionCountForTest() const {
return active_sockets_.size();
}
void SecurityKeyAuthHandlerPosix::SetRequestTimeoutForTest(
base::TimeDelta timeout) {
request_timeout_ = timeout;
}
void SecurityKeyAuthHandlerPosix::DoAccept() {
DCHECK(thread_checker_.CalledOnValidThread());
int result = auth_socket_->Accept(
&accept_socket_, base::BindOnce(&SecurityKeyAuthHandlerPosix::OnAccepted,
base::Unretained(this)));
if (result != net::ERR_IO_PENDING) {
OnAccepted(result);
}
}
void SecurityKeyAuthHandlerPosix::OnAccepted(int result) {
DCHECK(thread_checker_.CalledOnValidThread());
DCHECK_NE(net::ERR_IO_PENDING, result);
if (result < 0) {
LOG(ERROR) << "Error accepting new socket connection: " << result;
return;
}
int security_key_connection_id = ++last_connection_id_;
HOST_DLOG << "Creating new socket: " << security_key_connection_id;
SecurityKeySocket* socket = new SecurityKeySocket(
std::move(accept_socket_), request_timeout_,
base::BindOnce(&SecurityKeyAuthHandlerPosix::RequestTimedOut,
base::Unretained(this), security_key_connection_id));
active_sockets_[security_key_connection_id] = base::WrapUnique(socket);
socket->StartReadingRequest(
base::BindOnce(&SecurityKeyAuthHandlerPosix::OnReadComplete,
base::Unretained(this), security_key_connection_id));
// Continue accepting new connections.
DoAccept();
}
void SecurityKeyAuthHandlerPosix::OnReadComplete(int connection_id) {
DCHECK(thread_checker_.CalledOnValidThread());
ActiveSockets::const_iterator iter = active_sockets_.find(connection_id);
DCHECK(iter != active_sockets_.end());
std::string request_data;
if (!iter->second->GetAndClearRequestData(&request_data)) {
HOST_DLOG << "Closing socket: " << connection_id;
if (iter->second->socket_read_error()) {
iter->second->SendSshError();
}
active_sockets_.erase(iter);
return;
}
HOST_LOG << "Received request from socket: " << connection_id
<< ", code: " << GetCommandCode(request_data);
send_message_callback_.Run(connection_id, request_data);
}
SecurityKeyAuthHandlerPosix::ActiveSockets::const_iterator
SecurityKeyAuthHandlerPosix::GetSocketForConnectionId(int connection_id) const {
return active_sockets_.find(connection_id);
}
void SecurityKeyAuthHandlerPosix::SendErrorAndCloseActiveSocket(
const ActiveSockets::const_iterator& iter) {
iter->second->SendSshError();
active_sockets_.erase(iter);
}
void SecurityKeyAuthHandlerPosix::RequestTimedOut(int connection_id) {
HOST_LOG << "SecurityKey request timed out for socket: " << connection_id;
ActiveSockets::const_iterator iter = active_sockets_.find(connection_id);
if (iter != active_sockets_.end()) {
SendErrorAndCloseActiveSocket(iter);
}
}
} // namespace remoting
|