* Re: [PATCH] hostfs: fix opening file with overlayfs [not found] <1462093338-8759-1-git-send-email-toshiq2@gmail.com> @ 2016-05-01 20:21 ` Richard Weinberger 2016-05-04 8:15 ` Miklos Szeredi 0 siblings, 1 reply; 2+ messages in thread From: Richard Weinberger @ 2016-05-01 20:21 UTC (permalink / raw) To: Toshikuni Fukaya, user-mode-linux-devel Cc: jdike, linux-fsdevel, David Howells, Al Viro, mszeredi CC'ing VFS folks Am 01.05.2016 um 11:02 schrieb Toshikuni Fukaya: > If a file on overlayfs using hostfs as a lowerdir is opened, it would > be failed by ENOENT because hostfs resolves a host path by a host root > path stored on the hostfs superblock referred by file->f_path.dentry, > but it is replaced with overlayfs's one starting from the > commit 4bacc9c9234c ("overlayfs: Make f_path always point to the > overlay and f_inode to the underlay"). > > We replace using file->f_path.dentry directly with calling > "file_dentry" from a commit d101a125954e ("fs: add file_dentry()") to > fix the issue. Is there a reason why not all instances of file->f_path.dentry have been replaced by file_dentry()? I smell more fallout... Thanks, //richard > Signed-off-by: Toshikuni Fukaya <toshiq2@gmail.com> > --- > fs/hostfs/hostfs_kern.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/fs/hostfs/hostfs_kern.c b/fs/hostfs/hostfs_kern.c > index 7016653..26a9f43 100644 > --- a/fs/hostfs/hostfs_kern.c > +++ b/fs/hostfs/hostfs_kern.c > @@ -284,7 +284,7 @@ static int hostfs_readdir(struct file *file, struct dir_context *ctx) > int error, len; > unsigned int type; > > - name = dentry_name(file->f_path.dentry); > + name = dentry_name(file_dentry(file)); > if (name == NULL) > return -ENOMEM; > dir = open_dir(name, &error); > @@ -323,7 +323,7 @@ retry: > if (mode & FMODE_WRITE) > r = w = 1; > > - name = dentry_name(file->f_path.dentry); > + name = dentry_name(file_dentry(file)); > if (name == NULL) > return -ENOMEM; > > ^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] hostfs: fix opening file with overlayfs 2016-05-01 20:21 ` [PATCH] hostfs: fix opening file with overlayfs Richard Weinberger @ 2016-05-04 8:15 ` Miklos Szeredi 0 siblings, 0 replies; 2+ messages in thread From: Miklos Szeredi @ 2016-05-04 8:15 UTC (permalink / raw) To: Richard Weinberger Cc: Toshikuni Fukaya, user-mode-linux-devel, jdike, linux-fsdevel, David Howells, Al Viro On Sun, May 1, 2016 at 10:21 PM, Richard Weinberger <richard@nod.at> wrote: > CC'ing VFS folks > > Am 01.05.2016 um 11:02 schrieb Toshikuni Fukaya: >> If a file on overlayfs using hostfs as a lowerdir is opened, it would >> be failed by ENOENT because hostfs resolves a host path by a host root >> path stored on the hostfs superblock referred by file->f_path.dentry, >> but it is replaced with overlayfs's one starting from the >> commit 4bacc9c9234c ("overlayfs: Make f_path always point to the >> overlay and f_inode to the underlay"). >> >> We replace using file->f_path.dentry directly with calling >> "file_dentry" from a commit d101a125954e ("fs: add file_dentry()") to >> fix the issue. > > Is there a reason why not all instances of file->f_path.dentry have > been replaced by file_dentry()? > I smell more fallout... It's perfectly safe to do. But automatic conversion is not advised, as there are cases where using f_path.dentry is just hiding bugs. Each case should be thought about separately, and preferably converted to file_inode() if possible. The hostfs patch looks good, though. Acked-by: Miklos Szeredi <mszeredi@redhat.com> Thanks, Miklos > > Thanks, > //richard > >> Signed-off-by: Toshikuni Fukaya <toshiq2@gmail.com> >> --- >> fs/hostfs/hostfs_kern.c | 4 ++-- >> 1 file changed, 2 insertions(+), 2 deletions(-) >> >> diff --git a/fs/hostfs/hostfs_kern.c b/fs/hostfs/hostfs_kern.c >> index 7016653..26a9f43 100644 >> --- a/fs/hostfs/hostfs_kern.c >> +++ b/fs/hostfs/hostfs_kern.c >> @@ -284,7 +284,7 @@ static int hostfs_readdir(struct file *file, struct dir_context *ctx) >> int error, len; >> unsigned int type; >> >> - name = dentry_name(file->f_path.dentry); >> + name = dentry_name(file_dentry(file)); >> if (name == NULL) >> return -ENOMEM; >> dir = open_dir(name, &error); >> @@ -323,7 +323,7 @@ retry: >> if (mode & FMODE_WRITE) >> r = w = 1; >> >> - name = dentry_name(file->f_path.dentry); >> + name = dentry_name(file_dentry(file)); >> if (name == NULL) >> return -ENOMEM; >> >> ^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2016-05-04 8:15 UTC | newest] Thread overview: 2+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- [not found] <1462093338-8759-1-git-send-email-toshiq2@gmail.com> 2016-05-01 20:21 ` [PATCH] hostfs: fix opening file with overlayfs Richard Weinberger 2016-05-04 8:15 ` Miklos Szeredi
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).