aboutsummaryrefslogtreecommitdiffstats
path: root/swarm/api/swarmfs_unix.go
blob: e696c6b9a6ceed507b15ba2822dea6c224b3d7d5 (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
// Copyright 2017 The go-ethereum Authors
// This file is part of the go-ethereum library.
//
// The go-ethereum library is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// The go-ethereum library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.

// +build linux darwin freebsd

package api

import (
    "errors"
    "fmt"
    "os"
    "path/filepath"
    "strings"
    "sync"
    "time"

    "bazil.org/fuse"
    "bazil.org/fuse/fs"
    "github.com/ethereum/go-ethereum/common"
    "github.com/ethereum/go-ethereum/log"
    "github.com/ethereum/go-ethereum/swarm/storage"
)

var (
    inode     uint64 = 1
    inodeLock sync.RWMutex
)

var (
    errEmptyMountPoint = errors.New("need non-empty mount point")
    errMaxMountCount   = errors.New("max FUSE mount count reached")
    errMountTimeout    = errors.New("mount timeout")
)

func isFUSEUnsupportedError(err error) bool {
    if perr, ok := err.(*os.PathError); ok {
        return perr.Op == "open" && perr.Path == "/dev/fuse"
    }
    return err == fuse.ErrOSXFUSENotFound
}

// MountInfo contains information about every active mount
type MountInfo struct {
    MountPoint     string
    ManifestHash   string
    resolvedKey    storage.Key
    rootDir        *Dir
    fuseConnection *fuse.Conn
}

// newInode creates a new inode number.
// Inode numbers need to be unique, they are used for caching inside fuse
func newInode() uint64 {
    inodeLock.Lock()
    defer inodeLock.Unlock()
    inode += 1
    return inode
}

func (self *SwarmFS) Mount(mhash, mountpoint string) (*MountInfo, error) {
    if mountpoint == "" {
        return nil, errEmptyMountPoint
    }
    cleanedMountPoint, err := filepath.Abs(filepath.Clean(mountpoint))
    if err != nil {
        return nil, err
    }

    self.activeLock.Lock()
    defer self.activeLock.Unlock()

    noOfActiveMounts := len(self.activeMounts)
    if noOfActiveMounts >= maxFuseMounts {
        return nil, errMaxMountCount
    }

    if _, ok := self.activeMounts[cleanedMountPoint]; ok {
        return nil, fmt.Errorf("%s is already mounted", cleanedMountPoint)
    }

    key, _, path, err := self.swarmApi.parseAndResolve(mhash, true)
    if err != nil {
        return nil, fmt.Errorf("can't resolve %q: %v", mhash, err)
    }

    if len(path) > 0 {
        path += "/"
    }

    quitC := make(chan bool)
    trie, err := loadManifest(self.swarmApi.dpa, key, quitC)
    if err != nil {
        return nil, fmt.Errorf("can't load manifest %v: %v", key.String(), err)
    }

    dirTree := map[string]*Dir{}

    rootDir := &Dir{
        inode:       newInode(),
        name:        "root",
        directories: nil,
        files:       nil,
    }
    dirTree["root"] = rootDir

    err = trie.listWithPrefix(path, quitC, func(entry *manifestTrieEntry, suffix string) {
        key = common.Hex2Bytes(entry.Hash)
        fullpath := "/" + suffix
        basepath := filepath.Dir(fullpath)
        filename := filepath.Base(fullpath)

        parentDir := rootDir
        dirUntilNow := ""
        paths := strings.Split(basepath, "/")
        for i := range paths {
            if paths[i] != "" {
                thisDir := paths[i]
                dirUntilNow = dirUntilNow + "/" + thisDir

                if _, ok := dirTree[dirUntilNow]; !ok {
                    dirTree[dirUntilNow] = &Dir{
                        inode:       newInode(),
                        name:        thisDir,
                        path:        dirUntilNow,
                        directories: nil,
                        files:       nil,
                    }
                    parentDir.directories = append(parentDir.directories, dirTree[dirUntilNow])
                    parentDir = dirTree[dirUntilNow]

                } else {
                    parentDir = dirTree[dirUntilNow]
                }

            }
        }
        thisFile := &File{
            inode:    newInode(),
            name:     filename,
            path:     fullpath,
            key:      key,
            swarmApi: self.swarmApi,
        }
        parentDir.files = append(parentDir.files, thisFile)
    })

    fconn, err := fuse.Mount(cleanedMountPoint, fuse.FSName("swarmfs"), fuse.VolumeName(mhash))
    if err != nil {
        fuse.Unmount(cleanedMountPoint)
        log.Warn("Error mounting swarm manifest", "mountpoint", cleanedMountPoint, "err", err)
        return nil, err
    }

    mounterr := make(chan error, 1)
    go func() {
        filesys := &FS{root: rootDir}
        if err := fs.Serve(fconn, filesys); err != nil {
            mounterr <- err
        }
    }()

    // Check if the mount process has an error to report.
    select {
    case <-time.After(mountTimeout):
        fuse.Unmount(cleanedMountPoint)
        return nil, errMountTimeout

    case err := <-mounterr:
        log.Warn("Error serving swarm FUSE FS", "mountpoint", cleanedMountPoint, "err", err)
        return nil, err

    case <-fconn.Ready:
        log.Info("Now serving swarm FUSE FS", "manifest", mhash, "mountpoint", cleanedMountPoint)
    }

    // Assemble and Store the mount information for future use
    mi := &MountInfo{
        MountPoint:     cleanedMountPoint,
        ManifestHash:   mhash,
        resolvedKey:    key,
        rootDir:        rootDir,
        fuseConnection: fconn,
    }
    self.activeMounts[cleanedMountPoint] = mi
    return mi, nil
}

func (self *SwarmFS) Unmount(mountpoint string) (bool, error) {
    self.activeLock.Lock()
    defer self.activeLock.Unlock()

    cleanedMountPoint, err := filepath.Abs(filepath.Clean(mountpoint))
    if err != nil {
        return false, err
    }

    mountInfo := self.activeMounts[cleanedMountPoint]
    if mountInfo == nil || mountInfo.MountPoint != cleanedMountPoint {
        return false, fmt.Errorf("%s is not mounted", cleanedMountPoint)
    }
    err = fuse.Unmount(cleanedMountPoint)
    if err != nil {
        // TODO(jmozah): try forceful unmount if normal unmount fails
        return false, err
    }

    // remove the mount information from the active map
    mountInfo.fuseConnection.Close()
    delete(self.activeMounts, cleanedMountPoint)
    return true, nil
}

func (self *SwarmFS) Listmounts() []*MountInfo {
    self.activeLock.RLock()
    defer self.activeLock.RUnlock()

    rows := make([]*MountInfo, 0, len(self.activeMounts))
    for _, mi := range self.activeMounts {
        rows = append(rows, mi)
    }
    return rows
}

func (self *SwarmFS) Stop() bool {
    for mp := range self.activeMounts {
        mountInfo := self.activeMounts[mp]
        self.Unmount(mountInfo.MountPoint)
    }
    return true
}