-
Notifications
You must be signed in to change notification settings - Fork 168
/
Copy pathsharding.go
212 lines (186 loc) · 5.84 KB
/
sharding.go
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
57
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
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
//
// Copyright 2021 The Sigstore Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package sharding
import (
"encoding/hex"
"errors"
"fmt"
"strconv"
)
// An EntryID refers to a specific artifact's ID and is made of two components,
// the TreeID and the UUID. The TreeID is a hex-encoded uint64 (8 bytes)
// referring to the specific trillian tree (also known as log or shard) where
// the artifact can be found. The UUID is a hex-encoded 32-byte number
// referring to the artifact's merkle leaf hash from trillian. Artifact lookup
// by UUID occurs by finding the UUID within the tree specified by the TreeID.
//
// An EntryID is 40 bytes long and looks like this:
// FFFF FFFF FFFF FFFF FFFF FFFF FFFF FFFF FFFF FFFF FFFF FFFF FFFF FFFF FFFF FFFF FFFF FFFF FFFF FFFF
// |_______ ________| |_____________________________________ ______________________________________|
// \/ \/
// TreeID (8 bytes, hex) UUID (32 bytes, hex)
const TreeIDHexStringLen = 16
const UUIDHexStringLen = 64
const EntryIDHexStringLen = TreeIDHexStringLen + UUIDHexStringLen
type EntryID struct {
TreeID string
UUID string
}
// This function can take a TreeID of equal or lesser length than TreeIDHexStringLen. In
// case the TreeID length is less than TreeIDHexStringLen, it will be padded to the correct
// length.
func CreateEntryIDFromParts(treeid string, uuid string) (EntryID, error) {
if len(treeid) > TreeIDHexStringLen {
err := fmt.Errorf("invalid treeid len: %v", len(treeid))
return createEmptyEntryID(), err
}
if len(uuid) != UUIDHexStringLen {
err := fmt.Errorf("invalid uuid len: %v", len(uuid))
return createEmptyEntryID(), err
}
treeidFormatted, err := PadToTreeIDLen(treeid)
if err != nil {
return createEmptyEntryID(), err
}
if err := ValidateEntryID(treeidFormatted + uuid); err != nil {
return createEmptyEntryID(), err
}
return EntryID{
TreeID: treeidFormatted,
UUID: uuid}, nil
}
func createEmptyEntryID() EntryID {
return EntryID{
TreeID: "",
UUID: ""}
}
func (e EntryID) ReturnEntryIDString() string {
return e.TreeID + e.UUID
}
func PadToTreeIDLen(t string) (string, error) {
switch {
case len(t) == TreeIDHexStringLen:
return t, nil
case len(t) > TreeIDHexStringLen:
return "", fmt.Errorf("invalid treeID %v: too long", t)
default:
return fmt.Sprintf("%016s", t), nil
}
}
// Returns UUID (with no prepended TreeID) from a UUID or EntryID string.
// Validates UUID and also TreeID if present.
func GetUUIDFromIDString(id string) (string, error) {
switch len(id) {
case UUIDHexStringLen:
if err := ValidateUUID(id); err != nil {
return "", err
}
return id, nil
case EntryIDHexStringLen:
if err := ValidateEntryID(id); err != nil {
if err.Error() == "0 is not a valid TreeID" {
return id[len(id)-UUIDHexStringLen:], nil
}
return "", err
}
return id[len(id)-UUIDHexStringLen:], nil
default:
return "", fmt.Errorf("invalid ID len %v for %v", len(id), id)
}
}
// This is permissive in that if passed an EntryID, it will find the UUID and validate it.
func ValidateUUID(u string) error {
switch len(u) {
// If u is an EntryID, call validate on just the UUID
case EntryIDHexStringLen:
uid := u[len(u)-UUIDHexStringLen:]
if err := ValidateUUID(uid); err != nil {
return err
}
return nil
case UUIDHexStringLen:
if _, err := hex.DecodeString(u); err != nil {
return fmt.Errorf("id %v is not a valid hex string: %v", u, err)
}
return nil
default:
return fmt.Errorf("invalid ID len %v for %v", len(u), u)
}
}
// This is permissive in that if passed an EntryID, it will find the TreeID and validate it.
func ValidateTreeID(t string) error {
switch len(t) {
// If t is an EntryID, call validate on just the TreeID
case EntryIDHexStringLen:
tid := t[:TreeIDHexStringLen]
err := ValidateTreeID(tid)
if err != nil {
return err
}
return nil
case TreeIDHexStringLen:
// Check that it's a valid int64 in hex (base 16)
i, err := strconv.ParseInt(t, 16, 64)
if err != nil {
return fmt.Errorf("could not convert treeID %v to int64: %v", t, err)
}
// Check for invalid TreeID values
// TODO: test for more of these
if i == 0 {
return fmt.Errorf("0 is not a valid TreeID")
}
return nil
default:
return fmt.Errorf("TreeID len expected to be %v but got %v", TreeIDHexStringLen, len(t))
}
}
func ValidateEntryID(id string) error {
UUIDErr := ValidateUUID(id)
if UUIDErr != nil {
return UUIDErr
}
treeIDErr := ValidateTreeID(id)
if treeIDErr != nil {
return treeIDErr
}
return nil
}
var ErrPlainUUID = errors.New("cannot get treeID from plain UUID")
// Returns TreeID (with no appended UUID) from a TreeID or EntryID string.
// Validates TreeID and also UUID if present.
func GetTreeIDFromIDString(id string) (string, error) {
switch len(id) {
case UUIDHexStringLen:
return "", ErrPlainUUID
case EntryIDHexStringLen, TreeIDHexStringLen:
if err := ValidateEntryID(id); err != nil {
return "", err
}
return id[:TreeIDHexStringLen], nil
default:
return "", fmt.Errorf("invalid ID len %v for %v", len(id), id)
}
}
func TreeID(entryID string) (int64, error) {
tid, err := GetTreeIDFromIDString(entryID)
if err != nil {
return 0, err
}
i, err := strconv.ParseInt(tid, 16, 64)
if err != nil {
return 0, fmt.Errorf("could not convert treeID %v to int64: %w", tid, err)
}
return i, nil
}