/Current/VirtualRouter/VirtualRouterHost/VirtualRouterHost.cs

# · C# · 238 lines · 191 code · 35 blank · 12 comment · 15 complexity · 85adccc90f1fc9e94a64274752ee43f2 MD5 · raw file

  1. /*
  2. * Virtual Router v1.0 - http://virtualrouter.codeplex.com
  3. * Wifi Hot Spot for Windows 8, 7 and 2008 R2
  4. * Copyright (c) 2013 Chris Pietschmann (http://pietschsoft.com)
  5. * Licensed under the Microsoft Public License (Ms-PL)
  6. * http://virtualrouter.codeplex.com/license
  7. */
  8. using System;
  9. using System.Collections.Generic;
  10. using System.Linq;
  11. using System.Text;
  12. using VirtualRouter.Wlan;
  13. using IcsMgr;
  14. using System.ServiceModel;
  15. using VirtualRouter.Wlan.WinAPI;
  16. using System.Threading;
  17. namespace VirtualRouterHost
  18. {
  19. [ServiceBehavior(InstanceContextMode = InstanceContextMode.Single)]
  20. public class VirtualRouterHost : IVirtualRouterHost
  21. {
  22. private WlanManager wlanManager;
  23. private IcsManager icsManager;
  24. private SharableConnection currentSharedConnection;
  25. public VirtualRouterHost()
  26. {
  27. this.wlanManager = new WlanManager();
  28. this.icsManager = new IcsManager();
  29. }
  30. #region IVirtualRouterHost Members
  31. private string _lastErrorMessage;
  32. public string GetLastError()
  33. {
  34. return this._lastErrorMessage;
  35. }
  36. public bool Start(SharableConnection sharedConnection)
  37. {
  38. try
  39. {
  40. this.Stop();
  41. this.wlanManager.StartHostedNetwork();
  42. Thread.Sleep(1000);
  43. if (sharedConnection != null)
  44. {
  45. if (sharedConnection.Guid != Guid.Empty)
  46. {
  47. if (this.icsManager.SharingInstalled)
  48. {
  49. var privateConnectionGuid = this.wlanManager.HostedNetworkInterfaceGuid;
  50. if (privateConnectionGuid == Guid.Empty)
  51. {
  52. // If the GUID for the Hosted Network Adapter isn't return properly,
  53. // then retrieve it by the DeviceName.
  54. privateConnectionGuid = (from c in this.icsManager.Connections
  55. where c.props.DeviceName.ToLowerInvariant().Contains("microsoft virtual wifi miniport adapter") // Windows 7
  56. || c.props.DeviceName.ToLowerInvariant().Contains("microsoft hosted network virtual adapter") // Windows 8
  57. select c.Guid).FirstOrDefault();
  58. // Note: For some reason the DeviceName can have different names, currently it checks for the ones that I have identified thus far.
  59. if (privateConnectionGuid == Guid.Empty)
  60. {
  61. // Device still now found, so throw exception so the message gets raised up to the client.
  62. throw new Exception("Virtual Wifi device not found!\n\nNeither \"Microsoft Hosted Network Virtual Adapter\" or \"Microsoft Virtual Wifi Miniport Adapter\" were found.");
  63. }
  64. }
  65. this.icsManager.EnableIcs(sharedConnection.Guid, privateConnectionGuid);
  66. this.currentSharedConnection = sharedConnection;
  67. }
  68. }
  69. }
  70. else
  71. {
  72. this.currentSharedConnection = null;
  73. }
  74. return true;
  75. }
  76. catch(Exception ex)
  77. {
  78. this._lastErrorMessage = ex.Message;
  79. return false;
  80. }
  81. }
  82. public bool Stop()
  83. {
  84. try
  85. {
  86. if (this.icsManager.SharingInstalled)
  87. {
  88. this.icsManager.DisableIcsOnAll();
  89. }
  90. this.wlanManager.StopHostedNetwork();
  91. return true;
  92. }
  93. catch
  94. {
  95. return false;
  96. }
  97. }
  98. public bool SetConnectionSettings(string ssid, int maxNumberOfPeers)
  99. {
  100. try
  101. {
  102. this.wlanManager.SetConnectionSettings(ssid, maxNumberOfPeers);
  103. return true;
  104. }
  105. catch
  106. {
  107. return false;
  108. }
  109. }
  110. public ConnectionSettings GetConnectionSettings()
  111. {
  112. try
  113. {
  114. string ssid;
  115. int maxNumberOfPeers;
  116. var r = this.wlanManager.QueryConnectionSettings(out ssid, out maxNumberOfPeers);
  117. return new ConnectionSettings()
  118. {
  119. SSID = ssid,
  120. MaxPeerCount = maxNumberOfPeers
  121. };
  122. }
  123. catch
  124. {
  125. return null;
  126. }
  127. }
  128. public IEnumerable<SharableConnection> GetSharableConnections()
  129. {
  130. List<IcsConnection> connections;
  131. try
  132. {
  133. connections = this.icsManager.Connections;
  134. }
  135. catch
  136. {
  137. connections = new List<IcsConnection>();
  138. }
  139. // Empty item to signify No Connection Sharing
  140. yield return new SharableConnection() { DeviceName = "None", Guid = Guid.Empty, Name = "None" };
  141. if (connections != null)
  142. {
  143. foreach (var conn in connections)
  144. {
  145. if (conn.IsConnected && conn.IsSupported)
  146. {
  147. yield return new SharableConnection(conn);
  148. }
  149. }
  150. }
  151. }
  152. public bool SetPassword(string password)
  153. {
  154. try
  155. {
  156. this.wlanManager.SetSecondaryKey(password);
  157. return true;
  158. }
  159. catch
  160. {
  161. return false;
  162. }
  163. }
  164. public string GetPassword()
  165. {
  166. try
  167. {
  168. string passKey = string.Empty;
  169. bool isPassPhrase;
  170. bool isPersistent;
  171. var r = this.wlanManager.QuerySecondaryKey(out passKey, out isPassPhrase, out isPersistent);
  172. return passKey;
  173. }
  174. catch
  175. {
  176. return null;
  177. }
  178. }
  179. public bool IsStarted()
  180. {
  181. try
  182. {
  183. return wlanManager.IsHostedNetworkStarted;
  184. }
  185. catch
  186. {
  187. return false;
  188. }
  189. }
  190. public IEnumerable<ConnectedPeer> GetConnectedPeers()
  191. {
  192. foreach (var v in wlanManager.Stations)
  193. {
  194. yield return new ConnectedPeer(v.Value);
  195. }
  196. }
  197. public SharableConnection GetSharedConnection()
  198. {
  199. return this.currentSharedConnection;
  200. }
  201. #endregion
  202. }
  203. }