Packages
amqp_client
3.11.13
4.2.1
4.2.0
retired
4.1.6
4.1.5
retired
4.1.5-rc.2
retired
4.1.5-rc.1
retired
4.1.5-1
4.0.3
4.0.3-rc.1
3.13.0-rc.2
3.13.0-rc.1
3.12.14
3.12.13
3.12.12
3.12.11
3.12.10
3.12.9
3.12.8
3.12.7
3.12.6
3.12.5
3.12.4
3.12.3
3.12.2
3.12.1
3.12.0
3.12.0-rc.4
3.11.28
3.11.27
3.11.26
3.11.25
3.11.24
3.11.23
3.11.22
3.11.21
3.11.20
3.11.19
3.11.18
3.11.17
3.11.13
3.11.12
3.11.11
3.11.10
3.11.9
3.11.8
3.11.7
3.11.6
3.11.5
3.11.4
3.11.3
3.11.2
3.11.1
3.11.0
3.11.0-rc.2
3.11.0-rc.1
3.11.0-1
3.10.20
3.10.19
3.10.18
3.10.17
3.10.16
3.10.15
3.10.14
3.10.13
3.10.12
3.10.11
3.10.10
3.10.9
3.10.8
3.10.7
3.10.6
3.10.5
3.10.4
3.10.3
3.10.2
3.10.1
3.10.0
3.10.0-rc.6
3.10.0-rc.5
3.9.29
3.9.28
3.9.27
3.9.26
3.9.25
3.9.24
3.9.23
3.9.22
3.9.21
3.9.20
3.9.19
3.9.18
3.9.17
3.9.16
3.9.15
3.9.11
3.9.8
3.9.5
3.9.4
3.9.1
3.8.35
3.8.34
3.8.33
3.8.32
3.8.31
3.8.30
3.8.25
3.8.21
3.8.19
3.8.14
3.8.11
3.8.10
3.8.10-rc.1
3.8.9
3.8.7
3.8.6
3.8.6-rc.2
3.8.6-rc.1
3.8.5
3.8.5-rc.2
3.8.5-rc.1
3.8.4
3.8.4-rc.3
3.8.4-rc.1
3.8.3
3.8.3-rc.2
3.8.3-rc.1
3.8.2
3.8.2-rc.1
3.8.1
3.8.1-rc.1
3.8.0
3.8.0-rc.3
3.8.0-rc.2
3.8.0-rc.1
3.7.28
3.7.27
3.7.27-rc.2
3.7.27-rc.1
3.7.26
3.7.25
3.7.25-rc.1
3.7.24
3.7.24-rc.2
3.7.24-rc.1
3.7.23
3.7.23-rc.1
3.7.22
3.7.22-rc.2
3.7.22-rc.1
3.7.21
3.7.20
3.7.20-rc.2
3.7.20-rc.1
3.7.19
3.7.18
3.7.18-rc.1
3.7.17
3.7.17-rc.3
3.7.17-rc.2
3.7.15
3.7.14
3.7.14-rc.2
3.7.14-rc.1
3.7.13
3.7.13-rc.2
3.7.13-rc.1
3.7.12
3.7.12-rc.2
3.7.12-rc.1
3.7.11
3.7.11-rc.2
3.7.11-rc.1
3.7.10-rc.4
3.7.10-rc.3
3.7.10-rc.2
3.7.10-rc.1
3.7.9
3.7.9-rc.3
3.7.9-rc.2
3.7.8
3.7.8-rc.4
3.7.8-rc.3
3.7.8-rc.2
3.7.8-rc.1
3.7.7
3.7.7-rc.2
3.7.7-rc.1
3.7.6
3.7.6-rc.2
3.7.6-rc.1
3.7.5
3.7.5-rc.1
3.7.4
3.7.4-rc.4
3.7.4-rc.3
3.7.4-rc.2
3.7.4-rc.1
3.7.3
3.7.3-rc.2
3.7.3-rc.1
3.7.2
3.7.1
3.7.0-rc.2
3.6.16
3.6.16-rc.1
3.6.15
3.6.15-rc.1
3.6.14
3.6.13
3.6.12
3.6.11
3.6.10
3.6.9
3.6.8
3.6.7
3.6.7-pre.1
3.5.6
3.5.0
3.4.0
3.3.5
3.0.2
0.0.0-rc.1
RabbitMQ AMQP Client
Current section
Files
Jump to
Current section
Files
src/amqp_uri.erl
%% This Source Code Form is subject to the terms of the Mozilla Public
%% License, v. 2.0. If a copy of the MPL was not distributed with this
%% file, You can obtain one at https://mozilla.org/MPL/2.0/.
%%
%% Copyright (c) 2007-2023 VMware, Inc. or its affiliates. All rights reserved.
%%
-module(amqp_uri).
-include("amqp_client.hrl").
-export([parse/1, parse/2, remove_credentials/1]).
%%---------------------------------------------------------------------------
%% AMQP URI Parsing
%%---------------------------------------------------------------------------
%% Reformat a URI to remove authentication secrets from it (before we
%% log it or display it anywhere).
-spec remove_credentials(URI :: string() | binary()) -> string().
remove_credentials(URI) ->
UriString = rabbit_data_coercion:to_list(URI),
Props = uri_parser:parse(UriString,
[{host, undefined}, {path, undefined},
{port, undefined}, {'query', []}]),
PortPart = case proplists:get_value(port, Props) of
undefined -> "";
Port -> rabbit_misc:format(":~B", [Port])
end,
PGet = fun(K, P) -> case proplists:get_value(K, P) of
undefined -> "";
R -> R
end
end,
rabbit_misc:format(
"~s://~s~s~s", [proplists:get_value(scheme, Props), PGet(host, Props),
PortPart, PGet(path, Props)]).
%% @spec (Uri) -> {ok, #amqp_params_network{} | #amqp_params_direct{}} |
%% {error, {Info, Uri}}
%% where
%% Uri = string()
%% Info = any()
%%
%% @doc Parses an AMQP URI. If any of the URI parts are missing, the
%% default values are used. If the hostname is zero-length, an
%% #amqp_params_direct{} record is returned; otherwise, an
%% #amqp_params_network{} record is returned. Extra parameters may be
%% specified via the query string
%% (e.g. "?heartbeat=5&auth_mechanism=external"). In case of failure,
%% an {error, {Info, Uri}} tuple is returned.
%%
%% The extra parameters that may be specified are channel_max,
%% frame_max, heartbeat and auth_mechanism (the latter can appear more
%% than once). The extra parameters that may be specified for an SSL
%% connection are cacertfile, certfile, keyfile, verify,
%% fail_if_no_peer_cert, password, and depth.
-type parse_result() :: {ok, #amqp_params_network{}} |
{ok, #amqp_params_direct{}} |
{error, {any(), string()}}.
-spec parse(Uri :: string() | binary()) -> parse_result().
parse(Uri) -> parse(Uri, <<"/">>).
-spec parse(Uri :: string() | binary(), DefaultVHost :: binary()) -> parse_result().
parse(Uri, DefaultVHost) ->
try return(parse1(Uri, DefaultVHost))
catch throw:Err -> {error, {Err, Uri}};
error:Err -> {error, {Err, Uri}}
end.
parse1(Uri, DefaultVHost) when is_list(Uri); is_binary(Uri) ->
UriString = rabbit_data_coercion:to_list(Uri),
case uri_parser:parse(UriString, [{host, undefined}, {path, undefined},
{port, undefined}, {'query', []}]) of
{error, Err} ->
throw({unable_to_parse_uri, Err});
Parsed ->
Endpoint =
case string:to_lower(proplists:get_value(scheme, Parsed)) of
"amqp" -> build_broker(Parsed, DefaultVHost);
"amqps" -> build_ssl_broker(Parsed, DefaultVHost);
Scheme -> fail({unexpected_uri_scheme, Scheme})
end,
return({ok, broker_add_query(Endpoint, Parsed)})
end;
parse1(_, _DefaultVHost) ->
fail(expected_string_uri).
unescape_string(Atom) when is_atom(Atom) ->
Atom;
unescape_string(Integer) when is_integer(Integer) ->
Integer;
unescape_string([]) ->
[];
unescape_string([$%, N1, N2 | Rest]) ->
try
[erlang:list_to_integer([N1, N2], 16) | unescape_string(Rest)]
catch
error:badarg -> throw({invalid_entitiy, ['%', N1, N2]})
end;
unescape_string([$% | Rest]) ->
fail({unterminated_entity, ['%' | Rest]});
unescape_string([C | Rest]) ->
[C | unescape_string(Rest)].
build_broker(ParsedUri, DefaultVHost) ->
[Host, Port, Path] =
[proplists:get_value(F, ParsedUri) || F <- [host, port, path]],
case Port =:= undefined orelse (0 < Port andalso Port =< 65535) of
true -> ok;
false -> fail({port_out_of_range, Port})
end,
VHost = case Path of
undefined -> DefaultVHost;
[$/|Rest] -> case string:chr(Rest, $/) of
0 -> list_to_binary(unescape_string(Rest));
_ -> fail({invalid_vhost, Rest})
end
end,
UserInfo = proplists:get_value(userinfo, ParsedUri),
Record = case {unescape_string(Host), Port} of
{undefined, undefined} ->
#amqp_params_direct{virtual_host = VHost};
{undefined, _Port} ->
fail(port_requires_host);
{Host1, Port1} ->
Mech = mechanisms(ParsedUri),
#amqp_params_network{host = Host1,
port = Port1,
virtual_host = VHost,
auth_mechanisms = Mech}
end,
set_user_info(Record, UserInfo).
set_user_info(Ps, UserInfo) ->
case UserInfo of
[U, P | _] -> set([{username, list_to_binary(unescape_string(U))},
{password, list_to_binary(unescape_string(P))}], Ps);
[U] -> set([{username, list_to_binary(unescape_string(U))}], Ps);
[] -> Ps
end.
set(KVs, Ps = #amqp_params_direct{}) ->
set(KVs, Ps, record_info(fields, amqp_params_direct));
set(KVs, Ps = #amqp_params_network{}) ->
set(KVs, Ps, record_info(fields, amqp_params_network)).
set(KVs, Ps, Fields) ->
{Ps1, _Ix} = lists:foldl(fun (Field, {PsN, Ix}) ->
{case lists:keyfind(Field, 1, KVs) of
false -> PsN;
{_, V} -> setelement(Ix, PsN, V)
end, Ix + 1}
end, {Ps, 2}, Fields),
Ps1.
build_ssl_broker(ParsedUri, DefaultVHost) ->
Params0 = build_broker(ParsedUri, DefaultVHost),
Query = proplists:get_value('query', ParsedUri),
SSLOptions =
run_state_monad(
[fun (L) -> KeyString = atom_to_list(Key),
case lists:keysearch(KeyString, 1, Query) of
{value, {_, Value}} ->
try return([{Key, unescape_string(Fun(Value))} | L])
catch throw:Reason ->
fail({invalid_ssl_parameter,
Key, Value, Query, Reason})
end;
false ->
L
end
end || {Fun, Key} <-
[{fun find_path_parameter/1, cacertfile},
{fun find_path_parameter/1, certfile},
{fun find_path_parameter/1, keyfile},
{fun find_atom_parameter/1, verify},
{fun find_boolean_parameter/1, fail_if_no_peer_cert},
{fun find_identity_parameter/1, password},
{fun find_sni_parameter/1, server_name_indication},
{fun find_integer_parameter/1, depth}]],
[]),
Params1 = Params0#amqp_params_network{ssl_options = SSLOptions},
amqp_ssl:maybe_enhance_ssl_options(Params1).
broker_add_query(Params = #amqp_params_direct{}, Uri) ->
broker_add_query(Params, Uri, record_info(fields, amqp_params_direct));
broker_add_query(Params = #amqp_params_network{}, Uri) ->
broker_add_query(Params, Uri, record_info(fields, amqp_params_network)).
broker_add_query(Params, ParsedUri, Fields) ->
Query = proplists:get_value('query', ParsedUri),
{Params1, _Pos} =
run_state_monad(
[fun ({ParamsN, Pos}) ->
Pos1 = Pos + 1,
KeyString = atom_to_list(Field),
case proplists:get_value(KeyString, Query) of
undefined ->
return({ParamsN, Pos1});
true -> %% proplists short form, not permitted
return({ParamsN, Pos1});
Value ->
try
ValueParsed = parse_amqp_param(Field, Value),
return(
{setelement(Pos, ParamsN, ValueParsed), Pos1})
catch throw:Reason ->
fail({invalid_amqp_params_parameter,
Field, Value, Query, Reason})
end
end
end || Field <- Fields], {Params, 2}),
Params1.
parse_amqp_param(Field, String) when Field =:= channel_max orelse
Field =:= frame_max orelse
Field =:= heartbeat orelse
Field =:= connection_timeout orelse
Field =:= depth ->
find_integer_parameter(String);
parse_amqp_param(Field, String) when Field =:= password ->
find_identity_parameter(String);
parse_amqp_param(Field, String) ->
fail({parameter_unconfigurable_in_query, Field, String}).
find_path_parameter(Value) ->
find_identity_parameter(Value).
find_sni_parameter("disable") ->
disable;
find_sni_parameter(Value) ->
find_identity_parameter(Value).
find_identity_parameter(Value) -> return(Value).
find_integer_parameter(Value) ->
try return(list_to_integer(Value))
catch error:badarg -> fail({not_an_integer, Value})
end.
find_boolean_parameter(Value) ->
Bool = list_to_atom(Value),
case is_boolean(Bool) of
true -> return(Bool);
false -> fail({require_boolean, Bool})
end.
find_atom_parameter(Value) -> return(list_to_atom(Value)).
mechanisms(ParsedUri) ->
Query = proplists:get_value('query', ParsedUri),
Mechanisms = case proplists:get_all_values("auth_mechanism", Query) of
[] -> ["plain", "amqplain"];
Mechs -> Mechs
end,
[case [list_to_atom(T) || T <- string:tokens(Mech, ":")] of
[F] -> fun (R, P, S) -> amqp_auth_mechanisms:F(R, P, S) end;
[M, F] -> fun (R, P, S) -> M:F(R, P, S) end;
L -> throw({not_mechanism, L})
end || Mech <- Mechanisms].
%% --=: Plain state monad implementation start :=--
run_state_monad(FunList, State) ->
lists:foldl(fun (Fun, StateN) -> Fun(StateN) end, State, FunList).
return(V) -> V.
-spec fail(_) -> no_return().
fail(Reason) -> throw(Reason).
%% --=: end :=--