Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: various fixes for tunnel startup to work #14

Merged
merged 5 commits into from
Jan 31, 2025
Merged

Conversation

deansheather
Copy link
Member

Fixes various problems that prevented tunnel startup from succeeding and prevented clients from connecting to the RPC server.

Added a new temporary package Vpn.DebugClient to help control the system service component until the UI is ready.

Adds utility PS1 scripts for adding the debug binary to a new system service and managing/hotswapping it.

Start and stop operations from a client now reliably work, although there are various TODOs around the service codebase still.

Closes #2

Fixes various problems that prevented tunnel startup from succeeding and
prevented clients from connecting to the RPC server.

Added a new temporary package Vpn.DebugClient to help control the system
service component until the UI is ready.

Adds utility PS1 scripts for adding the debug binary to a new system
service and managing/hotswapping it.
await DownloadTunnelBinaryAsync(message.Message.Start.CoderUrl, serverVersion, ct);
await _tunnelSupervisor.StartAsync(_config.TunnelBinaryPath, HandleTunnelRpcMessage,
HandleTunnelRpcError,
await _tunnelSupervisor.StartAsync(_config.TunnelBinaryPath, HandleTunnelRpcMessage, HandleTunnelRpcError,
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

same with this section: we need to ensure that stops and starts are serialized so that you don't get stop, stop, start, start if two clients connect around the same time.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Added a semaphore that fixes both of these issues


public async Task BroadcastAsync(ServiceMessage message, CancellationToken ct)
{
foreach (var (clientId, client) in _activeClients)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is there anything that prevents _activeClients from being modified while you are looping over it?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since it's a concurrent dictionary it's exception-safe. As far as I understand, any added or removed items from the dictionary while we're looping may or may not get called, but I think that's fine.

@deansheather deansheather merged commit 4c6d2bd into main Jan 31, 2025
3 checks passed
@deansheather deansheather deleted the dean/debug-client branch January 31, 2025 09:36
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Build a Windows Service that implements CoderVPN
2 participants