I am trying to map the requested
access control vector to the corresponding textual representation of the system call in the following function:
int avc_has_perm(security_id_t ssid, security_id_t tsid,
security_class_t tclass, access_vector_t requested,
struct avc_entry_ref *aeref, void *auditdata)
From the documentation I can see that:
requested = requested permissions, interpreted based on @tclass
Is there a function that maps such requested
field to the textual representation of the associated system call (i.e., read, write, open, etc.)?
Thanks