ServerUI.cs 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275
  1. /* Copyright (C) 2014-2017 Tal Aloni <tal.aloni.il@gmail.com>. All rights reserved.
  2. *
  3. * You can redistribute this program and/or modify it under the terms of
  4. * the GNU Lesser Public License as published by the Free Software Foundation,
  5. * either version 3 of the License, or (at your option) any later version.
  6. */
  7. using System;
  8. using System.Collections.Generic;
  9. using System.ComponentModel;
  10. using System.Data;
  11. using System.Drawing;
  12. using System.IO;
  13. using System.Net;
  14. using System.Net.NetworkInformation;
  15. using System.Net.Sockets;
  16. using System.Text;
  17. using System.Windows.Forms;
  18. using System.Xml;
  19. using SMBLibrary;
  20. using SMBLibrary.Authentication.GSSAPI;
  21. using SMBLibrary.Authentication.NTLM;
  22. using SMBLibrary.Server;
  23. using SMBLibrary.Win32.Security;
  24. using Utilities;
  25. namespace SMBServer
  26. {
  27. public partial class ServerUI : Form
  28. {
  29. public const string SettingsFileName = "Settings.xml";
  30. private SMBLibrary.Server.SMBServer m_server;
  31. private SMBLibrary.Server.NameServer m_nameServer;
  32. public ServerUI()
  33. {
  34. InitializeComponent();
  35. }
  36. private void ServerUI_Load(object sender, EventArgs e)
  37. {
  38. List<IPAddress> localIPs = NetworkInterfaceHelper.GetHostIPAddresses();
  39. KeyValuePairList<string, IPAddress> list = new KeyValuePairList<string, IPAddress>();
  40. list.Add("Any", IPAddress.Any);
  41. foreach (IPAddress address in localIPs)
  42. {
  43. list.Add(address.ToString(), address);
  44. }
  45. comboIPAddress.DataSource = list;
  46. comboIPAddress.DisplayMember = "Key";
  47. comboIPAddress.ValueMember = "Value";
  48. }
  49. private void btnStart_Click(object sender, EventArgs e)
  50. {
  51. IPAddress serverAddress = (IPAddress)comboIPAddress.SelectedValue;
  52. SMBTransportType transportType;
  53. if (rbtNetBiosOverTCP.Checked)
  54. {
  55. transportType = SMBTransportType.NetBiosOverTCP;
  56. }
  57. else
  58. {
  59. transportType = SMBTransportType.DirectTCPTransport;
  60. }
  61. NTLMAuthenticationProviderBase authenticationMechanism;
  62. if (chkIntegratedWindowsAuthentication.Checked)
  63. {
  64. authenticationMechanism = new IntegratedNTLMAuthenticationProvider();
  65. }
  66. else
  67. {
  68. UserCollection users;
  69. try
  70. {
  71. users = ReadUserSettings();
  72. }
  73. catch
  74. {
  75. MessageBox.Show("Cannot read " + SettingsFileName, "Error");
  76. return;
  77. }
  78. authenticationMechanism = new IndependentNTLMAuthenticationProvider(users.GetUserPassword);
  79. }
  80. SMBShareCollection shares;
  81. try
  82. {
  83. shares = ReadShareSettings();
  84. }
  85. catch (Exception)
  86. {
  87. MessageBox.Show("Cannot read " + SettingsFileName, "Error");
  88. return;
  89. }
  90. GSSProvider securityProvider = new GSSProvider(authenticationMechanism);
  91. m_server = new SMBLibrary.Server.SMBServer(shares, securityProvider);
  92. m_server.OnLogEntry += new EventHandler<LogEntry>(Server_OnLogEntry);
  93. try
  94. {
  95. m_server.Start(serverAddress, transportType, chkSMB1.Checked, chkSMB2.Checked);
  96. if (transportType == SMBTransportType.NetBiosOverTCP)
  97. {
  98. if (serverAddress.AddressFamily == AddressFamily.InterNetwork && !IPAddress.Equals(serverAddress, IPAddress.Any))
  99. {
  100. IPAddress subnetMask = NetworkInterfaceHelper.GetSubnetMask(serverAddress);
  101. m_nameServer = new NameServer(serverAddress, subnetMask);
  102. m_nameServer.Start();
  103. }
  104. }
  105. }
  106. catch (Exception ex)
  107. {
  108. MessageBox.Show(ex.Message, "Error");
  109. return;
  110. }
  111. btnStart.Enabled = false;
  112. btnStop.Enabled = true;
  113. comboIPAddress.Enabled = false;
  114. rbtDirectTCPTransport.Enabled = false;
  115. rbtNetBiosOverTCP.Enabled = false;
  116. chkSMB1.Enabled = false;
  117. chkSMB2.Enabled = false;
  118. chkIntegratedWindowsAuthentication.Enabled = false;
  119. }
  120. private XmlDocument GetSettingsXML()
  121. {
  122. string executableDirectory = Path.GetDirectoryName(Application.ExecutablePath) + "\\";
  123. XmlDocument document = GetXmlDocument(executableDirectory + SettingsFileName);
  124. return document;
  125. }
  126. private UserCollection ReadUserSettings()
  127. {
  128. UserCollection users = new UserCollection();
  129. XmlDocument document = GetSettingsXML();
  130. XmlNode usersNode = document.SelectSingleNode("Settings/Users");
  131. foreach (XmlNode userNode in usersNode.ChildNodes)
  132. {
  133. string accountName = userNode.Attributes["AccountName"].Value;
  134. string password = userNode.Attributes["Password"].Value;
  135. users.Add(accountName, password);
  136. }
  137. return users;
  138. }
  139. private SMBShareCollection ReadShareSettings()
  140. {
  141. SMBShareCollection shares = new SMBShareCollection();
  142. XmlDocument document = GetSettingsXML();
  143. XmlNode sharesNode = document.SelectSingleNode("Settings/Shares");
  144. foreach (XmlNode shareNode in sharesNode.ChildNodes)
  145. {
  146. string shareName = shareNode.Attributes["Name"].Value;
  147. string sharePath = shareNode.Attributes["Path"].Value;
  148. XmlNode readAccessNode = shareNode.SelectSingleNode("ReadAccess");
  149. List<string> readAccess = ReadAccessList(readAccessNode);
  150. XmlNode writeAccessNode = shareNode.SelectSingleNode("WriteAccess");
  151. List<string> writeAccess = ReadAccessList(writeAccessNode);
  152. FileSystemShare share = new FileSystemShare(shareName, new DirectoryFileSystem(sharePath));
  153. share.OnAccessRequest += delegate(object sender, AccessRequestArgs args)
  154. {
  155. bool hasReadAccess = Contains(readAccess, "Users") || Contains(readAccess, args.UserName);
  156. bool hasWriteAccess = Contains(writeAccess, "Users") || Contains(writeAccess, args.UserName);
  157. if (args.RequestedAccess == FileAccess.Read)
  158. {
  159. args.Allow = hasReadAccess;
  160. }
  161. else if (args.RequestedAccess == FileAccess.Write)
  162. {
  163. args.Allow = hasWriteAccess;
  164. }
  165. else // FileAccess.ReadWrite
  166. {
  167. args.Allow = hasReadAccess && hasWriteAccess;
  168. }
  169. };
  170. shares.Add(share);
  171. }
  172. return shares;
  173. }
  174. private List<string> ReadAccessList(XmlNode node)
  175. {
  176. List<string> result = new List<string>();
  177. if (node != null)
  178. {
  179. string accounts = node.Attributes["Accounts"].Value;
  180. if (accounts == "*")
  181. {
  182. result.Add("Users");
  183. }
  184. else
  185. {
  186. string[] splitted = accounts.Split(',');
  187. result.AddRange(splitted);
  188. }
  189. }
  190. return result;
  191. }
  192. private void btnStop_Click(object sender, EventArgs e)
  193. {
  194. m_server.Stop();
  195. btnStart.Enabled = true;
  196. btnStop.Enabled = false;
  197. comboIPAddress.Enabled = true;
  198. rbtDirectTCPTransport.Enabled = true;
  199. rbtNetBiosOverTCP.Enabled = true;
  200. chkSMB1.Enabled = true;
  201. chkSMB2.Enabled = true;
  202. chkIntegratedWindowsAuthentication.Enabled = true;
  203. if (m_nameServer != null)
  204. {
  205. m_nameServer.Stop();
  206. }
  207. }
  208. private void Server_OnLogEntry(object sender, LogEntry entry)
  209. {
  210. string timestamp = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss ");
  211. string message = String.Format("{0} {1} {2}", entry.Severity.ToString().PadRight(12), timestamp, entry.Message);
  212. System.Diagnostics.Debug.Print(message);
  213. }
  214. private void chkSMB1_CheckedChanged(object sender, EventArgs e)
  215. {
  216. if (!chkSMB1.Checked)
  217. {
  218. chkSMB2.Checked = true;
  219. }
  220. }
  221. private void chkSMB2_CheckedChanged(object sender, EventArgs e)
  222. {
  223. if (!chkSMB2.Checked)
  224. {
  225. chkSMB1.Checked = true;
  226. }
  227. }
  228. public static XmlDocument GetXmlDocument(string path)
  229. {
  230. XmlDocument doc = new XmlDocument();
  231. doc.Load(path);
  232. return doc;
  233. }
  234. public static bool Contains(List<string> list, string value)
  235. {
  236. return (IndexOf(list, value) >= 0);
  237. }
  238. public static int IndexOf(List<string> list, string value)
  239. {
  240. for (int index = 0; index < list.Count; index++)
  241. {
  242. if (string.Equals(list[index], value, StringComparison.InvariantCultureIgnoreCase))
  243. {
  244. return index;
  245. }
  246. }
  247. return -1;
  248. }
  249. }
  250. }