aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/bazil.org/fuse/options.go
blob: 65ce8a5410d2729f23fd8c9b901d1e00dde69e4e (plain) (blame)
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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
package fuse

import (
    "errors"
    "strings"
)

func dummyOption(conf *mountConfig) error {
    return nil
}

// mountConfig holds the configuration for a mount operation.
// Use it by passing MountOption values to Mount.
type mountConfig struct {
    options          map[string]string
    maxReadahead     uint32
    initFlags        InitFlags
    osxfuseLocations []OSXFUSEPaths
}

func escapeComma(s string) string {
    s = strings.Replace(s, `\`, `\\`, -1)
    s = strings.Replace(s, `,`, `\,`, -1)
    return s
}

// getOptions makes a string of options suitable for passing to FUSE
// mount flag `-o`. Returns an empty string if no options were set.
// Any platform specific adjustments should happen before the call.
func (m *mountConfig) getOptions() string {
    var opts []string
    for k, v := range m.options {
        k = escapeComma(k)
        if v != "" {
            k += "=" + escapeComma(v)
        }
        opts = append(opts, k)
    }
    return strings.Join(opts, ",")
}

type mountOption func(*mountConfig) error

// MountOption is passed to Mount to change the behavior of the mount.
type MountOption mountOption

// FSName sets the file system name (also called source) that is
// visible in the list of mounted file systems.
//
// FreeBSD ignores this option.
func FSName(name string) MountOption {
    return func(conf *mountConfig) error {
        conf.options["fsname"] = name
        return nil
    }
}

// Subtype sets the subtype of the mount. The main type is always
// `fuse`. The type in a list of mounted file systems will look like
// `fuse.foo`.
//
// OS X ignores this option.
// FreeBSD ignores this option.
func Subtype(fstype string) MountOption {
    return func(conf *mountConfig) error {
        conf.options["subtype"] = fstype
        return nil
    }
}

// LocalVolume sets the volume to be local (instead of network),
// changing the behavior of Finder, Spotlight, and such.
//
// OS X only. Others ignore this option.
func LocalVolume() MountOption {
    return localVolume
}

// VolumeName sets the volume name shown in Finder.
//
// OS X only. Others ignore this option.
func VolumeName(name string) MountOption {
    return volumeName(name)
}

// NoAppleDouble makes OSXFUSE disallow files with names used by OS X
// to store extended attributes on file systems that do not support
// them natively.
//
// Such file names are:
//
//     ._*
//     .DS_Store
//
// OS X only.  Others ignore this option.
func NoAppleDouble() MountOption {
    return noAppleDouble
}

// NoAppleXattr makes OSXFUSE disallow extended attributes with the
// prefix "com.apple.". This disables persistent Finder state and
// other such information.
//
// OS X only.  Others ignore this option.
func NoAppleXattr() MountOption {
    return noAppleXattr
}

// ExclCreate causes O_EXCL flag to be set for only "truly" exclusive creates,
// i.e. create calls for which the initiator explicitly set the O_EXCL flag.
//
// OSXFUSE expects all create calls to return EEXIST in case the file
// already exists, regardless of whether O_EXCL was specified or not.
// To ensure this behavior, it normally sets OpenExclusive for all
// Create calls, regardless of whether the original call had it set.
// For distributed filesystems, that may force every file create to be
// a distributed consensus action, causing undesirable delays.
//
// This option makes the FUSE filesystem see the original flag value,
// and better decide when to ensure global consensus.
//
// Note that returning EEXIST on existing file create is still
// expected with OSXFUSE, regardless of the presence of the
// OpenExclusive flag.
//
// For more information, see
// https://github.com/osxfuse/osxfuse/issues/209
//
// OS X only. Others ignore this options.
// Requires OSXFUSE 3.4.1 or newer.
func ExclCreate() MountOption {
    return exclCreate
}

// DaemonTimeout sets the time in seconds between a request and a reply before
// the FUSE mount is declared dead.
//
// OS X and FreeBSD only. Others ignore this option.
func DaemonTimeout(name string) MountOption {
    return daemonTimeout(name)
}

var ErrCannotCombineAllowOtherAndAllowRoot = errors.New("cannot combine AllowOther and AllowRoot")

// AllowOther allows other users to access the file system.
//
// Only one of AllowOther or AllowRoot can be used.
func AllowOther() MountOption {
    return func(conf *mountConfig) error {
        if _, ok := conf.options["allow_root"]; ok {
            return ErrCannotCombineAllowOtherAndAllowRoot
        }
        conf.options["allow_other"] = ""
        return nil
    }
}

// AllowRoot allows other users to access the file system.
//
// Only one of AllowOther or AllowRoot can be used.
//
// FreeBSD ignores this option.
func AllowRoot() MountOption {
    return func(conf *mountConfig) error {
        if _, ok := conf.options["allow_other"]; ok {
            return ErrCannotCombineAllowOtherAndAllowRoot
        }
        conf.options["allow_root"] = ""
        return nil
    }
}

// AllowDev enables interpreting character or block special devices on the
// filesystem.
func AllowDev() MountOption {
    return func(conf *mountConfig) error {
        conf.options["dev"] = ""
        return nil
    }
}

// AllowSUID allows set-user-identifier or set-group-identifier bits to take
// effect.
func AllowSUID() MountOption {
    return func(conf *mountConfig) error {
        conf.options["suid"] = ""
        return nil
    }
}

// DefaultPermissions makes the kernel enforce access control based on
// the file mode (as in chmod).
//
// Without this option, the Node itself decides what is and is not
// allowed. This is normally ok because FUSE file systems cannot be
// accessed by other users without AllowOther/AllowRoot.
//
// FreeBSD ignores this option.
func DefaultPermissions() MountOption {
    return func(conf *mountConfig) error {
        conf.options["default_permissions"] = ""
        return nil
    }
}

// ReadOnly makes the mount read-only.
func ReadOnly() MountOption {
    return func(conf *mountConfig) error {
        conf.options["ro"] = ""
        return nil
    }
}

// MaxReadahead sets the number of bytes that can be prefetched for
// sequential reads. The kernel can enforce a maximum value lower than
// this.
//
// This setting makes the kernel perform speculative reads that do not
// originate from any client process. This usually tremendously
// improves read performance.
func MaxReadahead(n uint32) MountOption {
    return func(conf *mountConfig) error {
        conf.maxReadahead = n
        return nil
    }
}

// AsyncRead enables multiple outstanding read requests for the same
// handle. Without this, there is at most one request in flight at a
// time.
func AsyncRead() MountOption {
    return func(conf *mountConfig) error {
        conf.initFlags |= InitAsyncRead
        return nil
    }
}

// WritebackCache enables the kernel to buffer writes before sending
// them to the FUSE server. Without this, writethrough caching is
// used.
func WritebackCache() MountOption {
    return func(conf *mountConfig) error {
        conf.initFlags |= InitWritebackCache
        return nil
    }
}

// OSXFUSEPaths describes the paths used by an installed OSXFUSE
// version. See OSXFUSELocationV3 for typical values.
type OSXFUSEPaths struct {
    // Prefix for the device file. At mount time, an incrementing
    // number is suffixed until a free FUSE device is found.
    DevicePrefix string
    // Path of the load helper, used to load the kernel extension if
    // no device files are found.
    Load string
    // Path of the mount helper, used for the actual mount operation.
    Mount string
    // Environment variable used to pass the path to the executable
    // calling the mount helper.
    DaemonVar string
}

// Default paths for OSXFUSE. See OSXFUSELocations.
var (
    OSXFUSELocationV3 = OSXFUSEPaths{
        DevicePrefix: "/dev/osxfuse",
        Load:         "/Library/Filesystems/osxfuse.fs/Contents/Resources/load_osxfuse",
        Mount:        "/Library/Filesystems/osxfuse.fs/Contents/Resources/mount_osxfuse",
        DaemonVar:    "MOUNT_OSXFUSE_DAEMON_PATH",
    }
    OSXFUSELocationV2 = OSXFUSEPaths{
        DevicePrefix: "/dev/osxfuse",
        Load:         "/Library/Filesystems/osxfusefs.fs/Support/load_osxfusefs",
        Mount:        "/Library/Filesystems/osxfusefs.fs/Support/mount_osxfusefs",
        DaemonVar:    "MOUNT_FUSEFS_DAEMON_PATH",
    }
)

// OSXFUSELocations sets where to look for OSXFUSE files. The
// arguments are all the possible locations. The previous locations
// are replaced.
//
// Without this option, OSXFUSELocationV3 and OSXFUSELocationV2 are
// used.
//
// OS X only. Others ignore this option.
func OSXFUSELocations(paths ...OSXFUSEPaths) MountOption {
    return func(conf *mountConfig) error {
        if len(paths) == 0 {
            return errors.New("must specify at least one location for OSXFUSELocations")
        }
        // replace previous values, but make a copy so there's no
        // worries about caller mutating their slice
        conf.osxfuseLocations = append(conf.osxfuseLocations[:0], paths...)
        return nil
    }
}

// AllowNonEmptyMount allows the mounting over a non-empty directory.
//
// The files in it will be shadowed by the freshly created mount. By
// default these mounts are rejected to prevent accidental covering up
// of data, which could for example prevent automatic backup.
func AllowNonEmptyMount() MountOption {
    return func(conf *mountConfig) error {
        conf.options["nonempty"] = ""
        return nil
    }
}