/* * 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 | andrew morton | 20 | 35.09% | 1 | 20.00% |
stephen d. smalley | stephen d. smalley | 16 | 28.07% | 1 | 20.00% |
chad sellers | chad sellers | 15 | 26.32% | 1 | 20.00% |
james morris | james morris | 5 | 8.77% | 1 | 20.00% |
eric paris | eric paris | 1 | 1.75% | 1 | 20.00% |
Total | 57 | 100.00% | 5 | 100.00% |