-
Notifications
You must be signed in to change notification settings - Fork 351
/
adapter.go
594 lines (507 loc) · 18.4 KB
/
adapter.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
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
package azure
import (
"context"
"errors"
"fmt"
"io"
"net/http"
"net/url"
"strings"
"time"
"github.com/Azure/azure-sdk-for-go/sdk/azcore/to"
"github.com/Azure/azure-sdk-for-go/sdk/storage/azblob"
"github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/blob"
"github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/bloberror"
"github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/blockblob"
"github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/sas"
"github.com/treeverse/lakefs/pkg/block"
"github.com/treeverse/lakefs/pkg/block/params"
"github.com/treeverse/lakefs/pkg/logging"
)
var ErrNotImplemented = errors.New("not implemented")
const (
sizeSuffix = "_size"
idSuffix = "_id"
_1MiB = 1024 * 1024
MaxBuffers = 1
// udcCacheSize - Arbitrary number: exceeding this number means that in the expiry timeframe we requested pre-signed urls from
// more the 5000 different accounts which is highly unlikely
udcCacheSize = 5000
URLTemplate = "https://%s.blob.core.windows.net/"
)
type Adapter struct {
clientCache *ClientCache
preSignedExpiry time.Duration
disablePreSigned bool
disablePreSignedUI bool
}
func NewAdapter(ctx context.Context, params params.Azure) (*Adapter, error) {
logging.FromContext(ctx).WithField("type", "azure").Info("initialized blockstore adapter")
preSignedExpiry := params.PreSignedExpiry
if preSignedExpiry == 0 {
preSignedExpiry = block.DefaultPreSignExpiryDuration
}
cache, err := NewCache(params)
if err != nil {
return nil, err
}
return &Adapter{
clientCache: cache,
preSignedExpiry: preSignedExpiry,
disablePreSigned: params.DisablePreSigned,
disablePreSignedUI: params.DisablePreSignedUI,
}, nil
}
type BlobURLInfo struct {
StorageAccountName string
ContainerURL string
ContainerName string
BlobURL string
}
type PrefixURLInfo struct {
StorageAccountName string
ContainerURL string
ContainerName string
Prefix string
}
func ExtractStorageAccount(storageAccount *url.URL) (string, error) {
// In azure the subdomain is the storage account
const expectedHostParts = 2
hostParts := strings.SplitN(storageAccount.Host, ".", expectedHostParts)
if len(hostParts) != expectedHostParts {
return "", fmt.Errorf("wrong host parts(%d): %w", len(hostParts), block.ErrInvalidAddress)
}
return hostParts[0], nil
}
func ResolveBlobURLInfoFromURL(pathURL *url.URL) (BlobURLInfo, error) {
var qk BlobURLInfo
err := block.ValidateStorageType(pathURL, block.StorageTypeAzure)
if err != nil {
return qk, err
}
// In azure the first part of the path is part of the storage namespace
trimmedPath := strings.Trim(pathURL.Path, "/")
pathParts := strings.Split(trimmedPath, "/")
if len(pathParts) == 0 {
return qk, fmt.Errorf("wrong path parts(%d): %w", len(pathParts), block.ErrInvalidAddress)
}
storageAccount, err := ExtractStorageAccount(pathURL)
if err != nil {
return qk, err
}
return BlobURLInfo{
StorageAccountName: storageAccount,
ContainerURL: fmt.Sprintf("%s://%s/%s", pathURL.Scheme, pathURL.Host, pathParts[0]),
ContainerName: pathParts[0],
BlobURL: strings.Join(pathParts[1:], "/"),
}, nil
}
func resolveBlobURLInfo(obj block.ObjectPointer) (BlobURLInfo, error) {
key := obj.Identifier
defaultNamespace := obj.StorageNamespace
var qk BlobURLInfo
// check if the key is fully qualified
parsedKey, err := url.ParseRequestURI(key)
if err != nil {
// is not fully qualified, treat as key only
// if we don't have a trailing slash for the namespace, add it.
parsedNamespace, err := url.ParseRequestURI(defaultNamespace)
if err != nil {
return qk, err
}
qp, err := ResolveBlobURLInfoFromURL(parsedNamespace)
if err != nil {
return qk, err
}
info := BlobURLInfo{
StorageAccountName: qp.StorageAccountName,
ContainerURL: qp.ContainerURL,
ContainerName: qp.ContainerName,
BlobURL: qp.BlobURL + "/" + key,
}
if qp.BlobURL == "" {
info.BlobURL = key
}
return info, nil
}
return ResolveBlobURLInfoFromURL(parsedKey)
}
func (a *Adapter) GenerateInventory(_ context.Context, _ logging.Logger, _ string, _ bool, _ []string) (block.Inventory, error) {
return nil, fmt.Errorf("inventory %w", ErrNotImplemented)
}
func (a *Adapter) translatePutOpts(ctx context.Context, opts block.PutOpts) azblob.UploadStreamOptions {
res := azblob.UploadStreamOptions{}
if opts.StorageClass == nil {
return res
}
for _, t := range blob.PossibleAccessTierValues() {
if strings.EqualFold(*opts.StorageClass, string(t)) {
accessTier := t
res.AccessTier = &accessTier
break
}
}
if res.AccessTier == nil {
a.log(ctx).WithField("tier_type", *opts.StorageClass).Warn("Unknown Azure tier type")
}
return res
}
func (a *Adapter) log(ctx context.Context) logging.Logger {
return logging.FromContext(ctx)
}
func (a *Adapter) Put(ctx context.Context, obj block.ObjectPointer, sizeBytes int64, reader io.Reader, opts block.PutOpts) error {
var err error
defer reportMetrics("Put", time.Now(), &sizeBytes, &err)
qualifiedKey, err := resolveBlobURLInfo(obj)
if err != nil {
return err
}
o := a.translatePutOpts(ctx, opts)
containerClient, err := a.clientCache.NewContainerClient(qualifiedKey.StorageAccountName, qualifiedKey.ContainerName)
if err != nil {
return err
}
_, err = containerClient.NewBlockBlobClient(qualifiedKey.BlobURL).UploadStream(ctx, reader, &o)
return err
}
func (a *Adapter) Get(ctx context.Context, obj block.ObjectPointer, _ int64) (io.ReadCloser, error) {
var err error
defer reportMetrics("Get", time.Now(), nil, &err)
return a.Download(ctx, obj, 0, blockblob.CountToEnd)
}
func (a *Adapter) GetWalker(uri *url.URL) (block.Walker, error) {
if err := block.ValidateStorageType(uri, block.StorageTypeAzure); err != nil {
return nil, err
}
storageAccount, err := ExtractStorageAccount(uri)
if err != nil {
return nil, err
}
client, err := a.clientCache.NewServiceClient(storageAccount)
if err != nil {
return nil, err
}
return NewAzureBlobWalker(client)
}
func (a *Adapter) GetPreSignedURL(ctx context.Context, obj block.ObjectPointer, mode block.PreSignMode) (string, time.Time, error) {
if a.disablePreSigned {
return "", time.Time{}, block.ErrOperationNotSupported
}
permissions := sas.BlobPermissions{Read: true}
if mode == block.PreSignModeWrite {
permissions = sas.BlobPermissions{
Read: true,
Add: true,
Write: true,
}
}
url, err := a.getPreSignedURL(ctx, obj, permissions)
// TODO(#6347): Report expiry.
return url, time.Time{}, err
}
func (a *Adapter) getPreSignedURL(ctx context.Context, obj block.ObjectPointer, permissions sas.BlobPermissions) (string, error) {
if a.disablePreSigned {
return "", block.ErrOperationNotSupported
}
qualifiedKey, err := resolveBlobURLInfo(obj)
if err != nil {
return "", err
}
// Use shared credential for clients initialized with storage access key
if qualifiedKey.StorageAccountName == a.clientCache.params.StorageAccount && a.clientCache.params.StorageAccessKey != "" {
container, err := a.clientCache.NewContainerClient(qualifiedKey.StorageAccountName, qualifiedKey.ContainerName)
if err != nil {
return "", err
}
return container.NewBlobClient(qualifiedKey.BlobURL).GetSASURL(permissions, time.Time{}, a.newPreSignedTime())
}
urlExpiry := a.newPreSignedTime()
udc, err := a.clientCache.NewUDC(ctx, qualifiedKey.StorageAccountName, &urlExpiry)
if err != nil {
return "", err
}
// Create Blob Signature Values with desired permissions and sign with user delegation credential
sasQueryParams, err := sas.BlobSignatureValues{
Protocol: sas.ProtocolHTTPS,
ExpiryTime: urlExpiry,
Permissions: to.Ptr(permissions).String(),
ContainerName: qualifiedKey.ContainerName,
BlobName: qualifiedKey.BlobURL,
}.SignWithUserDelegation(udc)
if err != nil {
return "", err
}
u := fmt.Sprintf("%s/%s?%s", qualifiedKey.ContainerURL, qualifiedKey.BlobURL, sasQueryParams.Encode())
return u, nil
}
func (a *Adapter) GetRange(ctx context.Context, obj block.ObjectPointer, startPosition int64, endPosition int64) (io.ReadCloser, error) {
var err error
defer reportMetrics("GetRange", time.Now(), nil, &err)
return a.Download(ctx, obj, startPosition, endPosition-startPosition+1)
}
func (a *Adapter) Download(ctx context.Context, obj block.ObjectPointer, offset, count int64) (io.ReadCloser, error) {
qualifiedKey, err := resolveBlobURLInfo(obj)
if err != nil {
return nil, err
}
container, err := a.clientCache.NewContainerClient(qualifiedKey.StorageAccountName, qualifiedKey.ContainerName)
if err != nil {
return nil, err
}
blobURL := container.NewBlockBlobClient(qualifiedKey.BlobURL)
downloadResponse, err := blobURL.DownloadStream(ctx, &azblob.DownloadStreamOptions{
RangeGetContentMD5: nil,
Range: blob.HTTPRange{
Offset: offset,
Count: count,
},
})
if bloberror.HasCode(err, bloberror.BlobNotFound) {
return nil, block.ErrDataNotFound
}
if err != nil {
a.log(ctx).WithError(err).Errorf("failed to get azure blob from container %s key %s", container, blobURL)
return nil, err
}
return downloadResponse.Body, nil
}
func (a *Adapter) Exists(ctx context.Context, obj block.ObjectPointer) (bool, error) {
var err error
defer reportMetrics("Exists", time.Now(), nil, &err)
qualifiedKey, err := resolveBlobURLInfo(obj)
if err != nil {
return false, err
}
containerClient, err := a.clientCache.NewContainerClient(qualifiedKey.StorageAccountName, qualifiedKey.ContainerName)
if err != nil {
return false, err
}
blobURL := containerClient.NewBlobClient(qualifiedKey.BlobURL)
_, err = blobURL.GetProperties(ctx, nil)
if bloberror.HasCode(err, bloberror.BlobNotFound) {
return false, nil
}
if err != nil {
return false, err
}
return true, nil
}
func (a *Adapter) GetProperties(ctx context.Context, obj block.ObjectPointer) (block.Properties, error) {
var err error
defer reportMetrics("GetProperties", time.Now(), nil, &err)
qualifiedKey, err := resolveBlobURLInfo(obj)
if err != nil {
return block.Properties{}, err
}
containerClient, err := a.clientCache.NewContainerClient(qualifiedKey.StorageAccountName, qualifiedKey.ContainerName)
if err != nil {
return block.Properties{}, err
}
blobURL := containerClient.NewBlobClient(qualifiedKey.BlobURL)
props, err := blobURL.GetProperties(ctx, nil)
if err != nil {
return block.Properties{}, err
}
return block.Properties{StorageClass: props.AccessTier}, nil
}
func (a *Adapter) Remove(ctx context.Context, obj block.ObjectPointer) error {
var err error
defer reportMetrics("Remove", time.Now(), nil, &err)
qualifiedKey, err := resolveBlobURLInfo(obj)
if err != nil {
return err
}
containerClient, err := a.clientCache.NewContainerClient(qualifiedKey.StorageAccountName, qualifiedKey.ContainerName)
if err != nil {
return err
}
blobURL := containerClient.NewBlobClient(qualifiedKey.BlobURL)
_, err = blobURL.Delete(ctx, nil)
return err
}
func (a *Adapter) Copy(ctx context.Context, sourceObj, destinationObj block.ObjectPointer) error {
var err error
defer reportMetrics("Copy", time.Now(), nil, &err)
qualifiedDestinationKey, err := resolveBlobURLInfo(destinationObj)
if err != nil {
return err
}
destContainerClient, err := a.clientCache.NewContainerClient(qualifiedDestinationKey.StorageAccountName, qualifiedDestinationKey.ContainerName)
if err != nil {
return err
}
destClient := destContainerClient.NewBlobClient(qualifiedDestinationKey.BlobURL)
sasKey, _, err := a.GetPreSignedURL(ctx, sourceObj, block.PreSignModeRead)
if err != nil {
return err
}
// Optimistic flow - try to copy synchronously
_, err = destClient.CopyFromURL(ctx, sasKey, nil)
if err == nil {
return nil
}
// Azure API (backend) returns ambiguous error code which requires us to parse the error message to understand what is the nature of the error
// See: https://github.com/Azure/azure-sdk-for-go/issues/19880
if !bloberror.HasCode(err, bloberror.CannotVerifyCopySource) ||
!strings.Contains(err.Error(), "The source request body for synchronous copy is too large and exceeds the maximum permissible limit") {
return err
}
// Blob too big for synchronous copy. Perform async copy
logger := a.log(ctx).WithFields(logging.Fields{
"sourceObj": sourceObj.Identifier,
"destObj": destinationObj.Identifier,
})
logger.Debug("Perform async copy")
res, err := destClient.StartCopyFromURL(ctx, sasKey, nil)
if err != nil {
return err
}
copyStatus := res.CopyStatus
if copyStatus == nil {
return fmt.Errorf("%w: failed to get copy status", block.ErrAsyncCopyFailed)
}
progress := ""
const asyncPollInterval = 5 * time.Second
for {
select {
case <-ctx.Done():
logger.WithField("copy_progress", progress).Warn("context canceled, aborting copy")
// Context canceled - perform abort on copy use a different context for the abort
_, err := destClient.AbortCopyFromURL(context.Background(), *res.CopyID, nil)
if err != nil {
logger.WithError(err).Error("failed to abort copy")
}
return ctx.Err()
case <-time.After(asyncPollInterval):
p, err := destClient.GetProperties(ctx, nil)
if err != nil {
return err
}
copyStatus = p.CopyStatus
if copyStatus == nil {
return fmt.Errorf("%w: failed to get copy status", block.ErrAsyncCopyFailed)
}
progress = *p.CopyProgress
switch *copyStatus {
case blob.CopyStatusTypeSuccess:
logger.WithField("object_properties", p).Debug("Async copy successful")
return nil
case blob.CopyStatusTypeAborted:
return fmt.Errorf("%w: unexpected abort", block.ErrAsyncCopyFailed)
case blob.CopyStatusTypeFailed:
return fmt.Errorf("%w: copy status failed", block.ErrAsyncCopyFailed)
case blob.CopyStatusTypePending:
logger.WithField("copy_progress", progress).Debug("Copy pending")
default:
return fmt.Errorf("%w: invalid copy status: %s", block.ErrAsyncCopyFailed, *copyStatus)
}
}
}
}
func (a *Adapter) CreateMultiPartUpload(_ context.Context, obj block.ObjectPointer, _ *http.Request, _ block.CreateMultiPartUploadOpts) (*block.CreateMultiPartUploadResponse, error) {
// Azure has no create multipart upload
var err error
defer reportMetrics("CreateMultiPartUpload", time.Now(), nil, &err)
qualifiedKey, err := resolveBlobURLInfo(obj)
if err != nil {
return nil, err
}
return &block.CreateMultiPartUploadResponse{
UploadID: qualifiedKey.BlobURL,
}, nil
}
func (a *Adapter) UploadPart(ctx context.Context, obj block.ObjectPointer, _ int64, reader io.Reader, _ string, _ int) (*block.UploadPartResponse, error) {
var err error
defer reportMetrics("UploadPart", time.Now(), nil, &err)
qualifiedKey, err := resolveBlobURLInfo(obj)
if err != nil {
return nil, err
}
container, err := a.clientCache.NewContainerClient(qualifiedKey.StorageAccountName, qualifiedKey.ContainerName)
if err != nil {
return nil, err
}
hashReader := block.NewHashingReader(reader, block.HashFunctionMD5)
multipartBlockWriter := NewMultipartBlockWriter(hashReader, *container, qualifiedKey.BlobURL)
_, err = copyFromReader(ctx, hashReader, multipartBlockWriter, blockblob.UploadStreamOptions{
BlockSize: _1MiB,
Concurrency: MaxBuffers,
})
if err != nil {
return nil, err
}
return &block.UploadPartResponse{
ETag: strings.Trim(multipartBlockWriter.etag, `"`),
}, nil
}
func (a *Adapter) UploadCopyPart(ctx context.Context, sourceObj, destinationObj block.ObjectPointer, _ string, _ int) (*block.UploadPartResponse, error) {
var err error
defer reportMetrics("UploadPart", time.Now(), nil, &err)
return a.copyPartRange(ctx, sourceObj, destinationObj, 0, blockblob.CountToEnd)
}
func (a *Adapter) UploadCopyPartRange(ctx context.Context, sourceObj, destinationObj block.ObjectPointer, _ string, _ int, startPosition, endPosition int64) (*block.UploadPartResponse, error) {
var err error
defer reportMetrics("UploadPart", time.Now(), nil, &err)
return a.copyPartRange(ctx, sourceObj, destinationObj, startPosition, endPosition-startPosition+1)
}
func (a *Adapter) copyPartRange(ctx context.Context, sourceObj, destinationObj block.ObjectPointer, startPosition, count int64) (*block.UploadPartResponse, error) {
qualifiedSourceKey, err := resolveBlobURLInfo(sourceObj)
if err != nil {
return nil, err
}
qualifiedDestinationKey, err := resolveBlobURLInfo(destinationObj)
if err != nil {
return nil, err
}
destinationContainer, err := a.clientCache.NewContainerClient(qualifiedDestinationKey.StorageAccountName, qualifiedDestinationKey.ContainerName)
if err != nil {
return nil, err
}
sourceContainer, err := a.clientCache.NewContainerClient(qualifiedSourceKey.StorageAccountName, qualifiedSourceKey.ContainerName)
if err != nil {
return nil, err
}
sourceBlobURL := sourceContainer.NewBlockBlobClient(qualifiedSourceKey.BlobURL)
return copyPartRange(ctx, *destinationContainer, qualifiedDestinationKey.BlobURL, *sourceBlobURL, startPosition, count)
}
func (a *Adapter) AbortMultiPartUpload(_ context.Context, _ block.ObjectPointer, _ string) error {
// Azure has no abort, in case of commit, uncommitted parts are erased, otherwise staged data is erased after 7 days
return nil
}
func (a *Adapter) BlockstoreType() string {
return block.BlockstoreTypeAzure
}
func (a *Adapter) CompleteMultiPartUpload(ctx context.Context, obj block.ObjectPointer, _ string, multipartList *block.MultipartUploadCompletion) (*block.CompleteMultiPartUploadResponse, error) {
var err error
defer reportMetrics("CompleteMultiPartUpload", time.Now(), nil, &err)
qualifiedKey, err := resolveBlobURLInfo(obj)
if err != nil {
return nil, err
}
containerURL, err := a.clientCache.NewContainerClient(qualifiedKey.StorageAccountName, qualifiedKey.ContainerName)
if err != nil {
return nil, err
}
return completeMultipart(ctx, multipartList.Part, *containerURL, qualifiedKey.BlobURL)
}
func (a *Adapter) GetStorageNamespaceInfo() block.StorageNamespaceInfo {
info := block.DefaultStorageNamespaceInfo(block.BlockstoreTypeAzure)
info.ValidityRegex = `^https?://[a-z,0-9]+\.blob\.core\.windows\.net`
info.Example = "https://mystorageaccount.blob.core.windows.net/mycontainer/"
if a.disablePreSigned {
info.PreSignSupport = false
}
if !(a.disablePreSignedUI || a.disablePreSigned) {
info.PreSignSupportUI = true
}
return info
}
func (a *Adapter) ResolveNamespace(storageNamespace, key string, identifierType block.IdentifierType) (block.QualifiedKey, error) {
return block.DefaultResolveNamespace(storageNamespace, key, identifierType)
}
func (a *Adapter) RuntimeStats() map[string]string {
return nil
}
func (a *Adapter) newPreSignedTime() time.Time {
return time.Now().UTC().Add(a.preSignedExpiry)
}