api.go 12.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
// Copyright 2016 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/>.

package api

import (
	"fmt"
	"io"
22
	"net/http"
23
	"path"
24 25 26 27
	"regexp"
	"strings"
	"sync"

28 29 30 31
	"bytes"
	"mime"
	"path/filepath"
	"time"
32 33 34

	"github.com/ethereum/go-ethereum/common"
	"github.com/ethereum/go-ethereum/log"
35
	"github.com/ethereum/go-ethereum/metrics"
36
	"github.com/ethereum/go-ethereum/swarm/storage"
37 38
)

39
var hashMatcher = regexp.MustCompile("^[0-9A-Fa-f]{64}")
40

41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
//setup metrics
var (
	apiResolveCount    = metrics.NewRegisteredCounter("api.resolve.count", nil)
	apiResolveFail     = metrics.NewRegisteredCounter("api.resolve.fail", nil)
	apiPutCount        = metrics.NewRegisteredCounter("api.put.count", nil)
	apiPutFail         = metrics.NewRegisteredCounter("api.put.fail", nil)
	apiGetCount        = metrics.NewRegisteredCounter("api.get.count", nil)
	apiGetNotFound     = metrics.NewRegisteredCounter("api.get.notfound", nil)
	apiGetHttp300      = metrics.NewRegisteredCounter("api.get.http.300", nil)
	apiModifyCount     = metrics.NewRegisteredCounter("api.modify.count", nil)
	apiModifyFail      = metrics.NewRegisteredCounter("api.modify.fail", nil)
	apiAddFileCount    = metrics.NewRegisteredCounter("api.addfile.count", nil)
	apiAddFileFail     = metrics.NewRegisteredCounter("api.addfile.fail", nil)
	apiRmFileCount     = metrics.NewRegisteredCounter("api.removefile.count", nil)
	apiRmFileFail      = metrics.NewRegisteredCounter("api.removefile.fail", nil)
	apiAppendFileCount = metrics.NewRegisteredCounter("api.appendfile.count", nil)
	apiAppendFileFail  = metrics.NewRegisteredCounter("api.appendfile.fail", nil)
)

60 61 62 63
type Resolver interface {
	Resolve(string) (common.Hash, error)
}

64
// NoResolverError is returned by MultiResolver.Resolve if no resolver
65
// can be found for the address.
66 67 68 69 70 71 72 73 74 75 76 77 78 79
type NoResolverError struct {
	TLD string
}

func NewNoResolverError(tld string) *NoResolverError {
	return &NoResolverError{TLD: tld}
}

func (e *NoResolverError) Error() string {
	if e.TLD == "" {
		return "no ENS resolver"
	}
	return fmt.Sprintf("no ENS endpoint configured to resolve .%s TLD names", e.TLD)
}
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

// MultiResolver is used to resolve URL addresses based on their TLDs.
// Each TLD can have multiple resolvers, and the resoluton from the
// first one in the sequence will be returned.
type MultiResolver struct {
	resolvers map[string][]Resolver
}

// MultiResolverOption sets options for MultiResolver and is used as
// arguments for its constructor.
type MultiResolverOption func(*MultiResolver)

// MultiResolverOptionWithResolver adds a Resolver to a list of resolvers
// for a specific TLD. If TLD is an empty string, the resolver will be added
// to the list of default resolver, the ones that will be used for resolution
// of addresses which do not have their TLD resolver specified.
func MultiResolverOptionWithResolver(r Resolver, tld string) MultiResolverOption {
	return func(m *MultiResolver) {
		m.resolvers[tld] = append(m.resolvers[tld], r)
	}
}

// NewMultiResolver creates a new instance of MultiResolver.
func NewMultiResolver(opts ...MultiResolverOption) (m *MultiResolver) {
	m = &MultiResolver{
105
		resolvers: make(map[string][]Resolver),
106 107 108 109 110 111 112 113 114 115 116 117
	}
	for _, o := range opts {
		o(m)
	}
	return m
}

