Skip to content

Commit 2966576

Browse files
authored
Merge pull request #4503 from esl/reply-with-error-iq
Log error with INFO loglevel when receiving an unexpected IQ
2 parents e95374e + 04580c0 commit 2966576

File tree

1 file changed

+13
-5
lines changed

1 file changed

+13
-5
lines changed

src/ejabberd_local.erl

+13-5
Original file line numberDiff line numberDiff line change
@@ -127,26 +127,34 @@ process_iq(_, Acc, From, To, El) ->
127127
To :: jid:jid(),
128128
Acc :: mongoose_acc:t(),
129129
IQ :: jlib:iq()) -> mongoose_acc:t().
130-
process_iq_reply(From, To, Acc, #iq{id = ID} = IQ) ->
130+
process_iq_reply(From, To, Acc, #iq{type = Type, id = ID} = IQ) ->
131131
case get_iq_callback_in_cluster(ID, Acc) of
132132
{ok, Callback} ->
133133
Callback(From, To, Acc, IQ);
134-
_ ->
134+
Other ->
135+
%% 8.2.3. IQ Semantics (https://www.rfc-editor.org/rfc/rfc6120)
136+
%% An entity that receives a stanza of type "result" or "error" MUST
137+
%% NOT respond to the stanza by sending a further IQ response of
138+
%% type "result" or "error".
139+
%% (Do not reply).
140+
?LOG_INFO(#{what => dropped_iq_reply,
141+
text => <<"User send an unexpected IQ "
142+
" type=", (atom_to_binary(Type))/binary,
143+
". Ignore the stanza.">>,
144+
reason => Other, acc => Acc}),
135145
Acc
136146
end.
137147

138148
-spec get_iq_callback_in_cluster(id(), mongoose_acc:t()) ->
139149
{ok, callback()} | {error, term()}.
140-
get_iq_callback_in_cluster(ID, Acc) ->
150+
get_iq_callback_in_cluster(ID, _Acc) ->
141151
%% We store information from which node the request is originating in the ID
142152
case parse_iq_id(ID) of
143153
local_node ->
144154
get_iq_callback(ID);
145155
{remote_node, NodeName} ->
146156
rpc:call(NodeName, ?MODULE, get_iq_callback, [ID]);
147157
{error, Reason} ->
148-
?LOG_ERROR(#{what => parse_iq_id_failed,
149-
reason => Reason, acc => Acc}),
150158
{error, Reason}
151159
end.
152160

0 commit comments

Comments
 (0)