WebSocketSession.cs 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Collections.Specialized;
  4. using System.Linq;
  5. using System.Net;
  6. using System.Security.Authentication;
  7. using System.Text;
  8. using System.Threading;
  9. using Microsoft.Extensions.Logging;
  10. using SuperSocket.Common;
  11. using SuperSocket.SocketBase;
  12. using SuperSocket.SocketBase.Command;
  13. using SuperSocket.SocketBase.Protocol;
  14. using SuperWebSocket.Protocol;
  15. using SuperWebSocket.SubProtocol;
  16. namespace SuperWebSocket
  17. {
  18. /// <summary>
  19. /// WebSocketSession basic interface
  20. /// </summary>
  21. public interface IWebSocketSession : IAppSession
  22. {
  23. /// <summary>
  24. /// Gets or sets the method.
  25. /// </summary>
  26. /// <value>
  27. /// The method.
  28. /// </value>
  29. string Method { get; set; }
  30. /// <summary>
  31. /// Gets the host.
  32. /// </summary>
  33. string Host { get; }
  34. /// <summary>
  35. /// Gets or sets the path.
  36. /// </summary>
  37. /// <value>
  38. /// The path.
  39. /// </value>
  40. string Path { get; set; }
  41. /// <summary>
  42. /// Gets or sets the HTTP version.
  43. /// </summary>
  44. /// <value>
  45. /// The HTTP version.
  46. /// </value>
  47. string HttpVersion { get; set; }
  48. /// <summary>
  49. /// Gets the sec web socket version.
  50. /// </summary>
  51. string SecWebSocketVersion { get; }
  52. /// <summary>
  53. /// Gets the origin.
  54. /// </summary>
  55. string Origin { get; }
  56. /// <summary>
  57. /// Gets the URI scheme.
  58. /// </summary>
  59. string UriScheme { get; }
  60. /// <summary>
  61. /// Gets a value indicating whether this <see cref="IWebSocketSession" /> is handshaked.
  62. /// </summary>
  63. /// <value>
  64. /// <c>true</c> if handshaked; otherwise, <c>false</c>.
  65. /// </value>
  66. bool Handshaked { get; }
  67. /// <summary>
  68. /// Sends the raw binary data to client.
  69. /// </summary>
  70. /// <param name="data">The data.</param>
  71. /// <param name="offset">The offset.</param>
  72. /// <param name="length">The length.</param>
  73. void SendRawData(byte[] data, int offset, int length);
  74. /// <summary>
  75. /// Try to send the raw binary data to client.
  76. /// </summary>
  77. /// <param name="data">The data.</param>
  78. /// <param name="offset">The offset.</param>
  79. /// <param name="length">The length.</param>
  80. /// <returns>if the data to be sent is queued, return true, else the queue is full, then return false</returns>
  81. bool TrySendRawData(byte[] data, int offset, int length);
  82. /// <summary>
  83. /// Gets the app server.
  84. /// </summary>
  85. new IWebSocketServer AppServer { get; }
  86. /// <summary>
  87. /// Gets or sets the protocol processor.
  88. /// </summary>
  89. /// <value>
  90. /// The protocol processor.
  91. /// </value>
  92. IProtocolProcessor ProtocolProcessor { get; set; }
  93. /// <summary>
  94. /// Gets the available sub protocol.
  95. /// </summary>
  96. /// <param name="protocol">The protocol.</param>
  97. /// <returns></returns>
  98. string GetAvailableSubProtocol(string protocol);
  99. }
  100. /// <summary>
  101. /// WebSocket AppSession
  102. /// </summary>
  103. public class WebSocketSession : WebSocketSession<WebSocketSession>
  104. {
  105. /// <summary>
  106. /// Gets the app server.
  107. /// </summary>
  108. public new WebSocketServer AppServer
  109. {
  110. get { return (WebSocketServer)base.AppServer; }
  111. }
  112. }
  113. /// <summary>
  114. /// WebSocket AppSession class
  115. /// </summary>
  116. /// <typeparam name="TWebSocketSession">The type of the web socket session.</typeparam>
  117. public class WebSocketSession<TWebSocketSession> : AppSession<TWebSocketSession, IWebSocketFragment>, IWebSocketSession, IAppSession
  118. where TWebSocketSession : WebSocketSession<TWebSocketSession>, new()
  119. {
  120. /// <summary>
  121. /// Gets or sets the method.
  122. /// </summary>
  123. /// <value>
  124. /// The method.
  125. /// </value>
  126. public string Method { get; set; }
  127. /// <summary>
  128. /// Gets or sets the path.
  129. /// </summary>
  130. /// <value>
  131. /// The path.
  132. /// </value>
  133. public string Path { get; set; }
  134. /// <summary>
  135. /// Gets or sets the HTTP version.
  136. /// </summary>
  137. /// <value>
  138. /// The HTTP version.
  139. /// </value>
  140. public string HttpVersion { get; set; }
  141. /// <summary>
  142. /// Gets the host.
  143. /// </summary>
  144. public string Host { get { return this.Items.GetValue<string>(WebSocketConstant.Host, string.Empty); } }
  145. /// <summary>
  146. /// Gets the origin.
  147. /// </summary>
  148. public string Origin { get; internal set; }
  149. /// <summary>
  150. /// Gets the upgrade.
  151. /// </summary>
  152. public string Upgrade { get { return this.Items.GetValue<string>(WebSocketConstant.Upgrade, string.Empty); } }
  153. /// <summary>
  154. /// Gets the connection.
  155. /// </summary>
  156. public string Connection { get { return this.Items.GetValue<string>(WebSocketConstant.Connection, string.Empty); } }
  157. /// <summary>
  158. /// Gets the sec web socket version.
  159. /// </summary>
  160. public string SecWebSocketVersion { get { return this.Items.GetValue<string>(WebSocketConstant.SecWebSocketVersion, string.Empty); } }
  161. /// <summary>
  162. /// Gets the sec web socket protocol.
  163. /// </summary>
  164. public string SecWebSocketProtocol { get { return this.Items.GetValue<string>(WebSocketConstant.SecWebSocketProtocol, string.Empty); } }
  165. internal List<WebSocketDataFrame> Frames { get; private set; }
  166. internal DateTime StartClosingHandshakeTime { get; private set; }
  167. private const string m_CurrentTokenSlotName = "CurrentRequestToken";
  168. internal LocalDataStoreSlot SetCurrentToken(string token)
  169. {
  170. var slot = Thread.GetNamedDataSlot(m_CurrentTokenSlotName);
  171. Thread.SetData(slot, token);
  172. return slot;
  173. }
  174. /// <summary>
  175. /// Gets the current token.
  176. /// </summary>
  177. public string CurrentToken
  178. {
  179. get
  180. {
  181. return Thread.GetData(Thread.GetNamedDataSlot(m_CurrentTokenSlotName)) as string;
  182. }
  183. }
  184. /// <summary>
  185. /// Gets the app server.
  186. /// </summary>
  187. public new WebSocketServer<TWebSocketSession> AppServer
  188. {
  189. get { return (WebSocketServer<TWebSocketSession>)base.AppServer; }
  190. }
  191. IWebSocketServer IWebSocketSession.AppServer
  192. {
  193. get { return (IWebSocketServer)base.AppServer; }
  194. }
  195. string IWebSocketSession.GetAvailableSubProtocol(string protocol)
  196. {
  197. if (string.IsNullOrEmpty(protocol))
  198. {
  199. SubProtocol = AppServer.DefaultSubProtocol;
  200. return string.Empty;
  201. }
  202. var arrNames = protocol.Split(new char[] { ',' }, StringSplitOptions.RemoveEmptyEntries);
  203. if (protocol.ToLower().Contains("ocpp2.0"))
  204. {
  205. arrNames = new string[] { "ocpp2.0" };
  206. }
  207. foreach (var name in arrNames)
  208. {
  209. var subProtocol = AppServer.GetSubProtocol(name);
  210. if (subProtocol != null)
  211. {
  212. SubProtocol = subProtocol;
  213. return name;
  214. }
  215. }
  216. return string.Empty;
  217. }
  218. /// <summary>
  219. /// Gets the URI scheme, ws or wss
  220. /// </summary>
  221. public string UriScheme
  222. {
  223. get
  224. {
  225. if (SocketSession.SecureProtocol == SslProtocols.None)
  226. return WebSocketConstant.WsSchema;
  227. else
  228. return WebSocketConstant.WssSchema;
  229. }
  230. }
  231. /// <summary>
  232. /// Gets the sub protocol.
  233. /// </summary>
  234. public ISubProtocol<TWebSocketSession> SubProtocol { get; private set; }
  235. private bool m_Handshaked = false;
  236. /// <summary>
  237. /// Gets a value indicating whether this <see cref="IWebSocketSession" /> is handshaked.
  238. /// </summary>
  239. /// <value>
  240. /// <c>true</c> if handshaked; otherwise, <c>false</c>.
  241. /// </value>
  242. public bool Handshaked
  243. {
  244. get { return m_Handshaked; }
  245. }
  246. internal void OnHandshakeSuccess()
  247. {
  248. m_Handshaked = true;
  249. SetCookie();
  250. OnSessionStarted();
  251. AppServer.FireOnNewSessionConnected(this);
  252. }
  253. /// <summary>
  254. /// Gets a value indicating whether the session [in closing].
  255. /// </summary>
  256. /// <value>
  257. /// <c>true</c> if [in closing]; otherwise, <c>false</c>.
  258. /// </value>
  259. public bool InClosing { get; private set; }
  260. /// <summary>
  261. /// Called when [init].
  262. /// </summary>
  263. protected override void OnInit()
  264. {
  265. Frames = new List<WebSocketDataFrame>();
  266. base.OnInit();
  267. }
  268. void IAppSession.StartSession()
  269. {
  270. //Do nothing. Avoid firing thhe OnSessionStarted() method of base class
  271. }
  272. /// <summary>
  273. /// Sets the cookie.
  274. /// </summary>
  275. private void SetCookie()
  276. {
  277. string cookieValue = this.Items.GetValue<string>(WebSocketConstant.Cookie, string.Empty);
  278. if (string.IsNullOrEmpty(cookieValue))
  279. return;
  280. var cookies = new StringDictionary();
  281. this.Cookies = cookies;
  282. string[] pairs = cookieValue.Split(';');
  283. int pos;
  284. string key, value;
  285. foreach (var p in pairs)
  286. {
  287. pos = p.IndexOf('=');
  288. if (pos <= 0)
  289. continue;
  290. key = p.Substring(0, pos).Trim();
  291. pos += 1;
  292. if (pos < p.Length)
  293. value = p.Substring(pos).Trim();
  294. else
  295. value = string.Empty;
  296. if (string.IsNullOrEmpty(value))
  297. {
  298. cookies[key] = string.Empty;
  299. continue;
  300. }
  301. try
  302. {
  303. cookies[key] = Uri.UnescapeDataString(value);
  304. }
  305. catch (Exception e)
  306. {
  307. Logger.LogError(this, string.Format("Failed to read cookie, key: {0}, value: {1}.", key, value), e);
  308. }
  309. }
  310. }
  311. /// <summary>
  312. /// Gets the cookies.
  313. /// </summary>
  314. public StringDictionary Cookies { get; private set; }
  315. /// <summary>
  316. /// Sends the message to client.
  317. /// </summary>
  318. /// <param name="message">The message.</param>
  319. public override void Send(string message)
  320. {
  321. ProtocolProcessor.SendMessage(this, message);
  322. }
  323. /// <summary>
  324. /// Tries to send.
  325. /// </summary>
  326. /// <param name="message">The message to be sent.</param>
  327. /// <returns></returns>
  328. public override bool TrySend(string message)
  329. {
  330. return ProtocolProcessor.TrySendMessage(this, message);
  331. }
  332. /// <summary>
  333. /// Sends the data to client.
  334. /// </summary>
  335. /// <param name="data">The data.</param>
  336. /// <param name="offset">The offset.</param>
  337. /// <param name="length">The length.</param>
  338. public override void Send(byte[] data, int offset, int length)
  339. {
  340. if (!ProtocolProcessor.CanSendBinaryData)
  341. {
  342. Logger.LogError("The websocket of this version cannot used for sending binary data!");
  343. return;
  344. }
  345. ProtocolProcessor.SendData(this, data, offset, length);
  346. }
  347. /// <summary>
  348. /// Tries to send the data over the websocket connection.
  349. /// </summary>
  350. /// <param name="segment">The segment to be sent.</param>
  351. /// <returns></returns>
  352. public override bool TrySend(ArraySegment<byte> segment)
  353. {
  354. if (!ProtocolProcessor.CanSendBinaryData)
  355. {
  356. Logger.LogError("The websocket of this version cannot used for sending binary data!");
  357. return false;
  358. }
  359. return ProtocolProcessor.TrySendData(this, segment.Array, segment.Offset, segment.Count);
  360. }
  361. /// <summary>
  362. /// Tries to send the data over the websocket connection.
  363. /// </summary>
  364. /// <param name="data">The data.</param>
  365. /// <param name="offset">The offset.</param>
  366. /// <param name="length">The length.</param>
  367. /// <returns></returns>
  368. public override bool TrySend(byte[] data, int offset, int length)
  369. {
  370. if (!ProtocolProcessor.CanSendBinaryData)
  371. {
  372. Logger.LogError("The websocket of this version cannot used for sending binary data!");
  373. return false;
  374. }
  375. return ProtocolProcessor.TrySendData(this, data, offset, length);
  376. }
  377. /// <summary>
  378. /// Sends the segment to client.
  379. /// </summary>
  380. /// <param name="segment">The segment.</param>
  381. public override void Send(ArraySegment<byte> segment)
  382. {
  383. this.Send(segment.Array, segment.Offset, segment.Count);
  384. }
  385. /// <summary>
  386. /// Sends the raw binary data.
  387. /// </summary>
  388. /// <param name="data">The data.</param>
  389. /// <param name="offset">The offset.</param>
  390. /// <param name="length">The length.</param>
  391. void IWebSocketSession.SendRawData(byte[] data, int offset, int length)
  392. {
  393. base.Send(data, offset, length);
  394. }
  395. /// <summary>
  396. /// Try to send the raw binary data to client.
  397. /// </summary>
  398. /// <param name="data">The data.</param>
  399. /// <param name="offset">The offset.</param>
  400. /// <param name="length">The length.</param>
  401. /// <returns>
  402. /// if the data to be sent is queued, return true, else the queue is full, then return false
  403. /// </returns>
  404. bool IWebSocketSession.TrySendRawData(byte[] data, int offset, int length)
  405. {
  406. return base.TrySend(new ArraySegment<byte>(data, offset, length));
  407. }
  408. /// <summary>
  409. /// Tries the send raw data segments.
  410. /// </summary>
  411. /// <param name="segments">The segments.</param>
  412. /// <returns></returns>
  413. internal bool TrySendRawData(IList<ArraySegment<byte>> segments)
  414. {
  415. return base.TrySend(segments);
  416. }
  417. /// <summary>
  418. /// Closes the with handshake.
  419. /// </summary>
  420. /// <param name="reasonText">The reason text.</param>
  421. public void CloseWithHandshake(string reasonText)
  422. {
  423. this.CloseWithHandshake(ProtocolProcessor.CloseStatusClode.NormalClosure, reasonText);
  424. }
  425. /// <summary>
  426. /// Closes the with handshake.
  427. /// </summary>
  428. /// <param name="statusCode">The status code.</param>
  429. /// <param name="reasonText">The reason text.</param>
  430. public void CloseWithHandshake(int statusCode, string reasonText)
  431. {
  432. if (!InClosing)
  433. InClosing = true;
  434. ProtocolProcessor.SendCloseHandshake(this, statusCode, reasonText);
  435. StartClosingHandshakeTime = DateTime.Now;
  436. AppServer.PushToCloseHandshakeQueue(this);
  437. }
  438. /// <summary>
  439. /// Sends the close handshake response.
  440. /// </summary>
  441. /// <param name="statusCode">The status code.</param>
  442. public void SendCloseHandshakeResponse(int statusCode)
  443. {
  444. if (!InClosing)
  445. InClosing = true;
  446. ProtocolProcessor.SendCloseHandshake(this, statusCode, string.Empty);
  447. }
  448. /// <summary>
  449. /// Closes the specified reason.
  450. /// </summary>
  451. /// <param name="reason">The reason.</param>
  452. public override void Close(CloseReason reason)
  453. {
  454. if (reason == CloseReason.TimeOut && ProtocolProcessor != null)
  455. {
  456. CloseWithHandshake(ProtocolProcessor.CloseStatusClode.NormalClosure, "Session timeOut");
  457. return;
  458. }
  459. base.Close(reason);
  460. }
  461. /// <summary>
  462. /// Gets or sets the protocol processor.
  463. /// </summary>
  464. /// <value>
  465. /// The protocol processor.
  466. /// </value>
  467. public IProtocolProcessor ProtocolProcessor { get; set; }
  468. /// <summary>
  469. /// Handles the unknown command.
  470. /// </summary>
  471. /// <param name="requestInfo">The request info.</param>
  472. internal protected virtual void HandleUnknownCommand(SubRequestInfo requestInfo)
  473. {
  474. }
  475. /// <summary>
  476. /// Handles the unknown request.
  477. /// </summary>
  478. /// <param name="requestInfo">The request info.</param>
  479. protected override void HandleUnknownRequest(IWebSocketFragment requestInfo)
  480. {
  481. base.Close();
  482. }
  483. }
  484. }