1 /*
2  *  NSA Security-Enhanced Linux (SELinux) security module
3  *
4  *  This file contains the Flask security data structures for xen objects.
5  *
6  *  Author(s):  George Coker, <gscoker@alpha.ncsc.mil>
7  *
8  *    This program is free software; you can redistribute it and/or modify
9  *    it under the terms of the GNU General Public License version 2,
10  *      as published by the Free Software Foundation.
11  */
12 
13 #ifndef _FLASK_OBJSEC_H_
14 #define _FLASK_OBJSEC_H_
15 
16 #include <xen/sched.h>
17 #include "flask.h"
18 #include "avc.h"
19 
20 struct domain_security_struct {
21     u32 sid;               /* current SID */
22     u32 self_sid;          /* SID for target when operating on DOMID_SELF */
23     u32 target_sid;        /* SID for device model target domain */
24 };
25 
26 #endif /* _FLASK_OBJSEC_H_ */
27