2 * A security context is a set of security attributes
3 * associated with each subject and object controlled
4 * by the security policy. Security contexts are
5 * externally represented as variable-length strings
6 * that can be interpreted by a user or application
7 * with an understanding of the security policy.
8 * Internally, the security server uses a simple
9 * structure. This structure is private to the
10 * security server and can be changed without affecting
11 * clients of the security server.
13 * Author : Stephen Smalley, <sds@epoch.ncsc.mil>
15 #ifndef _SS_CONTEXT_H_
16 #define _SS_CONTEXT_H_
19 #include "mls_types.h"
23 * A security context consists of an authenticated user
24 * identity, a role, a type and a MLS range.
30 struct mls_range range
;
33 static inline void mls_context_init(struct context
*c
)
35 memset(&c
->range
, 0, sizeof(c
->range
));
38 static inline int mls_context_cpy(struct context
*dst
, struct context
*src
)
42 if (!selinux_mls_enabled
)
45 dst
->range
.level
[0].sens
= src
->range
.level
[0].sens
;
46 rc
= ebitmap_cpy(&dst
->range
.level
[0].cat
, &src
->range
.level
[0].cat
);
50 dst
->range
.level
[1].sens
= src
->range
.level
[1].sens
;
51 rc
= ebitmap_cpy(&dst
->range
.level
[1].cat
, &src
->range
.level
[1].cat
);
53 ebitmap_destroy(&dst
->range
.level
[0].cat
);
58 static inline int mls_context_cmp(struct context
*c1
, struct context
*c2
)
60 if (!selinux_mls_enabled
)
63 return ((c1
->range
.level
[0].sens
== c2
->range
.level
[0].sens
) &&
64 ebitmap_cmp(&c1
->range
.level
[0].cat
,&c2
->range
.level
[0].cat
) &&
65 (c1
->range
.level
[1].sens
== c2
->range
.level
[1].sens
) &&
66 ebitmap_cmp(&c1
->range
.level
[1].cat
,&c2
->range
.level
[1].cat
));
69 static inline void mls_context_destroy(struct context
*c
)
71 if (!selinux_mls_enabled
)
74 ebitmap_destroy(&c
->range
.level
[0].cat
);
75 ebitmap_destroy(&c
->range
.level
[1].cat
);
79 static inline void context_init(struct context
*c
)
81 memset(c
, 0, sizeof(*c
));
84 static inline int context_cpy(struct context
*dst
, struct context
*src
)
86 dst
->user
= src
->user
;
87 dst
->role
= src
->role
;
88 dst
->type
= src
->type
;
89 return mls_context_cpy(dst
, src
);
92 static inline void context_destroy(struct context
*c
)
94 c
->user
= c
->role
= c
->type
= 0;
95 mls_context_destroy(c
);
98 static inline int context_cmp(struct context
*c1
, struct context
*c2
)
100 return ((c1
->user
== c2
->user
) &&
101 (c1
->role
== c2
->role
) &&
102 (c1
->type
== c2
->type
) &&
103 mls_context_cmp(c1
, c2
));
106 #endif /* _SS_CONTEXT_H_ */