CollabVM 1.2 Protocol Reference: Difference between revisions

From Computernewb Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 108: Line 108:
== Server-to-Client Opcodes ==
== Server-to-Client Opcodes ==


These messages may be sent by the server at any time after completing the handshake and must be handled by the client.
=== adduser ===


=== New User(s) ===
Sent to indicate that one or more users have joined the VM. This will always be sent on connection.


Sent to indicate that one or more users have joined the VM. This may also be sent during the handshake.
==== Parameters ====


The server will send two parameters for each user:
Parameters 1 and 2 are repeated for each user added.


<table class="wikitable">
'''Username''': The username of the new user
<tr><td>Opcode</td><td><code>adduser</code></td></tr>
<tr><td>Parameter 1</td><td>The username of the added user.</td></tr>
<tr><td>Parameter 2</td><td>The [[#Rank|Rank]] of the added user as an integer.</td></tr>
</table>


=== Removed User(s) ===
'''Rank''': The rank of the user as an integer (see the Staff section).


Sent when one or more users disconnect from the VM.
=== remuser ===


Parameter 2 is repeated for each user removed.
Sent when one or more users leaves the VM.


<table class="wikitable">
==== Parameters ====
<tr><td>Opcode</td><td><code>remuser</code></td></tr>
<tr><td>Parameter 1</td><td>The number of users that have left</td></tr>
<tr><td>Parameter 2</td><td>The username that has left the VM.</td></tr>
</table>


=== Client Renamed ===
'''Number''': The number of users who have left


Sent when the current client (you) is renamed, either by you or the server.
'''Username''': Username of the user who left. Repeated for each user if there are more than one


<table class="wikitable">
=== rename ===
<tr><td>Opcode</td><td><code>rename</code></td></tr>

<tr><td>Parameter 1</td><td><code>0</code></td></tr>
Sent when a user changes their username.
<tr><td>Parameter 2</td><td>The status of the rename. See below for available values.</td></tr>

<tr><td>Parameter 3</td><td>The client's new username. This may not necessarily be the username requested by the client, as the server can refuse this request for a variety of reasons and may instead assign a guest name.</td></tr>
==== Parameters ====
</table>

Parameters if the client's username is being changed, either by their use of the <code>rename</code> opcode or by staff:

'''0''': This parameter will always be <code>0</code> and is used to differentiate between the client being renamed and another user


Possible rename statuses:
'''Status''': This parameter is used for the status of the rename. It can have one of the below values:


<table class="wikitable">
<table class="wikitable">
Line 150: Line 155:
</table>
</table>


=== User Renamed ===
'''Username''': The client's new username. This will either be the requested username, or one generated by the server if a new username was not specified or was rejected for one of the reasons above.


Parameters if another user is being renamed:
Sent when another user in the list is renamed.


<table class="wikitable">
'''1''': This parameter will always be 1 and is used to differentiate between the client being renamed and another user
<tr><td>Opcode</td><td><code>rename</code></td></tr>
<tr><td>Parameter 1</td><td><code>1</code></td></tr>
<tr><td>Parameter 2</td><td>The user's old username</td></tr>
<tr><td>Parameter 3</td><td>The user's new username</td></tr>
</table>


=== Chat message ===
'''Old Name''': The user's old username


Sent when one or more chat messages are received.
'''New Name''': The user's new username


Parameters 1 and 2 may be repeated for multiple chat messages, and this should be checked for. In current server implementations, this will only happen immediately after connection to send the chat history.
=== chat ===


<table class="wikitable">
Sent when another user sends a chat message.
<tr><td>Opcode</td><td><code>chat</code></td></tr>

<tr><td>Parameter 1</td><td>The user who sent the chat message. This may be an empty string to indicate a system message sent by the server, such as the Message of the Day, or a vote notification.</td></tr>
==== Parameters ====
<tr><td>Parameter 2</td><td>The chat message</td></tr>

</table>
This opcode will mostly have two parameters. However at the beginning of the connection, the server will send a chat history, containing the below parameters for each message.

'''Username''': The user who sent the chat message.

'''Message''': The chat message. The server '''MUST''' HTML-sanitize the message, otherwise this poses a severe vulnerability to users.


=== size ===
=== size ===
Line 239: Line 245:
== Rank ==
== Rank ==


CollabVM has three ranks:
CollabVM has four ranks:


<table class="wikitable">
'''0''': Unregistered. The default rank with no permissions that all users have prior to logging in.
<tr><th>ID</th><th>Name</th><th>Description</th></tr>

<tr><td>0</td><td>Unregistered</td><td>The default rank with no permissions that all users have prior to logging in.</td></tr>
'''2''': Admin. Has all permissions on the VM.
<tr><td>1</td><td>Registered</td><td>A logged in user. This is only used by servers that use CollabVM Account Authentication.</td></tr>

<tr><td>2</td><td>Admin</td><td>Has all permissions on the VM.</td></tr>
'''3''': Moderator. Permissions vary depending on server configuration. Even with all permissions granted moderators can still not use the QEMU monitor.
<tr><td>3</td><td>Moderator</td><td>Permissions vary depending on server configuration. Even with all permissions granted moderators can still not use the QEMU monitor.</td></tr>
</table>

Revision as of 18:47, 30 April 2024

This is the protocol reference for CollabVM 1.2, detailing how the protocol works and how to do different things.

The CollabVM protocol is the mutilated corpse of what used to be Guacamole 0.9.5. It maintains the same instruction format and opcodes for getting the VM display and controlling it, but that's about it.

Wire Protocol

The connection starts with the client making a WebSocket connection to the CollabVM endpoint. This can be anything, for example wss://computernewb.com/collab-vm/vm0 for VM0b0t.

The client MUST use guacamole as the WebSocket subprotocol and servers MUST reject any connections not using this subprotocol.

The CollabVM protocol supports multiple VMs, however current server implementations only support one per instance. This is not a requirement and new servers are welcome to support multiple VMs.

Each VM has its own ID. This ID is arbitrary however MUST be unique against all other VMs on the server, and all VMs that will be used on the same webapp.

Each client has their own username. The client must set a username or request that the server assign it one before connecting to a VM.

Assigned usernames are, by convention, guest followed by five random digits. However, the server may use whatever format it pleases.

Messages

All messages on the CollabVM protocol are UTF-8 string arrays encoded in Guacamole Format, detailed in the Design section of the Guacamole 0.9.5 Manual, Chapter 9. Servers SHOULD drop the connection if the client sends a message not conforming to this.

All messages with a return value will be replied to with a message with a matching opcode, and additional arguments specified in this reference.

nop

This is a keepalive signal sent through the duration of the session used to verify that the client is still connected.

The server MUST send a 3.nop; periodically and the client MUST respond with the same.

The server MAY omit sending NOPs if there is other activity by the client.

Servers MUST drop any client which does not respond to the NOP in a timely manner.

Clients MUST NOT send a NOP until prompted by the server.

Clients MAY drop the connection if the server does not send any messages over a period of time. However this should not be limited strictly to NOPs as these may not be consistently sent if there is other activity on the connection.

Handshake

Upon making a WebSocket connection, the server will immediately begin sending NOPs, which will continue for the duration of the connection. The client is immediately in the handshaking phase of the connection.

The handshake is as follows:

Authentication announcement

A server that uses CollabVM Account Authentication will send a message with the auth opcode to announce this. This indicates a few changes in behavior:

  • Clients may login using the login opcode.
  • Clients may not change username except by logging in or having a guest username assigned.
  • Depending on server configuration, clients may not be able to chat, take turns, or vote without logging in
  • Staff-password authentication is disabled

Parameters

Opcodeauth
Parameter 1The base URL of the authentication server used by this instance. Ex: https://auth.collabvm.org

Obtain a list of VMs

The first thing the client may want to do is obtain a list of VMs available on this server. If the client already knows exactly what node ID it wants to connect to (common for bots) this may be skipped.

Request

Opcodelist

Response

Parameters 1 through 3 are repeated for every available VM.

Opcodelist
Parameter 1The ID of the node, that should be passed to the connect opcode.
Parameter 2A display name for the VM. May contain HTML.
Parameter 3A Base64-encoded thumbnail for the VM. Will be either PNG or JPEG depending on the server implementation. This can be determined through magic numbers.

Connect to a VM

The client may now connect to a VM as follows:

Request

Opcodeconnect
Parameter 1The ID of the VM to connect to. Can be retrieved with the list opcode.

Response

Opcodeconnect
Parameter 1The status of the connection. See below

Possible statuses:

1: The connection was successful and the client is now connected to the VM.

0: The connection failed. This is usually due to an invalid VM ID but depending on the server implementation and protocol extensions could mean something else.

After successfully connecting to a VM, the client will begin to recieve messages as normal, and may send messages.

Server-to-Client Opcodes

These messages may be sent by the server at any time after completing the handshake and must be handled by the client.

New User(s)

Sent to indicate that one or more users have joined the VM. This may also be sent during the handshake.

Parameters 1 and 2 are repeated for each user added.

Opcodeadduser
Parameter 1The username of the added user.
Parameter 2The Rank of the added user as an integer.

Removed User(s)

Sent when one or more users disconnect from the VM.

Parameter 2 is repeated for each user removed.

Opcoderemuser
Parameter 1The number of users that have left
Parameter 2The username that has left the VM.

Client Renamed

Sent when the current client (you) is renamed, either by you or the server.

Opcoderename
Parameter 10
Parameter 2The status of the rename. See below for available values.
Parameter 3The client's new username. This may not necessarily be the username requested by the client, as the server can refuse this request for a variety of reasons and may instead assign a guest name.

Possible rename statuses:

ValueStatus
0The client got their requested username. If the renaming is sent by a staff member this must always be used even if the requested username was not available.
1The username was already taken.
2The username was invalid. See requirements above.
3The username is not allowed by the server.

User Renamed

Sent when another user in the list is renamed.

Opcoderename
Parameter 11
Parameter 2The user's old username
Parameter 3The user's new username

Chat message

Sent when one or more chat messages are received.

Parameters 1 and 2 may be repeated for multiple chat messages, and this should be checked for. In current server implementations, this will only happen immediately after connection to send the chat history.

Opcodechat
Parameter 1The user who sent the chat message. This may be an empty string to indicate a system message sent by the server, such as the Message of the Day, or a vote notification.
Parameter 2The chat message

size

Used to indicate the screen size of the VM. This will be sent after connecting and after any resolution change on the VM.

Parameters

Layer: This will always be zero (for the screen) on current server implementations. Some servers may implement other layers such as virtual mouse. Clients are not obligated to support these.

Width: The new width

Height: The new height

png

Used to update the VM screen. The server will send one initial PNG message containing the entire screen on connection, and after that will send a dirty rect for each update

Parameters

mask: This will always be zero on current server implementations.

layer: This will always be zero (for the screen) on current server implementations. Some servers may implement other layers such as virtual mouse. Clients are not obligated to support these.

x: X-axis position of the rect

y: Y-axis position of the rect

data: The base64-encoded rect. This may be either PNG or JPEG and can be determined through magic numbers or headers.

vote

Sent when a Vote-to-reset on the VM updates

Parameters

Status: The status of the vote. Values:

ValueStatus
0The vote has started. The yes and no parameters may not be specified, and in such case should be assumed to be zero.
1The vote count has updated.
2The vote has ended. All below parameters will be omitted. The server may send the result in the chat.
3Sent if the client tried to start a vote, however there is an active cooldown. Only the time parameter is given.

Time: Amount of time left on the vote in milliseconds. If the above status was 3 (cooldown), this is the amount of time before the client can start a vote.

Yes: The number of users who have voted in favor of resetting the VM

No: The number of users who have voted against resetting the VM

turn

Indicates an update of the VM's turn queue

Parameters

Turn time: How much time is left on the current user's turn in milliseconds.

Queue count: The amount of users in the queue.

Queue: Each user in the queue given as separate parameters

Waiting timer: How much longer until the client will get a turn in milliseconds. Only sent if the client is waiting.

Client-to-Server Opcodes

Rank

CollabVM has four ranks:

IDNameDescription
0UnregisteredThe default rank with no permissions that all users have prior to logging in.
1RegisteredA logged in user. This is only used by servers that use CollabVM Account Authentication.
2AdminHas all permissions on the VM.
3ModeratorPermissions vary depending on server configuration. Even with all permissions granted moderators can still not use the QEMU monitor.