2 * TCC - Tiny C Compiler - Support for -run switch
4 * Copyright (c) 2001-2004 Fabrice Bellard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 /* only native compiler supports -run */
26 #ifdef CONFIG_TCC_BACKTRACE
27 ST_DATA
int rt_num_callers
= 6;
28 ST_DATA
const char **rt_bound_error_msg
;
29 ST_DATA
void *rt_prog_main
;
33 #define ucontext_t CONTEXT
36 static void set_pages_executable(void *ptr
, unsigned long length
);
37 static void set_exception_handler(void);
38 static int rt_get_caller_pc(addr_t
*paddr
, ucontext_t
*uc
, int level
);
39 static void rt_error(ucontext_t
*uc
, const char *fmt
, ...);
40 static int tcc_relocate_ex(TCCState
*s1
, void *ptr
);
43 static void win64_add_function_table(TCCState
*s1
);
46 /* ------------------------------------------------------------- */
47 /* Do all relocations (needed before using tcc_get_symbol())
48 Returns -1 on error. */
50 LIBTCCAPI
int tcc_relocate(TCCState
*s1
, void *ptr
)
54 if (TCC_RELOCATE_AUTO
!= ptr
)
55 return tcc_relocate_ex(s1
, ptr
);
57 ret
= tcc_relocate_ex(s1
, NULL
);
62 { /* Use mmap instead of malloc for Selinux. Ref:
63 http://www.gnu.org/s/libc/manual/html_node/File-Size.html */
65 char tmpfname
[] = "/tmp/.tccrunXXXXXX";
66 int fd
= mkstemp (tmpfname
);
70 ftruncate (fd
, s1
->mem_size
);
72 s1
->write_mem
= mmap (NULL
, ret
, PROT_READ
|PROT_WRITE
,
74 if (s1
->write_mem
== MAP_FAILED
)
75 tcc_error("/tmp not writeable");
77 s1
->runtime_mem
= mmap (NULL
, ret
, PROT_READ
|PROT_EXEC
,
79 if (s1
->runtime_mem
== MAP_FAILED
)
80 tcc_error("/tmp not executable");
82 ret
= tcc_relocate_ex(s1
, s1
->write_mem
);
85 s1
->runtime_mem
= tcc_malloc(ret
);
86 ret
= tcc_relocate_ex(s1
, s1
->runtime_mem
);
91 /* launch the compiled program with the given arguments */
92 LIBTCCAPI
int tcc_run(TCCState
*s1
, int argc
, char **argv
)
94 int (*prog_main
)(int, char **);
97 if (tcc_relocate(s1
, TCC_RELOCATE_AUTO
) < 0)
100 prog_main
= tcc_get_symbol_err(s1
, s1
->runtime_main
);
102 #ifdef CONFIG_TCC_BACKTRACE
104 set_exception_handler();
105 rt_prog_main
= prog_main
;
109 #ifdef CONFIG_TCC_BCHECK
110 if (s1
->do_bounds_check
) {
111 void (*bound_init
)(void);
112 void (*bound_exit
)(void);
113 void (*bound_new_region
)(void *p
, unsigned long size
);
114 int (*bound_delete_region
)(void *p
);
117 /* set error function */
118 rt_bound_error_msg
= tcc_get_symbol_err(s1
, "__bound_error_msg");
119 /* XXX: use .init section so that it also work in binary ? */
120 bound_init
= tcc_get_symbol_err(s1
, "__bound_init");
121 bound_exit
= tcc_get_symbol_err(s1
, "__bound_exit");
122 bound_new_region
= tcc_get_symbol_err(s1
, "__bound_new_region");
123 bound_delete_region
= tcc_get_symbol_err(s1
, "__bound_delete_region");
125 /* mark argv area as valid */
126 bound_new_region(argv
, argc
*sizeof(argv
[0]));
127 for (i
=0; i
<argc
; ++i
)
128 bound_new_region(argv
[i
], strlen(argv
[i
]));
130 ret
= (*prog_main
)(argc
, argv
);
132 /* unmark argv area */
133 for (i
=0; i
<argc
; ++i
)
134 bound_delete_region(argv
[i
]);
135 bound_delete_region(argv
);
140 ret
= (*prog_main
)(argc
, argv
);
144 /* relocate code. Return -1 on error, required size if ptr is NULL,
145 otherwise copy code into buffer passed by the caller */
146 static int tcc_relocate_ex(TCCState
*s1
, void *ptr
)
149 unsigned long offset
, length
;
156 pe_output_file(s1
, NULL
);
159 relocate_common_syms();
160 tcc_add_linker_symbols(s1
);
161 build_got_entries(s1
);
167 offset
= 0, mem
= (addr_t
)ptr
;
168 for(i
= 1; i
< s1
->nb_sections
; i
++) {
170 if (0 == (s
->sh_flags
& SHF_ALLOC
))
172 length
= s
->data_offset
;
173 s
->sh_addr
= mem
? (mem
+ offset
+ 15) & ~15 : 0;
174 offset
= (offset
+ length
+ 15) & ~15;
178 /* relocate symbols */
179 relocate_syms(s1
, 1);
186 /* relocate each section */
187 for(i
= 1; i
< s1
->nb_sections
; i
++) {
190 relocate_section(s1
, s
);
194 for(i
= 1; i
< s1
->nb_sections
; i
++) {
196 if (0 == (s
->sh_flags
& SHF_ALLOC
))
198 length
= s
->data_offset
;
199 // printf("%-12s %08x %04x\n", s->name, s->sh_addr, length);
200 ptr
= (void*)s
->sh_addr
;
201 if (NULL
== s
->data
|| s
->sh_type
== SHT_NOBITS
)
202 memset(ptr
, 0, length
);
204 memcpy(ptr
, s
->data
, length
);
205 /* mark executable sections as executable in memory */
206 if (s
->sh_flags
& SHF_EXECINSTR
)
207 set_pages_executable(ptr
, length
);
211 win64_add_function_table(s1
);
216 /* ------------------------------------------------------------- */
217 /* allow to run code in memory */
219 static void set_pages_executable(void *ptr
, unsigned long length
)
222 unsigned long old_protect
;
223 VirtualProtect(ptr
, length
, PAGE_EXECUTE_READWRITE
, &old_protect
);
225 extern void __clear_cache(char *beginning
, char *end
);
227 # define PAGESIZE 4096
230 start
= (addr_t
)ptr
& ~(PAGESIZE
- 1);
231 end
= (addr_t
)ptr
+ length
;
232 end
= (end
+ PAGESIZE
- 1) & ~(PAGESIZE
- 1);
233 mprotect((void *)start
, end
- start
, PROT_READ
| PROT_WRITE
| PROT_EXEC
);
234 __clear_cache(ptr
, ptr
+ length
);
238 /* ------------------------------------------------------------- */
239 #ifdef CONFIG_TCC_BACKTRACE
241 ST_FUNC
void tcc_set_num_callers(int n
)
246 /* print the position in the source file of PC value 'pc' by reading
247 the stabs debug information */
248 static addr_t
rt_printline(addr_t wanted_pc
, const char *msg
)
250 char func_name
[128], last_func_name
[128];
251 addr_t func_addr
, last_pc
, pc
;
252 const char *incl_files
[INCLUDE_STACK_SIZE
];
253 int incl_index
, len
, last_line_num
, i
;
256 Stab_Sym
*stab_sym
= NULL
, *stab_sym_end
, *sym
;
258 char *stab_str
= NULL
;
261 stab_len
= stab_section
->data_offset
;
262 stab_sym
= (Stab_Sym
*)stab_section
->data
;
263 stab_str
= (char *) stabstr_section
->data
;
269 last_func_name
[0] = '\0';
270 last_pc
= (addr_t
)-1;
276 stab_sym_end
= (Stab_Sym
*)((char*)stab_sym
+ stab_len
);
277 for (sym
= stab_sym
+ 1; sym
< stab_sym_end
; ++sym
) {
278 switch(sym
->n_type
) {
279 /* function start or end */
281 if (sym
->n_strx
== 0) {
282 /* we test if between last line and end of function */
283 pc
= sym
->n_value
+ func_addr
;
284 if (wanted_pc
>= last_pc
&& wanted_pc
< pc
)
289 str
= stab_str
+ sym
->n_strx
;
290 p
= strchr(str
, ':');
292 pstrcpy(func_name
, sizeof(func_name
), str
);
295 if (len
> sizeof(func_name
) - 1)
296 len
= sizeof(func_name
) - 1;
297 memcpy(func_name
, str
, len
);
298 func_name
[len
] = '\0';
300 func_addr
= sym
->n_value
;
303 /* line number info */
305 pc
= sym
->n_value
+ func_addr
;
306 if (wanted_pc
>= last_pc
&& wanted_pc
< pc
)
309 last_line_num
= sym
->n_desc
;
311 strcpy(last_func_name
, func_name
);
315 str
= stab_str
+ sym
->n_strx
;
317 if (incl_index
< INCLUDE_STACK_SIZE
) {
318 incl_files
[incl_index
++] = str
;
326 if (sym
->n_strx
== 0) {
327 incl_index
= 0; /* end of translation unit */
329 str
= stab_str
+ sym
->n_strx
;
330 /* do not add path */
332 if (len
> 0 && str
[len
- 1] != '/')
340 /* second pass: we try symtab symbols (no line number info) */
344 ElfW(Sym
) *sym
, *sym_end
;
347 sym_end
= (ElfW(Sym
) *)(symtab_section
->data
+ symtab_section
->data_offset
);
348 for(sym
= (ElfW(Sym
) *)symtab_section
->data
+ 1;
351 type
= ELFW(ST_TYPE
)(sym
->st_info
);
352 if (type
== STT_FUNC
|| type
== STT_GNU_IFUNC
) {
353 if (wanted_pc
>= sym
->st_value
&&
354 wanted_pc
< sym
->st_value
+ sym
->st_size
) {
355 pstrcpy(last_func_name
, sizeof(last_func_name
),
356 (char *) strtab_section
->data
+ sym
->st_name
);
357 func_addr
= sym
->st_value
;
363 /* did not find any info: */
364 fprintf(stderr
, "%s %p ???\n", msg
, (void*)wanted_pc
);
370 fprintf(stderr
, "%s:%d: ", incl_files
[--i
], last_line_num
);
371 fprintf(stderr
, "%s %p", msg
, (void*)wanted_pc
);
372 if (last_func_name
[0] != '\0')
373 fprintf(stderr
, " %s()", last_func_name
);
375 fprintf(stderr
, " (included from ");
377 fprintf(stderr
, "%s", incl_files
[i
]);
380 fprintf(stderr
, ", ");
382 fprintf(stderr
, ")");
384 fprintf(stderr
, "\n");
389 /* emit a run time error at position 'pc' */
390 static void rt_error(ucontext_t
*uc
, const char *fmt
, ...)
396 fprintf(stderr
, "Runtime error: ");
398 vfprintf(stderr
, fmt
, ap
);
400 fprintf(stderr
, "\n");
402 for(i
=0;i
<rt_num_callers
;i
++) {
403 if (rt_get_caller_pc(&pc
, uc
, i
) < 0)
405 pc
= rt_printline(pc
, i
? "by" : "at");
406 if (pc
== (addr_t
)rt_prog_main
&& pc
)
411 /* ------------------------------------------------------------- */
414 /* signal handler for fatal errors */
415 static void sig_error(int signum
, siginfo_t
*siginf
, void *puc
)
417 ucontext_t
*uc
= puc
;
421 switch(siginf
->si_code
) {
424 rt_error(uc
, "division by zero");
427 rt_error(uc
, "floating point exception");
433 if (rt_bound_error_msg
&& *rt_bound_error_msg
)
434 rt_error(uc
, *rt_bound_error_msg
);
436 rt_error(uc
, "dereferencing invalid pointer");
439 rt_error(uc
, "illegal instruction");
442 rt_error(uc
, "abort() called");
445 rt_error(uc
, "caught signal %d", signum
);
452 # define SA_SIGINFO 0x00000004u
455 /* Generate a stack backtrace when a CPU exception occurs. */
456 static void set_exception_handler(void)
458 struct sigaction sigact
;
459 /* install TCC signal handlers to print debug info on fatal
461 sigact
.sa_flags
= SA_SIGINFO
| SA_RESETHAND
;
462 sigact
.sa_sigaction
= sig_error
;
463 sigemptyset(&sigact
.sa_mask
);
464 sigaction(SIGFPE
, &sigact
, NULL
);
465 sigaction(SIGILL
, &sigact
, NULL
);
466 sigaction(SIGSEGV
, &sigact
, NULL
);
467 sigaction(SIGBUS
, &sigact
, NULL
);
468 sigaction(SIGABRT
, &sigact
, NULL
);
471 /* ------------------------------------------------------------- */
474 /* fix for glibc 2.1 */
480 /* return the PC at frame level 'level'. Return negative if not found */
481 static int rt_get_caller_pc(addr_t
*paddr
, ucontext_t
*uc
, int level
)
487 #if defined(__APPLE__)
488 *paddr
= uc
->uc_mcontext
->__ss
.__eip
;
489 #elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
490 *paddr
= uc
->uc_mcontext
.mc_eip
;
491 #elif defined(__dietlibc__)
492 *paddr
= uc
->uc_mcontext
.eip
;
494 *paddr
= uc
->uc_mcontext
.gregs
[REG_EIP
];
498 #if defined(__APPLE__)
499 fp
= uc
->uc_mcontext
->__ss
.__ebp
;
500 #elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
501 fp
= uc
->uc_mcontext
.mc_ebp
;
502 #elif defined(__dietlibc__)
503 fp
= uc
->uc_mcontext
.ebp
;
505 fp
= uc
->uc_mcontext
.gregs
[REG_EBP
];
507 for(i
=1;i
<level
;i
++) {
508 /* XXX: check address validity with program info */
509 if (fp
<= 0x1000 || fp
>= 0xc0000000)
511 fp
= ((addr_t
*)fp
)[0];
513 *paddr
= ((addr_t
*)fp
)[1];
518 /* ------------------------------------------------------------- */
519 #elif defined(__x86_64__)
521 /* return the PC at frame level 'level'. Return negative if not found */
522 static int rt_get_caller_pc(addr_t
*paddr
, ucontext_t
*uc
, int level
)
528 /* XXX: only support linux */
529 #if defined(__APPLE__)
530 *paddr
= uc
->uc_mcontext
->__ss
.__rip
;
531 #elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
532 *paddr
= uc
->uc_mcontext
.mc_rip
;
534 *paddr
= uc
->uc_mcontext
.gregs
[REG_RIP
];
538 #if defined(__APPLE__)
539 fp
= uc
->uc_mcontext
->__ss
.__rbp
;
540 #elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
541 fp
= uc
->uc_mcontext
.mc_rbp
;
543 fp
= uc
->uc_mcontext
.gregs
[REG_RBP
];
545 for(i
=1;i
<level
;i
++) {
546 /* XXX: check address validity with program info */
549 fp
= ((addr_t
*)fp
)[0];
551 *paddr
= ((addr_t
*)fp
)[1];
556 /* ------------------------------------------------------------- */
557 #elif defined(__arm__)
559 /* return the PC at frame level 'level'. Return negative if not found */
560 static int rt_get_caller_pc(addr_t
*paddr
, ucontext_t
*uc
, int level
)
566 /* XXX: only supports linux */
567 #if defined(__linux__)
568 *paddr
= uc
->uc_mcontext
.arm_pc
;
574 #if defined(__linux__)
575 fp
= uc
->uc_mcontext
.arm_fp
;
576 sp
= uc
->uc_mcontext
.arm_sp
;
582 /* XXX: specific to tinycc stack frames */
583 if (fp
< sp
+ 12 || fp
& 3)
585 for(i
= 1; i
< level
; i
++) {
586 sp
= ((addr_t
*)fp
)[-2];
587 if (sp
< fp
|| sp
- fp
> 16 || sp
& 3)
589 fp
= ((addr_t
*)fp
)[-3];
590 if (fp
<= sp
|| fp
- sp
< 12 || fp
& 3)
593 /* XXX: check address validity with program info */
594 *paddr
= ((addr_t
*)fp
)[-1];
599 /* ------------------------------------------------------------- */
602 #warning add arch specific rt_get_caller_pc()
603 static int rt_get_caller_pc(addr_t
*paddr
, ucontext_t
*uc
, int level
)
608 #endif /* !__i386__ */
610 /* ------------------------------------------------------------- */
613 static long __stdcall
cpu_exception_handler(EXCEPTION_POINTERS
*ex_info
)
615 EXCEPTION_RECORD
*er
= ex_info
->ExceptionRecord
;
616 CONTEXT
*uc
= ex_info
->ContextRecord
;
617 switch (er
->ExceptionCode
) {
618 case EXCEPTION_ACCESS_VIOLATION
:
619 if (rt_bound_error_msg
&& *rt_bound_error_msg
)
620 rt_error(uc
, *rt_bound_error_msg
);
622 rt_error(uc
, "access violation");
624 case EXCEPTION_STACK_OVERFLOW
:
625 rt_error(uc
, "stack overflow");
627 case EXCEPTION_INT_DIVIDE_BY_ZERO
:
628 rt_error(uc
, "division by zero");
631 rt_error(uc
, "exception caught");
634 return EXCEPTION_EXECUTE_HANDLER
;
637 /* Generate a stack backtrace when a CPU exception occurs. */
638 static void set_exception_handler(void)
640 SetUnhandledExceptionFilter(cpu_exception_handler
);
644 static void win64_add_function_table(TCCState
*s1
)
647 (RUNTIME_FUNCTION
*)s1
->uw_pdata
->sh_addr
,
648 s1
->uw_pdata
->data_offset
/ sizeof (RUNTIME_FUNCTION
),
649 text_section
->sh_addr
654 /* return the PC at frame level 'level'. Return non zero if not found */
655 static int rt_get_caller_pc(addr_t
*paddr
, CONTEXT
*uc
, int level
)
667 for(i
=1;i
<level
;i
++) {
668 /* XXX: check address validity with program info */
669 if (fp
<= 0x1000 || fp
>= 0xc0000000)
671 fp
= ((addr_t
*)fp
)[0];
673 pc
= ((addr_t
*)fp
)[1];
680 #endif /* CONFIG_TCC_BACKTRACE */
681 /* ------------------------------------------------------------- */
682 #ifdef CONFIG_TCC_STATIC
684 /* dummy function for profiling */
685 ST_FUNC
void *dlopen(const char *filename
, int flag
)
690 ST_FUNC
void dlclose(void *p
)
694 ST_FUNC
const char *dlerror(void)
699 typedef struct TCCSyms
{
705 /* add the symbol you want here if no dynamic linking is done */
706 static TCCSyms tcc_syms
[] = {
707 #if !defined(CONFIG_TCCBOOT)
708 #define TCCSYM(a) { #a, &a, },
718 ST_FUNC
void *resolve_sym(TCCState
*s1
, const char *symbol
)
722 while (p
->str
!= NULL
) {
723 if (!strcmp(p
->str
, symbol
))
730 #elif !defined(_WIN32)
732 ST_FUNC
void *resolve_sym(TCCState
*s1
, const char *sym
)
734 return dlsym(RTLD_DEFAULT
, sym
);
737 #endif /* CONFIG_TCC_STATIC */
738 #endif /* TCC_IS_NATIVE */
739 /* ------------------------------------------------------------- */