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 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711
|
// Copyright 2015 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/protocol/webrtc_transport.h"
#include <string>
#include <utility>
#include <vector>
#include "base/base64.h"
#include "base/callback_helpers.h"
#include "base/command_line.h"
#include "base/macros.h"
#include "base/memory/ptr_util.h"
#include "base/single_thread_task_runner.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/string_split.h"
#include "base/strings/string_util.h"
#include "base/task_runner_util.h"
#include "base/threading/thread_restrictions.h"
#include "base/threading/thread_task_runner_handle.h"
#include "jingle/glue/thread_wrapper.h"
#include "remoting/protocol/authenticator.h"
#include "remoting/protocol/port_allocator_factory.h"
#include "remoting/protocol/sdp_message.h"
#include "remoting/protocol/stream_message_pipe_adapter.h"
#include "remoting/protocol/transport_context.h"
#include "remoting/protocol/webrtc_audio_module.h"
#include "remoting/protocol/webrtc_dummy_video_encoder.h"
#include "third_party/libjingle_xmpp/xmllite/xmlelement.h"
#include "third_party/webrtc/api/test/fakeconstraints.h"
using buzz::QName;
using buzz::XmlElement;
namespace remoting {
namespace protocol {
namespace {
// Delay after candidate creation before sending transport-info message to
// accumulate multiple candidates. This is an optimization to reduce number of
// transport-info messages.
const int kTransportInfoSendDelayMs = 20;
// XML namespace for the transport elements.
const char kTransportNamespace[] = "google:remoting:webrtc";
#if !defined(NDEBUG)
// Command line switch used to disable signature verification.
// TODO(sergeyu): Remove this flag.
const char kDisableAuthenticationSwitchName[] = "disable-authentication";
#endif
bool IsValidSessionDescriptionType(const std::string& type) {
return type == webrtc::SessionDescriptionInterface::kOffer ||
type == webrtc::SessionDescriptionInterface::kAnswer;
}
void UpdateCodecParameters(SdpMessage* sdp_message, bool incoming) {
// Set bitrate range to 1-100 Mbps.
// - Setting min bitrate here enables padding.
// - The default max bitrate is 600 kbps. Setting it to 100 Mbps allows to
// use higher bandwidth when it's available.
//
// TODO(sergeyu): Padding needs to be enabled to workaround BW estimator not
// handling spiky traffic patterns well. This won't be necessary with a
// better bandwidth estimator.
// TODO(isheriff): The need for this should go away once we have a proper
// API to provide max bitrate for the case of handing over encoded
// frames to webrtc.
if (sdp_message->has_video() &&
!sdp_message->AddCodecParameter(
"VP8", "x-google-min-bitrate=1000; x-google-max-bitrate=100000")) {
if (incoming) {
LOG(WARNING) << "VP8 not found in an incoming SDP.";
} else {
LOG(FATAL) << "VP8 not found in SDP generated by WebRTC.";
}
}
// Update SDP format to use stereo for opus codec.
if (sdp_message->has_audio() &&
!sdp_message->AddCodecParameter("opus",
"stereo=1; x-google-min-bitrate=160")) {
if (incoming) {
LOG(WARNING) << "Opus not found in an incoming SDP.";
} else {
LOG(FATAL) << "Opus not found in SDP generated by WebRTC.";
}
}
}
// A webrtc::CreateSessionDescriptionObserver implementation used to receive the
// results of creating descriptions for this end of the PeerConnection.
class CreateSessionDescriptionObserver
: public webrtc::CreateSessionDescriptionObserver {
public:
typedef base::Callback<void(
std::unique_ptr<webrtc::SessionDescriptionInterface> description,
const std::string& error)>
ResultCallback;
static CreateSessionDescriptionObserver* Create(
const ResultCallback& result_callback) {
return new rtc::RefCountedObject<CreateSessionDescriptionObserver>(
result_callback);
}
void OnSuccess(webrtc::SessionDescriptionInterface* desc) override {
base::ResetAndReturn(&result_callback_)
.Run(base::WrapUnique(desc), std::string());
}
void OnFailure(const std::string& error) override {
base::ResetAndReturn(&result_callback_).Run(nullptr, error);
}
protected:
explicit CreateSessionDescriptionObserver(
const ResultCallback& result_callback)
: result_callback_(result_callback) {}
~CreateSessionDescriptionObserver() override {}
private:
ResultCallback result_callback_;
DISALLOW_COPY_AND_ASSIGN(CreateSessionDescriptionObserver);
};
// A webrtc::SetSessionDescriptionObserver implementation used to receive the
// results of setting local and remote descriptions of the PeerConnection.
class SetSessionDescriptionObserver
: public webrtc::SetSessionDescriptionObserver {
public:
typedef base::Callback<void(bool success, const std::string& error)>
ResultCallback;
static SetSessionDescriptionObserver* Create(
const ResultCallback& result_callback) {
return new rtc::RefCountedObject<SetSessionDescriptionObserver>(
result_callback);
}
void OnSuccess() override {
base::ResetAndReturn(&result_callback_).Run(true, std::string());
}
void OnFailure(const std::string& error) override {
base::ResetAndReturn(&result_callback_).Run(false, error);
}
protected:
explicit SetSessionDescriptionObserver(const ResultCallback& result_callback)
: result_callback_(result_callback) {}
~SetSessionDescriptionObserver() override {}
private:
ResultCallback result_callback_;
DISALLOW_COPY_AND_ASSIGN(SetSessionDescriptionObserver);
};
} // namespace
class WebrtcTransport::PeerConnectionWrapper
: public webrtc::PeerConnectionObserver {
public:
PeerConnectionWrapper(
rtc::Thread* worker_thread,
std::unique_ptr<cricket::WebRtcVideoEncoderFactory> encoder_factory,
std::unique_ptr<cricket::PortAllocator> port_allocator,
base::WeakPtr<WebrtcTransport> transport)
: transport_(transport) {
audio_module_ = new rtc::RefCountedObject<WebrtcAudioModule>();
peer_connection_factory_ = webrtc::CreatePeerConnectionFactory(
worker_thread, rtc::Thread::Current(), audio_module_.get(),
encoder_factory.release(), nullptr);
webrtc::FakeConstraints constraints;
constraints.AddMandatory(webrtc::MediaConstraintsInterface::kEnableDtlsSrtp,
webrtc::MediaConstraintsInterface::kValueTrue);
webrtc::PeerConnectionInterface::RTCConfiguration rtc_config;
// Set bundle_policy and rtcp_mux_policy to ensure that all channels are
// multiplexed over a single channel.
rtc_config.bundle_policy =
webrtc::PeerConnectionInterface::kBundlePolicyMaxBundle;
rtc_config.rtcp_mux_policy =
webrtc::PeerConnectionInterface::kRtcpMuxPolicyRequire;
rtc_config.media_config.video.periodic_alr_bandwidth_probing = true;
peer_connection_ = peer_connection_factory_->CreatePeerConnection(
rtc_config, &constraints, std::move(port_allocator), nullptr, this);
}
virtual ~PeerConnectionWrapper() {
// PeerConnection creates threads internally, which are stopped when the
// connection is closed. Thread.Stop() is a blocking operation.
// See crbug.com/660081.
base::ThreadRestrictions::ScopedAllowIO allow_io;
peer_connection_->Close();
}
WebrtcAudioModule* audio_module() {
return audio_module_.get();
}
webrtc::PeerConnectionInterface* peer_connection() {
return peer_connection_.get();
}
webrtc::PeerConnectionFactoryInterface* peer_connection_factory() {
return peer_connection_factory_.get();
}
// webrtc::PeerConnectionObserver interface.
void OnSignalingChange(
webrtc::PeerConnectionInterface::SignalingState new_state) override {
if (transport_)
transport_->OnSignalingChange(new_state);
}
void OnAddStream(
rtc::scoped_refptr<webrtc::MediaStreamInterface> stream) override {
if (transport_)
transport_->OnAddStream(stream);
}
void OnRemoveStream(
rtc::scoped_refptr<webrtc::MediaStreamInterface> stream) override {
if (transport_)
transport_->OnRemoveStream(stream);
}
void OnDataChannel(
rtc::scoped_refptr<webrtc::DataChannelInterface> data_channel) override {
if (transport_)
transport_->OnDataChannel(data_channel);
}
void OnRenegotiationNeeded() override {
if (transport_)
transport_->OnRenegotiationNeeded();
}
void OnIceConnectionChange(
webrtc::PeerConnectionInterface::IceConnectionState new_state) override {
if (transport_)
transport_->OnIceConnectionChange(new_state);
}
void OnIceGatheringChange(
webrtc::PeerConnectionInterface::IceGatheringState new_state) override {
if (transport_)
transport_->OnIceGatheringChange(new_state);
}
void OnIceCandidate(const webrtc::IceCandidateInterface* candidate) override {
if (transport_)
transport_->OnIceCandidate(candidate);
}
private:
scoped_refptr<WebrtcAudioModule> audio_module_;
scoped_refptr<webrtc::PeerConnectionFactoryInterface>
peer_connection_factory_;
scoped_refptr<webrtc::PeerConnectionInterface> peer_connection_;
base::WeakPtr<WebrtcTransport> transport_;
DISALLOW_COPY_AND_ASSIGN(PeerConnectionWrapper);
};
WebrtcTransport::WebrtcTransport(
rtc::Thread* worker_thread,
scoped_refptr<TransportContext> transport_context,
EventHandler* event_handler)
: transport_context_(transport_context),
event_handler_(event_handler),
handshake_hmac_(crypto::HMAC::SHA256),
weak_factory_(this) {
transport_context_->set_relay_mode(TransportContext::RelayMode::TURN);
video_encoder_factory_ = new WebrtcDummyVideoEncoderFactory();
std::unique_ptr<cricket::PortAllocator> port_allocator =
transport_context_->port_allocator_factory()->CreatePortAllocator(
transport_context_);
// Takes ownership of video_encoder_factory_.
peer_connection_wrapper_.reset(new PeerConnectionWrapper(
worker_thread, base::WrapUnique(video_encoder_factory_),
std::move(port_allocator), weak_factory_.GetWeakPtr()));
}
WebrtcTransport::~WebrtcTransport() {
Close(OK);
}
webrtc::PeerConnectionInterface* WebrtcTransport::peer_connection() {
return peer_connection_wrapper_ ? peer_connection_wrapper_->peer_connection()
: nullptr;
}
webrtc::PeerConnectionFactoryInterface*
WebrtcTransport::peer_connection_factory() {
return peer_connection_wrapper_
? peer_connection_wrapper_->peer_connection_factory()
: nullptr;
}
WebrtcAudioModule* WebrtcTransport::audio_module() {
return peer_connection_wrapper_
? peer_connection_wrapper_->audio_module()
: nullptr;
}
std::unique_ptr<MessagePipe> WebrtcTransport::CreateOutgoingChannel(
const std::string& name) {
webrtc::DataChannelInit config;
config.reliable = true;
return base::MakeUnique<WebrtcDataStreamAdapter>(
peer_connection()->CreateDataChannel(name, &config));
}
void WebrtcTransport::Start(
Authenticator* authenticator,
SendTransportInfoCallback send_transport_info_callback) {
DCHECK(thread_checker_.CalledOnValidThread());
DCHECK(send_transport_info_callback_.is_null());
jingle_glue::JingleThreadWrapper::EnsureForCurrentMessageLoop();
// TODO(sergeyu): Investigate if it's possible to avoid Send().
jingle_glue::JingleThreadWrapper::current()->set_send_allowed(true);
send_transport_info_callback_ = std::move(send_transport_info_callback);
if (!handshake_hmac_.Init(authenticator->GetAuthKey())) {
LOG(FATAL) << "HMAC::Init() failed.";
}
event_handler_->OnWebrtcTransportConnecting();
if (transport_context_->role() == TransportRole::SERVER)
RequestNegotiation();
}
bool WebrtcTransport::ProcessTransportInfo(XmlElement* transport_info) {
DCHECK(thread_checker_.CalledOnValidThread());
if (transport_info->Name() != QName(kTransportNamespace, "transport"))
return false;
if (!peer_connection())
return false;
XmlElement* session_description = transport_info->FirstNamed(
QName(kTransportNamespace, "session-description"));
if (session_description) {
webrtc::PeerConnectionInterface::SignalingState expected_state =
transport_context_->role() == TransportRole::CLIENT
? webrtc::PeerConnectionInterface::kStable
: webrtc::PeerConnectionInterface::kHaveLocalOffer;
if (peer_connection()->signaling_state() != expected_state) {
LOG(ERROR) << "Received unexpected WebRTC session_description.";
return false;
}
std::string type = session_description->Attr(QName(std::string(), "type"));
std::string raw_sdp = session_description->BodyText();
if (!IsValidSessionDescriptionType(type) || raw_sdp.empty()) {
LOG(ERROR) << "Incorrect session description format.";
return false;
}
SdpMessage sdp_message(raw_sdp);
std::string signature_base64 =
session_description->Attr(QName(std::string(), "signature"));
std::string signature;
if (!base::Base64Decode(signature_base64, &signature) ||
!handshake_hmac_.Verify(type + " " + sdp_message.ToString(),
signature)) {
LOG(WARNING) << "Received session-description with invalid signature.";
bool ignore_error = false;
#if !defined(NDEBUG)
ignore_error = base::CommandLine::ForCurrentProcess()->HasSwitch(
kDisableAuthenticationSwitchName);
#endif
if (!ignore_error) {
Close(AUTHENTICATION_FAILED);
return true;
}
}
UpdateCodecParameters(&sdp_message, /*incoming=*/true);
webrtc::SdpParseError error;
std::unique_ptr<webrtc::SessionDescriptionInterface> session_description(
webrtc::CreateSessionDescription(type, sdp_message.ToString(), &error));
if (!session_description) {
LOG(ERROR) << "Failed to parse the session description: "
<< error.description << " line: " << error.line;
return false;
}
peer_connection()->SetRemoteDescription(
SetSessionDescriptionObserver::Create(
base::Bind(&WebrtcTransport::OnRemoteDescriptionSet,
weak_factory_.GetWeakPtr(),
type == webrtc::SessionDescriptionInterface::kOffer)),
session_description.release());
}
XmlElement* candidate_element;
QName candidate_qname(kTransportNamespace, "candidate");
for (candidate_element = transport_info->FirstNamed(candidate_qname);
candidate_element;
candidate_element = candidate_element->NextNamed(candidate_qname)) {
std::string candidate_str = candidate_element->BodyText();
std::string sdp_mid =
candidate_element->Attr(QName(std::string(), "sdpMid"));
std::string sdp_mlineindex_str =
candidate_element->Attr(QName(std::string(), "sdpMLineIndex"));
int sdp_mlineindex;
if (candidate_str.empty() || sdp_mid.empty() ||
!base::StringToInt(sdp_mlineindex_str, &sdp_mlineindex)) {
LOG(ERROR) << "Failed to parse incoming candidates.";
return false;
}
webrtc::SdpParseError error;
std::unique_ptr<webrtc::IceCandidateInterface> candidate(
webrtc::CreateIceCandidate(sdp_mid, sdp_mlineindex, candidate_str,
&error));
if (!candidate) {
LOG(ERROR) << "Failed to parse incoming candidate: " << error.description
<< " line: " << error.line;
return false;
}
if (peer_connection()->signaling_state() ==
webrtc::PeerConnectionInterface::kStable) {
if (!peer_connection()->AddIceCandidate(candidate.get())) {
LOG(ERROR) << "Failed to add incoming ICE candidate.";
return false;
}
} else {
pending_incoming_candidates_.push_back(std::move(candidate));
}
}
return true;
}
void WebrtcTransport::OnLocalSessionDescriptionCreated(
std::unique_ptr<webrtc::SessionDescriptionInterface> description,
const std::string& error) {
DCHECK(thread_checker_.CalledOnValidThread());
if (!peer_connection())
return;
if (!description) {
LOG(ERROR) << "PeerConnection offer creation failed: " << error;
Close(CHANNEL_CONNECTION_ERROR);
return;
}
std::string description_sdp;
if (!description->ToString(&description_sdp)) {
LOG(ERROR) << "Failed to serialize description.";
Close(CHANNEL_CONNECTION_ERROR);
return;
}
SdpMessage sdp_message(description_sdp);
UpdateCodecParameters(&sdp_message, /*incoming=*/false);
description_sdp = sdp_message.ToString();
// Format and send the session description to the peer.
std::unique_ptr<XmlElement> transport_info(
new XmlElement(QName(kTransportNamespace, "transport"), true));
XmlElement* offer_tag =
new XmlElement(QName(kTransportNamespace, "session-description"));
transport_info->AddElement(offer_tag);
offer_tag->SetAttr(QName(std::string(), "type"), description->type());
offer_tag->SetBodyText(description_sdp);
std::string digest;
digest.resize(handshake_hmac_.DigestLength());
CHECK(handshake_hmac_.Sign(description->type() + " " + description_sdp,
reinterpret_cast<uint8_t*>(&(digest[0])),
digest.size()));
std::string digest_base64;
base::Base64Encode(digest, &digest_base64);
offer_tag->SetAttr(QName(std::string(), "signature"), digest_base64);
send_transport_info_callback_.Run(std::move(transport_info));
peer_connection()->SetLocalDescription(
SetSessionDescriptionObserver::Create(base::Bind(
&WebrtcTransport::OnLocalDescriptionSet, weak_factory_.GetWeakPtr())),
description.release());
}
void WebrtcTransport::OnLocalDescriptionSet(bool success,
const std::string& error) {
DCHECK(thread_checker_.CalledOnValidThread());
if (!peer_connection())
return;
if (!success) {
LOG(ERROR) << "Failed to set local description: " << error;
Close(CHANNEL_CONNECTION_ERROR);
return;
}
AddPendingCandidatesIfPossible();
}
void WebrtcTransport::OnRemoteDescriptionSet(bool send_answer,
bool success,
const std::string& error) {
DCHECK(thread_checker_.CalledOnValidThread());
if (!peer_connection())
return;
if (!success) {
LOG(ERROR) << "Failed to set local description: " << error;
Close(CHANNEL_CONNECTION_ERROR);
return;
}
// Create and send answer on the server.
if (send_answer) {
peer_connection()->CreateAnswer(
CreateSessionDescriptionObserver::Create(
base::Bind(&WebrtcTransport::OnLocalSessionDescriptionCreated,
weak_factory_.GetWeakPtr())),
nullptr);
}
AddPendingCandidatesIfPossible();
}
void WebrtcTransport::OnSignalingChange(
webrtc::PeerConnectionInterface::SignalingState new_state) {
DCHECK(thread_checker_.CalledOnValidThread());
}
void WebrtcTransport::OnAddStream(
rtc::scoped_refptr<webrtc::MediaStreamInterface> stream) {
DCHECK(thread_checker_.CalledOnValidThread());
event_handler_->OnWebrtcTransportMediaStreamAdded(stream.get());
}
void WebrtcTransport::OnRemoveStream(
rtc::scoped_refptr<webrtc::MediaStreamInterface> stream) {
DCHECK(thread_checker_.CalledOnValidThread());
event_handler_->OnWebrtcTransportMediaStreamRemoved(stream.get());
}
void WebrtcTransport::OnDataChannel(
rtc::scoped_refptr<webrtc::DataChannelInterface> data_channel) {
DCHECK(thread_checker_.CalledOnValidThread());
event_handler_->OnWebrtcTransportIncomingDataChannel(
data_channel->label(),
base::MakeUnique<WebrtcDataStreamAdapter>(data_channel));
}
void WebrtcTransport::OnRenegotiationNeeded() {
DCHECK(thread_checker_.CalledOnValidThread());
if (transport_context_->role() == TransportRole::SERVER) {
RequestNegotiation();
} else {
// TODO(sergeyu): Is it necessary to support renegotiation initiated by the
// client?
NOTIMPLEMENTED();
}
}
void WebrtcTransport::RequestNegotiation() {
DCHECK(transport_context_->role() == TransportRole::SERVER);
if (!negotiation_pending_) {
negotiation_pending_ = true;
base::ThreadTaskRunnerHandle::Get()->PostTask(
FROM_HERE,
base::Bind(&WebrtcTransport::SendOffer, weak_factory_.GetWeakPtr()));
}
}
void WebrtcTransport::OnIceConnectionChange(
webrtc::PeerConnectionInterface::IceConnectionState new_state) {
DCHECK(thread_checker_.CalledOnValidThread());
if (!connected_ &&
new_state == webrtc::PeerConnectionInterface::kIceConnectionConnected) {
connected_ = true;
event_handler_->OnWebrtcTransportConnected();
}
}
void WebrtcTransport::OnIceGatheringChange(
webrtc::PeerConnectionInterface::IceGatheringState new_state) {
DCHECK(thread_checker_.CalledOnValidThread());
}
void WebrtcTransport::OnIceCandidate(
const webrtc::IceCandidateInterface* candidate) {
DCHECK(thread_checker_.CalledOnValidThread());
std::unique_ptr<XmlElement> candidate_element(
new XmlElement(QName(kTransportNamespace, "candidate")));
std::string candidate_str;
if (!candidate->ToString(&candidate_str)) {
LOG(ERROR) << "Failed to serialize local candidate.";
return;
}
candidate_element->SetBodyText(candidate_str);
candidate_element->SetAttr(QName(std::string(), "sdpMid"),
candidate->sdp_mid());
candidate_element->SetAttr(QName(std::string(), "sdpMLineIndex"),
base::IntToString(candidate->sdp_mline_index()));
EnsurePendingTransportInfoMessage();
pending_transport_info_message_->AddElement(candidate_element.release());
}
void WebrtcTransport::EnsurePendingTransportInfoMessage() {
DCHECK(thread_checker_.CalledOnValidThread());
// |transport_info_timer_| must be running iff
// |pending_transport_info_message_| exists.
DCHECK_EQ(pending_transport_info_message_ != nullptr,
transport_info_timer_.IsRunning());
if (!pending_transport_info_message_) {
pending_transport_info_message_.reset(
new XmlElement(QName(kTransportNamespace, "transport"), true));
// Delay sending the new candidates in case we get more candidates
// that we can send in one message.
transport_info_timer_.Start(
FROM_HERE, base::TimeDelta::FromMilliseconds(kTransportInfoSendDelayMs),
this, &WebrtcTransport::SendTransportInfo);
}
}
void WebrtcTransport::SendOffer() {
DCHECK(transport_context_->role() == TransportRole::SERVER);
DCHECK(negotiation_pending_);
negotiation_pending_ = false;
webrtc::FakeConstraints offer_config;
offer_config.AddMandatory(
webrtc::MediaConstraintsInterface::kOfferToReceiveVideo,
webrtc::MediaConstraintsInterface::kValueTrue);
offer_config.AddMandatory(
webrtc::MediaConstraintsInterface::kOfferToReceiveAudio,
webrtc::MediaConstraintsInterface::kValueFalse);
offer_config.AddMandatory(webrtc::MediaConstraintsInterface::kEnableDtlsSrtp,
webrtc::MediaConstraintsInterface::kValueTrue);
peer_connection()->CreateOffer(
CreateSessionDescriptionObserver::Create(
base::Bind(&WebrtcTransport::OnLocalSessionDescriptionCreated,
weak_factory_.GetWeakPtr())),
&offer_config);
}
void WebrtcTransport::SendTransportInfo() {
DCHECK(thread_checker_.CalledOnValidThread());
DCHECK(pending_transport_info_message_);
send_transport_info_callback_.Run(std::move(pending_transport_info_message_));
}
void WebrtcTransport::AddPendingCandidatesIfPossible() {
DCHECK(thread_checker_.CalledOnValidThread());
if (peer_connection()->signaling_state() ==
webrtc::PeerConnectionInterface::kStable) {
for (const auto& candidate : pending_incoming_candidates_) {
if (!peer_connection()->AddIceCandidate(candidate.get())) {
LOG(ERROR) << "Failed to add incoming candidate";
Close(INCOMPATIBLE_PROTOCOL);
return;
}
}
pending_incoming_candidates_.clear();
}
}
void WebrtcTransport::Close(ErrorCode error) {
DCHECK(thread_checker_.CalledOnValidThread());
if (!peer_connection_wrapper_)
return;
weak_factory_.InvalidateWeakPtrs();
// Close and delete PeerConnection asynchronously. PeerConnection may be on
// the stack and so it must be destroyed later.
base::ThreadTaskRunnerHandle::Get()->DeleteSoon(
FROM_HERE, peer_connection_wrapper_.release());
if (error != OK)
event_handler_->OnWebrtcTransportError(error);
}
} // namespace protocol
} // namespace remoting
|