// Resolve resolves address by choosing a Resolver by TLD.
// If there are more default Resolvers, or for a specific TLD,
// the Hash from the the first one which does not return error
// will be returned.
func (m MultiResolver) Resolve(addr string) (h common.Hash, err error) {
118
	rs := m.resolvers[""]
119 120 121 122
	tld := path.Ext(addr)
	if tld != "" {
		tld = tld[1:]
		rstld, ok := m.resolvers[tld]
123 124 125 126 127
		if ok {
			rs = rstld
		}
	}
	if rs == nil {
128
		return h, NewNoResolverError(tld)
129 130 131 132 133 134 135 136 137 138
	}
	for _, r := range rs {
		h, err = r.Resolve(addr)
		if err == nil {
			return
		}
	}
	return
}

139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
/*
Api implements webserver/file system related content storage and retrieval
on top of the dpa
it is the public interface of the dpa which is included in the ethereum stack
*/
type Api struct {
	dpa *storage.DPA
	dns Resolver
}

//the api constructor initialises
func NewApi(dpa *storage.DPA, dns Resolver) (self *Api) {
	self = &Api{
		dpa: dpa,
		dns: dns,
	}
	return
}

158 159 160 161 162 163 164
// to be used only in TEST
func (self *Api) Upload(uploadDir, index string) (hash string, err error) {
	fs := NewFileSystem(self)
	hash, err = fs.Upload(uploadDir, index)
	return hash, err
}

165 166 167 168 169 170 171 172 173 174 175 176
// DPA reader API
func (self *Api) Retrieve(key storage.Key) storage.LazySectionReader {
	return self.dpa.Retrieve(key)
}

func (self *Api) Store(data io.Reader, size int64, wg *sync.WaitGroup) (key storage.Key, err error) {
	return self.dpa.Store(data, size, wg, nil)
}

type ErrResolve error

// DNS Resolver
177
func (self *Api) Resolve(uri *URI) (storage.Key, error) {
178
	apiResolveCount.Inc(1)
179
	log.Trace(fmt.Sprintf("Resolving : %v", uri.Addr))
180

181 182
	// if the URI is immutable, check if the address is a hash
	isHash := hashMatcher.MatchString(uri.Addr)
183
	if uri.Immutable() || uri.DeprecatedImmutable() {
184 185
		if !isHash {
			return nil, fmt.Errorf("immutable address not a content hash: %q", uri.Addr)
186
		}
187
		return common.Hex2Bytes(uri.Addr), nil
188
	}
189 190 191 192

	// if DNS is not configured, check if the address is a hash
	if self.dns == nil {
		if !isHash {
193
			apiResolveFail.Inc(1)
194 195 196
			return nil, fmt.Errorf("no DNS to resolve name: %q", uri.Addr)
		}
		return common.Hex2Bytes(uri.Addr), nil
197
	}
198 199 200 201 202 203

	// try and resolve the address
	resolved, err := self.dns.Resolve(uri.Addr)
	if err == nil {
		return resolved[:], nil
	} else if !isHash {
204
		apiResolveFail.Inc(1)
205
		return nil, err
206
	}
207
	return common.Hex2Bytes(uri.Addr), nil
208 209 210
}

// Put provides singleton manifest creation on top of dpa store
211
func (self *Api) Put(content, contentType string) (storage.Key, error) {
212
	apiPutCount.Inc(1)
213 214 215 216
	r := strings.NewReader(content)
	wg := &sync.WaitGroup{}
	key, err := self.dpa.Store(r, int64(len(content)), wg, nil)
	if err != nil {
217
		apiPutFail.Inc(1)
218
		return nil, err
219 220 221 222 223
	}
	manifest := fmt.Sprintf(`{"entries":[{"hash":"%v","contentType":"%s"}]}`, key, contentType)
	r = strings.NewReader(manifest)
	key, err = self.dpa.Store(r, int64(len(manifest)), wg, nil)
	if err != nil {
224
		apiPutFail.Inc(1)
225
		return nil, err
226 227
	}
	wg.Wait()
228
	return key, nil
229 230 231
}

