mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
190cf1507b
https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#cother-other-default-operation-rules "The compiler is more likely to get the default semantics right and you cannot implement these functions better than the compiler."
175 lines
6.3 KiB
C++
175 lines
6.3 KiB
C++
/*
|
|
* Copyright (c) 2021, Liav A. <liavalb@hotmail.co.il>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <AK/JsonArraySerializer.h>
|
|
#include <AK/JsonObjectSerializer.h>
|
|
#include <Kernel/Bus/USB/SysFSUSB.h>
|
|
#include <Kernel/KBufferBuilder.h>
|
|
|
|
namespace Kernel::USB {
|
|
|
|
static SysFSUSBBusDirectory* s_procfs_usb_bus_directory;
|
|
|
|
SysFSUSBDeviceInformation::SysFSUSBDeviceInformation(NonnullOwnPtr<KString> device_name, USB::Device& device)
|
|
: SysFSComponent()
|
|
, m_device(device)
|
|
, m_device_name(move(device_name))
|
|
{
|
|
}
|
|
|
|
SysFSUSBDeviceInformation::~SysFSUSBDeviceInformation() = default;
|
|
|
|
ErrorOr<void> SysFSUSBDeviceInformation::try_generate(KBufferBuilder& builder)
|
|
{
|
|
VERIFY(m_lock.is_locked());
|
|
auto array = TRY(JsonArraySerializer<>::try_create(builder));
|
|
|
|
auto obj = TRY(array.add_object());
|
|
TRY(obj.add("device_address", m_device->address()));
|
|
TRY(obj.add("usb_spec_compliance_bcd", m_device->device_descriptor().usb_spec_compliance_bcd));
|
|
TRY(obj.add("device_class", m_device->device_descriptor().device_class));
|
|
TRY(obj.add("device_sub_class", m_device->device_descriptor().device_sub_class));
|
|
TRY(obj.add("device_protocol", m_device->device_descriptor().device_protocol));
|
|
TRY(obj.add("max_packet_size", m_device->device_descriptor().max_packet_size));
|
|
TRY(obj.add("vendor_id", m_device->device_descriptor().vendor_id));
|
|
TRY(obj.add("product_id", m_device->device_descriptor().product_id));
|
|
TRY(obj.add("device_release_bcd", m_device->device_descriptor().device_release_bcd));
|
|
TRY(obj.add("manufacturer_id_descriptor_index", m_device->device_descriptor().manufacturer_id_descriptor_index));
|
|
TRY(obj.add("product_string_descriptor_index", m_device->device_descriptor().product_string_descriptor_index));
|
|
TRY(obj.add("serial_number_descriptor_index", m_device->device_descriptor().serial_number_descriptor_index));
|
|
TRY(obj.add("num_configurations", m_device->device_descriptor().num_configurations));
|
|
TRY(obj.finish());
|
|
TRY(array.finish());
|
|
return {};
|
|
}
|
|
|
|
ErrorOr<void> SysFSUSBDeviceInformation::refresh_data(OpenFileDescription& description) const
|
|
{
|
|
MutexLocker lock(m_lock);
|
|
auto& cached_data = description.data();
|
|
if (!cached_data) {
|
|
cached_data = TRY(adopt_nonnull_own_or_enomem(new (nothrow) SysFSInodeData));
|
|
}
|
|
auto builder = TRY(KBufferBuilder::try_create());
|
|
TRY(const_cast<SysFSUSBDeviceInformation&>(*this).try_generate(builder));
|
|
auto& typed_cached_data = static_cast<SysFSInodeData&>(*cached_data);
|
|
typed_cached_data.buffer = builder.build();
|
|
if (!typed_cached_data.buffer)
|
|
return ENOMEM;
|
|
return {};
|
|
}
|
|
|
|
ErrorOr<size_t> SysFSUSBDeviceInformation::read_bytes(off_t offset, size_t count, UserOrKernelBuffer& buffer, OpenFileDescription* description) const
|
|
{
|
|
dbgln_if(PROCFS_DEBUG, "SysFSUSBDeviceInformation @ {}: read_bytes offset: {} count: {}", name(), offset, count);
|
|
|
|
VERIFY(offset >= 0);
|
|
VERIFY(buffer.user_or_kernel_ptr());
|
|
|
|
if (!description)
|
|
return Error::from_errno(EIO);
|
|
|
|
MutexLocker locker(m_lock);
|
|
|
|
if (!description->data()) {
|
|
dbgln("SysFSUSBDeviceInformation: Do not have cached data!");
|
|
return Error::from_errno(EIO);
|
|
}
|
|
|
|
auto& typed_cached_data = static_cast<SysFSInodeData&>(*description->data());
|
|
auto& data_buffer = typed_cached_data.buffer;
|
|
|
|
if (!data_buffer || (size_t)offset >= data_buffer->size())
|
|
return 0;
|
|
|
|
ssize_t nread = min(static_cast<off_t>(data_buffer->size() - offset), static_cast<off_t>(count));
|
|
TRY(buffer.write(data_buffer->data() + offset, nread));
|
|
return nread;
|
|
}
|
|
|
|
ErrorOr<void> SysFSUSBBusDirectory::traverse_as_directory(FileSystemID fsid, Function<ErrorOr<void>(FileSystem::DirectoryEntryView const&)> callback) const
|
|
{
|
|
SpinlockLocker lock(m_lock);
|
|
// Note: if the parent directory is null, it means something bad happened as this should not happen for the USB directory.
|
|
VERIFY(m_parent_directory);
|
|
TRY(callback({ ".", { fsid, component_index() }, 0 }));
|
|
TRY(callback({ "..", { fsid, m_parent_directory->component_index() }, 0 }));
|
|
|
|
for (auto const& device_node : m_device_nodes) {
|
|
InodeIdentifier identifier = { fsid, device_node.component_index() };
|
|
TRY(callback({ device_node.name(), identifier, 0 }));
|
|
}
|
|
return {};
|
|
}
|
|
|
|
RefPtr<SysFSComponent> SysFSUSBBusDirectory::lookup(StringView name)
|
|
{
|
|
SpinlockLocker lock(m_lock);
|
|
for (auto& device_node : m_device_nodes) {
|
|
if (device_node.name() == name) {
|
|
return device_node;
|
|
}
|
|
}
|
|
return {};
|
|
}
|
|
|
|
RefPtr<SysFSUSBDeviceInformation> SysFSUSBBusDirectory::device_node_for(USB::Device& device)
|
|
{
|
|
RefPtr<USB::Device> checked_device = device;
|
|
for (auto& device_node : m_device_nodes) {
|
|
if (device_node.device().ptr() == checked_device.ptr())
|
|
return device_node;
|
|
}
|
|
return {};
|
|
}
|
|
|
|
void SysFSUSBBusDirectory::plug(USB::Device& new_device)
|
|
{
|
|
SpinlockLocker lock(m_lock);
|
|
auto device_node = device_node_for(new_device);
|
|
VERIFY(!device_node);
|
|
auto sysfs_usb_device_or_error = SysFSUSBDeviceInformation::create(new_device);
|
|
if (sysfs_usb_device_or_error.is_error()) {
|
|
dbgln("Failed to create SysFSUSBDevice for device id {}", new_device.address());
|
|
return;
|
|
}
|
|
|
|
m_device_nodes.append(sysfs_usb_device_or_error.release_value());
|
|
}
|
|
|
|
void SysFSUSBBusDirectory::unplug(USB::Device& deleted_device)
|
|
{
|
|
SpinlockLocker lock(m_lock);
|
|
auto device_node = device_node_for(deleted_device);
|
|
VERIFY(device_node);
|
|
device_node->m_list_node.remove();
|
|
}
|
|
|
|
SysFSUSBBusDirectory& SysFSUSBBusDirectory::the()
|
|
{
|
|
VERIFY(s_procfs_usb_bus_directory);
|
|
return *s_procfs_usb_bus_directory;
|
|
}
|
|
|
|
UNMAP_AFTER_INIT SysFSUSBBusDirectory::SysFSUSBBusDirectory(SysFSBusDirectory& buses_directory)
|
|
: SysFSDirectory(buses_directory)
|
|
{
|
|
}
|
|
|
|
UNMAP_AFTER_INIT void SysFSUSBBusDirectory::initialize()
|
|
{
|
|
auto directory = adopt_ref(*new SysFSUSBBusDirectory(SysFSComponentRegistry::the().buses_directory()));
|
|
SysFSComponentRegistry::the().register_new_bus_directory(directory);
|
|
s_procfs_usb_bus_directory = directory;
|
|
}
|
|
|
|
ErrorOr<NonnullRefPtr<SysFSUSBDeviceInformation>> SysFSUSBDeviceInformation::create(USB::Device& device)
|
|
{
|
|
auto device_name = TRY(KString::number(device.address()));
|
|
return adopt_nonnull_ref_or_enomem(new (nothrow) SysFSUSBDeviceInformation(move(device_name), device));
|
|
}
|
|
|
|
}
|