ServerUI.cs 9.6 KB

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