Egress TLS Origination

The Control Egress Traffic task demonstrates how external, i.e., outside of theservice mesh, HTTP and HTTPS services can be accessed from applications inside the mesh. As described in that task,a ServiceEntry is used to configure Istioto access external services in a controlled way.This example shows how to configure Istio to perform TLS originationfor traffic to an external service. Istio will open HTTPS connections to the external service while the originaltraffic is HTTP.

Use case

Consider a legacy application that performs HTTP calls to external sites. Suppose the organization that operates theapplication receives a new requirement which states that all the external traffic must be encrypted. With Istio,this requirement can be achieved just by configuration, without changing any code in the application.The application can send unencrypted HTTP requests and Istio will then encrypt them for the application.

Another benefit of sending unencrypted HTTP requests from the source, and letting Istio perform the TLS upgrade,is that Istio can produce better telemetry and provide more routing control for requests that are not encrypted.

Before you begin

  • Setup Istio by following the instructions in the Installation guide.

  • Start the sleep sample which will be used as a test source for external calls.

If you have enabled automatic sidecar injection, deploy the sleep application:

Zip

  1. $ kubectl apply -f @samples/sleep/sleep.yaml@

Otherwise, you have to manually inject the sidecar before deploying the sleep application:

Zip

  1. $ kubectl apply -f <(istioctl kube-inject -f @samples/sleep/sleep.yaml@)

Note that any pod that you can exec and curl from will do for the procedures below.

  • Create a shell variable to hold the name of the source pod for sending requests to external services.If you used the sleep sample, run:
  1. $ export SOURCE_POD=$(kubectl get pod -l app=sleep -o jsonpath={.items..metadata.name})

Configuring access to an external service

First start by configuring access to an external service, edition.cnn.com,using the same technique shown in the Control Egress Traffic task.This time, however, use a single ServiceEntry to enable both HTTP and HTTPS access to the service.

  • Create a ServiceEntry and VirtualService to enable access to edition.cnn.com:
  1. $ kubectl apply -f - <<EOF
  2. apiVersion: networking.istio.io/v1alpha3
  3. kind: ServiceEntry
  4. metadata:
  5. name: edition-cnn-com
  6. spec:
  7. hosts:
  8. - edition.cnn.com
  9. ports:
  10. - number: 80
  11. name: http-port
  12. protocol: HTTP
  13. - number: 443
  14. name: https-port
  15. protocol: HTTPS
  16. resolution: DNS
  17. ---
  18. apiVersion: networking.istio.io/v1alpha3
  19. kind: VirtualService
  20. metadata:
  21. name: edition-cnn-com
  22. spec:
  23. hosts:
  24. - edition.cnn.com
  25. tls:
  26. - match:
  27. - port: 443
  28. sni_hosts:
  29. - edition.cnn.com
  30. route:
  31. - destination:
  32. host: edition.cnn.com
  33. port:
  34. number: 443
  35. weight: 100
  36. EOF
  • Make a request to the external HTTP service:
  1. $ kubectl exec -it $SOURCE_POD -c sleep -- curl -sL -o /dev/null -D - http://edition.cnn.com/politics
  2. HTTP/1.1 301 Moved Permanently
  3. ...
  4. location: https://edition.cnn.com/politics
  5. ...
  6. HTTP/1.1 200 OK
  7. Content-Type: text/html; charset=utf-8
  8. ...
  9. Content-Length: 151654
  10. ...

The output should be similar to the above (some details replaced by ellipsis).

Notice the -L flag of curl which instructs curl to follow redirects.In this case, the server returned a redirect response (301 Moved Permanently)for the HTTP request to http://edition.cnn.com/politics.The redirect response instructs the client to send an additional request, this time using HTTPS, to https://edition.cnn.com/politics.For the second request, the server returned the requested content and a 200 OK status code.

Although the curl command handled the redirection transparently, there are two issues here.The first issue is the redundant request, which doubles the latency of fetching the content of http://edition.cnn.com/politics.The second issue is that the path of the URL, politics in this case, is sent in clear text.If there is an attacker who sniffs the communication between your application and edition.cnn.com,the attacker would know which specific topics of edition.cnn.com the application fetched.For privacy reasons, you might want to prevent such disclosure.

Both of these issues can be resolved by configuring Istio to perform TLS origination.

