You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

238 lines
5.6 KiB
C#

#region License
/*
* WsStream.cs
*
* The MIT License
*
* Copyright (c) 2010-2013 sta.blockhead
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
#endregion
using System;
using System.Collections.Generic;
using System.Configuration;
using System.IO;
using System.Net.Sockets;
using System.Security.Cryptography.X509Certificates;
using System.Text;
using WebSocketSharp.Net;
using WebSocketSharp.Net.Security;
namespace WebSocketSharp {
internal class WsStream : IDisposable
{
#region Private Const Fields
private const int _handshakeLimitLen = 8192;
#endregion
#region Private Fields
private Object _forRead;
private Object _forWrite;
private Stream _innerStream;
private bool _secure;
#endregion
#region Private Constructors
private WsStream(Stream innerStream, bool secure)
{
_innerStream = innerStream;
_secure = secure;
_forRead = new object();
_forWrite = new object();
}
#endregion
#region Internal Constructors
internal WsStream(NetworkStream innerStream)
: this(innerStream, false)
{
}
internal WsStream(SslStream innerStream)
: this(innerStream, true)
{
}
#endregion
#region Public Properties
public bool DataAvailable {
get {
return _secure
? ((SslStream)_innerStream).DataAvailable
: ((NetworkStream)_innerStream).DataAvailable;
}
}
public bool IsSecure {
get {
return _secure;
}
}
#endregion
#region Private Methods
private bool write(byte[] data)
{
lock (_forWrite)
{
try {
_innerStream.Write(data, 0, data.Length);
return true;
}
catch {
return false;
}
}
}
#endregion
#region Internal Methods
internal static WsStream CreateClientStream(TcpClient tcpClient, string host, bool secure)
{
var netStream = tcpClient.GetStream();
if (secure)
{
System.Net.Security.RemoteCertificateValidationCallback callback = (sender, certificate, chain, sslPolicyErrors) =>
{
// FIXME: Always returns true
return true;
};
var sslStream = new SslStream(netStream, false, callback);
sslStream.AuthenticateAsClient(host);
return new WsStream(sslStream);
}
return new WsStream(netStream);
}
internal static WsStream CreateServerStream(TcpClient tcpClient, bool secure)
{
var netStream = tcpClient.GetStream();
if (secure)
{
var sslStream = new SslStream(netStream, false);
var certPath = ConfigurationManager.AppSettings["ServerCertPath"];
sslStream.AuthenticateAsServer(new X509Certificate2(certPath));
return new WsStream(sslStream);
}
return new WsStream(netStream);
}
internal static WsStream CreateServerStream(HttpListenerContext context)
{
var conn = context.Connection;
return new WsStream(conn.Stream, conn.IsSecure);
}
#endregion
#region Public Methods
public void Close()
{
_innerStream.Close();
}
public void Dispose()
{
_innerStream.Dispose();
}
public WsFrame ReadFrame()
{
lock (_forRead)
{
try
{
return WsFrame.Parse(_innerStream);
}
catch
{
return null;
}
}
}
public void ReadFrameAsync(Action<WsFrame> completed)
{
WsFrame.ParseAsync(_innerStream, completed);
}
public string[] ReadHandshake()
{
var read = false;
var buffer = new List<byte>();
Action<int> add = i => buffer.Add((byte)i);
while (buffer.Count < _handshakeLimitLen)
{
if (_innerStream.ReadByte().EqualsWith('\r', add) &&
_innerStream.ReadByte().EqualsWith('\n', add) &&
_innerStream.ReadByte().EqualsWith('\r', add) &&
_innerStream.ReadByte().EqualsWith('\n', add))
{
read = true;
break;
}
}
if (!read)
throw new WebSocketException("The length of the handshake is greater than the limit length.");
return Encoding.UTF8.GetString(buffer.ToArray())
.Replace("\r\n", "\n")
.Replace("\n ", " ")
.Replace("\n\t", " ")
.TrimEnd('\n')
.Split('\n');
}
public bool WriteFrame(WsFrame frame)
{
return write(frame.ToByteArray());
}
public bool WriteHandshake(Handshake handshake)
{
return write(handshake.ToByteArray());
}
#endregion
}
}