2011-12-08 06:59:08 +04:00
|
|
|
/* vim: tabstop=4 shiftwidth=4 noexpandtab
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef PROCESS_H
|
|
|
|
#define PROCESS_H
|
|
|
|
|
|
|
|
#include <system.h>
|
|
|
|
#include <tree.h>
|
|
|
|
#include <signal.h>
|
|
|
|
|
2011-12-09 01:25:48 +04:00
|
|
|
#define KERNEL_STACK_SIZE 0x2000
|
|
|
|
|
2011-12-08 06:59:08 +04:00
|
|
|
typedef signed int pid_t;
|
|
|
|
typedef unsigned int user_t;
|
|
|
|
typedef unsigned int group_t;
|
|
|
|
typedef unsigned char status_t;
|
|
|
|
|
|
|
|
/* Unix waitpid() options */
|
|
|
|
enum wait_option{
|
|
|
|
WCONTINUED,
|
|
|
|
WNOHANG,
|
|
|
|
WUNTRACED
|
|
|
|
};
|
|
|
|
|
|
|
|
/* x86 task */
|
|
|
|
typedef struct thread {
|
|
|
|
uintptr_t esp; /* Stack Pointer */
|
|
|
|
uintptr_t ebp; /* Base Pointer */
|
|
|
|
uintptr_t eip; /* Instruction Pointer */
|
|
|
|
|
|
|
|
page_directory_t * page_directory; /* Page Directory */
|
|
|
|
} thread_t;
|
|
|
|
|
|
|
|
/* Portable image struct */
|
|
|
|
typedef struct image {
|
|
|
|
size_t size; /* Image size */
|
|
|
|
uintptr_t entry; /* Binary entry point */
|
|
|
|
uintptr_t heap; /* Heap pointer */
|
|
|
|
uintptr_t heap_actual; /* Actual heap location */
|
|
|
|
uintptr_t stack; /* Process kernel stack */
|
|
|
|
uintptr_t user_stack; /* User stack */
|
|
|
|
} image_t;
|
|
|
|
|
|
|
|
/* Resizable descriptor table */
|
|
|
|
typedef struct descriptor_table {
|
|
|
|
fs_node_t ** entries;
|
|
|
|
size_t length;
|
|
|
|
size_t capacity;
|
|
|
|
} fd_table_t;
|
|
|
|
|
|
|
|
/* XXX */
|
|
|
|
#define SIG_COUNT 10
|
|
|
|
|
|
|
|
/* Signal Table */
|
|
|
|
typedef struct signal_table {
|
|
|
|
uintptr_t * functions[NUMSIGNALS];
|
|
|
|
} sig_table_t;
|
|
|
|
|
|
|
|
/* Portable process struct */
|
|
|
|
typedef struct process {
|
|
|
|
pid_t id; /* Process ID (pid) */
|
|
|
|
char * name; /* Process Name */
|
|
|
|
char * description; /* Process description */
|
|
|
|
user_t user; /* Effective user */
|
2011-12-12 12:17:14 +04:00
|
|
|
group_t group; /* Process scheduling group */
|
2011-12-08 06:59:08 +04:00
|
|
|
thread_t thread; /* Associated task information */
|
|
|
|
tree_node_t * tree_entry; /* Process Tree Entry */
|
|
|
|
image_t image; /* Binary image information */
|
|
|
|
fs_node_t * wd_node; /* Working directory VFS node */
|
|
|
|
char * wd_name; /* Working directory path name */
|
|
|
|
fd_table_t fds; /* File descriptor table */
|
|
|
|
status_t status; /* Process status */
|
|
|
|
sig_table_t signals; /* Signal table */
|
2011-12-12 12:17:14 +04:00
|
|
|
uint8_t finished; /* Status indicator */
|
2011-12-08 06:59:08 +04:00
|
|
|
} process_t;
|
|
|
|
|
|
|
|
void initialize_process_tree();
|
2011-12-09 01:25:48 +04:00
|
|
|
process_t * spawn_process(volatile process_t * parent);
|
2011-12-08 06:59:08 +04:00
|
|
|
void debug_print_process_tree();
|
2011-12-09 01:25:48 +04:00
|
|
|
process_t * spawn_init();
|
|
|
|
void set_process_environment(process_t * proc, page_directory_t * directory);
|
|
|
|
void make_process_ready(process_t * proc);
|
2011-12-16 03:21:28 +04:00
|
|
|
void make_process_reapable(process_t * proc);
|
2011-12-09 01:25:48 +04:00
|
|
|
uint8_t process_available();
|
|
|
|
process_t * next_ready_process();
|
2011-12-16 03:21:28 +04:00
|
|
|
uint8_t should_reap();
|
|
|
|
process_t * next_reapable_process();
|
2011-12-09 01:25:48 +04:00
|
|
|
uint32_t process_append_fd(process_t * proc, fs_node_t * node);
|
|
|
|
process_t * process_from_pid(pid_t pid);
|
2011-12-16 03:21:28 +04:00
|
|
|
void delete_process(process_t * proc);
|
2011-12-09 01:25:48 +04:00
|
|
|
|
|
|
|
volatile process_t * current_process;
|
2011-12-08 06:59:08 +04:00
|
|
|
|
|
|
|
#endif
|