upload_and_sync.go 7.0 KB
Newer Older
E
ethersphere 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
// Copyright 2018 The go-ethereum Authors
// This file is part of go-ethereum.
//
// go-ethereum is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// go-ethereum 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with go-ethereum. If not, see <http://www.gnu.org/licenses/>.

package main

import (
	"bytes"
21
	"context"
E
ethersphere 已提交
22
	"crypto/md5"
23 24
	crand "crypto/rand"
	"errors"
E
ethersphere 已提交
25 26 27
	"fmt"
	"io"
	"io/ioutil"
28
	"math/rand"
E
ethersphere 已提交
29
	"net/http"
30
	"net/http/httptrace"
E
ethersphere 已提交
31 32 33 34 35
	"os"
	"sync"
	"time"

	"github.com/ethereum/go-ethereum/log"
36 37 38 39 40 41
	"github.com/ethereum/go-ethereum/metrics"
	"github.com/ethereum/go-ethereum/swarm/api"
	"github.com/ethereum/go-ethereum/swarm/api/client"
	"github.com/ethereum/go-ethereum/swarm/spancontext"
	"github.com/ethereum/go-ethereum/swarm/testutil"
	opentracing "github.com/opentracing/opentracing-go"
E
ethersphere 已提交
42 43 44 45 46
	"github.com/pborman/uuid"

	cli "gopkg.in/urfave/cli.v1"
)

47
func generateEndpoints(scheme string, cluster string, app string, from int, to int) {
48
	if cluster == "prod" {
49
		for port := from; port < to; port++ {
50
			endpoints = append(endpoints, fmt.Sprintf("%s://%v.swarm-gateways.net", scheme, port))
B
Balint Gabor 已提交
51
		}
52
	} else {
53
		for port := from; port < to; port++ {
54
			endpoints = append(endpoints, fmt.Sprintf("%s://%s-%v-%s.stg.swarm-gateways.net", scheme, app, port, cluster))
55
		}
E
ethersphere 已提交
56 57 58 59 60 61 62 63
	}

	if includeLocalhost {
		endpoints = append(endpoints, "http://localhost:8500")
	}
}

func cliUploadAndSync(c *cli.Context) error {
64
	log.PrintOrigins(true)
65
	log.Root().SetHandler(log.LvlFilterHandler(log.Lvl(verbosity), log.StreamHandler(os.Stdout, log.TerminalFormat(true))))
66

67
	metrics.GetOrRegisterCounter("upload-and-sync", nil).Inc(1)
E
ethersphere 已提交
68

69 70 71 72
	errc := make(chan error)
	go func() {
		errc <- uploadAndSync(c)
	}()
E
ethersphere 已提交
73

74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
	select {
	case err := <-errc:
		if err != nil {
			metrics.GetOrRegisterCounter("upload-and-sync.fail", nil).Inc(1)
		}
		return err
	case <-time.After(time.Duration(timeout) * time.Second):
		metrics.GetOrRegisterCounter("upload-and-sync.timeout", nil).Inc(1)
		return fmt.Errorf("timeout after %v sec", timeout)
	}
}

func uploadAndSync(c *cli.Context) error {
	defer func(now time.Time) {
		totalTime := time.Since(now)

		log.Info("total time", "time", totalTime, "kb", filesize)
		metrics.GetOrRegisterCounter("upload-and-sync.total-time", nil).Inc(int64(totalTime))
	}(time.Now())

	generateEndpoints(scheme, cluster, appName, from, to)
	seed := int(time.Now().UnixNano() / 1e6)
	log.Info("uploading to "+endpoints[0]+" and syncing", "seed", seed)
E
ethersphere 已提交
97

98
	randomBytes := testutil.RandomBytes(seed, filesize*1000)
E
ethersphere 已提交
99

100 101
	t1 := time.Now()
	hash, err := upload(&randomBytes, endpoints[0])
E
ethersphere 已提交
102 103 104 105
	if err != nil {
		log.Error(err.Error())
		return err
	}
106
	metrics.GetOrRegisterCounter("upload-and-sync.upload-time", nil).Inc(int64(time.Since(t1)))
E
ethersphere 已提交
107

108
	fhash, err := digest(bytes.NewReader(randomBytes))
E
ethersphere 已提交
109 110 111 112 113 114 115
	if err != nil {
		log.Error(err.Error())
		return err
	}

	log.Info("uploaded successfully", "hash", hash, "digest", fmt.Sprintf("%x", fhash))

116
	time.Sleep(time.Duration(syncDelay) * time.Second)
E
ethersphere 已提交
117 118

	wg := sync.WaitGroup{}
119 120 121
	if single {
		rand.Seed(time.Now().UTC().UnixNano())
		randIndex := 1 + rand.Intn(len(endpoints)-1)
E
ethersphere 已提交
122 123 124 125
		ruid := uuid.New()[:8]
		wg.Add(1)
		go func(endpoint string, ruid string) {
			for {
126
				start := time.Now()
E
ethersphere 已提交
127 128 129 130 131
				err := fetch(hash, endpoint, fhash, ruid)
				if err != nil {
					continue
				}

132
				metrics.GetOrRegisterResettingTimer("upload-and-sync.single.fetch-time", nil).UpdateSince(start)
E
ethersphere 已提交
133 134 135
				wg.Done()
				return
			}
136 137
		}(endpoints[randIndex], ruid)
	} else {
138
		for _, endpoint := range endpoints[1:] {
139 140 141 142 143 144 145 146 147 148
			ruid := uuid.New()[:8]
			wg.Add(1)
			go func(endpoint string, ruid string) {
				for {
					start := time.Now()
					err := fetch(hash, endpoint, fhash, ruid)
					if err != nil {
						continue
					}

149
					metrics.GetOrRegisterResettingTimer("upload-and-sync.each.fetch-time", nil).UpdateSince(start)
150 151 152 153 154
					wg.Done()
					return
				}
			}(endpoint, ruid)
		}
E
ethersphere 已提交
155 156 157 158 159 160 161 162 163
	}
	wg.Wait()
	log.Info("all endpoints synced random file successfully")

	return nil
}

