mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-12 16:58:53 +00:00
apparmor: add an optional profile attachment string for profiles
Add the ability to take in and report a human readable profile attachment string for profiles so that attachment specifications can be easily inspected. Signed-off-by: John Johansen <john.johansen@canonical.com> Acked-by: Seth Arnold <seth.arnold@canonical.com>
This commit is contained in:
parent
0d259f043f
commit
556d0be74b
@ -290,6 +290,34 @@ static const struct file_operations aa_fs_profmode_fops = {
|
|||||||
.release = aa_fs_seq_profile_release,
|
.release = aa_fs_seq_profile_release,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static int aa_fs_seq_profattach_show(struct seq_file *seq, void *v)
|
||||||
|
{
|
||||||
|
struct aa_replacedby *r = seq->private;
|
||||||
|
struct aa_profile *profile = aa_get_profile_rcu(&r->profile);
|
||||||
|
if (profile->attach)
|
||||||
|
seq_printf(seq, "%s\n", profile->attach);
|
||||||
|
else if (profile->xmatch)
|
||||||
|
seq_puts(seq, "<unknown>\n");
|
||||||
|
else
|
||||||
|
seq_printf(seq, "%s\n", profile->base.name);
|
||||||
|
aa_put_profile(profile);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int aa_fs_seq_profattach_open(struct inode *inode, struct file *file)
|
||||||
|
{
|
||||||
|
return aa_fs_seq_profile_open(inode, file, aa_fs_seq_profattach_show);
|
||||||
|
}
|
||||||
|
|
||||||
|
static const struct file_operations aa_fs_profattach_fops = {
|
||||||
|
.owner = THIS_MODULE,
|
||||||
|
.open = aa_fs_seq_profattach_open,
|
||||||
|
.read = seq_read,
|
||||||
|
.llseek = seq_lseek,
|
||||||
|
.release = aa_fs_seq_profile_release,
|
||||||
|
};
|
||||||
|
|
||||||
/** fns to setup dynamic per profile/namespace files **/
|
/** fns to setup dynamic per profile/namespace files **/
|
||||||
void __aa_fs_profile_rmdir(struct aa_profile *profile)
|
void __aa_fs_profile_rmdir(struct aa_profile *profile)
|
||||||
{
|
{
|
||||||
@ -385,6 +413,12 @@ int __aa_fs_profile_mkdir(struct aa_profile *profile, struct dentry *parent)
|
|||||||
goto fail;
|
goto fail;
|
||||||
profile->dents[AAFS_PROF_MODE] = dent;
|
profile->dents[AAFS_PROF_MODE] = dent;
|
||||||
|
|
||||||
|
dent = create_profile_file(dir, "attach", profile,
|
||||||
|
&aa_fs_profattach_fops);
|
||||||
|
if (IS_ERR(dent))
|
||||||
|
goto fail;
|
||||||
|
profile->dents[AAFS_PROF_ATTACH] = dent;
|
||||||
|
|
||||||
list_for_each_entry(child, &profile->base.profiles, base.list) {
|
list_for_each_entry(child, &profile->base.profiles, base.list) {
|
||||||
error = __aa_fs_profile_mkdir(child, prof_child_dir(profile));
|
error = __aa_fs_profile_mkdir(child, prof_child_dir(profile));
|
||||||
if (error)
|
if (error)
|
||||||
|
@ -81,6 +81,7 @@ enum aafs_prof_type {
|
|||||||
AAFS_PROF_PROFS,
|
AAFS_PROF_PROFS,
|
||||||
AAFS_PROF_NAME,
|
AAFS_PROF_NAME,
|
||||||
AAFS_PROF_MODE,
|
AAFS_PROF_MODE,
|
||||||
|
AAFS_PROF_ATTACH,
|
||||||
AAFS_PROF_SIZEOF,
|
AAFS_PROF_SIZEOF,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -165,6 +165,7 @@ struct aa_replacedby {
|
|||||||
* @ns: namespace the profile is in
|
* @ns: namespace the profile is in
|
||||||
* @replacedby: is set to the profile that replaced this profile
|
* @replacedby: is set to the profile that replaced this profile
|
||||||
* @rename: optional profile name that this profile renamed
|
* @rename: optional profile name that this profile renamed
|
||||||
|
* @attach: human readable attachment string
|
||||||
* @xmatch: optional extended matching for unconfined executables names
|
* @xmatch: optional extended matching for unconfined executables names
|
||||||
* @xmatch_len: xmatch prefix len, used to determine xmatch priority
|
* @xmatch_len: xmatch prefix len, used to determine xmatch priority
|
||||||
* @audit: the auditing mode of the profile
|
* @audit: the auditing mode of the profile
|
||||||
@ -204,6 +205,7 @@ struct aa_profile {
|
|||||||
struct aa_replacedby *replacedby;
|
struct aa_replacedby *replacedby;
|
||||||
const char *rename;
|
const char *rename;
|
||||||
|
|
||||||
|
const char *attach;
|
||||||
struct aa_dfa *xmatch;
|
struct aa_dfa *xmatch;
|
||||||
int xmatch_len;
|
int xmatch_len;
|
||||||
enum audit_mode audit;
|
enum audit_mode audit;
|
||||||
|
@ -492,6 +492,9 @@ static struct aa_profile *unpack_profile(struct aa_ext *e)
|
|||||||
/* profile renaming is optional */
|
/* profile renaming is optional */
|
||||||
(void) unpack_str(e, &profile->rename, "rename");
|
(void) unpack_str(e, &profile->rename, "rename");
|
||||||
|
|
||||||
|
/* attachment string is optional */
|
||||||
|
(void) unpack_str(e, &profile->attach, "attach");
|
||||||
|
|
||||||
/* xmatch is optional and may be NULL */
|
/* xmatch is optional and may be NULL */
|
||||||
profile->xmatch = unpack_dfa(e);
|
profile->xmatch = unpack_dfa(e);
|
||||||
if (IS_ERR(profile->xmatch)) {
|
if (IS_ERR(profile->xmatch)) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user