123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- /* -*- mode:c; c-file-style:"k&r"; c-basic-offset: 4; tab-width:4; indent-tabs-mode:nil; mode:auto-fill; fill-column:78; -*- */
- /* vim: set ts=4 sw=4 et tw=78 fo=cqt wm=0: */
- #ifndef _SHIM_TLS_H_
- #define _SHIM_TLS_H_
- #ifdef __ASSEMBLER__
- #define SHIM_TLS_CANARY $xdeadbeef
- #else /* !__ASSEMBLER__ */
- #define SHIM_TLS_CANARY 0xdeadbeef
- struct lock_record {
- enum { NO_LOCK, SEM_LOCK, READ_LOCK, WRITE_LOCK } type;
- void * lock;
- const char * filename;
- int lineno;
- };
- #define NUM_LOCK_RECORD 32
- #define NUM_LOCK_RECORD_MASK (NUM_LOCK_RECORD - 1)
- struct shim_regs {
- 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;
- };
- struct shim_context {
- unsigned long syscall_nr;
- void * sp;
- void * ret_ip;
- struct shim_regs * regs;
- struct shim_context * next;
- uint64_t enter_time;
- uint64_t preempt;
- };
- #ifdef IN_SHIM
- #include <shim_defs.h>
- #define SIGNAL_DELAYED (0x80000000UL)
- #endif /* IN_SHIM */
- struct debug_buf;
- typedef struct {
- uint64_t canary;
- void * self;
- void * 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;
- } test_range;
- } shim_tcb_t;
- #ifdef IN_SHIM
- typedef struct
- {
- void * tcb, * dtv, * self;
- int mthreads, gscope;
- uintptr_t sysinfo, sg, pg;
- unsigned long int vgetcpu_cache[2];
- int __unused1;
- shim_tcb_t shim_tcb;
- } __libc_tcb_t;
- #include <stddef.h>
- static inline bool shim_tls_check_canary(void)
- {
- uint64_t __canary;
- __asm__ ("movq %%fs:%c1,%q0" : "=r" (__canary)
- : "i" (offsetof(__libc_tcb_t, shim_tcb.canary)));
- return __canary == SHIM_TLS_CANARY;
- }
- static inline shim_tcb_t * shim_get_tls(void)
- {
- shim_tcb_t *__self;
- __asm__ ("movq %%fs:%c1,%q0" : "=r" (__self)
- : "i" (offsetof(__libc_tcb_t, shim_tcb.self)));
- return __self;
- }
- static inline __libc_tcb_t * shim_libc_tcb(void)
- {
- __libc_tcb_t *__self;
- __asm__ ("movq %%fs:%c1,%q0" : "=r" (__self)
- : "i" (offsetof(__libc_tcb_t, tcb)));
- return __self;
- }
- #endif /* IN_SHIM */
- #endif /* !__ASSEMBLER__ */
- #endif /* _SHIM_H_ */
|