mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-20 16:15:59 +01:00
Add mqtt bridge module
This commit is contained in:
parent
5cf9b052dd
commit
fbea49dbab
154
src/mod_mqtt_bridge.erl
Normal file
154
src/mod_mqtt_bridge.erl
Normal file
@ -0,0 +1,154 @@
|
||||
%%%-------------------------------------------------------------------
|
||||
%%% @author Pawel Chmielowski <pawel@process-one.net>
|
||||
%%% @copyright (C) 2002-2022 ProcessOne, SARL. All Rights Reserved.
|
||||
%%%
|
||||
%%% Licensed under the Apache License, Version 2.0 (the "License");
|
||||
%%% you may not use this file except in compliance with the License.
|
||||
%%% You may obtain a copy of the License at
|
||||
%%%
|
||||
%%% http://www.apache.org/licenses/LICENSE-2.0
|
||||
%%%
|
||||
%%% Unless required by applicable law or agreed to in writing, software
|
||||
%%% distributed under the License is distributed on an "AS IS" BASIS,
|
||||
%%% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
%%% See the License for the specific language governing permissions and
|
||||
%%% limitations under the License.
|
||||
%%%
|
||||
%%%-------------------------------------------------------------------
|
||||
-module(mod_mqtt_bridge).
|
||||
-behaviour(gen_mod).
|
||||
|
||||
%% gen_mod API
|
||||
-export([start/2, stop/1, reload/3, depends/2, mod_options/1, mod_opt_type/1]).
|
||||
-export([mod_doc/0]).
|
||||
|
||||
%% API
|
||||
-export([mqtt_publish_hook/3]).
|
||||
|
||||
-include("logger.hrl").
|
||||
-include("mqtt.hrl").
|
||||
-include("translate.hrl").
|
||||
|
||||
%%%===================================================================
|
||||
%%% API
|
||||
%%%===================================================================
|
||||
start(Host, Opts) ->
|
||||
User = mod_mqtt_bridge_opt:replication_user(Opts),
|
||||
lists:foldl(
|
||||
fun({Proc, Transport, HostAddr, Port, Publish, Subscribe, Authentication}, Started) ->
|
||||
case Started of
|
||||
#{Proc := _} ->
|
||||
?DEBUG("Already started ~p", [Proc]),
|
||||
Started;
|
||||
_ ->
|
||||
ChildSpec = {Proc,
|
||||
{mod_mqtt_bridge_session, start_link,
|
||||
[Proc, Transport, HostAddr, Port, Publish, Subscribe, Authentication, User]},
|
||||
transient,
|
||||
1000,
|
||||
worker,
|
||||
[mod_mqtt_bridge_session]},
|
||||
Res = supervisor:start_child(ejabberd_gen_mod_sup, ChildSpec),
|
||||
?DEBUG("Starting ~p ~p", [Proc, Res]),
|
||||
Started#{Proc => true}
|
||||
end
|
||||
end, #{}, element(1, mod_mqtt_bridge_opt:servers(Opts))),
|
||||
ejabberd_hooks:add(mqtt_publish, Host, ?MODULE, mqtt_publish_hook, 50).
|
||||
|
||||
stop(Host) ->
|
||||
lists:foldl(
|
||||
fun({Proc, _Transport, _Host, _Port, _Publish, _Subscribe, _Authentication}, _) ->
|
||||
try p1_server:call(Proc, stop)
|
||||
catch _:_ -> ok
|
||||
end,
|
||||
supervisor:terminate_child(ejabberd_gen_mod_sup, Proc),
|
||||
supervisor:delete_child(ejabberd_gen_mod_sup, Proc)
|
||||
end, #{}, element(1, mod_mqtt_bridge_opt:servers(Host))),
|
||||
ejabberd_hooks:delete(mqtt_publish, Host, ?MODULE, mqtt_publish_hook, 50).
|
||||
|
||||
reload(_Host, _NewOpts, _OldOpts) ->
|
||||
ok.
|
||||
|
||||
depends(_Host, _Opts) ->
|
||||
[{mod_mqtt, hard}].
|
||||
|
||||
proc_name(Transport, Host, Port) ->
|
||||
HostB = list_to_binary(Host),
|
||||
case Transport of
|
||||
gen_tcp ->
|
||||
binary_to_atom(<<"mod_mqtt_bridge_mqtt_", HostB/binary, "_", (integer_to_binary(Port))/binary>>, utf8);
|
||||
_ -> binary_to_atom(<<"mod_mqtt_bridge_mqtts_", HostB/binary, "_", (integer_to_binary(Port))/binary>>, utf8)
|
||||
end.
|
||||
|
||||
-spec mqtt_publish_hook(jid:ljid(), publish(), non_neg_integer()) ->
|
||||
{ok, non_neg_integer()} | {error, db_failure | publish_forbidden}.
|
||||
mqtt_publish_hook({_, S, _}, #publish{topic = Topic} = Pkt, _ExpiryTime) ->
|
||||
{_, Publish} = mod_mqtt_bridge_opt:servers(S),
|
||||
case maps:find(Topic, Publish) of
|
||||
error -> ok;
|
||||
{ok, Procs} ->
|
||||
lists:foreach(
|
||||
fun(Proc) ->
|
||||
Proc ! {publish, Pkt}
|
||||
end, Procs)
|
||||
end.
|
||||
|
||||
%%%===================================================================
|
||||
%%% Options
|
||||
%%%===================================================================
|
||||
-spec mod_options(binary()) ->
|
||||
[{atom(), any()}].
|
||||
mod_options(Host) ->
|
||||
[{servers, []},
|
||||
{replication_user, jid:make(<<"admin">>, Host)}].
|
||||
|
||||
mod_opt_type(replication_user) ->
|
||||
econf:jid();
|
||||
mod_opt_type(servers) ->
|
||||
econf:and_then(
|
||||
econf:map(econf:url([mqtt, mqtts]),
|
||||
econf:options(#{
|
||||
publish => econf:map(econf:binary(), econf:binary(), [{return, map}]),
|
||||
subscribe => econf:map(econf:binary(), econf:binary(), [{return, map}]),
|
||||
authentication => econf:binary()},
|
||||
[{return, map}]),
|
||||
[{return, map}]),
|
||||
fun(Servers) ->
|
||||
maps:fold(
|
||||
fun(Url, Opts, {HAcc, PAcc}) ->
|
||||
{ok, Scheme, _UserInfo, Host, Port, _Path, _Query} = misc:uri_parse(Url),
|
||||
Publish = maps:get(publish, Opts, []),
|
||||
Subscribe = maps:get(subscribe, Opts, []),
|
||||
Authentication = maps:get(authentication, Opts, []),
|
||||
Transport = case Scheme of "mqtt" -> gen_tcp;
|
||||
_ -> ssl
|
||||
end,
|
||||
Proc = proc_name(Transport, Host, Port),
|
||||
PAcc2 = maps:fold(
|
||||
fun(Topic, _RemoteTopic, Acc) ->
|
||||
maps:update_with(Topic, fun(V) -> [Proc | V] end, [Proc], Acc)
|
||||
end, PAcc, Publish),
|
||||
{[{Proc, Transport, Host, Port, Publish, Subscribe, Authentication} | HAcc], PAcc2}
|
||||
end, {[], #{}}, Servers)
|
||||
end
|
||||
).
|
||||
|
||||
%%%===================================================================
|
||||
%%% Doc
|
||||
%%%===================================================================
|
||||
mod_doc() ->
|
||||
#{desc =>
|
||||
?T("This module adds ability to replicate data from or to external servers"),
|
||||
opts =>
|
||||
[{servers,
|
||||
#{value => "{ServerUrl: Replication informations}",
|
||||
desc =>
|
||||
?T("Main entry point to define which topics should be replicated.")}},
|
||||
{replication_user,
|
||||
#{value => "JID",
|
||||
desc =>
|
||||
?T("Identifier of a user which will own all local modifications.")}}]}.
|
||||
|
||||
%%%===================================================================
|
||||
%%% Internal functions
|
||||
%%%===================================================================
|
20
src/mod_mqtt_bridge_opt.erl
Normal file
20
src/mod_mqtt_bridge_opt.erl
Normal file
@ -0,0 +1,20 @@
|
||||
%% Generated automatically
|
||||
%% DO NOT EDIT: run `make options` instead
|
||||
|
||||
-module(mod_mqtt_bridge_opt).
|
||||
|
||||
-export([replication_user/1]).
|
||||
-export([servers/1]).
|
||||
|
||||
-spec replication_user(gen_mod:opts() | global | binary()) -> jid:jid().
|
||||
replication_user(Opts) when is_map(Opts) ->
|
||||
gen_mod:get_opt(replication_user, Opts);
|
||||
replication_user(Host) ->
|
||||
gen_mod:get_module_opt(Host, mod_mqtt_bridge, replication_user).
|
||||
|
||||
-spec servers(gen_mod:opts() | global | binary()) -> any().
|
||||
servers(Opts) when is_map(Opts) ->
|
||||
gen_mod:get_opt(servers, Opts);
|
||||
servers(Host) ->
|
||||
gen_mod:get_module_opt(Host, mod_mqtt_bridge, servers).
|
||||
|
479
src/mod_mqtt_bridge_session.erl
Normal file
479
src/mod_mqtt_bridge_session.erl
Normal file
@ -0,0 +1,479 @@
|
||||
%%%-------------------------------------------------------------------
|
||||
%%% @author Pawel Chmielowski <pawel@process-one.net>
|
||||
%%% @copyright (C) 2002-2022 ProcessOne, SARL. All Rights Reserved.
|
||||
%%%
|
||||
%%% Licensed under the Apache License, Version 2.0 (the "License");
|
||||
%%% you may not use this file except in compliance with the License.
|
||||
%%% You may obtain a copy of the License at
|
||||
%%%
|
||||
%%% http://www.apache.org/licenses/LICENSE-2.0
|
||||
%%%
|
||||
%%% Unless required by applicable law or agreed to in writing, software
|
||||
%%% distributed under the License is distributed on an "AS IS" BASIS,
|
||||
%%% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
%%% See the License for the specific language governing permissions and
|
||||
%%% limitations under the License.
|
||||
%%%
|
||||
%%%-------------------------------------------------------------------
|
||||
-module(mod_mqtt_bridge_session).
|
||||
-behaviour(p1_server).
|
||||
-define(VSN, 1).
|
||||
-vsn(?VSN).
|
||||
|
||||
%% API
|
||||
-export([start/8, start_link/8]).
|
||||
%% gen_server callbacks
|
||||
-export([init/1, handle_call/3, handle_cast/2, handle_info/2,
|
||||
terminate/2, code_change/3]).
|
||||
|
||||
-include("logger.hrl").
|
||||
-include("mqtt.hrl").
|
||||
-include_lib("xmpp/include/xmpp.hrl").
|
||||
-include_lib("public_key/include/public_key.hrl").
|
||||
|
||||
-record(state, {vsn = ?VSN :: integer(),
|
||||
version :: undefined | mqtt_version(),
|
||||
socket :: undefined | socket(),
|
||||
usr :: undefined | {binary(), binary(), binary()},
|
||||
ping_timer = undefined :: undefined | reference(),
|
||||
stop_reason :: undefined | error_reason(),
|
||||
subscriptions = #{},
|
||||
publish = #{},
|
||||
id = 0 :: non_neg_integer(),
|
||||
codec :: mqtt_codec:state(),
|
||||
authentication,
|
||||
tls :: boolean(),
|
||||
tls_verify :: boolean()}).
|
||||
|
||||
-type error_reason() :: {auth, reason_code()} |
|
||||
{code, reason_code()} |
|
||||
{peer_disconnected, reason_code(), binary()} |
|
||||
{socket, socket_error_reason()} |
|
||||
{codec, mqtt_codec:error_reason()} |
|
||||
{unexpected_packet, atom()} |
|
||||
{tls, inet:posix() | atom() | binary()} |
|
||||
{replaced, pid()} | {resumed, pid()} |
|
||||
subscribe_forbidden | publish_forbidden |
|
||||
will_topic_forbidden | internal_server_error |
|
||||
session_expired | idle_connection |
|
||||
queue_full | shutdown | db_failure |
|
||||
{payload_format_invalid, will | publish} |
|
||||
session_expiry_non_zero | unknown_topic_alias.
|
||||
|
||||
-type state() :: #state{}.
|
||||
-type socket() :: {gen_tcp, inet:socket()} |
|
||||
{fast_tls, fast_tls:tls_socket()} |
|
||||
{mod_mqtt_ws, mod_mqtt_ws:socket()}.
|
||||
-type seconds() :: non_neg_integer().
|
||||
-type socket_error_reason() :: closed | timeout | inet:posix().
|
||||
|
||||
-define(PING_TIMEOUT, timer:seconds(50)).
|
||||
-define(MAX_UINT32, 4294967295).
|
||||
|
||||
%%%===================================================================
|
||||
%%% API
|
||||
%%%===================================================================
|
||||
start(Proc, Transport, Host, Port, Publish, Subscribe, Authentication, ReplicationUser) ->
|
||||
p1_server:start({local, Proc}, ?MODULE, [Proc, Transport, Host, Port, Publish, Subscribe, Authentication,
|
||||
ReplicationUser], []).
|
||||
|
||||
start_link(Proc, Transport, Host, Port, Publish, Subscribe, Authentication, ReplicationUser) ->
|
||||
p1_server:start_link({local, Proc}, ?MODULE, [Proc, Transport, Host, Port, Publish, Subscribe,
|
||||
Authentication, ReplicationUser], []).
|
||||
|
||||
-spec format_error(error_reason()) -> string().
|
||||
format_error(session_expired) ->
|
||||
"Disconnected session is expired";
|
||||
format_error(idle_connection) ->
|
||||
"Idle connection";
|
||||
format_error(queue_full) ->
|
||||
"Message queue is overloaded";
|
||||
format_error(internal_server_error) ->
|
||||
"Internal server error";
|
||||
format_error(db_failure) ->
|
||||
"Database failure";
|
||||
format_error(shutdown) ->
|
||||
"System shutting down";
|
||||
format_error(subscribe_forbidden) ->
|
||||
"Subscribing to this topic is forbidden by service policy";
|
||||
format_error(publish_forbidden) ->
|
||||
"Publishing to this topic is forbidden by service policy";
|
||||
format_error(will_topic_forbidden) ->
|
||||
"Publishing to this will topic is forbidden by service policy";
|
||||
format_error(session_expiry_non_zero) ->
|
||||
"Session Expiry Interval in DISCONNECT packet should have been zero";
|
||||
format_error(unknown_topic_alias) ->
|
||||
"No mapping found for this Topic Alias";
|
||||
format_error({payload_format_invalid, will}) ->
|
||||
"Will payload format doesn't match its indicator";
|
||||
format_error({payload_format_invalid, publish}) ->
|
||||
"PUBLISH payload format doesn't match its indicator";
|
||||
format_error({peer_disconnected, Code, <<>>}) ->
|
||||
format("Peer disconnected with reason: ~ts",
|
||||
[mqtt_codec:format_reason_code(Code)]);
|
||||
format_error({peer_disconnected, Code, Reason}) ->
|
||||
format("Peer disconnected with reason: ~ts (~ts)", [Reason, Code]);
|
||||
format_error({replaced, Pid}) ->
|
||||
format("Replaced by ~p at ~ts", [Pid, node(Pid)]);
|
||||
format_error({resumed, Pid}) ->
|
||||
format("Resumed by ~p at ~ts", [Pid, node(Pid)]);
|
||||
format_error({unexpected_packet, Name}) ->
|
||||
format("Unexpected ~ts packet", [string:to_upper(atom_to_list(Name))]);
|
||||
format_error({tls, Reason}) ->
|
||||
format("TLS failed: ~ts", [format_tls_error(Reason)]);
|
||||
format_error({socket, A}) ->
|
||||
format("Connection failed: ~ts", [format_inet_error(A)]);
|
||||
format_error({code, Code}) ->
|
||||
format("Protocol error: ~ts", [mqtt_codec:format_reason_code(Code)]);
|
||||
format_error({auth, Code}) ->
|
||||
format("Authentication failed: ~ts", [mqtt_codec:format_reason_code(Code)]);
|
||||
format_error({codec, CodecError}) ->
|
||||
format("Protocol error: ~ts", [mqtt_codec:format_error(CodecError)]);
|
||||
format_error(A) when is_atom(A) ->
|
||||
atom_to_list(A);
|
||||
format_error(Reason) ->
|
||||
format("Unrecognized error: ~w", [Reason]).
|
||||
|
||||
%%%===================================================================
|
||||
%%% gen_server callbacks
|
||||
%%%===================================================================
|
||||
init([_Proc, Transport, Host, Port, Publish, Subscribe, Authentication, ReplicationUser]) ->
|
||||
case Transport:connect(Host, Port, [binary]) of
|
||||
{ok, Sock} ->
|
||||
State1 = #state{socket = {Transport, Sock},
|
||||
version = 5,
|
||||
id = p1_rand:uniform(65535),
|
||||
codec = mqtt_codec:new(4096),
|
||||
subscriptions = Subscribe,
|
||||
authentication = Authentication,
|
||||
usr = jid:tolower(ReplicationUser),
|
||||
publish = Publish},
|
||||
State2 = connect(State1, Authentication),
|
||||
{ok, State2}
|
||||
end.
|
||||
|
||||
handle_call(Request, From, State) ->
|
||||
?WARNING_MSG("Unexpected call from ~p: ~p", [From, Request]),
|
||||
{noreply, State}.
|
||||
|
||||
handle_cast(Msg, State) ->
|
||||
?WARNING_MSG("Unexpected cast: ~p", [Msg]),
|
||||
{noreply, State}.
|
||||
|
||||
handle_info({tcp, TCPSock, TCPData},
|
||||
#state{codec = Codec, socket = Socket} = State) ->
|
||||
case mqtt_codec:decode(Codec, TCPData) of
|
||||
{ok, Pkt, Codec1} ->
|
||||
?DEBUG("Got MQTT packet:~n~ts", [pp(Pkt)]),
|
||||
State1 = State#state{codec = Codec1},
|
||||
case handle_packet(Pkt, State1) of
|
||||
{ok, State2} ->
|
||||
handle_info({tcp, TCPSock, <<>>}, State2);
|
||||
{error, State2, Reason} ->
|
||||
stop(State2, Reason)
|
||||
end;
|
||||
{more, Codec1} ->
|
||||
State1 = State#state{codec = Codec1},
|
||||
activate(Socket),
|
||||
{noreply, State1};
|
||||
{error, Why} ->
|
||||
stop(State, {codec, Why})
|
||||
end;
|
||||
handle_info({tcp_closed, _Sock}, State) ->
|
||||
?DEBUG("MQTT connection reset by peer", []),
|
||||
stop(State, {socket, closed});
|
||||
handle_info({tcp_error, _Sock, Reason}, State) ->
|
||||
?DEBUG("MQTT connection error: ~ts", [format_inet_error(Reason)]),
|
||||
stop(State, {socket, Reason});
|
||||
handle_info({publish, #publish{topic = Topic} = Pkt}, #state{publish = Publish} = State) ->
|
||||
case maps:find(Topic, Publish) of
|
||||
{ok, RemoteTopic} ->
|
||||
case send(State, Pkt#publish{qos = 0, topic = RemoteTopic}) of
|
||||
{ok, State2} ->
|
||||
{noreply, State2};
|
||||
{error, State2, _Msg} ->
|
||||
{noreply, State2}
|
||||
end;
|
||||
_ ->
|
||||
State
|
||||
end;
|
||||
handle_info({timeout, _TRef, ping_timeout}, State) ->
|
||||
case send(State, #pingreq{}) of
|
||||
{ok, State2} ->
|
||||
{noreply, State2};
|
||||
{error, State2, _Msg} ->
|
||||
{noreply, State2}
|
||||
end;
|
||||
handle_info(Info, State) ->
|
||||
?WARNING_MSG("Unexpected info: ~p", [Info]),
|
||||
{noreply, State}.
|
||||
|
||||
-spec handle_packet(mqtt_packet(), state()) ->
|
||||
{ok, state()} |
|
||||
{error, state(), error_reason()}.
|
||||
handle_packet(#connack{} = Pkt, State) ->
|
||||
handle_connack(Pkt, State);
|
||||
handle_packet(#suback{}, State) ->
|
||||
{ok, State};
|
||||
handle_packet(#publish{} = Pkt, State) ->
|
||||
handle_publish(Pkt, State);
|
||||
handle_packet(#pingresp{}, State) ->
|
||||
{ok, State};
|
||||
handle_packet(#disconnect{properties = #{session_expiry_interval := SE}},
|
||||
State) when SE > 0 ->
|
||||
%% Protocol violation
|
||||
{error, State, session_expiry_non_zero};
|
||||
handle_packet(#disconnect{code = Code, properties = Props},
|
||||
State) ->
|
||||
Reason = maps:get(reason_string, Props, <<>>),
|
||||
{error, State, {peer_disconnected, Code, Reason}};
|
||||
handle_packet(Pkt, State) ->
|
||||
?WARNING_MSG("Unexpected packet:~n~ts~n** when state:~n~ts",
|
||||
[pp(Pkt), pp(State)]),
|
||||
{error, State, {unexpected_packet, element(1, Pkt)}}.
|
||||
|
||||
terminate(Reason, State) ->
|
||||
Reason1 = case Reason of
|
||||
shutdown -> shutdown;
|
||||
{shutdown, _} -> shutdown;
|
||||
normal -> State#state.stop_reason;
|
||||
{process_limit, _} -> queue_full;
|
||||
_ -> internal_server_error
|
||||
end,
|
||||
disconnect(State, Reason1).
|
||||
|
||||
code_change(_OldVsn, State, _Extra) ->
|
||||
{ok, State}.
|
||||
|
||||
%%%===================================================================
|
||||
%%% State transitions
|
||||
%%%===================================================================
|
||||
connect(State, AuthString) ->
|
||||
[User, Pass] = string:split(AuthString, ":"),
|
||||
Connect = #connect{client_id = integer_to_binary(State#state.id),
|
||||
clean_start = true,
|
||||
username = User,
|
||||
password = Pass,
|
||||
keep_alive = 60,
|
||||
proto_level = 5},
|
||||
Pkt = mqtt_codec:encode(5, Connect),
|
||||
send(State, Connect),
|
||||
{ok, _, Codec2} = mqtt_codec:decode(State#state.codec, Pkt),
|
||||
State#state{codec = Codec2}.
|
||||
|
||||
-spec stop(state(), error_reason()) ->
|
||||
{noreply, state(), infinity} |
|
||||
{stop, normal, state()}.
|
||||
stop(State, Reason) ->
|
||||
{stop, normal, State#state{stop_reason = Reason}}.
|
||||
|
||||
|
||||
%%%===================================================================
|
||||
%%% CONNECT/PUBLISH/SUBSCRIBE/UNSUBSCRIBE handlers
|
||||
%%%===================================================================
|
||||
-spec handle_connack(connack(), state()) ->
|
||||
{ok, state()} |
|
||||
{error, state(), error_reason()}.
|
||||
handle_connack(#connack{code = success}, #state{subscriptions = Subs} = State) ->
|
||||
Filters = maps:fold(
|
||||
fun(RemoteTopic, _LocalTopic, Acc) ->
|
||||
[{RemoteTopic, #sub_opts{}} | Acc]
|
||||
end, [], Subs),
|
||||
Pkt = #subscribe{id = 1, filters = Filters},
|
||||
send(State, Pkt);
|
||||
handle_connack(#connack{}, State) ->
|
||||
{error, State, 'not-authorized'}.
|
||||
|
||||
-spec handle_publish(publish(), state()) ->
|
||||
{ok, state()} |
|
||||
{error, state(), error_reason()}.
|
||||
handle_publish(#publish{topic = Topic, payload = Payload, properties = Props},
|
||||
#state{usr = USR, subscriptions = Subs} = State) ->
|
||||
case maps:get(Topic, Subs, none) of
|
||||
none -> {ok, State};
|
||||
LocalTopic ->
|
||||
MessageExpiry = maps:get(message_expiry_interval, Props, ?MAX_UINT32),
|
||||
ExpiryTime = min(unix_time() + MessageExpiry, ?MAX_UINT32),
|
||||
mod_mqtt:publish(USR, #publish{retain = true, topic = LocalTopic, payload = Payload, properties = Props},
|
||||
ExpiryTime),
|
||||
{ok, State}
|
||||
end.
|
||||
|
||||
%%%===================================================================
|
||||
%%% Socket management
|
||||
%%%===================================================================
|
||||
-spec send(state(), mqtt_packet()) ->
|
||||
{ok, state()} |
|
||||
{error, state(), error_reason()}.
|
||||
send(State, #publish{} = Pkt) ->
|
||||
case is_expired(Pkt) of
|
||||
{false, Pkt1} ->
|
||||
{ok, do_send(State, Pkt1)};
|
||||
true ->
|
||||
{ok, State}
|
||||
end;
|
||||
send(State, Pkt) ->
|
||||
{ok, do_send(State, Pkt)}.
|
||||
|
||||
-spec do_send(state(), mqtt_packet()) -> state().
|
||||
do_send(#state{socket = {SockMod, Sock} = Socket} = State, Pkt) ->
|
||||
?DEBUG("Send MQTT packet:~n~ts", [pp(Pkt)]),
|
||||
Data = mqtt_codec:encode(State#state.version, Pkt),
|
||||
Res = SockMod:send(Sock, Data),
|
||||
check_sock_result(Socket, Res),
|
||||
reset_ping_timer(State);
|
||||
do_send(State, _Pkt) ->
|
||||
State.
|
||||
|
||||
-spec activate(socket()) -> ok.
|
||||
activate({SockMod, Sock} = Socket) ->
|
||||
Res = case SockMod of
|
||||
gen_tcp -> inet:setopts(Sock, [{active, once}]);
|
||||
_ -> SockMod:setopts(Sock, [{active, once}])
|
||||
end,
|
||||
check_sock_result(Socket, Res).
|
||||
|
||||
-spec disconnect(state(), error_reason()) -> state().
|
||||
disconnect(#state{socket = {SockMod, Sock}} = State, Err) ->
|
||||
State1 = case Err of
|
||||
{auth, Code} ->
|
||||
do_send(State, #connack{code = Code});
|
||||
{codec, {Tag, _, _}} when Tag == unsupported_protocol_version;
|
||||
Tag == unsupported_protocol_name ->
|
||||
do_send(State#state{version = ?MQTT_VERSION_4},
|
||||
#connack{code = connack_reason_code(Err)});
|
||||
_ when State#state.version == undefined ->
|
||||
State;
|
||||
{Tag, _} when Tag == socket; Tag == tls ->
|
||||
State;
|
||||
{peer_disconnected, _, _} ->
|
||||
State;
|
||||
_ ->
|
||||
Props = #{reason_string => format_reason_string(Err)},
|
||||
case State of
|
||||
_ when State#state.version == ?MQTT_VERSION_5 ->
|
||||
Code = disconnect_reason_code(Err),
|
||||
Pkt = #disconnect{code = Code, properties = Props},
|
||||
do_send(State, Pkt);
|
||||
_ ->
|
||||
State
|
||||
end
|
||||
end,
|
||||
SockMod:close(Sock),
|
||||
State1#state{socket = undefined,
|
||||
version = undefined,
|
||||
codec = mqtt_codec:renew(State#state.codec)};
|
||||
disconnect(State, _) ->
|
||||
State.
|
||||
|
||||
-spec reset_ping_timer(state()) -> state().
|
||||
reset_ping_timer(State) ->
|
||||
misc:cancel_timer(State#state.ping_timer),
|
||||
State#state{ping_timer = erlang:start_timer(?PING_TIMEOUT, self(), ping_timeout)}.
|
||||
|
||||
-spec check_sock_result(socket(), ok | {error, inet:posix()}) -> ok.
|
||||
check_sock_result(_, ok) ->
|
||||
ok;
|
||||
check_sock_result({_, Sock}, {error, Why}) ->
|
||||
self() ! {tcp_closed, Sock},
|
||||
?DEBUG("MQTT socket error: ~p", [format_inet_error(Why)]).
|
||||
|
||||
%%%===================================================================
|
||||
%%% Formatters
|
||||
%%%===================================================================
|
||||
-spec pp(any()) -> iolist().
|
||||
pp(Term) ->
|
||||
io_lib_pretty:print(Term, fun pp/2).
|
||||
|
||||
-spec format_inet_error(socket_error_reason()) -> string().
|
||||
format_inet_error(closed) ->
|
||||
"connection closed";
|
||||
format_inet_error(timeout) ->
|
||||
format_inet_error(etimedout);
|
||||
format_inet_error(Reason) ->
|
||||
case inet:format_error(Reason) of
|
||||
"unknown POSIX error" -> atom_to_list(Reason);
|
||||
Txt -> Txt
|
||||
end.
|
||||
|
||||
-spec format_tls_error(atom() | binary()) -> string() | binary().
|
||||
format_tls_error(no_certfile) ->
|
||||
"certificate not configured";
|
||||
format_tls_error(Reason) when is_atom(Reason) ->
|
||||
format_inet_error(Reason);
|
||||
format_tls_error(Reason) ->
|
||||
Reason.
|
||||
|
||||
%% Same as format_error/1, but hides sensitive data
|
||||
%% and returns result as binary
|
||||
-spec format_reason_string(error_reason()) -> binary().
|
||||
format_reason_string({resumed, _}) ->
|
||||
<<"Resumed by another connection">>;
|
||||
format_reason_string({replaced, _}) ->
|
||||
<<"Replaced by another connection">>;
|
||||
format_reason_string(Err) ->
|
||||
list_to_binary(format_error(Err)).
|
||||
|
||||
-spec format(io:format(), list()) -> string().
|
||||
format(Fmt, Args) ->
|
||||
lists:flatten(io_lib:format(Fmt, Args)).
|
||||
|
||||
-spec pp(atom(), non_neg_integer()) -> [atom()] | no.
|
||||
pp(state, 17) -> record_info(fields, state);
|
||||
pp(Rec, Size) -> mqtt_codec:pp(Rec, Size).
|
||||
|
||||
-spec disconnect_reason_code(error_reason()) -> reason_code().
|
||||
disconnect_reason_code({code, Code}) -> Code;
|
||||
disconnect_reason_code({codec, Err}) -> mqtt_codec:error_reason_code(Err);
|
||||
disconnect_reason_code({unexpected_packet, _}) -> 'protocol-error';
|
||||
disconnect_reason_code({replaced, _}) -> 'session-taken-over';
|
||||
disconnect_reason_code({resumed, _}) -> 'session-taken-over';
|
||||
disconnect_reason_code(internal_server_error) -> 'implementation-specific-error';
|
||||
disconnect_reason_code(db_failure) -> 'implementation-specific-error';
|
||||
disconnect_reason_code(idle_connection) -> 'keep-alive-timeout';
|
||||
disconnect_reason_code(queue_full) -> 'quota-exceeded';
|
||||
disconnect_reason_code(shutdown) -> 'server-shutting-down';
|
||||
disconnect_reason_code(subscribe_forbidden) -> 'topic-filter-invalid';
|
||||
disconnect_reason_code(publish_forbidden) -> 'topic-name-invalid';
|
||||
disconnect_reason_code(will_topic_forbidden) -> 'topic-name-invalid';
|
||||
disconnect_reason_code({payload_format_invalid, _}) -> 'payload-format-invalid';
|
||||
disconnect_reason_code(session_expiry_non_zero) -> 'protocol-error';
|
||||
disconnect_reason_code(unknown_topic_alias) -> 'protocol-error';
|
||||
disconnect_reason_code(_) -> 'unspecified-error'.
|
||||
|
||||
-spec connack_reason_code(error_reason()) -> reason_code().
|
||||
connack_reason_code({Tag, Code}) when Tag == auth; Tag == code -> Code;
|
||||
connack_reason_code({codec, Err}) -> mqtt_codec:error_reason_code(Err);
|
||||
connack_reason_code({unexpected_packet, _}) -> 'protocol-error';
|
||||
connack_reason_code(internal_server_error) -> 'implementation-specific-error';
|
||||
connack_reason_code(db_failure) -> 'implementation-specific-error';
|
||||
connack_reason_code(idle_connection) -> 'keep-alive-timeout';
|
||||
connack_reason_code(queue_full) -> 'quota-exceeded';
|
||||
connack_reason_code(shutdown) -> 'server-shutting-down';
|
||||
connack_reason_code(will_topic_forbidden) -> 'topic-name-invalid';
|
||||
connack_reason_code({payload_format_invalid, _}) -> 'payload-format-invalid';
|
||||
connack_reason_code(session_expiry_non_zero) -> 'protocol-error';
|
||||
connack_reason_code(_) -> 'unspecified-error'.
|
||||
|
||||
%%%===================================================================
|
||||
%%% Timings
|
||||
%%%===================================================================
|
||||
-spec unix_time() -> seconds().
|
||||
unix_time() ->
|
||||
erlang:system_time(second).
|
||||
|
||||
-spec is_expired(publish()) -> true | {false, publish()}.
|
||||
is_expired(#publish{meta = Meta, properties = Props} = Pkt) ->
|
||||
case maps:get(expiry_time, Meta, ?MAX_UINT32) of
|
||||
?MAX_UINT32 ->
|
||||
{false, Pkt};
|
||||
ExpiryTime ->
|
||||
Left = ExpiryTime - unix_time(),
|
||||
if Left > 0 ->
|
||||
Props1 = Props#{message_expiry_interval => Left},
|
||||
{false, Pkt#publish{properties = Props1}};
|
||||
true ->
|
||||
?DEBUG("Dropping expired packet:~n~ts", [pp(Pkt)]),
|
||||
true
|
||||
end
|
||||
end.
|
Loading…
Reference in New Issue
Block a user