| 
									
										
										
										
											2017-04-12 05:36:02 +05:30
										 |  |  | // 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 fuse | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2017-11-10 18:06:45 +01:00
										 |  |  | 	"errors" | 
					
						
							|  |  |  | 	"io" | 
					
						
							|  |  |  | 	"os" | 
					
						
							|  |  |  | 	"sync" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-12 05:36:02 +05:30
										 |  |  | 	"bazil.org/fuse" | 
					
						
							|  |  |  | 	"bazil.org/fuse/fs" | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 	"github.com/ethereum/go-ethereum/swarm/log" | 
					
						
							| 
									
										
										
										
											2017-04-12 05:36:02 +05:30
										 |  |  | 	"github.com/ethereum/go-ethereum/swarm/storage" | 
					
						
							|  |  |  | 	"golang.org/x/net/context" | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const ( | 
					
						
							|  |  |  | 	MaxAppendFileSize = 10485760 // 10Mb | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var ( | 
					
						
							|  |  |  | 	errInvalidOffset           = errors.New("Invalid offset during write") | 
					
						
							|  |  |  | 	errFileSizeMaxLimixReached = errors.New("File size exceeded max limit") | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var ( | 
					
						
							|  |  |  | 	_ fs.Node         = (*SwarmFile)(nil) | 
					
						
							|  |  |  | 	_ fs.HandleReader = (*SwarmFile)(nil) | 
					
						
							|  |  |  | 	_ fs.HandleWriter = (*SwarmFile)(nil) | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | type SwarmFile struct { | 
					
						
							|  |  |  | 	inode    uint64 | 
					
						
							|  |  |  | 	name     string | 
					
						
							|  |  |  | 	path     string | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 	addr     storage.Address | 
					
						
							| 
									
										
										
										
											2017-04-12 05:36:02 +05:30
										 |  |  | 	fileSize int64 | 
					
						
							|  |  |  | 	reader   storage.LazySectionReader | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	mountInfo *MountInfo | 
					
						
							|  |  |  | 	lock      *sync.RWMutex | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func NewSwarmFile(path, fname string, minfo *MountInfo) *SwarmFile { | 
					
						
							|  |  |  | 	newFile := &SwarmFile{ | 
					
						
							|  |  |  | 		inode:    NewInode(), | 
					
						
							|  |  |  | 		name:     fname, | 
					
						
							|  |  |  | 		path:     path, | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 		addr:     nil, | 
					
						
							| 
									
										
										
										
											2017-04-12 05:36:02 +05:30
										 |  |  | 		fileSize: -1, // -1 means , file already exists in swarm and you need to just get the size from swarm | 
					
						
							|  |  |  | 		reader:   nil, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		mountInfo: minfo, | 
					
						
							|  |  |  | 		lock:      &sync.RWMutex{}, | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return newFile | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | func (sf *SwarmFile) Attr(ctx context.Context, a *fuse.Attr) error { | 
					
						
							|  |  |  | 	log.Debug("swarmfs Attr", "path", sf.path) | 
					
						
							|  |  |  | 	sf.lock.Lock() | 
					
						
							|  |  |  | 	defer sf.lock.Unlock() | 
					
						
							|  |  |  | 	a.Inode = sf.inode | 
					
						
							| 
									
										
										
										
											2017-04-12 05:36:02 +05:30
										 |  |  | 	//TODO: need to get permission as argument | 
					
						
							|  |  |  | 	a.Mode = 0700 | 
					
						
							|  |  |  | 	a.Uid = uint32(os.Getuid()) | 
					
						
							|  |  |  | 	a.Gid = uint32(os.Getegid()) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 	if sf.fileSize == -1 { | 
					
						
							| 
									
										
										
										
											2018-07-09 14:11:49 +02:00
										 |  |  | 		reader, _ := sf.mountInfo.swarmApi.Retrieve(ctx, sf.addr) | 
					
						
							| 
									
										
										
										
											2017-04-12 05:36:02 +05:30
										 |  |  | 		quitC := make(chan bool) | 
					
						
							| 
									
										
										
										
											2018-07-13 17:40:28 +02:00
										 |  |  | 		size, err := reader.Size(ctx, quitC) | 
					
						
							| 
									
										
										
										
											2017-04-12 05:36:02 +05:30
										 |  |  | 		if err != nil { | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 			log.Error("Couldnt get size of file %s : %v", sf.path, err) | 
					
						
							|  |  |  | 			return err | 
					
						
							| 
									
										
										
										
											2017-04-12 05:36:02 +05:30
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 		sf.fileSize = size | 
					
						
							|  |  |  | 		log.Trace("swarmfs Attr", "size", size) | 
					
						
							|  |  |  | 		close(quitC) | 
					
						
							| 
									
										
										
										
											2017-04-12 05:36:02 +05:30
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 	a.Size = uint64(sf.fileSize) | 
					
						
							| 
									
										
										
										
											2017-04-12 05:36:02 +05:30
										 |  |  | 	return nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (sf *SwarmFile) Read(ctx context.Context, req *fuse.ReadRequest, resp *fuse.ReadResponse) error { | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 	log.Debug("swarmfs Read", "path", sf.path, "req.String", req.String()) | 
					
						
							| 
									
										
										
										
											2017-04-12 05:36:02 +05:30
										 |  |  | 	sf.lock.RLock() | 
					
						
							|  |  |  | 	defer sf.lock.RUnlock() | 
					
						
							|  |  |  | 	if sf.reader == nil { | 
					
						
							| 
									
										
										
										
											2018-07-09 14:11:49 +02:00
										 |  |  | 		sf.reader, _ = sf.mountInfo.swarmApi.Retrieve(ctx, sf.addr) | 
					
						
							| 
									
										
										
										
											2017-04-12 05:36:02 +05:30
										 |  |  | 	} | 
					
						
							|  |  |  | 	buf := make([]byte, req.Size) | 
					
						
							|  |  |  | 	n, err := sf.reader.ReadAt(buf, req.Offset) | 
					
						
							|  |  |  | 	if err == io.ErrUnexpectedEOF || err == io.EOF { | 
					
						
							|  |  |  | 		err = nil | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	resp.Data = buf[:n] | 
					
						
							|  |  |  | 	sf.reader = nil | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 	return err | 
					
						
							| 
									
										
										
										
											2017-04-12 05:36:02 +05:30
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (sf *SwarmFile) Write(ctx context.Context, req *fuse.WriteRequest, resp *fuse.WriteResponse) error { | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 	log.Debug("swarmfs Write", "path", sf.path, "req.String", req.String()) | 
					
						
							| 
									
										
										
										
											2017-04-12 05:36:02 +05:30
										 |  |  | 	if sf.fileSize == 0 && req.Offset == 0 { | 
					
						
							|  |  |  | 		// A new file is created | 
					
						
							|  |  |  | 		err := addFileToSwarm(sf, req.Data, len(req.Data)) | 
					
						
							|  |  |  | 		if err != nil { | 
					
						
							|  |  |  | 			return err | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		resp.Size = len(req.Data) | 
					
						
							|  |  |  | 	} else if req.Offset <= sf.fileSize { | 
					
						
							|  |  |  | 		totalSize := sf.fileSize + int64(len(req.Data)) | 
					
						
							|  |  |  | 		if totalSize > MaxAppendFileSize { | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 			log.Warn("swarmfs Append file size reached (%v) : (%v)", sf.fileSize, len(req.Data)) | 
					
						
							| 
									
										
										
										
											2017-04-12 05:36:02 +05:30
										 |  |  | 			return errFileSizeMaxLimixReached | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		err := appendToExistingFileInSwarm(sf, req.Data, req.Offset, int64(len(req.Data))) | 
					
						
							|  |  |  | 		if err != nil { | 
					
						
							|  |  |  | 			return err | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-10-09 06:45:30 -04:00
										 |  |  | 		resp.Size = len(req.Data) | 
					
						
							| 
									
										
										
										
											2017-04-12 05:36:02 +05:30
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 		log.Warn("swarmfs Invalid write request size(%v) : off(%v)", sf.fileSize, req.Offset) | 
					
						
							| 
									
										
										
										
											2017-04-12 05:36:02 +05:30
										 |  |  | 		return errInvalidOffset | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return nil | 
					
						
							|  |  |  | } |