Page MenuHomePhabricator

[lib] add session version to EncryptedData
ClosedPublic

Authored by kamil on Aug 8 2024, 8:50 AM.
Tags
None
Referenced Files
Unknown Object (File)
Mon, Sep 9, 6:09 PM
Unknown Object (File)
Mon, Sep 9, 4:27 AM
Unknown Object (File)
Sat, Sep 7, 1:48 PM
Unknown Object (File)
Sat, Sep 7, 11:37 AM
Unknown Object (File)
Sat, Sep 7, 11:36 AM
Unknown Object (File)
Sat, Sep 7, 11:36 AM
Unknown Object (File)
Wed, Sep 4, 8:53 PM
Unknown Object (File)
Sun, Sep 1, 1:15 PM
Subscribers

Details

Summary

ENG-6982.

When there are multiple messages queued for the device, and we start resetting the session the messages already queued will for sure fail to be decrypted - to distinguish that and avoid resetting the session multiple times we need to add the session version to each message. This is optional to backward compatibility and to avoid adding this for notif when this is not needed.

Depends on D13032

Test Plan
  1. Create a session between devices A and B
  2. On B comment out sending confirmation.
  3. Send some messages from A to B
  4. Receive couple of messages from B
  5. Reset session
  6. Make sure other messages throws INVALID_SESSION_VERSION error when decrypting

Diff Detail

Repository
rCOMM Comm
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

kamil held this revision as a draft.
kamil edited the test plan for this revision. (Show Details)
kamil published this revision for review.Aug 12 2024, 2:47 AM
tomek added inline comments.
native/cpp/CommonCpp/CryptoTools/CryptoModule.cpp
402 ↗(On Diff #43303)

Shouldn't we check for equality?

native/cpp/CommonCpp/NativeModules/CommCoreModule.cpp
1850 ↗(On Diff #43303)

Why do we round?

This revision is now accepted and ready to land.Tue, Aug 20, 2:05 AM
native/cpp/CommonCpp/CryptoTools/CryptoModule.cpp
402 ↗(On Diff #43303)

This is on purpose:
encryptedData.sessionVersion == session->getVersion() -> The same session, we should be able to decrypt
encryptedData.sessionVersion < session->getVersion() -> We have a newer session, we should ignore this message, that's why we're throwing a specific error to ignore in JS
encryptedData.sessionVersion > session->getVersion() -> We have an older session, this is a very rare edge case when there was a session reset from the other client but the session init message was not delivered, in that case, we want to throw an error to heal session state.

native/cpp/CommonCpp/NativeModules/CommCoreModule.cpp
1850 ↗(On Diff #43303)

we do it always for numbers because JSI uses double when passing numbers from JS

native/cpp/CommonCpp/CryptoTools/CryptoModule.cpp
402 ↗(On Diff #43303)

I'm confused... it seems like you're saying that for both the < and > case, we should throw an error... but we're only throwing an error here for the < case, no?

native/cpp/CommonCpp/CryptoTools/CryptoModule.cpp
402 ↗(On Diff #43303)

For case < we should throw specific error, other than Olm's error to ignore this fact and avoid resetting the session.
For case > we should keep the default behavior which is decrypt, or on Olm error reset session. We're not throwing an error explicitly but Olm will do it (OLM_BAD_MESSAGE_MAC). If you think it's better to introduce another specific error - not ignored but causing resetting session like internal Olm errors I can do it as a follow-up, the logic will remain unchanged, this is just about code readability/avoiding calling the decrypt method.

This revision was automatically updated to reflect the committed changes.