mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-04 02:08:53 +00:00
It's easy to forget the responsibility of validating and safely copying kernel parameters in code that is far away from syscalls. ioctl's are one such example, and bugs there are just as dangerous as at the root syscall level. To avoid this case, utilize the AK::Userspace<T> template in the ioctl kernel interface so that implementors have no choice but to properly validate and copy ioctl pointer arguments.
73 lines
2.5 KiB
C++
73 lines
2.5 KiB
C++
/*
|
|
* Copyright (c) 2021, Liav A. <liavalb@hotmail.co.il>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/NonnullOwnPtr.h>
|
|
#include <AK/String.h>
|
|
#include <AK/Types.h>
|
|
#include <Kernel/Devices/BlockDevice.h>
|
|
#include <Kernel/Graphics/GraphicsDevice.h>
|
|
#include <Kernel/PhysicalAddress.h>
|
|
#include <Kernel/SpinLock.h>
|
|
#include <Kernel/VM/AnonymousVMObject.h>
|
|
|
|
namespace Kernel {
|
|
|
|
class FramebufferDevice : public BlockDevice {
|
|
AK_MAKE_ETERNAL
|
|
public:
|
|
static NonnullRefPtr<FramebufferDevice> create(const GraphicsDevice&, size_t, PhysicalAddress, size_t, size_t, size_t);
|
|
|
|
virtual int ioctl(FileDescription&, unsigned request, Userspace<void*> arg) override;
|
|
virtual KResultOr<Region*> mmap(Process&, FileDescription&, const Range&, u64 offset, int prot, bool shared) override;
|
|
|
|
// ^Device
|
|
virtual mode_t required_mode() const override { return 0660; }
|
|
virtual String device_name() const override;
|
|
|
|
virtual void deactivate_writes();
|
|
virtual void activate_writes();
|
|
size_t framebuffer_size_in_bytes() const;
|
|
|
|
virtual ~FramebufferDevice() {};
|
|
void initialize();
|
|
|
|
private:
|
|
// ^File
|
|
virtual StringView class_name() const override { return "FramebufferDevice"; }
|
|
|
|
virtual bool can_read(const FileDescription&, size_t) const override final { return true; }
|
|
virtual bool can_write(const FileDescription&, size_t) const override final { return true; }
|
|
virtual void start_request(AsyncBlockDeviceRequest& request) override final { request.complete(AsyncDeviceRequest::Failure); }
|
|
virtual KResultOr<size_t> read(FileDescription&, u64, UserOrKernelBuffer&, size_t) override { return -EINVAL; }
|
|
virtual KResultOr<size_t> write(FileDescription&, u64, const UserOrKernelBuffer&, size_t) override { return -EINVAL; }
|
|
|
|
FramebufferDevice(const GraphicsDevice&, size_t, PhysicalAddress, size_t, size_t, size_t);
|
|
|
|
PhysicalAddress m_framebuffer_address;
|
|
size_t m_framebuffer_pitch { 0 };
|
|
size_t m_framebuffer_width { 0 };
|
|
size_t m_framebuffer_height { 0 };
|
|
|
|
SpinLock<u8> m_activation_lock;
|
|
|
|
RefPtr<AnonymousVMObject> m_real_framebuffer_vmobject;
|
|
RefPtr<AnonymousVMObject> m_swapped_framebuffer_vmobject;
|
|
OwnPtr<Region> m_real_framebuffer_region;
|
|
OwnPtr<Region> m_swapped_framebuffer_region;
|
|
|
|
bool m_graphical_writes_enabled { true };
|
|
|
|
RefPtr<AnonymousVMObject> m_userspace_real_framebuffer_vmobject;
|
|
Region* m_userspace_framebuffer_region { nullptr };
|
|
|
|
size_t m_y_offset { 0 };
|
|
size_t m_output_port_index;
|
|
NonnullRefPtr<GraphicsDevice> m_graphics_adapter;
|
|
};
|
|
|
|
}
|