VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src/Crypto/Aes_hw_cpu.asm
diff options
context:
space:
mode:
authorMounir IDRASSI <mounir.idrassi@idrix.fr>2017-06-13 01:23:54 +0200
committerMounir IDRASSI <mounir.idrassi@idrix.fr>2017-06-13 01:26:22 +0200
commitba1fbb688edf7db0edf3ea9d24a95d5a5ef2260c (patch)
tree437b12ad243189a0c9f6db7c77edba5052499751 /src/Crypto/Aes_hw_cpu.asm
parent95bf8f85745bedeb09b82c187eb668d632f53424 (diff)
downloadVeraCrypt-ba1fbb688edf7db0edf3ea9d24a95d5a5ef2260c.tar.gz
VeraCrypt-ba1fbb688edf7db0edf3ea9d24a95d5a5ef2260c.zip
Linux: fix executable stack in resulting binary which was caused by crypto assembly files missing the GNU-stack note.
Diffstat (limited to 'src/Crypto/Aes_hw_cpu.asm')
-rw-r--r--src/Crypto/Aes_hw_cpu.asm11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/Crypto/Aes_hw_cpu.asm b/src/Crypto/Aes_hw_cpu.asm
index edc20b29..4822e6a4 100644
--- a/src/Crypto/Aes_hw_cpu.asm
+++ b/src/Crypto/Aes_hw_cpu.asm
@@ -331,3 +331,14 @@
%endif ; __BITS__ != 16
+
+%ifidn __OUTPUT_FORMAT__,elf
+section .note.GNU-stack noalloc noexec nowrite progbits
+%endif
+%ifidn __OUTPUT_FORMAT__,elf32
+section .note.GNU-stack noalloc noexec nowrite progbits
+%endif
+%ifidn __OUTPUT_FORMAT__,elf64
+section .note.GNU-stack noalloc noexec nowrite progbits
+%endif
+