Skip to content

Commit 29321db

Browse files
jovanbulcklzha101
authored andcommitted
Fix assembler call frame information (CFI) directives
Current macros emit an ENDBR instruction between the function label and corresponding cfi_start, which confuses binary analysis tools like llvm-bolt. Also add missing cfi_start/end directives for other assembly functions. See also: https://sourceware.org/binutils/docs/as/CFI-directives.html Signed-off-by: Jo Van Bulck <[email protected]>
1 parent d1c3b8a commit 29321db

File tree

8 files changed

+29
-5
lines changed

8 files changed

+29
-5
lines changed

common/inc/internal/linux/linux-regs.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,7 @@
144144
.globl \name
145145
.type \name, @function
146146
\name:
147+
.cfi_startproc
147148
_CET_ENDBR
148149
.endm
149150

@@ -153,6 +154,7 @@
153154
.hidden \name
154155
.type \name, @function
155156
\name:
157+
.cfi_startproc
156158
_CET_ENDBR
157159
.endm
158160

@@ -215,7 +217,6 @@
215217
/*******************************************************************/
216218

217219
.macro SE_PROLOG
218-
.cfi_startproc
219220

220221
#ifdef LINUX32
221222
pushl %ebp

common/src/linux/xsave_gnu.S

+2
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ DECLARE_LOCAL_FUNC restore_xregs
101101
DO_FXRSTOR
102102
2:
103103
ret
104+
.cfi_endproc
104105

105106
DECLARE_LOCAL_FUNC save_xregs
106107
#if defined(LINUX32)
@@ -121,4 +122,5 @@ DECLARE_LOCAL_FUNC save_xregs
121122
DO_FXSAVE
122123
2:
123124
ret
125+
.cfi_endproc
124126

psw/urts/linux/enter_enclave.S

+6-1
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ DECLARE_GLOBAL_FUNC set_xsave_info
5252
lea_symbol g_clean_ymm, %xax
5353
movl %edx, (%xax)
5454
ret
55+
.cfi_endproc
5556

5657
DECLARE_GLOBAL_FUNC vdso_sgx_enter_enclave_wrapper
5758
EENTER_PROLOG
@@ -169,14 +170,17 @@ EENTER_PROLOG
169170
DECLARE_GLOBAL_FUNC get_aep
170171
lea_pic .Lasync_exit_pointer, %xax
171172
ret
173+
.cfi_endproc
172174

173175
DECLARE_GLOBAL_FUNC get_eenterp
174176
lea_pic .Leenter_inst, %xax
175177
ret
178+
.cfi_endproc
176179

177180
DECLARE_GLOBAL_FUNC get_eretp
178181
lea_pic .Leret, %xax
179182
ret
183+
.cfi_endproc
180184

181185
/*
182186
* function stack_sticker is the wrapper of ocall,
@@ -208,7 +212,6 @@ DECLARE_GLOBAL_FUNC stack_sticker
208212
.hidden push_ocall_frame
209213
.type pop_ocall_frame,@function
210214
.hidden pop_ocall_frame
211-
.cfi_startproc
212215
push %xbp
213216
.cfi_def_cfa_offset 2*SE_WORDSIZE
214217
.cfi_offset xbp,-2*SE_WORDSIZE
@@ -317,6 +320,7 @@ DECLARE_GLOBAL_FUNC sgx_debug_load_state_add_element
317320
movq %rdi, (%rsi)
318321
#endif
319322
ret
323+
.cfi_endproc
320324

321325
/*
322326
* void sgx_debug_unload_state_remove_element(debug_enclave_info_t* enclave_info, debug_enclave_info_t** pre_enclave_info, debug_enclave_info_t* next_enclave_info)
@@ -332,6 +336,7 @@ DECLARE_GLOBAL_FUNC sgx_debug_unload_state_remove_element
332336
movq %rdx, (%rsi)
333337
#endif
334338
ret
339+
.cfi_endproc
335340

336341
/* We do not need executable stack.*/
337342
.section .note.GNU-stack,"",@progbits

psw/urts/linux/enter_enclave.h

-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ lea \symbol, \reg
5353
/* macro for enter_enclave
5454
*/
5555
.macro EENTER_PROLOG
56-
.cfi_startproc
5756
push %xbp
5857
.cfi_def_cfa_offset 2 * SE_WORDSIZE
5958
.cfi_offset xbp, -2 * SE_WORDSIZE

sdk/simulation/assembly/linux/lowlib.S

+2
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
DECLARE_LOCAL_FUNC get_bp
4040
mov %xbp, %xax
4141
ret
42+
.cfi_endproc
4243

4344
#define reg_xax (0 * SE_WORDSIZE)
4445
#define reg_xbx (1 * SE_WORDSIZE)
@@ -62,3 +63,4 @@ DECLARE_LOCAL_FUNC load_regs
6263
push reg_xip(%xdx)
6364
mov reg_xdx(%xdx), %xdx
6465
ret
66+
.cfi_endproc

sdk/trts/linux/trts_mitigation.S

+1
Original file line numberDiff line numberDiff line change
@@ -367,6 +367,7 @@ __ct_mitigation_end:
367367
.global __ct_mitigation_ret
368368
__ct_mitigation_ret:
369369
ret
370+
.cfi_endproc
370371

