objsec.h

来自「xen虚拟机源代码安装包」· C头文件 代码 · 共 34 行

H
34
字号
/* *  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 + =
减小字号Ctrl + -
显示快捷键?