// Copyright (c) 2012 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. #include "remoting/host/chromoting_host.h" #include "base/bind.h" #include "base/callback.h" #include "base/logging.h" #include "base/message_loop_proxy.h" #include "build/build_config.h" #include "remoting/base/constants.h" #include "remoting/base/encoder.h" #include "remoting/base/encoder_row_based.h" #include "remoting/base/encoder_vp8.h" #include "remoting/host/chromoting_host_context.h" #include "remoting/host/desktop_environment.h" #include "remoting/host/event_executor.h" #include "remoting/host/host_config.h" #include "remoting/host/screen_recorder.h" #include "remoting/protocol/connection_to_client.h" #include "remoting/protocol/client_stub.h" #include "remoting/protocol/host_stub.h" #include "remoting/protocol/input_stub.h" #include "remoting/protocol/jingle_session_manager.h" #include "remoting/protocol/session_config.h" using remoting::protocol::ConnectionToClient; using remoting::protocol::InputStub; namespace remoting { ChromotingHost::ChromotingHost(ChromotingHostContext* context, SignalStrategy* signal_strategy, DesktopEnvironment* environment, bool allow_nat_traversal) : context_(context), desktop_environment_(environment), allow_nat_traversal_(allow_nat_traversal), have_shared_secret_(false), signal_strategy_(signal_strategy), stopping_recorders_(0), state_(kInitial), protocol_config_(protocol::CandidateSessionConfig::CreateDefault()), is_it2me_(false) { DCHECK(context_); DCHECK(signal_strategy); DCHECK(desktop_environment_); DCHECK(context_->network_message_loop()->BelongsToCurrentThread()); desktop_environment_->set_host(this); } ChromotingHost::~ChromotingHost() { DCHECK(clients_.empty()); } void ChromotingHost::Start() { DCHECK(context_->network_message_loop()->BelongsToCurrentThread()); LOG(INFO) << "Starting host"; // Make sure this object is not started. if (state_ != kInitial) return; state_ = kStarted; // Create and start session manager. session_manager_.reset( new protocol::JingleSessionManager(context_->network_message_loop())); session_manager_->Init(signal_strategy_, this, allow_nat_traversal_); } // This method is called when we need to destroy the host process. void ChromotingHost::Shutdown(const base::Closure& shutdown_task) { if (!context_->network_message_loop()->BelongsToCurrentThread()) { context_->network_message_loop()->PostTask( FROM_HERE, base::Bind(&ChromotingHost::Shutdown, this, shutdown_task)); return; } // No-op if this object is not started yet. if (state_ == kInitial || state_ == kStopped) { // Nothing to do if we are not started. state_ = kStopped; context_->network_message_loop()->PostTask(FROM_HERE, shutdown_task); return; } if (!shutdown_task.is_null()) shutdown_tasks_.push_back(shutdown_task); if (state_ == kStopping) return; state_ = kStopping; // Disconnect all of the clients, implicitly stopping the ScreenRecorder. while (!clients_.empty()) { clients_.front()->Disconnect(); } // Stop session manager. if (session_manager_.get()) { session_manager_->Close(); // It may not be safe to delete |session_manager_| here becase // this method may be invoked in response to a libjingle event and // libjingle's sigslot doesn't handle it properly, so postpone the // deletion. context_->network_message_loop()->DeleteSoon( FROM_HERE, session_manager_.release()); have_shared_secret_ = false; } if (recorder_.get()) { StopScreenRecorder(); } else { ShutdownFinish(); } } void ChromotingHost::AddStatusObserver(HostStatusObserver* observer) { DCHECK(context_->network_message_loop()->BelongsToCurrentThread()); DCHECK_EQ(state_, kInitial); status_observers_.push_back(observer); } void ChromotingHost::SetAuthenticatorFactory( scoped_ptr authenticator_factory) { DCHECK(context_->network_message_loop()->BelongsToCurrentThread()); session_manager_->set_authenticator_factory(authenticator_factory.Pass()); } //////////////////////////////////////////////////////////////////////////// // protocol::ClientSession::EventHandler implementation. void ChromotingHost::OnSessionAuthenticated(ClientSession* client) { DCHECK(context_->network_message_loop()->BelongsToCurrentThread()); // Disconnect all other clients. // Iterate over a copy of the list of clients, to avoid mutating the list // while iterating over it. ClientList clients_copy(clients_); for (ClientList::const_iterator other_client = clients_copy.begin(); other_client != clients_copy.end(); ++other_client) { if ((*other_client) != client) { (*other_client)->Disconnect(); } } // Create a new RecordSession if there was none. if (!recorder_.get()) { // Then we create a ScreenRecorder passing the message loops that // it should run on. Encoder* encoder = CreateEncoder(client->connection()->session()->config()); recorder_ = new ScreenRecorder(context_->main_message_loop(), context_->encode_message_loop(), context_->network_message_loop(), desktop_environment_->capturer(), encoder); } // Immediately add the connection and start the session. recorder_->AddConnection(client->connection()); recorder_->Start(); // Notify observers that there is at least one authenticated client. const std::string& jid = client->connection()->session()->jid(); for (StatusObserverList::iterator it = status_observers_.begin(); it != status_observers_.end(); ++it) { (*it)->OnClientAuthenticated(jid); } } void ChromotingHost::OnSessionAuthenticationFailed(ClientSession* client) { DCHECK(context_->network_message_loop()->BelongsToCurrentThread()); // Notify observers. for (StatusObserverList::iterator it = status_observers_.begin(); it != status_observers_.end(); ++it) { (*it)->OnAccessDenied(); } } void ChromotingHost::OnSessionClosed(ClientSession* client) { DCHECK(context_->network_message_loop()->BelongsToCurrentThread()); scoped_ptr client_destroyer(client); ClientList::iterator it = std::find(clients_.begin(), clients_.end(), client); CHECK(it != clients_.end()); clients_.erase(it); if (recorder_.get()) { recorder_->RemoveConnection(client->connection()); } for (StatusObserverList::iterator it = status_observers_.begin(); it != status_observers_.end(); ++it) { (*it)->OnClientDisconnected(client->client_jid()); } if (AuthenticatedClientsCount() == 0) { if (recorder_.get()) { // Stop the recorder if there are no more clients. StopScreenRecorder(); } } } void ChromotingHost::OnSessionSequenceNumber(ClientSession* session, int64 sequence_number) { DCHECK(context_->network_message_loop()->BelongsToCurrentThread()); if (recorder_.get()) recorder_->UpdateSequenceNumber(sequence_number); } void ChromotingHost::OnSessionManagerReady() { DCHECK(context_->network_message_loop()->BelongsToCurrentThread()); // Don't need to do anything here, just wait for incoming // connections. } void ChromotingHost::OnIncomingSession( protocol::Session* session, protocol::SessionManager::IncomingSessionResponse* response) { DCHECK(context_->network_message_loop()->BelongsToCurrentThread()); if (state_ != kStarted) { *response = protocol::SessionManager::DECLINE; return; } // If we are running Me2Mom and already have an authenticated client then // one of the connections may be an attacker, so both are suspect. if (is_it2me_ && AuthenticatedClientsCount() > 0) { *response = protocol::SessionManager::DECLINE; // Close existing sessions and shutdown the host. Shutdown(base::Closure()); return; } protocol::SessionConfig config; if (!protocol_config_->Select(session->candidate_config(), &config)) { LOG(WARNING) << "Rejecting connection from " << session->jid() << " because no compatible configuration has been found."; *response = protocol::SessionManager::INCOMPATIBLE; return; } session->set_config(config); *response = protocol::SessionManager::ACCEPT; LOG(INFO) << "Client connected: " << session->jid(); // Create a client object. protocol::ConnectionToClient* connection = new protocol::ConnectionToClient(session); ClientSession* client = new ClientSession( this, connection, desktop_environment_->event_executor(), desktop_environment_->capturer()); clients_.push_back(client); } void ChromotingHost::set_protocol_config( protocol::CandidateSessionConfig* config) { DCHECK(context_->network_message_loop()->BelongsToCurrentThread()); DCHECK(config); DCHECK_EQ(state_, kInitial); protocol_config_.reset(config); } void ChromotingHost::LocalMouseMoved(const SkIPoint& new_pos) { if (!context_->network_message_loop()->BelongsToCurrentThread()) { context_->network_message_loop()->PostTask( FROM_HERE, base::Bind(&ChromotingHost::LocalMouseMoved, this, new_pos)); return; } ClientList::iterator client; for (client = clients_.begin(); client != clients_.end(); ++client) { (*client)->LocalMouseMoved(new_pos); } } void ChromotingHost::PauseSession(bool pause) { if (!context_->network_message_loop()->BelongsToCurrentThread()) { context_->network_message_loop()->PostTask( FROM_HERE, base::Bind(&ChromotingHost::PauseSession, this, pause)); return; } ClientList::iterator client; for (client = clients_.begin(); client != clients_.end(); ++client) { (*client)->set_awaiting_continue_approval(pause); } } void ChromotingHost::SetUiStrings(const UiStrings& ui_strings) { DCHECK(context_->network_message_loop()->BelongsToCurrentThread()); DCHECK_EQ(state_, kInitial); ui_strings_ = ui_strings; } // TODO(sergeyu): Move this to SessionManager? // static Encoder* ChromotingHost::CreateEncoder(const protocol::SessionConfig& config) { const protocol::ChannelConfig& video_config = config.video_config(); if (video_config.codec == protocol::ChannelConfig::CODEC_VERBATIM) { return EncoderRowBased::CreateVerbatimEncoder(); } else if (video_config.codec == protocol::ChannelConfig::CODEC_ZIP) { return EncoderRowBased::CreateZlibEncoder(); } else if (video_config.codec == protocol::ChannelConfig::CODEC_VP8) { return new remoting::EncoderVp8(); } return NULL; } int ChromotingHost::AuthenticatedClientsCount() const { DCHECK(context_->network_message_loop()->BelongsToCurrentThread()); int authenticated_clients = 0; for (ClientList::const_iterator it = clients_.begin(); it != clients_.end(); ++it) { if ((*it)->authenticated()) ++authenticated_clients; } return authenticated_clients; } void ChromotingHost::StopScreenRecorder() { DCHECK(context_->network_message_loop()->BelongsToCurrentThread()); DCHECK(recorder_.get()); ++stopping_recorders_; scoped_refptr recorder = recorder_; recorder_ = NULL; recorder->Stop(base::Bind(&ChromotingHost::OnScreenRecorderStopped, this)); } void ChromotingHost::OnScreenRecorderStopped() { if (!context_->network_message_loop()->BelongsToCurrentThread()) { context_->network_message_loop()->PostTask( FROM_HERE, base::Bind(&ChromotingHost::OnScreenRecorderStopped, this)); return; } --stopping_recorders_; DCHECK_GE(stopping_recorders_, 0); if (!stopping_recorders_ && state_ == kStopping) ShutdownFinish(); } void ChromotingHost::ShutdownFinish() { DCHECK(context_->network_message_loop()->BelongsToCurrentThread()); state_ = kStopped; // Keep reference to |this|, so that we don't get destroyed while // sending notifications. scoped_refptr self(this); // Notify observers. for (StatusObserverList::iterator it = status_observers_.begin(); it != status_observers_.end(); ++it) { (*it)->OnShutdown(); } for (std::vector::iterator it = shutdown_tasks_.begin(); it != shutdown_tasks_.end(); ++it) { it->Run(); } shutdown_tasks_.clear(); } } // namespace remoting