Page MenuHomePhabricator

[keyserver] separate olm session creation and persistence
ClosedPublic

Authored by varun on Dec 29 2023, 8:41 AM.
Tags
None
Referenced Files
F2166160: D10491.id.diff
Tue, Jul 2, 3:34 AM
Unknown Object (File)
Tue, Jun 25, 6:34 AM
Unknown Object (File)
Wed, Jun 19, 6:25 AM
Unknown Object (File)
Wed, Jun 19, 2:07 AM
Unknown Object (File)
Wed, Jun 12, 6:13 AM
Unknown Object (File)
Jun 2 2024, 6:51 PM
Unknown Object (File)
May 23 2024, 8:11 PM
Unknown Object (File)
May 21 2024, 3:41 PM
Subscribers

Details

Summary

separating olm session creation and persistence so that we can create a session before we have a cookie ID with which to persist it.

the next diff shows why this is needed.

abandoning D9345 in favor of this diff since this stack makes it easier to review.

Depends on D10490

Test Plan

tested in last diff in stack by calling the auth responder and confirming that the content olm session is created and stored successfully

Diff Detail

Repository
rCOMM Comm
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

varun published this revision for review.Dec 29 2023, 8:50 AM
ashoat added inline comments.
keyserver/src/creators/olm-session-creator.js
66 ↗(On Diff #35100)

We can't safely separate updating and storing an Olm session due to the potential for a race between two calls that are both trying to update the Olm session. For that reason we have fetchCallUpdateOlmAccount and encryptAndUpdateOlmSession, which use MariaDB transactions to protect against the race conditions.

We don't need that sort of approach for persisting a brand new Olm session. But it's concerning to see you export storeOlmSession here... it seems like it has the potential for misuse.

Maybe we can rename it to storeFreshOlmSession?

Separately, wonder if "persist" makes more sense than "store". I don't feel strongly here... curious for @marcin's perspective.

I outlined one concern that I have about this differential and suggested a solution. I don't have enough context about the entire goal to decide if it is serious issue so I leave that up the the author.

keyserver/src/creators/olm-session-creator.js
66 ↗(On Diff #35100)

persistOlmSession sounds best for me as a name for this method.

The issue that I see with this diff is that createOlmSession persists changes made to olm account in the database while changes done due to the session creation are not persisted immediately.. Our database has an entry associated with olm account that indicates that a session was created but there is no entry with the actual session. This means that our database is in incorrect state for a while until persistOlmSession is called. On the other hand I am not sure if it creates a foundation for some serious issues. Actually I can't think of any bad scenario that could happen here. As far as I am concerned creating a session indeed removes one time key from an account. So theoretically if we create a session but the keyserver crashed before we persist it in the database we might not be able to try to create it again with the same initialEncryptedMessage since necessary one time key was permanently removed from an account. If the scenario I described above is a serious concern then here is what I would do:

  1. createOlmSession doesn't update database but returns olm session, old olm account and updated olm account in memory.
  2. persistOlmAccount takes pickled old olm account, pickled updated olm account and pickled olm session as arguments, then fetches pickled olm account from the database and if it matches the old pickled olm account passed as an argument then we update everything in the database at once.
This revision is now accepted and ready to land.Jan 2 2024, 6:25 AM
keyserver/src/creators/olm-session-creator.js
66 ↗(On Diff #35100)

in storeOlmSession we match the native client behavior of overwriting the olm session if we've already initialized one for the same pair of identities. @marcin i don't think the concern you've outlined is that serious. The client can try to auth with a new initialEncryptedMessage if the keyserver crashes between creating and persisting the olm session.

@ashoat does that sound reasonable? am i missing something?

keyserver/src/creators/olm-session-creator.js
66 ↗(On Diff #35100)

settled on persistFreshOlmSession and createAndPersistOlmSession btw

keyserver/src/creators/olm-session-creator.js
66 ↗(On Diff #35100)

Yeah this sounds reasonable. It looks like making sure the client retry generates a new initialEncryptedMessage is outside the scope of your diff stack, and likely part of Tomek's connection handlers project. Can you try to document this requirement on Linear somewhere for him? Maybe here

PS – looks like you missed updating this diff... D10493 seems to already be using the renamed method

PS – looks like you missed updating this diff... D10493 seems to already be using the renamed method

yeah didn't update since it was already accepted

keyserver/src/creators/olm-session-creator.js
66 ↗(On Diff #35100)

left a comment there