readonly_unix.go 3.98 KB
Newer Older
1 2
// A Go mirror of libfuse's hello.c

3
// +build linux darwin freebsd
4

5 6 7
package readonly

import (
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
8
	"bazil.org/fuse"
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
9 10 11 12 13 14 15 16 17 18
	"bazil.org/fuse/fs"
	"fmt"
	core "github.com/jbenet/go-ipfs/core"
	mdag "github.com/jbenet/go-ipfs/merkledag"
	"os"
	"os/exec"
	"os/signal"
	"runtime"
	"syscall"
	"time"
19 20
)

Juan Batiz-Benet's avatar
go lint  
Juan Batiz-Benet committed
21
// FileSystem is the readonly Ipfs Fuse Filesystem.
22
type FileSystem struct {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
23
	Ipfs *core.IpfsNode
24 25
}

Juan Batiz-Benet's avatar
go lint  
Juan Batiz-Benet committed
26
// NewFileSystem constructs new fs using given core.IpfsNode instance.
27
func NewFileSystem(ipfs *core.IpfsNode) *FileSystem {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
28
	return &FileSystem{Ipfs: ipfs}
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
29 30
}

Juan Batiz-Benet's avatar
go lint  
Juan Batiz-Benet committed
31
// Root constructs the Root of the filesystem, a Root object.
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
32
func (f FileSystem) Root() (fs.Node, fuse.Error) {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
33
	return &Root{Ipfs: f.Ipfs}, nil
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
34 35
}

Juan Batiz-Benet's avatar
go lint  
Juan Batiz-Benet committed
36
// Root is the root object of the filesystem tree.
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
37
type Root struct {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
38
	Ipfs *core.IpfsNode
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
39 40
}

Juan Batiz-Benet's avatar
go lint  
Juan Batiz-Benet committed
41
// Attr returns file attributes.
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
42 43
func (*Root) Attr() fuse.Attr {
	return fuse.Attr{Mode: os.ModeDir | 0111} // -rw+x
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
44 45
}

Juan Batiz-Benet's avatar
go lint  
Juan Batiz-Benet committed
46
// Lookup performs a lookup under this node.
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
47
func (s *Root) Lookup(name string, intr fs.Intr) (fs.Node, fuse.Error) {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
48 49 50 51 52 53 54 55 56 57 58 59 60
	switch name {
	case "mach_kernel", ".hidden", "._.":
		// Just quiet some log noise on OS X.
		return nil, fuse.ENOENT
	}

	nd, err := s.Ipfs.Resolver.ResolvePath(name)
	if err != nil {
		// todo: make this error more versatile.
		return nil, fuse.ENOENT
	}

	return &Node{Ipfs: s.Ipfs, Nd: nd}, nil
61 62
}

Juan Batiz-Benet's avatar
go lint  
Juan Batiz-Benet committed
63
// ReadDir reads a particular directory. Disallowed for root.
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
64 65
func (*Root) ReadDir(intr fs.Intr) ([]fuse.Dirent, fuse.Error) {
	return nil, fuse.EPERM
66 67
}

Juan Batiz-Benet's avatar
go lint  
Juan Batiz-Benet committed
68
// Node is the core object representing a filesystem tree node.
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
69
type Node struct {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
70 71
	Ipfs *core.IpfsNode
	Nd   *mdag.Node
72 73
}

Juan Batiz-Benet's avatar
go lint  
Juan Batiz-Benet committed
74
// Attr returns the attributes of a given node.
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
75 76 77 78
func (s *Node) Attr() fuse.Attr {
	if len(s.Nd.Links) > 0 {
		return fuse.Attr{Mode: os.ModeDir | 0555}
	}
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
79

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
80 81
	size, _ := s.Nd.Size()
	return fuse.Attr{Mode: 0444, Size: uint64(size)}
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
82
}
83

Juan Batiz-Benet's avatar
go lint  
Juan Batiz-Benet committed
84
// Lookup performs a lookup under this node.
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
85
func (s *Node) Lookup(name string, intr fs.Intr) (fs.Node, fuse.Error) {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
86 87 88 89 90
	nd, err := s.Ipfs.Resolver.ResolveLinks(s.Nd, []string{name})
	if err != nil {
		// todo: make this error more versatile.
		return nil, fuse.ENOENT
	}
91

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
92
	return &Node{Ipfs: s.Ipfs, Nd: nd}, nil
93 94
}

Juan Batiz-Benet's avatar
go lint  
Juan Batiz-Benet committed
95
// ReadDir reads the link structure as directory entries
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
96
func (s *Node) ReadDir(intr fs.Intr) ([]fuse.Dirent, fuse.Error) {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
97 98 99 100 101 102 103 104 105 106 107 108 109
	entries := make([]fuse.Dirent, len(s.Nd.Links))
	for i, link := range s.Nd.Links {
		n := link.Name
		if len(n) == 0 {
			n = link.Hash.B58String()
		}
		entries[i] = fuse.Dirent{Name: n, Type: fuse.DT_File}
	}

	if len(entries) > 0 {
		return entries, nil
	}
	return nil, fuse.ENOENT
110 111
}

Juan Batiz-Benet's avatar
go lint  
Juan Batiz-Benet committed
112
// ReadAll reads the object data as file data
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
113
func (s *Node) ReadAll(intr fs.Intr) ([]byte, fuse.Error) {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
114
	return []byte(s.Nd.Data), nil
115 116
}

Juan Batiz-Benet's avatar
go lint  
Juan Batiz-Benet committed
117 118
// Mount mounts an IpfsNode instance at a particular path. It
// serves until the process receives exit signals (to Unmount).
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
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
func Mount(ipfs *core.IpfsNode, fpath string) error {

	sigc := make(chan os.Signal, 1)
	signal.Notify(sigc, syscall.SIGHUP, syscall.SIGINT,
		syscall.SIGTERM, syscall.SIGQUIT)

	go func() {
		<-sigc
		Unmount(fpath)
	}()

	c, err := fuse.Mount(fpath)
	if err != nil {
		return err
	}
	defer c.Close()

	err = fs.Serve(c, FileSystem{Ipfs: ipfs})
	if err != nil {
		return err
	}

	// check if the mount process has an error to report
	<-c.Ready
	if err := c.MountError; err != nil {
		return err
	}
	return nil
}
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
148

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
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
// Unmount attempts to unmount the provided FUSE mount point, forcibly
// if necessary.
func Unmount(point string) error {
	fmt.Printf("Unmounting %s...\n", point)

	var cmd *exec.Cmd
	switch runtime.GOOS {
	case "darwin":
		cmd = exec.Command("diskutil", "umount", "force", point)
	case "linux":
		cmd = exec.Command("fusermount", "-u", point)
	default:
		return fmt.Errorf("unmount: unimplemented")
	}

	errc := make(chan error, 1)
	go func() {
		if err := exec.Command("umount", point).Run(); err == nil {
			errc <- err
		}
		// retry to unmount with the fallback cmd
		errc <- cmd.Run()
	}()

	select {
	case <-time.After(1 * time.Second):
		return fmt.Errorf("umount timeout")
	case err := <-errc:
		return err
	}
179
}