Skip to content

Commit

Permalink
apparmor: export that basic profile namespaces are supported
Browse files Browse the repository at this point in the history
Allow userspace to detect that basic profile policy namespaces are
available.

Signed-off-by: John Johansen <[email protected]>
  • Loading branch information
John Johansen committed Jun 11, 2017
1 parent 6c5fc8f commit 33f2ead
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions security/apparmor/apparmorfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -2151,6 +2151,12 @@ static struct aa_sfs_entry aa_sfs_entry_policy[] = {
{ }
};

static struct aa_sfs_entry aa_sfs_entry_ns[] = {
AA_SFS_FILE_BOOLEAN("profile", 1),
AA_SFS_FILE_BOOLEAN("pivot_root", 1),
{ }
};

static struct aa_sfs_entry aa_sfs_entry_query_label[] = {
AA_SFS_FILE_STRING("perms", "allow deny audit quiet"),
AA_SFS_FILE_BOOLEAN("data", 1),
Expand All @@ -2166,6 +2172,7 @@ static struct aa_sfs_entry aa_sfs_entry_features[] = {
AA_SFS_DIR("policy", aa_sfs_entry_policy),
AA_SFS_DIR("domain", aa_sfs_entry_domain),
AA_SFS_DIR("file", aa_sfs_entry_file),
AA_SFS_DIR("namespaces", aa_sfs_entry_ns),
AA_SFS_FILE_U64("capability", VFS_CAP_FLAGS_MASK),
AA_SFS_DIR("rlimit", aa_sfs_entry_rlimit),
AA_SFS_DIR("caps", aa_sfs_entry_caps),
Expand Down

0 comments on commit 33f2ead

Please sign in to comment.