Page MenuHomePhabricator

[keyserver] implement socket and update code to interact with Tunnelbroker API
ClosedPublic

Authored by kamil on Oct 27 2023, 9:58 AM.
Tags
None
Referenced Files
Unknown Object (File)
Wed, Oct 2, 1:07 PM
Unknown Object (File)
Wed, Oct 2, 1:07 PM
Unknown Object (File)
Wed, Oct 2, 1:07 PM
Unknown Object (File)
Wed, Oct 2, 1:07 PM
Unknown Object (File)
Wed, Oct 2, 6:01 AM
Unknown Object (File)
Sun, Sep 29, 11:14 PM
Unknown Object (File)
Mon, Sep 23, 8:13 AM
Unknown Object (File)
Wed, Sep 11, 7:37 PM
Subscribers

Details

Summary
  1. Updates old code to new API
  2. Implement Socket
  3. Remove old types

There is some code duplication with what's in lib/. I'll try to refactor this later.

Looks like RefreshKeyRequest is defined not properly in Rust codebase, should not be a separate message but part of MessageToDevice. I'll fix that as followup - shouldn't affect this code.

Depends on D9596

Test Plan
  1. Check if the keyserver can connect to Tunnelbroker
  2. Check if the socket is properly closed when eg. Tunnelbroker is killed
  3. Check if socket issues don't cause the keyserver to crash
  4. Send RefreshKeyRequest and verify on keyserver and Identity logs that it is properly processed
  5. Kill keyserver, send RefreshKeyRequest, launch keyserver and check if the message was delivered and processed.

Diff Detail

Repository
rCOMM Comm
Lint
No Lint Coverage
Unit
No Test Coverage

Event Timeline

kamil held this revision as a draft.
kamil published this revision for review.Oct 27 2023, 10:09 AM
kamil added inline comments.
keyserver/src/socket/tunnelbroker-socket.js
63 ↗(On Diff #32468)

leftover from testing, I'll remove this

95 ↗(On Diff #32468)

leftover from testing, I'll remove this

Should we implement some kind of timeout for the promises?

So if we get a SerializationError or a bad request we don't just keep them forever and instead reject them after some time?

keyserver/src/socket/tunnelbroker-socket.js
61 ↗(On Diff #32468)

What happens if this would fail? Should we add a try block?

66 ↗(On Diff #32468)

Nit, also it might be good to log some more info about this message.

75–84 ↗(On Diff #32468)

I think it might be worth to track the initialization state more precisely than just a connected boolean, but an enum with e.g. waiting_for_initialization_response. Then we could error here if we get an initialization message outside of the first message.

Do we need to handle socket reconnection?

keyserver/src/socket/tunnelbroker.js
46 ↗(On Diff #32468)

How does this work? Doesn't this object get garbage collected?

Do we need to handle socket reconnection?

ENG-4924

Should we implement some kind of timeout for the promises?

ENG-5601

(sorry for not linking those tasks in summary when creating diff)

keyserver/src/socket/tunnelbroker-socket.js
61 ↗(On Diff #32468)

yes we should, thanks

75–84 ↗(On Diff #32468)

I don't think there is a reason for it, we can error even with simple boolean, I want to avoid adding too much complexity, what do you think?

We can add tracking state more precisely when there will be a serious reason to do it

keyserver/src/socket/tunnelbroker.js
46 ↗(On Diff #32468)

I think this object could live as long as being "reachable". "Reachable" has multiple meanings, but in this case, this object creates a WebSocket connection, socket is event-driven so it should be reachable from an event loop, managed by Node.js.

So this object could be removed form memory after closing the socket - but then auto-reconnection should start so it's probably okay, but I'll do some research about this to make sure it's okay.

keyserver/src/socket/tunnelbroker-socket.js
75–84 ↗(On Diff #32468)

Can you add a check for an init message when this.connected == true?

add log for multiple ConnectionInitializationResponse

michal added inline comments.
keyserver/src/socket/tunnelbroker-socket.js
117–122

Last small thing: could you add a console log if we get a MESSAGE_TO_DEVICE_REQUEST_STATUS for a message that we don't have in the this.promises object?

This revision is now accepted and ready to land.Nov 3 2023, 4:15 AM
keyserver/src/socket/tunnelbroker-socket.js
117–122

sorry I missed that comment, will create a diff shortly