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
|
// 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.
#include "remoting/protocol/chromium_socket_factory.h"
#include <stddef.h>
#include <stdint.h>
#include <memory>
#include <numeric>
#include <string>
#include <vector>
#include "base/containers/contains.h"
#include "base/containers/flat_set.h"
#include "base/logging.h"
#include "base/memory/raw_ptr.h"
#include "base/run_loop.h"
#include "base/strings/string_number_conversions.h"
#include "base/task/single_thread_task_runner.h"
#include "base/test/task_environment.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.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_address.h"
#include "third_party/webrtc/rtc_base/time_utils.h"
namespace remoting::protocol {
namespace {
// UDP packets may be lost, so we have to retry sending it more than once.
constexpr int kMaxAttempts = 3;
// The amount of time to wait for packets to be received for each attempt.
constexpr base::TimeDelta kAttemptPeriod = base::Seconds(5);
class ConstantScopedFakeClock : public webrtc::ClockInterface {
public:
ConstantScopedFakeClock() { prev_clock_ = webrtc::SetClockForTesting(this); }
~ConstantScopedFakeClock() override {
webrtc::SetClockForTesting(prev_clock_);
}
int64_t TimeNanos() const override { return 1337L * 1000L * 1000L; }
private:
raw_ptr<ClockInterface> prev_clock_;
};
} // namespace
class ChromiumSocketFactoryTest : public testing::Test,
public sigslot::has_slots<> {
public:
void SetUp() override {
socket_factory_ = std::make_unique<ChromiumPacketSocketFactory>(nullptr);
socket_.reset(socket_factory_->CreateUdpSocket(
webrtc::SocketAddress("127.0.0.1", 0), 0, 0));
ASSERT_TRUE(socket_.get() != nullptr);
EXPECT_EQ(socket_->GetState(), webrtc::AsyncPacketSocket::STATE_BOUND);
socket_->RegisterReceivedPacketCallback(
[&](webrtc::AsyncPacketSocket* socket,
const webrtc::ReceivedIpPacket& packet) {
OnPacket(socket, packet);
});
}
void OnPacket(webrtc::AsyncPacketSocket* socket,
const webrtc::ReceivedIpPacket& packet) {
EXPECT_EQ(socket, socket_.get());
received_packets_.push_back(
std::string(reinterpret_cast<const char*>(packet.payload().data()),
packet.payload().size()));
last_address_ = packet.source_address();
last_packet_time_ = packet.arrival_time()->us();
if (received_packets_.size() >= expected_packet_count_) {
run_loop_.Quit();
}
}
void OnSentPacket(webrtc::AsyncPacketSocket* socket,
const webrtc::SentPacketInfo& sent_packet) {
// It is expected that send_packet was set using webrtc::TimeMillis(),
// which will use the fake clock set above, so the times will be equal
int64_t fake_clock_ms = webrtc::TimeMillis();
EXPECT_EQ(fake_clock_ms, sent_packet.send_time_ms);
}
void VerifyCanSendAndReceive(webrtc::AsyncPacketSocket* sender,
uint32_t packet_count = 1) {
CHECK_GT(packet_count, 0U);
base::flat_set<std::string> packets_to_send;
packets_to_send.reserve(packet_count);
for (uint32_t i = 0; i < packet_count; i++) {
packets_to_send.insert("TEST PACKET " + base::NumberToString(i));
}
int attempts = 0;
while (!packets_to_send.empty() && attempts++ < kMaxAttempts) {
LOG(INFO) << "ATTEMPT " << attempts;
// Reset members to prepare to send/receive the expected number of packets
expected_packet_count_ = packets_to_send.size();
received_packets_.clear();
webrtc::AsyncSocketPacketOptions options;
LOG(INFO) << "packets_to_send: " << packets_to_send.size();
for (const auto& test_packet : packets_to_send) {
int result = sender->SendTo(test_packet.data(), test_packet.size(),
socket_->GetLocalAddress(), options);
PLOG_IF(WARNING, result < 0) << "Failed to send packet";
}
task_environment_.GetMainThreadTaskRunner()->PostDelayedTask(
FROM_HERE, run_loop_.QuitClosure(), kAttemptPeriod);
run_loop_.Run();
LOG(INFO) << "received_packets_: " << received_packets_.size();
for (const auto& packet_data : received_packets_) {
packets_to_send.erase(packet_data);
}
}
// Verify all packets were sent and received. Use EQ check so the number of
// packets which were not sent will be included in the error message.
EXPECT_EQ(packets_to_send.size(), 0U);
EXPECT_EQ(sender->GetLocalAddress(), last_address_);
}
void VerifyCanSendAndReceive(webrtc::AsyncPacketSocket* sender,
const std::string& packet_data) {
// Reset members to prepare to send/receive the expected number of packets.
expected_packet_count_ = 1;
received_packets_.clear();
int attempts = 0;
while (received_packets_.empty() && attempts++ < kMaxAttempts) {
webrtc::AsyncSocketPacketOptions options;
int result = sender->SendTo(packet_data.data(), packet_data.size(),
socket_->GetLocalAddress(), options);
PLOG_IF(WARNING, result < 0) << "Failed to send packet";
task_environment_.GetMainThreadTaskRunner()->PostDelayedTask(
FROM_HERE, run_loop_.QuitClosure(), kAttemptPeriod);
run_loop_.Run();
}
}
protected:
base::test::SingleThreadTaskEnvironment task_environment_{
base::test::SingleThreadTaskEnvironment::MainThreadType::IO};
base::RunLoop run_loop_;
std::unique_ptr<webrtc::PacketSocketFactory> socket_factory_;
std::unique_ptr<webrtc::AsyncPacketSocket> socket_;
uint32_t expected_packet_count_;
std::vector<std::string> received_packets_;
webrtc::SocketAddress last_address_;
int64_t last_packet_time_;
ConstantScopedFakeClock fake_clock_;
};
TEST_F(ChromiumSocketFactoryTest, SendAndReceiveOnePacket) {
std::unique_ptr<webrtc::AsyncPacketSocket> sending_socket(
socket_factory_->CreateUdpSocket(webrtc::SocketAddress("127.0.0.1", 0), 0,
0));
ASSERT_TRUE(sending_socket.get() != nullptr);
EXPECT_EQ(sending_socket->GetState(), webrtc::AsyncPacketSocket::STATE_BOUND);
VerifyCanSendAndReceive(sending_socket.get());
}
TEST_F(ChromiumSocketFactoryTest, SendAndReceiveOneLargePacket) {
std::unique_ptr<webrtc::AsyncPacketSocket> sending_socket(
socket_factory_->CreateUdpSocket(webrtc::SocketAddress("127.0.0.1", 0), 0,
0));
ASSERT_TRUE(sending_socket.get() != nullptr);
EXPECT_EQ(sending_socket->GetState(), webrtc::AsyncPacketSocket::STATE_BOUND);
std::string packet_data(1000, 'a');
VerifyCanSendAndReceive(sending_socket.get(), packet_data);
}
TEST_F(ChromiumSocketFactoryTest, SendAndReceiveManyPackets) {
std::unique_ptr<webrtc::AsyncPacketSocket> sending_socket(
socket_factory_->CreateUdpSocket(webrtc::SocketAddress("127.0.0.1", 0), 0,
0));
ASSERT_TRUE(sending_socket.get() != nullptr);
EXPECT_EQ(sending_socket->GetState(), webrtc::AsyncPacketSocket::STATE_BOUND);
VerifyCanSendAndReceive(sending_socket.get(), 100);
}
TEST_F(ChromiumSocketFactoryTest, SetOptions) {
EXPECT_EQ(0, socket_->SetOption(webrtc::Socket::OPT_SNDBUF, 4096));
EXPECT_EQ(0, socket_->SetOption(webrtc::Socket::OPT_RCVBUF, 4096));
}
TEST_F(ChromiumSocketFactoryTest, PortRange) {
constexpr uint16_t kMinPort = 12400;
constexpr uint16_t kMaxPort = 12410;
socket_.reset(socket_factory_->CreateUdpSocket(
webrtc::SocketAddress("127.0.0.1", 0), kMinPort, kMaxPort));
ASSERT_TRUE(socket_.get() != nullptr);
EXPECT_EQ(socket_->GetState(), webrtc::AsyncPacketSocket::STATE_BOUND);
EXPECT_GE(socket_->GetLocalAddress().port(), kMinPort);
EXPECT_LE(socket_->GetLocalAddress().port(), kMaxPort);
}
TEST_F(ChromiumSocketFactoryTest, CreateMultiplePortsFromPortRange) {
constexpr uint16_t kPortCount = 5;
constexpr uint16_t kMinPort = 12400;
constexpr uint16_t kMaxPort = kMinPort + kPortCount - 1;
std::vector<std::unique_ptr<webrtc::AsyncPacketSocket>> sockets;
for (int i = 0; i < kPortCount; i++) {
sockets.push_back(std::unique_ptr<webrtc::AsyncPacketSocket>(
socket_factory_->CreateUdpSocket(webrtc::SocketAddress("127.0.0.1", 0),
kMinPort, kMaxPort)));
}
base::flat_set<uint16_t> assigned_ports;
for (auto& socket : sockets) {
ASSERT_TRUE(socket.get() != nullptr);
EXPECT_EQ(socket->GetState(), webrtc::AsyncPacketSocket::STATE_BOUND);
uint16_t port = socket->GetLocalAddress().port();
EXPECT_GE(port, kMinPort);
EXPECT_LE(port, kMaxPort);
ASSERT_FALSE(base::Contains(assigned_ports, port));
assigned_ports.insert(port);
}
// Create another socket should fail because no ports are available.
auto* extra_socket = socket_factory_->CreateUdpSocket(
webrtc::SocketAddress("127.0.0.1", 0), kMinPort, kMaxPort);
ASSERT_EQ(nullptr, extra_socket);
}
TEST_F(ChromiumSocketFactoryTest, TransientError) {
std::unique_ptr<webrtc::AsyncPacketSocket> sending_socket(
socket_factory_->CreateUdpSocket(webrtc::SocketAddress("127.0.0.1", 0), 0,
0));
std::string test_packet("TEST");
// Try sending a packet to an IPv6 address from a socket that's bound to an
// IPv4 address. This send is expected to fail, but the socket should still be
// functional.
sending_socket->SendTo(test_packet.data(), test_packet.size(),
webrtc::SocketAddress("::1", 0),
webrtc::AsyncSocketPacketOptions());
// Verify that socket is still usable.
VerifyCanSendAndReceive(sending_socket.get());
}
TEST_F(ChromiumSocketFactoryTest, CheckSendTime) {
std::unique_ptr<webrtc::AsyncPacketSocket> sending_socket(
socket_factory_->CreateUdpSocket(webrtc::SocketAddress("127.0.0.1", 0), 0,
0));
sending_socket->SignalSentPacket.connect(
static_cast<ChromiumSocketFactoryTest*>(this),
&ChromiumSocketFactoryTest::OnSentPacket);
VerifyCanSendAndReceive(sending_socket.get());
// Check receive time is from rtc clock as well
ASSERT_EQ(last_packet_time_, webrtc::TimeMicros());
}
} // namespace remoting::protocol
|