-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Initial formal verification results #69
Merged
Merged
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
e36bd02
Work on Page verification
lgaeher 028125f
work on spec for page allocator
lgaeher 014bcd2
simplifying page table memory representation
wojciechozga f3a117c
more work on page
lgaeher 3498f9d
work on new page allocator spec
lgaeher 31a38a2
add readme document outlining the verification
lgaeher 159276c
build fixes
lgaeher 93b2363
fix build
lgaeher c8af232
bump opensbi
lgaeher 23e671e
fix build script
lgaeher fb3c99e
ci fixes
lgaeher 67352a2
Include suggestions in readme
lgaeher b5692de
change makefile message
lgaeher 4735e62
work on cleanups
lgaeher 3c68342
some coq refactoring
lgaeher 8ce19f4
clean up page table
lgaeher 2c4cd98
address comments
lgaeher 9198b40
make read accessible only on Allocated pages
lgaeher File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Submodule opensbi
updated
15 files
+18 −4 | Makefile | |
+2 −2 | firmware/fw_base.S | |
+5 −0 | firmware/fw_base.ldS | |
+249 −0 | include/sbi/riscv_dbtr.h | |
+1 −0 | include/sbi/riscv_encoding.h | |
+10 −0 | include/sbi/sbi_byteorder.h | |
+125 −0 | include/sbi/sbi_dbtr.h | |
+11 −0 | include/sbi/sbi_ecall_interface.h | |
+2 −0 | include/sbi/sbi_hart.h | |
+4 −0 | lib/sbi/Kconfig | |
+4 −0 | lib/sbi/objects.mk | |
+728 −0 | lib/sbi/sbi_dbtr.c | |
+73 −0 | lib/sbi/sbi_ecall_dbtr.c | |
+4 −0 | lib/sbi/sbi_hart.c | |
+11 −0 | lib/sbi/sbi_init.c |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
since we are veriyfing the security monitor implementation, we might also move the entire /verification/ directory under /security-monitor/verification/, if you think it helps with relative addressing etc.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess it makes things a bit easier, but probably does not make much of a difference.
Would you prefer to put it in
security-monitor/verification
? If so, I can change it.Alternatively, we can also decide to change the location in the future.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I tagree with putting the verification in security-monitor/verification because this location reinforces the point that the verification is part of the project.