Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
context.h
Go to the documentation of this file.
1 /*
2  * AppArmor security module
3  *
4  * This file contains AppArmor contexts used to associate "labels" to objects.
5  *
6  * Copyright (C) 1998-2008 Novell/SUSE
7  * Copyright 2009-2010 Canonical Ltd.
8  *
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
12  * License.
13  */
14 
15 #ifndef __AA_CONTEXT_H
16 #define __AA_CONTEXT_H
17 
18 #include <linux/cred.h>
19 #include <linux/slab.h>
20 #include <linux/sched.h>
21 
22 #include "policy.h"
23 
24 /* struct aa_file_cxt - the AppArmor context the file was opened in
25  * @perms: the permission the file was opened with
26  *
27  * The file_cxt could currently be directly stored in file->f_security
28  * as the profile reference is now stored in the f_cred. However the
29  * cxt struct will expand in the future so we keep the struct.
30  */
31 struct aa_file_cxt {
33 };
34 
41 static inline struct aa_file_cxt *aa_alloc_file_context(gfp_t gfp)
42 {
43  return kzalloc(sizeof(struct aa_file_cxt), gfp);
44 }
45 
50 static inline void aa_free_file_context(struct aa_file_cxt *cxt)
51 {
52  if (cxt)
53  kzfree(cxt);
54 }
55 
68 struct aa_task_cxt {
70  struct aa_profile *onexec;
73 };
74 
76 void aa_free_task_context(struct aa_task_cxt *cxt);
77 void aa_dup_task_context(struct aa_task_cxt *new,
78  const struct aa_task_cxt *old);
83 
90 static inline bool __aa_task_is_confined(struct task_struct *task)
91 {
92  struct aa_task_cxt *cxt = __task_cred(task)->security;
93 
94  BUG_ON(!cxt || !cxt->profile);
95  if (unconfined(aa_newest_version(cxt->profile)))
96  return 0;
97 
98  return 1;
99 }
100 
109 static inline struct aa_profile *aa_cred_profile(const struct cred *cred)
110 {
111  struct aa_task_cxt *cxt = cred->security;
112  BUG_ON(!cxt || !cxt->profile);
113  return aa_newest_version(cxt->profile);
114 }
115 
124 static inline struct aa_profile *__aa_current_profile(void)
125 {
126  return aa_cred_profile(current_cred());
127 }
128 
137 static inline struct aa_profile *aa_current_profile(void)
138 {
139  const struct aa_task_cxt *cxt = current_cred()->security;
140  struct aa_profile *profile;
141  BUG_ON(!cxt || !cxt->profile);
142 
143  profile = aa_newest_version(cxt->profile);
144  /*
145  * Whether or not replacement succeeds, use newest profile so
146  * there is no need to update it after replacement.
147  */
148  if (unlikely((cxt->profile != profile)))
150 
151  return profile;
152 }
153 
154 #endif /* __AA_CONTEXT_H */