|
| 1 | +/* |
| 2 | +Copyright 2024 The Kubernetes Authors. |
| 3 | +
|
| 4 | +Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | +you may not use this file except in compliance with the License. |
| 6 | +You may obtain a copy of the License at |
| 7 | +
|
| 8 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | +
|
| 10 | +Unless required by applicable law or agreed to in writing, software |
| 11 | +distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | +See the License for the specific language governing permissions and |
| 14 | +limitations under the License. |
| 15 | +*/ |
| 16 | + |
| 17 | +package aws |
| 18 | + |
| 19 | +import ( |
| 20 | + "context" |
| 21 | + "errors" |
| 22 | + "fmt" |
| 23 | + "os" |
| 24 | + "regexp" |
| 25 | + "strings" |
| 26 | + "time" |
| 27 | + |
| 28 | + "github.com/aws/aws-sdk-go-v2/aws" |
| 29 | + awsconfig "github.com/aws/aws-sdk-go-v2/config" |
| 30 | + "github.com/aws/aws-sdk-go-v2/service/s3" |
| 31 | + "github.com/aws/aws-sdk-go-v2/service/s3/types" |
| 32 | + "github.com/aws/aws-sdk-go-v2/service/sts" |
| 33 | + "k8s.io/klog/v2" |
| 34 | +) |
| 35 | + |
| 36 | +// defaultRegion is the region to query the AWS APIs through, this can be any AWS region is required even if we are not |
| 37 | +// running on AWS. |
| 38 | +const defaultRegion = "us-east-2" |
| 39 | + |
| 40 | +// Client contains S3 and STS clients that are used to perform bucket and object actions. |
| 41 | +type Client struct { |
| 42 | + s3Client *s3.Client |
| 43 | + stsClient *sts.Client |
| 44 | +} |
| 45 | + |
| 46 | +// NewAWSClient returns a new instance of awsClient configured to work in the default region (us-east-2). |
| 47 | +func NewClient(ctx context.Context) (*Client, error) { |
| 48 | + cfg, err := awsconfig.LoadDefaultConfig(ctx, |
| 49 | + awsconfig.WithRegion(defaultRegion)) |
| 50 | + if err != nil { |
| 51 | + return nil, fmt.Errorf("loading AWS config: %w", err) |
| 52 | + } |
| 53 | + |
| 54 | + return &Client{ |
| 55 | + s3Client: s3.NewFromConfig(cfg), |
| 56 | + stsClient: sts.NewFromConfig(cfg), |
| 57 | + }, nil |
| 58 | +} |
| 59 | + |
| 60 | +// BucketName constructs an unique bucket name using the AWS account ID in the default region (us-east-2). |
| 61 | +func (c Client) BucketName(ctx context.Context) (string, error) { |
| 62 | + // Construct the bucket name based on the ProwJob ID (if running in Prow) or AWS account ID (if running outside |
| 63 | + // Prow) and the current timestamp |
| 64 | + var identifier string |
| 65 | + if jobID := os.Getenv("PROW_JOB_ID"); len(jobID) >= 4 { |
| 66 | + identifier = jobID[:4] |
| 67 | + } else { |
| 68 | + callerIdentity, err := c.stsClient.GetCallerIdentity(ctx, &sts.GetCallerIdentityInput{}) |
| 69 | + if err != nil { |
| 70 | + return "", fmt.Errorf("building AWS STS presigned request: %w", err) |
| 71 | + } |
| 72 | + identifier = *callerIdentity.Account |
| 73 | + } |
| 74 | + timestamp := time.Now().Format("20060102150405") |
| 75 | + bucket := fmt.Sprintf("k8s-infra-kops-%s-%s", identifier, timestamp) |
| 76 | + |
| 77 | + bucket = strings.ToLower(bucket) |
| 78 | + // Only allow lowercase letters, numbers, and hyphens |
| 79 | + bucket = regexp.MustCompile("[^a-z0-9-]").ReplaceAllString(bucket, "") |
| 80 | + |
| 81 | + if len(bucket) > 63 { |
| 82 | + bucket = bucket[:63] // Max length is 63 |
| 83 | + } |
| 84 | + |
| 85 | + return bucket, nil |
| 86 | +} |
| 87 | + |
| 88 | +// EnsureS3Bucket creates a new S3 bucket with the given name and public read permissions. |
| 89 | +func (c Client) EnsureS3Bucket(ctx context.Context, bucketName string, publicRead bool) error { |
| 90 | + bucketName = strings.TrimPrefix(bucketName, "s3://") |
| 91 | + _, err := c.s3Client.CreateBucket(ctx, &s3.CreateBucketInput{ |
| 92 | + Bucket: aws.String(bucketName), |
| 93 | + CreateBucketConfiguration: &types.CreateBucketConfiguration{ |
| 94 | + LocationConstraint: defaultRegion, |
| 95 | + }, |
| 96 | + }) |
| 97 | + if err != nil { |
| 98 | + var exists *types.BucketAlreadyExists |
| 99 | + if errors.As(err, &exists) { |
| 100 | + klog.Infof("Bucket %s already exists\n", bucketName) |
| 101 | + } else { |
| 102 | + klog.Infof("Error creating bucket %s, err: %v\n", bucketName, err) |
| 103 | + } |
| 104 | + |
| 105 | + return fmt.Errorf("creating bucket %s: %w", bucketName, err) |
| 106 | + } |
| 107 | + |
| 108 | + // Wait for the bucket to be created |
| 109 | + err = s3.NewBucketExistsWaiter(c.s3Client).Wait( |
| 110 | + ctx, &s3.HeadBucketInput{ |
| 111 | + Bucket: aws.String(bucketName), |
| 112 | + }, |
| 113 | + time.Minute) |
| 114 | + if err != nil { |
| 115 | + klog.Infof("Failed attempt to wait for bucket %s to exist, err: %v", bucketName, err) |
| 116 | + |
| 117 | + return fmt.Errorf("waiting for bucket %s to exist: %w", bucketName, err) |
| 118 | + } |
| 119 | + |
| 120 | + klog.Infof("Bucket %s created successfully", bucketName) |
| 121 | + |
| 122 | + if publicRead { |
| 123 | + err = c.setPublicReadPolicy(ctx, bucketName) |
| 124 | + if err != nil { |
| 125 | + klog.Errorf("Failed to set public read policy on bucket %s, err: %v", bucketName, err) |
| 126 | + |
| 127 | + return fmt.Errorf("setting public read policy for bucket %s: %w", bucketName, err) |
| 128 | + } |
| 129 | + |
| 130 | + klog.Infof("Public read policy set on bucket %s", bucketName) |
| 131 | + } |
| 132 | + |
| 133 | + return nil |
| 134 | +} |
| 135 | + |
| 136 | +// DeleteS3Bucket deletes a S3 bucket with the given name. |
| 137 | +func (c Client) DeleteS3Bucket(ctx context.Context, bucketName string) error { |
| 138 | + bucketName = strings.TrimPrefix(bucketName, "s3://") |
| 139 | + _, err := c.s3Client.DeleteBucket(ctx, &s3.DeleteBucketInput{ |
| 140 | + Bucket: aws.String(bucketName), |
| 141 | + }) |
| 142 | + if err != nil { |
| 143 | + var noBucket *types.NoSuchBucket |
| 144 | + if errors.As(err, &noBucket) { |
| 145 | + klog.Infof("Bucket %s does not exits.", bucketName) |
| 146 | + |
| 147 | + return nil |
| 148 | + } else { |
| 149 | + klog.Infof("Couldn't delete bucket %s, err: %v", bucketName, err) |
| 150 | + |
| 151 | + return fmt.Errorf("deleting bucket %s: %w", bucketName, err) |
| 152 | + } |
| 153 | + } |
| 154 | + |
| 155 | + err = s3.NewBucketNotExistsWaiter(c.s3Client).Wait( |
| 156 | + ctx, &s3.HeadBucketInput{ |
| 157 | + Bucket: aws.String(bucketName), |
| 158 | + }, |
| 159 | + time.Minute) |
| 160 | + if err != nil { |
| 161 | + klog.Infof("Failed attempt to wait for bucket %s to be deleted, err: %v", bucketName, err) |
| 162 | + |
| 163 | + return fmt.Errorf("waiting for bucket %s to be deleted, err: %w", bucketName, err) |
| 164 | + } |
| 165 | + |
| 166 | + klog.Infof("Bucket %s deleted", bucketName) |
| 167 | + |
| 168 | + return nil |
| 169 | +} |
| 170 | + |
| 171 | +func (c Client) setPublicReadPolicy(ctx context.Context, bucketName string) error { |
| 172 | + policy := fmt.Sprintf(`{ |
| 173 | + "Version": "2012-10-17", |
| 174 | + "Statement": [ |
| 175 | + { |
| 176 | + "Sid": "PublicReadGetObject", |
| 177 | + "Effect": "Allow", |
| 178 | + "Principal": "*", |
| 179 | + "Action": "s3:GetObject", |
| 180 | + "Resource": "arn:aws:s3:::%s/*" |
| 181 | + } |
| 182 | + ] |
| 183 | + }`, bucketName) |
| 184 | + |
| 185 | + _, err := c.s3Client.PutBucketPolicy(ctx, &s3.PutBucketPolicyInput{ |
| 186 | + Bucket: aws.String(bucketName), |
| 187 | + Policy: aws.String(policy), |
| 188 | + }) |
| 189 | + if err != nil { |
| 190 | + return fmt.Errorf("putting bucket policy for %s: %w", bucketName, err) |
| 191 | + } |
| 192 | + |
| 193 | + return nil |
| 194 | +} |
0 commit comments