1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355
|
%% ----------------------------------------------------------------------------
%% RabbitMQ LDAP Plugin
%%
%% See https://www.rabbitmq.com/ldap.html for details.
%%
%% ----------------------------------------------------------------------------
% {rabbitmq_auth_backend_ldap,
% [
%%
%% Connecting to the LDAP server(s)
%% ================================
%%
%% Specify servers to bind to. You *must* set this in order for the plugin
%% to work properly.
%%
%% {servers, ["your-server-name-goes-here"]},
{mapping, "auth_ldap.servers", "rabbitmq_auth_backend_ldap.servers",
[{datatype, {enum, [none]}}]}.
{mapping, "auth_ldap.servers.$server", "rabbitmq_auth_backend_ldap.servers",
[{datatype, string}]}.
{translation, "rabbitmq_auth_backend_ldap.servers",
fun(Conf) ->
case cuttlefish:conf_get("auth_ldap.servers", Conf, undefined) of
none -> [];
_ ->
Settings = cuttlefish_variable:filter_by_prefix("auth_ldap.servers", Conf),
[ V || {_, V} <- Settings ]
end
end}.
%% Specify the LDAP port to connect to
%%
%% {port, 389},
{mapping, "auth_ldap.port", "rabbitmq_auth_backend_ldap.port",
[{datatype, integer}]}.
%% LDAP connection/worker pool size
%%
%% {pool_size, 64},
{mapping, "auth_ldap.connection_pool_size", "rabbitmq_auth_backend_ldap.pool_size",
[{datatype, integer}]}.
%% LDAP connection timeout, in milliseconds or 'infinity'
%%
%% {timeout, infinity},
{mapping, "auth_ldap.timeout", "rabbitmq_auth_backend_ldap.timeout",
[{datatype, [integer, {atom, infinity}]}]}.
%% LDAP connection inactivity timeout, in milliseconds or 'infinity'
%%
%% {idle_timeout, 300000},
{mapping, "auth_ldap.idle_timeout", "rabbitmq_auth_backend_ldap.idle_timeout",
[{datatype, [integer, {atom, infinity}]}]}.
%% Enable logging of LDAP queries.
%% One of
%% - false (no logging is performed)
%% - true (verbose logging of the logic used by the plugin)
%% - network (as true, but additionally logs LDAP network traffic)
%% - network_unsafe (won't try to scrub any credentials)
%%
%% Defaults to false.
%%
%% {log, false},
{mapping, "auth_ldap.log", "rabbitmq_auth_backend_ldap.log",
[{datatype, {enum, [true, false, network, network_unsafe]}}]}.
%%
%% Authentication
%% ==============
%%
%% Pattern to convert the username given through AMQP to a different
%% form before performing a simple bind
%%
%% {user_bind_pattern, "${ad_user}@${ad_domain}.com"},
{mapping, "auth_ldap.user_bind_pattern", "rabbitmq_auth_backend_ldap.user_bind_pattern",
[{datatype, string}]}.
%% Pattern to convert the username given through AMQP to a DN before
%% binding
%%
%% {user_dn_pattern, "cn=${username},ou=People,dc=example,dc=com"},
{mapping, "auth_ldap.user_dn_pattern", "rabbitmq_auth_backend_ldap.user_dn_pattern",
[{datatype, string}]}.
%% Alternatively, you can convert a username to a Distinguished
%% Name via an LDAP lookup after binding. See the documentation for
%% full details.
%% When converting a username to a dn via a lookup, set these to
%% the name of the attribute that represents the user name, and the
%% base DN for the lookup query.
%%
%% {dn_lookup_attribute, "userPrincipalName"},
%% {dn_lookup_base, "DC=gopivotal,DC=com"},
{mapping, "auth_ldap.dn_lookup_attribute", "rabbitmq_auth_backend_ldap.dn_lookup_attribute",
[{datatype, [{enum, [none]}, string]}]}.
{mapping, "auth_ldap.dn_lookup_base", "rabbitmq_auth_backend_ldap.dn_lookup_base",
[{datatype, [{enum, [none]}, string]}]}.
{mapping, "auth_ldap.dn_lookup_bind", "rabbitmq_auth_backend_ldap.dn_lookup_bind",
[{datatype, [{enum, [as_user, anon]}]}]}.
{mapping, "auth_ldap.dn_lookup_bind.user_dn", "rabbitmq_auth_backend_ldap.dn_lookup_bind",
[{datatype, [string]}]}.
{mapping, "auth_ldap.dn_lookup_bind.password", "rabbitmq_auth_backend_ldap.dn_lookup_bind",
[{datatype, [tagged_binary, binary]}]}.
%% - as_user (to bind as the authenticated user - requires a password)
%% - anon (to bind anonymously)
%% - {UserDN, Password} (to bind with a specified user name and password)
%%
%% Defaults to 'as_user'.
{translation, "rabbitmq_auth_backend_ldap.dn_lookup_bind",
fun(Conf) ->
case cuttlefish:conf_get("auth_ldap.dn_lookup_bind", Conf, undefined) of
as_user -> as_user;
anon -> anon;
_ ->
User = cuttlefish:conf_get("auth_ldap.dn_lookup_bind.user_dn", Conf),
Pass = cuttlefish:conf_get("auth_ldap.dn_lookup_bind.password", Conf),
case {User, Pass} of
{undefined, _} -> as_user;
{_, undefined} -> as_user;
_ -> {User, Pass}
end
end
end}.
%% Controls how to bind for authorisation queries and also to
%% retrieve the details of users logging in without presenting a
%% password (e.g., SASL EXTERNAL).
%% One of
%% - as_user (to bind as the authenticated user - requires a password)
%% - anon (to bind anonymously)
%% - {UserDN, Password} (to bind with a specified user name and password)
%%
%% Defaults to 'as_user'.
{mapping, "auth_ldap.other_bind", "rabbitmq_auth_backend_ldap.other_bind",
[{datatype, {enum, [as_user, anon]}}]}.
{mapping, "auth_ldap.other_bind.user_dn", "rabbitmq_auth_backend_ldap.other_bind",
[{datatype, string}]}.
{mapping, "auth_ldap.other_bind.password", "rabbitmq_auth_backend_ldap.other_bind",
[{datatype, [tagged_binary, binary]}]}.
{translation, "rabbitmq_auth_backend_ldap.other_bind",
fun(Conf) ->
case cuttlefish:conf_get("auth_ldap.other_bind", Conf, undefined) of
as_user -> as_user;
anon -> anon;
_ ->
User = cuttlefish:conf_get("auth_ldap.other_bind.user_dn", Conf),
Pass = cuttlefish:conf_get("auth_ldap.other_bind.password", Conf),
case {User, Pass} of
{undefined, _} -> as_user;
{_, undefined} -> as_user;
_ -> {User, Pass}
end
end
end}.
%%
%% Authorisation
%% =============
%%
%% Groups are searched in the DN defined by the `group_lookup_base`
%% configuration key, or the `dn_lookup_base` variable if
%% former is `none`.
{mapping, "auth_ldap.group_lookup_base", "rabbitmq_auth_backend_ldap.group_lookup_base",
[{datatype, [{enum, [none]}, string]}]}.
%% The LDAP plugin can perform a variety of queries against your
%% LDAP server to determine questions of authorisation. See
%% https://www.rabbitmq.com/ldap.html#authorisation for more
%% information.
%% Set the query to use when determining vhost access
%%
%% {vhost_access_query, {in_group,
%% "ou=${vhost}-users,ou=vhosts,dc=example,dc=com"}},
%% Set the query to use when determining resource (e.g., queue) access
%%
%% {resource_access_query, {constant, true}},
%% Set queries to determine which tags a user has
%%
%% {tag_queries, []}
% ]},
%% Connect to the LDAP server using TLS
%%
%% {use_ssl, false},
{mapping, "auth_ldap.use_ssl", "rabbitmq_auth_backend_ldap.use_ssl",
[{datatype, {enum, [true, false]}}]}.
%% Connect to the LDAP server using StartTLS
%%
%% {use_starttls, false},
{mapping, "auth_ldap.use_starttls", "rabbitmq_auth_backend_ldap.use_starttls",
[{datatype, {enum, [true, false]}}]}.
%% TLS options
{mapping, "auth_ldap.ssl_options", "rabbitmq_auth_backend_ldap.ssl_options", [
{datatype, {enum, [none]}}
]}.
{translation, "rabbitmq_auth_backend_ldap.ssl_options",
fun(Conf) ->
case cuttlefish:conf_get("auth_ldap.ssl_options", Conf, undefined) of
none -> [];
_ -> cuttlefish:invalid("Invalid auth_ldap.ssl_options")
end
end}.
{mapping, "auth_ldap.ssl_options.verify", "rabbitmq_auth_backend_ldap.ssl_options.verify", [
{datatype, {enum, [verify_peer, verify_none]}}]}.
{mapping, "auth_ldap.ssl_options.fail_if_no_peer_cert", "rabbitmq_auth_backend_ldap.ssl_options.fail_if_no_peer_cert", [
{datatype, {enum, [true, false]}}]}.
{mapping, "auth_ldap.ssl_options.cacertfile", "rabbitmq_auth_backend_ldap.ssl_options.cacertfile",
[{datatype, string}, {validators, ["file_accessible"]}]}.
{mapping, "auth_ldap.ssl_options.certfile", "rabbitmq_auth_backend_ldap.ssl_options.certfile",
[{datatype, string}, {validators, ["file_accessible"]}]}.
{mapping, "auth_ldap.ssl_options.cacerts.$name", "rabbitmq_auth_backend_ldap.ssl_options.cacerts",
[{datatype, string}]}.
{translation, "rabbitmq_auth_backend_ldap.ssl_options.cacerts",
fun(Conf) ->
Settings = cuttlefish_variable:filter_by_prefix("auth_ldap.ssl_options.cacerts", Conf),
[ list_to_binary(V) || {_, V} <- Settings ]
end}.
{mapping, "auth_ldap.ssl_options.cert", "rabbitmq_auth_backend_ldap.ssl_options.cert",
[{datatype, string}]}.
{translation, "rabbitmq_auth_backend_ldap.ssl_options.cert",
fun(Conf) ->
list_to_binary(cuttlefish:conf_get("auth_ldap.ssl_options.cert", Conf))
end}.
{mapping, "auth_ldap.ssl_options.client_renegotiation", "rabbitmq_auth_backend_ldap.ssl_options.client_renegotiation",
[{datatype, {enum, [true, false]}}]}.
{mapping, "auth_ldap.ssl_options.crl_check", "rabbitmq_auth_backend_ldap.ssl_options.crl_check",
[{datatype, [{enum, [true, false, peer, best_effort]}]}]}.
{mapping, "auth_ldap.ssl_options.depth", "rabbitmq_auth_backend_ldap.ssl_options.depth",
[{datatype, integer}, {validators, ["byte"]}]}.
{mapping, "auth_ldap.ssl_options.dh", "rabbitmq_auth_backend_ldap.ssl_options.dh",
[{datatype, string}]}.
{translation, "rabbitmq_auth_backend_ldap.ssl_options.dh",
fun(Conf) ->
list_to_binary(cuttlefish:conf_get("auth_ldap.ssl_options.dh", Conf))
end}.
{mapping, "auth_ldap.ssl_options.dhfile", "rabbitmq_auth_backend_ldap.ssl_options.dhfile",
[{datatype, string}, {validators, ["file_accessible"]}]}.
{mapping, "auth_ldap.ssl_options.honor_cipher_order", "rabbitmq_auth_backend_ldap.ssl_options.honor_cipher_order",
[{datatype, {enum, [true, false]}}]}.
{mapping, "auth_ldap.ssl_options.honor_ecc_order", "rabbitmq_auth_backend_ldap.ssl_options.honor_ecc_order",
[{datatype, {enum, [true, false]}}]}.
{mapping, "auth_ldap.ssl_options.key.RSAPrivateKey", "rabbitmq_auth_backend_ldap.ssl_options.key",
[{datatype, string}]}.
{mapping, "auth_ldap.ssl_options.key.DSAPrivateKey", "rabbitmq_auth_backend_ldap.ssl_options.key",
[{datatype, string}]}.
{mapping, "auth_ldap.ssl_options.key.PrivateKeyInfo", "rabbitmq_auth_backend_ldap.ssl_options.key",
[{datatype, string}]}.
{translation, "rabbitmq_auth_backend_ldap.ssl_options.key",
fun(Conf) ->
case cuttlefish_variable:filter_by_prefix("auth_ldap.ssl_options.key", Conf) of
[{[_,_,Key], Val}|_] -> {list_to_atom(Key), list_to_binary(Val)};
_ -> undefined
end
end}.
{mapping, "auth_ldap.ssl_options.keyfile", "rabbitmq_auth_backend_ldap.ssl_options.keyfile",
[{datatype, string}, {validators, ["file_accessible"]}]}.
{mapping, "auth_ldap.ssl_options.log_alert", "rabbitmq_auth_backend_ldap.ssl_options.log_alert",
[{datatype, {enum, [true, false]}}]}.
{mapping, "auth_ldap.ssl_options.password", "rabbitmq_auth_backend_ldap.ssl_options.password",
[{datatype, string}]}.
{mapping, "auth_ldap.ssl_options.psk_identity", "rabbitmq_auth_backend_ldap.ssl_options.psk_identity",
[{datatype, string}]}.
{mapping, "auth_ldap.ssl_options.reuse_sessions", "rabbitmq_auth_backend_ldap.ssl_options.reuse_sessions",
[{datatype, {enum, [true, false]}}]}.
{mapping, "auth_ldap.ssl_options.secure_renegotiate", "rabbitmq_auth_backend_ldap.ssl_options.secure_renegotiate",
[{datatype, {enum, [true, false]}}]}.
{mapping, "auth_ldap.ssl_options.versions.$version", "rabbitmq_auth_backend_ldap.ssl_options.versions",
[{datatype, atom}]}.
{translation, "rabbitmq_auth_backend_ldap.ssl_options.versions",
fun(Conf) ->
Settings = cuttlefish_variable:filter_by_prefix("auth_ldap.ssl_options.versions", Conf),
[ V || {_, V} <- Settings ]
end}.
{mapping, "auth_ldap.ssl_options.sni", "rabbitmq_auth_backend_ldap.ssl_options.server_name_indication",
[{datatype, [{enum, [none]}, string]}]}.
{translation, "rabbitmq_auth_backend_ldap.ssl_options.server_name_indication",
fun(Conf) ->
case cuttlefish:conf_get("auth_ldap.ssl_options.sni", Conf, undefined) of
undefined -> cuttlefish:unset();
none -> cuttlefish:unset();
Hostname -> Hostname
end
end}.
{mapping, "auth_ldap.ssl_options.hostname_verification", "rabbitmq_auth_backend_ldap.ssl_hostname_verification", [
{datatype, {enum, [wildcard, none]}}]}.
|