Home
last modified time | relevance | path

Searched refs:xmatch (Results 1 – 5 of 5) sorted by relevance

/Linux-v4.19/security/apparmor/
Ddomain.c326 state = aa_dfa_null_transition(profile->xmatch, state); in aa_xattrs_match()
337 state = aa_dfa_match_len(profile->xmatch, state, value, in aa_xattrs_match()
339 perm = dfa_user_allow(profile->xmatch, state); in aa_xattrs_match()
346 state = aa_dfa_null_transition(profile->xmatch, state); in aa_xattrs_match()
411 if (profile->xmatch) { in __attach_match()
415 state = aa_dfa_leftmatch(profile->xmatch, DFA_START, in __attach_match()
417 perm = dfa_user_allow(profile->xmatch, state); in __attach_match()
Dpolicy_unpack.c631 profile->xmatch = unpack_dfa(e); in unpack_profile()
632 if (IS_ERR(profile->xmatch)) { in unpack_profile()
633 error = PTR_ERR(profile->xmatch); in unpack_profile()
634 profile->xmatch = NULL; in unpack_profile()
639 if (profile->xmatch) { in unpack_profile()
Dpolicy.c235 aa_put_dfa(profile->xmatch); in aa_free_profile()
Dapparmorfs.c1088 else if (profile->xmatch) in seq_profile_attach_show()
/Linux-v4.19/security/apparmor/include/
Dpolicy.h141 struct aa_dfa *xmatch; member