* gen v1.23.0 * fix converter * bump ver * update readme runtime * fix warning * update dep ver * newtonjson -> system.text.json * generate for new json api * readme lf * dotnet fmt * dotnet fmt tests/ * dotnet fmt * Revert "dotnet fmt" This reverts commit e14c59076143fe2218ed899295a00762f0ea2bd6. * fix err introduce by dotnet fmt * fix test * remove deprecated /watch api * generate code after /watch removed * remove /watch related code * trim Microsoft.Rest.Serialization
363 lines
14 KiB
C#
363 lines
14 KiB
C#
using System.Net;
|
|
using System.Net.Http;
|
|
using System.Net.Security;
|
|
using System.Net.Sockets;
|
|
using System.Reflection;
|
|
using System.Runtime.InteropServices;
|
|
using System.Security.Cryptography.X509Certificates;
|
|
using System.Threading;
|
|
using k8s.Exceptions;
|
|
using Microsoft.Rest;
|
|
|
|
namespace k8s
|
|
{
|
|
public partial class Kubernetes
|
|
{
|
|
/// <summary>
|
|
/// Timeout of REST calls to Kubernetes server
|
|
/// Does not apply to watch related api
|
|
/// </summary>
|
|
/// <value>timeout</value>
|
|
public TimeSpan HttpClientTimeout { get; set; } = TimeSpan.FromSeconds(100);
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="Kubernetes" /> class.
|
|
/// </summary>
|
|
/// <param name='config'>
|
|
/// The kube config to use.
|
|
/// </param>
|
|
/// <param name="httpClient">
|
|
/// The <see cref="HttpClient" /> to use for all requests.
|
|
/// </param>
|
|
public Kubernetes(KubernetesClientConfiguration config, HttpClient httpClient)
|
|
: this(config, httpClient, false)
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="Kubernetes" /> class.
|
|
/// </summary>
|
|
/// <param name='config'>
|
|
/// The kube config to use.
|
|
/// </param>
|
|
/// <param name="httpClient">
|
|
/// The <see cref="HttpClient" /> to use for all requests.
|
|
/// </param>
|
|
/// <param name="disposeHttpClient">
|
|
/// Whether or not the <see cref="Kubernetes"/> object should own the lifetime of <paramref name="httpClient"/>.
|
|
/// </param>
|
|
public Kubernetes(KubernetesClientConfiguration config, HttpClient httpClient, bool disposeHttpClient)
|
|
: this(
|
|
httpClient, disposeHttpClient)
|
|
{
|
|
ValidateConfig(config);
|
|
CaCerts = config.SslCaCerts;
|
|
SkipTlsVerify = config.SkipTlsVerify;
|
|
ClientCert = CertUtils.GetClientCert(config);
|
|
SetCredentials(config);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="Kubernetes" /> class.
|
|
/// </summary>
|
|
/// <param name='config'>
|
|
/// The kube config to use.
|
|
/// </param>
|
|
/// <param name="handlers">
|
|
/// Optional. The delegating handlers to add to the http client pipeline.
|
|
/// </param>
|
|
public Kubernetes(KubernetesClientConfiguration config, params DelegatingHandler[] handlers)
|
|
{
|
|
Initialize();
|
|
ValidateConfig(config);
|
|
CaCerts = config.SslCaCerts;
|
|
SkipTlsVerify = config.SkipTlsVerify;
|
|
CreateHttpClient(handlers, config);
|
|
InitializeFromConfig(config);
|
|
HttpClientTimeout = config.HttpClientTimeout;
|
|
}
|
|
|
|
private void ValidateConfig(KubernetesClientConfiguration config)
|
|
{
|
|
if (config == null)
|
|
{
|
|
throw new KubeConfigException("KubeConfig must be provided");
|
|
}
|
|
|
|
if (string.IsNullOrWhiteSpace(config.Host))
|
|
{
|
|
throw new KubeConfigException("Host url must be set");
|
|
}
|
|
|
|
try
|
|
{
|
|
BaseUri = new Uri(config.Host);
|
|
}
|
|
catch (UriFormatException e)
|
|
{
|
|
throw new KubeConfigException("Bad host url", e);
|
|
}
|
|
}
|
|
|
|
private void InitializeFromConfig(KubernetesClientConfiguration config)
|
|
{
|
|
if (BaseUri.Scheme == "https")
|
|
{
|
|
if (config.SkipTlsVerify)
|
|
{
|
|
HttpClientHandler.ServerCertificateCustomValidationCallback =
|
|
(sender, certificate, chain, sslPolicyErrors) => true;
|
|
}
|
|
else
|
|
{
|
|
if (CaCerts == null)
|
|
{
|
|
throw new KubeConfigException("A CA must be set when SkipTlsVerify === false");
|
|
}
|
|
|
|
HttpClientHandler.ServerCertificateCustomValidationCallback =
|
|
(sender, certificate, chain, sslPolicyErrors) =>
|
|
{
|
|
return CertificateValidationCallBack(sender, CaCerts, certificate, chain,
|
|
sslPolicyErrors);
|
|
};
|
|
}
|
|
}
|
|
|
|
// set credentails for the kubernetes client
|
|
SetCredentials(config);
|
|
config.AddCertificates(HttpClientHandler);
|
|
}
|
|
|
|
private X509Certificate2Collection CaCerts { get; }
|
|
private X509Certificate2 ClientCert { get; }
|
|
private bool SkipTlsVerify { get; }
|
|
|
|
private void CustomInitialize()
|
|
{
|
|
}
|
|
|
|
/// <summary>A <see cref="DelegatingHandler"/> that simply forwards a request with no further processing.</summary>
|
|
private sealed class ForwardingHandler : DelegatingHandler
|
|
{
|
|
public ForwardingHandler(HttpMessageHandler handler)
|
|
: base(handler)
|
|
{
|
|
}
|
|
}
|
|
|
|
private void AppendDelegatingHandler<T>()
|
|
where T : DelegatingHandler, new()
|
|
{
|
|
var cur = FirstMessageHandler as DelegatingHandler;
|
|
|
|
while (cur != null)
|
|
{
|
|
var next = cur.InnerHandler as DelegatingHandler;
|
|
|
|
if (next == null)
|
|
{
|
|
// last one
|
|
// append watcher handler between to last handler
|
|
cur.InnerHandler = new T { InnerHandler = cur.InnerHandler };
|
|
break;
|
|
}
|
|
|
|
cur = next;
|
|
}
|
|
}
|
|
|
|
// NOTE: this method replicates the logic that the base ServiceClient uses except that it doesn't insert the RetryDelegatingHandler
|
|
// and it does insert the WatcherDelegatingHandler. we don't want the RetryDelegatingHandler because it has a very broad definition
|
|
// of what requests have failed. it considers everything outside 2xx to be failed, including 1xx (e.g. 101 Switching Protocols) and
|
|
// 3xx. in particular, this prevents upgraded connections and certain generic/custom requests from working.
|
|
private void CreateHttpClient(DelegatingHandler[] handlers, KubernetesClientConfiguration config)
|
|
{
|
|
FirstMessageHandler = HttpClientHandler = CreateRootHandler();
|
|
|
|
|
|
#if NET5_0
|
|
// https://github.com/kubernetes-client/csharp/issues/587
|
|
// let user control if tcp keep alive until better fix
|
|
if (config.TcpKeepAlive)
|
|
{
|
|
// https://github.com/kubernetes-client/csharp/issues/533
|
|
// net5 only
|
|
// this is a temp fix to attach SocketsHttpHandler to HttpClient in order to set SO_KEEPALIVE
|
|
// https://tldp.org/HOWTO/html_single/TCP-Keepalive-HOWTO/
|
|
//
|
|
// _underlyingHandler is not a public accessible field
|
|
// src of net5 HttpClientHandler and _underlyingHandler field defined here
|
|
// https://github.com/dotnet/runtime/blob/79ae74f5ca5c8a6fe3a48935e85bd7374959c570/src/libraries/System.Net.Http/src/System/Net/Http/HttpClientHandler.cs#L22
|
|
//
|
|
// Should remove after better solution
|
|
|
|
var sh = new SocketsHttpHandler();
|
|
sh.ConnectCallback = async (context, token) =>
|
|
{
|
|
var socket = new Socket(SocketType.Stream, ProtocolType.Tcp)
|
|
{
|
|
NoDelay = true,
|
|
};
|
|
|
|
socket.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.KeepAlive, true);
|
|
|
|
var host = context.DnsEndPoint.Host;
|
|
|
|
if (!RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
|
|
{
|
|
// https://github.com/dotnet/runtime/issues/24917
|
|
// GetHostAddresses will return {host} if host is an ip
|
|
var ips = Dns.GetHostAddresses(host);
|
|
if (ips.Length == 0)
|
|
{
|
|
throw new Exception($"{host} DNS lookup failed");
|
|
}
|
|
|
|
host = ips[new Random().Next(ips.Length)].ToString();
|
|
}
|
|
|
|
await socket.ConnectAsync(host, context.DnsEndPoint.Port, token).ConfigureAwait(false);
|
|
return new NetworkStream(socket, ownsSocket: true);
|
|
};
|
|
|
|
|
|
// set HttpClientHandler's cert callback before replace _underlyingHandler
|
|
// force HttpClientHandler use our callback
|
|
InitializeFromConfig(config);
|
|
|
|
var p = HttpClientHandler.GetType().GetField("_underlyingHandler", BindingFlags.NonPublic | BindingFlags.Instance);
|
|
p.SetValue(HttpClientHandler, (sh));
|
|
}
|
|
#endif
|
|
|
|
if (handlers == null || handlers.Length == 0)
|
|
{
|
|
// ensure we have at least one DelegatingHandler so AppendDelegatingHandler will work
|
|
FirstMessageHandler = new ForwardingHandler(HttpClientHandler);
|
|
}
|
|
else
|
|
{
|
|
for (int i = handlers.Length - 1; i >= 0; i--)
|
|
{
|
|
DelegatingHandler handler = handlers[i];
|
|
while (handler.InnerHandler is DelegatingHandler d)
|
|
{
|
|
handler = d;
|
|
}
|
|
|
|
handler.InnerHandler = FirstMessageHandler;
|
|
FirstMessageHandler = handlers[i];
|
|
}
|
|
}
|
|
|
|
HttpClient = new HttpClient(FirstMessageHandler, false)
|
|
{
|
|
Timeout = Timeout.InfiniteTimeSpan,
|
|
};
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// Set credentials for the Client
|
|
/// </summary>
|
|
/// <param name="config">k8s client configuration</param>
|
|
private void SetCredentials(KubernetesClientConfiguration config) => Credentials = CreateCredentials(config);
|
|
|
|
/// <summary>
|
|
/// SSl Cert Validation Callback
|
|
/// </summary>
|
|
/// <param name="sender">sender</param>
|
|
/// <param name="caCerts">client ca</param>
|
|
/// <param name="certificate">client certificate</param>
|
|
/// <param name="chain">chain</param>
|
|
/// <param name="sslPolicyErrors">ssl policy errors</param>
|
|
/// <returns>true if valid cert</returns>
|
|
public static bool CertificateValidationCallBack(
|
|
object sender,
|
|
X509Certificate2Collection caCerts,
|
|
X509Certificate certificate,
|
|
X509Chain chain,
|
|
SslPolicyErrors sslPolicyErrors)
|
|
{
|
|
if (caCerts == null)
|
|
{
|
|
throw new ArgumentNullException(nameof(caCerts));
|
|
}
|
|
|
|
if (chain == null)
|
|
{
|
|
throw new ArgumentNullException(nameof(chain));
|
|
}
|
|
|
|
// If the certificate is a valid, signed certificate, return true.
|
|
if (sslPolicyErrors == SslPolicyErrors.None)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
// If there are errors in the certificate chain, look at each error to determine the cause.
|
|
if ((sslPolicyErrors & SslPolicyErrors.RemoteCertificateChainErrors) != 0)
|
|
{
|
|
chain.ChainPolicy.RevocationMode = X509RevocationMode.NoCheck;
|
|
|
|
// Added our trusted certificates to the chain
|
|
//
|
|
chain.ChainPolicy.ExtraStore.AddRange(caCerts);
|
|
|
|
chain.ChainPolicy.VerificationFlags = X509VerificationFlags.AllowUnknownCertificateAuthority;
|
|
var isValid = chain.Build((X509Certificate2)certificate);
|
|
|
|
var isTrusted = false;
|
|
|
|
var rootCert = chain.ChainElements[chain.ChainElements.Count - 1].Certificate;
|
|
|
|
// Make sure that one of our trusted certs exists in the chain provided by the server.
|
|
//
|
|
foreach (var cert in caCerts)
|
|
{
|
|
if (rootCert.RawData.SequenceEqual(cert.RawData))
|
|
{
|
|
isTrusted = true;
|
|
break;
|
|
}
|
|
}
|
|
|
|
return isValid && isTrusted;
|
|
}
|
|
|
|
// In all other cases, return false.
|
|
return false;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates <see cref="ServiceClientCredentials"/> based on the given config, or returns null if no such credentials are needed.
|
|
/// </summary>
|
|
/// <param name="config">kubenetes config object</param>
|
|
/// <returns>instance of <see cref="ServiceClientCredentials"/></returns>
|
|
public static ServiceClientCredentials CreateCredentials(KubernetesClientConfiguration config)
|
|
{
|
|
if (config == null)
|
|
{
|
|
throw new ArgumentNullException(nameof(config));
|
|
}
|
|
|
|
if (config.TokenProvider != null)
|
|
{
|
|
return new TokenCredentials(config.TokenProvider);
|
|
}
|
|
else if (!string.IsNullOrEmpty(config.AccessToken))
|
|
{
|
|
return new TokenCredentials(config.AccessToken);
|
|
}
|
|
else if (!string.IsNullOrEmpty(config.Username))
|
|
{
|
|
return new BasicAuthenticationCredentials() { UserName = config.Username, Password = config.Password };
|
|
}
|
|
|
|
return null;
|
|
}
|
|
}
|
|
}
|