Home
last modified time | relevance | path

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

/Linux-v6.1/security/apparmor/
Ddomain.c324 state = aa_dfa_outofband_transition(profile->xmatch, state); in aa_xattrs_match()
338 state = aa_dfa_null_transition(profile->xmatch, state); in aa_xattrs_match()
340 state = aa_dfa_match_len(profile->xmatch, state, value, in aa_xattrs_match()
342 perm = dfa_user_allow(profile->xmatch, state); in aa_xattrs_match()
349 state = aa_dfa_outofband_transition(profile->xmatch, state); in aa_xattrs_match()
416 if (profile->xmatch) { in find_attach()
420 state = aa_dfa_leftmatch(profile->xmatch, DFA_START, in find_attach()
422 perm = dfa_user_allow(profile->xmatch, state); in find_attach()
Dpolicy_unpack.c722 profile->xmatch = unpack_dfa(e); in unpack_profile()
723 if (IS_ERR(profile->xmatch)) { in unpack_profile()
724 error = PTR_ERR(profile->xmatch); in unpack_profile()
725 profile->xmatch = NULL; in unpack_profile()
730 if (profile->xmatch) { in unpack_profile()
Dpolicy.c233 aa_put_dfa(profile->xmatch); in aa_free_profile()
Dapparmorfs.c1095 else if (profile->xmatch) in seq_profile_attach_show()
/Linux-v6.1/security/apparmor/include/
Dpolicy.h141 struct aa_dfa *xmatch; member