2018-10-16 09:01:38 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "types.h"
|
2018-10-17 08:55:43 +00:00
|
|
|
#include "InlineLinkedList.h"
|
|
|
|
#include <AK/String.h>
|
2018-10-16 09:01:38 +00:00
|
|
|
#include "TSS.h"
|
2018-10-17 08:55:43 +00:00
|
|
|
#include <AK/Vector.h>
|
2018-10-16 09:01:38 +00:00
|
|
|
#include "i386.h"
|
2018-10-26 12:24:11 +00:00
|
|
|
#include <VirtualFileSystem/VirtualFileSystem.h>
|
2018-10-30 12:59:29 +00:00
|
|
|
#include "TTY.h"
|
2018-10-16 09:01:38 +00:00
|
|
|
|
|
|
|
class FileHandle;
|
2018-11-01 22:04:34 +00:00
|
|
|
class PageDirectory;
|
2018-11-01 12:21:02 +00:00
|
|
|
class Region;
|
|
|
|
class Subregion;
|
2018-10-18 11:05:00 +00:00
|
|
|
class Zone;
|
2018-10-16 09:01:38 +00:00
|
|
|
|
2018-11-01 12:15:46 +00:00
|
|
|
class Process : public InlineLinkedListNode<Process> {
|
|
|
|
friend class InlineLinkedListNode<Process>;
|
2018-10-16 09:01:38 +00:00
|
|
|
public:
|
2018-11-01 12:15:46 +00:00
|
|
|
static Process* createKernelProcess(void (*entry)(), String&& name);
|
|
|
|
static Process* createUserProcess(const String& path, uid_t, gid_t, pid_t parentPID, int& error, const char** args = nullptr, TTY* = nullptr);
|
|
|
|
~Process();
|
2018-10-23 10:44:46 +00:00
|
|
|
|
2018-11-01 12:15:46 +00:00
|
|
|
static Vector<Process*> allProcesses();
|
2018-10-16 09:01:38 +00:00
|
|
|
|
|
|
|
enum State {
|
|
|
|
Invalid = 0,
|
|
|
|
Runnable = 1,
|
|
|
|
Running = 2,
|
2018-10-25 11:07:59 +00:00
|
|
|
Terminated = 3,
|
|
|
|
Crashing = 4,
|
|
|
|
Exiting = 5,
|
2018-11-01 13:21:02 +00:00
|
|
|
BeingInspected = 6,
|
|
|
|
BlockedSleep = 7,
|
|
|
|
BlockedWait = 8,
|
|
|
|
BlockedRead = 9,
|
2018-10-16 09:01:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum RingLevel {
|
|
|
|
Ring0 = 0,
|
|
|
|
Ring3 = 3,
|
|
|
|
};
|
|
|
|
|
2018-10-17 22:12:52 +00:00
|
|
|
bool isRing0() const { return m_ring == Ring0; }
|
2018-10-25 09:15:17 +00:00
|
|
|
bool isRing3() const { return m_ring == Ring3; }
|
2018-10-17 22:12:52 +00:00
|
|
|
|
2018-11-01 12:15:46 +00:00
|
|
|
static Process* fromPID(pid_t);
|
|
|
|
static Process* kernelProcess();
|
2018-10-16 09:01:38 +00:00
|
|
|
|
|
|
|
const String& name() const { return m_name; }
|
|
|
|
pid_t pid() const { return m_pid; }
|
2018-11-02 11:56:51 +00:00
|
|
|
pid_t sid() const { return m_sid; }
|
|
|
|
pid_t pgid() const { return m_pgid; }
|
2018-10-16 09:01:38 +00:00
|
|
|
DWORD ticks() const { return m_ticks; }
|
2018-10-16 09:06:35 +00:00
|
|
|
WORD selector() const { return m_farPtr.selector; }
|
2018-10-16 09:01:38 +00:00
|
|
|
TSS32& tss() { return m_tss; }
|
|
|
|
State state() const { return m_state; }
|
2018-10-23 10:44:46 +00:00
|
|
|
uid_t uid() const { return m_uid; }
|
|
|
|
uid_t gid() const { return m_gid; }
|
2018-10-16 09:01:38 +00:00
|
|
|
|
2018-10-25 08:15:13 +00:00
|
|
|
pid_t parentPID() const { return m_parentPID; }
|
|
|
|
|
2018-10-16 09:06:35 +00:00
|
|
|
const FarPtr& farPtr() const { return m_farPtr; }
|
|
|
|
|
2018-10-16 09:01:38 +00:00
|
|
|
FileHandle* fileHandleIfExists(int fd);
|
|
|
|
|
2018-10-23 13:41:55 +00:00
|
|
|
static void doHouseKeeping();
|
|
|
|
|
2018-11-01 12:15:46 +00:00
|
|
|
void block(Process::State);
|
2018-10-16 09:01:38 +00:00
|
|
|
void unblock();
|
|
|
|
|
|
|
|
void setWakeupTime(DWORD t) { m_wakeupTime = t; }
|
|
|
|
DWORD wakeupTime() const { return m_wakeupTime; }
|
|
|
|
|
2018-11-01 12:15:46 +00:00
|
|
|
static void prepForIRETToNewProcess();
|
2018-10-16 09:06:35 +00:00
|
|
|
|
2018-10-16 09:01:38 +00:00
|
|
|
bool tick() { ++m_ticks; return --m_ticksLeft; }
|
|
|
|
void setTicksLeft(DWORD t) { m_ticksLeft = t; }
|
|
|
|
|
2018-10-16 09:06:35 +00:00
|
|
|
void setSelector(WORD s) { m_farPtr.selector = s; }
|
2018-11-01 13:21:02 +00:00
|
|
|
void set_state(State s) { m_state = s; }
|
2018-10-16 09:01:38 +00:00
|
|
|
|
2018-11-02 11:56:51 +00:00
|
|
|
pid_t sys$setsid();
|
|
|
|
pid_t sys$getsid(pid_t);
|
|
|
|
int sys$setpgid(pid_t pid, pid_t pgid);
|
|
|
|
pid_t sys$getpgrp();
|
|
|
|
pid_t sys$getpgid(pid_t);
|
2018-11-02 12:14:25 +00:00
|
|
|
pid_t sys$tcgetpgrp(int fd);
|
|
|
|
int sys$tcsetpgrp(int fd, pid_t pgid);
|
2018-10-16 09:01:38 +00:00
|
|
|
uid_t sys$getuid();
|
2018-10-22 11:55:11 +00:00
|
|
|
gid_t sys$getgid();
|
|
|
|
pid_t sys$getpid();
|
2018-10-28 13:11:51 +00:00
|
|
|
int sys$open(const char* path, int options);
|
2018-10-16 09:01:38 +00:00
|
|
|
int sys$close(int fd);
|
2018-10-30 14:33:37 +00:00
|
|
|
ssize_t sys$read(int fd, void* outbuf, size_t nread);
|
|
|
|
ssize_t sys$write(int fd, const void*, size_t);
|
2018-10-26 22:29:31 +00:00
|
|
|
int sys$lstat(const char*, Unix::stat*);
|
2018-10-31 09:14:56 +00:00
|
|
|
int sys$stat(const char*, Unix::stat*);
|
2018-10-31 16:50:43 +00:00
|
|
|
int sys$lseek(int fd, off_t, int whence);
|
2018-10-16 09:01:38 +00:00
|
|
|
int sys$kill(pid_t pid, int sig);
|
|
|
|
int sys$geterror() { return m_error; }
|
2018-10-22 09:43:55 +00:00
|
|
|
void sys$exit(int status);
|
2018-10-26 09:16:56 +00:00
|
|
|
int sys$spawn(const char* path, const char** args);
|
2018-10-26 23:24:22 +00:00
|
|
|
pid_t sys$waitpid(pid_t, int* wstatus, int options);
|
2018-10-24 07:48:24 +00:00
|
|
|
void* sys$mmap(void*, size_t size);
|
|
|
|
int sys$munmap(void*, size_t size);
|
2018-10-28 08:57:22 +00:00
|
|
|
int sys$set_mmap_name(void*, size_t, const char*);
|
2018-10-24 10:43:52 +00:00
|
|
|
int sys$get_dir_entries(int fd, void*, size_t);
|
2018-10-24 12:28:22 +00:00
|
|
|
int sys$getcwd(char*, size_t);
|
2018-10-26 12:24:11 +00:00
|
|
|
int sys$chdir(const char*);
|
2018-10-25 11:53:49 +00:00
|
|
|
int sys$sleep(unsigned seconds);
|
2018-10-25 15:29:49 +00:00
|
|
|
int sys$gettimeofday(timeval*);
|
2018-10-26 07:54:29 +00:00
|
|
|
int sys$gethostname(char* name, size_t length);
|
2018-10-26 09:16:56 +00:00
|
|
|
int sys$get_arguments(int* argc, char*** argv);
|
2018-10-31 16:50:43 +00:00
|
|
|
int sys$get_environment(char*** environ);
|
2018-10-26 12:56:21 +00:00
|
|
|
int sys$uname(utsname*);
|
2018-10-28 13:11:51 +00:00
|
|
|
int sys$readlink(const char*, char*, size_t);
|
2018-10-30 21:03:02 +00:00
|
|
|
int sys$ttyname_r(int fd, char*, size_t);
|
2018-10-16 09:01:38 +00:00
|
|
|
|
|
|
|
static void initialize();
|
|
|
|
|
2018-11-01 12:15:46 +00:00
|
|
|
static void processDidCrash(Process*);
|
2018-10-17 22:26:30 +00:00
|
|
|
|
2018-10-30 14:33:37 +00:00
|
|
|
const TTY* tty() const { return m_tty; }
|
|
|
|
|
2018-10-26 15:42:12 +00:00
|
|
|
size_t regionCount() const { return m_regions.size(); }
|
2018-10-27 12:56:52 +00:00
|
|
|
const Vector<RetainPtr<Region>>& regions() const { return m_regions; }
|
2018-10-28 09:03:54 +00:00
|
|
|
size_t subregionCount() const { return m_regions.size(); }
|
|
|
|
const Vector<OwnPtr<Subregion>>& subregions() const { return m_subregions; }
|
2018-10-18 12:53:00 +00:00
|
|
|
void dumpRegions();
|
|
|
|
|
2018-10-22 09:15:16 +00:00
|
|
|
void didSchedule() { ++m_timesScheduled; }
|
|
|
|
dword timesScheduled() const { return m_timesScheduled; }
|
|
|
|
|
2018-10-23 22:20:34 +00:00
|
|
|
pid_t waitee() const { return m_waitee; }
|
|
|
|
|
2018-10-26 22:14:24 +00:00
|
|
|
dword framePtr() const { return m_tss.ebp; }
|
2018-10-26 20:32:35 +00:00
|
|
|
dword stackPtr() const { return m_tss.esp; }
|
|
|
|
dword stackTop() const { return m_tss.ss == 0x10 ? m_stackTop0 : m_stackTop3; }
|
|
|
|
|
2018-10-26 22:14:24 +00:00
|
|
|
bool isValidAddressForKernel(LinearAddress) const;
|
2018-11-01 11:45:51 +00:00
|
|
|
bool validate_user_read(LinearAddress) const;
|
|
|
|
bool validate_user_write(LinearAddress) const;
|
2018-10-26 22:14:24 +00:00
|
|
|
|
2018-10-28 11:20:25 +00:00
|
|
|
InodeIdentifier cwdInode() const { return m_cwd ? m_cwd->inode : InodeIdentifier(); }
|
2018-10-28 13:11:51 +00:00
|
|
|
InodeIdentifier executableInode() const { return m_executable ? m_executable->inode : InodeIdentifier(); }
|
2018-10-28 11:20:25 +00:00
|
|
|
|
2018-11-01 12:39:28 +00:00
|
|
|
size_t number_of_open_file_descriptors() const;
|
2018-11-01 13:00:28 +00:00
|
|
|
size_t max_open_file_descriptors() const { return m_max_open_file_descriptors; }
|
|
|
|
FileHandle* file_descriptor(size_t i) { return m_file_descriptors[i].ptr(); }
|
|
|
|
const FileHandle* file_descriptor(size_t i) const { return m_file_descriptors[i].ptr(); }
|
2018-11-01 12:39:28 +00:00
|
|
|
|
2018-10-16 09:01:38 +00:00
|
|
|
private:
|
2018-10-18 11:05:00 +00:00
|
|
|
friend class MemoryManager;
|
2018-11-01 12:15:46 +00:00
|
|
|
friend bool scheduleNewProcess();
|
2018-10-18 11:05:00 +00:00
|
|
|
|
2018-11-01 12:15:46 +00:00
|
|
|
Process(String&& name, uid_t, gid_t, pid_t parentPID, RingLevel, RetainPtr<VirtualFileSystem::Node>&& cwd = nullptr, RetainPtr<VirtualFileSystem::Node>&& executable = nullptr, TTY* = nullptr);
|
2018-10-25 09:15:17 +00:00
|
|
|
|
2018-10-16 09:01:38 +00:00
|
|
|
void allocateLDT();
|
|
|
|
|
2018-11-01 22:04:34 +00:00
|
|
|
PageDirectory* m_page_directory { nullptr };
|
2018-11-01 08:01:51 +00:00
|
|
|
|
2018-11-01 12:15:46 +00:00
|
|
|
Process* m_prev { nullptr };
|
|
|
|
Process* m_next { nullptr };
|
2018-10-16 09:01:38 +00:00
|
|
|
|
|
|
|
String m_name;
|
|
|
|
void (*m_entry)() { nullptr };
|
|
|
|
pid_t m_pid { 0 };
|
|
|
|
uid_t m_uid { 0 };
|
2018-10-22 11:55:11 +00:00
|
|
|
gid_t m_gid { 0 };
|
2018-11-02 11:56:51 +00:00
|
|
|
pid_t m_sid { 0 };
|
|
|
|
pid_t m_pgid { 0 };
|
2018-10-16 09:01:38 +00:00
|
|
|
DWORD m_ticks { 0 };
|
|
|
|
DWORD m_ticksLeft { 0 };
|
2018-10-26 20:32:35 +00:00
|
|
|
DWORD m_stackTop0 { 0 };
|
|
|
|
DWORD m_stackTop3 { 0 };
|
2018-10-16 09:06:35 +00:00
|
|
|
FarPtr m_farPtr;
|
2018-10-16 09:01:38 +00:00
|
|
|
State m_state { Invalid };
|
|
|
|
DWORD m_wakeupTime { 0 };
|
|
|
|
TSS32 m_tss;
|
2018-11-01 15:23:12 +00:00
|
|
|
word m_ldt_selector { 0 };
|
2018-10-16 09:01:38 +00:00
|
|
|
Descriptor* m_ldtEntries { nullptr };
|
2018-11-01 12:39:28 +00:00
|
|
|
Vector<OwnPtr<FileHandle>> m_file_descriptors;
|
2018-10-16 09:01:38 +00:00
|
|
|
RingLevel m_ring { Ring0 };
|
|
|
|
int m_error { 0 };
|
2018-10-18 12:53:00 +00:00
|
|
|
void* m_kernelStack { nullptr };
|
2018-10-22 09:15:16 +00:00
|
|
|
dword m_timesScheduled { 0 };
|
2018-10-23 22:20:34 +00:00
|
|
|
pid_t m_waitee { -1 };
|
2018-10-26 23:24:22 +00:00
|
|
|
int m_waiteeStatus { 0 };
|
2018-10-25 11:07:59 +00:00
|
|
|
int m_fdBlockedOnRead { -1 };
|
2018-11-01 12:39:28 +00:00
|
|
|
size_t m_max_open_file_descriptors { 16 };
|
2018-10-18 11:05:00 +00:00
|
|
|
|
2018-10-26 12:24:11 +00:00
|
|
|
RetainPtr<VirtualFileSystem::Node> m_cwd;
|
2018-10-28 13:11:51 +00:00
|
|
|
RetainPtr<VirtualFileSystem::Node> m_executable;
|
2018-10-24 12:28:22 +00:00
|
|
|
|
2018-10-30 12:59:29 +00:00
|
|
|
TTY* m_tty { nullptr };
|
|
|
|
|
2018-10-18 12:53:00 +00:00
|
|
|
Region* allocateRegion(size_t, String&& name);
|
2018-10-27 12:56:52 +00:00
|
|
|
Region* allocateRegion(size_t, String&& name, LinearAddress);
|
2018-10-24 07:48:24 +00:00
|
|
|
bool deallocateRegion(Region& region);
|
|
|
|
|
|
|
|
Region* regionFromRange(LinearAddress, size_t);
|
2018-10-18 12:53:00 +00:00
|
|
|
|
2018-10-27 12:56:52 +00:00
|
|
|
Vector<RetainPtr<Region>> m_regions;
|
|
|
|
Vector<OwnPtr<Subregion>> m_subregions;
|
2018-10-18 11:05:00 +00:00
|
|
|
|
2018-10-18 12:53:00 +00:00
|
|
|
// FIXME: Implement some kind of ASLR?
|
|
|
|
LinearAddress m_nextRegion;
|
2018-10-24 12:28:22 +00:00
|
|
|
|
|
|
|
pid_t m_parentPID { 0 };
|
2018-10-26 09:16:56 +00:00
|
|
|
|
2018-11-01 00:04:02 +00:00
|
|
|
static void notify_waiters(pid_t waitee, int exit_status, int signal);
|
|
|
|
void murder(int signal);
|
2018-10-31 00:06:57 +00:00
|
|
|
|
2018-10-26 09:16:56 +00:00
|
|
|
Vector<String> m_arguments;
|
2018-10-31 16:50:43 +00:00
|
|
|
Vector<String> m_initialEnvironment;
|
2018-10-16 09:01:38 +00:00
|
|
|
};
|
|
|
|
|
2018-11-01 13:21:02 +00:00
|
|
|
class ProcessInspectionScope {
|
|
|
|
public:
|
|
|
|
ProcessInspectionScope(Process& process)
|
|
|
|
: m_process(process)
|
|
|
|
, m_original_state(process.state())
|
|
|
|
{
|
|
|
|
m_process.set_state(Process::BeingInspected);
|
|
|
|
}
|
|
|
|
|
|
|
|
~ProcessInspectionScope()
|
|
|
|
{
|
|
|
|
m_process.set_state(m_original_state);
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
Process& m_process;
|
|
|
|
Process::State m_original_state { Process::Invalid };
|
|
|
|
};
|
|
|
|
|
2018-10-16 09:01:38 +00:00
|
|
|
extern void yield();
|
2018-11-01 12:15:46 +00:00
|
|
|
extern bool scheduleNewProcess();
|
2018-10-17 21:49:32 +00:00
|
|
|
extern void switchNow();
|
2018-11-01 12:15:46 +00:00
|
|
|
extern void block(Process::State);
|
2018-10-16 09:01:38 +00:00
|
|
|
extern void sleep(DWORD ticks);
|
|
|
|
|
2018-11-01 12:15:46 +00:00
|
|
|
extern Process* current;
|