mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-14 22:56:12 -04:00
The `RandBytes` functions were being placed in the `crypto` namespace, which collides with Chromium's namespace of the same name. Within, `RandBytes` was defined with almost-the-same API. Then in Chromium builds, the Chromium header would be used instead (though somewhat inconsistently). This creates a lot of pain for Chromium development as there's a third-party repository directly depending on headers from Chromium's source tree, and is against the third-party policies for that reason. There are a number of other headers that mirror Chromium and are swapped out in the Chromium build that will cause similar pain, such as: ``` include "crypto/aead.h" include "crypto/ec_private_key.h" include "crypto/hkdf.h" ``` This CL provides a template for how to get rid of these header swaps and give a platform abstraction in nearby instead. We provide a platform abstraction in `platform/crypto.h` (really in `platform/implementation/crypto.h`) which is implemented in `platform/implementation/shared/crypto.cc`. However that implementation is removed by `#ifdef` when in the Chromium build. Then, in the Chromium repo, we will add (separately) an implementation of the same abstraction in `//third_party/nearby/platform_impl` with GN rules to include it in the build. It will replace the implementation from the nearby repo. Copybara import of the project: -- 6ca8099 by danakj <danakj@chromium.org>: Provide a platform abstraction for RandBytes instead of swapping headers The `RandBytes` functions were being placed in the `crypto` namespace, which collides with Chromium's namespace of the same name. Within, `RandBytes` was defined with almost-the-same API. Then in Chromium builds, the Chromium header would be used instead (though somewhat inconsistently). This creates a lot of pain for Chromium development as there's a third-party repository directly depending on headers from Chromium's source tree, and is against the third-party policies for that reason. There are a number of other headers that mirror Chromium and are swapped out in the Chromium build that will cause similar pain, such as: ``` include "crypto/aead.h" include "crypto/ec_private_key.h" include "crypto/hkdf.h" ``` This CL provides a template for how to get rid of these header swaps and give a platform abstraction in nearby instead. We provide a platform abstraction in `platform/crypto.h` (really in `platform/implementation/crypto.h`) which is implemented in `platform/implementation/shared/crypto.cc`. However that implementation is removed by `#ifdef` when in the Chromium build. Then, in the Chromium repo, we will add (separately) an implementation of the same abstraction in `//third_party/nearby/platform_impl` with GN rules to include it in the build. It will replace the implementation from the nearby repo. -- 9c2654b by danakj <danakj@chromium.org>: Remove CryptoSpan, use absl::Span The header swapping of Chromium crypto libraries is problematic, but absl::Span will convert to base::span so there's no need for the typedef even without removing the header swapping yet. -- df1135d by danakj <danakj@chromium.org>: Add missing files -- ab18a15 by danakj <danakj@chromium.org>: Remove the random_unittest.cc from Swift build The file moved, so the Swift package needs its path updated. -- 2038f78 by danakj <danakj@chromium.org>: Combine crypto unittests into crypto_test.cc -- f7ad176 by danakj <danakj@chromium.org>: Add stdint and stddef includes for uint8_t and size_t -- 9f04590 by danakj <danakj@chromium.org>: Mark the shared crypto implementation compatable_with non_prod -- 18eeafd by danakj <danakj@chromium.org>: Add IWYU pragma for crypto implementation PiperOrigin-RevId: 632150866
77 lines
2.5 KiB
C++
77 lines
2.5 KiB
C++
// Copyright 2023 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.
|
|
|
|
#ifndef THIRD_PARTY_NEARBY_CONNECTIONS_V3_CONNECTIONS_DEVICE_H_
|
|
#define THIRD_PARTY_NEARBY_CONNECTIONS_V3_CONNECTIONS_DEVICE_H_
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "internal/interop/device.h"
|
|
#include "internal/platform/connection_info.h"
|
|
#include "internal/platform/crypto.h"
|
|
|
|
namespace nearby {
|
|
namespace connections {
|
|
namespace v3 {
|
|
|
|
constexpr int kEndpointIdLength = 4;
|
|
|
|
class ConnectionsDevice : public nearby::NearbyDevice {
|
|
public:
|
|
ConnectionsDevice(absl::string_view endpoint_id,
|
|
absl::string_view endpoint_info,
|
|
const std::vector<ConnectionInfoVariant> connection_infos)
|
|
: endpoint_id_(endpoint_id),
|
|
endpoint_info_(endpoint_info),
|
|
connection_infos_(connection_infos) {
|
|
if (endpoint_id.length() != kEndpointIdLength) {
|
|
endpoint_id_ = GenerateRandomEndpointId();
|
|
}
|
|
}
|
|
ConnectionsDevice(absl::string_view endpoint_info,
|
|
const std::vector<ConnectionInfoVariant> connection_infos)
|
|
: endpoint_info_(endpoint_info), connection_infos_(connection_infos) {
|
|
endpoint_id_ = GenerateRandomEndpointId();
|
|
}
|
|
~ConnectionsDevice() override = default;
|
|
|
|
std::string GetEndpointId() const override { return endpoint_id_; }
|
|
std::vector<ConnectionInfoVariant> GetConnectionInfos() const override {
|
|
return connection_infos_;
|
|
}
|
|
Type GetType() const override { return Type::kConnectionsDevice; }
|
|
|
|
std::string GetEndpointInfo() const { return endpoint_info_; }
|
|
std::string ToProtoBytes() const override;
|
|
|
|
private:
|
|
std::string GenerateRandomEndpointId() {
|
|
std::string result(kEndpointIdLength, 0);
|
|
RandBytes(const_cast<std::string::value_type*>(result.data()),
|
|
result.size());
|
|
return result;
|
|
}
|
|
|
|
std::string endpoint_id_;
|
|
std::string endpoint_info_;
|
|
std::vector<ConnectionInfoVariant> connection_infos_;
|
|
};
|
|
|
|
} // namespace v3
|
|
} // namespace connections
|
|
} // namespace nearby
|
|
|
|
#endif // THIRD_PARTY_NEARBY_CONNECTIONS_V3_CONNECTIONS_DEVICE_H_
|