Skip to content
Snippets Groups Projects
Commit 604cdcec authored by Konstantinos Sideris's avatar Konstantinos Sideris
Browse files

Save the olm account after we create new one-time keys

Otherwise after a restart the old account will be loaded and we
won't be able to decrypt messages from devices using the new one-time keys.

Also new one-time key upload requests will fail due to conflicts with
the existing keys with the same keyid.
parent 4514d139
No related branches found
No related tags found
No related merge requests found
...@@ -75,4 +75,7 @@ encrypt_group_message(const std::string &room_id, ...@@ -75,4 +75,7 @@ encrypt_group_message(const std::string &room_id,
const std::string &device_id, const std::string &device_id,
const std::string &body); const std::string &body);
void
mark_keys_as_published();
} // namespace olm } // namespace olm
...@@ -1038,7 +1038,8 @@ ChatPage::tryInitialSync() ...@@ -1038,7 +1038,8 @@ ChatPage::tryInitialSync()
return; return;
} }
olm::client()->mark_keys_as_published(); olm::mark_keys_as_published();
for (const auto &entry : res.one_time_key_counts) for (const auto &entry : res.one_time_key_counts)
nhlog::net()->info( nhlog::net()->info(
"uploaded {} {} one-time keys", entry.second, entry.first); "uploaded {} {} one-time keys", entry.second, entry.first);
...@@ -1273,7 +1274,7 @@ ChatPage::ensureOneTimeKeyCount(const std::map<std::string, uint16_t> &counts) ...@@ -1273,7 +1274,7 @@ ChatPage::ensureOneTimeKeyCount(const std::map<std::string, uint16_t> &counts)
return; return;
} }
olm::client()->mark_keys_as_published(); olm::mark_keys_as_published();
}); });
} }
} }
......
...@@ -5,6 +5,8 @@ ...@@ -5,6 +5,8 @@
using namespace mtx::crypto; using namespace mtx::crypto;
static const std::string STORAGE_SECRET_KEY("secret");
namespace { namespace {
auto client_ = std::make_unique<mtx::crypto::OlmClient>(); auto client_ = std::make_unique<mtx::crypto::OlmClient>();
} }
...@@ -229,4 +231,11 @@ create_inbound_megolm_session(const std::string &sender, ...@@ -229,4 +231,11 @@ create_inbound_megolm_session(const std::string &sender,
nhlog::crypto()->info("established inbound megolm session ({}, {})", room_id, sender); nhlog::crypto()->info("established inbound megolm session ({}, {})", room_id, sender);
} }
void
mark_keys_as_published()
{
olm::client()->mark_keys_as_published();
cache::client()->saveOlmAccount(olm::client()->save(STORAGE_SECRET_KEY));
}
} // namespace olm } // namespace olm
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment