linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Fix __d_path for lazy unmounts
@ 2010-02-20 12:27 john.johansen
  2010-02-22 17:24 ` John Johansen
                   ` (3 more replies)
  0 siblings, 4 replies; 11+ messages in thread
From: john.johansen @ 2010-02-20 12:27 UTC (permalink / raw)
  To: linux-kernel; +Cc: linux-fsdevel, John Johansen

From: John Johansen <john.johansen@canonical.com>

When __d_path() hits a lazily unmounted mount point, it tries to prepend
the name of the lazily unmounted dentry to the path name.  It gets this wrong,
and also overwrites the slash that separates the name from the following
pathname component. This patch fixes that; if a process was in directory
/foo/bar and /foo got lazily unmounted, the old result was ``foobar'' (note the
missing slash), while the new result with this patch is ``/foo/bar''.

Signed-off-by: John Johansen <john.johansen@canonical.com>
---
 fs/dcache.c |   27 +++++++++++++++++++++++----
 1 files changed, 23 insertions(+), 4 deletions(-)

diff --git a/fs/dcache.c b/fs/dcache.c
index 953173a..df49666 100644
--- a/fs/dcache.c
+++ b/fs/dcache.c
@@ -1922,11 +1922,9 @@ char *__d_path(const struct path *path, struct path *root,
 	retval = end-1;
 	*retval = '/';
 
-	for (;;) {
+	while(dentry != root->dentry || vfsmnt != root->mnt) {
 		struct dentry * parent;
 
-		if (dentry == root->dentry && vfsmnt == root->mnt)
-			break;
 		if (dentry == vfsmnt->mnt_root || IS_ROOT(dentry)) {
 			/* Global root? */
 			if (vfsmnt->mnt_parent == vfsmnt) {
@@ -1950,9 +1948,30 @@ out:
 	return retval;
 
 global_root:
-	retval += 1;	/* hit the slash */
+	/*
+	 * We went past the (vfsmount, dentry) we were looking for and have
+	 * either hit a root dentry, a lazily unmounted dentry, an
+	 * unconnected dentry, or the file is on a pseudo filesystem.
+	 */
+	if ((dentry->d_sb->s_flags & MS_NOUSER) ||
+	    (dentry->d_name.len = 1 && *dentry->d_name.name == '/')) {
+		/*
+		 * Historically, we also glue together the root dentry and
+		 * remaining name for pseudo filesystems like pipefs, which
+		 * have the MS_NOUSER flag set. This results in pathnames
+		 * like "pipe:[439336]".
+		 */
+		retval += 1;	/* overwrite the slash */
+		buflen++;
+	}
 	if (prepend_name(&retval, &buflen, &dentry->d_name) != 0)
 		goto Elong;
+
+	/* connect lazily unmounted mount point */
+	if (*retval != '/' && !(dentry->d_sb->s_flags & MS_NOUSER) &&
+	    prepend(&retval, &buflen, "/", 1) != 0)
+		goto Elong;
+
 	root->mnt = vfsmnt;
 	root->dentry = dentry;
 	goto out;
-- 
1.6.6.1


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* Re: [PATCH] Fix __d_path for lazy unmounts
  2010-02-20 12:27 [PATCH] Fix __d_path for lazy unmounts john.johansen
@ 2010-02-22 17:24 ` John Johansen
  2010-02-22 17:38 ` Serge E. Hallyn
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 11+ messages in thread
From: John Johansen @ 2010-02-22 17:24 UTC (permalink / raw)
  To: john.johansen; +Cc: linux-kernel, linux-fsdevel

john.johansen@canonical.com wrote:
> From: John Johansen <john.johansen@canonical.com>
> 
> When __d_path() hits a lazily unmounted mount point, it tries to prepend
> the name of the lazily unmounted dentry to the path name.  It gets this wrong,
> and also overwrites the slash that separates the name from the following
> pathname component. This patch fixes that; if a process was in directory
> /foo/bar and /foo got lazily unmounted, the old result was ``foobar'' (note the
> missing slash), while the new result with this patch is ``/foo/bar''.
> 
It seems I left out the basic test for this.  From a shell you can do

> mkdir /tmp/foo
> sudo mount --bind /home/jj /tmp/foo   #substitute /home/jj as you wish
> cd /tmp/foo/bar       # assumes /home/jj/bar exists
> /bin/pwd
/tmp/foo/bar
> sudo umount -l /tmp/foo
> /bin/pwd
jjbar
> > cd ..
> > /bin/pwd
jj



^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH] Fix __d_path for lazy unmounts
  2010-02-20 12:27 [PATCH] Fix __d_path for lazy unmounts john.johansen
  2010-02-22 17:24 ` John Johansen
@ 2010-02-22 17:38 ` Serge E. Hallyn
  2010-02-23  0:17 ` Andrew Morton
  2010-02-26 12:07 ` Miklos Szeredi
  3 siblings, 0 replies; 11+ messages in thread
From: Serge E. Hallyn @ 2010-02-22 17:38 UTC (permalink / raw)
  To: john.johansen; +Cc: linux-kernel, linux-fsdevel

Quoting john.johansen@canonical.com (john.johansen@canonical.com):
> From: John Johansen <john.johansen@canonical.com>
> 
> When __d_path() hits a lazily unmounted mount point, it tries to prepend
> the name of the lazily unmounted dentry to the path name.  It gets this wrong,
> and also overwrites the slash that separates the name from the following
> pathname component. This patch fixes that; if a process was in directory
> /foo/bar and /foo got lazily unmounted, the old result was ``foobar'' (note the
> missing slash), while the new result with this patch is ``/foo/bar''.
> 
> Signed-off-by: John Johansen <john.johansen@canonical.com>

Tested-by: Serge Hallyn <serue@us.ibm.com>
Acked-by: Serge Hallyn <serue@us.ibm.com>

In particular, I tested for closed pipes and lazily umounted mounts
and binds - lazily umounted binds are fixed, and no apparent regression
in the others.

Thanks, John.

-serge

> ---
>  fs/dcache.c |   27 +++++++++++++++++++++++----
>  1 files changed, 23 insertions(+), 4 deletions(-)
> 
> diff --git a/fs/dcache.c b/fs/dcache.c
> index 953173a..df49666 100644
> --- a/fs/dcache.c
> +++ b/fs/dcache.c
> @@ -1922,11 +1922,9 @@ char *__d_path(const struct path *path, struct path *root,
>  	retval = end-1;
>  	*retval = '/';
> 
> -	for (;;) {
> +	while(dentry != root->dentry || vfsmnt != root->mnt) {
>  		struct dentry * parent;
> 
> -		if (dentry == root->dentry && vfsmnt == root->mnt)
> -			break;
>  		if (dentry == vfsmnt->mnt_root || IS_ROOT(dentry)) {
>  			/* Global root? */
>  			if (vfsmnt->mnt_parent == vfsmnt) {
> @@ -1950,9 +1948,30 @@ out:
>  	return retval;
> 
>  global_root:
> -	retval += 1;	/* hit the slash */
> +	/*
> +	 * We went past the (vfsmount, dentry) we were looking for and have
> +	 * either hit a root dentry, a lazily unmounted dentry, an
> +	 * unconnected dentry, or the file is on a pseudo filesystem.
> +	 */
> +	if ((dentry->d_sb->s_flags & MS_NOUSER) ||
> +	    (dentry->d_name.len = 1 && *dentry->d_name.name == '/')) {
> +		/*
> +		 * Historically, we also glue together the root dentry and
> +		 * remaining name for pseudo filesystems like pipefs, which
> +		 * have the MS_NOUSER flag set. This results in pathnames
> +		 * like "pipe:[439336]".
> +		 */
> +		retval += 1;	/* overwrite the slash */
> +		buflen++;
> +	}
>  	if (prepend_name(&retval, &buflen, &dentry->d_name) != 0)
>  		goto Elong;
> +
> +	/* connect lazily unmounted mount point */
> +	if (*retval != '/' && !(dentry->d_sb->s_flags & MS_NOUSER) &&
> +	    prepend(&retval, &buflen, "/", 1) != 0)
> +		goto Elong;
> +
>  	root->mnt = vfsmnt;
>  	root->dentry = dentry;
>  	goto out;
> -- 
> 1.6.6.1
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-fsdevel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH] Fix __d_path for lazy unmounts
  2010-02-20 12:27 [PATCH] Fix __d_path for lazy unmounts john.johansen
  2010-02-22 17:24 ` John Johansen
  2010-02-22 17:38 ` Serge E. Hallyn
@ 2010-02-23  0:17 ` Andrew Morton
  2010-02-23  1:04   ` Serge E. Hallyn
  2010-02-23  1:56   ` John Johansen
  2010-02-26 12:07 ` Miklos Szeredi
  3 siblings, 2 replies; 11+ messages in thread
From: Andrew Morton @ 2010-02-23  0:17 UTC (permalink / raw)
  To: john.johansen; +Cc: linux-kernel, linux-fsdevel

On Sat, 20 Feb 2010 04:27:38 -0800 john.johansen@canonical.com wrote:

> From: John Johansen <john.johansen@canonical.com>
> 
> When __d_path() hits a lazily unmounted mount point, it tries to prepend
> the name of the lazily unmounted dentry to the path name.  It gets this wrong,
> and also overwrites the slash that separates the name from the following
> pathname component. This patch fixes that; if a process was in directory
> /foo/bar and /foo got lazily unmounted, the old result was ``foobar'' (note the
> missing slash), while the new result with this patch is ``/foo/bar''.
> 
> Signed-off-by: John Johansen <john.johansen@canonical.com>
> ---
>  fs/dcache.c |   27 +++++++++++++++++++++++----
>  1 files changed, 23 insertions(+), 4 deletions(-)
> 
> diff --git a/fs/dcache.c b/fs/dcache.c
> index 953173a..df49666 100644
> --- a/fs/dcache.c
> +++ b/fs/dcache.c
> @@ -1922,11 +1922,9 @@ char *__d_path(const struct path *path, struct path *root,
>  	retval = end-1;
>  	*retval = '/';
>  
> -	for (;;) {
> +	while(dentry != root->dentry || vfsmnt != root->mnt) {

Please put a space between the `while' and the `('.

>  		struct dentry * parent;
>  
> -		if (dentry == root->dentry && vfsmnt == root->mnt)
> -			break;
>  		if (dentry == vfsmnt->mnt_root || IS_ROOT(dentry)) {
>  			/* Global root? */
>  			if (vfsmnt->mnt_parent == vfsmnt) {
> @@ -1950,9 +1948,30 @@ out:
>  	return retval;
>  
>  global_root:
> -	retval += 1;	/* hit the slash */
> +	/*
> +	 * We went past the (vfsmount, dentry) we were looking for and have
> +	 * either hit a root dentry, a lazily unmounted dentry, an
> +	 * unconnected dentry, or the file is on a pseudo filesystem.
> +	 */
> +	if ((dentry->d_sb->s_flags & MS_NOUSER) ||
> +	    (dentry->d_name.len = 1 && *dentry->d_name.name == '/')) {

Did you really mean to assign 1 to dentry->d_name.len here?  Was `=='
intended?  I hope so, because modifying the dentry in d_path() would be odd.

If this was a mistake then why did the patch pass testing?


> +		/*
> +		 * Historically, we also glue together the root dentry and
> +		 * remaining name for pseudo filesystems like pipefs, which
> +		 * have the MS_NOUSER flag set. This results in pathnames
> +		 * like "pipe:[439336]".
> +		 */
> +		retval += 1;	/* overwrite the slash */
> +		buflen++;
> +	}
>  	if (prepend_name(&retval, &buflen, &dentry->d_name) != 0)
>  		goto Elong;
> +
> +	/* connect lazily unmounted mount point */
> +	if (*retval != '/' && !(dentry->d_sb->s_flags & MS_NOUSER) &&
> +	    prepend(&retval, &buflen, "/", 1) != 0)
> +		goto Elong;
> +
>  	root->mnt = vfsmnt;
>  	root->dentry = dentry;
>  	goto out;


^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH] Fix __d_path for lazy unmounts
  2010-02-23  0:17 ` Andrew Morton
@ 2010-02-23  1:04   ` Serge E. Hallyn
  2010-02-24  0:12     ` [Patch 0/1] Fix __d_path for lazy unmounts v2 john.johansen
  2010-02-24  0:12     ` [PATCH] Fix __d_path for lazy unmounts john.johansen
  2010-02-23  1:56   ` John Johansen
  1 sibling, 2 replies; 11+ messages in thread
From: Serge E. Hallyn @ 2010-02-23  1:04 UTC (permalink / raw)
  To: Andrew Morton; +Cc: john.johansen, linux-kernel, linux-fsdevel

Quoting Andrew Morton (akpm@linux-foundation.org):
> On Sat, 20 Feb 2010 04:27:38 -0800 john.johansen@canonical.com wrote:
> 
> > From: John Johansen <john.johansen@canonical.com>
> > 
> > When __d_path() hits a lazily unmounted mount point, it tries to prepend
> > the name of the lazily unmounted dentry to the path name.  It gets this wrong,
> > and also overwrites the slash that separates the name from the following
> > pathname component. This patch fixes that; if a process was in directory
> > /foo/bar and /foo got lazily unmounted, the old result was ``foobar'' (note the
> > missing slash), while the new result with this patch is ``/foo/bar''.
> > 
> > Signed-off-by: John Johansen <john.johansen@canonical.com>
> > ---
> >  fs/dcache.c |   27 +++++++++++++++++++++++----
> >  1 files changed, 23 insertions(+), 4 deletions(-)
> > 
> > diff --git a/fs/dcache.c b/fs/dcache.c
> > index 953173a..df49666 100644
> > --- a/fs/dcache.c
> > +++ b/fs/dcache.c
> > @@ -1922,11 +1922,9 @@ char *__d_path(const struct path *path, struct path *root,
> >  	retval = end-1;
> >  	*retval = '/';
> >  
> > -	for (;;) {
> > +	while(dentry != root->dentry || vfsmnt != root->mnt) {
> 
> Please put a space between the `while' and the `('.
> 
> >  		struct dentry * parent;
> >  
> > -		if (dentry == root->dentry && vfsmnt == root->mnt)
> > -			break;
> >  		if (dentry == vfsmnt->mnt_root || IS_ROOT(dentry)) {
> >  			/* Global root? */
> >  			if (vfsmnt->mnt_parent == vfsmnt) {
> > @@ -1950,9 +1948,30 @@ out:
> >  	return retval;
> >  
> >  global_root:
> > -	retval += 1;	/* hit the slash */
> > +	/*
> > +	 * We went past the (vfsmount, dentry) we were looking for and have
> > +	 * either hit a root dentry, a lazily unmounted dentry, an
> > +	 * unconnected dentry, or the file is on a pseudo filesystem.
> > +	 */
> > +	if ((dentry->d_sb->s_flags & MS_NOUSER) ||
> > +	    (dentry->d_name.len = 1 && *dentry->d_name.name == '/')) {
> 
> Did you really mean to assign 1 to dentry->d_name.len here?  Was `=='
> intended?  I hope so, because modifying the dentry in d_path() would be odd.
> 
> If this was a mistake then why did the patch pass testing?

Jinkeys!  Well I guess it must've passed testing bc that will only be
done for MS_NOUSER filesystems, and we won't later be doing any 'ls'
so the d_name.len isn't really used?

> > +		/*
> > +		 * Historically, we also glue together the root dentry and
> > +		 * remaining name for pseudo filesystems like pipefs, which
> > +		 * have the MS_NOUSER flag set. This results in pathnames
> > +		 * like "pipe:[439336]".
> > +		 */
> > +		retval += 1;	/* overwrite the slash */
> > +		buflen++;
> > +	}
> >  	if (prepend_name(&retval, &buflen, &dentry->d_name) != 0)
> >  		goto Elong;
> > +
> > +	/* connect lazily unmounted mount point */
> > +	if (*retval != '/' && !(dentry->d_sb->s_flags & MS_NOUSER) &&
> > +	    prepend(&retval, &buflen, "/", 1) != 0)
> > +		goto Elong;
> > +
> >  	root->mnt = vfsmnt;
> >  	root->dentry = dentry;
> >  	goto out;
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-fsdevel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH] Fix __d_path for lazy unmounts
  2010-02-23  0:17 ` Andrew Morton
  2010-02-23  1:04   ` Serge E. Hallyn
@ 2010-02-23  1:56   ` John Johansen
  1 sibling, 0 replies; 11+ messages in thread
From: John Johansen @ 2010-02-23  1:56 UTC (permalink / raw)
  To: Andrew Morton; +Cc: linux-kernel, linux-fsdevel

Andrew Morton wrote:
> On Sat, 20 Feb 2010 04:27:38 -0800 john.johansen@canonical.com wrote:
> 
>> From: John Johansen <john.johansen@canonical.com>
>>
>> When __d_path() hits a lazily unmounted mount point, it tries to prepend
>> the name of the lazily unmounted dentry to the path name.  It gets this wrong,
>> and also overwrites the slash that separates the name from the following
>> pathname component. This patch fixes that; if a process was in directory
>> /foo/bar and /foo got lazily unmounted, the old result was ``foobar'' (note the
>> missing slash), while the new result with this patch is ``/foo/bar''.
>>
>> Signed-off-by: John Johansen <john.johansen@canonical.com>
>> ---
>>  fs/dcache.c |   27 +++++++++++++++++++++++----
>>  1 files changed, 23 insertions(+), 4 deletions(-)
>>
>> diff --git a/fs/dcache.c b/fs/dcache.c
>> index 953173a..df49666 100644
>> --- a/fs/dcache.c
>> +++ b/fs/dcache.c
>> @@ -1922,11 +1922,9 @@ char *__d_path(const struct path *path, struct path *root,
>>  	retval = end-1;
>>  	*retval = '/';
>>  
>> -	for (;;) {
>> +	while(dentry != root->dentry || vfsmnt != root->mnt) {
> 
thanks, forgot to refresh after checkpatch

> Please put a space between the `while' and the `('.
> 
>>  		struct dentry * parent;
>>  
>> -		if (dentry == root->dentry && vfsmnt == root->mnt)
>> -			break;
>>  		if (dentry == vfsmnt->mnt_root || IS_ROOT(dentry)) {
>>  			/* Global root? */
>>  			if (vfsmnt->mnt_parent == vfsmnt) {
>> @@ -1950,9 +1948,30 @@ out:
>>  	return retval;
>>  
>>  global_root:
>> -	retval += 1;	/* hit the slash */
>> +	/*
>> +	 * We went past the (vfsmount, dentry) we were looking for and have
>> +	 * either hit a root dentry, a lazily unmounted dentry, an
>> +	 * unconnected dentry, or the file is on a pseudo filesystem.
>> +	 */
>> +	if ((dentry->d_sb->s_flags & MS_NOUSER) ||
>> +	    (dentry->d_name.len = 1 && *dentry->d_name.name == '/')) {
> 
> Did you really mean to assign 1 to dentry->d_name.len here?  Was `=='
> intended?  I hope so, because modifying the dentry in d_path() would be odd.
> 
> If this was a mistake then why did the patch pass testing?
> 
Nope, definite bug, missed that case in testing.  In this case every test that
had a leading '/' had a d_name.len == 1 as well.

I haven't seen the case of where a root dentry has a leading / and doesn't have
a d_name.len == 1 and if that case never happens the test wouldn't be needed.

I will respin the patch, and include testing this time

thanks
john

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Patch 0/1] Fix __d_path for lazy unmounts v2
  2010-02-23  1:04   ` Serge E. Hallyn
@ 2010-02-24  0:12     ` john.johansen
  2010-02-24  0:12     ` [PATCH] Fix __d_path for lazy unmounts john.johansen
  1 sibling, 0 replies; 11+ messages in thread
From: john.johansen @ 2010-02-24  0:12 UTC (permalink / raw)
  To: linux-kernel; +Cc: linux-fsdevel-owner

Second iteration of the __d_path patch
Fixes                                      
* formating problem - while(dentry    
* the assignment where comparison should be used

Tests to exercise the behavior and test for regressions follows

---

#!/bin/bash

#simple script to test behavior of lazily unmounted bind mount

DIR1=`mktemp -d /tmp/foo.XXXXXXXXXX`
DIR2=`mktemp -d /tmp/test.XXXXXXXXXX`
mkdir "$DIR2/bar"
mount --bind "$DIR2" "$DIR1"
cd "$DIR1/bar"
echo "Before umount -l"
/bin/pwd
umount -l "$DIR1"
echo "After umount -l"
/bin/pwd
echo "After cd .."
cd ..
/bin/pwd

rm -rf "$DIR1" "$DIR2"


^ permalink raw reply	[flat|nested] 11+ messages in thread

* [PATCH] Fix __d_path for lazy unmounts
  2010-02-23  1:04   ` Serge E. Hallyn
  2010-02-24  0:12     ` [Patch 0/1] Fix __d_path for lazy unmounts v2 john.johansen
@ 2010-02-24  0:12     ` john.johansen
  1 sibling, 0 replies; 11+ messages in thread
From: john.johansen @ 2010-02-24  0:12 UTC (permalink / raw)
  To: linux-kernel; +Cc: linux-fsdevel-owner, John Johansen

From: John Johansen <john.johansen@canonical.com>

When __d_path() hits a lazily unmounted mount point, it tries to prepend
the name of the lazily unmounted dentry to the path name.  It gets this wrong,
and also overwrites the slash that separates the name from the following
pathname component. This patch fixes that; if a process was in directory
/foo/bar and /foo got lazily unmounted, the old result was ``foobar'' (note the
missing slash), while the new result with this patch is ``/foo/bar''.

Signed-off-by: John Johansen <john.johansen@canonical.com>
---
 fs/dcache.c |   27 +++++++++++++++++++++++----
 1 files changed, 23 insertions(+), 4 deletions(-)

diff --git a/fs/dcache.c b/fs/dcache.c
index 953173a..46096b4 100644
--- a/fs/dcache.c
+++ b/fs/dcache.c
@@ -1922,11 +1922,9 @@ char *__d_path(const struct path *path, struct path *root,
 	retval = end-1;
 	*retval = '/';
 
-	for (;;) {
+	while (dentry != root->dentry || vfsmnt != root->mnt) {
 		struct dentry * parent;
 
-		if (dentry == root->dentry && vfsmnt == root->mnt)
-			break;
 		if (dentry == vfsmnt->mnt_root || IS_ROOT(dentry)) {
 			/* Global root? */
 			if (vfsmnt->mnt_parent == vfsmnt) {
@@ -1950,9 +1948,30 @@ out:
 	return retval;
 
 global_root:
-	retval += 1;	/* hit the slash */
+	/*
+	 * We went past the (vfsmount, dentry) we were looking for and have
+	 * either hit a root dentry, a lazily unmounted dentry, an
+	 * unconnected dentry, or the file is on a pseudo filesystem.
+	 */
+	if ((dentry->d_sb->s_flags & MS_NOUSER) ||
+	    (dentry->d_name.len == 1 && *dentry->d_name.name == '/')) {
+		/*
+		 * Historically, we also glue together the root dentry and
+		 * remaining name for pseudo filesystems like pipefs, which
+		 * have the MS_NOUSER flag set. This results in pathnames
+		 * like "pipe:[439336]".
+		 */
+		retval += 1;	/* overwrite the slash */
+		buflen++;
+	}
 	if (prepend_name(&retval, &buflen, &dentry->d_name) != 0)
 		goto Elong;
+
+	/* connect lazily unmounted mount point */
+	if (*retval != '/' && !(dentry->d_sb->s_flags & MS_NOUSER) &&
+	    prepend(&retval, &buflen, "/", 1) != 0)
+		goto Elong;
+
 	root->mnt = vfsmnt;
 	root->dentry = dentry;
 	goto out;
-- 
1.6.6.1


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* Re: [PATCH] Fix __d_path for lazy unmounts
  2010-02-20 12:27 [PATCH] Fix __d_path for lazy unmounts john.johansen
                   ` (2 preceding siblings ...)
  2010-02-23  0:17 ` Andrew Morton
@ 2010-02-26 12:07 ` Miklos Szeredi
  2010-02-26 17:07   ` John Johansen
  3 siblings, 1 reply; 11+ messages in thread
From: Miklos Szeredi @ 2010-02-26 12:07 UTC (permalink / raw)
  To: john.johansen; +Cc: linux-kernel, linux-fsdevel, john.johansen

On Sat, 20 Feb 2010, john.johansen@canonical.co wrote:
> From: John Johansen <john.johansen@canonical.com>
> 
> When __d_path() hits a lazily unmounted mount point, it tries to prepend
> the name of the lazily unmounted dentry to the path name.  It gets this wrong,
> and also overwrites the slash that separates the name from the following
> pathname component. This patch fixes that; if a process was in directory
> /foo/bar and /foo got lazily unmounted, the old result was ``foobar'' (note the
> missing slash), while the new result with this patch is ``/foo/bar''.

Example:

# mkdir -p /tmp/foo/bar
# mkdir /tmp/mnt
# mount --bind /tmp/foo /tmp/mnt
# cd /tmp/mnt/bar
# /bin/pwd
/tmp/mnt/bar
# umount -l /tmp/mnt
# /bin/pwd
foobar

After the patch it will be /foo/bar.

Why is the path starting with "/foo"?  Does that make any sense?

Last time this was discussed the proposals which are halfway sane
were:

 a) "(unreachable)/bar" or something along those lines
 b) ENOENT

And with either one care needs to be taken to limit this change to
interfaces (both internal and userspace) where it's not likely to
cause breakage.

Thanks,
Miklos

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH] Fix __d_path for lazy unmounts
  2010-02-26 12:07 ` Miklos Szeredi
@ 2010-02-26 17:07   ` John Johansen
  2010-03-01 10:05     ` Miklos Szeredi
  0 siblings, 1 reply; 11+ messages in thread
From: John Johansen @ 2010-02-26 17:07 UTC (permalink / raw)
  To: Miklos Szeredi; +Cc: linux-kernel, linux-fsdevel

On 02/26/2010 04:07 AM, Miklos Szeredi wrote:
> On Sat, 20 Feb 2010, john.johansen@canonical.co wrote:
>> From: John Johansen<john.johansen@canonical.com>
>>
>> When __d_path() hits a lazily unmounted mount point, it tries to prepend
>> the name of the lazily unmounted dentry to the path name.  It gets this wrong,
>> and also overwrites the slash that separates the name from the following
>> pathname component. This patch fixes that; if a process was in directory
>> /foo/bar and /foo got lazily unmounted, the old result was ``foobar'' (note the
>> missing slash), while the new result with this patch is ``/foo/bar''.
>
> Example:
>
> # mkdir -p /tmp/foo/bar
> # mkdir /tmp/mnt
> # mount --bind /tmp/foo /tmp/mnt
> # cd /tmp/mnt/bar
> # /bin/pwd
> /tmp/mnt/bar
> # umount -l /tmp/mnt
> # /bin/pwd
> foobar
>
> After the patch it will be /foo/bar.
>
> Why is the path starting with "/foo"?  Does that make any sense?
>
not a lot except, connecting disconnected paths to root is what
is currently done for paths that aren't reachable but have an fs
as their root (ie the last dentry is / so it looks connected to
root).

I would be happy in this case to leave bind mounts disconnected
(no leading /) and just fix the overwriting of the internal /.

I'll make the change.

> Last time this was discussed the proposals which are halfway sane
> were:
>
>   a) "(unreachable)/bar" or something along those lines
>   b) ENOENT
>
right, I actually have another couple of __d_path patches I need
to kick out for discussion.  Last time we rolled 3 different
changes into a single patch.  This time I wanted to isolate the
changes per patch.  I'll kick them all out today.

> And with either one care needs to be taken to limit this change to
> interfaces (both internal and userspace) where it's not likely to
> cause breakage.
>
agreed.


^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH] Fix __d_path for lazy unmounts
  2010-02-26 17:07   ` John Johansen
@ 2010-03-01 10:05     ` Miklos Szeredi
  0 siblings, 0 replies; 11+ messages in thread
From: Miklos Szeredi @ 2010-03-01 10:05 UTC (permalink / raw)
  To: John Johansen; +Cc: miklos, linux-kernel, linux-fsdevel

On Fri, 26 Feb 2010, John Johansen wrote:
> On 02/26/2010 04:07 AM, Miklos Szeredi wrote:
> > On Sat, 20 Feb 2010, john.johansen@canonical.co wrote:
> >> From: John Johansen<john.johansen@canonical.com>
> >>
> >> When __d_path() hits a lazily unmounted mount point, it tries to prepend
> >> the name of the lazily unmounted dentry to the path name.  It gets this wrong,
> >> and also overwrites the slash that separates the name from the following
> >> pathname component. This patch fixes that; if a process was in directory
> >> /foo/bar and /foo got lazily unmounted, the old result was ``foobar'' (note the
> >> missing slash), while the new result with this patch is ``/foo/bar''.
> >
> > Example:
> >
> > # mkdir -p /tmp/foo/bar
> > # mkdir /tmp/mnt
> > # mount --bind /tmp/foo /tmp/mnt
> > # cd /tmp/mnt/bar
> > # /bin/pwd
> > /tmp/mnt/bar
> > # umount -l /tmp/mnt
> > # /bin/pwd
> > foobar
> >
> > After the patch it will be /foo/bar.
> >
> > Why is the path starting with "/foo"?  Does that make any sense?
> >
> not a lot except, connecting disconnected paths to root is what
> is currently done for paths that aren't reachable but have an fs
> as their root (ie the last dentry is / so it looks connected to
> root).

/tmp (which contains /foo/bar) is not a root of anything.  So even
that logic doesn't hold for your current patch.

/tmp/foo *was* the root of the mount, so "/bar" would make a tiny
little more sense.  But "/bar" looks like a normal connected patch,
which it is not, so it's not really a good solution either.

Thanks,
Miklos

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2010-03-01 10:05 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-02-20 12:27 [PATCH] Fix __d_path for lazy unmounts john.johansen
2010-02-22 17:24 ` John Johansen
2010-02-22 17:38 ` Serge E. Hallyn
2010-02-23  0:17 ` Andrew Morton
2010-02-23  1:04   ` Serge E. Hallyn
2010-02-24  0:12     ` [Patch 0/1] Fix __d_path for lazy unmounts v2 john.johansen
2010-02-24  0:12     ` [PATCH] Fix __d_path for lazy unmounts john.johansen
2010-02-23  1:56   ` John Johansen
2010-02-26 12:07 ` Miklos Szeredi
2010-02-26 17:07   ` John Johansen
2010-03-01 10:05     ` 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).