📄 objsec.h
字号:
/* * NSA Security-Enhanced Linux (SELinux) security module * * This file contains the Flask security data structures for xen objects. * * Author(s): George Coker, <gscoker@alpha.ncsc.mil> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2, * as published by the Free Software Foundation. */#ifndef _FLASK_OBJSEC_H_#define _FLASK_OBJSEC_H_#include <xen/sched.h>#include "flask.h"#include "avc.h"struct domain_security_struct { struct domain *d; /* back pointer to domain object */ u32 sid; /* current SID */ u32 create_sid;};struct evtchn_security_struct { struct evtchn *chn; /* back pointer to evtchn object */ u32 sid; /* current SID */};extern unsigned int selinux_checkreqprot;#endif /* _FLASK_OBJSEC_H_ */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -