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

19 20 21
//go:generate mimegen --types=./../../cmd/swarm/mimegen/mime.types --package=api --out=gen_mime.go
//go:generate gofmt -s -w gen_mime.go

22
import (
23
	"archive/tar"
24
	"context"
25 26 27
	"crypto/ecdsa"
	"encoding/hex"
	"errors"
28 29
	"fmt"
	"io"
30
	"math/big"
31
	"net/http"
32
	"path"
33 34
	"strings"

35 36 37 38
	"bytes"
	"mime"
	"path/filepath"
	"time"
39 40

	"github.com/ethereum/go-ethereum/common"
41 42
	"github.com/ethereum/go-ethereum/contracts/ens"
	"github.com/ethereum/go-ethereum/core/types"
43
	"github.com/ethereum/go-ethereum/metrics"
44 45
	"github.com/ethereum/go-ethereum/swarm/log"
	"github.com/ethereum/go-ethereum/swarm/multihash"
46
	"github.com/ethereum/go-ethereum/swarm/spancontext"
47
	"github.com/ethereum/go-ethereum/swarm/storage"
48
	"github.com/ethereum/go-ethereum/swarm/storage/mru"
49 50
	"github.com/ethereum/go-ethereum/swarm/storage/mru/lookup"
	"github.com/opentracing/opentracing-go"
51 52
)

53 54 55 56
var (
	ErrNotFound = errors.New("not found")
)

57
var (
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
	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)
	apiManifestUpdateCount = metrics.NewRegisteredCounter("api.manifestupdate.count", nil)
	apiManifestUpdateFail  = metrics.NewRegisteredCounter("api.manifestupdate.fail", nil)
	apiManifestListCount   = metrics.NewRegisteredCounter("api.manifestlist.count", nil)
	apiManifestListFail    = metrics.NewRegisteredCounter("api.manifestlist.fail", nil)
	apiDeleteCount         = metrics.NewRegisteredCounter("api.delete.count", nil)
	apiDeleteFail          = metrics.NewRegisteredCounter("api.delete.fail", nil)
	apiGetTarCount         = metrics.NewRegisteredCounter("api.gettar.count", nil)
	apiGetTarFail          = metrics.NewRegisteredCounter("api.gettar.fail", nil)
	apiUploadTarCount      = metrics.NewRegisteredCounter("api.uploadtar.count", nil)
	apiUploadTarFail       = metrics.NewRegisteredCounter("api.uploadtar.fail", 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)
	apiGetInvalid          = metrics.NewRegisteredCounter("api.get.invalid", nil)
84 85
)

86
// Resolver interface resolve a domain name to a hash using ENS
87 88 89 90
type Resolver interface {
	Resolve(string) (common.Hash, error)
}

91 92 93 94 95 96 97
// ResolveValidator is used to validate the contained Resolver
type ResolveValidator interface {
	Resolver
	Owner(node [32]byte) (common.Address, error)
	HeaderByNumber(context.Context, *big.Int) (*types.Header, error)
}

98
// NoResolverError is returned by MultiResolver.Resolve if no resolver
99
// can be found for the address.
100 101 102 103
type NoResolverError struct {
	TLD string
}

104
// NewNoResolverError creates a NoResolverError for the given top level domain
105 106 107 108
func NewNoResolverError(tld string) *NoResolverError {
	return &NoResolverError{TLD: tld}
}

109
// Error NoResolverError implements error
110 111 112 113 114 115
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)
}
116 117

// MultiResolver is used to resolve URL addresses based on their TLDs.
118
// Each TLD can have multiple resolvers, and the resolution from the
119 120
// first one in the sequence will be returned.
type MultiResolver struct {
121 122
	resolvers map[string][]ResolveValidator
	nameHash  func(string) common.Hash
123 124 125 126 127 128 129 130 131 132
}

// 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.
133
func MultiResolverOptionWithResolver(r ResolveValidator, tld string) MultiResolverOption {
134 135 136 137 138
	return func(m *MultiResolver) {
		m.resolvers[tld] = append(m.resolvers[tld], r)
	}
}

139 140 141 142 143 144 145
// MultiResolverOptionWithNameHash is unused at the time of this writing
func MultiResolverOptionWithNameHash(nameHash func(string) common.Hash) MultiResolverOption {
	return func(m *MultiResolver) {
		m.nameHash = nameHash
	}
}

146 147 148
// NewMultiResolver creates a new instance of MultiResolver.
func NewMultiResolver(opts ...MultiResolverOption) (m *MultiResolver) {
	m = &MultiResolver{
149 150
		resolvers: make(map[string][]ResolveValidator),
		nameHash:  ens.EnsNode,
151 152 153 154 155 156 157 158 159
	}
	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,
160
// the Hash from the first one which does not return error
161
// will be returned.
162 163 164 165
func (m *MultiResolver) Resolve(addr string) (h common.Hash, err error) {
	rs, err := m.getResolveValidator(addr)
	if err != nil {
		return h, err
166 167 168 169 170 171 172 173 174 175
	}
	for _, r := range rs {
		h, err = r.Resolve(addr)
		if err == nil {
			return
		}
	}
	return
}

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
// ValidateOwner checks the ENS to validate that the owner of the given domain is the given eth address
func (m *MultiResolver) ValidateOwner(name string, address common.Address) (bool, error) {
	rs, err := m.getResolveValidator(name)
	if err != nil {
		return false, err
	}
	var addr common.Address
	for _, r := range rs {
		addr, err = r.Owner(m.nameHash(name))
		// we hide the error if it is not for the last resolver we check
		if err == nil {
			return addr == address, nil
		}
	}
	return false, err
}

// HeaderByNumber uses the validator of the given domainname and retrieves the header for the given block number
func (m *MultiResolver) HeaderByNumber(ctx context.Context, name string, blockNr *big.Int) (*types.Header, error) {
	rs, err := m.getResolveValidator(name)
	if err != nil {
		return nil, err
	}
	for _, r := range rs {
		var header *types.Header
		header, err = r.HeaderByNumber(ctx, blockNr)
		// we hide the error if it is not for the last resolver we check
		if err == nil {
			return header, nil
		}
	}
	return nil, err
}

// getResolveValidator uses the hostname to retrieve the resolver associated with the top level domain
func (m *MultiResolver) getResolveValidator(name string) ([]ResolveValidator, error) {
	rs := m.resolvers[""]
	tld := path.Ext(name)
	if tld != "" {
		tld = tld[1:]
		rstld, ok := m.resolvers[tld]
		if ok {
			return rstld, nil
		}
	}
	if len(rs) == 0 {
		return rs, NewNoResolverError(tld)
	}
	return rs, nil
}

// SetNameHash sets the hasher function that hashes the domain into a name hash that ENS uses
func (m *MultiResolver) SetNameHash(nameHash func(string) common.Hash) {
	m.nameHash = nameHash
}

232
/*
233 234 235
API implements webserver/file system related content storage and retrieval
on top of the FileStore
it is the public interface of the FileStore which is included in the ethereum stack
236
*/
237 238 239 240
type API struct {
	resource  *mru.Handler
	fileStore *storage.FileStore
	dns       Resolver
241
	Decryptor func(context.Context, string) DecryptFunc
242 243
}

244
// NewAPI the api constructor initialises a new API instance.
245
func NewAPI(fileStore *storage.FileStore, dns Resolver, resourceHandler *mru.Handler, pk *ecdsa.PrivateKey) (self *API) {
246 247 248 249
	self = &API{
		fileStore: fileStore,
		dns:       dns,
		resource:  resourceHandler,
250 251 252
		Decryptor: func(ctx context.Context, credentials string) DecryptFunc {
			return self.doDecrypt(ctx, credentials, pk)
		},
253 254 255 256
	}
	return
}

257
// Retrieve FileStore reader API
258 259
func (a *API) Retrieve(ctx context.Context, addr storage.Address) (reader storage.LazySectionReader, isEncrypted bool) {
	return a.fileStore.Retrieve(ctx, addr)
260 261
}

262
// Store wraps the Store API call of the embedded FileStore
263
func (a *API) Store(ctx context.Context, data io.Reader, size int64, toEncrypt bool) (addr storage.Address, wait func(ctx context.Context) error, err error) {
264
	log.Debug("api.store", "size", size)
265
	return a.fileStore.Store(ctx, data, size, toEncrypt)
266 267
}

268
// ErrResolve is returned when an URI cannot be resolved from ENS.
269 270
type ErrResolve error

271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292
// Resolve a name into a content-addressed hash
// where address could be an ENS name, or a content addressed hash
func (a *API) Resolve(ctx context.Context, address string) (storage.Address, error) {
	// if DNS is not configured, return an error
	if a.dns == nil {
		if hashMatcher.MatchString(address) {
			return common.Hex2Bytes(address), nil
		}
		apiResolveFail.Inc(1)
		return nil, fmt.Errorf("no DNS to resolve name: %q", address)
	}
	// try and resolve the address
	resolved, err := a.dns.Resolve(address)
	if err != nil {
		if hashMatcher.MatchString(address) {
			return common.Hex2Bytes(address), nil
		}
		return nil, err
	}
	return resolved[:], nil
}

293
// Resolve resolves a URI to an Address using the MultiResolver.
294
func (a *API) ResolveURI(ctx context.Context, uri *URI, credentials string) (storage.Address, error) {
295
	apiResolveCount.Inc(1)
296
	log.Trace("resolving", "uri", uri.Addr)
297

298 299 300 301 302 303
	var sp opentracing.Span
	ctx, sp = spancontext.StartSpan(
		ctx,
		"api.resolve")
	defer sp.Finish()

304 305 306 307
	// if the URI is immutable, check if the address looks like a hash
	if uri.Immutable() {
		key := uri.Address()
		if key == nil {
308
			return nil, fmt.Errorf("immutable address not a content hash: %q", uri.Addr)
309
		}
310
		return key, nil
311
	}
312

313 314 315
	addr, err := a.Resolve(ctx, uri.Addr)
	if err != nil {
		return nil, err
316
	}
317

318 319
	if uri.Path == "" {
		return addr, nil
320
	}
321 322
	walker, err := a.NewManifestWalker(ctx, addr, a.Decryptor(ctx, credentials), nil)
	if err != nil {
323
		return nil, err
324
	}
325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350
	var entry *ManifestEntry
	walker.Walk(func(e *ManifestEntry) error {
		// if the entry matches the path, set entry and stop
		// the walk
		if e.Path == uri.Path {
			entry = e
			// return an error to cancel the walk
			return errors.New("found")
		}
		// ignore non-manifest files
		if e.ContentType != ManifestType {
			return nil
		}
		// if the manifest's path is a prefix of the
		// requested path, recurse into it by returning
		// nil and continuing the walk
		if strings.HasPrefix(uri.Path, e.Path) {
			return nil
		}
		return ErrSkipManifest
	})
	if entry == nil {
		return nil, errors.New("not found")
	}
	addr = storage.Address(common.Hex2Bytes(entry.Hash))
	return addr, nil
351 352
}

353
// Put provides singleton manifest creation on top of FileStore store
354
func (a *API) Put(ctx context.Context, content string, contentType string, toEncrypt bool) (k storage.Address, wait func(context.Context) error, err error) {
355
	apiPutCount.Inc(1)
356
	r := strings.NewReader(content)
357
	key, waitContent, err := a.fileStore.Store(ctx, r, int64(len(content)), toEncrypt)
358
	if err != nil {
359
		apiPutFail.Inc(1)
360
		return nil, nil, err
361 362 363
	}
	manifest := fmt.Sprintf(`{"entries":[{"hash":"%v","contentType":"%s"}]}`, key, contentType)
	r = strings.NewReader(manifest)
364
	key, waitManifest, err := a.fileStore.Store(ctx, r, int64(len(manifest)), toEncrypt)
365
	if err != nil {
366
		apiPutFail.Inc(1)
367
		return nil, nil, err
368
	}
369 370 371 372 373 374
	return key, func(ctx context.Context) error {
		err := waitContent(ctx)
		if err != nil {
			return err
		}
		return waitManifest(ctx)
375
	}, nil
376 377 378
}

// Get uses iterative manifest retrieval and prefix matching
379 380
// to resolve basePath to content using FileStore retrieve
// it returns a section reader, mimeType, status, the key of the actual content and an error
381
func (a *API) Get(ctx context.Context, decrypt DecryptFunc, manifestAddr storage.Address, path string) (reader storage.LazySectionReader, mimeType string, status int, contentAddr storage.Address, err error) {
382
	log.Debug("api.get", "key", manifestAddr, "path", path)
383
	apiGetCount.Inc(1)
384
	trie, err := loadManifest(ctx, a.fileStore, manifestAddr, nil, decrypt)
385
	if err != nil {
386
		apiGetNotFound.Inc(1)
387
		status = http.StatusNotFound
388
		return nil, "", http.StatusNotFound, nil, err
389 390
	}

391
	log.Debug("trie getting entry", "key", manifestAddr, "path", path)
392
	entry, _ := trie.getEntry(path)
393

394
	if entry != nil {
395
		log.Debug("trie got entry", "key", manifestAddr, "path", path, "entry.Hash", entry.Hash)
396 397 398 399 400 401 402 403 404 405

		if entry.ContentType == ManifestType {
			log.Debug("entry is manifest", "key", manifestAddr, "new key", entry.Hash)
			adr, err := hex.DecodeString(entry.Hash)
			if err != nil {
				return nil, "", 0, nil, err
			}
			return a.Get(ctx, decrypt, adr, entry.Path)
		}

406 407
		// we need to do some extra work if this is a mutable resource manifest
		if entry.ContentType == ResourceContentType {
408 409 410 411
			if entry.ResourceView == nil {
				return reader, mimeType, status, nil, fmt.Errorf("Cannot decode ResourceView in manifest")
			}
			_, err := a.resource.Lookup(ctx, mru.NewQueryLatest(entry.ResourceView, lookup.NoClue))
412 413 414 415 416 417
			if err != nil {
				apiGetNotFound.Inc(1)
				status = http.StatusNotFound
				log.Debug(fmt.Sprintf("get resource content error: %v", err))
				return reader, mimeType, status, nil, err
			}
418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436
			// get the data of the update
			_, rsrcData, err := a.resource.GetContent(entry.ResourceView)
			if err != nil {
				apiGetNotFound.Inc(1)
				status = http.StatusNotFound
				log.Warn(fmt.Sprintf("get resource content error: %v", err))
				return reader, mimeType, status, nil, err
			}

			// extract multihash
			decodedMultihash, err := multihash.FromMultihash(rsrcData)
			if err != nil {
				apiGetInvalid.Inc(1)
				status = http.StatusUnprocessableEntity
				log.Warn("invalid resource multihash", "err", err)
				return reader, mimeType, status, nil, err
			}
			manifestAddr = storage.Address(decodedMultihash)
			log.Trace("resource is multihash", "key", manifestAddr)
437

438 439
			// get the manifest the multihash digest points to
			trie, err := loadManifest(ctx, a.fileStore, manifestAddr, nil, NOOPDecrypt)
440 441 442
			if err != nil {
				apiGetNotFound.Inc(1)
				status = http.StatusNotFound
443
				log.Warn(fmt.Sprintf("loadManifestTrie (resource multihash) error: %v", err))
444 445 446
				return reader, mimeType, status, nil, err
			}

447 448 449 450 451 452 453 454 455
			// finally, get the manifest entry
			// it will always be the entry on path ""
			entry, _ = trie.getEntry(path)
			if entry == nil {
				status = http.StatusNotFound
				apiGetNotFound.Inc(1)
				err = fmt.Errorf("manifest (resource multihash) entry for '%s' not found", path)
				log.Trace("manifest (resource multihash) entry not found", "key", manifestAddr, "path", path)
				return reader, mimeType, status, nil, err
456 457 458 459 460 461
			}
		}

		// regardless of resource update manifests or normal manifests we will converge at this point
		// get the key the manifest entry points to and serve it if it's unambiguous
		contentAddr = common.Hex2Bytes(entry.Hash)
462
		status = entry.Status
463
		if status == http.StatusMultipleChoices {
464 465
			apiGetHTTP300.Inc(1)
			return nil, entry.ContentType, status, contentAddr, err
466
		}
467 468
		mimeType = entry.ContentType
		log.Debug("content lookup key", "key", contentAddr, "mimetype", mimeType)
469
		reader, _ = a.fileStore.Retrieve(ctx, contentAddr)
470
	} else {
471
		// no entry found
472
		status = http.StatusNotFound
473
		apiGetNotFound.Inc(1)
474
		err = fmt.Errorf("manifest entry for '%s' not found", path)
475
		log.Trace("manifest entry not found", "key", contentAddr, "path", path)
476 477 478 479
	}
	return
}

480 481 482 483 484 485 486
func (a *API) Delete(ctx context.Context, addr string, path string) (storage.Address, error) {
	apiDeleteCount.Inc(1)
	uri, err := Parse("bzz:/" + addr)
	if err != nil {
		apiDeleteFail.Inc(1)
		return nil, err
	}
487
	key, err := a.ResolveURI(ctx, uri, EMPTY_CREDENTIALS)
488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505

	if err != nil {
		return nil, err
	}
	newKey, err := a.UpdateManifest(ctx, key, func(mw *ManifestWriter) error {
		log.Debug(fmt.Sprintf("removing %s from manifest %s", path, key.Log()))
		return mw.RemoveEntry(path)
	})
	if err != nil {
		apiDeleteFail.Inc(1)
		return nil, err
	}

	return newKey, nil
}

// GetDirectoryTar fetches a requested directory as a tarstream
// it returns an io.Reader and an error. Do not forget to Close() the returned ReadCloser
506
func (a *API) GetDirectoryTar(ctx context.Context, decrypt DecryptFunc, uri *URI) (io.ReadCloser, error) {
507
	apiGetTarCount.Inc(1)
508
	addr, err := a.Resolve(ctx, uri.Addr)
509 510 511
	if err != nil {
		return nil, err
	}
512
	walker, err := a.NewManifestWalker(ctx, addr, decrypt, nil)
513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530
	if err != nil {
		apiGetTarFail.Inc(1)
		return nil, err
	}

	piper, pipew := io.Pipe()

	tw := tar.NewWriter(pipew)

	go func() {
		err := walker.Walk(func(entry *ManifestEntry) error {
			// ignore manifests (walk will recurse into them)
			if entry.ContentType == ManifestType {
				return nil
			}

			// retrieve the entry's key and size
			reader, _ := a.Retrieve(ctx, storage.Address(common.Hex2Bytes(entry.Hash)))
531
			size, err := reader.Size(ctx, nil)
532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560
			if err != nil {
				return err
			}

			// write a tar header for the entry
			hdr := &tar.Header{
				Name:    entry.Path,
				Mode:    entry.Mode,
				Size:    size,
				ModTime: entry.ModTime,
				Xattrs: map[string]string{
					"user.swarm.content-type": entry.ContentType,
				},
			}

			if err := tw.WriteHeader(hdr); err != nil {
				return err
			}

			// copy the file into the tar stream
			n, err := io.Copy(tw, io.LimitReader(reader, hdr.Size))
			if err != nil {
				return err
			} else if n != size {
				return fmt.Errorf("error writing %s: expected %d bytes but sent %d", entry.Path, size, n)
			}

			return nil
		})
561 562 563 564
		// close tar writer before closing pipew
		// to flush remaining data to pipew
		// regardless of error value
		tw.Close()
565 566 567 568 569 570 571 572 573 574 575 576 577
		if err != nil {
			apiGetTarFail.Inc(1)
			pipew.CloseWithError(err)
		} else {
			pipew.Close()
		}
	}()

	return piper, nil
}

// GetManifestList lists the manifest entries for the specified address and prefix
// and returns it as a ManifestList
578
func (a *API) GetManifestList(ctx context.Context, decryptor DecryptFunc, addr storage.Address, prefix string) (list ManifestList, err error) {
579
	apiManifestListCount.Inc(1)
580
	walker, err := a.NewManifestWalker(ctx, addr, decryptor, nil)
581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662
	if err != nil {
		apiManifestListFail.Inc(1)
		return ManifestList{}, err
	}

	err = walker.Walk(func(entry *ManifestEntry) error {
		// handle non-manifest files
		if entry.ContentType != ManifestType {
			// ignore the file if it doesn't have the specified prefix
			if !strings.HasPrefix(entry.Path, prefix) {
				return nil
			}

			// if the path after the prefix contains a slash, add a
			// common prefix to the list, otherwise add the entry
			suffix := strings.TrimPrefix(entry.Path, prefix)
			if index := strings.Index(suffix, "/"); index > -1 {
				list.CommonPrefixes = append(list.CommonPrefixes, prefix+suffix[:index+1])
				return nil
			}
			if entry.Path == "" {
				entry.Path = "/"
			}
			list.Entries = append(list.Entries, entry)
			return nil
		}

		// if the manifest's path is a prefix of the specified prefix
		// then just recurse into the manifest by returning nil and
		// continuing the walk
		if strings.HasPrefix(prefix, entry.Path) {
			return nil
		}

		// if the manifest's path has the specified prefix, then if the
		// path after the prefix contains a slash, add a common prefix
		// to the list and skip the manifest, otherwise recurse into
		// the manifest by returning nil and continuing the walk
		if strings.HasPrefix(entry.Path, prefix) {
			suffix := strings.TrimPrefix(entry.Path, prefix)
			if index := strings.Index(suffix, "/"); index > -1 {
				list.CommonPrefixes = append(list.CommonPrefixes, prefix+suffix[:index+1])
				return ErrSkipManifest
			}
			return nil
		}

		// the manifest neither has the prefix or needs recursing in to
		// so just skip it
		return ErrSkipManifest
	})

	if err != nil {
		apiManifestListFail.Inc(1)
		return ManifestList{}, err
	}

	return list, nil
}

func (a *API) UpdateManifest(ctx context.Context, addr storage.Address, update func(mw *ManifestWriter) error) (storage.Address, error) {
	apiManifestUpdateCount.Inc(1)
	mw, err := a.NewManifestWriter(ctx, addr, nil)
	if err != nil {
		apiManifestUpdateFail.Inc(1)
		return nil, err
	}

	if err := update(mw); err != nil {
		apiManifestUpdateFail.Inc(1)
		return nil, err
	}

	addr, err = mw.Store()
	if err != nil {
		apiManifestUpdateFail.Inc(1)
		return nil, err
	}
	log.Debug(fmt.Sprintf("generated manifest %s", addr))
	return addr, nil
}

663
// Modify loads manifest and checks the content hash before recalculating and storing the manifest.
664
func (a *API) Modify(ctx context.Context, addr storage.Address, path, contentHash, contentType string) (storage.Address, error) {
665
	apiModifyCount.Inc(1)
666
	quitC := make(chan bool)
667
	trie, err := loadManifest(ctx, a.fileStore, addr, quitC, NOOPDecrypt)
668
	if err != nil {
669
		apiModifyFail.Inc(1)
670
		return nil, err
671 672
	}
	if contentHash != "" {
673
		entry := newManifestTrieEntry(&ManifestEntry{
674 675
			Path:        path,
			ContentType: contentType,
676 677
		}, nil)
		entry.Hash = contentHash
678 679 680 681 682
		trie.addEntry(entry, quitC)
	} else {
		trie.deleteEntry(path, quitC)
	}

683
	if err := trie.recalcAndStore(); err != nil {
684
		apiModifyFail.Inc(1)
685
		return nil, err
686
	}
687
	return trie.ref, nil
688
}
689

690
// AddFile creates a new manifest entry, adds it to swarm, then adds a file to swarm.
691
func (a *API) AddFile(ctx context.Context, mhash, path, fname string, content []byte, nameresolver bool) (storage.Address, string, error) {
692
	apiAddFileCount.Inc(1)
693 694 695

	uri, err := Parse("bzz:/" + mhash)
	if err != nil {
696
		apiAddFileFail.Inc(1)
697 698
		return nil, "", err
	}
699
	mkey, err := a.ResolveURI(ctx, uri, EMPTY_CREDENTIALS)
700
	if err != nil {
701
		apiAddFileFail.Inc(1)
702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717
		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(),
	}

718
	mw, err := a.NewManifestWriter(ctx, mkey, nil)
719
	if err != nil {
720
		apiAddFileFail.Inc(1)
721 722 723
		return nil, "", err
	}

724
	fkey, err := mw.AddEntry(ctx, bytes.NewReader(content), entry)
725
	if err != nil {
726
		apiAddFileFail.Inc(1)
727 728 729 730 731
		return nil, "", err
	}

	newMkey, err := mw.Store()
	if err != nil {
732
		apiAddFileFail.Inc(1)
733 734 735 736 737 738 739
		return nil, "", err

	}

	return fkey, newMkey.String(), nil
}

740
func (a *API) UploadTar(ctx context.Context, bodyReader io.ReadCloser, manifestPath, defaultPath string, mw *ManifestWriter) (storage.Address, error) {
741 742 743 744
	apiUploadTarCount.Inc(1)
	var contentKey storage.Address
	tr := tar.NewReader(bodyReader)
	defer bodyReader.Close()
745
	var defaultPathFound bool
746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761
	for {
		hdr, err := tr.Next()
		if err == io.EOF {
			break
		} else if err != nil {
			apiUploadTarFail.Inc(1)
			return nil, fmt.Errorf("error reading tar stream: %s", err)
		}

		// only store regular files
		if !hdr.FileInfo().Mode().IsRegular() {
			continue
		}

		// add the entry under the path from the request
		manifestPath := path.Join(manifestPath, hdr.Name)
762 763 764 765 766
		contentType := hdr.Xattrs["user.swarm.content-type"]
		if contentType == "" {
			contentType = mime.TypeByExtension(filepath.Ext(hdr.Name))
		}
		//DetectContentType("")
767 768
		entry := &ManifestEntry{
			Path:        manifestPath,
769
			ContentType: contentType,
770 771 772 773 774 775 776 777 778
			Mode:        hdr.Mode,
			Size:        hdr.Size,
			ModTime:     hdr.ModTime,
		}
		contentKey, err = mw.AddEntry(ctx, tr, entry)
		if err != nil {
			apiUploadTarFail.Inc(1)
			return nil, fmt.Errorf("error adding manifest entry from tar stream: %s", err)
		}
779
		if hdr.Name == defaultPath {
780 781 782 783 784
			contentType := hdr.Xattrs["user.swarm.content-type"]
			if contentType == "" {
				contentType = mime.TypeByExtension(filepath.Ext(hdr.Name))
			}

785 786 787
			entry := &ManifestEntry{
				Hash:        contentKey.Hex(),
				Path:        "", // default entry
788
				ContentType: contentType,
789 790 791 792 793 794 795 796 797 798 799 800 801 802
				Mode:        hdr.Mode,
				Size:        hdr.Size,
				ModTime:     hdr.ModTime,
			}
			contentKey, err = mw.AddEntry(ctx, nil, entry)
			if err != nil {
				apiUploadTarFail.Inc(1)
				return nil, fmt.Errorf("error adding default manifest entry from tar stream: %s", err)
			}
			defaultPathFound = true
		}
	}
	if defaultPath != "" && !defaultPathFound {
		return contentKey, fmt.Errorf("default path %q not found", defaultPath)
803 804 805 806
	}
	return contentKey, nil
}

807
// RemoveFile removes a file entry in a manifest.
808
func (a *API) RemoveFile(ctx context.Context, mhash string, path string, fname string, nameresolver bool) (string, error) {
809
	apiRmFileCount.Inc(1)
810 811 812

	uri, err := Parse("bzz:/" + mhash)
	if err != nil {
813
		apiRmFileFail.Inc(1)
814 815
		return "", err
	}
816
	mkey, err := a.ResolveURI(ctx, uri, EMPTY_CREDENTIALS)
817
	if err != nil {
818
		apiRmFileFail.Inc(1)
819 820 821 822 823 824 825 826
		return "", err
	}

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

827
	mw, err := a.NewManifestWriter(ctx, mkey, nil)
828
	if err != nil {
829
		apiRmFileFail.Inc(1)
830 831 832 833 834
		return "", err
	}

	err = mw.RemoveEntry(filepath.Join(path, fname))
	if err != nil {
835
		apiRmFileFail.Inc(1)
836 837 838 839 840
		return "", err
	}

	newMkey, err := mw.Store()
	if err != nil {
841
		apiRmFileFail.Inc(1)
842 843 844 845 846 847 848
		return "", err

	}

	return newMkey.String(), nil
}

849
// AppendFile removes old manifest, appends file entry to new manifest and adds it to Swarm.
850
func (a *API) AppendFile(ctx context.Context, mhash, path, fname string, existingSize int64, content []byte, oldAddr storage.Address, offset int64, addSize int64, nameresolver bool) (storage.Address, string, error) {
851
	apiAppendFileCount.Inc(1)
852 853 854 855 856 857 858 859

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

	buf := make([]byte, buffSize)

860
	oldReader, _ := a.Retrieve(ctx, oldAddr)
861 862 863 864 865 866 867 868 869 870 871 872 873
	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
874
	//oldReader := a.Retrieve(oldKey)
875 876 877 878 879
	//newReader := bytes.NewReader(content)
	//combinedReader := io.MultiReader(oldReader, newReader)

	uri, err := Parse("bzz:/" + mhash)
	if err != nil {
880
		apiAppendFileFail.Inc(1)
881 882
		return nil, "", err
	}
883
	mkey, err := a.ResolveURI(ctx, uri, EMPTY_CREDENTIALS)
884
	if err != nil {
885
		apiAppendFileFail.Inc(1)
886 887 888 889 890 891 892 893
		return nil, "", err
	}

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

894
	mw, err := a.NewManifestWriter(ctx, mkey, nil)
895
	if err != nil {
896
		apiAppendFileFail.Inc(1)
897 898 899 900 901
		return nil, "", err
	}

	err = mw.RemoveEntry(filepath.Join(path, fname))
	if err != nil {
902
		apiAppendFileFail.Inc(1)
903 904 905 906 907 908 909 910 911 912 913
		return nil, "", err
	}

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

914
	fkey, err := mw.AddEntry(ctx, io.Reader(combinedReader), entry)
915
	if err != nil {
916
		apiAppendFileFail.Inc(1)
917 918 919 920 921
		return nil, "", err
	}

	newMkey, err := mw.Store()
	if err != nil {
922
		apiAppendFileFail.Inc(1)
923 924 925 926 927 928 929
		return nil, "", err

	}

	return fkey, newMkey.String(), nil
}

930
// BuildDirectoryTree used by swarmfs_unix
931
func (a *API) BuildDirectoryTree(ctx context.Context, mhash string, nameresolver bool) (addr storage.Address, manifestEntryMap map[string]*manifestTrieEntry, err error) {
932

933 934 935 936
	uri, err := Parse("bzz:/" + mhash)
	if err != nil {
		return nil, nil, err
	}
937
	addr, err = a.Resolve(ctx, uri.Addr)
938 939 940 941 942
	if err != nil {
		return nil, nil, err
	}

	quitC := make(chan bool)
943
	rootTrie, err := loadManifest(ctx, a.fileStore, addr, quitC, NOOPDecrypt)
944
	if err != nil {
945
		return nil, nil, fmt.Errorf("can't load manifest %v: %v", addr.String(), err)
946 947 948 949 950 951 952
	}

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

953
	if err != nil {
954 955 956 957 958
		return nil, nil, fmt.Errorf("list with prefix failed %v: %v", addr.String(), err)
	}
	return addr, manifestEntryMap, nil
}

959
// ResourceLookup finds mutable resource updates at specific periods and versions
960 961
func (a *API) ResourceLookup(ctx context.Context, query *mru.Query) ([]byte, error) {
	_, err := a.resource.Lookup(ctx, query)
962
	if err != nil {
963
		return nil, err
964 965
	}
	var data []byte
966
	_, data, err = a.resource.GetContent(&query.View)
967
	if err != nil {
968
		return nil, err
969
	}
970
	return data, nil
971 972
}

973
// ResourceNewRequest creates a Request object to update a specific mutable resource
974 975
func (a *API) ResourceNewRequest(ctx context.Context, view *mru.View) (*mru.Request, error) {
	return a.resource.NewRequest(ctx, view)
976 977 978 979
}

// ResourceUpdate updates a Mutable Resource with arbitrary data.
// Upon retrieval the update will be retrieved verbatim as bytes.
980
func (a *API) ResourceUpdate(ctx context.Context, request *mru.Request) (storage.Address, error) {
981
	return a.resource.Update(ctx, request)
982 983 984 985 986 987 988
}

// ResourceHashSize returned the size of the digest produced by the Mutable Resource hashing function
func (a *API) ResourceHashSize() int {
	return a.resource.HashSize
}

989 990 991 992 993 994 995 996
// ErrCannotLoadResourceManifest is returned when looking up a resource manifest fails
var ErrCannotLoadResourceManifest = errors.New("Cannot load resource manifest")

// ErrNotAResourceManifest is returned when the address provided returned something other than a valid manifest
var ErrNotAResourceManifest = errors.New("Not a resource manifest")

// ResolveResourceManifest retrieves the Mutable Resource manifest for the given address, and returns the Resource's view ID.
func (a *API) ResolveResourceManifest(ctx context.Context, addr storage.Address) (*mru.View, error) {
997
	trie, err := loadManifest(ctx, a.fileStore, addr, nil, NOOPDecrypt)
998
	if err != nil {
999
		return nil, ErrCannotLoadResourceManifest
1000 1001 1002 1003
	}

	entry, _ := trie.getEntry("")
	if entry.ContentType != ResourceContentType {
1004
		return nil, ErrNotAResourceManifest
1005 1006
	}

1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046
	return entry.ResourceView, nil
}

// ErrCannotResolveResourceURI is returned when the ENS resolver is not able to translate a name to a resource
var ErrCannotResolveResourceURI = errors.New("Cannot resolve Resource URI")

// ErrCannotResolveResourceView is returned when values provided are not enough or invalid to recreate a
// resource view out of them.
var ErrCannotResolveResourceView = errors.New("Cannot resolve resource view")

// ResolveResourceView attempts to extract View information out of the manifest, if provided
// If not, it attempts to extract the View out of a set of key-value pairs
func (a *API) ResolveResourceView(ctx context.Context, uri *URI, values mru.Values) (*mru.View, error) {
	var view *mru.View
	var err error
	if uri.Addr != "" {
		// resolve the content key.
		manifestAddr := uri.Address()
		if manifestAddr == nil {
			manifestAddr, err = a.Resolve(ctx, uri.Addr)
			if err != nil {
				return nil, ErrCannotResolveResourceURI
			}
		}

		// get the resource view from the manifest
		view, err = a.ResolveResourceManifest(ctx, manifestAddr)
		if err != nil {
			return nil, err
		}
		log.Debug("handle.get.resource: resolved", "manifestkey", manifestAddr, "view", view.Hex())
	} else {
		var v mru.View
		if err := v.FromValues(values); err != nil {
			return nil, ErrCannotResolveResourceView

		}
		view = &v
	}
	return view, nil
1047
}
1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076

// MimeOctetStream default value of http Content-Type header
const MimeOctetStream = "application/octet-stream"

// DetectContentType by file file extension, or fallback to content sniff
func DetectContentType(fileName string, f io.ReadSeeker) (string, error) {
	ctype := mime.TypeByExtension(filepath.Ext(fileName))
	if ctype != "" {
		return ctype, nil
	}

	// save/rollback to get content probe from begin of file
	currentPosition, err := f.Seek(0, io.SeekCurrent)
	if err != nil {
		return MimeOctetStream, fmt.Errorf("seeker can't seek, %s", err)
	}

	// read a chunk to decide between utf-8 text and binary
	var buf [512]byte
	n, _ := f.Read(buf[:])
	ctype = http.DetectContentType(buf[:n])

	_, err = f.Seek(currentPosition, io.SeekStart) // rewind to output whole file
	if err != nil {
		return MimeOctetStream, fmt.Errorf("seeker can't seek, %s", err)
	}

	return ctype, nil
}