Skip to content

Commit

Permalink
SigV4A auth selection update
Browse files Browse the repository at this point in the history
  • Loading branch information
SergeyRyabinin committed Dec 17, 2024
1 parent 0efa522 commit a72da65
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

import lombok.Data;

import java.util.List;
import java.util.Map;

@Data
Expand Down Expand Up @@ -43,4 +44,7 @@ public class Metadata {
private boolean hasPreSignedUrl;

private boolean awsQueryCompatible;

// Priority-ordered list of auth types present on the service model
private List<String> auth;
}
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ public class Operation {
private boolean virtualAddressAllowed;
private String virtualAddressMemberName;
private String authtype;
// Non-empty, priority-ordered list of string auth types.
// This trait should only be present if its value differs from the service-level trait
private List<String> auth; // aws.auth#sigv4 | aws.auth#sigv4a | smithy.api#httpBearerAuth | smithy.api#noAuth
private String signerName;
private String authorizer;
private boolean eventStream;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
import com.amazonaws.util.awsclientgenerator.generators.exceptions.SourceGenerationFailedException;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableMap;
import com.google.common.collect.ImmutableSet;
import com.google.common.collect.Sets;
import org.apache.velocity.Template;
import org.apache.velocity.VelocityContext;
Expand Down Expand Up @@ -208,6 +209,40 @@ protected void addRequestIdToResults(final ServiceModel serviceModel) {
});
}

private static Set<String> servicesMissingMultiAuthMRAPTrait = ImmutableSet.of(
"S3",
"S3-CRT",
"CloudFront KeyValueStore",
"SESv2",
"EventBridge");

private void CheckAndEnableSigV4A(final ServiceModel serviceModel, VelocityContext context) {
List<String> c2jAuthList = serviceModel.getMetadata().getAuth();
String serviceId = serviceModel.getMetadata().getServiceId();
if (c2jAuthList != null && c2jAuthList.contains("aws.auth#sigv4a") ||
servicesMissingMultiAuthMRAPTrait.contains(serviceId)) {
context.put("multiRegionAccessPointSupported", true);
}
// todo: remove these checks later
if (!context.containsKey("multiRegionAccessPointSupported")) {
boolean hasSigV4AOperation = serviceModel.getOperations().values().stream()
.anyMatch(op -> op.getAuth() != null && op.getAuth().contains("aws.auth#sigv4a"));

if (serviceModel.getEndpointRules().contains("\"sigv4a\"") || hasSigV4AOperation) {
throw new RuntimeException("Endpoint rules or operation reference sigv4a auth scheme but c2j model " + serviceId +
" does not list aws.auth#sigv4a as a supported auth!");
}
}

if (c2jAuthList != null) {
boolean hasSigV4AndBearer = c2jAuthList.contains("smithy.api#httpBearerAuth") &&
(c2jAuthList.contains("aws.auth#sigv4a") || c2jAuthList.contains("aws.auth#sigv4"));
if (!serviceModel.isUseSmithyClient() && hasSigV4AndBearer) {
throw new RuntimeException("SDK Clients cannot mix AWS and Bearer Credentials without enabling Smithy Identity!");
}
}
}

protected final VelocityContext createContext(final ServiceModel serviceModel) {
VelocityContext context = new VelocityContext();
context.put("nl", System.lineSeparator());
Expand All @@ -216,9 +251,8 @@ protected final VelocityContext createContext(final ServiceModel serviceModel) {
context.put("output.encoding", StandardCharsets.UTF_8.name());
context.put("nullChar", '\0');

if (serviceModel.getEndpointRules().contains("\"sigv4a\"")) {
context.put("multiRegionAccessPointSupported", true);
}
CheckAndEnableSigV4A(serviceModel, context);

return context;
}

Expand Down

0 comments on commit a72da65

Please sign in to comment.