2018-10-10 11:53:07 +02:00
|
|
|
#pragma once
|
|
|
|
|
2019-04-03 12:25:24 +02:00
|
|
|
#include <Kernel/FileSystem/VirtualFileSystem.h>
|
|
|
|
#include <Kernel/FileSystem/InodeMetadata.h>
|
2019-05-16 03:02:37 +02:00
|
|
|
#include <Kernel/FileSystem/Inode.h>
|
2019-04-06 20:29:48 +02:00
|
|
|
#include <Kernel/FileSystem/FIFO.h>
|
2019-04-06 14:29:29 +02:00
|
|
|
#include <Kernel/LinearAddress.h>
|
2018-10-10 11:53:07 +02:00
|
|
|
#include <AK/ByteBuffer.h>
|
2018-11-12 01:28:46 +01:00
|
|
|
#include <AK/CircularQueue.h>
|
2018-11-05 19:01:22 +01:00
|
|
|
#include <AK/Retainable.h>
|
2019-01-31 05:05:57 +01:00
|
|
|
#include <AK/Badge.h>
|
2019-04-06 20:29:48 +02:00
|
|
|
#include <Kernel/Net/Socket.h>
|
2018-10-10 11:53:07 +02:00
|
|
|
|
2019-04-28 15:02:55 +02:00
|
|
|
class File;
|
2018-10-30 22:03:02 +01:00
|
|
|
class TTY;
|
2019-01-15 06:30:19 +01:00
|
|
|
class MasterPTY;
|
2019-01-14 14:21:51 +01:00
|
|
|
class Process;
|
2019-02-16 09:57:42 +01:00
|
|
|
class Region;
|
|
|
|
class CharacterDevice;
|
2019-04-28 22:31:31 +02:00
|
|
|
class SharedMemory;
|
2019-02-14 15:40:04 +01:00
|
|
|
|
2018-11-07 11:37:54 +01:00
|
|
|
class FileDescriptor : public Retainable<FileDescriptor> {
|
2018-10-10 11:53:07 +02:00
|
|
|
public:
|
2019-02-25 12:43:52 +01:00
|
|
|
static Retained<FileDescriptor> create(RetainPtr<Inode>&&);
|
2019-05-03 20:42:43 +02:00
|
|
|
static Retained<FileDescriptor> create(RetainPtr<File>&&, SocketRole = SocketRole::None);
|
2018-11-07 11:37:54 +01:00
|
|
|
~FileDescriptor();
|
2018-10-10 11:53:07 +02:00
|
|
|
|
2019-02-25 12:43:52 +01:00
|
|
|
Retained<FileDescriptor> clone();
|
2018-11-02 20:41:58 +01:00
|
|
|
|
2018-11-01 14:00:28 +01:00
|
|
|
int close();
|
|
|
|
|
2019-01-23 06:53:01 +01:00
|
|
|
off_t seek(off_t, int whence);
|
2019-04-29 13:58:40 +02:00
|
|
|
ssize_t read(byte*, ssize_t);
|
|
|
|
ssize_t write(const byte* data, ssize_t);
|
2019-03-02 00:11:08 +01:00
|
|
|
KResult fstat(stat&);
|
2018-10-14 21:19:27 +02:00
|
|
|
|
2019-03-01 10:39:19 +01:00
|
|
|
KResult fchmod(mode_t);
|
|
|
|
|
2019-04-29 13:58:40 +02:00
|
|
|
bool can_read();
|
|
|
|
bool can_write();
|
2018-10-25 13:07:59 +02:00
|
|
|
|
2019-02-25 21:19:57 +01:00
|
|
|
ssize_t get_dir_entries(byte* buffer, ssize_t);
|
2018-10-24 12:43:52 +02:00
|
|
|
|
2019-04-29 13:58:40 +02:00
|
|
|
ByteBuffer read_entire_file();
|
2018-10-10 11:53:07 +02:00
|
|
|
|
2019-03-06 22:30:13 +01:00
|
|
|
KResultOr<String> absolute_path();
|
2018-10-24 14:28:22 +02:00
|
|
|
|
2018-12-03 00:39:25 +01:00
|
|
|
bool is_directory() const;
|
2018-10-26 14:24:11 +02:00
|
|
|
|
2019-04-28 15:02:55 +02:00
|
|
|
// FIXME: These should go away once everything is a File.
|
|
|
|
bool is_file() const { return m_file.ptr(); }
|
|
|
|
File* file() { return m_file.ptr(); }
|
|
|
|
const File* file() const { return m_file.ptr(); }
|
2019-02-16 09:57:42 +01:00
|
|
|
|
2019-04-28 15:02:55 +02:00
|
|
|
bool is_device() const;
|
2018-11-16 13:11:21 +01:00
|
|
|
|
2018-12-03 00:39:25 +01:00
|
|
|
bool is_tty() const;
|
2018-10-30 22:03:02 +01:00
|
|
|
const TTY* tty() const;
|
2018-11-02 13:14:25 +01:00
|
|
|
TTY* tty();
|
2019-01-15 06:30:19 +01:00
|
|
|
|
|
|
|
bool is_master_pty() const;
|
|
|
|
const MasterPTY* master_pty() const;
|
|
|
|
MasterPTY* master_pty();
|
2018-10-30 22:03:02 +01:00
|
|
|
|
2019-01-16 12:57:07 +01:00
|
|
|
InodeMetadata metadata() const;
|
|
|
|
Inode* inode() { return m_inode.ptr(); }
|
|
|
|
const Inode* inode() const { return m_inode.ptr(); }
|
2018-10-27 16:43:03 +02:00
|
|
|
|
2019-04-28 15:02:55 +02:00
|
|
|
KResultOr<Region*> mmap(Process&, LinearAddress, size_t offset, size_t, int prot);
|
2018-10-26 14:24:11 +02:00
|
|
|
|
2018-12-03 00:39:25 +01:00
|
|
|
bool is_blocking() const { return m_is_blocking; }
|
|
|
|
void set_blocking(bool b) { m_is_blocking = b; }
|
2018-11-11 15:36:40 +01:00
|
|
|
|
|
|
|
dword file_flags() const { return m_file_flags; }
|
2018-11-13 01:36:31 +01:00
|
|
|
void set_file_flags(dword flags) { m_file_flags = flags; }
|
2018-11-12 01:28:46 +01:00
|
|
|
|
2019-05-03 20:42:43 +02:00
|
|
|
bool is_socket() const;
|
|
|
|
Socket* socket();
|
|
|
|
const Socket* socket() const;
|
2019-02-14 14:17:38 +01:00
|
|
|
|
2019-04-29 04:55:54 +02:00
|
|
|
bool is_fifo() const;
|
|
|
|
FIFO* fifo();
|
2018-11-12 01:28:46 +01:00
|
|
|
FIFO::Direction fifo_direction() { return m_fifo_direction; }
|
2019-04-29 04:55:54 +02:00
|
|
|
void set_fifo_direction(Badge<FIFO>, FIFO::Direction direction) { m_fifo_direction = direction; }
|
2018-10-18 10:27:07 +02:00
|
|
|
|
2019-04-28 15:02:55 +02:00
|
|
|
bool is_fsfile() const;
|
2019-04-28 22:31:31 +02:00
|
|
|
bool is_shared_memory() const;
|
|
|
|
SharedMemory* shared_memory();
|
|
|
|
const SharedMemory* shared_memory() const;
|
2019-04-09 01:10:00 +02:00
|
|
|
|
2018-12-03 00:39:25 +01:00
|
|
|
ByteBuffer& generator_cache() { return m_generator_cache; }
|
2018-10-27 00:14:24 +02:00
|
|
|
|
2019-03-06 22:14:31 +01:00
|
|
|
void set_original_inode(Badge<VFS>, Retained<Inode>&& inode) { m_inode = move(inode); }
|
2019-01-31 05:05:57 +01:00
|
|
|
|
2019-03-20 02:38:36 +01:00
|
|
|
SocketRole socket_role() const { return m_socket_role; }
|
2019-02-17 11:00:35 +01:00
|
|
|
void set_socket_role(SocketRole);
|
2019-02-14 17:18:35 +01:00
|
|
|
|
2019-04-09 01:10:00 +02:00
|
|
|
KResult truncate(off_t);
|
|
|
|
|
2018-10-10 11:53:07 +02:00
|
|
|
private:
|
2018-11-15 14:43:10 +01:00
|
|
|
friend class VFS;
|
2019-05-03 20:42:43 +02:00
|
|
|
FileDescriptor(RetainPtr<File>&&, SocketRole);
|
2019-01-16 12:57:07 +01:00
|
|
|
explicit FileDescriptor(RetainPtr<Inode>&&);
|
2018-11-12 01:28:46 +01:00
|
|
|
FileDescriptor(FIFO&, FIFO::Direction);
|
2018-10-10 11:53:07 +02:00
|
|
|
|
2019-01-16 12:57:07 +01:00
|
|
|
RetainPtr<Inode> m_inode;
|
2019-04-28 15:02:55 +02:00
|
|
|
RetainPtr<File> m_file;
|
2018-10-14 21:19:27 +02:00
|
|
|
|
2019-01-23 06:53:01 +01:00
|
|
|
off_t m_current_offset { 0 };
|
2018-10-18 10:27:07 +02:00
|
|
|
|
2018-12-03 00:39:25 +01:00
|
|
|
ByteBuffer m_generator_cache;
|
2018-10-27 00:14:24 +02:00
|
|
|
|
2018-11-11 15:36:40 +01:00
|
|
|
dword m_file_flags { 0 };
|
2018-11-12 01:28:46 +01:00
|
|
|
|
2019-05-18 04:14:22 +02:00
|
|
|
bool m_is_blocking { true };
|
2019-02-14 15:40:04 +01:00
|
|
|
SocketRole m_socket_role { SocketRole::None };
|
2019-05-18 04:14:22 +02:00
|
|
|
FIFO::Direction m_fifo_direction { FIFO::Direction::Neither };
|
2018-10-10 11:53:07 +02:00
|
|
|
};
|
|
|
|
|