1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * AppArmor security module
5 * This file contains AppArmor policy definitions.
7 * Copyright (C) 1998-2008 Novell/SUSE
8 * Copyright 2009-2010 Canonical Ltd.
14 #include <linux/capability.h>
15 #include <linux/cred.h>
16 #include <linux/kref.h>
17 #include <linux/rhashtable.h>
18 #include <linux/sched.h>
19 #include <linux/slab.h>
20 #include <linux/socket.h>
24 #include "capability.h"
36 extern int unprivileged_userns_apparmor_policy
;
37 extern int aa_unprivileged_unconfined_restricted
;
39 extern const char *const aa_profile_mode_names
[];
40 #define APPARMOR_MODE_NAMES_MAX_INDEX 4
42 #define PROFILE_MODE(_profile, _mode) \
43 ((aa_g_profile_mode == (_mode)) || \
44 ((_profile)->mode == (_mode)))
46 #define COMPLAIN_MODE(_profile) PROFILE_MODE((_profile), APPARMOR_COMPLAIN)
48 #define USER_MODE(_profile) PROFILE_MODE((_profile), APPARMOR_USER)
50 #define KILL_MODE(_profile) PROFILE_MODE((_profile), APPARMOR_KILL)
52 #define PROFILE_IS_HAT(_profile) ((_profile)->label.flags & FLAG_HAT)
54 #define CHECK_DEBUG1(_profile) ((_profile)->label.flags & FLAG_DEBUG1)
56 #define CHECK_DEBUG2(_profile) ((_profile)->label.flags & FLAG_DEBUG2)
58 #define profile_is_stale(_profile) (label_is_stale(&(_profile)->label))
60 #define on_list_rcu(X) (!list_empty(X) && (X)->prev != LIST_POISON2)
63 * FIXME: currently need a clean way to replace and remove profiles as a
64 * set. It should be done at the namespace level.
65 * Either, with a set of profiles loaded at the namespace level or via
66 * a mark and remove marked interface.
69 APPARMOR_ENFORCE
, /* enforce access rules */
70 APPARMOR_COMPLAIN
, /* allow and log access violations */
71 APPARMOR_KILL
, /* kill task on access violation */
72 APPARMOR_UNCONFINED
, /* profile set to unconfined */
73 APPARMOR_USER
, /* modified complain mode to userspace */
77 /* struct aa_policydb - match engine for a policy
78 * count: refcount for the pdb
79 * dfa: dfa pattern match
80 * perms: table of permissions
81 * strs: table of strings, index by x
82 * start: set of start states for the different classes of data
88 struct aa_perms
*perms
;
91 struct aa_str_table trans
;
92 aa_state_t start
[AA_CLASS_LAST
+ 1];
95 extern struct aa_policydb
*nullpdb
;
97 struct aa_policydb
*aa_alloc_pdb(gfp_t gfp
);
98 void aa_pdb_free_kref(struct kref
*kref
);
101 * aa_get_pdb - increment refcount on @pdb
102 * @pdb: policydb (MAYBE NULL)
104 * Returns: pointer to @pdb if @pdb is NULL will return NULL
105 * Requires: @pdb must be held with valid refcount when called
107 static inline struct aa_policydb
*aa_get_pdb(struct aa_policydb
*pdb
)
110 kref_get(&(pdb
->count
));
116 * aa_put_pdb - put a pdb refcount
117 * @pdb: pdb to put refcount (MAYBE NULL)
119 * Requires: if @pdb != NULL that a valid refcount be held
121 static inline void aa_put_pdb(struct aa_policydb
*pdb
)
124 kref_put(&pdb
->count
, aa_pdb_free_kref
);
127 static inline struct aa_perms
*aa_lookup_perms(struct aa_policydb
*policy
,
130 unsigned int index
= ACCEPT_TABLE(policy
->dfa
)[state
];
132 if (!(policy
->perms
))
133 return &default_perms
;
135 return &(policy
->perms
[index
]);
139 /* struct aa_data - generic data structure
140 * key: name for retrieving this data
141 * size: size of data in bytes
143 * head: reserved for rhashtable
149 struct rhash_head head
;
152 /* struct aa_ruleset - data covering mediation rules
153 * @list: list the rule is on
154 * @size: the memory consumed by this ruleset
155 * @policy: general match rules governing policy
156 * @file: The set of rules governing basic file access and domain transitions
157 * @caps: capabilities for the profile
158 * @rlimits: rlimits for the profile
159 * @secmark_count: number of secmark entries
160 * @secmark: secmark label match info
163 struct list_head list
;
167 /* TODO: merge policy and file */
168 struct aa_policydb
*policy
;
169 struct aa_policydb
*file
;
172 struct aa_rlimit rlimits
;
175 struct aa_secmark
*secmark
;
178 /* struct aa_attachment - data and rules for a profiles attachment
180 * @xmatch_str: human readable attachment string
181 * @xmatch: optional extended matching for unconfined executables names
182 * @xmatch_len: xmatch prefix len, used to determine xmatch priority
183 * @xattr_count: number of xattrs in table
184 * @xattrs: table of xattrs
186 struct aa_attachment
{
187 const char *xmatch_str
;
188 struct aa_policydb
*xmatch
;
189 unsigned int xmatch_len
;
194 /* struct aa_profile - basic confinement data
195 * @base - base components of the profile (name, refcount, lists, lock ...)
196 * @label - label this profile is an extension of
197 * @parent: parent of profile
198 * @ns: namespace the profile is in
199 * @rename: optional profile name that this profile renamed
201 * @audit: the auditing mode of the profile
202 * @mode: the enforcement mode of the profile
203 * @path_flags: flags controlling path generation behavior
204 * @disconnected: what to prepend if attach_disconnected is specified
205 * @attach: attachment rules for the profile
206 * @rules: rules to be enforced
208 * @dents: dentries for the profiles file entries in apparmorfs
209 * @dirname: name of the profile dir in apparmorfs
210 * @data: hashtable for free-form policy aa_data
212 * The AppArmor profile contains the basic confinement data. Each profile
213 * has a name, and exists in a namespace. The @name and @exec_match are
214 * used to determine profile attachment against unconfined tasks. All other
215 * attachments are determined by profile X transition rules.
217 * Profiles have a hierarchy where hats and children profiles keep
218 * a reference to their parent.
220 * Profile names can not begin with a : and can not contain the \0
221 * character. If a profile name begins with / it will be considered when
222 * determining profile attachment on "unconfined" tasks.
225 struct aa_policy base
;
226 struct aa_profile __rcu
*parent
;
231 enum audit_mode audit
;
234 const char *disconnected
;
236 struct aa_attachment attach
;
237 struct list_head rules
;
239 struct aa_loaddata
*rawdata
;
242 struct dentry
*dents
[AAFS_PROF_SIZEOF
];
243 struct rhashtable
*data
;
244 struct aa_label label
;
247 extern enum profile_mode aa_g_profile_mode
;
249 #define AA_MAY_LOAD_POLICY AA_MAY_APPEND
250 #define AA_MAY_REPLACE_POLICY AA_MAY_WRITE
251 #define AA_MAY_REMOVE_POLICY AA_MAY_DELETE
253 #define profiles_ns(P) ((P)->ns)
254 #define name_is_shared(A, B) ((A)->hname && (A)->hname == (B)->hname)
256 struct aa_ruleset
*aa_alloc_ruleset(gfp_t gfp
);
257 struct aa_profile
*aa_alloc_profile(const char *name
, struct aa_proxy
*proxy
,
259 struct aa_profile
*aa_alloc_null(struct aa_profile
*parent
, const char *name
,
261 struct aa_profile
*aa_new_learning_profile(struct aa_profile
*parent
, bool hat
,
262 const char *base
, gfp_t gfp
);
263 void aa_free_profile(struct aa_profile
*profile
);
264 struct aa_profile
*aa_find_child(struct aa_profile
*parent
, const char *name
);
265 struct aa_profile
*aa_lookupn_profile(struct aa_ns
*ns
, const char *hname
,
267 struct aa_profile
*aa_fqlookupn_profile(struct aa_label
*base
,
268 const char *fqname
, size_t n
);
270 ssize_t
aa_replace_profiles(struct aa_ns
*view
, struct aa_label
*label
,
271 u32 mask
, struct aa_loaddata
*udata
);
272 ssize_t
aa_remove_profiles(struct aa_ns
*view
, struct aa_label
*label
,
273 char *name
, size_t size
);
274 void __aa_profile_list_release(struct list_head
*head
);
276 #define profile_unconfined(X) ((X)->mode == APPARMOR_UNCONFINED)
279 * aa_get_newest_profile - simple wrapper fn to wrap the label version
280 * @p: profile (NOT NULL)
282 * Returns refcount to newest version of the profile (maybe @p)
284 * Requires: @p must be held with a valid refcount
286 static inline struct aa_profile
*aa_get_newest_profile(struct aa_profile
*p
)
288 return labels_profile(aa_get_newest_label(&p
->label
));
291 static inline aa_state_t
RULE_MEDIATES(struct aa_ruleset
*rules
,
294 if (class <= AA_CLASS_LAST
)
295 return rules
->policy
->start
[class];
297 return aa_dfa_match_len(rules
->policy
->dfa
,
298 rules
->policy
->start
[0], &class, 1);
301 static inline aa_state_t
RULE_MEDIATES_AF(struct aa_ruleset
*rules
, u16 AF
)
303 aa_state_t state
= RULE_MEDIATES(rules
, AA_CLASS_NET
);
304 __be16 be_af
= cpu_to_be16(AF
);
308 return aa_dfa_match_len(rules
->policy
->dfa
, state
, (char *) &be_af
, 2);
311 static inline aa_state_t
ANY_RULE_MEDIATES(struct list_head
*head
,
314 struct aa_ruleset
*rule
;
316 /* TODO: change to list walk */
317 rule
= list_first_entry(head
, typeof(*rule
), list
);
318 return RULE_MEDIATES(rule
, class);
322 * aa_get_profile - increment refcount on profile @p
323 * @p: profile (MAYBE NULL)
325 * Returns: pointer to @p if @p is NULL will return NULL
326 * Requires: @p must be held with valid refcount when called
328 static inline struct aa_profile
*aa_get_profile(struct aa_profile
*p
)
331 kref_get(&(p
->label
.count
));
337 * aa_get_profile_not0 - increment refcount on profile @p found via lookup
338 * @p: profile (MAYBE NULL)
340 * Returns: pointer to @p if @p is NULL will return NULL
341 * Requires: @p must be held with valid refcount when called
343 static inline struct aa_profile
*aa_get_profile_not0(struct aa_profile
*p
)
345 if (p
&& kref_get_unless_zero(&p
->label
.count
))
352 * aa_get_profile_rcu - increment a refcount profile that can be replaced
353 * @p: pointer to profile that can be replaced (NOT NULL)
355 * Returns: pointer to a refcounted profile.
356 * else NULL if no profile
358 static inline struct aa_profile
*aa_get_profile_rcu(struct aa_profile __rcu
**p
)
360 struct aa_profile
*c
;
364 c
= rcu_dereference(*p
);
365 } while (c
&& !kref_get_unless_zero(&c
->label
.count
));
372 * aa_put_profile - decrement refcount on profile @p
373 * @p: profile (MAYBE NULL)
375 static inline void aa_put_profile(struct aa_profile
*p
)
378 kref_put(&p
->label
.count
, aa_label_kref
);
381 static inline int AUDIT_MODE(struct aa_profile
*profile
)
383 if (aa_g_audit
!= AUDIT_NORMAL
)
386 return profile
->audit
;
389 bool aa_policy_view_capable(const struct cred
*subj_cred
,
390 struct aa_label
*label
, struct aa_ns
*ns
);
391 bool aa_policy_admin_capable(const struct cred
*subj_cred
,
392 struct aa_label
*label
, struct aa_ns
*ns
);
393 int aa_may_manage_policy(const struct cred
*subj_cred
,
394 struct aa_label
*label
, struct aa_ns
*ns
,
396 bool aa_current_policy_view_capable(struct aa_ns
*ns
);
397 bool aa_current_policy_admin_capable(struct aa_ns
*ns
);
399 #endif /* __AA_POLICY_H */