Difference between revisions of "Np1sec/concurrent join"

(Proposal for concurrent join)
(Proposal for concurrent join)
Line 5: Line 5:
 
Each occupant can mark each session with one of the '''5 statuses: {current, in-limbo, dead}'''
 
Each occupant can mark each session with one of the '''5 statuses: {current, in-limbo, dead}'''
 
'''current''': User messages are being encrypted and decrypted in the current session. The join request will be processed by this session.
 
'''current''': User messages are being encrypted and decrypted in the current session. The join request will be processed by this session.
'''in-limbo''': A session which is receiving shares and confirmation, this session can potentially become the next session if it receives session confirmation from all users.
+
'''in-limbo''': A session which is receiving shares and confirmations, this session can potentially become the next session if it receives session confirmation from all users.
 
'''dead''': The session is abandoned and not going to become the current session.
 
'''dead''': The session is abandoned and not going to become the current session.
  

Revision as of 16:24, 13 March 2015

Proposal for concurrent join

One can have the following protocol to handle concurrent join.

Each occupant can mark each session with one of the 5 statuses: {current, in-limbo, dead} current: User messages are being encrypted and decrypted in the current session. The join request will be processed by this session. in-limbo: A session which is receiving shares and confirmations, this session can potentially become the next session if it receives session confirmation from all users. dead: The session is abandoned and not going to become the current session.

The protocol joins one user at a time but is greedy and non-blocking in respect to several concurrent joiners and eventually results in joins of all new users (as long as current users in the session cooperate with the join process). The global order of messages is essential for the protocol to succeed, which is a transport assumption for n+1sec protocol.

Session picking protocol for new user joining the room

New user starts a join process by sending (U_{{joiner}},y_{{joiner}}). In respose, it receives messages of the format

sid,(U_{1},y_{1},...,U_{{joiner}},y_{{joiner}},...),kc_{{i}},z_{{i}}

From each user i. The joiner makes a session for each sid which contains them as a participant, the user initiates a session and gathers shares. When a session receives all shares, it computes the session key becomes the current session. All other sessions can remain in limbo or get discarded based on the memory capacity of the implementation and security requirement.

Session picking protocol for current occupant of the current session

Suppose user U_{i} is in Session S. When a new user U_{j} sends a join request, the user U_{i} starts a session in limbo S_{j} with the list of users in the current session plus the joining user. As part of initiation of each session S_{j} the current user sends a message of type:

sid,(U_{1},y_{1},...,U_{{joiner}},y_{{joiner}},...),kc_{{i}},z_{{i}}


If m users are joining that session concurrently, there are S_{1},...,S_{m} sessions in-limbo which are receiving shares and authentication messages.

If the U_{l} currently in room signal to leave the room a session S_{l} is created. Each session S_{j} results in the creation of session S_{{j'}} with user U_{l} omitted. S_{j} is marked as dead.

The user U_{i} sends the shares and authentication token necessary for each session. The first session which receives all confirmations will become the main session, and the joiner user of that session becomes the current session. All other S_{j} results in new session S_{{j''}} to which U_{{joiner}} is added. previous "current" session becomes in-limbo.

in-limbo -> {in-limbo, dead, current} current -> in-limbo