Browse Source

DHCP: Fix exception when read unavailable Option 55 `Parameter Request List'

HOME 2 years ago
parent
commit
9361ced0be

+ 5 - 5
DhcpServer/App.config

@@ -1,12 +1,12 @@
-<?xml version="1.0" encoding="utf-8" ?>
+<?xml version="1.0" encoding="utf-8"?>
 <configuration>
 	<configSections>
-		<sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
-			<section name="DhcpServer.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
+		<sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+			<section name="DhcpServer.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false"/>
 		</sectionGroup>
 	</configSections>
 	<startup>
-		<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
+		<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/>
 	</startup>
 	<applicationSettings>
 		<DhcpServer.Properties.Settings>
@@ -57,4 +57,4 @@
 			</setting>
 		</DhcpServer.Properties.Settings>
 	</applicationSettings>
-</configuration>
+</configuration>

+ 6 - 14
DhcpServer/DhcpProgram.cs

@@ -4,7 +4,6 @@ using SharpPcap;
 using SharpPcap.LibPcap;
 using System;
 using System.Collections.Generic;
-using System.Configuration;
 using System.Linq;
 using System.Net;
 using System.Net.Sockets;
@@ -75,11 +74,11 @@ namespace DhcpServer
             var socket = new Socket(_listenOn.AddressFamily, SocketType.Dgram, ProtocolType.Udp)
             {
                 EnableBroadcast = true,
-                SendBufferSize = 65536,
-                ReceiveBufferSize = 65536
+                SendBufferSize = 1500,
+                ReceiveBufferSize = 1500
             };
             socket.Bind(_listenOn);
-            var buffer = new byte[65536];
+            var buffer = new byte[1500];
             EndPoint remoteEndPoint = new IPEndPoint(IPAddress.Any, 68);
             var polling = DateTime.Now;
 
@@ -115,7 +114,7 @@ namespace DhcpServer
                             bytes = reply.WriteToBuffer(buffer);
                             var to = new IPEndPoint(IPAddress.Broadcast, 68);
                             Console.WriteLine($"Send {bytes} bytes to {to} {reply.MessageType} by {reply.ClientMacAddressHex}");
-                            socket.SendTo(buffer, 0, bytes, SocketFlags.None, to);
+                            var sent = socket.SendTo(buffer, 0, bytes, SocketFlags.None, to);
                         }
                     }
                     catch (Exception e)
@@ -135,7 +134,7 @@ namespace DhcpServer
 
             var clientMac = packet.ClientMacAddressHex;
             Console.WriteLine($" {packet.MessageType} by {clientMac}");
-            Console.WriteLine($" {packet.Vendor ?? "Unknown Vendor"} / {packet.UserClass ?? "Unknown Class"}");
+            Console.WriteLine($" {packet.Vendor ?? "Unknown Vendor"} / {packet.UserClass ?? "Unknown Class"} / {packet.HostName ?? "Unknown HostName"}");
 
             DhcpMessageType reply;
             switch (packet.MessageType)
@@ -160,17 +159,10 @@ namespace DhcpServer
             else
             {
                 // extract params
-                var requestParameters = packet.Options[DhcpOption.ParameterRequestList];
                 var hostName = packet.HostName;
                 var userClass = packet.UserClass;
                 var vendor = packet.Vendor;
 
-                //byte arch = 0;
-                //if (packet.Options.TryGetValue(DhcpOption.ClientIdentifier, out var bufArch))
-                //{
-                //    arch = bufArch?.FirstOrDefault() ?? 0;
-                //}
-
                 // Allocate ip address
 
                 PoolSlot allocateSlot = null;
@@ -304,7 +296,7 @@ namespace DhcpServer
         private static void InitConfig()
         {
             _nic = LibPcapLiveDeviceList.Instance.FirstOrDefault(p => p.Addresses.Any(q => Equals(q.Addr.ipAddress, _listenOn.Address)));
-            if (null == _nic) throw new ConfigurationErrorsException("Device not found");
+            //if (null == _nic) throw new ConfigurationErrorsException("Device not found");
 
             var slots = new PoolSlot[_poolSize];
             slots[0] = new PoolSlot(_poolStart);

+ 2 - 1
DhcpServer/DhcpServer.csproj

@@ -8,10 +8,11 @@
     <OutputType>Exe</OutputType>
     <RootNamespace>DhcpServer</RootNamespace>
     <AssemblyName>DhcpServer</AssemblyName>
-    <TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
+    <TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
     <FileAlignment>512</FileAlignment>
     <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
     <Deterministic>true</Deterministic>
+    <TargetFrameworkProfile />
   </PropertyGroup>
   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
     <PlatformTarget>AnyCPU</PlatformTarget>

+ 21 - 12
DhcpServer/Properties/Settings.Designer.cs

@@ -12,7 +12,7 @@ namespace DhcpServer.Properties {
     
     
     [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
-    [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "16.10.0.0")]
+    [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "17.5.0.0")]
     internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
         
         private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
@@ -61,15 +61,6 @@ namespace DhcpServer.Properties {
         
         [global::System.Configuration.ApplicationScopedSettingAttribute()]
         [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-        [global::System.Configuration.DefaultSettingValueAttribute("192.168.233.100")]
-        public string PoolStart {
-            get {
-                return ((string)(this["PoolStart"]));
-            }
-        }
-        
-        [global::System.Configuration.ApplicationScopedSettingAttribute()]
-        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
         [global::System.Configuration.DefaultSettingValueAttribute("192.168.233.1")]
         public string Router {
             get {
@@ -133,7 +124,16 @@ namespace DhcpServer.Properties {
         
         [global::System.Configuration.ApplicationScopedSettingAttribute()]
         [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-        [global::System.Configuration.DefaultSettingValueAttribute("i386_ipxe.efi")]
+        [global::System.Configuration.DefaultSettingValueAttribute("192.168.233.233")]
+        public string PoolStart {
+            get {
+                return ((string)(this["PoolStart"]));
+            }
+        }
+        
+        [global::System.Configuration.ApplicationScopedSettingAttribute()]
+        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+        [global::System.Configuration.DefaultSettingValueAttribute("i386_ipxe-http.efi")]
         public string FileName_UEFI_I386 {
             get {
                 return ((string)(this["FileName_UEFI_I386"]));
@@ -142,11 +142,20 @@ namespace DhcpServer.Properties {
         
         [global::System.Configuration.ApplicationScopedSettingAttribute()]
         [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-        [global::System.Configuration.DefaultSettingValueAttribute("x86_64_ipxe.efi")]
+        [global::System.Configuration.DefaultSettingValueAttribute("x86_64_ipxe-http.efi")]
         public string FileName_UEFI_x64 {
             get {
                 return ((string)(this["FileName_UEFI_x64"]));
             }
         }
+        
+        [global::System.Configuration.ApplicationScopedSettingAttribute()]
+        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+        [global::System.Configuration.DefaultSettingValueAttribute("http://192.168.5.66:8233/ipxe.efi")]
+        public string FileName_UEFI_HTTP {
+            get {
+                return ((string)(this["FileName_UEFI_HTTP"]));
+            }
+        }
     }
 }

+ 8 - 5
DhcpServer/Properties/Settings.settings

@@ -14,9 +14,6 @@
     <Setting Name="ListenOn" Type="System.String" Scope="Application">
       <Value Profile="(Default)">192.168.233.233</Value>
     </Setting>
-    <Setting Name="PoolStart" Type="System.String" Scope="Application">
-      <Value Profile="(Default)">192.168.233.100</Value>
-    </Setting>
     <Setting Name="Router" Type="System.String" Scope="Application">
       <Value Profile="(Default)">192.168.233.1</Value>
     </Setting>
@@ -38,11 +35,17 @@
     <Setting Name="FileName_iPXE_HTTP" Type="System.String" Scope="Application">
       <Value Profile="(Default)">http://192.168.233.233:8233/boot/ipxe</Value>
     </Setting>
+    <Setting Name="PoolStart" Type="System.String" Scope="Application">
+      <Value Profile="(Default)">192.168.233.233</Value>
+    </Setting>
     <Setting Name="FileName_UEFI_I386" Type="System.String" Scope="Application">
-      <Value Profile="(Default)">i386_ipxe.efi</Value>
+      <Value Profile="(Default)">i386_ipxe-http.efi</Value>
     </Setting>
     <Setting Name="FileName_UEFI_x64" Type="System.String" Scope="Application">
-      <Value Profile="(Default)">x86_64_ipxe.efi</Value>
+      <Value Profile="(Default)">x86_64_ipxe-http.efi</Value>
+    </Setting>
+    <Setting Name="FileName_UEFI_HTTP" Type="System.String" Scope="Application">
+      <Value Profile="(Default)">http://192.168.5.66:8233/ipxe.efi</Value>
     </Setting>
   </Settings>
 </SettingsFile>

+ 3 - 3
DhcpServer/Protocol/DhcpPacket.cs

@@ -85,12 +85,12 @@ namespace DhcpServer
 
         public string UserClass
         {
-            get => Options.MapValue(DhcpOption.UserClass, value => Encoding.ASCII.GetString(value));
+            get => Options.MapValue(DhcpOption.UserClass, value => Encoding.ASCII.GetString(value))?.Trim().Trim('\0');
             set => Options[DhcpOption.UserClass] = Encoding.ASCII.GetBytes(value);
         }
 
-        public string HostName => Options.MapValue(DhcpOption.HostName, v => Encoding.ASCII.GetString(v));
-        public string Vendor => Options.MapValue(DhcpOption.Vendor, v => Encoding.ASCII.GetString(v));
+        public string HostName => Options.MapValue(DhcpOption.HostName, v => Encoding.ASCII.GetString(v))?.Trim().Trim('\0');
+        public string Vendor => Options.MapValue(DhcpOption.Vendor, v => Encoding.ASCII.GetString(v))?.Trim().Trim('\0');
 
         public TimeSpan LeaseTime
         {