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
|
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef REMOTING_HOST_CHROMOTING_HOST_H_
#define REMOTING_HOST_CHROMOTING_HOST_H_
#include <memory>
#include <optional>
#include <string>
#include <vector>
#include "base/functional/callback.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/scoped_refptr.h"
#include "base/memory/weak_ptr.h"
#include "base/process/process_handle.h"
#include "base/sequence_checker.h"
#include "base/threading/thread.h"
#include "base/time/time.h"
#include "build/build_config.h"
#include "mojo/public/cpp/bindings/pending_receiver.h"
#include "mojo/public/cpp/bindings/receiver_set.h"
#include "net/base/backoff_entry.h"
#include "remoting/base/errors.h"
#include "remoting/base/local_session_policies_provider.h"
#include "remoting/host/base/desktop_environment_options.h"
#include "remoting/host/client_session.h"
#include "remoting/host/host_extension.h"
#include "remoting/host/host_status_monitor.h"
#include "remoting/host/host_status_observer.h"
#include "remoting/host/mojom/chromoting_host_services.mojom.h"
#include "remoting/protocol/authenticator.h"
#include "remoting/protocol/connection_to_client.h"
#include "remoting/protocol/pairing_registry.h"
#include "remoting/protocol/session_manager.h"
#include "remoting/protocol/transport_context.h"
#if BUILDFLAG(IS_LINUX)
#include "remoting/host/chromoting_host_services_server.h"
#endif
namespace base {
class SingleThreadTaskRunner;
} // namespace base
namespace remoting {
namespace protocol {
class InputStub;
} // namespace protocol
class DesktopEnvironmentFactory;
// A class to implement the functionality of a host process.
//
// Here's the work flow of this class:
// 1. We should load the saved GAIA ID token or if this is the first
// time the host process runs we should prompt user for the
// credential. We will use this token or credentials to authenticate
// and register the host.
//
// 2. We listen for an incoming connection using libjingle. We will create
// a ConnectionToClient object that wraps around libjingle for transport.
// A VideoFramePump is created with an Encoder and a webrtc::DesktopCapturer.
// A ConnectionToClient is added to the ScreenRecorder for transporting
// the screen captures. An InputStub is created and registered with the
// ConnectionToClient to receive mouse / keyboard events from the remote
// client.
// After we have done all the initialization we'll start the ScreenRecorder.
// We'll then enter the running state of the host process.
//
// 3. When the user is disconnected, we will pause the ScreenRecorder
// and try to terminate the threads we have created. This will allow
// all pending tasks to complete. After all of that has completed, we
// return to the idle state. We then go to step (2) to wait for a new
// incoming connection.
class ChromotingHost : public ClientSession::EventHandler,
public mojom::ChromotingHostServices {
public:
using ClientSessions = std::vector<std::unique_ptr<ClientSession>>;
// Callback for validating session policies. The return value will be nullopt
// if the session policies are valid; otherwise the session will be closed
// and an error code will be reported to the client.
using SessionPoliciesValidator =
base::RepeatingCallback<std::optional<ErrorCode>(const SessionPolicies&)>;
// |per_session_policies_validator|: Extra SessionPolicies validator in
// addition to the ones in ClientSession. Pass base::NullCallback() if there
// is no extra validator.
// |desktop_environment_factory| must outlive this object.
ChromotingHost(
DesktopEnvironmentFactory* desktop_environment_factory,
std::unique_ptr<protocol::SessionManager> session_manager,
scoped_refptr<protocol::TransportContext> transport_context,
scoped_refptr<base::SingleThreadTaskRunner> audio_task_runner,
scoped_refptr<base::SingleThreadTaskRunner> video_encode_task_runner,
const DesktopEnvironmentOptions& options,
const SessionPoliciesValidator& per_session_policies_validator,
const LocalSessionPoliciesProvider* local_session_policies_provider);
ChromotingHost(const ChromotingHost&) = delete;
ChromotingHost& operator=(const ChromotingHost&) = delete;
~ChromotingHost() override;
// Asynchronously starts the host.
//
// Once this is called, the host will start listening for inbound connections.
//
// This method can only be called once during the lifetime of this object.
void Start(const std::string& host_owner);
#if BUILDFLAG(IS_LINUX)
// Starts running the ChromotingHostServices server and listening for incoming
// IPC binding requests.
// Currently only Linux runs the ChromotingHostServices server on the host
// process.
void StartChromotingHostServices();
#endif
void BindChromotingHostServices(
mojo::PendingReceiver<mojom::ChromotingHostServices> receiver,
base::ProcessId peer_pid);
scoped_refptr<HostStatusMonitor> status_monitor() { return status_monitor_; }
const DesktopEnvironmentOptions& desktop_environment_options() const {
return desktop_environment_options_;
}
// Registers a host extension.
void AddExtension(std::unique_ptr<HostExtension> extension);
// Sets the authenticator factory to use for incoming
// connections. Incoming connections are rejected until
// authenticator factory is set. Must be called on the network
// thread after the host is started. Must not be called more than
// once per host instance because it may not be safe to delete
// factory before all authenticators it created are deleted.
void SetAuthenticatorFactory(
std::unique_ptr<protocol::AuthenticatorFactory> authenticator_factory);
////////////////////////////////////////////////////////////////////////////
// ClientSession::EventHandler implementation.
void OnSessionAuthenticating(ClientSession* client) override;
void OnSessionAuthenticated(ClientSession* client) override;
void OnSessionChannelsConnected(ClientSession* client) override;
void OnSessionAuthenticationFailed(ClientSession* client) override;
void OnSessionClosed(ClientSession* session) override;
void OnSessionRouteChange(ClientSession* session,
const std::string& channel_name,
const protocol::TransportRoute& route) override;
std::optional<ErrorCode> OnSessionPoliciesReceived(
const SessionPolicies& policies) override;
// mojom::ChromotingHostServices implementation.
void BindSessionServices(
mojo::PendingReceiver<mojom::ChromotingSessionServices> receiver)
override;
// Callback for SessionManager to accept incoming sessions.
void OnIncomingSession(
protocol::Session* session,
protocol::SessionManager::IncomingSessionResponse* response,
std::string* rejection_reason,
base::Location* rejection_location);
// The host uses a pairing registry to generate and store pairing information
// for clients for PIN-less authentication.
scoped_refptr<protocol::PairingRegistry> pairing_registry() const {
return pairing_registry_;
}
void set_pairing_registry(
scoped_refptr<protocol::PairingRegistry> pairing_registry) {
pairing_registry_ = pairing_registry;
}
const ClientSessions& client_sessions_for_tests() { return clients_; }
scoped_refptr<protocol::TransportContext> transport_context_for_tests() {
return transport_context_;
}
private:
// Returns the currently connected client session, or nullptr if not found.
ClientSession* GetConnectedClientSession() const;
friend class ChromotingHostTest;
// Unless specified otherwise, all members of this class must be
// used on the network thread only.
// Parameters specified when the host was created.
raw_ptr<DesktopEnvironmentFactory> desktop_environment_factory_;
std::unique_ptr<protocol::SessionManager> session_manager_;
scoped_refptr<protocol::TransportContext> transport_context_;
scoped_refptr<base::SingleThreadTaskRunner> audio_task_runner_;
scoped_refptr<base::SingleThreadTaskRunner> video_encode_task_runner_;
scoped_refptr<HostStatusMonitor> status_monitor_;
// The connections to remote clients.
ClientSessions clients_;
// True if the host has been started.
bool started_ = false;
// Login backoff state.
net::BackoffEntry login_backoff_;
// Options to initialize a DesktopEnvironment.
const DesktopEnvironmentOptions desktop_environment_options_;
raw_ptr<const LocalSessionPoliciesProvider> local_session_policies_provider_;
SessionPoliciesValidator per_session_policies_validator_;
// The pairing registry for PIN-less authentication.
scoped_refptr<protocol::PairingRegistry> pairing_registry_;
// List of host extensions.
std::vector<std::unique_ptr<HostExtension>> extensions_;
#if BUILDFLAG(IS_LINUX)
// IPC server that runs the CRD host service API. Non-null if the server name
// is set and the host is started.
// Currently only Linux runs the ChromotingHostServices server on the host
// process.
std::unique_ptr<ChromotingHostServicesServer> ipc_server_;
#endif
mojo::ReceiverSet<mojom::ChromotingHostServices, base::ProcessId> receivers_;
SEQUENCE_CHECKER(sequence_checker_);
base::WeakPtrFactory<ChromotingHost> weak_factory_{this};
};
} // namespace remoting
#endif // REMOTING_HOST_CHROMOTING_HOST_H_
|