mirror of
https://github.com/zama-ai/concrete.git
synced 2026-02-09 03:55:04 -05:00
feat(compiler): Output client parameters when compile to a library
close #198
This commit is contained in:
233
compiler/lib/ClientLib/KeySetCache.cpp
Normal file
233
compiler/lib/ClientLib/KeySetCache.cpp
Normal file
@@ -0,0 +1,233 @@
|
||||
// Part of the Concrete Compiler Project, under the BSD3 License with Zama
|
||||
// Exceptions. See
|
||||
// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license
|
||||
// information.
|
||||
|
||||
#include "concretelang/ClientLib/KeySetCache.h"
|
||||
#include "concretelang/Support/Error.h"
|
||||
#include "llvm/ADT/ScopeExit.h"
|
||||
#include "llvm/Support/FileSystem.h"
|
||||
#include "llvm/Support/Path.h"
|
||||
|
||||
#include <fstream>
|
||||
#include <functional>
|
||||
#include <sstream>
|
||||
#include <string>
|
||||
|
||||
extern "C" {
|
||||
#include "concrete-ffi.h"
|
||||
}
|
||||
|
||||
namespace mlir {
|
||||
namespace concretelang {
|
||||
|
||||
static std::string readFile(llvm::SmallString<0> &path) {
|
||||
std::ifstream in((std::string)path, std::ofstream::binary);
|
||||
std::stringstream sbuffer;
|
||||
sbuffer << in.rdbuf();
|
||||
return sbuffer.str();
|
||||
}
|
||||
|
||||
static void writeFile(llvm::SmallString<0> &path, Buffer content) {
|
||||
std::ofstream out((std::string)path, std::ofstream::binary);
|
||||
out.write((const char *)content.pointer, content.length);
|
||||
out.close();
|
||||
}
|
||||
|
||||
LweSecretKey_u64 *loadSecretKey(llvm::SmallString<0> &path) {
|
||||
std::string content = readFile(path);
|
||||
BufferView buffer = {(const uint8_t *)content.c_str(), content.length()};
|
||||
return deserialize_lwe_secret_key_u64(buffer);
|
||||
}
|
||||
|
||||
LweKeyswitchKey_u64 *loadKeyswitchKey(llvm::SmallString<0> &path) {
|
||||
std::string content = readFile(path);
|
||||
BufferView buffer = {(const uint8_t *)content.c_str(), content.length()};
|
||||
return deserialize_lwe_keyswitching_key_u64(buffer);
|
||||
}
|
||||
|
||||
LweBootstrapKey_u64 *loadBootstrapKey(llvm::SmallString<0> &path) {
|
||||
std::string content = readFile(path);
|
||||
BufferView buffer = {(const uint8_t *)content.c_str(), content.length()};
|
||||
return deserialize_lwe_bootstrap_key_u64(buffer);
|
||||
}
|
||||
|
||||
void saveSecretKey(llvm::SmallString<0> &path, LweSecretKey_u64 *key) {
|
||||
Buffer buffer = serialize_lwe_secret_key_u64(key);
|
||||
writeFile(path, buffer);
|
||||
free(buffer.pointer);
|
||||
}
|
||||
|
||||
void saveBootstrapKey(llvm::SmallString<0> &path, LweBootstrapKey_u64 *key) {
|
||||
Buffer buffer = serialize_lwe_bootstrap_key_u64(key);
|
||||
writeFile(path, buffer);
|
||||
free(buffer.pointer);
|
||||
}
|
||||
|
||||
void saveKeyswitchKey(llvm::SmallString<0> &path, LweKeyswitchKey_u64 *key) {
|
||||
Buffer buffer = serialize_lwe_keyswitching_key_u64(key);
|
||||
writeFile(path, buffer);
|
||||
free(buffer.pointer);
|
||||
}
|
||||
|
||||
llvm::Expected<std::unique_ptr<KeySet>>
|
||||
KeySetCache::tryLoadKeys(ClientParameters ¶ms, uint64_t seed_msb,
|
||||
uint64_t seed_lsb, llvm::SmallString<0> &folderPath) {
|
||||
// TODO: text dump of all parameter in /hash
|
||||
auto key_set = KeySet::uninitialized();
|
||||
|
||||
std::map<LweSecretKeyID, std::pair<LweSecretKeyParam, LweSecretKey_u64 *>>
|
||||
secretKeys;
|
||||
std::map<LweSecretKeyID, std::pair<BootstrapKeyParam, LweBootstrapKey_u64 *>>
|
||||
bootstrapKeys;
|
||||
std::map<LweSecretKeyID, std::pair<KeyswitchKeyParam, LweKeyswitchKey_u64 *>>
|
||||
keyswitchKeys;
|
||||
|
||||
// Load LWE secret keys
|
||||
for (auto secretKeyParam : params.secretKeys) {
|
||||
auto id = secretKeyParam.first;
|
||||
auto param = secretKeyParam.second;
|
||||
llvm::SmallString<0> path = folderPath;
|
||||
llvm::sys::path::append(path, "secretKey_" + id);
|
||||
LweSecretKey_u64 *sk = loadSecretKey(path);
|
||||
secretKeys[id] = {param, sk};
|
||||
}
|
||||
// Load bootstrap keys
|
||||
for (auto bootstrapKeyParam : params.bootstrapKeys) {
|
||||
auto id = bootstrapKeyParam.first;
|
||||
auto param = bootstrapKeyParam.second;
|
||||
llvm::SmallString<0> path = folderPath;
|
||||
llvm::sys::path::append(path, "pbsKey_" + id);
|
||||
LweBootstrapKey_u64 *bsk = loadBootstrapKey(path);
|
||||
bootstrapKeys[id] = {param, bsk};
|
||||
}
|
||||
// Load keyswitch keys
|
||||
for (auto keyswitchParam : params.keyswitchKeys) {
|
||||
auto id = keyswitchParam.first;
|
||||
auto param = keyswitchParam.second;
|
||||
llvm::SmallString<0> path = folderPath;
|
||||
llvm::sys::path::append(path, "ksKey_" + id);
|
||||
LweKeyswitchKey_u64 *ksk = loadKeyswitchKey(path);
|
||||
keyswitchKeys[id] = {param, ksk};
|
||||
}
|
||||
|
||||
key_set->setKeys(secretKeys, bootstrapKeys, keyswitchKeys);
|
||||
|
||||
auto err = key_set->setupEncryptionMaterial(params, seed_msb, seed_lsb);
|
||||
if (err) {
|
||||
return StreamStringError() << "Cannot setup encryption material: " << err;
|
||||
}
|
||||
|
||||
return std::move(key_set);
|
||||
}
|
||||
|
||||
llvm::Error saveKeys(KeySet &key_set, llvm::SmallString<0> &folderPath) {
|
||||
llvm::SmallString<0> folderIncompletePath = folderPath;
|
||||
|
||||
folderIncompletePath.append(".incomplete");
|
||||
|
||||
auto err = llvm::sys::fs::create_directories(folderIncompletePath);
|
||||
if (err) {
|
||||
return StreamStringError()
|
||||
<< "Cannot create directory \"" << folderIncompletePath
|
||||
<< "\": " << err.message();
|
||||
}
|
||||
|
||||
// Save LWE secret keys
|
||||
for (auto secretKeyParam : key_set.getSecretKeys()) {
|
||||
auto id = secretKeyParam.first;
|
||||
auto key = secretKeyParam.second.second;
|
||||
llvm::SmallString<0> path = folderIncompletePath;
|
||||
llvm::sys::path::append(path, "secretKey_" + id);
|
||||
saveSecretKey(path, key);
|
||||
}
|
||||
// Save bootstrap keys
|
||||
for (auto bootstrapKeyParam : key_set.getBootstrapKeys()) {
|
||||
auto id = bootstrapKeyParam.first;
|
||||
auto key = bootstrapKeyParam.second.second;
|
||||
llvm::SmallString<0> path = folderIncompletePath;
|
||||
llvm::sys::path::append(path, "pbsKey_" + id);
|
||||
saveBootstrapKey(path, key);
|
||||
}
|
||||
// Save keyswitch keys
|
||||
for (auto keyswitchParam : key_set.getKeyswitchKeys()) {
|
||||
auto id = keyswitchParam.first;
|
||||
auto key = keyswitchParam.second.second;
|
||||
llvm::SmallString<0> path = folderIncompletePath;
|
||||
llvm::sys::path::append(path, "ksKey_" + id);
|
||||
saveKeyswitchKey(path, key);
|
||||
}
|
||||
|
||||
err = llvm::sys::fs::rename(folderIncompletePath, folderPath);
|
||||
if (err) {
|
||||
llvm::sys::fs::remove_directories(folderIncompletePath);
|
||||
}
|
||||
if (!llvm::sys::fs::exists(folderPath)) {
|
||||
return StreamStringError()
|
||||
<< "Cannot save directory \"" << folderPath << "\"";
|
||||
}
|
||||
|
||||
return llvm::Error::success();
|
||||
}
|
||||
|
||||
llvm::Expected<std::unique_ptr<KeySet>>
|
||||
KeySetCache::tryLoadOrGenerateSave(ClientParameters ¶ms, uint64_t seed_msb,
|
||||
uint64_t seed_lsb) {
|
||||
|
||||
llvm::SmallString<0> folderPath =
|
||||
llvm::SmallString<0>(this->backingDirectoryPath);
|
||||
|
||||
llvm::sys::path::append(folderPath, std::to_string(params.hash()));
|
||||
|
||||
llvm::sys::path::append(folderPath, std::to_string(seed_msb) + "_" +
|
||||
std::to_string(seed_lsb));
|
||||
|
||||
if (llvm::sys::fs::exists(folderPath)) {
|
||||
return tryLoadKeys(params, seed_msb, seed_lsb, folderPath);
|
||||
}
|
||||
|
||||
// Creating a lock for concurrent generation
|
||||
llvm::SmallString<0> lockPath(folderPath);
|
||||
lockPath.append("lock");
|
||||
int FD_lock;
|
||||
llvm::sys::fs::create_directories(llvm::sys::path::parent_path(lockPath));
|
||||
// Open or create the lock file
|
||||
auto err = llvm::sys::fs::openFile(
|
||||
lockPath, FD_lock, llvm::sys::fs::CreationDisposition::CD_OpenAlways,
|
||||
llvm::sys::fs::FileAccess::FA_Write, llvm::sys::fs::OpenFlags::OF_None);
|
||||
|
||||
if (err) {
|
||||
// parent does not exists OR right issue (creation or write)
|
||||
return StreamStringError()
|
||||
<< "Cannot access \"" << lockPath << "\": " << err.message();
|
||||
}
|
||||
|
||||
// The first to lock will generate while the others waits
|
||||
llvm::sys::fs::lockFile(FD_lock);
|
||||
auto cleanUnlock = llvm::make_scope_exit([&]() {
|
||||
llvm::sys::fs::unlockFile(FD_lock);
|
||||
llvm::sys::fs::remove(lockPath);
|
||||
});
|
||||
|
||||
if (llvm::sys::fs::exists(folderPath)) {
|
||||
// Others returns here
|
||||
return tryLoadKeys(params, seed_msb, seed_lsb, folderPath);
|
||||
}
|
||||
|
||||
auto key_set = KeySet::generate(params, seed_msb, seed_lsb);
|
||||
|
||||
if (!key_set) {
|
||||
return StreamStringError()
|
||||
<< "Cannot generate key set: " << key_set.takeError();
|
||||
}
|
||||
|
||||
auto savedErr = saveKeys(*(key_set.get()), folderPath);
|
||||
if (savedErr) {
|
||||
return StreamStringError() << "Cannot save key set: " << savedErr;
|
||||
}
|
||||
|
||||
return key_set;
|
||||
}
|
||||
|
||||
} // namespace concretelang
|
||||
} // namespace mlir
|
||||
Reference in New Issue
Block a user