123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418 |
- #region License
- /*
- * ChunkStream.cs
- *
- * This code is derived from ChunkStream.cs (System.Net) of Mono
- * (http://www.mono-project.com).
- *
- * The MIT License
- *
- * Copyright (c) 2003 Ximian, Inc (http://www.ximian.com)
- * Copyright (c) 2012-2022 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
- #region Authors
- /*
- * Authors:
- * - Gonzalo Paniagua Javier <gonzalo@ximian.com>
- */
- #endregion
- using System;
- using System.Collections.Generic;
- using System.Globalization;
- using System.IO;
- using System.Net;
- using System.Text;
- namespace WebSocketSharp.Net
- {
- internal class ChunkStream
- {
- #region Private Fields
- private int _chunkRead;
- private int _chunkSize;
- private List<Chunk> _chunks;
- private int _count;
- private byte[] _endBuffer;
- private bool _gotIt;
- private WebHeaderCollection _headers;
- private int _offset;
- private StringBuilder _saved;
- private bool _sawCr;
- private InputChunkState _state;
- private int _trailerState;
- #endregion
- #region Public Constructors
- public ChunkStream (WebHeaderCollection headers)
- {
- _headers = headers;
- _chunkSize = -1;
- _chunks = new List<Chunk> ();
- _saved = new StringBuilder ();
- }
- #endregion
- #region Internal Properties
- internal int Count {
- get {
- return _count;
- }
- }
- internal byte[] EndBuffer {
- get {
- return _endBuffer;
- }
- }
- internal int Offset {
- get {
- return _offset;
- }
- }
- #endregion
- #region Public Properties
- public WebHeaderCollection Headers {
- get {
- return _headers;
- }
- }
- public bool WantsMore {
- get {
- return _state < InputChunkState.End;
- }
- }
- #endregion
- #region Private Methods
- private int read (byte[] buffer, int offset, int count)
- {
- var nread = 0;
- var cnt = _chunks.Count;
- for (var i = 0; i < cnt; i++) {
- var chunk = _chunks[i];
- if (chunk == null)
- continue;
- if (chunk.ReadLeft == 0) {
- _chunks[i] = null;
- continue;
- }
- nread += chunk.Read (buffer, offset + nread, count - nread);
- if (nread == count)
- break;
- }
- return nread;
- }
- private InputChunkState seekCrLf (byte[] buffer, ref int offset, int length)
- {
- if (!_sawCr) {
- if (buffer[offset++] != 13)
- throwProtocolViolation ("CR is expected.");
- _sawCr = true;
- if (offset == length)
- return InputChunkState.DataEnded;
- }
- if (buffer[offset++] != 10)
- throwProtocolViolation ("LF is expected.");
- return InputChunkState.None;
- }
- private InputChunkState setChunkSize (
- byte[] buffer, ref int offset, int length
- )
- {
- byte b = 0;
- while (offset < length) {
- b = buffer[offset++];
- if (_sawCr) {
- if (b != 10)
- throwProtocolViolation ("LF is expected.");
- break;
- }
- if (b == 13) {
- _sawCr = true;
- continue;
- }
- if (b == 10)
- throwProtocolViolation ("LF is unexpected.");
- if (_gotIt)
- continue;
- if (b == 32 || b == 59) { // SP or ';'
- _gotIt = true;
- continue;
- }
- _saved.Append ((char) b);
- }
- if (_saved.Length > 20)
- throwProtocolViolation ("The chunk size is too big.");
- if (b != 10)
- return InputChunkState.None;
- var s = _saved.ToString ();
- try {
- _chunkSize = Int32.Parse (s, NumberStyles.HexNumber);
- }
- catch {
- throwProtocolViolation ("The chunk size cannot be parsed.");
- }
- _chunkRead = 0;
- if (_chunkSize == 0) {
- _trailerState = 2;
- return InputChunkState.Trailer;
- }
- return InputChunkState.Data;
- }
- private InputChunkState setTrailer (
- byte[] buffer, ref int offset, int length
- )
- {
- while (offset < length) {
- if (_trailerState == 4) // CR LF CR LF
- break;
- var b = buffer[offset++];
- _saved.Append ((char) b);
- if (_trailerState == 1 || _trailerState == 3) { // CR or CR LF CR
- if (b != 10)
- throwProtocolViolation ("LF is expected.");
- _trailerState++;
- continue;
- }
- if (b == 13) {
- _trailerState++;
- continue;
- }
- if (b == 10)
- throwProtocolViolation ("LF is unexpected.");
- _trailerState = 0;
- }
- var len = _saved.Length;
- if (len > 4196)
- throwProtocolViolation ("The trailer is too long.");
- if (_trailerState < 4)
- return InputChunkState.Trailer;
- if (len == 2)
- return InputChunkState.End;
- _saved.Length = len - 2;
- var val = _saved.ToString ();
- var reader = new StringReader (val);
- while (true) {
- var line = reader.ReadLine ();
- if (line == null || line.Length == 0)
- break;
- _headers.Add (line);
- }
- return InputChunkState.End;
- }
- private static void throwProtocolViolation (string message)
- {
- throw new WebException (
- message, null, WebExceptionStatus.ServerProtocolViolation, null
- );
- }
- private void write (byte[] buffer, int offset, int length)
- {
- if (_state == InputChunkState.End)
- throwProtocolViolation ("The chunks were ended.");
- if (_state == InputChunkState.None) {
- _state = setChunkSize (buffer, ref offset, length);
- if (_state == InputChunkState.None)
- return;
- _saved.Length = 0;
- _sawCr = false;
- _gotIt = false;
- }
- if (_state == InputChunkState.Data) {
- if (offset >= length)
- return;
- _state = writeData (buffer, ref offset, length);
- if (_state == InputChunkState.Data)
- return;
- }
- if (_state == InputChunkState.DataEnded) {
- if (offset >= length)
- return;
- _state = seekCrLf (buffer, ref offset, length);
- if (_state == InputChunkState.DataEnded)
- return;
- _sawCr = false;
- }
- if (_state == InputChunkState.Trailer) {
- if (offset >= length)
- return;
- _state = setTrailer (buffer, ref offset, length);
- if (_state == InputChunkState.Trailer)
- return;
- _saved.Length = 0;
- }
- if (_state == InputChunkState.End) {
- _endBuffer = buffer;
- _offset = offset;
- _count = length - offset;
- return;
- }
- if (offset >= length)
- return;
- write (buffer, offset, length);
- }
- private InputChunkState writeData (
- byte[] buffer, ref int offset, int length
- )
- {
- var cnt = length - offset;
- var left = _chunkSize - _chunkRead;
- if (cnt > left)
- cnt = left;
- var data = new byte[cnt];
- Buffer.BlockCopy (buffer, offset, data, 0, cnt);
- var chunk = new Chunk (data);
- _chunks.Add (chunk);
- offset += cnt;
- _chunkRead += cnt;
- return _chunkRead == _chunkSize
- ? InputChunkState.DataEnded
- : InputChunkState.Data;
- }
- #endregion
- #region Internal Methods
- internal void ResetChunkStore ()
- {
- _chunkRead = 0;
- _chunkSize = -1;
- _chunks.Clear ();
- }
- #endregion
- #region Public Methods
- public int Read (byte[] buffer, int offset, int count)
- {
- if (count <= 0)
- return 0;
- return read (buffer, offset, count);
- }
- public void Write (byte[] buffer, int offset, int count)
- {
- if (count <= 0)
- return;
- write (buffer, offset, offset + count);
- }
- #endregion
- }
- }
|