aboutsummaryrefslogtreecommitdiff
path: root/internal/monitor/backoff.go
blob: 63c5f5551a0a59028b57b155c65fc3135cab35f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
package monitor

import (
	"context"

	ct "github.com/google/certificate-transparency-go"
	"github.com/google/certificate-transparency-go/client"
	"github.com/google/certificate-transparency-go/jsonclient"
	"github.com/google/trillian/client/backoff"
)

// backoffClient wraps client.LogClient so that we always backoff on get-entries
// 4XX and 5XX.  Backoff is on by default for get-sth already, and our silentct
// usage is guaranteed to not do any hammering on any of the proof endpoints.
//
// For reference on this issue, see:
// https://github.com/google/certificate-transparency-go/issues/898
type backoffClient struct {
	cli *client.LogClient
}

func (bc *backoffClient) BaseURI() string {
	return bc.cli.BaseURI()
}

func (bc *backoffClient) GetSTH(ctx context.Context) (*ct.SignedTreeHead, error) {
	return bc.cli.GetSTH(ctx)
}

func (bc *backoffClient) GetSTHConsistency(ctx context.Context, first, second uint64) ([][]byte, error) {
	return bc.cli.GetSTHConsistency(ctx, first, second)
}

func (bc *backoffClient) GetProofByHash(ctx context.Context, hash []byte, treeSize uint64) (*ct.GetProofByHashResponse, error) {
	return bc.cli.GetProofByHash(ctx, hash, treeSize)
}

func (bc *backoffClient) GetRawEntries(ctx context.Context, start, end int64) (*ct.GetEntriesResponse, error) {
	rsp, err := bc.cli.GetRawEntries(ctx, start, end)
	if err != nil {
		jcErr, ok := err.(jsonclient.RspError)
		if !ok {
			return rsp, err
		}
		if jcErr.StatusCode < 400 || jcErr.StatusCode >= 600 {
			return rsp, err
		}
		// This ensures we never start hammering when the status code is 4XX or
		// 5XX.  Probably not the right thing to do in all cases, but since the
		// download library we're using starts hammering if the log suddenly
		// serves something unexpected this seems like a good safety precaution.
		// Users of the silentct monitor eventually notice they get no entries.
		return rsp, backoff.RetriableErrorf("get-entries: %v", err)
	}
	return rsp, err
}