123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324 |
- /*
- * 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.
- */
- #include <Kernel/FileSystem/BlockBasedFileSystem.h>
- #include <Kernel/Process.h>
- //#define BBFS_DEBUG
- namespace Kernel {
- struct CacheEntry {
- time_t timestamp { 0 };
- u32 block_index { 0 };
- u8* data { nullptr };
- bool has_data { false };
- bool is_dirty { false };
- bool is_used { false };
- };
- class DiskCache {
- public:
- explicit DiskCache(BlockBasedFS& fs)
- : m_fs(fs)
- , m_cached_block_data(KBuffer::create_with_size(m_entry_count * m_fs.block_size()))
- , m_entries(KBuffer::create_with_size(m_entry_count * sizeof(CacheEntry)))
- {
- for (size_t i = 0; i < m_entry_count; ++i) {
- entries()[i].data = m_cached_block_data.data() + i * m_fs.block_size();
- }
- }
- ~DiskCache() { }
- bool is_dirty() const { return m_dirty; }
- void set_dirty(bool b) { m_dirty = b; }
- CacheEntry& get(u32 block_index) const
- {
- auto now = kgettimeofday().tv_sec;
- if (auto it = m_map.find(block_index); it != m_map.end()) {
- auto& entry = const_cast<CacheEntry&>(entries()[it->value]);
- ASSERT(entry.block_index == block_index);
- entry.timestamp = now;
- return entry;
- }
- Optional<size_t> oldest_clean_index;
- for (size_t i = 0; i < m_entry_count; ++i) {
- auto& entry = const_cast<CacheEntry&>(entries()[i]);
- ASSERT(!entry.is_used || entry.block_index != block_index);
- if (!entry.is_dirty) {
- if (!oldest_clean_index.has_value())
- oldest_clean_index = i;
- else if (entry.timestamp < entries()[oldest_clean_index.value()].timestamp)
- oldest_clean_index = i;
- }
- }
- if (!oldest_clean_index.has_value()) {
- // Not a single clean entry! Flush writes and try again.
- // NOTE: We want to make sure we only call FileBackedFS flush here,
- // not some FileBackedFS subclass flush!
- m_fs.flush_writes_impl();
- return get(block_index);
- }
- // Replace the oldest clean entry.
- auto& new_entry = const_cast<CacheEntry&>(entries()[oldest_clean_index.value()]);
- // If this entry was occupied, remove the previous mapping from the fast lookup table.
- if (new_entry.block_index)
- m_map.remove(new_entry.block_index);
- // Create a fast lookup mapping from the block index to this entry.
- m_map.set(block_index, oldest_clean_index.value());
- new_entry.timestamp = now;
- new_entry.block_index = block_index;
- new_entry.has_data = false;
- new_entry.is_dirty = false;
- new_entry.is_used = true;
- return new_entry;
- }
- const CacheEntry* entries() const { return (const CacheEntry*)m_entries.data(); }
- CacheEntry* entries() { return (CacheEntry*)m_entries.data(); }
- template<typename Callback>
- void for_each_entry(Callback callback)
- {
- for (size_t i = 0; i < m_entry_count; ++i)
- callback(entries()[i]);
- }
- private:
- BlockBasedFS& m_fs;
- mutable HashMap<u32, u32> m_map;
- size_t m_entry_count { 10000 };
- KBuffer m_cached_block_data;
- KBuffer m_entries;
- bool m_dirty { false };
- };
- BlockBasedFS::BlockBasedFS(FileDescription& file_description)
- : FileBackedFS(file_description)
- {
- ASSERT(file_description.file().is_seekable());
- }
- BlockBasedFS::~BlockBasedFS()
- {
- }
- int BlockBasedFS::write_block(unsigned index, const UserOrKernelBuffer& data, size_t count, size_t offset, bool allow_cache)
- {
- ASSERT(m_logical_block_size);
- ASSERT(offset + count <= block_size());
- #ifdef BBFS_DEBUG
- klog() << "BlockBasedFileSystem::write_block " << index << ", size=" << count;
- #endif
- if (!allow_cache) {
- flush_specific_block_if_needed(index);
- u32 base_offset = static_cast<u32>(index) * static_cast<u32>(block_size()) + offset;
- file_description().seek(base_offset, SEEK_SET);
- auto nwritten = file_description().write(data, count);
- if (nwritten.is_error())
- return -EIO; // TODO: Return error code as-is, could be -EFAULT!
- ASSERT(nwritten.value() == count);
- return 0;
- }
- auto& entry = cache().get(index);
- if (count < block_size()) {
- // Fill the cache first.
- read_block(index, nullptr, block_size());
- }
- if (!data.read(entry.data + offset, count))
- return -EFAULT;
- entry.is_dirty = true;
- entry.has_data = true;
- cache().set_dirty(true);
- return 0;
- }
- bool BlockBasedFS::raw_read(unsigned index, UserOrKernelBuffer& buffer)
- {
- u32 base_offset = static_cast<u32>(index) * static_cast<u32>(m_logical_block_size);
- file_description().seek(base_offset, SEEK_SET);
- auto nread = file_description().read(buffer, m_logical_block_size);
- ASSERT(!nread.is_error());
- ASSERT(nread.value() == m_logical_block_size);
- return true;
- }
- bool BlockBasedFS::raw_write(unsigned index, const UserOrKernelBuffer& buffer)
- {
- u32 base_offset = static_cast<u32>(index) * static_cast<u32>(m_logical_block_size);
- file_description().seek(base_offset, SEEK_SET);
- auto nwritten = file_description().write(buffer, m_logical_block_size);
- ASSERT(!nwritten.is_error());
- ASSERT(nwritten.value() == m_logical_block_size);
- return true;
- }
- bool BlockBasedFS::raw_read_blocks(unsigned index, size_t count, UserOrKernelBuffer& buffer)
- {
- auto current = buffer;
- for (unsigned block = index; block < (index + count); block++) {
- if (!raw_read(block, current))
- return false;
- current = current.offset(logical_block_size());
- }
- return true;
- }
- bool BlockBasedFS::raw_write_blocks(unsigned index, size_t count, const UserOrKernelBuffer& buffer)
- {
- auto current = buffer;
- for (unsigned block = index; block < (index + count); block++) {
- if (!raw_write(block, current))
- return false;
- current = current.offset(logical_block_size());
- }
- return true;
- }
- int BlockBasedFS::write_blocks(unsigned index, unsigned count, const UserOrKernelBuffer& data, bool allow_cache)
- {
- ASSERT(m_logical_block_size);
- #ifdef BBFS_DEBUG
- klog() << "BlockBasedFileSystem::write_blocks " << index << " x" << count;
- #endif
- for (unsigned i = 0; i < count; ++i)
- write_block(index + i, data.offset(i * block_size()), block_size(), 0, allow_cache);
- return 0;
- }
- int BlockBasedFS::read_block(unsigned index, UserOrKernelBuffer* buffer, size_t count, size_t offset, bool allow_cache) const
- {
- ASSERT(m_logical_block_size);
- ASSERT(offset + count <= block_size());
- #ifdef BBFS_DEBUG
- klog() << "BlockBasedFileSystem::read_block " << index;
- #endif
- if (!allow_cache) {
- const_cast<BlockBasedFS*>(this)->flush_specific_block_if_needed(index);
- u32 base_offset = static_cast<u32>(index) * static_cast<u32>(block_size()) + static_cast<u32>(offset);
- file_description().seek(base_offset, SEEK_SET);
- auto nread = file_description().read(*buffer, count);
- if (nread.is_error())
- return -EIO;
- ASSERT(nread.value() == count);
- return 0;
- }
- auto& entry = cache().get(index);
- if (!entry.has_data) {
- u32 base_offset = static_cast<u32>(index) * static_cast<u32>(block_size());
- file_description().seek(base_offset, SEEK_SET);
- auto entry_data_buffer = UserOrKernelBuffer::for_kernel_buffer(entry.data);
- auto nread = file_description().read(entry_data_buffer, block_size());
- if (nread.is_error())
- return -EIO;
- ASSERT(nread.value() == block_size());
- entry.has_data = true;
- }
- if (buffer && !buffer->write(entry.data + offset, count))
- return -EFAULT;
- return 0;
- }
- int BlockBasedFS::read_blocks(unsigned index, unsigned count, UserOrKernelBuffer& buffer, bool allow_cache) const
- {
- ASSERT(m_logical_block_size);
- if (!count)
- return false;
- if (count == 1)
- return read_block(index, &buffer, block_size(), 0, allow_cache);
- auto out = buffer;
- for (unsigned i = 0; i < count; ++i) {
- auto err = read_block(index + i, &out, block_size(), 0, allow_cache);
- if (err < 0)
- return err;
- out = out.offset(block_size());
- }
- return 0;
- }
- void BlockBasedFS::flush_specific_block_if_needed(unsigned index)
- {
- LOCKER(m_lock);
- if (!cache().is_dirty())
- return;
- cache().for_each_entry([&](CacheEntry& entry) {
- if (entry.is_dirty && entry.block_index == index) {
- u32 base_offset = static_cast<u32>(entry.block_index) * static_cast<u32>(block_size());
- file_description().seek(base_offset, SEEK_SET);
- // FIXME: Should this error path be surfaced somehow?
- auto entry_data_buffer = UserOrKernelBuffer::for_kernel_buffer(entry.data);
- (void)file_description().write(entry_data_buffer, block_size());
- entry.is_dirty = false;
- }
- });
- }
- void BlockBasedFS::flush_writes_impl()
- {
- LOCKER(m_lock);
- if (!cache().is_dirty())
- return;
- u32 count = 0;
- cache().for_each_entry([&](CacheEntry& entry) {
- if (!entry.is_dirty)
- return;
- u32 base_offset = static_cast<u32>(entry.block_index) * static_cast<u32>(block_size());
- file_description().seek(base_offset, SEEK_SET);
- // FIXME: Should this error path be surfaced somehow?
- auto entry_data_buffer = UserOrKernelBuffer::for_kernel_buffer(entry.data);
- (void)file_description().write(entry_data_buffer, block_size());
- ++count;
- entry.is_dirty = false;
- });
- cache().set_dirty(false);
- dbg() << class_name() << ": Flushed " << count << " blocks to disk";
- }
- void BlockBasedFS::flush_writes()
- {
- flush_writes_impl();
- }
- DiskCache& BlockBasedFS::cache() const
- {
- if (!m_cache)
- m_cache = make<DiskCache>(const_cast<BlockBasedFS&>(*this));
- return *m_cache;
- }
- }
|