_images/logo.png

A Platform for Secure Analytics and Machine Learning

Introduction to MC2

Born out of research in the UC Berkeley RISE Lab, MC2 is a platform for running secure analytics and machine learning on encrypted data. With MC2, organizations can safely upload their confidential data to the cloud in encrypted form and securely compute analytics and machine learning without exposing the unencrypted data to the cloud provider. MC2 also enables secure collaboration among multiple organizations, where the data owners can use the platform to jointly analyze their collective data without revealing their individual data to each other.

MC2’s stack supports a single client interface, as well as the following compute services:

  • Opaque SQL: Encrypted data analytics on Spark SQL using hardware enclaves

  • Secure XGBoost: Collaborative XGBoost training and inference on encrypted data using hardware enclaves

  • Federated XGBoost: Collaborative XGBoost in the federated setting

_images/mc2_stack.jpg

Overview of the MC2 stack

What are secure enclaves?

In order to provide strong privacy guarantees for user data, MC2 leverages secure enclaves, which are a recent advance in computer processor technology that enables the creation of a secure region of memory on an otherwise untrusted machine. Any data or software placed within the enclave is encrypted and isolated from the rest of the system. No other process on the same processor – not even privileged software such as the OS or the hypervisor – can access the encrypted enclave memory.

Since the operating system is untrusted, enclaves provide a feature called remote attestation, which enables clients to cryptographically verify that an enclave in the cloud is running a specific version of the code. This allows remote clients to have confidence that the expected code will be executed on their data instead of a malicious piece of code.

Examples of secure enclave technology include Intel SGX, ARM TrustZone, and AMD Memory Encryption. All major cloud providers support VMs with enclaves (see Microsoft Azure Confidential Computing, GCP Confidential Computing, and AWS Nitro enclaves).

MC2 platform’s workflow

The MC2 platform builds upon the Open Enclave SDK, an open source SDK that provides a single unified abstraction across different enclave technologies. The use of Open Enclave enables our library to be compatible with many different enclave backends, including Intel SGX.

The diagrams below show a sample workflow of a user using MC2 for secure data processing in a cloud. Green indicates a trusted component, while read indicates an untrusted component that could be compromised by an adversary.

  1. Before any query can be exeucuted, the user must execute remote attestation to load MC2 compute service into enclaves and transfers their private keys to our service. This can be done by initializing with the MC2 client.

    _images/mc2_workflow1.jpg
  2. As part of the compute step, the user first uses our MC2 client software to encrypt and upload their data to untrusted cloud storage. Next, the user issues compute tasks to an untrusted orchestrator. The orchestrator will forward the requests to the enclave compute service, which will read the relevant encrypted data from the untrusted storage, decrypt it inside the enclave environment using the user’s private key, and run the user-specified compute tasks.

    _images/mc2_workflow2.jpg
  3. Finally, the result returned to the user in encrypted form, which can be decrypted locally by the user.

    _images/mc2_workflow3.jpg

Getting Involved

In addition to building out the MC2 platform, we’re continuing to grow the MC2 community. Here are some ways to get involved in the MC2 community: