xref: /openbmc/linux/security/apparmor/include/file.h (revision 2db81452)
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"
206380bd8dSJohn Johansen 
216380bd8dSJohn Johansen struct aa_profile;
2237721e1bSAlexey Dobriyan struct path;
236380bd8dSJohn Johansen 
246380bd8dSJohn Johansen /*
256380bd8dSJohn Johansen  * We use MAY_EXEC, MAY_WRITE, MAY_READ, MAY_APPEND and the following flags
266380bd8dSJohn Johansen  * for profile permissions
276380bd8dSJohn Johansen  */
286380bd8dSJohn Johansen #define AA_MAY_CREATE                  0x0010
296380bd8dSJohn Johansen #define AA_MAY_DELETE                  0x0020
306380bd8dSJohn Johansen #define AA_MAY_META_WRITE              0x0040
316380bd8dSJohn Johansen #define AA_MAY_META_READ               0x0080
326380bd8dSJohn Johansen 
336380bd8dSJohn Johansen #define AA_MAY_CHMOD                   0x0100
346380bd8dSJohn Johansen #define AA_MAY_CHOWN                   0x0200
356380bd8dSJohn Johansen #define AA_MAY_LOCK                    0x0400
366380bd8dSJohn Johansen #define AA_EXEC_MMAP                   0x0800
376380bd8dSJohn Johansen 
386380bd8dSJohn Johansen #define AA_MAY_LINK			0x1000
396380bd8dSJohn Johansen #define AA_LINK_SUBSET			AA_MAY_LOCK	/* overlaid */
406380bd8dSJohn Johansen #define AA_MAY_ONEXEC			0x40000000	/* exec allows onexec */
416380bd8dSJohn Johansen #define AA_MAY_CHANGE_PROFILE		0x80000000
426380bd8dSJohn Johansen #define AA_MAY_CHANGEHAT		0x80000000	/* ctrl auditing only */
436380bd8dSJohn Johansen 
446380bd8dSJohn Johansen #define AA_AUDIT_FILE_MASK	(MAY_READ | MAY_WRITE | MAY_EXEC | MAY_APPEND |\
456380bd8dSJohn Johansen 				 AA_MAY_CREATE | AA_MAY_DELETE |	\
466380bd8dSJohn Johansen 				 AA_MAY_META_READ | AA_MAY_META_WRITE | \
476380bd8dSJohn Johansen 				 AA_MAY_CHMOD | AA_MAY_CHOWN | AA_MAY_LOCK | \
486380bd8dSJohn Johansen 				 AA_EXEC_MMAP | AA_MAY_LINK)
496380bd8dSJohn Johansen 
506380bd8dSJohn Johansen /*
516380bd8dSJohn Johansen  * The xindex is broken into 3 parts
526380bd8dSJohn Johansen  * - index - an index into either the exec name table or the variable table
536380bd8dSJohn Johansen  * - exec type - which determines how the executable name and index are used
546380bd8dSJohn Johansen  * - flags - which modify how the destination name is applied
556380bd8dSJohn Johansen  */
566380bd8dSJohn Johansen #define AA_X_INDEX_MASK		0x03ff
576380bd8dSJohn Johansen 
586380bd8dSJohn Johansen #define AA_X_TYPE_MASK		0x0c00
596380bd8dSJohn Johansen #define AA_X_TYPE_SHIFT		10
606380bd8dSJohn Johansen #define AA_X_NONE		0x0000
616380bd8dSJohn Johansen #define AA_X_NAME		0x0400	/* use executable name px */
626380bd8dSJohn Johansen #define AA_X_TABLE		0x0800	/* use a specified name ->n# */
636380bd8dSJohn Johansen 
646380bd8dSJohn Johansen #define AA_X_UNSAFE		0x1000
656380bd8dSJohn Johansen #define AA_X_CHILD		0x2000	/* make >AA_X_NONE apply to children */
666380bd8dSJohn Johansen #define AA_X_INHERIT		0x4000
676380bd8dSJohn Johansen #define AA_X_UNCONFINED		0x8000
686380bd8dSJohn Johansen 
696380bd8dSJohn Johansen /* AA_SECURE_X_NEEDED - is passed in the bprm->unsafe field */
706380bd8dSJohn Johansen #define AA_SECURE_X_NEEDED	0x8000
716380bd8dSJohn Johansen 
726380bd8dSJohn Johansen /* need to make conditional which ones are being set */
736380bd8dSJohn Johansen struct path_cond {
742db81452SEric W. Biederman 	kuid_t uid;
756380bd8dSJohn Johansen 	umode_t mode;
766380bd8dSJohn Johansen };
776380bd8dSJohn Johansen 
786380bd8dSJohn Johansen /* struct file_perms - file permission
796380bd8dSJohn Johansen  * @allow: mask of permissions that are allowed
806380bd8dSJohn Johansen  * @audit: mask of permissions to force an audit message for
816380bd8dSJohn Johansen  * @quiet: mask of permissions to quiet audit messages for
826380bd8dSJohn Johansen  * @kill: mask of permissions that when matched will kill the task
836380bd8dSJohn Johansen  * @xindex: exec transition index if @allow contains MAY_EXEC
846380bd8dSJohn Johansen  *
856380bd8dSJohn Johansen  * The @audit and @queit mask should be mutually exclusive.
866380bd8dSJohn Johansen  */
876380bd8dSJohn Johansen struct file_perms {
886380bd8dSJohn Johansen 	u32 allow;
896380bd8dSJohn Johansen 	u32 audit;
906380bd8dSJohn Johansen 	u32 quiet;
916380bd8dSJohn Johansen 	u32 kill;
926380bd8dSJohn Johansen 	u16 xindex;
936380bd8dSJohn Johansen };
946380bd8dSJohn Johansen 
956380bd8dSJohn Johansen extern struct file_perms nullperms;
966380bd8dSJohn Johansen 
976380bd8dSJohn Johansen #define COMBINED_PERM_MASK(X) ((X).allow | (X).audit | (X).quiet | (X).kill)
986380bd8dSJohn Johansen 
996380bd8dSJohn Johansen /* FIXME: split perms from dfa and match this to description
1006380bd8dSJohn Johansen  *        also add delegation info.
1016380bd8dSJohn Johansen  */
1026380bd8dSJohn Johansen static inline u16 dfa_map_xindex(u16 mask)
1036380bd8dSJohn Johansen {
1046380bd8dSJohn Johansen 	u16 old_index = (mask >> 10) & 0xf;
1056380bd8dSJohn Johansen 	u16 index = 0;
1066380bd8dSJohn Johansen 
1076380bd8dSJohn Johansen 	if (mask & 0x100)
1086380bd8dSJohn Johansen 		index |= AA_X_UNSAFE;
1096380bd8dSJohn Johansen 	if (mask & 0x200)
1106380bd8dSJohn Johansen 		index |= AA_X_INHERIT;
1116380bd8dSJohn Johansen 	if (mask & 0x80)
1126380bd8dSJohn Johansen 		index |= AA_X_UNCONFINED;
1136380bd8dSJohn Johansen 
1146380bd8dSJohn Johansen 	if (old_index == 1) {
1156380bd8dSJohn Johansen 		index |= AA_X_UNCONFINED;
1166380bd8dSJohn Johansen 	} else if (old_index == 2) {
1176380bd8dSJohn Johansen 		index |= AA_X_NAME;
1186380bd8dSJohn Johansen 	} else if (old_index == 3) {
1196380bd8dSJohn Johansen 		index |= AA_X_NAME | AA_X_CHILD;
1208b964eaeSJohn Johansen 	} else if (old_index) {
1216380bd8dSJohn Johansen 		index |= AA_X_TABLE;
1226380bd8dSJohn Johansen 		index |= old_index - 4;
1236380bd8dSJohn Johansen 	}
1246380bd8dSJohn Johansen 
1256380bd8dSJohn Johansen 	return index;
1266380bd8dSJohn Johansen }
1276380bd8dSJohn Johansen 
1286380bd8dSJohn Johansen /*
1296380bd8dSJohn Johansen  * map old dfa inline permissions to new format
1306380bd8dSJohn Johansen  */
1316380bd8dSJohn Johansen #define dfa_user_allow(dfa, state) (((ACCEPT_TABLE(dfa)[state]) & 0x7f) | \
1326380bd8dSJohn Johansen 				    ((ACCEPT_TABLE(dfa)[state]) & 0x80000000))
1336380bd8dSJohn Johansen #define dfa_user_audit(dfa, state) ((ACCEPT_TABLE2(dfa)[state]) & 0x7f)
1346380bd8dSJohn Johansen #define dfa_user_quiet(dfa, state) (((ACCEPT_TABLE2(dfa)[state]) >> 7) & 0x7f)
1356380bd8dSJohn Johansen #define dfa_user_xindex(dfa, state) \
1366380bd8dSJohn Johansen 	(dfa_map_xindex(ACCEPT_TABLE(dfa)[state] & 0x3fff))
1376380bd8dSJohn Johansen 
1386380bd8dSJohn Johansen #define dfa_other_allow(dfa, state) ((((ACCEPT_TABLE(dfa)[state]) >> 14) & \
1396380bd8dSJohn Johansen 				      0x7f) |				\
1406380bd8dSJohn Johansen 				     ((ACCEPT_TABLE(dfa)[state]) & 0x80000000))
1416380bd8dSJohn Johansen #define dfa_other_audit(dfa, state) (((ACCEPT_TABLE2(dfa)[state]) >> 14) & 0x7f)
1426380bd8dSJohn Johansen #define dfa_other_quiet(dfa, state) \
1436380bd8dSJohn Johansen 	((((ACCEPT_TABLE2(dfa)[state]) >> 7) >> 14) & 0x7f)
1446380bd8dSJohn Johansen #define dfa_other_xindex(dfa, state) \
1456380bd8dSJohn Johansen 	dfa_map_xindex((ACCEPT_TABLE(dfa)[state] >> 14) & 0x3fff)
1466380bd8dSJohn Johansen 
1476380bd8dSJohn Johansen int aa_audit_file(struct aa_profile *profile, struct file_perms *perms,
1486380bd8dSJohn Johansen 		  gfp_t gfp, int op, u32 request, const char *name,
1492db81452SEric W. Biederman 		  const char *target, kuid_t ouid, const char *info, int error);
1506380bd8dSJohn Johansen 
1516380bd8dSJohn Johansen /**
1526380bd8dSJohn Johansen  * struct aa_file_rules - components used for file rule permissions
1536380bd8dSJohn Johansen  * @dfa: dfa to match path names and conditionals against
1546380bd8dSJohn Johansen  * @perms: permission table indexed by the matched state accept entry of @dfa
1556380bd8dSJohn Johansen  * @trans: transition table for indexed by named x transitions
1566380bd8dSJohn Johansen  *
1576380bd8dSJohn Johansen  * File permission are determined by matching a path against @dfa and then
1586380bd8dSJohn Johansen  * then using the value of the accept entry for the matching state as
1596380bd8dSJohn Johansen  * an index into @perms.  If a named exec transition is required it is
1606380bd8dSJohn Johansen  * looked up in the transition table.
1616380bd8dSJohn Johansen  */
1626380bd8dSJohn Johansen struct aa_file_rules {
1636380bd8dSJohn Johansen 	unsigned int start;
1646380bd8dSJohn Johansen 	struct aa_dfa *dfa;
1656380bd8dSJohn Johansen 	/* struct perms perms; */
1666380bd8dSJohn Johansen 	struct aa_domain trans;
1676380bd8dSJohn Johansen 	/* TODO: add delegate table */
1686380bd8dSJohn Johansen };
1696380bd8dSJohn Johansen 
1706380bd8dSJohn Johansen unsigned int aa_str_perms(struct aa_dfa *dfa, unsigned int start,
1716380bd8dSJohn Johansen 			  const char *name, struct path_cond *cond,
1726380bd8dSJohn Johansen 			  struct file_perms *perms);
1736380bd8dSJohn Johansen 
1746380bd8dSJohn Johansen int aa_path_perm(int op, struct aa_profile *profile, struct path *path,
1756380bd8dSJohn Johansen 		 int flags, u32 request, struct path_cond *cond);
1766380bd8dSJohn Johansen 
1776380bd8dSJohn Johansen int aa_path_link(struct aa_profile *profile, struct dentry *old_dentry,
1786380bd8dSJohn Johansen 		 struct path *new_dir, struct dentry *new_dentry);
1796380bd8dSJohn Johansen 
1806380bd8dSJohn Johansen int aa_file_perm(int op, struct aa_profile *profile, struct file *file,
1816380bd8dSJohn Johansen 		 u32 request);
1826380bd8dSJohn Johansen 
1836380bd8dSJohn Johansen static inline void aa_free_file_rules(struct aa_file_rules *rules)
1846380bd8dSJohn Johansen {
1856380bd8dSJohn Johansen 	aa_put_dfa(rules->dfa);
1866380bd8dSJohn Johansen 	aa_free_domain_entries(&rules->trans);
1876380bd8dSJohn Johansen }
1886380bd8dSJohn Johansen 
1896380bd8dSJohn Johansen #define ACC_FMODE(x) (("\000\004\002\006"[(x)&O_ACCMODE]) | (((x) << 1) & 0x40))
1906380bd8dSJohn Johansen 
1916380bd8dSJohn Johansen /* from namei.c */
1926380bd8dSJohn Johansen #define MAP_OPEN_FLAGS(x) ((((x) + 1) & O_ACCMODE) ? (x) + 1 : (x))
1936380bd8dSJohn Johansen 
1946380bd8dSJohn Johansen /**
1956380bd8dSJohn Johansen  * aa_map_file_perms - map file flags to AppArmor permissions
1966380bd8dSJohn Johansen  * @file: open file to map flags to AppArmor permissions
1976380bd8dSJohn Johansen  *
1986380bd8dSJohn Johansen  * Returns: apparmor permission set for the file
1996380bd8dSJohn Johansen  */
2006380bd8dSJohn Johansen static inline u32 aa_map_file_to_perms(struct file *file)
2016380bd8dSJohn Johansen {
2026380bd8dSJohn Johansen 	int flags = MAP_OPEN_FLAGS(file->f_flags);
2036380bd8dSJohn Johansen 	u32 perms = ACC_FMODE(file->f_mode);
2046380bd8dSJohn Johansen 
2056380bd8dSJohn Johansen 	if ((flags & O_APPEND) && (perms & MAY_WRITE))
2066380bd8dSJohn Johansen 		perms = (perms & ~MAY_WRITE) | MAY_APPEND;
2076380bd8dSJohn Johansen 	/* trunc implies write permission */
2086380bd8dSJohn Johansen 	if (flags & O_TRUNC)
2096380bd8dSJohn Johansen 		perms |= MAY_WRITE;
2106380bd8dSJohn Johansen 	if (flags & O_CREAT)
2116380bd8dSJohn Johansen 		perms |= AA_MAY_CREATE;
2126380bd8dSJohn Johansen 
2136380bd8dSJohn Johansen 	return perms;
2146380bd8dSJohn Johansen }
2156380bd8dSJohn Johansen 
2166380bd8dSJohn Johansen #endif /* __AA_FILE_H */
217