Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[v17] Fix AWS ListDeployedDatabaseServices when there's no ECS Cluster #50904

Merged
merged 1 commit into from
Jan 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 27 additions & 6 deletions lib/cloud/aws/errors.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,25 +24,42 @@ import (
"strings"

awshttp "github.com/aws/aws-sdk-go-v2/aws/transport/http"
ecstypes "github.com/aws/aws-sdk-go-v2/service/ecs/types"
iamtypes "github.com/aws/aws-sdk-go-v2/service/iam/types"
"github.com/aws/aws-sdk-go/aws/awserr"
"github.com/aws/aws-sdk-go/service/iam"
"github.com/aws/aws-sdk-go/service/redshiftserverless"
"github.com/gravitational/trace"
)

// ConvertRequestFailureError converts `error` into AWS RequestFailure errors
// to trace errors. If the provided error is not an `RequestFailure` it returns
// the error without modifying it.
// ConvertRequestFailureError converts `err` into AWS errors to trace errors.
// If the provided error is not a [awserr.RequestFailure] it delegates
// error conversion to [ConvertRequestFailureErrorV2] for SDK v2 compatibility.
// Prefer using [ConvertRequestFailureErrorV2] directly for AWS SDK v2 client
// errors.
func ConvertRequestFailureError(err error) error {
var requestErr awserr.RequestFailure
if !errors.As(err, &requestErr) {
return err
if errors.As(err, &requestErr) {
return convertRequestFailureErrorFromStatusCode(requestErr.StatusCode(), requestErr)
}
return ConvertRequestFailureErrorV2(err)
}

return convertRequestFailureErrorFromStatusCode(requestErr.StatusCode(), requestErr)
// ConvertRequestFailureErrorV2 converts AWS SDK v2 errors to trace errors.
// If the provided error is not a [awshttp.ResponseError] it returns the error
// without modifying it.
func ConvertRequestFailureErrorV2(err error) error {
var re *awshttp.ResponseError
if errors.As(err, &re) {
return convertRequestFailureErrorFromStatusCode(re.HTTPStatusCode(), re.Err)
}
return err
}

var (
ecsClusterNotFoundException *ecstypes.ClusterNotFoundException
)

func convertRequestFailureErrorFromStatusCode(statusCode int, requestErr error) error {
switch statusCode {
case http.StatusForbidden:
Expand All @@ -57,6 +74,10 @@ func convertRequestFailureErrorFromStatusCode(statusCode int, requestErr error)
if strings.Contains(requestErr.Error(), redshiftserverless.ErrCodeAccessDeniedException) {
return trace.AccessDenied(requestErr.Error())
}

if strings.Contains(requestErr.Error(), ecsClusterNotFoundException.ErrorCode()) {
return trace.NotFound(requestErr.Error())
}
}

return requestErr // Return unmodified.
Expand Down
24 changes: 24 additions & 0 deletions lib/cloud/aws/errors_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,30 @@ func TestConvertRequestFailureError(t *testing.T) {
inputError: errors.New("not-aws-error"),
wantUnmodified: true,
},
{
name: "v2 sdk error",
inputError: &awshttp.ResponseError{
ResponseError: &smithyhttp.ResponseError{
Response: &smithyhttp.Response{Response: &http.Response{
StatusCode: http.StatusNotFound,
}},
Err: trace.Errorf(""),
},
},
wantIsError: trace.IsNotFound,
},
{
name: "v2 sdk error for ecs ClusterNotFoundException",
inputError: &awshttp.ResponseError{
ResponseError: &smithyhttp.ResponseError{
Response: &smithyhttp.Response{Response: &http.Response{
StatusCode: http.StatusBadRequest,
}},
Err: trace.Errorf("ClusterNotFoundException"),
},
},
wantIsError: trace.IsNotFound,
},
}

for _, test := range tests {
Expand Down
6 changes: 6 additions & 0 deletions lib/integrations/awsoidc/listdeployeddatabaseservice.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ import (
ecstypes "github.com/aws/aws-sdk-go-v2/service/ecs/types"
"github.com/gravitational/trace"

awslib "github.com/gravitational/teleport/lib/cloud/aws"
"github.com/gravitational/teleport/lib/integrations/awsoidc/tags"
)

Expand Down Expand Up @@ -139,6 +140,11 @@ func ListDeployedDatabaseServices(ctx context.Context, clt ListDeployedDatabaseS

listServicesOutput, err := clt.ListServices(ctx, listServicesInput)
if err != nil {
convertedError := awslib.ConvertRequestFailureErrorV2(err)
if trace.IsNotFound(convertedError) {
return &ListDeployedDatabaseServicesResponse{}, nil
}

return nil, trace.Wrap(err)
}

Expand Down
25 changes: 22 additions & 3 deletions lib/integrations/awsoidc/listdeployeddatabaseservice_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -110,11 +110,11 @@ type mockListECSClient struct {
}

func (m *mockListECSClient) ListServices(ctx context.Context, params *ecs.ListServicesInput, optFns ...func(*ecs.Options)) (*ecs.ListServicesOutput, error) {
ret := &ecs.ListServicesOutput{}
if aws.ToString(params.Cluster) != m.clusterName {
return ret, nil
if aws.ToString(params.Cluster) != m.clusterName || len(m.services) == 0 {
return nil, trace.NotFound("ECS Cluster not found")
}

ret := &ecs.ListServicesOutput{}
requestedPage := 1

totalEndpoints := len(m.services)
Expand Down Expand Up @@ -348,6 +348,25 @@ func TestListDeployedDatabaseServices(t *testing.T) {
},
errCheck: require.NoError,
},
{
name: "returns empty list when the ECS Cluster does not exist",
req: ListDeployedDatabaseServicesRequest{
Integration: "my-integration",
TeleportClusterName: "my-cluster",
Region: "us-east-1",
},
mockClient: func() *mockListECSClient {
ret := &mockListECSClient{
pageSize: 10,
}
return ret
},
respCheck: func(t *testing.T, resp *ListDeployedDatabaseServicesResponse) {
require.Empty(t, resp.DeployedDatabaseServices, "expected 0 services")
require.Empty(t, resp.NextToken, "expected an empty NextToken")
},
errCheck: require.NoError,
},
} {
t.Run(tt.name, func(t *testing.T) {
resp, err := ListDeployedDatabaseServices(ctx, tt.mockClient(), tt.req)
Expand Down
Loading