// fetch is getting the requested `hash` from the `endpoint` and compares it with the `original` file
func fetch(hash string, endpoint string, original []byte, ruid string) error {
164 165 166
	ctx, sp := spancontext.StartSpan(context.Background(), "upload-and-sync.fetch")
	defer sp.Finish()

E
ethersphere 已提交
167
	log.Trace("sleeping", "ruid", ruid)
B
Balint Gabor 已提交
168
	time.Sleep(3 * time.Second)
E
ethersphere 已提交
169
	log.Trace("http get request", "ruid", ruid, "api", endpoint, "hash", hash)
170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188

	var tn time.Time
	reqUri := endpoint + "/bzz:/" + hash + "/"
	req, _ := http.NewRequest("GET", reqUri, nil)

	opentracing.GlobalTracer().Inject(
		sp.Context(),
		opentracing.HTTPHeaders,
		opentracing.HTTPHeadersCarrier(req.Header))

	trace := client.GetClientTrace("upload-and-sync - http get", "upload-and-sync", ruid, &tn)

	req = req.WithContext(httptrace.WithClientTrace(ctx, trace))
	transport := http.DefaultTransport

	//transport.TLSClientConfig = &tls.Config{InsecureSkipVerify: true}

	tn = time.Now()
	res, err := transport.RoundTrip(req)
E
ethersphere 已提交
189
	if err != nil {
190
		log.Error(err.Error(), "ruid", ruid)
E
ethersphere 已提交
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
		return err
	}
	log.Trace("http get response", "ruid", ruid, "api", endpoint, "hash", hash, "code", res.StatusCode, "len", res.ContentLength)

	if res.StatusCode != 200 {
		err := fmt.Errorf("expected status code %d, got %v", 200, res.StatusCode)
		log.Warn(err.Error(), "ruid", ruid)
		return err
	}

	defer res.Body.Close()

	rdigest, err := digest(res.Body)
	if err != nil {
		log.Warn(err.Error(), "ruid", ruid)
		return err
	}

	if !bytes.Equal(rdigest, original) {
		err := fmt.Errorf("downloaded imported file md5=%x is not the same as the generated one=%x", rdigest, original)
		log.Warn(err.Error(), "ruid", ruid)
		return err
	}

	log.Trace("downloaded file matches random file", "ruid", ruid, "len", res.ContentLength)

	return nil
}

// upload is uploading a file `f` to `endpoint` via the `swarm up` cmd
221 222 223 224 225 226 227 228 229
func upload(dataBytes *[]byte, endpoint string) (string, error) {
	swarm := client.NewClient(endpoint)
	f := &client.File{
		ReadCloser: ioutil.NopCloser(bytes.NewReader(*dataBytes)),
		ManifestEntry: api.ManifestEntry{
			ContentType: "text/plain",
			Mode:        0660,
			Size:        int64(len(*dataBytes)),
		},
E
ethersphere 已提交
230
	}
231 232 233

	// upload data to bzz:// and retrieve the content-addressed manifest hash, hex-encoded.
	return swarm.Upload(f, "", false)
E
ethersphere 已提交
234 235 236 237 238 239 240 241 242 243 244
}

func digest(r io.Reader) ([]byte, error) {
	h := md5.New()
	_, err := io.Copy(h, r)
	if err != nil {
		return nil, err
	}
	return h.Sum(nil), nil
}

245 246 247 248 249 250 251 252 253 254 255
// generates random data in heap buffer
func generateRandomData(datasize int) ([]byte, error) {
	b := make([]byte, datasize)
	c, err := crand.Read(b)
	if err != nil {
		return nil, err
	} else if c != datasize {
		return nil, errors.New("short read")
	}
	return b, nil
}