Changes

Jump to: navigation, search

Virtual HSM

3,877 bytes added, 19:41, 5 April 2014
no edit summary
'''Virtual HSM (VHSM)''' is a software suite for storing and manipulating secret data outside the virtualized application environment. While [http://en.wikipedia.org/wiki/Hardware_security_module HSM] is a physical device connected to the computer, this software provides HSM functionality through the [http://www.emc.com/emc-plus/rsa-labs/standards-initiatives/pkcs-11-cryptographic-token-interface-standard.htm PKCS#11] API in virtual environment based on OpenVZ container technology.
== Structure ==
[[File:Vhsm_overview.png|thumb|right|400px|Fig. 1 — VHSM overview]]The architecture of the Virtual HSM is shown in the [[Media:Vhsm_overview.png|Fig. 1]]. The project consists of the following key components:
;VHSM virtual environment
:VHSM VE is the isolated environment that contains the VHSM server and secure storage. The server performs operations on secret data and storage keeps encrypted user data
== Details ==
=== VHSM virtual environment ===
[[File:VHSM_data_encryption.png|thumb|right|400px|Fig. 2 — Data encryption in the VHSM]]The VHSM VE contains the secure storage which is the database that stores the sensitive data in the encrypted form while other data (import date, purpose, etcrefer the table below) are stored unencrypted. The encryption key (master key) is generated from the user password using [http://en.wikipedia.org/wiki/PBKDF2 PBKDF2], and the salt that is used in the function is not stored unencrypted in database. Thereby the VHSM doesn't keep the encryption key and utilizing Utilizing PBKDF2 reduces the brute-force attack rate significantly if the database is compromised.The following table lists data that stored in the VHSM:{|class="standard" border="1" !Data !Type !Encrypted !Comments |- |Key ID |string |no |keys in the VHSM can be accessed by their string-ID |- |Key data |blob |yes |encrypted key data (see the [[Media:VHSM_data_encryption.png|Fig. 2]]) |- |Key attributes |blob |no |data structure that holds PKCS#11 key attributes |- |Import date |date-time |no |key creation date |- |User name |string |no |VHSM user login |- |User auth key |blob |no |binary data for the user password check |- |User type |integer |no |<tt>CKU_USER</tt> or <tt>CKU_SO</tt> from the PKCS#11 standard |- |User flags |integer |no |Flags determine access rights (read, write, delete) for the user |- |Password derivation params |integer |no |PBKDF2 params used for master key derivation (refer the Fig. 3) |- |User VEIDs |integer |no |List of VEIDs where the user can get access to the VHSM |} [[File:Vshm_user_registration.png|thumb|right|400px|Fig. 3 — User registration]][[File:Vhsm_user_auth.png|thumb|right|400px|Fig. 4 — User authentication]]
The VHSM server is responsible for user authentication, interaction with the secure storage, and performing cryptographic operations.
A client must be registered in the system to work with VHSM, so it reports its credentials to . VHSM admins (users with <tt>CKU_SO</tt> user type) can register new clients. These users can be both a real person or program. Anyway communication with the VHSM adminperformed through the API. When the client is registered in the system a 256-bit authentication key is generated and encrypted in [http://en.wikipedia.org/wiki/Galois/Counter_Mode GCM mode] using the master key. The GCM mode guarantees integrity and confidentiality of the user data and therefore makes it possible to authenticate the encryption key derived from the user password. The VHSM uses this feature for user authentication. Registration process is shown in the [[Media:Vshm_user_registration.png|Fig. 3]]. A user is authenticated ([[Media:Vhsm_user_auth.png|Fig. 4]]) using the login/password pair and the container ID (VEID) where authentication request is received from. When a user is registered it's bound to the set of containers where one can get access to the VHSM from. If the user attempts to access to the VHSM from a non-authorized container the request is refused.
=== Transport ===
The data exchanging protocol between clients and the VHSM is written in the [https://code.google.com/p/protobuf/ Protocol Buffers] language. On the one hand, it allows to easily extend the protocol, on the other it's more space efficient compared to XML. In general, a protocol message contains parameters of the API function being called and some service information as well.As mentioned above, interInter-container communication is based on Netlink, so the OS kernel contains the module that passes messages between virtual environments while VEs contain the transport API library which interacts with this module via Netlink sockets.The kernel module identifies containers by their VEIDs that are provided by OpenVZ. The VHSM environment ID is passed as a parameter to the module. Messages from other containers are routed to that VEID. The passed message contains serialized protobuf data and the header with the message type, container VEID and process PID(actually it's the unique socket ID generated by the kernel). Meaning of these parameters depends on the transfer direction. If the message comes from a client container then the module checks its VEID and forwards the message to the VHSM VE if the container is allowed to send requests to the VHSM. When the kernel module forwards the message it sets the VEID in the message header to the sender VEID and the PID to the sender process PID derived from the Netlink message header. So the VHSM can address the response to the client. If the message is transferred from the VHSM then the VEID and PID in the message header are set by the VHSM itself. It's possible because the VHSM sends responses to the client requests only and never initiates communication with a client.
=== Client virtual environment ===
[[File:Vhsm_pkcs11_mapping.png|thumb|right|400px|Fig. 5 — PKCS#11 slots and VHSM users]]The client part of the VHSM consists from the API-library and some auxiliary tools (such as .The VHSM API library partially implements [httpftp://wwwftp.opensslrsasecurity.orgcom/pub/pkcs/docspkcs-11/cryptov2-20/enginepkcs-11v2-20.pdf PKCS#11 v2.html OpenSSL engines20 standard])and provides some additional functions for the user management.The Here the list of VHSM API library provides PKCS#11-like specific features:* '''Supported object classes'''*: Currently only <tt>CKO_SECRET_KEY</tt> with key types <tt>CKK_GENERIC_SECRET, CKK_AES</tt> is supported* '''Supported mechanisms'''** encryption: <code>CKM_AES_CTR</code> (actually it's AES-GCM)** digest: <code>CKM_SHA_1</code>** signing: <code>CKM_SHA_1_HMAC</code>** key generation: <code>CKM_GENERIC_SECRET_KEY_GEN</code>* '''Unsupported functions for managing sessions and user keys and for digital '''** slot management: <code>C_InitToken, C_InitPin, C_SetPin, C_WaitForSlotEvent</code>** session management: <code>C_GetOperationState, C_SetOperationState </code>** object management: <code>C_CopyObject</code>** signing.: <code>C_SignRecoverInit, C_SignRecover, C_VerifyRecoverInit, C_VerifyRecover</code>** key management: <code>C_GenerateKeyPair, C_WrapKey, C_UnwrapKey, C_DeriveKey</code>Client applications may directly call library ** all dual functions or may use OpenSSL extensions. The * '''Additional VHSM API allows -specific functions'''** <code>VHSM_GetUserSlot</code> returns slotID for the specified user to import or generate some ** <code>VHSM_ImportSecretKey</code> imports secret data (keys). These data is encrypted key with the default template** <code>VHSM_GetObjectById</code> returns object handle without use of <code>C_FindObjects</code>*: Following functions can be called only by AES-GCM algorithm <tt>CKU_SO</tt> user:** <code>VHSM_CreateUser</code> creates a new VHSM user using the given template** <code>VHSM_ModifyUser</code> allows to set user master key flags and then stored in the database. Then VEIDs for the specified user** <code>VHSM_DeleteUser</code> removes user gets the and all associated data id by user name* '''User flags'''*: VHSM users have associated flags that determine which allows to use these data in functions can be called by the futureuser** <tt>VF_READ</tt> — read-only functions (like encryption, signing, etc)** <tt>VF_CREATE</tt> — user can create objects** <tt>VF_MODIFY</tt> — user can change objects attributes** <tt>VF_DELETE</tt> — user can destroy objects** <tt>VF_CREATE_EXTENDED</tt> — user can create <tt>CKU_SO</tt> users. Only <tt>root</tt> user (created during VHSM installation) can has this flag* '''PKCS#11 slot / token selection'''If *: In the VHSM slots and tokens are abstract because users are authenticated by login/password pair. In fact, <code>C_GetSlotList</code> called from VE returns the list of usernames that can be used from this VE. Opening session with one of these slots means that in this session user wants to perform a cryptographic operation then one tells key id for use username associated with this operation slot. [[Media:Vhsm_pkcs11_mapping.png|Fig. 5]] shows how it works.* '''Multithreading'''*:Each thread must call <code>C_Initialize</code> to the work with VHSM, as in PKCS#11, but if some thread logs into VHSM then other threads with open VHSM. The sessions do '''not''' automatically log into VHSM extracts the key from the storage, decrypts as it and performs computations in its isolated virtual environment while should be according to the user gets the result of the operation only.standard; OpenSSL can act as a layer between a client application and the VHSM API library– it's achieved by OpenSSL [http://www. To achieve that OpenSSL engines can be usedopenssl. Engines extend the functionality of the OpenSSL and allow to override implementation of some cryptographic algorithmsorg/docs/crypto/engine. For example, OpenSSL html engines make ] – and makes it possible to use a physical cryptographic device (or VHSM) without modifying the code of the client program. You may try pkcs#11 OpenSSL engines like [https://github.com/OpenSC/engine_pkcs11 engine_pkcs11], [http://sourceforge.net/projects/opencryptoki/files/PKCS%2311%20OpenSSL%20Engine/openssl-ibmpkcs11/ ibmpkcs11] with VHSM.
== Building ==
Install the following packages to build the project on your system. On CentOS use [http://fedoraproject.org/wiki/EPEL/FAQ#How_can_I_install_the_packages_from_the_EPEL_software_repository.3F EPEL repositories]. In addition, VHSM uses some [http://gcc.gnu.org/ gcc]-specific features, so gcc 4+ is required.
{| class="standard" border="1"
You may use binary packages or install manually:
* VHSM VE: <tt>vhsm, vhsm_admin</tt>* Client VE: <tt>libvhsmapi.soa, vhsm_user_adminvhsm_admin</tt>* Host: <tt>vhsm_transport.ko, vhsm_admin</tt>
== Usage ==
To run VHSM perform the following steps:
# insert Insert transport module: <code>insmod vhsm_transport.ko vhsm_veid=%[veid%]</code> where %<code>[veid% ]</code> is VEID of the VHSM container# create secure storage Start VHSM in the VHSM VEcontainer: <code>vhsm_admin i vhsm /path/to/storage</code>. You can init secure storage and create <tt>root</tt>-user on the first run# add Add VHSM userusers from host: <code>vhsm_admin c /path/to/storage user create <admin login > <admin password> [options...]</code># start VHSM in the VHSM container. You can specify the path to the secure storage in program arguments# run Run <code>vhsm_user_adminvhsm_admin help</code> for details.# Now you can use VHSM from client VEVEs

Navigation menu