aboutsummaryrefslogtreecommitdiffstats
path: root/fs/open.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/open.c')
-rw-r--r--fs/open.c61
1 files changed, 36 insertions, 25 deletions
diff --git a/fs/open.c b/fs/open.c
index e0250bdcc440..e33dab287fa0 100644
--- a/fs/open.c
+++ b/fs/open.c
@@ -51,8 +51,10 @@ int do_truncate(struct dentry *dentry, loff_t length, unsigned int time_attrs,
51 newattrs.ia_valid |= ATTR_FILE; 51 newattrs.ia_valid |= ATTR_FILE;
52 } 52 }
53 53
54 /* Remove suid/sgid on truncate too */ 54 /* Remove suid, sgid, and file capabilities on truncate too */
55 ret = should_remove_suid(dentry); 55 ret = dentry_needs_remove_privs(dentry);
56 if (ret < 0)
57 return ret;
56 if (ret) 58 if (ret)
57 newattrs.ia_valid |= ret | ATTR_FORCE; 59 newattrs.ia_valid |= ret | ATTR_FORCE;
58 60
@@ -678,18 +680,18 @@ int open_check_o_direct(struct file *f)
678} 680}
679 681
680static int do_dentry_open(struct file *f, 682static int do_dentry_open(struct file *f,
683 struct inode *inode,
681 int (*open)(struct inode *, struct file *), 684 int (*open)(struct inode *, struct file *),
682 const struct cred *cred) 685 const struct cred *cred)
683{ 686{
684 static const struct file_operations empty_fops = {}; 687 static const struct file_operations empty_fops = {};
685 struct inode *inode;
686 int error; 688 int error;
687 689
688 f->f_mode = OPEN_FMODE(f->f_flags) | FMODE_LSEEK | 690 f->f_mode = OPEN_FMODE(f->f_flags) | FMODE_LSEEK |
689 FMODE_PREAD | FMODE_PWRITE; 691 FMODE_PREAD | FMODE_PWRITE;
690 692
691 path_get(&f->f_path); 693 path_get(&f->f_path);
692 inode = f->f_inode = f->f_path.dentry->d_inode; 694 f->f_inode = inode;
693 f->f_mapping = inode->i_mapping; 695 f->f_mapping = inode->i_mapping;
694 696
695 if (unlikely(f->f_flags & O_PATH)) { 697 if (unlikely(f->f_flags & O_PATH)) {
@@ -793,7 +795,8 @@ int finish_open(struct file *file, struct dentry *dentry,
793 BUG_ON(*opened & FILE_OPENED); /* once it's opened, it's opened */ 795 BUG_ON(*opened & FILE_OPENED); /* once it's opened, it's opened */
794 796
795 file->f_path.dentry = dentry; 797 file->f_path.dentry = dentry;
796 error = do_dentry_open(file, open, current_cred()); 798 error = do_dentry_open(file, d_backing_inode(dentry), open,
799 current_cred());
797 if (!error) 800 if (!error)
798 *opened |= FILE_OPENED; 801 *opened |= FILE_OPENED;
799 802
@@ -822,6 +825,34 @@ int finish_no_open(struct file *file, struct dentry *dentry)
822} 825}
823EXPORT_SYMBOL(finish_no_open); 826EXPORT_SYMBOL(finish_no_open);
824 827
828char *file_path(struct file *filp, char *buf, int buflen)
829{
830 return d_path(&filp->f_path, buf, buflen);
831}
832EXPORT_SYMBOL(file_path);
833
834/**
835 * vfs_open - open the file at the given path
836 * @path: path to open
837 * @file: newly allocated file with f_flag initialized
838 * @cred: credentials to use
839 */
840int vfs_open(const struct path *path, struct file *file,
841 const struct cred *cred)
842{
843 struct dentry *dentry = path->dentry;
844 struct inode *inode = dentry->d_inode;
845
846 file->f_path = *path;
847 if (dentry->d_flags & DCACHE_OP_SELECT_INODE) {
848 inode = dentry->d_op->d_select_inode(dentry, file->f_flags);
849 if (IS_ERR(inode))
850 return PTR_ERR(inode);
851 }
852
853 return do_dentry_open(file, inode, NULL, cred);
854}
855
825struct file *dentry_open(const struct path *path, int flags, 856struct file *dentry_open(const struct path *path, int flags,
826 const struct cred *cred) 857 const struct cred *cred)
827{ 858{
@@ -853,26 +884,6 @@ struct file *dentry_open(const struct path *path, int flags,
853} 884}
854EXPORT_SYMBOL(dentry_open); 885EXPORT_SYMBOL(dentry_open);
855 886
856/**
857 * vfs_open - open the file at the given path
858 * @path: path to open
859 * @filp: newly allocated file with f_flag initialized
860 * @cred: credentials to use
861 */
862int vfs_open(const struct path *path, struct file *filp,
863 const struct cred *cred)
864{
865 struct inode *inode = path->dentry->d_inode;
866
867 if (inode->i_op->dentry_open)
868 return inode->i_op->dentry_open(path->dentry, filp, cred);
869 else {
870 filp->f_path = *path;
871 return do_dentry_open(filp, NULL, cred);
872 }
873}
874EXPORT_SYMBOL(vfs_open);
875
876static inline int build_open_flags(int flags, umode_t mode, struct open_flags *op) 887static inline int build_open_flags(int flags, umode_t mode, struct open_flags *op)
877{ 888{
878 int lookup_flags = 0; 889 int lookup_flags = 0;