Skip to content

Commit

Permalink
selinux: generalize evaluate_cond_node()
Browse files Browse the repository at this point in the history
Both callers iterate the cond_list and call it for each node - turn it
into evaluate_cond_nodes(), which does the iteration for them.

Signed-off-by: Ondrej Mosnacek <[email protected]>
Signed-off-by: Paul Moore <[email protected]>
  • Loading branch information
WOnder93 authored and pcmoore committed Feb 12, 2020
1 parent 8794d78 commit 89d4d7c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
10 changes: 9 additions & 1 deletion security/selinux/ss/conditional.c
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ static int cond_evaluate_expr(struct policydb *p, struct cond_expr *expr)
* list appropriately. If the result of the expression is undefined
* all of the rules are disabled for safety.
*/
void evaluate_cond_node(struct policydb *p, struct cond_node *node)
static void evaluate_cond_node(struct policydb *p, struct cond_node *node)
{
struct avtab_node *avnode;
int new_state;
Expand Down Expand Up @@ -117,6 +117,14 @@ void evaluate_cond_node(struct policydb *p, struct cond_node *node)
}
}

void evaluate_cond_nodes(struct policydb *p)
{
u32 i;

for (i = 0; i < p->cond_list_len; i++)
evaluate_cond_node(p, &p->cond_list[i]);
}

int cond_policydb_init(struct policydb *p)
{
int rc;
Expand Down
2 changes: 1 addition & 1 deletion security/selinux/ss/conditional.h
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,6 @@ void cond_compute_av(struct avtab *ctab, struct avtab_key *key,
struct av_decision *avd, struct extended_perms *xperms);
void cond_compute_xperms(struct avtab *ctab, struct avtab_key *key,
struct extended_perms_decision *xpermd);
void evaluate_cond_node(struct policydb *p, struct cond_node *node);
void evaluate_cond_nodes(struct policydb *p);

#endif /* _CONDITIONAL_H_ */
6 changes: 2 additions & 4 deletions security/selinux/ss/services.c
Original file line number Diff line number Diff line change
Expand Up @@ -2957,8 +2957,7 @@ int security_set_bools(struct selinux_state *state, u32 len, int *values)
policydb->bool_val_to_struct[i]->state = 0;
}

for (i = 0; i < policydb->cond_list_len; i++)
evaluate_cond_node(policydb, &policydb->cond_list[i]);
evaluate_cond_nodes(policydb);

seqno = ++state->ss->latest_granting;
rc = 0;
Expand Down Expand Up @@ -3011,8 +3010,7 @@ static int security_preserve_bools(struct selinux_state *state,
if (booldatum)
booldatum->state = bvalues[i];
}
for (i = 0; i < policydb->cond_list_len; i++)
evaluate_cond_node(policydb, &policydb->cond_list[i]);
evaluate_cond_nodes(policydb);

out:
if (bnames) {
Expand Down

0 comments on commit 89d4d7c

Please sign in to comment.