ServerUI.cs 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272
  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;
  24. using SMBLibrary.Win32.Security;
  25. using Utilities;
  26. namespace SMBServer
  27. {
  28. public partial class ServerUI : Form
  29. {
  30. public const string SettingsFileName = "Settings.xml";
  31. private SMBLibrary.Server.SMBServer m_server;
  32. private SMBLibrary.Server.NameServer m_nameServer;
  33. private LogWriter m_logWriter;
  34. public ServerUI()
  35. {
  36. InitializeComponent();
  37. }
  38. private void ServerUI_Load(object sender, EventArgs e)
  39. {
  40. List<IPAddress> localIPs = NetworkInterfaceHelper.GetHostIPAddresses();
  41. KeyValuePairList<string, IPAddress> list = new KeyValuePairList<string, IPAddress>();
  42. list.Add("Any", IPAddress.Any);
  43. foreach (IPAddress address in localIPs)
  44. {
  45. list.Add(address.ToString(), address);
  46. }
  47. comboIPAddress.DataSource = list;
  48. comboIPAddress.DisplayMember = "Key";
  49. comboIPAddress.ValueMember = "Value";
  50. }
  51. private void btnStart_Click(object sender, EventArgs e)
  52. {
  53. IPAddress serverAddress = (IPAddress)comboIPAddress.SelectedValue;
  54. SMBTransportType transportType;
  55. if (rbtNetBiosOverTCP.Checked)
  56. {
  57. transportType = SMBTransportType.NetBiosOverTCP;
  58. }
  59. else
  60. {
  61. transportType = SMBTransportType.DirectTCPTransport;
  62. }
  63. NTLMAuthenticationProviderBase authenticationMechanism;
  64. if (chkIntegratedWindowsAuthentication.Checked)
  65. {
  66. authenticationMechanism = new IntegratedNTLMAuthenticationProvider();
  67. }
  68. else
  69. {
  70. UserCollection users;
  71. try
  72. {
  73. users = ReadUserSettings();
  74. }
  75. catch
  76. {
  77. MessageBox.Show("Cannot read " + SettingsFileName, "Error");
  78. return;
  79. }
  80. authenticationMechanism = new IndependentNTLMAuthenticationProvider(users.GetUserPassword);
  81. }
  82. SMBShareCollection shares;
  83. try
  84. {
  85. shares = ReadShareSettings();
  86. }
  87. catch (Exception)
  88. {
  89. MessageBox.Show("Cannot read " + SettingsFileName, "Error");
  90. return;
  91. }
  92. GSSProvider securityProvider = new GSSProvider(authenticationMechanism);
  93. m_server = new SMBLibrary.Server.SMBServer(shares, securityProvider);
  94. m_logWriter = new LogWriter();
  95. m_server.LogEntryAdded += new EventHandler<LogEntry>(m_logWriter.OnLogEntryAdded);
  96. try
  97. {
  98. m_server.Start(serverAddress, transportType, chkSMB1.Checked, chkSMB2.Checked);
  99. if (transportType == SMBTransportType.NetBiosOverTCP)
  100. {
  101. if (serverAddress.AddressFamily == AddressFamily.InterNetwork && !IPAddress.Equals(serverAddress, IPAddress.Any))
  102. {
  103. IPAddress subnetMask = NetworkInterfaceHelper.GetSubnetMask(serverAddress);
  104. m_nameServer = new NameServer(serverAddress, subnetMask);
  105. m_nameServer.Start();
  106. }
  107. }
  108. }
  109. catch (Exception ex)
  110. {
  111. MessageBox.Show(ex.Message, "Error");
  112. return;
  113. }
  114. btnStart.Enabled = false;
  115. btnStop.Enabled = true;
  116. comboIPAddress.Enabled = false;
  117. rbtDirectTCPTransport.Enabled = false;
  118. rbtNetBiosOverTCP.Enabled = false;
  119. chkSMB1.Enabled = false;
  120. chkSMB2.Enabled = false;
  121. chkIntegratedWindowsAuthentication.Enabled = false;
  122. }
  123. private XmlDocument GetSettingsXML()
  124. {
  125. string executableDirectory = Path.GetDirectoryName(Application.ExecutablePath) + "\\";
  126. XmlDocument document = GetXmlDocument(executableDirectory + SettingsFileName);
  127. return document;
  128. }
  129. private UserCollection ReadUserSettings()
  130. {
  131. UserCollection users = new UserCollection();
  132. XmlDocument document = GetSettingsXML();
  133. XmlNode usersNode = document.SelectSingleNode("Settings/Users");
  134. foreach (XmlNode userNode in usersNode.ChildNodes)
  135. {
  136. string accountName = userNode.Attributes["AccountName"].Value;
  137. string password = userNode.Attributes["Password"].Value;
  138. users.Add(accountName, password);
  139. }
  140. return users;
  141. }
  142. private SMBShareCollection ReadShareSettings()
  143. {
  144. SMBShareCollection shares = new SMBShareCollection();
  145. XmlDocument document = GetSettingsXML();
  146. XmlNode sharesNode = document.SelectSingleNode("Settings/Shares");
  147. foreach (XmlNode shareNode in sharesNode.ChildNodes)
  148. {
  149. string shareName = shareNode.Attributes["Name"].Value;
  150. string sharePath = shareNode.Attributes["Path"].Value;
  151. XmlNode readAccessNode = shareNode.SelectSingleNode("ReadAccess");
  152. List<string> readAccess = ReadAccessList(readAccessNode);
  153. XmlNode writeAccessNode = shareNode.SelectSingleNode("WriteAccess");
  154. List<string> writeAccess = ReadAccessList(writeAccessNode);
  155. FileSystemShare share = new FileSystemShare(shareName, new NTDirectoryFileSystem(sharePath));
  156. share.AccessRequested += delegate(object sender, AccessRequestArgs args)
  157. {
  158. bool hasReadAccess = Contains(readAccess, "Users") || Contains(readAccess, args.UserName);
  159. bool hasWriteAccess = Contains(writeAccess, "Users") || Contains(writeAccess, args.UserName);
  160. if (args.RequestedAccess == FileAccess.Read)
  161. {
  162. args.Allow = hasReadAccess;
  163. }
  164. else if (args.RequestedAccess == FileAccess.Write)
  165. {
  166. args.Allow = hasWriteAccess;
  167. }
  168. else // FileAccess.ReadWrite
  169. {
  170. args.Allow = hasReadAccess && hasWriteAccess;
  171. }
  172. };
  173. shares.Add(share);
  174. }
  175. return shares;
  176. }
  177. private List<string> ReadAccessList(XmlNode node)
  178. {
  179. List<string> result = new List<string>();
  180. if (node != null)
  181. {
  182. string accounts = node.Attributes["Accounts"].Value;
  183. if (accounts == "*")
  184. {
  185. result.Add("Users");
  186. }
  187. else
  188. {
  189. string[] splitted = accounts.Split(',');
  190. result.AddRange(splitted);
  191. }
  192. }
  193. return result;
  194. }
  195. private void btnStop_Click(object sender, EventArgs e)
  196. {
  197. m_server.Stop();
  198. m_logWriter.CloseLogFile();
  199. btnStart.Enabled = true;
  200. btnStop.Enabled = false;
  201. comboIPAddress.Enabled = true;
  202. rbtDirectTCPTransport.Enabled = true;
  203. rbtNetBiosOverTCP.Enabled = true;
  204. chkSMB1.Enabled = true;
  205. chkSMB2.Enabled = true;
  206. chkIntegratedWindowsAuthentication.Enabled = true;
  207. if (m_nameServer != null)
  208. {
  209. m_nameServer.Stop();
  210. }
  211. }
  212. private void chkSMB1_CheckedChanged(object sender, EventArgs e)
  213. {
  214. if (!chkSMB1.Checked)
  215. {
  216. chkSMB2.Checked = true;
  217. }
  218. }
  219. private void chkSMB2_CheckedChanged(object sender, EventArgs e)
  220. {
  221. if (!chkSMB2.Checked)
  222. {
  223. chkSMB1.Checked = true;
  224. }
  225. }
  226. public static XmlDocument GetXmlDocument(string path)
  227. {
  228. XmlDocument doc = new XmlDocument();
  229. doc.Load(path);
  230. return doc;
  231. }
  232. public static bool Contains(List<string> list, string value)
  233. {
  234. return (IndexOf(list, value) >= 0);
  235. }
  236. public static int IndexOf(List<string> list, string value)
  237. {
  238. for (int index = 0; index < list.Count; index++)
  239. {
  240. if (string.Equals(list[index], value, StringComparison.OrdinalIgnoreCase))
  241. {
  242. return index;
  243. }
  244. }
  245. return -1;
  246. }
  247. }
  248. }