1 / 26

Securing OpenStack with Intel Trusted Computing

Securing OpenStack with Intel Trusted Computing. OpenStack Summit Atlanta 2014 12 May 2014. Christian Huebner Cloud Architect chuebner@mirantis.com. Overview. Using established server protection to protect cloud infrastructure with existing tools. Section 1. The 10000 Foot View.

taini
Download Presentation

Securing OpenStack with Intel Trusted Computing

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Securing OpenStack with Intel Trusted Computing OpenStack Summit Atlanta 2014 12 May 2014 Christian Huebner Cloud Architect chuebner@mirantis.com

  2. Overview Using established server protection to protect cloud infrastructure with existing tools

  3. Section 1 The 10000 Foot View

  4. The Challenge • Cloud infrastructure is vulnerable • Compromised cloud infrastructure not detectable from Guest OS • Protect the infrastructure

  5. Established Server Protection • Intel Trusted Computing (TXT) • measures system components during boot • BIOS/UEFI • Boot loader • OS startup • stores metrics in hardware device (TPM) • provides verificationwith a remote server

  6. How Does This Apply To The Cloud? • Cloud infrastructure consists of traditional bare-metal servers • Servers can be secured with Intel TXT • We need a mechanism to make the cloud TXT aware • This mechanism exists today

  7. Section 2 Technology

  8. Intel Trusted Execution Technology (TXT) • Prerequisites • Intel TXT capable CPU/chipset (most Xeon, i5/i7) • TPM hardware module • TPM capable BIOS/UEFI • Trusted boot module (tboot) • Optional: Trusted Grub

  9. How does Intel TXT work? • Prerequisites • Boot sequence (example: tboot / Linux) • BIOS, attested by hardware, loads (trusted) bootloader • Bootloader loads tboot, which wraps around kernel • Tboot loads kernel, initrd • On legacy platforms SINIT module may be required • SINIT functionality is part of BIOS on modern platforms

  10. Intel TXT Metrics • Boot sequence (example: tboot / Linux) • Platform Control Registers (PCR) • Contain metrics of all stages of trusted boot • /sys/devices/pnp0/00:0a/pcrs provides PCR values of running system • PCR values used for local verification and remote attestation

  11. What is Attestation? • “Good” TXT boot metrics transferred to attestation server after system build or change to boot environment • Attestation server retrieves actual state from clients • TXT aware software requests trust states of available servers from attestation server • Attestation server informs software of trusted or unknown state of attested servers

  12. OpenStack Compute Resources • How does Nova allocate resources? • Nova schedulers • FilterScheduler with TrustedFilter plugin • TrustedFilter uses TXT attestation • Nova flavors determine needed trust level (Trust_lvl) • Instances with Trust_lvl=trusted only scheduled on trusted nodes

  13. Attestation in OpenStack

  14. Attestation in OpenStack • Attestation server has known good state for all clients • Attestation server polls actual state from all clients (1) • Attestation server compares states and builds pool of trusted nodes • TrustedFilter has cache of trusted nodes that gets updated periodically from attestation server • TrustedFilterselects node from trusted pool for launch

  15. TrustedFilter Under The Microscope

  16. TrustedFilter under the microscope class TrustedFilter(filters.BaseHostFilter): Base class of the filter, instantiates ComputeAttestation. host_passes method returns true or false for a specific host. class ComputeAttestation(object): Instantiates ComputeAttestationCache. is_trusted method returns true or false for host. class ComputeAttestationCache(object): Local cache of attestation results. Invalidated on timeout. If cache not valid, _update_cache is executed. Cache is updated with AttestationService: class AttestationService(object): Pieces together request URL for attestation and requests data from Attestation Server via HTTPS

  17. Section 3 Practical Application

  18. Practical application: Attestation Server • Attestation Server • Can run on standalone server, VM, Controller • Location depends on security requirements • Needs: oat-appraiser package • Firewall: Port 8443 traffic to all clients and OpenStack controllers • Major dependencies: Apache2, Tomcat • On RHEL/CentOS: EPEL repository required

  19. Practical application: Trusted Host • TPM installation: • Packages trousers, tpm-tools • TPM and Intel TXT must be enabled in BIOS • tpm_takeownership -z to set credentials • tboot installation: • Use /boot/tboot.gz as wrapper, load kernel and initrd as modules for tboot.gz • Modify grub to load tbootand load kernel and initrd from tboot as modules • If BIOS does not include SINIT functionality, download and install SINIT from Intel

  20. Practical application: Trusted Host cont’d • OAT installation • OAT_client.shand provisioner.sh scripts • Transfer keys from attestation server to clients • Add necessary entries to the TPM (Certificate, OEM, OS, PCR values) • Transfer known good state to attestation server

  21. Practical application: Controller(s) • Specify FilterScheduler and TrustedFilter • /etc/nova/nova.conf … [DEFAULT] compute_scheduler_driver=nova.scheduler.filter_scheduler.FilterScheduler scheduler_available_filters=nova.scheduler.filters.all_filters scheduler_default_filters=AvailabilityZoneFilter,RamFilter,ComputeFilter,TrustedFilter …

  22. Practical application: Controller(s) cont’d • Configure TrustedFilter • /etc/nova/nova.conf … [trusted_computing] server=<server IP> port=8443server_ca_file=/etc/nova/<certificate from attestation server.crt>api_url=/AttestationService/resourcesauth_blob=<server authentication> …

  23. How to use OpenStack with TXT • Operation: • Modify flavors to require trust: $ nova flavor-key myflavor set trust:trusted_host trusted • Build instances with trusted flavors • Trusted instances will only be scheduled on trusted nodes

  24. Summary • Intel TXT protects infrastructure • Attestation allows centralized verification • Nova uses attestation to get trusted pool • Nova flavors set up to define trust level • Nova only schedules trusted workload on hosts from trusted pool

  25. Questions? Recommended Reading: TXT: https://github.com/OpenAttestation/OpenAttestation/wiki/Fedora-oat-packages-installation tboot: https://fedoraproject.org/wiki/Tboot openstack:http://docs.openstack.org/grizzly/openstack-compute/admin/content/trusted-compute-pools.html

  26. Thank you. • Christian Huebner | Cloud Architectchuebner@mirantis.com

More Related