mirror of
https://github.com/fergalmoran/DnsServer.git
synced 2025-12-28 20:40:20 +00:00
81 lines
2.4 KiB
C#
81 lines
2.4 KiB
C#
/*
|
|
Technitium DNS Server
|
|
Copyright (C) 2021 Shreyas Zare (shreyas@technitium.com)
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
using DnsServerCore.Dns.ZoneManagers;
|
|
using TechnitiumLibrary.Net.Dns;
|
|
|
|
namespace DnsServerCore.Dns
|
|
{
|
|
class ResolverDnsCache : IDnsCache
|
|
{
|
|
#region variables
|
|
|
|
readonly protected AuthZoneManager _authZoneManager;
|
|
readonly protected CacheZoneManager _cacheZoneManager;
|
|
|
|
#endregion
|
|
|
|
#region constructor
|
|
|
|
public ResolverDnsCache(AuthZoneManager authZoneManager, CacheZoneManager cacheZoneManager)
|
|
{
|
|
_authZoneManager = authZoneManager;
|
|
_cacheZoneManager = cacheZoneManager;
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region public
|
|
|
|
public virtual DnsDatagram Query(DnsDatagram request, bool serveStale = false)
|
|
{
|
|
DnsDatagram authResponse = _authZoneManager.Query(request);
|
|
if (authResponse.Answer.Count > 0)
|
|
return authResponse;
|
|
|
|
DnsDatagram cacheResponse = _cacheZoneManager.Query(request, serveStale);
|
|
if (cacheResponse.Answer.Count > 0)
|
|
return cacheResponse;
|
|
|
|
if ((authResponse.Authority.Count > 0) && (cacheResponse.Authority.Count > 0))
|
|
{
|
|
if (authResponse.Authority[0].Name.Length >= cacheResponse.Authority[0].Name.Length)
|
|
return authResponse;
|
|
|
|
return cacheResponse;
|
|
}
|
|
else if (authResponse.Authority.Count > 0)
|
|
{
|
|
return authResponse;
|
|
}
|
|
else
|
|
{
|
|
return cacheResponse;
|
|
}
|
|
}
|
|
|
|
public void CacheResponse(DnsDatagram response)
|
|
{
|
|
_cacheZoneManager.CacheResponse(response);
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|