xref: /openbmc/linux/security/apparmor/include/file.h (revision 192ca6b5)
16380bd8dSJohn Johansen /*
26380bd8dSJohn Johansen  * AppArmor security module
36380bd8dSJohn Johansen  *
46380bd8dSJohn Johansen  * This file contains AppArmor file mediation function definitions.
56380bd8dSJohn Johansen  *
66380bd8dSJohn Johansen  * Copyright (C) 1998-2008 Novell/SUSE
76380bd8dSJohn Johansen  * Copyright 2009-2010 Canonical Ltd.
86380bd8dSJohn Johansen  *
96380bd8dSJohn Johansen  * This program is free software; you can redistribute it and/or
106380bd8dSJohn Johansen  * modify it under the terms of the GNU General Public License as
116380bd8dSJohn Johansen  * published by the Free Software Foundation, version 2 of the
126380bd8dSJohn Johansen  * License.
136380bd8dSJohn Johansen  */
146380bd8dSJohn Johansen 
156380bd8dSJohn Johansen #ifndef __AA_FILE_H
166380bd8dSJohn Johansen #define __AA_FILE_H
176380bd8dSJohn Johansen 
186380bd8dSJohn Johansen #include "domain.h"
196380bd8dSJohn Johansen #include "match.h"
20fc7e0b26SJohn Johansen #include "perms.h"
216380bd8dSJohn Johansen 
226380bd8dSJohn Johansen struct aa_profile;
2337721e1bSAlexey Dobriyan struct path;
246380bd8dSJohn Johansen 
25e53cfe6cSJohn Johansen #define mask_mode_t(X) (X & (MAY_EXEC | MAY_WRITE | MAY_READ | MAY_APPEND))
266380bd8dSJohn Johansen 
276380bd8dSJohn Johansen #define AA_AUDIT_FILE_MASK	(MAY_READ | MAY_WRITE | MAY_EXEC | MAY_APPEND |\
286380bd8dSJohn Johansen 				 AA_MAY_CREATE | AA_MAY_DELETE |	\
29e53cfe6cSJohn Johansen 				 AA_MAY_GETATTR | AA_MAY_SETATTR | \
306380bd8dSJohn Johansen 				 AA_MAY_CHMOD | AA_MAY_CHOWN | AA_MAY_LOCK | \
316380bd8dSJohn Johansen 				 AA_EXEC_MMAP | AA_MAY_LINK)
326380bd8dSJohn Johansen 
332835a13bSJohn Johansen #define file_ctx(X) ((struct aa_file_ctx *)(X)->f_security)
342835a13bSJohn Johansen 
35af7caa8fSJohn Johansen /* struct aa_file_ctx - the AppArmor context the file was opened in
36af7caa8fSJohn Johansen  * @perms: the permission the file was opened with
37af7caa8fSJohn Johansen  *
38af7caa8fSJohn Johansen  * The file_ctx could currently be directly stored in file->f_security
39af7caa8fSJohn Johansen  * as the profile reference is now stored in the f_cred.  However the
40af7caa8fSJohn Johansen  * ctx struct will expand in the future so we keep the struct.
41af7caa8fSJohn Johansen  */
42af7caa8fSJohn Johansen struct aa_file_ctx {
43e53cfe6cSJohn Johansen 	u32 allow;
44af7caa8fSJohn Johansen };
45af7caa8fSJohn Johansen 
46af7caa8fSJohn Johansen /**
472835a13bSJohn Johansen  * aa_alloc_file_ctx - allocate file_ctx
482835a13bSJohn Johansen  * @label: initial label of task creating the file
49af7caa8fSJohn Johansen  * @gfp: gfp flags for allocation
50af7caa8fSJohn Johansen  *
51af7caa8fSJohn Johansen  * Returns: file_ctx or NULL on failure
52af7caa8fSJohn Johansen  */
532835a13bSJohn Johansen static inline struct aa_file_ctx *aa_alloc_file_ctx(gfp_t gfp)
54af7caa8fSJohn Johansen {
552835a13bSJohn Johansen 	struct aa_file_ctx *ctx;
562835a13bSJohn Johansen 
572835a13bSJohn Johansen 	ctx = kzalloc(sizeof(struct aa_file_ctx), gfp);
582835a13bSJohn Johansen 
592835a13bSJohn Johansen 	return ctx;
60af7caa8fSJohn Johansen }
61af7caa8fSJohn Johansen 
62af7caa8fSJohn Johansen /**
632835a13bSJohn Johansen  * aa_free_file_ctx - free a file_ctx
64af7caa8fSJohn Johansen  * @ctx: file_ctx to free  (MAYBE_NULL)
65af7caa8fSJohn Johansen  */
662835a13bSJohn Johansen static inline void aa_free_file_ctx(struct aa_file_ctx *ctx)
67af7caa8fSJohn Johansen {
68af7caa8fSJohn Johansen 	if (ctx)
69af7caa8fSJohn Johansen 		kzfree(ctx);
70af7caa8fSJohn Johansen }
71af7caa8fSJohn Johansen 
726380bd8dSJohn Johansen /*
736380bd8dSJohn Johansen  * The xindex is broken into 3 parts
746380bd8dSJohn Johansen  * - index - an index into either the exec name table or the variable table
756380bd8dSJohn Johansen  * - exec type - which determines how the executable name and index are used
766380bd8dSJohn Johansen  * - flags - which modify how the destination name is applied
776380bd8dSJohn Johansen  */
786380bd8dSJohn Johansen #define AA_X_INDEX_MASK		0x03ff
796380bd8dSJohn Johansen 
806380bd8dSJohn Johansen #define AA_X_TYPE_MASK		0x0c00
816380bd8dSJohn Johansen #define AA_X_TYPE_SHIFT		10
826380bd8dSJohn Johansen #define AA_X_NONE		0x0000
836380bd8dSJohn Johansen #define AA_X_NAME		0x0400	/* use executable name px */
846380bd8dSJohn Johansen #define AA_X_TABLE		0x0800	/* use a specified name ->n# */
856380bd8dSJohn Johansen 
866380bd8dSJohn Johansen #define AA_X_UNSAFE		0x1000
876380bd8dSJohn Johansen #define AA_X_CHILD		0x2000	/* make >AA_X_NONE apply to children */
886380bd8dSJohn Johansen #define AA_X_INHERIT		0x4000
896380bd8dSJohn Johansen #define AA_X_UNCONFINED		0x8000
906380bd8dSJohn Johansen 
916380bd8dSJohn Johansen /* AA_SECURE_X_NEEDED - is passed in the bprm->unsafe field */
926380bd8dSJohn Johansen #define AA_SECURE_X_NEEDED	0x8000
936380bd8dSJohn Johansen 
946380bd8dSJohn Johansen /* need to make conditional which ones are being set */
956380bd8dSJohn Johansen struct path_cond {
962db81452SEric W. Biederman 	kuid_t uid;
976380bd8dSJohn Johansen 	umode_t mode;
986380bd8dSJohn Johansen };
996380bd8dSJohn Johansen 
1006380bd8dSJohn Johansen #define COMBINED_PERM_MASK(X) ((X).allow | (X).audit | (X).quiet | (X).kill)
1016380bd8dSJohn Johansen 
1026380bd8dSJohn Johansen /* FIXME: split perms from dfa and match this to description
1036380bd8dSJohn Johansen  *        also add delegation info.
1046380bd8dSJohn Johansen  */
1056380bd8dSJohn Johansen static inline u16 dfa_map_xindex(u16 mask)
1066380bd8dSJohn Johansen {
1076380bd8dSJohn Johansen 	u16 old_index = (mask >> 10) & 0xf;
1086380bd8dSJohn Johansen 	u16 index = 0;
1096380bd8dSJohn Johansen 
1106380bd8dSJohn Johansen 	if (mask & 0x100)
1116380bd8dSJohn Johansen 		index |= AA_X_UNSAFE;
1126380bd8dSJohn Johansen 	if (mask & 0x200)
1136380bd8dSJohn Johansen 		index |= AA_X_INHERIT;
1146380bd8dSJohn Johansen 	if (mask & 0x80)
1156380bd8dSJohn Johansen 		index |= AA_X_UNCONFINED;
1166380bd8dSJohn Johansen 
1176380bd8dSJohn Johansen 	if (old_index == 1) {
1186380bd8dSJohn Johansen 		index |= AA_X_UNCONFINED;
1196380bd8dSJohn Johansen 	} else if (old_index == 2) {
1206380bd8dSJohn Johansen 		index |= AA_X_NAME;
1216380bd8dSJohn Johansen 	} else if (old_index == 3) {
1226380bd8dSJohn Johansen 		index |= AA_X_NAME | AA_X_CHILD;
1238b964eaeSJohn Johansen 	} else if (old_index) {
1246380bd8dSJohn Johansen 		index |= AA_X_TABLE;
1256380bd8dSJohn Johansen 		index |= old_index - 4;
1266380bd8dSJohn Johansen 	}
1276380bd8dSJohn Johansen 
1286380bd8dSJohn Johansen 	return index;
1296380bd8dSJohn Johansen }
1306380bd8dSJohn Johansen 
1316380bd8dSJohn Johansen /*
1326380bd8dSJohn Johansen  * map old dfa inline permissions to new format
1336380bd8dSJohn Johansen  */
1346380bd8dSJohn Johansen #define dfa_user_allow(dfa, state) (((ACCEPT_TABLE(dfa)[state]) & 0x7f) | \
1356380bd8dSJohn Johansen 				    ((ACCEPT_TABLE(dfa)[state]) & 0x80000000))
1366380bd8dSJohn Johansen #define dfa_user_audit(dfa, state) ((ACCEPT_TABLE2(dfa)[state]) & 0x7f)
1376380bd8dSJohn Johansen #define dfa_user_quiet(dfa, state) (((ACCEPT_TABLE2(dfa)[state]) >> 7) & 0x7f)
1386380bd8dSJohn Johansen #define dfa_user_xindex(dfa, state) \
1396380bd8dSJohn Johansen 	(dfa_map_xindex(ACCEPT_TABLE(dfa)[state] & 0x3fff))
1406380bd8dSJohn Johansen 
1416380bd8dSJohn Johansen #define dfa_other_allow(dfa, state) ((((ACCEPT_TABLE(dfa)[state]) >> 14) & \
1426380bd8dSJohn Johansen 				      0x7f) |				\
1436380bd8dSJohn Johansen 				     ((ACCEPT_TABLE(dfa)[state]) & 0x80000000))
1446380bd8dSJohn Johansen #define dfa_other_audit(dfa, state) (((ACCEPT_TABLE2(dfa)[state]) >> 14) & 0x7f)
1456380bd8dSJohn Johansen #define dfa_other_quiet(dfa, state) \
1466380bd8dSJohn Johansen 	((((ACCEPT_TABLE2(dfa)[state]) >> 7) >> 14) & 0x7f)
1476380bd8dSJohn Johansen #define dfa_other_xindex(dfa, state) \
1486380bd8dSJohn Johansen 	dfa_map_xindex((ACCEPT_TABLE(dfa)[state] >> 14) & 0x3fff)
1496380bd8dSJohn Johansen 
1502d679f3cSJohn Johansen int aa_audit_file(struct aa_profile *profile, struct aa_perms *perms,
151ef88a7acSJohn Johansen 		  const char *op, u32 request, const char *name,
1522db81452SEric W. Biederman 		  const char *target, kuid_t ouid, const char *info, int error);
1536380bd8dSJohn Johansen 
1546380bd8dSJohn Johansen /**
1556380bd8dSJohn Johansen  * struct aa_file_rules - components used for file rule permissions
1566380bd8dSJohn Johansen  * @dfa: dfa to match path names and conditionals against
1576380bd8dSJohn Johansen  * @perms: permission table indexed by the matched state accept entry of @dfa
1586380bd8dSJohn Johansen  * @trans: transition table for indexed by named x transitions
1596380bd8dSJohn Johansen  *
1606380bd8dSJohn Johansen  * File permission are determined by matching a path against @dfa and then
1616380bd8dSJohn Johansen  * then using the value of the accept entry for the matching state as
1626380bd8dSJohn Johansen  * an index into @perms.  If a named exec transition is required it is
1636380bd8dSJohn Johansen  * looked up in the transition table.
1646380bd8dSJohn Johansen  */
1656380bd8dSJohn Johansen struct aa_file_rules {
1666380bd8dSJohn Johansen 	unsigned int start;
1676380bd8dSJohn Johansen 	struct aa_dfa *dfa;
1686380bd8dSJohn Johansen 	/* struct perms perms; */
1696380bd8dSJohn Johansen 	struct aa_domain trans;
1706380bd8dSJohn Johansen 	/* TODO: add delegate table */
1716380bd8dSJohn Johansen };
1726380bd8dSJohn Johansen 
1732d679f3cSJohn Johansen struct aa_perms aa_compute_fperms(struct aa_dfa *dfa, unsigned int state,
1742d679f3cSJohn Johansen 				    struct path_cond *cond);
1756380bd8dSJohn Johansen unsigned int aa_str_perms(struct aa_dfa *dfa, unsigned int start,
1766380bd8dSJohn Johansen 			  const char *name, struct path_cond *cond,
1772d679f3cSJohn Johansen 			  struct aa_perms *perms);
1786380bd8dSJohn Johansen 
17947f6e5ccSJohn Johansen int aa_path_perm(const char *op, struct aa_profile *profile,
18047f6e5ccSJohn Johansen 		 const struct path *path, int flags, u32 request,
18147f6e5ccSJohn Johansen 		 struct path_cond *cond);
1826380bd8dSJohn Johansen 
1836380bd8dSJohn Johansen int aa_path_link(struct aa_profile *profile, struct dentry *old_dentry,
1843539aaf6SAl Viro 		 const struct path *new_dir, struct dentry *new_dentry);
1856380bd8dSJohn Johansen 
18647f6e5ccSJohn Johansen int aa_file_perm(const char *op, struct aa_profile *profile, struct file *file,
1876380bd8dSJohn Johansen 		 u32 request);
1886380bd8dSJohn Johansen 
189192ca6b5SJohn Johansen void aa_inherit_files(const struct cred *cred, struct files_struct *files);
190192ca6b5SJohn Johansen 
1916380bd8dSJohn Johansen static inline void aa_free_file_rules(struct aa_file_rules *rules)
1926380bd8dSJohn Johansen {
1936380bd8dSJohn Johansen 	aa_put_dfa(rules->dfa);
1946380bd8dSJohn Johansen 	aa_free_domain_entries(&rules->trans);
1956380bd8dSJohn Johansen }
1966380bd8dSJohn Johansen 
1976380bd8dSJohn Johansen /**
1986380bd8dSJohn Johansen  * aa_map_file_perms - map file flags to AppArmor permissions
1996380bd8dSJohn Johansen  * @file: open file to map flags to AppArmor permissions
2006380bd8dSJohn Johansen  *
2016380bd8dSJohn Johansen  * Returns: apparmor permission set for the file
2026380bd8dSJohn Johansen  */
2036380bd8dSJohn Johansen static inline u32 aa_map_file_to_perms(struct file *file)
2046380bd8dSJohn Johansen {
20553fe8b99SJohn Johansen 	int flags = file->f_flags;
20653fe8b99SJohn Johansen 	u32 perms = 0;
20753fe8b99SJohn Johansen 
20853fe8b99SJohn Johansen 	if (file->f_mode & FMODE_WRITE)
20953fe8b99SJohn Johansen 		perms |= MAY_WRITE;
21053fe8b99SJohn Johansen 	if (file->f_mode & FMODE_READ)
21153fe8b99SJohn Johansen 		perms |= MAY_READ;
2126380bd8dSJohn Johansen 
2136380bd8dSJohn Johansen 	if ((flags & O_APPEND) && (perms & MAY_WRITE))
2146380bd8dSJohn Johansen 		perms = (perms & ~MAY_WRITE) | MAY_APPEND;
2156380bd8dSJohn Johansen 	/* trunc implies write permission */
2166380bd8dSJohn Johansen 	if (flags & O_TRUNC)
2176380bd8dSJohn Johansen 		perms |= MAY_WRITE;
2186380bd8dSJohn Johansen 	if (flags & O_CREAT)
2196380bd8dSJohn Johansen 		perms |= AA_MAY_CREATE;
2206380bd8dSJohn Johansen 
2216380bd8dSJohn Johansen 	return perms;
2226380bd8dSJohn Johansen }
2236380bd8dSJohn Johansen 
2246380bd8dSJohn Johansen #endif /* __AA_FILE_H */
225