-
Notifications
You must be signed in to change notification settings - Fork 438
XCCDF_POLICY: bound recursion on cyclic Profile @extends #2364
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
Open
edznux-dd
wants to merge
1
commit into
OpenSCAP:main
Choose a base branch
from
edznux-dd:fix/dos-unbounded-recursion
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+22
−1
Open
Changes from all commits
Commits
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 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -1864,15 +1864,34 @@ xccdf_policy_add_select(struct xccdf_policy *policy, struct xccdf_select *sel) | |
| return _xccdf_policy_add_selector_internal(policy, benchmark, sel, true); | ||
| } | ||
|
|
||
| // Upper bound on the Profile @extends chain length. Real content nests at most | ||
| // a handful deep; this only exists to stop a cyclic @extends chain from | ||
| // recursing until the stack overflows. | ||
| #define XCCDF_POLICY_MAX_EXTENDS_DEPTH 64 | ||
|
|
||
| // Nesting counter for profile @extends resolution. It is a file-static (rather | ||
| // than a recursion argument) because the chain can recurse indirectly through | ||
| // policy creation -- _add_profile_selectors -> xccdf_policy_model_get_policy_by_id | ||
| // -> xccdf_policy_new -> _add_profile_selectors -- which would reset a per-call | ||
| // argument and let a cyclic @extends overflow the stack. | ||
| static unsigned _xccdf_extends_recursion_depth = 0; | ||
|
|
||
| static void _xccdf_policy_add_profile_selectors(struct xccdf_policy* policy, struct xccdf_benchmark *benchmark, struct xccdf_profile *profile) { | ||
| if (!profile) | ||
| return; | ||
|
|
||
| if (_xccdf_extends_recursion_depth > XCCDF_POLICY_MAX_EXTENDS_DEPTH) { | ||
| oscap_seterr(OSCAP_EFAMILY_XCCDF, "Profile @extends chain is too deep or cyclic; aborting selector resolution for '%s'.", | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It might be better to assign |
||
| xccdf_profile_get_id(profile)); | ||
| return; | ||
| } | ||
| _xccdf_extends_recursion_depth++; | ||
|
|
||
| const char *parent_profile_id = xccdf_profile_get_extends(profile); | ||
| struct xccdf_profile *parent_profile = NULL; | ||
|
|
||
| if (parent_profile_id != NULL) { | ||
| if (strcmp(parent_profile_id, xccdf_profile_get_id(profile)) == 0) { | ||
| if (oscap_strcmp(parent_profile_id, xccdf_profile_get_id(profile)) == 0) { | ||
| // We are shadowing a profile, we need to get the original profile from | ||
| // benchmark directly to avoid an endless loop. | ||
| parent_profile = xccdf_benchmark_get_profile_by_id(benchmark, parent_profile_id); | ||
|
|
@@ -1902,6 +1921,8 @@ static void _xccdf_policy_add_profile_selectors(struct xccdf_policy* policy, str | |
| _xccdf_policy_add_selector_internal(policy, benchmark, clone, false); | ||
| } | ||
| xccdf_select_iterator_free(sel_it); | ||
|
|
||
| _xccdf_extends_recursion_depth--; | ||
| } | ||
|
|
||
| /** | ||
|
|
||
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.
If we are be pedantic about the limit.