Skip to content

Commit 13d3408

Browse files
Andreas GruenbacherAl Viro
Andreas Gruenbacher
authored and
Al Viro
committed
ubifs: Remove unused security xattr handler
Ubifs installs a security xattr handler in sb->s_xattr but doesn't use the generic_{get,set,list,remove}xattr inode operations needed for processing this list of attribute handlers; the handler is never called. Instead, ubifs uses its own xattr handlers which also process security xattrs. Remove the dead code. Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com> Reviewed-by: Richard Weinberger <richard@nod.at> Cc: Artem Bityutskiy <dedekind1@gmail.com> Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: linux-mtd@lists.infradead.org Cc: Subodh Nijsure <snijsure@grid-net.com> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
1 parent dae5f57 commit 13d3408

File tree

3 files changed

+0
-42
lines changed

3 files changed

+0
-42
lines changed

fs/ubifs/super.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2037,7 +2037,6 @@ static int ubifs_fill_super(struct super_block *sb, void *data, int silent)
20372037
if (c->max_inode_sz > MAX_LFS_FILESIZE)
20382038
sb->s_maxbytes = c->max_inode_sz = MAX_LFS_FILESIZE;
20392039
sb->s_op = &ubifs_super_operations;
2040-
sb->s_xattr = ubifs_xattr_handlers;
20412040

20422041
mutex_lock(&c->umount_mutex);
20432042
err = mount_ubifs(c);

fs/ubifs/ubifs.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1470,7 +1470,6 @@ extern spinlock_t ubifs_infos_lock;
14701470
extern atomic_long_t ubifs_clean_zn_cnt;
14711471
extern struct kmem_cache *ubifs_inode_slab;
14721472
extern const struct super_operations ubifs_super_operations;
1473-
extern const struct xattr_handler *ubifs_xattr_handlers[];
14741473
extern const struct address_space_operations ubifs_file_address_operations;
14751474
extern const struct file_operations ubifs_file_operations;
14761475
extern const struct inode_operations ubifs_file_inode_operations;

fs/ubifs/xattr.c

Lines changed: 0 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -582,46 +582,6 @@ int ubifs_removexattr(struct dentry *dentry, const char *name)
582582
return err;
583583
}
584584

585-
static size_t security_listxattr(struct dentry *d, char *list, size_t list_size,
586-
const char *name, size_t name_len, int flags)
587-
{
588-
const int prefix_len = XATTR_SECURITY_PREFIX_LEN;
589-
const size_t total_len = prefix_len + name_len + 1;
590-
591-
if (list && total_len <= list_size) {
592-
memcpy(list, XATTR_SECURITY_PREFIX, prefix_len);
593-
memcpy(list + prefix_len, name, name_len);
594-
list[prefix_len + name_len] = '\0';
595-
}
596-
597-
return total_len;
598-
}
599-
600-
static int security_getxattr(struct dentry *d, const char *name, void *buffer,
601-
size_t size, int flags)
602-
{
603-
return ubifs_getxattr(d, name, buffer, size);
604-
}
605-
606-
static int security_setxattr(struct dentry *d, const char *name,
607-
const void *value, size_t size, int flags,
608-
int handler_flags)
609-
{
610-
return ubifs_setxattr(d, name, value, size, flags);
611-
}
612-
613-
static const struct xattr_handler ubifs_xattr_security_handler = {
614-
.prefix = XATTR_SECURITY_PREFIX,
615-
.list = security_listxattr,
616-
.get = security_getxattr,
617-
.set = security_setxattr,
618-
};
619-
620-
const struct xattr_handler *ubifs_xattr_handlers[] = {
621-
&ubifs_xattr_security_handler,
622-
NULL,
623-
};
624-
625585
static int init_xattrs(struct inode *inode, const struct xattr *xattr_array,
626586
void *fs_info)
627587
{

0 commit comments

Comments
 (0)