mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 10:35:00 +00:00

This forces anyone who wants to look into and/or manipulate an address space to lock it. And this replaces the previous, more flimsy, manual spinlock use. Note that pointers *into* the address space are not safe to use after you unlock the space. We've got many issues like this, and we'll have to track those down as wlel.
53 lines
1.1 KiB
C++
53 lines
1.1 KiB
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <AK/StringView.h>
|
|
#include <AK/Userspace.h>
|
|
#include <Kernel/FileSystem/File.h>
|
|
#include <Kernel/FileSystem/OpenFileDescription.h>
|
|
#include <Kernel/Process.h>
|
|
|
|
namespace Kernel {
|
|
|
|
File::File() = default;
|
|
File::~File() = default;
|
|
|
|
ErrorOr<NonnullLockRefPtr<OpenFileDescription>> File::open(int options)
|
|
{
|
|
auto description = OpenFileDescription::try_create(*this);
|
|
if (!description.is_error()) {
|
|
description.value()->set_rw_mode(options);
|
|
description.value()->set_file_flags(options);
|
|
}
|
|
return description;
|
|
}
|
|
|
|
ErrorOr<void> File::close()
|
|
{
|
|
return {};
|
|
}
|
|
|
|
ErrorOr<void> File::ioctl(OpenFileDescription&, unsigned, Userspace<void*>)
|
|
{
|
|
return ENOTTY;
|
|
}
|
|
|
|
ErrorOr<Memory::Region*> File::mmap(Process&, Memory::AddressSpace&, OpenFileDescription&, Memory::VirtualRange const&, u64, int, bool)
|
|
{
|
|
return ENODEV;
|
|
}
|
|
|
|
ErrorOr<void> File::attach(OpenFileDescription&)
|
|
{
|
|
m_attach_count++;
|
|
return {};
|
|
}
|
|
|
|
void File::detach(OpenFileDescription&)
|
|
{
|
|
m_attach_count--;
|
|
}
|
|
}
|