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