mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-15 07:06:11 -04:00
308 lines
10 KiB
C++
308 lines
10 KiB
C++
// Copyright 2020 Google LLC
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// https://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
#include "internal/platform/implementation/g3/wifi_lan.h"
|
|
|
|
#include <cstdint>
|
|
#include <memory>
|
|
#include <string>
|
|
#include <utility>
|
|
#include <vector>
|
|
|
|
#include "absl/functional/any_invocable.h"
|
|
#include "absl/log/check.h"
|
|
#include "absl/synchronization/mutex.h"
|
|
#include "internal/platform/cancellation_flag.h"
|
|
#include "internal/platform/cancellation_flag_listener.h"
|
|
#include "internal/platform/exception.h"
|
|
#include "internal/platform/implementation/upgrade_address_info.h"
|
|
#include "internal/platform/implementation/wifi_lan.h"
|
|
#include "internal/platform/logging.h"
|
|
#include "internal/platform/medium_environment.h"
|
|
#include "internal/platform/nsd_service_info.h"
|
|
#include "internal/platform/service_address.h"
|
|
|
|
namespace nearby {
|
|
namespace g3 {
|
|
|
|
std::unique_ptr<api::WifiLanSocket> WifiLanServerSocket::Accept() {
|
|
absl::MutexLock lock(mutex_);
|
|
while (!closed_ && pending_sockets_.empty()) {
|
|
cond_.Wait(&mutex_);
|
|
}
|
|
// whether or not we were running in the wait loop, return early if closed.
|
|
if (closed_) return {};
|
|
auto* remote_socket =
|
|
pending_sockets_.extract(pending_sockets_.begin()).value();
|
|
CHECK(remote_socket);
|
|
|
|
auto local_socket = std::make_unique<WifiLanSocket>();
|
|
local_socket->Connect(*remote_socket);
|
|
remote_socket->Connect(*local_socket);
|
|
cond_.SignalAll();
|
|
return local_socket;
|
|
}
|
|
|
|
bool WifiLanServerSocket::Connect(WifiLanSocket& socket) {
|
|
absl::MutexLock lock(mutex_);
|
|
if (closed_) return false;
|
|
if (socket.IsConnected()) {
|
|
LOG(ERROR)
|
|
<< "Failed to connect to WifiLan server socket: already connected";
|
|
return true; // already connected.
|
|
}
|
|
// add client socket to the pending list
|
|
pending_sockets_.insert(&socket);
|
|
cond_.SignalAll();
|
|
while (!socket.IsConnected()) {
|
|
cond_.Wait(&mutex_);
|
|
if (closed_) return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
void WifiLanServerSocket::SetCloseNotifier(
|
|
absl::AnyInvocable<void()> notifier) {
|
|
absl::MutexLock lock(mutex_);
|
|
close_notifier_ = std::move(notifier);
|
|
}
|
|
|
|
WifiLanServerSocket::~WifiLanServerSocket() {
|
|
absl::MutexLock lock(mutex_);
|
|
DoClose();
|
|
}
|
|
|
|
Exception WifiLanServerSocket::Close() {
|
|
absl::MutexLock lock(mutex_);
|
|
return DoClose();
|
|
}
|
|
|
|
Exception WifiLanServerSocket::DoClose() {
|
|
bool should_notify = !closed_;
|
|
closed_ = true;
|
|
if (should_notify) {
|
|
cond_.SignalAll();
|
|
if (close_notifier_) {
|
|
auto notifier = std::move(close_notifier_);
|
|
mutex_.unlock();
|
|
// Notifier may contain calls to public API, and may cause deadlock, if
|
|
// mutex_ is held during the call.
|
|
notifier();
|
|
mutex_.lock();
|
|
}
|
|
}
|
|
return {Exception::kSuccess};
|
|
}
|
|
|
|
WifiLanMedium::WifiLanMedium() {
|
|
auto& env = MediumEnvironment::Instance();
|
|
env.RegisterWifiLanMedium(*this);
|
|
}
|
|
|
|
WifiLanMedium::~WifiLanMedium() {
|
|
auto& env = MediumEnvironment::Instance();
|
|
env.UnregisterWifiLanMedium(*this);
|
|
}
|
|
|
|
bool WifiLanMedium::StartAdvertising(const NsdServiceInfo& nsd_service_info) {
|
|
std::string service_type = nsd_service_info.GetServiceType();
|
|
LOG(INFO) << "G3 WifiLan StartAdvertising: nsd_service_info="
|
|
<< &nsd_service_info
|
|
<< ", service_name=" << nsd_service_info.GetServiceName()
|
|
<< ", service_type=" << service_type;
|
|
{
|
|
absl::MutexLock lock(mutex_);
|
|
if (advertising_info_.Existed(service_type)) {
|
|
LOG(INFO)
|
|
<< "G3 WifiLan StartAdvertising: Can't start advertising because "
|
|
"service_type="
|
|
<< service_type << ", has started already.";
|
|
return false;
|
|
}
|
|
}
|
|
auto& env = MediumEnvironment::Instance();
|
|
env.UpdateWifiLanMediumForAdvertising(*this, nsd_service_info, ip_address_,
|
|
/*enabled=*/true);
|
|
{
|
|
absl::MutexLock lock(mutex_);
|
|
advertising_info_.Add(service_type);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
bool WifiLanMedium::StopAdvertising(const NsdServiceInfo& nsd_service_info) {
|
|
std::string service_type = nsd_service_info.GetServiceType();
|
|
LOG(INFO) << "G3 WifiLan StopAdvertising: nsd_service_info="
|
|
<< &nsd_service_info
|
|
<< ", service_name=" << nsd_service_info.GetServiceName()
|
|
<< ", service_type=" << service_type;
|
|
{
|
|
absl::MutexLock lock(mutex_);
|
|
if (!advertising_info_.Existed(service_type)) {
|
|
LOG(INFO) << "G3 WifiLan StopAdvertising: Can't stop advertising because "
|
|
"we never started advertising for service_type="
|
|
<< service_type;
|
|
return false;
|
|
}
|
|
advertising_info_.Remove(service_type);
|
|
}
|
|
auto& env = MediumEnvironment::Instance();
|
|
env.UpdateWifiLanMediumForAdvertising(*this, nsd_service_info, ip_address_,
|
|
/*enabled=*/false);
|
|
return true;
|
|
}
|
|
|
|
bool WifiLanMedium::StartDiscovery(const std::string& service_type,
|
|
DiscoveredServiceCallback callback) {
|
|
LOG(INFO) << "G3 WifiLan StartDiscovery: service_type=" << service_type;
|
|
{
|
|
absl::MutexLock lock(mutex_);
|
|
if (discovering_info_.Existed(service_type)) {
|
|
LOG(INFO) << "G3 WifiLan StartDiscovery: Can't start discovery because "
|
|
"service_type="
|
|
<< service_type << " has started already.";
|
|
return false;
|
|
}
|
|
}
|
|
auto& env = MediumEnvironment::Instance();
|
|
env.UpdateWifiLanMediumForDiscovery(*this, std::move(callback), service_type,
|
|
true);
|
|
{
|
|
absl::MutexLock lock(mutex_);
|
|
discovering_info_.Add(service_type);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
bool WifiLanMedium::StopDiscovery(const std::string& service_type) {
|
|
LOG(INFO) << "G3 WifiLan StopDiscovery: service_type=" << service_type;
|
|
{
|
|
absl::MutexLock lock(mutex_);
|
|
if (!discovering_info_.Existed(service_type)) {
|
|
LOG(INFO)
|
|
<< "G3 WifiLan StopDiscovery: Can't stop discovering because we "
|
|
"never started discovering.";
|
|
return false;
|
|
}
|
|
discovering_info_.Remove(service_type);
|
|
}
|
|
auto& env = MediumEnvironment::Instance();
|
|
env.UpdateWifiLanMediumForDiscovery(*this, {}, service_type, false);
|
|
return true;
|
|
}
|
|
|
|
std::unique_ptr<api::WifiLanSocket> WifiLanMedium::ConnectToService(
|
|
const NsdServiceInfo& remote_service_info,
|
|
CancellationFlag* cancellation_flag) {
|
|
std::string service_type = remote_service_info.GetServiceType();
|
|
LOG(INFO) << "G3 WifiLan ConnectToService [self]: medium=" << this
|
|
<< ", service_type=" << service_type;
|
|
std::string ip_address = remote_service_info.GetIPAddress();
|
|
return ConnectToService(
|
|
{
|
|
.address = {ip_address.begin(), ip_address.end()},
|
|
.port = static_cast<uint16_t>(remote_service_info.GetPort()),
|
|
},
|
|
cancellation_flag);
|
|
}
|
|
|
|
std::unique_ptr<api::WifiLanSocket> WifiLanMedium::ConnectToService(
|
|
const ServiceAddress& service_address,
|
|
CancellationFlag* cancellation_flag) {
|
|
LOG(INFO) << "G3 WifiLan ConnectToService [self]: medium=" << this
|
|
<< ", [" << service_address << "]";
|
|
// First, find an instance of remote medium, that exposed this service.
|
|
auto& env = MediumEnvironment::Instance();
|
|
auto* remote_medium = static_cast<WifiLanMedium*>(
|
|
env.GetWifiLanMedium(std::string(service_address.address.begin(),
|
|
service_address.address.end()),
|
|
service_address.port));
|
|
if (!remote_medium) {
|
|
return {};
|
|
}
|
|
|
|
WifiLanServerSocket* server_socket = nullptr;
|
|
LOG(INFO) << "G3 WifiLan ConnectToService [peer]: medium=" << remote_medium
|
|
<< ", [" << service_address << "]";
|
|
// Then, find our server socket context in this medium.
|
|
{
|
|
absl::MutexLock medium_lock(remote_medium->mutex_);
|
|
auto item = remote_medium->server_sockets_.find(service_address.port);
|
|
server_socket =
|
|
item != remote_medium->server_sockets_.end() ? item->second : nullptr;
|
|
if (server_socket == nullptr) {
|
|
LOG(ERROR) << "G3 WifiLan Failed to find WifiLan Server socket: "
|
|
<< service_address;
|
|
return {};
|
|
}
|
|
}
|
|
|
|
if (cancellation_flag->Cancelled()) {
|
|
LOG(ERROR) << "G3 WifiLan Connect: Has been cancelled: " << service_address;
|
|
return {};
|
|
}
|
|
|
|
CancellationFlagListener listener(cancellation_flag, [&server_socket]() {
|
|
LOG(INFO) << "G3 WifiLan Cancel Connect.";
|
|
if (server_socket != nullptr) {
|
|
server_socket->Close();
|
|
}
|
|
});
|
|
|
|
auto socket = std::make_unique<WifiLanSocket>();
|
|
// Finally, Request to connect to this socket.
|
|
if (!server_socket->Connect(*socket)) {
|
|
LOG(ERROR) << "G3 WifiLan Failed to connect to existing WifiLan "
|
|
"Server socket: " << service_address;
|
|
return {};
|
|
}
|
|
LOG(INFO) << "G3 WifiLan ConnectToService: connected: socket="
|
|
<< socket.get();
|
|
return socket;
|
|
}
|
|
|
|
std::unique_ptr<api::WifiLanServerSocket> WifiLanMedium::ListenForService(
|
|
int port) {
|
|
auto& env = MediumEnvironment::Instance();
|
|
auto server_socket = std::make_unique<WifiLanServerSocket>();
|
|
server_socket->SetIPAddress(ip_address_);
|
|
server_socket->SetPort(port == 0 ? env.GetFakePort() : port);
|
|
int server_port = server_socket->GetPort();
|
|
server_socket->SetCloseNotifier([this, server_port]() {
|
|
absl::MutexLock lock(mutex_);
|
|
server_sockets_.erase(server_port);
|
|
});
|
|
LOG(INFO) << "G3 WifiLan Adding server socket: medium=" << this
|
|
<< ", port=" << server_port;
|
|
absl::MutexLock lock(mutex_);
|
|
server_sockets_.insert({server_port, server_socket.get()});
|
|
return server_socket;
|
|
}
|
|
|
|
api::UpgradeAddressInfo WifiLanMedium::GetUpgradeAddressCandidates(
|
|
const api::WifiLanServerSocket& server_socket) {
|
|
std::string ip_address = server_socket.GetIPAddress();
|
|
return {
|
|
.num_interfaces = 1,
|
|
.num_ipv6_only_interfaces = 0,
|
|
.address_candidates =
|
|
{ServiceAddress{
|
|
.address = std::vector<char>(ip_address.begin(), ip_address.end()),
|
|
.port = static_cast<uint16_t>(server_socket.GetPort())}}
|
|
};
|
|
}
|
|
|
|
} // namespace g3
|
|
} // namespace nearby
|