2018-10-16 09:01:38 +00:00
|
|
|
#pragma once
|
|
|
|
|
2019-05-28 09:53:16 +00:00
|
|
|
#include <AK/InlineLinkedList.h>
|
2019-06-27 11:34:28 +00:00
|
|
|
#include <AK/NonnullRefPtrVector.h>
|
2019-09-27 12:19:07 +00:00
|
|
|
#include <AK/String.h>
|
2019-05-28 09:53:16 +00:00
|
|
|
#include <AK/Types.h>
|
2018-12-03 00:18:54 +00:00
|
|
|
#include <AK/Vector.h>
|
2019-01-13 04:03:17 +00:00
|
|
|
#include <AK/WeakPtr.h>
|
2019-01-31 06:02:40 +00:00
|
|
|
#include <AK/Weakable.h>
|
2019-04-21 10:33:14 +00:00
|
|
|
#include <Kernel/FileSystem/VirtualFileSystem.h>
|
2019-05-28 09:53:16 +00:00
|
|
|
#include <Kernel/Lock.h>
|
2019-04-21 10:33:14 +00:00
|
|
|
#include <Kernel/Syscall.h>
|
2019-05-28 09:53:16 +00:00
|
|
|
#include <Kernel/TTY/TTY.h>
|
2019-03-23 21:03:17 +00:00
|
|
|
#include <Kernel/Thread.h>
|
2019-05-28 09:53:16 +00:00
|
|
|
#include <Kernel/UnixTypes.h>
|
|
|
|
#include <Kernel/VM/RangeAllocator.h>
|
2019-05-26 00:08:51 +00:00
|
|
|
#include <LibC/signal_numbers.h>
|
2018-10-16 09:01:38 +00:00
|
|
|
|
2019-05-16 15:18:25 +00:00
|
|
|
class ELFLoader;
|
2019-06-07 07:36:51 +00:00
|
|
|
class FileDescription;
|
2019-08-07 19:52:43 +00:00
|
|
|
class KBuffer;
|
2018-11-01 22:04:34 +00:00
|
|
|
class PageDirectory;
|
2018-11-01 12:21:02 +00:00
|
|
|
class Region;
|
2018-11-08 20:20:09 +00:00
|
|
|
class VMObject;
|
2019-04-22 16:44:45 +00:00
|
|
|
class ProcessTracer;
|
2019-07-29 05:26:01 +00:00
|
|
|
class SharedBuffer;
|
2018-11-07 21:15:02 +00:00
|
|
|
|
2019-06-06 15:46:41 +00:00
|
|
|
timeval kgettimeofday();
|
2019-03-13 12:13:23 +00:00
|
|
|
void kgettimeofday(timeval&);
|
|
|
|
|
2019-07-19 15:01:16 +00:00
|
|
|
extern VirtualAddress g_return_to_ring3_from_signal_trampoline;
|
|
|
|
extern VirtualAddress g_return_to_ring0_from_signal_trampoline;
|
|
|
|
|
2019-05-28 09:53:16 +00:00
|
|
|
class Process : public InlineLinkedListNode<Process>
|
|
|
|
, public Weakable<Process> {
|
2018-11-01 12:15:46 +00:00
|
|
|
friend class InlineLinkedListNode<Process>;
|
2019-03-23 21:03:17 +00:00
|
|
|
friend class Thread;
|
2019-05-28 09:53:16 +00:00
|
|
|
|
2018-10-16 09:01:38 +00:00
|
|
|
public:
|
2018-12-24 22:10:48 +00:00
|
|
|
static Process* create_kernel_process(String&& name, void (*entry)());
|
2018-11-06 12:33:06 +00:00
|
|
|
static Process* create_user_process(const String& path, uid_t, gid_t, pid_t ppid, int& error, Vector<String>&& arguments = Vector<String>(), Vector<String>&& environment = Vector<String>(), TTY* = nullptr);
|
2018-11-01 12:15:46 +00:00
|
|
|
~Process();
|
2018-10-23 10:44:46 +00:00
|
|
|
|
2019-02-03 11:33:11 +00:00
|
|
|
static Vector<pid_t> all_pids();
|
2019-01-31 16:31:23 +00:00
|
|
|
static Vector<Process*> all_processes();
|
2018-10-16 09:01:38 +00:00
|
|
|
|
2019-12-11 19:36:56 +00:00
|
|
|
bool is_profiling() const { return m_profiling; }
|
|
|
|
void set_profiling(bool profiling) { m_profiling = profiling; }
|
|
|
|
|
2019-08-08 12:56:50 +00:00
|
|
|
enum RingLevel : u8 {
|
2018-10-16 09:01:38 +00:00
|
|
|
Ring0 = 0,
|
|
|
|
Ring3 = 3,
|
|
|
|
};
|
|
|
|
|
2019-08-07 19:52:43 +00:00
|
|
|
KBuffer backtrace(ProcessInspectionHandle&) const;
|
2019-07-25 19:02:19 +00:00
|
|
|
|
2019-03-24 00:20:35 +00:00
|
|
|
bool is_dead() const { return m_dead; }
|
2019-03-23 21:03:17 +00:00
|
|
|
|
|
|
|
Thread& main_thread() { return *m_main_thread; }
|
|
|
|
const Thread& main_thread() const { return *m_main_thread; }
|
|
|
|
|
2019-01-31 16:31:23 +00:00
|
|
|
bool is_ring0() const { return m_ring == Ring0; }
|
|
|
|
bool is_ring3() const { return m_ring == Ring3; }
|
2018-11-07 20:19:47 +00:00
|
|
|
|
2018-11-09 00:25:31 +00:00
|
|
|
PageDirectory& page_directory() { return *m_page_directory; }
|
|
|
|
const PageDirectory& page_directory() const { return *m_page_directory; }
|
|
|
|
|
2018-11-07 20:38:18 +00:00
|
|
|
static Process* from_pid(pid_t);
|
2018-10-16 09:01:38 +00:00
|
|
|
|
2019-12-15 20:29:26 +00:00
|
|
|
static void update_info_page_timestamp(const timeval&);
|
|
|
|
|
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-23 10:44:46 +00:00
|
|
|
uid_t uid() const { return m_uid; }
|
2018-11-05 14:04:19 +00:00
|
|
|
gid_t gid() const { return m_gid; }
|
2019-02-21 14:45:31 +00:00
|
|
|
const HashTable<gid_t>& gids() const { return m_gids; }
|
2018-11-05 14:04:19 +00:00
|
|
|
uid_t euid() const { return m_euid; }
|
|
|
|
gid_t egid() const { return m_egid; }
|
2018-11-06 12:33:06 +00:00
|
|
|
pid_t ppid() const { return m_ppid; }
|
2018-10-25 08:15:13 +00:00
|
|
|
|
2019-02-22 01:39:13 +00:00
|
|
|
mode_t umask() const { return m_umask; }
|
|
|
|
|
2019-02-27 11:32:53 +00:00
|
|
|
bool in_group(gid_t) const;
|
|
|
|
|
2019-06-07 07:36:51 +00:00
|
|
|
FileDescription* file_description(int fd);
|
|
|
|
const FileDescription* file_description(int fd) const;
|
2019-09-28 20:00:38 +00:00
|
|
|
int fd_flags(int fd) const;
|
2018-10-16 09:01:38 +00:00
|
|
|
|
2019-05-28 09:53:16 +00:00
|
|
|
template<typename Callback>
|
|
|
|
static void for_each(Callback);
|
|
|
|
template<typename Callback>
|
|
|
|
static void for_each_in_pgrp(pid_t, Callback);
|
|
|
|
template<typename Callback>
|
|
|
|
void for_each_child(Callback);
|
|
|
|
template<typename Callback>
|
|
|
|
void for_each_thread(Callback) const;
|
2018-11-02 13:06:48 +00:00
|
|
|
|
2019-01-30 17:26:19 +00:00
|
|
|
void die();
|
2019-02-06 17:45:21 +00:00
|
|
|
void finalize();
|
2018-10-16 09:01:38 +00:00
|
|
|
|
2019-11-09 21:18:16 +00:00
|
|
|
int sys$yield();
|
|
|
|
int sys$putch(char);
|
|
|
|
int sys$sync();
|
|
|
|
int sys$beep();
|
2019-08-15 18:55:10 +00:00
|
|
|
int sys$get_process_name(char* buffer, int buffer_size);
|
2019-07-22 18:01:11 +00:00
|
|
|
int sys$watch_file(const char* path, int path_length);
|
2019-07-21 17:45:31 +00:00
|
|
|
int sys$dbgputch(u8);
|
2019-07-21 19:43:37 +00:00
|
|
|
int sys$dbgputstr(const u8*, int length);
|
2019-07-21 07:59:17 +00:00
|
|
|
int sys$dump_backtrace();
|
2019-03-25 12:03:49 +00:00
|
|
|
int sys$gettid();
|
|
|
|
int sys$donate(int tid);
|
2019-04-08 21:44:12 +00:00
|
|
|
int sys$shm_open(const char* name, int flags, mode_t);
|
|
|
|
int sys$shm_unlink(const char* name);
|
2019-04-08 23:10:00 +00:00
|
|
|
int sys$ftruncate(int fd, off_t);
|
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-10-16 09:01:38 +00:00
|
|
|
uid_t sys$getuid();
|
2018-10-22 11:55:11 +00:00
|
|
|
gid_t sys$getgid();
|
2018-11-05 14:04:19 +00:00
|
|
|
uid_t sys$geteuid();
|
|
|
|
gid_t sys$getegid();
|
2018-10-22 11:55:11 +00:00
|
|
|
pid_t sys$getpid();
|
2018-11-06 12:33:06 +00:00
|
|
|
pid_t sys$getppid();
|
2018-11-06 12:40:23 +00:00
|
|
|
mode_t sys$umask(mode_t);
|
2019-07-08 18:01:49 +00:00
|
|
|
int sys$open(const Syscall::SC_open_params*);
|
2019-11-10 12:47:02 +00:00
|
|
|
int sys$openat(const Syscall::SC_openat_params*);
|
2018-10-16 09:01:38 +00:00
|
|
|
int sys$close(int fd);
|
2019-07-03 19:17:35 +00:00
|
|
|
ssize_t sys$read(int fd, u8*, ssize_t);
|
|
|
|
ssize_t sys$write(int fd, const u8*, ssize_t);
|
2019-05-10 01:19:25 +00:00
|
|
|
ssize_t sys$writev(int fd, const struct iovec* iov, int iov_count);
|
2019-01-23 05:53:01 +00:00
|
|
|
int sys$fstat(int fd, stat*);
|
|
|
|
int sys$lstat(const char*, stat*);
|
|
|
|
int sys$stat(const char*, 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);
|
2019-02-15 11:30:48 +00:00
|
|
|
[[noreturn]] void sys$exit(int status);
|
2019-09-04 13:14:54 +00:00
|
|
|
int sys$sigreturn(RegisterDump& registers);
|
2018-10-26 23:24:22 +00:00
|
|
|
pid_t sys$waitpid(pid_t, int* wstatus, int options);
|
2018-11-08 10:37:01 +00:00
|
|
|
void* sys$mmap(const Syscall::SC_mmap_params*);
|
2018-10-24 07:48:24 +00:00
|
|
|
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*);
|
2019-08-12 17:33:24 +00:00
|
|
|
int sys$mprotect(void*, size_t, int prot);
|
2019-12-09 18:12:38 +00:00
|
|
|
int sys$madvise(void*, size_t, int advice);
|
|
|
|
int sys$purge();
|
2019-01-15 22:12:20 +00:00
|
|
|
int sys$select(const Syscall::SC_select_params*);
|
2019-01-23 06:27:41 +00:00
|
|
|
int sys$poll(pollfd*, int nfds, int timeout);
|
2019-02-25 20:19:57 +00:00
|
|
|
ssize_t sys$get_dir_entries(int fd, void*, ssize_t);
|
|
|
|
int sys$getcwd(char*, ssize_t);
|
2018-10-26 12:24:11 +00:00
|
|
|
int sys$chdir(const char*);
|
2019-09-11 23:18:25 +00:00
|
|
|
int sys$fchdir(int fd);
|
2018-10-25 11:53:49 +00:00
|
|
|
int sys$sleep(unsigned seconds);
|
2019-02-03 15:11:28 +00:00
|
|
|
int sys$usleep(useconds_t usec);
|
2018-10-25 15:29:49 +00:00
|
|
|
int sys$gettimeofday(timeval*);
|
2019-11-02 18:34:06 +00:00
|
|
|
int sys$clock_gettime(clockid_t, timespec*);
|
|
|
|
int sys$clock_nanosleep(const Syscall::SC_clock_nanosleep_params*);
|
2019-02-25 20:19:57 +00:00
|
|
|
int sys$gethostname(char*, ssize_t);
|
2018-10-26 12:56:21 +00:00
|
|
|
int sys$uname(utsname*);
|
2019-02-25 20:19:57 +00:00
|
|
|
int sys$readlink(const char*, char*, ssize_t);
|
|
|
|
int sys$ttyname_r(int fd, char*, ssize_t);
|
|
|
|
int sys$ptsname_r(int fd, char*, ssize_t);
|
2018-11-02 19:41:58 +00:00
|
|
|
pid_t sys$fork(RegisterDump&);
|
2018-11-03 00:49:40 +00:00
|
|
|
int sys$execve(const char* filename, const char** argv, const char** envp);
|
2018-11-05 18:01:22 +00:00
|
|
|
int sys$getdtablesize();
|
|
|
|
int sys$dup(int oldfd);
|
|
|
|
int sys$dup2(int oldfd, int newfd);
|
2019-01-23 05:53:01 +00:00
|
|
|
int sys$sigaction(int signum, const sigaction* act, sigaction* old_act);
|
|
|
|
int sys$sigprocmask(int how, const sigset_t* set, sigset_t* old_set);
|
|
|
|
int sys$sigpending(sigset_t*);
|
2019-02-25 21:06:55 +00:00
|
|
|
int sys$getgroups(ssize_t, gid_t*);
|
|
|
|
int sys$setgroups(ssize_t, const gid_t*);
|
2019-08-05 12:29:05 +00:00
|
|
|
int sys$pipe(int pipefd[2], int flags);
|
2018-11-10 23:20:53 +00:00
|
|
|
int sys$killpg(int pgrp, int sig);
|
|
|
|
int sys$setgid(gid_t);
|
|
|
|
int sys$setuid(uid_t);
|
|
|
|
unsigned sys$alarm(unsigned seconds);
|
|
|
|
int sys$access(const char* pathname, int mode);
|
2019-07-03 19:17:35 +00:00
|
|
|
int sys$fcntl(int fd, int cmd, u32 extra_arg);
|
2018-11-16 12:11:21 +00:00
|
|
|
int sys$ioctl(int fd, unsigned request, unsigned arg);
|
2018-11-18 13:57:41 +00:00
|
|
|
int sys$mkdir(const char* pathname, mode_t mode);
|
2019-01-23 05:53:01 +00:00
|
|
|
clock_t sys$times(tms*);
|
|
|
|
int sys$utime(const char* pathname, const struct utimbuf*);
|
2019-02-21 12:26:40 +00:00
|
|
|
int sys$link(const char* old_path, const char* new_path);
|
2019-01-22 06:03:44 +00:00
|
|
|
int sys$unlink(const char* pathname);
|
2019-03-02 00:50:34 +00:00
|
|
|
int sys$symlink(const char* target, const char* linkpath);
|
2019-01-28 03:16:01 +00:00
|
|
|
int sys$rmdir(const char* pathname);
|
2019-08-15 16:13:56 +00:00
|
|
|
int sys$mount(const char* device, const char* mountpoint, const char* fstype);
|
2019-08-11 13:56:39 +00:00
|
|
|
int sys$umount(const char* mountpoint);
|
2019-07-03 19:17:35 +00:00
|
|
|
int sys$read_tsc(u32* lsw, u32* msw);
|
2019-01-29 03:55:08 +00:00
|
|
|
int sys$chmod(const char* pathname, mode_t);
|
2019-03-01 09:39:19 +00:00
|
|
|
int sys$fchmod(int fd, mode_t);
|
2019-02-27 11:32:53 +00:00
|
|
|
int sys$chown(const char* pathname, uid_t, gid_t);
|
2019-06-01 18:31:36 +00:00
|
|
|
int sys$fchown(int fd, uid_t, gid_t);
|
2019-02-14 13:17:38 +00:00
|
|
|
int sys$socket(int domain, int type, int protocol);
|
|
|
|
int sys$bind(int sockfd, const sockaddr* addr, socklen_t);
|
|
|
|
int sys$listen(int sockfd, int backlog);
|
2019-02-14 14:17:30 +00:00
|
|
|
int sys$accept(int sockfd, sockaddr*, socklen_t*);
|
2019-02-14 13:17:38 +00:00
|
|
|
int sys$connect(int sockfd, const sockaddr*, socklen_t);
|
2019-03-12 14:51:42 +00:00
|
|
|
ssize_t sys$sendto(const Syscall::SC_sendto_params*);
|
2019-03-12 16:27:07 +00:00
|
|
|
ssize_t sys$recvfrom(const Syscall::SC_recvfrom_params*);
|
2019-03-13 12:13:23 +00:00
|
|
|
int sys$getsockopt(const Syscall::SC_getsockopt_params*);
|
|
|
|
int sys$setsockopt(const Syscall::SC_setsockopt_params*);
|
2019-05-19 17:55:27 +00:00
|
|
|
int sys$getsockname(int sockfd, sockaddr* addr, socklen_t* addrlen);
|
2019-05-20 18:33:03 +00:00
|
|
|
int sys$getpeername(int sockfd, sockaddr* addr, socklen_t* addrlen);
|
2019-05-29 21:20:51 +00:00
|
|
|
int sys$sched_setparam(pid_t pid, const struct sched_param* param);
|
|
|
|
int sys$sched_getparam(pid_t pid, struct sched_param* param);
|
2019-07-03 19:17:35 +00:00
|
|
|
int sys$restore_signal_mask(u32 mask);
|
2019-11-18 03:08:10 +00:00
|
|
|
int sys$create_thread(void* (*)(void*), void* argument, const Syscall::SC_create_thread_params*);
|
2019-11-13 20:49:24 +00:00
|
|
|
void sys$exit_thread(void*);
|
2019-11-14 19:58:23 +00:00
|
|
|
int sys$join_thread(int tid, void** exit_value);
|
2019-12-07 13:47:00 +00:00
|
|
|
int sys$detach_thread(int tid);
|
2019-12-07 19:45:26 +00:00
|
|
|
int sys$set_thread_name(int tid, const char* buffer, int buffer_size);
|
|
|
|
int sys$get_thread_name(int tid, char* buffer, int buffer_size);
|
2019-04-07 21:35:26 +00:00
|
|
|
int sys$rename(const char* oldpath, const char* newpath);
|
2019-04-22 16:44:45 +00:00
|
|
|
int sys$systrace(pid_t);
|
2019-05-03 20:59:58 +00:00
|
|
|
int sys$mknod(const char* pathname, mode_t, dev_t);
|
2019-07-18 07:52:22 +00:00
|
|
|
int sys$create_shared_buffer(int, void** buffer);
|
|
|
|
int sys$share_buffer_with(int, pid_t peer_pid);
|
2019-07-29 05:26:01 +00:00
|
|
|
int sys$share_buffer_globally(int);
|
2019-02-16 11:13:43 +00:00
|
|
|
void* sys$get_shared_buffer(int shared_buffer_id);
|
|
|
|
int sys$release_shared_buffer(int shared_buffer_id);
|
2019-03-08 11:22:55 +00:00
|
|
|
int sys$seal_shared_buffer(int shared_buffer_id);
|
|
|
|
int sys$get_shared_buffer_size(int shared_buffer_id);
|
2019-12-09 19:06:47 +00:00
|
|
|
int sys$set_shared_buffer_volatile(int shared_buffer_id, bool);
|
2019-07-19 11:08:26 +00:00
|
|
|
int sys$halt();
|
2019-07-19 07:58:12 +00:00
|
|
|
int sys$reboot();
|
2019-07-29 05:26:01 +00:00
|
|
|
int sys$set_process_icon(int icon_id);
|
2019-08-25 16:17:05 +00:00
|
|
|
int sys$realpath(const char* pathname, char*, size_t);
|
2019-10-13 14:41:55 +00:00
|
|
|
ssize_t sys$getrandom(void*, size_t, unsigned int);
|
2019-11-23 07:48:07 +00:00
|
|
|
int sys$setkeymap(char* map, char* shift_map, char* alt_map);
|
2019-11-28 19:59:11 +00:00
|
|
|
int sys$module_load(const char* path, size_t path_length);
|
|
|
|
int sys$module_unload(const char* name, size_t name_length);
|
2019-12-11 19:36:56 +00:00
|
|
|
int sys$profiling_enable(pid_t);
|
|
|
|
int sys$profiling_disable(pid_t);
|
2019-12-15 20:29:26 +00:00
|
|
|
void* sys$get_kernel_info_page();
|
2019-02-16 11:13:43 +00:00
|
|
|
|
2018-10-16 09:01:38 +00:00
|
|
|
static void initialize();
|
|
|
|
|
2019-07-03 19:17:35 +00:00
|
|
|
[[noreturn]] void crash(int signal, u32 eip);
|
2019-02-15 11:30:48 +00:00
|
|
|
[[nodiscard]] static int reap(Process&);
|
2018-10-17 22:26:30 +00:00
|
|
|
|
2018-10-30 14:33:37 +00:00
|
|
|
const TTY* tty() const { return m_tty; }
|
2019-01-15 07:49:24 +00:00
|
|
|
void set_tty(TTY* tty) { m_tty = tty; }
|
2018-10-30 14:33:37 +00:00
|
|
|
|
2019-01-31 16:31:23 +00:00
|
|
|
size_t region_count() const { return m_regions.size(); }
|
2019-09-27 12:19:07 +00:00
|
|
|
const NonnullOwnPtrVector<Region>& regions() const { return m_regions; }
|
2019-01-31 16:31:23 +00:00
|
|
|
void dump_regions();
|
2018-10-18 12:53:00 +00:00
|
|
|
|
2019-04-22 16:44:45 +00:00
|
|
|
ProcessTracer* tracer() { return m_tracer.ptr(); }
|
|
|
|
ProcessTracer& ensure_tracer();
|
|
|
|
|
2019-07-03 19:17:35 +00:00
|
|
|
u32 m_ticks_in_user { 0 };
|
|
|
|
u32 m_ticks_in_kernel { 0 };
|
2018-12-03 00:12:26 +00:00
|
|
|
|
2019-07-03 19:17:35 +00:00
|
|
|
u32 m_ticks_in_user_for_dead_children { 0 };
|
|
|
|
u32 m_ticks_in_kernel_for_dead_children { 0 };
|
2018-12-03 00:12:26 +00:00
|
|
|
|
2019-06-07 10:56:50 +00:00
|
|
|
bool validate_read_from_kernel(VirtualAddress) const;
|
2018-10-26 22:14:24 +00:00
|
|
|
|
2019-02-25 20:19:57 +00:00
|
|
|
bool validate_read(const void*, ssize_t) const;
|
|
|
|
bool validate_write(void*, ssize_t) const;
|
2019-02-07 23:10:01 +00:00
|
|
|
bool validate_read_str(const char* str);
|
2019-05-28 09:53:16 +00:00
|
|
|
template<typename T>
|
|
|
|
bool validate_read_typed(T* value, size_t count = 1) { return validate_read(value, sizeof(T) * count); }
|
|
|
|
template<typename T>
|
|
|
|
bool validate_write_typed(T* value, size_t count = 1) { return validate_write(value, sizeof(T) * count); }
|
2018-11-16 14:41:48 +00:00
|
|
|
|
2019-05-30 18:23:50 +00:00
|
|
|
Custody& current_directory();
|
|
|
|
Custody* executable() { return m_executable.ptr(); }
|
2018-10-28 11:20:25 +00:00
|
|
|
|
2019-03-06 21:30:13 +00:00
|
|
|
int number_of_open_file_descriptors() const;
|
|
|
|
int max_open_file_descriptors() const { return m_max_open_file_descriptors; }
|
2018-11-01 12:39:28 +00:00
|
|
|
|
2019-02-03 17:53:18 +00:00
|
|
|
size_t amount_virtual() const;
|
|
|
|
size_t amount_resident() const;
|
|
|
|
size_t amount_shared() const;
|
2019-12-09 18:12:38 +00:00
|
|
|
size_t amount_purgeable_volatile() const;
|
|
|
|
size_t amount_purgeable_nonvolatile() const;
|
2019-02-03 17:53:18 +00:00
|
|
|
|
2019-02-17 09:18:25 +00:00
|
|
|
int exec(String path, Vector<String> arguments, Vector<String> environment);
|
2018-11-02 19:41:58 +00:00
|
|
|
|
2019-02-21 22:35:07 +00:00
|
|
|
bool is_superuser() const { return m_euid == 0; }
|
2018-11-07 00:38:51 +00:00
|
|
|
|
2019-12-19 18:13:44 +00:00
|
|
|
Region* allocate_region_with_vmobject(VirtualAddress, size_t, NonnullRefPtr<VMObject>, size_t offset_in_vmobject, const String& name, int prot);
|
2019-07-19 14:09:34 +00:00
|
|
|
Region* allocate_file_backed_region(VirtualAddress, size_t, NonnullRefPtr<Inode>, const String& name, int prot);
|
2019-06-07 18:58:12 +00:00
|
|
|
Region* allocate_region(VirtualAddress, size_t, const String& name, int prot = PROT_READ | PROT_WRITE, bool commit = true);
|
2019-02-16 11:13:43 +00:00
|
|
|
bool deallocate_region(Region& region);
|
2019-02-16 08:57:42 +00:00
|
|
|
|
2019-12-19 18:13:44 +00:00
|
|
|
Region& allocate_split_region(const Region& source_region, const Range&, size_t offset_in_vmobject);
|
2019-08-29 18:57:02 +00:00
|
|
|
|
2019-03-23 21:03:17 +00:00
|
|
|
void set_being_inspected(bool b) { m_being_inspected = b; }
|
|
|
|
bool is_being_inspected() const { return m_being_inspected; }
|
|
|
|
|
2019-07-03 19:17:35 +00:00
|
|
|
void terminate_due_to_signal(u8 signal);
|
|
|
|
void send_signal(u8, Process* sender);
|
2019-03-23 21:03:17 +00:00
|
|
|
|
|
|
|
int thread_count() const;
|
2019-03-12 16:27:07 +00:00
|
|
|
|
2019-04-01 18:02:05 +00:00
|
|
|
Lock& big_lock() { return m_big_lock; }
|
|
|
|
|
2019-05-16 15:18:25 +00:00
|
|
|
const ELFLoader* elf_loader() const { return m_elf_loader.ptr(); }
|
|
|
|
|
2019-07-29 05:26:01 +00:00
|
|
|
int icon_id() const { return m_icon_id; }
|
|
|
|
|
2018-10-16 09:01:38 +00:00
|
|
|
private:
|
2018-10-18 11:05:00 +00:00
|
|
|
friend class MemoryManager;
|
2018-11-07 21:15:02 +00:00
|
|
|
friend class Scheduler;
|
2018-11-08 13:35:30 +00:00
|
|
|
friend class Region;
|
2018-10-18 11:05:00 +00:00
|
|
|
|
2019-12-19 18:07:41 +00:00
|
|
|
Process(const String& name, uid_t, gid_t, pid_t ppid, RingLevel, RefPtr<Custody> cwd = nullptr, RefPtr<Custody> executable = nullptr, TTY* = nullptr, Process* fork_parent = nullptr);
|
2018-10-25 09:15:17 +00:00
|
|
|
|
2019-06-07 10:56:50 +00:00
|
|
|
Range allocate_range(VirtualAddress, size_t);
|
2019-05-17 02:39:22 +00:00
|
|
|
|
2019-02-17 09:18:25 +00:00
|
|
|
int do_exec(String path, Vector<String> arguments, Vector<String> environment);
|
2019-07-03 19:17:35 +00:00
|
|
|
ssize_t do_write(FileDescription&, const u8*, int data_size);
|
2018-10-16 09:01:38 +00:00
|
|
|
|
2019-04-06 12:54:32 +00:00
|
|
|
int alloc_fd(int first_candidate_fd = 0);
|
2019-02-16 11:13:43 +00:00
|
|
|
void disown_all_shared_buffers();
|
2018-11-12 00:28:46 +00:00
|
|
|
|
2019-10-27 09:42:07 +00:00
|
|
|
KResultOr<Vector<String>> find_shebang_interpreter_for_executable(const String& executable_path);
|
2019-09-15 09:47:21 +00:00
|
|
|
|
2019-11-14 16:16:30 +00:00
|
|
|
KResult do_kill(Process&, int signal);
|
|
|
|
KResult do_killpg(pid_t pgrp, int signal);
|
|
|
|
|
2019-03-23 21:03:17 +00:00
|
|
|
Thread* m_main_thread { nullptr };
|
|
|
|
|
2019-06-21 16:37:47 +00:00
|
|
|
RefPtr<PageDirectory> m_page_directory;
|
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;
|
2019-03-23 21:03:17 +00:00
|
|
|
|
2018-10-16 09:01:38 +00:00
|
|
|
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-05 14:04:19 +00:00
|
|
|
uid_t m_euid { 0 };
|
|
|
|
gid_t m_egid { 0 };
|
2018-11-02 11:56:51 +00:00
|
|
|
pid_t m_sid { 0 };
|
|
|
|
pid_t m_pgid { 0 };
|
2019-03-23 21:03:17 +00:00
|
|
|
|
2019-08-08 12:56:50 +00:00
|
|
|
static const int m_max_open_file_descriptors { FD_SETSIZE };
|
2019-03-23 21:03:17 +00:00
|
|
|
|
2019-06-07 07:36:51 +00:00
|
|
|
struct FileDescriptionAndFlags {
|
2019-06-13 20:03:04 +00:00
|
|
|
operator bool() const { return !!description; }
|
2019-04-29 02:55:54 +00:00
|
|
|
void clear();
|
2019-07-03 19:17:35 +00:00
|
|
|
void set(NonnullRefPtr<FileDescription>&& d, u32 f = 0);
|
2019-06-21 16:37:47 +00:00
|
|
|
RefPtr<FileDescription> description;
|
2019-07-03 19:17:35 +00:00
|
|
|
u32 flags { 0 };
|
2018-11-13 00:36:31 +00:00
|
|
|
};
|
2019-06-07 07:36:51 +00:00
|
|
|
Vector<FileDescriptionAndFlags> m_fds;
|
2018-11-07 17:30:59 +00:00
|
|
|
|
2019-08-08 12:56:50 +00:00
|
|
|
RingLevel m_ring { Ring0 };
|
2019-07-03 19:17:35 +00:00
|
|
|
u8 m_termination_status { 0 };
|
|
|
|
u8 m_termination_signal { 0 };
|
2018-10-18 11:05:00 +00:00
|
|
|
|
2019-08-08 12:56:50 +00:00
|
|
|
bool m_being_inspected { false };
|
|
|
|
bool m_dead { false };
|
2019-12-11 19:36:56 +00:00
|
|
|
bool m_profiling { false };
|
2019-08-08 12:56:50 +00:00
|
|
|
|
2019-06-21 16:37:47 +00:00
|
|
|
RefPtr<Custody> m_executable;
|
|
|
|
RefPtr<Custody> m_cwd;
|
2018-10-24 12:28:22 +00:00
|
|
|
|
2019-11-06 15:52:54 +00:00
|
|
|
RefPtr<TTY> m_tty;
|
2018-10-30 12:59:29 +00:00
|
|
|
|
2019-08-29 18:57:02 +00:00
|
|
|
Region* region_from_range(const Range&);
|
|
|
|
Region* region_containing(const Range&);
|
2018-10-18 12:53:00 +00:00
|
|
|
|
2019-09-27 12:19:07 +00:00
|
|
|
NonnullOwnPtrVector<Region> m_regions;
|
2018-10-18 11:05:00 +00:00
|
|
|
|
2018-11-06 12:33:06 +00:00
|
|
|
pid_t m_ppid { 0 };
|
2018-11-06 12:40:23 +00:00
|
|
|
mode_t m_umask { 022 };
|
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);
|
2018-10-31 00:06:57 +00:00
|
|
|
|
2018-11-07 00:38:51 +00:00
|
|
|
HashTable<gid_t> m_gids;
|
2018-11-07 20:19:47 +00:00
|
|
|
|
2019-03-23 21:03:17 +00:00
|
|
|
int m_next_tid { 0 };
|
2019-04-01 18:02:05 +00:00
|
|
|
|
2019-06-21 16:37:47 +00:00
|
|
|
RefPtr<ProcessTracer> m_tracer;
|
2019-05-16 15:18:25 +00:00
|
|
|
OwnPtr<ELFLoader> m_elf_loader;
|
2019-04-22 16:44:45 +00:00
|
|
|
|
2019-09-27 12:19:07 +00:00
|
|
|
Region* m_master_tls_region { nullptr };
|
2019-09-07 13:50:44 +00:00
|
|
|
size_t m_master_tls_size { 0 };
|
|
|
|
size_t m_master_tls_alignment { 0 };
|
|
|
|
|
2019-05-02 01:28:20 +00:00
|
|
|
Lock m_big_lock { "Process" };
|
2019-06-07 09:30:07 +00:00
|
|
|
|
2019-07-03 19:17:35 +00:00
|
|
|
u64 m_alarm_deadline { 0 };
|
2019-07-29 05:26:01 +00:00
|
|
|
|
|
|
|
int m_icon_id { -1 };
|
2018-10-16 09:01:38 +00:00
|
|
|
};
|
|
|
|
|
2018-11-10 15:50:42 +00:00
|
|
|
class ProcessInspectionHandle {
|
2018-11-01 13:21:02 +00:00
|
|
|
public:
|
2018-11-10 15:50:42 +00:00
|
|
|
ProcessInspectionHandle(Process& process)
|
2018-11-01 13:21:02 +00:00
|
|
|
: m_process(process)
|
|
|
|
{
|
2019-03-23 21:03:17 +00:00
|
|
|
if (&process != ¤t->process()) {
|
|
|
|
ASSERT(!m_process.is_being_inspected());
|
|
|
|
m_process.set_being_inspected(true);
|
|
|
|
}
|
2018-11-01 13:21:02 +00:00
|
|
|
}
|
2018-11-10 15:50:42 +00:00
|
|
|
~ProcessInspectionHandle()
|
2018-11-01 13:21:02 +00:00
|
|
|
{
|
2019-03-23 21:03:17 +00:00
|
|
|
m_process.set_being_inspected(false);
|
2018-11-01 13:21:02 +00:00
|
|
|
}
|
2018-11-10 15:50:42 +00:00
|
|
|
|
2019-02-03 11:33:11 +00:00
|
|
|
Process& process() { return m_process; }
|
|
|
|
|
|
|
|
static OwnPtr<ProcessInspectionHandle> from_pid(pid_t pid)
|
|
|
|
{
|
|
|
|
InterruptDisabler disabler;
|
|
|
|
auto* process = Process::from_pid(pid);
|
|
|
|
if (process)
|
|
|
|
return make<ProcessInspectionHandle>(*process);
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2018-11-10 15:50:42 +00:00
|
|
|
Process* operator->() { return &m_process; }
|
|
|
|
Process& operator*() { return m_process; }
|
2019-05-28 09:53:16 +00:00
|
|
|
|
2018-11-01 13:21:02 +00:00
|
|
|
private:
|
|
|
|
Process& m_process;
|
|
|
|
};
|
|
|
|
|
2019-11-06 15:26:51 +00:00
|
|
|
const char* to_string(ThreadPriority);
|
2019-02-07 11:21:17 +00:00
|
|
|
|
2018-11-07 21:15:02 +00:00
|
|
|
extern InlineLinkedList<Process>* g_processes;
|
2018-11-08 15:09:05 +00:00
|
|
|
|
|
|
|
template<typename Callback>
|
|
|
|
inline void Process::for_each(Callback callback)
|
|
|
|
{
|
|
|
|
ASSERT_INTERRUPTS_DISABLED();
|
|
|
|
for (auto* process = g_processes->head(); process;) {
|
|
|
|
auto* next_process = process->next();
|
2019-06-07 15:13:23 +00:00
|
|
|
if (callback(*process) == IterationDecision::Break)
|
2018-11-08 15:09:05 +00:00
|
|
|
break;
|
|
|
|
process = next_process;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-11 14:36:40 +00:00
|
|
|
template<typename Callback>
|
|
|
|
inline void Process::for_each_child(Callback callback)
|
|
|
|
{
|
|
|
|
ASSERT_INTERRUPTS_DISABLED();
|
|
|
|
pid_t my_pid = pid();
|
|
|
|
for (auto* process = g_processes->head(); process;) {
|
|
|
|
auto* next_process = process->next();
|
|
|
|
if (process->ppid() == my_pid) {
|
2019-07-14 09:35:49 +00:00
|
|
|
if (callback(*process) == IterationDecision::Break)
|
2018-11-11 14:36:40 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
process = next_process;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-08 15:09:05 +00:00
|
|
|
template<typename Callback>
|
2019-03-23 21:03:17 +00:00
|
|
|
inline void Process::for_each_thread(Callback callback) const
|
2018-11-08 15:09:05 +00:00
|
|
|
{
|
2019-03-23 21:03:17 +00:00
|
|
|
InterruptDisabler disabler;
|
|
|
|
pid_t my_pid = pid();
|
2019-11-26 20:25:11 +00:00
|
|
|
|
|
|
|
if (my_pid == 0) {
|
|
|
|
// NOTE: Special case the colonel thread, since its main thread is not in the global thread table.
|
|
|
|
callback(const_cast<Thread&>(main_thread()));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-07-19 10:16:46 +00:00
|
|
|
Thread::for_each([callback, my_pid](Thread& thread) -> IterationDecision {
|
|
|
|
if (thread.pid() == my_pid)
|
|
|
|
return callback(thread);
|
|
|
|
|
|
|
|
return IterationDecision::Continue;
|
|
|
|
});
|
2018-11-08 15:09:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template<typename Callback>
|
2019-03-23 21:03:17 +00:00
|
|
|
inline void Process::for_each_in_pgrp(pid_t pgid, Callback callback)
|
2018-11-08 15:09:05 +00:00
|
|
|
{
|
|
|
|
ASSERT_INTERRUPTS_DISABLED();
|
|
|
|
for (auto* process = g_processes->head(); process;) {
|
|
|
|
auto* next_process = process->next();
|
2019-03-23 21:03:17 +00:00
|
|
|
if (process->pgid() == pgid) {
|
2019-08-22 19:12:55 +00:00
|
|
|
if (callback(*process) == IterationDecision::Break)
|
2019-03-23 21:03:17 +00:00
|
|
|
break;
|
|
|
|
}
|
2018-11-08 15:09:05 +00:00
|
|
|
process = next_process;
|
|
|
|
}
|
|
|
|
}
|
2019-02-21 14:45:31 +00:00
|
|
|
|
|
|
|
inline bool InodeMetadata::may_read(Process& process) const
|
|
|
|
{
|
|
|
|
return may_read(process.euid(), process.gids());
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool InodeMetadata::may_write(Process& process) const
|
|
|
|
{
|
|
|
|
return may_write(process.euid(), process.gids());
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool InodeMetadata::may_execute(Process& process) const
|
|
|
|
{
|
|
|
|
return may_execute(process.euid(), process.gids());
|
|
|
|
}
|
2019-03-23 21:03:17 +00:00
|
|
|
|
|
|
|
inline int Thread::pid() const
|
|
|
|
{
|
|
|
|
return m_process.pid();
|
|
|
|
}
|
2019-07-08 16:58:19 +00:00
|
|
|
|
|
|
|
inline const LogStream& operator<<(const LogStream& stream, const Process& process)
|
|
|
|
{
|
|
|
|
return stream << process.name() << '(' << process.pid() << ')';
|
|
|
|
}
|