// Get uses iterative manifest retrieval and prefix matching
232
// to resolve basePath to content using dpa retrieve
233
// it returns a section reader, mimeType, status and an error
234
func (self *Api) Get(key storage.Key, path string) (reader storage.LazySectionReader, mimeType string, status int, err error) {
235
	apiGetCount.Inc(1)
236
	trie, err := loadManifest(self.dpa, key, nil)
237
	if err != nil {
238
		apiGetNotFound.Inc(1)
239
		status = http.StatusNotFound
240
		log.Warn(fmt.Sprintf("loadManifestTrie error: %v", err))
241 242 243
		return
	}

244
	log.Trace(fmt.Sprintf("getEntry(%s)", path))
245

246
	entry, _ := trie.getEntry(path)
247

248 249 250
	if entry != nil {
		key = common.Hex2Bytes(entry.Hash)
		status = entry.Status
251
		if status == http.StatusMultipleChoices {
252
			apiGetHttp300.Inc(1)
253 254 255 256 257 258
			return
		} else {
			mimeType = entry.ContentType
			log.Trace(fmt.Sprintf("content lookup key: '%v' (%v)", key, mimeType))
			reader = self.dpa.Retrieve(key)
		}
259
	} else {
260
		status = http.StatusNotFound
261
		apiGetNotFound.Inc(1)
262
		err = fmt.Errorf("manifest entry for '%s' not found", path)
263
		log.Warn(fmt.Sprintf("%v", err))
264 265 266 267
	}
	return
}

268
func (self *Api) Modify(key storage.Key, path, contentHash, contentType string) (storage.Key, error) {
269
	apiModifyCount.Inc(1)
270
	quitC := make(chan bool)
271
	trie, err := loadManifest(self.dpa, key, quitC)
272
	if err != nil {
273
		apiModifyFail.Inc(1)
274
		return nil, err
275 276
	}
	if contentHash != "" {
277
		entry := newManifestTrieEntry(&ManifestEntry{
278 279
			Path:        path,
			ContentType: contentType,
280 281
		}, nil)
		entry.Hash = contentHash
282 283 284 285 286
		trie.addEntry(entry, quitC)
	} else {
		trie.deleteEntry(path, quitC)
	}

287
	if err := trie.recalcAndStore(); err != nil {
288
		apiModifyFail.Inc(1)
289
		return nil, err
290
	}
291
	return trie.hash, nil
292
}
293 294

func (self *Api) AddFile(mhash, path, fname string, content []byte, nameresolver bool) (storage.Key, string, error) {
295
	apiAddFileCount.Inc(1)
296 297 298

	uri, err := Parse("bzz:/" + mhash)
	if err != nil {
299
		apiAddFileFail.Inc(1)
300 301 302 303
		return nil, "", err
	}
	mkey, err := self.Resolve(uri)
	if err != nil {
304
		apiAddFileFail.Inc(1)
305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322
		return nil, "", err
	}

	// trim the root dir we added
	if path[:1] == "/" {
		path = path[1:]
	}

	entry := &ManifestEntry{
		Path:        filepath.Join(path, fname),
		ContentType: mime.TypeByExtension(filepath.Ext(fname)),
		Mode:        0700,
		Size:        int64(len(content)),
		ModTime:     time.Now(),
	}

	mw, err := self.NewManifestWriter(mkey, nil)
	if err != nil {
323
		apiAddFileFail.Inc(1)
324 325 326 327 328
		return nil, "", err
	}

	fkey, err := mw.AddEntry(bytes.NewReader(content), entry)
	if err != nil {
329
		apiAddFileFail.Inc(1)
330 331 332 333 334
		return nil, "", err
	}

	newMkey, err := mw.Store()
	if err != nil {
335
		apiAddFileFail.Inc(1)
336 337 338 339 340 341 342 343 344
		return nil, "", err

	}

	return fkey, newMkey.String(), nil

}

