From a8510fb835dcc5e1142d700164ce5a4bd44e1a25 Mon Sep 17 00:00:00 2001 From: vman Date: Sun, 30 Oct 2022 02:28:12 -0400 Subject: Add project files. --- .../IRuntimeSessionProvider.cs | 26 ++++ .../ISessionIdFactory.cs | 17 +++ ...NLib.Plugins.Essentials.Sessions.Runtime.csproj | 40 +++++ .../VnCacheClient.cs | 162 +++++++++++++++++++++ 4 files changed, 245 insertions(+) create mode 100644 Libs/VNLib.Plugins.Essentials.Sessions.Runtime/IRuntimeSessionProvider.cs create mode 100644 Libs/VNLib.Plugins.Essentials.Sessions.Runtime/ISessionIdFactory.cs create mode 100644 Libs/VNLib.Plugins.Essentials.Sessions.Runtime/VNLib.Plugins.Essentials.Sessions.Runtime.csproj create mode 100644 Libs/VNLib.Plugins.Essentials.Sessions.Runtime/VnCacheClient.cs (limited to 'Libs/VNLib.Plugins.Essentials.Sessions.Runtime') diff --git a/Libs/VNLib.Plugins.Essentials.Sessions.Runtime/IRuntimeSessionProvider.cs b/Libs/VNLib.Plugins.Essentials.Sessions.Runtime/IRuntimeSessionProvider.cs new file mode 100644 index 0000000..9941e6a --- /dev/null +++ b/Libs/VNLib.Plugins.Essentials.Sessions.Runtime/IRuntimeSessionProvider.cs @@ -0,0 +1,26 @@ + +using VNLib.Net.Http; +using VNLib.Utils.Logging; + +namespace VNLib.Plugins.Essentials.Sessions +{ + /// + /// Represents a dynamically loadable type that an provide sessions to http connections + /// + public interface IRuntimeSessionProvider : ISessionProvider + { + /// + /// Called immediatly after the plugin is loaded into the appdomain + /// + /// The plugin instance that is loading the module + /// The localized log provider for the provider + void Load(PluginBase plugin, ILogProvider localizedLog); + + /// + /// Determines if the provider can return a session for the connection + /// + /// The entity to process + /// A value indicating if this provider should be called to load a session for + bool CanProcess(IHttpEvent entity); + } +} diff --git a/Libs/VNLib.Plugins.Essentials.Sessions.Runtime/ISessionIdFactory.cs b/Libs/VNLib.Plugins.Essentials.Sessions.Runtime/ISessionIdFactory.cs new file mode 100644 index 0000000..1e88e5c --- /dev/null +++ b/Libs/VNLib.Plugins.Essentials.Sessions.Runtime/ISessionIdFactory.cs @@ -0,0 +1,17 @@ +using System.Diagnostics.CodeAnalysis; + +using VNLib.Net.Http; + +namespace VNLib.Plugins.Essentials.Sessions +{ + public interface ISessionIdFactory + { + /// + /// Attempts to recover a session-id from the connection + /// + /// The connection to process + /// + /// + bool TryGetSessionId(IHttpEvent entity, [NotNullWhen(true)] out string? sessionId); + } +} diff --git a/Libs/VNLib.Plugins.Essentials.Sessions.Runtime/VNLib.Plugins.Essentials.Sessions.Runtime.csproj b/Libs/VNLib.Plugins.Essentials.Sessions.Runtime/VNLib.Plugins.Essentials.Sessions.Runtime.csproj new file mode 100644 index 0000000..5924b93 --- /dev/null +++ b/Libs/VNLib.Plugins.Essentials.Sessions.Runtime/VNLib.Plugins.Essentials.Sessions.Runtime.csproj @@ -0,0 +1,40 @@ + + + + net6.0 + enable + enable + AnyCPU;x64 + Vaughn Nugent + Copyright © 2022 Vaughn Nugent + 1.0.0.1 + x64 + False + www.vaughnnugent.com/resources + + + + True + + + + True + + + + False + + + + False + + + + + + + + + + + diff --git a/Libs/VNLib.Plugins.Essentials.Sessions.Runtime/VnCacheClient.cs b/Libs/VNLib.Plugins.Essentials.Sessions.Runtime/VnCacheClient.cs new file mode 100644 index 0000000..a6979ef --- /dev/null +++ b/Libs/VNLib.Plugins.Essentials.Sessions.Runtime/VnCacheClient.cs @@ -0,0 +1,162 @@ +using System; +using System.Text.Json; +using System.Net.Sockets; +using System.Net.WebSockets; +using System.Security.Cryptography; + +using VNLib.Utils; +using VNLib.Utils.Memory; +using VNLib.Utils.Logging; +using VNLib.Utils.Extensions; +using VNLib.Data.Caching.Extensions; +using VNLib.Net.Messaging.FBM.Client; +using VNLib.Plugins.Extensions.Loading; + +namespace VNLib.Plugins.Essentials.Sessions +{ + /// + /// A wrapper to simplify a cache client object + /// + public sealed class VnCacheClient : OpenResourceHandle + { + FBMClient? _client; + + /// + /// The wrapped client + /// + public override FBMClient? Resource => _client; + + + private TimeSpan RetryInterval; + + private readonly ILogProvider? DebugLog; + private readonly IUnmangedHeap? ClientHeap; + + /// + /// Initializes an emtpy client wrapper that still requires + /// configuration loading + /// + /// An optional debugging log + /// An optional for buffers + public VnCacheClient(ILogProvider? debugLog, IUnmangedHeap? heap = null) + { + DebugLog = debugLog; + //Default to 10 seconds + RetryInterval = TimeSpan.FromSeconds(10); + + ClientHeap = heap; + } + + protected override void Free() + { + _client?.Dispose(); + _client = null; + } + + /// + /// Loads required configuration variables from the config store and + /// intializes the interal client + /// + /// A dictionary of configuration varables + /// + public async Task LoadConfigAsync(PluginBase pbase, IReadOnlyDictionary config) + { + int maxMessageSize = config["max_message_size"].GetInt32(); + string? brokerAddress = config["broker_address"].GetString() ?? throw new KeyNotFoundException("Missing required configuration variable broker_address"); + + //Get keys async + Task clientPrivTask = pbase.TryGetSecretAsync("client_private_key"); + Task brokerPubTask = pbase.TryGetSecretAsync("broker_public_key"); + + //Wait for all tasks to complete + string?[] keys = await Task.WhenAll(clientPrivTask, brokerPubTask); + + byte[] privKey = Convert.FromBase64String(keys[0] ?? throw new KeyNotFoundException("Missing required secret client_private_key")); + byte[] brokerPub = Convert.FromBase64String(keys[1] ?? throw new KeyNotFoundException("Missing required secret broker_public_key")); + + RetryInterval = config["retry_interval_sec"].GetTimeSpan(TimeParseType.Seconds); + + Uri brokerUri = new(brokerAddress); + + //Init the client with default settings + FBMClientConfig conf = FBMDataCacheExtensions.GetDefaultConfig(ClientHeap ?? Memory.Shared, maxMessageSize, DebugLog); + + _client = new(conf); + //Add the configuration + _client.UseBroker(brokerUri) + .ImportBrokerPublicKey(brokerPub) + .ImportClientPrivateKey(privKey) + .UseTls(brokerUri.Scheme == Uri.UriSchemeHttps); + + //Zero the key memory + Memory.InitializeBlock(privKey.AsSpan()); + Memory.InitializeBlock(brokerPub.AsSpan()); + } + + /// + /// Discovers nodes in the configured cluster and connects to a random node + /// + /// A to write log events to + /// A token to cancel the operation + /// A task that completes when the operation has been cancelled or an unrecoverable error occured + /// + /// + public async Task RunAsync(ILogProvider Log, CancellationToken cancellationToken) + { + _ = Resource ?? throw new InvalidOperationException("Client configuration not loaded, cannot connect to cache servers"); + + while (true) + { + //Load the server list + ActiveServer[]? servers; + while (true) + { + try + { + Log.Debug("Discovering cluster nodes in broker"); + //Get server list + servers = await Resource.DiscoverNodesAsync(cancellationToken); + break; + } + catch (HttpRequestException re) when (re.InnerException is SocketException) + { + Log.Warn("Broker server is unreachable"); + } + catch (Exception ex) + { + Log.Warn("Failed to get server list from broker, reason {r}", ex.Message); + } + //Gen random ms delay + int randomMsDelay = RandomNumberGenerator.GetInt32(1000, 2000); + await Task.Delay(randomMsDelay, cancellationToken); + } + if (servers?.Length == 0) + { + Log.Warn("No cluster nodes found, retrying"); + await Task.Delay(RetryInterval, cancellationToken); + continue; + } + //select random server from the list of servers + ActiveServer selected = servers!.SelectRandom(); + try + { + Log.Debug("Connecting to server {server}", selected.ServerId); + //Try to connect to server + await Resource.ConnectAndWaitForExitAsync(selected, cancellationToken); + Log.Debug("Cache server disconnected"); + } + catch (WebSocketException wse) + { + Log.Warn("Failed to connect to cache server {reason}", wse.Message); + continue; + } + catch (HttpRequestException he) when (he.InnerException is SocketException) + { + Log.Debug("Failed to connect to recommended server {server}", selected.ServerId); + //Continue next loop + continue; + } + } + } + } +} -- cgit