TLS origination for egress traffic

  • Redefine your ServiceEntry and VirtualService from the previous section to rewrite the HTTP request portand add a DestinationRule to perform TLS origination.
  1. $ kubectl apply -f - <<EOF
  2. apiVersion: networking.istio.io/v1alpha3
  3. kind: ServiceEntry
  4. metadata:
  5. name: edition-cnn-com
  6. spec:
  7. hosts:
  8. - edition.cnn.com
  9. ports:
  10. - number: 80
  11. name: http-port
  12. protocol: HTTP
  13. - number: 443
  14. name: https-port-for-tls-origination
  15. protocol: HTTPS
  16. resolution: DNS
  17. ---
  18. apiVersion: networking.istio.io/v1alpha3
  19. kind: VirtualService
  20. metadata:
  21. name: edition-cnn-com
  22. spec:
  23. hosts:
  24. - edition.cnn.com
  25. http:
  26. - match:
  27. - port: 80
  28. route:
  29. - destination:
  30. host: edition.cnn.com
  31. port:
  32. number: 443
  33. ---
  34. apiVersion: networking.istio.io/v1alpha3
  35. kind: DestinationRule
  36. metadata:
  37. name: edition-cnn-com
  38. spec:
  39. host: edition.cnn.com
  40. trafficPolicy:
  41. loadBalancer:
  42. simple: ROUND_ROBIN
  43. portLevelSettings:
  44. - port:
  45. number: 443
  46. tls:
  47. mode: SIMPLE # initiates HTTPS when accessing edition.cnn.com
  48. EOF

As you can see, the VirtualService redirects HTTP requests on port 80 to port 443 where the correspondingDestinationRule then performs the TLS origination.Notice that unlike the ServiceEntry in the previous section, this time the protocol on port 443 is HTTP, instead of HTTPS.This is because clients will only send HTTP requests and Istio will upgrade the connection to HTTPS.

  1. $ kubectl exec -it $SOURCE_POD -c sleep -- curl -sL -o /dev/null -D - http://edition.cnn.com/politics
  2. HTTP/1.1 200 OK
  3. Content-Type: text/html; charset=utf-8
  4. ...
  5. Content-Length: 151654
  6. ...

This time you receive 200 OK as the first and the only response. Istio performed TLS origination for curl sothe original HTTP request was forwarded to edition.cnn.com as HTTPS. The server returned the content directly,without the need for redirection. You eliminated the double round trip between the client and the server, and therequest left the mesh encrypted, without disclosing the fact that your application fetched the politics sectionof edition.cnn.com.

Note that you used the same command as in the previous section. For applications that access external servicesprogrammatically, the code does not need to be changed. You get the benefits of TLS origination by configuring Istio,without changing a line of code.

Additional security considerations

Because the traffic between the application pod and the sidecar proxy on the local host is still unencrypted,an attacker that is able to penetrate the node of your application would still be able to see the unencryptedcommunication on the local network of the node. In some environments a strict security requirementmight state that all the traffic must be encrypted, even on the local network of the nodes.With such a strict requirement, applications should use HTTPS (TLS) only. The TLS origination described in thisexample would not be sufficient.

Also note that even with HTTPS originated by the application, an attacker could know that requests to edition.cnn.comare being sent by inspecting Server Name Indication (SNI).The SNI field is sent unencrypted during the TLS handshake. Using HTTPS prevents the attackers from knowing specifictopics and articles but does not prevent an attackers from learning that edition.cnn.com is accessed.

Cleanup

  • Remove the Istio configuration items you created:
  1. $ kubectl delete serviceentry edition-cnn-com
  2. $ kubectl delete virtualservice edition-cnn-com
  3. $ kubectl delete destinationrule edition-cnn-com
  • Shutdown the sleep service:

Zip

  1. $ kubectl delete -f @samples/sleep/sleep.yaml@

相关内容

Secure Control of Egress Traffic in Istio, part 3

Comparison of alternative solutions to control egress traffic including performance considerations.

Secure Control of Egress Traffic in Istio, part 2

Use Istio Egress Traffic Control to prevent attacks involving egress traffic.

Secure Control of Egress Traffic in Istio, part 1

Attacks involving egress traffic and requirements for egress traffic control.

Egress Gateway Performance Investigation

Verifies the performance impact of adding an egress gateway.

Consuming External MongoDB Services

Describes a simple scenario based on Istio's Bookinfo example.

Monitoring and Access Policies for HTTP Egress Traffic

Describes how to configure Istio for monitoring and access policies of HTTP egress traffic.