2020-01-18 09:38:21 +01:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
|
* All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
|
*
|
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
|
|
|
* list of conditions and the following disclaimer.
|
|
|
|
|
*
|
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
|
*
|
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
|
|
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
*/
|
|
|
|
|
|
2019-06-02 18:58:59 +10:00
|
|
|
#pragma once
|
|
|
|
|
|
2019-06-21 18:45:35 +02:00
|
|
|
#include <AK/RefPtr.h>
|
2020-02-08 02:17:26 +01:00
|
|
|
#include <Kernel/Devices/BlockDevice.h>
|
2020-12-26 16:53:30 +02:00
|
|
|
#include <Kernel/Storage/Partition/DiskPartitionMetadata.h>
|
2019-06-02 18:58:59 +10:00
|
|
|
|
2020-02-16 01:27:42 +01:00
|
|
|
namespace Kernel {
|
|
|
|
|
|
2020-02-08 02:17:26 +01:00
|
|
|
class DiskPartition final : public BlockDevice {
|
2019-06-02 18:58:59 +10:00
|
|
|
public:
|
2020-12-26 16:53:30 +02:00
|
|
|
static NonnullRefPtr<DiskPartition> create(BlockDevice&, unsigned, DiskPartitionMetadata);
|
2019-06-02 19:38:37 +10:00
|
|
|
virtual ~DiskPartition();
|
2019-06-02 18:58:59 +10:00
|
|
|
|
2020-11-02 11:16:01 -07:00
|
|
|
virtual void start_request(AsyncBlockDeviceRequest&) override;
|
2019-06-02 18:58:59 +10:00
|
|
|
|
2019-08-02 23:18:47 +10:00
|
|
|
// ^BlockDevice
|
2021-03-17 13:18:51 +01:00
|
|
|
virtual KResultOr<size_t> read(FileDescription&, u64, UserOrKernelBuffer&, size_t) override;
|
2020-04-10 19:44:42 +10:00
|
|
|
virtual bool can_read(const FileDescription&, size_t) const override;
|
2021-03-17 13:18:51 +01:00
|
|
|
virtual KResultOr<size_t> write(FileDescription&, u64, const UserOrKernelBuffer&, size_t) override;
|
2020-04-10 19:44:42 +10:00
|
|
|
virtual bool can_write(const FileDescription&, size_t) const override;
|
2019-08-02 23:18:47 +10:00
|
|
|
|
2020-12-25 19:01:19 +02:00
|
|
|
// ^Device
|
|
|
|
|
virtual mode_t required_mode() const override { return 0600; }
|
2021-01-21 18:49:56 +01:00
|
|
|
virtual String device_name() const override;
|
2020-12-25 19:01:19 +02:00
|
|
|
|
2020-12-31 13:17:03 +02:00
|
|
|
const DiskPartitionMetadata& metadata() const;
|
|
|
|
|
|
2019-06-02 18:58:59 +10:00
|
|
|
private:
|
|
|
|
|
virtual const char* class_name() const override;
|
|
|
|
|
|
2020-12-26 16:53:30 +02:00
|
|
|
DiskPartition(BlockDevice&, unsigned, DiskPartitionMetadata);
|
2019-06-02 18:58:59 +10:00
|
|
|
|
2020-02-08 02:17:26 +01:00
|
|
|
NonnullRefPtr<BlockDevice> m_device;
|
2020-12-26 16:53:30 +02:00
|
|
|
DiskPartitionMetadata m_metadata;
|
2019-06-02 18:58:59 +10:00
|
|
|
};
|
2020-02-16 01:27:42 +01:00
|
|
|
|
|
|
|
|
}
|