blob: e428e63b1c979208b734f33a44b2582a3eb52b66 [file] [log] [blame]
// Copyright 2012 The ChromiumOS Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "permission_broker/deny_claimed_usb_device_rule.h"
#include <libudev.h>
#include <linux/usb/ch9.h>
#include <iterator>
#include <memory>
#include <string>
#include "base/logging.h"
#include "featured/feature_library.h"
#include "permission_broker/allow_lists.h"
#include "permission_broker/rule.h"
#include "permission_broker/rule_utils.h"
#include "permission_broker/udev_scopers.h"
#include <base/check.h>
using policy::DevicePolicy;
namespace {
const uint32_t kAdbClass = 0xff;
const uint32_t kAdbSubclass = 0x42;
const uint32_t kAdbProtocol = 0x1;
enum class RemovableAttr {
kUnknown,
kFixed,
kRemovable,
};
RemovableAttr ParseRemovableSysattr(const std::string& removable) {
if (removable == "fixed") {
return RemovableAttr::kFixed;
} else if (removable == "removable") {
return RemovableAttr::kRemovable;
} else {
if (removable != "unknown") {
LOG(WARNING) << "Unexpected value for removable sysattr: '" << removable
<< "'";
}
return RemovableAttr::kUnknown;
}
}
RemovableAttr GetRemovableSysattr(udev_device* device) {
const char* removable = udev_device_get_sysattr_value(device, "removable");
if (!removable) {
return RemovableAttr::kUnknown;
}
return ParseRemovableSysattr(removable);
}
bool HasRemovableParent(udev_device* device) {
for (udev_device* parent = udev_device_get_parent(device); parent != nullptr;
parent = udev_device_get_parent(parent)) {
const char* removable = udev_device_get_sysattr_value(parent, "removable");
if (!removable)
break;
if (ParseRemovableSysattr(removable) == RemovableAttr::kRemovable)
return true;
}
return false;
}
} // namespace
namespace permission_broker {
DenyClaimedUsbDeviceRule::DenyClaimedUsbDeviceRule()
: UsbSubsystemUdevRule("DenyClaimedUsbDeviceRule"),
policy_loaded_(false),
// If unabled to load form-factor, assume most conservative case.
running_on_chromebox_(GetFormFactor() == FormFactor::kChromebox ||
GetFormFactor() == FormFactor::kUnknown) {}
DenyClaimedUsbDeviceRule::~DenyClaimedUsbDeviceRule() = default;
bool DenyClaimedUsbDeviceRule::LoadPolicy() {
usb_allow_list_.clear();
auto policy_provider = std::make_unique<policy::PolicyProvider>();
policy_provider->Reload();
// No available policies.
if (!policy_provider->device_policy_is_loaded())
return false;
const policy::DevicePolicy* policy = &policy_provider->GetDevicePolicy();
return policy->GetUsbDetachableWhitelist(&usb_allow_list_);
}
bool DenyClaimedUsbDeviceRule::IsDeviceDetachableByPolicy(udev_device* device) {
// Retrieve the device policy for detachable USB devices if needed.
if (!policy_loaded_)
policy_loaded_ = LoadPolicy();
if (!policy_loaded_)
return false;
// Check whether this USB device is allowed.
uint32_t vendor_id, product_id;
if (!GetUIntSysattr(device, "idVendor", &vendor_id) ||
!GetUIntSysattr(device, "idProduct", &product_id))
return false;
return UsbDeviceListContainsId(usb_allow_list_.begin(), usb_allow_list_.end(),
vendor_id, product_id);
}
bool DenyClaimedUsbDeviceRule::IsInterfaceAdb(udev_device* device) {
uint32_t intf_class, intf_subclass, intf_protocol;
if (!GetUIntSysattr(device, "bInterfaceClass", &intf_class) ||
!GetUIntSysattr(device, "bInterfaceSubClass", &intf_subclass) ||
!GetUIntSysattr(device, "bInterfaceProtocol", &intf_protocol))
return false;
return intf_class == kAdbClass && intf_subclass == kAdbSubclass &&
intf_protocol == kAdbProtocol;
}
bool IsInterfaceUsbSerial(udev_device* iface) {
// Search all children of the interface in the 'usb-serial' subsystem
// this includes all the USB-serial converter and most micro-controllers
// USB bulk endpoints presenting a serial-like interface but not CDC-ACM
// devices (e.g. modems or boards pretending to be one)
udev* udev = udev_device_get_udev(iface);
ScopedUdevEnumeratePtr enum_serial(udev_enumerate_new(udev));
udev_enumerate_add_match_subsystem(enum_serial.get(), "usb-serial");
udev_enumerate_add_match_parent(enum_serial.get(), iface);
udev_enumerate_scan_devices(enum_serial.get());
struct udev_list_entry* entry = nullptr;
udev_list_entry_foreach(entry,
udev_enumerate_get_list_entry(enum_serial.get())) {
// a usb-serial driver is connected to this interface
LOG(INFO) << "Found usb-serial interface.";
return true;
}
return false;
}
bool IsInterfaceStorage(udev_device* iface) {
uint32_t interface_class;
if (!GetUIntSysattr(iface, "bInterfaceClass", &interface_class))
return false;
// This matches USB drives, SD adapters, and so on.
return interface_class == USB_CLASS_MASS_STORAGE;
}
bool IsInterfaceSafeToDetach(udev_device* iface) {
// Normally the permission_broker prevents users from interfering with the
// system usage of a USB device.
// But in particular cases, a USB interface is deemed 'safe to detach' from
// its kernel driver if the purpose of the driver is only exposing it to apps.
// e.g. below the usb serial interfaces are only used by the chrome.serial
// and WebSerial external API rather than in any intrinsic system use.
// Storage devices are a special case that we allow to be shared to Guest VMs.
// Chrome provides extra protections to avoid exposing these devices to
// non-Guest VM components.
return IsInterfaceUsbSerial(iface) || IsInterfaceStorage(iface);
}
bool IsDeviceAllowedSerial(udev_device* device) {
uint32_t vendor_id, product_id;
if (!GetUIntSysattr(device, "idVendor", &vendor_id) ||
!GetUIntSysattr(device, "idProduct", &product_id))
return false;
return UsbDeviceListContainsId(std::begin(kSerialAllowedIds),
std::end(kSerialAllowedIds), vendor_id,
product_id);
}
bool IsDeviceAllowedHID(udev_device* device) {
uint32_t vendor_id, product_id;
if (!GetUIntSysattr(device, "idVendor", &vendor_id) ||
!GetUIntSysattr(device, "idProduct", &product_id))
return false;
return UsbDeviceListContainsId(std::begin(kHIDAllowedIds),
std::end(kHIDAllowedIds), vendor_id,
product_id);
}
bool IsDeviceAllowedFixed(udev_device* device) {
uint32_t vendor_id, product_id;
if (!GetUIntSysattr(device, "idVendor", &vendor_id) ||
!GetUIntSysattr(device, "idProduct", &product_id))
return false;
return UsbDeviceListContainsId(std::begin(kFixedAllowedIds),
std::end(kFixedAllowedIds), vendor_id,
product_id);
}
Rule::Result DenyClaimedUsbDeviceRule::ProcessUsbDevice(udev_device* device) {
const char* device_syspath = udev_device_get_syspath(device);
if (!device_syspath) {
VLOG(1) << "Device to be processed is lacking syspath";
return DENY;
}
auto features_lib = feature::PlatformFeatures::Get();
// TODO(b/267951284) Consider consolidating or caching this via
// PlatformFeatures::ListenForRefetchNeeded.
if (!features_lib) {
LOG(ERROR) << "Unable to get PlatformFeatures library, will not enable "
"permissive features";
} else if (features_lib->IsEnabledBlocking(
RuleUtils::kEnablePermissiveUsbPassthrough) &&
// There are more UI/UX implications that must be considered for
// chromeboxes, disable for now.
!running_on_chromebox_) {
// If permissive USB is enabled, we should potentially still allow claimed
// interfaces, pending the result of other rules e.g.
// AllowExternallyTaggedUsbDeviceRule.
auto cros_usb_location = GetCrosUsbLocationProperty(device);
if (cros_usb_location.has_value() &&
cros_usb_location != CrosUsbLocationProperty::kUnknown) {
return IGNORE;
}
}
udev* udev = udev_device_get_udev(device);
ScopedUdevEnumeratePtr enumerate(udev_enumerate_new(udev));
udev_enumerate_add_match_subsystem(enumerate.get(), "usb");
udev_enumerate_add_match_parent(enumerate.get(), device);
udev_enumerate_scan_devices(enumerate.get());
bool found_claimed_interface = false;
bool found_unclaimed_interface = false;
bool found_adb_interface = false;
bool found_only_safe_interfaces = true;
struct udev_list_entry* entry = nullptr;
udev_list_entry_foreach(entry,
udev_enumerate_get_list_entry(enumerate.get())) {
const char* entry_path = udev_list_entry_get_name(entry);
// udev_enumerate_add_match_parent includes the parent entry, skip it.
if (!strcmp(udev_device_get_syspath(device), entry_path)) {
continue;
}
ScopedUdevDevicePtr child(udev_device_new_from_syspath(udev, entry_path));
const char* child_type = udev_device_get_devtype(child.get());
if (!child_type || strcmp(child_type, "usb_interface") != 0) {
// If this is not a usb_interface node then something is wrong, fail safe.
LOG(WARNING) << "Found a child '" << entry_path
<< "' with unexpected type: "
<< (child_type ? child_type : "(null)");
return DENY;
}
const char* driver = udev_device_get_driver(child.get());
if (driver) {
LOG(INFO) << "Found claimed interface with driver: " << driver;
found_claimed_interface = true;
found_only_safe_interfaces =
found_only_safe_interfaces && IsInterfaceSafeToDetach(child.get());
} else {
found_unclaimed_interface = true;
}
if (IsInterfaceAdb(child.get())) {
LOG(INFO) << "Found ADB interface.";
found_adb_interface = true;
}
}
if (found_claimed_interface) {
// Fixed devices are likely internal, but in some cases external USB devices
// are marked as fixed. Don't allow detaching the driver for a fixed USB
// device unless it has a removable parent or is in the allow list.
if (GetRemovableSysattr(device) == RemovableAttr::kFixed &&
!IsDeviceAllowedFixed(device) && !HasRemovableParent(device)) {
LOG(INFO) << "Denying fixed USB device with driver.";
return DENY;
}
if (found_only_safe_interfaces)
LOG(INFO) << "Found only detachable interface(s), safe to claim.";
if (IsDeviceDetachableByPolicy(device) || IsDeviceAllowedSerial(device) ||
IsDeviceAllowedHID(device) || found_adb_interface ||
found_only_safe_interfaces)
return ALLOW_WITH_DETACH;
else
return found_unclaimed_interface ? ALLOW_WITH_LOCKDOWN : DENY;
} else {
return IGNORE;
}
}
} // namespace permission_broker