mirror of
https://github.com/ninenines/cowboy.git
synced 2025-07-14 12:20:24 +00:00
Use cow_ws for the Websocket parsing code
Updates Cowlib to 1.1.0
This commit is contained in:
parent
89c47d3d6e
commit
dc8be8882c
4 changed files with 120 additions and 452 deletions
2
Makefile
2
Makefile
|
@ -13,7 +13,7 @@ PLT_APPS = crypto public_key ssl
|
||||||
# Dependencies.
|
# Dependencies.
|
||||||
|
|
||||||
DEPS = cowlib ranch
|
DEPS = cowlib ranch
|
||||||
dep_cowlib = git https://github.com/ninenines/cowlib master
|
dep_cowlib = git https://github.com/ninenines/cowlib 1.1.0
|
||||||
|
|
||||||
TEST_DEPS = ct_helper gun
|
TEST_DEPS = ct_helper gun
|
||||||
dep_ct_helper = git https://github.com/extend/ct_helper.git master
|
dep_ct_helper = git https://github.com/extend/ct_helper.git master
|
||||||
|
|
|
@ -22,18 +22,6 @@ Cowboy will terminate the process right after closing the
|
||||||
Websocket connection. This means that there is no real need to
|
Websocket connection. This means that there is no real need to
|
||||||
perform any cleanup in the optional `terminate/3` callback.
|
perform any cleanup in the optional `terminate/3` callback.
|
||||||
|
|
||||||
:: Types
|
|
||||||
|
|
||||||
: close_code() = 1000..4999
|
|
||||||
|
|
||||||
Reason for closing the connection.
|
|
||||||
|
|
||||||
: frame() = close | ping | pong
|
|
||||||
| {text | binary | close | ping | pong, iodata()}
|
|
||||||
| {close, close_code(), iodata()}
|
|
||||||
|
|
||||||
Frames that can be sent to the client.
|
|
||||||
|
|
||||||
:: Meta values
|
:: Meta values
|
||||||
|
|
||||||
: websocket_compress
|
: websocket_compress
|
||||||
|
@ -118,7 +106,7 @@ Types:
|
||||||
* InFrame = {text | binary | ping | pong, binary()}
|
* InFrame = {text | binary | ping | pong, binary()}
|
||||||
* Req = cowboy_req:req()
|
* Req = cowboy_req:req()
|
||||||
* State = any()
|
* State = any()
|
||||||
* OutFrame = frame()
|
* OutFrame = cow_ws:frame()
|
||||||
|
|
||||||
Handle the data received from the Websocket connection.
|
Handle the data received from the Websocket connection.
|
||||||
|
|
||||||
|
@ -145,7 +133,7 @@ Types:
|
||||||
* Info = any()
|
* Info = any()
|
||||||
* Req = cowboy_req:req()
|
* Req = cowboy_req:req()
|
||||||
* State = any()
|
* State = any()
|
||||||
* OutFrame = frame()
|
* OutFrame = cow_ws:frame()
|
||||||
|
|
||||||
Handle the Erlang message received.
|
Handle the Erlang message received.
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{deps, [
|
{deps, [
|
||||||
{cowlib, ".*", {git, "git://github.com/ninenines/cowlib.git", "1.0.0"}},
|
{cowlib, ".*", {git, "git://github.com/ninenines/cowlib.git", "1.1.0"}},
|
||||||
{ranch, ".*", {git, "git://github.com/ninenines/ranch.git", "1.0.0"}}
|
{ranch, ".*", {git, "git://github.com/ninenines/ranch.git", "1.0.0"}}
|
||||||
]}.
|
]}.
|
||||||
|
|
|
@ -20,21 +20,8 @@
|
||||||
-export([upgrade/6]).
|
-export([upgrade/6]).
|
||||||
-export([handler_loop/4]).
|
-export([handler_loop/4]).
|
||||||
|
|
||||||
-type close_code() :: 1000..4999.
|
|
||||||
-export_type([close_code/0]).
|
|
||||||
|
|
||||||
-type frame() :: close | ping | pong
|
|
||||||
| {text | binary | close | ping | pong, iodata()}
|
|
||||||
| {close, close_code(), iodata()}.
|
|
||||||
-export_type([frame/0]).
|
|
||||||
|
|
||||||
-type opcode() :: 0 | 1 | 2 | 8 | 9 | 10.
|
|
||||||
-type mask_key() :: 0..16#ffffffff.
|
|
||||||
-type frag_state() :: undefined
|
|
||||||
| {nofin, opcode(), binary()} | {fin, opcode(), binary()}.
|
|
||||||
-type rsv() :: << _:3 >>.
|
|
||||||
-type terminate_reason() :: normal | stop | timeout
|
-type terminate_reason() :: normal | stop | timeout
|
||||||
| remote | {remote, close_code(), binary()}
|
| remote | {remote, cow_ws:close_code(), binary()}
|
||||||
| {error, badencoding | badframe | closed | atom()}
|
| {error, badencoding | badframe | closed | atom()}
|
||||||
| {crash, error | exit | throw, any()}.
|
| {crash, error | exit | throw, any()}.
|
||||||
|
|
||||||
|
@ -47,15 +34,15 @@
|
||||||
-callback websocket_handle({text | binary | ping | pong, binary()}, Req, State)
|
-callback websocket_handle({text | binary | ping | pong, binary()}, Req, State)
|
||||||
-> {ok, Req, State}
|
-> {ok, Req, State}
|
||||||
| {ok, Req, State, hibernate}
|
| {ok, Req, State, hibernate}
|
||||||
| {reply, frame() | [frame()], Req, State}
|
| {reply, cow_ws:frame() | [cow_ws:frame()], Req, State}
|
||||||
| {reply, frame() | [frame()], Req, State, hibernate}
|
| {reply, cow_ws:frame() | [cow_ws:frame()], Req, State, hibernate}
|
||||||
| {stop, Req, State}
|
| {stop, Req, State}
|
||||||
when Req::cowboy_req:req(), State::any().
|
when Req::cowboy_req:req(), State::any().
|
||||||
-callback websocket_info(any(), Req, State)
|
-callback websocket_info(any(), Req, State)
|
||||||
-> {ok, Req, State}
|
-> {ok, Req, State}
|
||||||
| {ok, Req, State, hibernate}
|
| {ok, Req, State, hibernate}
|
||||||
| {reply, frame() | [frame()], Req, State}
|
| {reply, cow_ws:frame() | [cow_ws:frame()], Req, State}
|
||||||
| {reply, frame() | [frame()], Req, State, hibernate}
|
| {reply, cow_ws:frame() | [cow_ws:frame()], Req, State, hibernate}
|
||||||
| {stop, Req, State}
|
| {stop, Req, State}
|
||||||
when Req::cowboy_req:req(), State::any().
|
when Req::cowboy_req:req(), State::any().
|
||||||
%% @todo optional -callback terminate(terminate_reason(), cowboy_req:req(), state()) -> ok.
|
%% @todo optional -callback terminate(terminate_reason(), cowboy_req:req(), state()) -> ok.
|
||||||
|
@ -70,11 +57,11 @@
|
||||||
timeout_ref = undefined :: undefined | reference(),
|
timeout_ref = undefined :: undefined | reference(),
|
||||||
messages = undefined :: undefined | {atom(), atom(), atom()},
|
messages = undefined :: undefined | {atom(), atom(), atom()},
|
||||||
hibernate = false :: boolean(),
|
hibernate = false :: boolean(),
|
||||||
frag_state = undefined :: frag_state(),
|
frag_state = undefined :: cow_ws:frag_state(),
|
||||||
|
frag_buffer = <<>> :: binary(),
|
||||||
utf8_state = <<>> :: binary(),
|
utf8_state = <<>> :: binary(),
|
||||||
deflate_frame = false :: boolean(),
|
recv_extensions = #{} :: map(),
|
||||||
inflate_state :: undefined | port(),
|
send_extensions = #{} :: map()
|
||||||
deflate_state :: undefined | port()
|
|
||||||
}).
|
}).
|
||||||
|
|
||||||
-spec upgrade(Req, Env, module(), any(), timeout(), run | hibernate)
|
-spec upgrade(Req, Env, module(), any(), timeout(), run | hibernate)
|
||||||
|
@ -135,9 +122,8 @@ websocket_extensions(State, Req) ->
|
||||||
% the zlib headers.
|
% the zlib headers.
|
||||||
ok = zlib:deflateInit(Deflate, best_compression, deflated, -15, 8, default),
|
ok = zlib:deflateInit(Deflate, best_compression, deflated, -15, 8, default),
|
||||||
{ok, State#state{
|
{ok, State#state{
|
||||||
deflate_frame = true,
|
recv_extensions = #{deflate_frame => Inflate},
|
||||||
inflate_state = Inflate,
|
send_extensions = #{deflate_frame => Deflate}
|
||||||
deflate_state = Deflate
|
|
||||||
}, cowboy_req:set_meta(websocket_compress, true, Req)};
|
}, cowboy_req:set_meta(websocket_compress, true, Req)};
|
||||||
_ ->
|
_ ->
|
||||||
{ok, State, cowboy_req:set_meta(websocket_compress, false, Req)}
|
{ok, State, cowboy_req:set_meta(websocket_compress, false, Req)}
|
||||||
|
@ -149,16 +135,16 @@ websocket_extensions(State, Req) ->
|
||||||
| {suspend, module(), atom(), [any()]}
|
| {suspend, module(), atom(), [any()]}
|
||||||
when Req::cowboy_req:req().
|
when Req::cowboy_req:req().
|
||||||
websocket_handshake(State=#state{
|
websocket_handshake(State=#state{
|
||||||
transport=Transport, key=Key, deflate_frame=DeflateFrame},
|
transport=Transport, key=Key, recv_extensions=Extensions},
|
||||||
Req, HandlerState) ->
|
Req, HandlerState) ->
|
||||||
Challenge = base64:encode(crypto:hash(sha,
|
Challenge = base64:encode(crypto:hash(sha,
|
||||||
<< Key/binary, "258EAFA5-E914-47DA-95CA-C5AB0DC85B11" >>)),
|
<< Key/binary, "258EAFA5-E914-47DA-95CA-C5AB0DC85B11" >>)),
|
||||||
Extensions = case DeflateFrame of
|
ExtHeader = case Extensions of
|
||||||
false -> [];
|
#{deflate_frame := _} -> [{<<"sec-websocket-extensions">>, <<"x-webkit-deflate-frame">>}];
|
||||||
true -> [{<<"sec-websocket-extensions">>, <<"x-webkit-deflate-frame">>}]
|
_ -> []
|
||||||
end,
|
end,
|
||||||
Req2 = cowboy_req:upgrade_reply(101, [{<<"upgrade">>, <<"websocket">>},
|
Req2 = cowboy_req:upgrade_reply(101, [{<<"upgrade">>, <<"websocket">>},
|
||||||
{<<"sec-websocket-accept">>, Challenge}|Extensions], Req),
|
{<<"sec-websocket-accept">>, Challenge}|ExtHeader], Req),
|
||||||
%% Flush the resp_sent message before moving on.
|
%% Flush the resp_sent message before moving on.
|
||||||
receive {cowboy_req, resp_sent} -> ok after 0 -> ok end,
|
receive {cowboy_req, resp_sent} -> ok after 0 -> ok end,
|
||||||
State2 = handler_loop_timeout(State),
|
State2 = handler_loop_timeout(State),
|
||||||
|
@ -213,299 +199,59 @@ handler_loop(State=#state{socket=Socket, messages={OK, Closed, Error},
|
||||||
SoFar, websocket_info, Message, fun handler_before_loop/4)
|
SoFar, websocket_info, Message, fun handler_before_loop/4)
|
||||||
end.
|
end.
|
||||||
|
|
||||||
%% All frames passing through this function are considered valid,
|
|
||||||
%% with the only exception of text and close frames with a payload
|
|
||||||
%% which may still contain errors.
|
|
||||||
-spec websocket_data(#state{}, Req, any(), binary())
|
-spec websocket_data(#state{}, Req, any(), binary())
|
||||||
-> {ok, Req, cowboy_middleware:env()}
|
-> {ok, Req, cowboy_middleware:env()}
|
||||||
| {suspend, module(), atom(), [any()]}
|
| {suspend, module(), atom(), [any()]}
|
||||||
when Req::cowboy_req:req().
|
when Req::cowboy_req:req().
|
||||||
%% RSV bits MUST be 0 unless an extension is negotiated
|
websocket_data(State=#state{frag_state=FragState, recv_extensions=Extensions}, Req, HandlerState, Data) ->
|
||||||
%% that defines meanings for non-zero values.
|
case cow_ws:parse_header(Data, Extensions, FragState) of
|
||||||
websocket_data(State, Req, HandlerState, << _:1, Rsv:3, _/bits >>)
|
|
||||||
when Rsv =/= 0, State#state.deflate_frame =:= false ->
|
|
||||||
websocket_close(State, Req, HandlerState, {error, badframe});
|
|
||||||
%% Invalid opcode. Note that these opcodes may be used by extensions.
|
|
||||||
websocket_data(State, Req, HandlerState, << _:4, Opcode:4, _/bits >>)
|
|
||||||
when Opcode > 2, Opcode =/= 8, Opcode =/= 9, Opcode =/= 10 ->
|
|
||||||
websocket_close(State, Req, HandlerState, {error, badframe});
|
|
||||||
%% Control frames MUST NOT be fragmented.
|
|
||||||
websocket_data(State, Req, HandlerState, << 0:1, _:3, Opcode:4, _/bits >>)
|
|
||||||
when Opcode >= 8 ->
|
|
||||||
websocket_close(State, Req, HandlerState, {error, badframe});
|
|
||||||
%% A frame MUST NOT use the zero opcode unless fragmentation was initiated.
|
|
||||||
websocket_data(State=#state{frag_state=undefined}, Req, HandlerState,
|
|
||||||
<< _:4, 0:4, _/bits >>) ->
|
|
||||||
websocket_close(State, Req, HandlerState, {error, badframe});
|
|
||||||
%% Non-control opcode when expecting control message or next fragment.
|
|
||||||
websocket_data(State=#state{frag_state={nofin, _, _}}, Req, HandlerState,
|
|
||||||
<< _:4, Opcode:4, _/bits >>)
|
|
||||||
when Opcode =/= 0, Opcode < 8 ->
|
|
||||||
websocket_close(State, Req, HandlerState, {error, badframe});
|
|
||||||
%% Close control frame length MUST be 0 or >= 2.
|
|
||||||
websocket_data(State, Req, HandlerState, << _:4, 8:4, _:1, 1:7, _/bits >>) ->
|
|
||||||
websocket_close(State, Req, HandlerState, {error, badframe});
|
|
||||||
%% Close control frame with incomplete close code. Need more data.
|
|
||||||
websocket_data(State, Req, HandlerState,
|
|
||||||
Data = << _:4, 8:4, 1:1, Len:7, _/bits >>)
|
|
||||||
when Len > 1, byte_size(Data) < 8 ->
|
|
||||||
handler_before_loop(State, Req, HandlerState, Data);
|
|
||||||
%% 7 bits payload length.
|
|
||||||
websocket_data(State, Req, HandlerState, << Fin:1, Rsv:3/bits, Opcode:4, 1:1,
|
|
||||||
Len:7, MaskKey:32, Rest/bits >>)
|
|
||||||
when Len < 126 ->
|
|
||||||
websocket_data(State, Req, HandlerState,
|
|
||||||
Opcode, Len, MaskKey, Rest, Rsv, Fin);
|
|
||||||
%% 16 bits payload length.
|
|
||||||
websocket_data(State, Req, HandlerState, << Fin:1, Rsv:3/bits, Opcode:4, 1:1,
|
|
||||||
126:7, Len:16, MaskKey:32, Rest/bits >>)
|
|
||||||
when Len > 125, Opcode < 8 ->
|
|
||||||
websocket_data(State, Req, HandlerState,
|
|
||||||
Opcode, Len, MaskKey, Rest, Rsv, Fin);
|
|
||||||
%% 63 bits payload length.
|
|
||||||
websocket_data(State, Req, HandlerState, << Fin:1, Rsv:3/bits, Opcode:4, 1:1,
|
|
||||||
127:7, 0:1, Len:63, MaskKey:32, Rest/bits >>)
|
|
||||||
when Len > 16#ffff, Opcode < 8 ->
|
|
||||||
websocket_data(State, Req, HandlerState,
|
|
||||||
Opcode, Len, MaskKey, Rest, Rsv, Fin);
|
|
||||||
%% When payload length is over 63 bits, the most significant bit MUST be 0.
|
|
||||||
websocket_data(State, Req, HandlerState, << _:8, 1:1, 127:7, 1:1, _:7, _/bits >>) ->
|
|
||||||
websocket_close(State, Req, HandlerState, {error, badframe});
|
|
||||||
%% All frames sent from the client to the server are masked.
|
%% All frames sent from the client to the server are masked.
|
||||||
websocket_data(State, Req, HandlerState, << _:8, 0:1, _/bits >>) ->
|
{_, _, _, _, undefined, _} ->
|
||||||
websocket_close(State, Req, HandlerState, {error, badframe});
|
websocket_close(State, Req, HandlerState, {error, badframe});
|
||||||
%% For the next two clauses, it can be one of the following:
|
%% No payload.
|
||||||
%%
|
{Type, FragState2, _, 0, _, Rest} ->
|
||||||
%% * The minimal number of bytes MUST be used to encode the length
|
websocket_dispatch(State#state{frag_state=FragState2}, Req, HandlerState, Type, <<>>, undefined, Rest);
|
||||||
%% * All control frames MUST have a payload length of 125 bytes or less
|
{Type, FragState2, Rsv, Len, MaskKey, Rest} ->
|
||||||
websocket_data(State, Req, HandlerState, << _:9, 126:7, _:48, _/bits >>) ->
|
websocket_payload(State#state{frag_state=FragState2}, Req, HandlerState, Type, Len, MaskKey, Rsv, Rest);
|
||||||
websocket_close(State, Req, HandlerState, {error, badframe});
|
more ->
|
||||||
websocket_data(State, Req, HandlerState, << _:9, 127:7, _:96, _/bits >>) ->
|
handler_before_loop(State, Req, HandlerState, Data);
|
||||||
websocket_close(State, Req, HandlerState, {error, badframe});
|
error ->
|
||||||
%% Need more data.
|
websocket_close(State, Req, HandlerState, {error, badframe})
|
||||||
websocket_data(State, Req, HandlerState, Data) ->
|
end.
|
||||||
handler_before_loop(State, Req, HandlerState, Data).
|
|
||||||
|
|
||||||
%% Initialize or update fragmentation state.
|
websocket_payload(State, Req, HandlerState, Type = close, Len, MaskKey, Rsv, Data) ->
|
||||||
-spec websocket_data(#state{}, Req, any(),
|
case cow_ws:parse_close_code(Data, MaskKey) of
|
||||||
opcode(), non_neg_integer(), mask_key(), binary(), rsv(), 0 | 1)
|
{ok, CloseCode, Rest} ->
|
||||||
-> {ok, Req, cowboy_middleware:env()}
|
websocket_payload(State, Req, HandlerState, Type, Len - 2, MaskKey, Rsv, CloseCode, <<>>, 2, Rest);
|
||||||
| {suspend, module(), atom(), [any()]}
|
error ->
|
||||||
when Req::cowboy_req:req().
|
websocket_close(State, Req, HandlerState, {error, badframe})
|
||||||
%% The opcode is only included in the first frame fragment.
|
end;
|
||||||
websocket_data(State=#state{frag_state=undefined}, Req, HandlerState,
|
websocket_payload(State, Req, HandlerState, Type, Len, MaskKey, Rsv, Data) ->
|
||||||
Opcode, Len, MaskKey, Data, Rsv, 0) ->
|
websocket_payload(State, Req, HandlerState, Type, Len, MaskKey, Rsv, undefined, <<>>, 0, Data).
|
||||||
websocket_payload(State#state{frag_state={nofin, Opcode, <<>>}},
|
|
||||||
Req, HandlerState, 0, Len, MaskKey, <<>>, 0, Data, Rsv);
|
|
||||||
%% Subsequent frame fragments.
|
|
||||||
websocket_data(State=#state{frag_state={nofin, _, _}}, Req, HandlerState,
|
|
||||||
0, Len, MaskKey, Data, Rsv, 0) ->
|
|
||||||
websocket_payload(State, Req, HandlerState,
|
|
||||||
0, Len, MaskKey, <<>>, 0, Data, Rsv);
|
|
||||||
%% Final frame fragment.
|
|
||||||
websocket_data(State=#state{frag_state={nofin, Opcode, SoFar}},
|
|
||||||
Req, HandlerState, 0, Len, MaskKey, Data, Rsv, 1) ->
|
|
||||||
websocket_payload(State#state{frag_state={fin, Opcode, SoFar}},
|
|
||||||
Req, HandlerState, 0, Len, MaskKey, <<>>, 0, Data, Rsv);
|
|
||||||
%% Unfragmented frame.
|
|
||||||
websocket_data(State, Req, HandlerState, Opcode, Len, MaskKey, Data, Rsv, 1) ->
|
|
||||||
websocket_payload(State, Req, HandlerState,
|
|
||||||
Opcode, Len, MaskKey, <<>>, 0, Data, Rsv).
|
|
||||||
|
|
||||||
-spec websocket_payload(#state{}, Req, any(),
|
websocket_payload(State=#state{frag_state=FragState, utf8_state=Incomplete, recv_extensions=Extensions},
|
||||||
opcode(), non_neg_integer(), mask_key(), binary(), non_neg_integer(),
|
Req, HandlerState, Type, Len, MaskKey, Rsv, CloseCode, Unmasked, UnmaskedLen, Data) ->
|
||||||
binary(), rsv())
|
case cow_ws:parse_payload(Data, MaskKey, Incomplete, UnmaskedLen, Type, Len, FragState, Extensions, Rsv) of
|
||||||
-> {ok, Req, cowboy_middleware:env()}
|
{ok, Payload, Utf8State, Rest} ->
|
||||||
| {suspend, module(), atom(), [any()]}
|
websocket_dispatch(State#state{utf8_state=Utf8State},
|
||||||
when Req::cowboy_req:req().
|
Req, HandlerState, Type, << Unmasked/binary, Payload/binary >>, CloseCode, Rest);
|
||||||
%% Close control frames with a payload MUST contain a valid close code.
|
{more, Payload, Utf8State} ->
|
||||||
websocket_payload(State, Req, HandlerState,
|
websocket_payload_loop(State#state{utf8_state=Utf8State},
|
||||||
Opcode=8, Len, MaskKey, <<>>, 0,
|
Req, HandlerState, Type, Len - byte_size(Data), MaskKey, Rsv, CloseCode,
|
||||||
<< MaskedCode:2/binary, Rest/bits >>, Rsv) ->
|
<< Unmasked/binary, Payload/binary >>, UnmaskedLen + byte_size(Data));
|
||||||
Unmasked = << Code:16 >> = websocket_unmask(MaskedCode, MaskKey, <<>>),
|
error ->
|
||||||
if Code < 1000; Code =:= 1004; Code =:= 1005; Code =:= 1006;
|
|
||||||
(Code > 1011) and (Code < 3000); Code > 4999 ->
|
|
||||||
websocket_close(State, Req, HandlerState, {error, badframe});
|
|
||||||
true ->
|
|
||||||
websocket_payload(State, Req, HandlerState,
|
|
||||||
Opcode, Len - 2, MaskKey, Unmasked, byte_size(MaskedCode),
|
|
||||||
Rest, Rsv)
|
|
||||||
end;
|
|
||||||
%% Text frames and close control frames MUST have a payload that is valid UTF-8.
|
|
||||||
websocket_payload(State=#state{utf8_state=Incomplete},
|
|
||||||
Req, HandlerState, Opcode, Len, MaskKey, Unmasked, UnmaskedLen,
|
|
||||||
Data, Rsv)
|
|
||||||
when (byte_size(Data) < Len) andalso ((Opcode =:= 1) orelse
|
|
||||||
((Opcode =:= 8) andalso (Unmasked =/= <<>>))) ->
|
|
||||||
Unmasked2 = websocket_unmask(Data,
|
|
||||||
rotate_mask_key(MaskKey, UnmaskedLen), <<>>),
|
|
||||||
{Unmasked3, State2} = websocket_inflate_frame(Unmasked2, Rsv, false, State),
|
|
||||||
case is_utf8(<< Incomplete/binary, Unmasked3/binary >>) of
|
|
||||||
false ->
|
|
||||||
websocket_close(State2, Req, HandlerState, {error, badencoding});
|
|
||||||
Utf8State ->
|
|
||||||
websocket_payload_loop(State2#state{utf8_state=Utf8State},
|
|
||||||
Req, HandlerState, Opcode, Len - byte_size(Data), MaskKey,
|
|
||||||
<< Unmasked/binary, Unmasked3/binary >>,
|
|
||||||
UnmaskedLen + byte_size(Data), Rsv)
|
|
||||||
end;
|
|
||||||
websocket_payload(State=#state{utf8_state=Incomplete},
|
|
||||||
Req, HandlerState, Opcode, Len, MaskKey, Unmasked, UnmaskedLen,
|
|
||||||
Data, Rsv)
|
|
||||||
when Opcode =:= 1; (Opcode =:= 8) and (Unmasked =/= <<>>) ->
|
|
||||||
<< End:Len/binary, Rest/bits >> = Data,
|
|
||||||
Unmasked2 = websocket_unmask(End,
|
|
||||||
rotate_mask_key(MaskKey, UnmaskedLen), <<>>),
|
|
||||||
{Unmasked3, State2} = websocket_inflate_frame(Unmasked2, Rsv, true, State),
|
|
||||||
case is_utf8(<< Incomplete/binary, Unmasked3/binary >>) of
|
|
||||||
<<>> ->
|
|
||||||
websocket_dispatch(State2#state{utf8_state= <<>>},
|
|
||||||
Req, HandlerState, Rest, Opcode,
|
|
||||||
<< Unmasked/binary, Unmasked3/binary >>);
|
|
||||||
_ ->
|
|
||||||
websocket_close(State2, Req, HandlerState, {error, badencoding})
|
|
||||||
end;
|
|
||||||
%% Fragmented text frames may cut payload in the middle of UTF-8 codepoints.
|
|
||||||
websocket_payload(State=#state{frag_state={_, 1, _}, utf8_state=Incomplete},
|
|
||||||
Req, HandlerState, Opcode=0, Len, MaskKey, Unmasked, UnmaskedLen,
|
|
||||||
Data, Rsv)
|
|
||||||
when byte_size(Data) < Len ->
|
|
||||||
Unmasked2 = websocket_unmask(Data,
|
|
||||||
rotate_mask_key(MaskKey, UnmaskedLen), <<>>),
|
|
||||||
{Unmasked3, State2} = websocket_inflate_frame(Unmasked2, Rsv, false, State),
|
|
||||||
case is_utf8(<< Incomplete/binary, Unmasked3/binary >>) of
|
|
||||||
false ->
|
|
||||||
websocket_close(State2, Req, HandlerState, {error, badencoding});
|
|
||||||
Utf8State ->
|
|
||||||
websocket_payload_loop(State2#state{utf8_state=Utf8State},
|
|
||||||
Req, HandlerState, Opcode, Len - byte_size(Data), MaskKey,
|
|
||||||
<< Unmasked/binary, Unmasked3/binary >>,
|
|
||||||
UnmaskedLen + byte_size(Data), Rsv)
|
|
||||||
end;
|
|
||||||
websocket_payload(State=#state{frag_state={Fin, 1, _}, utf8_state=Incomplete},
|
|
||||||
Req, HandlerState, Opcode=0, Len, MaskKey, Unmasked, UnmaskedLen,
|
|
||||||
Data, Rsv) ->
|
|
||||||
<< End:Len/binary, Rest/bits >> = Data,
|
|
||||||
Unmasked2 = websocket_unmask(End,
|
|
||||||
rotate_mask_key(MaskKey, UnmaskedLen), <<>>),
|
|
||||||
{Unmasked3, State2} = websocket_inflate_frame(Unmasked2, Rsv, Fin =:= fin, State),
|
|
||||||
case is_utf8(<< Incomplete/binary, Unmasked3/binary >>) of
|
|
||||||
<<>> ->
|
|
||||||
websocket_dispatch(State2#state{utf8_state= <<>>},
|
|
||||||
Req, HandlerState, Rest, Opcode,
|
|
||||||
<< Unmasked/binary, Unmasked3/binary >>);
|
|
||||||
Utf8State when is_binary(Utf8State), Fin =:= nofin ->
|
|
||||||
websocket_dispatch(State2#state{utf8_state=Utf8State},
|
|
||||||
Req, HandlerState, Rest, Opcode,
|
|
||||||
<< Unmasked/binary, Unmasked3/binary >>);
|
|
||||||
_ ->
|
|
||||||
websocket_close(State, Req, HandlerState, {error, badencoding})
|
websocket_close(State, Req, HandlerState, {error, badencoding})
|
||||||
end;
|
end.
|
||||||
%% Other frames have a binary payload.
|
|
||||||
websocket_payload(State, Req, HandlerState,
|
|
||||||
Opcode, Len, MaskKey, Unmasked, UnmaskedLen, Data, Rsv)
|
|
||||||
when byte_size(Data) < Len ->
|
|
||||||
Unmasked2 = websocket_unmask(Data,
|
|
||||||
rotate_mask_key(MaskKey, UnmaskedLen), <<>>),
|
|
||||||
{Unmasked3, State2} = websocket_inflate_frame(Unmasked2, Rsv, false, State),
|
|
||||||
websocket_payload_loop(State2, Req, HandlerState,
|
|
||||||
Opcode, Len - byte_size(Data), MaskKey,
|
|
||||||
<< Unmasked/binary, Unmasked3/binary >>, UnmaskedLen + byte_size(Data),
|
|
||||||
Rsv);
|
|
||||||
websocket_payload(State, Req, HandlerState,
|
|
||||||
Opcode, Len, MaskKey, Unmasked, UnmaskedLen, Data, Rsv) ->
|
|
||||||
<< End:Len/binary, Rest/bits >> = Data,
|
|
||||||
Unmasked2 = websocket_unmask(End,
|
|
||||||
rotate_mask_key(MaskKey, UnmaskedLen), <<>>),
|
|
||||||
{Unmasked3, State2} = websocket_inflate_frame(Unmasked2, Rsv, true, State),
|
|
||||||
websocket_dispatch(State2, Req, HandlerState, Rest, Opcode,
|
|
||||||
<< Unmasked/binary, Unmasked3/binary >>).
|
|
||||||
|
|
||||||
-spec websocket_inflate_frame(binary(), rsv(), boolean(), #state{}) ->
|
|
||||||
{binary(), #state{}}.
|
|
||||||
websocket_inflate_frame(Data, << Rsv1:1, _:2 >>, _,
|
|
||||||
#state{deflate_frame = DeflateFrame} = State)
|
|
||||||
when DeflateFrame =:= false orelse Rsv1 =:= 0 ->
|
|
||||||
{Data, State};
|
|
||||||
websocket_inflate_frame(Data, << 1:1, _:2 >>, false, State) ->
|
|
||||||
Result = zlib:inflate(State#state.inflate_state, Data),
|
|
||||||
{iolist_to_binary(Result), State};
|
|
||||||
websocket_inflate_frame(Data, << 1:1, _:2 >>, true, State) ->
|
|
||||||
Result = zlib:inflate(State#state.inflate_state,
|
|
||||||
<< Data/binary, 0:8, 0:8, 255:8, 255:8 >>),
|
|
||||||
{iolist_to_binary(Result), State}.
|
|
||||||
|
|
||||||
-spec websocket_unmask(B, mask_key(), B) -> B when B::binary().
|
|
||||||
websocket_unmask(<<>>, _, Unmasked) ->
|
|
||||||
Unmasked;
|
|
||||||
websocket_unmask(<< O:32, Rest/bits >>, MaskKey, Acc) ->
|
|
||||||
T = O bxor MaskKey,
|
|
||||||
websocket_unmask(Rest, MaskKey, << Acc/binary, T:32 >>);
|
|
||||||
websocket_unmask(<< O:24 >>, MaskKey, Acc) ->
|
|
||||||
<< MaskKey2:24, _:8 >> = << MaskKey:32 >>,
|
|
||||||
T = O bxor MaskKey2,
|
|
||||||
<< Acc/binary, T:24 >>;
|
|
||||||
websocket_unmask(<< O:16 >>, MaskKey, Acc) ->
|
|
||||||
<< MaskKey2:16, _:16 >> = << MaskKey:32 >>,
|
|
||||||
T = O bxor MaskKey2,
|
|
||||||
<< Acc/binary, T:16 >>;
|
|
||||||
websocket_unmask(<< O:8 >>, MaskKey, Acc) ->
|
|
||||||
<< MaskKey2:8, _:24 >> = << MaskKey:32 >>,
|
|
||||||
T = O bxor MaskKey2,
|
|
||||||
<< Acc/binary, T:8 >>.
|
|
||||||
|
|
||||||
%% Because we unmask on the fly we need to continue from the right mask byte.
|
|
||||||
-spec rotate_mask_key(mask_key(), non_neg_integer()) -> mask_key().
|
|
||||||
rotate_mask_key(MaskKey, UnmaskedLen) ->
|
|
||||||
Left = UnmaskedLen rem 4,
|
|
||||||
Right = 4 - Left,
|
|
||||||
(MaskKey bsl (Left * 8)) + (MaskKey bsr (Right * 8)).
|
|
||||||
|
|
||||||
%% Returns <<>> if the argument is valid UTF-8, false if not,
|
|
||||||
%% or the incomplete part of the argument if we need more data.
|
|
||||||
-spec is_utf8(binary()) -> false | binary().
|
|
||||||
is_utf8(Valid = <<>>) ->
|
|
||||||
Valid;
|
|
||||||
is_utf8(<< _/utf8, Rest/bits >>) ->
|
|
||||||
is_utf8(Rest);
|
|
||||||
%% 2 bytes. Codepages C0 and C1 are invalid; fail early.
|
|
||||||
is_utf8(<< 2#1100000:7, _/bits >>) ->
|
|
||||||
false;
|
|
||||||
is_utf8(Incomplete = << 2#110:3, _:5 >>) ->
|
|
||||||
Incomplete;
|
|
||||||
%% 3 bytes.
|
|
||||||
is_utf8(Incomplete = << 2#1110:4, _:4 >>) ->
|
|
||||||
Incomplete;
|
|
||||||
is_utf8(Incomplete = << 2#1110:4, _:4, 2#10:2, _:6 >>) ->
|
|
||||||
Incomplete;
|
|
||||||
%% 4 bytes. Codepage F4 may have invalid values greater than 0x10FFFF.
|
|
||||||
is_utf8(<< 2#11110100:8, 2#10:2, High:6, _/bits >>) when High >= 2#10000 ->
|
|
||||||
false;
|
|
||||||
is_utf8(Incomplete = << 2#11110:5, _:3 >>) ->
|
|
||||||
Incomplete;
|
|
||||||
is_utf8(Incomplete = << 2#11110:5, _:3, 2#10:2, _:6 >>) ->
|
|
||||||
Incomplete;
|
|
||||||
is_utf8(Incomplete = << 2#11110:5, _:3, 2#10:2, _:6, 2#10:2, _:6 >>) ->
|
|
||||||
Incomplete;
|
|
||||||
%% Invalid.
|
|
||||||
is_utf8(_) ->
|
|
||||||
false.
|
|
||||||
|
|
||||||
-spec websocket_payload_loop(#state{}, Req, any(),
|
|
||||||
opcode(), non_neg_integer(), mask_key(), binary(),
|
|
||||||
non_neg_integer(), rsv())
|
|
||||||
-> {ok, Req, cowboy_middleware:env()}
|
|
||||||
| {suspend, module(), atom(), [any()]}
|
|
||||||
when Req::cowboy_req:req().
|
|
||||||
websocket_payload_loop(State=#state{socket=Socket, transport=Transport,
|
websocket_payload_loop(State=#state{socket=Socket, transport=Transport,
|
||||||
messages={OK, Closed, Error}, timeout_ref=TRef},
|
messages={OK, Closed, Error}, timeout_ref=TRef},
|
||||||
Req, HandlerState, Opcode, Len, MaskKey, Unmasked, UnmaskedLen, Rsv) ->
|
Req, HandlerState, Type, Len, MaskKey, Rsv, CloseCode, Unmasked, UnmaskedLen) ->
|
||||||
Transport:setopts(Socket, [{active, once}]),
|
Transport:setopts(Socket, [{active, once}]),
|
||||||
receive
|
receive
|
||||||
{OK, Socket, Data} ->
|
{OK, Socket, Data} ->
|
||||||
State2 = handler_loop_timeout(State),
|
State2 = handler_loop_timeout(State),
|
||||||
websocket_payload(State2, Req, HandlerState,
|
websocket_payload(State2, Req, HandlerState,
|
||||||
Opcode, Len, MaskKey, Unmasked, UnmaskedLen, Data, Rsv);
|
Type, Len, MaskKey, Rsv, CloseCode, Unmasked, UnmaskedLen, Data);
|
||||||
{Closed, Socket} ->
|
{Closed, Socket} ->
|
||||||
handler_terminate(State, Req, HandlerState, {error, closed});
|
handler_terminate(State, Req, HandlerState, {error, closed});
|
||||||
{Error, Socket, Reason} ->
|
{Error, Socket, Reason} ->
|
||||||
|
@ -514,53 +260,46 @@ websocket_payload_loop(State=#state{socket=Socket, transport=Transport,
|
||||||
websocket_close(State, Req, HandlerState, timeout);
|
websocket_close(State, Req, HandlerState, timeout);
|
||||||
{timeout, OlderTRef, ?MODULE} when is_reference(OlderTRef) ->
|
{timeout, OlderTRef, ?MODULE} when is_reference(OlderTRef) ->
|
||||||
websocket_payload_loop(State, Req, HandlerState,
|
websocket_payload_loop(State, Req, HandlerState,
|
||||||
Opcode, Len, MaskKey, Unmasked, UnmaskedLen, Rsv);
|
Type, Len, MaskKey, Rsv, CloseCode, Unmasked, UnmaskedLen);
|
||||||
Message ->
|
Message ->
|
||||||
handler_call(State, Req, HandlerState,
|
handler_call(State, Req, HandlerState,
|
||||||
<<>>, websocket_info, Message,
|
<<>>, websocket_info, Message,
|
||||||
fun (State2, Req2, HandlerState2, _) ->
|
fun (State2, Req2, HandlerState2, _) ->
|
||||||
websocket_payload_loop(State2, Req2, HandlerState2,
|
websocket_payload_loop(State2, Req2, HandlerState2,
|
||||||
Opcode, Len, MaskKey, Unmasked, UnmaskedLen, Rsv)
|
Type, Len, MaskKey, Rsv, CloseCode, Unmasked, UnmaskedLen)
|
||||||
end)
|
end)
|
||||||
end.
|
end.
|
||||||
|
|
||||||
-spec websocket_dispatch(#state{}, Req, any(), binary(), opcode(), binary())
|
|
||||||
-> {ok, Req, cowboy_middleware:env()}
|
|
||||||
| {suspend, module(), atom(), [any()]}
|
|
||||||
when Req::cowboy_req:req().
|
|
||||||
%% Continuation frame.
|
%% Continuation frame.
|
||||||
websocket_dispatch(State=#state{frag_state={nofin, Opcode, SoFar}},
|
websocket_dispatch(State=#state{frag_state={nofin, _}, frag_buffer=SoFar},
|
||||||
Req, HandlerState, RemainingData, 0, Payload) ->
|
Req, HandlerState, fragment, Payload, _, RemainingData) ->
|
||||||
websocket_data(State#state{frag_state={nofin, Opcode,
|
websocket_data(State#state{frag_buffer= << SoFar/binary, Payload/binary >>}, Req, HandlerState, RemainingData);
|
||||||
<< SoFar/binary, Payload/binary >>}}, Req, HandlerState, RemainingData);
|
|
||||||
%% Last continuation frame.
|
%% Last continuation frame.
|
||||||
websocket_dispatch(State=#state{frag_state={fin, Opcode, SoFar}},
|
websocket_dispatch(State=#state{frag_state={fin, Type}, frag_buffer=SoFar},
|
||||||
Req, HandlerState, RemainingData, 0, Payload) ->
|
Req, HandlerState, fragment, Payload, CloseCode, RemainingData) ->
|
||||||
websocket_dispatch(State#state{frag_state=undefined}, Req, HandlerState,
|
websocket_dispatch(State#state{frag_state=undefined, frag_buffer= <<>>}, Req, HandlerState,
|
||||||
RemainingData, Opcode, << SoFar/binary, Payload/binary >>);
|
Type, << SoFar/binary, Payload/binary >>, CloseCode, RemainingData);
|
||||||
%% Text frame.
|
%% Text frame.
|
||||||
websocket_dispatch(State, Req, HandlerState, RemainingData, 1, Payload) ->
|
websocket_dispatch(State, Req, HandlerState, text, Payload, _, RemainingData) ->
|
||||||
handler_call(State, Req, HandlerState, RemainingData,
|
handler_call(State, Req, HandlerState, RemainingData,
|
||||||
websocket_handle, {text, Payload}, fun websocket_data/4);
|
websocket_handle, {text, Payload}, fun websocket_data/4);
|
||||||
%% Binary frame.
|
%% Binary frame.
|
||||||
websocket_dispatch(State, Req, HandlerState, RemainingData, 2, Payload) ->
|
websocket_dispatch(State, Req, HandlerState, binary, Payload, _, RemainingData) ->
|
||||||
handler_call(State, Req, HandlerState, RemainingData,
|
handler_call(State, Req, HandlerState, RemainingData,
|
||||||
websocket_handle, {binary, Payload}, fun websocket_data/4);
|
websocket_handle, {binary, Payload}, fun websocket_data/4);
|
||||||
%% Close control frame.
|
%% Close control frame.
|
||||||
websocket_dispatch(State, Req, HandlerState, _RemainingData, 8, <<>>) ->
|
websocket_dispatch(State, Req, HandlerState, close, _, undefined, _) ->
|
||||||
websocket_close(State, Req, HandlerState, remote);
|
websocket_close(State, Req, HandlerState, remote);
|
||||||
websocket_dispatch(State, Req, HandlerState, _RemainingData, 8,
|
websocket_dispatch(State, Req, HandlerState, close, Payload, Code, _) ->
|
||||||
<< Code:16, Payload/bits >>) ->
|
|
||||||
websocket_close(State, Req, HandlerState, {remote, Code, Payload});
|
websocket_close(State, Req, HandlerState, {remote, Code, Payload});
|
||||||
%% Ping control frame. Send a pong back and forward the ping to the handler.
|
%% Ping control frame. Send a pong back and forward the ping to the handler.
|
||||||
websocket_dispatch(State=#state{socket=Socket, transport=Transport},
|
websocket_dispatch(State=#state{socket=Socket, transport=Transport, send_extensions=Extensions},
|
||||||
Req, HandlerState, RemainingData, 9, Payload) ->
|
Req, HandlerState, ping, Payload, _, RemainingData) ->
|
||||||
Len = payload_length_to_binary(byte_size(Payload)),
|
Transport:send(Socket, cow_ws:frame({pong, Payload}, Extensions)),
|
||||||
Transport:send(Socket, << 1:1, 0:3, 10:4, 0:1, Len/bits, Payload/binary >>),
|
|
||||||
handler_call(State, Req, HandlerState, RemainingData,
|
handler_call(State, Req, HandlerState, RemainingData,
|
||||||
websocket_handle, {ping, Payload}, fun websocket_data/4);
|
websocket_handle, {ping, Payload}, fun websocket_data/4);
|
||||||
%% Pong control frame.
|
%% Pong control frame.
|
||||||
websocket_dispatch(State, Req, HandlerState, RemainingData, 10, Payload) ->
|
websocket_dispatch(State, Req, HandlerState, pong, Payload, _, RemainingData) ->
|
||||||
handler_call(State, Req, HandlerState, RemainingData,
|
handler_call(State, Req, HandlerState, RemainingData,
|
||||||
websocket_handle, {pong, Payload}, fun websocket_data/4).
|
websocket_handle, {pong, Payload}, fun websocket_data/4).
|
||||||
|
|
||||||
|
@ -579,42 +318,42 @@ handler_call(State=#state{handler=Handler}, Req, HandlerState,
|
||||||
{reply, Payload, Req2, HandlerState2}
|
{reply, Payload, Req2, HandlerState2}
|
||||||
when is_list(Payload) ->
|
when is_list(Payload) ->
|
||||||
case websocket_send_many(Payload, State) of
|
case websocket_send_many(Payload, State) of
|
||||||
{ok, State2} ->
|
ok ->
|
||||||
NextState(State2, Req2, HandlerState2, RemainingData);
|
NextState(State, Req2, HandlerState2, RemainingData);
|
||||||
{stop, State2} ->
|
stop ->
|
||||||
handler_terminate(State2, Req2, HandlerState2, stop);
|
handler_terminate(State, Req2, HandlerState2, stop);
|
||||||
{{error, _} = Error, State2} ->
|
Error = {error, _} ->
|
||||||
handler_terminate(State2, Req2, HandlerState2, Error)
|
handler_terminate(State, Req2, HandlerState2, Error)
|
||||||
end;
|
end;
|
||||||
{reply, Payload, Req2, HandlerState2, hibernate}
|
{reply, Payload, Req2, HandlerState2, hibernate}
|
||||||
when is_list(Payload) ->
|
when is_list(Payload) ->
|
||||||
case websocket_send_many(Payload, State) of
|
case websocket_send_many(Payload, State) of
|
||||||
{ok, State2} ->
|
ok ->
|
||||||
NextState(State2#state{hibernate=true},
|
NextState(State#state{hibernate=true},
|
||||||
Req2, HandlerState2, RemainingData);
|
Req2, HandlerState2, RemainingData);
|
||||||
{stop, State2} ->
|
stop ->
|
||||||
handler_terminate(State2, Req2, HandlerState2, stop);
|
handler_terminate(State, Req2, HandlerState2, stop);
|
||||||
{{error, _} = Error, State2} ->
|
Error = {error, _} ->
|
||||||
handler_terminate(State2, Req2, HandlerState2, Error)
|
handler_terminate(State, Req2, HandlerState2, Error)
|
||||||
end;
|
end;
|
||||||
{reply, Payload, Req2, HandlerState2} ->
|
{reply, Payload, Req2, HandlerState2} ->
|
||||||
case websocket_send(Payload, State) of
|
case websocket_send(Payload, State) of
|
||||||
{ok, State2} ->
|
ok ->
|
||||||
NextState(State2, Req2, HandlerState2, RemainingData);
|
NextState(State, Req2, HandlerState2, RemainingData);
|
||||||
{stop, State2} ->
|
stop ->
|
||||||
handler_terminate(State2, Req2, HandlerState2, stop);
|
handler_terminate(State, Req2, HandlerState2, stop);
|
||||||
{{error, _} = Error, State2} ->
|
Error = {error, _} ->
|
||||||
handler_terminate(State2, Req2, HandlerState2, Error)
|
handler_terminate(State, Req2, HandlerState2, Error)
|
||||||
end;
|
end;
|
||||||
{reply, Payload, Req2, HandlerState2, hibernate} ->
|
{reply, Payload, Req2, HandlerState2, hibernate} ->
|
||||||
case websocket_send(Payload, State) of
|
case websocket_send(Payload, State) of
|
||||||
{ok, State2} ->
|
ok ->
|
||||||
NextState(State2#state{hibernate=true},
|
NextState(State#state{hibernate=true},
|
||||||
Req2, HandlerState2, RemainingData);
|
Req2, HandlerState2, RemainingData);
|
||||||
{stop, State2} ->
|
stop ->
|
||||||
handler_terminate(State2, Req2, HandlerState2, stop);
|
handler_terminate(State, Req2, HandlerState2, stop);
|
||||||
{{error, _} = Error, State2} ->
|
Error = {error, _} ->
|
||||||
handler_terminate(State2, Req2, HandlerState2, Error)
|
handler_terminate(State, Req2, HandlerState2, Error)
|
||||||
end;
|
end;
|
||||||
{stop, Req2, HandlerState2} ->
|
{stop, Req2, HandlerState2} ->
|
||||||
websocket_close(State, Req2, HandlerState2, stop)
|
websocket_close(State, Req2, HandlerState2, stop)
|
||||||
|
@ -630,103 +369,44 @@ handler_call(State=#state{handler=Handler}, Req, HandlerState,
|
||||||
])
|
])
|
||||||
end.
|
end.
|
||||||
|
|
||||||
websocket_opcode(text) -> 1;
|
-spec websocket_send(cow_ws:frame(), #state{}) -> ok | stop | {error, atom()}.
|
||||||
websocket_opcode(binary) -> 2;
|
websocket_send(Frame, #state{socket=Socket, transport=Transport, send_extensions=Extensions}) ->
|
||||||
websocket_opcode(close) -> 8;
|
Res = Transport:send(Socket, cow_ws:frame(Frame, Extensions)),
|
||||||
websocket_opcode(ping) -> 9;
|
case Frame of
|
||||||
websocket_opcode(pong) -> 10.
|
close -> stop;
|
||||||
|
{close, _} -> stop;
|
||||||
-spec websocket_deflate_frame(opcode(), binary(), #state{}) ->
|
{close, _, _} -> stop;
|
||||||
{binary(), rsv(), #state{}}.
|
_ -> Res
|
||||||
websocket_deflate_frame(Opcode, Payload,
|
|
||||||
State=#state{deflate_frame = DeflateFrame})
|
|
||||||
when DeflateFrame =:= false orelse Opcode >= 8 ->
|
|
||||||
{Payload, << 0:3 >>, State};
|
|
||||||
websocket_deflate_frame(_, Payload, State=#state{deflate_state = Deflate}) ->
|
|
||||||
Deflated = iolist_to_binary(zlib:deflate(Deflate, Payload, sync)),
|
|
||||||
DeflatedBodyLength = erlang:size(Deflated) - 4,
|
|
||||||
Deflated1 = case Deflated of
|
|
||||||
<< Body:DeflatedBodyLength/binary, 0:8, 0:8, 255:8, 255:8 >> -> Body;
|
|
||||||
_ -> Deflated
|
|
||||||
end,
|
|
||||||
{Deflated1, << 1:1, 0:2 >>, State}.
|
|
||||||
|
|
||||||
-spec websocket_send(frame(), #state{})
|
|
||||||
-> {ok, #state{}} | {stop, #state{}} | {{error, atom()}, #state{}}.
|
|
||||||
websocket_send(Type = close, State=#state{socket=Socket, transport=Transport}) ->
|
|
||||||
Opcode = websocket_opcode(Type),
|
|
||||||
case Transport:send(Socket, << 1:1, 0:3, Opcode:4, 0:8 >>) of
|
|
||||||
ok -> {stop, State};
|
|
||||||
Error -> {Error, State}
|
|
||||||
end;
|
|
||||||
websocket_send(Type, State=#state{socket=Socket, transport=Transport})
|
|
||||||
when Type =:= ping; Type =:= pong ->
|
|
||||||
Opcode = websocket_opcode(Type),
|
|
||||||
{Transport:send(Socket, << 1:1, 0:3, Opcode:4, 0:8 >>), State};
|
|
||||||
websocket_send({close, Payload}, State) ->
|
|
||||||
websocket_send({close, 1000, Payload}, State);
|
|
||||||
websocket_send({Type = close, StatusCode, Payload}, State=#state{
|
|
||||||
socket=Socket, transport=Transport}) ->
|
|
||||||
Opcode = websocket_opcode(Type),
|
|
||||||
Len = 2 + iolist_size(Payload),
|
|
||||||
%% Control packets must not be > 125 in length.
|
|
||||||
true = Len =< 125,
|
|
||||||
BinLen = payload_length_to_binary(Len),
|
|
||||||
Transport:send(Socket,
|
|
||||||
[<< 1:1, 0:3, Opcode:4, 0:1, BinLen/bits, StatusCode:16 >>, Payload]),
|
|
||||||
{stop, State};
|
|
||||||
websocket_send({Type, Payload0}, State=#state{socket=Socket, transport=Transport}) ->
|
|
||||||
Opcode = websocket_opcode(Type),
|
|
||||||
{Payload, Rsv, State2} = websocket_deflate_frame(Opcode, iolist_to_binary(Payload0), State),
|
|
||||||
Len = iolist_size(Payload),
|
|
||||||
%% Control packets must not be > 125 in length.
|
|
||||||
true = if Type =:= ping; Type =:= pong ->
|
|
||||||
Len =< 125;
|
|
||||||
true ->
|
|
||||||
true
|
|
||||||
end,
|
|
||||||
BinLen = payload_length_to_binary(Len),
|
|
||||||
{Transport:send(Socket,
|
|
||||||
[<< 1:1, Rsv/bits, Opcode:4, 0:1, BinLen/bits >>, Payload]), State2}.
|
|
||||||
|
|
||||||
-spec payload_length_to_binary(0..16#7fffffffffffffff)
|
|
||||||
-> << _:7 >> | << _:23 >> | << _:71 >>.
|
|
||||||
payload_length_to_binary(N) ->
|
|
||||||
case N of
|
|
||||||
N when N =< 125 -> << N:7 >>;
|
|
||||||
N when N =< 16#ffff -> << 126:7, N:16 >>;
|
|
||||||
N when N =< 16#7fffffffffffffff -> << 127:7, N:64 >>
|
|
||||||
end.
|
end.
|
||||||
|
|
||||||
-spec websocket_send_many([frame()], #state{})
|
-spec websocket_send_many([cow_ws:frame()], #state{}) -> ok | stop | {error, atom()}.
|
||||||
-> {ok, #state{}} | {stop, #state{}} | {{error, atom()}, #state{}}.
|
websocket_send_many([], _) ->
|
||||||
websocket_send_many([], State) ->
|
ok;
|
||||||
{ok, State};
|
|
||||||
websocket_send_many([Frame|Tail], State) ->
|
websocket_send_many([Frame|Tail], State) ->
|
||||||
case websocket_send(Frame, State) of
|
case websocket_send(Frame, State) of
|
||||||
{ok, State2} -> websocket_send_many(Tail, State2);
|
ok -> websocket_send_many(Tail, State);
|
||||||
{stop, State2} -> {stop, State2};
|
stop -> stop;
|
||||||
{Error, State2} -> {Error, State2}
|
Error -> Error
|
||||||
end.
|
end.
|
||||||
|
|
||||||
-spec websocket_close(#state{}, Req, any(), terminate_reason())
|
-spec websocket_close(#state{}, Req, any(), terminate_reason())
|
||||||
-> {ok, Req, cowboy_middleware:env()}
|
-> {ok, Req, cowboy_middleware:env()}
|
||||||
when Req::cowboy_req:req().
|
when Req::cowboy_req:req().
|
||||||
websocket_close(State=#state{socket=Socket, transport=Transport},
|
websocket_close(State=#state{socket=Socket, transport=Transport, send_extensions=Extensions},
|
||||||
Req, HandlerState, Reason) ->
|
Req, HandlerState, Reason) ->
|
||||||
case Reason of
|
case Reason of
|
||||||
Normal when Normal =:= stop; Normal =:= timeout ->
|
Normal when Normal =:= stop; Normal =:= timeout ->
|
||||||
Transport:send(Socket, << 1:1, 0:3, 8:4, 0:1, 2:7, 1000:16 >>);
|
Transport:send(Socket, cow_ws:frame({close, 1000, <<>>}, Extensions));
|
||||||
{error, badframe} ->
|
{error, badframe} ->
|
||||||
Transport:send(Socket, << 1:1, 0:3, 8:4, 0:1, 2:7, 1002:16 >>);
|
Transport:send(Socket, cow_ws:frame({close, 1002, <<>>}, Extensions));
|
||||||
{error, badencoding} ->
|
{error, badencoding} ->
|
||||||
Transport:send(Socket, << 1:1, 0:3, 8:4, 0:1, 2:7, 1007:16 >>);
|
Transport:send(Socket, cow_ws:frame({close, 1007, <<>>}, Extensions));
|
||||||
{crash, _, _} ->
|
{crash, _, _} ->
|
||||||
Transport:send(Socket, << 1:1, 0:3, 8:4, 0:1, 2:7, 1011:16 >>);
|
Transport:send(Socket, cow_ws:frame({close, 1011, <<>>}, Extensions));
|
||||||
remote ->
|
remote ->
|
||||||
Transport:send(Socket, << 1:1, 0:3, 8:4, 0:8 >>);
|
Transport:send(Socket, cow_ws:frame(close, Extensions));
|
||||||
{remote, Code, _} ->
|
{remote, Code, _} ->
|
||||||
Transport:send(Socket, << 1:1, 0:3, 8:4, 0:1, 2:7, Code:16 >>)
|
Transport:send(Socket, cow_ws:frame({close, Code, <<>>}, Extensions))
|
||||||
end,
|
end,
|
||||||
handler_terminate(State, Req, HandlerState, Reason).
|
handler_terminate(State, Req, HandlerState, Reason).
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue