Skip to content

Commit 8aa2547

Browse files
authored
SECURITY.md: Update/modernize docs
There's still plenty more that could be done, but I want to keep this on the simpler/less-invasive side and it'd just delay these changes for no real benefit.
1 parent 3c89aa1 commit 8aa2547

File tree

1 file changed

+55
-86
lines changed

1 file changed

+55
-86
lines changed

SECURITY.md

+55-86
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
11
# Security Policy
22

3-
For information on gRPC Security Policy and reporting potentional security issues, please see [gRPC CVE Process](https://github.com/grpc/proposal/blob/master/P4-grpc-cve-process.md).
3+
For information on gRPC Security Policy and reporting potentional security
4+
issues, please see [gRPC CVE Process][].
5+
6+
[gRPC CVE Process]: https://github.com/grpc/proposal/blob/master/P4-grpc-cve-process.md
47

58
# Authentication
69

7-
gRPC supports a number of different mechanisms for asserting identity between an client and server. This document provides code samples demonstrating how to provide SSL/TLS encryption support and identity assertions in Java, as well as passing OAuth2 tokens to services that support it.
10+
gRPC supports a number of different mechanisms for asserting identity between an
11+
client and server. This document provides code samples demonstrating how to
12+
provide SSL/TLS encryption support and identity assertions in Java, as well as
13+
passing OAuth2 tokens to services that support it.
814

915
# Transport Security (TLS)
1016

@@ -19,25 +25,28 @@ BoringSSL](#tls-with-netty-tcnative-on-boringssl).
1925
## TLS on Android
2026

2127
On Android we recommend the use of the [Play Services Dynamic Security
22-
Provider](https://www.appfoundry.be/blog/2014/11/18/Google-Play-Services-Dynamic-Security-Provider/)
23-
to ensure your application has an up-to-date OpenSSL library with the necessary
24-
cipher-suites and a reliable ALPN implementation. This requires [updating the
25-
security provider at
26-
runtime](https://developer.android.com/training/articles/security-gms-provider.html).
28+
Provider][] to ensure your application has an up-to-date OpenSSL library with
29+
the necessary cipher-suites and a reliable ALPN implementation. This requires
30+
[updating the security provider at runtime][config-psdsp].
2731

2832
Although ALPN mostly works on newer Android releases (especially since 5.0),
2933
there are bugs and discovered security vulnerabilities that are only fixed by
3034
upgrading the security provider. Thus, we recommend using the Play Service
3135
Dynamic Security Provider for all Android versions.
3236

33-
*Note: The Dynamic Security Provider must be installed **before** creating a gRPC OkHttp channel. gRPC's OkHttpProtocolNegotiator statically initializes the security protocol(s) available to gRPC, which means that changes to the security provider after the first channel is created will not be picked up by gRPC.*
37+
*Note: The Dynamic Security Provider must be installed **before** creating a
38+
gRPC OkHttp channel. gRPC statically initializes the security protocol(s)
39+
available, which means that changes to the security provider after the first
40+
channel is created will not be noticed by gRPC.*
41+
42+
[Play Services Dynamic Security Provider]: https://www.appfoundry.be/blog/2014/11/18/Google-Play-Services-Dynamic-Security-Provider/
43+
[config-psdsp]: https://developer.android.com/training/articles/security-gms-provider.html
3444

3545
### Bundling Conscrypt
3646

3747
If depending on Play Services is not an option for your app, then you may bundle
3848
[Conscrypt](https://conscrypt.org) with your application. Binaries are available
39-
on [Maven
40-
Central](https://search.maven.org/#search%7Cga%7C1%7Cg%3Aorg.conscrypt%20a%3Aconscrypt-android).
49+
on [Maven Central][conscrypt-maven].
4150

4251
Like the Play Services Dynamic Security Provider, you must still "install"
4352
Conscrypt before use.
@@ -50,10 +59,12 @@ import java.security.Security;
5059
Security.insertProviderAt(Conscrypt.newProvider(), 1);
5160
```
5261

62+
[conscrypt-maven]: https://search.maven.org/#search%7Cga%7C1%7Cg%3Aorg.conscrypt%20a%3Aconscrypt-android
63+
5364
## TLS on non-Android
5465

55-
JDK versions prior to Java 9 do not support ALPN and are either missing AES GCM
56-
support or have 2% the performance of OpenSSL.
66+
OpenJDK versions prior to Java 8u252 do not support ALPN. Java 8 has 10% the
67+
performance of OpenSSL.
5768

5869
We recommend most users use grpc-netty-shaded, which includes netty-tcnative on
5970
BoringSSL. It includes pre-built libraries for 64 bit Windows, OS X, and 64 bit
@@ -243,73 +254,43 @@ import java.security.Security;
243254
Security.insertProviderAt(Conscrypt.newProvider(), 1);
244255
```
245256

246-
### TLS with Jetty ALPN
247-
248-
**Please do not use Jetty ALPN**
249-
250-
gRPC historically supported Jetty ALPN for ALPN on Java 8. While functional, it
251-
suffers from poor performance and breakages when the JRE is upgraded.
252-
When mis-matched to the JRE version, it can also produce unpredictable errors
253-
that are hard to diagnose. When using it, it became common practice that any
254-
time we saw a TLS failure that made no sense we would blame a Jetty ALPN/JRE
255-
version mismatch and we were overwhelmingly correct. The Jetty ALPN agent makes
256-
it much easier to use, but we still strongly discourage Jetty ALPN's use.
257-
258-
When using Jetty ALPN with Java 8, realize that performance will be 2-10% that
259-
of the other options due to a slow AES GCM implementation in Java.
260-
261-
#### Configuring Jetty ALPN in Web Containers
262-
263-
Some web containers, such as [Jetty](https://www.eclipse.org/jetty/documentation/current/jetty-classloading.html) restrict access to server classes for web applications. A gRPC client running within such a container must be properly configured to allow access to the ALPN classes. In Jetty, this is done by including a `WEB-INF/jetty-env.xml` file containing the following:
264-
265-
```xml
266-
<?xml version="1.0" encoding="ISO-8859-1"?>
267-
<!DOCTYPE Configure PUBLIC "-//Mort Bay Consulting//DTD Configure//EN" "http://www.eclipse.org/jetty/configure.dtd">
268-
<Configure class="org.eclipse.jetty.webapp.WebAppContext">
269-
<!-- Must be done in jetty-env.xml, since jetty-web.xml is loaded too late. -->
270-
<!-- Removing ALPN from the blacklisted server classes (using "-" to remove). -->
271-
<!-- Must prepend to the blacklist since order matters. -->
272-
<Call name="prependServerClass">
273-
<Arg>-org.eclipse.jetty.alpn.</Arg>
274-
</Call>
275-
</Configure>
276-
```
277257
## Enabling TLS on a server
278258

279259
To use TLS on the server, a certificate chain and private key need to be
280260
specified in PEM format. The standard TLS port is 443, but we use 8443 below to
281261
avoid needing extra permissions from the OS.
282262

283263
```java
284-
Server server = ServerBuilder.forPort(8443)
285-
// Enable TLS
286-
.useTransportSecurity(certChainFile, privateKeyFile)
264+
ServerCredentials creds = TlsServerCredentials.create(certChainFile, privateKeyFile);
265+
Server server = Grpc.newServerBuilderForPort(8443, creds)
287266
.addService(serviceImplementation)
288-
.build();
289-
server.start();
267+
.build()
268+
.start();
290269
```
291270

292271
If the issuing certificate authority is not known to the client then a properly
293-
configured SslContext or SSLSocketFactory should be provided to the
294-
NettyChannelBuilder or OkHttpChannelBuilder, respectively.
272+
configured trust manager should be provided to TlsChannelCredentials and used to
273+
construct the channel.
295274

296275
## Mutual TLS
297276

298277
[Mutual authentication][] (or "client-side authentication") configuration is similar to the server by providing truststores, a client certificate and private key to the client channel. The server must also be configured to request a certificate from clients, as well as truststores for which client certificates it should allow.
299278

300279
```java
301-
Server server = NettyServerBuilder.forPort(8443)
302-
.sslContext(GrpcSslContexts.forServer(certChainFile, privateKeyFile)
303-
.trustManager(clientCAsFile)
304-
.clientAuth(ClientAuth.REQUIRE)
305-
.build());
280+
ServerCredentials creds = TlsServerCredentials.newBuilder()
281+
.keyManager(certChainFile, privateKeyFile)
282+
.trustManager(clientCAsFile)
283+
.clientAuth(TlsServerCredentials.ClientAuth.REQUIRE)
284+
.build();
306285
```
307286

308-
Negotiated client certificates are available in the SSLSession, which is found in the `TRANSPORT_ATTR_SSL_SESSION` attribute of <a href="https://github.com/grpc/grpc-java/blob/master/core/src/main/java/io/grpc/Grpc.java">Grpc</a>. A server interceptor can provide details in the current Context.
287+
Negotiated client certificates are available in the SSLSession, which is found
288+
in the `Grpc.TRANSPORT_ATTR_SSL_SESSION` attribute of the call. A server
289+
interceptor can provide details in the current Context.
309290

310291
```java
311-
// The application uses this in its handlers
312-
public final static Context.Key<SSLSession> SSL_SESSION_CONTEXT = Context.key("SSLSession");
292+
// The application uses this in its handlers.
293+
public static final Context.Key<MySecurityInfo> SECURITY_INFO = Context.key("my.security.Info");
313294

314295
@Override
315296
public <ReqT, RespT> ServerCall.Listener<ReqT> interceptCall(ServerCall<ReqT, RespT> call,
@@ -318,8 +299,12 @@ public <ReqT, RespT> ServerCall.Listener<ReqT> interceptCall(ServerCall<ReqT, Re
318299
if (sslSession == null) {
319300
return next.startCall(call, headers);
320301
}
302+
// This interceptor can provide a centralized policy to process the client's
303+
// certificate. Avoid exposing low-level details (like SSLSession) and
304+
// instead provide a higher-level concept like "authenticated user."
305+
MySecurityInfo info = process(sslSession);
321306
return Contexts.interceptCall(
322-
Context.current().withValue(SSL_SESSION_CONTEXT, sslSession), call, headers, next);
307+
Context.current().withValue(SECURITY_INFO, info), call, headers, next);
323308
}
324309
```
325310

@@ -358,10 +343,6 @@ If on Fedora 30 or later and you see "libcrypt.so.1: cannot open shared object
358343
file: No such file or directory". Run `dnf -y install libxcrypt-compat` to
359344
install the necessary dependency.
360345

361-
If you are running inside of an embedded Tomcat runtime (e.g., Spring Boot),
362-
then some versions of `netty-tcnative-boringssl-static` will have conflicts and
363-
won't work. You must use gRPC 1.4.0 or later.
364-
365346
Most dependency versioning problems can be solved by using
366347
`io.grpc:grpc-netty-shaded` instead of `io.grpc:grpc-netty`, although this also
367348
limits your usage of the Netty-specific APIs. `io.grpc:grpc-netty-shaded`
@@ -418,19 +399,12 @@ grpc-netty version | netty-handler version | netty-tcnative-boringssl-static ver
418399
_(grpc-netty-shaded avoids issues with keeping these versions in sync.)_
419400

420401
### OkHttp
421-
If you are using gRPC on Android devices, you are most likely using `grpc-okhttp` transport.
422-
423-
Find the dependency tree (e.g., `mvn dependency:tree`), and look for versions of:
424-
- `io.grpc:grpc-okhttp`
425-
- `com.squareup.okhttp:okhttp`
426-
427-
If you don't have `grpc-okhttp`, you should add it as a dependency.
428-
429-
If you have both `io.grpc:grpc-netty` and `io.grpc:grpc-okhttp`, you may also have issues. Remove `grpc-netty` if you are on Android.
430-
431-
If you have `okhttp` version below 2.5.0, then it may not work with gRPC.
402+
If you are using gRPC on Android devices, you are most likely using
403+
`grpc-okhttp` transport.
432404

433-
It is OK to have both `okhttp` 2.x and 3.x since they have different group name and under different packages.
405+
Find the dependency tree (e.g., `mvn dependency:tree`), and look for
406+
`io.grpc:grpc-okhttp`. If you don't have `grpc-okhttp`, you should add it as a
407+
dependency.
434408

435409
# gRPC over plaintext
436410

@@ -441,17 +415,12 @@ An option is provided to use gRPC over plaintext without TLS. While this is conv
441415
The following code snippet shows how you can call the Google Cloud PubSub API using gRPC with a service account. The credentials are loaded from a key stored in a well-known location or by detecting that the application is running in an environment that can provide one automatically, e.g. Google Compute Engine. While this example is specific to Google and it's services, similar patterns can be followed for other service providers.
442416

443417
```java
444-
// Create a channel to the test service.
445-
ManagedChannel channel = ManagedChannelBuilder.forTarget("dns:///pubsub.googleapis.com")
418+
// Use the default credentials from the environment
419+
ChannelCredentials creds = GoogleDefaultChannelCredentials.create();
420+
// Create a channel to the service
421+
ManagedChannel channel = Grpc.newChannelBuilder("dns:///pubsub.googleapis.com", creds)
446422
.build();
447-
// Get the default credentials from the environment
448-
GoogleCredentials creds = GoogleCredentials.getApplicationDefault();
449-
// Down-scope the credential to just the scopes required by the service
450-
creds = creds.createScoped(Arrays.asList("https://www.googleapis.com/auth/pubsub"));
451-
// Create an instance of {@link io.grpc.CallCredentials}
452-
CallCredentials callCreds = MoreCallCredentials.from(creds);
453-
// Create a stub with credential
454-
PublisherGrpc.PublisherBlockingStub publisherStub =
455-
PublisherGrpc.newBlockingStub(channel).withCallCredentials(callCreds);
423+
// Create a stub and send an RPC
424+
PublisherGrpc.PublisherBlockingStub publisherStub = PublisherGrpc.newBlockingStub(channel);
456425
publisherStub.publish(someMessage);
457426
```

0 commit comments

Comments
 (0)