2019-06-01 16:08:55 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2010-07-30 05:48:05 +08:00
|
|
|
/*
|
|
|
|
* AppArmor security module
|
|
|
|
*
|
|
|
|
* This file contains AppArmor capability mediation definitions.
|
|
|
|
*
|
|
|
|
* Copyright (C) 1998-2008 Novell/SUSE
|
2013-10-08 20:37:18 +08:00
|
|
|
* Copyright 2009-2013 Canonical Ltd.
|
2010-07-30 05:48:05 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __AA_CAPABILITY_H
|
|
|
|
#define __AA_CAPABILITY_H
|
|
|
|
|
|
|
|
#include <linux/sched.h>
|
|
|
|
|
2013-08-15 02:27:32 +08:00
|
|
|
#include "apparmorfs.h"
|
|
|
|
|
2017-06-10 05:07:02 +08:00
|
|
|
struct aa_label;
|
2010-07-30 05:48:05 +08:00
|
|
|
|
|
|
|
/* aa_caps - confinement data for capabilities
|
|
|
|
* @allowed: capabilities mask
|
|
|
|
* @audit: caps that are to be audited
|
2017-06-10 05:07:02 +08:00
|
|
|
* @denied: caps that are explicitly denied
|
2010-07-30 05:48:05 +08:00
|
|
|
* @quiet: caps that should not be audited
|
|
|
|
* @kill: caps that when requested will result in the task being killed
|
|
|
|
* @extended: caps that are subject finer grained mediation
|
|
|
|
*/
|
|
|
|
struct aa_caps {
|
|
|
|
kernel_cap_t allow;
|
|
|
|
kernel_cap_t audit;
|
2017-06-10 05:07:02 +08:00
|
|
|
kernel_cap_t denied;
|
2010-07-30 05:48:05 +08:00
|
|
|
kernel_cap_t quiet;
|
|
|
|
kernel_cap_t kill;
|
|
|
|
kernel_cap_t extended;
|
|
|
|
};
|
|
|
|
|
2017-05-25 21:23:42 +08:00
|
|
|
extern struct aa_sfs_entry aa_sfs_entry_caps[];
|
2013-08-15 02:27:32 +08:00
|
|
|
|
2022-09-20 11:48:48 +08:00
|
|
|
int aa_capable(const struct cred *subj_cred, struct aa_label *label,
|
|
|
|
int cap, unsigned int opts);
|
2010-07-30 05:48:05 +08:00
|
|
|
|
|
|
|
static inline void aa_free_cap_rules(struct aa_caps *caps)
|
|
|
|
{
|
|
|
|
/* NOP */
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* __AA_CAPBILITY_H */
|