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
|
// Copyright 2012 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/40284755): Remove this and spanify to fix the errors.
#pragma allow_unsafe_buffers
#endif
#include "net/dns/address_sorter.h"
#include <winsock2.h>
#include <algorithm>
#include <utility>
#include <vector>
#include "base/functional/bind.h"
#include "base/location.h"
#include "base/logging.h"
#include "base/memory/free_deleter.h"
#include "base/task/thread_pool.h"
#include "net/base/ip_address.h"
#include "net/base/ip_endpoint.h"
#include "net/base/winsock_init.h"
namespace net {
namespace {
class AddressSorterWin : public AddressSorter {
public:
AddressSorterWin() {
EnsureWinsockInit();
}
AddressSorterWin(const AddressSorterWin&) = delete;
AddressSorterWin& operator=(const AddressSorterWin&) = delete;
~AddressSorterWin() override {}
// AddressSorter:
void Sort(const std::vector<IPEndPoint>& endpoints,
CallbackType callback) const override {
DCHECK(!endpoints.empty());
Job::Start(endpoints, std::move(callback));
}
private:
// Executes the SIO_ADDRESS_LIST_SORT ioctl asynchronously, and
// performs the necessary conversions to/from `std::vector<IPEndPoint>`.
class Job : public base::RefCountedThreadSafe<Job> {
public:
static void Start(const std::vector<IPEndPoint>& endpoints,
CallbackType callback) {
auto job = base::WrapRefCounted(new Job(endpoints, std::move(callback)));
base::ThreadPool::PostTaskAndReply(
FROM_HERE,
{base::MayBlock(), base::TaskShutdownBehavior::CONTINUE_ON_SHUTDOWN},
base::BindOnce(&Job::Run, job),
base::BindOnce(&Job::OnComplete, job));
}
Job(const Job&) = delete;
Job& operator=(const Job&) = delete;
private:
friend class base::RefCountedThreadSafe<Job>;
Job(const std::vector<IPEndPoint>& endpoints, CallbackType callback)
: callback_(std::move(callback)),
buffer_size_((sizeof(SOCKET_ADDRESS_LIST) +
base::CheckedNumeric<DWORD>(endpoints.size()) *
(sizeof(SOCKET_ADDRESS) + sizeof(SOCKADDR_STORAGE)))
.ValueOrDie<DWORD>()),
input_buffer_(
reinterpret_cast<SOCKET_ADDRESS_LIST*>(malloc(buffer_size_))),
output_buffer_(
reinterpret_cast<SOCKET_ADDRESS_LIST*>(malloc(buffer_size_))) {
input_buffer_->iAddressCount = base::checked_cast<INT>(endpoints.size());
SOCKADDR_STORAGE* storage = reinterpret_cast<SOCKADDR_STORAGE*>(
input_buffer_->Address + input_buffer_->iAddressCount);
for (size_t i = 0; i < endpoints.size(); ++i) {
IPEndPoint ipe = endpoints[i];
// Addresses must be sockaddr_in6.
if (ipe.address().IsIPv4()) {
ipe = IPEndPoint(ConvertIPv4ToIPv4MappedIPv6(ipe.address()),
ipe.port());
}
struct sockaddr* addr = reinterpret_cast<struct sockaddr*>(storage + i);
socklen_t addr_len = sizeof(SOCKADDR_STORAGE);
bool result = ipe.ToSockAddr(addr, &addr_len);
DCHECK(result);
input_buffer_->Address[i].lpSockaddr = addr;
input_buffer_->Address[i].iSockaddrLength = addr_len;
}
}
~Job() {}
// Executed asynchronously in ThreadPool.
void Run() {
SOCKET sock = socket(AF_INET6, SOCK_DGRAM, IPPROTO_UDP);
if (sock == INVALID_SOCKET)
return;
DWORD result_size = 0;
int result = WSAIoctl(sock, SIO_ADDRESS_LIST_SORT, input_buffer_.get(),
buffer_size_, output_buffer_.get(), buffer_size_,
&result_size, nullptr, nullptr);
if (result == SOCKET_ERROR) {
LOG(ERROR) << "SIO_ADDRESS_LIST_SORT failed " << WSAGetLastError();
} else {
success_ = true;
}
closesocket(sock);
}
// Executed on the calling thread.
void OnComplete() {
std::vector<IPEndPoint> sorted;
if (success_) {
sorted.reserve(output_buffer_->iAddressCount);
for (int i = 0; i < output_buffer_->iAddressCount; ++i) {
IPEndPoint ipe;
bool result =
ipe.FromSockAddr(output_buffer_->Address[i].lpSockaddr,
output_buffer_->Address[i].iSockaddrLength);
DCHECK(result) << "Unable to roundtrip between IPEndPoint and "
<< "SOCKET_ADDRESS!";
// Unmap V4MAPPED IPv6 addresses so that Happy Eyeballs works.
if (ipe.address().IsIPv4MappedIPv6()) {
ipe = IPEndPoint(ConvertIPv4MappedIPv6ToIPv4(ipe.address()),
ipe.port());
}
sorted.push_back(ipe);
}
}
std::move(callback_).Run(success_, std::move(sorted));
}
CallbackType callback_;
const DWORD buffer_size_;
std::unique_ptr<SOCKET_ADDRESS_LIST, base::FreeDeleter> input_buffer_;
std::unique_ptr<SOCKET_ADDRESS_LIST, base::FreeDeleter> output_buffer_;
bool success_ = false;
};
};
} // namespace
// static
std::unique_ptr<AddressSorter> AddressSorter::CreateAddressSorter() {
return std::make_unique<AddressSorterWin>();
}
} // namespace net
|