mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-16 15:36:12 -04:00
532 lines
19 KiB
C++
532 lines
19 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 "connections/implementation/mediums/wifi_lan.h"
|
|
|
|
#include <cstdint>
|
|
#include <memory>
|
|
#include <string>
|
|
#include <utility>
|
|
#include <vector>
|
|
|
|
#include "absl/strings/str_cat.h"
|
|
#include "absl/strings/str_format.h"
|
|
#include "connections/implementation/bwu_handler.h"
|
|
#include "connections/implementation/mediums/utils.h"
|
|
#include "connections/implementation/mediums/wifi_lan_bwu_handler.h"
|
|
#include "internal/platform/byte_array.h"
|
|
#include "internal/platform/cancellation_flag.h"
|
|
#include "internal/platform/exception.h"
|
|
#include "internal/platform/expected.h"
|
|
#include "internal/platform/implementation/upgrade_address_info.h"
|
|
#include "internal/platform/logging.h"
|
|
#include "internal/platform/mutex_lock.h"
|
|
#include "internal/platform/nsd_service_info.h"
|
|
#include "internal/platform/service_address.h"
|
|
#include "internal/platform/wifi_lan.h"
|
|
|
|
namespace nearby {
|
|
namespace connections {
|
|
|
|
namespace {
|
|
using location::nearby::proto::connections::OperationResultCode;
|
|
} // namespace
|
|
|
|
WifiLan::~WifiLan() {
|
|
// Destructor is not taking locks, but methods it is calling are.
|
|
while (!discovering_info_.service_ids.empty()) {
|
|
StopDiscovery(*discovering_info_.service_ids.begin());
|
|
}
|
|
while (!server_sockets_.empty()) {
|
|
StopAcceptingConnections(server_sockets_.begin()->first);
|
|
}
|
|
while (!advertising_info_.nsd_service_infos.empty()) {
|
|
StopAdvertising(advertising_info_.nsd_service_infos.begin()->first);
|
|
}
|
|
// All the AcceptLoopRunnable objects in here should already have gotten an
|
|
// opportunity to shut themselves down cleanly in the calls to
|
|
// StopAcceptingConnections() above.
|
|
accept_loops_runner_.Shutdown();
|
|
}
|
|
|
|
bool WifiLan::IsAvailable() const {
|
|
MutexLock lock(&mutex_);
|
|
|
|
return IsAvailableLocked();
|
|
}
|
|
|
|
bool WifiLan::IsAvailableLocked() const { return medium_.IsValid(); }
|
|
|
|
ErrorOr<bool> WifiLan::StartAdvertising(const std::string& service_id,
|
|
NsdServiceInfo& nsd_service_info,
|
|
AcceptedConnectionCallback callback) {
|
|
MutexLock lock(&mutex_);
|
|
|
|
if (!IsAvailableLocked()) {
|
|
LOG(INFO) << "Can't turn on WifiLan advertising. WifiLan is not available.";
|
|
return {Error(OperationResultCode::MEDIUM_UNAVAILABLE_LAN_NOT_AVAILABLE)};
|
|
}
|
|
|
|
if (!nsd_service_info.IsValid()) {
|
|
LOG(INFO)
|
|
<< "Refusing to turn on WifiLan advertising. nsd_service_info is not "
|
|
"valid.";
|
|
return {Error(OperationResultCode::MEDIUM_UNAVAILABLE_NSD_NOT_AVAILABLE)};
|
|
}
|
|
|
|
if (IsAdvertisingLocked(service_id)) {
|
|
LOG(INFO)
|
|
<< "Failed to WifiLan advertise because we're already advertising.";
|
|
return {Error(OperationResultCode::CLIENT_WIFI_LAN_DUPLICATE_ADVERTISING)};
|
|
}
|
|
nsd_service_info.SetServiceType(GenerateServiceType(service_id));
|
|
const auto& it = server_sockets_.find(service_id);
|
|
std::string mdns_service_name = nsd_service_info.GetServiceName();
|
|
int port = 0;
|
|
if (it != server_sockets_.end()) {
|
|
port = it->second.GetPort();
|
|
} else {
|
|
if (!mdns_service_name.empty() &&
|
|
mdns_service_name == last_mdns_service_name_) {
|
|
VLOG(1) << __func__
|
|
<< " reusing server port number: " << last_server_port_;
|
|
port = last_server_port_;
|
|
}
|
|
ErrorOr<int> port_result = StartAcceptingConnectionsLocked(
|
|
service_id, port, std::move(callback));
|
|
if (port_result.has_error()) {
|
|
return {port_result.error()};
|
|
}
|
|
port = port_result.value();
|
|
}
|
|
nsd_service_info.SetPort(port);
|
|
if (!medium_.StartAdvertising(nsd_service_info)) {
|
|
LOG(INFO) << "Failed to turn on WifiLan advertising with nsd_service_info="
|
|
<< &nsd_service_info
|
|
<< ", service_name=" << nsd_service_info.GetServiceName()
|
|
<< ", service_id=" << service_id;
|
|
StopAcceptingConnectionsLocked(service_id);
|
|
return {Error(
|
|
OperationResultCode::CONNECTIVITY_WIFI_LAN_START_ADVERTISING_FAILURE)};
|
|
}
|
|
last_mdns_service_name_ = std::move(mdns_service_name);
|
|
last_server_port_ = port;
|
|
|
|
LOG(INFO) << "Turned on WifiLan advertising with nsd_service_info="
|
|
<< &nsd_service_info
|
|
<< ", service_name=" << nsd_service_info.GetServiceName()
|
|
<< ", service_id=" << service_id;
|
|
advertising_info_.Add(service_id, std::move(nsd_service_info));
|
|
return {true};
|
|
}
|
|
|
|
bool WifiLan::StopAdvertising(const std::string& service_id) {
|
|
MutexLock lock(&mutex_);
|
|
|
|
if (!IsAdvertisingLocked(service_id)) {
|
|
LOG(INFO) << "Can't turn off WifiLan advertising; it is already off";
|
|
return false;
|
|
}
|
|
|
|
LOG(INFO) << "Turned off WifiLan advertising with service_id=" << service_id;
|
|
bool ret =
|
|
medium_.StopAdvertising(*advertising_info_.GetServiceInfo(service_id));
|
|
// Reset our bundle of advertising state to mark that we're no longer
|
|
// advertising for specific service_id.
|
|
advertising_info_.Remove(service_id);
|
|
return ret;
|
|
}
|
|
|
|
bool WifiLan::IsAdvertising(const std::string& service_id) {
|
|
MutexLock lock(&mutex_);
|
|
|
|
return IsAdvertisingLocked(service_id);
|
|
}
|
|
|
|
bool WifiLan::IsAdvertisingLocked(const std::string& service_id) {
|
|
return advertising_info_.Existed(service_id);
|
|
}
|
|
|
|
ErrorOr<bool> WifiLan::StartDiscovery(const std::string& service_id,
|
|
DiscoveredServiceCallback callback) {
|
|
MutexLock lock(&mutex_);
|
|
|
|
if (service_id.empty()) {
|
|
LOG(INFO) << "Refusing to start WifiLan discovering with empty service_id.";
|
|
return {Error(OperationResultCode::NEARBY_LOCAL_CLIENT_STATE_WRONG)};
|
|
}
|
|
|
|
if (!IsAvailableLocked()) {
|
|
LOG(INFO)
|
|
<< "Can't discover WifiLan services because WifiLan isn't available.";
|
|
return {Error(
|
|
OperationResultCode::MEDIUM_UNAVAILABLE_WIFI_AWARE_NOT_AVAILABLE)};
|
|
}
|
|
|
|
if (IsDiscoveringLocked(service_id)) {
|
|
LOG(INFO)
|
|
<< "Refusing to start discovery of WifiLan services because another "
|
|
"discovery is already in-progress.";
|
|
return {Error(OperationResultCode::CLIENT_WIFI_LAN_DUPLICATE_DISCOVERING)};
|
|
}
|
|
|
|
std::string service_type = GenerateServiceType(service_id);
|
|
bool ret =
|
|
medium_.StartDiscovery(service_id, service_type, std::move(callback));
|
|
if (!ret) {
|
|
LOG(INFO) << "Failed to start discovery of WifiLan services.";
|
|
return {Error(
|
|
OperationResultCode::CONNECTIVITY_WIFI_LAN_START_DISCOVERY_FAILURE)};
|
|
}
|
|
|
|
LOG(INFO) << "Turned on WifiLan discovering with service_id=" << service_id;
|
|
// Mark the fact that we're currently performing a WifiLan discovering.
|
|
discovering_info_.Add(service_id);
|
|
return {true};
|
|
}
|
|
|
|
bool WifiLan::StopDiscovery(const std::string& service_id) {
|
|
MutexLock lock(&mutex_);
|
|
|
|
if (!IsDiscoveringLocked(service_id)) {
|
|
LOG(INFO) << "Can't turn off WifiLan discovering because we never started "
|
|
"discovering.";
|
|
return false;
|
|
}
|
|
|
|
std::string service_type = GenerateServiceType(service_id);
|
|
LOG(INFO) << "Turned off WifiLan discovering with service_id=" << service_id
|
|
<< ", service_type=" << service_type;
|
|
bool ret = medium_.StopDiscovery(service_type);
|
|
discovering_info_.Remove(service_id);
|
|
return ret;
|
|
}
|
|
|
|
bool WifiLan::IsDiscovering(const std::string& service_id) {
|
|
MutexLock lock(&mutex_);
|
|
return IsDiscoveringLocked(service_id);
|
|
}
|
|
|
|
bool WifiLan::IsDiscoveringLocked(const std::string& service_id) {
|
|
return discovering_info_.Existed(service_id);
|
|
}
|
|
|
|
ErrorOr<int> WifiLan::StartAcceptingConnectionsLocked(
|
|
const std::string& service_id, int port,
|
|
AcceptedConnectionCallback callback) {
|
|
auto port_range = medium_.GetDynamicPortRange();
|
|
// Generate an exact port here on server socket; if platform doesn't provide
|
|
// range of port then assign 0 to let platform decide it.
|
|
if (port_range.has_value() &&
|
|
(port_range->first > 0 && port_range->first <= 65535 &&
|
|
port_range->second > 0 && port_range->second <= 65535 &&
|
|
port_range->first <= port_range->second)) {
|
|
port = GeneratePort(service_id, port_range.value());
|
|
}
|
|
WifiLanServerSocket server_socket = medium_.ListenForService(port);
|
|
if (!server_socket.IsValid()) {
|
|
LOG(INFO) << "Failed to start accepting WifiLan connections for service_id="
|
|
<< service_id;
|
|
return {Error(OperationResultCode::
|
|
CLIENT_CANCELLATION_WIFI_LAN_SERVER_SOCKET_CREATION)};
|
|
}
|
|
|
|
// Mark the fact that there's an in-progress WifiLan server accepting
|
|
// connections.
|
|
auto owned_server_socket =
|
|
server_sockets_.insert({service_id, std::move(server_socket)})
|
|
.first->second;
|
|
|
|
port = owned_server_socket.GetPort();
|
|
// Start the accept loop on a dedicated thread - this stays alive and
|
|
// listening for new incoming connections until StopAcceptingConnections() is
|
|
// invoked.
|
|
accept_loops_runner_.Execute(
|
|
"wifi-lan-accept", [callback = std::move(callback),
|
|
server_socket = std::move(owned_server_socket),
|
|
service_id]() mutable {
|
|
while (true) {
|
|
WifiLanSocket client_socket = server_socket.Accept();
|
|
if (!client_socket.IsValid()) {
|
|
server_socket.Close();
|
|
break;
|
|
}
|
|
LOG(INFO) << "Accepted connection for " << service_id;
|
|
bool callback_called = false;
|
|
if (callback && !callback_called) {
|
|
LOG(INFO) << "Call back triggered for physical socket.";
|
|
callback(service_id, std::move(client_socket));
|
|
}
|
|
}
|
|
});
|
|
|
|
return {port};
|
|
}
|
|
|
|
ErrorOr<bool> WifiLan::StartAcceptingConnections(
|
|
const std::string& service_id, AcceptedConnectionCallback callback) {
|
|
MutexLock lock(&mutex_);
|
|
|
|
if (service_id.empty()) {
|
|
LOG(INFO) << "Refusing to start accepting WifiLan connections; "
|
|
"service_id is empty.";
|
|
return {Error(OperationResultCode::NEARBY_LOCAL_CLIENT_STATE_WRONG)};
|
|
}
|
|
|
|
if (!IsAvailableLocked()) {
|
|
LOG(INFO) << "Can't start accepting WifiLan connections [service_id="
|
|
<< service_id << "]; WifiLan not available.";
|
|
return {Error(
|
|
OperationResultCode::MEDIUM_UNAVAILABLE_WIFI_AWARE_NOT_AVAILABLE)};
|
|
}
|
|
|
|
if (IsAcceptingConnectionsLocked(service_id)) {
|
|
LOG(INFO) << "Refusing to start accepting WifiLan connections [service="
|
|
<< service_id
|
|
<< "]; WifiLan server is already in-progress with the same name.";
|
|
return {Error(OperationResultCode::
|
|
CLIENT_DUPLICATE_ACCEPTING_LAN_CONNECTION_REQUEST)};
|
|
}
|
|
ErrorOr<int> port = StartAcceptingConnectionsLocked(service_id, /*port=*/0,
|
|
std::move(callback))
|
|
.has_error();
|
|
if (port.has_error()) {
|
|
return {port.error()};
|
|
}
|
|
return {true};
|
|
}
|
|
|
|
bool WifiLan::StopAcceptingConnections(const std::string& service_id) {
|
|
MutexLock lock(&mutex_);
|
|
|
|
return StopAcceptingConnectionsLocked(service_id);
|
|
}
|
|
|
|
bool WifiLan::StopAcceptingConnectionsLocked(const std::string& service_id) {
|
|
if (service_id.empty()) {
|
|
LOG(INFO) << "Unable to stop accepting WifiLan connections because "
|
|
"the service_id is empty.";
|
|
return false;
|
|
}
|
|
|
|
const auto& it = server_sockets_.find(service_id);
|
|
if (it == server_sockets_.end()) {
|
|
LOG(INFO) << "Can't stop accepting WifiLan connections for " << service_id
|
|
<< " because it was never started.";
|
|
return false;
|
|
}
|
|
|
|
// Closing the WifiLanServerSocket will kick off the suicide of the thread
|
|
// in accept_loops_thread_pool_ that blocks on WifiLanServerSocket.accept().
|
|
// That may take some time to complete, but there's no particular reason to
|
|
// wait around for it.
|
|
auto item = server_sockets_.extract(it);
|
|
// ### Note: service_id should no longer be used after this as it was passed
|
|
// as a reference to the key in the server_sockets_ map. It is still
|
|
// available as item.key().
|
|
|
|
// Store a handle to the WifiLanServerSocket, so we can use it after
|
|
// removing the entry from server_sockets_; making it scoped
|
|
// is a bonus that takes care of deallocation before we leave this method.
|
|
WifiLanServerSocket& listening_socket = item.mapped();
|
|
|
|
// Regardless of whether or not we fail to close the existing
|
|
// WifiLanServerSocket, remove it from server_sockets_ so that it
|
|
// frees up this service for another round.
|
|
|
|
// Finally, close the WifiLanServerSocket.
|
|
if (!listening_socket.Close().Ok()) {
|
|
LOG(INFO) << "Failed to close WifiLan server socket for service_id="
|
|
<< item.key();
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
bool WifiLan::IsAcceptingConnections(const std::string& service_id) {
|
|
MutexLock lock(&mutex_);
|
|
return IsAcceptingConnectionsLocked(service_id);
|
|
}
|
|
|
|
bool WifiLan::IsAcceptingConnectionsLocked(const std::string& service_id) {
|
|
return server_sockets_.find(service_id) != server_sockets_.end();
|
|
}
|
|
|
|
ErrorOr<WifiLanSocket> WifiLan::Connect(const std::string& service_id,
|
|
const NsdServiceInfo& service_info,
|
|
CancellationFlag* cancellation_flag) {
|
|
MutexLock lock(&mutex_);
|
|
// Socket to return. To allow for NRVO to work, it has to be a single object.
|
|
WifiLanSocket socket;
|
|
|
|
if (service_id.empty()) {
|
|
LOG(INFO) << "Refusing to create client WifiLan socket because "
|
|
"service_id is empty.";
|
|
return {Error(OperationResultCode::NEARBY_LOCAL_CLIENT_STATE_WRONG)};
|
|
}
|
|
|
|
if (!IsAvailableLocked()) {
|
|
LOG(INFO) << "Can't create client WifiLan socket [service_id=" << service_id
|
|
<< "]; WifiLan isn't available.";
|
|
return {Error(OperationResultCode::MEDIUM_UNAVAILABLE_LAN_NOT_AVAILABLE)};
|
|
}
|
|
|
|
if (cancellation_flag->Cancelled()) {
|
|
LOG(INFO) << "Can't create client WifiLan socket due to cancel.";
|
|
return {Error(OperationResultCode::
|
|
CLIENT_CANCELLATION_CANCEL_LAN_OUTGOING_CONNECTION)};
|
|
}
|
|
|
|
ExceptionOr<WifiLanSocket> virtual_socket =
|
|
ConnectWithMultiplexSocketLocked(service_id, service_info.GetIPAddress());
|
|
if (virtual_socket.ok()) {
|
|
return virtual_socket.result();
|
|
}
|
|
|
|
socket = medium_.ConnectToService(service_info, cancellation_flag);
|
|
if (!socket.IsValid()) {
|
|
LOG(INFO) << "Failed to Connect via WifiLan [service_id=" << service_id
|
|
<< "]";
|
|
return {Error(
|
|
OperationResultCode::CONNECTIVITY_LAN_CLIENT_SOCKET_CREATION_FAILURE)};
|
|
} else {
|
|
ExceptionOr<WifiLanSocket> virtual_socket =
|
|
CreateOutgoingMultiplexSocketLocked(socket, service_id,
|
|
service_info.GetIPAddress());
|
|
if (virtual_socket.ok()) {
|
|
LOG(INFO) << "Successfully connected via Multiplex WifiLan [service_id="
|
|
<< service_id << "]";
|
|
return virtual_socket.result();
|
|
}
|
|
}
|
|
|
|
LOG(INFO) << "Successfully connected via WifiLan [service_id=" << service_id
|
|
<< "]";
|
|
return socket;
|
|
}
|
|
|
|
ErrorOr<WifiLanSocket> WifiLan::Connect(const std::string& service_id,
|
|
const ServiceAddress& service_address,
|
|
CancellationFlag* cancellation_flag) {
|
|
MutexLock lock(&mutex_);
|
|
// Socket to return. To allow for NRVO to work, it has to be a single object.
|
|
WifiLanSocket socket;
|
|
|
|
if (service_id.empty()) {
|
|
LOG(INFO) << "Refusing to create client WifiLan socket because "
|
|
"service_id is empty.";
|
|
return {Error(OperationResultCode::NEARBY_LOCAL_CLIENT_STATE_WRONG)};
|
|
}
|
|
|
|
if (!IsAvailableLocked()) {
|
|
LOG(INFO) << "Can't create client WifiLan socket [service_id=" << service_id
|
|
<< "]; WifiLan isn't available.";
|
|
return {Error(OperationResultCode::MEDIUM_UNAVAILABLE_LAN_NOT_AVAILABLE)};
|
|
}
|
|
|
|
if (cancellation_flag->Cancelled()) {
|
|
LOG(INFO) << "Can't create client WifiLan socket due to cancel.";
|
|
return {Error(OperationResultCode::
|
|
CLIENT_CANCELLATION_CANCEL_LAN_OUTGOING_CONNECTION)};
|
|
}
|
|
|
|
ExceptionOr<WifiLanSocket> virtual_socket = ConnectWithMultiplexSocketLocked(
|
|
service_id, std::string(service_address.address.begin(),
|
|
service_address.address.end()));
|
|
if (virtual_socket.ok()) {
|
|
return virtual_socket.result();
|
|
}
|
|
|
|
socket = medium_.ConnectToService(service_address, cancellation_flag);
|
|
if (!socket.IsValid()) {
|
|
LOG(INFO) << "Failed to Connect via WifiLan [service_id=" << service_id
|
|
<< "], [" << service_address << "]";
|
|
return {Error(
|
|
OperationResultCode::CONNECTIVITY_LAN_CLIENT_SOCKET_CREATION_FAILURE)};
|
|
} else {
|
|
ExceptionOr<WifiLanSocket> virtual_socket =
|
|
CreateOutgoingMultiplexSocketLocked(
|
|
socket, service_id,
|
|
std::string(service_address.address.begin(),
|
|
service_address.address.end()));
|
|
if (virtual_socket.ok()) {
|
|
LOG(INFO) << "Successfully connected via Multiplex WifiLan [service_id="
|
|
<< service_id << "]";
|
|
return virtual_socket.result();
|
|
}
|
|
}
|
|
|
|
LOG(INFO) << "Successfully connected via WifiLan [service_id=" << service_id
|
|
<< "]";
|
|
return socket;
|
|
}
|
|
|
|
ExceptionOr<WifiLanSocket> WifiLan::ConnectWithMultiplexSocketLocked(
|
|
const std::string& service_id, const std::string& ip_address) {
|
|
return ExceptionOr<WifiLanSocket>(Exception::kFailed);
|
|
}
|
|
|
|
ExceptionOr<WifiLanSocket> WifiLan::CreateOutgoingMultiplexSocketLocked(
|
|
WifiLanSocket& socket, const std::string& service_id,
|
|
const std::string& ip_address) {
|
|
return ExceptionOr<WifiLanSocket>(Exception::kFailed);
|
|
}
|
|
|
|
api::UpgradeAddressInfo WifiLan::GetUpgradeAddressCandidates(
|
|
const std::string& service_id) {
|
|
MutexLock lock(&mutex_);
|
|
const auto& it = server_sockets_.find(service_id);
|
|
if (it == server_sockets_.end()) {
|
|
return {};
|
|
}
|
|
return medium_.GetUpgradeAddressCandidates(it->second);
|
|
}
|
|
|
|
std::string WifiLan::GenerateServiceType(const std::string& service_id) {
|
|
std::string service_id_hash_string;
|
|
|
|
const ByteArray service_id_hash = Utils::Sha256Hash(
|
|
service_id, NsdServiceInfo::kTypeFromServiceIdHashLength);
|
|
for (auto byte : std::string(service_id_hash)) {
|
|
absl::StrAppend(&service_id_hash_string, absl::StrFormat("%02X", byte));
|
|
}
|
|
|
|
return absl::StrFormat(NsdServiceInfo::kNsdTypeFormat,
|
|
service_id_hash_string);
|
|
}
|
|
|
|
int WifiLan::GeneratePort(const std::string& service_id,
|
|
std::pair<std::int32_t, std::int32_t> port_range) {
|
|
const std::string service_id_hash =
|
|
std::string(Utils::Sha256Hash(service_id, 4));
|
|
|
|
std::uint32_t uint_of_service_id_hash =
|
|
service_id_hash[0] << 24 | service_id_hash[1] << 16 |
|
|
service_id_hash[2] << 8 | service_id_hash[3];
|
|
|
|
return port_range.first +
|
|
(uint_of_service_id_hash % (port_range.second - port_range.first));
|
|
}
|
|
|
|
std::unique_ptr<BwuHandler> WifiLan::CreateBwuHandler(
|
|
BwuHandler::IncomingConnectionCallback incoming_connection_callback) {
|
|
MutexLock lock(&mutex_);
|
|
return std::make_unique<WifiLanBwuHandler>(
|
|
this, std::move(incoming_connection_callback));
|
|
}
|
|
|
|
} // namespace connections
|
|
} // namespace nearby
|