123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- #ifndef _SHIM_TCB_H_
- #define _SHIM_TCB_H_
- #include <atomic.h>
- #define SHIM_TCB_CANARY 0xdeadbeef
- struct shim_regs {
- unsigned long orig_rax;
- unsigned long rsp;
- unsigned long r15;
- unsigned long r14;
- unsigned long r13;
- unsigned long r12;
- unsigned long r11;
- unsigned long r10;
- unsigned long r9;
- unsigned long r8;
- unsigned long rcx;
- unsigned long rdx;
- unsigned long rsi;
- unsigned long rdi;
- unsigned long rbx;
- unsigned long rbp;
- unsigned long rflags;
- unsigned long rip;
- };
- struct shim_context {
- struct shim_regs * regs;
- unsigned long fs_base;
- struct shim_context * next;
- uint64_t enter_time;
- struct atomic_int preempt;
- };
- struct debug_buf;
- typedef struct shim_tcb shim_tcb_t;
- struct shim_tcb {
- uint64_t canary;
- shim_tcb_t * self;
- struct shim_thread * tp;
- struct shim_context context;
- unsigned int tid;
- int pal_errno;
- struct debug_buf * debug_buf;
- /* This record is for testing the memory of user inputs.
- * If a segfault occurs with the range [start, end],
- * the code addr is set to cont_addr to alert the caller. */
- struct {
- void * start, * end;
- void * cont_addr;
- bool has_fault;
- } test_range;
- };
- void init_tcb (shim_tcb_t * tcb);
- static inline shim_tcb_t * shim_get_tcb(void)
- {
- /* TODO: optimize to use single movq %gs:<offset> */
- PAL_TCB * tcb = pal_get_tcb();
- return (shim_tcb_t*)tcb->libos_tcb;
- }
- static inline bool shim_tcb_check_canary(void)
- {
- /* TODO: optimize to use single movq %gs:<offset> */
- shim_tcb_t * shim_tcb = shim_get_tcb();
- return shim_tcb->canary == SHIM_TCB_CANARY;
- }
- #endif /* _SHIM_H_ */
|