aboutsummaryrefslogtreecommitdiffstats
path: root/security/apparmor/include
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2018-06-14 03:11:28 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2018-06-14 03:11:28 -0400
commit463f202172c31b9c36278001cabfbad4e12da42e (patch)
tree2e19e74001db3f5bc5012b90781435add1de4311 /security/apparmor/include
parent050e9baa9dc9fbd9ce2b27f0056990fc9e0a08a0 (diff)
parent338d0be437ef10e247a35aed83dbab182cf406a2 (diff)
Merge tag 'apparmor-pr-2018-06-13' of git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
Pull AppArmor updates from John Johansen: "Features - add support for mapping secids and using secctxes - add the ability to get a task's secid - add support for audit rule filtering Cleanups: - multiple typo fixes - Convert to use match_string() helper - update git and wiki locations in AppArmor docs - improve get_buffers macro by using get_cpu_ptr - Use an IDR to allocate apparmor secids Bug fixes: - fix '*seclen' is never less than zero - fix mediation of prlimit - fix memory leak when deduping profile load - fix ptrace read check - fix memory leak of rule on error exit path" * tag 'apparmor-pr-2018-06-13' of git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor: (21 commits) apparmor: fix ptrace read check apparmor: fix memory leak when deduping profile load apparmor: fix mediation of prlimit apparmor: fixup secid map conversion to using IDR apparmor: Use an IDR to allocate apparmor secids apparmor: Fix memory leak of rule on error exit path apparmor: modify audit rule support to support profile stacks apparmor: Add support for audit rule filtering apparmor: update git and wiki locations in AppArmor docs apparmor: Convert to use match_string() helper apparmor: improve get_buffers macro by using get_cpu_ptr apparmor: fix '*seclen' is never less than zero apparmor: fix typo "preconfinement" apparmor: fix typo "independent" apparmor: fix typo "traverse" apparmor: fix typo "type" apparmor: fix typo "replace" apparmor: fix typo "comparison" apparmor: fix typo "loosen" apparmor: add the ability to get a task's secid ...
Diffstat (limited to 'security/apparmor/include')
-rw-r--r--security/apparmor/include/audit.h6
-rw-r--r--security/apparmor/include/label.h2
-rw-r--r--security/apparmor/include/path.h33
-rw-r--r--security/apparmor/include/secid.h17
4 files changed, 37 insertions, 21 deletions
diff --git a/security/apparmor/include/audit.h b/security/apparmor/include/audit.h
index 9c9be9c98c15..b8c8b1066b0a 100644
--- a/security/apparmor/include/audit.h
+++ b/security/apparmor/include/audit.h
@@ -189,4 +189,10 @@ static inline int complain_error(int error)
189 return error; 189 return error;
190} 190}
191 191
192void aa_audit_rule_free(void *vrule);
193int aa_audit_rule_init(u32 field, u32 op, char *rulestr, void **vrule);
194int aa_audit_rule_known(struct audit_krule *rule);
195int aa_audit_rule_match(u32 sid, u32 field, u32 op, void *vrule,
196 struct audit_context *actx);
197
192#endif /* __AA_AUDIT_H */ 198#endif /* __AA_AUDIT_H */
diff --git a/security/apparmor/include/label.h b/security/apparmor/include/label.h
index d871e7ff0952..7ce5fe73ae7f 100644
--- a/security/apparmor/include/label.h
+++ b/security/apparmor/include/label.h
@@ -281,7 +281,7 @@ void __aa_labelset_update_subtree(struct aa_ns *ns);
281 281
282void aa_label_free(struct aa_label *label); 282void aa_label_free(struct aa_label *label);
283void aa_label_kref(struct kref *kref); 283void aa_label_kref(struct kref *kref);
284bool aa_label_init(struct aa_label *label, int size); 284bool aa_label_init(struct aa_label *label, int size, gfp_t gfp);
285struct aa_label *aa_label_alloc(int size, struct aa_proxy *proxy, gfp_t gfp); 285struct aa_label *aa_label_alloc(int size, struct aa_proxy *proxy, gfp_t gfp);
286 286
287bool aa_label_is_subset(struct aa_label *set, struct aa_label *sub); 287bool aa_label_is_subset(struct aa_label *set, struct aa_label *sub);
diff --git a/security/apparmor/include/path.h b/security/apparmor/include/path.h
index e042b994f2b8..b6380c5f0097 100644
--- a/security/apparmor/include/path.h
+++ b/security/apparmor/include/path.h
@@ -43,10 +43,11 @@ struct aa_buffers {
43 43
44DECLARE_PER_CPU(struct aa_buffers, aa_buffers); 44DECLARE_PER_CPU(struct aa_buffers, aa_buffers);
45 45
46#define ASSIGN(FN, X, N) ((X) = FN(N)) 46#define ASSIGN(FN, A, X, N) ((X) = FN(A, N))
47#define EVAL1(FN, X) ASSIGN(FN, X, 0) /*X = FN(0)*/ 47#define EVAL1(FN, A, X) ASSIGN(FN, A, X, 0) /*X = FN(0)*/
48#define EVAL2(FN, X, Y...) do { ASSIGN(FN, X, 1); EVAL1(FN, Y); } while (0) 48#define EVAL2(FN, A, X, Y...) \
49#define EVAL(FN, X...) CONCATENATE(EVAL, COUNT_ARGS(X))(FN, X) 49 do { ASSIGN(FN, A, X, 1); EVAL1(FN, A, Y); } while (0)
50#define EVAL(FN, A, X...) CONCATENATE(EVAL, COUNT_ARGS(X))(FN, A, X)
50 51
51#define for_each_cpu_buffer(I) for ((I) = 0; (I) < MAX_PATH_BUFFERS; (I)++) 52#define for_each_cpu_buffer(I) for ((I) = 0; (I) < MAX_PATH_BUFFERS; (I)++)
52 53
@@ -56,26 +57,24 @@ DECLARE_PER_CPU(struct aa_buffers, aa_buffers);
56#define AA_BUG_PREEMPT_ENABLED(X) /* nop */ 57#define AA_BUG_PREEMPT_ENABLED(X) /* nop */
57#endif 58#endif
58 59
59#define __get_buffer(N) ({ \ 60#define __get_buffer(C, N) ({ \
60 struct aa_buffers *__cpu_var; \
61 AA_BUG_PREEMPT_ENABLED("__get_buffer without preempt disabled"); \ 61 AA_BUG_PREEMPT_ENABLED("__get_buffer without preempt disabled"); \
62 __cpu_var = this_cpu_ptr(&aa_buffers); \ 62 (C)->buf[(N)]; })
63 __cpu_var->buf[(N)]; })
64 63
65#define __get_buffers(X...) EVAL(__get_buffer, X) 64#define __get_buffers(C, X...) EVAL(__get_buffer, C, X)
66 65
67#define __put_buffers(X, Y...) ((void)&(X)) 66#define __put_buffers(X, Y...) ((void)&(X))
68 67
69#define get_buffers(X...) \ 68#define get_buffers(X...) \
70do { \ 69do { \
71 preempt_disable(); \ 70 struct aa_buffers *__cpu_var = get_cpu_ptr(&aa_buffers); \
72 __get_buffers(X); \ 71 __get_buffers(__cpu_var, X); \
73} while (0) 72} while (0)
74 73
75#define put_buffers(X, Y...) \ 74#define put_buffers(X, Y...) \
76do { \ 75do { \
77 __put_buffers(X, Y); \ 76 __put_buffers(X, Y); \
78 preempt_enable(); \ 77 put_cpu_ptr(&aa_buffers); \
79} while (0) 78} while (0)
80 79
81#endif /* __AA_PATH_H */ 80#endif /* __AA_PATH_H */
diff --git a/security/apparmor/include/secid.h b/security/apparmor/include/secid.h
index 95ed86a0f1e2..dee6fa3b6081 100644
--- a/security/apparmor/include/secid.h
+++ b/security/apparmor/include/secid.h
@@ -3,7 +3,7 @@
3 * 3 *
4 * This file contains AppArmor security identifier (secid) definitions 4 * This file contains AppArmor security identifier (secid) definitions
5 * 5 *
6 * Copyright 2009-2010 Canonical Ltd. 6 * Copyright 2009-2018 Canonical Ltd.
7 * 7 *
8 * This program is free software; you can redistribute it and/or 8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as 9 * modify it under the terms of the GNU General Public License as
@@ -14,13 +14,24 @@
14#ifndef __AA_SECID_H 14#ifndef __AA_SECID_H
15#define __AA_SECID_H 15#define __AA_SECID_H
16 16
17#include <linux/slab.h>
17#include <linux/types.h> 18#include <linux/types.h>
18 19
20struct aa_label;
21
19/* secid value that will not be allocated */ 22/* secid value that will not be allocated */
20#define AA_SECID_INVALID 0 23#define AA_SECID_INVALID 0
21#define AA_SECID_ALLOC AA_SECID_INVALID
22 24
23u32 aa_alloc_secid(void); 25struct aa_label *aa_secid_to_label(u32 secid);
26int apparmor_secid_to_secctx(u32 secid, char **secdata, u32 *seclen);
27int apparmor_secctx_to_secid(const char *secdata, u32 seclen, u32 *secid);
28void apparmor_release_secctx(char *secdata, u32 seclen);
29
30
31int aa_alloc_secid(struct aa_label *label, gfp_t gfp);
24void aa_free_secid(u32 secid); 32void aa_free_secid(u32 secid);
33void aa_secid_update(u32 secid, struct aa_label *label);
34
35void aa_secids_init(void);
25 36
26#endif /* __AA_SECID_H */ 37#endif /* __AA_SECID_H */