blob: dc51bb510a6e48d6e16f0aa0b5798748f865e3ee [file] [log] [blame]
/*
* Copyright (C) 2015 Ericsson AB. All rights reserved.
* Copyright (C) 2016-2017 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer
* in the documentation and/or other materials provided with the
* distribution.
* 3. Neither the name of Ericsson nor the names of its contributors
* may be used to endorse or promote products derived from this
* software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "config.h"
#include "PeerConnectionBackend.h"
#if ENABLE(WEB_RTC)
#include "EventNames.h"
#include "JSRTCSessionDescription.h"
#include "Logging.h"
#include "RTCIceCandidate.h"
#include "RTCPeerConnection.h"
#include "RTCPeerConnectionIceEvent.h"
#include "RuntimeEnabledFeatures.h"
#include <wtf/text/StringBuilder.h>
#include <wtf/text/StringConcatenateNumbers.h>
namespace WebCore {
using namespace PAL;
#if !USE(LIBWEBRTC)
static std::unique_ptr<PeerConnectionBackend> createNoPeerConnectionBackend(RTCPeerConnection&)
{
return nullptr;
}
CreatePeerConnectionBackend PeerConnectionBackend::create = createNoPeerConnectionBackend;
#endif
PeerConnectionBackend::PeerConnectionBackend(RTCPeerConnection& peerConnection)
: m_peerConnection(peerConnection)
#if !RELEASE_LOG_DISABLED
, m_logger(peerConnection.logger())
, m_logIdentifier(peerConnection.logIdentifier())
#endif
{
}
void PeerConnectionBackend::createOffer(RTCOfferOptions&& options, PeerConnection::SessionDescriptionPromise&& promise)
{
ASSERT(!m_offerAnswerPromise);
ASSERT(!m_peerConnection.isClosed());
m_offerAnswerPromise = WTFMove(promise);
doCreateOffer(WTFMove(options));
}
void PeerConnectionBackend::createOfferSucceeded(String&& sdp)
{
ASSERT(isMainThread());
ALWAYS_LOG(LOGIDENTIFIER, "Create offer succeeded:\n", sdp);
if (m_peerConnection.isClosed())
return;
ASSERT(m_offerAnswerPromise);
m_offerAnswerPromise->resolve(RTCSessionDescription::Init { RTCSdpType::Offer, filterSDP(WTFMove(sdp)) });
m_offerAnswerPromise = std::nullopt;
}
void PeerConnectionBackend::createOfferFailed(Exception&& exception)
{
ASSERT(isMainThread());
ALWAYS_LOG(LOGIDENTIFIER, "Create offer failed:", exception.message());
if (m_peerConnection.isClosed())
return;
ASSERT(m_offerAnswerPromise);
m_offerAnswerPromise->reject(WTFMove(exception));
m_offerAnswerPromise = std::nullopt;
}
void PeerConnectionBackend::createAnswer(RTCAnswerOptions&& options, PeerConnection::SessionDescriptionPromise&& promise)
{
ASSERT(!m_offerAnswerPromise);
ASSERT(!m_peerConnection.isClosed());
m_offerAnswerPromise = WTFMove(promise);
doCreateAnswer(WTFMove(options));
}
void PeerConnectionBackend::createAnswerSucceeded(String&& sdp)
{
ASSERT(isMainThread());
ALWAYS_LOG(LOGIDENTIFIER, "Create answer succeeded:\n", sdp);
if (m_peerConnection.isClosed())
return;
ASSERT(m_offerAnswerPromise);
m_offerAnswerPromise->resolve(RTCSessionDescription::Init { RTCSdpType::Answer, WTFMove(sdp) });
m_offerAnswerPromise = std::nullopt;
}
void PeerConnectionBackend::createAnswerFailed(Exception&& exception)
{
ASSERT(isMainThread());
ALWAYS_LOG(LOGIDENTIFIER, "Create answer failed:", exception.message());
if (m_peerConnection.isClosed())
return;
ASSERT(m_offerAnswerPromise);
m_offerAnswerPromise->reject(WTFMove(exception));
m_offerAnswerPromise = std::nullopt;
}
static inline bool isLocalDescriptionTypeValidForState(RTCSdpType type, RTCSignalingState state)
{
switch (state) {
case RTCSignalingState::Stable:
return type == RTCSdpType::Offer;
case RTCSignalingState::HaveLocalOffer:
return type == RTCSdpType::Offer;
case RTCSignalingState::HaveRemoteOffer:
return type == RTCSdpType::Answer || type == RTCSdpType::Pranswer;
case RTCSignalingState::HaveLocalPranswer:
return type == RTCSdpType::Answer || type == RTCSdpType::Pranswer;
default:
return false;
};
ASSERT_NOT_REACHED();
return false;
}
void PeerConnectionBackend::setLocalDescription(RTCSessionDescription& sessionDescription, DOMPromiseDeferred<void>&& promise)
{
ASSERT(!m_peerConnection.isClosed());
if (!isLocalDescriptionTypeValidForState(sessionDescription.type(), m_peerConnection.signalingState())) {
promise.reject(InvalidStateError, "Description type incompatible with current signaling state");
return;
}
m_setDescriptionPromise = WTFMove(promise);
doSetLocalDescription(sessionDescription);
}
void PeerConnectionBackend::setLocalDescriptionSucceeded()
{
ASSERT(isMainThread());
ALWAYS_LOG(LOGIDENTIFIER);
if (m_peerConnection.isClosed())
return;
ASSERT(m_setDescriptionPromise);
m_setDescriptionPromise->resolve();
m_setDescriptionPromise = std::nullopt;
}
void PeerConnectionBackend::setLocalDescriptionFailed(Exception&& exception)
{
ASSERT(isMainThread());
ALWAYS_LOG(LOGIDENTIFIER, "Set local description failed:", exception.message());
if (m_peerConnection.isClosed())
return;
ASSERT(m_setDescriptionPromise);
m_setDescriptionPromise->reject(WTFMove(exception));
m_setDescriptionPromise = std::nullopt;
}
static inline bool isRemoteDescriptionTypeValidForState(RTCSdpType type, RTCSignalingState state)
{
switch (state) {
case RTCSignalingState::Stable:
return type == RTCSdpType::Offer;
case RTCSignalingState::HaveLocalOffer:
return type == RTCSdpType::Answer || type == RTCSdpType::Pranswer;
case RTCSignalingState::HaveRemoteOffer:
return type == RTCSdpType::Offer;
case RTCSignalingState::HaveRemotePranswer:
return type == RTCSdpType::Answer || type == RTCSdpType::Pranswer;
default:
return false;
};
ASSERT_NOT_REACHED();
return false;
}
void PeerConnectionBackend::setRemoteDescription(RTCSessionDescription& sessionDescription, DOMPromiseDeferred<void>&& promise)
{
ASSERT(!m_peerConnection.isClosed());
if (!isRemoteDescriptionTypeValidForState(sessionDescription.type(), m_peerConnection.signalingState())) {
promise.reject(InvalidStateError, "Description type incompatible with current signaling state");
return;
}
m_setDescriptionPromise = WTFMove(promise);
doSetRemoteDescription(sessionDescription);
}
void PeerConnectionBackend::setRemoteDescriptionSucceeded()
{
ASSERT(isMainThread());
ALWAYS_LOG(LOGIDENTIFIER, "Set remote description succeeded");
if (m_peerConnection.isClosed())
return;
ASSERT(m_setDescriptionPromise);
m_setDescriptionPromise->resolve();
m_setDescriptionPromise = std::nullopt;
}
void PeerConnectionBackend::setRemoteDescriptionFailed(Exception&& exception)
{
ASSERT(isMainThread());
ALWAYS_LOG(LOGIDENTIFIER, "Set remote description failed:", exception.message());
if (m_peerConnection.isClosed())
return;
ASSERT(m_setDescriptionPromise);
m_setDescriptionPromise->reject(WTFMove(exception));
m_setDescriptionPromise = std::nullopt;
}
static String extractIPAddres(const String& sdp)
{
ASSERT(sdp.contains(" host "));
unsigned counter = 0;
for (auto item : StringView { sdp }.split(' ')) {
if (++counter == 5)
return item.toString();
}
return { };
}
void PeerConnectionBackend::addIceCandidate(RTCIceCandidate* iceCandidate, DOMPromiseDeferred<void>&& promise)
{
ASSERT(!m_peerConnection.isClosed());
if (!iceCandidate) {
if (m_waitingForMDNSResolution) {
m_finishedReceivingCandidates = true;
m_endOfIceCandidatePromise = WTFMove(promise);
return;
}
endOfIceCandidates(WTFMove(promise));
return;
}
if (RuntimeEnabledFeatures::sharedFeatures().mdnsICECandidatesEnabled()) {
auto name = extractIPAddres(iceCandidate->candidate());
if (name.endsWith(".local")) {
++m_waitingForMDNSResolution;
auto& document = downcast<Document>(*m_peerConnection.scriptExecutionContext());
auto& provider = document.page()->libWebRTCProvider();
provider.resolveMDNSName(document.sessionID(), name, [peerConnection = makeRef(m_peerConnection), this, name, iceCandidate = makeRef(*iceCandidate), promise = WTFMove(promise)] (LibWebRTCProvider::IPAddressOrError&& result) mutable {
if (peerConnection->isStopped())
return;
--m_waitingForMDNSResolution;
if (!result.has_value()) {
if (result.error() != MDNSRegisterError::Timeout)
peerConnection->scriptExecutionContext()->addConsoleMessage(MessageSource::JS, MessageLevel::Warning, makeString("MDNS resolution of a host candidate failed with error", (unsigned)result.error()));
return;
}
auto candidate = iceCandidate->candidate();
candidate.replace(name, result.value());
iceCandidate->setCandidate(WTFMove(candidate));
m_addIceCandidatePromise = WTFMove(promise);
this->doAddIceCandidate(iceCandidate);
});
return;
}
}
// FIXME: As per https://w3c.github.io/webrtc-pc/#dom-rtcpeerconnection-addicecandidate(), this check should be done before enqueuing the task.
if (iceCandidate->sdpMid().isNull() && !iceCandidate->sdpMLineIndex()) {
promise.reject(Exception { TypeError, ASCIILiteral("Trying to add a candidate that is missing both sdpMid and sdpMLineIndex") });
return;
}
m_addIceCandidatePromise = WTFMove(promise);
doAddIceCandidate(*iceCandidate);
}
void PeerConnectionBackend::addIceCandidateSucceeded()
{
ASSERT(isMainThread());
ALWAYS_LOG(LOGIDENTIFIER, "Adding ice candidate succeeded");
if (m_peerConnection.isClosed())
return;
// FIXME: Update remote description and set ICE connection state to checking if not already done so.
ASSERT(m_addIceCandidatePromise);
m_addIceCandidatePromise->resolve();
m_addIceCandidatePromise = std::nullopt;
if (!m_waitingForMDNSResolution && m_finishedReceivingCandidates)
endOfIceCandidates(WTFMove(*m_endOfIceCandidatePromise));
}
void PeerConnectionBackend::addIceCandidateFailed(Exception&& exception)
{
ASSERT(isMainThread());
ALWAYS_LOG(LOGIDENTIFIER, "Adding ice candidate failed:", exception.message());
if (m_peerConnection.isClosed())
return;
ASSERT(m_addIceCandidatePromise);
m_addIceCandidatePromise->reject(WTFMove(exception));
m_addIceCandidatePromise = std::nullopt;
if (!m_waitingForMDNSResolution && m_finishedReceivingCandidates)
endOfIceCandidates(WTFMove(*m_endOfIceCandidatePromise));
}
void PeerConnectionBackend::fireICECandidateEvent(RefPtr<RTCIceCandidate>&& candidate)
{
ASSERT(isMainThread());
m_peerConnection.fireEvent(RTCPeerConnectionIceEvent::create(false, false, WTFMove(candidate)));
}
void PeerConnectionBackend::enableICECandidateFiltering()
{
m_shouldFilterICECandidates = true;
}
void PeerConnectionBackend::disableICECandidateFiltering()
{
m_shouldFilterICECandidates = false;
for (auto& pendingICECandidate : m_pendingICECandidates)
fireICECandidateEvent(RTCIceCandidate::create(WTFMove(pendingICECandidate.sdp), WTFMove(pendingICECandidate.mid), pendingICECandidate.sdpMLineIndex));
m_pendingICECandidates.clear();
}
static String filterICECandidate(String&& sdp)
{
ASSERT(!sdp.contains(" host "));
if (!sdp.contains(" raddr "))
return WTFMove(sdp);
bool skipNextItem = false;
bool isFirst = true;
StringBuilder filteredSDP;
sdp.split(' ', false, [&](StringView item) {
if (skipNextItem) {
skipNextItem = false;
return;
}
if (item == "raddr") {
filteredSDP.append(" raddr 0.0.0.0");
skipNextItem = true;
return;
}
if (item == "rport") {
filteredSDP.append(" rport 0");
skipNextItem = true;
return;
}
if (isFirst)
isFirst = false;
else
filteredSDP.append(' ');
filteredSDP.append(item);
});
return filteredSDP.toString();
}
String PeerConnectionBackend::filterSDP(String&& sdp) const
{
if (!m_shouldFilterICECandidates)
return sdp;
StringBuilder filteredSDP;
sdp.split('\n', false, [&filteredSDP](StringView line) {
if (!line.startsWith("a=candidate"))
filteredSDP.append(line);
else if (line.find(" host ", 11) == notFound)
filteredSDP.append(filterICECandidate(line.toString()));
else
return;
filteredSDP.append('\n');
});
return filteredSDP.toString();
}
void PeerConnectionBackend::newICECandidate(String&& sdp, String&& mid, unsigned short sdpMLineIndex)
{
ALWAYS_LOG(LOGIDENTIFIER, "Gathered ice candidate:", sdp);
m_finishedGatheringCandidates = false;
if (!m_shouldFilterICECandidates) {
fireICECandidateEvent(RTCIceCandidate::create(WTFMove(sdp), WTFMove(mid), sdpMLineIndex));
return;
}
if (sdp.find(" host ", 0) != notFound) {
// FIXME: We might need to clear all pending candidates when setting again local description.
m_pendingICECandidates.append(PendingICECandidate { String { sdp }, WTFMove(mid), sdpMLineIndex});
if (RuntimeEnabledFeatures::sharedFeatures().mdnsICECandidatesEnabled()) {
auto ipAddress = extractIPAddres(sdp);
// We restrict to IPv4 candidates for now.
if (ipAddress.contains('.'))
registerMDNSName(ipAddress);
}
return;
}
fireICECandidateEvent(RTCIceCandidate::create(filterICECandidate(WTFMove(sdp)), WTFMove(mid), sdpMLineIndex));
}
void PeerConnectionBackend::doneGatheringCandidates()
{
ASSERT(isMainThread());
ALWAYS_LOG(LOGIDENTIFIER, "Finished ice candidate gathering");
m_finishedGatheringCandidates = true;
if (m_waitingForMDNSRegistration)
return;
m_peerConnection.fireEvent(RTCPeerConnectionIceEvent::create(false, false, nullptr));
m_peerConnection.updateIceGatheringState(RTCIceGatheringState::Complete);
m_pendingICECandidates.clear();
}
void PeerConnectionBackend::registerMDNSName(const String& ipAddress)
{
++m_waitingForMDNSRegistration;
auto& document = downcast<Document>(*m_peerConnection.scriptExecutionContext());
auto& provider = document.page()->libWebRTCProvider();
provider.registerMDNSName(document.sessionID(), document.identifier().toUInt64(), ipAddress, [peerConnection = makeRef(m_peerConnection), this, ipAddress] (LibWebRTCProvider::MDNSNameOrError&& result) {
if (peerConnection->isStopped())
return;
--m_waitingForMDNSRegistration;
if (!result.has_value()) {
m_peerConnection.scriptExecutionContext()->addConsoleMessage(MessageSource::JS, MessageLevel::Warning, makeString("MDNS registration of a host candidate failed with error", (unsigned)result.error()));
return;
}
this->finishedRegisteringMDNSName(ipAddress, result.value());
});
}
void PeerConnectionBackend::finishedRegisteringMDNSName(const String& ipAddress, const String& name)
{
Vector<PendingICECandidate*> candidates;
for (auto& candidate : m_pendingICECandidates) {
if (candidate.sdp.find(ipAddress) != notFound) {
auto sdp = candidate.sdp;
sdp.replace(ipAddress, name);
fireICECandidateEvent(RTCIceCandidate::create(String(sdp), String(candidate.mid), candidate.sdpMLineIndex));
candidates.append(&candidate);
}
}
m_pendingICECandidates.removeAllMatching([&] (const auto& candidate) {
return candidates.contains(&candidate);
});
if (!m_waitingForMDNSRegistration && m_finishedGatheringCandidates)
doneGatheringCandidates();
}
void PeerConnectionBackend::updateSignalingState(RTCSignalingState newSignalingState)
{
ASSERT(isMainThread());
if (newSignalingState != m_peerConnection.signalingState()) {
m_peerConnection.setSignalingState(newSignalingState);
m_peerConnection.fireEvent(Event::create(eventNames().signalingstatechangeEvent, false, false));
}
}
void PeerConnectionBackend::stop()
{
m_offerAnswerPromise = std::nullopt;
m_setDescriptionPromise = std::nullopt;
m_addIceCandidatePromise = std::nullopt;
doStop();
}
void PeerConnectionBackend::markAsNeedingNegotiation()
{
if (m_negotiationNeeded)
return;
m_negotiationNeeded = true;
if (m_peerConnection.signalingState() == RTCSignalingState::Stable)
m_peerConnection.scheduleNegotiationNeededEvent();
}
#if !RELEASE_LOG_DISABLED
WTFLogChannel& PeerConnectionBackend::logChannel() const
{
return LogWebRTC;
}
#endif
} // namespace WebCore
#endif // ENABLE(WEB_RTC)