2 * AppArmor security module
4 * This file contains AppArmor contexts used to associate "labels" to objects.
6 * Copyright (C) 1998-2008 Novell/SUSE
7 * Copyright 2009-2010 Canonical Ltd.
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation, version 2 of the
15 #ifndef __AA_CONTEXT_H
16 #define __AA_CONTEXT_H
18 #include <linux/cred.h>
19 #include <linux/slab.h>
20 #include <linux/sched.h>
23 #include "policy_ns.h"
25 #define cred_ctx(X) ((X)->security)
26 #define current_ctx() cred_ctx(current_cred())
29 * struct aa_task_ctx - primary label for confined tasks
30 * @label: the current label (NOT NULL)
31 * @exec: label to transition to on next exec (MAYBE NULL)
32 * @previous: label the task may return to (MAYBE NULL)
33 * @token: magic value the task must know for returning to @previous
35 * Contains the task's current label (which could change due to
36 * change_hat). Plus the hat_magic needed during change_hat.
38 * TODO: make so a task can be confined by a stack of contexts
41 struct aa_label
*label
;
42 struct aa_label
*onexec
;
43 struct aa_label
*previous
;
47 struct aa_task_ctx
*aa_alloc_task_context(gfp_t flags
);
48 void aa_free_task_context(struct aa_task_ctx
*ctx
);
49 void aa_dup_task_context(struct aa_task_ctx
*new,
50 const struct aa_task_ctx
*old
);
51 int aa_replace_current_label(struct aa_label
*label
);
52 int aa_set_current_onexec(struct aa_label
*label
, bool stack
);
53 int aa_set_current_hat(struct aa_label
*label
, u64 token
);
54 int aa_restore_previous_label(u64 cookie
);
55 struct aa_label
*aa_get_task_label(struct task_struct
*task
);
59 * aa_cred_raw_label - obtain cred's label
60 * @cred: cred to obtain label from (NOT NULL)
62 * Returns: confining label
64 * does NOT increment reference count
66 static inline struct aa_label
*aa_cred_raw_label(const struct cred
*cred
)
68 struct aa_task_ctx
*ctx
= cred_ctx(cred
);
70 AA_BUG(!ctx
|| !ctx
->label
);
75 * aa_get_newest_cred_label - obtain the newest label on a cred
76 * @cred: cred to obtain label from (NOT NULL)
78 * Returns: newest version of confining label
80 static inline struct aa_label
*aa_get_newest_cred_label(const struct cred
*cred
)
82 return aa_get_newest_label(aa_cred_raw_label(cred
));
86 * __aa_task_raw_label - retrieve another task's label
87 * @task: task to query (NOT NULL)
89 * Returns: @task's label without incrementing its ref count
91 * If @task != current needs to be called in RCU safe critical section
93 static inline struct aa_label
*__aa_task_raw_label(struct task_struct
*task
)
95 return aa_cred_raw_label(__task_cred(task
));
99 * __aa_task_is_confined - determine if @task has any confinement
100 * @task: task to check confinement of (NOT NULL)
102 * If @task != current needs to be called in RCU safe critical section
104 static inline bool __aa_task_is_confined(struct task_struct
*task
)
106 return !unconfined(__aa_task_raw_label(task
));
110 * aa_current_raw_label - find the current tasks confining label
112 * Returns: up to date confining label or the ns unconfined label (NOT NULL)
114 * This fn will not update the tasks cred to the most up to date version
115 * of the label so it is safe to call when inside of locks.
117 static inline struct aa_label
*aa_current_raw_label(void)
119 return aa_cred_raw_label(current_cred());
123 * aa_get_current_label - get the newest version of the current tasks label
125 * Returns: newest version of confining label (NOT NULL)
127 * This fn will not update the tasks cred, so it is safe inside of locks
129 * The returned reference must be put with aa_put_label()
131 static inline struct aa_label
*aa_get_current_label(void)
133 struct aa_label
*l
= aa_current_raw_label();
135 if (label_is_stale(l
))
136 return aa_get_newest_label(l
);
137 return aa_get_label(l
);
140 #define __end_current_label_crit_section(X) end_current_label_crit_section(X)
143 * end_label_crit_section - put a reference found with begin_current_label..
144 * @label: label reference to put
146 * Should only be used with a reference obtained with
147 * begin_current_label_crit_section and never used in situations where the
148 * task cred may be updated
150 static inline void end_current_label_crit_section(struct aa_label
*label
)
152 if (label
!= aa_current_raw_label())
157 * __begin_current_label_crit_section - current's confining label
159 * Returns: up to date confining label or the ns unconfined label (NOT NULL)
161 * safe to call inside locks
163 * The returned reference must be put with __end_current_label_crit_section()
164 * This must NOT be used if the task cred could be updated within the
165 * critical section between __begin_current_label_crit_section() ..
166 * __end_current_label_crit_section()
168 static inline struct aa_label
*__begin_current_label_crit_section(void)
170 struct aa_label
*label
= aa_current_raw_label();
172 if (label_is_stale(label
))
173 label
= aa_get_newest_label(label
);
179 * begin_current_label_crit_section - current's confining label and update it
181 * Returns: up to date confining label or the ns unconfined label (NOT NULL)
183 * Not safe to call inside locks
185 * The returned reference must be put with end_current_label_crit_section()
186 * This must NOT be used if the task cred could be updated within the
187 * critical section between begin_current_label_crit_section() ..
188 * end_current_label_crit_section()
190 static inline struct aa_label
*begin_current_label_crit_section(void)
192 struct aa_label
*label
= aa_current_raw_label();
194 if (label_is_stale(label
)) {
195 label
= aa_get_newest_label(label
);
196 if (aa_replace_current_label(label
) == 0)
197 /* task cred will keep the reference */
204 static inline struct aa_ns
*aa_get_current_ns(void)
206 struct aa_label
*label
;
209 label
= __begin_current_label_crit_section();
210 ns
= aa_get_ns(labels_ns(label
));
211 __end_current_label_crit_section(label
);
217 * aa_clear_task_ctx_trans - clear transition tracking info from the ctx
218 * @ctx: task context to clear (NOT NULL)
220 static inline void aa_clear_task_ctx_trans(struct aa_task_ctx
*ctx
)
222 aa_put_label(ctx
->previous
);
223 aa_put_label(ctx
->onexec
);
224 ctx
->previous
= NULL
;
229 #endif /* __AA_CONTEXT_H */