/* * Access vector cache interface for the security server. * * Author : Stephen Smalley, <sds@epoch.ncsc.mil> */ #ifndef _SELINUX_AVC_SS_H_ #define _SELINUX_AVC_SS_H_ #include "flask.h" int avc_ss_reset(u32 seqno); /* Class/perm mapping support */ struct security_class_mapping { const char *name; const char *perms[sizeof(u32) * 8 + 1]; }; extern struct security_class_mapping secclass_map[]; /* * The security server must be initialized before * any labeling or access decisions can be provided. */ extern int ss_initialized; #endif /* _SELINUX_AVC_SS_H_ */Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Andrew Morton | 20 | 35.09% | 1 | 20.00% |
Stephen D. Smalley | 16 | 28.07% | 1 | 20.00% |
Chad Sellers | 15 | 26.32% | 1 | 20.00% |
James Morris | 5 | 8.77% | 1 | 20.00% |
Eric Paris | 1 | 1.75% | 1 | 20.00% |
Total | 57 | 100.00% | 5 | 100.00% |