Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 221e00d1 authored by Borislav Petkov's avatar Borislav Petkov Committed by Herbert Xu
Browse files

crypto: x86 - Add missing RETs



Add explicit RETs to the tail calls of AEGIS and MORUS crypto algorithms
otherwise they run into INT3 padding due to

  ("x86/asm: Pad assembly functions with INT3 instructions")

leading to spurious debug exceptions.

Mike Galbraith <efault@gmx.de> took care of all the remaining callsites.

Signed-off-by: default avatarBorislav Petkov <bp@suse.de>
Acked-by: default avatarOndrej Mosnacek <omosnacek@gmail.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent a068b94d
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -535,6 +535,7 @@ ENTRY(crypto_aegis128_aesni_enc_tail)
	movdqu STATE3, 0x40(STATEP)

	FRAME_END
	ret
ENDPROC(crypto_aegis128_aesni_enc_tail)

.macro decrypt_block a s0 s1 s2 s3 s4 i
+1 −0
Original line number Diff line number Diff line
@@ -645,6 +645,7 @@ ENTRY(crypto_aegis128l_aesni_enc_tail)
	state_store0

	FRAME_END
	ret
ENDPROC(crypto_aegis128l_aesni_enc_tail)

/*
+1 −0
Original line number Diff line number Diff line
@@ -543,6 +543,7 @@ ENTRY(crypto_aegis256_aesni_enc_tail)
	state_store0

	FRAME_END
	ret
ENDPROC(crypto_aegis256_aesni_enc_tail)

/*
+1 −0
Original line number Diff line number Diff line
@@ -453,6 +453,7 @@ ENTRY(crypto_morus1280_avx2_enc_tail)
	vmovdqu STATE4, (4 * 32)(%rdi)

	FRAME_END
	ret
ENDPROC(crypto_morus1280_avx2_enc_tail)

/*
+1 −0
Original line number Diff line number Diff line
@@ -652,6 +652,7 @@ ENTRY(crypto_morus1280_sse2_enc_tail)
	movdqu STATE4_HI, (9 * 16)(%rdi)

	FRAME_END
	ret
ENDPROC(crypto_morus1280_sse2_enc_tail)

/*
Loading