Skip to content

Commit

Permalink
Add flags option to get xattr method paired to __vfs_getxattr
Browse files Browse the repository at this point in the history
Add a flag option to get xattr method that could have a bit flag of
XATTR_NOSECURITY passed to it.  XATTR_NOSECURITY is generally then
set in the __vfs_getxattr path when called by security
infrastructure.

This handles the case of a union filesystem driver that is being
requested by the security layer to report back the xattr data.

For the use case where access is to be blocked by the security layer.

The path then could be security(dentry) ->
__vfs_getxattr(dentry...XATTR_NOSECURITY) ->
handler->get(dentry...XATTR_NOSECURITY) ->
__vfs_getxattr(lower_dentry...XATTR_NOSECURITY) ->
lower_handler->get(lower_dentry...XATTR_NOSECURITY)
which would report back through the chain data and success as
expected, the logging security layer at the top would have the
data to determine the access permissions and report back the target
context that was blocked.

Without the get handler flag, the path on a union filesystem would be
the errant security(dentry) -> __vfs_getxattr(dentry) ->
handler->get(dentry) -> vfs_getxattr(lower_dentry) -> nested ->
security(lower_dentry, log off) -> lower_handler->get(lower_dentry)
which would report back through the chain no data, and -EACCES.

For selinux for both cases, this would translate to a correctly
determined blocked access. In the first case with this change a correct avc
log would be reported, in the second legacy case an incorrect avc log
would be reported against an uninitialized u:object_r:unlabeled:s0
context making the logs cosmetically useless for audit2allow.

This patch series is inert and is the wide-spread addition of the
flags option for xattr functions, and a replacement of __vfs_getxattr
with __vfs_getxattr(...XATTR_NOSECURITY).

Signed-off-by: Mark Salyzyn <salyzyn@android.com>
Reviewed-by: Jan Kara <jack@suse.cz>
Acked-by: Jan Kara <jack@suse.cz>
Acked-by: Jeff Layton <jlayton@kernel.org>
Acked-by: David Sterba <dsterba@suse.com>
Acked-by: Darrick J. Wong <darrick.wong@oracle.com>
Acked-by: Mike Marshall <hubcap@omnibond.com>
Cc: Stephen Smalley <sds@tycho.nsa.gov>
Cc: John Stultz <john.stultz@linaro.org>
To: linux-fsdevel@vger.kernel.org
To: linux-unionfs@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Cc: linux-security-module@vger.kernel.org
Cc: kernel-team@android.com

v16
- rebase

v15
- revert back to v4 as struct xattr_gs_args was not acceptable by the
  wider audience. Incorporate any relevant fixes on the way.

v14 (new series):
- Reincorporate back into the bugfix series for overlayfs

v8:
- Documentation reported 'struct xattr_gs_flags' rather than
'struct xattr_gs_flags *args' as argument to get and set methods.

v7:
- missed spots in fs/9p/acl.c, fs/afs/xattr.c, fs/ecryptfs/crypto.c,
fs/ubifs/xattr.c, fs/xfs/libxfs/xfs_attr.c,
security/integrity/evm/evm_main.c and security/smack/smack_lsm.c.

v6:
- kernfs missed a spot

v5:
- introduce struct xattr_gs_args for get and set methods,
__vfs_getxattr and __vfs_setxattr functions.
- cover a missing spot in ext2.
- switch from snprintf to scnprintf for correctness.

v4:
- ifdef __KERNEL__ around XATTR_NOSECURITY to
keep it colocated in uapi headers.

v3:
- poor aim on ubifs not ubifs_xattr_get, but static xattr_get

v2:
- Missed a spot: ubifs, erofs and afs.

v1:
- Removed from an overlayfs patch set, and made independent.
  Expect this to be the basis of some security improvements.
  • Loading branch information
