forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
apparmor: move permissions into their own file to be more easily shared
Signed-off-by: John Johansen <[email protected]>
- Loading branch information
John Johansen
committed
Jun 8, 2017
1 parent
c961ee5
commit fc7e0b2
Showing
4 changed files
with
43 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
/* | ||
* AppArmor security module | ||
* | ||
* This file contains AppArmor basic permission sets definitions. | ||
* | ||
* Copyright 2017 Canonical Ltd. | ||
* | ||
* This program is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU General Public License as | ||
* published by the Free Software Foundation, version 2 of the | ||
* License. | ||
*/ | ||
|
||
#ifndef __AA_PERM_H | ||
#define __AA_PERM_H | ||
|
||
#include <linux/fs.h> | ||
|
||
/* | ||
* We use MAY_EXEC, MAY_WRITE, MAY_READ, MAY_APPEND and the following flags | ||
* for profile permissions | ||
*/ | ||
#define AA_MAY_CREATE 0x0010 | ||
#define AA_MAY_DELETE 0x0020 | ||
#define AA_MAY_META_WRITE 0x0040 | ||
#define AA_MAY_META_READ 0x0080 | ||
|
||
#define AA_MAY_CHMOD 0x0100 | ||
#define AA_MAY_CHOWN 0x0200 | ||
#define AA_MAY_LOCK 0x0400 | ||
#define AA_EXEC_MMAP 0x0800 | ||
|
||
#define AA_MAY_LINK 0x1000 | ||
#define AA_LINK_SUBSET AA_MAY_LOCK /* overlaid */ | ||
#define AA_MAY_ONEXEC 0x40000000 /* exec allows onexec */ | ||
#define AA_MAY_CHANGE_PROFILE 0x80000000 | ||
#define AA_MAY_CHANGEHAT 0x80000000 /* ctrl auditing only */ | ||
|
||
|
||
#endif /* __AA_PERM_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,6 +29,7 @@ | |
#include "domain.h" | ||
#include "file.h" | ||
#include "lib.h" | ||
#include "perms.h" | ||
#include "resource.h" | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters