Files
DnsServer/DnsServerWindowsService/Program.cs

154 lines
5.1 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 Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using System;
using System.Reflection;
using TechnitiumLibrary.Net.Firewall;
namespace DnsServerWindowsService
{
static class Program
{
public static void Main(string[] args)
{
#region check windows firewall entry
string appPath = Assembly.GetEntryAssembly().Location;
if (appPath.EndsWith(".dll", StringComparison.OrdinalIgnoreCase))
appPath = appPath.Substring(0, appPath.Length - 4) + ".exe";
if (!WindowsFirewallEntryExists(appPath))
AddWindowsFirewallEntry(appPath);
#endregion
CreateHostBuilder(args).Build().Run();
}
public static IHostBuilder CreateHostBuilder(string[] args)
{
return Host.CreateDefaultBuilder(args)
.ConfigureServices((hostContext, services) =>
{
services.AddHostedService<DnsServiceWorker>();
})
.UseWindowsService();
}
#region private
private static bool WindowsFirewallEntryExists(string appPath)
{
switch (Environment.OSVersion.Platform)
{
case PlatformID.Win32NT:
if (Environment.OSVersion.Version.Major > 5)
{
//vista and above
try
{
return WindowsFirewall.RuleExistsVista("", appPath) == RuleStatus.Allowed;
}
catch
{
return false;
}
}
else
{
try
{
return WindowsFirewall.ApplicationExists(appPath) == RuleStatus.Allowed;
}
catch
{
return false;
}
}
default:
return false;
}
}
private static bool AddWindowsFirewallEntry(string appPath)
{
switch (Environment.OSVersion.Platform)
{
case PlatformID.Win32NT:
if (Environment.OSVersion.Version.Major > 5)
{
//vista and above
try
{
RuleStatus status = WindowsFirewall.RuleExistsVista("", appPath);
switch (status)
{
case RuleStatus.Blocked:
case RuleStatus.Disabled:
WindowsFirewall.RemoveRuleVista("", appPath);
break;
case RuleStatus.Allowed:
return true;
}
WindowsFirewall.AddRuleVista("Technitium DNS Server", "Allow incoming connection request to the DNS server.", FirewallAction.Allow, appPath, Protocol.ANY, null, null, null, null, InterfaceTypeFlags.All, true, Direction.Inbound, true);
return true;
}
catch
{ }
}
else
{
try
{
RuleStatus status = WindowsFirewall.ApplicationExists(appPath);
switch (status)
{
case RuleStatus.Disabled:
WindowsFirewall.RemoveApplication(appPath);
break;
case RuleStatus.Allowed:
return true;
}
WindowsFirewall.AddApplication("Technitium DNS Server", appPath);
return true;
}
catch
{ }
}
break;
}
return false;
}
#endregion
}
}