Loading...
1/* SPDX-License-Identifier: GPL-2.0-only */
2/*
3 * AppArmor security module
4 *
5 * This file contains AppArmor lib definitions
6 *
7 * 2017 Canonical Ltd.
8 */
9
10#ifndef __AA_LIB_H
11#define __AA_LIB_H
12
13#include <linux/slab.h>
14#include <linux/fs.h>
15#include <linux/lsm_hooks.h>
16
17#include "match.h"
18
19/*
20 * DEBUG remains global (no per profile flag) since it is mostly used in sysctl
21 * which is not related to profile accesses.
22 */
23
24#define DEBUG_ON (aa_g_debug)
25#define dbg_printk(__fmt, __args...) pr_debug(__fmt, ##__args)
26#define AA_DEBUG(fmt, args...) \
27 do { \
28 if (DEBUG_ON) \
29 pr_debug_ratelimited("AppArmor: " fmt, ##args); \
30 } while (0)
31
32#define AA_WARN(X) WARN((X), "APPARMOR WARN %s: %s\n", __func__, #X)
33
34#define AA_BUG(X, args...) AA_BUG_FMT((X), "" args)
35#ifdef CONFIG_SECURITY_APPARMOR_DEBUG_ASSERTS
36#define AA_BUG_FMT(X, fmt, args...) \
37 WARN((X), "AppArmor WARN %s: (" #X "): " fmt, __func__, ##args)
38#else
39#define AA_BUG_FMT(X, fmt, args...)
40#endif
41
42#define AA_ERROR(fmt, args...) \
43 pr_err_ratelimited("AppArmor: " fmt, ##args)
44
45/* Flag indicating whether initialization completed */
46extern int apparmor_initialized;
47
48/* fn's in lib */
49const char *skipn_spaces(const char *str, size_t n);
50char *aa_split_fqname(char *args, char **ns_name);
51const char *aa_splitn_fqname(const char *fqname, size_t n, const char **ns_name,
52 size_t *ns_len);
53void aa_info_message(const char *str);
54
55/* Security blob offsets */
56extern struct lsm_blob_sizes apparmor_blob_sizes;
57
58/**
59 * aa_strneq - compare null terminated @str to a non null terminated substring
60 * @str: a null terminated string
61 * @sub: a substring, not necessarily null terminated
62 * @len: length of @sub to compare
63 *
64 * The @str string must be full consumed for this to be considered a match
65 */
66static inline bool aa_strneq(const char *str, const char *sub, int len)
67{
68 return !strncmp(str, sub, len) && !str[len];
69}
70
71/**
72 * aa_dfa_null_transition - step to next state after null character
73 * @dfa: the dfa to match against
74 * @start: the state of the dfa to start matching in
75 *
76 * aa_dfa_null_transition transitions to the next state after a null
77 * character which is not used in standard matching and is only
78 * used to separate pairs.
79 */
80static inline unsigned int aa_dfa_null_transition(struct aa_dfa *dfa,
81 unsigned int start)
82{
83 /* the null transition only needs the string's null terminator byte */
84 return aa_dfa_next(dfa, start, 0);
85}
86
87static inline bool path_mediated_fs(struct dentry *dentry)
88{
89 return !(dentry->d_sb->s_flags & SB_NOUSER);
90}
91
92
93struct counted_str {
94 struct kref count;
95 char name[];
96};
97
98#define str_to_counted(str) \
99 ((struct counted_str *)(str - offsetof(struct counted_str, name)))
100
101#define __counted /* atm just a notation */
102
103void aa_str_kref(struct kref *kref);
104char *aa_str_alloc(int size, gfp_t gfp);
105
106
107static inline __counted char *aa_get_str(__counted char *str)
108{
109 if (str)
110 kref_get(&(str_to_counted(str)->count));
111
112 return str;
113}
114
115static inline void aa_put_str(__counted char *str)
116{
117 if (str)
118 kref_put(&str_to_counted(str)->count, aa_str_kref);
119}
120
121
122/* struct aa_policy - common part of both namespaces and profiles
123 * @name: name of the object
124 * @hname - The hierarchical name
125 * @list: list policy object is on
126 * @profiles: head of the profiles list contained in the object
127 */
128struct aa_policy {
129 const char *name;
130 __counted char *hname;
131 struct list_head list;
132 struct list_head profiles;
133};
134
135/**
136 * basename - find the last component of an hname
137 * @name: hname to find the base profile name component of (NOT NULL)
138 *
139 * Returns: the tail (base profile name) name component of an hname
140 */
141static inline const char *basename(const char *hname)
142{
143 char *split;
144
145 hname = strim((char *)hname);
146 for (split = strstr(hname, "//"); split; split = strstr(hname, "//"))
147 hname = split + 2;
148
149 return hname;
150}
151
152/**
153 * __policy_find - find a policy by @name on a policy list
154 * @head: list to search (NOT NULL)
155 * @name: name to search for (NOT NULL)
156 *
157 * Requires: rcu_read_lock be held
158 *
159 * Returns: unrefcounted policy that match @name or NULL if not found
160 */
161static inline struct aa_policy *__policy_find(struct list_head *head,
162 const char *name)
163{
164 struct aa_policy *policy;
165
166 list_for_each_entry_rcu(policy, head, list) {
167 if (!strcmp(policy->name, name))
168 return policy;
169 }
170 return NULL;
171}
172
173/**
174 * __policy_strn_find - find a policy that's name matches @len chars of @str
175 * @head: list to search (NOT NULL)
176 * @str: string to search for (NOT NULL)
177 * @len: length of match required
178 *
179 * Requires: rcu_read_lock be held
180 *
181 * Returns: unrefcounted policy that match @str or NULL if not found
182 *
183 * if @len == strlen(@strlen) then this is equiv to __policy_find
184 * other wise it allows searching for policy by a partial match of name
185 */
186static inline struct aa_policy *__policy_strn_find(struct list_head *head,
187 const char *str, int len)
188{
189 struct aa_policy *policy;
190
191 list_for_each_entry_rcu(policy, head, list) {
192 if (aa_strneq(policy->name, str, len))
193 return policy;
194 }
195
196 return NULL;
197}
198
199bool aa_policy_init(struct aa_policy *policy, const char *prefix,
200 const char *name, gfp_t gfp);
201void aa_policy_destroy(struct aa_policy *policy);
202
203
204/*
205 * fn_label_build - abstract out the build of a label transition
206 * @L: label the transition is being computed for
207 * @P: profile parameter derived from L by this macro, can be passed to FN
208 * @GFP: memory allocation type to use
209 * @FN: fn to call for each profile transition. @P is set to the profile
210 *
211 * Returns: new label on success
212 * ERR_PTR if build @FN fails
213 * NULL if label_build fails due to low memory conditions
214 *
215 * @FN must return a label or ERR_PTR on failure. NULL is not allowed
216 */
217#define fn_label_build(L, P, GFP, FN) \
218({ \
219 __label__ __cleanup, __done; \
220 struct aa_label *__new_; \
221 \
222 if ((L)->size > 1) { \
223 /* TODO: add cache of transitions already done */ \
224 struct label_it __i; \
225 int __j, __k, __count; \
226 DEFINE_VEC(label, __lvec); \
227 DEFINE_VEC(profile, __pvec); \
228 if (vec_setup(label, __lvec, (L)->size, (GFP))) { \
229 __new_ = NULL; \
230 goto __done; \
231 } \
232 __j = 0; \
233 label_for_each(__i, (L), (P)) { \
234 __new_ = (FN); \
235 AA_BUG(!__new_); \
236 if (IS_ERR(__new_)) \
237 goto __cleanup; \
238 __lvec[__j++] = __new_; \
239 } \
240 for (__j = __count = 0; __j < (L)->size; __j++) \
241 __count += __lvec[__j]->size; \
242 if (!vec_setup(profile, __pvec, __count, (GFP))) { \
243 for (__j = __k = 0; __j < (L)->size; __j++) { \
244 label_for_each(__i, __lvec[__j], (P)) \
245 __pvec[__k++] = aa_get_profile(P); \
246 } \
247 __count -= aa_vec_unique(__pvec, __count, 0); \
248 if (__count > 1) { \
249 __new_ = aa_vec_find_or_create_label(__pvec,\
250 __count, (GFP)); \
251 /* only fails if out of Mem */ \
252 if (!__new_) \
253 __new_ = NULL; \
254 } else \
255 __new_ = aa_get_label(&__pvec[0]->label); \
256 vec_cleanup(profile, __pvec, __count); \
257 } else \
258 __new_ = NULL; \
259__cleanup: \
260 vec_cleanup(label, __lvec, (L)->size); \
261 } else { \
262 (P) = labels_profile(L); \
263 __new_ = (FN); \
264 } \
265__done: \
266 if (!__new_) \
267 AA_DEBUG("label build failed\n"); \
268 (__new_); \
269})
270
271
272#define __fn_build_in_ns(NS, P, NS_FN, OTHER_FN) \
273({ \
274 struct aa_label *__new; \
275 if ((P)->ns != (NS)) \
276 __new = (OTHER_FN); \
277 else \
278 __new = (NS_FN); \
279 (__new); \
280})
281
282#define fn_label_build_in_ns(L, P, GFP, NS_FN, OTHER_FN) \
283({ \
284 fn_label_build((L), (P), (GFP), \
285 __fn_build_in_ns(labels_ns(L), (P), (NS_FN), (OTHER_FN))); \
286})
287
288#endif /* __AA_LIB_H */
1/* SPDX-License-Identifier: GPL-2.0-only */
2/*
3 * AppArmor security module
4 *
5 * This file contains AppArmor lib definitions
6 *
7 * 2017 Canonical Ltd.
8 */
9
10#ifndef __AA_LIB_H
11#define __AA_LIB_H
12
13#include <linux/slab.h>
14#include <linux/fs.h>
15#include <linux/lsm_hooks.h>
16
17#include "match.h"
18
19extern struct aa_dfa *stacksplitdfa;
20
21/*
22 * DEBUG remains global (no per profile flag) since it is mostly used in sysctl
23 * which is not related to profile accesses.
24 */
25
26#define DEBUG_ON (aa_g_debug)
27/*
28 * split individual debug cases out in preparation for finer grained
29 * debug controls in the future.
30 */
31#define AA_DEBUG_LABEL DEBUG_ON
32#define dbg_printk(__fmt, __args...) pr_debug(__fmt, ##__args)
33#define AA_DEBUG(fmt, args...) \
34 do { \
35 if (DEBUG_ON) \
36 pr_debug_ratelimited("AppArmor: " fmt, ##args); \
37 } while (0)
38
39#define AA_WARN(X) WARN((X), "APPARMOR WARN %s: %s\n", __func__, #X)
40
41#define AA_BUG(X, args...) \
42 do { \
43 _Pragma("GCC diagnostic ignored \"-Wformat-zero-length\""); \
44 AA_BUG_FMT((X), "" args); \
45 _Pragma("GCC diagnostic warning \"-Wformat-zero-length\""); \
46 } while (0)
47#ifdef CONFIG_SECURITY_APPARMOR_DEBUG_ASSERTS
48#define AA_BUG_FMT(X, fmt, args...) \
49 WARN((X), "AppArmor WARN %s: (" #X "): " fmt, __func__, ##args)
50#else
51#define AA_BUG_FMT(X, fmt, args...) no_printk(fmt, ##args)
52#endif
53
54#define AA_ERROR(fmt, args...) \
55 pr_err_ratelimited("AppArmor: " fmt, ##args)
56
57/* Flag indicating whether initialization completed */
58extern int apparmor_initialized;
59
60/* fn's in lib */
61const char *skipn_spaces(const char *str, size_t n);
62char *aa_split_fqname(char *args, char **ns_name);
63const char *aa_splitn_fqname(const char *fqname, size_t n, const char **ns_name,
64 size_t *ns_len);
65void aa_info_message(const char *str);
66
67/* Security blob offsets */
68extern struct lsm_blob_sizes apparmor_blob_sizes;
69
70/**
71 * aa_strneq - compare null terminated @str to a non null terminated substring
72 * @str: a null terminated string
73 * @sub: a substring, not necessarily null terminated
74 * @len: length of @sub to compare
75 *
76 * The @str string must be full consumed for this to be considered a match
77 */
78static inline bool aa_strneq(const char *str, const char *sub, int len)
79{
80 return !strncmp(str, sub, len) && !str[len];
81}
82
83/**
84 * aa_dfa_null_transition - step to next state after null character
85 * @dfa: the dfa to match against
86 * @start: the state of the dfa to start matching in
87 *
88 * aa_dfa_null_transition transitions to the next state after a null
89 * character which is not used in standard matching and is only
90 * used to separate pairs.
91 */
92static inline aa_state_t aa_dfa_null_transition(struct aa_dfa *dfa,
93 aa_state_t start)
94{
95 /* the null transition only needs the string's null terminator byte */
96 return aa_dfa_next(dfa, start, 0);
97}
98
99static inline bool path_mediated_fs(struct dentry *dentry)
100{
101 return !(dentry->d_sb->s_flags & SB_NOUSER);
102}
103
104struct aa_str_table {
105 int size;
106 char **table;
107};
108
109void aa_free_str_table(struct aa_str_table *table);
110
111struct counted_str {
112 struct kref count;
113 char name[];
114};
115
116#define str_to_counted(str) \
117 ((struct counted_str *)(str - offsetof(struct counted_str, name)))
118
119#define __counted /* atm just a notation */
120
121void aa_str_kref(struct kref *kref);
122char *aa_str_alloc(int size, gfp_t gfp);
123
124
125static inline __counted char *aa_get_str(__counted char *str)
126{
127 if (str)
128 kref_get(&(str_to_counted(str)->count));
129
130 return str;
131}
132
133static inline void aa_put_str(__counted char *str)
134{
135 if (str)
136 kref_put(&str_to_counted(str)->count, aa_str_kref);
137}
138
139
140/* struct aa_policy - common part of both namespaces and profiles
141 * @name: name of the object
142 * @hname - The hierarchical name
143 * @list: list policy object is on
144 * @profiles: head of the profiles list contained in the object
145 */
146struct aa_policy {
147 const char *name;
148 __counted char *hname;
149 struct list_head list;
150 struct list_head profiles;
151};
152
153/**
154 * basename - find the last component of an hname
155 * @name: hname to find the base profile name component of (NOT NULL)
156 *
157 * Returns: the tail (base profile name) name component of an hname
158 */
159static inline const char *basename(const char *hname)
160{
161 char *split;
162
163 hname = strim((char *)hname);
164 for (split = strstr(hname, "//"); split; split = strstr(hname, "//"))
165 hname = split + 2;
166
167 return hname;
168}
169
170/**
171 * __policy_find - find a policy by @name on a policy list
172 * @head: list to search (NOT NULL)
173 * @name: name to search for (NOT NULL)
174 *
175 * Requires: rcu_read_lock be held
176 *
177 * Returns: unrefcounted policy that match @name or NULL if not found
178 */
179static inline struct aa_policy *__policy_find(struct list_head *head,
180 const char *name)
181{
182 struct aa_policy *policy;
183
184 list_for_each_entry_rcu(policy, head, list) {
185 if (!strcmp(policy->name, name))
186 return policy;
187 }
188 return NULL;
189}
190
191/**
192 * __policy_strn_find - find a policy that's name matches @len chars of @str
193 * @head: list to search (NOT NULL)
194 * @str: string to search for (NOT NULL)
195 * @len: length of match required
196 *
197 * Requires: rcu_read_lock be held
198 *
199 * Returns: unrefcounted policy that match @str or NULL if not found
200 *
201 * if @len == strlen(@strlen) then this is equiv to __policy_find
202 * other wise it allows searching for policy by a partial match of name
203 */
204static inline struct aa_policy *__policy_strn_find(struct list_head *head,
205 const char *str, int len)
206{
207 struct aa_policy *policy;
208
209 list_for_each_entry_rcu(policy, head, list) {
210 if (aa_strneq(policy->name, str, len))
211 return policy;
212 }
213
214 return NULL;
215}
216
217bool aa_policy_init(struct aa_policy *policy, const char *prefix,
218 const char *name, gfp_t gfp);
219void aa_policy_destroy(struct aa_policy *policy);
220
221
222/*
223 * fn_label_build - abstract out the build of a label transition
224 * @L: label the transition is being computed for
225 * @P: profile parameter derived from L by this macro, can be passed to FN
226 * @GFP: memory allocation type to use
227 * @FN: fn to call for each profile transition. @P is set to the profile
228 *
229 * Returns: new label on success
230 * ERR_PTR if build @FN fails
231 * NULL if label_build fails due to low memory conditions
232 *
233 * @FN must return a label or ERR_PTR on failure. NULL is not allowed
234 */
235#define fn_label_build(L, P, GFP, FN) \
236({ \
237 __label__ __do_cleanup, __done; \
238 struct aa_label *__new_; \
239 \
240 if ((L)->size > 1) { \
241 /* TODO: add cache of transitions already done */ \
242 struct label_it __i; \
243 int __j, __k, __count; \
244 DEFINE_VEC(label, __lvec); \
245 DEFINE_VEC(profile, __pvec); \
246 if (vec_setup(label, __lvec, (L)->size, (GFP))) { \
247 __new_ = NULL; \
248 goto __done; \
249 } \
250 __j = 0; \
251 label_for_each(__i, (L), (P)) { \
252 __new_ = (FN); \
253 AA_BUG(!__new_); \
254 if (IS_ERR(__new_)) \
255 goto __do_cleanup; \
256 __lvec[__j++] = __new_; \
257 } \
258 for (__j = __count = 0; __j < (L)->size; __j++) \
259 __count += __lvec[__j]->size; \
260 if (!vec_setup(profile, __pvec, __count, (GFP))) { \
261 for (__j = __k = 0; __j < (L)->size; __j++) { \
262 label_for_each(__i, __lvec[__j], (P)) \
263 __pvec[__k++] = aa_get_profile(P); \
264 } \
265 __count -= aa_vec_unique(__pvec, __count, 0); \
266 if (__count > 1) { \
267 __new_ = aa_vec_find_or_create_label(__pvec,\
268 __count, (GFP)); \
269 /* only fails if out of Mem */ \
270 if (!__new_) \
271 __new_ = NULL; \
272 } else \
273 __new_ = aa_get_label(&__pvec[0]->label); \
274 vec_cleanup(profile, __pvec, __count); \
275 } else \
276 __new_ = NULL; \
277__do_cleanup: \
278 vec_cleanup(label, __lvec, (L)->size); \
279 } else { \
280 (P) = labels_profile(L); \
281 __new_ = (FN); \
282 } \
283__done: \
284 if (!__new_) \
285 AA_DEBUG("label build failed\n"); \
286 (__new_); \
287})
288
289
290#define __fn_build_in_ns(NS, P, NS_FN, OTHER_FN) \
291({ \
292 struct aa_label *__new; \
293 if ((P)->ns != (NS)) \
294 __new = (OTHER_FN); \
295 else \
296 __new = (NS_FN); \
297 (__new); \
298})
299
300#define fn_label_build_in_ns(L, P, GFP, NS_FN, OTHER_FN) \
301({ \
302 fn_label_build((L), (P), (GFP), \
303 __fn_build_in_ns(labels_ns(L), (P), (NS_FN), (OTHER_FN))); \
304})
305
306#endif /* __AA_LIB_H */