Jump to: navigation, search

SSLEndpoints

Revision as of 23:19, 20 December 2011 by Harlowja (talk)
  • Created: Tue, 20 Dec 2011 13:45:07 -0800
  • Contributors: Gunther Hagleitner

SSL endpoints

<<TableOfContents()>>

Summary

In order to prevent malicious code or attackers to interfere with the operation of the OpenStack we propose to provide optional encryption and certificate verification via SSL on all endpoints (APIs, message queue & clients, DB).

See: https://bugs.launchpad.net/nova/+bug/790900

  • Note that this only sends in boolean true or false, while amqlib and carrot can send in a dictionary in python 2.6+

See: http://docs.python.org/library/ssl.html (ssl.wrap_socket)

See: http://code.google.com/p/py-amqplib/source/browse/amqplib/client_0_8/transport.py#189

Similar: http://wiki.openstack.org/nova-security-updates, https://blueprints.launchpad.net/nova/+spec/openstack-api-ssl

Design

The following enpoints need to have options to enable SSL encryption and verification:

  • EC2/OS API
  • Glance API
  • Message Queue (server)
  • Nova compute (db)
  • Nova compute (message queue, client)
  • Nova scheduler (message queue, client)
  • Nova network (message queue, client)

The following blueprints have already started building ssl support:

Message queue communication

Database

  • mysql server can be configured to accept only SSL connections for OpenStack user (schema change, needs cert, ca, key at startup)
  • mysql client needs to add certificate, key to connection calls - certificate/key needs to be added to configuration parameters

Glance

  • Code review ongoing (but only boolean true/false)

EC2/OS API

  • Done in diablo

Expected Code Changes

Diablo branch (may change in essex):


nova/flags.py
nova/rpc.py


Expected Documentation Changes

Dependencies

OpenSSH
Erlang >= R13B
Erlang SSL


Test/Demo Plan

Migration Plan

Default (enable flag missing/off) will remain to be no SSL. No migration necessary.

Unresolved Issues

Notes

Contacts

hagleitn@yahoo-inc.com

Link