forked from argoproj/argo-workflows
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazure.go
458 lines (399 loc) · 15.4 KB
/
azure.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
package azure
import (
"context"
"fmt"
"io"
"net/url"
"os"
"path"
"path/filepath"
"strings"
"github.com/Azure/azure-sdk-for-go/sdk/azidentity"
"github.com/Azure/azure-sdk-for-go/sdk/storage/azblob"
"github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/bloberror"
"github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/container"
log "github.com/sirupsen/logrus"
argoerrors "github.com/argoproj/argo-workflows/v3/errors"
"github.com/argoproj/pkg/file"
"github.com/pkg/errors"
wfv1 "github.com/argoproj/argo-workflows/v3/pkg/apis/workflow/v1alpha1"
artifactscommon "github.com/argoproj/argo-workflows/v3/workflow/artifacts/common"
)
// ArtifactDriver is a driver for Azure Blob Storage
type ArtifactDriver struct {
AccountKey string
Container string
Endpoint string
UseSDKCreds bool
}
var _ artifactscommon.ArtifactDriver = &ArtifactDriver{}
// newAzureContainerClient creates a new container.Client for interacting with the specified Azure Blob Storage container
// The container client is created with the default azblob.ClientOptions which does include retry behavior
// for failed requests.
func (azblobDriver *ArtifactDriver) newAzureContainerClient() (*container.Client, error) {
containerUrl, err := url.Parse(azblobDriver.Endpoint)
if err != nil {
return nil, fmt.Errorf("unable to parse Azure Blob Storage endpoint url %s: %s", azblobDriver.Endpoint, err)
}
// Append the container name to the URL path
if len(containerUrl.Path) == 0 || containerUrl.Path[len(containerUrl.Path)-1] != '/' {
containerUrl.Path += "/"
}
containerUrl.Path += azblobDriver.Container
if azblobDriver.UseSDKCreds {
credential, err := azidentity.NewDefaultAzureCredential(nil)
if err != nil {
return nil, fmt.Errorf("unable to create default Azure credential: %s", err)
}
containerClient, err := container.NewClient(containerUrl.String(), credential, nil)
return containerClient, err
} else {
if azblobDriver.AccountKey == "" {
return nil, fmt.Errorf("accountKey secret is required for Azure Blob Storage if useSDKCreds is false")
}
accountName, err := determineAccountName(containerUrl)
if err != nil {
return nil, err
}
credential, err := azblob.NewSharedKeyCredential(accountName, azblobDriver.AccountKey)
if err != nil {
return nil, fmt.Errorf("unable to create Azure shared key credential: %s", err)
}
containerClient, err := container.NewClientWithSharedKeyCredential(containerUrl.String(), credential, nil)
return containerClient, err
}
}
// determineAccountName determines the account name of the storage account based on the
// supplied container URL.
func determineAccountName(containerUrl *url.URL) (string, error) {
hostname := containerUrl.Hostname()
if strings.HasPrefix(hostname, "127.0.0.1") || strings.HasPrefix(hostname, "localhost") {
parts := strings.Split(containerUrl.Path, "/")
if len(parts) <= 2 {
return "", errors.Errorf("unable to determine storage account name from %s", containerUrl)
}
return parts[1], nil
} else {
parts := strings.Split(hostname, ".")
return parts[0], nil
}
}
// Load downloads artifacts from Azure Blob Storage
func (azblobDriver *ArtifactDriver) Load(artifact *wfv1.Artifact, path string) error {
log.WithFields(log.Fields{"endpoint": artifact.Azure.Endpoint, "container": artifact.Azure.Container,
"blob": artifact.Azure.Blob}).Info("Downloading from Azure Blob Storage")
containerClient, err := azblobDriver.newAzureContainerClient()
if err != nil {
return fmt.Errorf("unable to create Azure Blob Container client: %s", err)
}
// Assume we're not downloading a directory and try to download as a file, since this is
// the most common case and we don't want the penalty of listing the blobs before we
// download (to determine if it's a directory instead of a single file). If we get a
// BlobNotFound error, then check if it's a directory and process accordingly. If the account
// has HNS enabled (ADLS Gen 2), then there's an edge case with using the blob API to
// access. The directory will be returned as an empty file, so check for that as well.
var isEmptyFile bool
origErr := DownloadFile(containerClient, artifact.Azure.Blob, path)
if origErr == nil {
fileInfo, err := os.Lstat(path)
if err != nil {
return fmt.Errorf("unable to retrieve stats for downloaded file %s: %s", path, err)
}
// Empty file means it could be an ADLS Gen 2 account and we downloaded the
// directory as an empty file -- we'll check below. If it's a non-empty file,
// then we successfully downloaded a file blob.
if fileInfo.Size() > 0 {
return nil
}
isEmptyFile = true
} else if !bloberror.HasCode(origErr, bloberror.BlobNotFound) {
_ = os.Remove(path)
return fmt.Errorf("unable to download blob %s: %s", artifact.Azure.Blob, origErr)
}
isDir, err := azblobDriver.IsDirectory(artifact)
if err != nil {
_ = os.Remove(path)
return fmt.Errorf("unable to determine if %s is a directory: %s", artifact.Azure.Blob, err)
}
// It's not a directory and the file doesn't exist, Return the original NoSuchKey error.
if !isDir && !isEmptyFile {
_ = os.Remove(path)
return argoerrors.New(argoerrors.CodeNotFound, origErr.Error())
}
// When we tried to download the blob as a file, we created an empty file for the
// blob as a target. We need to delete that empty file so we can re-create as a directory.
err = os.Remove(path)
if err != nil {
return fmt.Errorf("unable to remove attempted file download %s: %s", path, err)
}
// It's a directory, so download all of the files.
err = azblobDriver.DownloadDirectory(containerClient, artifact, path)
if err != nil {
return fmt.Errorf("unable to download directory %s: %s", artifact.Azure.Blob, err)
}
return nil
}
// DownloadFile downloads a single file from Azure Blob Storage
func DownloadFile(containerClient *container.Client, blobName, path string) error {
blobClient := containerClient.NewBlobClient(blobName)
err := os.MkdirAll(filepath.Dir(path), 0755)
if err != nil {
return fmt.Errorf("unable to create dir for file %s: %s", path, err)
}
outFile, err := os.Create(path)
if err != nil {
return fmt.Errorf("unable to create file %s: %s", path, err)
}
defer func() {
if err := outFile.Close(); err != nil {
log.Warnf("unable to close file: %s", err)
}
}()
_, err = blobClient.DownloadFile(context.TODO(), outFile, nil)
return err
}
// DownloadDirectory downloads all of the files starting with the named blob prefix into a local directory.
func (azblobDriver *ArtifactDriver) DownloadDirectory(containerClient *container.Client, artifact *wfv1.Artifact, path string) error {
log.WithFields(log.Fields{"endpoint": artifact.Azure.Endpoint, "container": artifact.Azure.Container,
"blob": artifact.Azure.Blob}).Info("Downloading directory from Azure Blob Storage")
files, err := azblobDriver.ListObjects(artifact)
if err != nil {
return fmt.Errorf("unable to list blob %s in Azure Storage: %s", artifact.Azure.Blob, err)
}
err = os.MkdirAll(path, 0755)
if err != nil {
return fmt.Errorf("unable to create local directory %s: %s", path, err)
}
for _, file := range files {
// For ADLS Gen 2 accounts, we'll see a file whose name matches the directory. Skip it.
if file == artifact.Azure.Blob {
continue
}
relKeyPath := strings.TrimPrefix(file, artifact.Azure.Blob)
localPath := filepath.Join(path, relKeyPath)
err = DownloadFile(containerClient, file, localPath)
if err != nil {
return fmt.Errorf("unable to download file %s: %s", localPath, err)
}
}
return nil
}
// OpenStream opens a stream reader for an artifact from Azure Blob Storage
func (azblobDriver *ArtifactDriver) OpenStream(artifact *wfv1.Artifact) (io.ReadCloser, error) {
log.WithFields(log.Fields{"endpoint": artifact.Azure.Endpoint, "container": artifact.Azure.Container,
"blob": artifact.Azure.Blob}).Info("Streaming from Azure Blob Storage")
containerClient, err := azblobDriver.newAzureContainerClient()
if err != nil {
return nil, fmt.Errorf("unable to create Azure Blob Container client: %s", err)
}
blobClient := containerClient.NewBlockBlobClient(artifact.Azure.Blob)
// Attempt the download. If it fails with a BlobNotFound error, or succeeds but with
// a content length of 0, then it could be that we're attempting to stream a directory.
// Check if the blob represents a directory and return an error if so. If not, then
// return either the original BlobNotFound error or the empty file stream.
emptyFile := false
response, origErr := blobClient.DownloadStream(context.TODO(), nil)
if origErr == nil {
emptyFile = *response.ContentLength == 0
// We have a normal file blob, so just return the response body stream
if !emptyFile {
return response.Body, nil
}
} else if !bloberror.HasCode(origErr, bloberror.BlobNotFound) {
return nil, fmt.Errorf("unable to open stream for blob %s: %s", artifact.Azure.Blob, origErr)
}
isDir, err := azblobDriver.IsDirectory(artifact)
if err != nil {
return nil, fmt.Errorf("unable to test if blob %s is a directory: %s", artifact.Azure.Blob, err)
}
if isDir {
return nil, argoerrors.New(argoerrors.CodeNotImplemented, "Directory Stream capability currently unimplemented for Azure Blob")
} else if !emptyFile {
// Not a directory (and not successful retrieval of an empty file), so return
// the original BlobNotFound error
return nil, fmt.Errorf("unable to open blob stream for %s: %s", artifact.Azure.Blob, origErr)
}
return response.Body, nil
}
// Save saves an artifact to Azure Blob Storage
func (azblobDriver *ArtifactDriver) Save(path string, outputArtifact *wfv1.Artifact) error {
log.WithFields(log.Fields{"endpoint": outputArtifact.Azure.Endpoint, "container": outputArtifact.Azure.Container,
"blob": outputArtifact.Azure.Blob}).Info("Saving to Azure Blob Storage")
isDir, err := file.IsDirectory(path)
if err != nil {
return fmt.Errorf("failed to test if %s is a directory: %v", path, err)
}
containerClient, err := azblobDriver.newAzureContainerClient()
if err != nil {
return fmt.Errorf("unable to create Azure Blob Container client for %s: %s", outputArtifact.Azure.Blob, err)
}
if isDir {
err := PutDirectory(containerClient, outputArtifact.Azure.Blob, path)
if err != nil {
return fmt.Errorf("unable to upload directory %s to Azure: %s", path, err)
}
} else {
err := PutFile(containerClient, outputArtifact.Azure.Blob, path)
if err != nil {
return fmt.Errorf("unable to upload file %s to Azure: %s", path, err)
}
}
return nil
}
// PutFile uploads a file to Azure Blob Storage
func PutFile(containerClient *container.Client, blobName, path string) error {
blobClient := containerClient.NewBlockBlobClient(blobName)
file, err := os.Open(path)
if err != nil {
return fmt.Errorf("unable to open file %s: %s", path, err)
}
defer func() {
if err := file.Close(); err != nil {
log.Warnf("unable to close file %s: %s", path, err)
}
}()
_, err = blobClient.UploadFile(context.TODO(), file, nil)
return err
}
// PutDirectory uploads all files in a directory to Azure Blob Storage
func PutDirectory(containerClient *container.Client, blobName, path string) error {
for putTask := range generatePutTasks(blobName, path) {
err := PutFile(containerClient, putTask.blobName, putTask.path)
if err != nil {
return err
}
}
return nil
}
// Delete deletes an artifact from a Azure Blob Storage
func (azblobDriver *ArtifactDriver) Delete(artifact *wfv1.Artifact) error {
log.WithFields(log.Fields{"endpoint": artifact.Azure.Endpoint, "container": artifact.Azure.Container,
"blob": artifact.Azure.Blob}).Info("Deleting object from Azure Blob Storage")
containerClient, err := azblobDriver.newAzureContainerClient()
if err != nil {
return fmt.Errorf("unable to create Azure Blob Container client: %s", err)
}
isDir, err := azblobDriver.IsDirectory(artifact)
if err != nil {
return fmt.Errorf("unable to test if %s is a directory: %s", artifact.Azure.Blob, err)
}
if !isDir {
return DeleteBlob(containerClient, artifact.Azure.Blob, true)
} else {
files, err := azblobDriver.ListObjects(artifact)
if err != nil {
return fmt.Errorf("unable to list files in %s: %s", artifact.Azure.Blob, err)
}
directoryFile := ""
for _, file := range files {
if file == artifact.Azure.Blob {
directoryFile = file
continue
}
if err := DeleteBlob(containerClient, file, true); err != nil {
return err
}
}
if directoryFile != "" {
return DeleteBlob(containerClient, directoryFile, true)
}
}
return nil
}
func DeleteBlob(containerClient *container.Client, blobName string, allowNonExistent bool) error {
blobClient := containerClient.NewBlobClient(blobName)
_, err := blobClient.Delete(context.TODO(), nil)
if err != nil {
if allowNonExistent && bloberror.HasCode(err, bloberror.BlobNotFound) {
log.Debugf("blob to delete '%s' does not exist: %s", blobName, err)
return nil
} else {
return fmt.Errorf("unable to delete Azure Blob %s: %s", blobName, err)
}
}
return err
}
// ListObjects lists the files in Azure Blob Storage
func (azblobDriver *ArtifactDriver) ListObjects(artifact *wfv1.Artifact) ([]string, error) {
var files []string
log.WithFields(log.Fields{"endpoint": artifact.Azure.Endpoint, "container": artifact.Azure.Container,
"blob": artifact.Azure.Blob}).Info("Listing blobs in Azure Blob Storage")
containerClient, err := azblobDriver.newAzureContainerClient()
if err != nil {
return nil, fmt.Errorf("unable to create Azure Blob Container client: %s", err)
}
listOpts := azblob.ListBlobsFlatOptions{
Prefix: &artifact.Azure.Blob,
Marker: nil,
}
ctx := context.TODO()
pager := containerClient.NewListBlobsFlatPager(&listOpts)
for pager.More() {
resp, err := pager.NextPage(ctx)
if err != nil {
return nil, fmt.Errorf("error listing blobs %s in Azure Blob Storage container: %s", artifact.Azure.Blob, err)
}
for _, v := range resp.Segment.BlobItems {
files = append(files, *v.Name)
}
}
return files, nil
}
// IsDirectory indicates whether or not the artifact represents a directory or a single file.
func (azblobDriver *ArtifactDriver) IsDirectory(artifact *wfv1.Artifact) (bool, error) {
blobPrefix := artifact.Azure.Blob
if blobPrefix == "" {
return true, nil
}
if !strings.HasSuffix(blobPrefix, "/") {
blobPrefix += "/"
}
containerClient, err := azblobDriver.newAzureContainerClient()
if err != nil {
return false, fmt.Errorf("unable to create Azure Blob Container client: %s", err)
}
listOpts := azblob.ListBlobsFlatOptions{
Prefix: &blobPrefix,
Marker: nil,
}
pager := containerClient.NewListBlobsFlatPager(&listOpts)
if pager.More() {
resp, err := pager.NextPage(context.TODO())
if err != nil {
return false, fmt.Errorf("error listing blobs %s in Azure Blob Storage container: %s", artifact.Azure.Blob, err)
}
if len(resp.Segment.BlobItems) == 1 {
return strings.HasPrefix(*resp.Segment.BlobItems[0].Name, blobPrefix), nil
} else {
return len(resp.Segment.BlobItems) > 0, nil
}
}
return false, nil
}
type uploadTask struct {
blobName string
path string
}
func generatePutTasks(blobNamePrefix, rootPath string) chan uploadTask {
rootPath = filepath.Clean(rootPath) + string(os.PathSeparator)
uploadTasks := make(chan uploadTask)
go func() {
_ = filepath.Walk(rootPath, func(localPath string, fi os.FileInfo, _ error) error {
relPath := strings.TrimPrefix(localPath, rootPath)
if fi.IsDir() {
return nil
}
if fi.Mode()&os.ModeSymlink != 0 {
return nil
}
t := uploadTask{
blobName: path.Join(blobNamePrefix, relPath),
path: localPath,
}
uploadTasks <- t
return nil
})
close(uploadTasks)
}()
return uploadTasks
}