1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213
|
// Copyright 2020 the Go-FUSE Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package fs
import (
"context"
"fmt"
"os"
"path/filepath"
"sync"
"sync/atomic"
"syscall"
"testing"
"time"
"github.com/hanwen/go-fuse/v2/fuse"
"github.com/hanwen/go-fuse/v2/internal/testutil"
)
type allChildrenNode struct {
Inode
depth int
}
var _ = (NodeLookuper)((*allChildrenNode)(nil))
var _ = (NodeReaddirer)((*allChildrenNode)(nil))
func (n *allChildrenNode) Lookup(ctx context.Context, name string, out *fuse.EntryOut) (*Inode, syscall.Errno) {
if n.depth == 0 {
return nil, syscall.ENOENT
}
stable := StableAttr{
Mode: syscall.S_IFDIR,
}
if n.depth == 1 {
stable.Mode = syscall.S_IFREG
}
childFN := &allChildrenNode{
depth: n.depth - 1,
}
child := n.NewInode(ctx, childFN, stable)
return child, 0
}
func (n *allChildrenNode) Readdir(ctx context.Context) (DirStream, syscall.Errno) {
var list []fuse.DirEntry
var m uint32 = syscall.S_IFDIR
if n.depth == 1 {
m = syscall.S_IFREG
}
for i := 0; i < 100; i++ {
list = append(list, fuse.DirEntry{
Name: fmt.Sprintf("%d", i),
Mode: m,
})
}
return NewListDirStream(list), 0
}
func TestForget(t *testing.T) {
if os.Geteuid() != 0 {
t.Skip("must run test as root")
}
root := &allChildrenNode{
depth: 2,
}
ttl := 10 * time.Millisecond
options := &Options{
FirstAutomaticIno: 1,
EntryTimeout: &ttl,
}
options.Debug = testutil.VerboseTest()
dir := t.TempDir()
rawFS := NewNodeFS(root, options)
server, err := fuse.NewServer(rawFS, dir, &options.MountOptions)
if err != nil {
t.Fatal(err)
}
defer server.Unmount()
go server.Serve()
if err := server.WaitMount(); err != nil {
t.Fatal(err)
}
nop := func(path string, info os.FileInfo, err error) error {
return nil
}
if err := filepath.Walk(dir, nop); err != nil {
t.Fatal(err)
}
t.Log("dropping cache")
if err := os.WriteFile("/proc/sys/vm/drop_caches", []byte("2"), 0644); err != nil {
}
time.Sleep(ttl)
bridge := rawFS.(*rawBridge)
bridge.mu.Lock()
l := len(bridge.kernelNodeIds)
bridge.mu.Unlock()
if l != 1 {
t.Fatalf("got %d live nodes, want 1", l)
}
}
type forgetTestRootNode struct {
Inode
mu sync.Mutex
onForgetCount uint32
fileNode *forgetTestSubNode
dirNode *forgetTestSubNode
}
func (n *forgetTestRootNode) OnForget() {
atomic.AddUint32(&n.onForgetCount, 1)
}
type forgetTestSubNode struct {
Inode
root *forgetTestRootNode
}
func (n *forgetTestSubNode) OnForget() {
n.root.OnForget()
}
func (n *forgetTestSubNode) OnAdd(ctx context.Context) {
if !n.IsDir() {
return
}
ftn := &forgetTestSubNode{root: n.root}
ch := n.NewPersistentInode(ctx,
ftn,
StableAttr{Mode: fuse.S_IFREG})
n.root.mu.Lock()
defer n.root.mu.Unlock()
n.root.dirNode = n
n.root.fileNode = ftn
n.AddChild("child", ch, true)
}
func (n *forgetTestRootNode) Lookup(ctx context.Context, name string, out *fuse.EntryOut) (*Inode, syscall.Errno) {
if name != "subdir" {
return nil, syscall.ENOENT
}
if ch := n.GetChild(name); ch != nil {
return ch, 0
}
ftn := &forgetTestSubNode{root: n}
ch := n.NewInode(ctx, ftn,
StableAttr{Mode: fuse.S_IFDIR})
return ch, 0
}
func TestOnForget(t *testing.T) {
root := &forgetTestRootNode{}
mnt, srv := testMount(t, root, nil)
sub := mnt + "/subdir"
_, err := os.Stat(sub)
if err != nil {
t.Fatal(err)
}
root.mu.Lock()
if root.dirNode == nil {
t.Fatal("Lookup not triggered")
}
if root.fileNode == nil {
t.Fatal("OnAdd not triggered")
}
root.mu.Unlock()
if root.dirNode.GetChild("child") == nil {
t.Fatal("child not there")
}
if err := syscall.Rmdir(sub); err != nil {
t.Fatal(err)
}
if root.GetChild("subdir") != nil {
t.Fatal("rmdir left node")
}
// The kernel issues FORGET immediately, but it takes a bit to
// process the request.
time.Sleep(time.Millisecond)
if got := atomic.LoadUint32(&root.onForgetCount); got != 0 {
t.Errorf("got count %d, want 0", got)
}
root.fileNode.ForgetPersistent()
if got := atomic.LoadUint32(&root.onForgetCount); got != 2 {
t.Errorf("got count %d, want 2", got)
}
if err := srv.Unmount(); err != nil {
t.Errorf("Unmount: %v", err)
}
if got := atomic.LoadUint32(&root.onForgetCount); got != 3 {
t.Errorf("got count %d, want 3", got)
}
}
|