25
1
mirror of https://github.com/processone/ejabberd.git synced 2024-11-22 16:20:52 +01:00

Reverted to r76 as 97 is completely broken and should not have been checked in at all (thanks to Stefan Strigler)

SVN Revision: 2270
This commit is contained in:
Badlop 2009-06-16 18:24:18 +00:00
parent 197639a34b
commit 832d59803a
2 changed files with 500 additions and 468 deletions

View File

@ -3,16 +3,17 @@
%%% Author : Stefan Strigler <steve@zeank.in-berlin.de> %%% Author : Stefan Strigler <steve@zeank.in-berlin.de>
%%% Purpose : HTTP Binding support (JEP-0124) %%% Purpose : HTTP Binding support (JEP-0124)
%%% Created : 21 Sep 2005 by Stefan Strigler <steve@zeank.in-berlin.de> %%% Created : 21 Sep 2005 by Stefan Strigler <steve@zeank.in-berlin.de>
%%% Id : $Id: $
%%%---------------------------------------------------------------------- %%%----------------------------------------------------------------------
-module(ejabberd_http_bind). -module(ejabberd_http_bind).
-author('steve@zeank.in-berlin.de'). -author('steve@zeank.in-berlin.de').
-vsn('1.9'). -vsn('Revision: 1.4').
-behaviour(gen_fsm). -behaviour(gen_fsm).
%% External exports %% External exports
-export([start_link/3, -export([start_link/2,
init/1, init/1,
handle_event/3, handle_event/3,
handle_sync_event/4, handle_sync_event/4,
@ -25,7 +26,7 @@
close/1, close/1,
process_request/1]). process_request/1]).
-define(ejabberd_debug, true). %%-define(ejabberd_debug, true).
-include("ejabberd.hrl"). -include("ejabberd.hrl").
-include("jlib.hrl"). -include("jlib.hrl").
@ -34,7 +35,10 @@
-record(http_bind, {id, pid, to, hold, wait}). -record(http_bind, {id, pid, to, hold, wait}).
%% http binding request %% http binding request
-record(hbr, {rid, key, in, out}). -record(hbr, {rid,
key,
in,
out}).
-record(state, {id, -record(state, {id,
rid = error, rid = error,
@ -49,7 +53,8 @@
req_list = [] % list of requests req_list = [] % list of requests
}). }).
-define(DBGFSM, true).
%%-define(DBGFSM, true).
-ifdef(DBGFSM). -ifdef(DBGFSM).
-define(FSMOPTS, [{debug, [trace]}]). -define(FSMOPTS, [{debug, [trace]}]).
@ -57,8 +62,6 @@
-define(FSMOPTS, []). -define(FSMOPTS, []).
-endif. -endif.
-define(BOSH_VERSION, "1.6").
-define(MAX_REQUESTS, 2). % number of simultaneous requests -define(MAX_REQUESTS, 2). % number of simultaneous requests
-define(MIN_POLLING, "2"). % don't poll faster than that or we will shoot you -define(MIN_POLLING, "2"). % don't poll faster than that or we will shoot you
-define(MAX_WAIT, 3600). % max num of secs to keep a request on hold -define(MAX_WAIT, 3600). % max num of secs to keep a request on hold
@ -66,17 +69,18 @@
-define(CT, {"Content-Type", "text/xml; charset=utf-8"}). -define(CT, {"Content-Type", "text/xml; charset=utf-8"}).
-define(HEADER, [?CT,{"X-Sponsored-By", "http://mabber.com"}]). -define(HEADER, [?CT,{"X-Sponsored-By", "http://mabber.com"}]).
%%%---------------------------------------------------------------------- %%%----------------------------------------------------------------------
%%% API %%% API
%%%---------------------------------------------------------------------- %%%----------------------------------------------------------------------
start(Sid, Rid, Key) -> start(Sid, Key) ->
mnesia:create_table(http_bind, mnesia:create_table(http_bind,
[{ram_copies, [node()]}, [{ram_copies, [node()]},
{attributes, record_info(fields, http_bind)}]), {attributes, record_info(fields, http_bind)}]),
supervisor:start_child(ejabberd_http_bind_sup, [Sid, Rid, Key]). supervisor:start_child(ejabberd_http_bind_sup, [Sid, Key]).
start_link(Sid, Rid, Key) -> start_link(Sid, Key) ->
gen_fsm:start_link(?MODULE, [Sid, Rid, Key], ?FSMOPTS). gen_fsm:start_link(?MODULE, [Sid, Key], ?FSMOPTS).
send({http_bind, FsmRef}, Packet) -> send({http_bind, FsmRef}, Packet) ->
gen_fsm:sync_send_all_state_event(FsmRef, {send, Packet}). gen_fsm:sync_send_all_state_event(FsmRef, {send, Packet}).
@ -95,26 +99,94 @@ controlling_process(_Socket, _Pid) ->
close({http_bind, FsmRef}) -> close({http_bind, FsmRef}) ->
catch gen_fsm:sync_send_all_state_event(FsmRef, close). catch gen_fsm:sync_send_all_state_event(FsmRef, close).
process_request(Data) -> process_request(Data) ->
case catch parse_request(Data) of case catch parse_request(Data) of
{ok, {[], Attrs, Packet}} -> %% no session id - create a new one! {ok, {ParsedSid, Rid, Key, NewKey, Attrs, Packet}} ->
?DEBUG("no sid given. create a new session?", []), XmppDomain = xml:get_attr_s("to",Attrs),
case xml:get_attr_s("to",Attrs) of if
[] -> %% missing 'to' - can't proceed (ParsedSid == "") and (XmppDomain == "") ->
?DEBUG("missing 'to' attribute, can't create session", []),
{200, ?HEADER, "<body type='terminate' " {200, ?HEADER, "<body type='terminate' "
"condition='improper-addressing' " "condition='improper-addressing' "
"xmlns='http://jabber.org/protocol/httpbind'/>"}; "xmlns='http://jabber.org/protocol/httpbind'/>"};
XmppDomain -> true ->
create_session(XmppDomain, Attrs, Packet) Sid = if
end; (ParsedSid == "") ->
{ok, {Sid, Attrs, Packet}} -> %% create new session
case check_request(Sid, Attrs, Packet) of NewSid = sha:sha(term_to_binary({now(), make_ref()})),
{ok, Pid} = start(NewSid, Key),
?DEBUG("got pid: ~p", [Pid]),
Wait = case
string:to_integer(xml:get_attr_s("wait",Attrs))
of
{error, _} ->
?MAX_WAIT;
{CWait, _} ->
if
(CWait > ?MAX_WAIT) ->
?MAX_WAIT;
true ->
CWait
end
end,
Hold = case
string:to_integer(
xml:get_attr_s("hold",Attrs))
of
{error, _} ->
(?MAX_REQUESTS - 1);
{CHold, _} ->
if
(CHold > (?MAX_REQUESTS - 1)) ->
(?MAX_REQUESTS - 1);
true ->
CHold
end
end,
mnesia:transaction(
fun() ->
mnesia:write(#http_bind{id = NewSid,
pid = Pid,
to = XmppDomain,
wait = Wait,
hold = Hold})
end),
StreamStart = if
(XmppDomain /= "") ->
true;
true ->
false
end,
InPacket = Packet,
NewSid;
true ->
%% old session
Type = xml:get_attr_s("type",Attrs),
StreamStart =
case xml:get_attr_s("xmpp:restart",Attrs) of
"true" ->
true;
_ ->
false
end,
Wait = ?MAX_WAIT,
Hold = (?MAX_REQUESTS - 1),
if
(Type == "terminate") ->
%% terminate session
InPacket = Packet ++ "</stream:stream>";
true ->
InPacket = Packet
end,
ParsedSid
end,
%% ?DEBUG("~n InPacket: ~s ~n", [InPacket]),
case http_put(Sid, Rid, Key, NewKey, Hold, InPacket, StreamStart) of
{error, not_exists} -> {error, not_exists} ->
?DEBUG("no session associated with sid: ~p", [Sid]), ?DEBUG("no session associated with sid: ~p", [Sid]),
{404, ?HEADER, ""}; {404, ?HEADER, ""};
{error, bad_key} -> {error, bad_key} ->
%%?DEBUG("bad key: ~s", [Key]), ?DEBUG("bad key: ~s", [Key]),
case mnesia:dirty_read({http_bind, Sid}) of case mnesia:dirty_read({http_bind, Sid}) of
[] -> [] ->
{404, ?HEADER, ""}; {404, ?HEADER, ""};
@ -122,12 +194,6 @@ process_request(Data) ->
gen_fsm:sync_send_all_state_event(FsmRef,stop), gen_fsm:sync_send_all_state_event(FsmRef,stop),
{404, ?HEADER, ""} {404, ?HEADER, ""}
end; end;
{repeat, OutPacket} ->
?DEBUG("http_put said 'repeat!' ...~nOutPacket: ~p",
[OutPacket]),
send_outpacket(Sid, OutPacket);
{ok, Rid} ->
case http_put(Sid, Attrs, Packet) of
{error, polling_too_frequently} -> {error, polling_too_frequently} ->
?DEBUG("polling too frequently: ~p", [Sid]), ?DEBUG("polling too frequently: ~p", [Sid]),
case mnesia:dirty_read({http_bind, Sid}) of case mnesia:dirty_read({http_bind, Sid}) of
@ -137,16 +203,190 @@ process_request(Data) ->
gen_fsm:sync_send_all_state_event(FsmRef,stop), gen_fsm:sync_send_all_state_event(FsmRef,stop),
{403, ?HEADER, ""} {403, ?HEADER, ""}
end; end;
{repeat, OutPacket} ->
?DEBUG("http_put said 'repeat!' ...~nOutPacket: ~p",
[OutPacket]),
send_outpacket(Sid, OutPacket);
ok -> ok ->
receive_loop(Sid, Rid); receive_loop(Sid,ParsedSid,Rid,Wait,Hold,Attrs)
_ ->
{400, ?HEADER, ""}
end end
end; end;
_ -> _ ->
{400, ?HEADER, ""} {400, ?HEADER, ""}
end. end.
receive_loop(Sid,ParsedSid,Rid,Wait,Hold,Attrs) ->
receive
after 100 -> ok
end,
prepare_response(Sid,ParsedSid,Rid,Wait,Hold,Attrs).
prepare_response(Sid,ParsedSid,Rid,Wait,Hold,Attrs) ->
case http_get(Sid,Rid) of
{error, not_exists} ->
?DEBUG("no session associated with sid: ~s", Sid),
{404, ?HEADER, ""};
{ok, keep_on_hold} ->
receive_loop(Sid,ParsedSid,Rid,Wait,Hold,Attrs);
{ok, cancel} ->
%% actually it would be better if we could completely
%% cancel this request, but then we would have to hack
%% ejabberd_http and I'm too lazy now
{404, ?HEADER, ""};
{ok, OutPacket} ->
?DEBUG("OutPacket: ~s", [OutPacket]),
if
Sid == ParsedSid ->
send_outpacket(Sid, OutPacket);
true ->
To = xml:get_attr_s("to",Attrs),
OutEls = case xml_stream:parse_element(
OutPacket++"</stream:stream>") of
El when element(1, El) == xmlelement ->
{xmlelement, _, OutAttrs, Els} = El,
AuthID = xml:get_attr_s("id", OutAttrs),
StreamError = false,
case Els of
[] ->
[];
[{xmlelement, "stream:features", StreamAttribs, StreamEls} | StreamTail] ->
[{xmlelement, "stream:features", [{"xmlns:stream","http://etherx.jabber.org/streams"}] ++ StreamAttribs, StreamEls}] ++ StreamTail;
Xml ->
Xml
end;
{error, _} ->
AuthID = "",
StreamError = true,
[]
end,
if
To == "" ->
{200, ?HEADER, "<body type='terminate' "
"condition='improper-addressing' "
"xmlns='http://jabber.org/protocol/httpbind'/>"};
StreamError == true ->
{200, ?HEADER, "<body type='terminate' "
"condition='host-unknown' "
"xmlns='http://jabber.org/protocol/httpbind'/>"};
true ->
{200, ?HEADER,
xml:element_to_string(
{xmlelement,"body",
[{"xmlns",
"http://jabber.org/protocol/httpbind"},
{"sid",Sid},
{"wait", integer_to_list(Wait)},
{"requests", integer_to_list(Hold+1)},
{"inactivity",
integer_to_list(trunc(?MAX_INACTIVITY/1000))},
{"polling", ?MIN_POLLING},
{"authid", AuthID}
],OutEls})}
end
end
end.
send_outpacket(Sid, OutPacket) ->
case OutPacket of
"" ->
{200, ?HEADER, "<body xmlns='http://jabber.org/protocol/httpbind'/>"};
"</stream:stream>" ->
case mnesia:dirty_read({http_bind, Sid}) of
[#http_bind{pid = FsmRef}] ->
gen_fsm:sync_send_all_state_event(FsmRef,stop)
end,
{200, ?HEADER, "<body xmlns='http://jabber.org/protocol/httpbind'/>"};
_ ->
case xml_stream:parse_element("<body>"
++ OutPacket
++ "</body>")
of
El when element(1, El) == xmlelement ->
{xmlelement, _, _, OEls} = El,
TypedEls = [xml:replace_tag_attr("xmlns",
"jabber:client",OEl) ||
OEl <- OEls],
?DEBUG(" --- outgoing data --- ~n~s~n --- END --- ~n",
[xml:element_to_string(
{xmlelement,"body",
[{"xmlns",
"http://jabber.org/protocol/httpbind"}],
TypedEls})]
),
{200, ?HEADER,
xml:element_to_string(
{xmlelement,"body",
[{"xmlns",
"http://jabber.org/protocol/httpbind"}],
TypedEls})};
{error, _E} ->
OutEls = case xml_stream:parse_element(
OutPacket++"</stream:stream>") of
SEl when element(1, SEl) == xmlelement ->
{xmlelement, _, _OutAttrs, SEls} = SEl,
StreamError = false,
case SEls of
[] ->
[];
[{xmlelement, "stream:features", StreamAttribs, StreamEls} | StreamTail] ->
TypedTail = [xml:replace_tag_attr("xmlns",
"jabber:client",OEl) ||
OEl <- StreamTail],
[{xmlelement, "stream:features", [{"xmlns:stream","http://etherx.jabber.org/streams"}] ++ StreamAttribs, StreamEls}] ++ TypedTail;
Xml ->
Xml
end;
{error, _} ->
StreamError = true,
[]
end,
if
StreamError ->
StreamErrCond = case xml_stream:parse_element(
"<stream:stream>"++OutPacket) of
El when element(1, El) == xmlelement ->
{xmlelement, _Tag, _Attr, Els} = El,
[{xmlelement, SE, _, Cond} | _] = Els,
if
SE == "stream:error" ->
Cond;
true ->
null
end;
{error, _E} ->
null
end,
case mnesia:dirty_read({http_bind, Sid}) of
[#http_bind{pid = FsmRef}] ->
gen_fsm:sync_send_all_state_event(FsmRef,stop);
_ ->
err %% hu?
end,
case StreamErrCond of
null ->
{200, ?HEADER,
"<body type='terminate' "
"condition='internal-server-error' "
"xmlns='http://jabber.org/protocol/httpbind'/>"};
_ ->
{200, ?HEADER,
"<body type='terminate' "
"condition='remote-stream-error' "
"xmlns='http://jabber.org/protocol/httpbind'>" ++
elements_to_string(StreamErrCond) ++
"</body>"}
end;
true ->
{200, ?HEADER,
xml:element_to_string(
{xmlelement,"body",
[{"xmlns",
"http://jabber.org/protocol/httpbind"}],
OutEls})}
end
end
end.
%%%---------------------------------------------------------------------- %%%----------------------------------------------------------------------
%%% Callback functions from gen_fsm %%% Callback functions from gen_fsm
%%%---------------------------------------------------------------------- %%%----------------------------------------------------------------------
@ -158,7 +398,7 @@ process_request(Data) ->
%% ignore | %% ignore |
%% {stop, StopReason} %% {stop, StopReason}
%%---------------------------------------------------------------------- %%----------------------------------------------------------------------
init([Sid, Rid, Key]) -> init([Sid, Key]) ->
?INFO_MSG("started: ~p", [{Sid, Key}]), ?INFO_MSG("started: ~p", [{Sid, Key}]),
Opts = [], % TODO Opts = [], % TODO
ejabberd_socket:start(ejabberd_c2s, ?MODULE, {http_bind, self()}, Opts), ejabberd_socket:start(ejabberd_c2s, ?MODULE, {http_bind, self()}, Opts),
@ -166,7 +406,6 @@ init([Sid, Rid, Key]) ->
% ejabberd_c2s:become_controller(C2SPid), % ejabberd_c2s:become_controller(C2SPid),
Timer = erlang:start_timer(?MAX_INACTIVITY, self(), []), Timer = erlang:start_timer(?MAX_INACTIVITY, self(), []),
{ok, loop, #state{id = Sid, {ok, loop, #state{id = Sid,
rid = Rid,
key = Key, key = Key,
timer = Timer}}. timer = Timer}}.
@ -232,73 +471,57 @@ handle_sync_event(stop, _From, _StateName, StateData) ->
Reply = ok, Reply = ok,
{stop, normal, Reply, StateData}; {stop, normal, Reply, StateData};
handle_sync_event({check_request, Attrs, Packet, _Hold}, handle_sync_event({http_put, Rid, Key, NewKey, Hold, Packet, StartTo},
_From, check_key, StateData) -> _From, StateName, StateData) ->
Key = xml:get_attr_s("key", Attrs), %% check if Rid valid
case StateData#state.key of RidAllow = case Rid of
"" -> error ->
NewKey = xml:get_attr_s("newkey", Attrs), false;
{next_state, check_rid, StateData#state{key = NewKey}};
StateKey ->
case httpd_util:to_lower(
hex(binary_to_list(
crypto:sha(Key)))) of
StateKey ->
case xml:get_attr_s("newkey", Attrs) of
"" ->
{next_state, check_rid, StateData#state{key = Key}};
NewKey ->
{next_state, check_rid, StateData#state{key = NewKey}}
end;
_ -> _ ->
Reply = {error, bad_key},
{reply, Reply, check_key, StateData}
end
end;
handle_sync_event({check_request, Attrs, Packet, Hold},
_From, check_rid = StateName, StateData) ->
case string:to_integer(xml:get_attr_s("rid", Attrs)) of
{error, _} ->
Reply = {error, not_exists},
{reply, Reply, StateName, StateData};
{Rid, _} ->
case StateData#state.rid of case StateData#state.rid of
error -> error ->
{reply, ok, request_checked, StateData#state{rid = Rid}}; %% first request - nothing saved so far
StateRid -> true;
OldRid ->
?DEBUG("state.rid/cur rid: ~p/~p",
[OldRid, Rid]),
if if
(StateRid < Rid) and (OldRid < Rid) and
(Rid =< StateRid + Hold + 1) -> (Rid =< (OldRid + Hold + 1)) ->
{reply, {ok, Rid}, request_checked, StateData#state{rid = Rid}}; true;
((StateRid-Hold-1) < Rid )and (Rid =< OldRid) and
(Rid =< StateRid) -> (Rid > OldRid - Hold - 1) ->
%% Repeat request repeat;
[Out | _XS] = [El#hbr.out ||
El <- StateData#state.req_list,
El#hbr.rid == Rid],
Reply = case Out of
[[] | OutPacket] ->
{repeat, OutPacket};
_ ->
{repeat, Out}
end,
{reply, Reply, StateName,
StateData#state{input = "cancel"}};
true -> true ->
Reply = {error, not_exists}, false
{reply, Reply, StateName, StateData}
end end
end end
end; end,
%% check if key valid
handle_sync_event({check_request, Attrs, Packet, Hold}, KeyAllow = case RidAllow of
_From, _StateName, StateData) -> repeat ->
{next_state, check_key, StateData}; true;
false ->
handle_sync_event({http_put, _Rid, Attrs, Packet, Hold}, false;
_From, check_activity, StateData) -> true ->
?DEBUG("check activity", []), case StateData#state.key of
"" ->
true;
OldKey ->
NextKey = httpd_util:to_lower(
hex(binary_to_list(
crypto:sha(Key)))),
?DEBUG("Key/OldKey/NextKey: ~s/~s/~s",
[Key, OldKey, NextKey]),
if
OldKey == NextKey ->
true;
true ->
?DEBUG("wrong key: ~s",[Key]),
false
end
end
end,
{_,TSec,TMSec} = now(), {_,TSec,TMSec} = now(),
TNow = TSec*1000*1000 + TMSec, TNow = TSec*1000*1000 + TMSec,
LastPoll = if LastPoll = if
@ -312,13 +535,33 @@ handle_sync_event({http_put, _Rid, Attrs, Packet, Hold},
(Packet == "") and (Packet == "") and
(TNow - StateData#state.last_poll < MinPoll*1000*1000) -> (TNow - StateData#state.last_poll < MinPoll*1000*1000) ->
Reply = {error, polling_too_frequently}, Reply = {error, polling_too_frequently},
{reply, Reply, send2server, StateData}; {reply, Reply, StateName, StateData};
KeyAllow ->
case RidAllow of
false ->
Reply = {error, not_exists},
{reply, Reply, StateName, StateData};
repeat ->
?DEBUG("REPEATING ~p", [Rid]),
[Out | _XS] = [El#hbr.out ||
El <- StateData#state.req_list,
El#hbr.rid == Rid],
case Out of
[[] | OutPacket] ->
Reply = {repeat, OutPacket};
_ ->
Reply = {repeat, Out}
end,
{reply, Reply, StateName,
StateData#state{input = "cancel", last_poll = LastPoll}};
true -> true ->
{next_state, send2server, StateData#state{last_poll = LastPoll}} SaveKey = if
end; NewKey == "" ->
Key;
handle_sync_event({http_put, Rid, Packet, StartTo, Hold}, true ->
_From, send2server = StateName, StateData) -> NewKey
end,
?DEBUG(" -- SaveKey: ~s~n", [SaveKey]),
%% save request %% save request
ReqList = [#hbr{rid=Rid, ReqList = [#hbr{rid=Rid,
@ -330,10 +573,7 @@ handle_sync_event({http_put, Rid, Packet, StartTo, Hold},
El#hbr.rid < Rid, El#hbr.rid < Rid,
El#hbr.rid > (Rid - 1 - Hold)] El#hbr.rid > (Rid - 1 - Hold)]
], ],
%% ?DEBUG("reqlist: ~p", [ReqList]),
{_,TSec,TMSec} = now(),
TNow = TSec*1000*1000 + TMSec,
case StateData#state.waiting_input of case StateData#state.waiting_input of
false -> false ->
cancel_timer(StateData#state.timer), cancel_timer(StateData#state.timer),
@ -343,8 +583,11 @@ handle_sync_event({http_put, Rid, Packet, StartTo, Hold},
Reply = ok, Reply = ok,
{reply, Reply, StateName, {reply, Reply, StateName,
StateData#state{input = Input, StateData#state{input = Input,
rid = Rid,
key = SaveKey,
ctime = TNow, ctime = TNow,
timer = Timer, timer = Timer,
last_poll = LastPoll,
req_list = ReqList req_list = ReqList
}}; }};
{Receiver, _Tag} -> {Receiver, _Tag} ->
@ -354,7 +597,7 @@ handle_sync_event({http_put, Rid, Packet, StartTo, Hold},
["<stream:stream to='", ["<stream:stream to='",
StartTo, StartTo,
"' xmlns='jabber:client' " "' xmlns='jabber:client' "
%% version='1.0' " "version='1.0' "
"xmlns:stream='http://etherx.jabber.org/streams'>"] ++ Packet; "xmlns:stream='http://etherx.jabber.org/streams'>"] ++ Packet;
true -> true ->
Packet Packet
@ -370,16 +613,19 @@ handle_sync_event({http_put, Rid, Packet, StartTo, Hold},
StateData#state{waiting_input = false, StateData#state{waiting_input = false,
last_receiver = Receiver, last_receiver = Receiver,
input = "", input = "",
rid = Rid,
key = SaveKey,
ctime = TNow, ctime = TNow,
timer = Timer, timer = Timer,
last_poll = LastPoll,
req_list = ReqList req_list = ReqList
}} }}
end
end;
true ->
Reply = {error, bad_key},
{reply, Reply, StateName, StateData}
end; end;
handle_sync_event({http_put, Rid, Packet, StartTo, Hold},
_From, StateName, StateData) ->
?DEBUG("http-put checking acitivtiy", []),
{next_state, check_activity, StateData};
handle_sync_event({http_get, Rid, Wait, Hold}, _From, StateName, StateData) -> handle_sync_event({http_get, Rid, Wait, Hold}, _From, StateName, StateData) ->
{_,TSec,TMSec} = now(), {_,TSec,TMSec} = now(),
@ -468,248 +714,24 @@ terminate(_Reason, _StateName, StateData) ->
%%%---------------------------------------------------------------------- %%%----------------------------------------------------------------------
%%% Internal functions %%% Internal functions
%%%---------------------------------------------------------------------- %%%----------------------------------------------------------------------
limit_val_max(Val, Max) when is_list(Val) ->
case string:to_integer(Val) of
{error, _} -> Max;
{IntVal, _} -> limit_val_max(IntVal, Max)
end;
limit_val_max(Val, Max) when is_integer(Val) and (Val =< Max) ->
Val;
limit_val_max(Val, Max) when is_integer(Val) and (Val > Max) ->
Max;
limit_val_max(_, Max) -> Max.
create_session(XmppDomain, Attrs, Packet) ->
case string:to_integer(xml:get_attr_s("rid", Attrs)) of
{error, _} ->
?DEBUG("'rid' invalid", []),
{400, ?HEADER, ""};
{Rid, _} ->
Sid = sha:sha(term_to_binary({now(), make_ref()})),
Key = xml:get_attr_s("key", Attrs),
{ok, Pid} = start(Sid, Rid, Key),
Wait = limit_val_max(xml:get_attr_s("wait",Attrs), ?MAX_WAIT),
Hold = limit_val_max(xml:get_attr_s("hold",Attrs), (?MAX_REQUESTS-1)),
F = fun() ->
mnesia:write(
#http_bind{id = Sid,
pid = Pid,
to = XmppDomain,
wait = Wait,
hold = Hold})
end,
case catch mnesia:transaction(F) of
{atomic, ok} ->
?DEBUG("created session with sid: ~s", [Sid]),
case http_put(Sid, Attrs, Packet) of
ok ->
receive_loop(Sid, Rid);
_ ->
{400, ?HEADER, ""}
end;
_E ->
?DEBUG("error creating session: ~p", [_E]),
close({http_bind, Pid}),
{200, ?HEADER,
"<body type='terminate' "
"condition='internal-server-error' "
"xmlns='http://jabber.org/protocol/httpbind'/>"}
end
end.
receive_loop(Sid, Rid) ->
receive
after 100 -> ok
end,
prepare_response(Sid, Rid).
prepare_response(Sid, Rid) ->
case http_get(Sid,Rid) of
{error, not_exists} ->
?DEBUG("no session associated with sid: ~s", Sid),
{404, ?HEADER, ""};
{ok, keep_on_hold} ->
receive_loop(Sid, Rid);
{ok, cancel} ->
%% actually it would be better if we could completely
%% cancel this request, but then we would have to hack
%% ejabberd_http and I'm too lazy now
{404, ?HEADER, ""};
{ok, OutPacket} ->
?DEBUG("OutPacket: ~s", [OutPacket]),
send_outpacket(Sid, OutPacket);
{ok, stream_start, OutPacket} ->
?DEBUG("OutPacket: ~s", [OutPacket]),
OutEls = case xml_stream:parse_element(
OutPacket++"</stream:stream>") of
El when element(1, El) == xmlelement ->
{xmlelement, _, OutAttrs, Els} = El,
AuthID = xml:get_attr_s("id", OutAttrs),
StreamError = false,
case Els of
[] ->
[];
[{xmlelement, "stream:features", StreamAttribs, StreamEls} | StreamTail] ->
[{xmlelement, "stream:features", [{"xmlns:stream","http://etherx.jabber.org/streams"}] ++ StreamAttribs, StreamEls}] ++ StreamTail;
Xml ->
Xml
end;
{error, _} ->
AuthID = "",
StreamError = true,
[]
end,
% To = xml:get_attr_s("to",Attrs),
if
% To == "" ->
% {200, ?HEADER, "<body type='terminate' "
% "condition='improper-addressing' "
% "xmlns='http://jabber.org/protocol/httpbind'/>"};
StreamError == true ->
{200, ?HEADER, "<body type='terminate' "
"condition='host-unknown' "
"xmlns='http://jabber.org/protocol/httpbind'/>"};
true ->
case mnesia:dirty_read({http_bind, Sid}) of
[#http_bind{wait = Wait, hold = Hold}] ->
{200, ?HEADER,
xml:element_to_string(
{xmlelement,"body",
[{"xmlns",
"http://jabber.org/protocol/httpbind"},
{"sid",Sid},
{"wait", integer_to_list(Wait)},
{"requests", integer_to_list(Hold+1)},
{"inactivity",
integer_to_list(trunc(?MAX_INACTIVITY/1000))},
{"polling", ?MIN_POLLING},
{"authid", AuthID}
],OutEls})};
_ ->
{404, ?HEADER, ""}
end
end
end.
send_outpacket(Sid, []) ->
{200, ?HEADER, "<body xmlns='http://jabber.org/protocol/httpbind'/>"};
send_outpacket(Sid, "</stream:stream>") ->
case mnesia:dirty_read({http_bind, Sid}) of
[#http_bind{pid = FsmRef}] ->
gen_fsm:sync_send_all_state_event(FsmRef,stop)
end,
{200, ?HEADER, "<body xmlns='http://jabber.org/protocol/httpbind'/>"};
send_outpacket(Sid, OutPacket) ->
case xml_stream:parse_element("<body>"
++ OutPacket
++ "</body>") of
El when element(1, El) == xmlelement ->
{xmlelement, _, _, OEls} = El,
TypedEls = [xml:replace_tag_attr("xmlns",
"jabber:client",OEl) ||
OEl <- OEls],
?DEBUG(" --- outgoing data --- ~n~s~n --- END --- ~n",
[xml:element_to_string(
{xmlelement,"body",
[{"xmlns",
"http://jabber.org/protocol/httpbind"}],
TypedEls})]
),
{200, ?HEADER,
xml:element_to_string(
{xmlelement,"body",
[{"xmlns",
"http://jabber.org/protocol/httpbind"}],
TypedEls})};
{error, _E} ->
OutEls = case xml_stream:parse_element(
OutPacket++"</stream:stream>") of
SEl when element(1, SEl) == xmlelement ->
{xmlelement, _, _OutAttrs, SEls} = SEl,
StreamError = false,
case SEls of
[] ->
[];
[{xmlelement, "stream:features", StreamAttribs, StreamEls} | StreamTail] ->
TypedTail = [xml:replace_tag_attr("xmlns",
"jabber:client",OEl) ||
OEl <- StreamTail],
[{xmlelement, "stream:features", [{"xmlns:stream","http://etherx.jabber.org/streams"}] ++ StreamAttribs, StreamEls}] ++ TypedTail;
Xml ->
Xml
end;
{error, _} ->
StreamError = true,
[]
end,
if
StreamError ->
StreamErrCond = case xml_stream:parse_element(
"<stream:stream>"++OutPacket) of
El when element(1, El) == xmlelement ->
{xmlelement, _Tag, _Attr, Els} = El,
[{xmlelement, SE, _, Cond} | _] = Els,
if
SE == "stream:error" ->
Cond;
true ->
null
end;
{error, _E} ->
null
end,
case mnesia:dirty_read({http_bind, Sid}) of
[#http_bind{pid = FsmRef}] ->
gen_fsm:sync_send_all_state_event(FsmRef,stop);
_ ->
err %% hu?
end,
case StreamErrCond of
null ->
{200, ?HEADER,
"<body type='terminate' "
"condition='internal-server-error' "
"xmlns='http://jabber.org/protocol/httpbind'/>"};
_ ->
{200, ?HEADER,
"<body type='terminate' "
"condition='remote-stream-error' "
"xmlns='http://jabber.org/protocol/httpbind'>" ++
elements_to_string(StreamErrCond) ++
"</body>"}
end;
true ->
{200, ?HEADER,
xml:element_to_string(
{xmlelement,"body",
[{"xmlns",
"http://jabber.org/protocol/httpbind"}],
OutEls})}
end
end.
check_request(Sid, Attrs, Packet) ->
case mnesia:dirty_read({http_bind, Sid}) of
[] ->
?DEBUG("not found",[]),
{error, not_exists};
[#http_bind{pid = FsmRef, hold = Hold}] ->
gen_fsm:sync_send_all_state_event(
FsmRef, {http_put, Attrs, Packet, Hold})
end.
http_put(Sid, Attrs, Packet) -> http_put(Sid, Rid, Key, NewKey, Hold, Packet, Restart) ->
?DEBUG("http-put",[]), ?DEBUG("http-put",[]),
{Rid, _} = string:to_integer(xml:get_attr_s("rid", Attrs)),
To = xml:get_attr_s("to", Attrs),
case mnesia:dirty_read({http_bind, Sid}) of case mnesia:dirty_read({http_bind, Sid}) of
[] -> [] ->
?DEBUG("not found",[]), ?DEBUG("not found",[]),
{error, not_exists}; {error, not_exists};
[#http_bind{pid = FsmRef, to = To, hold = Hold}] -> [#http_bind{pid = FsmRef,to=To}] ->
case Restart of
true ->
?DEBUG("restart requested for ~s", [To]),
gen_fsm:sync_send_all_state_event( gen_fsm:sync_send_all_state_event(
FsmRef, {http_put, Rid, Packet, To, Hold}) FsmRef, {http_put, Rid, Key, NewKey, Hold, Packet, To});
_ ->
gen_fsm:sync_send_all_state_event(
FsmRef, {http_put, Rid, Key, NewKey, Hold, Packet, ""})
end
end. end.
http_get(Sid,Rid) -> http_get(Sid,Rid) ->
@ -725,13 +747,9 @@ http_get(Sid, Rid) ->
parse_request(Data) -> parse_request(Data) ->
?DEBUG("--- incoming data --- ~n~s~n --- END --- ", ?DEBUG("--- incoming data --- ~n~s~n --- END --- ",
[Data]), [Data]),
case catch xml_stream:parse_element(Data) of case xml_stream:parse_element(Data) of
{xmlelement, "body", Attrs, Els} -> El when element(1, El) == xmlelement ->
case xml:get_attr_s("xmlns",Attrs) of {xmlelement, Name, Attrs, Els} = El,
"http://jabber.org/protocol/httpbind" ->
Sid = xml:get_attr_s("sid",Attrs),
%% normalize tree - actually not needed by XEP but
%% where playing nicely here
FixedEls = FixedEls =
lists:filter( lists:filter(
fun(I) -> fun(I) ->
@ -742,22 +760,30 @@ parse_request(Data) ->
false false
end end
end, Els), end, Els),
%% fix namespace of child element Sid = xml:get_attr_s("sid",Attrs),
{Rid,_X} = string:to_integer(xml:get_attr_s("rid",Attrs)),
Key = xml:get_attr_s("key",Attrs),
NewKey = xml:get_attr_s("newkey",Attrs),
Xmlns = xml:get_attr_s("xmlns",Attrs),
lists:map(fun(E) -> lists:map(fun(E) ->
case xml:get_tag_attr_s("xmlns",E) of EXmlns = xml:get_tag_attr_s("xmlns",E),
"jabber:client" -> if
EXmlns == "jabber:client" ->
remove_tag_attr("xmlns",E); remove_tag_attr("xmlns",E);
true -> true ->
ok ok
end end
end, FixedEls), end, FixedEls),
%% revert to string
Packet = [xml:element_to_string(E) || E <- FixedEls], Packet = [xml:element_to_string(E) || E <- FixedEls],
{ok, {Sid, Attrs, Packet}}; if
_ -> %% bad namespace Name /= "body" ->
{error, bad_request} {error, bad_request};
Xmlns /= "http://jabber.org/protocol/httpbind" ->
{error, bad_request};
true ->
{ok, {Sid, Rid, Key, NewKey, Attrs, Packet}}
end; end;
_ -> {error, _Reason} ->
{error, bad_request} {error, bad_request}
end. end.

View File

@ -3,6 +3,7 @@
%%% Author : Stefan Strigler <steve@zeank.in-berlin.de> %%% Author : Stefan Strigler <steve@zeank.in-berlin.de>
%%% Purpose : Implementation of XMPP over BOSH (XEP-0206) %%% Purpose : Implementation of XMPP over BOSH (XEP-0206)
%%% Created : Tue Feb 20 13:15:52 CET 2007 %%% Created : Tue Feb 20 13:15:52 CET 2007
%%% Id : $Id: $
%%%---------------------------------------------------------------------- %%%----------------------------------------------------------------------
%%%---------------------------------------------------------------------- %%%----------------------------------------------------------------------
@ -14,7 +15,7 @@
-module(mod_http_bind). -module(mod_http_bind).
-author('steve@zeank.in-berlin.de'). -author('steve@zeank.in-berlin.de').
-define(MOD_HTTP_BIND_VERSION, '1.0'). -define(MOD_HTTP_BIND_VERSION, "1.0").
-vsn(?MOD_HTTP_BIND_VERSION). -vsn(?MOD_HTTP_BIND_VERSION).
%%-define(ejabberd_debug, true). %%-define(ejabberd_debug, true).
@ -47,7 +48,7 @@ process([], #request{method = 'POST',
ejabberd_http_bind:process_request(Data); ejabberd_http_bind:process_request(Data);
process([], #request{method = 'GET', process([], #request{method = 'GET',
data = []}) -> data = []}) ->
Heading = "Ejabberd " ++ atom_to_list(?MODULE) ++ " v" ++ lists:concat([?MOD_HTTP_BIND_VERSION]), Heading = "Ejabberd " ++ atom_to_list(?MODULE) ++ " v" ++ ?MOD_HTTP_BIND_VERSION,
{xmlelement, "html", [{"xmlns", "http://www.w3.org/1999/xhtml"}], {xmlelement, "html", [{"xmlns", "http://www.w3.org/1999/xhtml"}],
[{xmlelement, "head", [], [{xmlelement, "head", [],
[{xmlelement, "title", [], [{xmlcdata, Heading}]}]}, [{xmlelement, "title", [], [{xmlcdata, Heading}]}]},
@ -56,16 +57,21 @@ process([], #request{method = 'GET',
{xmlelement, "p", [], {xmlelement, "p", [],
[{xmlcdata, "An implementation of "}, [{xmlcdata, "An implementation of "},
{xmlelement, "a", [{"href", "http://www.xmpp.org/extensions/xep-0206.html"}], {xmlelement, "a", [{"href", "http://www.xmpp.org/extensions/xep-0206.html"}],
[{xmlcdata, "XMPP over BOSH (XEP-0206)"}]}, [{xmlcdata, "XMPP over BOSH (XEP-0206)"}]}]},
{xmlcdata, "."}]},
{xmlelement, "p", [], {xmlelement, "p", [],
[{xmlcdata, integer_to_list(mnesia:table_info(http_bind, size)) ++ " sessions found."}]} [{xmlcdata, integer_to_list(mnesia:table_info(http_bind, size)) ++ " sessions found."}]},
{xmlelement, "p", [],
[{xmlcdata, "Sponsored by "},
{xmlelement, "a", [{"href", "http://mabber.com"}],
[{xmlcdata, "mabber"}]},
{xmlcdata, "."}]}
]}]}; ]}]};
process(_Path, _Request) -> process(_Path, _Request) ->
?DEBUG("Bad Request: ~p", [_Request]), ?DEBUG("Bad Request: ~p", [_Request]),
{400, [], {xmlelement, "h1", [], {400, [], {xmlelement, "h1", [],
[{xmlcdata, "400 Bad Request"}]}}. [{xmlcdata, "400 Bad Request"}]}}.
%%%---------------------------------------------------------------------- %%%----------------------------------------------------------------------
%%% BEHAVIOUR CALLBACKS %%% BEHAVIOUR CALLBACKS
%%%---------------------------------------------------------------------- %%%----------------------------------------------------------------------