summaryrefslogtreecommitdiffstats
path: root/security
diff options
context:
space:
mode:
authorJann Horn <jannh@google.com>2018-09-13 12:12:09 -0400
committerJohn Johansen <john.johansen@canonical.com>2018-09-13 12:44:56 -0400
commit1f8266ff58840d698a1e96d2274189de1bdf7969 (patch)
tree22ec503efa895edcbc8a0bdd465d4206cad19311 /security
parent5f997580e8b12b9f585e34cc16304925d26ce49e (diff)
apparmor: don't try to replace stale label in ptrace access check
As a comment above begin_current_label_crit_section() explains, begin_current_label_crit_section() must run in sleepable context because when label_is_stale() is true, aa_replace_current_label() runs, which uses prepare_creds(), which can sleep. Until now, the ptrace access check (which runs with a task lock held) violated this rule. Also add a might_sleep() assertion to begin_current_label_crit_section(), because asserts are less likely to be ignored than comments. Fixes: b2d09ae449ced ("apparmor: move ptrace checks to using labels") Signed-off-by: Jann Horn <jannh@google.com> Signed-off-by: John Johansen <john.johansen@canonical.com>
Diffstat (limited to 'security')
-rw-r--r--security/apparmor/include/cred.h2
-rw-r--r--security/apparmor/lsm.c4
2 files changed, 4 insertions, 2 deletions
diff --git a/security/apparmor/include/cred.h b/security/apparmor/include/cred.h
index e287b7d0d4be..265ae6641a06 100644
--- a/security/apparmor/include/cred.h
+++ b/security/apparmor/include/cred.h
@@ -151,6 +151,8 @@ static inline struct aa_label *begin_current_label_crit_section(void)
151{ 151{
152 struct aa_label *label = aa_current_raw_label(); 152 struct aa_label *label = aa_current_raw_label();
153 153
154 might_sleep();
155
154 if (label_is_stale(label)) { 156 if (label_is_stale(label)) {
155 label = aa_get_newest_label(label); 157 label = aa_get_newest_label(label);
156 if (aa_replace_current_label(label) == 0) 158 if (aa_replace_current_label(label) == 0)
diff --git a/security/apparmor/lsm.c b/security/apparmor/lsm.c
index 74f17376202b..f09fea0b4db7 100644
--- a/security/apparmor/lsm.c
+++ b/security/apparmor/lsm.c
@@ -114,13 +114,13 @@ static int apparmor_ptrace_access_check(struct task_struct *child,
114 struct aa_label *tracer, *tracee; 114 struct aa_label *tracer, *tracee;
115 int error; 115 int error;
116 116
117 tracer = begin_current_label_crit_section(); 117 tracer = __begin_current_label_crit_section();
118 tracee = aa_get_task_label(child); 118 tracee = aa_get_task_label(child);
119 error = aa_may_ptrace(tracer, tracee, 119 error = aa_may_ptrace(tracer, tracee,
120 (mode & PTRACE_MODE_READ) ? AA_PTRACE_READ 120 (mode & PTRACE_MODE_READ) ? AA_PTRACE_READ
121 : AA_PTRACE_TRACE); 121 : AA_PTRACE_TRACE);
122 aa_put_label(tracee); 122 aa_put_label(tracee);
123 end_current_label_crit_section(tracer); 123 __end_current_label_crit_section(tracer);
124 124
125 return error; 125 return error;
126} 126}