2020-09-28 16:22:03 +00:00
|
|
|
// Copyright 2019 The Chromium Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
#include "shell/browser/serial/serial_chooser_context.h"
|
|
|
|
|
2021-07-26 17:10:57 +00:00
|
|
|
#include <memory>
|
2021-06-01 01:34:44 +00:00
|
|
|
#include <string>
|
2020-09-28 16:22:03 +00:00
|
|
|
#include <utility>
|
|
|
|
|
|
|
|
#include "base/base64.h"
|
2021-06-03 08:05:04 +00:00
|
|
|
#include "base/containers/contains.h"
|
2020-09-28 16:22:03 +00:00
|
|
|
#include "base/strings/utf_string_conversions.h"
|
|
|
|
#include "base/values.h"
|
|
|
|
#include "content/public/browser/device_service.h"
|
2021-10-06 20:18:00 +00:00
|
|
|
#include "content/public/browser/web_contents.h"
|
2020-09-28 16:22:03 +00:00
|
|
|
#include "mojo/public/cpp/bindings/pending_remote.h"
|
2021-10-06 20:18:00 +00:00
|
|
|
#include "shell/browser/web_contents_permission_helper.h"
|
2020-09-28 16:22:03 +00:00
|
|
|
|
|
|
|
namespace electron {
|
|
|
|
|
|
|
|
constexpr char kPortNameKey[] = "name";
|
|
|
|
constexpr char kTokenKey[] = "token";
|
2021-10-06 20:18:00 +00:00
|
|
|
|
2020-10-16 01:30:41 +00:00
|
|
|
#if defined(OS_WIN)
|
2021-10-06 20:18:00 +00:00
|
|
|
const char kDeviceInstanceIdKey[] = "device_instance_id";
|
2020-10-16 01:30:41 +00:00
|
|
|
#else
|
2021-10-06 20:18:00 +00:00
|
|
|
const char kVendorIdKey[] = "vendor_id";
|
|
|
|
const char kProductIdKey[] = "product_id";
|
|
|
|
const char kSerialNumberKey[] = "serial_number";
|
2020-10-16 01:30:41 +00:00
|
|
|
#if defined(OS_MAC)
|
2021-10-06 20:18:00 +00:00
|
|
|
const char kUsbDriverKey[] = "usb_driver";
|
2020-10-16 01:30:41 +00:00
|
|
|
#endif // defined(OS_MAC)
|
2021-10-06 20:18:00 +00:00
|
|
|
#endif // defined(OS_WIN
|
2020-09-28 16:22:03 +00:00
|
|
|
|
|
|
|
std::string EncodeToken(const base::UnguessableToken& token) {
|
|
|
|
const uint64_t data[2] = {token.GetHighForSerialization(),
|
|
|
|
token.GetLowForSerialization()};
|
|
|
|
std::string buffer;
|
|
|
|
base::Base64Encode(
|
|
|
|
base::StringPiece(reinterpret_cast<const char*>(&data[0]), sizeof(data)),
|
|
|
|
&buffer);
|
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
base::UnguessableToken DecodeToken(base::StringPiece input) {
|
|
|
|
std::string buffer;
|
|
|
|
if (!base::Base64Decode(input, &buffer) ||
|
|
|
|
buffer.length() != sizeof(uint64_t) * 2) {
|
|
|
|
return base::UnguessableToken();
|
|
|
|
}
|
|
|
|
|
2021-07-26 17:10:57 +00:00
|
|
|
const uint64_t* data = reinterpret_cast<const uint64_t*>(buffer.data());
|
2020-09-28 16:22:03 +00:00
|
|
|
return base::UnguessableToken::Deserialize(data[0], data[1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
base::Value PortInfoToValue(const device::mojom::SerialPortInfo& port) {
|
|
|
|
base::Value value(base::Value::Type::DICTIONARY);
|
|
|
|
if (port.display_name && !port.display_name->empty())
|
|
|
|
value.SetStringKey(kPortNameKey, *port.display_name);
|
|
|
|
else
|
|
|
|
value.SetStringKey(kPortNameKey, port.path.LossyDisplayName());
|
2020-10-16 01:30:41 +00:00
|
|
|
|
|
|
|
if (!SerialChooserContext::CanStorePersistentEntry(port)) {
|
2020-09-28 16:22:03 +00:00
|
|
|
value.SetStringKey(kTokenKey, EncodeToken(port.token));
|
2020-10-16 01:30:41 +00:00
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(OS_WIN)
|
|
|
|
// Windows provides a handy device identifier which we can rely on to be
|
|
|
|
// sufficiently stable for identifying devices across restarts.
|
|
|
|
value.SetStringKey(kDeviceInstanceIdKey, port.device_instance_id);
|
|
|
|
#else
|
|
|
|
DCHECK(port.has_vendor_id);
|
|
|
|
value.SetIntKey(kVendorIdKey, port.vendor_id);
|
|
|
|
DCHECK(port.has_product_id);
|
|
|
|
value.SetIntKey(kProductIdKey, port.product_id);
|
|
|
|
DCHECK(port.serial_number);
|
|
|
|
value.SetStringKey(kSerialNumberKey, *port.serial_number);
|
|
|
|
|
|
|
|
#if defined(OS_MAC)
|
|
|
|
DCHECK(port.usb_driver_name && !port.usb_driver_name->empty());
|
|
|
|
value.SetStringKey(kUsbDriverKey, *port.usb_driver_name);
|
|
|
|
#endif // defined(OS_MAC)
|
|
|
|
#endif // defined(OS_WIN)
|
2020-09-28 16:22:03 +00:00
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
2021-10-06 20:18:00 +00:00
|
|
|
SerialChooserContext::SerialChooserContext() = default;
|
2021-07-26 17:10:57 +00:00
|
|
|
|
2020-09-28 16:22:03 +00:00
|
|
|
SerialChooserContext::~SerialChooserContext() = default;
|
|
|
|
|
|
|
|
void SerialChooserContext::GrantPortPermission(
|
2021-07-26 17:10:57 +00:00
|
|
|
const url::Origin& origin,
|
2021-10-06 20:18:00 +00:00
|
|
|
const device::mojom::SerialPortInfo& port,
|
|
|
|
content::RenderFrameHost* render_frame_host) {
|
2020-09-28 16:22:03 +00:00
|
|
|
base::Value value = PortInfoToValue(port);
|
|
|
|
port_info_.insert({port.token, value.Clone()});
|
|
|
|
|
2021-07-26 17:10:57 +00:00
|
|
|
if (CanStorePersistentEntry(port)) {
|
2021-10-06 20:18:00 +00:00
|
|
|
auto* web_contents =
|
|
|
|
content::WebContents::FromRenderFrameHost(render_frame_host);
|
|
|
|
auto* permission_helper =
|
|
|
|
WebContentsPermissionHelper::FromWebContents(web_contents);
|
|
|
|
permission_helper->GrantSerialPortPermission(origin, std::move(value),
|
|
|
|
render_frame_host);
|
2021-07-26 17:10:57 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ephemeral_ports_[origin].insert(port.token);
|
2020-09-28 16:22:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool SerialChooserContext::HasPortPermission(
|
2021-07-26 17:10:57 +00:00
|
|
|
const url::Origin& origin,
|
2021-10-06 20:18:00 +00:00
|
|
|
const device::mojom::SerialPortInfo& port,
|
|
|
|
content::RenderFrameHost* render_frame_host) {
|
2021-07-26 17:10:57 +00:00
|
|
|
auto it = ephemeral_ports_.find(origin);
|
2020-09-28 16:22:03 +00:00
|
|
|
if (it != ephemeral_ports_.end()) {
|
|
|
|
const std::set<base::UnguessableToken> ports = it->second;
|
|
|
|
if (base::Contains(ports, port.token))
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-07-26 17:10:57 +00:00
|
|
|
if (!CanStorePersistentEntry(port)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-10-06 20:18:00 +00:00
|
|
|
auto* web_contents =
|
|
|
|
content::WebContents::FromRenderFrameHost(render_frame_host);
|
|
|
|
auto* permission_helper =
|
|
|
|
WebContentsPermissionHelper::FromWebContents(web_contents);
|
|
|
|
base::Value value = PortInfoToValue(port);
|
|
|
|
return permission_helper->CheckSerialPortPermission(origin, std::move(value),
|
|
|
|
render_frame_host);
|
2020-09-28 16:22:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
|
|
|
bool SerialChooserContext::CanStorePersistentEntry(
|
|
|
|
const device::mojom::SerialPortInfo& port) {
|
|
|
|
// If there is no display name then the path name will be used instead. The
|
|
|
|
// path name is not guaranteed to be stable. For example, on Linux the name
|
|
|
|
// "ttyUSB0" is reused for any USB serial device. A name like that would be
|
|
|
|
// confusing to show in settings when the device is disconnected.
|
|
|
|
if (!port.display_name || port.display_name->empty())
|
|
|
|
return false;
|
|
|
|
|
2020-10-16 01:30:41 +00:00
|
|
|
#if defined(OS_WIN)
|
|
|
|
return !port.device_instance_id.empty();
|
|
|
|
#else
|
|
|
|
if (!port.has_vendor_id || !port.has_product_id || !port.serial_number ||
|
|
|
|
port.serial_number->empty()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(OS_MAC)
|
|
|
|
// The combination of the standard USB vendor ID, product ID and serial
|
|
|
|
// number properties should be enough to uniquely identify a device
|
|
|
|
// however recent versions of macOS include built-in drivers for common
|
|
|
|
// types of USB-to-serial adapters while their manufacturers still
|
|
|
|
// recommend installing their custom drivers. When both are loaded two
|
|
|
|
// IOSerialBSDClient instances are found for each device. Including the
|
|
|
|
// USB driver name allows us to distinguish between the two.
|
|
|
|
if (!port.usb_driver_name || port.usb_driver_name->empty())
|
|
|
|
return false;
|
|
|
|
#endif // defined(OS_MAC)
|
|
|
|
|
|
|
|
return true;
|
|
|
|
#endif // defined(OS_WIN)
|
2020-09-28 16:22:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
device::mojom::SerialPortManager* SerialChooserContext::GetPortManager() {
|
|
|
|
EnsurePortManagerConnection();
|
|
|
|
return port_manager_.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SerialChooserContext::AddPortObserver(PortObserver* observer) {
|
|
|
|
port_observer_list_.AddObserver(observer);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SerialChooserContext::RemovePortObserver(PortObserver* observer) {
|
|
|
|
port_observer_list_.RemoveObserver(observer);
|
|
|
|
}
|
|
|
|
|
|
|
|
base::WeakPtr<SerialChooserContext> SerialChooserContext::AsWeakPtr() {
|
|
|
|
return weak_factory_.GetWeakPtr();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SerialChooserContext::OnPortAdded(device::mojom::SerialPortInfoPtr port) {
|
|
|
|
for (auto& observer : port_observer_list_)
|
|
|
|
observer.OnPortAdded(*port);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SerialChooserContext::OnPortRemoved(
|
|
|
|
device::mojom::SerialPortInfoPtr port) {
|
|
|
|
for (auto& observer : port_observer_list_)
|
|
|
|
observer.OnPortRemoved(*port);
|
|
|
|
|
|
|
|
port_info_.erase(port->token);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SerialChooserContext::EnsurePortManagerConnection() {
|
|
|
|
if (port_manager_)
|
|
|
|
return;
|
|
|
|
|
|
|
|
mojo::PendingRemote<device::mojom::SerialPortManager> manager;
|
|
|
|
content::GetDeviceService().BindSerialPortManager(
|
|
|
|
manager.InitWithNewPipeAndPassReceiver());
|
|
|
|
SetUpPortManagerConnection(std::move(manager));
|
|
|
|
}
|
|
|
|
|
|
|
|
void SerialChooserContext::SetUpPortManagerConnection(
|
|
|
|
mojo::PendingRemote<device::mojom::SerialPortManager> manager) {
|
|
|
|
port_manager_.Bind(std::move(manager));
|
|
|
|
port_manager_.set_disconnect_handler(
|
|
|
|
base::BindOnce(&SerialChooserContext::OnPortManagerConnectionError,
|
|
|
|
base::Unretained(this)));
|
|
|
|
|
|
|
|
port_manager_->SetClient(client_receiver_.BindNewPipeAndPassRemote());
|
|
|
|
}
|
|
|
|
|
|
|
|
void SerialChooserContext::OnPortManagerConnectionError() {
|
|
|
|
port_manager_.reset();
|
|
|
|
client_receiver_.reset();
|
|
|
|
|
|
|
|
port_info_.clear();
|
|
|
|
|
|
|
|
ephemeral_ports_.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace electron
|