]> Cypherpunks repositories - gostls13.git/commitdiff
os: fix RemoveAll on large directories on Plan 9 and NaCl
authorDavid du Colombier <0intro@gmail.com>
Mon, 6 Nov 2017 06:35:42 +0000 (07:35 +0100)
committerDavid du Colombier <0intro@gmail.com>
Mon, 6 Nov 2017 07:09:50 +0000 (07:09 +0000)
On Plan 9, some file servers, like ramfs, handle the read
offset when reading directories. However, the offset isn't
valid anymore after directory entries have been removed
between successive calls to read.

This issue happens when os.RemoveAll is called on a
directory that doesn't fit on a single 9P response message.

In this case, the first part of the directory is read,
then directory entries are removed and the second read
will be incomplete because the read offset won't be valid
anymore. Consequently, the content of the directory will
only be partially removed.

We change RemoveAll to call fd.Seek(0, 0) before calling
fd.Readdirnames, so the read offset will always be reset
after removing the directory entries.

After adding TestRemoveAllLarge, we noticed the same issue
appears on NaCl and the same fix applies as well.

Fixes #22572.

Change-Id: Ifc76ea7ccaf0168c34dc8ec0f400dc04db1baf8f
Reviewed-on: https://go-review.googlesource.com/75974
Run-TryBot: David du Colombier <0intro@gmail.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
src/os/path.go
src/os/path_test.go

index 146d7b695481dcf279515484c4508de4b90f7d3f..17c49c8687debd72ea4b34017d26ba205b94980c 100644 (file)
@@ -6,6 +6,7 @@ package os
 
 import (
        "io"
+       "runtime"
        "syscall"
 )
 
@@ -97,6 +98,11 @@ func RemoveAll(path string) error {
        // Remove contents & return first error.
        err = nil
        for {
+               if err == nil && (runtime.GOOS == "plan9" || runtime.GOOS == "nacl") {
+                       // Reset read offset after removing directory entries.
+                       // See golang.org/issue/22572.
+                       fd.Seek(0, 0)
+               }
                names, err1 := fd.Readdirnames(100)
                for _, name := range names {
                        err1 := RemoveAll(path + string(PathSeparator) + name)
index 6f5bfa54f8f77c1b080a5ad03c1abf84e5459c80..f58c7e746d995fc152dc748b91915a7c175bcefa 100644 (file)
@@ -5,6 +5,7 @@
 package os_test
 
 import (
+       "fmt"
        "internal/testenv"
        "io/ioutil"
        . "os"
@@ -169,6 +170,36 @@ func TestRemoveAll(t *testing.T) {
        }
 }
 
+// Test RemoveAll on a large directory.
+func TestRemoveAllLarge(t *testing.T) {
+       if testing.Short() {
+               t.Skip("skipping in short mode")
+       }
+
+       tmpDir := TempDir()
+       // Work directory.
+       path := tmpDir + "/_TestRemoveAllLarge_"
+
+       // Make directory with 1000 files and remove.
+       if err := MkdirAll(path, 0777); err != nil {
+               t.Fatalf("MkdirAll %q: %s", path, err)
+       }
+       for i := 0; i < 1000; i++ {
+               fpath := fmt.Sprintf("%s/file%d", path, i)
+               fd, err := Create(fpath)
+               if err != nil {
+                       t.Fatalf("create %q: %s", fpath, err)
+               }
+               fd.Close()
+       }
+       if err := RemoveAll(path); err != nil {
+               t.Fatalf("RemoveAll %q: %s", path, err)
+       }
+       if _, err := Lstat(path); err == nil {
+               t.Fatalf("Lstat %q succeeded after RemoveAll", path)
+       }
+}
+
 func TestMkdirAllWithSymlink(t *testing.T) {
        testenv.MustHaveSymlink(t)