func (self *Api) RemoveFile(mhash, path, fname string, nameresolver bool) (string, error) {
345
	apiRmFileCount.Inc(1)
346 347 348

	uri, err := Parse("bzz:/" + mhash)
	if err != nil {
349
		apiRmFileFail.Inc(1)
350 351 352 353
		return "", err
	}
	mkey, err := self.Resolve(uri)
	if err != nil {
354
		apiRmFileFail.Inc(1)
355 356 357 358 359 360 361 362 363 364
		return "", err
	}

	// trim the root dir we added
	if path[:1] == "/" {
		path = path[1:]
	}

	mw, err := self.NewManifestWriter(mkey, nil)
	if err != nil {
365
		apiRmFileFail.Inc(1)
366 367 368 369 370
		return "", err
	}

	err = mw.RemoveEntry(filepath.Join(path, fname))
	if err != nil {
371
		apiRmFileFail.Inc(1)
372 373 374 375 376
		return "", err
	}

	newMkey, err := mw.Store()
	if err != nil {
377
		apiRmFileFail.Inc(1)
378 379 380 381 382 383 384 385
		return "", err

	}

	return newMkey.String(), nil
}

func (self *Api) AppendFile(mhash, path, fname string, existingSize int64, content []byte, oldKey storage.Key, offset int64, addSize int64, nameresolver bool) (storage.Key, string, error) {
386
	apiAppendFileCount.Inc(1)
387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414

	buffSize := offset + addSize
	if buffSize < existingSize {
		buffSize = existingSize
	}

	buf := make([]byte, buffSize)

	oldReader := self.Retrieve(oldKey)
	io.ReadAtLeast(oldReader, buf, int(offset))

	newReader := bytes.NewReader(content)
	io.ReadAtLeast(newReader, buf[offset:], int(addSize))

	if buffSize < existingSize {
		io.ReadAtLeast(oldReader, buf[addSize:], int(buffSize))
	}

	combinedReader := bytes.NewReader(buf)
	totalSize := int64(len(buf))

	// TODO(jmozah): to append using pyramid chunker when it is ready
	//oldReader := self.Retrieve(oldKey)
	//newReader := bytes.NewReader(content)
	//combinedReader := io.MultiReader(oldReader, newReader)

	uri, err := Parse("bzz:/" + mhash)
	if err != nil {
415
		apiAppendFileFail.Inc(1)
416 417 418 419
		return nil, "", err
	}
	mkey, err := self.Resolve(uri)
	if err != nil {
420
		apiAppendFileFail.Inc(1)
421 422 423 424 425 426 427 428 429 430
		return nil, "", err
	}

	// trim the root dir we added
	if path[:1] == "/" {
		path = path[1:]
	}

	mw, err := self.NewManifestWriter(mkey, nil)
	if err != nil {
431
		apiAppendFileFail.Inc(1)
432 433 434 435 436
		return nil, "", err
	}

	err = mw.RemoveEntry(filepath.Join(path, fname))
	if err != nil {
437
		apiAppendFileFail.Inc(1)
438 439 440 441 442 443 444 445 446 447 448 449 450
		return nil, "", err
	}

	entry := &ManifestEntry{
		Path:        filepath.Join(path, fname),
		ContentType: mime.TypeByExtension(filepath.Ext(fname)),
		Mode:        0700,
		Size:        totalSize,
		ModTime:     time.Now(),
	}

	fkey, err := mw.AddEntry(io.Reader(combinedReader), entry)
	if err != nil {
451
		apiAppendFileFail.Inc(1)
452 453 454 455 456
		return nil, "", err
	}

	newMkey, err := mw.Store()
	if err != nil {
457
		apiAppendFileFail.Inc(1)
458 459 460 461 462 463 464 465 466
		return nil, "", err

	}

	return fkey, newMkey.String(), nil

}

func (self *Api) BuildDirectoryTree(mhash string, nameresolver bool) (key storage.Key, manifestEntryMap map[string]*manifestTrieEntry, err error) {
467

468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487
	uri, err := Parse("bzz:/" + mhash)
	if err != nil {
		return nil, nil, err
	}
	key, err = self.Resolve(uri)
	if err != nil {
		return nil, nil, err
	}

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

	manifestEntryMap = map[string]*manifestTrieEntry{}
	err = rootTrie.listWithPrefix(uri.Path, quitC, func(entry *manifestTrieEntry, suffix string) {
		manifestEntryMap[suffix] = entry
	})

488 489 490
	if err != nil {
		return nil, nil, fmt.Errorf("list with prefix failed %v: %v", key.String(), err)
	}
491 492
	return key, manifestEntryMap, nil
}