123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191 |
- /*
- Technitium DNS Server
- Copyright (C) 2024 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.ApplicationCommon;
- using System;
- using System.IO;
- using System.Net;
- using System.Text.Json;
- using System.Threading.Tasks;
- using TechnitiumLibrary;
- using TechnitiumLibrary.Net;
- using TechnitiumLibrary.Net.Dns;
- using TechnitiumLibrary.Net.Dns.ResourceRecords;
- namespace DropRequests
- {
- public sealed class App : IDnsApplication, IDnsRequestController
- {
- #region variables
- bool _enableBlocking;
- bool _dropMalformedRequests;
- NetworkAddress[] _allowedNetworks;
- NetworkAddress[] _blockedNetworks;
- BlockedQuestion[] _blockedQuestions;
- #endregion
- #region IDisposable
- public void Dispose()
- {
- //do nothing
- }
- #endregion
- #region public
- public async Task InitializeAsync(IDnsServer dnsServer, string config)
- {
- using JsonDocument jsonDocument = JsonDocument.Parse(config);
- JsonElement jsonConfig = jsonDocument.RootElement;
- _enableBlocking = jsonConfig.GetProperty("enableBlocking").GetBoolean();
- if (jsonConfig.TryGetProperty("dropMalformedRequests", out JsonElement jsonDropMalformedRequests))
- _dropMalformedRequests = jsonDropMalformedRequests.GetBoolean();
- else
- _dropMalformedRequests = false;
- if (jsonConfig.TryReadArray("allowedNetworks", NetworkAddress.Parse, out NetworkAddress[] allowedNetworks))
- _allowedNetworks = allowedNetworks;
- else
- _allowedNetworks = Array.Empty<NetworkAddress>();
- if (jsonConfig.TryReadArray("blockedNetworks", NetworkAddress.Parse, out NetworkAddress[] blockedNetworks))
- _blockedNetworks = blockedNetworks;
- else
- _blockedNetworks = Array.Empty<NetworkAddress>();
- if (jsonConfig.TryReadArray("blockedQuestions", delegate (JsonElement blockedQuestion) { return new BlockedQuestion(blockedQuestion); }, out BlockedQuestion[] blockedQuestions))
- _blockedQuestions = blockedQuestions;
- else
- _blockedQuestions = Array.Empty<BlockedQuestion>();
- if (!jsonConfig.TryGetProperty("dropMalformedRequests", out _))
- {
- config = config.Replace("\"allowedNetworks\"", "\"dropMalformedRequests\": false,\r\n \"allowedNetworks\"");
- await File.WriteAllTextAsync(Path.Combine(dnsServer.ApplicationFolder, "dnsApp.config"), config);
- }
- }
- public Task<DnsRequestControllerAction> GetRequestActionAsync(DnsDatagram request, IPEndPoint remoteEP, DnsTransportProtocol protocol)
- {
- if (!_enableBlocking)
- return Task.FromResult(DnsRequestControllerAction.Allow);
- if (_dropMalformedRequests && (request.ParsingException is not null))
- return Task.FromResult(DnsRequestControllerAction.DropSilently);
- IPAddress remoteIp = remoteEP.Address;
- foreach (NetworkAddress allowedNetwork in _allowedNetworks)
- {
- if (allowedNetwork.Contains(remoteIp))
- return Task.FromResult(DnsRequestControllerAction.Allow);
- }
- foreach (NetworkAddress blockedNetwork in _blockedNetworks)
- {
- if (blockedNetwork.Contains(remoteIp))
- return Task.FromResult(DnsRequestControllerAction.DropSilently);
- }
- if (request.Question.Count != 1)
- return Task.FromResult(DnsRequestControllerAction.DropSilently);
- DnsQuestionRecord requestQuestion = request.Question[0];
- foreach (BlockedQuestion blockedQuestion in _blockedQuestions)
- {
- if (blockedQuestion.Matches(requestQuestion))
- return Task.FromResult(DnsRequestControllerAction.DropSilently);
- }
- return Task.FromResult(DnsRequestControllerAction.Allow);
- }
- #endregion
- #region properties
- public string Description
- { get { return "Drops incoming DNS requests that match list of blocked networks or blocked questions."; } }
- #endregion
- class BlockedQuestion
- {
- #region variables
- readonly string _name;
- readonly bool _blockZone;
- readonly DnsResourceRecordType _type;
- #endregion
- #region constructor
- public BlockedQuestion(JsonElement jsonQuestion)
- {
- if (jsonQuestion.TryGetProperty("name", out JsonElement jsonName))
- _name = jsonName.GetString().TrimEnd('.');
- if (jsonQuestion.TryGetProperty("blockZone", out JsonElement jsonBlockZone))
- _blockZone = jsonBlockZone.GetBoolean();
- if (jsonQuestion.TryGetProperty("type", out JsonElement jsonType) && Enum.TryParse(jsonType.GetString(), true, out DnsResourceRecordType type))
- _type = type;
- else
- _type = DnsResourceRecordType.Unknown;
- }
- #endregion
- #region public
- public bool Matches(DnsQuestionRecord question)
- {
- if (_name is not null)
- {
- if (_blockZone)
- {
- if ((_name.Length > 0) && !_name.Equals(question.Name, StringComparison.OrdinalIgnoreCase) && !question.Name.EndsWith("." + _name, StringComparison.OrdinalIgnoreCase))
- return false;
- }
- else
- {
- if (!_name.Equals(question.Name, StringComparison.OrdinalIgnoreCase))
- return false;
- }
- }
- if ((_type != DnsResourceRecordType.Unknown) && (_type != question.Type))
- return false;
- return true;
- }
- #endregion
- }
- }
- }
|