blob: ecaeb144186273aca96d4350a418bdd245821c7b [file] [log] [blame]
/*
* Copyright (C) 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.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS 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 APPLE INC. OR ITS 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 "LibWebRTCSocket.h"
#if USE(LIBWEBRTC)
#include "DataReference.h"
#include "LibWebRTCSocketFactory.h"
#include "NetworkProcessConnection.h"
#include "NetworkRTCProviderMessages.h"
#include "RTCPacketOptions.h"
#include "WebProcess.h"
#include <WebCore/SharedBuffer.h>
#include <wtf/Function.h>
#include <wtf/MainThread.h>
namespace WebKit {
LibWebRTCSocket::LibWebRTCSocket(LibWebRTCSocketFactory& factory, const void* socketGroup, Type type, const rtc::SocketAddress& localAddress, const rtc::SocketAddress& remoteAddress)
: m_factory(factory)
, m_identifier(WebCore::LibWebRTCSocketIdentifier::generate())
, m_type(type)
, m_localAddress(localAddress)
, m_remoteAddress(remoteAddress)
, m_socketGroup(socketGroup)
{
m_factory.addSocket(*this);
}
LibWebRTCSocket::~LibWebRTCSocket()
{
Close();
m_factory.removeSocket(*this);
}
rtc::SocketAddress LibWebRTCSocket::GetLocalAddress() const
{
return m_localAddress;
}
rtc::SocketAddress LibWebRTCSocket::GetRemoteAddress() const
{
return m_remoteAddress;
}
void LibWebRTCSocket::signalAddressReady(const rtc::SocketAddress& address)
{
m_localAddress = address;
m_state = (m_type == Type::ClientTCP) ? STATE_CONNECTED : STATE_BOUND;
SignalAddressReady(this, m_localAddress);
}
void LibWebRTCSocket::signalReadPacket(const uint8_t* data, size_t size, rtc::SocketAddress&& address, int64_t timestamp)
{
if (m_isSuspended)
return;
m_remoteAddress = WTFMove(address);
SignalReadPacket(this, reinterpret_cast<const char*>(data), size, m_remoteAddress, timestamp);
}
void LibWebRTCSocket::signalSentPacket(int rtcPacketID, int64_t sendTimeMs)
{
if (m_beingSentPacketSizes.isEmpty())
return;
m_availableSendingBytes += m_beingSentPacketSizes.takeFirst();
SignalSentPacket(this, rtc::SentPacket(rtcPacketID, sendTimeMs));
if (m_shouldSignalReadyToSend) {
m_shouldSignalReadyToSend = false;
SignalReadyToSend(this);
}
}
void LibWebRTCSocket::signalConnect()
{
m_state = STATE_CONNECTED;
SignalConnect(this);
}
void LibWebRTCSocket::signalClose(int error)
{
m_state = STATE_CLOSED;
SignalClose(this, error);
}
void LibWebRTCSocket::signalNewConnection(rtc::AsyncPacketSocket* newConnectionSocket)
{
ASSERT(m_type == Type::ServerTCP);
SignalNewConnection(this, newConnectionSocket);
}
bool LibWebRTCSocket::willSend(size_t size)
{
if (size > m_availableSendingBytes) {
m_shouldSignalReadyToSend = true;
setError(EWOULDBLOCK);
return false;
}
m_availableSendingBytes -= size;
m_beingSentPacketSizes.append(size);
return true;
}
int LibWebRTCSocket::SendTo(const void *value, size_t size, const rtc::SocketAddress& address, const rtc::PacketOptions& options)
{
auto* connection = m_factory.connection();
if (!connection || !willSend(size))
return -1;
if (m_isSuspended)
return size;
IPC::DataReference data(static_cast<const uint8_t*>(value), size);
connection->send(Messages::NetworkRTCProvider::SendToSocket { m_identifier, data, RTCNetwork::SocketAddress { address }, RTCPacketOptions { options } }, 0);
return size;
}
int LibWebRTCSocket::Close()
{
auto* connection = m_factory.connection();
if (!connection || m_state == STATE_CLOSED)
return 0;
m_state = STATE_CLOSED;
connection->send(Messages::NetworkRTCProvider::CloseSocket { m_identifier }, 0);
return 0;
}
int LibWebRTCSocket::GetOption(rtc::Socket::Option option, int* value)
{
ASSERT(option < MAX_SOCKET_OPTION);
if (auto storedValue = m_options[option]) {
*value = *storedValue;
return 0;
}
return -1;
}
int LibWebRTCSocket::SetOption(rtc::Socket::Option option, int value)
{
ASSERT(option < MAX_SOCKET_OPTION);
m_options[option] = value;
if (auto* connection = m_factory.connection())
connection->send(Messages::NetworkRTCProvider::SetSocketOption { m_identifier, option, value }, 0);
return 0;
}
void LibWebRTCSocket::resume()
{
m_isSuspended = false;
// On resume, we notify libwebrtc that TCP sockets are errored.
// We notify libwebrtc that all pending UDP packets have been sent even though we actually dropped them.
if (m_type != Type::UDP) {
signalClose(-1);
return;
}
auto currentTime = rtc::TimeMillis();
while (!m_beingSentPacketSizes.isEmpty())
signalSentPacket(-1, currentTime);
}
void LibWebRTCSocket::suspend()
{
m_isSuspended = true;
// On suspend, we close TCP sockets as we cannot make sure packets are delivered reliably.
if (m_type == Type::UDP)
return;
if (auto* connection = m_factory.connection())
connection->send(Messages::NetworkRTCProvider::CloseSocket { m_identifier }, 0);
}
} // namespace WebKit
#endif // USE(LIBWEBRTC)