xtest/os_test: add ASAN self-tests (regression 1042)#810
Open
alexhoppus wants to merge 1 commit intoOP-TEE:masterfrom
Open
xtest/os_test: add ASAN self-tests (regression 1042)#810alexhoppus wants to merge 1 commit intoOP-TEE:masterfrom
alexhoppus wants to merge 1 commit intoOP-TEE:masterfrom
Conversation
Add regression case 1042 to exercise ASAN in TA: - stack overflow - global (ro/static/regular) - malloc (including overflow) - use-after-free - memcpy/memset bounds Wire new commands in os_test TA and expose entry points. The host test opens os_test TA and runs the subcases, skipping gracefully when ASAN is not supported (CFG_TA_SANITIZE_KADDRESS=n). Signed-off-by: Aleksandr Iashchenko <aleksandr.iashchenko@linutronix.de>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This commit adds AddressSanitizer tests for OP-TEE Trusted Applications. The test logic is reused from the existing kernel tests but is exposed and executed in the TA context.
This is part of the work to support AddressSanitizer for Trusted Applications. The main MR is here