371372
.ct_aexnotify_end:
372373

sdk/trts/linux/trts_pic.S

+14-2
Original file line numberDiff line numberDiff line change
@@ -45,18 +45,23 @@
4545
DECLARE_LOCAL_FUNC get_enclave_base
4646
lea_pic __ImageBase, %xax
4747
ret
48+
.cfi_endproc
49+
4850
DECLARE_LOCAL_FUNC get_enclave_state
4951
lea_pic g_enclave_state, %xcx
5052
xor %xax, %xax
5153
movl (%xcx), %eax
5254
ret
55+
.cfi_endproc
56+
5357
DECLARE_LOCAL_FUNC set_enclave_state
5458
lea_pic g_enclave_state, %xax
5559
#ifdef LINUX32
5660
mov SE_WORDSIZE(%esp), %edi
5761
#endif
5862
movl %edi, (%xax)
5963
ret
64+
.cfi_endproc
6065

6166
DECLARE_LOCAL_FUNC lock_enclave
6267
lea_pic g_enclave_state, %xdx
@@ -66,6 +71,7 @@ DECLARE_LOCAL_FUNC lock_enclave
6671
mov $ENCLAVE_INIT_IN_PROGRESS, %ecx /* if (g_global_data.enclave_state == ENCLAVE_INIT_NOT_STARTED) */
6772
lock cmpxchgl %ecx, (%xdx) /* g_global_data.enclave_state == ENCLAVE_INIT_IN_PROGRESS */
6873
ret /* xax: the initial value of enclave state */
74+
.cfi_endproc
6975

7076
/*
7177
* ---------------------------------------------------------------------
@@ -77,6 +83,7 @@ DECLARE_LOCAL_FUNC lock_enclave
7783
DECLARE_LOCAL_FUNC get_thread_data
7884
READ_TD_DATA self_addr
7985
ret
86+
.cfi_endproc
8087

8188
/*
8289
* ---------------------------------------------------------------------
@@ -88,6 +95,7 @@ DECLARE_LOCAL_FUNC get_thread_data
8895
DECLARE_LOCAL_FUNC get_stack_guard
8996
READ_TD_DATA stack_guard
9097
ret
98+
.cfi_endproc
9199

92100
/*
93101
* ---------------------------------------------------------------------
@@ -113,7 +121,6 @@ DECLARE_GLOBAL_FUNC enclave_entry
113121
* No need to use any register during the dispatch
114122
* ----------------------------------------------------------------------
115123
*/
116-
.cfi_startproc
117124

118125
/* Clear unused general registers */
119126
xor %xdx, %xdx
@@ -446,6 +453,7 @@ DECLARE_LOCAL_FUNC do_ocall
446453
cld /* DF = 0 */
447454

448455
ENCLU
456+
.cfi_endproc
449457

450458
/*
451459
* ------------------------------------------------------------------
@@ -454,7 +462,6 @@ DECLARE_LOCAL_FUNC do_ocall
454462
* ------------------------------------------------------------------
455463
*/
456464
DECLARE_LOCAL_FUNC __morestack
457-
.cfi_startproc
458465
push %xbp
459466
.cfi_def_cfa_offset 2*SE_WORDSIZE
460467
.cfi_offset xbp,-2*SE_WORDSIZE
@@ -518,6 +525,7 @@ DECLARE_GLOBAL_FUNC asm_oret
518525
ret
519526
/* should not come here */
520527
ud2
528+
.cfi_endproc
521529

522530
/*
523531
* ------------------------------------------------------------------------
@@ -625,6 +633,7 @@ DECLARE_LOCAL_FUNC do_rdrand
625633
movl %eax, (%xcx)
626634
mov $1, %xax
627635
ret
636+
.cfi_endproc
628637

629638
/*
630639
* -------------------------------------------------------------------------
@@ -635,6 +644,7 @@ DECLARE_LOCAL_FUNC abort
635644
lea_pic g_enclave_state, %xax
636645
movl $ENCLAVE_CRASHED, (%xax)
637646
ud2
647+
.cfi_endproc
638648

639649
/*
640650
* -------------------------------------------------------------------------
@@ -692,6 +702,7 @@ DECLARE_LOCAL_FUNC continue_execution
692702
xchg %xax, %xsp
693703

694704
ret $(RED_ZONE_SIZE) /* pop xip and red zone (if any) */
705+
.cfi_endproc
695706

696707
/*
697708
* -------------------------------------------------------------------------
@@ -704,4 +715,5 @@ DECLARE_LOCAL_FUNC second_phase
704715
mov $SE_EDECCSSA, %xax
705716
enclu /* DECCSSA */
706717
jmp *%xdx
718+
.cfi_endproc
707719

sdk/tsetjmp/_setjmp.S

+2
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,7 @@ DECLARE_GLOBAL_FUNC setjmp
172172
ret
173173
.crash:
174174
ud2
175+
.cfi_endproc
175176

176177
DECLARE_GLOBAL_FUNC longjmp
177178
#ifdef LINUX32
@@ -272,6 +273,7 @@ DECLARE_GLOBAL_FUNC longjmp
272273
jnz 1f
273274
incl %eax
274275
1: ret
276+
.cfi_endproc
275277

276278

277279
.weak _setjmp

0 commit comments

Comments
 (0)