301 lines
11 KiB
C#
301 lines
11 KiB
C#
using DNS.Client;
|
||
using DNS.Client.RequestResolver;
|
||
using DNS.Protocol;
|
||
using DNS.Protocol.ResourceRecords;
|
||
using FastGithub.Configuration;
|
||
using Microsoft.Extensions.Caching.Memory;
|
||
using Microsoft.Extensions.Logging;
|
||
using Microsoft.Extensions.Options;
|
||
using System;
|
||
using System.Collections.Concurrent;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Net;
|
||
using System.Net.Sockets;
|
||
using System.Runtime.CompilerServices;
|
||
using System.Threading;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace FastGithub.DomainResolve
|
||
{
|
||
/// <summary>
|
||
/// DNS客户端
|
||
/// </summary>
|
||
sealed class DnsClient
|
||
{
|
||
private const int DNS_PORT = 53;
|
||
private const string LOCALHOST = "localhost";
|
||
|
||
private readonly DnscryptProxy dnscryptProxy;
|
||
private readonly FastGithubConfig fastGithubConfig;
|
||
private readonly ILogger<DnsClient> logger;
|
||
|
||
private readonly ConcurrentDictionary<string, SemaphoreSlim> semaphoreSlims = new();
|
||
private readonly IMemoryCache dnsCache = new MemoryCache(Options.Create(new MemoryCacheOptions()));
|
||
|
||
private readonly TimeSpan minTimeToLive = TimeSpan.FromSeconds(30d);
|
||
private readonly TimeSpan maxTimeToLive = TimeSpan.FromMinutes(10d);
|
||
|
||
private readonly int resolveTimeout = (int)TimeSpan.FromSeconds(2d).TotalMilliseconds;
|
||
private static readonly TimeSpan connectTimeout = TimeSpan.FromSeconds(2d);
|
||
|
||
private record LookupResult(IList<IPAddress> Addresses, TimeSpan TimeToLive);
|
||
|
||
/// <summary>
|
||
/// DNS客户端
|
||
/// </summary>
|
||
/// <param name="dnscryptProxy"></param>
|
||
/// <param name="fastGithubConfig"></param>
|
||
/// <param name="logger"></param>
|
||
public DnsClient(
|
||
DnscryptProxy dnscryptProxy,
|
||
FastGithubConfig fastGithubConfig,
|
||
ILogger<DnsClient> logger)
|
||
{
|
||
this.dnscryptProxy = dnscryptProxy;
|
||
this.fastGithubConfig = fastGithubConfig;
|
||
this.logger = logger;
|
||
}
|
||
|
||
/// <summary>
|
||
/// 解析域名
|
||
/// </summary>
|
||
/// <param name="endPoint">远程结节</param>
|
||
/// <param name="fastSort">是否使用快速排序</param>
|
||
/// <param name="cancellationToken"></param>
|
||
/// <returns></returns>
|
||
public async IAsyncEnumerable<IPAddress> ResolveAsync(DnsEndPoint endPoint, bool fastSort, [EnumeratorCancellation] CancellationToken cancellationToken)
|
||
{
|
||
var hashSet = new HashSet<IPAddress>();
|
||
foreach (var dns in this.GetDnsServers())
|
||
{
|
||
var addresses = await this.LookupAsync(dns, endPoint, fastSort, cancellationToken);
|
||
foreach (var address in addresses)
|
||
{
|
||
if (hashSet.Add(address) == true)
|
||
{
|
||
yield return address;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
/// <summary>
|
||
/// 获取dns服务
|
||
/// </summary>
|
||
/// <returns></returns>
|
||
private IEnumerable<IPEndPoint> GetDnsServers()
|
||
{
|
||
var cryptDns = this.dnscryptProxy.LocalEndPoint;
|
||
if (cryptDns != null)
|
||
{
|
||
yield return cryptDns;
|
||
yield return cryptDns;
|
||
}
|
||
|
||
foreach (var fallbackDns in this.fastGithubConfig.FallbackDns)
|
||
{
|
||
if (Socket.OSSupportsIPv6 || fallbackDns.AddressFamily != AddressFamily.InterNetworkV6)
|
||
{
|
||
yield return fallbackDns;
|
||
}
|
||
}
|
||
}
|
||
|
||
/// <summary>
|
||
/// 解析域名
|
||
/// </summary>
|
||
/// <param name="dns"></param>
|
||
/// <param name="endPoint"></param>
|
||
/// <param name="fastSort"></param>
|
||
/// <param name="cancellationToken"></param>
|
||
/// <returns></returns>
|
||
private async Task<IList<IPAddress>> LookupAsync(IPEndPoint dns, DnsEndPoint endPoint, bool fastSort, CancellationToken cancellationToken = default)
|
||
{
|
||
var key = $"{dns}/{endPoint}";
|
||
var semaphore = this.semaphoreSlims.GetOrAdd(key, _ => new SemaphoreSlim(1, 1));
|
||
await semaphore.WaitAsync(CancellationToken.None);
|
||
|
||
try
|
||
{
|
||
if (this.dnsCache.TryGetValue<IList<IPAddress>>(key, out var value))
|
||
{
|
||
return value;
|
||
}
|
||
|
||
var result = await this.LookupCoreAsync(dns, endPoint, fastSort, cancellationToken);
|
||
return this.dnsCache.Set(key, result.Addresses, result.TimeToLive);
|
||
}
|
||
catch (OperationCanceledException)
|
||
{
|
||
this.logger.LogWarning($"{endPoint.Host}@{dns}:请求超时。");
|
||
return Array.Empty<IPAddress>();
|
||
}
|
||
catch (Exception ex)
|
||
{
|
||
this.logger.LogWarning($"{endPoint.Host}@{dns}:{ex.Message}");
|
||
return Array.Empty<IPAddress>();
|
||
}
|
||
finally
|
||
{
|
||
semaphore.Release();
|
||
}
|
||
}
|
||
|
||
/// <summary>
|
||
/// 解析域名
|
||
/// </summary>
|
||
/// <param name="dns"></param>
|
||
/// <param name="endPoint"></param>
|
||
/// <param name="fastSort"></param>
|
||
/// <param name="cancellationToken"></param>
|
||
/// <returns></returns>
|
||
private async Task<LookupResult> LookupCoreAsync(IPEndPoint dns, DnsEndPoint endPoint, bool fastSort, CancellationToken cancellationToken = default)
|
||
{
|
||
if (endPoint.Host == LOCALHOST)
|
||
{
|
||
var loopbacks = new List<IPAddress>();
|
||
if (Socket.OSSupportsIPv4 == true)
|
||
{
|
||
loopbacks.Add(IPAddress.Loopback);
|
||
}
|
||
if (Socket.OSSupportsIPv6 == true)
|
||
{
|
||
loopbacks.Add(IPAddress.IPv6Loopback);
|
||
}
|
||
return new LookupResult(loopbacks, TimeSpan.MaxValue);
|
||
}
|
||
|
||
var resolver = dns.Port == DNS_PORT
|
||
? (IRequestResolver)new TcpRequestResolver(dns)
|
||
: new UdpRequestResolver(dns, new TcpRequestResolver(dns), this.resolveTimeout);
|
||
|
||
var addressRecords = await GetAddressRecordsAsync(resolver, endPoint.Host, cancellationToken);
|
||
var addresses = (IList<IPAddress>)addressRecords
|
||
.Where(item => IPAddress.IsLoopback(item.IPAddress) == false)
|
||
.Select(item => item.IPAddress)
|
||
.ToArray();
|
||
|
||
if (addresses.Count == 0)
|
||
{
|
||
return new LookupResult(addresses, this.minTimeToLive);
|
||
}
|
||
|
||
if (fastSort == true)
|
||
{
|
||
addresses = await OrderByConnectAnyAsync(addresses, endPoint.Port, cancellationToken);
|
||
}
|
||
|
||
var timeToLive = addressRecords.Min(item => item.TimeToLive);
|
||
if (timeToLive <= TimeSpan.Zero)
|
||
{
|
||
timeToLive = this.minTimeToLive;
|
||
}
|
||
else if (timeToLive > this.maxTimeToLive)
|
||
{
|
||
timeToLive = this.maxTimeToLive;
|
||
}
|
||
|
||
return new LookupResult(addresses, timeToLive);
|
||
}
|
||
|
||
/// <summary>
|
||
/// 获取IP记录
|
||
/// </summary>
|
||
/// <param name="resolver"></param>
|
||
/// <param name="domain"></param>
|
||
/// <param name="cancellationToken"></param>
|
||
/// <returns></returns>
|
||
private static async Task<IList<IPAddressResourceRecord>> GetAddressRecordsAsync(IRequestResolver resolver, string domain, CancellationToken cancellationToken)
|
||
{
|
||
var addressRecords = new List<IPAddressResourceRecord>();
|
||
if (Socket.OSSupportsIPv4 == true)
|
||
{
|
||
var records = await GetRecordsAsync(RecordType.A);
|
||
addressRecords.AddRange(records);
|
||
}
|
||
|
||
if (Socket.OSSupportsIPv6 == true)
|
||
{
|
||
var records = await GetRecordsAsync(RecordType.AAAA);
|
||
addressRecords.AddRange(records);
|
||
}
|
||
return addressRecords;
|
||
|
||
|
||
async Task<IEnumerable<IPAddressResourceRecord>> GetRecordsAsync(RecordType recordType)
|
||
{
|
||
var request = new Request
|
||
{
|
||
RecursionDesired = true,
|
||
OperationCode = OperationCode.Query
|
||
};
|
||
|
||
request.Questions.Add(new Question(new Domain(domain), recordType));
|
||
var clientRequest = new ClientRequest(resolver, request);
|
||
var response = await clientRequest.Resolve(cancellationToken);
|
||
return response.AnswerRecords.OfType<IPAddressResourceRecord>();
|
||
}
|
||
}
|
||
|
||
|
||
/// <summary>
|
||
/// 连接速度排序
|
||
/// </summary>
|
||
/// <param name="addresses"></param>
|
||
/// <param name="port"></param>
|
||
/// <param name="cancellationToken"></param>
|
||
/// <returns></returns>
|
||
private static async Task<IList<IPAddress>> OrderByConnectAnyAsync(IList<IPAddress> addresses, int port, CancellationToken cancellationToken)
|
||
{
|
||
if (addresses.Count <= 1)
|
||
{
|
||
return addresses;
|
||
}
|
||
|
||
using var controlTokenSource = new CancellationTokenSource(connectTimeout);
|
||
using var linkedTokenSource = CancellationTokenSource.CreateLinkedTokenSource(cancellationToken, controlTokenSource.Token);
|
||
|
||
var connectTasks = addresses.Select(address => ConnectAsync(address, port, linkedTokenSource.Token));
|
||
var fastestAddress = await await Task.WhenAny(connectTasks);
|
||
controlTokenSource.Cancel();
|
||
|
||
if (fastestAddress == null || addresses.First().Equals(fastestAddress))
|
||
{
|
||
return addresses;
|
||
}
|
||
|
||
var list = new List<IPAddress> { fastestAddress };
|
||
foreach (var address in addresses)
|
||
{
|
||
if (address.Equals(fastestAddress) == false)
|
||
{
|
||
list.Add(address);
|
||
}
|
||
}
|
||
return list;
|
||
}
|
||
|
||
/// <summary>
|
||
/// 连接指定ip和端口
|
||
/// </summary>
|
||
/// <param name="address"></param>
|
||
/// <param name="port"></param>
|
||
/// <param name="cancellationToken"></param>
|
||
/// <returns></returns>
|
||
private static async Task<IPAddress?> ConnectAsync(IPAddress address, int port, CancellationToken cancellationToken)
|
||
{
|
||
try
|
||
{
|
||
using var socket = new Socket(address.AddressFamily, SocketType.Stream, ProtocolType.Tcp);
|
||
await socket.ConnectAsync(address, port, cancellationToken);
|
||
return address;
|
||
}
|
||
catch (Exception)
|
||
{
|
||
return default;
|
||
}
|
||
}
|
||
}
|
||
}
|