toaruos/kernel/include/process.h
Kevin Lange 10f4cc6811 Tasklets; fix dead sleep; kernel serial console
- Tasklets are essentially kernel threads. Still working on passing
  arguments to them, but they essentially just run functions and have
  special names like [[kttydebug]]. Eventually, I want disk scheduling
  and various (non-interrupt-driven) drivers running on these, but I'm
  still not sure how stable they are.
- Fix the scheduler so it supports not having anything to run. This took
  some tracking of what's running, and then inserting some liberal
  sleeps. Doesn't appear to break anything. Makes the system work when
  you try to sleep with only one process "running", so that's good.
- Start working on reimplementing the old kernel shell, but this time as
  a tasklet running in the background over serial. Probably going to try
  to add all the same features as before (tab completion, history, rich
  editing), but it may take some time to get it all in there. This
  console is mostly focused on helping with debugging EXT2 and other
  future stuff.
2013-11-27 19:11:58 -08:00

141 lines
4.0 KiB
C

/* vim: tabstop=4 shiftwidth=4 noexpandtab
*/
#ifndef PROCESS_H
#define PROCESS_H
//#include <system.h>
#include <tree.h>
#include <signal.h>
#include <task.h>
#define KERNEL_STACK_SIZE 0x8000
typedef signed int pid_t;
typedef unsigned int user_t;
typedef unsigned char status_t;
#define USER_ROOT_UID (user_t)0
/* 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 */
uint8_t fpu_enabled;
uint8_t fp_regs[512];
uint8_t padding[32]; /* I don't know */
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 */
uintptr_t start;
uintptr_t shm_heap;
} image_t;
/* Resizable descriptor table */
typedef struct descriptor_table {
fs_node_t ** entries;
size_t length;
size_t capacity;
size_t refs;
} fd_table_t;
/* XXX */
#define SIG_COUNT 10
/* Signal Table */
typedef struct signal_table {
uintptr_t functions[NUMSIGNALS+1];
} 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 */
int mask; /* Umask */
char ** cmdline;
pid_t group; /* Process thread group */
pid_t job; /* Process job group */
pid_t session; /* Session group */
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 */
uint8_t finished; /* Status indicator */
uint8_t started;
uint8_t running;
struct regs * syscall_registers; /* Registers at interrupt */
list_t * wait_queue;
list_t * shm_mappings; /* Shared memory chunk mappings */
list_t * signal_queue; /* Queued signals */
thread_t signal_state;
char * signal_kstack;
node_t sched_node;
node_t sleep_node;
uint8_t is_tasklet;
} process_t;
typedef struct {
unsigned long end_tick;
unsigned long end_subtick;
process_t * process;
} sleeper_t;
void initialize_process_tree(void);
process_t * spawn_process(volatile process_t * parent);
void debug_print_process_tree(void);
process_t * spawn_init(void);
void set_process_environment(process_t * proc, page_directory_t * directory);
void make_process_ready(process_t * proc);
void make_process_reapable(process_t * proc);
uint8_t process_available(void);
process_t * next_ready_process(void);
uint8_t should_reap(void);
process_t * next_reapable_process(void);
uint32_t process_append_fd(process_t * proc, fs_node_t * node);
process_t * process_from_pid(pid_t pid);
process_t * process_get_first_child(process_t * process);
void delete_process(process_t * proc);
uint32_t process_move_fd(process_t * proc, int src, int dest);
int process_is_ready(process_t * proc);
void set_reaped(process_t * proc);
void wakeup_sleepers(unsigned long seconds, unsigned long subseconds);
void sleep_until(process_t * process, unsigned long seconds, unsigned long subseconds);
volatile process_t * current_process;
list_t * process_list;
typedef void (*tasklet_t) (void *);
int create_kernel_tasklet(tasklet_t tasklet, char * name);
#endif