Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Force close connection when user is deleted #1073

Merged
merged 2 commits into from
Jan 5, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion src/rabbit_connection_tracking.erl
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
delete_tracked_connections_table_for_node/1, delete_per_vhost_tracked_connections_table_for_node/1,
clear_tracked_connection_tables_for_this_node/0,
register_connection/1, unregister_connection/1,
list/0, list/1, list_on_node/1,
list/0, list/1, list_on_node/1, list_of_user/1,
tracked_connection_from_connection_created/1,
tracked_connection_from_connection_state/1,
count_connections_in/1]).
Expand Down Expand Up @@ -217,6 +217,17 @@ list_on_node(Node) ->
catch exit:{aborted, {no_exists, _}} -> []
end.

-spec list_of_user(rabbit_types:username()) -> [rabbit_types:tracked_connection()].

list_of_user(Username) ->
lists:foldl(
fun (Node, Acc) ->
Tab = tracked_connection_table_name_for(Node),
Acc ++ mnesia:dirty_match_object(
Tab,
#tracked_connection{username = Username, _ = '_'})
end, [], rabbit_mnesia:cluster_nodes(running)).

-spec count_connections_in(rabbit_types:vhost()) -> non_neg_integer().

count_connections_in(VirtualHost) ->
Expand Down
7 changes: 4 additions & 3 deletions src/rabbit_connection_tracking_handler.erl
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,10 @@ handle_event(#event{type = vhost_deleted, props = Details}, State) ->
|| Conn <- rabbit_connection_tracking:list(VHost)],
{ok, State};
handle_event(#event{type = user_deleted, props = Details}, State) ->
_Username = pget(name, Details),
%% TODO: force close and unregister connections from
%% this user. Moved to rabbitmq/rabbitmq-server#628.
Username = pget(name, Details),
rabbit_log_connection:info("Closing all connections from user '~s' because it's being deleted", [Username]),
[close_connection(Conn, rabbit_misc:format("user '~s' is deleted", [Username]))
|| Conn <- rabbit_connection_tracking:list_of_user(Username)],
{ok, State};
%% A node had been deleted from the cluster.
handle_event(#event{type = node_deleted, props = Details}, State) ->
Expand Down
280 changes: 280 additions & 0 deletions test/per_user_connection_tracking_SUITE.erl
Original file line number Diff line number Diff line change
@@ -0,0 +1,280 @@
%% The contents of this file are subject to the Mozilla Public License
%% Version 1.1 (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.mozilla.org/MPL/
%%
%% Software distributed under the License is distributed on an "AS IS"
%% basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
%% License for the specific language governing rights and limitations
%% under the License.
%%
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
%% Copyright (c) 2011-2016 Pivotal Software, Inc. All rights reserved.
%%

-module(per_user_connection_tracking_SUITE).

-include_lib("common_test/include/ct.hrl").
-include_lib("amqp_client/include/amqp_client.hrl").
-include_lib("eunit/include/eunit.hrl").

-compile(export_all).

all() ->
[
{group, cluster_size_1_network},
{group, cluster_size_2_network},
{group, cluster_size_1_direct},
{group, cluster_size_2_direct}
].

groups() ->
ClusterSize1Tests = [
single_node_list_of_user,
single_node_user_deletion_forces_connection_closure
],
ClusterSize2Tests = [
cluster_user_deletion_forces_connection_closure
],
[
{cluster_size_1_network, [], ClusterSize1Tests},
{cluster_size_2_network, [], ClusterSize2Tests},
{cluster_size_1_direct, [], ClusterSize1Tests},
{cluster_size_2_direct, [], ClusterSize2Tests}
].

suite() ->
[
%% If a test hangs, no need to wait for 30 minutes.
{timetrap, {minutes, 8}}
].

%% -------------------------------------------------------------------
%% Testsuite setup/teardown.
%% -------------------------------------------------------------------

init_per_suite(Config) ->
rabbit_ct_helpers:log_environment(),
rabbit_ct_helpers:run_setup_steps(Config, [
fun rabbit_ct_broker_helpers:enable_dist_proxy_manager/1
]).

end_per_suite(Config) ->
rabbit_ct_helpers:run_teardown_steps(Config).

init_per_group(cluster_size_1_network, Config) ->
Config1 = rabbit_ct_helpers:set_config(Config, [{connection_type, network}]),
init_per_multinode_group(cluster_size_1_network, Config1, 1);
init_per_group(cluster_size_2_network, Config) ->
Config1 = rabbit_ct_helpers:set_config(Config, [{connection_type, network}]),
init_per_multinode_group(cluster_size_2_network, Config1, 2);
init_per_group(cluster_size_1_direct, Config) ->
Config1 = rabbit_ct_helpers:set_config(Config, [{connection_type, direct}]),
init_per_multinode_group(cluster_size_1_direct, Config1, 1);
init_per_group(cluster_size_2_direct, Config) ->
Config1 = rabbit_ct_helpers:set_config(Config, [{connection_type, direct}]),
init_per_multinode_group(cluster_size_2_direct, Config1, 2).

init_per_multinode_group(_Group, Config, NodeCount) ->
Suffix = rabbit_ct_helpers:testcase_absname(Config, "", "-"),
Config1 = rabbit_ct_helpers:set_config(Config, [
{rmq_nodes_count, NodeCount},
{rmq_nodename_suffix, Suffix}
]),
rabbit_ct_helpers:run_steps(Config1,
rabbit_ct_broker_helpers:setup_steps() ++
rabbit_ct_client_helpers:setup_steps()).

end_per_group(_Group, Config) ->
rabbit_ct_helpers:run_steps(Config,
rabbit_ct_client_helpers:teardown_steps() ++
rabbit_ct_broker_helpers:teardown_steps()).

init_per_testcase(Testcase, Config) ->
rabbit_ct_helpers:testcase_started(Config, Testcase),
clear_all_connection_tracking_tables(Config),
Config.

end_per_testcase(Testcase, Config) ->
clear_all_connection_tracking_tables(Config),
rabbit_ct_helpers:testcase_finished(Config, Testcase).

clear_all_connection_tracking_tables(Config) ->
[rabbit_ct_broker_helpers:rpc(Config,
N,
rabbit_connection_tracking,
clear_tracked_connection_tables_for_this_node,
[]) || N <- rabbit_ct_broker_helpers:get_node_configs(Config, nodename)].

%% -------------------------------------------------------------------
%% Test cases.
%% -------------------------------------------------------------------
single_node_list_of_user(Config) ->
Username = proplists:get_value(rmq_username, Config),
Username2 = <<"guest2">>,

Vhost = proplists:get_value(rmq_vhost, Config),

rabbit_ct_broker_helpers:add_user(Config, Username2),
rabbit_ct_broker_helpers:set_full_permissions(Config, Username2, Vhost),

?assertEqual(0, length(connections_in(Config, Username))),
?assertEqual(0, length(connections_in(Config, Username2))),

[Conn1] = open_connections(Config, [0]),
[#tracked_connection{username = Username}] = connections_in(Config, Username),
close_connections([Conn1]),
?assertEqual(0, length(connections_in(Config, Username))),

[Conn2] = open_connections(Config, [{0, Username2}]),
[#tracked_connection{username = Username2}] = connections_in(Config, Username2),

[Conn3] = open_connections(Config, [0]),
[#tracked_connection{username = Username}] = connections_in(Config, Username),

[Conn4] = open_connections(Config, [0]),
kill_connections([Conn4]),
[#tracked_connection{username = Username}] = connections_in(Config, Username),

[Conn5] = open_connections(Config, [0]),
[Username, Username] =
lists:map(fun (#tracked_connection{username = U}) -> U end,
connections_in(Config, Username)),

close_connections([Conn2, Conn3, Conn5]),
rabbit_ct_broker_helpers:delete_user(Config, Username2),
?assertEqual(0, length(all_connections(Config))).

single_node_user_deletion_forces_connection_closure(Config) ->
Username = proplists:get_value(rmq_username, Config),
Username2 = <<"guest2">>,

Vhost = proplists:get_value(rmq_vhost, Config),

rabbit_ct_broker_helpers:add_user(Config, Username2),
rabbit_ct_broker_helpers:set_full_permissions(Config, Username2, Vhost),

?assertEqual(0, count_connections_in(Config, Username)),
?assertEqual(0, count_connections_in(Config, Username2)),

[Conn1] = open_connections(Config, [0]),
?assertEqual(1, count_connections_in(Config, Username)),

[_Conn2] = open_connections(Config, [{0, Username2}]),
?assertEqual(1, count_connections_in(Config, Username2)),

rabbit_ct_broker_helpers:delete_user(Config, Username2),
timer:sleep(200),
?assertEqual(0, count_connections_in(Config, Username2)),

close_connections([Conn1]),
?assertEqual(0, count_connections_in(Config, Username)).

cluster_user_deletion_forces_connection_closure(Config) ->
Username = proplists:get_value(rmq_username, Config),
Username2 = <<"guest2">>,

Vhost = proplists:get_value(rmq_vhost, Config),

rabbit_ct_broker_helpers:add_user(Config, Username2),
rabbit_ct_broker_helpers:set_full_permissions(Config, Username2, Vhost),

?assertEqual(0, count_connections_in(Config, Username)),
?assertEqual(0, count_connections_in(Config, Username2)),

[Conn1] = open_connections(Config, [{0, Username}]),
?assertEqual(1, count_connections_in(Config, Username)),

[_Conn2] = open_connections(Config, [{1, Username2}]),
?assertEqual(1, count_connections_in(Config, Username2)),

rabbit_ct_broker_helpers:delete_user(Config, Username2),
timer:sleep(200),
?assertEqual(0, count_connections_in(Config, Username2)),

close_connections([Conn1]),
?assertEqual(0, count_connections_in(Config, Username)).

%% -------------------------------------------------------------------
%% Helpers
%% -------------------------------------------------------------------

open_connections(Config, NodesAndUsers) ->
% Randomly select connection type
OpenConnectionFun = case ?config(connection_type, Config) of
network -> open_unmanaged_connection;
direct -> open_unmanaged_connection_direct
end,
Conns = lists:map(fun
({Node, User}) ->
rabbit_ct_client_helpers:OpenConnectionFun(Config, Node,
User, User);
(Node) ->
rabbit_ct_client_helpers:OpenConnectionFun(Config, Node)
end, NodesAndUsers),
timer:sleep(500),
Conns.

close_connections(Conns) ->
lists:foreach(fun
(Conn) ->
rabbit_ct_client_helpers:close_connection(Conn)
end, Conns),
timer:sleep(500).

kill_connections(Conns) ->
lists:foreach(fun
(Conn) ->
(catch exit(Conn, please_terminate))
end, Conns),
timer:sleep(500).


count_connections_in(Config, Username) ->
length(connections_in(Config, Username)).

connections_in(Config, Username) ->
connections_in(Config, 0, Username).
connections_in(Config, NodeIndex, Username) ->
rabbit_ct_broker_helpers:rpc(Config, NodeIndex,
rabbit_connection_tracking,
list_of_user, [Username]).

all_connections(Config) ->
all_connections(Config, 0).
all_connections(Config, NodeIndex) ->
rabbit_ct_broker_helpers:rpc(Config, NodeIndex,
rabbit_connection_tracking,
list, []).

set_up_vhost(Config, VHost) ->
rabbit_ct_broker_helpers:add_vhost(Config, VHost),
rabbit_ct_broker_helpers:set_full_permissions(Config, <<"guest">>, VHost),
set_vhost_connection_limit(Config, VHost, -1).

set_vhost_connection_limit(Config, VHost, Count) ->
set_vhost_connection_limit(Config, 0, VHost, Count).

set_vhost_connection_limit(Config, NodeIndex, VHost, Count) ->
Node = rabbit_ct_broker_helpers:get_node_config(
Config, NodeIndex, nodename),
ok = rabbit_ct_broker_helpers:control_action(
set_vhost_limits, Node,
["{\"max-connections\": " ++ integer_to_list(Count) ++ "}"],
[{"-p", binary_to_list(VHost)}]).

await_running_node_refresh(_Config, _NodeIndex) ->
timer:sleep(250).

expect_that_client_connection_is_rejected(Config) ->
expect_that_client_connection_is_rejected(Config, 0).

expect_that_client_connection_is_rejected(Config, NodeIndex) ->
{error, not_allowed} =
rabbit_ct_client_helpers:open_unmanaged_connection(Config, NodeIndex).

expect_that_client_connection_is_rejected(Config, NodeIndex, VHost) ->
{error, not_allowed} =
rabbit_ct_client_helpers:open_unmanaged_connection(Config, NodeIndex, VHost).