mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

Extend the task avdcache to also cache whether the task SID is both permissive and neveraudit, and return immediately if so in both selinux_inode_getattr() and selinux_inode_permission(). The same approach could be applied to many of the hook functions although the avdcache would need to be updated for more than directory search checks in order for this optimization to be beneficial for checks on objects other than directories. To test, apply https://github.com/SELinuxProject/selinux/pull/473 to your selinux userspace, build and install libsepol, and use the following CIL policy module: $ cat neverauditpermissive.cil (typeneveraudit unconfined_t) (typepermissive unconfined_t) Without this module inserted, running the following commands: perf record make -jN # on an already built allmodconfig tree perf report --sort=symbol,dso yields the following percentages (only showing __d_lookup_rcu for reference and only showing relevant SELinux functions): 1.65% [k] __d_lookup_rcu 0.53% [k] selinux_inode_permission 0.40% [k] selinux_inode_getattr 0.15% [k] avc_lookup 0.05% [k] avc_has_perm 0.05% [k] avc_has_perm_noaudit 0.02% [k] avc_policy_seqno 0.02% [k] selinux_file_permission 0.01% [k] selinux_inode_alloc_security 0.01% [k] selinux_file_alloc_security for a total of 1.24% for SELinux compared to 1.65% for __d_lookup_rcu(). After running the following command to insert this module: semodule -i neverauditpermissive.cil and then re-running the same perf commands from above yields the following non-zero percentages: 1.74% [k] __d_lookup_rcu 0.31% [k] selinux_inode_permission 0.03% [k] selinux_inode_getattr 0.03% [k] avc_policy_seqno 0.01% [k] avc_lookup 0.01% [k] selinux_file_permission 0.01% [k] selinux_file_open for a total of 0.40% for SELinux compared to 1.74% for __d_lookup_rcu(). Signed-off-by: Stephen Smalley <stephen.smalley.work@gmail.com> Signed-off-by: Paul Moore <paul@paul-moore.com>
248 lines
6.5 KiB
C
248 lines
6.5 KiB
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Security-Enhanced Linux (SELinux) security module
|
|
*
|
|
* This file contains the SELinux security data structures for kernel objects.
|
|
*
|
|
* Author(s): Stephen Smalley, <stephen.smalley.work@gmail.com>
|
|
* Chris Vance, <cvance@nai.com>
|
|
* Wayne Salamon, <wsalamon@nai.com>
|
|
* James Morris <jmorris@redhat.com>
|
|
*
|
|
* Copyright (C) 2001,2002 Networks Associates Technology, Inc.
|
|
* Copyright (C) 2003 Red Hat, Inc., James Morris <jmorris@redhat.com>
|
|
* Copyright (C) 2016 Mellanox Technologies
|
|
*/
|
|
|
|
#ifndef _SELINUX_OBJSEC_H_
|
|
#define _SELINUX_OBJSEC_H_
|
|
|
|
#include <linux/list.h>
|
|
#include <linux/sched.h>
|
|
#include <linux/fs.h>
|
|
#include <linux/binfmts.h>
|
|
#include <linux/in.h>
|
|
#include <linux/spinlock.h>
|
|
#include <linux/lsm_hooks.h>
|
|
#include <linux/msg.h>
|
|
#include <net/net_namespace.h>
|
|
#include "flask.h"
|
|
#include "avc.h"
|
|
|
|
struct avdc_entry {
|
|
u32 isid; /* inode SID */
|
|
u32 allowed; /* allowed permission bitmask */
|
|
u32 audited; /* audited permission bitmask */
|
|
bool permissive; /* AVC permissive flag */
|
|
};
|
|
|
|
struct task_security_struct {
|
|
u32 osid; /* SID prior to last execve */
|
|
u32 sid; /* current SID */
|
|
u32 exec_sid; /* exec SID */
|
|
u32 create_sid; /* fscreate SID */
|
|
u32 keycreate_sid; /* keycreate SID */
|
|
u32 sockcreate_sid; /* fscreate SID */
|
|
#define TSEC_AVDC_DIR_SIZE (1 << 2)
|
|
struct {
|
|
u32 sid; /* current SID for cached entries */
|
|
u32 seqno; /* AVC sequence number */
|
|
unsigned int dir_spot; /* dir cache index to check first */
|
|
struct avdc_entry dir[TSEC_AVDC_DIR_SIZE]; /* dir entries */
|
|
bool permissive_neveraudit; /* permissive and neveraudit */
|
|
} avdcache;
|
|
} __randomize_layout;
|
|
|
|
static inline bool task_avdcache_permnoaudit(struct task_security_struct *tsec)
|
|
{
|
|
return (tsec->avdcache.permissive_neveraudit &&
|
|
tsec->sid == tsec->avdcache.sid &&
|
|
tsec->avdcache.seqno == avc_policy_seqno());
|
|
}
|
|
|
|
enum label_initialized {
|
|
LABEL_INVALID, /* invalid or not initialized */
|
|
LABEL_INITIALIZED, /* initialized */
|
|
LABEL_PENDING
|
|
};
|
|
|
|
struct inode_security_struct {
|
|
struct inode *inode; /* back pointer to inode object */
|
|
struct list_head list; /* list of inode_security_struct */
|
|
u32 task_sid; /* SID of creating task */
|
|
u32 sid; /* SID of this object */
|
|
u16 sclass; /* security class of this object */
|
|
unsigned char initialized; /* initialization flag */
|
|
spinlock_t lock;
|
|
};
|
|
|
|
struct file_security_struct {
|
|
u32 sid; /* SID of open file description */
|
|
u32 fown_sid; /* SID of file owner (for SIGIO) */
|
|
u32 isid; /* SID of inode at the time of file open */
|
|
u32 pseqno; /* Policy seqno at the time of file open */
|
|
};
|
|
|
|
struct superblock_security_struct {
|
|
u32 sid; /* SID of file system superblock */
|
|
u32 def_sid; /* default SID for labeling */
|
|
u32 mntpoint_sid; /* SECURITY_FS_USE_MNTPOINT context for files */
|
|
unsigned short behavior; /* labeling behavior */
|
|
unsigned short flags; /* which mount options were specified */
|
|
struct mutex lock;
|
|
struct list_head isec_head;
|
|
spinlock_t isec_lock;
|
|
};
|
|
|
|
struct msg_security_struct {
|
|
u32 sid; /* SID of message */
|
|
};
|
|
|
|
struct ipc_security_struct {
|
|
u16 sclass; /* security class of this object */
|
|
u32 sid; /* SID of IPC resource */
|
|
};
|
|
|
|
struct netif_security_struct {
|
|
const struct net *ns; /* network namespace */
|
|
int ifindex; /* device index */
|
|
u32 sid; /* SID for this interface */
|
|
};
|
|
|
|
struct netnode_security_struct {
|
|
union {
|
|
__be32 ipv4; /* IPv4 node address */
|
|
struct in6_addr ipv6; /* IPv6 node address */
|
|
} addr;
|
|
u32 sid; /* SID for this node */
|
|
u16 family; /* address family */
|
|
};
|
|
|
|
struct netport_security_struct {
|
|
u32 sid; /* SID for this node */
|
|
u16 port; /* port number */
|
|
u8 protocol; /* transport protocol */
|
|
};
|
|
|
|
struct sk_security_struct {
|
|
#ifdef CONFIG_NETLABEL
|
|
enum { /* NetLabel state */
|
|
NLBL_UNSET = 0,
|
|
NLBL_REQUIRE,
|
|
NLBL_LABELED,
|
|
NLBL_REQSKB,
|
|
NLBL_CONNLABELED,
|
|
} nlbl_state;
|
|
struct netlbl_lsm_secattr *nlbl_secattr; /* NetLabel sec attributes */
|
|
#endif
|
|
u32 sid; /* SID of this object */
|
|
u32 peer_sid; /* SID of peer */
|
|
u16 sclass; /* sock security class */
|
|
enum { /* SCTP association state */
|
|
SCTP_ASSOC_UNSET = 0,
|
|
SCTP_ASSOC_SET,
|
|
} sctp_assoc_state;
|
|
};
|
|
|
|
struct tun_security_struct {
|
|
u32 sid; /* SID for the tun device sockets */
|
|
};
|
|
|
|
struct key_security_struct {
|
|
u32 sid; /* SID of key */
|
|
};
|
|
|
|
struct ib_security_struct {
|
|
u32 sid; /* SID of the queue pair or MAD agent */
|
|
};
|
|
|
|
struct pkey_security_struct {
|
|
u64 subnet_prefix; /* Port subnet prefix */
|
|
u16 pkey; /* PKey number */
|
|
u32 sid; /* SID of pkey */
|
|
};
|
|
|
|
struct bpf_security_struct {
|
|
u32 sid; /* SID of bpf obj creator */
|
|
};
|
|
|
|
struct perf_event_security_struct {
|
|
u32 sid; /* SID of perf_event obj creator */
|
|
};
|
|
|
|
extern struct lsm_blob_sizes selinux_blob_sizes;
|
|
static inline struct task_security_struct *selinux_cred(const struct cred *cred)
|
|
{
|
|
return cred->security + selinux_blob_sizes.lbs_cred;
|
|
}
|
|
|
|
static inline struct file_security_struct *selinux_file(const struct file *file)
|
|
{
|
|
return file->f_security + selinux_blob_sizes.lbs_file;
|
|
}
|
|
|
|
static inline struct inode_security_struct *
|
|
selinux_inode(const struct inode *inode)
|
|
{
|
|
if (unlikely(!inode->i_security))
|
|
return NULL;
|
|
return inode->i_security + selinux_blob_sizes.lbs_inode;
|
|
}
|
|
|
|
static inline struct msg_security_struct *
|
|
selinux_msg_msg(const struct msg_msg *msg_msg)
|
|
{
|
|
return msg_msg->security + selinux_blob_sizes.lbs_msg_msg;
|
|
}
|
|
|
|
static inline struct ipc_security_struct *
|
|
selinux_ipc(const struct kern_ipc_perm *ipc)
|
|
{
|
|
return ipc->security + selinux_blob_sizes.lbs_ipc;
|
|
}
|
|
|
|
/*
|
|
* get the subjective security ID of the current task
|
|
*/
|
|
static inline u32 current_sid(void)
|
|
{
|
|
const struct task_security_struct *tsec = selinux_cred(current_cred());
|
|
|
|
return tsec->sid;
|
|
}
|
|
|
|
static inline struct superblock_security_struct *
|
|
selinux_superblock(const struct super_block *superblock)
|
|
{
|
|
return superblock->s_security + selinux_blob_sizes.lbs_superblock;
|
|
}
|
|
|
|
#ifdef CONFIG_KEYS
|
|
static inline struct key_security_struct *selinux_key(const struct key *key)
|
|
{
|
|
return key->security + selinux_blob_sizes.lbs_key;
|
|
}
|
|
#endif /* CONFIG_KEYS */
|
|
|
|
static inline struct sk_security_struct *selinux_sock(const struct sock *sock)
|
|
{
|
|
return sock->sk_security + selinux_blob_sizes.lbs_sock;
|
|
}
|
|
|
|
static inline struct tun_security_struct *selinux_tun_dev(void *security)
|
|
{
|
|
return security + selinux_blob_sizes.lbs_tun_dev;
|
|
}
|
|
|
|
static inline struct ib_security_struct *selinux_ib(void *ib_sec)
|
|
{
|
|
return ib_sec + selinux_blob_sizes.lbs_ib;
|
|
}
|
|
|
|
static inline struct perf_event_security_struct *
|
|
selinux_perf_event(void *perf_event)
|
|
{
|
|
return perf_event + selinux_blob_sizes.lbs_perf_event;
|
|
}
|
|
|
|
#endif /* _SELINUX_OBJSEC_H_ */
|