2020-01-18 09:38:21 +01:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 09:38:21 +01:00
|
|
|
*/
|
|
|
|
|
|
2020-03-23 13:45:10 +01:00
|
|
|
#include <AK/StringView.h>
|
2021-07-26 02:47:00 -07:00
|
|
|
#include <AK/Userspace.h>
|
2019-07-09 14:46:23 +02:00
|
|
|
#include <Kernel/FileSystem/File.h>
|
2021-09-07 13:39:11 +02:00
|
|
|
#include <Kernel/FileSystem/OpenFileDescription.h>
|
2021-07-18 23:29:56 -06:00
|
|
|
#include <Kernel/Process.h>
|
2019-04-28 14:53:50 +02:00
|
|
|
|
2020-02-16 01:27:42 +01:00
|
|
|
namespace Kernel {
|
|
|
|
|
|
2019-04-28 14:53:50 +02:00
|
|
|
File::File()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
File::~File()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-16 20:58:23 +02:00
|
|
|
bool File::unref() const
|
|
|
|
|
{
|
|
|
|
|
if (deref_base())
|
|
|
|
|
return false;
|
2021-09-10 14:44:46 +03:00
|
|
|
const_cast<File&>(*this).before_removing();
|
2021-08-16 20:58:23 +02:00
|
|
|
delete this;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2021-11-08 00:51:39 +01:00
|
|
|
ErrorOr<NonnullRefPtr<OpenFileDescription>> File::open(int options)
|
2019-04-28 14:53:50 +02:00
|
|
|
{
|
2021-09-07 13:39:11 +02:00
|
|
|
auto description = OpenFileDescription::try_create(*this);
|
2020-09-17 13:51:09 -06:00
|
|
|
if (!description.is_error()) {
|
|
|
|
|
description.value()->set_rw_mode(options);
|
|
|
|
|
description.value()->set_file_flags(options);
|
|
|
|
|
}
|
2020-01-04 12:29:33 +01:00
|
|
|
return description;
|
2019-04-28 14:53:50 +02:00
|
|
|
}
|
|
|
|
|
|
2021-11-08 00:51:39 +01:00
|
|
|
ErrorOr<void> File::close()
|
2019-04-28 14:53:50 +02:00
|
|
|
{
|
2021-11-08 00:51:39 +01:00
|
|
|
return {};
|
2019-04-28 14:53:50 +02:00
|
|
|
}
|
|
|
|
|
|
2021-11-08 00:51:39 +01:00
|
|
|
ErrorOr<void> File::ioctl(OpenFileDescription&, unsigned, Userspace<void*>)
|
2019-04-28 14:53:50 +02:00
|
|
|
{
|
2021-07-26 03:47:25 -07:00
|
|
|
return ENOTTY;
|
2019-04-28 14:53:50 +02:00
|
|
|
}
|
|
|
|
|
|
2021-11-08 00:51:39 +01:00
|
|
|
ErrorOr<Memory::Region*> File::mmap(Process&, OpenFileDescription&, Memory::VirtualRange const&, u64, int, bool)
|
2019-04-28 14:53:50 +02:00
|
|
|
{
|
2021-01-20 23:11:17 +01:00
|
|
|
return ENODEV;
|
2019-04-28 14:53:50 +02:00
|
|
|
}
|
2020-02-16 01:27:42 +01:00
|
|
|
|
2021-11-08 00:51:39 +01:00
|
|
|
ErrorOr<void> File::attach(OpenFileDescription&)
|
2021-04-30 10:33:33 +02:00
|
|
|
{
|
|
|
|
|
m_attach_count++;
|
2021-11-08 00:51:39 +01:00
|
|
|
return {};
|
2021-04-30 10:33:33 +02:00
|
|
|
}
|
|
|
|
|
|
2021-09-07 13:39:11 +02:00
|
|
|
void File::detach(OpenFileDescription&)
|
2021-04-30 10:33:33 +02:00
|
|
|
{
|
|
|
|
|
m_attach_count--;
|
|
|
|
|
}
|
2020-02-16 01:27:42 +01:00
|
|
|
}
|