1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
19 "git.arvados.org/arvados.git/sdk/go/arvados"
21 "golang.org/x/net/context"
22 "golang.org/x/net/webdav"
26 lockPrefix string = uuid()
27 nextLockSuffix int64 = prand.Int63()
28 errReadOnly = errors.New("read-only filesystem")
31 // webdavFS implements a webdav.FileSystem by wrapping an
32 // arvados.CollectionFilesystem.
34 // Collections don't preserve empty directories, so Mkdir is
35 // effectively a no-op, and we need to make parent dirs spring into
36 // existence automatically so sequences like "mkcol foo; put foo/bar"
38 type webdavFS struct {
39 collfs arvados.FileSystem
41 // webdav PROPFIND reads the first few bytes of each file
42 // whose filename extension isn't recognized, which is
43 // prohibitively expensive: we end up fetching multiple 64MiB
44 // blocks. Avoid this by returning EOF on all reads when
45 // handling a PROPFIND.
49 func (fs *webdavFS) makeparents(name string) {
53 dir, _ := path.Split(name)
54 if dir == "" || dir == "/" {
57 dir = dir[:len(dir)-1]
59 fs.collfs.Mkdir(dir, 0755)
62 func (fs *webdavFS) Mkdir(ctx context.Context, name string, perm os.FileMode) error {
66 name = strings.TrimRight(name, "/")
68 return fs.collfs.Mkdir(name, 0755)
71 func (fs *webdavFS) OpenFile(ctx context.Context, name string, flag int, perm os.FileMode) (f webdav.File, err error) {
72 writing := flag&(os.O_WRONLY|os.O_RDWR|os.O_TRUNC) != 0
76 f, err = fs.collfs.OpenFile(name, flag, perm)
78 // webdav module returns 404 on all OpenFile errors,
79 // but returns 405 Method Not Allowed if OpenFile()
80 // succeeds but Write() or Close() fails. We'd rather
81 // have 405. writeFailer ensures Close() fails if the
82 // file is opened for writing *or* Write() is called.
87 f = writeFailer{File: f, err: err}
95 func (fs *webdavFS) RemoveAll(ctx context.Context, name string) error {
96 return fs.collfs.RemoveAll(name)
99 func (fs *webdavFS) Rename(ctx context.Context, oldName, newName string) error {
103 if strings.HasSuffix(oldName, "/") {
104 // WebDAV "MOVE foo/ bar/" means rename foo to bar.
105 oldName = oldName[:len(oldName)-1]
106 newName = strings.TrimSuffix(newName, "/")
108 fs.makeparents(newName)
109 return fs.collfs.Rename(oldName, newName)
112 func (fs *webdavFS) Stat(ctx context.Context, name string) (os.FileInfo, error) {
116 return fs.collfs.Stat(name)
119 type writeFailer struct {
124 func (wf writeFailer) Write([]byte) (int, error) {
129 func (wf writeFailer) Close() error {
130 err := wf.File.Close()
137 type readEOF struct {
141 func (readEOF) Read(p []byte) (int, error) {
145 // noLockSystem implements webdav.LockSystem by returning success for
146 // every possible locking operation, even though it has no side
147 // effects such as actually locking anything. This works for a
148 // read-only webdav filesystem because webdav locks only apply to
151 // This is more suitable than webdav.NewMemLS() for two reasons:
152 // First, it allows keep-web to use one locker for all collections
153 // even though coll1.vhost/foo and coll2.vhost/foo have the same path
154 // but represent different resources. Additionally, it returns valid
155 // tokens (rfc2518 specifies that tokens are represented as URIs and
156 // are unique across all resources for all time), which might improve
157 // client compatibility.
159 // However, it does also permit impossible operations, like acquiring
160 // conflicting locks and releasing non-existent locks. This might
161 // confuse some clients if they try to probe for correctness.
163 // Currently this is a moot point: the LOCK and UNLOCK methods are not
164 // accepted by keep-web, so it suffices to implement the
165 // webdav.LockSystem interface.
166 type noLockSystem struct{}
168 func (*noLockSystem) Confirm(time.Time, string, string, ...webdav.Condition) (func(), error) {
172 func (*noLockSystem) Create(now time.Time, details webdav.LockDetails) (token string, err error) {
173 return fmt.Sprintf("opaquelocktoken:%s-%x", lockPrefix, atomic.AddInt64(&nextLockSuffix, 1)), nil
176 func (*noLockSystem) Refresh(now time.Time, token string, duration time.Duration) (webdav.LockDetails, error) {
177 return webdav.LockDetails{}, nil
180 func (*noLockSystem) Unlock(now time.Time, token string) error {
186 // Return a version 1 variant 4 UUID, meaning all bits are random
187 // except the ones indicating the version and variant.
190 if _, err := rand.Read(data[:]); err != nil {
194 data[8] = data[8]&0x3f | 0x80
196 data[6] = data[6]&0x0f | 0x40
197 return fmt.Sprintf("%x-%x-%x-%x-%x", data[0:4], data[4:6], data[6:8], data[8:10], data[10:])