123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366 |
- /*
- 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.Dns.ResourceRecords;
- using System;
- using System.Collections.Generic;
- using TechnitiumLibrary.Net.Dns;
- using TechnitiumLibrary.Net.Dns.ResourceRecords;
- namespace DnsServerCore.Dns.Zones
- {
- class ForwarderZone : ApexZone
- {
- #region constructor
- public ForwarderZone(DnsServer dnsServer, AuthZoneInfo zoneInfo)
- : base(dnsServer, zoneInfo)
- {
- InitNotify();
- InitRecordExpiry();
- }
- public ForwarderZone(DnsServer dnsServer, string name)
- : base(dnsServer, name)
- {
- InitZone();
- InitNotify();
- InitRecordExpiry();
- }
- public ForwarderZone(DnsServer dnsServer, string name, DnsTransportProtocol forwarderProtocol, string forwarder, bool dnssecValidation, DnsForwarderRecordProxyType proxyType, string proxyAddress, ushort proxyPort, string proxyUsername, string proxyPassword, string fwdRecordComments)
- : base(dnsServer, name)
- {
- DnsResourceRecord fwdRecord = new DnsResourceRecord(name, DnsResourceRecordType.FWD, DnsClass.IN, 0, new DnsForwarderRecordData(forwarderProtocol, forwarder, dnssecValidation, proxyType, proxyAddress, proxyPort, proxyUsername, proxyPassword, 0));
- if (!string.IsNullOrEmpty(fwdRecordComments))
- fwdRecord.GetAuthGenericRecordInfo().Comments = fwdRecordComments;
- fwdRecord.GetAuthGenericRecordInfo().LastModified = DateTime.UtcNow;
- _entries[DnsResourceRecordType.FWD] = [fwdRecord];
- InitZone();
- InitNotify();
- InitRecordExpiry();
- }
- #endregion
- #region internal
- internal virtual void InitZone()
- {
- //init forwarder zone with dummy SOA record
- DnsSOARecordData soa = new DnsSOARecordData(_dnsServer.ServerDomain, "invalid", 1, 900, 300, 604800, 900);
- DnsResourceRecord soaRecord = new DnsResourceRecord(_name, DnsResourceRecordType.SOA, DnsClass.IN, 0, soa);
- soaRecord.GetAuthGenericRecordInfo().LastModified = DateTime.UtcNow;
- _entries[DnsResourceRecordType.SOA] = [soaRecord];
- }
- #endregion
- #region public
- public override string GetZoneTypeName()
- {
- return "Conditional Forwarder";
- }
- public override void SetRecords(DnsResourceRecordType type, IReadOnlyList<DnsResourceRecord> records)
- {
- switch (type)
- {
- case DnsResourceRecordType.CNAME:
- throw new InvalidOperationException("Cannot set CNAME record at zone apex.");
- case DnsResourceRecordType.SOA:
- if ((records.Count != 1) || !records[0].Name.Equals(_name, StringComparison.OrdinalIgnoreCase))
- throw new InvalidOperationException("Invalid SOA record.");
- DnsResourceRecord newSoaRecord = records[0];
- DnsSOARecordData newSoa = newSoaRecord.RDATA as DnsSOARecordData;
- if (newSoaRecord.OriginalTtlValue > newSoa.Expire)
- throw new DnsServerException("Failed to set records: TTL cannot be greater than SOA EXPIRE.");
- if (newSoa.Retry > newSoa.Refresh)
- throw new DnsServerException("Failed to set records: SOA RETRY cannot be greater than SOA REFRESH.");
- if (newSoa.Refresh > newSoa.Expire)
- throw new DnsServerException("Failed to set records: SOA REFRESH cannot be greater than SOA EXPIRE.");
- {
- //reset fixed record values
- DnsSOARecordData modifiedSoa = new DnsSOARecordData(newSoa.PrimaryNameServer, "invalid", newSoa.Serial, newSoa.Refresh, newSoa.Retry, newSoa.Expire, newSoa.Minimum);
- newSoaRecord = new DnsResourceRecord(_name, DnsResourceRecordType.SOA, DnsClass.IN, 0, modifiedSoa) { Tag = newSoaRecord.Tag };
- records = [newSoaRecord];
- }
- //remove any record info except serial date scheme and comments
- bool useSoaSerialDateScheme;
- string comments;
- {
- SOARecordInfo recordInfo = newSoaRecord.GetAuthSOARecordInfo();
- useSoaSerialDateScheme = recordInfo.UseSoaSerialDateScheme;
- comments = recordInfo.Comments;
- }
- newSoaRecord.Tag = null; //remove old record info
- {
- SOARecordInfo recordInfo = newSoaRecord.GetAuthSOARecordInfo();
- recordInfo.UseSoaSerialDateScheme = useSoaSerialDateScheme;
- recordInfo.Comments = comments;
- recordInfo.LastModified = DateTime.UtcNow;
- }
- //setting new SOA
- CommitAndIncrementSerial(null, records);
- TriggerNotify();
- break;
- case DnsResourceRecordType.DS:
- case DnsResourceRecordType.DNSKEY:
- case DnsResourceRecordType.RRSIG:
- case DnsResourceRecordType.NSEC:
- case DnsResourceRecordType.NSEC3PARAM:
- case DnsResourceRecordType.NSEC3:
- throw new InvalidOperationException("Cannot set DNSSEC records.");
- default:
- if (records[0].OriginalTtlValue > GetZoneSoaExpire())
- throw new DnsServerException("Failed to set records: TTL cannot be greater than SOA EXPIRE.");
- if (!TrySetRecords(type, records, out IReadOnlyList<DnsResourceRecord> deletedRecords))
- throw new DnsServerException("Failed to set records. Please try again.");
- CommitAndIncrementSerial(deletedRecords, records);
- TriggerNotify();
- break;
- }
- }
- public override void AddRecord(DnsResourceRecord record)
- {
- switch (record.Type)
- {
- case DnsResourceRecordType.DS:
- case DnsResourceRecordType.DNSKEY:
- case DnsResourceRecordType.RRSIG:
- case DnsResourceRecordType.NSEC:
- case DnsResourceRecordType.NSEC3PARAM:
- case DnsResourceRecordType.NSEC3:
- throw new InvalidOperationException("Cannot set DNSSEC records.");
- default:
- if (record.OriginalTtlValue > GetZoneSoaExpire())
- throw new DnsServerException("Failed to add record: TTL cannot be greater than SOA EXPIRE.");
- AddRecord(record, out IReadOnlyList<DnsResourceRecord> addedRecords, out IReadOnlyList<DnsResourceRecord> deletedRecords);
- if (addedRecords.Count > 0)
- {
- CommitAndIncrementSerial(deletedRecords, addedRecords);
- TriggerNotify();
- }
- break;
- }
- }
- public override bool DeleteRecords(DnsResourceRecordType type)
- {
- switch (type)
- {
- case DnsResourceRecordType.SOA:
- throw new InvalidOperationException("Cannot delete SOA record.");
- default:
- if (_entries.TryRemove(type, out IReadOnlyList<DnsResourceRecord> removedRecords))
- {
- CommitAndIncrementSerial(removedRecords);
- TriggerNotify();
- return true;
- }
- return false;
- }
- }
- public override bool DeleteRecord(DnsResourceRecordType type, DnsResourceRecordData rdata)
- {
- switch (type)
- {
- case DnsResourceRecordType.SOA:
- throw new InvalidOperationException("Cannot delete SOA record.");
- default:
- if (TryDeleteRecord(type, rdata, out DnsResourceRecord deletedRecord))
- {
- CommitAndIncrementSerial([deletedRecord]);
- TriggerNotify();
- return true;
- }
- return false;
- }
- }
- public override void UpdateRecord(DnsResourceRecord oldRecord, DnsResourceRecord newRecord)
- {
- switch (oldRecord.Type)
- {
- case DnsResourceRecordType.SOA:
- throw new InvalidOperationException("Cannot update record: use SetRecords() for " + oldRecord.Type.ToString() + " record");
- default:
- if (oldRecord.Type != newRecord.Type)
- throw new InvalidOperationException("Old and new record types do not match.");
- if (newRecord.OriginalTtlValue > GetZoneSoaExpire())
- throw new DnsServerException("Cannot update record: TTL cannot be greater than SOA EXPIRE.");
- if (!TryDeleteRecord(oldRecord.Type, oldRecord.RDATA, out DnsResourceRecord deletedRecord))
- throw new DnsServerException("Cannot update record: the record does not exists to be updated.");
- AddRecord(newRecord, out IReadOnlyList<DnsResourceRecord> addedRecords, out IReadOnlyList<DnsResourceRecord> deletedRecords);
- List<DnsResourceRecord> allDeletedRecords = new List<DnsResourceRecord>(deletedRecords.Count + 1);
- allDeletedRecords.Add(deletedRecord);
- allDeletedRecords.AddRange(deletedRecords);
- CommitAndIncrementSerial(allDeletedRecords, addedRecords);
- TriggerNotify();
- break;
- }
- }
- public override IReadOnlyList<DnsResourceRecord> QueryRecords(DnsResourceRecordType type, bool dnssecOk)
- {
- if (type == DnsResourceRecordType.SOA)
- return []; //forwarder zone is not authoritative and contains dummy SOA record
- return base.QueryRecords(type, dnssecOk);
- }
- #endregion
- #region properties
- public override bool Disabled
- {
- get { return base.Disabled; }
- set
- {
- if (base.Disabled == value)
- return;
- base.Disabled = value; //set value early to be able to use it for notify
- if (value)
- DisableNotifyTimer();
- else
- TriggerNotify();
- }
- }
- public override AuthZoneQueryAccess QueryAccess
- {
- get { return base.QueryAccess; }
- set
- {
- switch (value)
- {
- case AuthZoneQueryAccess.AllowOnlyZoneNameServers:
- case AuthZoneQueryAccess.AllowZoneNameServersAndUseSpecifiedNetworkACL:
- throw new ArgumentException("The Query Access option is invalid for " + GetZoneTypeName() + " zones: " + value.ToString(), nameof(QueryAccess));
- }
- base.QueryAccess = value;
- }
- }
- public override AuthZoneTransfer ZoneTransfer
- {
- get { return base.ZoneTransfer; }
- set
- {
- switch (value)
- {
- case AuthZoneTransfer.AllowOnlyZoneNameServers:
- case AuthZoneTransfer.AllowZoneNameServersAndUseSpecifiedNetworkACL:
- throw new ArgumentException("The Zone Transfer option is invalid for " + GetZoneTypeName() + " zones: " + value.ToString(), nameof(ZoneTransfer));
- }
- base.ZoneTransfer = value;
- }
- }
- public override AuthZoneNotify Notify
- {
- get { return base.Notify; }
- set
- {
- switch (value)
- {
- case AuthZoneNotify.ZoneNameServers:
- case AuthZoneNotify.BothZoneAndSpecifiedNameServers:
- throw new ArgumentException("The Notify option is invalid for " + GetZoneTypeName() + " zones: " + value.ToString(), nameof(Notify));
- case AuthZoneNotify.SeparateNameServersForCatalogAndMemberZones:
- if (this is CatalogZone)
- break;
- throw new ArgumentException("The Notify option is invalid for " + GetZoneTypeName() + " zones: " + value.ToString(), nameof(Notify));
- }
- base.Notify = value;
- }
- }
- public override AuthZoneUpdate Update
- {
- get { return base.Update; }
- set
- {
- switch (value)
- {
- case AuthZoneUpdate.AllowOnlyZoneNameServers:
- case AuthZoneUpdate.AllowZoneNameServersAndUseSpecifiedNetworkACL:
- throw new ArgumentException("The Dynamic Updates option is invalid for " + GetZoneTypeName() + " zones: " + value.ToString(), nameof(Update));
- }
- base.Update = value;
- }
- }
- #endregion
- }
- }
|