-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Add Channel Credentials #7294
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
Merged
Merged
Add Channel Credentials #7294
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
c064d9b
api: Add ChannelCredentials
ejona86 6f06896
core: Add ChannelCredentials
ejona86 5d1d456
netty: Add ChannelCredentials
ejona86 a4b4544
okhttp: Add ChannelCredentials
ejona86 f0ef2c2
alts: Expose ChannelCredentials for the various negotiators
ejona86 2076c4e
Migrate users of ManagedChannelBuilder.{forTarget,forAddress} to Chan…
ejona86 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
158 changes: 158 additions & 0 deletions
158
alts/src/main/java/io/grpc/alts/AltsChannelCredentials.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,158 @@ | ||
/* | ||
* Copyright 2020 The gRPC Authors | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package io.grpc.alts; | ||
|
||
import com.google.common.collect.ImmutableList; | ||
import io.grpc.Channel; | ||
import io.grpc.ChannelCredentials; | ||
import io.grpc.ExperimentalApi; | ||
import io.grpc.Status; | ||
import io.grpc.alts.internal.AltsProtocolNegotiator.ClientAltsProtocolNegotiatorFactory; | ||
import io.grpc.internal.ObjectPool; | ||
import io.grpc.internal.SharedResourcePool; | ||
import io.grpc.netty.GrpcHttp2ConnectionHandler; | ||
import io.grpc.netty.InternalNettyChannelCredentials; | ||
import io.grpc.netty.InternalProtocolNegotiator; | ||
import io.grpc.netty.InternalProtocolNegotiator.ProtocolNegotiator; | ||
import io.netty.channel.ChannelHandler; | ||
import io.netty.channel.ChannelHandlerAdapter; | ||
import io.netty.channel.ChannelHandlerContext; | ||
import io.netty.util.AsciiString; | ||
import java.util.logging.Level; | ||
import java.util.logging.Logger; | ||
|
||
/** | ||
* Provides secure and authenticated commmunication between two cloud VMs using ALTS. | ||
*/ | ||
@ExperimentalApi("https://github.com/grpc/grpc-java/issues/4151") | ||
public final class AltsChannelCredentials { | ||
private static final Logger logger = Logger.getLogger(AltsChannelCredentials.class.getName()); | ||
|
||
private AltsChannelCredentials() {} | ||
|
||
public static ChannelCredentials create() { | ||
return newBuilder().build(); | ||
} | ||
|
||
public static Builder newBuilder() { | ||
return new Builder(); | ||
} | ||
|
||
public static final class Builder { | ||
private final ImmutableList.Builder<String> targetServiceAccountsBuilder = | ||
ImmutableList.builder(); | ||
private ObjectPool<Channel> handshakerChannelPool = | ||
SharedResourcePool.forResource(HandshakerServiceChannel.SHARED_HANDSHAKER_CHANNEL); | ||
private boolean enableUntrustedAlts; | ||
|
||
/** | ||
* Adds an expected target service accounts. One of the added service accounts should match peer | ||
* service account in the handshaker result. Otherwise, the handshake fails. | ||
*/ | ||
public Builder addTargetServiceAccount(String targetServiceAccount) { | ||
targetServiceAccountsBuilder.add(targetServiceAccount); | ||
return this; | ||
} | ||
|
||
/** | ||
* Enables untrusted ALTS for testing. If this function is called, we will not check whether | ||
* ALTS is running on Google Cloud Platform. | ||
*/ | ||
public Builder enableUntrustedAltsForTesting() { | ||
enableUntrustedAlts = true; | ||
return this; | ||
} | ||
|
||
/** Sets a new handshaker service address for testing. */ | ||
public Builder setHandshakerAddressForTesting(String handshakerAddress) { | ||
// Instead of using the default shared channel to the handshaker service, create a separate | ||
// resource to the test address. | ||
handshakerChannelPool = | ||
SharedResourcePool.forResource( | ||
HandshakerServiceChannel.getHandshakerChannelForTesting(handshakerAddress)); | ||
return this; | ||
} | ||
|
||
public ChannelCredentials build() { | ||
return InternalNettyChannelCredentials.create(buildProtocolNegotiatorFactory()); | ||
} | ||
|
||
InternalProtocolNegotiator.ClientFactory buildProtocolNegotiatorFactory() { | ||
if (!CheckGcpEnvironment.isOnGcp()) { | ||
if (enableUntrustedAlts) { | ||
logger.log( | ||
Level.WARNING, | ||
"Untrusted ALTS mode is enabled and we cannot guarantee the trustworthiness of the " | ||
+ "ALTS handshaker service"); | ||
} else { | ||
Status status = Status.INTERNAL.withDescription( | ||
"ALTS is only allowed to run on Google Cloud Platform"); | ||
return new FailingProtocolNegotiatorFactory(status); | ||
} | ||
} | ||
|
||
return new ClientAltsProtocolNegotiatorFactory( | ||
targetServiceAccountsBuilder.build(), handshakerChannelPool); | ||
} | ||
} | ||
|
||
private static final class FailingProtocolNegotiatorFactory | ||
implements InternalProtocolNegotiator.ClientFactory { | ||
private final Status status; | ||
|
||
public FailingProtocolNegotiatorFactory(Status status) { | ||
this.status = status; | ||
} | ||
|
||
@Override | ||
public ProtocolNegotiator newNegotiator() { | ||
return new FailingProtocolNegotiator(status); | ||
} | ||
|
||
@Override | ||
public int getDefaultPort() { | ||
jiangtaoli2016 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
return 443; | ||
} | ||
} | ||
|
||
private static final AsciiString SCHEME = AsciiString.of("https"); | ||
|
||
private static final class FailingProtocolNegotiator implements ProtocolNegotiator { | ||
private final Status status; | ||
|
||
public FailingProtocolNegotiator(Status status) { | ||
this.status = status; | ||
} | ||
|
||
@Override | ||
public AsciiString scheme() { | ||
return SCHEME; | ||
} | ||
|
||
@Override | ||
public ChannelHandler newHandler(GrpcHttp2ConnectionHandler grpcHandler) { | ||
return new ChannelHandlerAdapter() { | ||
@Override public void handlerAdded(ChannelHandlerContext ctx) { | ||
ctx.fireExceptionCaught(status.asRuntimeException()); | ||
} | ||
}; | ||
} | ||
|
||
@Override | ||
public void close() {} | ||
} | ||
} |
47 changes: 0 additions & 47 deletions
47
alts/src/main/java/io/grpc/alts/CallCredentialsInterceptor.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.