You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add example implementation of access control (#11550)
* Add full implementation of access control
New interface (issue #10249) and new implementation (issue #10250).
Implementation is all in-memory and uses only static storage and stack
(no heap).
Some details missing (e.g. CAT support) but most is here, though not yet
hooked up to other code.
Comes with unit tests.
* Fix configuration
Was added at last minute, missed this spot.
* Address code review comments
- rewrite portions of the check loop to use boolean instead of goto
- refactor privilege checking to make it clearer
- ensure storage classes are POD types (with static_assert)
- remove memsets on storage classes (for now, can re-add later)
- clarify some comments
- remove debug log statement
* Restyled by clang-format
* Address code review comments
Also fix some compiler warnings/errors on other builds
* Add tests for fabric filtered indexing
Refactor the index conversion (to/from fabric filtered) to be clearer.
* Restyled by clang-format
* Address code review comments
- change Target::Flags from int to unsigned
- use unsigned in static_asserts for flags
- tweak auto variables
* Add docs and comments
- Add API documentation (mainly to clarify in/out parameters).
- Add implementation comments (where warranted).
- Add more unit tests (mainly for removing subjects/targets).
- A few fixes to get aforementioned tests passing.
- A bit of refactoring/renaming to clarify the code.
* Restyled by whitespace
* Restyled by clang-format
* Some code review suggestions
* Restyled by clang-format
* Fix errors on other compilers
* Fix more build errors on other compilers
* More code review suggestions
* Restyled by clang-format
* Fix typo in config flag
Co-authored-by: Restyled.io <[email protected]>
0 commit comments