Home
last modified time | relevance | path

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

/Linux-v5.10/security/apparmor/
Ddomain.c323 state = aa_dfa_outofband_transition(profile->xmatch, state); in aa_xattrs_match()
337 state = aa_dfa_null_transition(profile->xmatch, state); in aa_xattrs_match()
339 state = aa_dfa_match_len(profile->xmatch, state, value, in aa_xattrs_match()
341 perm = dfa_user_allow(profile->xmatch, state); in aa_xattrs_match()
348 state = aa_dfa_outofband_transition(profile->xmatch, state); in aa_xattrs_match()
415 if (profile->xmatch) { in find_attach()
419 state = aa_dfa_leftmatch(profile->xmatch, DFA_START, in find_attach()
421 perm = dfa_user_allow(profile->xmatch, state); in find_attach()
Dpolicy_unpack.c718 profile->xmatch = unpack_dfa(e); in unpack_profile()
719 if (IS_ERR(profile->xmatch)) { in unpack_profile()
720 error = PTR_ERR(profile->xmatch); in unpack_profile()
721 profile->xmatch = NULL; in unpack_profile()
726 if (profile->xmatch) { in unpack_profile()
Dpolicy.c233 aa_put_dfa(profile->xmatch); in aa_free_profile()
Dapparmorfs.c1093 else if (profile->xmatch) in seq_profile_attach_show()
/Linux-v5.10/security/apparmor/include/
Dpolicy.h137 struct aa_dfa *xmatch; member