mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-11-08 18:28:11 +01:00
57e5696463
On some systems executable stacks are denied. Since libunwind and the tests don't actually need executable stacks this patch marks all assembly files as not needing it. The original patch comes from frysk: 2007-04-05 Jan Kratochvil <jan.kratochvil@redhat.com> * src/hppa/getcontext.S, src/hppa/setcontext.S, src/hppa/siglongjmp.S, src/ia64/Ginstall_cursor.S, src/ia64/Linstall_cursor.S, src/ia64/dyn_info_list.S, src/ia64/getcontext.S, src/ia64/longjmp.S, src/ia64/setjmp.S, src/ia64/siglongjmp.S, src/ia64/sigsetjmp.S, src/ppc64/longjmp.S, src/ppc64/siglongjmp.S, src/x86/longjmp.S, src/x86/siglongjmp.S, src/x86_64/longjmp.S, src/x86_64/setcontext.S, src/x86_64/siglongjmp.S: Stack should be non-executable, for SELinux. I added a couple more markers for new files in current libunwind. Before this patch you would get the following on selinux enabled systems without allow_exec_stack: error while loading shared libraries: libunwind.so.7: cannot enable executable stack as shared object requires: Permission denied After the patch that error disappears and all test results are similar to the results on systems without executable stack protection.
76 lines
1.5 KiB
ArmAsm
76 lines
1.5 KiB
ArmAsm
#if defined(__ia64__)
|
|
|
|
.global flush_cache
|
|
|
|
.proc flush_cache
|
|
flush_cache:
|
|
.prologue
|
|
alloc r2=ar.pfs,2,0,0,0
|
|
add r8=31,in1 // round up to 32 byte-boundary
|
|
;;
|
|
shr.u r8=r8,5 // we flush 32 bytes per iteration
|
|
;;
|
|
add r8=-1,r8
|
|
.save ar.lc, r3
|
|
mov r3=ar.lc // save ar.lc
|
|
;;
|
|
.body
|
|
|
|
mov ar.lc=r8
|
|
;;
|
|
.loop: fc in0 // issuable on M0 only
|
|
add in0=32,in0
|
|
br.cloop.sptk.few .loop
|
|
;;
|
|
sync.i
|
|
;;
|
|
srlz.i
|
|
;;
|
|
mov ar.lc=r3 // restore ar.lc
|
|
br.ret.sptk.many rp
|
|
.endp flush_cache
|
|
|
|
#elif defined(__i386__) || defined (__x86_64__)
|
|
|
|
.globl flush_cache
|
|
flush_cache:
|
|
ret
|
|
|
|
#elif defined(__hppa__)
|
|
|
|
# warning FIX ME!!
|
|
|
|
.globl flush_cache
|
|
flush_cache:
|
|
.proc
|
|
.callinfo
|
|
bv %r0(%rp)
|
|
.procend
|
|
#elif defined(__powerpc64__)
|
|
# warning IMPLEMENT ME FOR PPC64!!
|
|
.globl flush_cache
|
|
flush_cache:
|
|
lwz 11, 0(1) ;
|
|
lwz 0, 4(11) ;
|
|
mtlr 0 ;
|
|
lwz 31, -4(11) ;
|
|
mr 1, 11 ;
|
|
blr
|
|
#elif defined(__powerpc__)
|
|
# warning IMPLEMENT ME FOR PPC32!!
|
|
.globl flush_cache
|
|
flush_cache:
|
|
lwz 11, 0(1) ;
|
|
lwz 0, 4(11) ;
|
|
mtlr 0 ;
|
|
lwz 31, -4(11) ;
|
|
mr 1, 11 ;
|
|
blr
|
|
#else
|
|
# error Need flush_cache code for this architecture.
|
|
#endif
|
|
|
|
#ifdef __linux__
|
|
/* We do not need executable stack. */
|
|
.section .note.GNU-stack,"",@progbits
|
|
#endif
|