Home
last modified time | relevance | path

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

/Linux-v5.4/security/apparmor/
Ddomain.c322 state = aa_dfa_null_transition(profile->xmatch, state); in aa_xattrs_match()
333 state = aa_dfa_match_len(profile->xmatch, state, value, in aa_xattrs_match()
335 perm = dfa_user_allow(profile->xmatch, state); in aa_xattrs_match()
342 state = aa_dfa_null_transition(profile->xmatch, state); in aa_xattrs_match()
407 if (profile->xmatch) { in __attach_match()
411 state = aa_dfa_leftmatch(profile->xmatch, DFA_START, in __attach_match()
413 perm = dfa_user_allow(profile->xmatch, state); in __attach_match()
Dpolicy_unpack.c715 profile->xmatch = unpack_dfa(e); in unpack_profile()
716 if (IS_ERR(profile->xmatch)) { in unpack_profile()
717 error = PTR_ERR(profile->xmatch); in unpack_profile()
718 profile->xmatch = NULL; in unpack_profile()
723 if (profile->xmatch) { in unpack_profile()
Dpolicy.c233 aa_put_dfa(profile->xmatch); in aa_free_profile()
Dapparmorfs.c1094 else if (profile->xmatch) in seq_profile_attach_show()
/Linux-v5.4/security/apparmor/include/
Dpolicy.h137 struct aa_dfa *xmatch; member