-
Notifications
You must be signed in to change notification settings - Fork 30
/
util.go
370 lines (331 loc) · 8.67 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
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
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
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
package zboxutil
import (
"crypto/aes"
"crypto/cipher"
"crypto/rand"
"encoding/base64"
"encoding/json"
"fmt"
"io"
"math"
"math/bits"
"net/http"
"path/filepath"
"strconv"
"strings"
"errors"
thrown "github.com/0chain/errors"
"github.com/0chain/gosdk/zboxcore/allocationchange"
"github.com/0chain/gosdk/zboxcore/blockchain"
"github.com/h2non/filetype"
"github.com/lithammer/shortuuid/v3"
"golang.org/x/crypto/chacha20poly1305"
"golang.org/x/crypto/scrypt"
"golang.org/x/crypto/sha3"
)
const EncryptedFolderName = "encrypted"
type lazybuf struct {
path string
buf []byte
w int
volAndPath string
volLen int
}
func (b *lazybuf) index(i int) byte {
if b.buf != nil {
return b.buf[i]
}
return b.path[i]
}
func (b *lazybuf) append(c byte) {
if b.buf == nil {
if b.w < len(b.path) && b.path[b.w] == c {
b.w++
return
}
b.buf = make([]byte, len(b.path))
copy(b.buf, b.path[:b.w])
}
b.buf[b.w] = c
b.w++
}
func (b *lazybuf) string() string {
if b.buf == nil {
return b.volAndPath[:b.volLen+b.w]
}
return b.volAndPath[:b.volLen] + string(b.buf[:b.w])
}
func GetFileContentType(out io.ReadSeeker) (string, error) {
buffer := make([]byte, 261)
_, err := out.Read(buffer)
defer out.Seek(0, 0) //nolint
if err != nil && err != io.EOF {
return "", err
}
kind, _ := filetype.Match(buffer)
if kind == filetype.Unknown {
return "application/octet-stream", nil
}
return kind.MIME.Value, nil
}
func GetFullRemotePath(localPath, remotePath string) string {
if remotePath == "" || strings.HasSuffix(remotePath, "/") {
remotePath = strings.TrimRight(remotePath, "/")
_, fileName := filepath.Split(localPath)
remotePath = fmt.Sprintf("%s/%s", remotePath, fileName)
}
return remotePath
}
// NewConnectionId generate new connection id
func NewConnectionId() string {
return shortuuid.New()
}
func IsRemoteAbs(path string) bool {
return strings.HasPrefix(path, "/")
}
func RemoteClean(path string) string {
originalPath := path
volLen := 0 //volumeNameLen(path)
path = path[volLen:]
if path == "" {
if volLen > 1 && originalPath[1] != ':' {
// should be UNC
return path //FromSlash(originalPath)
}
return originalPath + "."
}
rooted := path[0] == '/' //os.IsPathSeparator(path[0])
// Invariants:
// reading from path; r is index of next byte to process.
// writing to buf; w is index of next byte to write.
// dotdot is index in buf where .. must stop, either because
// it is the leading slash or it is a leading ../../.. prefix.
n := len(path)
out := lazybuf{path: path, volAndPath: originalPath, volLen: volLen}
r, dotdot := 0, 0
if rooted {
out.append('/') //(Separator)
r, dotdot = 1, 1
}
for r < n {
switch {
case path[r] == '/' || path[r] == '\\': //os.IsPathSeparator(path[r]):
// empty path element
r++
case path[r] == '.' && (r+1 == n || path[r+1] == '/'): //os.IsPathSeparator(path[r+1])):
// . element
r++
case path[r] == '.' && path[r+1] == '.' && (r+2 == n || path[r+2] == '/'): //os.IsPathSeparator(path[r+2])):
// .. element: remove to last separator
r += 2
switch {
case out.w > dotdot:
// can backtrack
out.w--
for out.w > dotdot && !((out.index(out.w)) == '/') { //!os.IsPathSeparator(out.index(out.w)) {
out.w--
}
case !rooted:
// cannot backtrack, but not rooted, so append .. element.
if out.w > 0 {
out.append('/') //Separator)
}
out.append('.')
out.append('.')
dotdot = out.w
}
default:
// real path element.
// add slash if needed
if rooted && out.w != 1 || !rooted && out.w != 0 {
out.append('/') //(Separator)
}
// copy element
for ; r < n && !(path[r] == '/' || path[r] == '\\'); r++ { //!os.IsPathSeparator(path[r]); r++ {
out.append(path[r])
}
}
}
// Turn empty string into "."
if out.w == 0 {
out.append('.')
}
return out.string() //(FromSlash(out.string())
}
func Encrypt(key, text []byte) ([]byte, error) {
block, err := aes.NewCipher(key)
if err != nil {
return nil, err
}
b := base64.StdEncoding.EncodeToString(text)
ciphertext := make([]byte, aes.BlockSize+len(b))
iv := ciphertext[:aes.BlockSize]
if _, err := io.ReadFull(rand.Reader, iv); err != nil {
return nil, err
}
cfb := cipher.NewCFBEncrypter(block, iv)
cfb.XORKeyStream(ciphertext[aes.BlockSize:], []byte(b))
return ciphertext, nil
}
func Decrypt(key, text []byte) ([]byte, error) {
block, err := aes.NewCipher(key)
if err != nil {
return nil, err
}
if len(text) < aes.BlockSize {
return nil, errors.New("ciphertext too short")
}
iv := text[:aes.BlockSize]
text = text[aes.BlockSize:]
cfb := cipher.NewCFBDecrypter(block, iv)
cfb.XORKeyStream(text, text)
data, err := base64.StdEncoding.DecodeString(string(text))
if err != nil {
return nil, err
}
return data, nil
}
func GetRefsHash(r []byte) string {
hash := sha3.New256()
hash.Write(r)
var buf []byte
buf = hash.Sum(buf)
return string(buf)
}
func GetActiveBlobbers(dirMask uint32, blobbers []*blockchain.StorageNode) []*blockchain.StorageNode {
var c, pos int
var r []*blockchain.StorageNode
for i := dirMask; i != 0; i &= ^(1 << pos) {
pos = bits.TrailingZeros32(i)
r = append(r, blobbers[pos])
c++
}
return r
}
func GetRateLimitValue(r *http.Response) (int, error) {
rlStr := r.Header.Get("X-Rate-Limit-Limit")
durStr := r.Header.Get("X-Rate-Limit-Duration")
rl, err := strconv.ParseFloat(rlStr, 64)
if err != nil {
return 0, err
}
dur, err := strconv.ParseFloat(durStr, 64)
if err != nil {
return 0, err
}
return int(math.Ceil(rl / dur)), nil
}
func MajorError(errors []error) error {
countError := make(map[error]int)
for _, value := range errors {
if value != nil {
countError[value] += 1
}
}
maxFreq := 0
var maxKey error
for key, value := range countError {
if value > maxFreq {
maxKey = key
maxFreq = value
}
}
return maxKey
}
const (
keySize = 32
nonceSize = 12
saltSize = 32
tagSize = 16
scryptN = 32768
scryptR = 8
scryptP = 1
scryptKeyLen = 32
)
func ScryptEncrypt(key, text []byte) ([]byte, error) {
if len(key) != keySize {
return nil, errors.New("scrypt: invalid key size" + strconv.Itoa(len(key)))
}
if len(text) == 0 {
return nil, errors.New("scrypt: plaintext cannot be empty")
}
salt := make([]byte, saltSize)
if _, err := rand.Read(salt); err != nil {
return nil, err
}
derivedKey, err := scrypt.Key(key, salt, scryptN, scryptR, scryptP, scryptKeyLen)
if err != nil {
return nil, err
}
nonce := make([]byte, nonceSize)
if _, err := rand.Read(nonce); err != nil {
return nil, err
}
aead, err := chacha20poly1305.New(derivedKey)
if err != nil {
return nil, err
}
ciphertext := aead.Seal(nil, nonce, text, nil)
ciphertext = append(salt, ciphertext...)
ciphertext = append(nonce, ciphertext...)
return ciphertext, nil
}
func ScryptDecrypt(key, ciphertext []byte) ([]byte, error) {
if len(ciphertext) < saltSize+nonceSize+tagSize {
return nil, errors.New("ciphertext too short")
}
nonce := ciphertext[:nonceSize]
salt := ciphertext[nonceSize : nonceSize+saltSize]
text := ciphertext[saltSize+nonceSize:]
derivedKey, err := scrypt.Key(key, salt, scryptN, scryptR, scryptP, scryptKeyLen)
if err != nil {
return nil, err
}
aead, err := chacha20poly1305.New(derivedKey)
if err != nil {
return nil, err
}
plaintext, err := aead.Open(nil, nonce, text, nil)
if err != nil {
return nil, err
}
return plaintext, nil
}
// Returns the error message code, message should be strictly of the
// format: ".... err: {"code" : <return_this>, ...}, ..."
func GetErrorMessageCode(errorMsg string) (string, error) {
// find index of "err"
targetWord := `err:`
idx := strings.Index(errorMsg, targetWord)
if idx == -1 {
return "", thrown.New("invalid_params", "message doesn't contain `err` field")
}
var a = make(map[string]string)
if idx+5 >= len(errorMsg) {
return "", thrown.New("invalid_format", "err field is not proper json")
}
err := json.Unmarshal([]byte(errorMsg[idx+5:]), &a)
if err != nil {
return "", thrown.New("invalid_format", "err field is not proper json")
}
return a["code"], nil
}
// Returns transpose of 2-D slice
// Example: Given matrix [[a, b], [c, d], [e, f]] returns [[a, c, e], [b, d, f]]
func Transpose(matrix [][]allocationchange.AllocationChange) [][]allocationchange.AllocationChange {
rowLength := len(matrix)
if rowLength == 0 {
return matrix
}
columnLength := len(matrix[0])
transposedMatrix := make([][]allocationchange.AllocationChange, columnLength)
for i := range transposedMatrix {
transposedMatrix[i] = make([]allocationchange.AllocationChange, rowLength)
}
for i := 0; i < columnLength; i++ {
for j := 0; j < rowLength; j++ {
transposedMatrix[i][j] = matrix[j][i]
}
}
return transposedMatrix
}