![]() |
On-disk encryption prototype for OpenStack Swift
January 22, 2013
A few months ago, I described the design of on-disk per-user encryption of objects in Swift, so I’m excited to announce a first working prototype of this feature. It has very basic functionality at the moment, but most of its components are pluggable and can be enhanced or replaced with more advanced versions. We already have a backlog of improvements to work on, and hope to get even more ideas from community discussions. The prototype’s code—based on the 1.7.5 version of Swift—is published at our Github account. OpenStack Swift code modifications overviewWe’ve modified an ObjectController class of the object server application in two parts: disk read and write procedures. We also added several components. The changed classes are summarized in the following diagram: The code for the new components is organized as follows:
Most of the modifications were made to the swift/obj/server.py module, where we had to insert encrypt/decrypt calls into the object reading and writing functions. We also added methods that communicate with the key store using key_manager back-end drivers. Finally, we had to modify the way the server calculates and stores the object Etag.
Encrypting the OpenStack Swift object serverTo get the object server with encryption support up and running, you will need to make modifications to some configuration files. First is the /etc/swift/object-server.conf file. A sample configuration for an encryption-capable object server is included with the code. The most important parameters set in this file with regard to encryption are:
Key management in the OpenStack Swift proxy serverIn the original design, the only operation performed by the proxy server key management filter was retrieval of a key ID to pass with the object upon a write or update operation. However, in our prototype implementation we’ve made generation of the key string itself a part of the key-manager middleware. Obviously, this is a less-than-optimal solution from the security point of view, since in any production environment, generation of key strings must be performed on demand by the key server. For prototype implementation, only SQL is supported as key storage on the back-end. The SQL driver in the key-manager middleware ensures key ID retrieval and generation in case no active key is found in the database. Configuration parameters for the proxy server closely resemble the ones for the object server:
Future directions for on-disk encryption for OpenStack SwiftLots of work lies ahead to turn this prototype into a production-ready application, and we hope to get yet more insights from the community. Let me elaborate on some items from our backlog to give you an idea of where we are heading. Object file decoratorsFrom the mailing lists and design summit discussions we know there are many things to do with object files in Swift beyond encryption, such as compression and deduplication. These operations could be thought of as “filters” or “handlers” applied to the object data (actually, a chunk of data transferred from the client through the proxy server) one after another in a sequence. This sequence must be stored with the file and repeat when the client wants to read the file, but in the reversed order. Key server integrationThe most important part of the encryption feature is, naturally, key management, so integration with key management systems is our primary focus in future development. We’re looking forward to progress in Keystone’s key management feature (it’s covered by the access keys auth blueprint). However, it should be possible to utilize a key management system with open API support, such as KMIP. This also corresponds to the approach to encryption of the Cinder volumes proposed in this specification. The most important question now is—where does key management belong? We see the following three options:
Once this decision is made, we can decide which API needs to be extended, which will also define the management model of this encryption service for OpenStack.
7 comments
7 Responses
Continuing the Discussion
|



hi,
Could the key manager be a separate and independant OpenStack service as an option number 4 ?
thx
dave
February 21, 2013 06:05