forked from theupdateframework/go-tuf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutil.go
300 lines (253 loc) · 7.28 KB
/
util.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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
package util
import (
"bytes"
"crypto/hmac"
"crypto/sha256"
"crypto/sha512"
"encoding/hex"
"encoding/json"
"fmt"
"hash"
"io"
"io/ioutil"
"os"
"path"
"path/filepath"
"strconv"
"strings"
"github.com/theupdateframework/go-tuf/data"
)
type ErrWrongLength struct {
Expected int64
Actual int64
}
func (e ErrWrongLength) Error() string {
return fmt.Sprintf("wrong length, expected %d got %d", e.Expected, e.Actual)
}
type ErrWrongVersion struct {
Expected int
Actual int
}
func (e ErrWrongVersion) Error() string {
return fmt.Sprintf("wrong version, expected %d got %d", e.Expected, e.Actual)
}
type ErrWrongHash struct {
Type string
Expected data.HexBytes
Actual data.HexBytes
}
func (e ErrWrongHash) Error() string {
return fmt.Sprintf("wrong %s hash, expected %s got %s", e.Type, hex.EncodeToString(e.Expected), hex.EncodeToString(e.Actual))
}
type ErrNoCommonHash struct {
Expected data.Hashes
Actual data.Hashes
}
func (e ErrNoCommonHash) Error() string {
types := func(a data.Hashes) []string {
t := make([]string, 0, len(a))
for typ := range a {
t = append(t, typ)
}
return t
}
return fmt.Sprintf("no common hash function, expected one of %s, got %s", types(e.Expected), types(e.Actual))
}
type ErrUnknownHashAlgorithm struct {
Name string
}
func (e ErrUnknownHashAlgorithm) Error() string {
return fmt.Sprintf("unknown hash algorithm: %s", e.Name)
}
type PassphraseFunc func(role string, confirm bool) ([]byte, error)
func FileMetaEqual(actual data.FileMeta, expected data.FileMeta) error {
if actual.Length != expected.Length {
return ErrWrongLength{expected.Length, actual.Length}
}
if err := hashEqual(actual.Hashes, expected.Hashes); err != nil {
return err
}
return nil
}
func hashEqual(actual data.Hashes, expected data.Hashes) error {
hashChecked := false
for typ, hash := range expected {
if h, ok := actual[typ]; ok {
hashChecked = true
if !hmac.Equal(h, hash) {
return ErrWrongHash{typ, hash, h}
}
}
}
if !hashChecked {
return ErrNoCommonHash{expected, actual}
}
return nil
}
func versionEqual(actual int, expected int) error {
if actual != expected {
return ErrWrongVersion{expected, actual}
}
return nil
}
func SnapshotFileMetaEqual(actual data.SnapshotFileMeta, expected data.SnapshotFileMeta) error {
// TUF-1.0 no longer considers the length and hashes to be a required
// member of snapshots. However they are considering requiring hashes
// for delegated roles to avoid an attack described in Section 5.6 of
// the Mercury paper:
// https://github.com/theupdateframework/specification/pull/40
if expected.Length != 0 && actual.Length != expected.Length {
return ErrWrongLength{expected.Length, actual.Length}
}
if len(expected.Hashes) != 0 {
if err := hashEqual(actual.Hashes, expected.Hashes); err != nil {
return err
}
}
if err := versionEqual(actual.Version, expected.Version); err != nil {
return err
}
return nil
}
func TargetFileMetaEqual(actual data.TargetFileMeta, expected data.TargetFileMeta) error {
return FileMetaEqual(actual.FileMeta, expected.FileMeta)
}
func TimestampFileMetaEqual(actual data.TimestampFileMeta, expected data.TimestampFileMeta) error {
// As opposed to snapshots, the length and hashes are still required in
// TUF-1.0. See:
// https://github.com/theupdateframework/specification/issues/38
if err := FileMetaEqual(actual.FileMeta, expected.FileMeta); err != nil {
return err
}
if err := versionEqual(actual.Version, expected.Version); err != nil {
return err
}
return nil
}
const defaultHashAlgorithm = "sha512"
func GenerateFileMeta(r io.Reader, hashAlgorithms ...string) (data.FileMeta, error) {
if len(hashAlgorithms) == 0 {
hashAlgorithms = []string{defaultHashAlgorithm}
}
hashes := make(map[string]hash.Hash, len(hashAlgorithms))
for _, hashAlgorithm := range hashAlgorithms {
var h hash.Hash
switch hashAlgorithm {
case "sha256":
h = sha256.New()
case "sha512":
h = sha512.New()
default:
return data.FileMeta{}, ErrUnknownHashAlgorithm{hashAlgorithm}
}
hashes[hashAlgorithm] = h
r = io.TeeReader(r, h)
}
n, err := io.Copy(ioutil.Discard, r)
if err != nil {
return data.FileMeta{}, err
}
m := data.FileMeta{Length: n, Hashes: make(data.Hashes, len(hashes))}
for hashAlgorithm, h := range hashes {
m.Hashes[hashAlgorithm] = h.Sum(nil)
}
return m, nil
}
type versionedMeta struct {
Version int `json:"version"`
}
func generateVersionedFileMeta(r io.Reader, hashAlgorithms ...string) (data.FileMeta, int, error) {
b, err := ioutil.ReadAll(r)
if err != nil {
return data.FileMeta{}, 0, err
}
m, err := GenerateFileMeta(bytes.NewReader(b), hashAlgorithms...)
if err != nil {
return data.FileMeta{}, 0, err
}
s := data.Signed{}
if err := json.Unmarshal(b, &s); err != nil {
return data.FileMeta{}, 0, err
}
vm := versionedMeta{}
if err := json.Unmarshal(s.Signed, &vm); err != nil {
return data.FileMeta{}, 0, err
}
return m, vm.Version, nil
}
func GenerateSnapshotFileMeta(r io.Reader, hashAlgorithms ...string) (data.SnapshotFileMeta, error) {
m, v, err := generateVersionedFileMeta(r, hashAlgorithms...)
if err != nil {
return data.SnapshotFileMeta{}, err
}
return data.SnapshotFileMeta{m, v}, nil
}
func GenerateTargetFileMeta(r io.Reader, hashAlgorithms ...string) (data.TargetFileMeta, error) {
m, err := GenerateFileMeta(r, hashAlgorithms...)
if err != nil {
return data.TargetFileMeta{}, err
}
return data.TargetFileMeta{m}, nil
}
func GenerateTimestampFileMeta(r io.Reader, hashAlgorithms ...string) (data.TimestampFileMeta, error) {
m, v, err := generateVersionedFileMeta(r, hashAlgorithms...)
if err != nil {
return data.TimestampFileMeta{}, err
}
return data.TimestampFileMeta{m, v}, nil
}
func NormalizeTarget(p string) string {
// FIXME(TUF-0.9) TUF-1.0 is considering banning paths that begin with
// a leading path separator, to avoid surprising behavior when joining
// target and delgated paths. python-tuf raises an exception if any
// path starts with '/', but since we need to be cross compatible with
// TUF-0.9 we still need to support leading slashes. For now, we will
// just strip them out, but eventually we should also consider turning
// them into an error.
return strings.TrimPrefix(path.Join("/", p), "/")
}
func VersionedPath(p string, version int) string {
return path.Join(path.Dir(p), strconv.Itoa(version)+"."+path.Base(p))
}
func HashedPaths(p string, hashes data.Hashes) []string {
paths := make([]string, 0, len(hashes))
for _, hash := range hashes {
hashedPath := path.Join(path.Dir(p), hash.String()+"."+path.Base(p))
paths = append(paths, hashedPath)
}
return paths
}
func StringSliceToSet(items []string) map[string]struct{} {
s := make(map[string]struct{})
for _, item := range items {
s[item] = struct{}{}
}
return s
}
func AtomicallyWriteFile(filename string, data []byte, perm os.FileMode) error {
dir, name := filepath.Split(filename)
f, err := ioutil.TempFile(dir, name)
if err != nil {
return err
}
_, err = f.Write(data)
if err != nil {
f.Close()
os.Remove(f.Name())
return err
}
if err = f.Chmod(perm); err != nil {
f.Close()
os.Remove(f.Name())
return err
}
if err := f.Close(); err != nil {
os.Remove(f.Name())
return err
}
if err := os.Rename(f.Name(), filename); err != nil {
os.Remove(f.Name())
return err
}
return nil
}