[llvm] [MC,COFF] .safeseh: avoid changeSection (PR #132624)
LIU Hao via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 24 04:39:27 PDT 2025
lhmouse wrote:
Here's an updated test program that compiles with any of GCC, Clang or Clang-CL.
```S
# gcc -m32 test.S -nostdlib /mingw32/lib/libkernel32.a && ./a.exe
# clang -target i686-w64-mingw32 test.S -nostdlib /mingw32/lib/libkernel32.a && ./a.exe
# clang -target i686-windows-msvc test.S -nostdlib -Wl,-subsystem:console \
"C:/Program Files (x86)/Windows Kits/10/Lib/10.0.26100.0/um/x86/kernel32.Lib" && ./a.exe
# CODE SECTION
.intel_syntax noprefix
.text
# static void __stdcall print(const char* msg)
.def _print at 4; .scl 3; .type 32; .endef
_print at 4:
push esi
sub esp, 24
# %esi = GetStdHandle(STD_ERROR_HANDLE)
mov DWORD PTR [esp], -12
call _GetStdHandle at 4
push ecx
mov esi, eax
# %eax = lstrlenA(msg)
mov edx, DWORD PTR [esp + 32]
mov DWORD PTR [esp], edx
call _lstrlenA at 4
push ecx
# WriteFile(%esi, msg, %eax, ignored, nullptr)
mov DWORD PTR [esp], esi
mov edx, DWORD PTR [esp + 32]
mov DWORD PTR [esp + 4], edx
mov DWORD PTR [esp + 8], eax
lea eax, [esp + 20]
mov DWORD PTR [esp + 12], eax
mov DWORD PTR [esp + 16], 0
call _WriteFile at 20
sub esp, 20
# return
add esp, 24
pop esi
ret 4
# EXCEPTION_DISPOSITION my_handler(...)
.def _my_handler; .scl 2; .type 32; .endef
.globl _my_handler
#if defined __clang__ || defined _MSC_VER
.safeseh _my_handler
#endif
_my_handler:
sub esp, 12
# print(msg_002)
mov DWORD PTR [esp], OFFSET _msg_002
call _print at 4
push ecx
# return ExceptionContinueExecution
xor eax, eax
add esp, 12
ret
# [[noreturn]] int mainCRTStartup(void)
.globl _mainCRTStartup
_mainCRTStartup:
sub esp, 60
# EXCEPTION_REGISTRATION_RECORD record
# record.Next = *%fs:0
# record.Handler = &my_handler
# *%fs:0 = &record
lea ecx, [esp + 52]
mov eax, DWORD PTR fs:[0]
mov DWORD PTR [ecx], eax
mov DWORD PTR [ecx + 4], OFFSET _my_handler
mov DWORD PTR fs:[0], ecx
# print(msg_000)
mov DWORD PTR [esp], OFFSET _msg_000
call _print at 4
push ecx
# RaiseException(0x20616263, 0, 0, NULL)
mov DWORD PTR [esp], 0x20616263
mov DWORD PTR [esp + 4], 0
mov DWORD PTR [esp + 8], 0
mov DWORD PTR [esp + 12], 0
call _RaiseException at 16
sub esp, 16
# print(msg_001)
mov DWORD PTR [esp], OFFSET _msg_001
call _print at 4
push ecx
# ExitProcess(0)
mov DWORD PTR [esp], 0
call _ExitProcess at 4
# DATA SECTION
.section .rdata, "dr"
_msg_000: .asciz "my_handler installed\n"
_msg_001: .asciz "exiting\n"
_msg_002: .asciz "my_handler invoked\n"
# @feat.00 = 1; safeseh
.def @feat.00; .scl 2; .type 32; .endef
.globl @feat.00
.set @feat.00, 1
# IMAGE_LOAD_CONFIG_DIRECTORY32 _load_config_used =
# { .Size = 72,
# .SEHandlerTable = __safe_se_handler_table,
# .SEHandlerCount = &__safe_se_handler_count }
.def __load_config_used; .scl 2; .type 32; .endef
.globl __load_config_used
.align 4
__load_config_used:
.long 72
.fill 16, 4, 0
.long ___safe_se_handler_table
.long ___safe_se_handler_count
```
Before the patch:
* **CLANG64 ~/Desktop
$** clang -target i686-windows-msvc test.S -nostdlib -Wl,-subsystem:console \
"C:/Program Files (x86)/Windows Kits/10/Lib/10.0.26100.0/um/x86/kernel32.Lib" && ./a.exe
lld-link: warning: ignoring invalid symbol table index in section .sxdata in object C:/MSYS64/tmp/test-5008c8.o
lld-link: warning: ignoring invalid symbol table index in section .sxdata in object C:/MSYS64/tmp/test-5008c8.o
lld-link: warning: ignoring invalid symbol table index in section .sxdata in object C:/MSYS64/tmp/test-5008c8.o
...
After the patch:
* **CLANG64 ~/Desktop
$** clang -target i686-windows-msvc test.S -nostdlib -Wl,-subsystem:console "C:/Program Files (x86)/Windows Kits/10/Lib/10.0.26100.0/um/x86/kernel32.Lib" && ./a.exe
my_handler installed
my_handler invoked
exiting
https://github.com/llvm/llvm-project/pull/132624
More information about the llvm-commits
mailing list