Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs

Pull vfs updates from Al Viro:
 "Assorted stuff; the biggest pile here is Christoph's ACL series.  Plus
  assorted cleanups and fixes all over the place...

  There will be another pile later this week"

* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs: (43 commits)
  __dentry_path() fixes
  vfs: Remove second variable named error in __dentry_path
  vfs: Is mounted should be testing mnt_ns for NULL or error.
  Fix race when checking i_size on direct i/o read
  hfsplus: remove can_set_xattr
  nfsd: use get_acl and ->set_acl
  fs: remove generic_acl
  nfs: use generic posix ACL infrastructure for v3 Posix ACLs
  gfs2: use generic posix ACL infrastructure
  jfs: use generic posix ACL infrastructure
  xfs: use generic posix ACL infrastructure
  reiserfs: use generic posix ACL infrastructure
  ocfs2: use generic posix ACL infrastructure
  jffs2: use generic posix ACL infrastructure
  hfsplus: use generic posix ACL infrastructure
  f2fs: use generic posix ACL infrastructure
  ext2/3/4: use generic posix ACL infrastructure
  btrfs: use generic posix ACL infrastructure
  fs: make posix_acl_create more useful
  fs: make posix_acl_chmod more useful
  ...
This commit is contained in:
Linus Torvalds
2014-01-28 08:38:04 -08:00
179 changed files with 1554 additions and 3862 deletions
+1 -1
View File
@@ -17,7 +17,7 @@
#ifdef CONFIG_MTD_UCLINUX #ifdef CONFIG_MTD_UCLINUX
#include <linux/mtd/map.h> #include <linux/mtd/map.h>
#include <linux/ext2_fs.h> #include <linux/ext2_fs.h>
#include <linux/cramfs_fs.h> #include <uapi/linux/cramfs_fs.h>
#include <linux/romfs_fs.h> #include <linux/romfs_fs.h>
#endif #endif
@@ -24,8 +24,6 @@
#include <linux/mtd/mtdram.h> #include <linux/mtd/mtdram.h>
#include <linux/mtd/partitions.h> #include <linux/mtd/partitions.h>
#include <linux/cramfs_fs.h>
#include <asm/axisflashmap.h> #include <asm/axisflashmap.h>
#include <asm/mmu.h> #include <asm/mmu.h>
+2 -2
View File
@@ -156,7 +156,7 @@ int v9fs_acl_chmod(struct inode *inode, struct p9_fid *fid)
return -EOPNOTSUPP; return -EOPNOTSUPP;
acl = v9fs_get_cached_acl(inode, ACL_TYPE_ACCESS); acl = v9fs_get_cached_acl(inode, ACL_TYPE_ACCESS);
if (acl) { if (acl) {
retval = posix_acl_chmod(&acl, GFP_KERNEL, inode->i_mode); retval = __posix_acl_chmod(&acl, GFP_KERNEL, inode->i_mode);
if (retval) if (retval)
return retval; return retval;
set_cached_acl(inode, ACL_TYPE_ACCESS, acl); set_cached_acl(inode, ACL_TYPE_ACCESS, acl);
@@ -200,7 +200,7 @@ int v9fs_acl_mode(struct inode *dir, umode_t *modep,
if (acl) { if (acl) {
if (S_ISDIR(mode)) if (S_ISDIR(mode))
*dpacl = posix_acl_dup(acl); *dpacl = posix_acl_dup(acl);
retval = posix_acl_create(&acl, GFP_NOFS, &mode); retval = __posix_acl_create(&acl, GFP_NOFS, &mode);
if (retval < 0) if (retval < 0)
return retval; return retval;
if (retval > 0) if (retval > 0)
+1 -5
View File
@@ -68,10 +68,6 @@ source "fs/quota/Kconfig"
source "fs/autofs4/Kconfig" source "fs/autofs4/Kconfig"
source "fs/fuse/Kconfig" source "fs/fuse/Kconfig"
config GENERIC_ACL
bool
select FS_POSIX_ACL
menu "Caches" menu "Caches"
source "fs/fscache/Kconfig" source "fs/fscache/Kconfig"
@@ -119,7 +115,7 @@ config TMPFS_POSIX_ACL
bool "Tmpfs POSIX Access Control Lists" bool "Tmpfs POSIX Access Control Lists"
depends on TMPFS depends on TMPFS
select TMPFS_XATTR select TMPFS_XATTR
select GENERIC_ACL select FS_POSIX_ACL
help help
POSIX Access Control Lists (ACLs) support additional access rights POSIX Access Control Lists (ACLs) support additional access rights
for users and groups beyond the standard owner/group/world scheme, for users and groups beyond the standard owner/group/world scheme,
+1 -2
View File
@@ -42,9 +42,8 @@ obj-$(CONFIG_BINFMT_SOM) += binfmt_som.o
obj-$(CONFIG_BINFMT_FLAT) += binfmt_flat.o obj-$(CONFIG_BINFMT_FLAT) += binfmt_flat.o
obj-$(CONFIG_FS_MBCACHE) += mbcache.o obj-$(CONFIG_FS_MBCACHE) += mbcache.o
obj-$(CONFIG_FS_POSIX_ACL) += posix_acl.o xattr_acl.o obj-$(CONFIG_FS_POSIX_ACL) += posix_acl.o
obj-$(CONFIG_NFS_COMMON) += nfs_common/ obj-$(CONFIG_NFS_COMMON) += nfs_common/
obj-$(CONFIG_GENERIC_ACL) += generic_acl.o
obj-$(CONFIG_COREDUMP) += coredump.o obj-$(CONFIG_COREDUMP) += coredump.o
obj-$(CONFIG_SYSCTL) += drop_caches.o obj-$(CONFIG_SYSCTL) += drop_caches.o
+25 -32
View File
@@ -49,11 +49,6 @@ affs_put_super(struct super_block *sb)
pr_debug("AFFS: put_super()\n"); pr_debug("AFFS: put_super()\n");
cancel_delayed_work_sync(&sbi->sb_work); cancel_delayed_work_sync(&sbi->sb_work);
kfree(sbi->s_prefix);
affs_free_bitmap(sb);
affs_brelse(sbi->s_root_bh);
kfree(sbi);
sb->s_fs_info = NULL;
} }
static int static int
@@ -316,7 +311,7 @@ static int affs_fill_super(struct super_block *sb, void *data, int silent)
unsigned long mount_flags; unsigned long mount_flags;
int tmp_flags; /* fix remount prototype... */ int tmp_flags; /* fix remount prototype... */
u8 sig[4]; u8 sig[4];
int ret = -EINVAL; int ret;
save_mount_options(sb, data); save_mount_options(sb, data);
@@ -412,17 +407,19 @@ static int affs_fill_super(struct super_block *sb, void *data, int silent)
if (!silent) if (!silent)
printk(KERN_ERR "AFFS: No valid root block on device %s\n", printk(KERN_ERR "AFFS: No valid root block on device %s\n",
sb->s_id); sb->s_id);
goto out_error; return -EINVAL;
/* N.B. after this point bh must be released */ /* N.B. after this point bh must be released */
got_root: got_root:
/* Keep super block in cache */
sbi->s_root_bh = root_bh;
root_block = sbi->s_root_block; root_block = sbi->s_root_block;
/* Find out which kind of FS we have */ /* Find out which kind of FS we have */
boot_bh = sb_bread(sb, 0); boot_bh = sb_bread(sb, 0);
if (!boot_bh) { if (!boot_bh) {
printk(KERN_ERR "AFFS: Cannot read boot block\n"); printk(KERN_ERR "AFFS: Cannot read boot block\n");
goto out_error; return -EINVAL;
} }
memcpy(sig, boot_bh->b_data, 4); memcpy(sig, boot_bh->b_data, 4);
brelse(boot_bh); brelse(boot_bh);
@@ -471,7 +468,7 @@ got_root:
default: default:
printk(KERN_ERR "AFFS: Unknown filesystem on device %s: %08X\n", printk(KERN_ERR "AFFS: Unknown filesystem on device %s: %08X\n",
sb->s_id, chksum); sb->s_id, chksum);
goto out_error; return -EINVAL;
} }
if (mount_flags & SF_VERBOSE) { if (mount_flags & SF_VERBOSE) {
@@ -488,22 +485,17 @@ got_root:
if (sbi->s_flags & SF_OFS) if (sbi->s_flags & SF_OFS)
sbi->s_data_blksize -= 24; sbi->s_data_blksize -= 24;
/* Keep super block in cache */
sbi->s_root_bh = root_bh;
/* N.B. after this point s_root_bh must be released */
tmp_flags = sb->s_flags; tmp_flags = sb->s_flags;
if (affs_init_bitmap(sb, &tmp_flags)) ret = affs_init_bitmap(sb, &tmp_flags);
goto out_error; if (ret)
return ret;
sb->s_flags = tmp_flags; sb->s_flags = tmp_flags;
/* set up enough so that it can read an inode */ /* set up enough so that it can read an inode */
root_inode = affs_iget(sb, root_block); root_inode = affs_iget(sb, root_block);
if (IS_ERR(root_inode)) { if (IS_ERR(root_inode))
ret = PTR_ERR(root_inode); return PTR_ERR(root_inode);
goto out_error;
}
if (AFFS_SB(sb)->s_flags & SF_INTL) if (AFFS_SB(sb)->s_flags & SF_INTL)
sb->s_d_op = &affs_intl_dentry_operations; sb->s_d_op = &affs_intl_dentry_operations;
@@ -513,22 +505,11 @@ got_root:
sb->s_root = d_make_root(root_inode); sb->s_root = d_make_root(root_inode);
if (!sb->s_root) { if (!sb->s_root) {
printk(KERN_ERR "AFFS: Get root inode failed\n"); printk(KERN_ERR "AFFS: Get root inode failed\n");
goto out_error; return -ENOMEM;
} }
pr_debug("AFFS: s_flags=%lX\n",sb->s_flags); pr_debug("AFFS: s_flags=%lX\n",sb->s_flags);
return 0; return 0;
/*
* Begin the cascaded cleanup ...
*/
out_error:
kfree(sbi->s_bitmap);
affs_brelse(root_bh);
kfree(sbi->s_prefix);
kfree(sbi);
sb->s_fs_info = NULL;
return ret;
} }
static int static int
@@ -615,11 +596,23 @@ static struct dentry *affs_mount(struct file_system_type *fs_type,
return mount_bdev(fs_type, flags, dev_name, data, affs_fill_super); return mount_bdev(fs_type, flags, dev_name, data, affs_fill_super);
} }
static void affs_kill_sb(struct super_block *sb)
{
struct affs_sb_info *sbi = AFFS_SB(sb);
kill_block_super(sb);
if (sbi) {
affs_free_bitmap(sb);
affs_brelse(sbi->s_root_bh);
kfree(sbi->s_prefix);
kfree(sbi);
}
}
static struct file_system_type affs_fs_type = { static struct file_system_type affs_fs_type = {
.owner = THIS_MODULE, .owner = THIS_MODULE,
.name = "affs", .name = "affs",
.mount = affs_mount, .mount = affs_mount,
.kill_sb = kill_block_super, .kill_sb = affs_kill_sb,
.fs_flags = FS_REQUIRES_DEV, .fs_flags = FS_REQUIRES_DEV,
}; };
MODULE_ALIAS_FS("affs"); MODULE_ALIAS_FS("affs");
-1
View File
@@ -195,7 +195,6 @@ struct afs_cell {
struct list_head link; /* main cell list link */ struct list_head link; /* main cell list link */
struct key *anonymous_key; /* anonymous user key for this cell */ struct key *anonymous_key; /* anonymous user key for this cell */
struct list_head proc_link; /* /proc cell list link */ struct list_head proc_link; /* /proc cell list link */
struct proc_dir_entry *proc_dir; /* /proc dir for this cell */
#ifdef CONFIG_AFS_FSCACHE #ifdef CONFIG_AFS_FSCACHE
struct fscache_cookie *cache; /* caching cookie */ struct fscache_cookie *cache; /* caching cookie */
#endif #endif
+22 -100
View File
@@ -41,11 +41,8 @@ static const struct file_operations afs_proc_cells_fops = {
.write = afs_proc_cells_write, .write = afs_proc_cells_write,
.llseek = seq_lseek, .llseek = seq_lseek,
.release = seq_release, .release = seq_release,
.owner = THIS_MODULE,
}; };
static int afs_proc_rootcell_open(struct inode *inode, struct file *file);
static int afs_proc_rootcell_release(struct inode *inode, struct file *file);
static ssize_t afs_proc_rootcell_read(struct file *file, char __user *buf, static ssize_t afs_proc_rootcell_read(struct file *file, char __user *buf,
size_t size, loff_t *_pos); size_t size, loff_t *_pos);
static ssize_t afs_proc_rootcell_write(struct file *file, static ssize_t afs_proc_rootcell_write(struct file *file,
@@ -53,17 +50,12 @@ static ssize_t afs_proc_rootcell_write(struct file *file,
size_t size, loff_t *_pos); size_t size, loff_t *_pos);
static const struct file_operations afs_proc_rootcell_fops = { static const struct file_operations afs_proc_rootcell_fops = {
.open = afs_proc_rootcell_open,
.read = afs_proc_rootcell_read, .read = afs_proc_rootcell_read,
.write = afs_proc_rootcell_write, .write = afs_proc_rootcell_write,
.llseek = no_llseek, .llseek = no_llseek,
.release = afs_proc_rootcell_release,
.owner = THIS_MODULE,
}; };
static int afs_proc_cell_volumes_open(struct inode *inode, struct file *file); static int afs_proc_cell_volumes_open(struct inode *inode, struct file *file);
static int afs_proc_cell_volumes_release(struct inode *inode,
struct file *file);
static void *afs_proc_cell_volumes_start(struct seq_file *p, loff_t *pos); static void *afs_proc_cell_volumes_start(struct seq_file *p, loff_t *pos);
static void *afs_proc_cell_volumes_next(struct seq_file *p, void *v, static void *afs_proc_cell_volumes_next(struct seq_file *p, void *v,
loff_t *pos); loff_t *pos);
@@ -81,14 +73,11 @@ static const struct file_operations afs_proc_cell_volumes_fops = {
.open = afs_proc_cell_volumes_open, .open = afs_proc_cell_volumes_open,
.read = seq_read, .read = seq_read,
.llseek = seq_lseek, .llseek = seq_lseek,
.release = afs_proc_cell_volumes_release, .release = seq_release,
.owner = THIS_MODULE,
}; };
static int afs_proc_cell_vlservers_open(struct inode *inode, static int afs_proc_cell_vlservers_open(struct inode *inode,
struct file *file); struct file *file);
static int afs_proc_cell_vlservers_release(struct inode *inode,
struct file *file);
static void *afs_proc_cell_vlservers_start(struct seq_file *p, loff_t *pos); static void *afs_proc_cell_vlservers_start(struct seq_file *p, loff_t *pos);
static void *afs_proc_cell_vlservers_next(struct seq_file *p, void *v, static void *afs_proc_cell_vlservers_next(struct seq_file *p, void *v,
loff_t *pos); loff_t *pos);
@@ -106,13 +95,10 @@ static const struct file_operations afs_proc_cell_vlservers_fops = {
.open = afs_proc_cell_vlservers_open, .open = afs_proc_cell_vlservers_open,
.read = seq_read, .read = seq_read,
.llseek = seq_lseek, .llseek = seq_lseek,
.release = afs_proc_cell_vlservers_release, .release = seq_release,
.owner = THIS_MODULE,
}; };
static int afs_proc_cell_servers_open(struct inode *inode, struct file *file); static int afs_proc_cell_servers_open(struct inode *inode, struct file *file);
static int afs_proc_cell_servers_release(struct inode *inode,
struct file *file);
static void *afs_proc_cell_servers_start(struct seq_file *p, loff_t *pos); static void *afs_proc_cell_servers_start(struct seq_file *p, loff_t *pos);
static void *afs_proc_cell_servers_next(struct seq_file *p, void *v, static void *afs_proc_cell_servers_next(struct seq_file *p, void *v,
loff_t *pos); loff_t *pos);
@@ -130,8 +116,7 @@ static const struct file_operations afs_proc_cell_servers_fops = {
.open = afs_proc_cell_servers_open, .open = afs_proc_cell_servers_open,
.read = seq_read, .read = seq_read,
.llseek = seq_lseek, .llseek = seq_lseek,
.release = afs_proc_cell_servers_release, .release = seq_release,
.owner = THIS_MODULE,
}; };
/* /*
@@ -139,29 +124,21 @@ static const struct file_operations afs_proc_cell_servers_fops = {
*/ */
int afs_proc_init(void) int afs_proc_init(void)
{ {
struct proc_dir_entry *p;
_enter(""); _enter("");
proc_afs = proc_mkdir("fs/afs", NULL); proc_afs = proc_mkdir("fs/afs", NULL);
if (!proc_afs) if (!proc_afs)
goto error_dir; goto error_dir;
p = proc_create("cells", 0, proc_afs, &afs_proc_cells_fops); if (!proc_create("cells", 0, proc_afs, &afs_proc_cells_fops) ||
if (!p) !proc_create("rootcell", 0, proc_afs, &afs_proc_rootcell_fops))
goto error_cells; goto error_tree;
p = proc_create("rootcell", 0, proc_afs, &afs_proc_rootcell_fops);
if (!p)
goto error_rootcell;
_leave(" = 0"); _leave(" = 0");
return 0; return 0;
error_rootcell: error_tree:
remove_proc_entry("cells", proc_afs); remove_proc_subtree("fs/afs", NULL);
error_cells:
remove_proc_entry("fs/afs", NULL);
error_dir: error_dir:
_leave(" = -ENOMEM"); _leave(" = -ENOMEM");
return -ENOMEM; return -ENOMEM;
@@ -172,9 +149,7 @@ error_dir:
*/ */
void afs_proc_cleanup(void) void afs_proc_cleanup(void)
{ {
remove_proc_entry("rootcell", proc_afs); remove_proc_subtree("fs/afs", NULL);
remove_proc_entry("cells", proc_afs);
remove_proc_entry("fs/afs", NULL);
} }
/* /*
@@ -319,19 +294,6 @@ inval:
goto done; goto done;
} }
/*
* Stubs for /proc/fs/afs/rootcell
*/
static int afs_proc_rootcell_open(struct inode *inode, struct file *file)
{
return 0;
}
static int afs_proc_rootcell_release(struct inode *inode, struct file *file)
{
return 0;
}
static ssize_t afs_proc_rootcell_read(struct file *file, char __user *buf, static ssize_t afs_proc_rootcell_read(struct file *file, char __user *buf,
size_t size, loff_t *_pos) size_t size, loff_t *_pos)
{ {
@@ -387,38 +349,27 @@ nomem:
*/ */
int afs_proc_cell_setup(struct afs_cell *cell) int afs_proc_cell_setup(struct afs_cell *cell)
{ {
struct proc_dir_entry *p; struct proc_dir_entry *dir;
_enter("%p{%s}", cell, cell->name); _enter("%p{%s}", cell, cell->name);
cell->proc_dir = proc_mkdir(cell->name, proc_afs); dir = proc_mkdir(cell->name, proc_afs);
if (!cell->proc_dir) if (!dir)
goto error_dir; goto error_dir;
p = proc_create_data("servers", 0, cell->proc_dir, if (!proc_create_data("servers", 0, dir,
&afs_proc_cell_servers_fops, cell); &afs_proc_cell_servers_fops, cell) ||
if (!p) !proc_create_data("vlservers", 0, dir,
goto error_servers; &afs_proc_cell_vlservers_fops, cell) ||
!proc_create_data("volumes", 0, dir,
p = proc_create_data("vlservers", 0, cell->proc_dir, &afs_proc_cell_volumes_fops, cell))
&afs_proc_cell_vlservers_fops, cell); goto error_tree;
if (!p)
goto error_vlservers;
p = proc_create_data("volumes", 0, cell->proc_dir,
&afs_proc_cell_volumes_fops, cell);
if (!p)
goto error_volumes;
_leave(" = 0"); _leave(" = 0");
return 0; return 0;
error_volumes: error_tree:
remove_proc_entry("vlservers", cell->proc_dir); remove_proc_subtree(cell->name, proc_afs);
error_vlservers:
remove_proc_entry("servers", cell->proc_dir);
error_servers:
remove_proc_entry(cell->name, proc_afs);
error_dir: error_dir:
_leave(" = -ENOMEM"); _leave(" = -ENOMEM");
return -ENOMEM; return -ENOMEM;
@@ -431,10 +382,7 @@ void afs_proc_cell_remove(struct afs_cell *cell)
{ {
_enter(""); _enter("");
remove_proc_entry("volumes", cell->proc_dir); remove_proc_subtree(cell->name, proc_afs);
remove_proc_entry("vlservers", cell->proc_dir);
remove_proc_entry("servers", cell->proc_dir);
remove_proc_entry(cell->name, proc_afs);
_leave(""); _leave("");
} }
@@ -462,14 +410,6 @@ static int afs_proc_cell_volumes_open(struct inode *inode, struct file *file)
return 0; return 0;
} }
/*
* close the file and release the ref to the cell
*/
static int afs_proc_cell_volumes_release(struct inode *inode, struct file *file)
{
return seq_release(inode, file);
}
/* /*
* set up the iterator to start reading from the cells list and return the * set up the iterator to start reading from the cells list and return the
* first item * first item
@@ -568,15 +508,6 @@ static int afs_proc_cell_vlservers_open(struct inode *inode, struct file *file)
return 0; return 0;
} }
/*
* close the file and release the ref to the cell
*/
static int afs_proc_cell_vlservers_release(struct inode *inode,
struct file *file)
{
return seq_release(inode, file);
}
/* /*
* set up the iterator to start reading from the cells list and return the * set up the iterator to start reading from the cells list and return the
* first item * first item
@@ -672,15 +603,6 @@ static int afs_proc_cell_servers_open(struct inode *inode, struct file *file)
return 0; return 0;
} }
/*
* close the file and release the ref to the cell
*/
static int afs_proc_cell_servers_release(struct inode *inode,
struct file *file)
{
return seq_release(inode, file);
}
/* /*
* set up the iterator to start reading from the cells list and return the * set up the iterator to start reading from the cells list and return the
* first item * first item
+2 -2
View File
@@ -324,8 +324,8 @@ static struct inode *befs_iget(struct super_block *sb, unsigned long ino)
befs_debug(sb, "---> befs_read_inode() " "inode = %lu", ino); befs_debug(sb, "---> befs_read_inode() " "inode = %lu", ino);
inode = iget_locked(sb, ino); inode = iget_locked(sb, ino);
if (IS_ERR(inode)) if (!inode)
return inode; return ERR_PTR(-ENOMEM);
if (!(inode->i_state & I_NEW)) if (!(inode->i_state & I_NEW))
return inode; return inode;
+16 -122
View File
@@ -35,13 +35,6 @@ struct posix_acl *btrfs_get_acl(struct inode *inode, int type)
char *value = NULL; char *value = NULL;
struct posix_acl *acl; struct posix_acl *acl;
if (!IS_POSIXACL(inode))
return NULL;
acl = get_cached_acl(inode, type);
if (acl != ACL_NOT_CACHED)
return acl;
switch (type) { switch (type) {
case ACL_TYPE_ACCESS: case ACL_TYPE_ACCESS:
name = POSIX_ACL_XATTR_ACCESS; name = POSIX_ACL_XATTR_ACCESS;
@@ -76,31 +69,10 @@ struct posix_acl *btrfs_get_acl(struct inode *inode, int type)
return acl; return acl;
} }
static int btrfs_xattr_acl_get(struct dentry *dentry, const char *name,
void *value, size_t size, int type)
{
struct posix_acl *acl;
int ret = 0;
if (!IS_POSIXACL(dentry->d_inode))
return -EOPNOTSUPP;
acl = btrfs_get_acl(dentry->d_inode, type);
if (IS_ERR(acl))
return PTR_ERR(acl);
if (acl == NULL)
return -ENODATA;
ret = posix_acl_to_xattr(&init_user_ns, acl, value, size);
posix_acl_release(acl);
return ret;
}
/* /*
* Needs to be called with fs_mutex held * Needs to be called with fs_mutex held
*/ */
static int btrfs_set_acl(struct btrfs_trans_handle *trans, static int __btrfs_set_acl(struct btrfs_trans_handle *trans,
struct inode *inode, struct posix_acl *acl, int type) struct inode *inode, struct posix_acl *acl, int type)
{ {
int ret, size = 0; int ret, size = 0;
@@ -158,35 +130,9 @@ out:
return ret; return ret;
} }
static int btrfs_xattr_acl_set(struct dentry *dentry, const char *name, int btrfs_set_acl(struct inode *inode, struct posix_acl *acl, int type)
const void *value, size_t size, int flags, int type)
{ {
int ret; return __btrfs_set_acl(NULL, inode, acl, type);
struct posix_acl *acl = NULL;
if (!inode_owner_or_capable(dentry->d_inode))
return -EPERM;
if (!IS_POSIXACL(dentry->d_inode))
return -EOPNOTSUPP;
if (value) {
acl = posix_acl_from_xattr(&init_user_ns, value, size);
if (IS_ERR(acl))
return PTR_ERR(acl);
if (acl) {
ret = posix_acl_valid(acl);
if (ret)
goto out;
}
}
ret = btrfs_set_acl(NULL, dentry->d_inode, acl, type);
out:
posix_acl_release(acl);
return ret;
} }
/* /*
@@ -197,83 +143,31 @@ out:
int btrfs_init_acl(struct btrfs_trans_handle *trans, int btrfs_init_acl(struct btrfs_trans_handle *trans,
struct inode *inode, struct inode *dir) struct inode *inode, struct inode *dir)
{ {
struct posix_acl *acl = NULL; struct posix_acl *default_acl, *acl;
int ret = 0; int ret = 0;
/* this happens with subvols */ /* this happens with subvols */
if (!dir) if (!dir)
return 0; return 0;
if (!S_ISLNK(inode->i_mode)) { ret = posix_acl_create(dir, &inode->i_mode, &default_acl, &acl);
if (IS_POSIXACL(dir)) { if (ret)
acl = btrfs_get_acl(dir, ACL_TYPE_DEFAULT); return ret;
if (IS_ERR(acl))
return PTR_ERR(acl);
}
if (!acl) if (default_acl) {
inode->i_mode &= ~current_umask(); ret = __btrfs_set_acl(trans, inode, default_acl,
}
if (IS_POSIXACL(dir) && acl) {
if (S_ISDIR(inode->i_mode)) {
ret = btrfs_set_acl(trans, inode, acl,
ACL_TYPE_DEFAULT); ACL_TYPE_DEFAULT);
if (ret) posix_acl_release(default_acl);
goto failed;
} }
ret = posix_acl_create(&acl, GFP_NOFS, &inode->i_mode);
if (ret < 0)
return ret;
if (ret > 0) { if (acl) {
/* we need an acl */ if (!ret)
ret = btrfs_set_acl(trans, inode, acl, ACL_TYPE_ACCESS); ret = __btrfs_set_acl(trans, inode, acl,
} else if (ret < 0) { ACL_TYPE_ACCESS);
cache_no_acl(inode);
}
} else {
cache_no_acl(inode);
}
failed:
posix_acl_release(acl); posix_acl_release(acl);
return ret;
} }
int btrfs_acl_chmod(struct inode *inode) if (!default_acl && !acl)
{ cache_no_acl(inode);
struct posix_acl *acl;
int ret = 0;
if (S_ISLNK(inode->i_mode))
return -EOPNOTSUPP;
if (!IS_POSIXACL(inode))
return 0;
acl = btrfs_get_acl(inode, ACL_TYPE_ACCESS);
if (IS_ERR_OR_NULL(acl))
return PTR_ERR(acl);
ret = posix_acl_chmod(&acl, GFP_KERNEL, inode->i_mode);
if (ret)
return ret;
ret = btrfs_set_acl(NULL, inode, acl, ACL_TYPE_ACCESS);
posix_acl_release(acl);
return ret; return ret;
} }
const struct xattr_handler btrfs_xattr_acl_default_handler = {
.prefix = POSIX_ACL_XATTR_DEFAULT,
.flags = ACL_TYPE_DEFAULT,
.get = btrfs_xattr_acl_get,
.set = btrfs_xattr_acl_set,
};
const struct xattr_handler btrfs_xattr_acl_access_handler = {
.prefix = POSIX_ACL_XATTR_ACCESS,
.flags = ACL_TYPE_ACCESS,
.get = btrfs_xattr_acl_get,
.set = btrfs_xattr_acl_set,
};
+2 -5
View File
@@ -3899,20 +3899,17 @@ do { \
/* acl.c */ /* acl.c */
#ifdef CONFIG_BTRFS_FS_POSIX_ACL #ifdef CONFIG_BTRFS_FS_POSIX_ACL
struct posix_acl *btrfs_get_acl(struct inode *inode, int type); struct posix_acl *btrfs_get_acl(struct inode *inode, int type);
int btrfs_set_acl(struct inode *inode, struct posix_acl *acl, int type);
int btrfs_init_acl(struct btrfs_trans_handle *trans, int btrfs_init_acl(struct btrfs_trans_handle *trans,
struct inode *inode, struct inode *dir); struct inode *inode, struct inode *dir);
int btrfs_acl_chmod(struct inode *inode);
#else #else
#define btrfs_get_acl NULL #define btrfs_get_acl NULL
#define btrfs_set_acl NULL
static inline int btrfs_init_acl(struct btrfs_trans_handle *trans, static inline int btrfs_init_acl(struct btrfs_trans_handle *trans,
struct inode *inode, struct inode *dir) struct inode *inode, struct inode *dir)
{ {
return 0; return 0;
} }
static inline int btrfs_acl_chmod(struct inode *inode)
{
return 0;
}
#endif #endif
/* relocation.c */ /* relocation.c */
+5 -2
View File
@@ -4468,7 +4468,7 @@ static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
err = btrfs_dirty_inode(inode); err = btrfs_dirty_inode(inode);
if (!err && attr->ia_valid & ATTR_MODE) if (!err && attr->ia_valid & ATTR_MODE)
err = btrfs_acl_chmod(inode); err = posix_acl_chmod(inode, inode->i_mode);
} }
return err; return err;
@@ -8653,12 +8653,14 @@ static const struct inode_operations btrfs_dir_inode_operations = {
.removexattr = btrfs_removexattr, .removexattr = btrfs_removexattr,
.permission = btrfs_permission, .permission = btrfs_permission,
.get_acl = btrfs_get_acl, .get_acl = btrfs_get_acl,
.set_acl = btrfs_set_acl,
.update_time = btrfs_update_time, .update_time = btrfs_update_time,
}; };
static const struct inode_operations btrfs_dir_ro_inode_operations = { static const struct inode_operations btrfs_dir_ro_inode_operations = {
.lookup = btrfs_lookup, .lookup = btrfs_lookup,
.permission = btrfs_permission, .permission = btrfs_permission,
.get_acl = btrfs_get_acl, .get_acl = btrfs_get_acl,
.set_acl = btrfs_set_acl,
.update_time = btrfs_update_time, .update_time = btrfs_update_time,
}; };
@@ -8728,6 +8730,7 @@ static const struct inode_operations btrfs_file_inode_operations = {
.permission = btrfs_permission, .permission = btrfs_permission,
.fiemap = btrfs_fiemap, .fiemap = btrfs_fiemap,
.get_acl = btrfs_get_acl, .get_acl = btrfs_get_acl,
.set_acl = btrfs_set_acl,
.update_time = btrfs_update_time, .update_time = btrfs_update_time,
}; };
static const struct inode_operations btrfs_special_inode_operations = { static const struct inode_operations btrfs_special_inode_operations = {
@@ -8739,6 +8742,7 @@ static const struct inode_operations btrfs_special_inode_operations = {
.listxattr = btrfs_listxattr, .listxattr = btrfs_listxattr,
.removexattr = btrfs_removexattr, .removexattr = btrfs_removexattr,
.get_acl = btrfs_get_acl, .get_acl = btrfs_get_acl,
.set_acl = btrfs_set_acl,
.update_time = btrfs_update_time, .update_time = btrfs_update_time,
}; };
static const struct inode_operations btrfs_symlink_inode_operations = { static const struct inode_operations btrfs_symlink_inode_operations = {
@@ -8752,7 +8756,6 @@ static const struct inode_operations btrfs_symlink_inode_operations = {
.getxattr = btrfs_getxattr, .getxattr = btrfs_getxattr,
.listxattr = btrfs_listxattr, .listxattr = btrfs_listxattr,
.removexattr = btrfs_removexattr, .removexattr = btrfs_removexattr,
.get_acl = btrfs_get_acl,
.update_time = btrfs_update_time, .update_time = btrfs_update_time,
}; };
+20 -42
View File
@@ -2686,14 +2686,11 @@ out_unlock:
#define BTRFS_MAX_DEDUPE_LEN (16 * 1024 * 1024) #define BTRFS_MAX_DEDUPE_LEN (16 * 1024 * 1024)
static long btrfs_ioctl_file_extent_same(struct file *file, static long btrfs_ioctl_file_extent_same(struct file *file,
void __user *argp) struct btrfs_ioctl_same_args __user *argp)
{ {
struct btrfs_ioctl_same_args tmp;
struct btrfs_ioctl_same_args *same; struct btrfs_ioctl_same_args *same;
struct btrfs_ioctl_same_extent_info *info; struct btrfs_ioctl_same_extent_info *info;
struct inode *src = file->f_dentry->d_inode; struct inode *src = file_inode(file);
struct file *dst_file = NULL;
struct inode *dst;
u64 off; u64 off;
u64 len; u64 len;
int i; int i;
@@ -2701,6 +2698,7 @@ static long btrfs_ioctl_file_extent_same(struct file *file,
unsigned long size; unsigned long size;
u64 bs = BTRFS_I(src)->root->fs_info->sb->s_blocksize; u64 bs = BTRFS_I(src)->root->fs_info->sb->s_blocksize;
bool is_admin = capable(CAP_SYS_ADMIN); bool is_admin = capable(CAP_SYS_ADMIN);
u16 count;
if (!(file->f_mode & FMODE_READ)) if (!(file->f_mode & FMODE_READ))
return -EINVAL; return -EINVAL;
@@ -2709,17 +2707,14 @@ static long btrfs_ioctl_file_extent_same(struct file *file,
if (ret) if (ret)
return ret; return ret;
if (copy_from_user(&tmp, if (get_user(count, &argp->dest_count)) {
(struct btrfs_ioctl_same_args __user *)argp,
sizeof(tmp))) {
ret = -EFAULT; ret = -EFAULT;
goto out; goto out;
} }
size = sizeof(tmp) + size = offsetof(struct btrfs_ioctl_same_args __user, info[count]);
tmp.dest_count * sizeof(struct btrfs_ioctl_same_extent_info);
same = memdup_user((struct btrfs_ioctl_same_args __user *)argp, size); same = memdup_user(argp, size);
if (IS_ERR(same)) { if (IS_ERR(same)) {
ret = PTR_ERR(same); ret = PTR_ERR(same);
@@ -2756,52 +2751,35 @@ static long btrfs_ioctl_file_extent_same(struct file *file,
goto out; goto out;
/* pre-format output fields to sane values */ /* pre-format output fields to sane values */
for (i = 0; i < same->dest_count; i++) { for (i = 0; i < count; i++) {
same->info[i].bytes_deduped = 0ULL; same->info[i].bytes_deduped = 0ULL;
same->info[i].status = 0; same->info[i].status = 0;
} }
ret = 0; for (i = 0, info = same->info; i < count; i++, info++) {
for (i = 0; i < same->dest_count; i++) { struct inode *dst;
info = &same->info[i]; struct fd dst_file = fdget(info->fd);
if (!dst_file.file) {
dst_file = fget(info->fd);
if (!dst_file) {
info->status = -EBADF; info->status = -EBADF;
goto next; continue;
} }
dst = file_inode(dst_file.file);
if (!(is_admin || (dst_file->f_mode & FMODE_WRITE))) { if (!(is_admin || (dst_file.file->f_mode & FMODE_WRITE))) {
info->status = -EINVAL; info->status = -EINVAL;
goto next; } else if (file->f_path.mnt != dst_file.file->f_path.mnt) {
}
info->status = -EXDEV; info->status = -EXDEV;
if (file->f_path.mnt != dst_file->f_path.mnt) } else if (S_ISDIR(dst->i_mode)) {
goto next;
dst = dst_file->f_dentry->d_inode;
if (src->i_sb != dst->i_sb)
goto next;
if (S_ISDIR(dst->i_mode)) {
info->status = -EISDIR; info->status = -EISDIR;
goto next; } else if (!S_ISREG(dst->i_mode)) {
}
if (!S_ISREG(dst->i_mode)) {
info->status = -EACCES; info->status = -EACCES;
goto next; } else {
}
info->status = btrfs_extent_same(src, off, len, dst, info->status = btrfs_extent_same(src, off, len, dst,
info->logical_offset); info->logical_offset);
if (info->status == 0) if (info->status == 0)
info->bytes_deduped += len; info->bytes_deduped += len;
}
next: fdput(dst_file);
if (dst_file)
fput(dst_file);
} }
ret = copy_to_user(argp, same, size); ret = copy_to_user(argp, same, size);
+3 -2
View File
@@ -22,6 +22,7 @@
#include <linux/rwsem.h> #include <linux/rwsem.h>
#include <linux/xattr.h> #include <linux/xattr.h>
#include <linux/security.h> #include <linux/security.h>
#include <linux/posix_acl_xattr.h>
#include "ctree.h" #include "ctree.h"
#include "btrfs_inode.h" #include "btrfs_inode.h"
#include "transaction.h" #include "transaction.h"
@@ -313,8 +314,8 @@ err:
*/ */
const struct xattr_handler *btrfs_xattr_handlers[] = { const struct xattr_handler *btrfs_xattr_handlers[] = {
#ifdef CONFIG_BTRFS_FS_POSIX_ACL #ifdef CONFIG_BTRFS_FS_POSIX_ACL
&btrfs_xattr_acl_access_handler, &posix_acl_access_xattr_handler,
&btrfs_xattr_acl_default_handler, &posix_acl_default_xattr_handler,
#endif #endif
NULL, NULL,
}; };
-2
View File
@@ -21,8 +21,6 @@
#include <linux/xattr.h> #include <linux/xattr.h>
extern const struct xattr_handler btrfs_xattr_acl_access_handler;
extern const struct xattr_handler btrfs_xattr_acl_default_handler;
extern const struct xattr_handler *btrfs_xattr_handlers[]; extern const struct xattr_handler *btrfs_xattr_handlers[];
extern ssize_t __btrfs_getxattr(struct inode *inode, const char *name, extern ssize_t __btrfs_getxattr(struct inode *inode, const char *name,
+31 -19
View File
@@ -17,14 +17,30 @@
#include <linux/init.h> #include <linux/init.h>
#include <linux/string.h> #include <linux/string.h>
#include <linux/blkdev.h> #include <linux/blkdev.h>
#include <linux/cramfs_fs.h>
#include <linux/slab.h> #include <linux/slab.h>
#include <linux/cramfs_fs_sb.h>
#include <linux/vfs.h> #include <linux/vfs.h>
#include <linux/mutex.h> #include <linux/mutex.h>
#include <uapi/linux/cramfs_fs.h>
#include <asm/uaccess.h> #include <asm/uaccess.h>
#include "internal.h"
/*
* cramfs super-block data in memory
*/
struct cramfs_sb_info {
unsigned long magic;
unsigned long size;
unsigned long blocks;
unsigned long files;
unsigned long flags;
};
static inline struct cramfs_sb_info *CRAMFS_SB(struct super_block *sb)
{
return sb->s_fs_info;
}
static const struct super_operations cramfs_ops; static const struct super_operations cramfs_ops;
static const struct inode_operations cramfs_dir_inode_operations; static const struct inode_operations cramfs_dir_inode_operations;
static const struct file_operations cramfs_directory_operations; static const struct file_operations cramfs_directory_operations;
@@ -219,10 +235,11 @@ static void *cramfs_read(struct super_block *sb, unsigned int offset, unsigned i
return read_buffers[buffer] + offset; return read_buffers[buffer] + offset;
} }
static void cramfs_put_super(struct super_block *sb) static void cramfs_kill_sb(struct super_block *sb)
{ {
kfree(sb->s_fs_info); struct cramfs_sb_info *sbi = CRAMFS_SB(sb);
sb->s_fs_info = NULL; kill_block_super(sb);
kfree(sbi);
} }
static int cramfs_remount(struct super_block *sb, int *flags, char *data) static int cramfs_remount(struct super_block *sb, int *flags, char *data)
@@ -261,7 +278,7 @@ static int cramfs_fill_super(struct super_block *sb, void *data, int silent)
if (super.magic == CRAMFS_MAGIC_WEND) { if (super.magic == CRAMFS_MAGIC_WEND) {
if (!silent) if (!silent)
printk(KERN_ERR "cramfs: wrong endianness\n"); printk(KERN_ERR "cramfs: wrong endianness\n");
goto out; return -EINVAL;
} }
/* check at 512 byte offset */ /* check at 512 byte offset */
@@ -273,20 +290,20 @@ static int cramfs_fill_super(struct super_block *sb, void *data, int silent)
printk(KERN_ERR "cramfs: wrong endianness\n"); printk(KERN_ERR "cramfs: wrong endianness\n");
else if (!silent) else if (!silent)
printk(KERN_ERR "cramfs: wrong magic\n"); printk(KERN_ERR "cramfs: wrong magic\n");
goto out; return -EINVAL;
} }
} }
/* get feature flags first */ /* get feature flags first */
if (super.flags & ~CRAMFS_SUPPORTED_FLAGS) { if (super.flags & ~CRAMFS_SUPPORTED_FLAGS) {
printk(KERN_ERR "cramfs: unsupported filesystem features\n"); printk(KERN_ERR "cramfs: unsupported filesystem features\n");
goto out; return -EINVAL;
} }
/* Check that the root inode is in a sane state */ /* Check that the root inode is in a sane state */
if (!S_ISDIR(super.root.mode)) { if (!S_ISDIR(super.root.mode)) {
printk(KERN_ERR "cramfs: root is not a directory\n"); printk(KERN_ERR "cramfs: root is not a directory\n");
goto out; return -EINVAL;
} }
/* correct strange, hard-coded permissions of mkcramfs */ /* correct strange, hard-coded permissions of mkcramfs */
super.root.mode |= (S_IRUSR | S_IXUSR | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH); super.root.mode |= (S_IRUSR | S_IXUSR | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH);
@@ -310,22 +327,18 @@ static int cramfs_fill_super(struct super_block *sb, void *data, int silent)
(root_offset != 512 + sizeof(struct cramfs_super)))) (root_offset != 512 + sizeof(struct cramfs_super))))
{ {
printk(KERN_ERR "cramfs: bad root offset %lu\n", root_offset); printk(KERN_ERR "cramfs: bad root offset %lu\n", root_offset);
goto out; return -EINVAL;
} }
/* Set it all up.. */ /* Set it all up.. */
sb->s_op = &cramfs_ops; sb->s_op = &cramfs_ops;
root = get_cramfs_inode(sb, &super.root, 0); root = get_cramfs_inode(sb, &super.root, 0);
if (IS_ERR(root)) if (IS_ERR(root))
goto out; return PTR_ERR(root);
sb->s_root = d_make_root(root); sb->s_root = d_make_root(root);
if (!sb->s_root) if (!sb->s_root)
goto out; return -ENOMEM;
return 0; return 0;
out:
kfree(sbi);
sb->s_fs_info = NULL;
return -EINVAL;
} }
static int cramfs_statfs(struct dentry *dentry, struct kstatfs *buf) static int cramfs_statfs(struct dentry *dentry, struct kstatfs *buf)
@@ -550,7 +563,6 @@ static const struct inode_operations cramfs_dir_inode_operations = {
}; };
static const struct super_operations cramfs_ops = { static const struct super_operations cramfs_ops = {
.put_super = cramfs_put_super,
.remount_fs = cramfs_remount, .remount_fs = cramfs_remount,
.statfs = cramfs_statfs, .statfs = cramfs_statfs,
}; };
@@ -565,7 +577,7 @@ static struct file_system_type cramfs_fs_type = {
.owner = THIS_MODULE, .owner = THIS_MODULE,
.name = "cramfs", .name = "cramfs",
.mount = cramfs_mount, .mount = cramfs_mount,
.kill_sb = kill_block_super, .kill_sb = cramfs_kill_sb,
.fs_flags = FS_REQUIRES_DEV, .fs_flags = FS_REQUIRES_DEV,
}; };
MODULE_ALIAS_FS("cramfs"); MODULE_ALIAS_FS("cramfs");
@@ -1,10 +1,4 @@
#ifndef __CRAMFS_H
#define __CRAMFS_H
#include <uapi/linux/cramfs_fs.h>
/* Uncompression interfaces to the underlying zlib */ /* Uncompression interfaces to the underlying zlib */
int cramfs_uncompress_block(void *dst, int dstlen, void *src, int srclen); int cramfs_uncompress_block(void *dst, int dstlen, void *src, int srclen);
int cramfs_uncompress_init(void); int cramfs_uncompress_init(void);
void cramfs_uncompress_exit(void); void cramfs_uncompress_exit(void);
#endif
+1 -1
View File
@@ -19,7 +19,7 @@
#include <linux/errno.h> #include <linux/errno.h>
#include <linux/vmalloc.h> #include <linux/vmalloc.h>
#include <linux/zlib.h> #include <linux/zlib.h>
#include <linux/cramfs_fs.h> #include "internal.h"
static z_stream stream; static z_stream stream;
static int initialized; static int initialized;
+6 -4
View File
@@ -3116,26 +3116,28 @@ char *simple_dname(struct dentry *dentry, char *buffer, int buflen)
/* /*
* Write full pathname from the root of the filesystem into the buffer. * Write full pathname from the root of the filesystem into the buffer.
*/ */
static char *__dentry_path(struct dentry *dentry, char *buf, int buflen) static char *__dentry_path(struct dentry *d, char *buf, int buflen)
{ {
struct dentry *dentry;
char *end, *retval; char *end, *retval;
int len, seq = 0; int len, seq = 0;
int error = 0; int error = 0;
if (buflen < 2)
goto Elong;
rcu_read_lock(); rcu_read_lock();
restart: restart:
dentry = d;
end = buf + buflen; end = buf + buflen;
len = buflen; len = buflen;
prepend(&end, &len, "\0", 1); prepend(&end, &len, "\0", 1);
if (buflen < 1)
goto Elong;
/* Get '/' right */ /* Get '/' right */
retval = end-1; retval = end-1;
*retval = '/'; *retval = '/';
read_seqbegin_or_lock(&rename_lock, &seq); read_seqbegin_or_lock(&rename_lock, &seq);
while (!IS_ROOT(dentry)) { while (!IS_ROOT(dentry)) {
struct dentry *parent = dentry->d_parent; struct dentry *parent = dentry->d_parent;
int error;
prefetch(parent); prefetch(parent);
error = prepend_name(&end, &len, &dentry->d_name); error = prepend_name(&end, &len, &dentry->d_name);
+13 -16
View File
@@ -659,19 +659,17 @@ out_lock:
return rc; return rc;
} }
static int ecryptfs_readlink_lower(struct dentry *dentry, char **buf, static char *ecryptfs_readlink_lower(struct dentry *dentry, size_t *bufsiz)
size_t *bufsiz)
{ {
struct dentry *lower_dentry = ecryptfs_dentry_to_lower(dentry); struct dentry *lower_dentry = ecryptfs_dentry_to_lower(dentry);
char *lower_buf; char *lower_buf;
char *buf;
mm_segment_t old_fs; mm_segment_t old_fs;
int rc; int rc;
lower_buf = kmalloc(PATH_MAX, GFP_KERNEL); lower_buf = kmalloc(PATH_MAX, GFP_KERNEL);
if (!lower_buf) { if (!lower_buf)
rc = -ENOMEM; return ERR_PTR(-ENOMEM);
goto out;
}
old_fs = get_fs(); old_fs = get_fs();
set_fs(get_ds()); set_fs(get_ds());
rc = lower_dentry->d_inode->i_op->readlink(lower_dentry, rc = lower_dentry->d_inode->i_op->readlink(lower_dentry,
@@ -680,21 +678,18 @@ static int ecryptfs_readlink_lower(struct dentry *dentry, char **buf,
set_fs(old_fs); set_fs(old_fs);
if (rc < 0) if (rc < 0)
goto out; goto out;
rc = ecryptfs_decode_and_decrypt_filename(buf, bufsiz, dentry->d_sb, rc = ecryptfs_decode_and_decrypt_filename(&buf, bufsiz, dentry->d_sb,
lower_buf, rc); lower_buf, rc);
out: out:
kfree(lower_buf); kfree(lower_buf);
return rc; return rc ? ERR_PTR(rc) : buf;
} }
static void *ecryptfs_follow_link(struct dentry *dentry, struct nameidata *nd) static void *ecryptfs_follow_link(struct dentry *dentry, struct nameidata *nd)
{ {
char *buf; size_t len;
size_t len = PATH_MAX; char *buf = ecryptfs_readlink_lower(dentry, &len);
int rc; if (IS_ERR(buf))
rc = ecryptfs_readlink_lower(dentry, &buf, &len);
if (rc)
goto out; goto out;
fsstack_copy_attr_atime(dentry->d_inode, fsstack_copy_attr_atime(dentry->d_inode,
ecryptfs_dentry_to_lower(dentry)->d_inode); ecryptfs_dentry_to_lower(dentry)->d_inode);
@@ -1003,10 +998,12 @@ static int ecryptfs_getattr_link(struct vfsmount *mnt, struct dentry *dentry,
char *target; char *target;
size_t targetsiz; size_t targetsiz;
rc = ecryptfs_readlink_lower(dentry, &target, &targetsiz); target = ecryptfs_readlink_lower(dentry, &targetsiz);
if (!rc) { if (!IS_ERR(target)) {
kfree(target); kfree(target);
stat->size = targetsiz; stat->size = targetsiz;
} else {
rc = PTR_ERR(target);
} }
} }
return rc; return rc;

Some files were not shown because too many files have changed in this diff Show More