summaryrefslogtreecommitdiffhomepage
path: root/pkg/sentry/vfs/README.md
blob: 5aad31b7820ec59de2cf2c6ce716c8c66844a59e (plain)
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
# The gVisor Virtual Filesystem

THIS PACKAGE IS CURRENTLY EXPERIMENTAL AND NOT READY OR ENABLED FOR PRODUCTION
USE. For the filesystem implementation currently used by gVisor, see the `fs`
package.

## Implementation Notes

### Reference Counting

Filesystem, Dentry, Mount, MountNamespace, and FileDescription are all
reference-counted. Mount and MountNamespace are exclusively VFS-managed; when
their reference count reaches zero, VFS releases their resources. Filesystem and
FileDescription management is shared between VFS and filesystem implementations;
when their reference count reaches zero, VFS notifies the implementation by
calling `FilesystemImpl.Release()` or `FileDescriptionImpl.Release()`
respectively and then releases VFS-owned resources. Dentries are exclusively
managed by filesystem implementations; reference count changes are abstracted
through DentryImpl, which should release resources when reference count reaches
zero.

Filesystem references are held by:

-   Mount: Each referenced Mount holds a reference on the mounted Filesystem.

Dentry references are held by:

-   FileDescription: Each referenced FileDescription holds a reference on the
    Dentry through which it was opened, via `FileDescription.vd.dentry`.

-   Mount: Each referenced Mount holds a reference on its mount point and on the
    mounted filesystem root. The mount point is mutable (`mount(MS_MOVE)`).

Mount references are held by:

-   FileDescription: Each referenced FileDescription holds a reference on the
    Mount on which it was opened, via `FileDescription.vd.mount`.

-   Mount: Each referenced Mount holds a reference on its parent, which is the
    mount containing its mount point.

-   VirtualFilesystem: A reference is held on each Mount that has been connected
    to a mount point, but not yet umounted.

MountNamespace and FileDescription references are held by users of VFS. The
expectation is that each `kernel.Task` holds a reference on its corresponding
MountNamespace, and each file descriptor holds a reference on its represented
FileDescription.

Notes:

-   Dentries do not hold a reference on their owning Filesystem. Instead, all
    uses of a Dentry occur in the context of a Mount, which holds a reference on
    the relevant Filesystem (see e.g. the VirtualDentry type). As a corollary,
    when releasing references on both a Dentry and its corresponding Mount, the
    Dentry's reference must be released first (because releasing the Mount's
    reference may release the last reference on the Filesystem, whose state may
    be required to release the Dentry reference).

### The Inheritance Pattern

Filesystem, Dentry, and FileDescription are all concepts featuring both state
that must be shared between VFS and filesystem implementations, and operations
that are implementation-defined. To facilitate this, each of these three
concepts follows the same pattern, shown below for Dentry:

```go
// Dentry represents a node in a filesystem tree.
type Dentry struct {
  // VFS-required dentry state.
  parent *Dentry
  // ...

  // impl is the DentryImpl associated with this Dentry. impl is immutable.
  // This should be the last field in Dentry.
  impl DentryImpl
}

// Init must be called before first use of d.
func (d *Dentry) Init(impl DentryImpl) {
  d.impl = impl
}

// Impl returns the DentryImpl associated with d.
func (d *Dentry) Impl() DentryImpl {
  return d.impl
}

// DentryImpl contains implementation-specific details of a Dentry.
// Implementations of DentryImpl should contain their associated Dentry by
// value as their first field.
type DentryImpl interface {
  // VFS-required implementation-defined dentry operations.
  IncRef()
  // ...
}
```

This construction, which is essentially a type-safe analogue to Linux's
`container_of` pattern, has the following properties:

-   VFS works almost exclusively with pointers to Dentry rather than DentryImpl
    interface objects, such as in the type of `Dentry.parent`. This avoids
    interface method calls (which are somewhat expensive to perform, and defeat
    inlining and escape analysis), reduces the size of VFS types (since an
    interface object is two pointers in size), and allows pointers to be loaded
    and stored atomically using `sync/atomic`. Implementation-defined behavior
    is accessed via `Dentry.impl` when required.

-   Filesystem implementations can access the implementation-defined state
    associated with objects of VFS types by type-asserting or type-switching
    (e.g. `Dentry.Impl().(*myDentry)`). Type assertions to a concrete type
    require only an equality comparison of the interface object's type pointer
    to a static constant, and are consequently very fast.

-   Filesystem implementations can access the VFS state associated with objects
    of implementation-defined types directly.

-   VFS and implementation-defined state for a given type occupy the same
    object, minimizing memory allocations and maximizing memory locality. `impl`
    is the last field in `Dentry`, and `Dentry` is the first field in
    `DentryImpl` implementations, for similar reasons: this tends to cause
    fetching of the `Dentry.impl` interface object to also fetch `DentryImpl`
    fields, either because they are in the same cache line or via next-line
    prefetching.

## Future Work

-   Most `mount(2)` features, and unmounting, are incomplete.

-   VFS1 filesystems are not directly compatible with VFS2. It may be possible
    to implement shims that implement `vfs.FilesystemImpl` for
    `fs.MountNamespace`, `vfs.DentryImpl` for `fs.Dirent`, and
    `vfs.FileDescriptionImpl` for `fs.File`, which may be adequate for
    filesystems that are not performance-critical (e.g. sysfs); however, it is
    not clear that this will be less effort than simply porting the filesystems
    in question. Practically speaking, the following filesystems will probably
    need to be ported or made compatible through a shim to evaluate filesystem
    performance on realistic workloads:

    -   devfs/procfs/sysfs, which will realistically be necessary to execute
        most applications. (Note that procfs and sysfs do not support hard
        links, so they do not require the complexity of separate inode objects.
        Also note that Linux's /dev is actually a variant of tmpfs called
        devtmpfs.)

    -   tmpfs. This should be relatively straightforward: copy/paste memfs,
        store regular file contents in pgalloc-allocated memory instead of
        `[]byte`, and add support for file timestamps. (In fact, it probably
        makes more sense to convert memfs to tmpfs and not keep the former.)

    -   A remote filesystem, either lisafs (if it is ready by the time that
        other benchmarking prerequisites are) or v9fs (aka 9P, aka gofers).

    -   epoll files.

    Filesystems that will need to be ported before switching to VFS2, but can
    probably be skipped for early testing:

    -   overlayfs, which is needed for (at least) synthetic mount points.

    -   Support for host ttys.

    -   timerfd files.

    Filesystems that can be probably dropped:

    -   ashmem, which is far too incomplete to use.

    -   binder, which is similarly far too incomplete to use.

-   Save/restore. For instance, it is unclear if the current implementation of
    the `state` package supports the inheritance pattern described above.

-   Many features that were previously implemented by VFS must now be
    implemented by individual filesystems (though, in most cases, this should
    consist of calls to hooks or libraries provided by `vfs` or other packages).
    This includes, but is not necessarily limited to:

    -   Block and character device special files

    -   Inotify

    -   File locking

    -   `O_ASYNC`