summaryrefslogtreecommitdiffstats
path: root/security/apparmor/include/ipc.h
diff options
context:
space:
mode:
authorJohn Johansen2017-06-09 23:22:14 +0200
committerJohn Johansen2017-06-11 02:11:41 +0200
commitb2d09ae449cedc6f276ac485c013d22a97d36992 (patch)
tree3984bf515f092325a3baad20d50a3814daff9f5a /security/apparmor/include/ipc.h
parentapparmor: add cross check permission helper macros (diff)
downloadkernel-qcow2-linux-b2d09ae449cedc6f276ac485c013d22a97d36992.tar.gz
kernel-qcow2-linux-b2d09ae449cedc6f276ac485c013d22a97d36992.tar.xz
kernel-qcow2-linux-b2d09ae449cedc6f276ac485c013d22a97d36992.zip
apparmor: move ptrace checks to using labels
Signed-off-by: John Johansen <john.johansen@canonical.com>
Diffstat (limited to 'security/apparmor/include/ipc.h')
-rw-r--r--security/apparmor/include/ipc.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/security/apparmor/include/ipc.h b/security/apparmor/include/ipc.h
index 288ca76e2fb1..fb3e751e6eed 100644
--- a/security/apparmor/include/ipc.h
+++ b/security/apparmor/include/ipc.h
@@ -4,7 +4,7 @@
* This file contains AppArmor ipc mediation function definitions.
*
* Copyright (C) 1998-2008 Novell/SUSE
- * Copyright 2009-2010 Canonical Ltd.
+ * Copyright 2009-2017 Canonical Ltd.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
@@ -19,10 +19,10 @@
struct aa_profile;
-int aa_may_ptrace(struct aa_profile *tracer, struct aa_profile *tracee,
- unsigned int mode);
+#define AA_PTRACE_TRACE MAY_WRITE
+#define AA_PTRACE_READ MAY_READ
-int aa_ptrace(struct task_struct *tracer, struct task_struct *tracee,
- unsigned int mode);
+int aa_may_ptrace(struct aa_label *tracer, struct aa_label *tracee,
+ u32 request);
#endif /* __AA_IPC_H */