1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * AppArmor security module
5 * This file contains AppArmor file mediation function definitions.
7 * Copyright (C) 1998-2008 Novell/SUSE
8 * Copyright 2009-2010 Canonical Ltd.
14 #include <linux/spinlock.h>
24 #define mask_mode_t(X) (X & (MAY_EXEC | MAY_WRITE | MAY_READ | MAY_APPEND))
26 #define AA_AUDIT_FILE_MASK (MAY_READ | MAY_WRITE | MAY_EXEC | MAY_APPEND |\
27 AA_MAY_CREATE | AA_MAY_DELETE | \
28 AA_MAY_GETATTR | AA_MAY_SETATTR | \
29 AA_MAY_CHMOD | AA_MAY_CHOWN | AA_MAY_LOCK | \
30 AA_EXEC_MMAP | AA_MAY_LINK)
32 static inline struct aa_file_ctx *file_ctx(struct file *file)
34 return file->f_security + apparmor_blob_sizes.lbs_file;
37 /* struct aa_file_ctx - the AppArmor context the file was opened in
38 * @lock: lock to update the ctx
39 * @label: label currently cached on the ctx
40 * @perms: the permission the file was opened with
44 struct aa_label __rcu *label;
49 * aa_alloc_file_ctx - allocate file_ctx
50 * @label: initial label of task creating the file
51 * @gfp: gfp flags for allocation
53 * Returns: file_ctx or NULL on failure
55 static inline struct aa_file_ctx *aa_alloc_file_ctx(struct aa_label *label,
58 struct aa_file_ctx *ctx;
60 ctx = kzalloc(sizeof(struct aa_file_ctx), gfp);
62 spin_lock_init(&ctx->lock);
63 rcu_assign_pointer(ctx->label, aa_get_label(label));
69 * aa_free_file_ctx - free a file_ctx
70 * @ctx: file_ctx to free (MAYBE_NULL)
72 static inline void aa_free_file_ctx(struct aa_file_ctx *ctx)
75 aa_put_label(rcu_access_pointer(ctx->label));
80 static inline struct aa_label *aa_get_file_label(struct aa_file_ctx *ctx)
82 return aa_get_label_rcu(&ctx->label);
86 * The xindex is broken into 3 parts
87 * - index - an index into either the exec name table or the variable table
88 * - exec type - which determines how the executable name and index are used
89 * - flags - which modify how the destination name is applied
91 #define AA_X_INDEX_MASK 0x03ff
93 #define AA_X_TYPE_MASK 0x0c00
94 #define AA_X_TYPE_SHIFT 10
95 #define AA_X_NONE 0x0000
96 #define AA_X_NAME 0x0400 /* use executable name px */
97 #define AA_X_TABLE 0x0800 /* use a specified name ->n# */
99 #define AA_X_UNSAFE 0x1000
100 #define AA_X_CHILD 0x2000 /* make >AA_X_NONE apply to children */
101 #define AA_X_INHERIT 0x4000
102 #define AA_X_UNCONFINED 0x8000
104 /* need to make conditional which ones are being set */
110 #define COMBINED_PERM_MASK(X) ((X).allow | (X).audit | (X).quiet | (X).kill)
112 int aa_audit_file(struct aa_profile *profile, struct aa_perms *perms,
113 const char *op, u32 request, const char *name,
114 const char *target, struct aa_label *tlabel, kuid_t ouid,
115 const char *info, int error);
117 struct aa_perms *aa_lookup_fperms(struct aa_policydb *file_rules,
118 aa_state_t state, struct path_cond *cond);
119 aa_state_t aa_str_perms(struct aa_policydb *file_rules, aa_state_t start,
120 const char *name, struct path_cond *cond,
121 struct aa_perms *perms);
123 int __aa_path_perm(const char *op, struct aa_profile *profile,
124 const char *name, u32 request, struct path_cond *cond,
125 int flags, struct aa_perms *perms);
126 int aa_path_perm(const char *op, struct aa_label *label,
127 const struct path *path, int flags, u32 request,
128 struct path_cond *cond);
130 int aa_path_link(struct aa_label *label, struct dentry *old_dentry,
131 const struct path *new_dir, struct dentry *new_dentry);
133 int aa_file_perm(const char *op, struct aa_label *label, struct file *file,
134 u32 request, bool in_atomic);
136 void aa_inherit_files(const struct cred *cred, struct files_struct *files);
140 * aa_map_file_perms - map file flags to AppArmor permissions
141 * @file: open file to map flags to AppArmor permissions
143 * Returns: apparmor permission set for the file
145 static inline u32 aa_map_file_to_perms(struct file *file)
147 int flags = file->f_flags;
150 if (file->f_mode & FMODE_WRITE)
152 if (file->f_mode & FMODE_READ)
155 if ((flags & O_APPEND) && (perms & MAY_WRITE))
156 perms = (perms & ~MAY_WRITE) | MAY_APPEND;
157 /* trunc implies write permission */
161 perms |= AA_MAY_CREATE;
166 #endif /* __AA_FILE_H */