salyzyn authored and intel-lab-lkp committed Oct 19, 2020
1 parent 8f6ee74 commit 1e4bdc6
Show file tree
Hide file tree
Showing 49 changed files with 133 additions and 89 deletions.
2 changes: 1 addition & 1 deletion Documentation/filesystems/locking.rst
Expand Up @@ -125,7 +125,7 @@ prototypes::
bool (*list)(struct dentry *dentry);
int (*get)(const struct xattr_handler *handler, struct dentry *dentry,
struct inode *inode, const char *name, void *buffer,
size_t size);
size_t size, int flags);
int (*set)(const struct xattr_handler *handler, struct dentry *dentry,
struct inode *inode, const char *name, const void *buffer,
size_t size, int flags);
Expand Down
3 changes: 2 additions & 1 deletion fs/9p/acl.c
Expand Up @@ -214,7 +214,8 @@ int v9fs_acl_mode(struct inode *dir, umode_t *modep,

static int v9fs_xattr_get_acl(const struct xattr_handler *handler,
struct dentry *dentry, struct inode *inode,
const char *name, void *buffer, size_t size)
const char *name, void *buffer, size_t size,
int flags)
{
struct v9fs_session_info *v9ses;
struct posix_acl *acl;
Expand Down
3 changes: 2 additions & 1 deletion fs/9p/xattr.c
Expand Up @@ -139,7 +139,8 @@ ssize_t v9fs_listxattr(struct dentry *dentry, char *buffer, size_t buffer_size)

static int v9fs_xattr_handler_get(const struct xattr_handler *handler,
struct dentry *dentry, struct inode *inode,
const char *name, void *buffer, size_t size)
const char *name, void *buffer, size_t size,
int flags)
{
const char *full_name = xattr_full_name(handler, name);

Expand Down
10 changes: 5 additions & 5 deletions fs/afs/xattr.c
Expand Up @@ -59,7 +59,7 @@ static const struct afs_operation_ops afs_fetch_acl_operation = {
static int afs_xattr_get_acl(const struct xattr_handler *handler,
struct dentry *dentry,
struct inode *inode, const char *name,
void *buffer, size_t size)
void *buffer, size_t size, int flags)
{
struct afs_operation *op;
struct afs_vnode *vnode = AFS_FS_I(inode);
Expand Down Expand Up @@ -165,7 +165,7 @@ static const struct afs_operation_ops yfs_fetch_opaque_acl_operation = {
static int afs_xattr_get_yfs(const struct xattr_handler *handler,
struct dentry *dentry,
struct inode *inode, const char *name,
void *buffer, size_t size)
void *buffer, size_t size, int flags)
{
struct afs_operation *op;
struct afs_vnode *vnode = AFS_FS_I(inode);
Expand Down Expand Up @@ -288,7 +288,7 @@ static const struct xattr_handler afs_xattr_yfs_handler = {
static int afs_xattr_get_cell(const struct xattr_handler *handler,
struct dentry *dentry,
struct inode *inode, const char *name,
void *buffer, size_t size)
void *buffer, size_t size, int flags)
{
struct afs_vnode *vnode = AFS_FS_I(inode);
struct afs_cell *cell = vnode->volume->cell;
Expand All @@ -315,7 +315,7 @@ static const struct xattr_handler afs_xattr_afs_cell_handler = {
static int afs_xattr_get_fid(const struct xattr_handler *handler,
struct dentry *dentry,
struct inode *inode, const char *name,
void *buffer, size_t size)
void *buffer, size_t size, int flags)
{
struct afs_vnode *vnode = AFS_FS_I(inode);
char text[16 + 1 + 24 + 1 + 8 + 1];
Expand Down Expand Up @@ -353,7 +353,7 @@ static const struct xattr_handler afs_xattr_afs_fid_handler = {
static int afs_xattr_get_volume(const struct xattr_handler *handler,
struct dentry *dentry,
struct inode *inode, const char *name,
void *buffer, size_t size)
void *buffer, size_t size, int flags)
{
struct afs_vnode *vnode = AFS_FS_I(inode);
const char *volname = vnode->volume->name;
Expand Down
3 changes: 2 additions & 1 deletion fs/btrfs/xattr.c
Expand Up @@ -353,7 +353,8 @@ ssize_t btrfs_listxattr(struct dentry *dentry, char *buffer, size_t size)

static int btrfs_xattr_handler_get(const struct xattr_handler *handler,
struct dentry *unused, struct inode *inode,
const char *name, void *buffer, size_t size)
const char *name, void *buffer, size_t size,
int flags)
{
name = xattr_full_name(handler, name);
return btrfs_getxattr(inode, name, buffer, size);
Expand Down
3 changes: 2 additions & 1 deletion fs/ceph/xattr.c
Expand Up @@ -1154,7 +1154,8 @@ int __ceph_setxattr(struct inode *inode, const char *name,

static int ceph_get_xattr_handler(const struct xattr_handler *handler,
struct dentry *dentry, struct inode *inode,
const char *name, void *value, size_t size)
const char *name, void *value, size_t size,
int flags)
{
if (!ceph_is_valid_xattr(name))
return -EOPNOTSUPP;
Expand Down
2 changes: 1 addition & 1 deletion fs/cifs/xattr.c
Expand Up @@ -281,7 +281,7 @@ static int cifs_creation_time_get(struct dentry *dentry, struct inode *inode,

static int cifs_xattr_get(const struct xattr_handler *handler,
struct dentry *dentry, struct inode *inode,
const char *name, void *value, size_t size)
const char *name, void *value, size_t size, int flags)
{
ssize_t rc = -EOPNOTSUPP;
unsigned int xid;
Expand Down
6 changes: 4 additions & 2 deletions fs/ecryptfs/inode.c
Expand Up @@ -1040,7 +1040,8 @@ ecryptfs_getxattr_lower(struct dentry *lower_dentry, struct inode *lower_inode,
goto out;
}
inode_lock(lower_inode);
rc = __vfs_getxattr(lower_dentry, lower_inode, name, value, size);
rc = __vfs_getxattr(lower_dentry, lower_inode, name, value, size,
XATTR_NOSECURITY);
inode_unlock(lower_inode);
out:
return rc;
Expand Down Expand Up @@ -1125,7 +1126,8 @@ const struct inode_operations ecryptfs_main_iops = {

static int ecryptfs_xattr_get(const struct xattr_handler *handler,
struct dentry *dentry, struct inode *inode,
const char *name, void *buffer, size_t size)
const char *name, void *buffer, size_t size,
int flags)
{
return ecryptfs_getxattr(dentry, inode, name, buffer, size);
}
Expand Down
2 changes: 1 addition & 1 deletion fs/ecryptfs/mmap.c
Expand Up @@ -422,7 +422,7 @@ static int ecryptfs_write_inode_size_to_xattr(struct inode *ecryptfs_inode)
}
inode_lock(lower_inode);
size = __vfs_getxattr(lower_dentry, lower_inode, ECRYPTFS_XATTR_NAME,
xattr_virt, PAGE_SIZE);
xattr_virt, PAGE_SIZE, XATTR_NOSECURITY);
if (size < 0)
size = 8;
put_unaligned_be64(i_size_read(ecryptfs_inode), xattr_virt);
Expand Down
3 changes: 2 additions & 1 deletion fs/erofs/xattr.c
Expand Up @@ -463,7 +463,8 @@ int erofs_getxattr(struct inode *inode, int index,

static int erofs_xattr_generic_get(const struct xattr_handler *handler,
struct dentry *unused, struct inode *inode,
const char *name, void *buffer, size_t size)
const char *name, void *buffer, size_t size,
int flags)
{
struct erofs_sb_info *const sbi = EROFS_I_SB(inode);

Expand Down
2 changes: 1 addition & 1 deletion fs/ext2/xattr_security.c
Expand Up @@ -11,7 +11,7 @@
static int
ext2_xattr_security_get(const struct xattr_handler *handler,
struct dentry *unused, struct inode *inode,
const char *name, void *buffer, size_t size)
const char *name, void *buffer, size_t size, int flags)
{
return ext2_xattr_get(inode, EXT2_XATTR_INDEX_SECURITY, name,
buffer, size);
Expand Down
2 changes: 1 addition & 1 deletion fs/ext2/xattr_trusted.c
Expand Up @@ -18,7 +18,7 @@ ext2_xattr_trusted_list(struct dentry *dentry)
static int
ext2_xattr_trusted_get(const struct xattr_handler *handler,
struct dentry *unused, struct inode *inode,
const char *name, void *buffer, size_t size)
const char *name, void *buffer, size_t size, int flags)
{
return ext2_xattr_get(inode, EXT2_XATTR_INDEX_TRUSTED, name,
buffer, size);
Expand Down
2 changes: 1 addition & 1 deletion fs/ext2/xattr_user.c
Expand Up @@ -20,7 +20,7 @@ ext2_xattr_user_list(struct dentry *dentry)
static int
ext2_xattr_user_get(const struct xattr_handler *handler,
struct dentry *unused, struct inode *inode,
const char *name, void *buffer, size_t size)
const char *name, void *buffer, size_t size, int flags)
{
if (!test_opt(inode->i_sb, XATTR_USER))
return -EOPNOTSUPP;
Expand Down
2 changes: 1 addition & 1 deletion fs/ext4/xattr_security.c
Expand Up @@ -15,7 +15,7 @@
static int
ext4_xattr_security_get(const struct xattr_handler *handler,
struct dentry *unused, struct inode *inode,
const char *name, void *buffer, size_t size)
const char *name, void *buffer, size_t size, int flags)
{
return ext4_xattr_get(inode, EXT4_XATTR_INDEX_SECURITY,
name, buffer, size);
Expand Down
2 changes: 1 addition & 1 deletion fs/ext4/xattr_trusted.c
Expand Up @@ -22,7 +22,7 @@ ext4_xattr_trusted_list(struct dentry *dentry)
static int
ext4_xattr_trusted_get(const struct xattr_handler *handler,
struct dentry *unused, struct inode *inode,
const char *name, void *buffer, size_t size)
const char *name, void *buffer, size_t size, int flags)
{
return ext4_xattr_get(inode, EXT4_XATTR_INDEX_TRUSTED,
name, buffer, size);
Expand Down
2 changes: 1 addition & 1 deletion fs/ext4/xattr_user.c
Expand Up @@ -21,7 +21,7 @@ ext4_xattr_user_list(struct dentry *dentry)
static int
ext4_xattr_user_get(const struct xattr_handler *handler,
struct dentry *unused, struct inode *inode,
const char *name, void *buffer, size_t size)
const char *name, void *buffer, size_t size, int flags)
{
if (!test_opt(inode->i_sb, XATTR_USER))
return -EOPNOTSUPP;
Expand Down
4 changes: 2 additions & 2 deletions fs/f2fs/xattr.c
Expand Up @@ -44,7 +44,7 @@ static void xattr_free(struct f2fs_sb_info *sbi, void *xattr_addr,

static int f2fs_xattr_generic_get(const struct xattr_handler *handler,
struct dentry *unused, struct inode *inode,
const char *name, void *buffer, size_t size)
const char *name, void *buffer, size_t size, int flags)
{
struct f2fs_sb_info *sbi = F2FS_SB(inode->i_sb);

Expand Down Expand Up @@ -99,7 +99,7 @@ static bool f2fs_xattr_trusted_list(struct dentry *dentry)

static int f2fs_xattr_advise_get(const struct xattr_handler *handler,
struct dentry *unused, struct inode *inode,
const char *name, void *buffer, size_t size)
const char *name, void *buffer, size_t size, int flags)
{
if (buffer)
*((char *)buffer) = F2FS_I(inode)->i_advise;
Expand Down
4 changes: 2 additions & 2 deletions fs/fuse/xattr.c
Expand Up @@ -176,7 +176,7 @@ int fuse_removexattr(struct inode *inode, const char *name)

static int fuse_xattr_get(const struct xattr_handler *handler,
struct dentry *dentry, struct inode *inode,
const char *name, void *value, size_t size)
const char *name, void *value, size_t size, int flags)
{
return fuse_getxattr(inode, name, value, size);
}
Expand All @@ -199,7 +199,7 @@ static bool no_xattr_list(struct dentry *dentry)

static int no_xattr_get(const struct xattr_handler *handler,
struct dentry *dentry, struct inode *inode,
const char *name, void *value, size_t size)
const char *name, void *value, size_t size, int flags)
{
return -EOPNOTSUPP;
}
Expand Down
3 changes: 2 additions & 1 deletion fs/gfs2/xattr.c
Expand Up @@ -588,7 +588,8 @@ static int __gfs2_xattr_get(struct inode *inode, const char *name,

static int gfs2_xattr_get(const struct xattr_handler *handler,
struct dentry *unused, struct inode *inode,
const char *name, void *buffer, size_t size)
const char *name, void *buffer, size_t size,
int flags)
{
struct gfs2_inode *ip = GFS2_I(inode);
struct gfs2_holder gh;
Expand Down
2 changes: 1 addition & 1 deletion fs/hfs/attr.c
Expand Up @@ -115,7 +115,7 @@ static ssize_t __hfs_getxattr(struct inode *inode, enum hfs_xattr_type type,

static int hfs_xattr_get(const struct xattr_handler *handler,
struct dentry *unused, struct inode *inode,
const char *name, void *value, size_t size)
const char *name, void *value, size_t size, int flags)
{
return __hfs_getxattr(inode, handler->flags, value, size);
}
Expand Down
3 changes: 2 additions & 1 deletion fs/hfsplus/xattr.c
Expand Up @@ -839,7 +839,8 @@ static int hfsplus_removexattr(struct inode *inode, const char *name)

static int hfsplus_osx_getxattr(const struct xattr_handler *handler,
struct dentry *unused, struct inode *inode,
const char *name, void *buffer, size_t size)
const char *name, void *buffer, size_t size,
int flags)
{
/*
* Don't allow retrieving properly prefixed attributes
Expand Down
3 changes: 2 additions & 1 deletion fs/hfsplus/xattr_security.c
Expand Up @@ -15,7 +15,8 @@

static int hfsplus_security_getxattr(const struct xattr_handler *handler,
struct dentry *unused, struct inode *inode,
const char *name, void *buffer, size_t size)
const char *name, void *buffer,
size_t size, int flags)
{
return hfsplus_getxattr(inode, name, buffer, size,
XATTR_SECURITY_PREFIX,
Expand Down
3 changes: 2 additions & 1 deletion fs/hfsplus/xattr_trusted.c
Expand Up @@ -14,7 +14,8 @@

static int hfsplus_trusted_getxattr(const struct xattr_handler *handler,
struct dentry *unused, struct inode *inode,
const char *name, void *buffer, size_t size)
const char *name, void *buffer,
size_t size, int flags)
{
return hfsplus_getxattr(inode, name, buffer, size,
XATTR_TRUSTED_PREFIX,
Expand Down
3 changes: 2 additions & 1 deletion fs/hfsplus/xattr_user.c
Expand Up @@ -14,7 +14,8 @@

static int hfsplus_user_getxattr(const struct xattr_handler *handler,
struct dentry *unused, struct inode *inode,
const char *name, void *buffer, size_t size)
const char *name, void *buffer, size_t size,
int flags)
{

return hfsplus_getxattr(inode, name, buffer, size,
Expand Down
3 changes: 2 additions & 1 deletion fs/jffs2/security.c
Expand Up @@ -50,7 +50,8 @@ int jffs2_init_security(struct inode *inode, struct inode *dir,
/* ---- XATTR Handler for "security.*" ----------------- */
static int jffs2_security_getxattr(const struct xattr_handler *handler,
struct dentry *unused, struct inode *inode,
const char *name, void *buffer, size_t size)
const char *name, void *buffer, size_t size,
int flags)
{
return do_jffs2_getxattr(inode, JFFS2_XPREFIX_SECURITY,
name, buffer, size);
Expand Down
3 changes: 2 additions & 1 deletion fs/jffs2/xattr_trusted.c
Expand Up @@ -18,7 +18,8 @@

static int jffs2_trusted_getxattr(const struct xattr_handler *handler,
struct dentry *unused, struct inode *inode,
const char *name, void *buffer, size_t size)
const char *name, void *buffer, size_t size,
int flags)
{
return do_jffs2_getxattr(inode, JFFS2_XPREFIX_TRUSTED,
name, buffer, size);
Expand Down
3 changes: 2 additions & 1 deletion fs/jffs2/xattr_user.c
Expand Up @@ -18,7 +18,8 @@

static int jffs2_user_getxattr(const struct xattr_handler *handler,
struct dentry *unused, struct inode *inode,
const char *name, void *buffer, size_t size)
const char *name, void *buffer, size_t size,
int flags)
{
return do_jffs2_getxattr(inode, JFFS2_XPREFIX_USER,
name, buffer, size);
Expand Down
5 changes: 3 additions & 2 deletions fs/jfs/xattr.c
Expand Up @@ -925,7 +925,7 @@ static int __jfs_xattr_set(struct inode *inode, const char *name,

static int jfs_xattr_get(const struct xattr_handler *handler,
struct dentry *unused, struct inode *inode,
const char *name, void *value, size_t size)
const char *name, void *value, size_t size, int flags)
{
name = xattr_full_name(handler, name);
return __jfs_getxattr(inode, name, value, size);
Expand All @@ -942,7 +942,8 @@ static int jfs_xattr_set(const struct xattr_handler *handler,

static int jfs_xattr_get_os2(const struct xattr_handler *handler,
struct dentry *unused, struct inode *inode,
const char *name, void *value, size_t size)
const char *name, void *value, size_t size,
int flags)
{
if (is_known_namespace(name))
return -EOPNOTSUPP;
Expand Down
3 changes: 2 additions & 1 deletion fs/kernfs/inode.c
Expand Up @@ -310,7 +310,8 @@ int kernfs_xattr_set(struct kernfs_node *kn, const char *name,

static int kernfs_vfs_xattr_get(const struct xattr_handler *handler,
struct dentry *unused, struct inode *inode,
const char *suffix, void *value, size_t size)
const char *suffix, void *value, size_t size,
int flags)
{
const char *name = xattr_full_name(handler, suffix);
struct kernfs_node *kn = inode->i_private;
Expand Down
9 changes: 6 additions & 3 deletions fs/nfs/nfs4proc.c
Expand Up @@ -7394,7 +7394,8 @@ static int nfs4_xattr_set_nfs4_acl(const struct xattr_handler *handler,

static int nfs4_xattr_get_nfs4_acl(const struct xattr_handler *handler,
struct dentry *unused, struct inode *inode,
const char *key, void *buf, size_t buflen)
const char *key, void *buf, size_t buflen,
int flags)
{
return nfs4_proc_get_acl(inode, buf, buflen);
}
Expand All @@ -7419,7 +7420,8 @@ static int nfs4_xattr_set_nfs4_label(const struct xattr_handler *handler,

static int nfs4_xattr_get_nfs4_label(const struct xattr_handler *handler,
struct dentry *unused, struct inode *inode,
const char *key, void *buf, size_t buflen)
const char *key, void *buf, size_t buflen,
int flags)
{
if (security_ismaclabel(key))
return nfs4_get_security_label(inode, buf, buflen);
Expand Down Expand Up @@ -7496,7 +7498,8 @@ static int nfs4_xattr_set_nfs4_user(const struct xattr_handler *handler,

static int nfs4_xattr_get_nfs4_user(const struct xattr_handler *handler,
struct dentry *unused, struct inode *inode,
const char *key, void *buf, size_t buflen)
const char *key, void *buf, size_t buflen,
int flags)
{
struct nfs_access_entry cache;
ssize_t ret;
Expand Down

0 comments on commit 1e4bdc6

Please sign in to comment.