security_compute_avSection: SE Linux API documentation (3)Updated: 1 January 2004 |
security_compute_avSection: SE Linux API documentation (3)Updated: 1 January 2004 |
int security_compute_av(security_context_t scon, security_context_t tcon, security_class_t tclass, access_vector_t requested, struct av_decision *avd);
int security_compute_create(security_context_t scon, security_context_t tcon, security_class_t tclass, security_context_t *newcon);
int security_compute_relabel(security_context_t scon, security_context_t tcon, security_class_t tclass, security_context_t *newcon);
int security_compute_user(security_context_t scon, const char *username, security_context_t **con);
security_compute_create is used to compute a context to use for labeling a new object in a particular class based on a SID pair.
security_compute_relabel is used to compute the new context to use when relabeling an object, it is used in the pam_selinux.so source and the newrole source to determine the correct label for the tty at login time, but can be used for other things.
security_compute_user is used to determine the set of user contexts that can be reached from a source context. Is mainly used by get_ordered_context_list.