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
|
// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/390223051): Remove C-library calls to fix the errors.
#pragma allow_unsafe_libc_calls
#endif
#include "remoting/test/fake_socket_factory.h"
#include <algorithm>
#include <cstddef>
#include <cstdlib>
#include <memory>
#include <numbers>
#include <string>
#include "base/containers/contains.h"
#include "base/functional/bind.h"
#include "base/functional/callback.h"
#include "base/location.h"
#include "base/memory/raw_ptr.h"
#include "base/notimplemented.h"
#include "base/task/single_thread_task_runner.h"
#include "base/time/time.h"
#include "net/base/io_buffer.h"
#include "remoting/base/leaky_bucket.h"
#include "third_party/webrtc/api/units/timestamp.h"
#include "third_party/webrtc/media/base/rtp_utils.h"
#include "third_party/webrtc/rtc_base/async_packet_socket.h"
#include "third_party/webrtc/rtc_base/network/received_packet.h"
#include "third_party/webrtc/rtc_base/socket.h"
#include "third_party/webrtc/rtc_base/time_utils.h"
namespace remoting {
namespace {
const int kPortRangeStart = 1024;
const int kPortRangeEnd = 65535;
double RandDouble() {
return static_cast<double>(std::rand()) / RAND_MAX;
}
double GetNormalRandom(double average, double stddev) {
// Based on Box-Muller transform, see
// http://en.wikipedia.org/wiki/Box_Muller_transform .
return average + stddev * sqrt(-2.0 * log(1.0 - RandDouble())) *
cos(RandDouble() * 2.0 * std::numbers::pi);
}
class FakeUdpSocket : public webrtc::AsyncPacketSocket {
public:
FakeUdpSocket(FakePacketSocketFactory* factory,
scoped_refptr<FakeNetworkDispatcher> dispatcher,
const webrtc::SocketAddress& local_address);
FakeUdpSocket(const FakeUdpSocket&) = delete;
FakeUdpSocket& operator=(const FakeUdpSocket&) = delete;
~FakeUdpSocket() override;
void ReceivePacket(const webrtc::SocketAddress& from,
const webrtc::SocketAddress& to,
const scoped_refptr<net::IOBuffer>& data,
int data_size);
// webrtc::AsyncPacketSocket interface.
webrtc::SocketAddress GetLocalAddress() const override;
webrtc::SocketAddress GetRemoteAddress() const override;
int Send(const void* data,
size_t data_size,
const webrtc::AsyncSocketPacketOptions& options) override;
int SendTo(const void* data,
size_t data_size,
const webrtc::SocketAddress& address,
const webrtc::AsyncSocketPacketOptions& options) override;
int Close() override;
State GetState() const override;
int GetOption(webrtc::Socket::Option option, int* value) override;
int SetOption(webrtc::Socket::Option option, int value) override;
int GetError() const override;
void SetError(int error) override;
private:
raw_ptr<FakePacketSocketFactory> factory_;
scoped_refptr<FakeNetworkDispatcher> dispatcher_;
webrtc::SocketAddress local_address_;
State state_;
};
FakeUdpSocket::FakeUdpSocket(FakePacketSocketFactory* factory,
scoped_refptr<FakeNetworkDispatcher> dispatcher,
const webrtc::SocketAddress& local_address)
: factory_(factory),
dispatcher_(dispatcher),
local_address_(local_address),
state_(STATE_BOUND) {}
FakeUdpSocket::~FakeUdpSocket() {
factory_->OnSocketDestroyed(local_address_.port());
}
void FakeUdpSocket::ReceivePacket(const webrtc::SocketAddress& from,
const webrtc::SocketAddress& to,
const scoped_refptr<net::IOBuffer>& data,
int data_size) {
NotifyPacketReceived(webrtc::ReceivedIpPacket(
webrtc::MakeArrayView(data->bytes(), data_size), from,
webrtc::Timestamp::Micros(webrtc::TimeMicros())));
}
webrtc::SocketAddress FakeUdpSocket::GetLocalAddress() const {
return local_address_;
}
webrtc::SocketAddress FakeUdpSocket::GetRemoteAddress() const {
NOTREACHED();
}
int FakeUdpSocket::Send(const void* data,
size_t data_size,
const webrtc::AsyncSocketPacketOptions& options) {
NOTREACHED();
}
int FakeUdpSocket::SendTo(const void* data,
size_t data_size,
const webrtc::SocketAddress& address,
const webrtc::AsyncSocketPacketOptions& options) {
auto buffer = base::MakeRefCounted<net::IOBufferWithSize>(data_size);
memcpy(buffer->data(), data, data_size);
base::TimeTicks now = base::TimeTicks::Now();
webrtc::ApplyPacketOptions(buffer->bytes(), data_size,
options.packet_time_params,
(now - base::TimeTicks()).InMicroseconds());
SignalSentPacket(
this, webrtc::SentPacketInfo(options.packet_id, webrtc::TimeMillis()));
dispatcher_->DeliverPacket(local_address_, address, buffer, data_size);
return data_size;
}
int FakeUdpSocket::Close() {
state_ = STATE_CLOSED;
return 0;
}
webrtc::AsyncPacketSocket::State FakeUdpSocket::GetState() const {
return state_;
}
int FakeUdpSocket::GetOption(webrtc::Socket::Option option, int* value) {
NOTIMPLEMENTED();
return -1;
}
int FakeUdpSocket::SetOption(webrtc::Socket::Option option, int value) {
// All options are currently ignored.
return 0;
}
int FakeUdpSocket::GetError() const {
return 0;
}
void FakeUdpSocket::SetError(int error) {
NOTREACHED();
}
} // namespace
FakePacketSocketFactory::PendingPacket::PendingPacket() : data_size(0) {}
FakePacketSocketFactory::PendingPacket::PendingPacket(
const webrtc::SocketAddress& from,
const webrtc::SocketAddress& to,
const scoped_refptr<net::IOBuffer>& data,
int data_size)
: from(from), to(to), data(data), data_size(data_size) {}
FakePacketSocketFactory::PendingPacket::PendingPacket(
const PendingPacket& other) = default;
FakePacketSocketFactory::PendingPacket::~PendingPacket() = default;
FakePacketSocketFactory::FakePacketSocketFactory(
FakeNetworkDispatcher* dispatcher)
: task_runner_(base::SingleThreadTaskRunner::GetCurrentDefault()),
dispatcher_(dispatcher),
address_(dispatcher_->AllocateAddress()),
out_of_order_rate_(0.0),
next_port_(kPortRangeStart) {
dispatcher_->AddNode(this);
}
FakePacketSocketFactory::~FakePacketSocketFactory() {
CHECK(udp_sockets_.empty());
dispatcher_->RemoveNode(this);
}
void FakePacketSocketFactory::OnSocketDestroyed(int port) {
DCHECK(task_runner_->BelongsToCurrentThread());
udp_sockets_.erase(port);
}
void FakePacketSocketFactory::SetBandwidth(int bandwidth, int max_buffer) {
DCHECK(task_runner_->BelongsToCurrentThread());
if (bandwidth <= 0) {
leaky_bucket_.reset();
} else {
leaky_bucket_ = std::make_unique<LeakyBucket>(max_buffer, bandwidth);
}
}
void FakePacketSocketFactory::SetLatency(base::TimeDelta average,
base::TimeDelta stddev) {
DCHECK(task_runner_->BelongsToCurrentThread());
latency_average_ = average;
latency_stddev_ = stddev;
}
webrtc::AsyncPacketSocket* FakePacketSocketFactory::CreateUdpSocket(
const webrtc::SocketAddress& local_address,
uint16_t min_port,
uint16_t max_port) {
DCHECK(task_runner_->BelongsToCurrentThread());
int port = -1;
if (min_port > 0 && max_port > 0) {
for (uint16_t i = min_port; i <= max_port; ++i) {
if (!base::Contains(udp_sockets_, i)) {
port = i;
break;
}
}
if (port < 0) {
return nullptr;
}
} else {
do {
port = next_port_;
next_port_ =
(next_port_ >= kPortRangeEnd) ? kPortRangeStart : (next_port_ + 1);
} while (base::Contains(udp_sockets_, port));
}
CHECK(local_address.ipaddr() == address_);
FakeUdpSocket* result = new FakeUdpSocket(
this, dispatcher_, webrtc::SocketAddress(local_address.ipaddr(), port));
udp_sockets_[port] = base::BindRepeating(&FakeUdpSocket::ReceivePacket,
base::Unretained(result));
return result;
}
webrtc::AsyncListenSocket* FakePacketSocketFactory::CreateServerTcpSocket(
const webrtc::SocketAddress& local_address,
uint16_t min_port,
uint16_t max_port,
int opts) {
return nullptr;
}
webrtc::AsyncPacketSocket* FakePacketSocketFactory::CreateClientTcpSocket(
const webrtc::SocketAddress& local_address,
const webrtc::SocketAddress& remote_address,
const webrtc::PacketSocketTcpOptions& opts) {
return nullptr;
}
std::unique_ptr<webrtc::AsyncDnsResolverInterface>
FakePacketSocketFactory::CreateAsyncDnsResolver() {
return nullptr;
}
const scoped_refptr<base::SingleThreadTaskRunner>&
FakePacketSocketFactory::GetThread() const {
return task_runner_;
}
const webrtc::IPAddress& FakePacketSocketFactory::GetAddress() const {
return address_;
}
void FakePacketSocketFactory::ReceivePacket(
const webrtc::SocketAddress& from,
const webrtc::SocketAddress& to,
const scoped_refptr<net::IOBuffer>& data,
int data_size) {
DCHECK(task_runner_->BelongsToCurrentThread());
DCHECK(to.ipaddr() == address_);
base::TimeDelta delay;
if (leaky_bucket_) {
base::TimeTicks now = base::TimeTicks::Now();
if (!leaky_bucket_->RefillOrSpill(data_size, now)) {
++total_packets_dropped_;
// Drop the packet.
return;
}
delay = std::max(base::TimeDelta(), leaky_bucket_->GetEmptyTime() - now);
}
total_buffer_delay_ += delay;
if (delay > max_buffer_delay_) {
max_buffer_delay_ = delay;
}
++total_packets_received_;
if (latency_average_.is_positive()) {
delay += base::Milliseconds(GetNormalRandom(
latency_average_.InMillisecondsF(), latency_stddev_.InMillisecondsF()));
}
if (delay.is_negative()) {
delay = base::TimeDelta();
}
// Put the packet to the |pending_packets_| and post a task for
// DoReceivePackets(). Note that the DoReceivePackets() task posted here may
// deliver a different packet, not the one added to the queue here. This
// would happen if another task gets posted with a shorted delay or when
// |out_of_order_rate_| is greater than 0. It's implemented this way to
// decouple latency variability from out-of-order delivery.
PendingPacket packet(from, to, data, data_size);
pending_packets_.push_back(packet);
task_runner_->PostDelayedTask(
FROM_HERE,
base::BindOnce(&FakePacketSocketFactory::DoReceivePacket,
weak_factory_.GetWeakPtr()),
delay);
}
void FakePacketSocketFactory::DoReceivePacket() {
DCHECK(task_runner_->BelongsToCurrentThread());
PendingPacket packet;
if (pending_packets_.size() > 1 && RandDouble() < out_of_order_rate_) {
auto it = pending_packets_.begin();
++it;
packet = *it;
pending_packets_.erase(it);
} else {
packet = pending_packets_.front();
pending_packets_.pop_front();
}
auto iter = udp_sockets_.find(packet.to.port());
if (iter == udp_sockets_.end()) {
// Invalid port number.
return;
}
iter->second.Run(packet.from, packet.to, packet.data, packet.data_size);
}
void FakePacketSocketFactory::ResetStats() {
total_packets_dropped_ = 0;
total_packets_received_ = 0;
total_buffer_delay_ = base::TimeDelta();
max_buffer_delay_ = base::TimeDelta();
}
} // namespace remoting
|